diff --git a/CMakeLists.txt b/CMakeLists.txt
index 74721726841..8de213a0a1c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -37,7 +37,7 @@ set(CMAKE_USER_MAKE_RULES_OVERRIDE_CXX
project(Geant4)
set(${PROJECT_NAME}_VERSION_MAJOR 10)
set(${PROJECT_NAME}_VERSION_MINOR 5)
-set(${PROJECT_NAME}_VERSION_PATCH 0)
+set(${PROJECT_NAME}_VERSION_PATCH 1)
set(${PROJECT_NAME}_VERSION "${${PROJECT_NAME}_VERSION_MAJOR}.${${PROJECT_NAME}_VERSION_MINOR}.${${PROJECT_NAME}_VERSION_PATCH}")
# - Prepend our own CMake Modules to the search path
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 6c78b5678ce..883c00d901d 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,2 +1,16 @@
-The Geant4 Collaboration:
-http://cern.ch/geant4/collaboration/members
+Contributing to Geant4
+=====
+To contribute patches to Geant4, users can submit Pull Requests (PR) such that:
+
+- A single PR refers to a single particular topic (fix or suggested enhancement);
+ PRs including uncorrelated changes in codes in different areas or modules will
+ not be considered.
+
+A PR will be examined by a responsible and eventually extracted for a patch in
+the development repository of Geant4, to be included in a future release or
+patch.
+
+For simple bug-fixes, it is anyhow recommended to use the official
+`Bugzilla problem reporting system `.
+
+The Geant4 Collaboration
diff --git a/README.rst b/README.rst
new file mode 100644
index 00000000000..e8ef3710d02
--- /dev/null
+++ b/README.rst
@@ -0,0 +1,3 @@
+=====
+Geant4: A Simulation Toolkit
+=====
diff --git a/ReleaseNotes/Patch4.10.5-1.txt b/ReleaseNotes/Patch4.10.5-1.txt
new file mode 100644
index 00000000000..30cec50ff41
--- /dev/null
+++ b/ReleaseNotes/Patch4.10.5-1.txt
@@ -0,0 +1,318 @@
+
+ Geant4 10.5 - patch-01 Release Notes
+ ------------------------------------
+
+ 17 April 2019
+
+List of fixes included in this public patch since the public release 10.5:
+
+ o Configuration:
+ -------------
+ + CMake:
+ o Added configuration GEANT4_USE_SMARTSTACK to enable use of smart-stack
+ algorithm for default stack in G4TrackStack.
+
+ o Analysis:
+ --------
+ + Fixed few typos in printouts.
+
+ o Digits_Hits:
+ -----------
+ + Define unit categories in messengers for UI commands that take units.
+ + G4SDManager, G4VSDFilter: cleanly delete all the G4VSDFilter objects at
+ the end of program.
+ + Fixed return type of Boolean operators.
+ + Fixed shadowing compilation warning in G4ScoringBox and G4ScoringCylinder.
+ + Fixed few typos in printouts.
+
+ o Event:
+ -----
+ + G4PrimaryTransformer: allowing absolute zero proper decay time.
+ + G4HEPEvtInterface: clean up G4Exception severities when end-of-file
+ is detected.
+ + Fixed return type of Boolean operators.
+ + Fixed typos in printouts in G4GeneralParticleSourceMessenger.
+
+ o G3toG4:
+ ------
+ + Fixed return type of Boolean operators.
+ + Fixed shadowing compilation warning in G3toG4MakeSolid.
+
+ o Geometry:
+ --------
+ + Fixed return type of Boolean operators.
+ + magneticfield
+ o Corrected transformation to local system in G4QuadrupoleMagField.
+ o Corrected 'RegularStepperName' in G4ChordFinder to refer to the actual
+ default stepper G4DormandPrince745 rather than G4NystromRK4.
+ + management:
+ o Use reverse_iterator in G4SolidStore::DeRegister() in order to speedup
+ partial deregistration on setups with many solids instances.
+ o G4Region: added possibility to disable search in the tree in
+ AddRootLogicalVolume() for speeding up process in complex flat
+ geometries.
+ o G4LogicalVolume: in AddDaughter() avoid propagating pointer to
+ field-manager if this is null. Addressing problem report #2145.
+ + navigation:
+ o Protected report for looping particles under verbosity flag in
+ G4PropagatorInField::ComputeStep().
+ o Fixed few typos in printouts in G4NavigationLogger.
+ + solids/specific:
+ o Disabled precise computation of extent and use simple bounding-box in
+ CalculateExtent() for G4Tet and G4TessellatedSolid, to speed up
+ intialisation in setups with relatively complex meshes.
+ Apply bounding-box calculation for extent also for the corresponding
+ VecGeom wrappers.
+ o Revised algorithms and improved robustness in G4EllipticalTube.
+ o Accurate calculation of radical in G4IntersectingCone.
+ Addressing problem report #2111.
+ + volumes:
+ o Correction in G4AssemblyVolume destructor to avoid deletion of internal
+ physical volumes, as cleanup is taken care by G4PhysicalVolumeStore.
+ Addressing problem report #2140.
+
+ o Global:
+ ------
+ + Enable FPE detection on MacOS with clang. Addressing problem report #2147.
+ + Fixed return type of Boolean operators.
+ + Updated date and version for 10.5.p01.
+
+ o Graphics Representations:
+ ------------------------
+ + Fixed return type of Boolean operators in G4TypeKey.
+
+ o Intercoms:
+ ---------
+ + G4UIcommand: fixed misbehavior in RangeCheck() method, when string-type
+ parameter comes prior to numeric-type parameters in commands.
+ + Added G4UIparameter::SetDefaultUnit() method to simplify the definition
+ of a unit parameter.
+ + Fixed return type of Boolean operators.
+ + Fixed few typos in printouts.
+
+ o Materials
+ ---------
+ + G4NistMaterialBuilder: fixed atomic number value in simple material
+ printout. Fixed build of gas materials.
+ Addressing problem reports #2133 and #2134.
+ + G4NistManager: added more detailed comments to public methods.
+ + Fixed return type of Boolean operators.
+
+ o Parameterisations - gflash
+ --------------------------
+ + Fixed return type of Boolean operators in G4VGFlashSensitiveDetector.
+
+ o Particles
+ ---------
+ + G4PrimaryParticle: allowing absolute zero proper decay time.
+ + Fixed return type of Boolean operators.
+ + Fixed typo in printout in G4NuclideTableMessenger.
+
+ o Persistency
+ -----------
+ + ascii:
+ o Fixed shadowing compilation warnings.
+ + gdml:
+ o Fix in G4GDMLReadStructure::PhysvolRead() to allow correct import of
+ recursive assembly structures. Addressing problem report #2141.
+ o Added protection to G4GDMLParser for dumping geometry only through
+ the master thread. Added extra protection also in reading.
+ Addressing problem report #2156.
+ o Fixed export of optical surface properties.
+ Addressing problem reports #2142 and 2143.
+
+ o Physics Lists
+ -------------
+ + constructors/electromagnetic:
+ o G4OpticalPhysics, G4OpticalPhysicsMessenger: put all UI commands into
+ a messenger class; addressing problem report #2085; deprecated commands
+ with /default/ in command string.
+ o G4EmModelActivator: addressing problem report #2106.
+ Fixed compilation warning on clang.
+ o G4EmLivermorePhysics, G4EmPenelopePhysics: set multiple-scattering
+ configuration the same as in Opt4: RangeFactor=0.08, Skin=3,
+ UserSafetyPlus on.
+ o G4EmStandardPhysicsWVI: use G4eplusTo2GammaOKVIModel with 3-gamma
+ annihilation for e+.
+ o G4EmStandardPhysics_option4: changed RangeFactor to 0.08 to improve
+ results from fanoCavity test.
+ + constructors/hadron_elastic:
+ o G4HadronElasticPhysics: for deuteron, triton and alpha, use
+ Glauber-Gribov elastic cross-sections (instead of Gheisha ones,
+ which returns zero).
+ + lists:
+ o Shielding, QGSP_BIC_HP, QGSP_BIC_AllHP: set cut for proton to zero.
+ Addressing problem report #2150.
+ o Minor code clean-up.
+
+ o Processes - Electromagnetic:
+ ---------------------------
+ + adjoint:
+ o Fixed typos in printouts and comments.
+ + high energy:
+ o G4mplIonisation, G4mplIonisationWithDeltaModel: added low limit for
+ delta-electron production threshold. Addressing problem report #2126.
+ o G4GammaConversionToMuons: fixed low-energy part of the model by adding
+ intermediate limit of 5*MuMass, below which an approximation of the
+ cross-section similar to the Bethe-Heitler model is used; fixed bug
+ in energy sampling for low-energy.
+ + low energy:
+ o Fixed 'dsigma' calculation in G4PhotoElectricAngularGeneratorPolarized.
+ Addressing problem report #2089.
+ o Fixed return type of Boolean operators.
+ + muons:
+ o G4MuMultipleSacttering: reduced length of printout.
+ Addressing problem report #2105.
+ + standard:
+ o G4IonCoulombScatteringModel, G4eCoulombScatteringModel,
+ G4eSingleCoulombScatteringModel, G4hCoulombScatteringModel: fixed
+ precision loss for scattering with very small kinetic energy.
+ Addressing problem report #2152.
+ o G4eMultipleSacttering, G4hMultipleScattering: reduced length of
+ printouts. Addressing problem report #2105.
+ o G4eplusTo2GammaOKVIModel: fixed crash at initialisation.
+ o G4ModifiedTsai, G4SauterGavrilaAngularDistribution: reduced length of
+ names for these generators. Addressing problem report #2105.
+ o Code clean-up in G4BetheBlochModel.
+ + utils:
+ o G4EmBiasingManager, G4VEmProcess, G4VEnergyLossProcess: fixed weights
+ for biasing. Should be like version 10.4 now for range cut, splitting,
+ roulette.
+ o G4EmBiasingManager: fixed incorrect weights with brem splitting
+ introduced in release 10.5. Addressing problem report #2125.
+ o G4VEnergyLossProcess, G4VEmProcess, G4VMultipleScattering,
+ G4EmModelManager: make info printout at initialisation more compact.
+ Addressing problem report #2105.
+ o G4VEmProcess, G4VEnergyLossProcess: make printout information more
+ compact.
+ o G4EmParametersMessenger: defining unit categories for UI commands
+ that take units. Fixed typos in printouts
+ + xrays:
+ o G4Cerenkov: increase protection against infinite loops.
+
+ o Processes - Generic:
+ -------------------
+ + biasing:
+ o Fixed typos in printouts and comments.
+ + cuts:
+ o Fixed return type of Boolean operators.
+ o Fixed typos in printouts in G4PhysicsTableHelper and
+ G4ProductionCutsTable.
+ + decay:
+ o G4Decay, G4UnknownDecay: allowing absolute zero proper decay time.
+ + solidstate/channeling:
+ o Fixed printouts and comments.
+
+ o Processes - Hadronic:
+ --------------------
+ + cross_sections:
+ o G4ChipsNeutronElasticXS: fixed compilation warnings on clang.
+ + models/de_excitation:
+ o G4PhotonEvaporation: for nuclear levels without decay modes defined
+ perform decay not to the ground state but to the nearest level.
+ Addressing problem report #2123.
+ o G4LevelReader: fixed typo. Addressing problem report #2124.
+ o G4LevelManager, G4NucLevel: fixed debug and warning printouts.
+ + models/fission:
+ o G4SmpIsoDir: removed use of G4Pow for squaring, sometimes causing crash.
+ + models/inclxx:
+ o G4INCLHFB: fixed (weak and strong) event non-reproducibility by making
+ the arrays 'radiusP, radiusN, diffusenessP, diffusenessN' thread-local.
+ o Fixed return type of Boolean operators.
+ + models/particle_hp:
+ o Fix to make sure production cross-section is not ignored when sampling
+ discrete gamma emission. Addressing problem report #1824.
+ o G4ParticleHPKallbachMannSyst::Kallbach: replaced G4Exp with std::exp in
+ order to avoid underflow/overflow crashes observed with the physics list
+ QGSP_BIC_AllHP.
+ + models/parton_string/diffraction:
+ o G4FTFModel: fixed a memory leak in G4FTFModel::GetStrings().
+ Addressing problem report #2138.
+ o Corrected FTF_NUCDESTR_P1_ADEP_TGT parameter that was accidentally
+ set as "fixed". Minor cleanups.
+ o Fixed return type of Boolean operators.
+ + models/parton_string/qgsm:
+ o G4QGSParticipants: bug-fix in computation of the transverse mass in
+ DeterminePartonMomenta() method.
+ o Fixed return type of Boolean operators.
+
+ o Processes - Management:
+ ----------------------
+ o Fixed typos in printouts in G4ProcessTableMessenger, G4ProcessManager
+ and G4VRest*Process.
+ o Fixed return type of Boolean operators.
+
+ o Readout:
+ -------
+ o Fixed return type of Boolean operators.
+
+ o Run:
+ ---
+ o Fix in G4MultiRunAction to cope with more than one user run action
+ classes.
+ o G4UserPhysicsListMessenger.cc: defining unit categories for UI commands
+ that take units.
+ o Fixed return type of Boolean operators.
+ o Fixed typos in printouts.
+
+ o Tracking:
+ --------
+ o Fixed return type of Boolean operators.
+ o Fixed typos in printouts and comments.
+
+ o Visualization:
+ -------------
+ o Fix to pick up default number of line-segments-per-circle from
+ G4Polyhedron in G4ViewParameters.
+
+
+ o Examples:
+ --------
+ + Fixed return type of Boolean operators.
+ + advanced/ChargeExchangeMC
+ o Fixed compilation warnings for unused data when no analysis set.
+ o Fixed regular expression error in schema validation for lht.gdml.
+ + advanced/doiPET
+ o Fixed compilation warnings on clang for unused data members in
+ doiPETDetectorConstruction and doiPETEventAction classes.
+ + basic/B4
+ o Corrected name of include file: csv.hh.
+ + extended/electromagnetic/TestEm8
+ o DetectorConstruction: added alternative materials in order to test all
+ methods to construct new material with G4NistMaterialBuilder.
+ Addressing problem reports #2133 and #2134.
+ + extended/exoticphysics/monopole
+ o Avoid instantiation of the vis-manager in the main() in the batch mode;
+ set default number of threads to 1.
+ o Run, RunAction: extended histograms and printouts to restricted dEdx
+ and delta-electron cross-section (addressing problem report #2126).
+ o G4MonopolePhysics: minor code clean-up.
+ + extended/hadronic/Hadr02
+ o Fixed bug in the energe range of the transition between FTFP and BERT.
+ + extended/medical/dna/chem1-5
+ o Fixed PhysicsList.
+ + extended/medical/dna/dnaphysics
+ o Updated README.
+ + extended/persistency/gdml/G01
+ o Migrated example to multi-threading, to test MT in reading/writing.
+ + extended/persistency/P03
+ o Fixed compilation warnings on unused local iterators.
+ + extended/runAndEvent/RE05
+ o Reduced the number of events in pythia_event.data to make it smaller
+ than 2 MB. Number of events executed by the macro exampleRE05.in is
+ also reduced accordingly.
+
+ ----------------------------------------------------------------------------
+
+ Technical Notes
+ ---------------
+
+ o This patch should be applied on top of release 10.5.
+ o Technical notes distributed for release 10.5 are also applicable and
+ valid for this patch.
+
+The code and rebuilt binary libraries for release 10.5.p01 are available
+through our "Download" Web page.
+
+Please refer to the Geant4 User Documentation for further information about
+using Geant4.
diff --git a/cmake/History b/cmake/History
index a713b63527b..6edc410ac61 100644
--- a/cmake/History
+++ b/cmake/History
@@ -30,6 +30,11 @@ add this in the documentation for the changed file as [BUGFIX #BUGNUMBER].
----------------------------------------------------------
+21st December 2018 - Makoto Asai (cmake-V10-04-28)
+- Modules/Geant4OptionalComponents.cmake:
+- Template/Geant4Config.cmake.in:
+ Add GEANT4_USE_SMARTSTACK
+
5th November 2018 - Gunter Folger (cmake-V10-04-27)
- Switch to G4PARTICLEXS 1.1
diff --git a/cmake/Modules/Geant4OptionalComponents.cmake b/cmake/Modules/Geant4OptionalComponents.cmake
index 21013d31990..53af3819128 100644
--- a/cmake/Modules/Geant4OptionalComponents.cmake
+++ b/cmake/Modules/Geant4OptionalComponents.cmake
@@ -191,6 +191,26 @@ endif()
GEANT4_ADD_FEATURE(GEANT4_USE_GDML "Building Geant4 with GDML support")
+#-----------------------------------------------------------------------
+# Optional use of smart stack
+# With this option, G4StackManager uses G4SmartTrackStack instead of
+# ordinary G4TrackStack as the Urgent stack. G4SmartTrackStack tries to
+# stick to the same kind of particle as the previous track when Pop()
+# is called. This G4SmartTrackStack may provide some performance
+# improvements in particular for crystal calorimeters in high energy
+# physics experiments. On the other hand, G4SmartTrackStack won't give
+# any benefit for granular geometry or lower energy applications, while
+# it may causes some visible memory footprint increase.
+
+option(GEANT4_USE_SMARTSTACK "Use smart track stack" OFF)
+mark_as_advanced(GEANT4_USE_SMARTSTACK)
+
+if(GEANT4_USE_SMARTSTACK)
+ add_definitions(-DG4_USESMARTSTACK)
+endif()
+
+GEANT4_ADD_FEATURE(GEANT4_USE_SMARTSTACK "Use smart track stack")
+
#-----------------------------------------------------------------------
# Optional Support for TiMemory -- cross-language timing and memory
# easily installed via:
@@ -208,6 +228,7 @@ endif()
option(GEANT4_USE_TIMEMORY "Build Geant4 with TiMemory support"
${_default_use_timemory}
)
+mark_as_advanced(GEANT4_USE_TIMEMORY)
if(GEANT4_USE_TIMEMORY)
find_package(TiMemory REQUIRED)
diff --git a/cmake/Templates/Geant4Config.cmake.in b/cmake/Templates/Geant4Config.cmake.in
index 8febadd416e..afe8d1ac3fd 100644
--- a/cmake/Templates/Geant4Config.cmake.in
+++ b/cmake/Templates/Geant4Config.cmake.in
@@ -322,6 +322,13 @@ if(Geant4_gdml_FOUND)
list(REMOVE_ITEM Geant4_FIND_COMPONENTS gdml)
endif()
+# - Smart track stack
+set(Geant4_use_smartstack_FOUND @GEANT4_USE_SMARTSTACK@)
+if(Geant4_use_smartstack_FOUND)
+ list(REMOVE_ITEM Geant4_FIND_COMPONENTS smartstack)
+ list(APPEND Geant4_DEFINITIONS -DG4_USESMARTSTACK)
+endif()
+
# - TiMemory
set(Geant4_timemory_FOUND @GEANT4_USE_TIMEMORY@)
if(Geant4_timemory_FOUND)
diff --git a/examples/advanced/ChargeExchangeMC/ChargeExchangeMC.out b/examples/advanced/ChargeExchangeMC/ChargeExchangeMC.out
index b59b9123881..e4a4b74b567 100644
--- a/examples/advanced/ChargeExchangeMC/ChargeExchangeMC.out
+++ b/examples/advanced/ChargeExchangeMC/ChargeExchangeMC.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -16,8 +12,6 @@
--- Cexmc --- Production model 'ChargeExchange' instantiated
G4GDML: Reading 'lht.gdml'...
-G4GDML: VALIDATION ERROR! value 'NCrystalsHor' does not match regular expression facet '[+\-]?[0-9]+' at line: 452
-G4GDML: VALIDATION ERROR! value 'NCrystalsVert' does not match regular expression facet '[+\-]?[0-9]+' at line: 464
G4GDML: VALIDATION ERROR! ID attribute 'G4_Galactic' is referenced but was never declared at line: 637
G4GDML: VALIDATION ERROR! ID attribute 'G4_AIR' is referenced but was never declared at line: 637
G4GDML: VALIDATION ERROR! ID attribute 'G4_Al' is referenced but was never declared at line: 637
@@ -120,371 +114,371 @@ G4DecayTable: eta
/cexmc/vis/verbose 2
/run/beamOn 10
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -535,6 +529,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -640,6 +635,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -780,6 +776,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -865,297 +862,65 @@ Index : 9 used in the geometry : Yes
====================================================================
### Run 0 starts.
-Event 1873
- --- Track Points
- monitor : pi- [1,bp] 734.5 MeV : -1.889 1.601 -0.125 cm [-0.001126, -0.006248, 1]
- target : pi- [1,bp] 734.1 MeV : 1.495 4.771 1.479 cm [-0.6435, -0.7654, -0.003814]
- : eta [3,op] 379.8 MeV : -2.119 0.4721 1.457 cm [-0.3781, -0.9233, 0.06747]
- : neutron [4,np] 390.1 MeV : -2.119 0.4721 1.457 cm [-0.839, -0.5393, -0.07199]
- : gamma [6,opdp] 407.9 MeV : -2.119 0.4721 1.457 cm [0.2743, -0.9598, 0.05871]
- : gamma [5,opdp] 258.8 MeV : -2.119 0.4721 1.457 cm [-0.9875, 0.1578, 0.006492]
- vc (l) : gamma [6,opdp] 407.9 MeV : -11.29 5.035 -0.25 cm [-0.157, 0.05871, 0.9858]
- vc (r) : gamma [5,opdp] 258.8 MeV : 5.963 1.827 -0.25 cm [0.1032, 0.006492, 0.9946]
- cal (l) : gamma [6,opdp] 407.9 MeV : -11.49 5.109 -15 cm [-0.157, 0.05871, 0.9858]
- cal (r) : gamma [5,opdp] 258.8 MeV : 6.093 1.835 -15 cm [0.1032, 0.006492, 0.9946]
- ---
- angle between the eta decay products : 114.955 deg
- --- Triggered angular ranges:
- 3 [ 0.6000, 0.4000)
- --- Production model data:
- Incident particle (LAB) : pi- -0.0891 -2.4563 732.5402 MeV -- 745.7218 MeV
- (SCM) : pi- -0.0551 -1.5200 453.2841 MeV -- 474.2875 MeV
- Nucleus particle (LAB) : proton 0.0000 -0.0000 0.0000 eV -- 938.2720 MeV
- (SCM) : proton 0.0551 1.5200 -453.2841 MeV -- 1.0420 GeV
- Output particle (LAB) : eta 115.4144 25.6280 360.9705 MeV -- 666.6557 MeV
- (SCM) : eta 115.4487 26.5741 78.8112 MeV -- 566.0376 MeV
- Nucleus output particle (LAB) : neutron -115.5035 -28.0843 371.5696 MeV -- 1.0173 GeV
- (SCM) : neutron -115.4487 -26.5741 -78.8112 MeV -- 950.2783 MeV
- --- Reconstructed data:
- -- entry points:
- left: -12.0889 4.88583 -15 cm
- right: 6.52099 2.38278 -15 cm
- target: 0 0 0 fm
- -- the angle: 112.118 deg
- -- mass of the output particle: 542.314 MeV
- -- mass of the nucleus output particle: 943.714 MeV
- -- production model data:
- Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
- (SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
- Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
- (SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
- Output particle (LAB) : eta 96.1204 42.4981 375.4380 MeV -- 667.9095 MeV
- (SCM) : eta 96.1204 42.4981 94.8812 MeV -- 560.4925 MeV
- Nucleus output particle (LAB) : neutron -96.1204 -42.4981 354.5620 MeV -- 1.0136 GeV
- (SCM) : neutron -96.1204 -42.4981 -94.8812 MeV -- 954.2761 MeV
- -- triggered angular ranges:
- 2 [ 0.8000, 0.6000)
- --- Energy Deposit
- monitor : 363.258 keV
- vc (l) : 0 eV
- vc (r) : 0 eV
- cal (l) : 402.489 MeV
- 0 0 0 1.28 47.33 87.03
- 0 0 0 0.7883 59.61 204.2
- 0 0 0 0.5241 0.7935 0.3945
- 0 0 0 0 0 0.5686
- cal (r) : 265.421 MeV
- 0.4492 0.5202 0 0 0.4181 1.162
- 1.587 234.7 17.69 0.6897 0 0
- 0.5337 2.622 4.178 0 0 0
- 0 0 0.8207 0 0 0
-Event 1917
+Event 2187
--- Track Points
- monitor : pi- [1,bp] 732.9 MeV : -0.3084 -1.367 -0.125 cm [-0.006737, -0.006706, 1]
- target : pi- [1,bp] 732.3 MeV : 2.83 4.122 -1.583 cm [-0.6468, -0.7626, -0.007113]
- : eta [5,op] 387.2 MeV : -0.3322 0.3948 -1.618 cm [-0.4156, -0.9074, 0.06306]
- : neutron [6,np] 375.5 MeV : -0.3322 0.3948 -1.618 cm [-0.8322, -0.5486, -0.08097]
- : gamma [8,opdp] 405.6 MeV : -0.3322 0.3948 -1.618 cm [0.2495, -0.9656, 0.07278]
- : gamma [7,opdp] 265.2 MeV : -0.3322 0.3948 -1.618 cm [-0.9882, 0.1523, -0.01926]
- vc (l) : gamma [8,opdp] 405.6 MeV : -11.13 2.78 -0.25 cm [-0.182, 0.07278, 0.9806]
- vc (r) : gamma [7,opdp] 265.2 MeV : 6.082 -2.748 -0.25 cm [0.1087, -0.01926, 0.9939]
- cal (l) : gamma [8,opdp] 405.6 MeV : -11.36 2.872 -15 cm [-0.182, 0.07278, 0.9806]
- cal (r) : gamma [7,opdp] 265.2 MeV : 6.218 -2.772 -15 cm [0.1087, -0.01926, 0.9939]
+ monitor : pi- [1,bp] 726.5 MeV : 6.547 -7.936 -1.25 mm [-0.0003966, 0.01032, 0.9999]
+ target : pi- [1,bp] 726.1 MeV : 3.677 3.388 -0.425 cm [-0.6429, -0.7658, 0.01173]
+ : eta [5,op] 240.7 MeV : -1.412 -2.673 -0.3322 cm [-0.209, -0.9623, 0.1742]
+ : neutron [6,np] 527 MeV : -1.412 -2.673 -0.3322 cm [-0.7878, -0.6128, -0.06296]
+ : gamma [8,opdp] 258.8 MeV : -1.412 -2.673 -0.3322 cm [-0.9871, 0.146, 0.06598]
+ : gamma [7,opdp] 339.6 MeV : -1.412 -2.673 -0.3322 cm [0.6042, -0.7934, 0.0732]
+ vc (l) : gamma [7,opdp] 339.6 MeV : 9.992 3.944 -0.25 cm [0.2123, 0.0732, 0.9745]
+ vc (r) : gamma [8,opdp] 258.8 MeV : 9.652 3.534 -0.25 cm [0.1144, 0.06598, 0.9912]
+ cal (l) : gamma [7,opdp] 339.6 MeV : 10.26 4.038 -15 cm [0.2123, 0.0732, 0.9745]
+ cal (r) : gamma [8,opdp] 258.8 MeV : 9.797 3.617 -15 cm [0.1144, 0.06598, 0.9912]
---
- angle between the eta decay products : 113.263 deg
+ angle between the eta decay products : 135.028 deg
--- Triggered angular ranges:
- 2 [ 0.8000, 0.6000)
- --- Production model data:
- Incident particle (LAB) : pi- -4.4037 -5.9889 731.1556 MeV -- 744.3948 MeV
- (SCM) : pi- -2.7264 -3.7079 452.6726 MeV -- 473.7230 MeV
- Nucleus particle (LAB) : proton 0.0000 -0.0000 0.0000 eV -- 938.2720 MeV
- (SCM) : proton 2.7264 3.7079 -452.6726 MeV -- 1.0418 GeV
- Output particle (LAB) : eta 102.5591 24.4139 372.5383 MeV -- 670.8591 MeV
- (SCM) : eta 104.2616 26.7291 89.8797 MeV -- 565.5228 MeV
- Nucleus output particle (LAB) : neutron -106.9628 -30.4028 358.6174 MeV -- 1.0118 GeV
- (SCM) : neutron -104.2616 -26.7291 -89.8797 MeV -- 949.9718 MeV
- --- Reconstructed data:
- -- entry points:
- left: -12.8498 3.46912 -15 cm
- right: 8.78757 -2.76141 -15 cm
- target: 0 0 0 fm
- -- the angle: 109.682 deg
- -- mass of the output particle: 501.187 MeV
- -- mass of the nucleus output particle: 966.48 MeV
- -- production model data:
- Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
- (SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
- Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
- (SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
- Output particle (LAB) : eta 142.5824 13.1925 374.3785 MeV -- 641.7569 MeV
- (SCM) : eta 142.5824 13.1925 106.3085 MeV -- 531.9720 MeV
- Nucleus output particle (LAB) : neutron -142.5824 -13.1925 355.6215 MeV -- 1.0397 GeV
- (SCM) : neutron -142.5824 -13.1925 -106.3085 MeV -- 982.7967 MeV
- -- triggered angular ranges:
- 3 [ 0.6000, 0.4000)
- --- Energy Deposit
- monitor : 429.865 keV
- vc (l) : 0 eV
- vc (r) : 0 eV
- cal (l) : 415.809 MeV
- 0 0 0 0.3479 3.232 23.94
- 0 0 0 0.138 43.83 336.8
- 0 0 0 0.4498 2.503 4.554
- 0 0 0 0 0 0
- cal (r) : 225.948 MeV
- 0 0.4553 0 0 0 0
- 3.458 2.77 0.788 0 0 0
- 2.202 197.4 10.93 0 0 0
- 1.201 5.17 1.577 0 0 0
-Event 2615
- --- Track Points
- monitor : pi- [1,bp] 724.8 MeV : 2.519 6.766 -1.25 mm [-0.007796, 0.001028, 1]
- target : pi- [1,bp] 723.4 MeV : 3.196 3.845 0.7164 cm [-0.6498, -0.7601, -0.0001228]
- : eta [7,op] 259.9 MeV : -8.462 -8.831 7.156 mm [-0.9249, -0.375, -0.06268]
- : neutron [8,np] 505.9 MeV : -8.462 -8.831 7.156 mm [-0.4535, -0.8906, 0.0341]
- : gamma [10,opdp] 237.1 MeV : -8.462 -8.831 7.156 mm [0.4712, -0.8805, -0.05253]
- : gamma [9,opdp] 369.3 MeV : -8.462 -8.831 7.156 mm [-0.9535, 0.3013, -0.01039]
- vc (l) : gamma [10,opdp] 237.1 MeV : 2.074 -2.356 -0.25 cm [0.05497, -0.05253, 0.9971]
- vc (r) : gamma [9,opdp] 369.3 MeV : -1.504 0.1105 -0.25 cm [-0.04425, -0.01039, 0.999]
- cal (l) : gamma [10,opdp] 237.1 MeV : 2.143 -2.422 -15 cm [0.05497, -0.05253, 0.9971]
- cal (r) : gamma [9,opdp] 369.3 MeV : -1.559 0.09752 -15 cm [-0.04425, -0.01039, 0.999]
- ---
- angle between the eta decay products : 135.563 deg
- --- Triggered angular ranges:
- 7 [-0.2000, -0.4000)
+ 8 [-0.4000, -0.6000)
--- Production model data:
- Incident particle (LAB) : pi- -7.6854 0.9586 721.8190 MeV -- 735.2295 MeV
- (SCM) : pi- -4.7761 0.5957 448.5748 MeV -- 469.8110 MeV
+ Incident particle (LAB) : pi- -0.1143 8.7574 724.0493 MeV -- 737.4306 MeV
+ (SCM) : pi- -0.0710 5.4374 449.5538 MeV -- 470.7526 MeV
Nucleus particle (LAB) : proton -0.0000 0.0000 0.0000 eV -- 938.2720 MeV
- (SCM) : proton 4.7761 -0.5957 -448.5748 MeV -- 1.0400 GeV
- Output particle (LAB) : eta -121.5181 -16.2935 229.2021 MeV -- 606.3980 MeV
- (SCM) : eta -118.6974 -16.6454 -35.7235 MeV -- 561.9565 MeV
- Nucleus output particle (LAB) : neutron 113.8327 17.2521 492.6169 MeV -- 1.0671 GeV
- (SCM) : neutron 118.6974 16.6454 35.7235 MeV -- 947.8530 MeV
+ (SCM) : proton 0.0710 -5.4374 -449.5538 MeV -- 1.0404 GeV
+ Output particle (LAB) : eta 110.3477 41.9376 209.7860 MeV -- 598.4132 MeV
+ (SCM) : eta 110.3894 38.7466 -54.0414 MeV -- 562.8147 MeV
+ Nucleus output particle (LAB) : neutron -110.4621 -33.1802 514.2633 MeV -- 1.0773 GeV
+ (SCM) : neutron -110.3894 -38.7466 54.0414 MeV -- 948.3621 MeV
--- Reconstructed data:
-- entry points:
- left: 1.92713 -1.53944 -15 cm
- right: -1.7211 1.75854 -15 cm
+ left: 12.5203 3.59349 -15 cm
+ right: 11.2533 4.11978 -15 cm
target: 0 0 0 fm
- -- the angle: 133.501 deg
- -- mass of the output particle: 549.205 MeV
- -- mass of the nucleus output particle: 953.864 MeV
+ -- the angle: 130.667 deg
+ -- mass of the output particle: 522.556 MeV
+ -- mass of the nucleus output particle: 973.112 MeV
-- production model data:
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
- Output particle (LAB) : eta -86.5518 3.7051 239.0407 MeV -- 605.2037 MeV
- (SCM) : eta -86.5518 3.7051 -26.3097 MeV -- 556.6177 MeV
- Nucleus output particle (LAB) : neutron 86.5518 -3.7051 490.9593 MeV -- 1.0763 GeV
- (SCM) : neutron 86.5518 -3.7051 26.3097 MeV -- 958.1509 MeV
+ Output particle (LAB) : eta 103.9355 36.1295 222.7766 MeV -- 578.6208 MeV
+ (SCM) : eta 103.9355 36.1295 -31.5530 MeV -- 534.9469 MeV
+ Nucleus output particle (LAB) : neutron -103.9355 -36.1295 507.2234 MeV -- 1.1029 GeV
+ (SCM) : neutron -103.9355 -36.1295 31.5530 MeV -- 979.8217 MeV
-- triggered angular ranges:
7 [-0.2000, -0.4000)
--- Energy Deposit
- monitor : 1.26016 MeV
+ monitor : 348.042 keV
vc (l) : 0 eV
vc (r) : 0 eV
- cal (l) : 255.242 MeV
- 0.6974 0.9487 0 1.353 0 0
- 0 0.5825 5.657 4.509 0 0
- 0.3667 1.095 229.1 2.429 3.866 0
- 0 0 3.278 0.3928 0.9781 0
- cal (r) : 349.962 MeV
- 0.3464 0.7333 0 0.9528 0.8835 0
- 0 0.4347 20.83 249.4 3.192 0.01635
- 0 0 4.953 67.83 0.404 0
+ cal (l) : 321.508 MeV
+ 23.02 4.664 0 0 0 0
+ 205.6 84.74 0.5756 0 0 0
+ 0.9066 1.506 0 0 0 0
+ 0.4904 0 0 0 0 0
+ cal (r) : 257.112 MeV
+ 3.026 23.47 0.3508 0 0 0
+ 70.41 157.2 0 0 0 0
+ 2.649 0 0 0 0 0
0 0 0 0 0 0
-Event 2942
- --- Track Points
- monitor : pi- [1,bp] 728.4 MeV : -0.9341 -1.881 -0.125 cm [0.008073, -0.02291, 0.9997]
- target : pi- [1,bp] 727.8 MeV : 2.636 4.248 -2.574 cm [-0.6367, -0.7708, -0.02388]
- : eta [4,op] 235.3 MeV : 1.113 2.404 -2.631 cm [-0.9367, -0.3463, 0.05269]
- : neutron [5,np] 537.8 MeV : 1.113 2.404 -2.631 cm [-0.4516, -0.8906, -0.05471]
- : gamma [7,opdp] 363.2 MeV : 1.113 2.404 -2.631 cm [-0.9451, 0.3199, 0.06701]
- : gamma [6,opdp] 233.1 MeV : 1.113 2.404 -2.631 cm [0.5272, -0.8482, -0.05124]
- vc (l) : gamma [6,opdp] 233.1 MeV : 9.302 -5.756 -0.25 cm [0.1194, -0.05124, 0.9915]
- vc (r) : gamma [7,opdp] 363.2 MeV : -6.441 1.353 -0.25 cm [-0.06444, 0.06701, 0.9957]
- cal (l) : gamma [6,opdp] 233.1 MeV : 9.453 -5.82 -15 cm [0.1194, -0.05124, 0.9915]
- cal (r) : gamma [7,opdp] 363.2 MeV : -6.522 1.437 -15 cm [-0.06444, 0.06701, 0.9957]
- ---
- angle between the eta decay products : 140.629 deg
- --- Triggered angular ranges:
- 8 [-0.4000, -0.6000)
- --- Production model data:
- Incident particle (LAB) : pi- 5.3764 -17.0315 727.0998 MeV -- 740.5895 MeV
- (SCM) : pi- 3.3338 -10.5610 450.8630 MeV -- 472.1016 MeV
- Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
- (SCM) : proton -3.3338 10.5610 -450.8630 MeV -- 1.0410 GeV
- Output particle (LAB) : eta -116.4491 12.3964 204.0635 MeV -- 596.2455 MeV
- (SCM) : eta -118.4034 18.5873 -60.2369 MeV -- 564.0444 MeV
- Nucleus output particle (LAB) : neutron 121.8255 -29.4279 523.0362 MeV -- 1.0826 GeV
- (SCM) : neutron 118.4034 -18.5873 60.2369 MeV -- 949.0924 MeV
- --- Reconstructed data:
- -- entry points:
- left: 9.05036 -2.50259 -15 cm
- right: -8.63439 2.22619 -15 cm
- target: 0 0 0 fm
- -- the angle: 146.792 deg
- -- mass of the output particle: 540.878 MeV
- -- mass of the nucleus output particle: 939.893 MeV
- -- production model data:
- Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
- (SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
- Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
- (SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
- Output particle (LAB) : eta -121.1856 3.6470 165.7340 MeV -- 578.5467 MeV
- (SCM) : eta -121.1856 3.6470 -94.8385 MeV -- 562.3548 MeV
- Nucleus output particle (LAB) : neutron 121.1856 -3.6470 564.2660 MeV -- 1.1029 GeV
- (SCM) : neutron 121.1856 -3.6470 94.8385 MeV -- 952.4139 MeV
- -- triggered angular ranges:
- 9 [-0.6000, -0.8000)
- --- Energy Deposit
- monitor : 469.957 keV
- vc (l) : 0 eV
- vc (r) : 123.265 keV
- cal (l) : 225.724 MeV
- 0.6564 0 0 0 0 0
- 6.633 4.687 1.607 0 0 0
- 3.884 186.9 3.787 2.952 0 0
- 2.42 12.17 0 0 0 0
- cal (r) : 352.823 MeV
- 0 0 0 1.56 3.744 1.63
- 0 0 0 14.71 315.8 3.504
- 0 0 0 0.4763 6.773 0.945
- 0 0 0 0.2023 3.514 0
-Event 3644
- --- Track Points
- monitor : pi- [1,bp] 738.2 MeV : 0.2372 -1.279 -0.125 cm [-0.001882, 9.454e-05, 1]
- target : pi- [1,bp] 737.4 MeV : 3.355 3.707 -1.27 cm [-0.6435, -0.7654, 3.668e-05]
- : eta [5,op] 283.6 MeV : -2.781 -3.586 -1.278 cm [-0.9256, -0.3484, 0.1482]
- : neutron [6,np] 510.9 MeV : -2.781 -3.586 -1.278 cm [-0.4134, -0.9067, -0.08406]
- : gamma [8,opdp] 397.6 MeV : -2.781 -3.586 -1.278 cm [-0.9792, 0.1975, 0.04722]
- : gamma [7,opdp] 219.3 MeV : -2.781 -3.586 -1.278 cm [0.5786, -0.8087, 0.106]
- vc (l) : gamma [7,opdp] 219.3 MeV : 6.552 4.867 -0.25 cm [0.1826, 0.106, 0.9775]
- vc (r) : gamma [8,opdp] 397.6 MeV : 7.764 1.422 -0.25 cm [0.06263, 0.04722, 0.9969]
- cal (l) : gamma [7,opdp] 219.3 MeV : 6.786 5.002 -15 cm [0.1826, 0.106, 0.9775]
- cal (r) : gamma [8,opdp] 397.6 MeV : 7.842 1.481 -15 cm [0.06263, 0.04722, 0.9969]
- ---
- angle between the eta decay products : 136.16 deg
- --- Triggered angular ranges:
- 6 [ 0.0000, -0.2000)
- --- Production model data:
- Incident particle (LAB) : pi- -1.6213 -0.9295 734.9642 MeV -- 748.1013 MeV
- (SCM) : pi- -1.0023 -0.5746 454.3431 MeV -- 475.2986 MeV
- Nucleus particle (LAB) : proton 0.0000 -0.0000 0.0000 eV -- 938.2720 MeV
- (SCM) : proton 1.0023 0.5746 -454.3431 MeV -- 1.0425 GeV
- Output particle (LAB) : eta -137.5609 42.0124 244.3848 MeV -- 616.8993 MeV
- (SCM) : eta -136.9619 42.3558 -27.1665 MeV -- 566.9598 MeV
- Nucleus output particle (LAB) : neutron 135.9396 -42.9419 490.5794 MeV -- 1.0695 GeV
- (SCM) : neutron 136.9619 -42.3558 27.1665 MeV -- 950.8279 MeV
- --- Reconstructed data:
- -- entry points:
- left: 10.7003 5.55484 -15 cm
- right: 9.06113 1.90477 -15 cm
- target: 0 0 0 fm
- -- the angle: 131.073 deg
- -- mass of the output particle: 505.227 MeV
- -- mass of the nucleus output particle: 991.489 MeV
- -- production model data:
- Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
- (SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
- Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
- (SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
- Output particle (LAB) : eta -105.8575 30.5302 257.2994 MeV -- 577.5768 MeV
- (SCM) : eta -105.8575 30.5302 7.2727 MeV -- 517.1508 MeV
- Nucleus output particle (LAB) : neutron 105.8575 -30.5302 472.7006 MeV -- 1.1039 GeV
- (SCM) : neutron 105.8575 -30.5302 -7.2727 MeV -- 997.6179 MeV
- -- triggered angular ranges:
- 5 [ 0.2000, 0.0000)
- --- Energy Deposit
- monitor : 566.463 keV
- vc (l) : 0 eV
- vc (r) : 0 eV
- cal (l) : 208.933 MeV
- 11.65 71.67 0.9389 0 0 0
- 24.06 100.1 0 0 0 0
- 0.5205 0 0 0 0 0
- 0 0 0 0 0 0
- cal (r) : 368.644 MeV
- 1.168 1.584 1.432 0 0 0
- 7.052 330.7 5.247 0 0 0
- 2.354 14.56 2.036 0 0 0
- 0 2.484 0 0 0 0
-Event 4156
+Event 4425
--- Track Points
monitor : pi- [1,bp] 730.8 MeV : -0.1452 1.199 -0.125 cm [0.000521, -0.01084, 0.9999]
target : pi- [1,bp] 730.3 MeV : 3.101 3.922 0.8473 cm [-0.6422, -0.7664, -0.01207]
@@ -1213,7 +978,7 @@ Event 4156
0.09728 2.989 7.127 0 0 0
1.68 71.09 309 1.216 1.439 0.2556
0.8747 11.57 2.089 0.4913 0 0.8723
-Event 4430
+Event 4699
--- Track Points
monitor : pi- [1,bp] 737.9 MeV : 2.934 0.9185 -0.125 cm [0.002382, -0.0118, 0.9999]
target : pi- [1,bp] 737 MeV : 4.862 1.165 0.559 cm [-0.6419, -0.7667, -0.01193]
@@ -1271,7 +1036,7 @@ Event 4430
0 26.9 158.5 1.406 0 0
0 0.4425 0.3996 0.1781 0 0
0 1.085 0 0 0 0
-Event 4766
+Event 5035
--- Track Points
monitor : pi- [1,bp] 736.4 MeV : -5.619 -0.4139 -1.25 mm [0.002683, 0.001106, 1]
target : pi- [1,bp] 735.9 MeV : 2.834 4.119 0.05444 cm [-0.6406, -0.7678, 0.004657]
@@ -1329,65 +1094,123 @@ Event 4766
6.339 51.12 4.421 0 0 0
5.313 313.1 29.21 0.9687 0 0
1.013 2.245 0 0 0 0
-Event 5825
+Event 5611
--- Track Points
- monitor : pi- [1,bp] 731.7 MeV : 1.386 -1.865 -0.125 cm [-0.005859, -0.006899, 1]
- target : pi- [1,bp] 731.3 MeV : 4.057 2.923 -2.085 cm [-0.6468, -0.7626, -0.007286]
- : eta [2,op] 261.4 MeV : -0.9387 -2.967 -2.141 cm [-0.178, -0.9824, -0.05626]
- : neutron [3,np] 519.9 MeV : -0.9387 -2.967 -2.141 cm [-0.8164, -0.5772, 0.01763]
- : gamma [5,opdp] 243.7 MeV : -0.9387 -2.967 -2.141 cm [-0.977, 0.2125, -0.016]
- : gamma [4,opdp] 363.3 MeV : -0.9387 -2.967 -2.141 cm [0.5272, -0.8492, -0.02974]
- vc (l) : gamma [4,opdp] 363.3 MeV : 4.662 -3.833 -0.25 cm [0.119, -0.02974, 0.9925]
- vc (r) : gamma [5,opdp] 243.7 MeV : 5.904 -3.081 -0.25 cm [0.04763, -0.016, 0.9987]
- cal (l) : gamma [4,opdp] 363.3 MeV : 4.812 -3.871 -15 cm [0.119, -0.02974, 0.9925]
- cal (r) : gamma [5,opdp] 243.7 MeV : 6 -3.113 -14.23 cm [0.04763, -0.016, 0.9987]
+ monitor : pi- [1,bp] 732 MeV : 0.6849 1.371 -0.125 cm [0.001842, 0.01186, 0.9999]
+ target : pi- [1,bp] 731.2 MeV : 3.79 3.262 1.769 cm [-0.6389, -0.7692, 0.01338]
+ : eta [4,op] 338.5 MeV : 2.967 2.271 1.787 cm [-0.2822, -0.9574, -0.06135]
+ : neutron [5,np] 442.2 MeV : 2.967 2.271 1.787 cm [-0.8393, -0.5392, 0.06952]
+ : gamma [7,opdp] 248.1 MeV : 2.967 2.271 1.787 cm [-0.9851, 0.1712, -0.0181]
+ : gamma [6,opdp] 395.9 MeV : 2.967 2.271 1.787 cm [0.3759, -0.9258, -0.04111]
+ vc (l) : gamma [6,opdp] 395.9 MeV : 6.283 -6.669 -2.5 mm [-0.0506, -0.04111, 0.9979]
+ vc (r) : gamma [7,opdp] 248.1 MeV : 2.526 0.6776 -0.25 cm [0.08954, -0.0181, 0.9958]
+ cal (l) : gamma [6,opdp] 395.9 MeV : 0.565 -0.7184 -15 cm [-0.0506, -0.04111, 0.9979]
+ cal (r) : gamma [7,opdp] 248.1 MeV : 2.639 0.6549 -15 cm [0.08954, -0.0181, 0.9958]
---
- angle between the eta decay products : 134.035 deg
+ angle between the eta decay products : 121.873 deg
--- Triggered angular ranges:
- 7 [-0.2000, -0.4000)
+ 4 [ 0.4000, 0.2000)
--- Production model data:
- Incident particle (LAB) : pi- -2.8811 -5.5384 729.2810 MeV -- 742.5426 MeV
- (SCM) : pi- -1.7851 -3.4316 451.8540 MeV -- 472.9343 MeV
- Nucleus particle (LAB) : proton 0.0000 -0.0000 0.0000 eV -- 938.2720 MeV
- (SCM) : proton 1.7851 3.4316 -451.8540 MeV -- 1.0414 GeV
- Output particle (LAB) : eta 129.4027 -14.7045 226.5934 MeV -- 607.0079 MeV
- (SCM) : eta 130.4593 -12.6733 -40.8672 MeV -- 564.8036 MeV
- Nucleus output particle (LAB) : neutron -132.2837 9.1660 502.6876 MeV -- 1.0738 GeV
- (SCM) : neutron -130.4593 12.6733 40.8672 MeV -- 949.5438 MeV
+ Incident particle (LAB) : pi- 4.1029 9.9732 730.8469 MeV -- 744.1326 MeV
+ (SCM) : pi- 2.5405 6.1753 452.5299 MeV -- 473.6114 MeV
+ Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
+ (SCM) : proton -2.5405 -6.1753 -452.5299 MeV -- 1.0417 GeV
+ Output particle (LAB) : eta 135.1215 -20.7657 309.6582 MeV -- 643.9954 MeV
+ (SCM) : eta 133.5697 -24.5377 33.2446 MeV -- 565.4210 MeV
+ Nucleus output particle (LAB) : neutron -131.0186 30.7389 421.1886 MeV -- 1.0384 GeV
+ (SCM) : neutron -133.5697 24.5377 -33.2446 MeV -- 949.9112 MeV
--- Reconstructed data:
-- entry points:
- left: 6.63793 -3.12925 -15 cm
- right: 7.38894 -3.20272 -15 cm
+ left: 0.216368 -1.73757 -15 cm
+ right: 1.86219 0.484112 -15 cm
target: 0 0 0 fm
- -- the angle: 128.962 deg
- -- mass of the output particle: 541.969 MeV
- -- mass of the nucleus output particle: 931.952 MeV
+ -- the angle: 128.425 deg
+ -- mass of the output particle: 564.839 MeV
+ -- mass of the nucleus output particle: 936.251 MeV
-- production model data:
Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
(SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
(SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
- Output particle (LAB) : eta 163.9818 -32.2953 247.1967 MeV -- 618.6840 MeV
- (SCM) : eta 163.9818 -32.2953 -23.7524 MeV -- 567.6512 MeV
- Nucleus output particle (LAB) : neutron -163.9818 32.2953 482.8033 MeV -- 1.0628 GeV
- (SCM) : neutron -163.9818 32.2953 23.7524 MeV -- 947.1175 MeV
+ Output particle (LAB) : eta 98.0729 -8.5592 274.8615 MeV -- 635.8327 MeV
+ (SCM) : eta 98.0729 -8.5592 -1.3070 MeV -- 573.3552 MeV
+ Nucleus output particle (LAB) : neutron -98.0729 8.5592 455.1385 MeV -- 1.0457 GeV
+ (SCM) : neutron -98.0729 8.5592 1.3070 MeV -- 941.4135 MeV
-- triggered angular ranges:
6 [ 0.0000, -0.2000)
--- Energy Deposit
- monitor : 365.917 keV
- vc (l) : 44.3261 keV
+ monitor : 628.389 keV
+ vc (l) : 0 eV
vc (r) : 0 eV
- cal (l) : 383.672 MeV
- 0 0 0.5943 0 0 0
- 0.6437 1.557 6.677 0 0 0
- 1.111 134.8 221 0 0 0
- 5.546 8.735 2.98 0 0 0
- cal (r) : 235.012 MeV
- 0 0 0 0.9378 0 0
- 0.5152 0.7881 0.4238 1.606 0 0
- 29.86 143.8 43.09 0.3591 0 0
- 1.74 3.272 8.176 0.4654 0 0
-Event 6144
+ cal (l) : 369.798 MeV
+ 0 0.7997 0.9868 0.9239 0 0
+ 0 0 18.04 17.89 0 0
+ 0 0.4643 159.8 159.1 1.14 0
+ 0 0.2381 5.351 5.05 0 0
+ cal (r) : 266.035 MeV
+ 0 0.4733 1.297 0 0 0
+ 0 1.203 193.9 3.973 0 0
+ 0 0 56.79 1.294 1.579 0.5176
+ 0 0 5.026 0 0 0
+Event 6041
+ --- Track Points
+ monitor : pi- [1,bp] 728.8 MeV : -2.745 -1.243 -0.125 cm [-0.0002247, 0.01845, 0.9998]
+ target : pi- [1,bp] 728.1 MeV : 0.5961 4.964 -0.6887 cm [-0.6432, -0.7655, 0.01862]
+ : eta [5,op] 228.7 MeV : -0.2441 3.964 -0.6644 cm [-0.1648, -0.9823, 0.08852]
+ : neutron [6,np] 543.9 MeV : -0.2441 3.964 -0.6644 cm [-0.7914, -0.6111, -0.01218]
+ : gamma [8,opdp] 232.6 MeV : -0.2441 3.964 -0.6644 cm [-0.9234, 0.3838, -0.007364]
+ : gamma [7,opdp] 361.1 MeV : -0.2441 3.964 -0.6644 cm [0.4903, -0.8694, 0.06081]
+ vc (l) : gamma [7,opdp] 361.1 MeV : 6.283 3.151 -0.25 cm [0.07696, 0.06081, 0.9952]
+ vc (r) : gamma [8,opdp] 232.6 MeV : -11.41 -1.091 -0.25 cm [-0.1318, -0.007364, 0.9913]
+ cal (l) : gamma [7,opdp] 361.1 MeV : 6.38 3.228 -15 cm [0.07696, 0.06081, 0.9952]
+ cal (r) : gamma [8,opdp] 232.6 MeV : -11.57 -1.101 -15 cm [-0.1318, -0.007364, 0.9913]
+ ---
+ angle between the eta decay products : 141.898 deg
+ --- Triggered angular ranges:
+ 8 [-0.4000, -0.6000)
+ --- Production model data:
+ Incident particle (LAB) : pi- -0.5339 13.6203 727.6602 MeV -- 741.0499 MeV
+ (SCM) : pi- -0.3310 8.4441 451.1254 MeV -- 472.2979 MeV
+ Nucleus particle (LAB) : proton -0.0000 0.0000 0.0000 eV -- 938.2720 MeV
+ (SCM) : proton 0.3310 -8.4441 -451.1254 MeV -- 1.0411 GeV
+ Output particle (LAB) : eta 115.5534 20.2466 196.3456 MeV -- 593.6892 MeV
+ (SCM) : eta 115.7470 15.3069 -67.5550 MeV -- 564.2235 MeV
+ Nucleus output particle (LAB) : neutron -116.0872 -6.6263 531.3146 MeV -- 1.0856 GeV
+ (SCM) : neutron -115.7470 -15.3069 67.5550 MeV -- 949.1988 MeV
+ --- Reconstructed data:
+ -- entry points:
+ left: 8.15854 3.62971 -15 cm
+ right: -10.1904 -0.893599 -15 cm
+ target: 0 0 0 fm
+ -- the angle: 147.306 deg
+ -- mass of the output particle: 511.856 MeV
+ -- mass of the nucleus output particle: 985.434 MeV
+ -- production model data:
+ Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
+ (SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
+ Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
+ (SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
+ Output particle (LAB) : eta 58.9072 14.5340 151.7191 MeV -- 537.3051 MeV
+ (SCM) : eta 58.9072 14.5340 -90.5206 MeV -- 523.3278 MeV
+ Nucleus output particle (LAB) : neutron -58.9072 -14.5340 578.2809 MeV -- 1.1442 GeV
+ (SCM) : neutron -58.9072 -14.5340 90.5206 MeV -- 991.4408 MeV
+ -- triggered angular ranges:
+ 10 [-0.8000, -1.0000)
+ --- Energy Deposit
+ monitor : 578.295 keV
+ vc (l) : 0 eV
+ vc (r) : 0 eV
+ cal (l) : 300.901 MeV
+ 1.3 29.19 0.6364 0 0 0
+ 16.1 230 17.93 1.022 0 0
+ 0 2.839 0.6759 1.254 0 0
+ 0 0 0 0 0 0
+ cal (r) : 236.404 MeV
+ 0 0 2.197 0 0 1.318
+ 0 0 0 0 16.62 9.079
+ 0 0 0 0.8767 176.2 28.75
+ 0 0 0 0 1.073 0.2433
+Event 6370
--- Track Points
monitor : pi- [1,bp] 737.3 MeV : -1.617 -1.286 -0.125 cm [0.01234, 0.003389, 0.9999]
target : pi- [1,bp] 736.8 MeV : 2.158 4.511 -1.236 cm [-0.6324, -0.7746, 0.001141]
@@ -1445,28 +1268,202 @@ Event 6144
9.027 36.14 4.846 0.2617 0 0
0.3729 0.03713 3.803 0 0 0
0 0.4747 0 0 0 0
+Event 8443
+ --- Track Points
+ monitor : pi- [1,bp] 739.9 MeV : -2.315 -1.369 -0.125 cm [0.008855, 0.007118, 0.9999]
+ target : pi- [1,bp] 739.1 MeV : 1.295 4.83 -1.171 cm [-0.6371, -0.7707, 0.006924]
+ : eta [9,op] 314.1 MeV : -3.842 -1.393 -1.117 cm [-0.1946, -0.9802, 0.03662]
+ : neutron [10,np] 483.5 MeV : -3.842 -1.393 -1.117 cm [-0.8412, -0.5405, -0.01671]
+ : gamma [12,opdp] 247.3 MeV : -3.842 -1.393 -1.117 cm [-0.9915, 0.1144, -0.06208]
+ : gamma [11,opdp] 384.2 MeV : -3.842 -1.393 -1.117 cm [0.4791, -0.875, 0.06989]
+ vc (l) : gamma [11,opdp] 384.2 MeV : -0.243 3.034 -0.25 cm [0.06446, 0.06989, 0.9955]
+ vc (r) : gamma [12,opdp] 247.3 MeV : 10.54 -4.6 -0.25 cm [0.1461, -0.06208, 0.9873]
+ cal (l) : gamma [11,opdp] 384.2 MeV : 0 3.297 -12.5 cm [0.06446, 0.06989, 0.9955]
+ cal (r) : gamma [12,opdp] 247.3 MeV : 10.72 -4.678 -15 cm [0.1461, -0.06208, 0.9873]
+ ---
+ angle between the eta decay products : 125.413 deg
+ --- Triggered angular ranges:
+ 6 [ 0.0000, -0.2000)
+ --- Production model data:
+ Incident particle (LAB) : pi- 7.5140 3.4235 736.7769 MeV -- 749.9254 MeV
+ (SCM) : pi- 4.6416 2.1148 455.1257 MeV -- 476.0727 MeV
+ Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
+ (SCM) : proton -4.6416 -2.1148 -455.1257 MeV -- 1.0428 GeV
+ Output particle (LAB) : eta 151.0899 11.5019 275.1360 MeV -- 631.5165 MeV
+ (SCM) : eta 148.2804 10.2218 -0.3548 MeV -- 567.6658 MeV
+ Nucleus output particle (LAB) : neutron -143.5760 -8.0783 461.6409 MeV -- 1.0567 GeV
+ (SCM) : neutron -148.2804 -10.2218 0.3548 MeV -- 951.2490 MeV
+ --- Reconstructed data:
+ -- entry points:
+ left: 0.871579 2.84465 -15 cm
+ right: 12.5723 -5.48463 -15 cm
+ target: 0 0 0 fm
+ -- the angle: 119.112 deg
+ -- mass of the output particle: 503.365 MeV
+ -- mass of the nucleus output particle: 981.995 MeV
+ -- production model data:
+ Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
+ (SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
+ Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
+ (SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
+ Output particle (LAB) : eta 136.9196 -4.2288 288.5568 MeV -- 596.1597 MeV
+ (SCM) : eta 136.9196 -4.2288 33.0150 MeV -- 522.7154 MeV
+ Nucleus output particle (LAB) : neutron -136.9196 4.2288 441.4432 MeV -- 1.0853 GeV
+ (SCM) : neutron -136.9196 4.2288 -33.0150 MeV -- 992.0533 MeV
+ -- triggered angular ranges:
+ 4 [ 0.4000, 0.2000)
+ --- Energy Deposit
+ monitor : 555.03 keV
+ vc (l) : 0 eV
+ vc (r) : 0 eV
+ cal (l) : 358.306 MeV
+ 0 0.5368 4.64 17.89 0.5987 0
+ 1.38 1.571 227.6 62.64 7.461 0
+ 0 2.588 29.17 1.71 0.5496 0
+ 0 0 0 0 0 0
+ cal (r) : 237.854 MeV
+ 0 0 0 0 0 0
+ 0 0.7447 0 0 0 0
+ 87.11 46.52 0 0 0 0
+ 94.15 8.58 0.7524 0 0 0
+Event 11012
+ --- Track Points
+ monitor : pi- [1,bp] 737.5 MeV : -1.313 1.919 -0.125 cm [0.004952, 0.009707, 0.9999]
+ target : pi- [1,bp] 736.8 MeV : 2.207 4.486 2.221 cm [-0.6392, -0.769, 0.009587]
+ : eta [7,op] 375.2 MeV : 0.08175 1.936 2.253 cm [-0.3423, -0.936, -0.08192]
+ : neutron [8,np] 405.8 MeV : 0.08175 1.936 2.253 cm [-0.8437, -0.5289, 0.09115]
+ : gamma [10,opdp] 262 MeV : 0.08175 1.936 2.253 cm [-0.9901, 0.1099, -0.08673]
+ : gamma [9,opdp] 402 MeV : 0.08175 1.936 2.253 cm [0.3259, -0.9452, -0.01992]
+ vc (l) : gamma [9,opdp] 402 MeV : -5.436 1.041 -0.25 cm [-0.1041, -0.01992, 0.9944]
+ vc (r) : gamma [10,opdp] 262 MeV : 6.999 -2.884 -0.25 cm [0.1501, -0.08673, 0.9849]
+ cal (l) : gamma [9,opdp] 402 MeV : -5.567 1.016 -15 cm [-0.1041, -0.01992, 0.9944]
+ cal (r) : tp is not valid
+ ---
+ angle between the eta decay products : 115.143 deg
+ --- Triggered angular ranges:
+ 3 [ 0.6000, 0.4000)
+ --- Production model data:
+ Incident particle (LAB) : pi- 3.0305 6.2514 736.0107 MeV -- 749.1594 MeV
+ (SCM) : pi- 1.8726 3.8629 454.7941 MeV -- 475.7477 MeV
+ Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
+ (SCM) : proton -1.8726 -3.8629 -454.7941 MeV -- 1.0427 GeV
+ Output particle (LAB) : eta 127.3302 -30.7341 351.5430 MeV -- 663.9976 MeV
+ (SCM) : eta 126.1662 -33.1353 68.8433 MeV -- 567.3694 MeV
+ Nucleus output particle (LAB) : neutron -124.2997 36.9856 384.4677 MeV -- 1.0234 GeV
+ (SCM) : neutron -126.1662 33.1353 -68.8433 MeV -- 951.0722 MeV
+ --- Reconstructed data:
+ -- entry points:
+ left: -7.15583 1.94094 -15 cm
+ right: 7.83782 -3.73906 -15 cm
+ target: 0 0 0 fm
+ -- the angle: 115.816 deg
+ -- mass of the output particle: 581.908 MeV
+ -- mass of the nucleus output particle: 896.252 MeV
+ -- production model data:
+ Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
+ (SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
+ Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
+ (SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
+ Output particle (LAB) : eta 143.3343 -2.6434 374.6053 MeV -- 706.7515 MeV
+ (SCM) : eta 143.3343 -2.6434 75.2380 MeV -- 604.0110 MeV
+ Nucleus output particle (LAB) : neutron -143.3343 2.6434 355.3947 MeV -- 974.7431 MeV
+ (SCM) : neutron -143.3343 2.6434 -75.2380 MeV -- 910.7576 MeV
+ -- triggered angular ranges:
+ 3 [ 0.6000, 0.4000)
+ --- Energy Deposit
+ monitor : 497.956 keV
+ vc (l) : 0 eV
+ vc (r) : 34.8964 keV
+ cal (l) : 436.613 MeV
+ 0 0 0.5789 1.423 8.165 1.402
+ 0 0 0.8224 128.2 257.1 5.072
+ 0 0 0.1874 5.095 23.18 3.055
+ 0 0 1.019 0 0.4971 0.8626
+ cal (r) : 270.138 MeV
+ 0 0 0 0 0 0
+ 2.278 0.6889 0.4771 0 0 0
+ 6.522 243.1 4.095 0 0.633 0
+ 1.065 3.885 2.834 4.58 0 0
+Event 11112
+ --- Track Points
+ monitor : pi- [1,bp] 728.9 MeV : 4.16 -9.067 -1.25 mm [0.0009676, -0.001755, 1]
+ target : pi- [1,bp] 728.4 MeV : 3.5 3.571 -0.9781 cm [-0.6437, -0.7653, -0.00252]
+ : eta [3,op] 398.9 MeV : 1.704 1.436 -0.9852 cm [-0.7863, -0.6176, -0.01966]
+ : neutron [4,np] 347.2 MeV : 1.704 1.436 -0.9852 cm [-0.4457, -0.895, 0.01763]
+ : gamma [6,opdp] 287.8 MeV : 1.704 1.436 -0.9852 cm [0.2597, -0.9655, 0.02149]
+ : gamma [5,opdp] 389.9 MeV : 1.704 1.436 -0.9852 cm [-0.9961, 0.08086, -0.03598]
+ vc (l) : gamma [6,opdp] 287.8 MeV : -8.252 0.3099 -0.25 cm [-0.1727, 0.02149, 0.9847]
+ vc (r) : gamma [5,opdp] 389.9 MeV : 9.144 -3.182 -0.25 cm [0.1797, -0.03598, 0.9831]
+ cal (l) : gamma [6,opdp] 287.8 MeV : -8.471 0.3372 -15 cm [-0.1727, 0.02149, 0.9847]
+ cal (r) : gamma [5,opdp] 389.9 MeV : 9.372 -3.228 -15 cm [0.1797, -0.03598, 0.9831]
+ ---
+ angle between the eta decay products : 109.725 deg
+ --- Triggered angular ranges:
+ 2 [ 0.8000, 0.6000)
+ --- Production model data:
+ Incident particle (LAB) : pi- -0.7161 -1.7185 727.8085 MeV -- 741.0725 MeV
+ (SCM) : pi- -0.4439 -1.0654 451.2131 MeV -- 472.3076 MeV
+ Nucleus particle (LAB) : proton 0.0000 -0.0000 0.0000 eV -- 938.2720 MeV
+ (SCM) : proton 0.4439 1.0654 -451.2131 MeV -- 1.0411 GeV
+ Output particle (LAB) : eta -81.9149 -7.8408 390.2873 MeV -- 677.6788 MeV
+ (SCM) : eta -81.6364 -7.1723 107.1882 MeV -- 564.2322 MeV
+ Nucleus output particle (LAB) : neutron 81.1989 6.1223 337.5212 MeV -- 1.0017 GeV
+ (SCM) : neutron 81.6364 7.1723 -107.1882 MeV -- 949.2040 MeV
+ --- Reconstructed data:
+ -- entry points:
+ left: -10.1486 -2.17224 -15 cm
+ right: 8.60631 -2.24862 -15 cm
+ target: 0 0 0 fm
+ -- the angle: 112.124 deg
+ -- mass of the output particle: 533.158 MeV
+ -- mass of the nucleus output particle: 960.276 MeV
+ -- production model data:
+ Incident particle (LAB) : pi- 0.0000 0.0000 730.0000 MeV -- 743.2226 MeV
+ (SCM) : pi- 0.0000 0.0000 452.1737 MeV -- 473.2239 MeV
+ Nucleus particle (LAB) : proton 0.0000 0.0000 0.0000 eV -- 938.2720 MeV
+ (SCM) : proton 0.0000 0.0000 -452.1737 MeV -- 1.0415 GeV
+ Output particle (LAB) : eta -80.9228 -23.6777 360.6871 MeV -- 649.2005 MeV
+ (SCM) : eta -80.9228 -23.6777 87.5229 MeV -- 546.8330 MeV
+ Nucleus output particle (LAB) : neutron 80.9228 23.6777 369.3129 MeV -- 1.0323 GeV
+ (SCM) : neutron 80.9228 23.6777 -87.5229 MeV -- 967.9356 MeV
+ -- triggered angular ranges:
+ 2 [ 0.8000, 0.6000)
+ --- Energy Deposit
+ monitor : 407.356 keV
+ vc (l) : 0 eV
+ vc (r) : 0 eV
+ cal (l) : 278.553 MeV
+ 0 0 0.3644 0.1505 0 0
+ 0 0 0 2.966 95.5 1.042
+ 0 0 0 1.665 99.83 33.62
+ 0 0 0 0.7577 3.679 38.99
+ cal (r) : 370.647 MeV
+ 0 0.4901 0.3949 0 0 0
+ 5.119 6.485 6.673 0.6733 0 0
+ 20.31 309.6 3.133 0 0 0
+ 0 10.32 7.449 0 0 0
Run terminated.
Run Summary
- Number of events processed : 6145, effectively: 10
- User=4.050000s Real=4.575739s Sys=0.000000s
+ Number of events processed : 11113, effectively: 10
+ User=6.770000s Real=6.827549s Sys=0.010000s
--- Setup acceptances (range | real (trg / mon) | rec (trg / mon / all)):
- 1 [ 1.0000, 0.8000) | 0.00000000 ( 0 / 478 ) | 0.00000000 ( 0 / 478 / 585 )
- 2 [ 0.8000, 0.6000) | 0.00210526 ( 1 / 475 ) | 0.00210526 ( 1 / 475 / 588 )
- 3 [ 0.6000, 0.4000) | 0.00404040 ( 2 / 495 ) | 0.00404040 ( 2 / 495 / 596 )
- 4 [ 0.4000, 0.2000) | 0.00215517 ( 1 / 464 ) | 0.00215517 ( 1 / 464 / 585 )
- 5 [ 0.2000, 0.0000) | 0.00212766 ( 1 / 470 ) | 0.00425532 ( 2 / 470 / 588 )
- 6 [ 0.0000, -0.2000) | 0.00410678 ( 2 / 487 ) | 0.00410678 ( 2 / 487 / 569 )
- 7 [-0.2000, -0.4000) | 0.00405680 ( 2 / 493 ) | 0.00202840 ( 1 / 493 / 611 )
- 8 [-0.4000, -0.6000) | 0.00208333 ( 1 / 480 ) | 0.00000000 ( 0 / 480 / 584 )
- 9 [-0.6000, -0.8000) | 0.00000000 ( 0 / 479 ) | 0.00208768 ( 1 / 479 / 576 )
- 10 [-0.8000, -1.0000) | 0.00000000 ( 0 / 455 ) | 0.00000000 ( 0 / 455 / 551 )
+ 1 [ 1.0000, 0.8000) | 0.00000000 ( 0 / 855 ) | 0.00000000 ( 0 / 855 / 1049 )
+ 2 [ 0.8000, 0.6000) | 0.00111235 ( 1 / 899 ) | 0.00111235 ( 1 / 899 / 1095 )
+ 3 [ 0.6000, 0.4000) | 0.00239234 ( 2 / 836 ) | 0.00239234 ( 2 / 836 / 1015 )
+ 4 [ 0.4000, 0.2000) | 0.00226244 ( 2 / 884 ) | 0.00226244 ( 2 / 884 / 1094 )
+ 5 [ 0.2000, 0.0000) | 0.00117371 ( 1 / 852 ) | 0.00117371 ( 1 / 852 / 1044 )
+ 6 [ 0.0000, -0.2000) | 0.00245399 ( 2 / 815 ) | 0.00245399 ( 2 / 815 / 989 )
+ 7 [-0.2000, -0.4000) | 0.00000000 ( 0 / 829 ) | 0.00120627 ( 1 / 829 / 1017 )
+ 8 [-0.4000, -0.6000) | 0.00231750 ( 2 / 863 ) | 0.00000000 ( 0 / 863 / 1082 )
+ 9 [-0.6000, -0.8000) | 0.00000000 ( 0 / 879 ) | 0.00000000 ( 0 / 879 / 1068 )
+ 10 [-0.8000, -1.0000) | 0.00000000 ( 0 / 855 ) | 0.00116959 ( 1 / 855 / 1030 )
---
False hits (edt | rec): 0 | 0
G4 kernel has come to Quit state.
================== Deleting memory pools ===================
Number of memory pools allocated: 16; of which, static: 3
-Dynamic pools deleted: 13 / Total memory freed: 0.63 MB
+Dynamic pools deleted: 13 / Total memory freed: 1 MB
============================================================
RunManagerKernel is deleted. Good bye :)
diff --git a/examples/advanced/ChargeExchangeMC/History b/examples/advanced/ChargeExchangeMC/History
index e8ecc3da3c9..e435adbf25c 100644
--- a/examples/advanced/ChargeExchangeMC/History
+++ b/examples/advanced/ChargeExchangeMC/History
@@ -7,6 +7,13 @@ cirrone@lns.infn.it
History file of the ChargeExchangeMC application
====================================================
+31.01.2019 - G.Cosmo, Tag ChargeExchangeMC-V10-04-01
+ Fixed compilation warnings for unused data when no analysis set.
+ Fixed regular expression error in schema validation for lht.gdml.
+
+31.01.2019 - I.Hrivnacova
+ Merged GitHub PR #4: all Boolean operators now return G4bool.
+
09.11.2018 - G.Cosmo, Tag ChargeExchangeMC-V10-04-00
CexmcException: fixed typo in printout.
diff --git a/examples/advanced/ChargeExchangeMC/include/CexmcAngularRange.hh b/examples/advanced/ChargeExchangeMC/include/CexmcAngularRange.hh
index a508941ffa8..ee2a8fbf770 100644
--- a/examples/advanced/ChargeExchangeMC/include/CexmcAngularRange.hh
+++ b/examples/advanced/ChargeExchangeMC/include/CexmcAngularRange.hh
@@ -82,7 +82,7 @@ inline void CexmcAngularRange::serialize( Archive & archive,
}
-inline bool operator<( const CexmcAngularRange & left,
+inline G4bool operator<( const CexmcAngularRange & left,
const CexmcAngularRange & right )
{
if ( left.top != right.top )
diff --git a/examples/advanced/ChargeExchangeMC/include/CexmcSimpleRangeWithValue.hh b/examples/advanced/ChargeExchangeMC/include/CexmcSimpleRangeWithValue.hh
index b780138a8c3..8470ede389f 100644
--- a/examples/advanced/ChargeExchangeMC/include/CexmcSimpleRangeWithValue.hh
+++ b/examples/advanced/ChargeExchangeMC/include/CexmcSimpleRangeWithValue.hh
@@ -94,7 +94,7 @@ inline void
template < CexmcValueCategory RangeCategory,
CexmcValueCategory ValueCategory >
-inline bool operator<(
+inline G4bool operator<(
const CexmcSimpleRangeWithValue< RangeCategory, ValueCategory > & left,
const CexmcSimpleRangeWithValue< RangeCategory, ValueCategory > & right )
{
diff --git a/examples/advanced/ChargeExchangeMC/lht.gdml b/examples/advanced/ChargeExchangeMC/lht.gdml
index d7dd4931a32..2ea175727cc 100644
--- a/examples/advanced/ChargeExchangeMC/lht.gdml
+++ b/examples/advanced/ChargeExchangeMC/lht.gdml
@@ -449,7 +449,7 @@
-
+
@@ -461,7 +461,7 @@
-
+
diff --git a/examples/advanced/ChargeExchangeMC/src/CexmcHistoManager.cc b/examples/advanced/ChargeExchangeMC/src/CexmcHistoManager.cc
index fc036aaa27c..59d882be28e 100644
--- a/examples/advanced/ChargeExchangeMC/src/CexmcHistoManager.cc
+++ b/examples/advanced/ChargeExchangeMC/src/CexmcHistoManager.cc
@@ -92,8 +92,10 @@ namespace
const G4double CexmcHistoMissEnergyResolution( 0.2 * MeV );
const G4double CexmcHistoAngularResolution( 0.5 );
const G4double CexmcHistoAngularCResolution( 0.001 );
+#ifdef CEXMC_USE_ROOTQT
const G4int CexmcHistoCanvasWidth( 800 );
const G4int CexmcHistoCanvasHeight( 600 );
+#endif
const G4String CexmcHistoDirectoryHandle( "histograms" );
const G4String CexmcHistoDirectoryTitle( "Histograms" );
}
diff --git a/examples/advanced/air_shower/History b/examples/advanced/air_shower/History
index 7cc6973f3a0..9973e200229 100644
--- a/examples/advanced/air_shower/History
+++ b/examples/advanced/air_shower/History
@@ -7,6 +7,9 @@
History file
------------
+31.01.2019 - I.Hrivnacova (air_shower-V10-04-05)
+ Merged GitHub PR #4: all Boolean operators now return G4bool.
+
09.11.2018 - B. Tome (air_shower-V10-04-04)
Allow to remove reflecting surface.
diff --git a/examples/advanced/air_shower/air_shower.out b/examples/advanced/air_shower/air_shower.out
index bd3189a32b9..e53fc1a4049 100644
--- a/examples/advanced/air_shower/air_shower.out
+++ b/examples/advanced/air_shower/air_shower.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -89,12 +85,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -227,25 +221,25 @@ Start closing geometry.
G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Total memory consumed for geometry optimisation: 1 kByte
- Total CPU time elapsed for geometry optimisation: 0 seconds
+ Total CPU time elapsed for geometry optimisation: 0.01 seconds
Voxelisation: top CPU users:
Percent Total CPU System CPU Memory Volume
------- ---------- ---------- -------- ----------
- 0.00 0.00 0.00 1k World
+ 100.00 0.01 0.00 1k World
0.00 0.00 0.00 1k LensMotherLV
Voxelisation: top memory users:
Percent Memory Heads Nodes Pointers Total CPU Volume
------- -------- ------ ------ -------- ---------- ----------
52.31 0k 1 13 26 0.00 LensMotherLV
- 47.69 0k 3 9 22 0.00 World
+ 47.69 0k 3 9 22 0.01 World
### Run 0 starts.
ooo Run 0 starts (global).
--------- Ranlux engine status ---------
- Initial seed = 1544023047
- float_seed_table[] = 0.388647 0.452262 0.956626 0.567198 0.0222793 0.640822 0.0487022 0.853861 0.587637 0.812594 0.164311 0.86216 0.588282 0.672399 0.47142 0.502319 0.79472 0.0372033 0.662883 0.676855 0.719362 0.693128 0.848961 0.450234
+ Initial seed = 1555323384
+ float_seed_table[] = 0.922361 0.399452 0.855538 0.663299 0.279111 0.434571 0.0675856 0.538489 0.123617 0.579216 0.821405 0.705478 0.167029 0.680165 0.314814 0.973872 0.545352 0.780809 0.462219 0.320429 0.670571 0.250029 0.730802 0.454868
i_lag = 23, j_lag = 9
carry = 0, count24 = 0
luxury = 3 nskip = 199
@@ -256,7 +250,7 @@ mu- Mono Plane
Run terminated.
Run Summary
Number of events processed : 100
- User=2.180000s Real=2.188978s Sys=0.000000s
+ User=2.260000s Real=2.262972s Sys=0.000000s
### Run 0 (global) ended.
Graphics systems deleted.
Visualization Manager deleting...
@@ -271,9 +265,9 @@ G4SDManager deleted.
EventManager deleted.
Units table cleared.
TransportationManager deleted.
-Total navigation history collections cleaned: 9
+Total navigation history collections cleaned: 10
================== Deleting memory pools ===================
-Pool ID '20G4NavigationLevelRep', size : 0.0115 MB
+Pool ID '20G4NavigationLevelRep', size : 0.0135 MB
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
Pool ID '7G4Event', size : 0.000961 MB
Pool ID '15G4PrimaryVertex', size : 0.000961 MB
@@ -281,10 +275,10 @@ Pool ID '17G4PrimaryParticle', size : 0.000961 MB
Pool ID '15G4HCofThisEvent', size : 0.000961 MB
Pool ID '16G4HitsCollection', size : 0.000961 MB
Pool ID '17G4DynamicParticle', size : 0.025 MB
-Pool ID '7G4Track', size : 0.049 MB
+Pool ID '7G4Track', size : 0.05 MB
Pool ID '18G4TouchableHistory', size : 0.000961 MB
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
-Pool ID '15UltraOpticalHit', size : 0.00385 MB
+Pool ID '15UltraOpticalHit', size : 0.000961 MB
Number of memory pools allocated: 12 of which, static: 0
Dynamic pools deleted: 12 / Total memory freed: 0.097 MB
============================================================
diff --git a/examples/advanced/air_shower/include/UltraOpticalHit.hh b/examples/advanced/air_shower/include/UltraOpticalHit.hh
index 24a004409b3..943507b7c50 100644
--- a/examples/advanced/air_shower/include/UltraOpticalHit.hh
+++ b/examples/advanced/air_shower/include/UltraOpticalHit.hh
@@ -54,7 +54,7 @@ public:
~UltraOpticalHit();
UltraOpticalHit(const UltraOpticalHit&);
const UltraOpticalHit& operator=(const UltraOpticalHit&);
- int operator==(const UltraOpticalHit&) const;
+ G4bool operator==(const UltraOpticalHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
diff --git a/examples/advanced/air_shower/src/UltraOpticalHit.cc b/examples/advanced/air_shower/src/UltraOpticalHit.cc
index 0b469feee14..03e3d72ee52 100644
--- a/examples/advanced/air_shower/src/UltraOpticalHit.cc
+++ b/examples/advanced/air_shower/src/UltraOpticalHit.cc
@@ -79,9 +79,9 @@ const UltraOpticalHit& UltraOpticalHit::operator=(const UltraOpticalHit& right)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
-int UltraOpticalHit::operator==(const UltraOpticalHit& right) const
+G4bool UltraOpticalHit::operator==(const UltraOpticalHit& right) const
{
- return (this==&right) ? 1 : 0;
+ return (this==&right) ? true : false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
diff --git a/examples/advanced/amsEcal/run1.out b/examples/advanced/amsEcal/run1.out
index 433573349a5..9aa6f346e82 100644
--- a/examples/advanced/amsEcal/run1.out
+++ b/examples/advanced/amsEcal/run1.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -179,7 +175,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 10000
- User=7.290000s Real=7.382209s Sys=0.000000s
+ User=7.330000s Real=7.351974s Sys=0.010000s
-------------------------------------------------------------
---> The calorimeter is 9 Modules
diff --git a/examples/advanced/brachytherapy/brachytherapy.out b/examples/advanced/brachytherapy/brachytherapy.out
index f6801050c60..005cf7eb41b 100644
--- a/examples/advanced/brachytherapy/brachytherapy.out
+++ b/examples/advanced/brachytherapy/brachytherapy.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -29,12 +25,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -235,155 +229,151 @@ G4ScoringBox : boxMesh_4 --- Shape: Box mesh
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 1 GeV FluoActive
- KleinNishina : Emin= 1 GeV Emax= 100 TeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 1 GeV Fluo
+ KleinNishina : Emin= 1 GeV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler5D : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler5D : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
- MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
+ LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
+ MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-
-nuclearStopping: for proton SubType= 8 BuildTable= 0
- ===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
=======================================================================
====== Radioactive Decay Physics Parameters ========
=======================================================================
@@ -399,259 +389,255 @@ Check EM cuts disabled for atomic de-excitation 1
Use Bearden atomic level energies 0
=======================================================================
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-
-nuclearStopping: for anti_proton SubType= 8 BuildTable= 0
- ===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
diff --git a/examples/advanced/composite_calorimeter/History b/examples/advanced/composite_calorimeter/History
index e7e39767677..2fc36d65835 100644
--- a/examples/advanced/composite_calorimeter/History
+++ b/examples/advanced/composite_calorimeter/History
@@ -8,6 +8,9 @@
Example History file
---------------------
+31.01.2019 - I.Hrivnacova (ccal-V10-04-08)
+- Merged GitHub PR #4: all Boolean operators now return G4bool.
+
13.11.2018 - V.Ivanchenko (ccal-V10-04-07)
- General clean-up of the example including user actions and SD classes
diff --git a/examples/advanced/composite_calorimeter/composite_calorimeter.out b/examples/advanced/composite_calorimeter/composite_calorimeter.out
index a2afdfa2845..e0b7db645d0 100644
--- a/examples/advanced/composite_calorimeter/composite_calorimeter.out
+++ b/examples/advanced/composite_calorimeter/composite_calorimeter.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -95,371 +91,371 @@ physicsList->Construct() start.
physicsList->CheckParticleList() start.
physicsList->setCut() start.
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -510,6 +506,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -615,6 +612,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -751,6 +749,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -902,7 +901,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 20
- User=22.140000s Real=23.528860s Sys=0.020000s
+ User=22.610000s Real=23.220008s Sys=0.030000s
### Run 0 end.
... write Root file : ccal.root - done
... close Root file : ccal.root - done
@@ -918,23 +917,23 @@ G4SDManager deleted.
EventManager deleted.
Units table cleared.
TransportationManager deleted.
-Total navigation history collections cleaned: 54
+Total navigation history collections cleaned: 50
================== Deleting memory pools ===================
-Pool ID '20G4NavigationLevelRep', size : 0.0788 MB
+Pool ID '20G4NavigationLevelRep', size : 0.0721 MB
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
-Pool ID '17G4DynamicParticle', size : 0.0807 MB
+Pool ID '17G4DynamicParticle', size : 0.0683 MB
Pool ID '7G4Event', size : 0.000961 MB
Pool ID '15G4PrimaryVertex', size : 0.000961 MB
Pool ID '17G4PrimaryParticle', size : 0.000961 MB
Pool ID '15G4HCofThisEvent', size : 0.000961 MB
Pool ID '16G4HitsCollection', size : 0.000961 MB
-Pool ID '7G4Track', size : 0.161 MB
-Pool ID '18G4TouchableHistory', size : 0.00673 MB
+Pool ID '7G4Track', size : 0.137 MB
+Pool ID '18G4TouchableHistory', size : 0.00577 MB
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
-Pool ID '17G4ReactionProduct', size : 0.0125 MB
+Pool ID '17G4ReactionProduct', size : 0.0115 MB
Pool ID '10G4Fragment', size : 0.00481 MB
Number of memory pools allocated: 13 of which, static: 0
-Dynamic pools deleted: 13 / Total memory freed: 0.35 MB
+Dynamic pools deleted: 13 / Total memory freed: 0.31 MB
============================================================
G4Allocator objects are deleted.
UImanager deleted.
diff --git a/examples/advanced/composite_calorimeter/include/CCalG4Hit.hh b/examples/advanced/composite_calorimeter/include/CCalG4Hit.hh
index 72532cbf97c..b179f78a802 100644
--- a/examples/advanced/composite_calorimeter/include/CCalG4Hit.hh
+++ b/examples/advanced/composite_calorimeter/include/CCalG4Hit.hh
@@ -45,7 +45,7 @@ public:
~CCalG4Hit();
CCalG4Hit(const CCalG4Hit & right);
const CCalG4Hit& operator=(const CCalG4Hit & right);
- int operator==(const CCalG4Hit &){return 0;}
+ G4bool operator==(const CCalG4Hit &){return 0;}
public:
diff --git a/examples/advanced/composite_calorimeter/include/CCalHit.hh b/examples/advanced/composite_calorimeter/include/CCalHit.hh
index 6f92b82a3f0..5d696b8db48 100644
--- a/examples/advanced/composite_calorimeter/include/CCalHit.hh
+++ b/examples/advanced/composite_calorimeter/include/CCalHit.hh
@@ -59,7 +59,7 @@ public:
~CCalHit();
CCalHit(const CCalHit &right);
const CCalHit& operator=(const CCalHit &right);
- int operator==(const CCalHit &){return 0;}
+ G4bool operator==(const CCalHit &){return 0;}
void print();
diff --git a/examples/advanced/doiPET/History b/examples/advanced/doiPET/History
index 0f765fd81cc..1febdb68c1b 100644
--- a/examples/advanced/doiPET/History
+++ b/examples/advanced/doiPET/History
@@ -5,6 +5,11 @@
Category History file
---------------------
+
+17.12.2018 - G. Cosmo;doiPET-V10-04-01
+ Fixed compilation warnings on clang for unused data members in
+ doiPETDetectorConstruction and doiPETEventAction classes.
+
25.10.2018 - S. Guatelli;doiPET-V10-04-00
PET example introduced for the first time
diff --git a/examples/advanced/doiPET/include/doiPETDetectorConstruction.hh b/examples/advanced/doiPET/include/doiPETDetectorConstruction.hh
index 3d8bd484726..e757c0b6f20 100644
--- a/examples/advanced/doiPET/include/doiPETDetectorConstruction.hh
+++ b/examples/advanced/doiPET/include/doiPETDetectorConstruction.hh
@@ -80,8 +80,8 @@ private:
G4LogicalVolume* phantom_logicalV;
G4VPhysicalVolume* phantom_physicalV;
- G4LogicalVolume* gelatin_logicalV;
- G4VPhysicalVolume* gelatin_physicalV;
+ // G4LogicalVolume* gelatin_logicalV;
+ // G4VPhysicalVolume* gelatin_physicalV;
//wolrd
G4LogicalVolume* world_logicalV;
@@ -116,8 +116,8 @@ private:
G4VPhysicalVolume* lung_physicalVPMMA;
//cold regions
- G4LogicalVolume* coldRegion_logicalV;
- G4VPhysicalVolume* coldRegion_physicalV;
+ // G4LogicalVolume* coldRegion_logicalV;
+ // G4VPhysicalVolume* coldRegion_physicalV;
//
//Surrounding PMMA for hot sphere
@@ -160,7 +160,7 @@ private:
//Dimension of the sphere
- G4double spherePositionX, spherePositionY, spherePositionZ;
+ G4double spherePositionX, spherePositionY; // spherePositionZ;
G4double sphereDiameter;
G4double distanceFromCenter;
G4int numberOfSpheres;
@@ -175,7 +175,7 @@ private:
G4Material* water;
G4Material* polyethylene;
G4Material* polyethylene_NEMA;
- G4Material* inflatedLung;
+ // G4Material* inflatedLung;
G4Material* polystyrene;
G4Material* Aluminum;
@@ -233,7 +233,7 @@ private:
G4double thetaDetector; //The azimuthal angle for arranging the detector in the PET ring
//G4double ringGap;
G4int blockIndex;
- G4int AlCase_Index;
+ // G4int AlCase_Index;
G4int crystalIndex;
//detector position
@@ -255,7 +255,7 @@ private:
G4double phantomLength;
//Phantom dimension for rectangular box (placed for therapy study)
- G4double phantomSizeX, phantomSizeY, phantomSizeZ;
+ // G4double phantomSizeX, phantomSizeY, phantomSizeZ;
//the following is to make the body phantom
G4double yOffsetBodyPhantom;
diff --git a/examples/advanced/doiPET/include/doiPETEventAction.hh b/examples/advanced/doiPET/include/doiPETEventAction.hh
index cca09e3d3d5..9641abcd41c 100644
--- a/examples/advanced/doiPET/include/doiPETEventAction.hh
+++ b/examples/advanced/doiPET/include/doiPETEventAction.hh
@@ -58,7 +58,7 @@ public:
virtual void EndOfEventAction(const G4Event*);
private:
- G4int eventID;
+ // G4int eventID;
G4int printModulo;
};
diff --git a/examples/advanced/eRosita/History b/examples/advanced/eRosita/History
index 180a67f7215..67572973d0b 100644
--- a/examples/advanced/eRosita/History
+++ b/examples/advanced/eRosita/History
@@ -16,6 +16,9 @@ committal in the CVS repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+31.01.2019, I.Hrivnacova eRosita-V10-04-00
+ Merged GitHub PR #4: all Boolean operators now return G4bool.
+
15.11.2017, G.Cosmo eRosita-V10-03-02
Fixed compilation warning.
Removed unnecessary dependency of PrimaryGeneratorAction on
diff --git a/examples/advanced/eRosita/application/include/eRositaTrackerHit.hh b/examples/advanced/eRosita/application/include/eRositaTrackerHit.hh
index 6f78cbeb6c3..23de2a738c3 100644
--- a/examples/advanced/eRosita/application/include/eRositaTrackerHit.hh
+++ b/examples/advanced/eRosita/application/include/eRositaTrackerHit.hh
@@ -48,7 +48,7 @@ public:
~eRositaTrackerHit();
eRositaTrackerHit(const eRositaTrackerHit&);
const eRositaTrackerHit& operator=(const eRositaTrackerHit&);
- G4int operator==(const eRositaTrackerHit&) const;
+ G4bool operator==(const eRositaTrackerHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
diff --git a/examples/advanced/eRosita/application/src/eRositaTrackerHit.cc b/examples/advanced/eRosita/application/src/eRositaTrackerHit.cc
index b49bc19466c..0ec3ea6b3a1 100644
--- a/examples/advanced/eRosita/application/src/eRositaTrackerHit.cc
+++ b/examples/advanced/eRosita/application/src/eRositaTrackerHit.cc
@@ -64,9 +64,9 @@ const eRositaTrackerHit& eRositaTrackerHit::operator=(const eRositaTrackerHit& r
}
-G4int eRositaTrackerHit::operator==(const eRositaTrackerHit& right) const
+G4bool eRositaTrackerHit::operator==(const eRositaTrackerHit& right) const
{
- return (this==&right) ? 1 : 0;
+ return (this==&right) ? true : false;
}
diff --git a/examples/advanced/eRosita/eRosita.out b/examples/advanced/eRosita/eRosita.out
index 06efef77d56..fe0f2e6b652 100644
--- a/examples/advanced/eRosita/eRosita.out
+++ b/examples/advanced/eRosita/eRosita.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -62,98 +58,98 @@ The materials defined are :
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PhotoElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila
+ PhotoElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -201,4 +197,4 @@ Index : 2 used in the geometry : Yes
---- eRosita event counter: 9000
---- eRosita event counter: 10000
--- Run 00 ends (Number of events = 10000).
- User=41.960000s Real=42.556943s Sys=0.000000s
+ User=38.890000s Real=38.931181s Sys=0.010000s
diff --git a/examples/advanced/gammaknife/gammaknife.out b/examples/advanced/gammaknife/gammaknife.out
index 5376e7726e1..8e515ae27b6 100644
--- a/examples/advanced/gammaknife/gammaknife.out
+++ b/examples/advanced/gammaknife/gammaknife.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -28,12 +24,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -121,337 +115,337 @@ Helmet size set to 14
DefaultRegionForTheWorld 1 0 0
### === Ignore cuts flag: 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 10 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 10 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- KleinNishina : Emin= 0 eV Emax= 100 TeV FluoActive
+ KleinNishina : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 10 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 10 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for proton SubType= 8 BuildTable= 0
+nuclearStopping: for proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for anti_proton SubType= 8 BuildTable= 0
+nuclearStopping: for anti_proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -518,8 +512,8 @@ Run 0 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.006656s Sys=0.000000s
- User TOT = 0 Real TOT = 0.00712979
+ User=0.000000s Real=0.153449s Sys=0.000000s
+ User TOT = 0.01 Real TOT = 0.15406
Summary of Run 0 :
/run/geometryModified
@@ -588,8 +582,8 @@ Run 1 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002144s Sys=0.000000s
- User TOT = 0 Real TOT = 0.00939945
+ User=0.000000s Real=0.218072s Sys=0.000000s
+ User TOT = 0.01 Real TOT = 0.372267
Summary of Run 1 :
/run/geometryModified
@@ -658,8 +652,8 @@ Run 2 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.002660s Sys=0.010000s
- User TOT = 0.01 Real TOT = 0.012183
+ User=0.000000s Real=0.210955s Sys=0.000000s
+ User TOT = 0.01 Real TOT = 0.583381
Summary of Run 2 :
/run/geometryModified
@@ -728,8 +722,8 @@ Run 3 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.005481s Sys=0.000000s
- User TOT = 0.01 Real TOT = 0.0177866
+ User=0.010000s Real=0.206516s Sys=0.010000s
+ User TOT = 0.02 Real TOT = 0.790031
Summary of Run 3 :
/run/geometryModified
@@ -798,8 +792,8 @@ Run 4 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.022594s Sys=0.000000s
- User TOT = 0.01 Real TOT = 0.0405276
+ User=0.000000s Real=0.209116s Sys=0.000000s
+ User TOT = 0.02 Real TOT = 0.999265
Summary of Run 4 :
/run/geometryModified
@@ -868,8 +862,8 @@ Run 5 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.019397s Sys=0.000000s
- User TOT = 0.01 Real TOT = 0.0600602
+ User=0.000000s Real=0.209279s Sys=0.000000s
+ User TOT = 0.02 Real TOT = 1.20866
Summary of Run 5 :
/run/geometryModified
@@ -938,8 +932,8 @@ Run 6 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002984s Sys=0.000000s
- User TOT = 0.01 Real TOT = 0.0631697
+ User=0.010000s Real=0.209201s Sys=0.000000s
+ User TOT = 0.03 Real TOT = 1.41801
Summary of Run 6 :
/run/geometryModified
@@ -1008,8 +1002,8 @@ Run 7 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002033s Sys=0.000000s
- User TOT = 0.01 Real TOT = 0.065318
+ User=0.000000s Real=1.709485s Sys=0.000000s
+ User TOT = 0.03 Real TOT = 3.12764
Summary of Run 7 :
/run/geometryModified
@@ -1078,8 +1072,8 @@ Run 8 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002016s Sys=0.000000s
- User TOT = 0.01 Real TOT = 0.0674604
+ User=0.000000s Real=0.208863s Sys=0.000000s
+ User TOT = 0.03 Real TOT = 3.33663
Summary of Run 8 :
/run/geometryModified
@@ -1148,8 +1142,8 @@ Run 9 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002258s Sys=0.000000s
- User TOT = 0.01 Real TOT = 0.0698305
+ User=0.000000s Real=0.219369s Sys=0.000000s
+ User TOT = 0.03 Real TOT = 3.55616
Summary of Run 9 :
/run/geometryModified
@@ -1218,8 +1212,8 @@ Run 10 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002216s Sys=0.000000s
- User TOT = 0.01 Real TOT = 0.0721611
+ User=0.000000s Real=0.218353s Sys=0.000000s
+ User TOT = 0.03 Real TOT = 3.77466
Summary of Run 10 :
/run/geometryModified
@@ -1288,8 +1282,8 @@ Run 11 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.014776s Sys=0.000000s
- User TOT = 0.01 Real TOT = 0.0870651
+ User=0.010000s Real=0.209440s Sys=0.000000s
+ User TOT = 0.04 Real TOT = 3.98423
Summary of Run 11 :
/run/geometryModified
@@ -1358,8 +1352,8 @@ Run 12 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.001885s Sys=0.000000s
- User TOT = 0.01 Real TOT = 0.0890721
+ User=0.000000s Real=0.209056s Sys=0.010000s
+ User TOT = 0.04 Real TOT = 4.19342
Summary of Run 12 :
/run/geometryModified
@@ -1428,8 +1422,8 @@ Run 13 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002080s Sys=0.000000s
- User TOT = 0.01 Real TOT = 0.0912707
+ User=0.000000s Real=0.208387s Sys=0.000000s
+ User TOT = 0.04 Real TOT = 4.40193
Summary of Run 13 :
/run/geometryModified
@@ -1498,8 +1492,8 @@ Run 14 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002053s Sys=0.000000s
- User TOT = 0.01 Real TOT = 0.0934589
+ User=0.010000s Real=0.209039s Sys=0.000000s
+ User TOT = 0.05 Real TOT = 4.6111
Summary of Run 14 :
/run/geometryModified
@@ -1568,8 +1562,8 @@ Run 15 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.001756s Sys=0.010000s
- User TOT = 0.02 Real TOT = 0.0953441
+ User=0.000000s Real=0.209114s Sys=0.000000s
+ User TOT = 0.05 Real TOT = 4.82033
Summary of Run 15 :
/run/geometryModified
@@ -1638,8 +1632,8 @@ Run 16 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002179s Sys=0.000000s
- User TOT = 0.02 Real TOT = 0.0976396
+ User=0.000000s Real=0.209881s Sys=0.000000s
+ User TOT = 0.05 Real TOT = 5.03033
Summary of Run 16 :
/run/geometryModified
@@ -1708,8 +1702,8 @@ Run 17 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002190s Sys=0.000000s
- User TOT = 0.02 Real TOT = 0.099944
+ User=0.010000s Real=0.208926s Sys=0.000000s
+ User TOT = 0.06 Real TOT = 5.23938
Summary of Run 17 :
/run/geometryModified
@@ -1778,8 +1772,8 @@ Run 18 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002630s Sys=0.000000s
- User TOT = 0.02 Real TOT = 0.102691
+ User=0.000000s Real=0.211273s Sys=0.000000s
+ User TOT = 0.06 Real TOT = 5.45078
Summary of Run 18 :
/run/geometryModified
@@ -1848,8 +1842,8 @@ Run 19 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.001889s Sys=0.000000s
- User TOT = 0.02 Real TOT = 0.104705
+ User=0.010000s Real=0.207982s Sys=0.000000s
+ User TOT = 0.07 Real TOT = 5.65889
Summary of Run 19 :
/run/geometryModified
@@ -1918,8 +1912,8 @@ Run 20 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.003005s Sys=0.000000s
- User TOT = 0.02 Real TOT = 0.107832
+ User=0.000000s Real=0.208513s Sys=0.000000s
+ User TOT = 0.07 Real TOT = 5.86754
Summary of Run 20 :
/run/geometryModified
@@ -1988,8 +1982,8 @@ Run 21 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.003247s Sys=0.000000s
- User TOT = 0.03 Real TOT = 0.111234
+ User=0.010000s Real=0.208395s Sys=0.000000s
+ User TOT = 0.08 Real TOT = 6.07605
Summary of Run 21 :
/run/geometryModified
@@ -2058,8 +2052,8 @@ Run 22 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002293s Sys=0.000000s
- User TOT = 0.03 Real TOT = 0.113678
+ User=0.000000s Real=0.209375s Sys=0.010000s
+ User TOT = 0.08 Real TOT = 6.28557
Summary of Run 22 :
/run/geometryModified
@@ -2128,8 +2122,8 @@ Run 23 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002993s Sys=0.000000s
- User TOT = 0.03 Real TOT = 0.116809
+ User=0.000000s Real=0.208179s Sys=0.000000s
+ User TOT = 0.08 Real TOT = 6.49391
Summary of Run 23 :
/run/geometryModified
@@ -2198,8 +2192,8 @@ Run 24 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002364s Sys=0.000000s
- User TOT = 0.03 Real TOT = 0.119289
+ User=0.010000s Real=0.209563s Sys=0.000000s
+ User TOT = 0.09 Real TOT = 6.70359
Summary of Run 24 :
/run/geometryModified
@@ -2268,8 +2262,8 @@ Run 25 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002931s Sys=0.010000s
- User TOT = 0.03 Real TOT = 0.122341
+ User=0.000000s Real=0.209337s Sys=0.000000s
+ User TOT = 0.09 Real TOT = 6.91305
Summary of Run 25 :
/run/geometryModified
@@ -2338,8 +2332,8 @@ Run 26 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.003386s Sys=0.000000s
- User TOT = 0.03 Real TOT = 0.125848
+ User=0.010000s Real=0.209621s Sys=0.000000s
+ User TOT = 0.1 Real TOT = 7.12282
Summary of Run 26 :
/run/geometryModified
@@ -2408,8 +2402,8 @@ Run 27 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.010132s Sys=0.000000s
- User TOT = 0.03 Real TOT = 0.136099
+ User=0.000000s Real=0.208258s Sys=0.000000s
+ User TOT = 0.1 Real TOT = 7.33121
Summary of Run 27 :
/run/geometryModified
@@ -2478,8 +2472,8 @@ Run 28 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002104s Sys=0.000000s
- User TOT = 0.03 Real TOT = 0.138317
+ User=0.000000s Real=0.208727s Sys=0.000000s
+ User TOT = 0.1 Real TOT = 7.54007
Summary of Run 28 :
/run/geometryModified
@@ -2548,8 +2542,8 @@ Run 29 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002866s Sys=0.000000s
- User TOT = 0.03 Real TOT = 0.141304
+ User=0.000000s Real=0.210235s Sys=0.000000s
+ User TOT = 0.1 Real TOT = 7.75044
Summary of Run 29 :
/run/geometryModified
@@ -2618,8 +2612,8 @@ Run 30 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.010480s Sys=0.000000s
- User TOT = 0.03 Real TOT = 0.151923
+ User=0.000000s Real=0.347939s Sys=0.010000s
+ User TOT = 0.1 Real TOT = 8.0985
Summary of Run 30 :
/run/geometryModified
@@ -2688,8 +2682,8 @@ Run 31 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.002683s Sys=0.000000s
- User TOT = 0.04 Real TOT = 0.15473
+ User=0.000000s Real=0.209588s Sys=0.000000s
+ User TOT = 0.1 Real TOT = 8.30821
Summary of Run 31 :
/run/geometryModified
@@ -2758,8 +2752,8 @@ Run 32 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002727s Sys=0.000000s
- User TOT = 0.04 Real TOT = 0.157575
+ User=0.000000s Real=0.218257s Sys=0.000000s
+ User TOT = 0.1 Real TOT = 8.52659
Summary of Run 32 :
/run/geometryModified
@@ -2828,8 +2822,8 @@ Run 33 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.003395s Sys=0.000000s
- User TOT = 0.04 Real TOT = 0.161089
+ User=0.000000s Real=0.209427s Sys=0.000000s
+ User TOT = 0.1 Real TOT = 8.73615
Summary of Run 33 :
/run/geometryModified
@@ -2898,8 +2892,8 @@ Run 34 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002160s Sys=0.000000s
- User TOT = 0.04 Real TOT = 0.163364
+ User=0.010000s Real=0.219311s Sys=0.000000s
+ User TOT = 0.11 Real TOT = 8.95561
Summary of Run 34 :
/run/geometryModified
@@ -2968,8 +2962,8 @@ Run 35 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002035s Sys=0.000000s
- User TOT = 0.04 Real TOT = 0.165517
+ User=0.000000s Real=0.209989s Sys=0.000000s
+ User TOT = 0.11 Real TOT = 9.16572
Summary of Run 35 :
/run/geometryModified
@@ -3038,8 +3032,8 @@ Run 36 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002269s Sys=0.000000s
- User TOT = 0.04 Real TOT = 0.167899
+ User=0.000000s Real=0.207891s Sys=0.000000s
+ User TOT = 0.12 Real TOT = 9.37376
Summary of Run 36 :
/run/geometryModified
@@ -3108,8 +3102,8 @@ Run 37 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002344s Sys=0.000000s
- User TOT = 0.04 Real TOT = 0.170357
+ User=0.000000s Real=0.208973s Sys=0.000000s
+ User TOT = 0.12 Real TOT = 9.58287
Summary of Run 37 :
/run/geometryModified
@@ -3178,8 +3172,8 @@ Run 38 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002596s Sys=0.000000s
- User TOT = 0.04 Real TOT = 0.173074
+ User=0.000000s Real=0.209000s Sys=0.000000s
+ User TOT = 0.12 Real TOT = 9.79198
Summary of Run 38 :
/run/geometryModified
@@ -3248,8 +3242,8 @@ Run 39 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002409s Sys=0.000000s
- User TOT = 0.04 Real TOT = 0.175598
+ User=0.010000s Real=0.209879s Sys=0.000000s
+ User TOT = 0.13 Real TOT = 10.002
Summary of Run 39 :
/run/geometryModified
@@ -3318,8 +3312,8 @@ Run 40 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002081s Sys=0.010000s
- User TOT = 0.04 Real TOT = 0.177808
+ User=0.000000s Real=0.208910s Sys=0.000000s
+ User TOT = 0.13 Real TOT = 10.211
Summary of Run 40 :
/run/geometryModified
@@ -3388,8 +3382,8 @@ Run 41 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002205s Sys=0.000000s
- User TOT = 0.04 Real TOT = 0.180144
+ User=0.000000s Real=0.208442s Sys=0.010000s
+ User TOT = 0.13 Real TOT = 10.4196
Summary of Run 41 :
/run/geometryModified
@@ -3458,8 +3452,8 @@ Run 42 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.002366s Sys=0.000000s
- User TOT = 0.05 Real TOT = 0.182635
+ User=0.000000s Real=0.209702s Sys=0.000000s
+ User TOT = 0.13 Real TOT = 10.6294
Summary of Run 42 :
/run/geometryModified
@@ -3528,8 +3522,8 @@ Run 43 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.001737s Sys=0.000000s
- User TOT = 0.05 Real TOT = 0.184496
+ User=0.000000s Real=0.208678s Sys=0.000000s
+ User TOT = 0.13 Real TOT = 10.8382
Summary of Run 43 :
/run/geometryModified
@@ -3598,8 +3592,8 @@ Run 44 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002864s Sys=0.000000s
- User TOT = 0.05 Real TOT = 0.187474
+ User=0.000000s Real=0.208868s Sys=0.000000s
+ User TOT = 0.13 Real TOT = 11.0472
Summary of Run 44 :
/run/geometryModified
@@ -3668,8 +3662,8 @@ Run 45 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.001576s Sys=0.000000s
- User TOT = 0.05 Real TOT = 0.189165
+ User=0.010000s Real=0.209205s Sys=0.000000s
+ User TOT = 0.14 Real TOT = 11.2565
Summary of Run 45 :
/run/geometryModified
@@ -3738,8 +3732,8 @@ Run 46 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.007950s Sys=0.000000s
- User TOT = 0.05 Real TOT = 0.197234
+ User=0.000000s Real=0.209249s Sys=0.000000s
+ User TOT = 0.14 Real TOT = 11.4659
Summary of Run 46 :
/run/geometryModified
@@ -3808,8 +3802,8 @@ Run 47 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.001765s Sys=0.000000s
- User TOT = 0.05 Real TOT = 0.199118
+ User=0.010000s Real=0.208321s Sys=0.000000s
+ User TOT = 0.15 Real TOT = 11.6744
Summary of Run 47 :
/run/geometryModified
@@ -3878,8 +3872,8 @@ Run 48 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.002921s Sys=0.000000s
- User TOT = 0.06 Real TOT = 0.202146
+ User=0.000000s Real=0.209273s Sys=0.000000s
+ User TOT = 0.15 Real TOT = 11.8838
Summary of Run 48 :
/run/geometryModified
@@ -3948,8 +3942,8 @@ Run 49 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.015472s Sys=0.000000s
- User TOT = 0.06 Real TOT = 0.21775
+ User=0.000000s Real=0.211448s Sys=0.000000s
+ User TOT = 0.15 Real TOT = 12.0953
Summary of Run 49 :
/run/geometryModified
@@ -4018,8 +4012,8 @@ Run 50 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002105s Sys=0.000000s
- User TOT = 0.06 Real TOT = 0.219989
+ User=0.010000s Real=0.207330s Sys=0.000000s
+ User TOT = 0.16 Real TOT = 12.3028
Summary of Run 50 :
/run/geometryModified
@@ -4088,8 +4082,8 @@ Run 51 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002140s Sys=0.000000s
- User TOT = 0.06 Real TOT = 0.222244
+ User=0.000000s Real=0.208415s Sys=0.000000s
+ User TOT = 0.16 Real TOT = 12.5113
Summary of Run 51 :
/run/geometryModified
@@ -4158,8 +4152,8 @@ Run 52 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002008s Sys=0.000000s
- User TOT = 0.06 Real TOT = 0.224367
+ User=0.010000s Real=0.209302s Sys=0.000000s
+ User TOT = 0.17 Real TOT = 12.7208
Summary of Run 52 :
/run/geometryModified
@@ -4228,8 +4222,8 @@ Run 53 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.007835s Sys=0.000000s
- User TOT = 0.06 Real TOT = 0.232327
+ User=0.000000s Real=0.409076s Sys=0.000000s
+ User TOT = 0.17 Real TOT = 13.13
Summary of Run 53 :
/run/geometryModified
@@ -4298,8 +4292,8 @@ Run 54 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002456s Sys=0.000000s
- User TOT = 0.06 Real TOT = 0.234909
+ User=0.010000s Real=0.209665s Sys=0.000000s
+ User TOT = 0.18 Real TOT = 13.3397
Summary of Run 54 :
/run/geometryModified
@@ -4368,8 +4362,8 @@ Run 55 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002141s Sys=0.000000s
- User TOT = 0.06 Real TOT = 0.237165
+ User=0.000000s Real=0.218259s Sys=0.010000s
+ User TOT = 0.18 Real TOT = 13.5581
Summary of Run 55 :
/run/geometryModified
@@ -4438,8 +4432,8 @@ Run 56 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.001673s Sys=0.000000s
- User TOT = 0.06 Real TOT = 0.238951
+ User=0.000000s Real=0.218804s Sys=0.000000s
+ User TOT = 0.18 Real TOT = 13.7771
Summary of Run 56 :
/run/geometryModified
@@ -4508,8 +4502,8 @@ Run 57 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.002543s Sys=0.000000s
- User TOT = 0.07 Real TOT = 0.241654
+ User=0.010000s Real=0.209677s Sys=0.000000s
+ User TOT = 0.19 Real TOT = 13.9869
Summary of Run 57 :
/run/geometryModified
@@ -4578,8 +4572,8 @@ Run 58 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002638s Sys=0.000000s
- User TOT = 0.07 Real TOT = 0.244405
+ User=0.000000s Real=0.208722s Sys=0.000000s
+ User TOT = 0.19 Real TOT = 14.1957
Summary of Run 58 :
/run/geometryModified
@@ -4648,8 +4642,8 @@ Run 59 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002663s Sys=0.000000s
- User TOT = 0.07 Real TOT = 0.247185
+ User=0.000000s Real=0.209547s Sys=0.000000s
+ User TOT = 0.19 Real TOT = 14.4054
Summary of Run 59 :
/run/geometryModified
@@ -4718,8 +4712,8 @@ Run 60 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002527s Sys=0.000000s
- User TOT = 0.07 Real TOT = 0.249826
+ User=0.010000s Real=0.209606s Sys=0.000000s
+ User TOT = 0.2 Real TOT = 14.6151
Summary of Run 60 :
/run/geometryModified
@@ -4788,8 +4782,8 @@ Run 61 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002068s Sys=0.010000s
- User TOT = 0.07 Real TOT = 0.252007
+ User=0.000000s Real=0.208290s Sys=0.000000s
+ User TOT = 0.2 Real TOT = 14.8236
Summary of Run 61 :
/run/geometryModified
@@ -4858,8 +4852,8 @@ Run 62 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.001954s Sys=0.000000s
- User TOT = 0.07 Real TOT = 0.254074
+ User=0.000000s Real=0.208704s Sys=0.000000s
+ User TOT = 0.2 Real TOT = 15.0324
Summary of Run 62 :
/run/geometryModified
@@ -4928,8 +4922,8 @@ Run 63 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.004092s Sys=0.000000s
- User TOT = 0.07 Real TOT = 0.258282
+ User=0.000000s Real=0.209620s Sys=0.010000s
+ User TOT = 0.2 Real TOT = 15.2422
Summary of Run 63 :
/run/geometryModified
@@ -4998,8 +4992,8 @@ Run 64 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.001675s Sys=0.000000s
- User TOT = 0.07 Real TOT = 0.260075
+ User=0.000000s Real=0.209205s Sys=0.000000s
+ User TOT = 0.2 Real TOT = 15.4515
Summary of Run 64 :
/run/geometryModified
@@ -5068,8 +5062,8 @@ Run 65 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002355s Sys=0.000000s
- User TOT = 0.07 Real TOT = 0.262546
+ User=0.010000s Real=0.209242s Sys=0.000000s
+ User TOT = 0.21 Real TOT = 15.6609
Summary of Run 65 :
/run/geometryModified
@@ -5138,8 +5132,8 @@ Run 66 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002428s Sys=0.000000s
- User TOT = 0.07 Real TOT = 0.265091
+ User=0.000000s Real=0.207837s Sys=0.000000s
+ User TOT = 0.21 Real TOT = 15.8689
Summary of Run 66 :
/run/geometryModified
@@ -5208,8 +5202,8 @@ Run 67 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002445s Sys=0.000000s
- User TOT = 0.07 Real TOT = 0.267674
+ User=0.010000s Real=0.209791s Sys=0.000000s
+ User TOT = 0.22 Real TOT = 16.0788
Summary of Run 67 :
/run/geometryModified
@@ -5278,8 +5272,8 @@ Run 68 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002332s Sys=0.000000s
- User TOT = 0.07 Real TOT = 0.270135
+ User=0.000000s Real=0.208916s Sys=0.000000s
+ User TOT = 0.22 Real TOT = 16.2878
Summary of Run 68 :
/run/geometryModified
@@ -5348,8 +5342,8 @@ Run 69 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.001795s Sys=0.010000s
- User TOT = 0.07 Real TOT = 0.27206
+ User=0.000000s Real=0.208926s Sys=0.000000s
+ User TOT = 0.22 Real TOT = 16.4969
Summary of Run 69 :
/run/geometryModified
@@ -5418,8 +5412,8 @@ Run 70 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002273s Sys=0.000000s
- User TOT = 0.07 Real TOT = 0.274447
+ User=0.010000s Real=0.209554s Sys=0.000000s
+ User TOT = 0.23 Real TOT = 16.7066
Summary of Run 70 :
/run/geometryModified
@@ -5488,8 +5482,8 @@ Run 71 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002023s Sys=0.000000s
- User TOT = 0.07 Real TOT = 0.276589
+ User=0.000000s Real=0.208242s Sys=0.000000s
+ User TOT = 0.23 Real TOT = 16.915
Summary of Run 71 :
/run/geometryModified
@@ -5558,8 +5552,8 @@ Run 72 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002112s Sys=0.000000s
- User TOT = 0.07 Real TOT = 0.278813
+ User=0.000000s Real=0.209951s Sys=0.000000s
+ User TOT = 0.23 Real TOT = 17.125
Summary of Run 72 :
/run/geometryModified
@@ -5628,8 +5622,8 @@ Run 73 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.002990s Sys=0.000000s
- User TOT = 0.08 Real TOT = 0.281919
+ User=0.010000s Real=0.210316s Sys=0.000000s
+ User TOT = 0.24 Real TOT = 17.3355
Summary of Run 73 :
/run/geometryModified
@@ -5698,8 +5692,8 @@ Run 74 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002518s Sys=0.000000s
- User TOT = 0.08 Real TOT = 0.284554
+ User=0.000000s Real=0.207611s Sys=0.000000s
+ User TOT = 0.24 Real TOT = 17.5432
Summary of Run 74 :
/run/geometryModified
@@ -5768,8 +5762,8 @@ Run 75 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002258s Sys=0.000000s
- User TOT = 0.08 Real TOT = 0.286925
+ User=0.000000s Real=0.420012s Sys=0.010000s
+ User TOT = 0.24 Real TOT = 17.9634
Summary of Run 75 :
/run/geometryModified
@@ -5838,8 +5832,8 @@ Run 76 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.001674s Sys=0.000000s
- User TOT = 0.08 Real TOT = 0.288711
+ User=0.010000s Real=0.208200s Sys=0.000000s
+ User TOT = 0.25 Real TOT = 18.1717
Summary of Run 76 :
/run/geometryModified
@@ -5908,8 +5902,8 @@ Run 77 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.003331s Sys=0.000000s
- User TOT = 0.08 Real TOT = 0.29217
+ User=0.000000s Real=0.212908s Sys=0.000000s
+ User TOT = 0.25 Real TOT = 18.3847
Summary of Run 77 :
/run/geometryModified
@@ -5978,8 +5972,8 @@ Run 78 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002345s Sys=0.000000s
- User TOT = 0.08 Real TOT = 0.29463
+ User=0.000000s Real=0.225092s Sys=0.000000s
+ User TOT = 0.25 Real TOT = 18.61
Summary of Run 78 :
/run/geometryModified
@@ -6048,8 +6042,8 @@ Run 79 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.002145s Sys=0.000000s
- User TOT = 0.09 Real TOT = 0.296893
+ User=0.010000s Real=0.218538s Sys=0.000000s
+ User TOT = 0.26 Real TOT = 18.8287
Summary of Run 79 :
/run/geometryModified
@@ -6118,8 +6112,8 @@ Run 80 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002159s Sys=0.000000s
- User TOT = 0.09 Real TOT = 0.299162
+ User=0.000000s Real=0.209481s Sys=0.010000s
+ User TOT = 0.26 Real TOT = 19.0383
Summary of Run 80 :
/run/geometryModified
@@ -6188,8 +6182,8 @@ Run 81 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002229s Sys=0.000000s
- User TOT = 0.09 Real TOT = 0.301502
+ User=0.010000s Real=0.209432s Sys=0.000000s
+ User TOT = 0.27 Real TOT = 19.2479
Summary of Run 81 :
/run/geometryModified
@@ -6258,8 +6252,8 @@ Run 82 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002514s Sys=0.000000s
- User TOT = 0.09 Real TOT = 0.304128
+ User=0.000000s Real=0.209760s Sys=0.000000s
+ User TOT = 0.27 Real TOT = 19.4578
Summary of Run 82 :
/run/geometryModified
@@ -6328,8 +6322,8 @@ Run 83 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002676s Sys=0.000000s
- User TOT = 0.09 Real TOT = 0.306922
+ User=0.000000s Real=0.208008s Sys=0.000000s
+ User TOT = 0.27 Real TOT = 19.6659
Summary of Run 83 :
/run/geometryModified
@@ -6398,8 +6392,8 @@ Run 84 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002186s Sys=0.000000s
- User TOT = 0.09 Real TOT = 0.309233
+ User=0.010000s Real=0.209770s Sys=0.000000s
+ User TOT = 0.28 Real TOT = 19.8758
Summary of Run 84 :
/run/geometryModified
@@ -6468,8 +6462,8 @@ Run 85 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002039s Sys=0.000000s
- User TOT = 0.09 Real TOT = 0.311406
+ User=0.000000s Real=0.208701s Sys=0.000000s
+ User TOT = 0.28 Real TOT = 20.0846
Summary of Run 85 :
/run/geometryModified
@@ -6538,8 +6532,8 @@ Run 86 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.001958s Sys=0.000000s
- User TOT = 0.09 Real TOT = 0.313478
+ User=0.010000s Real=0.209069s Sys=0.000000s
+ User TOT = 0.29 Real TOT = 20.2938
Summary of Run 86 :
/run/geometryModified
@@ -6608,8 +6602,8 @@ Run 87 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.001911s Sys=0.000000s
- User TOT = 0.1 Real TOT = 0.3155
+ User=0.000000s Real=0.209205s Sys=0.000000s
+ User TOT = 0.29 Real TOT = 20.5031
Summary of Run 87 :
/run/geometryModified
@@ -6678,8 +6672,8 @@ Run 88 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002000s Sys=0.000000s
- User TOT = 0.1 Real TOT = 0.317612
+ User=0.010000s Real=0.209232s Sys=0.000000s
+ User TOT = 0.3 Real TOT = 20.7125
Summary of Run 88 :
/run/geometryModified
@@ -6748,8 +6742,8 @@ Run 89 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.001847s Sys=0.000000s
- User TOT = 0.1 Real TOT = 0.319601
+ User=0.000000s Real=0.208919s Sys=0.000000s
+ User TOT = 0.3 Real TOT = 20.9216
Summary of Run 89 :
/run/geometryModified
@@ -6818,8 +6812,8 @@ Run 90 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002675s Sys=0.000000s
- User TOT = 0.1 Real TOT = 0.322388
+ User=0.000000s Real=0.208600s Sys=0.000000s
+ User TOT = 0.3 Real TOT = 21.1303
Summary of Run 90 :
/run/geometryModified
@@ -6888,8 +6882,8 @@ Run 91 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.001983s Sys=0.000000s
- User TOT = 0.1 Real TOT = 0.324483
+ User=0.000000s Real=0.209616s Sys=0.000000s
+ User TOT = 0.3 Real TOT = 21.34
Summary of Run 91 :
/run/geometryModified
@@ -6958,8 +6952,8 @@ Run 92 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.001906s Sys=0.000000s
- User TOT = 0.11 Real TOT = 0.326502
+ User=0.000000s Real=0.208669s Sys=0.000000s
+ User TOT = 0.3 Real TOT = 21.5488
Summary of Run 92 :
/run/geometryModified
@@ -7028,8 +7022,8 @@ Run 93 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.002088s Sys=0.010000s
- User TOT = 0.11 Real TOT = 0.328703
+ User=0.010000s Real=0.209547s Sys=0.000000s
+ User TOT = 0.31 Real TOT = 21.7585
Summary of Run 93 :
/run/geometryModified
@@ -7098,8 +7092,8 @@ Run 94 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.001934s Sys=0.000000s
- User TOT = 0.11 Real TOT = 0.330749
+ User=0.000000s Real=0.209160s Sys=0.000000s
+ User TOT = 0.31 Real TOT = 21.9678
Summary of Run 94 :
/run/geometryModified
@@ -7168,8 +7162,8 @@ Run 95 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.115113s Sys=0.000000s
- User TOT = 0.11 Real TOT = 0.446013
+ User=0.000000s Real=0.209141s Sys=0.000000s
+ User TOT = 0.31 Real TOT = 22.1771
Summary of Run 95 :
/run/geometryModified
@@ -7238,8 +7232,8 @@ Run 96 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.103044s Sys=0.000000s
- User TOT = 0.12 Real TOT = 0.549192
+ User=0.000000s Real=0.208019s Sys=0.010000s
+ User TOT = 0.31 Real TOT = 22.3852
Summary of Run 96 :
/run/geometryModified
@@ -7308,8 +7302,8 @@ Run 97 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109112s Sys=0.000000s
- User TOT = 0.12 Real TOT = 0.658461
+ User=0.000000s Real=0.210006s Sys=0.000000s
+ User TOT = 0.31 Real TOT = 22.5954
Summary of Run 97 :
/run/geometryModified
@@ -7378,8 +7372,8 @@ Run 98 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.108850s Sys=0.000000s
- User TOT = 0.12 Real TOT = 0.767459
+ User=0.000000s Real=0.359643s Sys=0.000000s
+ User TOT = 0.31 Real TOT = 22.9552
Summary of Run 98 :
/run/geometryModified
@@ -7448,8 +7442,8 @@ Run 99 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.118321s Sys=0.000000s
- User TOT = 0.12 Real TOT = 0.886066
+ User=0.000000s Real=0.208018s Sys=0.000000s
+ User TOT = 0.31 Real TOT = 23.1633
Summary of Run 99 :
/run/geometryModified
@@ -7518,8 +7512,8 @@ Run 100 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.090149s Sys=0.010000s
- User TOT = 0.13 Real TOT = 0.976365
+ User=0.000000s Real=0.214230s Sys=0.000000s
+ User TOT = 0.31 Real TOT = 23.3777
Summary of Run 100 :
/run/geometryModified
@@ -7588,8 +7582,8 @@ Run 101 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.108208s Sys=0.000000s
- User TOT = 0.13 Real TOT = 1.08471
+ User=0.010000s Real=0.223750s Sys=0.000000s
+ User TOT = 0.32 Real TOT = 23.6016
Summary of Run 101 :
/run/geometryModified
@@ -7658,8 +7652,8 @@ Run 102 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109259s Sys=0.000000s
- User TOT = 0.13 Real TOT = 1.19412
+ User=0.000000s Real=0.210076s Sys=0.000000s
+ User TOT = 0.32 Real TOT = 23.8118
Summary of Run 102 :
/run/geometryModified
@@ -7728,8 +7722,8 @@ Run 103 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.108747s Sys=0.000000s
- User TOT = 0.14 Real TOT = 1.303
+ User=0.000000s Real=0.218005s Sys=0.000000s
+ User TOT = 0.32 Real TOT = 24.0299
Summary of Run 103 :
/run/geometryModified
@@ -7798,8 +7792,8 @@ Run 104 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109755s Sys=0.000000s
- User TOT = 0.14 Real TOT = 1.4129
+ User=0.000000s Real=0.209122s Sys=0.000000s
+ User TOT = 0.32 Real TOT = 24.2392
Summary of Run 104 :
/run/geometryModified
@@ -7868,8 +7862,8 @@ Run 105 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.110983s Sys=0.000000s
- User TOT = 0.15 Real TOT = 1.52402
+ User=0.000000s Real=0.211283s Sys=0.000000s
+ User TOT = 0.32 Real TOT = 24.4506
Summary of Run 105 :
/run/geometryModified
@@ -7938,8 +7932,8 @@ Run 106 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.106134s Sys=0.000000s
- User TOT = 0.15 Real TOT = 1.6303
+ User=0.010000s Real=0.207485s Sys=0.000000s
+ User TOT = 0.33 Real TOT = 24.6582
Summary of Run 106 :
/run/geometryModified
@@ -8008,8 +8002,8 @@ Run 107 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109744s Sys=0.000000s
- User TOT = 0.15 Real TOT = 1.74018
+ User=0.000000s Real=0.208877s Sys=0.000000s
+ User TOT = 0.33 Real TOT = 24.8672
Summary of Run 107 :
/run/geometryModified
@@ -8078,8 +8072,8 @@ Run 108 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.108756s Sys=0.000000s
- User TOT = 0.16 Real TOT = 1.84908
+ User=0.010000s Real=0.210947s Sys=0.010000s
+ User TOT = 0.34 Real TOT = 25.0783
Summary of Run 108 :
/run/geometryModified
@@ -8148,8 +8142,8 @@ Run 109 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.119797s Sys=0.000000s
- User TOT = 0.16 Real TOT = 1.96903
+ User=0.000000s Real=0.206032s Sys=0.000000s
+ User TOT = 0.34 Real TOT = 25.2845
Summary of Run 109 :
/run/geometryModified
@@ -8218,8 +8212,8 @@ Run 110 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.098698s Sys=0.000000s
- User TOT = 0.16 Real TOT = 2.06787
+ User=0.000000s Real=0.210424s Sys=0.000000s
+ User TOT = 0.34 Real TOT = 25.4951
Summary of Run 110 :
/run/geometryModified
@@ -8288,8 +8282,8 @@ Run 111 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.110157s Sys=0.000000s
- User TOT = 0.17 Real TOT = 2.17816
+ User=0.000000s Real=0.209138s Sys=0.000000s
+ User TOT = 0.34 Real TOT = 25.7043
Summary of Run 111 :
/run/geometryModified
@@ -8358,8 +8352,8 @@ Run 112 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.107512s Sys=0.000000s
- User TOT = 0.17 Real TOT = 2.28582
+ User=0.000000s Real=0.207753s Sys=0.000000s
+ User TOT = 0.34 Real TOT = 25.9122
Summary of Run 112 :
/run/geometryModified
@@ -8428,8 +8422,8 @@ Run 113 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.098849s Sys=0.000000s
- User TOT = 0.17 Real TOT = 2.3848
+ User=0.010000s Real=0.209348s Sys=0.000000s
+ User TOT = 0.35 Real TOT = 26.1217
Summary of Run 113 :
/run/geometryModified
@@ -8498,8 +8492,8 @@ Run 114 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109349s Sys=0.000000s
- User TOT = 0.17 Real TOT = 2.4943
+ User=0.000000s Real=0.209591s Sys=0.000000s
+ User TOT = 0.35 Real TOT = 26.3314
Summary of Run 114 :
/run/geometryModified
@@ -8568,8 +8562,8 @@ Run 115 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109619s Sys=0.000000s
- User TOT = 0.17 Real TOT = 2.60406
+ User=0.000000s Real=0.209745s Sys=0.000000s
+ User TOT = 0.35 Real TOT = 26.5413
Summary of Run 115 :
/run/geometryModified
@@ -8638,8 +8632,8 @@ Run 116 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.108316s Sys=0.000000s
- User TOT = 0.18 Real TOT = 2.71252
+ User=0.010000s Real=0.448206s Sys=0.010000s
+ User TOT = 0.36 Real TOT = 26.9897
Summary of Run 116 :
/run/geometryModified
@@ -8708,8 +8702,8 @@ Run 117 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109073s Sys=0.010000s
- User TOT = 0.18 Real TOT = 2.82173
+ User=0.000000s Real=0.208982s Sys=0.000000s
+ User TOT = 0.36 Real TOT = 27.1988
Summary of Run 117 :
/run/geometryModified
@@ -8778,8 +8772,8 @@ Run 118 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109271s Sys=0.000000s
- User TOT = 0.18 Real TOT = 2.93114
+ User=0.010000s Real=0.208357s Sys=0.000000s
+ User TOT = 0.37 Real TOT = 27.4073
Summary of Run 118 :
/run/geometryModified
@@ -8848,8 +8842,8 @@ Run 119 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.172192s Sys=0.000000s
- User TOT = 0.19 Real TOT = 3.10349
+ User=0.000000s Real=0.209404s Sys=0.000000s
+ User TOT = 0.37 Real TOT = 27.6168
Summary of Run 119 :
/run/geometryModified
@@ -8918,8 +8912,8 @@ Run 120 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.105540s Sys=0.000000s
- User TOT = 0.19 Real TOT = 3.20919
+ User=0.000000s Real=0.599696s Sys=0.000000s
+ User TOT = 0.37 Real TOT = 28.2166
Summary of Run 120 :
/run/geometryModified
@@ -8988,8 +8982,8 @@ Run 121 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109250s Sys=0.000000s
- User TOT = 0.19 Real TOT = 3.3186
+ User=0.010000s Real=0.198856s Sys=0.000000s
+ User TOT = 0.38 Real TOT = 28.4156
Summary of Run 121 :
/run/geometryModified
@@ -9058,8 +9052,8 @@ Run 122 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.109783s Sys=0.000000s
- User TOT = 0.2 Real TOT = 3.42854
+ User=0.000000s Real=0.118807s Sys=0.000000s
+ User TOT = 0.38 Real TOT = 28.5345
Summary of Run 122 :
/run/geometryModified
@@ -9128,8 +9122,8 @@ Run 123 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.111756s Sys=0.000000s
- User TOT = 0.2 Real TOT = 3.54045
+ User=0.000000s Real=0.108212s Sys=0.010000s
+ User TOT = 0.38 Real TOT = 28.6429
Summary of Run 123 :
/run/geometryModified
@@ -9198,8 +9192,8 @@ Run 124 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.112033s Sys=0.000000s
- User TOT = 0.2 Real TOT = 3.65263
+ User=0.000000s Real=0.109900s Sys=0.000000s
+ User TOT = 0.38 Real TOT = 28.7529
Summary of Run 124 :
/run/geometryModified
@@ -9268,8 +9262,8 @@ Run 125 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.102935s Sys=0.000000s
- User TOT = 0.21 Real TOT = 3.75571
+ User=0.010000s Real=0.108334s Sys=0.000000s
+ User TOT = 0.39 Real TOT = 28.8614
Summary of Run 125 :
/run/geometryModified
@@ -9338,8 +9332,8 @@ Run 126 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.108153s Sys=0.000000s
- User TOT = 0.21 Real TOT = 3.86401
+ User=0.000000s Real=0.109179s Sys=0.000000s
+ User TOT = 0.39 Real TOT = 28.9707
Summary of Run 126 :
/run/geometryModified
@@ -9408,8 +9402,8 @@ Run 127 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.109740s Sys=0.000000s
- User TOT = 0.22 Real TOT = 3.97389
+ User=0.000000s Real=0.109562s Sys=0.000000s
+ User TOT = 0.39 Real TOT = 29.0803
Summary of Run 127 :
/run/geometryModified
@@ -9478,8 +9472,8 @@ Run 128 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.110388s Sys=0.000000s
- User TOT = 0.22 Real TOT = 4.08443
+ User=0.000000s Real=0.109778s Sys=0.000000s
+ User TOT = 0.39 Real TOT = 29.1902
Summary of Run 128 :
/run/geometryModified
@@ -9548,8 +9542,8 @@ Run 129 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.107530s Sys=0.000000s
- User TOT = 0.22 Real TOT = 4.19213
+ User=0.010000s Real=0.115010s Sys=0.000000s
+ User TOT = 0.4 Real TOT = 29.3054
Summary of Run 129 :
/run/geometryModified
@@ -9618,8 +9612,8 @@ Run 130 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.109410s Sys=0.010000s
- User TOT = 0.23 Real TOT = 4.30169
+ User=0.000000s Real=0.103122s Sys=0.000000s
+ User TOT = 0.4 Real TOT = 29.4086
Summary of Run 130 :
/run/geometryModified
@@ -9688,8 +9682,8 @@ Run 131 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.108684s Sys=0.000000s
- User TOT = 0.23 Real TOT = 4.41052
+ User=0.000000s Real=0.108842s Sys=0.000000s
+ User TOT = 0.4 Real TOT = 29.5176
Summary of Run 131 :
/run/geometryModified
@@ -9758,8 +9752,8 @@ Run 132 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.109135s Sys=0.000000s
- User TOT = 0.24 Real TOT = 4.51983
+ User=0.010000s Real=0.109240s Sys=0.000000s
+ User TOT = 0.41 Real TOT = 29.627
Summary of Run 132 :
/run/geometryModified
@@ -9828,8 +9822,8 @@ Run 133 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.108637s Sys=0.000000s
- User TOT = 0.24 Real TOT = 4.62862
+ User=0.000000s Real=0.108859s Sys=0.000000s
+ User TOT = 0.41 Real TOT = 29.7359
Summary of Run 133 :
/run/geometryModified
@@ -9898,8 +9892,8 @@ Run 134 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.118787s Sys=0.000000s
- User TOT = 0.24 Real TOT = 4.74757
+ User=0.000000s Real=0.111839s Sys=0.000000s
+ User TOT = 0.41 Real TOT = 29.8479
Summary of Run 134 :
/run/geometryModified
@@ -9968,8 +9962,8 @@ Run 135 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.099143s Sys=0.000000s
- User TOT = 0.24 Real TOT = 4.84687
+ User=0.000000s Real=0.106472s Sys=0.000000s
+ User TOT = 0.41 Real TOT = 29.9545
Summary of Run 135 :
/run/geometryModified
@@ -10038,8 +10032,8 @@ Run 136 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.118865s Sys=0.000000s
- User TOT = 0.24 Real TOT = 4.9659
+ User=0.000000s Real=0.107949s Sys=0.000000s
+ User TOT = 0.41 Real TOT = 30.0626
Summary of Run 136 :
/run/geometryModified
@@ -10108,8 +10102,8 @@ Run 137 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.109449s Sys=0.000000s
- User TOT = 0.25 Real TOT = 5.07549
+ User=0.000000s Real=0.108589s Sys=0.010000s
+ User TOT = 0.41 Real TOT = 30.1713
Summary of Run 137 :
/run/geometryModified
@@ -10178,8 +10172,8 @@ Run 138 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.118819s Sys=0.000000s
- User TOT = 0.25 Real TOT = 5.19445
+ User=0.000000s Real=0.108862s Sys=0.000000s
+ User TOT = 0.41 Real TOT = 30.2803
Summary of Run 138 :
/run/geometryModified
@@ -10248,8 +10242,8 @@ Run 139 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109042s Sys=0.000000s
- User TOT = 0.25 Real TOT = 5.30364
+ User=0.000000s Real=0.108926s Sys=0.000000s
+ User TOT = 0.41 Real TOT = 30.3894
Summary of Run 139 :
/run/geometryModified
@@ -10318,8 +10312,8 @@ Run 140 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.108947s Sys=0.000000s
- User TOT = 0.25 Real TOT = 5.41273
+ User=0.000000s Real=0.109568s Sys=0.000000s
+ User TOT = 0.41 Real TOT = 30.4991
Summary of Run 140 :
/run/geometryModified
@@ -10388,8 +10382,8 @@ Run 141 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109962s Sys=0.000000s
- User TOT = 0.25 Real TOT = 5.52283
+ User=0.010000s Real=0.110026s Sys=0.000000s
+ User TOT = 0.42 Real TOT = 30.6092
Summary of Run 141 :
/run/geometryModified
@@ -10458,8 +10452,8 @@ Run 142 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.108443s Sys=0.000000s
- User TOT = 0.26 Real TOT = 5.63142
+ User=0.000000s Real=0.108467s Sys=0.000000s
+ User TOT = 0.42 Real TOT = 30.7178
Summary of Run 142 :
/run/geometryModified
@@ -10528,8 +10522,8 @@ Run 143 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.108898s Sys=0.010000s
- User TOT = 0.26 Real TOT = 5.74048
+ User=0.000000s Real=0.108969s Sys=0.000000s
+ User TOT = 0.42 Real TOT = 30.8269
Summary of Run 143 :
/run/geometryModified
@@ -10598,8 +10592,8 @@ Run 144 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.113730s Sys=0.000000s
- User TOT = 0.26 Real TOT = 5.85436
+ User=0.000000s Real=0.109330s Sys=0.000000s
+ User TOT = 0.42 Real TOT = 30.9363
Summary of Run 144 :
/run/geometryModified
@@ -10668,8 +10662,8 @@ Run 145 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.105662s Sys=0.000000s
- User TOT = 0.27 Real TOT = 5.96017
+ User=0.010000s Real=0.108319s Sys=0.000000s
+ User TOT = 0.43 Real TOT = 31.0447
Summary of Run 145 :
/run/geometryModified
@@ -10738,8 +10732,8 @@ Run 146 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.107848s Sys=0.000000s
- User TOT = 0.27 Real TOT = 6.06817
+ User=0.000000s Real=0.109878s Sys=0.000000s
+ User TOT = 0.43 Real TOT = 31.1548
Summary of Run 146 :
/run/geometryModified
@@ -10808,8 +10802,8 @@ Run 147 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109417s Sys=0.000000s
- User TOT = 0.27 Real TOT = 6.17773
+ User=0.000000s Real=0.108883s Sys=0.000000s
+ User TOT = 0.43 Real TOT = 31.2638
Summary of Run 147 :
/run/geometryModified
@@ -10878,8 +10872,8 @@ Run 148 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.109138s Sys=0.000000s
- User TOT = 0.28 Real TOT = 6.28701
+ User=0.010000s Real=0.110639s Sys=0.000000s
+ User TOT = 0.44 Real TOT = 31.3745
Summary of Run 148 :
/run/geometryModified
@@ -10948,8 +10942,8 @@ Run 149 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.111542s Sys=0.000000s
- User TOT = 0.28 Real TOT = 6.3987
+ User=0.000000s Real=0.107587s Sys=0.000000s
+ User TOT = 0.44 Real TOT = 31.4822
Summary of Run 149 :
/run/geometryModified
@@ -11018,8 +11012,8 @@ Run 150 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.116506s Sys=0.000000s
- User TOT = 0.28 Real TOT = 6.51534
+ User=0.000000s Real=0.109259s Sys=0.010000s
+ User TOT = 0.44 Real TOT = 31.5917
Summary of Run 150 :
/run/geometryModified
@@ -11088,8 +11082,8 @@ Run 151 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.098614s Sys=0.000000s
- User TOT = 0.28 Real TOT = 6.61411
+ User=0.000000s Real=0.108542s Sys=0.000000s
+ User TOT = 0.44 Real TOT = 31.7004
Summary of Run 151 :
/run/geometryModified
@@ -11158,8 +11152,8 @@ Run 152 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.108669s Sys=0.000000s
- User TOT = 0.28 Real TOT = 6.72292
+ User=0.000000s Real=0.109368s Sys=0.000000s
+ User TOT = 0.44 Real TOT = 31.8099
Summary of Run 152 :
/run/geometryModified
@@ -11228,8 +11222,8 @@ Run 153 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.153942s Sys=0.000000s
- User TOT = 0.29 Real TOT = 6.87701
+ User=0.000000s Real=0.108801s Sys=0.000000s
+ User TOT = 0.44 Real TOT = 31.9188
Summary of Run 153 :
/run/geometryModified
@@ -11298,8 +11292,8 @@ Run 154 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.060332s Sys=0.000000s
- User TOT = 0.29 Real TOT = 6.93748
+ User=0.010000s Real=0.109405s Sys=0.000000s
+ User TOT = 0.45 Real TOT = 32.0283
Summary of Run 154 :
/run/geometryModified
@@ -11368,8 +11362,8 @@ Run 155 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.102770s Sys=0.000000s
- User TOT = 0.29 Real TOT = 7.0404
+ User=0.000000s Real=0.109089s Sys=0.000000s
+ User TOT = 0.45 Real TOT = 32.1376
Summary of Run 155 :
/run/geometryModified
@@ -11438,8 +11432,8 @@ Run 156 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.115975s Sys=0.000000s
- User TOT = 0.29 Real TOT = 7.15653
+ User=0.010000s Real=0.118908s Sys=0.000000s
+ User TOT = 0.46 Real TOT = 32.2566
Summary of Run 156 :
/run/geometryModified
@@ -11508,8 +11502,8 @@ Run 157 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.104017s Sys=0.000000s
- User TOT = 0.29 Real TOT = 7.26069
+ User=0.000000s Real=0.108842s Sys=0.010000s
+ User TOT = 0.46 Real TOT = 32.3656
Summary of Run 157 :
/run/geometryModified
@@ -11578,8 +11572,8 @@ Run 158 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.110002s Sys=0.000000s
- User TOT = 0.3 Real TOT = 7.37084
+ User=0.000000s Real=0.119667s Sys=0.000000s
+ User TOT = 0.46 Real TOT = 32.4854
Summary of Run 158 :
/run/geometryModified
@@ -11648,8 +11642,8 @@ Run 159 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.107011s Sys=0.000000s
- User TOT = 0.3 Real TOT = 7.47799
+ User=0.000000s Real=0.109100s Sys=0.000000s
+ User TOT = 0.46 Real TOT = 32.5946
Summary of Run 159 :
/run/geometryModified
@@ -11718,8 +11712,8 @@ Run 160 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.108500s Sys=0.000000s
- User TOT = 0.3 Real TOT = 7.58662
+ User=0.010000s Real=0.509777s Sys=0.000000s
+ User TOT = 0.47 Real TOT = 33.1045
Summary of Run 160 :
/run/geometryModified
@@ -11788,8 +11782,8 @@ Run 161 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.112606s Sys=0.000000s
- User TOT = 0.31 Real TOT = 7.69937
+ User=0.000000s Real=0.148544s Sys=0.000000s
+ User TOT = 0.47 Real TOT = 33.2532
Summary of Run 161 :
/run/geometryModified
@@ -11858,8 +11852,8 @@ Run 162 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.107303s Sys=0.000000s
- User TOT = 0.31 Real TOT = 7.80681
+ User=0.000000s Real=0.108796s Sys=0.000000s
+ User TOT = 0.47 Real TOT = 33.3621
Summary of Run 162 :
/run/geometryModified
@@ -11928,8 +11922,8 @@ Run 163 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.107749s Sys=0.000000s
- User TOT = 0.31 Real TOT = 7.91471
+ User=0.010000s Real=0.129155s Sys=0.000000s
+ User TOT = 0.48 Real TOT = 33.4914
Summary of Run 163 :
/run/geometryModified
@@ -11998,8 +11992,8 @@ Run 164 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.171155s Sys=0.010000s
- User TOT = 0.31 Real TOT = 8.08601
+ User=0.010000s Real=0.113702s Sys=0.000000s
+ User TOT = 0.49 Real TOT = 33.6053
Summary of Run 164 :
/run/geometryModified
@@ -12068,8 +12062,8 @@ Run 165 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.106175s Sys=0.000000s
- User TOT = 0.31 Real TOT = 8.19232
+ User=0.000000s Real=0.104944s Sys=0.010000s
+ User TOT = 0.49 Real TOT = 33.7104
Summary of Run 165 :
/run/geometryModified
@@ -12138,8 +12132,8 @@ Run 166 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109039s Sys=0.000000s
- User TOT = 0.31 Real TOT = 8.3015
+ User=0.000000s Real=0.229459s Sys=0.000000s
+ User TOT = 0.5 Real TOT = 33.94
Summary of Run 166 :
/run/geometryModified
@@ -12208,8 +12202,8 @@ Run 167 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109456s Sys=0.000000s
- User TOT = 0.31 Real TOT = 8.41111
+ User=0.000000s Real=0.137088s Sys=0.000000s
+ User TOT = 0.5 Real TOT = 34.0773
Summary of Run 167 :
/run/geometryModified
@@ -12278,8 +12272,8 @@ Run 168 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109281s Sys=0.000000s
- User TOT = 0.31 Real TOT = 8.52053
+ User=0.000000s Real=0.119775s Sys=0.000000s
+ User TOT = 0.5 Real TOT = 34.1972
Summary of Run 168 :
/run/geometryModified
@@ -12348,8 +12342,8 @@ Run 169 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.110672s Sys=0.000000s
- User TOT = 0.31 Real TOT = 8.63134
+ User=0.010000s Real=0.118771s Sys=0.000000s
+ User TOT = 0.51 Real TOT = 34.3161
Summary of Run 169 :
/run/geometryModified
@@ -12418,8 +12412,8 @@ Run 170 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.114996s Sys=0.000000s
- User TOT = 0.32 Real TOT = 8.74649
+ User=0.000000s Real=0.120285s Sys=0.000000s
+ User TOT = 0.51 Real TOT = 34.4365
Summary of Run 170 :
/run/geometryModified
@@ -12488,8 +12482,8 @@ Run 171 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.101231s Sys=0.000000s
- User TOT = 0.32 Real TOT = 8.84786
+ User=0.010000s Real=0.119090s Sys=0.010000s
+ User TOT = 0.52 Real TOT = 34.5558
Summary of Run 171 :
/run/geometryModified
@@ -12558,8 +12552,8 @@ Run 172 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.109484s Sys=0.000000s
- User TOT = 0.33 Real TOT = 8.95749
+ User=0.000000s Real=0.119149s Sys=0.000000s
+ User TOT = 0.52 Real TOT = 34.675
Summary of Run 172 :
/run/geometryModified
@@ -12628,8 +12622,8 @@ Run 173 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109036s Sys=0.000000s
- User TOT = 0.33 Real TOT = 9.06667
+ User=0.010000s Real=0.130797s Sys=0.000000s
+ User TOT = 0.53 Real TOT = 34.806
Summary of Run 173 :
/run/geometryModified
@@ -12698,8 +12692,8 @@ Run 174 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.108773s Sys=0.000000s
- User TOT = 0.33 Real TOT = 9.17559
+ User=0.000000s Real=0.106152s Sys=0.000000s
+ User TOT = 0.53 Real TOT = 34.9123
Summary of Run 174 :
/run/geometryModified
@@ -12768,8 +12762,8 @@ Run 175 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109150s Sys=0.010000s
- User TOT = 0.33 Real TOT = 9.28489
+ User=0.010000s Real=0.117981s Sys=0.000000s
+ User TOT = 0.54 Real TOT = 35.0316
Summary of Run 175 :
/run/geometryModified
@@ -12838,8 +12832,8 @@ Run 176 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.110751s Sys=0.000000s
- User TOT = 0.33 Real TOT = 9.39579
+ User=0.000000s Real=0.132610s Sys=0.000000s
+ User TOT = 0.54 Real TOT = 35.1643
Summary of Run 176 :
/run/geometryModified
@@ -12908,8 +12902,8 @@ Run 177 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.111460s Sys=0.000000s
- User TOT = 0.33 Real TOT = 9.50741
+ User=0.000000s Real=0.125670s Sys=0.000000s
+ User TOT = 0.54 Real TOT = 35.2901
Summary of Run 177 :
/run/geometryModified
@@ -12978,8 +12972,8 @@ Run 178 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.107221s Sys=0.000000s
- User TOT = 0.33 Real TOT = 9.61477
+ User=0.000000s Real=0.119641s Sys=0.000000s
+ User TOT = 0.54 Real TOT = 35.41
Summary of Run 178 :
/run/geometryModified
@@ -13048,8 +13042,8 @@ Run 179 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109118s Sys=0.000000s
- User TOT = 0.33 Real TOT = 9.72404
+ User=0.010000s Real=0.128496s Sys=0.000000s
+ User TOT = 0.55 Real TOT = 35.5386
Summary of Run 179 :
/run/geometryModified
@@ -13118,8 +13112,8 @@ Run 180 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.110666s Sys=0.000000s
- User TOT = 0.33 Real TOT = 9.83485
+ User=0.000000s Real=0.127914s Sys=0.000000s
+ User TOT = 0.55 Real TOT = 35.6667
Summary of Run 180 :
/run/geometryModified
@@ -13188,8 +13182,8 @@ Run 181 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.117538s Sys=0.000000s
- User TOT = 0.34 Real TOT = 9.95254
+ User=0.000000s Real=0.108800s Sys=0.010000s
+ User TOT = 0.55 Real TOT = 35.7756
Summary of Run 181 :
/run/geometryModified
@@ -13258,8 +13252,8 @@ Run 182 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.116643s Sys=0.000000s
- User TOT = 0.34 Real TOT = 10.0693
+ User=0.010000s Real=0.129352s Sys=0.000000s
+ User TOT = 0.56 Real TOT = 35.9051
Summary of Run 182 :
/run/geometryModified
@@ -13328,8 +13322,8 @@ Run 183 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.108747s Sys=0.000000s
- User TOT = 0.34 Real TOT = 10.1782
+ User=0.000000s Real=0.118537s Sys=0.000000s
+ User TOT = 0.56 Real TOT = 36.0238
Summary of Run 183 :
/run/geometryModified
@@ -13398,8 +13392,8 @@ Run 184 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.109123s Sys=0.010000s
- User TOT = 0.35 Real TOT = 10.2875
+ User=0.010000s Real=0.130434s Sys=0.000000s
+ User TOT = 0.57 Real TOT = 36.1543
Summary of Run 184 :
/run/geometryModified
@@ -13468,8 +13462,8 @@ Run 185 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109114s Sys=0.000000s
- User TOT = 0.35 Real TOT = 10.3968
+ User=0.000000s Real=0.108533s Sys=0.000000s
+ User TOT = 0.57 Real TOT = 36.2631
Summary of Run 185 :
/run/geometryModified
@@ -13538,8 +13532,8 @@ Run 186 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109102s Sys=0.000000s
- User TOT = 0.35 Real TOT = 10.506
+ User=0.010000s Real=0.129937s Sys=0.000000s
+ User TOT = 0.58 Real TOT = 36.3931
Summary of Run 186 :
/run/geometryModified
@@ -13608,8 +13602,8 @@ Run 187 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.107915s Sys=0.000000s
- User TOT = 0.36 Real TOT = 10.6141
+ User=0.000000s Real=0.107745s Sys=0.000000s
+ User TOT = 0.58 Real TOT = 36.501
Summary of Run 187 :
/run/geometryModified
@@ -13678,8 +13672,8 @@ Run 188 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.102831s Sys=0.000000s
- User TOT = 0.36 Real TOT = 10.717
+ User=0.000000s Real=0.119288s Sys=0.000000s
+ User TOT = 0.58 Real TOT = 36.6205
Summary of Run 188 :
/run/geometryModified
@@ -13748,8 +13742,8 @@ Run 189 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.106220s Sys=0.000000s
- User TOT = 0.36 Real TOT = 10.8234
+ User=0.000000s Real=0.109246s Sys=0.000000s
+ User TOT = 0.58 Real TOT = 36.7299
Summary of Run 189 :
/run/geometryModified
@@ -13818,8 +13812,8 @@ Run 190 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.108790s Sys=0.010000s
- User TOT = 0.36 Real TOT = 10.9324
+ User=0.000000s Real=0.118209s Sys=0.010000s
+ User TOT = 0.58 Real TOT = 36.8482
Summary of Run 190 :
/run/geometryModified
@@ -13888,8 +13882,8 @@ Run 191 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.120294s Sys=0.000000s
- User TOT = 0.37 Real TOT = 11.0528
+ User=0.000000s Real=0.116761s Sys=0.000000s
+ User TOT = 0.58 Real TOT = 36.9651
Summary of Run 191 :
/run/geometryModified
@@ -13958,8 +13952,8 @@ Run 192 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.088162s Sys=0.000000s
- User TOT = 0.37 Real TOT = 11.1411
+ User=0.010000s Real=0.101381s Sys=0.000000s
+ User TOT = 0.59 Real TOT = 37.0666
Summary of Run 192 :
/run/geometryModified
@@ -14028,8 +14022,8 @@ Run 193 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.108664s Sys=0.000000s
- User TOT = 0.38 Real TOT = 11.2499
+ User=0.000000s Real=0.119076s Sys=0.000000s
+ User TOT = 0.59 Real TOT = 37.1858
Summary of Run 193 :
/run/geometryModified
@@ -14098,8 +14092,8 @@ Run 194 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109216s Sys=0.000000s
- User TOT = 0.38 Real TOT = 11.3593
+ User=0.000000s Real=0.110496s Sys=0.000000s
+ User TOT = 0.59 Real TOT = 37.2965
Summary of Run 194 :
/run/geometryModified
@@ -14168,8 +14162,8 @@ Run 195 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109033s Sys=0.000000s
- User TOT = 0.38 Real TOT = 11.4685
+ User=0.010000s Real=0.117654s Sys=0.000000s
+ User TOT = 0.6 Real TOT = 37.4143
Summary of Run 195 :
/run/geometryModified
@@ -14238,8 +14232,8 @@ Run 196 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109031s Sys=0.000000s
- User TOT = 0.38 Real TOT = 11.5776
+ User=0.000000s Real=0.118562s Sys=0.000000s
+ User TOT = 0.6 Real TOT = 37.5329
Summary of Run 196 :
/run/geometryModified
@@ -14308,8 +14302,8 @@ Run 197 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109234s Sys=0.000000s
- User TOT = 0.39 Real TOT = 11.687
+ User=0.010000s Real=0.129384s Sys=0.000000s
+ User TOT = 0.61 Real TOT = 37.6625
Summary of Run 197 :
/run/geometryModified
@@ -14378,8 +14372,8 @@ Run 198 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.110985s Sys=0.000000s
- User TOT = 0.39 Real TOT = 11.7981
+ User=0.000000s Real=1.153257s Sys=0.000000s
+ User TOT = 0.61 Real TOT = 38.8159
Summary of Run 198 :
/run/geometryModified
@@ -14448,8 +14442,8 @@ Run 199 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.106289s Sys=0.000000s
- User TOT = 0.4 Real TOT = 11.9046
+ User=0.000000s Real=0.164702s Sys=0.000000s
+ User TOT = 0.61 Real TOT = 38.9807
Summary of Run 199 :
/run/geometryModified
@@ -14518,8 +14512,8 @@ Run 200 starts ...
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.109009s Sys=0.000000s
- User TOT = 0.4 Real TOT = 12.0138
+ User=0.000000s Real=0.109575s Sys=0.000000s
+ User TOT = 0.61 Real TOT = 39.0904
Summary of Run 200 :
/score/dumpQuantityToFile boxMesh_1 eDep eDep_scorer.out
Graphics systems deleted.
@@ -14527,6 +14521,6 @@ Visualization Manager deleting...
G4 kernel has come to Quit state.
================== Deleting memory pools ===================
Number of memory pools allocated: 11 of which, static: 0
-Dynamic pools deleted: 11 / Total memory freed: 0.048 MB
+Dynamic pools deleted: 11 / Total memory freed: 0.062 MB
============================================================
RunManagerKernel is deleted. Good bye :)
diff --git a/examples/advanced/gammaray_telescope/History b/examples/advanced/gammaray_telescope/History
index ad5709383a5..4c4510ec5b0 100644
--- a/examples/advanced/gammaray_telescope/History
+++ b/examples/advanced/gammaray_telescope/History
@@ -8,6 +8,9 @@
History file
------------
+31.01.2019 - I.Hrivnacova, Tag gammaraytel-V10-04-07
+ Merged GitHub PR #4: all Boolean operators now return G4bool.
+
21.10.2018 - F. Romano, Tag gammaraytel-V10-04-06
- G4VIS_USE and G4UI_USE deleted
diff --git a/examples/advanced/gammaray_telescope/gammaraytel.out b/examples/advanced/gammaray_telescope/gammaraytel.out
index bdf40bf7b8f..172e4ffaf68 100644
--- a/examples/advanced/gammaray_telescope/gammaraytel.out
+++ b/examples/advanced/gammaray_telescope/gammaraytel.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -26,12 +22,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -227,155 +221,151 @@ PhysicsList::SetCuts:CutLength : 100 um
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 1 GeV FluoActive
- KleinNishina : Emin= 1 GeV Emax= 100 TeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 1 GeV Fluo
+ KleinNishina : Emin= 1 GeV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler5D : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler5D : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
- MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
+ LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
+ MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-
-nuclearStopping: for proton SubType= 8 BuildTable= 0
- ===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
=======================================================================
====== Radioactive Decay Physics Parameters ========
=======================================================================
@@ -391,193 +381,189 @@ Check EM cuts disabled for atomic de-excitation 1
Use Bearden atomic level energies 0
=======================================================================
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-
-nuclearStopping: for anti_proton SubType= 8 BuildTable= 0
- ===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
@@ -600,71 +586,71 @@ NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
NeutronHP: /Capture file for Z = 74, A = 180 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Capture/CrossSection/74_182_Tungsten
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -697,6 +683,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -792,6 +779,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -920,6 +908,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -979,11 +968,11 @@ Using G4ParticleGun ...
8.53858 LIN
proton
Event: 0
-Number of tracker hits in this event = 23
+Number of tracker hits in this event = 24
0 119.543 1245 10 1 69.2404 74.1904 95.55
0 145.881 1270 10 0 69.2397 74.1899 94.15
0 99.2488 1245 9 1 69.2239 74.1769 65.55
- 0 268.754 1270 9 0 69.2223 74.1764 64.15
+ 0 211.434 1270 9 0 69.2223 74.1764 64.15
0 100.944 1245 8 1 69.1838 74.1678 35.55
0 108.018 1270 8 0 69.1814 74.1673 34.15
0 214.962 1245 7 1 69.1332 74.1571 5.55
@@ -1002,4681 +991,4024 @@ Number of tracker hits in this event = 23
0 225.838 1270 1 0 68.6845 74.1914 -175.85
0 129.747 1242 0 1 68.6228 74.2103 -204.45
0 104.392 1270 0 0 68.62 74.2115 -205.85
- 0 68.867 1227 9 0 -24.9024 65.5167 63.75
+ 0 104.966 1271 9 0 69.1111 74.25 63.8347
+ 0 51.5129 1148 9 0 90.615 49.7694 63.75
Number of digits in this event = 14
Using G4ParticleGun ...
-5.52289 LIN
+1.09534 LIN
proton
Event: 1
-Number of tracker hits in this event = 23
- 1 113.133 1370 9 1 94.2171 76.1955 65.55
- 1 159.227 1280 9 0 94.2171 76.1956 64.15
- 1 105.393 1370 8 1 94.2111 76.2003 35.55
- 1 107.163 1280 8 0 94.2108 76.2001 34.15
- 1 100.72 1370 7 1 94.2101 76.1957 5.55
- 1 104.657 1280 7 0 94.2078 76.1945 4.15
- 1 103.223 1369 6 1 94.1471 76.1677 -24.45
- 1 142.349 1280 6 0 94.1441 76.1667 -25.85
- 1 110.897 1369 5 1 94.0754 76.141 -54.45
- 1 135.722 1280 5 0 94.0704 76.1397 -55.85
- 1 158.086 1369 4 1 93.9667 76.1109 -84.45
- 1 100.922 1280 4 0 93.9615 76.1088 -85.85
- 1 100.746 1368 3 1 93.8552 76.0677 -114.45
- 1 193.492 1280 3 0 93.8505 76.0666 -115.85
- 1 117.688 1368 2 1 93.7615 76.0435 -144.45
- 1 152.713 1279 2 0 93.7565 76.0427 -145.85
- 1 63.311 1358 1 1 91.95 76.8893 -174.708
- 1 380.965 692 1 0 -121.29 -41.482 -176.25
- 1 131.965 1367 1 1 93.6652 76.0258 -174.45
- 1 106.715 1279 1 0 93.7005 76.0256 -175.85
- 1 114.181 1371 0 1 94.4212 76.0147 -204.45
- 1 134.971 1279 0 0 94.4566 76.0137 -205.85
- 1 193.49 1279 3 0 93.8349 76.05 -115.871
-Number of digits in this event = 12
+Number of tracker hits in this event = 18
+ 1 2.26876 1227 8 1 65.637 -130.213 35.1629
+ 1 137.697 249 8 0 65.637 -130.213 34.15
+ 1 130.56 1227 7 1 65.6261 -130.219 5.55
+ 1 121.196 249 7 0 65.6202 -130.215 4.15
+ 1 162.94 1227 6 1 65.5015 -130.13 -24.45
+ 1 123.323 250 6 0 65.4908 -130.124 -25.85
+ 1 105.975 1226 5 1 65.2692 -130.001 -54.45
+ 1 126.141 250 5 0 65.248 -130.001 -55.85
+ 1 111.976 1223 4 1 64.8277 -130.002 -84.45
+ 1 114.903 250 4 0 64.8054 -130 -85.85
+ 1 163.905 1221 3 1 64.3273 -129.951 -114.45
+ 1 320.892 250 3 0 64.2984 -129.953 -115.85
+ 1 174.683 1218 2 1 63.6938 -129.984 -144.45
+ 1 130.853 250 2 0 63.6606 -129.983 -145.85
+ 1 120.675 1214 1 1 62.9911 -129.963 -174.45
+ 1 172.782 250 1 0 62.9631 -129.965 -175.85
+ 1 134.578 1211 0 1 62.3838 -130.023 -204.45
+ 1 147.798 250 0 0 62.3549 -130.026 -205.85
+Number of digits in this event = 15
Using G4ParticleGun ...
-2.72743 LIN
+3.51743 LIN
proton
Event: 2
-Number of tracker hits in this event = 22
- 2 114.666 508 10 1 -78.4374 -84.5693 95.55
- 2 119.684 477 10 0 -78.4403 -84.569 94.15
- 2 125.796 507 9 1 -78.5048 -84.556 65.55
- 2 139.3 477 9 0 -78.5099 -84.5543 64.15
- 2 137.618 507 8 1 -78.6213 -84.516 35.55
- 2 119.08 477 8 0 -78.6239 -84.5147 34.15
- 2 123.133 506 7 1 -78.6798 -84.4808 5.55
- 2 92.5049 477 7 0 -78.6839 -84.4803 4.15
- 2 120.917 506 6 1 -78.7705 -84.4735 -24.45
- 2 116.08 477 6 0 -78.7758 -84.4753 -25.85
- 2 105.019 505 5 1 -78.8892 -84.5168 -54.45
- 2 119.051 477 5 0 -78.8947 -84.5185 -55.85
- 2 114.846 505 4 1 -79.0125 -84.5592 -84.45
- 2 122.353 477 4 0 -79.0165 -84.5618 -85.85
- 2 110.997 504 3 1 -79.1091 -84.6142 -114.45
- 2 112.552 477 3 0 -79.1149 -84.6187 -115.85
- 2 98.2639 504 2 1 -79.2319 -84.7194 -144.45
- 2 260.747 476 2 0 -79.2385 -84.7251 -145.85
- 2 201.158 503 1 1 -79.368 -84.8401 -174.45
- 2 92.0665 476 1 0 -79.375 -84.8462 -175.85
- 2 218.303 502 0 1 -79.5219 -84.9622 -204.45
- 2 115.659 475 0 0 -79.5292 -84.9673 -205.85
-Number of digits in this event = 10
+Number of tracker hits in this event = 27
+ 2 116.989 1242 8 1 68.4664 122.591 35.55
+ 2 320.675 1512 8 0 68.4663 122.587 34.15
+ 2 105.619 1242 7 1 68.4596 122.514 5.55
+ 2 98.736 1511 7 0 68.4603 122.51 4.15
+ 2 141.942 1242 6 1 68.481 122.418 -24.45
+ 2 113.155 1511 6 0 68.4806 122.412 -25.85
+ 2 91.5868 1242 5 1 68.4778 122.296 -54.45
+ 2 111.958 1510 5 0 68.4778 122.291 -55.85
+ 2 92.9649 1242 4 1 68.4814 122.196 -84.45
+ 2 93.0508 1510 4 0 68.4817 122.192 -85.85
+ 2 143.608 1242 3 1 68.4936 122.107 -114.45
+ 2 104.044 1509 3 0 68.4942 122.103 -115.85
+ 2 84.3668 1242 2 1 68.5026 122.035 -144.45
+ 2 111.898 1509 2 0 68.5036 122.032 -145.85
+ 2 139.764 1242 1 1 68.5159 121.979 -174.45
+ 2 334.141 1509 1 0 68.516 121.977 -175.85
+ 2 102.071 1242 0 1 68.5217 121.926 -204.45
+ 2 101.208 1508 0 0 68.5244 121.924 -205.85
+ 2 1.52132 1267 1 1 73.5095 117.661 -174.85
+ 2 11.0853 1476 1 0 76.7154 115.419 -175.85
+ 2 67.3971 1283 1 1 76.7393 114.348 -174.85
+ 2 1.49485 1506 1 0 68.7425 121.353 -175.85
+ 2 71.9191 1505 1 0 68.7435 121.35 -175.855
+ 2 79.6046 1504 1 0 68.7902 121.15 -175.937
+ 2 484.64 1503 1 0 68.6535 120.95 -176.019
+ 2 20.434 1606 6 0 80.5209 141.512 -26.2498
+ 2 282.396 1607 6 0 80.5415 141.55 -26.2166
+Number of digits in this event = 8
Using G4ParticleGun ...
-3.69048 LIN
+4.37802 LIN
proton
Event: 3
-Number of tracker hits in this event = 22
- 3 119.337 418 10 1 -96.3922 -41.3235 95.55
- 3 101.292 693 10 0 -96.3935 -41.3237 94.15
- 3 108.85 418 9 1 -96.4165 -41.3309 65.55
- 3 105.329 693 9 0 -96.4176 -41.334 64.15
- 3 240.598 418 8 1 -96.437 -41.3965 35.55
- 3 110.83 693 8 0 -96.4384 -41.4009 34.15
- 3 194.067 418 7 1 -96.4706 -41.4862 5.55
- 3 101.233 692 7 0 -96.4752 -41.4898 4.15
- 3 113.684 417 6 1 -96.5682 -41.5597 -24.45
- 3 116.847 692 6 0 -96.5709 -41.5651 -25.85
- 3 94.3936 417 5 1 -96.6231 -41.6794 -54.45
- 3 101.622 691 5 0 -96.6271 -41.6853 -55.85
- 3 130.251 417 4 1 -96.7176 -41.8053 -84.45
- 3 118.149 691 4 0 -96.7234 -41.8113 -85.85
- 3 114.914 416 3 1 -96.8477 -41.9312 -114.45
- 3 113.776 690 3 0 -96.8536 -41.9357 -115.85
- 3 238.106 415 2 1 -96.9703 -42.0299 -144.45
- 3 93.1511 690 2 0 -96.977 -42.034 -145.85
- 3 134.501 415 1 1 -97.1223 -42.1193 -174.45
- 3 161.068 689 1 0 -97.1288 -42.1243 -175.85
- 3 129.292 414 0 1 -97.2693 -42.2288 -204.45
- 3 89.0272 689 0 0 -97.2754 -42.2347 -205.85
-Number of digits in this event = 8
+Number of tracker hits in this event = 36
+ 3 115.645 945 10 1 9.10875 -86.5863 95.55
+ 3 147.262 467 10 0 9.10845 -86.587 94.15
+ 3 99.8616 945 9 1 9.10126 -86.6039 65.55
+ 3 111.928 467 9 0 9.1029 -86.6023 64.15
+ 3 111.193 945 8 1 9.13501 -86.5752 35.55
+ 3 106.151 467 8 0 9.13494 -86.5747 34.15
+ 3 124.377 945 7 1 9.14133 -86.569 5.55
+ 3 110.78 467 7 0 9.14272 -86.5684 4.15
+ 3 125.122 945 6 1 9.16085 -86.5721 -24.45
+ 3 102.931 467 6 0 9.16224 -86.5729 -25.85
+ 3 94.7455 945 5 1 9.19055 -86.5854 -54.45
+ 3 121.273 467 5 0 9.19369 -86.5841 -55.85
+ 3 144.227 946 4 1 9.26252 -86.568 -84.45
+ 3 143.922 467 4 0 9.26473 -86.5665 -85.85
+ 3 90.8619 946 3 1 9.30624 -86.5388 -114.45
+ 3 111.933 467 3 0 9.30856 -86.5385 -115.85
+ 3 114.378 946 2 1 9.36015 -86.5341 -144.45
+ 3 115.688 467 2 0 9.36104 -86.5365 -145.85
+ 3 120.464 946 1 1 9.38374 -86.592 -174.45
+ 3 99.3894 467 1 0 9.38532 -86.5945 -175.85
+ 3 435.557 946 0 1 9.41759 -86.6491 -204.45
+ 3 212.2 466 0 0 9.41862 -86.6518 -205.85
+ 3 121.41 376 1 0 7.63899 -104.75 -176.085
+ 3 10.4006 940 1 1 8.07696 -105.074 -174.85
+ 3 48.0934 374 1 0 8.35185 -105.273 -175.85
+ 3 138.543 366 0 1 -106.75 50.4805 -204.662
+ 3 147.028 1155 0 0 -107.452 51.2312 -205.85
+ 3 482.376 1156 0 0 -107.484 51.25 -205.912
+ 3 364.371 343 0 0 -15.0881 -111.457 -206.249
+ 3 53.513 231 3 0 -121.002 -133.753 -116.25
+ 3 68.8751 465 0 0 9.2742 -86.8503 -206.012
+ 3 164.126 464 0 0 9.28937 -87.05 -206.101
+ 3 7.16178 1162 0 0 67.7863 52.6328 -206.25
+ 3 350.109 1163 0 0 67.7951 52.6501 -206.243
+ 3 24.3009 1164 0 0 67.8269 52.85 -206.124
+ 3 183.418 201 0 0 57.8759 -139.845 -206.25
+Number of digits in this event = 21
Using G4ParticleGun ...
-4.98458 LIN
+1.78169 LIN
proton
Event: 4
-Number of tracker hits in this event = 24
- 4 120.468 958 11 1 11.8225 65.3291 125.55
- 4 103.203 1226 11 0 11.8223 65.3292 124.15
- 4 143.633 958 10 1 11.8173 65.331 95.55
- 4 115.835 1226 10 0 11.8151 65.3302 94.15
- 4 94.7155 958 9 1 11.77 65.3128 65.55
- 4 114.492 1226 9 0 11.7674 65.3121 64.15
- 4 134.332 958 8 1 11.707 65.304 35.55
- 4 167.152 1226 8 0 11.7031 65.3045 34.15
- 4 120.587 957 7 1 11.6246 65.3226 5.55
- 4 94.675 1226 7 0 11.6207 65.3236 4.15
- 4 158.083 957 6 1 11.542 65.3448 -24.45
- 4 138.768 1226 6 0 11.5392 65.3455 -25.85
- 4 139.58 957 5 1 11.4786 65.3544 -54.45
- 4 159.098 1226 5 0 11.4751 65.3549 -55.85
- 4 181.11 956 4 1 11.4013 65.3642 -84.45
- 4 113.907 1226 4 0 11.3955 65.3701 -85.85
- 4 94.7956 956 3 1 11.2764 65.4951 -114.45
- 4 157.474 1227 3 0 11.2724 65.5017 -115.85
- 4 269.142 955 2 1 11.1969 65.6383 -144.45
- 4 120.61 1227 2 0 11.192 65.6453 -145.85
- 4 125.562 955 1 1 11.1001 65.7887 -174.45
- 4 113.062 1228 1 0 11.0955 65.7961 -175.85
- 4 108.102 954 0 1 11.0155 65.9467 -204.45
- 4 117.642 1229 0 0 11.0103 65.9549 -205.85
-Number of digits in this event = 15
+Number of tracker hits in this event = 16
+ 4 174.768 350 7 1 -110.031 97.2125 5.55
+ 4 111.991 1385 7 0 -110.029 97.209 4.15
+ 4 118.864 350 6 1 -110.005 97.131 -24.45
+ 4 96.1906 1384 6 0 -110.005 97.1224 -25.85
+ 4 123.041 350 5 1 -110.014 96.9443 -54.45
+ 4 345.921 1383 5 0 -110.014 96.9323 -55.85
+ 4 150.245 350 4 1 -110.019 96.6941 -84.45
+ 4 120.466 1382 4 0 -110.015 96.6855 -85.85
+ 4 124.613 350 3 1 -109.951 96.5016 -114.45
+ 4 100.969 1381 3 0 -109.95 96.4946 -115.85
+ 4 119.82 351 2 1 -109.932 96.3431 -144.45
+ 4 96.0302 1380 2 0 -109.931 96.3359 -145.85
+ 4 134.064 351 1 1 -109.9 96.1892 -174.45
+ 4 124.606 1380 1 0 -109.9 96.1842 -175.85
+ 4 210.002 351 0 1 -109.887 96.0855 -204.45
+ 4 112.067 1379 0 0 -109.886 96.0797 -205.85
+Number of digits in this event = 10
Using G4ParticleGun ...
-3.18886 LIN
+8.1871 LIN
proton
Event: 5
-Number of tracker hits in this event = 20
- 5 101.166 839 9 1 -12.1911 -132.872 65.55
- 5 128.754 236 9 0 -12.1932 -132.872 64.15
- 5 101.684 839 8 1 -12.2321 -132.883 35.55
- 5 98.7987 236 8 0 -12.2359 -132.882 34.15
- 5 113.483 838 7 1 -12.3148 -132.877 5.55
- 5 108.413 236 7 0 -12.3188 -132.876 4.15
- 5 144.507 838 6 1 -12.3983 -132.86 -24.45
- 5 138.249 236 6 0 -12.4024 -132.86 -25.85
- 5 105.481 837 5 1 -12.4891 -132.844 -54.45
- 5 123.418 236 5 0 -12.4938 -132.841 -55.85
- 5 138.051 837 4 1 -12.5811 -132.785 -84.45
- 5 128.404 236 4 0 -12.5854 -132.781 -85.85
- 5 112.28 836 3 1 -12.6802 -132.696 -114.45
- 5 130.334 237 3 0 -12.6818 -132.691 -115.85
- 5 122.996 836 2 1 -12.707 -132.576 -144.45
- 5 112.368 237 2 0 -12.7094 -132.57 -145.85
- 5 174.781 836 1 1 -12.7534 -132.427 -174.45
- 5 155 238 1 0 -12.757 -132.42 -175.85
- 5 119.169 836 0 1 -12.8243 -132.277 -204.45
- 5 108.491 239 0 0 -12.8268 -132.269 -205.85
-Number of digits in this event = 11
+Number of tracker hits in this event = 38
+ 5 185.808 1563 9 1 132.923 21.9573 65.55
+ 5 211.871 1009 9 0 132.923 21.9576 64.15
+ 5 122.646 1563 8 1 132.921 21.9651 35.55
+ 5 323.375 1009 8 0 132.921 21.9675 34.15
+ 5 156.158 1563 7 1 132.914 22.0185 5.55
+ 5 221.55 1009 7 0 132.915 22.0202 4.15
+ 5 120.682 1563 6 1 132.931 22.0577 -24.45
+ 5 155.228 1010 6 0 132.931 22.0603 -25.85
+ 5 114.452 1563 5 1 132.942 22.1139 -54.45
+ 5 158.965 1010 5 0 132.942 22.1172 -55.85
+ 5 129.606 1563 4 1 132.945 22.1836 -84.45
+ 5 109.045 1010 4 0 132.944 22.1857 -85.85
+ 5 108.391 1563 3 1 132.918 22.2273 -114.45
+ 5 118.348 1010 3 0 132.917 22.2292 -115.85
+ 5 120.45 1563 2 1 132.898 22.2593 -144.45
+ 5 119.31 1011 2 0 132.898 22.2616 -145.85
+ 5 91.0592 1563 1 1 132.905 22.308 -174.45
+ 5 89.9285 1011 1 0 132.905 22.3103 -175.85
+ 5 153.154 1563 0 1 132.9 22.3549 -204.45
+ 5 140.716 1011 0 0 132.9 22.3566 -205.85
+ 5 128.173 818 0 0 53.624 -16.25 -206.141
+ 5 5.93874 817 0 0 53.4483 -16.45 -206.073
+ 5 274.158 799 7 0 -91.6577 -20.1431 3.75
+ 5 76.3974 811 7 0 -87.4049 -17.85 4.01687
+ 5 0.00134638 958 12 1 11.85 106.704 155.303
+ 5 143.78 1059 0 0 158.046 31.9705 -206.25
+ 5 20.8069 1060 0 0 158.256 32.05 -205.901
+ 5 24.9053 1693 0 1 158.896 32.2808 -204.85
+ 5 114.174 1694 0 1 158.95 32.3002 -204.762
+ 5 100.194 1087 1 0 176.45 37.6027 -176.25
+ 5 49.6961 1088 1 0 176.606 37.65 -175.995
+ 5 27.9225 1785 1 1 177.315 37.8756 -174.85
+ 5 112.13 1786 1 1 177.35 37.8868 -174.793
+ 5 8.58512 1787 1 1 177.55 37.9502 -174.469
+ 5 8.20976 994 0 1 19.05 144.856 -204.752
+ 5 183.687 1009 6 0 132.932 22.0498 -26.1703
+ 5 102.461 1008 6 0 132.814 21.85 -26.1922
+ 5 49.0057 1008 8 0 133.037 21.85 33.9744
+Number of digits in this event = 21
Using G4ParticleGun ...
-7.63379 LIN
+8.86436 LIN
proton
Event: 6
-Number of tracker hits in this event = 26
- 6 111.897 779 11 1 -24.2369 60.9917 125.55
- 6 92.183 1204 11 0 -24.2358 60.9916 124.15
- 6 105.909 779 10 1 -24.21 60.9878 95.55
- 6 119.264 1204 10 0 -24.2085 60.9878 94.15
- 6 140.456 779 9 1 -24.1793 60.9842 65.55
- 6 152.518 1204 9 0 -24.1773 60.985 64.15
- 6 169.815 779 8 1 -24.1343 60.9977 35.55
- 6 137.924 1204 8 0 -24.1326 60.998 34.15
- 6 146.618 779 7 1 -24.1006 61.0001 5.55
- 6 135.067 1204 7 0 -24.0992 61.0009 4.15
- 6 121.604 779 6 1 -24.0721 61.0187 -24.45
- 6 104.38 1204 6 0 -24.0707 61.0193 -25.85
- 6 90.379 780 5 1 -24.0384 61.0273 -54.45
- 6 109.77 1204 5 0 -24.0378 61.0275 -55.85
- 6 159.087 780 4 1 -24.0221 61.0296 -84.45
- 6 97.7472 1204 4 0 -24.0217 61.03 -85.85
- 6 127.003 780 3 1 -24.0198 61.0375 -114.45
- 6 130.971 1204 3 0 -24.0187 61.0385 -115.85
- 6 127.133 780 2 1 -23.9968 61.0621 -144.45
- 6 313.456 1205 2 0 -23.9961 61.0639 -145.85
- 6 107.448 780 1 1 -23.9795 61.0993 -174.45
- 6 120.995 1205 1 0 -23.9786 61.1008 -175.85
- 6 105.364 780 0 1 -23.9592 61.1289 -204.45
- 6 116.082 1205 0 0 -23.958 61.1309 -205.85
- 6 41.0434 1105 2 0 -61.0301 41.1774 -146.25
- 6 43.9036 858 2 0 -74.1818 -8.26635 -146.25
-Number of digits in this event = 14
+Number of tracker hits in this event = 36
+ 6 136.257 457 9 1 -88.4766 98.4737 65.55
+ 6 108.711 1391 9 0 -88.4776 98.4727 64.15
+ 6 95.4464 457 8 1 -88.5006 98.4538 35.55
+ 6 118.472 1391 8 0 -88.5013 98.4538 34.15
+ 6 100.407 457 7 1 -88.5184 98.4532 5.55
+ 6 108.646 1391 7 0 -88.5196 98.4528 4.15
+ 6 135.948 457 6 1 -88.5429 98.4463 -24.45
+ 6 105.3 1391 6 0 -88.5433 98.4461 -25.85
+ 6 127.716 457 5 1 -88.5514 98.4399 -54.45
+ 6 361.204 1391 5 0 -88.5515 98.4397 -55.85
+ 6 158.117 457 4 1 -88.5497 98.4351 -84.45
+ 6 104.771 1391 4 0 -88.549 98.4342 -85.85
+ 6 133.999 457 3 1 -88.5351 98.4107 -114.45
+ 6 141.758 1391 3 0 -88.533 98.4088 -115.85
+ 6 109.137 457 2 1 -88.4902 98.37 -144.45
+ 6 123.645 1391 2 0 -88.4885 98.3678 -145.85
+ 6 109.325 457 1 1 -88.4559 98.3203 -174.45
+ 6 127.666 1390 1 0 -88.4542 98.3177 -175.85
+ 6 187.109 458 0 1 -88.4146 98.2663 -204.45
+ 6 230.053 1390 0 0 -88.4127 98.2642 -205.85
+ 6 4.39179 793 2 1 -21.45 137.046 -144.547
+ 6 323.896 1209 0 0 32.3718 61.8547 -206.141
+ 6 79.5133 456 6 1 -88.65 98.405 -24.5324
+ 6 50.7454 455 6 1 -88.8501 98.3299 -24.723
+ 6 129.414 1388 6 0 -90.194 97.8903 -25.85
+ 6 126.514 1387 6 0 -90.4778 97.75 -26.0886
+ 6 72.1345 293 5 1 -121.439 78.4715 -54.45
+ 6 87.3851 292 5 1 -121.55 78.3866 -54.5828
+ 6 12.6372 291 5 1 -121.75 78.2624 -54.8005
+ 6 135.843 1287 5 0 -122.714 77.6469 -55.85
+ 6 10.3312 1286 5 0 -123.028 77.45 -56.2102
+ 6 13.5229 177 4 1 -144.695 60.1335 -84.4501
+ 6 113.327 176 4 1 -144.75 60.1532 -84.4807
+ 6 83.9574 175 4 1 -144.95 60.2046 -84.5966
+ 6 34.7813 174 4 1 -145.15 60.2338 -84.7396
+ 6 186.596 1200 4 0 -146.188 60.1421 -85.85
+Number of digits in this event = 18
Using G4ParticleGun ...
-7.87265 LIN
+5.73104 LIN
proton
Event: 7
-Number of tracker hits in this event = 33
- 7 187.562 1188 9 1 57.7572 117.677 65.55
- 7 103.656 1487 9 0 57.7583 117.678 64.15
- 7 148.391 1188 8 1 57.776 117.687 35.55
- 7 153.672 1487 8 0 57.7772 117.688 34.15
- 7 97.225 1188 7 1 57.8061 117.706 5.55
- 7 131.932 1487 7 0 57.808 117.707 4.15
- 7 159.915 1188 6 1 57.8437 117.726 -24.45
- 7 105.89 1487 6 0 57.845 117.727 -25.85
- 7 130.732 1189 5 1 57.8715 117.745 -54.45
- 7 165.614 1487 5 0 57.8728 117.747 -55.85
- 7 114.517 1189 4 1 57.8951 117.775 -84.45
- 7 150.607 1488 4 0 57.8963 117.776 -85.85
- 7 133.957 1189 3 1 57.9225 117.788 -114.45
- 7 94.3835 1488 3 0 57.9243 117.787 -115.85
- 7 101.193 1189 2 1 57.9617 117.778 -144.45
- 7 95.1627 1488 2 0 57.9648 117.779 -145.85
- 7 133.535 1189 1 1 58.0291 117.78 -174.45
- 7 106.268 1488 1 0 58.0331 117.779 -175.85
- 7 138.403 1190 0 1 58.1139 117.759 -204.45
- 7 114.518 1488 0 0 58.1182 117.758 -205.85
- 7 114.298 1119 1 0 -7.2968 44.05 -176.093
- 7 211.9 1118 1 0 -7.45722 43.8498 -175.988
- 7 2.30079 1174 7 1 55.0472 127.059 5.54856
- 7 289.207 1175 7 1 55.05 127.062 5.54358
- 7 12.3835 1176 7 1 55.25 127.281 5.18235
- 7 105.725 1539 7 0 55.9636 127.982 4.15
- 7 21.8497 1540 7 0 56.1675 128.15 3.80653
- 7 19.2806 1270 6 1 74.0613 141.339 -24.4501
- 7 109.485 1269 6 1 74.0497 141.309 -24.484
- 7 145.993 1604 6 0 74.0635 141.091 -25.85
- 7 240.497 1448 6 0 -1.74206 109.837 -26.25
- 7 201.382 1449 6 0 -2.19281 109.95 -26.0222
- 7 174.294 1450 6 0 -2.52174 110.15 -25.9619
-Number of digits in this event = 18
+Number of tracker hits in this event = 31
+ 7 161.365 470 10 1 -85.9299 -49.067 95.55
+ 7 97.2109 654 10 0 -85.9301 -49.0671 94.15
+ 7 135.361 470 9 1 -85.9371 -49.0724 65.55
+ 7 102.316 654 9 0 -85.938 -49.0712 64.15
+ 7 104.6 470 8 1 -85.9566 -49.0484 35.55
+ 7 183.434 655 8 0 -85.9581 -49.0483 34.15
+ 7 89.4881 470 7 1 -85.987 -49.0518 5.55
+ 7 125.161 654 7 0 -85.988 -49.0524 4.15
+ 7 131.32 470 6 1 -86.0058 -49.0649 -24.45
+ 7 189.676 654 6 0 -86.0066 -49.0653 -25.85
+ 7 117.495 470 5 1 -86.0264 -49.072 -54.45
+ 7 191.964 654 5 0 -86.0282 -49.0722 -55.85
+ 7 147.594 469 4 1 -86.0659 -49.0785 -84.45
+ 7 204.397 654 4 0 -86.0688 -49.0782 -85.85
+ 7 136.911 469 3 1 -86.1302 -49.0704 -114.45
+ 7 126.333 654 3 0 -86.1328 -49.0705 -115.85
+ 7 176.592 469 2 1 -86.182 -49.0574 -144.45
+ 7 117.023 654 2 0 -86.1849 -49.0564 -145.85
+ 7 118.741 469 1 1 -86.2417 -49.0386 -174.45
+ 7 137.334 655 1 0 -86.2444 -49.0371 -175.85
+ 7 103.732 468 0 1 -86.2929 -49.0093 -204.45
+ 7 105.96 655 0 0 -86.2962 -49.0079 -205.85
+ 7 120.95 1694 1 0 -136.094 159.027 -176.25
+ 7 286.371 1693 1 0 -136.254 158.95 -176.086
+ 7 114.505 468 2 1 -86.4164 -55.1081 -144.45
+ 7 11.0443 467 2 1 -86.45 -55.2415 -144.82
+ 7 107.788 621 2 0 -86.5503 -55.6617 -145.851
+ 7 96.6271 456 1 1 -88.7142 -68.6407 -174.45
+ 7 117.397 556 1 0 -88.8343 -68.8098 -175.85
+ 7 91.4186 449 0 1 -90.15 -69.28 -204.516
+ 7 137.896 554 0 0 -90.7305 -69.1485 -205.85
+Number of digits in this event = 19
Using G4ParticleGun ...
-5.47162 LIN
+7.46085 LIN
proton
Event: 8
-Number of tracker hits in this event = 64
- 8 162.544 1210 10 1 62.2163 -93.5496 95.55
- 8 97.8765 433 10 0 62.2172 -93.5481 94.15
- 8 135.159 1210 9 1 62.2327 -93.5157 65.55
- 8 110.691 433 9 0 62.2337 -93.5141 64.15
- 8 142.769 1211 8 1 62.2534 -93.4839 35.55
- 8 135.597 433 8 0 62.2553 -93.4821 34.15
- 8 113.368 1211 7 1 62.2944 -93.4425 5.55
- 8 127.307 433 7 0 62.296 -93.4395 4.15
- 8 152.404 1211 6 1 62.3244 -93.3794 -24.45
- 8 304.392 433 6 0 62.3266 -93.3757 -25.85
- 8 212.299 1211 5 1 62.3671 -93.2972 -54.45
- 8 154.036 434 5 0 62.369 -93.2933 -55.85
- 8 111.864 1211 4 1 62.4093 -93.219 -84.45
- 8 95.626 434 4 0 62.4127 -93.2157 -85.85
- 8 108.469 1212 3 1 62.4842 -93.1477 -114.45
- 8 1066.26 435 3 0 62.4885 -93.1429 -115.85
- 8 178.451 434 3 0 62.5116 -93.15 -116.024
- 8 289.186 488 2 1 -82.25 -134.163 -144.546
- 8 292.774 1297 2 1 79.4882 -82.7882 -144.45
- 8 103.343 1298 2 1 79.65 -82.6929 -144.721
- 8 156.401 488 2 0 80.3212 -82.2927 -145.85
- 8 271.514 489 2 0 80.3927 -82.25 -145.97
- 8 48.2553 1385 1 1 97.3118 -72.1533 -174.45
- 8 240.957 1386 1 1 97.35 -72.1311 -174.516
- 8 75.3962 541 1 0 98.1231 -71.6824 -175.85
- 8 245.909 542 1 0 98.179 -71.65 -175.947
- 8 94.2652 1472 0 1 114.674 -62.032 -204.45
- 8 196.753 1473 0 1 114.75 -61.9854 -204.586
- 8 238.297 592 0 0 115.447 -61.5517 -205.85
- 8 84.6113 593 0 0 115.61 -61.45 -206.146
- 8 56.3878 1405 1 1 101.298 -68.7517 -174.85
- 8 119.162 559 1 0 101.439 -68.0793 -175.85
- 8 2.94722 34 4 0 -48.7198 -173.343 -86.25
- 8 100.907 33 4 0 -48.7298 -173.35 -86.2473
- 8 121.33 32 4 0 -49.0133 -173.55 -86.1711
- 8 107.369 31 4 0 -49.3033 -173.75 -86.093
- 8 160.677 30 4 0 -49.5917 -173.95 -86.0216
- 8 297.262 29 4 0 -49.8829 -174.15 -85.952
- 8 54.9579 28 4 0 -50.1811 -174.35 -85.8871
- 8 35.388 623 4 1 -55.3608 -177.845 -84.85
- 8 76.8556 622 4 1 -55.4504 -177.906 -84.8322
- 8 76.2345 621 4 1 -55.65 -178.037 -84.7956
- 8 84.5463 620 4 1 -55.85 -178.171 -84.7581
- 8 66.0562 619 4 1 -56.05 -178.303 -84.7186
- 8 72.5011 618 4 1 -56.25 -178.432 -84.6783
- 8 77.3767 617 4 1 -56.45 -178.562 -84.6383
- 8 65.3679 616 4 1 -56.6504 -178.696 -84.5975
- 8 80.1436 615 4 1 -56.85 -178.831 -84.5587
- 8 66.8092 614 4 1 -57.05 -178.968 -84.5218
- 8 100.498 613 4 1 -57.2509 -179.104 -84.4852
- 8 208.466 612 4 1 -57.45 -179.306 -84.4756
- 8 315.248 651 4 1 -49.7721 -174.966 -84.85
- 8 84.8096 498 4 0 69.2999 -80.3654 -86.2499
- 8 134.404 1164 2 1 53.0262 -106.299 -144.45
- 8 4.82889 366 2 0 52.5784 -106.941 -145.85
- 8 137.634 365 2 0 52.5722 -106.95 -145.869
- 8 101.841 1116 1 1 43.3605 -120.167 -174.45
- 8 26.5346 1115 1 1 43.25 -120.312 -174.782
- 8 111.951 296 1 0 42.8932 -120.78 -175.85
- 8 2.55154 295 1 0 42.7634 -120.95 -176.238
- 8 84.3301 1066 0 1 33.3265 -133.299 -204.45
- 8 48.4268 1065 0 1 33.25 -133.415 -204.712
- 8 21.5292 231 0 0 32.9216 -133.918 -205.85
- 8 131.496 230 0 0 32.9011 -133.95 -205.921
-Number of digits in this event = 30
+Number of tracker hits in this event = 20
+ 8 145.692 1281 8 1 76.4454 -124.064 35.55
+ 8 128.423 280 8 0 76.4456 -124.064 34.15
+ 8 140.257 1282 7 1 76.4512 -124.064 5.55
+ 8 145.102 280 7 0 76.451 -124.065 4.15
+ 8 101.997 1281 6 1 76.4472 -124.077 -24.45
+ 8 286.994 280 6 0 76.4476 -124.078 -25.85
+ 8 108.692 1282 5 1 76.4542 -124.098 -54.45
+ 8 94.8 280 5 0 76.4544 -124.099 -55.85
+ 8 114.493 1282 4 1 76.4606 -124.126 -84.45
+ 8 104.277 280 4 0 76.4614 -124.127 -85.85
+ 8 114.101 1282 3 1 76.4766 -124.146 -114.45
+ 8 97.5027 280 3 0 76.4778 -124.148 -115.85
+ 8 93.4686 1282 2 1 76.4966 -124.189 -144.45
+ 8 110.758 279 2 0 76.498 -124.192 -145.85
+ 8 142.586 1282 1 1 76.5266 -124.245 -174.45
+ 8 132.582 279 1 0 76.5279 -124.248 -175.85
+ 8 139.246 1282 0 1 76.552 -124.301 -204.45
+ 8 111.374 279 0 0 76.552 -124.304 -205.85
+ 8 16.1249 1282 6 1 76.45 -124.077 -24.7877
+ 8 16.8891 281 6 0 77.173 -123.95 -26.1638
+Number of digits in this event = 9
Using G4ParticleGun ...
-3.36817 LIN
+1.93855 LIN
proton
Event: 9
-Number of tracker hits in this event = 47
- 9 127.571 833 11 1 -13.2789 11.2018 125.55
- 9 107.196 955 11 0 -13.278 11.2012 124.15
- 9 116.393 833 10 1 -13.2556 11.1891 95.55
- 9 125.492 955 10 0 -13.2531 11.1854 94.15
- 9 126.422 834 9 1 -13.1983 11.1118 65.55
- 9 217.478 955 9 0 -13.195 11.1062 64.15
- 9 108.394 834 8 1 -13.1299 10.9986 35.55
- 9 104.819 954 8 0 -13.1256 10.9923 34.15
- 9 107.613 835 7 1 -13.0358 10.8665 5.55
- 9 104.179 954 7 0 -13.0313 10.8626 4.15
- 9 103.044 835 6 1 -12.9358 10.7859 -24.45
- 9 153.47 953 6 0 -12.929 10.7825 -25.85
- 9 98.3949 836 5 1 -12.7944 10.7167 -54.45
- 9 95.5069 953 5 0 -12.7884 10.7144 -55.85
- 9 105.436 836 4 1 -12.6556 10.6733 -84.45
- 9 96.4432 953 4 0 -12.6487 10.6719 -85.85
- 9 103.699 837 3 1 -12.5125 10.644 -114.45
- 9 138.922 952 3 0 -12.5038 10.6434 -115.85
- 9 118.86 838 2 1 -12.3233 10.636 -144.45
- 9 117.974 952 2 0 -12.3132 10.6365 -145.85
- 9 126.175 839 1 1 -12.1081 10.6497 -174.45
- 9 105.422 952 1 0 -12.0964 10.6478 -175.85
- 9 0.85421 840 0 1 -11.85 10.6238 -204.45
- 9 120.597 841 0 1 -11.85 10.6238 -204.456
- 9 96.7822 952 0 0 -11.8381 10.62 -205.85
- 9 173.632 538 4 1 -72.25 -116.181 -84.7301
- 9 9.94265 537 4 1 -72.4502 -116.64 -84.8044
- 9 165.664 316 4 0 -73.1063 -116.809 -85.85
- 9 77.3419 315 4 0 -73.5141 -116.95 -86.0794
- 9 94.2854 314 4 0 -73.6911 -117.15 -86.0472
- 9 177.78 313 4 0 -73.8715 -117.351 -86.0715
- 9 362.406 528 4 1 -74.2664 -116.362 -84.85
- 9 79.0957 69 7 0 -156.299 -166.191 3.75027
- 9 83.0385 68 7 0 -156.355 -166.35 3.89216
- 9 14.3494 67 7 0 -156.459 -166.55 4.10781
- 9 219.595 116 7 1 -156.881 -167.484 5.15
- 9 81.8321 118 7 1 -156.484 -168.149 5.55
- 9 64.4681 119 7 1 -156.35 -168.097 5.39328
- 9 73.5658 120 7 1 -156.15 -168.024 5.25833
- 9 45.2133 64 7 0 -155.137 -167.191 4.15
- 9 91.9934 65 7 0 -155.088 -167.15 4.01934
- 9 71.6852 163 6 1 -147.42 -143.819 -24.45
- 9 260.68 164 6 1 -147.35 -143.951 -24.611
- 9 85.9054 165 6 1 -147.15 -144.564 -24.6786
- 9 2.51534 1304 5 1 80.85 42.086 -54.6472
- 9 90.9878 1311 9 0 153.993 82.4194 63.75
- 9 102.132 1312 9 0 154.005 82.45 63.8449
-Number of digits in this event = 17
+Number of tracker hits in this event = 22
+ 9 138.319 649 10 1 -50.2481 72.3408 95.55
+ 9 102.673 1261 10 0 -50.2502 72.3392 94.15
+ 9 119.579 648 9 1 -50.3034 72.3003 65.55
+ 9 153.191 1261 9 0 -50.3078 72.2979 64.15
+ 9 141.396 648 8 1 -50.4104 72.2414 35.55
+ 9 111.641 1260 8 0 -50.4134 72.2372 34.15
+ 9 110.674 647 7 1 -50.4625 72.1672 5.55
+ 9 114.74 1260 7 0 -50.4625 72.1661 4.15
+ 9 116.718 647 6 1 -50.4611 72.1382 -24.45
+ 9 149.456 1260 6 0 -50.4633 72.1388 -25.85
+ 9 190.23 647 5 1 -50.5117 72.1589 -54.45
+ 9 112.391 1260 5 0 -50.5161 72.1613 -55.85
+ 9 111.222 647 4 1 -50.608 72.2225 -84.45
+ 9 97.1407 1260 4 0 -50.6143 72.2267 -85.85
+ 9 102.304 646 3 1 -50.7349 72.3136 -114.45
+ 9 138.524 1261 3 0 -50.7371 72.321 -115.85
+ 9 103.197 646 2 1 -50.7566 72.4614 -144.45
+ 9 120.111 1262 2 0 -50.7589 72.4664 -145.85
+ 9 119.561 646 1 1 -50.8037 72.5765 -174.45
+ 9 142.54 1262 1 0 -50.8058 72.5802 -175.85
+ 9 114.252 646 0 1 -50.8366 72.6648 -204.45
+ 9 156.851 1263 0 0 -50.8354 72.67 -205.85
+Number of digits in this event = 11
Using G4ParticleGun ...
-7.0199 LIN
+4.04328 LIN
proton
Event: 10
-Number of tracker hits in this event = 117
- 10 115.144 401 9 1 -99.826 89.5106 65.55
- 10 129.944 1347 9 0 -99.826 89.51 64.15
- 10 113.576 401 8 1 -99.8264 89.4977 35.55
- 10 162.998 1347 8 0 -99.8269 89.4976 34.15
- 10 94.3861 401 7 1 -99.8417 89.4945 5.55
- 10 136.022 1347 7 0 -99.8434 89.4946 4.15
- 10 124.093 401 6 1 -99.8785 89.4984 -24.45
- 10 129.382 1347 6 0 -99.879 89.4984 -25.85
- 10 90.9482 401 5 1 -99.8911 89.4954 -54.45
- 10 102.814 1347 5 0 -99.8921 89.4938 -55.85
- 10 123.091 401 4 1 -99.9171 89.4589 -84.45
- 10 111.686 1347 4 0 -99.9186 89.4577 -85.85
- 10 114.817 400 3 1 -99.9515 89.435 -114.45
- 10 146.105 1346 3 0 -99.9522 89.4333 -115.85
- 10 256.03 400 2 1 -99.9618 89.4019 -144.45
- 10 82.7848 1346 2 0 -99.9608 89.4008 -145.85
- 10 310.077 401 1 1 -99.9403 89.3799 -174.45
- 10 165.816 1346 1 0 -99.9404 89.379 -175.85
- 10 167.111 401 0 1 -99.9404 89.3601 -204.45
- 10 229.54 1346 0 0 -99.9392 89.3579 -205.85
- 10 13.2665 1546 1 0 36.6298 129.35 -176.032
- 10 95.1501 1027 7 0 -106.634 25.6075 3.75
- 10 251.129 1026 7 0 -106.717 25.4499 3.93846
- 10 36.541 1025 7 0 -107.365 25.25 3.82151
- 10 165.397 948 7 0 -112.322 9.71107 3.75
- 10 156.546 949 7 0 -112.488 9.85 3.81366
- 10 30.2266 1302 0 0 -110.979 80.5696 -206.25
- 10 118.431 1301 0 0 -111.072 80.45 -206.114
- 10 145.816 1352 0 0 -0.0549982 90.55 -206.013
- 10 76.2465 1698 0 0 -115.736 159.888 -205.93
- 10 2191.83 1377 0 0 -109.808 95.5533 -206.25
- 10 298.933 347 0 1 -110.717 96.1584 -204.85
- 10 1762.59 346 0 1 -110.75 96.1811 -204.799
- 10 275.516 345 0 1 -110.95 96.3154 -204.497
- 10 6472.05 1436 1 0 -131.718 107.412 -176.25
- 10 372.556 1437 1 0 -131.999 107.55 -175.862
- 10 1802.93 237 1 1 -132.581 107.778 -174.85
- 10 1494.9 1080 0 0 -95.8247 36.2009 -206.25
- 10 2138.43 1079 0 0 -95.813 36.05 -206.206
- 10 2360.71 1078 0 0 -95.798 35.85 -206.148
- 10 2908.19 1077 0 0 -95.7838 35.65 -206.091
- 10 4155.23 1076 0 0 -95.7788 35.45 -206.025
- 10 4230.92 1075 0 0 -95.7717 35.25 -205.94
- 10 865 1186 0 0 6.8186 57.4018 -206.25
- 10 1378.6 1185 0 0 7.32647 57.25 -206.176
- 10 1396.45 1184 0 0 8.01212 57.05 -206.079
- 10 1524.95 1183 0 0 8.70954 56.85 -205.982
- 10 496.945 1182 0 0 9.41653 56.65 -205.888
- 10 91.314 984 0 1 16.996 54.4826 -204.85
- 10 398.591 985 0 1 17.05 54.4672 -204.843
- 10 328.601 986 0 1 17.25 54.4091 -204.815
- 10 367.062 987 0 1 17.45 54.3507 -204.788
- 10 339.081 988 0 1 17.65 54.2933 -204.76
- 10 419.193 989 0 1 17.85 54.2345 -204.734
- 10 523.324 990 0 1 18.05 54.1744 -204.709
- 10 376.825 991 0 1 18.25 54.1148 -204.683
- 10 415.907 992 0 1 18.45 54.0546 -204.659
- 10 387.018 993 0 1 18.65 53.9975 -204.635
- 10 394.61 994 0 1 18.85 53.9412 -204.609
- 10 368.406 995 0 1 19.05 53.8869 -204.582
- 10 464.333 996 0 1 19.25 53.8317 -204.554
- 10 349.415 997 0 1 19.45 53.7754 -204.527
- 10 560.178 998 0 1 19.65 53.7175 -204.497
- 10 247.867 999 0 1 19.85 53.6586 -204.469
- 10 1305.88 1013 0 1 22.6618 52.8541 -204.45
- 10 1400.75 1014 0 1 22.85 52.803 -204.549
- 10 1623.87 1015 0 1 23.05 52.7506 -204.655
- 10 1709.88 1016 0 1 23.25 52.6899 -204.752
- 10 293.581 1017 0 1 23.45 52.6378 -204.837
- 10 9456.06 1159 0 0 26.3159 52.0022 -205.85
- 10 2.42908 1374 0 0 -100.236 95.1472 -206.25
- 10 109.827 1375 0 0 -100.236 95.15 -206.242
- 10 225.674 399 0 1 -100.189 95.6266 -204.85
- 10 48.2966 1421 1 0 -104.607 104.514 -176.25
- 10 79.4451 1422 1 0 -104.626 104.55 -176.133
- 10 146.18 376 1 1 -104.825 104.916 -174.85
- 10 16.9094 1473 2 0 -111.845 114.927 -146.247
- 10 106.567 1474 2 0 -111.862 114.95 -146.181
- 10 84.0837 339 2 1 -112.258 115.431 -144.849
- 10 29.2367 338 2 1 -112.35 115.547 -144.548
- 10 90.5574 1537 3 0 -121.307 127.632 -116.25
- 10 46.6555 1538 3 0 -121.403 127.75 -115.988
- 10 84.3629 291 3 1 -121.838 128.232 -114.85
- 10 168.355 290 3 1 -121.95 128.354 -114.565
- 10 210.061 1629 4 0 -109.126 146.083 -86.2499
- 10 104.103 1630 4 0 -109.085 146.15 -86.15
- 10 12.0779 1631 4 0 -108.965 146.35 -85.87
- 10 166.683 358 4 1 -108.457 147.11 -84.8499
- 10 111.265 359 4 1 -108.35 147.263 -84.6519
- 10 52.619 1709 5 0 -126.636 162.078 -56.25
- 10 93.9175 1710 5 0 -126.729 162.15 -56.0985
- 10 31.9891 263 5 1 -127.492 162.644 -54.85
- 10 105.69 262 5 1 -127.55 162.681 -54.7539
- 10 86.0414 1628 4 0 -108.733 145.95 -86.0556
- 10 107.082 354 4 1 -109.255 146.4 -84.85
- 10 163.819 353 4 1 -109.35 146.433 -84.7358
- 10 118.384 289 3 1 -122.15 128.594 -114.711
- 10 89.7714 288 3 1 -122.35 128.836 -114.729
- 10 2.46721 287 3 1 -122.55 128.96 -114.848
- 10 3.83921 1519 3 0 -144.476 124.055 -115.85
- 10 46.1899 153 3 1 -149.477 121.698 -114.85
- 10 251.662 152 3 1 -149.55 121.658 -114.828
- 10 105.491 151 3 1 -149.75 121.854 -114.744
- 10 2.58976 400 0 1 -100.15 95.8227 -204.456
- 10 6.11336 1387 0 0 -105.024 97.561 -205.85
- 10 107.806 1564 7 1 133.028 9.20576 5.39841
- 10 40.358 1264 3 0 -7.21641 72.85 -116.03
- 10 209.662 859 3 1 -8.22364 72.6846 -114.85
- 10 15.1253 858 3 1 -8.25 72.6841 -114.815
- 10 111.182 848 9 1 -10.45 -50.9922 65.1856
- 10 10.4599 880 9 1 -4.05 -53.7739 65.3414
- 10 68.1818 508 9 0 148.368 -78.25 64.0449
- 10 76.9507 1262 9 1 72.5811 137.154 65.2051
- 10 105.874 1347 1 0 -99.8817 89.45 -176.038
- 10 82.2698 1348 1 0 -99.8505 89.65 -175.956
- 10 157.287 408 1 1 -98.473 90.569 -174.85
- 10 3.28607 1347 3 0 -99.9859 89.45 -116.239
-Number of digits in this event = 68
+Number of tracker hits in this event = 20
+ 10 101.767 1325 8 1 85.1942 -117.054 35.55
+ 10 130.421 315 8 0 85.1941 -117.056 34.15
+ 10 96.0993 1325 7 1 85.1994 -117.079 5.55
+ 10 89.8114 315 7 0 85.1987 -117.081 4.15
+ 10 115.39 1325 6 1 85.1846 -117.113 -24.45
+ 10 191.302 315 6 0 85.1839 -117.114 -25.85
+ 10 213.976 1325 5 1 85.1658 -117.157 -54.45
+ 10 112.658 314 5 0 85.1643 -117.159 -55.85
+ 10 139.201 1325 4 1 85.1348 -117.204 -84.45
+ 10 123.677 314 4 0 85.1363 -117.206 -85.85
+ 10 125.02 1325 3 1 85.1725 -117.261 -114.45
+ 10 137.266 314 3 0 85.1724 -117.266 -115.85
+ 10 186.703 1325 2 1 85.1741 -117.356 -144.45
+ 10 105.729 313 2 0 85.1724 -117.358 -145.85
+ 10 184.053 1325 1 1 85.1383 -117.416 -174.45
+ 10 314.644 313 1 0 85.1372 -117.417 -175.85
+ 10 99.6883 1325 0 1 85.1372 -117.426 -204.45
+ 10 129.296 313 0 0 85.1362 -117.427 -205.85
+ 10 99.9508 312 1 0 85.0723 -117.55 -176.125
+ 10 61.4554 1326 5 1 85.25 -117.217 -54.526
+Number of digits in this event = 12
Using G4ParticleGun ...
-5.07313 LIN
+6.7561 LIN
proton
Event: 11
-Number of tracker hits in this event = 21
- 11 136.397 1208 9 1 61.7896 -110.747 65.55
- 11 188.815 347 9 0 61.789 -110.746 64.15
- 11 215.208 1208 8 1 61.7717 -110.717 35.55
- 11 110.696 347 8 0 61.772 -110.715 34.15
- 11 94.9644 1208 7 1 61.7762 -110.678 5.55
- 11 89.0299 347 7 0 61.7761 -110.675 4.15
- 11 101.618 1208 6 1 61.77 -110.629 -24.45
- 11 100.747 347 6 0 61.7695 -110.627 -25.85
- 11 109.771 1208 5 1 61.7688 -110.586 -54.45
- 11 147.084 347 5 0 61.769 -110.584 -55.85
- 11 107.411 1208 4 1 61.7727 -110.549 -84.45
- 11 117.581 348 4 0 61.7723 -110.548 -85.85
- 11 107.131 1208 3 1 61.7615 -110.531 -114.45
- 11 112.161 348 3 0 61.7596 -110.53 -115.85
- 11 106.797 1208 2 1 61.7136 -110.52 -144.45
- 11 103.441 348 2 0 61.7117 -110.52 -145.85
- 11 139.942 1208 1 1 61.6773 -110.512 -174.45
- 11 107.023 348 1 0 61.6748 -110.511 -175.85
- 11 105.186 1207 0 1 61.6267 -110.509 -204.45
- 11 135.894 348 0 0 61.6245 -110.508 -205.85
- 11 85.575 1209 8 1 61.85 -110.749 35.5298
-Number of digits in this event = 7
+Number of tracker hits in this event = 22
+ 11 118.075 335 10 1 -113.099 -19.6673 95.55
+ 11 142.62 801 10 0 -113.098 -19.6671 94.15
+ 11 115.351 335 9 1 -113.089 -19.6619 65.55
+ 11 90.5829 801 9 0 -113.087 -19.6626 64.15
+ 11 111.99 335 8 1 -113.066 -19.6765 35.55
+ 11 134.089 801 8 0 -113.064 -19.6768 34.15
+ 11 133.613 335 7 1 -113.036 -19.6821 5.55
+ 11 101.674 801 7 0 -113.035 -19.6819 4.15
+ 11 128.693 335 6 1 -113.011 -19.6768 -24.45
+ 11 126.563 801 6 0 -113.011 -19.6771 -25.85
+ 11 109.966 335 5 1 -112.997 -19.6837 -54.45
+ 11 117.35 801 5 0 -112.995 -19.6836 -55.85
+ 11 219.227 335 4 1 -112.97 -19.6868 -84.45
+ 11 89.3427 801 4 0 -112.969 -19.6869 -85.85
+ 11 101.04 336 3 1 -112.938 -19.6965 -114.45
+ 11 128.486 801 3 0 -112.936 -19.6982 -115.85
+ 11 100.826 336 2 1 -112.894 -19.7332 -144.45
+ 11 227.917 801 2 0 -112.893 -19.7354 -145.85
+ 11 132.595 336 1 1 -112.873 -19.7804 -174.45
+ 11 186.917 801 1 0 -112.872 -19.7825 -175.85
+ 11 125.217 336 0 1 -112.841 -19.8241 -204.45
+ 11 181.227 801 0 0 -112.84 -19.8263 -205.85
+Number of digits in this event = 13
Using G4ParticleGun ...
-7.75798 LIN
+9.48652 LIN
proton
Event: 12
-Number of tracker hits in this event = 24
- 12 144.18 1572 8 1 134.556 25.6654 35.55
- 12 103.646 1028 8 0 134.555 25.6651 34.15
- 12 96.6467 1571 7 1 134.544 25.6569 5.55
- 12 100.038 1028 7 0 134.544 25.6575 4.15
- 12 128.802 1571 6 1 134.53 25.67 -24.45
- 12 115.764 1028 6 0 134.529 25.6704 -25.85
- 12 103.742 1571 5 1 134.52 25.6788 -54.45
- 12 92.2349 1028 5 0 134.52 25.6795 -55.85
- 12 130.102 1571 4 1 134.501 25.696 -84.45
- 12 154.142 1028 4 0 134.501 25.6969 -85.85
- 12 107.418 1571 3 1 134.509 25.7173 -114.45
- 12 115.658 1028 3 0 134.509 25.7178 -115.85
- 12 118.154 1571 2 1 134.521 25.7251 -144.45
- 12 101.565 1028 2 0 134.522 25.7241 -145.85
- 12 201.509 1571 1 1 134.524 25.7039 -174.45
- 12 120.485 1028 1 0 134.523 25.7026 -175.85
- 12 120.027 1571 0 1 134.506 25.6765 -204.45
- 12 110.964 1028 0 0 134.505 25.6756 -205.85
- 12 25.0259 1263 0 1 72.8319 -7.93515 -204.85
- 12 105.904 1264 0 1 72.85 -7.76327 -204.571
- 12 122.403 532 3 1 -73.6485 -138.238 -114.45
- 12 28.3482 207 3 0 -73.6113 -138.691 -115.85
- 12 502.787 206 3 0 -73.6006 -138.75 -115.947
- 12 55.4977 205 3 0 -73.4231 -138.95 -116.006
-Number of digits in this event = 10
+Number of tracker hits in this event = 34
+ 12 112.239 774 7 1 -25.1115 144.649 5.55
+ 12 110.515 1622 7 0 -25.1115 144.649 4.15
+ 12 101.445 774 6 1 -25.1094 144.659 -24.45
+ 12 121.081 1622 6 0 -25.1088 144.658 -25.85
+ 12 124.08 774 5 1 -25.0958 144.657 -54.45
+ 12 90.9505 1622 5 0 -25.0944 144.657 -55.85
+ 12 104.407 774 4 1 -25.0629 144.647 -84.45
+ 12 103.475 1622 4 0 -25.0619 144.646 -85.85
+ 12 130.49 775 3 1 -25.0444 144.623 -114.45
+ 12 154.029 1622 3 0 -25.0449 144.622 -115.85
+ 12 106.102 774 2 1 -25.0552 144.622 -144.45
+ 12 99.3584 1622 2 0 -25.0546 144.622 -145.85
+ 12 145.684 775 1 1 -25.0414 144.635 -174.45
+ 12 173.653 1622 1 0 -25.0402 144.636 -175.85
+ 12 122.004 775 0 1 -25.016 144.661 -204.45
+ 12 142.615 1622 0 0 -25.0153 144.661 -205.85
+ 12 68.7365 775 4 1 -25.05 144.652 -84.6445
+ 12 131.526 1623 4 0 -24.7603 144.801 -85.85
+ 12 6.01645 810 3 1 -17.8565 149.211 -114.45
+ 12 120.297 811 3 1 -17.85 149.217 -114.478
+ 12 16.647 1646 3 0 -17.4783 149.537 -115.85
+ 12 107.053 1647 3 0 -17.4618 149.55 -115.907
+ 12 63.5748 848 2 1 -10.4457 156.87 -144.45
+ 12 71.8706 849 2 1 -10.2495 156.874 -144.615
+ 12 62.4204 850 2 1 -10.05 156.895 -144.743
+ 12 113.859 851 2 1 -9.85 156.894 -144.78
+ 12 41.9044 852 2 1 -9.65 156.884 -144.822
+ 12 119.6 1682 2 0 -5.60478 156.583 -145.85
+ 12 186.897 1681 2 0 -5.1444 156.55 -145.978
+ 12 158.602 1680 2 0 -4.49264 156.35 -146.12
+ 12 175.93 1679 2 0 -4.00715 156.15 -146.16
+ 12 8.78812 1626 7 0 -25.123 145.528 4.15
+ 12 141.402 1627 7 0 -25.1258 145.55 4.13131
+ 12 819.129 1628 7 0 -25.1916 145.75 3.97268
+Number of digits in this event = 19
Using G4ParticleGun ...
-7.46502 LIN
+2.26109 LIN
proton
Event: 13
-Number of tracker hits in this event = 25
- 13 97.8198 641 11 1 -51.7764 -56.969 125.55
- 13 189.911 615 11 0 -51.7769 -56.9695 124.15
- 13 111.914 641 10 1 -51.783 -56.9825 95.55
- 13 261.749 615 10 0 -51.7823 -56.983 94.15
- 13 219.337 641 9 1 -51.7694 -56.9924 65.55
- 13 118.062 615 9 0 -51.7678 -56.993 64.15
- 13 133.845 641 8 1 -51.7291 -57.0043 35.55
- 13 119.328 615 8 0 -51.7266 -57.0047 34.15
- 13 137.87 641 7 1 -51.6777 -57.0137 5.55
- 13 100.643 615 7 0 -51.6759 -57.0146 4.15
- 13 91.8831 642 6 1 -51.6394 -57.0349 -24.45
- 13 163.81 615 6 0 -51.639 -57.0361 -25.85
- 13 134.857 642 5 1 -51.6337 -57.0603 -54.45
- 13 109.29 614 5 0 -51.6351 -57.0612 -55.85
- 13 108.054 641 4 1 -51.6635 -57.0824 -84.45
- 13 98.9727 614 4 0 -51.6648 -57.0837 -85.85
- 13 110.595 641 3 1 -51.6908 -57.1118 -114.45
- 13 128.072 614 3 0 -51.6917 -57.1132 -115.85
- 13 178.216 641 2 1 -51.7108 -57.1428 -144.45
- 13 103.728 614 2 0 -51.7117 -57.1434 -145.85
- 13 180.333 641 1 1 -51.7256 -57.1591 -174.45
- 13 99.4822 614 1 0 -51.7275 -57.1601 -175.85
- 13 209.31 641 0 1 -51.769 -57.1809 -204.45
- 13 192.65 614 0 0 -51.7712 -57.1817 -205.85
- 13 163.814 613 0 0 -51.8279 -57.2977 -205.85
-Number of digits in this event = 14
+Number of tracker hits in this event = 28
+ 13 126.42 1509 9 1 121.975 27.8763 65.55
+ 13 94.3313 1039 9 0 121.975 27.8783 64.15
+ 13 139.186 1509 8 1 121.952 27.926 35.55
+ 13 135.762 1039 8 0 121.95 27.9288 34.15
+ 13 101.204 1508 7 1 121.902 27.9828 5.55
+ 13 117.37 1039 7 0 121.904 27.9836 4.15
+ 13 117.139 1509 6 1 121.97 27.9843 -24.45
+ 13 200.269 1039 6 0 121.976 27.9817 -25.85
+ 13 282.59 1509 5 1 122.098 27.9395 -54.45
+ 13 98.3167 1039 5 0 122.105 27.9392 -55.85
+ 13 111.517 1510 4 1 122.263 27.9352 -84.45
+ 13 165.121 1039 4 0 122.271 27.9373 -85.85
+ 13 182.044 1511 3 1 122.428 27.9803 -114.45
+ 13 102.016 1039 3 0 122.434 27.9821 -115.85
+ 13 16.1208 1511 2 1 122.55 28.0176 -144.45
+ 13 188.237 1512 2 1 122.55 28.0177 -144.483
+ 13 177.582 1039 2 0 122.558 28.0198 -145.85
+ 13 115.091 1512 1 1 122.716 28.0602 -174.45
+ 13 114.364 1040 1 0 122.726 28.0616 -175.85
+ 13 0.587562 1513 0 1 122.95 28.0838 -204.45
+ 13 131.294 1514 0 1 122.95 28.0838 -204.453
+ 13 199.641 1040 0 0 122.959 28.0849 -205.85
+ 13 61.1948 1049 4 0 118.644 30.0198 -86.25
+ 13 87.6218 1050 4 0 118.6 30.05 -86.1393
+ 13 11.22 1051 4 0 118.499 30.25 -86.2118
+ 13 224.481 1236 4 0 81.2979 67.3151 -86.2494
+ 13 9.94595 1215 4 0 88.2043 63.0893 -86.25
+ 13 59.5696 1510 5 1 122.15 27.9959 -54.4995
+Number of digits in this event = 13
Using G4ParticleGun ...
-2.80397 LIN
+1.0033 LIN
proton
Event: 14
-Number of tracker hits in this event = 90
- 14 150.525 705 11 1 -39.0332 22.3781 125.55
- 14 114.657 1011 11 0 -39.0352 22.3804 124.15
- 14 125.235 704 10 1 -39.0832 22.4235 95.55
- 14 391.012 1011 10 0 -39.0889 22.4262 94.15
- 14 96.7313 704 9 1 -39.2021 22.4834 65.55
- 14 111.505 1012 9 0 -39.2053 22.4859 64.15
- 14 105.928 703 8 1 -39.2803 22.5278 35.55
- 14 95.4772 1012 8 0 -39.2845 22.5308 34.15
- 14 113.45 703 7 1 -39.376 22.596 5.55
- 14 111.517 1012 7 0 -39.3792 22.5983 4.15
- 14 127.483 703 6 1 -39.4353 22.6398 -24.45
- 14 155.546 1012 6 0 -39.4403 22.6425 -25.85
- 14 146.49 702 5 1 -39.5376 22.6922 -54.45
- 14 116.441 1013 5 0 -39.5423 22.6959 -55.85
- 14 63.4433 132 1 1 -153.709 162.019 -174.45
- 14 89.4865 131 1 1 -153.75 162.06 -174.464
- 14 49.3988 130 1 1 -154.046 162.224 -174.45
- 14 96.2621 129 1 1 -154.15 162.144 -174.526
- 14 68.0434 128 1 1 -154.351 162.018 -174.692
- 14 123.745 1710 1 0 -155.653 162.23 -175.85
- 14 78.986 1711 1 0 -156.085 162.35 -176.048
- 14 126.973 1712 1 0 -156.289 162.55 -176.091
- 14 62.2101 1713 1 0 -156.355 162.75 -176.194
- 14 27.2314 1714 1 0 -156.412 162.95 -176.24
- 14 65.9714 659 5 0 -20.301 -48.2293 -56.25
- 14 776.509 658 5 0 -20.2954 -48.25 -56.2419
- 14 740.946 657 5 0 -20.2406 -48.45 -56.1629
- 14 824.988 656 5 0 -20.1872 -48.65 -56.0852
- 14 753.51 655 5 0 -20.1325 -48.85 -56.0001
- 14 609.559 654 5 0 -20.0759 -49.05 -55.9134
- 14 2087.25 803 5 1 -19.3964 -51.452 -54.85
- 14 1685.53 804 5 1 -19.25 -51.9681 -54.6211
- 14 164.66 1054 5 0 -30.7007 30.912 -56.25
- 14 3.55889 748 5 1 -30.2533 31.3233 -54.85
- 14 150.639 749 5 1 -30.25 31.3263 -54.8397
- 14 184.38 1103 6 0 -21.7665 40.6896 -26.25
- 14 154.369 793 6 1 -21.3549 41.1592 -24.85
- 14 13.6617 794 6 1 -21.25 41.2801 -24.4923
- 14 95.3925 1150 7 0 -12.5929 50.1712 3.75
- 14 51.003 1151 7 0 -12.5161 50.25 4.00034
- 14 132.326 839 7 1 -12.1617 50.6183 5.15
- 14 10.6629 840 7 1 -12.05 50.7346 5.51225
- 14 74.6164 1197 8 0 -3.22166 59.602 33.75
- 14 100.263 1198 8 0 -3.17387 59.65 33.9029
- 14 214.225 886 8 1 -2.77276 60.0394 35.15
- 14 5.52411 887 8 1 -2.65 60.1584 35.5317
- 14 101.011 1242 9 0 5.19816 68.572 63.75
- 14 55.8997 1243 9 0 5.27085 68.65 64.0116
- 14 76.8087 927 9 1 5.5904 68.9928 65.15
- 14 118.77 928 9 1 5.65 69.0567 65.3622
- 14 240.872 1294 10 0 13.1848 78.8965 93.75
- 14 130.045 967 10 1 13.5614 79.3846 95.15
- 14 58.3196 968 10 1 13.65 79.4989 95.4775
- 14 161.253 1347 11 0 20.6815 89.4804 123.75
- 14 60.5996 1005 11 1 21.0612 89.9853 125.15
- 14 58.4547 1404 12 0 28.4015 101.097 153.75
- 14 93.5331 1405 12 0 28.4366 101.15 153.887
- 14 194.838 1043 12 1 28.7536 101.636 155.15
- 14 13.028 1044 12 1 28.85 101.785 155.535
- 14 205.201 1458 13 0 35.7605 111.773 183.75
- 14 196.934 1080 13 1 36.1127 112.276 185.15
- 14 151.789 1508 14 0 42.318 121.824 213.75
- 14 28.9478 1509 14 0 42.3995 121.95 214.127
- 14 28.2778 1112 14 1 42.6332 122.284 215.15
- 14 121.21 1113 14 1 42.65 122.308 215.224
- 14 46.967 924 9 1 4.96646 70.7285 65.15
- 14 74.6568 1265 9 0 3.8035 73.0953 64.1499
- 14 132.839 1266 9 0 3.80953 73.2503 64.049
- 14 156.327 918 9 1 3.831 73.3639 65.15
- 14 167.951 1127 8 0 4.0062 45.5886 33.75
- 14 150.371 927 8 1 5.46694 44.7683 35.15
- 14 126.48 928 8 1 5.65 44.4523 35.4676
- 14 111.966 929 8 1 5.85 44.205 35.5433
- 14 197.711 930 8 1 6.05 44.0044 35.4878
- 14 315.089 931 8 1 6.25003 43.8648 35.5257
- 14 119.636 701 4 1 -39.6799 22.875 -84.45
- 14 53.9819 1016 4 0 -39.9154 23.3853 -85.85
- 14 58.6629 1017 4 0 -39.9453 23.45 -86.0276
- 14 166.117 676 3 1 -44.738 33.8426 -114.45
- 14 77.2006 1071 3 0 -44.9705 34.3563 -115.85
- 14 46.9582 1072 3 0 -45.0129 34.45 -116.105
- 14 114.39 651 2 1 -49.7412 44.8801 -144.45
- 14 24.7775 1126 2 0 -49.9973 45.4066 -145.85
- 14 81.7664 1127 2 0 -50.0184 45.45 -145.965
- 14 101.89 623 1 1 -55.2918 56.1921 -174.45
- 14 106.364 1183 1 0 -55.5437 56.7039 -175.85
- 14 0.0123551 1184 1 0 -55.6155 56.85 -176.25
- 14 189.577 596 0 1 -60.697 67.1762 -204.45
- 14 129.213 1238 0 0 -60.9465 67.6929 -205.85
- 14 133.533 1012 10 0 -39.009 22.4504 93.9238
-Number of digits in this event = 44
-Using G4ParticleGun ...
-2.61557 LIN
+Number of tracker hits in this event = 22
+ 14 127.123 1258 9 1 71.6939 -95.8135 65.55
+ 14 183.277 421 9 0 71.6931 -95.8171 64.15
+ 14 163.388 1258 8 1 71.6577 -95.9056 35.55
+ 14 134.067 421 8 0 71.6556 -95.9093 34.15
+ 14 117.243 1257 7 1 71.6242 -95.9699 5.55
+ 14 115.613 420 7 0 71.6214 -95.9689 4.15
+ 14 133.517 1256 6 1 71.323 -95.8282 -24.45
+ 14 175.248 421 6 0 71.3052 -95.8224 -25.85
+ 14 164.199 1254 5 1 70.946 -95.7123 -54.45
+ 14 167.292 422 5 0 70.9296 -95.7113 -55.85
+ 14 175.925 1252 4 1 70.5653 -95.7188 -84.45
+ 14 106.424 422 4 0 70.5436 -95.7214 -85.85
+ 14 143.368 1250 3 1 70.1014 -95.7904 -114.45
+ 14 137.984 421 3 0 70.0844 -95.7946 -115.85
+ 14 126.557 1248 2 1 69.7264 -95.859 -144.45
+ 14 121.689 421 2 0 69.7102 -95.8665 -145.85
+ 14 126.237 1246 1 1 69.3939 -96.0379 -174.45
+ 14 166.391 420 1 0 69.3746 -96.0395 -175.85
+ 14 241.412 1244 0 1 68.9838 -96.0854 -204.45
+ 14 191.044 420 0 0 68.9631 -96.0891 -205.85
+ 14 178.937 1245 0 1 69.05 -96.0892 -204.523
+ 14 179.884 422 9 0 71.6277 -95.75 63.8578
+Number of digits in this event = 20
+Using G4ParticleGun ...
+7.10722 LIN
proton
Event: 15
-Number of tracker hits in this event = 36
- 15 111.216 365 10 1 -107.129 15.4489 95.55
- 15 87.3139 976 10 0 -107.128 15.4492 94.15
- 15 118.248 365 9 1 -107.096 15.4539 65.55
- 15 105.468 977 9 0 -107.092 15.457 64.15
- 15 151.416 365 8 1 -107.024 15.5227 35.55
- 15 246.396 977 8 0 -107.022 15.5283 34.15
- 15 108.758 365 7 1 -106.981 15.644 5.55
- 15 125.814 978 7 0 -106.977 15.6506 4.15
- 15 100.66 366 6 1 -106.897 15.793 -24.45
- 15 270.789 978 6 0 -106.893 15.7993 -25.85
- 15 105.164 366 5 1 -106.822 15.932 -54.45
- 15 117.825 979 5 0 -106.817 15.9403 -55.85
- 15 204.503 367 4 1 -106.724 16.1029 -84.45
- 15 112.458 980 4 0 -106.719 16.1122 -85.85
- 15 181.285 367 3 1 -106.617 16.2988 -114.45
- 15 111.426 981 3 0 -106.609 16.3083 -115.85
- 15 120.666 368 2 1 -106.453 16.5044 -144.45
- 15 102.163 982 2 0 -106.443 16.5174 -145.85
- 15 105.224 369 1 1 -106.225 16.7777 -174.45
- 15 123.207 983 1 0 -106.216 16.7903 -175.85
- 15 101.246 370 0 1 -106.037 17.0473 -204.45
- 15 100.701 985 0 0 -106.031 17.0578 -205.85
- 15 350.515 896 6 1 -0.681607 -59.9675 -24.7251
- 15 23.3479 366 4 1 -106.75 16.2064 -84.7492
- 15 86.2328 981 4 0 -106.958 16.3806 -85.8507
- 15 21.6351 982 4 0 -107.026 16.45 -86.1903
- 15 116.282 336 3 1 -112.841 19.5195 -114.45
- 15 62.7532 337 3 1 -112.75 19.3282 -114.711
- 15 51.1277 987 3 0 -111.66 17.5672 -115.85
- 15 154.984 986 3 0 -111.594 17.4499 -115.908
- 15 67.9848 985 3 0 -111.557 17.25 -116.038
- 15 33.087 984 3 0 -111.526 17.0496 -116.195
- 15 23.2316 979 6 0 -106.469 15.85 -26.2056
- 15 85.8751 1154 6 0 -87.609 50.9869 -26.25
- 15 280.016 1153 6 0 -87.5555 50.8496 -26.061
- 15 66.9085 1152 6 0 -87.3554 50.65 -26.0846
-Number of digits in this event = 13
+Number of tracker hits in this event = 19
+ 15 130.536 1489 8 1 118.083 80.9329 35.55
+ 15 203.314 1304 8 0 118.083 80.9328 34.15
+ 15 130.659 1489 7 1 118.074 80.9277 5.55
+ 15 124.96 1304 7 0 118.074 80.9284 4.15
+ 15 199.021 1489 6 1 118.075 80.9434 -24.45
+ 15 231.556 1304 6 0 118.076 80.9437 -25.85
+ 15 100.83 1489 5 1 118.096 80.9523 -54.45
+ 15 103.676 1304 5 0 118.095 80.9528 -55.85
+ 15 87.5506 1489 4 1 118.083 80.9596 -84.45
+ 15 136.297 1304 4 0 118.083 80.9598 -85.85
+ 15 101.048 1489 3 1 118.084 80.9691 -114.45
+ 15 107.114 1304 3 0 118.083 80.9707 -115.85
+ 15 107.172 1489 2 1 118.076 80.9935 -144.45
+ 15 128.435 1304 2 0 118.075 80.9956 -145.85
+ 15 87.9156 1489 1 1 118.053 81.0383 -174.45
+ 15 111.526 1304 1 0 118.051 81.0404 -175.85
+ 15 114.138 1489 0 1 118.018 81.0815 -204.45
+ 15 128.544 1305 0 0 118.017 81.0843 -205.85
+ 15 242.236 1743 2 0 166.64 168.761 -146.25
+Number of digits in this event = 11
Using G4ParticleGun ...
-7.5171 LIN
+6.74328 LIN
proton
Event: 16
-Number of tracker hits in this event = 28
- 16 134.024 1469 10 1 114.087 12.3327 95.55
- 16 186.485 961 10 0 114.087 12.3316 94.15
- 16 133.723 1469 9 1 114.083 12.3109 65.55
- 16 99.7756 961 9 0 114.086 12.3122 64.15
- 16 120.161 1469 8 1 114.14 12.3386 35.55
- 16 175.042 961 8 0 114.142 12.3397 34.15
- 16 103.241 1470 7 1 114.191 12.3591 5.55
- 16 104.923 961 7 0 114.193 12.3597 4.15
- 16 139.074 1470 6 1 114.225 12.3795 -24.45
- 16 88.15 961 6 0 114.227 12.3814 -25.85
- 16 113.86 1470 5 1 114.254 12.4236 -54.45
- 16 116.797 961 5 0 114.256 12.425 -55.85
- 16 95.4785 1470 4 1 114.289 12.4547 -84.45
- 16 262.567 962 4 0 114.289 12.4554 -85.85
- 16 386.408 1470 3 1 114.308 12.4588 -114.45
- 16 112.379 962 3 0 114.308 12.4599 -115.85
- 16 107.107 1470 2 1 114.317 12.4826 -144.45
- 16 120.744 962 2 0 114.317 12.4844 -145.85
- 16 120.54 1470 1 1 114.316 12.5179 -174.45
- 16 124.47 962 1 0 114.316 12.5191 -175.85
- 16 100.697 1470 0 1 114.314 12.5457 -204.45
- 16 192.146 962 0 0 114.314 12.547 -205.85
- 16 172.068 947 0 0 99.1065 9.54639 -206.249
- 16 585.918 1392 0 1 98.668 9.0517 -204.85
- 16 155.428 1393 0 1 98.75 8.24506 -204.719
- 16 116.471 1394 0 1 98.95 8.273 -204.662
- 16 185.831 1469 3 1 114.15 12.292 -114.51
- 16 29.7378 961 4 0 114.274 12.4499 -86.0579
-Number of digits in this event = 17
+Number of tracker hits in this event = 18
+ 16 130.473 227 8 1 -134.647 -37.2758 35.55
+ 16 266.574 713 8 0 -134.647 -37.2747 34.15
+ 16 96.3734 227 7 1 -134.637 -37.2539 5.55
+ 16 221.264 713 7 0 -134.637 -37.2527 4.15
+ 16 109.04 227 6 1 -134.634 -37.2265 -24.45
+ 16 113.999 714 6 0 -134.633 -37.2255 -25.85
+ 16 110.812 227 5 1 -134.618 -37.2031 -54.45
+ 16 212.269 714 5 0 -134.617 -37.2018 -55.85
+ 16 109.83 227 4 1 -134.587 -37.1819 -84.45
+ 16 103.701 714 4 0 -134.584 -37.1801 -85.85
+ 16 105.85 228 3 1 -134.527 -37.1411 -114.45
+ 16 89.6294 714 3 0 -134.523 -37.1388 -115.85
+ 16 104.012 228 2 1 -134.443 -37.0878 -144.45
+ 16 105.872 714 2 0 -134.438 -37.0851 -145.85
+ 16 114.438 229 1 1 -134.33 -37.0358 -174.45
+ 16 101.971 715 1 0 -134.325 -37.0335 -175.85
+ 16 106.429 229 0 1 -134.225 -36.9895 -204.45
+ 16 131.863 715 0 0 -134.219 -36.9879 -205.85
+Number of digits in this event = 6
Using G4ParticleGun ...
-9.64157 LIN
+2.34994 LIN
proton
Event: 17
-Number of tracker hits in this event = 24
- 17 85.2941 1150 11 1 50.1928 18.4369 125.55
- 17 130.77 991 11 0 50.1934 18.4377 124.15
- 17 127.602 1150 10 1 50.2055 18.4529 95.55
- 17 196.038 992 10 0 50.2057 18.4533 94.15
- 17 127.096 1150 9 1 50.2116 18.462 65.55
- 17 102.496 992 9 0 50.2115 18.4627 64.15
- 17 114.916 1150 8 1 50.2092 18.483 35.55
- 17 110.814 992 8 0 50.2091 18.4841 34.15
- 17 163.868 1150 7 1 50.2033 18.5067 5.55
- 17 96.9121 992 7 0 50.2024 18.5075 4.15
- 17 105.821 1150 6 1 50.1811 18.5214 -24.45
- 17 102.061 992 6 0 50.1797 18.5221 -25.85
- 17 136.277 1150 5 1 50.1523 18.5402 -54.45
- 17 109.813 992 5 0 50.1514 18.5409 -55.85
- 17 123.614 1150 4 1 50.1324 18.5567 -84.45
- 17 97.1568 992 4 0 50.1312 18.5568 -85.85
- 17 108.75 1150 3 1 50.1057 18.5575 -114.45
- 17 128.283 992 3 0 50.1044 18.5578 -115.85
- 17 129.569 1150 2 1 50.0783 18.5638 -144.45
- 17 180.583 992 2 0 50.0774 18.5628 -145.85
- 17 124.28 1150 1 1 50.0574 18.5426 -174.45
- 17 103.671 992 1 0 50.056 18.5413 -175.85
- 17 167.553 1149 0 1 50.0265 18.5109 -204.45
- 17 111.946 992 0 0 50.0249 18.509 -205.85
-Number of digits in this event = 13
+Number of tracker hits in this event = 20
+ 17 108.631 1537 9 1 127.704 17.6126 65.55
+ 17 140.192 987 9 0 127.705 17.6122 64.15
+ 17 182.25 1537 8 1 127.75 17.6051 35.55
+ 17 109.671 987 8 0 127.751 17.6052 34.15
+ 17 135.63 1538 7 1 127.777 17.6051 5.55
+ 17 156.359 987 7 0 127.778 17.6026 4.15
+ 17 155.195 1538 6 1 127.804 17.5337 -24.45
+ 17 136.29 987 6 0 127.803 17.5313 -25.85
+ 17 154.82 1538 5 1 127.806 17.484 -54.45
+ 17 99.9852 987 5 0 127.805 17.4811 -55.85
+ 17 106.074 1538 4 1 127.796 17.4306 -84.45
+ 17 118.671 986 4 0 127.799 17.4257 -85.85
+ 17 124.147 1538 3 1 127.859 17.3199 -114.45
+ 17 126.41 986 3 0 127.86 17.3146 -115.85
+ 17 171.318 1538 2 1 127.866 17.2107 -144.45
+ 17 119.979 985 2 0 127.869 17.2054 -145.85
+ 17 101.69 1538 1 1 127.924 17.1006 -174.45
+ 17 105.931 985 1 0 127.929 17.0948 -175.85
+ 17 105.232 1539 0 1 128.022 16.9684 -204.45
+ 17 106.486 984 0 0 128.027 16.9613 -205.85
+Number of digits in this event = 11
Using G4ParticleGun ...
-6.41777 LIN
+1.90236 LIN
proton
Event: 18
-Number of tracker hits in this event = 20
- 18 103.422 1142 8 1 48.6492 -135.966 35.55
- 18 206.478 220 8 0 48.6496 -135.964 34.15
- 18 157.78 1143 7 1 48.6572 -135.931 5.55
- 18 117.971 221 7 0 48.6578 -135.93 4.15
- 18 112.701 1143 6 1 48.6711 -135.904 -24.45
- 18 165.709 221 6 0 48.6718 -135.902 -25.85
- 18 113.372 1143 5 1 48.6842 -135.867 -54.45
- 18 121.616 221 5 0 48.6848 -135.865 -55.85
- 18 110.052 1143 4 1 48.6967 -135.815 -84.45
- 18 128.552 221 4 0 48.6977 -135.812 -85.85
- 18 174.595 1143 3 1 48.7228 -135.737 -114.45
- 18 76.8093 222 3 0 48.7257 -135.734 -115.85
- 18 139.977 1143 2 1 48.7882 -135.655 -144.45
- 18 103.189 222 2 0 48.7913 -135.651 -145.85
- 18 149.145 1144 1 1 48.8515 -135.557 -174.45
- 18 101.849 222 1 0 48.8536 -135.553 -175.85
- 18 110.859 1144 0 1 48.8933 -135.469 -204.45
- 18 195.256 223 0 0 48.8942 -135.464 -205.85
- 18 156.453 226 7 0 48.3579 -134.887 4.15
- 18 119.892 225 7 0 48.4694 -134.95 3.96389
-Number of digits in this event = 11
+Number of tracker hits in this event = 26
+ 18 228.594 1475 8 1 115.171 80.7465 35.55
+ 18 263.194 1303 8 0 115.173 80.7461 34.15
+ 18 117.628 1475 7 1 115.206 80.7373 5.55
+ 18 158.581 1303 7 0 115.209 80.7377 4.15
+ 18 100.08 1475 6 1 115.273 80.7592 -24.45
+ 18 108.777 1303 6 0 115.273 80.7587 -25.85
+ 18 225.133 1475 5 1 115.284 80.7563 -54.45
+ 18 163.33 1303 5 0 115.283 80.7556 -55.85
+ 18 135.423 1475 4 1 115.282 80.7449 -84.45
+ 18 130.606 1303 4 0 115.281 80.7455 -85.85
+ 18 375.591 1475 3 1 115.271 80.7702 -114.45
+ 18 119.821 1303 3 0 115.271 80.7701 -115.85
+ 18 94.8692 1475 2 1 115.281 80.7726 -144.45
+ 18 115.038 1303 2 0 115.28 80.7675 -145.85
+ 18 159.244 1475 1 1 115.282 80.6585 -174.45
+ 18 134.945 1303 1 0 115.285 80.6539 -175.85
+ 18 135.014 1475 0 1 115.344 80.5665 -204.45
+ 18 107.557 1302 0 0 115.345 80.5629 -205.85
+ 18 15.2396 1307 3 0 114.955 81.605 -115.85
+ 18 63.3289 1308 3 0 114.942 81.65 -115.906
+ 18 151.817 1309 3 0 114.945 81.85 -116
+ 18 174.899 1310 3 0 114.988 82.05 -116.019
+ 18 292.962 1311 3 0 114.905 82.25 -115.97
+ 18 136.406 1468 3 1 113.788 82.8371 -114.85
+ 18 296.823 1467 3 1 113.75 82.8808 -114.786
+ 18 127.203 1466 3 1 113.55 83.1689 -114.56
+Number of digits in this event = 18
Using G4ParticleGun ...
-2.34711 LIN
+4.63721 LIN
proton
Event: 19
-Number of tracker hits in this event = 20
- 19 163.314 1223 8 1 64.838 -125.627 35.55
- 19 158.442 272 8 0 64.8424 -125.624 34.15
- 19 150.608 1224 7 1 64.9282 -125.549 5.55
- 19 97.5131 273 7 0 64.9279 -125.545 4.15
- 19 122.467 1224 6 1 64.9329 -125.457 -24.45
- 19 107.362 273 6 0 64.9333 -125.454 -25.85
- 19 111.863 1224 5 1 64.9376 -125.386 -54.45
- 19 138.478 273 5 0 64.9406 -125.382 -55.85
- 19 120.619 1224 4 1 64.9993 -125.293 -84.45
- 19 112.692 274 4 0 64.999 -125.293 -85.85
- 19 141.267 1224 3 1 64.9974 -125.285 -114.45
- 19 107.498 274 3 0 64.9927 -125.286 -115.85
- 19 103.871 1224 2 1 64.8876 -125.306 -144.45
- 19 104.786 274 2 0 64.8817 -125.308 -145.85
- 19 160.433 1223 1 1 64.7623 -125.358 -174.45
- 19 110.754 273 1 0 64.7545 -125.354 -175.85
- 19 149.74 1222 0 1 64.6073 -125.249 -204.45
- 19 151.568 274 0 0 64.6024 -125.242 -205.85
- 19 256.24 274 1 0 64.7532 -125.35 -176.07
- 19 151.58 269 6 0 64.5691 -126.207 -25.85
-Number of digits in this event = 15
+Number of tracker hits in this event = 23
+ 19 103.812 1570 8 1 134.287 -37.7538 35.55
+ 19 114.648 711 8 0 134.287 -37.7532 34.15
+ 19 114.314 1570 7 1 134.288 -37.7397 5.55
+ 19 114.596 711 7 0 134.288 -37.7389 4.15
+ 19 117.195 1570 6 1 134.299 -37.7268 -24.45
+ 19 119.921 711 6 0 134.299 -37.7252 -25.85
+ 19 123.606 1570 5 1 134.28 -37.6922 -54.45
+ 19 107.196 711 5 0 134.279 -37.6896 -55.85
+ 19 121.429 1570 4 1 134.247 -37.6443 -84.45
+ 19 91.4659 712 4 0 134.245 -37.6404 -85.85
+ 19 142.639 1570 3 1 134.19 -37.5548 -114.45
+ 19 144.415 712 3 0 134.188 -37.5512 -115.85
+ 19 104.446 1569 2 1 134.139 -37.4798 -144.45
+ 19 109.256 712 2 0 134.136 -37.4767 -145.85
+ 19 113.173 1569 1 1 134.073 -37.4155 -174.45
+ 19 94.076 713 1 0 134.068 -37.4123 -175.85
+ 19 97.8782 1569 0 1 133.969 -37.3314 -204.45
+ 19 125.385 713 0 0 133.962 -37.3275 -205.85
+ 19 342.908 1643 3 0 124.09 148.862 -116.25
+ 19 17.2834 1570 2 1 134.15 -37.496 -144.837
+ 19 156.1 705 2 0 134.177 -38.9137 -145.85
+ 19 374.58 704 2 0 134.185 -39.05 -145.983
+ 19 482.112 712 5 0 134.283 -37.6496 -56.0113
+Number of digits in this event = 13
Using G4ParticleGun ...
-5.1426 LIN
+5.70544 LIN
proton
Event: 20
-Number of tracker hits in this event = 30
- 20 135.103 1080 11 1 36.0999 57.0155 125.55
- 20 83.2358 1184 11 0 36.1014 57.0145 124.15
- 20 126.768 1080 10 1 36.1327 56.9909 95.55
- 20 109.322 1184 10 0 36.1343 56.9906 94.15
- 20 102.547 1080 9 1 36.1644 56.9869 65.55
- 20 101.871 1184 9 0 36.1664 56.9871 64.15
- 20 97.9154 1080 8 1 36.2085 56.9922 35.55
- 20 92.9023 1184 8 0 36.2117 56.9928 34.15
- 20 108.355 1081 7 1 36.2779 57.0109 5.55
- 20 137.617 1184 7 0 36.2808 57.0096 4.15
- 20 143.142 1081 6 1 36.3321 56.9875 -24.45
- 20 118.857 1184 6 0 36.3338 56.985 -25.85
- 20 109.713 1081 5 1 36.3697 56.9307 -54.45
- 20 125.079 1184 5 0 36.3698 56.927 -55.85
- 20 154.968 1081 4 1 36.3694 56.8497 -84.45
- 20 88.6484 1183 4 0 36.3696 56.8474 -85.85
- 20 176.433 1081 3 1 36.3808 56.7978 -114.45
- 20 166.53 1183 3 0 36.3822 56.7958 -115.85
- 20 135.367 1081 2 1 36.4097 56.7591 -144.45
- 20 112.984 1183 2 0 36.4096 56.7586 -145.85
- 20 84.2695 1081 1 1 36.4119 56.7475 -174.45
- 20 117.819 1183 1 0 36.413 56.7456 -175.85
- 20 112.913 1081 0 1 36.4353 56.71 -204.45
- 20 109.84 1183 0 0 36.4366 56.7081 -205.85
- 20 23.3814 1274 0 0 35.1457 74.9969 -206.25
- 20 181.522 1275 0 0 35.1335 75.05 -206.196
- 20 214.581 1057 0 1 31.6131 73.948 -204.85
- 20 63.4031 1184 3 0 36.4628 56.85 -115.922
- 20 165.769 1086 3 1 37.2752 57.0671 -114.85
- 20 53.468 1085 3 1 37.25 57.047 -114.735
-Number of digits in this event = 13
+Number of tracker hits in this event = 37
+ 20 116.017 744 11 1 -31.1197 58.6012 125.55
+ 20 105.35 1192 11 0 -31.12 58.6014 124.15
+ 20 104.229 744 10 1 -31.1244 58.6042 95.55
+ 20 92.0928 1192 10 0 -31.1248 58.6049 94.15
+ 20 111.501 744 9 1 -31.131 58.6222 65.55
+ 20 152.138 1192 9 0 -31.1307 58.622 64.15
+ 20 146.417 744 8 1 -31.1315 58.6158 35.55
+ 20 157.659 1192 8 0 -31.1313 58.6158 34.15
+ 20 103.257 744 7 1 -31.1334 58.6171 5.55
+ 20 102.894 1192 7 0 -31.1327 58.6165 4.15
+ 20 124.316 744 6 1 -31.1159 58.6019 -24.45
+ 20 107.394 1192 6 0 -31.1167 58.6011 -25.85
+ 20 133.812 744 5 1 -31.1413 58.5813 -54.45
+ 20 100.388 1192 5 0 -31.1428 58.5816 -55.85
+ 20 174.76 744 4 1 -31.177 58.5911 -84.45
+ 20 122.164 1192 4 0 -31.1795 58.5907 -85.85
+ 20 114.515 744 3 1 -31.2305 58.5838 -114.45
+ 20 108.578 1192 3 0 -31.2323 58.585 -115.85
+ 20 140.087 743 2 1 -31.2711 58.6124 -144.45
+ 20 180.548 1192 2 0 -31.2726 58.6141 -145.85
+ 20 109.487 743 1 1 -31.3099 58.6465 -174.45
+ 20 102.802 1192 1 0 -31.3116 58.6467 -175.85
+ 20 121.302 743 0 1 -31.3476 58.6576 -204.45
+ 20 118.374 1193 0 0 -31.348 58.6586 -205.85
+ 20 42.5037 1692 7 0 -125.857 158.597 3.75
+ 20 11.4426 1693 7 0 -126.092 158.75 4.12352
+ 20 25.6351 270 7 1 -126.02 158.224 5.15
+ 20 93.0919 1690 7 0 -126.059 158.312 4.15
+ 20 179.098 1509 2 0 23.9349 122.004 -146.25
+ 20 81.7224 1508 2 0 24.2276 121.95 -145.887
+ 20 42.6949 1507 2 0 24.0909 121.75 -145.867
+ 20 69.1289 1010 2 1 22.1808 120.141 -144.85
+ 20 117.138 1009 2 1 22.05 120.019 -144.763
+ 20 112.132 1008 2 1 21.85 119.9 -144.72
+ 20 90.6986 1007 2 1 21.65 119.76 -144.583
+ 20 207.843 1006 2 1 21.45 119.679 -144.499
+ 20 147.542 1005 2 1 21.25 119.442 -144.649
+Number of digits in this event = 15
Using G4ParticleGun ...
-7.05865 LIN
+5.36875 LIN
proton
Event: 21
-Number of tracker hits in this event = 174
- 21 484.501 1290 11 1 78.2371 4.42089 125.55
- 21 21.004 928 11 0 77.7023 5.8228 124.15
- 21 191.493 929 11 0 77.6918 5.85 124.123
- 21 182.768 930 11 0 77.615 6.05 123.923
- 21 150.365 1233 10 1 66.6991 34.6094 95.55
- 21 285.528 1232 10 1 66.65 34.739 95.4221
- 21 27.046 1079 10 0 66.1548 36.029 94.15
- 21 185.684 1080 10 0 66.1467 36.05 94.1293
- 21 177.504 1081 10 0 66.0698 36.25 93.9322
- 21 415.536 1174 9 1 55.0293 64.8309 65.55
- 21 174.364 1231 9 0 54.4624 66.2667 64.15
- 21 268.315 1232 9 0 54.3901 66.45 63.9711
- 21 90.4231 1233 9 0 54.3111 66.65 63.7755
- 21 192.955 1114 8 1 42.9216 95.5876 35.55
- 21 186.153 1113 8 1 42.85 95.7913 35.3556
- 21 76.0231 1384 8 0 42.4033 97.0597 34.15
- 21 212.124 1385 8 0 42.3715 97.15 34.0642
- 21 129.795 1386 8 0 42.3008 97.35 33.8738
- 21 199.213 1059 7 1 31.9233 126.799 5.55
- 21 197.994 1058 7 1 31.85 127.023 5.33072
- 21 119.575 1540 7 0 31.4618 128.223 4.15
- 21 189.47 1541 7 0 31.4208 128.35 4.02508
- 21 87.3578 1542 7 0 31.3567 128.55 3.8285
- 21 403.108 1009 6 1 21.9929 157.313 -24.45
- 21 1.17769 1692 6 0 21.5503 158.748 -25.85
- 21 302.268 1693 6 0 21.5498 158.75 -25.8515
- 21 238.161 1694 6 0 21.4879 158.95 -26.0462
- 21 9.13765 1695 6 0 21.426 159.15 -26.2411
- 21 331.825 1291 11 1 78.2769 4.3507 125.55
- 21 200.637 922 11 0 78.3726 4.60707 124.15
- 21 54.835 923 11 0 78.3887 4.65 123.916
- 21 138.127 1301 10 1 80.3543 9.84658 95.55
- 21 258.338 950 10 0 80.4414 10.0957 94.15
- 21 168.567 1310 9 1 82.1655 15.1674 65.55
- 21 99.1053 976 9 0 82.2432 15.4098 64.15
- 21 50.357 977 9 0 82.256 15.45 63.9176
- 21 139.394 1318 8 1 83.8127 20.3385 35.55
- 21 179.412 1002 8 0 83.8909 20.5748 34.15
- 21 142.366 1327 7 1 85.4827 25.4093 5.55
- 21 170.464 1028 7 0 85.5591 25.65 4.15
- 21 157.18 1335 6 1 87.1313 30.6035 -24.45
- 21 25.4636 1053 6 0 87.2196 30.8376 -25.85
- 21 145.242 1054 6 0 87.2243 30.85 -25.9245
- 21 317.696 1345 5 1 89.0549 35.6255 -54.45
- 21 169.293 1079 5 0 89.1499 35.8603 -55.85
- 21 219.556 1354 4 1 91.1039 40.8568 -84.45
- 21 162.803 1105 4 0 91.1981 41.1016 -85.85
- 21 159.302 1364 3 1 93.1205 46.1119 -114.45
- 21 171.397 1131 3 0 93.2175 46.3613 -115.85
- 21 148.079 1375 2 1 95.1933 51.4608 -144.45
- 21 143.188 1158 2 0 95.2945 51.7141 -145.85
- 21 78.8373 1385 1 1 97.3377 56.8902 -174.45
- 21 96.5993 1386 1 1 97.35 56.9216 -174.623
- 21 156.94 1185 1 0 97.4377 57.1439 -175.85
- 21 248.175 1396 0 1 99.5006 62.3424 -204.45
- 21 185.241 1212 0 0 99.6123 62.5966 -205.85
- 21 304.037 1213 0 0 99.6358 62.65 -206.144
- 21 95.3523 1344 5 1 89.05 35.9397 -54.659
- 21 105.043 1078 5 0 88.4518 35.7019 -55.85
- 21 87.2896 1077 5 0 88.372 35.65 -56.1512
- 21 23.5567 1076 5 0 88.3194 35.45 -56.2169
- 21 125.769 920 11 0 78.1906 4.1151 124.15
- 21 142.855 1282 10 1 76.633 -0.0777803 95.55
- 21 124.146 898 10 0 76.5537 -0.281891 94.15
- 21 113.675 1274 9 1 74.9318 -4.44626 65.55
- 21 119.041 876 9 0 74.8524 -4.65122 64.15
- 21 118.759 1265 8 1 73.2283 -8.84508 35.55
- 21 0.578951 855 8 0 73.15 -9.04963 34.15
- 21 165.736 854 8 0 73.1498 -9.05 34.1475
- 21 128.722 1257 7 1 71.5441 -13.2185 5.55
- 21 44.8184 833 7 0 71.4664 -13.422 4.15
- 21 190.344 832 7 0 71.4557 -13.45 3.95742
- 21 137.598 1249 6 1 69.8979 -17.5877 -24.45
- 21 105.016 811 6 0 69.8225 -17.795 -25.85
- 21 46.7584 810 6 0 69.8024 -17.85 -26.222
- 21 105.099 1241 5 1 68.2735 -22.0315 -54.45
- 21 110.929 788 5 0 68.1974 -22.2577 -55.85
- 21 132.639 1232 4 1 66.629 -26.8722 -84.45
- 21 271.356 764 4 0 66.5532 -27.0999 -85.85
- 21 124.82 1224 3 1 65.0039 -31.7625 -114.45
- 21 114.51 740 3 0 64.9287 -31.9873 -115.85
- 21 2.05166 739 3 0 64.9079 -32.05 -116.24
- 21 127.191 1216 2 1 63.4051 -36.5732 -144.45
- 21 222.429 716 2 0 63.3313 -36.7973 -145.85
- 21 127.127 715 2 0 63.3139 -36.85 -146.179
- 21 138.651 1208 1 1 61.8062 -41.3794 -174.45
- 21 101.931 692 1 0 61.7293 -41.6036 -175.85
- 21 27.3879 691 1 0 61.7134 -41.65 -176.139
- 21 117.667 1200 0 1 60.158 -46.1833 -204.45
- 21 153.651 668 0 0 60.0807 -46.4097 -205.85
- 21 301.192 667 0 0 60.0669 -46.45 -206.099
- 21 355.396 1662 3 1 152.579 96.5498 -114.638
- 21 44.6398 1223 1 0 116.799 64.6786 -176.014
- 21 26.2399 645 0 1 -50.8926 136.653 -204.45
- 21 75.6722 646 0 1 -50.85 136.693 -204.51
- 21 289.141 647 0 1 -50.65 136.832 -204.578
- 21 300.551 648 0 1 -50.4499 136.977 -204.525
- 21 13.2793 1307 4 0 146.052 81.6096 -86.2338
- 21 473.356 1258 7 1 71.7506 36.554 5.55
- 21 195.429 1084 7 0 71.7186 36.9476 4.15
- 21 118.55 1085 7 0 71.7107 37.05 3.78343
- 21 137.392 1252 6 1 70.6017 44.7325 -24.45
- 21 87.992 1125 6 0 70.5395 45.0908 -25.85
- 21 129.6 1245 5 1 69.2181 52.4058 -54.45
- 21 116.193 1163 5 0 69.1436 52.7547 -55.85
- 21 6.11898 1164 5 0 69.124 52.85 -56.2323
- 21 190.686 1237 4 1 67.5828 59.77 -84.45
- 21 157.658 1200 4 0 67.4622 60.0969 -85.85
- 21 32.7881 1218 3 1 63.6992 66.8102 -114.45
- 21 91.4675 1217 3 1 63.65 66.8475 -114.578
- 21 79.074 1235 3 0 63.1759 67.1821 -115.85
- 21 35.869 1236 3 0 63.0775 67.25 -116.119
- 21 230.149 1161 2 1 52.4138 73.9374 -144.45
- 21 153.516 1271 2 0 52.3987 74.3283 -145.85
- 21 102.011 1158 1 1 51.7324 82.7993 -174.451
- 21 14.3053 1157 1 1 51.65 82.8263 -174.798
- 21 140.822 1314 1 0 51.412 82.9037 -175.85
- 21 54.886 1120 0 1 44.0793 86.1406 -204.45
- 21 303.252 1119 0 1 44.0498 86.1509 -204.619
- 21 92.4968 1330 0 0 43.882 86.1768 -205.851
- 21 32.4724 1160 2 1 52.2499 74.1588 -144.767
- 21 92.1668 1269 2 0 51.4818 73.9144 -145.85
- 21 80.1557 1268 2 0 51.2851 73.85 -146.092
- 21 110.968 1039 1 1 27.8974 72.0582 -174.45
- 21 18.6682 1040 1 1 28.05 72.152 -174.785
- 21 53.8514 1261 1 0 28.2973 72.3928 -175.85
- 21 78.584 1262 1 0 28.3341 72.45 -176.026
- 21 118.891 1242 6 1 68.5909 46.1589 -24.45
- 21 84.0383 1132 6 0 68.3203 46.5712 -25.85
- 21 55.1753 1133 6 0 68.2693 46.65 -26.119
- 21 111.977 1212 5 1 62.5142 55.0348 -54.45
- 21 6.338 1211 5 1 62.45 55.167 -54.8278
- 21 108.189 1177 5 0 62.2796 55.5343 -55.85
- 21 29.5134 1178 5 0 62.2273 55.65 -56.1693
- 21 164.676 1187 4 1 57.6444 66.0276 -84.45
- 21 138.831 1232 4 0 57.3669 66.5265 -85.85
- 21 22.864 1233 4 0 57.3019 66.65 -86.1932
- 21 386.371 1160 3 1 52.1732 76.8966 -114.45
- 21 20.5426 1286 3 0 52.0948 77.4279 -115.85
- 21 104.63 1287 3 0 52.0914 77.45 -115.908
- 21 144.638 1151 2 1 50.353 88.806 -144.45
- 21 104.911 1347 2 0 50.3959 89.5102 -145.85
- 21 39.6532 1348 2 0 50.4085 89.65 -146.126
- 21 131.496 1160 1 1 52.1315 104.158 -174.45
- 21 87.269 1423 1 0 52.3012 104.884 -175.85
- 21 98.3686 1424 1 0 52.3167 104.95 -175.973
- 21 100.076 1180 0 1 56.2052 120.668 -204.45
- 21 67.9522 1181 0 1 56.2501 120.784 -204.656
- 21 63.781 1506 0 0 56.4967 121.475 -205.85
- 21 112.241 1507 0 0 56.523 121.55 -205.978
- 21 23.838 1495 14 1 119.209 -142.607 215.55
- 21 87.3267 1494 14 1 119.15 -142.633 215.524
- 21 487.012 1493 14 1 118.95 -142.551 215.398
- 21 89.5319 1159 3 1 52.05 76.9272 -114.466
- 21 54.8837 1259 7 1 71.85 36.5865 5.40449
- 21 62.5937 1292 11 1 78.45 4.23071 125.536
- 21 69.0056 1293 11 1 78.65 4.11609 125.42
- 21 86.5174 1294 11 1 78.85 4.00126 125.305
- 21 22.1898 1295 11 1 79.05 3.88594 125.189
- 21 7.32235 914 11 0 80.8299 2.86003 124.15
- 21 123.205 913 11 0 80.8473 2.85 124.14
- 21 159.729 912 11 0 81.1945 2.65 123.937
- 21 62.0665 1550 10 1 130.159 -25.7169 95.55
- 21 70.8993 1551 10 1 130.35 -25.8314 95.4338
- 21 207.834 1552 10 1 130.55 -25.9512 95.3115
- 21 242.389 1553 10 1 130.75 -26.0716 95.1886
- 21 95.8887 764 10 0 132.433 -27.0827 94.15
- 21 200.401 763 10 0 132.712 -27.25 93.9781
- 21 87.7223 762 10 0 133.045 -27.45 93.7712
- 21 12.6378 1793 9 1 178.908 -54.6153 65.55
- 21 71.4608 1794 9 1 178.95 -54.6393 65.5245
- 21 92.9912 1795 9 1 179.15 -54.7545 65.4025
- 21 71.459 1796 9 1 179.35 -54.8695 65.2805
- 21 4.6304 1797 9 1 179.55 -54.9844 65.1589
-Number of digits in this event = 86
-Using G4ParticleGun ...
-1.15043 LIN
+Number of tracker hits in this event = 22
+ 21 145.86 937 10 1 7.55625 109.141 95.55
+ 21 114.439 1444 10 0 7.55636 109.141 94.15
+ 21 92.6377 937 9 1 7.5629 109.132 65.55
+ 21 224.942 1444 9 0 7.56341 109.131 64.15
+ 21 146.132 937 8 1 7.5712 109.102 35.55
+ 21 88.236 1444 8 0 7.57153 109.102 34.15
+ 21 200.883 937 7 1 7.57678 109.097 5.55
+ 21 127.484 1444 7 0 7.57624 109.097 4.15
+ 21 124.435 937 6 1 7.5555 109.105 -24.45
+ 21 98.9334 1444 6 0 7.55391 109.107 -25.85
+ 21 94.6566 937 5 1 7.5168 109.127 -54.45
+ 21 108.13 1444 5 0 7.51598 109.129 -55.85
+ 21 103.198 937 4 1 7.49719 109.173 -84.45
+ 21 107.165 1445 4 0 7.49606 109.176 -85.85
+ 21 105.463 937 3 1 7.47065 109.229 -114.45
+ 21 149.819 1445 3 0 7.46976 109.231 -115.85
+ 21 129.948 936 2 1 7.44899 109.259 -144.45
+ 21 112.146 1445 2 0 7.44805 109.262 -145.85
+ 21 158.161 936 1 1 7.42966 109.314 -174.45
+ 21 206.135 1445 1 0 7.42877 109.316 -175.85
+ 21 105.566 936 0 1 7.41205 109.358 -204.45
+ 21 137.707 1446 0 0 7.4122 109.36 -205.85
+Number of digits in this event = 12
+Using G4ParticleGun ...
+2.39566 LIN
proton
Event: 22
-Number of tracker hits in this event = 41
- 22 181.138 650 11 1 -49.9193 31.1554 125.55
- 22 117.555 1055 11 0 -49.9168 31.1594 124.15
- 22 123.851 650 10 1 -49.8715 31.2457 95.55
- 22 127.813 1055 10 0 -49.8662 31.2457 94.15
- 22 133.41 651 9 1 -49.7581 31.2499 65.55
- 22 230.638 1055 9 0 -49.7521 31.2414 64.15
- 22 120.471 652 8 1 -49.6241 31.0536 35.55
- 22 133.496 1054 8 0 -49.6178 31.0491 34.15
- 22 130.43 652 7 1 -49.5162 30.958 5.55
- 22 123.952 1054 7 0 -49.5128 30.9573 4.15
- 22 121.866 653 6 1 -49.4473 30.9555 -24.45
- 22 145.978 1054 6 0 -49.4487 30.9543 -25.85
- 22 124.33 652 5 1 -49.5007 30.9265 -54.45
- 22 114.001 1054 5 0 -49.5016 30.9288 -55.85
- 22 133.208 652 4 1 -49.4918 30.9594 -84.45
- 22 108.82 1054 4 0 -49.4884 30.9617 -85.85
- 22 120.233 653 3 1 -49.4074 30.9897 -114.45
- 22 183.208 1054 3 0 -49.4086 30.9899 -115.85
- 22 130.143 653 2 1 -49.4336 30.9907 -144.45
- 22 375.937 1054 2 0 -49.4319 30.9916 -145.85
- 22 121.256 653 1 1 -49.4262 31.0209 -174.45
- 22 138.198 1054 1 0 -49.426 31.0179 -175.85
- 22 132.889 653 0 1 -49.3963 30.9634 -204.45
- 22 200.539 1054 0 0 -49.3996 30.9582 -205.85
- 22 53.1831 1269 1 0 -121.828 73.85 -176.143
- 22 117.384 1084 0 0 -69.0551 36.9945 -206.25
- 22 29.6913 555 0 1 -69.0494 37.0914 -204.85
- 22 88.4213 554 0 1 -69.05 37.0986 -204.717
- 22 10.015 804 1 0 -72.987 -19.25 -175.944
- 22 35.564 1413 6 0 -65.8993 102.9 -26.2498
- 22 132.802 1414 6 0 -65.8275 102.95 -26.1984
- 22 190.022 1415 6 0 -65.6075 103.15 -26.0509
- 22 18.8314 903 8 0 -55.1064 0.8402 33.75
- 22 117.524 904 8 0 -55.0941 0.85 33.8176
- 22 161.723 626 8 1 -54.7953 1.16302 35.15
- 22 119.574 627 8 1 -54.6496 1.36846 35.4438
- 22 10.1123 910 8 0 -54.0489 2.22447 34.1498
- 22 348.116 911 8 0 -54.0484 2.25 34.1178
- 22 106.929 912 8 0 -54.3962 2.45 34.0008
- 22 148.452 1134 2 0 -85.255 46.85 -146.139
- 22 162.593 1135 2 0 -85.4968 47.0501 -146.074
-Number of digits in this event = 30
+Number of tracker hits in this event = 24
+ 22 162.525 341 10 1 -111.869 13.8803 95.55
+ 22 115.757 969 10 0 -111.869 13.8801 94.15
+ 22 112.711 341 9 1 -111.869 13.8733 65.55
+ 22 99.3946 969 9 0 -111.872 13.8717 64.15
+ 22 117.889 341 8 1 -111.929 13.8288 35.55
+ 22 96.1497 968 8 0 -111.93 13.8255 34.15
+ 22 127.426 341 7 1 -111.948 13.7603 5.55
+ 22 160.622 968 7 0 -111.948 13.7596 4.15
+ 22 103.766 340 6 1 -111.951 13.7348 -24.45
+ 22 239.224 968 6 0 -111.955 13.7328 -25.85
+ 22 111.555 340 5 1 -112.019 13.6925 -54.45
+ 22 125.458 968 5 0 -112.02 13.6896 -55.85
+ 22 118.908 340 4 1 -112.047 13.6263 -84.45
+ 22 112.103 967 4 0 -112.046 13.6232 -85.85
+ 22 115.08 340 3 1 -112.043 13.5561 -114.45
+ 22 100.277 967 3 0 -112.043 13.5574 -115.85
+ 22 159.515 340 2 1 -112.048 13.5969 -144.45
+ 22 144.276 967 2 0 -112.047 13.5969 -145.85
+ 22 134.447 340 1 1 -112.009 13.5938 -174.45
+ 22 101.238 967 1 0 -112.008 13.5938 -175.85
+ 22 163.773 340 0 1 -111.983 13.5979 -204.45
+ 22 105.531 967 0 0 -111.981 13.5995 -205.85
+ 22 216.076 372 1 1 -105.589 34.4819 -174.45
+ 22 205.344 373 1 1 -105.55 34.2749 -174.58
+Number of digits in this event = 14
Using G4ParticleGun ...
-1.60559 LIN
+2.98586 LIN
proton
Event: 23
-Number of tracker hits in this event = 138
- 23 194.279 972 11 1 14.6307 -43.1397 125.55
- 23 347.882 684 11 0 14.6327 -43.1412 124.15
- 23 125.19 973 10 1 14.6746 -43.169 95.55
- 23 166.236 684 10 0 14.6745 -43.167 94.15
- 23 143.722 973 9 1 14.6614 -43.126 65.55
- 23 155.406 684 9 0 14.6663 -43.117 64.15
- 23 120.575 973 8 1 14.7679 -42.9041 35.55
- 23 181.108 685 8 0 14.7746 -42.8953 34.15
- 23 95.7722 974 7 1 14.904 -42.7043 5.55
- 23 91.6346 686 7 0 14.91 -42.6918 4.15
- 23 138.061 974 6 1 15.0418 -42.4346 -24.45
- 23 192.756 688 6 0 15.0535 -42.4226 -25.85
- 23 123.902 976 5 1 15.3064 -42.1723 -54.45
- 23 116.808 689 5 0 15.3223 -42.1621 -55.85
- 23 139.042 977 4 1 15.644 -41.9458 -84.45
- 23 230.42 690 4 0 15.6611 -41.9339 -85.85
- 23 137.885 979 3 1 16.0228 -41.7014 -114.45
- 23 216.206 691 3 0 16.0408 -41.6871 -115.85
- 23 108.05 981 2 1 16.4145 -41.3888 -144.45
- 23 105.47 693 2 0 16.43 -41.3776 -145.85
- 23 170.968 983 1 1 16.745 -41.1477 -174.45
- 23 99.9055 694 1 0 16.7579 -41.1308 -175.85
- 23 146.758 984 0 1 17.0222 -40.7887 -204.45
- 23 502.982 696 0 0 17.0381 -40.773 -205.85
- 23 126.248 915 2 1 3.05247 -75.0129 -144.645
- 23 76.2234 916 2 1 3.25 -75.317 -144.451
- 23 63.1941 917 2 1 3.45 -75.4265 -144.56
- 23 56.8662 918 2 1 3.65 -75.4837 -144.695
- 23 66.2437 919 2 1 3.85009 -75.4995 -144.77
- 23 20.9419 920 2 1 4.05 -75.5407 -144.839
- 23 204.231 527 2 0 11.3347 -74.535 -145.85
- 23 43.2136 526 2 0 12.0239 -74.65 -145.865
- 23 114.837 964 2 1 13.0027 -75.5347 -144.85
- 23 198.398 965 2 1 13.05 -75.5914 -144.781
- 23 12.3854 966 2 1 13.2759 -75.6766 -144.45
- 23 57.9072 524 2 0 12.4719 -75.1257 -145.85
- 23 116.099 525 2 0 12.4199 -75.05 -145.974
- 23 62.6523 936 2 0 -28.9744 7.25065 -146.25
- 23 32.7687 935 2 0 -28.9782 7.25 -146.246
- 23 163.09 689 2 1 -42.05 5.14286 -144.538
- 23 131.385 688 2 1 -42.25 5.1462 -144.575
- 23 45.7807 914 2 1 3.05 -75.0308 -144.6
- 23 78.7883 382 3 0 30.0038 -103.573 -116.25
- 23 121.76 381 3 0 30.1676 -103.75 -116.1
- 23 82.4636 380 3 0 30.328 -103.95 -115.953
- 23 24.4103 1065 3 1 33.1824 -105.503 -114.85
- 23 103.437 1066 3 1 33.2503 -105.538 -114.827
- 23 80.938 1067 3 1 33.4502 -105.633 -114.747
- 23 81.5172 1068 3 1 33.65 -105.762 -114.638
- 23 50.5389 1069 3 1 33.8503 -105.963 -114.514
- 23 306.836 348 4 0 75.3008 -110.419 -86.2495
- 23 8.05548 1289 4 1 78.0196 -109.983 -84.85
- 23 70.9118 1290 4 1 78.05 -109.976 -84.8336
- 23 66.3381 1291 4 1 78.2501 -109.96 -84.6659
- 23 230.661 1292 4 1 78.45 -109.928 -84.5191
- 23 8.9236 339 4 0 78.9715 -112.325 -85.85
- 23 75.3903 338 4 0 78.9784 -112.35 -85.8648
- 23 120.425 337 4 0 79.03 -112.55 -85.9699
- 23 70.558 336 4 0 79.1374 -112.75 -86.0455
- 23 107.1 335 4 0 79.2439 -112.95 -86.1136
- 23 58.6769 334 4 0 79.4128 -113.15 -86.1903
- 23 28.5554 566 0 0 8.51998 -66.7445 -206.25
- 23 52.4149 565 0 0 8.50215 -66.85 -206.193
- 23 55.2217 564 0 0 8.46559 -67.05 -206.079
- 23 62.0432 563 0 0 8.41342 -67.25 -205.974
- 23 46.8404 562 0 0 8.34635 -67.45 -205.874
- 23 47.67 938 0 1 7.69351 -69.3914 -204.849
- 23 214.21 937 0 1 7.64998 -69.5357 -204.774
- 23 15.5198 934 0 1 6.92846 -71.0926 -204.45
- 23 63.0454 933 0 1 6.84991 -71.121 -204.457
- 23 58.7103 932 0 1 6.64968 -71.1959 -204.478
- 23 140.088 931 0 1 6.44993 -71.2817 -204.52
- 23 41.3958 930 0 1 6.25 -71.3569 -204.565
- 23 156.899 929 0 1 6.05 -71.4244 -204.599
- 23 135.839 928 0 1 5.85 -71.5486 -204.675
- 23 65.3706 927 0 1 5.65 -71.6715 -204.765
- 23 12.828 926 0 1 5.45 -71.7771 -204.842
- 23 10.2861 534 0 0 2.73604 -73.2311 -205.85
- 23 129.187 533 0 0 2.69904 -73.25 -205.865
- 23 135.846 532 0 0 2.28671 -73.45 -206.018
- 23 194.079 531 0 0 1.86808 -73.6501 -206.128
- 23 284.526 530 0 0 1.43745 -73.8503 -206.15
- 23 148.107 529 0 0 0.667859 -74.05 -206.161
- 23 4.04609 377 0 0 -103.137 -104.75 -205.902
- 23 302.648 394 0 1 -101.15 -118.735 -204.626
- 23 89.656 509 0 0 1.01056 -78.05 -206.219
- 23 194.411 936 0 1 7.45 -69.8025 -204.569
- 23 198.247 1079 10 0 -0.526636 35.8908 93.75
- 23 90.7797 895 10 1 -0.95246 35.881 95.15
- 23 36.1814 894 10 1 -1.05014 35.8867 95.4517
- 23 98.2357 1076 11 0 -10.3168 35.2669 123.75
- 23 21.4713 1075 11 0 -10.4221 35.2499 124.105
- 23 115.816 846 11 1 -10.7251 35.1531 125.15
- 23 155.715 1054 12 0 -14.9944 31.0352 153.75
- 23 130.298 824 12 1 -15.1872 30.9089 155.15
- 23 34.7875 972 13 0 -35.5316 14.5082 183.75
- 23 121.437 971 13 0 -35.5996 14.4499 183.849
- 23 4.65339 718 13 1 -36.4374 13.5126 185.15
- 23 144.865 717 13 1 -36.4504 13.4975 185.17
- 23 41.5874 716 13 1 -36.65 13.3057 185.466
- 23 45.7251 886 14 0 -37.9983 -2.76299 213.75
- 23 75.0439 885 14 0 -37.9975 -2.85 213.9
- 23 230.883 710 14 1 -37.9764 -3.48971 215.15
- 23 74.7814 711 14 1 -37.8499 -3.47311 215.405
- 23 217.623 879 10 0 26.1591 -4.08511 93.75
- 23 260.245 878 10 0 26.3507 -4.25041 93.8531
- 23 84.5392 1131 12 0 -29.9865 46.3677 153.75
- 23 47.4185 1132 12 0 -30.0048 46.45 153.967
- 23 103.744 749 12 1 -30.1351 46.8635 155.15
- 23 94.8325 1211 13 0 -32.0241 62.2726 183.75
- 23 20.0105 1212 13 0 -32.046 62.45 184.067
- 23 150.386 739 13 1 -32.0929 63.0729 185.151
- 23 78.9022 1253 14 0 -26.2016 70.7739 213.75
- 23 136.582 1254 14 0 -26.1373 70.85 214.03
- 23 22.4076 770 14 1 -25.8691 71.1536 215.15
- 23 93.6775 771 14 1 -25.85 71.175 215.229
- 23 131.752 1107 12 0 -35.833 41.4714 153.75
- 23 121.284 719 12 1 -36.1252 41.8202 155.15
- 23 117.373 1131 13 0 -42.2146 46.2966 183.75
- 23 110.424 687 13 1 -42.4886 46.504 185.15
- 23 19.2255 1166 14 0 -40.3649 53.4299 213.75
- 23 100.795 1167 14 0 -40.3584 53.45 213.833
- 23 119.682 699 14 1 -40.2486 53.7704 215.15
- 23 84.1394 695 0 0 17.0379 -40.85 -206.14
- 23 102.654 694 0 0 16.9974 -41.05 -206.192
- 23 208.377 693 0 0 17.0084 -41.25 -206.182
- 23 63.1085 984 1 1 16.85 -41.233 -174.785
- 23 68.2353 689 1 0 18.4365 -42.1975 -175.85
- 23 107.099 688 1 0 18.6008 -42.25 -175.878
- 23 70.9322 1004 1 1 20.9836 -46.1238 -174.85
- 23 69.9567 663 1 0 21.6579 -47.3115 -175.85
- 23 117.849 662 1 0 21.7534 -47.45 -175.906
- 23 150.805 1001 1 1 20.3944 -46.013 -174.85
- 23 56.096 668 1 0 20.8058 -46.3617 -175.85
- 23 277.201 690 3 0 15.9849 -41.85 -116.158
- 23 2.52802 730 4 0 93.3795 -33.9374 -86.25
- 23 4.46601 973 11 1 14.65 -43.2009 125.151
- 23 177.428 688 11 0 18.4121 -42.3793 124.15
-Number of digits in this event = 58
+Number of tracker hits in this event = 44
+ 23 133.925 1151 11 1 50.26 37.8488 125.55
+ 23 120.938 1089 11 0 50.2609 37.8513 124.15
+ 23 104.407 1151 10 1 50.278 37.8993 95.55
+ 23 89.8469 1089 10 0 50.2777 37.9039 94.15
+ 23 105.27 1151 9 1 50.2682 38.004 65.55
+ 23 93.1213 1089 9 0 50.2671 38.0093 64.15
+ 23 128.396 1150 8 1 50.241 38.1148 35.55
+ 23 99.5583 1090 8 0 50.2409 38.1199 34.15
+ 23 113.54 1150 7 1 50.237 38.224 5.55
+ 23 220.582 1090 7 0 50.2364 38.2271 4.15
+ 23 127.982 1150 6 1 50.2334 38.2952 -24.45
+ 23 115.663 1091 6 0 50.2319 38.2973 -25.85
+ 23 102.286 1150 5 1 50.2032 38.3379 -54.45
+ 23 182.443 1091 5 0 50.2022 38.3383 -55.85
+ 23 131.438 1150 4 1 50.1897 38.3386 -84.45
+ 23 111.179 1091 4 0 50.1902 38.3364 -85.85
+ 23 98.3457 1150 3 1 50.2056 38.2805 -114.45
+ 23 161.217 1091 3 0 50.2076 38.279 -115.85
+ 23 211.418 1150 2 1 50.2391 38.2481 -144.45
+ 23 325.171 1090 2 0 50.2439 38.2462 -145.85
+ 23 95.5329 1151 1 1 50.3452 38.215 -174.45
+ 23 110.162 1090 1 0 50.3494 38.2126 -175.85
+ 23 156.449 1151 0 1 50.4301 38.1694 -204.45
+ 23 120.811 1090 0 0 50.4345 38.1671 -205.85
+ 23 93.7471 1063 0 0 53.1729 32.7061 -206.25
+ 23 63.222 1062 0 0 53.2108 32.6499 -205.958
+ 23 24.5813 1171 0 1 54.3175 31.1286 -204.85
+ 23 340.783 1050 0 0 55.6821 30.1884 -205.85
+ 23 8.8152 1099 6 1 40.0395 33.1024 -24.4501
+ 23 115.415 1100 6 1 40.05 33.0791 -24.4823
+ 23 130.754 1062 6 0 39.9262 32.6079 -25.85
+ 23 33.5013 1061 6 0 39.9156 32.45 -26.181
+ 23 185.748 783 6 0 73.664 -23.2518 -26.2498
+ 23 71.2075 782 6 0 73.9629 -23.4502 -25.9835
+ 23 5.25402 781 6 0 74.0731 -23.65 -25.8596
+ 23 121.709 1271 6 1 74.4093 -25.9725 -24.85
+ 23 18.3558 1272 6 1 74.4502 -26.0684 -24.8049
+ 23 0.0708352 1270 6 1 74.25 -26.2857 -24.8487
+ 23 120.341 766 6 0 73.1324 -26.7197 -25.8508
+ 23 93.9137 765 6 0 72.9688 -26.85 -25.9941
+ 23 159.045 1224 3 1 64.9791 31.5244 -114.45
+ 23 123.005 1051 3 0 64.8334 30.42 -115.85
+ 23 146.296 1231 3 1 66.3584 33.9081 -114.85
+ 23 103.714 1230 3 1 66.2494 33.9813 -114.672
+Number of digits in this event = 21
Using G4ParticleGun ...
-4.45741 LIN
+3.76327 LIN
proton
Event: 24
-Number of tracker hits in this event = 25
- 24 109.007 525 11 1 -74.8839 5.52278 125.55
- 24 112.718 927 11 0 -74.8836 5.52154 124.15
- 24 187.331 525 10 1 -74.8787 5.4955 95.55
- 24 102.009 927 10 0 -74.8774 5.49337 94.15
- 24 95.8699 525 9 1 -74.8536 5.44577 65.55
- 24 147.927 926 9 0 -74.8524 5.44576 64.15
- 24 97.0772 526 8 1 -74.8202 5.44952 35.55
- 24 277.877 926 8 0 -74.82 5.44932 34.15
- 24 102.999 526 7 1 -74.8165 5.4449 5.55
- 24 113.775 926 7 0 -74.8174 5.44495 4.15
- 24 115.015 526 6 1 -74.8474 5.45649 -24.45
- 24 123.249 927 6 0 -74.8503 5.4569 -25.85
- 24 97.2688 525 5 1 -74.9049 5.47076 -54.45
- 24 108.412 927 5 0 -74.9085 5.472 -55.85
- 24 124.2 525 4 1 -74.9876 5.50434 -84.45
- 24 227.584 927 4 0 -74.9919 5.50619 -85.85
- 24 116.367 524 3 1 -75.0758 5.54217 -114.45
- 24 110.049 927 3 0 -75.0794 5.54245 -115.85
- 24 98.1658 524 2 1 -75.1497 5.54931 -144.45
- 24 105.475 927 2 0 -75.1526 5.54922 -145.85
- 24 105.509 524 1 1 -75.2028 5.55032 -174.45
- 24 101.459 927 1 0 -75.2034 5.55027 -175.85
- 24 104.005 524 0 1 -75.2125 5.54625 -204.45
- 24 102.943 927 0 0 -75.2136 5.54604 -205.85
- 24 77.8605 926 4 0 -75.0289 5.45 -86.2143
-Number of digits in this event = 7
+Number of tracker hits in this event = 114
+ 24 94.2841 393 9 1 -101.497 -65.6742 65.55
+ 24 124.205 571 9 0 -101.499 -65.6756 64.15
+ 24 119.688 393 8 1 -101.532 -65.7094 35.55
+ 24 127.314 571 8 0 -101.534 -65.7124 34.15
+ 24 113.896 392 7 1 -101.574 -65.7798 5.55
+ 24 101.286 571 7 0 -101.576 -65.7835 4.15
+ 24 107.2 392 6 1 -101.626 -65.849 -24.45
+ 24 123.443 570 6 0 -101.63 -65.8549 -25.85
+ 24 126.996 392 5 1 -101.712 -65.9704 -54.45
+ 24 121.043 570 5 0 -101.715 -65.976 -55.85
+ 24 97.9182 391 4 1 -101.789 -66.0982 -84.45
+ 24 127.686 569 4 0 -101.792 -66.103 -85.85
+ 24 109.436 391 3 1 -101.844 -66.2 -114.45
+ 24 117.481 569 3 0 -101.847 -66.2029 -115.85
+ 24 124.872 391 2 1 -101.902 -66.2669 -144.45
+ 24 137.074 568 2 0 -101.907 -66.2692 -145.85
+ 24 110.442 390 1 1 -102.003 -66.318 -174.45
+ 24 114.851 568 1 0 -102.009 -66.3191 -175.85
+ 24 97.822 390 0 1 -102.116 -66.3425 -204.45
+ 24 129.483 568 0 0 -102.121 -66.3436 -205.85
+ 24 163.624 1395 8 1 99.15 -165.941 35.4002
+ 24 99.8393 1394 8 1 99.15 -165.99 35.4517
+ 24 58.116 102 3 0 50.8684 -159.55 -116.13
+ 24 39.1317 1222 3 1 64.4733 -144.073 -114.45
+ 24 202.467 1221 3 1 64.45 -144.015 -114.524
+ 24 47.0146 1397 12 0 -16.4647 99.6538 153.75
+ 24 95.1186 1398 12 0 -16.3871 99.75 153.914
+ 24 211.438 822 12 1 -15.5774 100.438 155.15
+ 24 103.823 823 12 1 -15.4499 100.59 155.363
+ 24 110.683 1405 12 0 -16.114 101.242 154.15
+ 24 93.6892 1365 12 0 -22.3562 93.237 153.75
+ 24 90.9645 1366 12 0 -22.3011 93.35 153.933
+ 24 31.5185 794 12 1 -21.1281 93.3931 155.15
+ 24 80.555 795 12 1 -21.0497 93.4064 155.227
+ 24 17.5822 796 12 1 -20.85 93.3905 155.509
+ 24 75.4665 797 12 1 -20.6494 93.4996 155.547
+ 24 159.001 798 12 1 -20.45 93.5027 155.359
+ 24 88.1176 799 12 1 -20.2495 93.6146 155.227
+ 24 57.233 1373 12 0 -18.6836 94.9221 154.15
+ 24 706.584 1374 12 0 -18.6489 94.9502 154.12
+ 24 160.183 412 1 0 -96.1851 -97.5714 -176.25
+ 24 131.381 420 1 1 -96.004 -98.177 -174.85
+ 24 7.11207 348 2 0 -92.7727 -110.539 -146.25
+ 24 130.741 347 2 0 -92.7697 -110.55 -146.223
+ 24 94.7901 437 2 1 -92.58 -111.124 -144.85
+ 24 58.156 438 2 1 -92.55 -111.217 -144.621
+ 24 181.106 279 3 0 -89.1936 -124.177 -116.25
+ 24 1.31036 278 3 0 -89.1502 -124.35 -115.857
+ 24 130.568 455 3 1 -89.0338 -124.797 -114.85
+ 24 132.995 210 4 0 -82.3308 -137.952 -86.2499
+ 24 132.348 490 4 1 -82.0203 -138.588 -84.85
+ 24 123.78 158 5 0 -75.005 -148.413 -56.2485
+ 24 1.64081 157 5 0 -74.91 -148.55 -55.8531
+ 24 44.1343 526 5 1 -74.6732 -148.894 -54.85
+ 24 151.874 527 5 1 -74.65 -148.927 -54.7553
+ 24 148.584 107 6 0 -65.4513 -158.611 -26.25
+ 24 206.15 575 6 1 -64.9993 -159.093 -24.85
+ 24 66.4839 39 7 0 -54.2709 -172.266 3.75005
+ 24 72.3082 38 7 0 -54.2032 -172.35 3.92943
+ 24 83.2354 631 7 1 -53.7397 -172.915 5.15
+ 24 39.6966 632 7 1 -53.6499 -173.028 5.3978
+ 24 20.0918 144 1 0 -31.4068 -151.308 -176.25
+ 24 206.344 143 1 0 -31.3463 -151.35 -176.229
+ 24 112.763 142 1 0 -30.919 -151.55 -176.069
+ 24 31.9564 141 1 0 -30.6659 -151.75 -175.876
+ 24 130.092 756 1 1 -28.8172 -153.355 -174.85
+ 24 77.1422 757 1 1 -28.65 -153.558 -174.739
+ 24 72.4091 758 1 1 -28.45 -153.739 -174.673
+ 24 64.6082 759 1 1 -28.25 -153.856 -174.647
+ 24 211.179 760 1 1 -28.05 -153.977 -174.605
+ 24 54.7101 761 1 1 -27.85 -154.057 -174.553
+ 24 46.1168 762 1 1 -27.6499 -154.113 -174.512
+ 24 65.1617 763 1 1 -27.45 -154.161 -174.496
+ 24 177.408 764 1 1 -27.25 -154.241 -174.488
+ 24 72.0303 131 1 0 -26.5011 -153.842 -175.85
+ 24 97.4341 132 1 0 -26.5391 -153.75 -176.062
+ 24 73.5429 199 1 0 -49.0057 -140.267 -176.25
+ 24 73.5716 198 1 0 -49.1261 -140.35 -176.053
+ 24 30.8752 652 1 1 -49.6196 -142.082 -174.85
+ 24 233.736 651 1 1 -49.6502 -142.164 -174.8
+ 24 75.9549 650 1 1 -49.8501 -142.563 -174.688
+ 24 7.77177 185 1 0 -50.4706 -143.133 -175.85
+ 24 113.929 184 1 0 -50.4883 -143.151 -175.876
+ 24 112.085 183 1 0 -50.6678 -143.35 -175.997
+ 24 123.19 182 1 0 -50.9538 -143.55 -176.113
+ 24 81.4526 181 1 0 -51.0194 -143.75 -176.124
+ 24 94.0441 425 1 0 -105.268 -95.0512 -176.25
+ 24 35.739 424 1 0 -105.326 -95.1504 -175.959
+ 24 261.09 372 1 1 -105.554 -95.5309 -174.85
+ 24 16.9798 368 2 0 -116.017 -106.529 -146.25
+ 24 111.537 367 2 0 -116.037 -106.55 -146.194
+ 24 136.211 317 2 1 -116.552 -107.041 -144.85
+ 24 76.592 315 3 0 -132.036 -117.082 -116.249
+ 24 65.9525 314 3 0 -132.141 -117.15 -116.055
+ 24 88.5036 236 3 1 -132.802 -117.584 -114.85
+ 24 74.8068 235 3 1 -132.95 -117.685 -114.584
+ 24 19.004 240 4 0 -145.646 -132.119 -86.25
+ 24 134.948 239 4 0 -145.673 -132.15 -86.1892
+ 24 149.083 169 4 1 -146.202 -132.74 -84.8498
+ 24 9.17138 168 4 1 -146.35 -132.9 -84.4688
+ 24 128.485 183 5 0 -154.795 -143.385 -56.25
+ 24 118.204 124 5 1 -155.203 -143.895 -54.8496
+ 24 104.124 135 6 0 -164.449 -153.033 -26.25
+ 24 10.3497 134 6 0 -164.569 -153.15 -25.8827
+ 24 37.9192 76 6 1 -164.912 -153.471 -24.8498
+ 24 96.8206 75 6 1 -164.95 -153.51 -24.7308
+ 24 65.0415 72 7 0 -174 -165.677 3.75
+ 24 71.6938 71 7 0 -174.053 -165.75 3.92115
+ 24 130.172 28 7 1 -174.444 -166.251 5.15
+ 24 16.3306 27 7 1 -174.55 -166.391 5.48285
+ 24 23.057 29 7 1 -174.153 -163.229 5.15
+ 24 140.866 30 7 1 -174.15 -163.256 5.2602
+ 24 214.17 622 4 0 -101.838 -55.5261 -86.25
+ 24 99.4044 623 4 0 -101.802 -55.45 -86.1463
+Number of digits in this event = 42
Using G4ParticleGun ...
-6.46972 LIN
+6.18272 LIN
proton
Event: 25
-Number of tracker hits in this event = 20
- 25 94.2472 781 9 1 -23.7181 -117.87 65.55
- 25 94.7413 311 9 0 -23.7185 -117.87 64.15
- 25 108.694 781 8 1 -23.7227 -117.875 35.55
- 25 104.644 311 8 0 -23.7234 -117.875 34.15
- 25 101.844 781 7 1 -23.7396 -117.882 5.55
- 25 108.052 311 7 0 -23.7411 -117.883 4.15
- 25 137.191 781 6 1 -23.7691 -117.9 -24.45
- 25 102.748 311 6 0 -23.7699 -117.901 -25.85
- 25 128.25 781 5 1 -23.7826 -117.913 -54.45
- 25 172.463 311 5 0 -23.7846 -117.912 -55.85
- 25 107.702 781 4 1 -23.8241 -117.883 -84.45
- 25 106.601 311 4 0 -23.8247 -117.882 -85.85
- 25 151.873 781 3 1 -23.8384 -117.87 -114.45
- 25 240.489 311 3 0 -23.8376 -117.87 -115.85
- 25 133.509 781 2 1 -23.8262 -117.854 -144.45
- 25 136.885 311 2 0 -23.8252 -117.853 -145.85
- 25 104.278 781 1 1 -23.8031 -117.834 -174.45
- 25 124.292 311 1 0 -23.8021 -117.835 -175.85
- 25 156.553 781 0 1 -23.7824 -117.841 -204.45
- 25 166.491 311 0 0 -23.7814 -117.841 -205.85
-Number of digits in this event = 11
+Number of tracker hits in this event = 23
+ 25 111.83 638 10 1 -52.291 94.6271 95.55
+ 25 101.621 1372 10 0 -52.2917 94.6279 94.15
+ 25 97.3509 638 9 1 -52.3059 94.6466 65.55
+ 25 98.7852 1372 9 0 -52.3068 94.6472 64.15
+ 25 162.161 638 8 1 -52.3249 94.6564 35.55
+ 25 148.079 1372 8 0 -52.3258 94.6553 34.15
+ 25 138.886 638 7 1 -52.3416 94.632 5.55
+ 25 116.472 1372 7 0 -52.3441 94.6238 4.15
+ 25 139.025 638 6 1 -52.3941 94.4557 -24.45
+ 25 104.078 1371 6 0 -52.3961 94.4472 -25.85
+ 25 128.363 638 5 1 -52.4348 94.2686 -54.45
+ 25 100.085 1370 5 0 -52.4363 94.2601 -55.85
+ 25 114.62 637 4 1 -52.4681 94.0899 -84.45
+ 25 107.161 1369 4 0 -52.4687 94.0825 -85.85
+ 25 204.775 637 3 1 -52.4784 93.9305 -114.45
+ 25 99.1842 1368 3 0 -52.4797 93.9239 -115.85
+ 25 246.668 637 2 1 -52.5067 93.7901 -144.45
+ 25 121.384 1368 2 0 -52.5066 93.7839 -145.85
+ 25 124.926 637 1 1 -52.5084 93.6624 -174.45
+ 25 161.433 1367 1 0 -52.5085 93.6557 -175.85
+ 25 106.877 637 0 1 -52.5159 93.5224 -204.45
+ 25 399.767 1366 0 0 -52.5176 93.5166 -205.85
+ 25 109.681 638 3 1 -52.45 93.9547 -114.67
+Number of digits in this event = 12
Using G4ParticleGun ...
-3.52041 LIN
+2.16095 LIN
proton
Event: 26
-Number of tracker hits in this event = 25
- 26 106.154 1033 11 1 26.6667 20.0602 125.55
- 26 141.433 1000 11 0 26.6669 20.0598 124.15
- 26 94.877 1033 10 1 26.6709 20.0404 95.55
- 26 255.08 999 10 0 26.6709 20.0386 94.15
- 26 133.815 1033 9 1 26.6751 19.9957 65.55
- 26 105.43 999 9 0 26.6755 19.9928 64.15
- 26 94.9999 1033 8 1 26.6808 19.9367 35.55
- 26 114.134 999 8 0 26.6804 19.9297 34.15
- 26 110.305 1033 7 1 26.668 19.7934 5.55
- 26 103.873 998 7 0 26.6688 19.7856 4.15
- 26 113.097 1033 6 1 26.6881 19.6364 -24.45
- 26 246.355 997 6 0 26.6871 19.6264 -25.85
- 26 97.8039 1033 5 1 26.6804 19.4297 -54.45
- 26 125.624 996 5 0 26.6808 19.4206 -55.85
- 26 113.45 1033 4 1 26.6864 19.2342 -84.45
- 26 114.45 995 4 0 26.6857 19.2256 -85.85
- 26 358.46 1033 3 1 26.6728 19.0585 -114.45
- 26 95.1991 995 3 0 26.6719 19.0518 -115.85
- 26 13.1235 994 3 0 26.6717 19.05 -116.21
- 26 158.543 1033 2 1 26.6538 18.9073 -144.45
- 26 100.399 994 2 0 26.6512 18.9011 -145.85
- 26 109.351 1032 1 1 26.604 18.7817 -174.45
- 26 114.532 993 1 0 26.6027 18.7736 -175.85
- 26 106.335 1032 0 1 26.5741 18.6028 -204.45
- 26 219.699 992 0 0 26.5733 18.5932 -205.85
-Number of digits in this event = 9
+Number of tracker hits in this event = 26
+ 26 122.796 1087 9 1 37.5842 129.102 65.55
+ 26 105.811 1544 9 0 37.5852 129.103 64.15
+ 26 96.4058 1087 8 1 37.5967 129.119 35.55
+ 26 135.102 1544 8 0 37.5858 129.117 34.15
+ 26 95.7531 1086 7 1 37.355 129.087 5.55
+ 26 177.561 1544 7 0 37.3417 129.084 4.15
+ 26 114.888 1085 6 1 37.071 129.028 -24.45
+ 26 120.924 1544 6 0 37.0602 129.025 -25.85
+ 26 113.562 1083 5 1 36.8297 128.985 -54.45
+ 26 93.4489 1544 5 0 36.817 128.983 -55.85
+ 26 124.569 1082 4 1 36.5698 128.958 -84.45
+ 26 137.73 1544 4 0 36.5554 128.953 -85.85
+ 26 108.45 1081 3 1 36.2714 128.862 -114.45
+ 26 109.444 1543 3 0 36.2573 128.857 -115.85
+ 26 103.444 1079 2 1 35.9666 128.759 -144.45
+ 26 107.278 1543 2 0 35.9542 128.754 -145.85
+ 26 98.071 1078 1 1 35.7044 128.653 -174.45
+ 26 112.678 1542 1 0 35.6906 128.648 -175.85
+ 26 156.288 1076 0 1 35.4141 128.555 -204.45
+ 26 154.784 1542 0 0 35.3993 128.552 -205.85
+ 26 85.4464 1018 4 1 23.7854 134.619 -84.5684
+ 26 603.321 1685 0 0 42.2632 157.292 -206.25
+ 26 2775.74 1686 0 0 42.2779 157.35 -206.198
+ 26 3688.96 1687 0 0 42.3368 157.55 -206.016
+ 26 2122.27 1113 0 1 42.8306 158.928 -204.85
+ 26 643.811 1114 0 1 42.85 158.981 -204.805
+Number of digits in this event = 16
Using G4ParticleGun ...
-7.08068 LIN
+4.56952 LIN
proton
Event: 27
-Number of tracker hits in this event = 75
- 27 500.872 471 10 1 -85.7965 -69.2713 95.55
- 27 132.244 553 10 0 -85.7974 -69.2726 94.15
- 27 115.696 471 9 1 -85.8145 -69.2991 65.55
- 27 115.463 553 9 0 -85.8159 -69.3008 64.15
- 27 106.732 471 8 1 -85.8429 -69.3369 35.55
- 27 150.237 553 8 0 -85.8437 -69.3382 34.15
- 27 134.188 470 7 1 -85.8605 -69.3601 5.55
- 27 102.324 553 7 0 -85.8603 -69.3607 4.15
- 27 104.626 470 6 1 -85.854 -69.37 -24.45
- 27 252.116 553 6 0 -85.8541 -69.3706 -25.85
- 27 119.736 470 5 1 -85.8559 -69.3839 -54.45
- 27 115.33 553 5 0 -85.8553 -69.3858 -55.85
- 27 106.387 471 4 1 -85.8414 -69.4381 -84.45
- 27 100.305 553 4 0 -85.8407 -69.4408 -85.85
- 27 91.9637 471 3 1 -85.8265 -69.4989 -114.45
- 27 139.046 552 3 0 -85.8252 -69.5043 -115.85
- 27 213.353 471 2 1 -85.7979 -69.6176 -144.45
- 27 127.863 552 2 0 -85.7964 -69.623 -145.85
- 27 164.067 471 1 1 -85.7623 -69.734 -174.45
- 27 126.119 551 1 0 -85.76 -69.7406 -175.85
- 27 109.813 471 0 1 -85.7137 -69.8779 -204.45
- 27 96.2345 550 0 0 -85.7101 -69.8865 -205.85
- 27 76.763 518 0 1 -76.3844 -91.8909 -204.45
- 27 61.5661 548 0 0 -74.1915 -70.3072 -206.25
- 27 167.599 549 0 0 -74.1837 -70.25 -206.13
- 27 199.35 529 0 1 -74.0928 -69.6065 -204.85
- 27 151.549 638 1 0 -70.5129 -52.3863 -176.25
- 27 200.793 639 1 0 -70.4844 -52.25 -176.024
- 27 256.432 548 1 1 -70.3348 -51.542 -174.85
- 27 75.6373 727 2 0 -67.1352 -34.5261 -146.25
- 27 187.655 728 2 0 -67.1209 -34.45 -146.122
- 27 226.544 565 2 1 -66.9888 -33.6992 -144.85
- 27 193.857 813 3 0 -64.8934 -17.4325 -116.25
- 27 43.3503 814 3 0 -64.8701 -17.25 -115.929
- 27 327.24 576 3 1 -64.7551 -16.6626 -114.85
- 27 140.756 898 4 0 -62.9113 -0.389163 -86.25
- 27 85.759 899 4 0 -62.8958 -0.25 -86.0057
- 27 308.131 586 4 1 -62.8361 0.430139 -84.85
- 27 144.265 1000 5 0 -61.7449 20.0866 -56.25
- 27 102.97 1001 5 0 -61.7359 20.25 -56.013
- 27 263.838 591 5 1 -61.6841 21.0548 -54.85
- 27 42.9633 1085 6 0 -64.7206 37.2054 -26.25
- 27 203.266 1086 6 0 -64.7293 37.25 -26.1706
- 27 271.262 575 6 1 -64.8764 37.9605 -24.85
- 27 250.515 1164 7 0 -69.3965 52.8772 3.75
- 27 40.1208 1165 7 0 -69.4494 53.05 4.08175
- 27 499.276 552 7 1 -69.5963 53.6027 5.15
- 27 207.299 551 7 1 -69.65 53.8042 5.54096
- 27 248.133 1241 8 0 -70.6222 68.264 33.75
- 27 22.9692 1242 8 0 -70.6343 68.45 34.1129
- 27 536.62 546 8 1 -70.6507 68.9588 35.15
- 27 118.937 1309 9 0 -74.6503 81.959 63.75
- 27 155.359 1310 9 0 -74.6791 82.05 63.9507
- 27 2.19156 526 9 1 -74.8495 82.5928 65.15
- 27 340.585 525 9 1 -74.85 82.5942 65.1532
- 27 128.352 1382 10 0 -76.8085 96.6603 93.75
- 27 184.416 1383 10 0 -76.8206 96.75 93.9319
- 27 292.152 515 10 1 -76.9213 97.3882 95.15
- 27 199.548 1467 11 0 -78.7456 113.695 123.75
- 27 543.536 1468 11 0 -78.7516 113.75 123.846
- 27 322.352 506 11 1 -78.7953 114.509 125.15
- 27 437.23 1549 12 0 -80.7751 129.974 153.75
- 27 81.741 1550 12 0 -80.7981 130.15 154.066
- 27 323.344 495 12 1 -80.8846 130.775 155.15
- 27 349.124 1629 13 0 -80.991 146.027 183.75
- 27 198.76 1630 13 0 -80.9916 146.15 183.98
- 27 836.773 495 13 1 -80.9969 146.808 185.15
- 27 14.4149 1750 14 0 -81.0691 170.342 213.75
- 27 275.17 1751 14 0 -81.0692 170.35 213.76
- 27 191.979 1752 14 0 -81.0716 170.55 214.003
- 27 568.723 494 14 1 -81.0919 171.477 215.15
- 27 62.6338 1548 12 0 -80.7805 129.95 153.881
- 27 148.326 470 2 1 -85.85 -69.6402 -144.547
- 27 60.6088 554 2 0 -85.8297 -69.1527 -145.85
- 27 261.713 555 2 0 -85.7761 -69.05 -145.956
-Number of digits in this event = 52
-Using G4ParticleGun ...
-9.14846 LIN
+Number of tracker hits in this event = 20
+ 27 101.968 1403 9 1 100.817 82.3692 65.55
+ 27 111.14 1311 9 0 100.816 82.3676 64.15
+ 27 98.2277 1403 8 1 100.79 82.3276 35.55
+ 27 144.165 1311 8 0 100.79 82.3267 34.15
+ 27 126.824 1403 7 1 100.793 82.3045 5.55
+ 27 266.592 1311 7 0 100.792 82.304 4.15
+ 27 140.007 1403 6 1 100.784 82.2947 -24.45
+ 27 126.123 1311 6 0 100.782 82.2948 -25.85
+ 27 93.8648 1402 5 1 100.739 82.3037 -54.45
+ 27 168.382 1311 5 0 100.737 82.3036 -55.85
+ 27 112.152 1402 4 1 100.704 82.2983 -84.45
+ 27 139.389 1311 4 0 100.702 82.2966 -85.85
+ 27 101.947 1402 3 1 100.648 82.2557 -114.45
+ 27 115.251 1311 3 0 100.645 82.2546 -115.85
+ 27 140.99 1402 2 1 100.563 82.235 -144.45
+ 27 98.3426 1310 2 0 100.559 82.2353 -145.85
+ 27 128.779 1401 1 1 100.486 82.2421 -174.45
+ 27 110.02 1310 1 0 100.482 82.2444 -175.85
+ 27 116.526 1401 0 1 100.389 82.2901 -204.45
+ 27 101.27 1311 0 0 100.385 82.2921 -205.85
+Number of digits in this event = 10
+Using G4ParticleGun ...
+2.13532 LIN
proton
Event: 28
-Number of tracker hits in this event = 209
- 28 189.541 386 9 1 -102.813 65.2691 65.55
- 28 361.311 1226 9 0 -102.813 65.2689 64.15
- 28 154.554 386 8 1 -102.801 65.2629 35.55
- 28 105.635 1226 8 0 -102.801 65.2624 34.15
- 28 153.066 386 7 1 -102.797 65.2549 5.55
- 28 224.767 1226 7 0 -102.796 65.2537 4.15
- 28 142.067 386 6 1 -102.782 65.2311 -24.45
- 28 366.466 1225 6 0 -102.781 65.2303 -25.85
- 28 142.945 386 5 1 -102.768 65.2146 -54.45
- 28 113.643 1225 5 0 -102.767 65.2145 -55.85
- 28 122.75 386 4 1 -102.76 65.2138 -84.45
- 28 117.003 1225 4 0 -102.759 65.2136 -85.85
- 28 195.648 387 3 1 -102.732 65.2117 -114.45
- 28 133.938 1225 3 0 -102.731 65.212 -115.85
- 28 300.893 387 2 1 -102.707 65.2149 -144.45
- 28 133.423 1225 2 0 -102.706 65.215 -145.85
- 28 163.244 387 1 1 -102.678 65.2192 -174.45
- 28 125.548 1225 1 0 -102.677 65.2196 -175.85
- 28 279.007 387 0 1 -102.65 65.2286 -204.45
- 28 107.195 1225 0 0 -102.65 65.23 -205.85
- 28 77.1138 1311 0 0 -80.0755 82.3684 -206.25
- 28 195.925 1312 0 0 -79.9669 82.45 -206.173
- 28 167.396 1313 0 0 -79.7063 82.65 -205.987
- 28 32.355 509 0 1 -78.0821 83.8609 -204.85
- 28 146.045 510 0 1 -78.05 83.8848 -204.828
- 28 159.581 511 0 1 -77.85 84.0326 -204.688
- 28 129.232 512 0 1 -77.65 84.1812 -204.545
- 28 135.107 1650 1 0 26.5134 150.28 -176.25
- 28 379.199 1651 1 0 26.6246 150.35 -176.219
- 28 408.57 1652 1 0 26.9419 150.55 -176.127
- 28 436.21 1653 1 0 27.2544 150.75 -176.042
- 28 396.658 1654 1 0 27.5515 150.95 -175.967
- 28 378.362 1655 1 0 27.8384 151.15 -175.902
- 28 86.9896 1064 1 1 32.9866 154.922 -174.85
- 28 359.601 1065 1 1 33.05 154.969 -174.837
- 28 281.089 1066 1 1 33.25 155.116 -174.798
- 28 268.028 1067 1 1 33.45 155.259 -174.762
- 28 232.612 1068 1 1 33.65 155.395 -174.723
- 28 330.889 1069 1 1 33.85 155.546 -174.705
- 28 307.603 1070 1 1 34.05 155.699 -174.686
- 28 263.346 1071 1 1 34.25 155.854 -174.668
- 28 252.613 1072 1 1 34.45 156 -174.652
- 28 244.987 1073 1 1 34.65 156.134 -174.641
- 28 432.725 1074 1 1 34.85 156.272 -174.629
- 28 281.115 1075 1 1 35.05 156.4 -174.637
- 28 362.812 1076 1 1 35.25 156.524 -174.642
- 28 236.825 1077 1 1 35.45 156.647 -174.644
- 28 246.809 1078 1 1 35.65 156.746 -174.634
- 28 286.928 1079 1 1 35.85 156.84 -174.629
- 28 264.309 1080 1 1 36.05 156.935 -174.617
- 28 231.345 1081 1 1 36.25 157.033 -174.613
- 28 310.34 1082 1 1 36.45 157.131 -174.609
- 28 226.554 1083 1 1 36.65 157.233 -174.604
- 28 298.568 1084 1 1 36.85 157.334 -174.595
- 28 336.156 1085 1 1 37.05 157.437 -174.588
- 28 258.247 1086 1 1 37.25 157.536 -174.586
- 28 287.553 1087 1 1 37.45 157.643 -174.584
- 28 327.108 1088 1 1 37.65 157.742 -174.594
- 28 320.44 1089 1 1 37.85 157.837 -174.611
- 28 332.667 1090 1 1 38.05 157.923 -174.618
- 28 497.598 1091 1 1 38.25 158.028 -174.635
- 28 341.772 1092 1 1 38.45 158.135 -174.649
- 28 350.434 1093 1 1 38.65 158.232 -174.658
- 28 324.473 1094 1 1 38.85 158.327 -174.668
- 28 352.651 1095 1 1 39.05 158.429 -174.676
- 28 387.514 1096 1 1 39.25 158.519 -174.684
- 28 551.156 1097 1 1 39.45 158.604 -174.691
- 28 503.842 1098 1 1 39.65 158.688 -174.696
- 28 389.747 1099 1 1 39.85 158.776 -174.702
- 28 442.528 1100 1 1 40.05 158.868 -174.708
- 28 602.164 1101 1 1 40.25 158.959 -174.711
- 28 666.402 1102 1 1 40.45 159.055 -174.705
- 28 508.587 1103 1 1 40.65 159.148 -174.7
- 28 643.202 1104 1 1 40.85 159.255 -174.685
- 28 675.385 1105 1 1 41.05 159.361 -174.665
- 28 837.612 1106 1 1 41.25 159.456 -174.631
- 28 994.006 1107 1 1 41.45 159.569 -174.58
- 28 1288.54 1108 1 1 41.65 159.718 -174.526
- 28 840.952 1109 1 1 41.85 159.85 -174.469
- 28 4.78887 1582 2 0 31.7389 136.565 -146.25
- 28 113.363 1581 2 0 31.7326 136.55 -146.232
- 28 44.6597 1580 2 0 31.6554 136.35 -145.99
- 28 264.971 1056 2 1 31.3538 135.371 -144.85
- 28 16.4171 1408 3 0 39.2395 101.805 -116.25
- 28 70.667 1407 3 0 39.2512 101.75 -116.204
- 28 77.3606 1406 3 0 39.2968 101.55 -116.035
- 28 5.6685 1405 3 0 39.3241 101.35 -115.871
- 28 224.188 1097 3 1 39.4608 100.116 -114.85
- 28 2.54771 1248 4 0 54.5321 69.659 -86.25
- 28 66.2425 1247 4 0 54.5365 69.65 -86.2414
- 28 76.3699 1246 4 0 54.6357 69.45 -86.0642
- 28 14.0351 1245 4 0 54.7457 69.2499 -85.8921
- 28 115.845 1177 4 1 55.508 68.0616 -84.85
- 28 94.2228 1178 4 1 55.65 67.8696 -84.6569
- 28 34.5432 1107 5 0 38.6861 41.5205 -56.25
- 28 71.1637 1106 5 0 38.6386 41.4499 -56.1686
- 28 40.0815 1105 5 0 38.4994 41.25 -55.9491
- 28 187.66 1088 5 1 37.8448 40.2517 -54.85
- 28 26.9461 1087 5 1 37.6498 39.9432 -54.5116
- 28 10.0832 957 6 0 37.3796 11.4771 -26.25
- 28 140.26 956 6 0 37.3796 11.4499 -26.2242
- 28 75.815 955 6 0 37.3762 11.25 -25.9849
- 28 150.359 1086 6 1 37.306 10.3626 -24.8497
- 28 319.985 887 7 0 37.7674 -2.46387 3.75
- 28 18.5561 886 7 0 37.8131 -2.65 4.11074
- 28 169.859 1089 7 1 37.997 -3.28852 5.15
- 28 23.0924 1090 7 1 38.05 -3.48485 5.46422
- 28 77.1393 628 8 0 22.299 -54.25 33.9247
- 28 80.6596 1086 7 1 37.3937 -2.23279 5.15
- 28 49.545 1087 7 1 37.4507 -2.13862 5.234
- 28 160.563 892 7 0 37.4646 -1.59661 4.15
- 28 137.795 469 6 0 -51.2923 -86.0823 -26.25
- 28 125.302 470 6 0 -51.3634 -86.05 -26.0874
- 28 61.7509 1057 2 1 31.45 135.093 -144.711
- 28 71.9512 1576 2 0 31.3647 135.459 -145.85
- 28 201.178 1575 2 0 31.4266 135.35 -145.961
- 28 24.7288 1181 1 0 -2.65791 56.3948 -175.997
- 28 127.566 1150 0 0 -115.126 50.2185 -206.25
- 28 154.182 1149 0 0 -115.266 50.05 -206.072
- 28 5.19652 1148 0 0 -115.429 49.85 -205.86
- 28 129.159 319 0 1 -116.198 48.9121 -204.85
- 28 110.729 318 0 1 -116.35 48.7259 -204.65
- 28 81.1166 1013 1 0 -138.79 22.792 -176.25
- 28 122.176 1012 1 0 -138.913 22.65 -176.094
- 28 59.1442 1011 1 0 -139.084 22.45 -175.878
- 28 49.5738 201 1 1 -139.886 21.4989 -174.85
- 28 180.569 200 1 1 -139.95 21.4233 -174.768
- 28 77.1092 199 1 1 -140.15 21.186 -174.513
- 28 7.97748 883 2 0 -160.246 -3.43391 -146.25
- 28 152.25 882 2 0 -160.259 -3.45 -146.232
- 28 104.072 881 2 0 -160.422 -3.65 -146.001
- 28 26394.3 94 2 1 -161.234 -4.65714 -144.85
- 28 1969.23 93 2 1 -161.35 -4.81631 -144.766
- 28 1656.85 872 2 0 -161.683 -5.55193 -145.85
- 28 3126.39 871 2 0 -161.727 -5.65 -145.994
- 28 29.4509 459 4 0 -5.1683 -88.05 -85.9915
- 28 198.077 880 4 1 -4.00537 -88.5938 -84.85
- 28 214.935 881 4 1 -3.85 -88.6695 -84.6534
- 28 5008.88 95 2 1 -161.15 -4.8473 -144.82
- 28 179.6 92 2 1 -161.55 -5.47784 -144.487
- 28 298.624 1337 0 0 -134.651 87.5054 -206.25
- 28 130.083 1338 0 0 -134.684 87.65 -206.033
- 28 26.4631 218 0 1 -136.465 87.9368 -204.85
- 28 102.391 217 0 1 -136.55 87.9071 -204.827
- 28 74.6375 216 0 1 -136.75 87.8316 -204.737
- 28 256.653 215 0 1 -136.95 87.8608 -204.544
- 28 88.9512 299 3 0 90.6942 -120.15 -116.13
- 28 12.4789 1324 7 0 -169.484 85.0123 3.75006
- 28 168.778 1325 7 0 -169.509 85.05 3.77225
- 28 26.2112 1326 7 0 -169.628 85.25 3.80436
- 28 50.3093 1443 0 0 -100.95 108.775 -206.25
- 28 73.832 1444 0 0 -100.94 108.95 -206.131
- 28 89.1314 1445 0 0 -100.933 109.15 -205.992
- 28 216.11 396 0 1 -100.922 110.711 -204.85
- 28 70.4813 1763 1 0 -108.323 172.774 -176.25
- 28 70.7132 1764 1 0 -108.336 172.95 -176.169
- 28 67.144 1765 1 0 -108.348 173.151 -176.055
- 28 45.0686 1766 1 0 -108.358 173.35 -175.939
- 28 419.497 356 1 1 -108.767 175.628 -174.85
- 28 100.227 355 1 1 -108.95 176.377 -174.542
- 28 30.5858 1789 1 0 -108.649 178.07 -175.85
- 28 83.2735 1790 1 0 -108.631 178.15 -175.962
- 28 57.2001 1322 0 0 -105.669 84.6164 -206.25
- 28 334.606 1323 0 0 -105.753 84.65 -206.083
- 28 126.556 369 0 1 -106.219 85.6753 -204.85
- 28 225.296 368 0 1 -106.35 85.9082 -204.661
- 28 58.5388 367 0 1 -106.55 86.0151 -204.511
- 28 339.592 366 0 1 -106.75 86.101 -204.564
- 28 45.5868 1332 0 0 -107.067 86.4774 -205.85
- 28 78.4383 1331 0 0 -107.088 86.4495 -205.985
- 28 39.7546 1330 0 0 -107.044 86.25 -206.161
- 28 148.966 1257 0 0 -115.101 71.6215 -206.25
- 28 185.102 1256 0 0 -114.973 71.45 -206.052
- 28 21.1585 242 1 1 -131.669 108.12 -174.85
- 28 146.009 1324 0 0 -82.0082 84.85 -206.091
- 28 142.998 1325 0 0 -81.7994 85.05 -205.927
- 28 90.3052 498 0 1 -80.4096 86.3637 -204.85
- 28 132.803 499 0 1 -80.25 86.5145 -204.726
- 28 84.0593 500 0 1 -80.05 86.7037 -204.571
- 28 88.9034 1501 1 0 -40.582 120.447 -176.25
- 28 199.412 1502 1 0 -40.461 120.55 -176.163
- 28 122.498 1503 1 0 -40.2266 120.75 -175.994
- 28 55.0793 706 1 1 -38.6956 122.058 -174.85
- 28 139.303 707 1 1 -38.65 122.097 -174.816
- 28 151.802 708 1 1 -38.45 122.268 -174.666
- 28 44.3235 709 1 1 -38.25 122.44 -174.518
- 28 128.79 1671 2 0 -2.2046 154.385 -146.25
- 28 166.882 1672 2 0 -2.01791 154.55 -146.104
- 28 113.11 1673 2 0 -1.79304 154.75 -145.924
- 28 0.788306 897 2 1 -0.451468 155.954 -144.85
- 28 344.62 898 2 1 -0.45 155.955 -144.849
- 28 105.089 899 2 1 -0.25 156.135 -144.689
- 28 137.222 1659 2 0 -2.71173 152.129 -145.85
- 28 8.71754 1232 1 0 -46.1449 66.5104 -176.25
- 28 77.1606 1228 2 0 -102.253 65.7381 -145.85
- 28 24.8193 1229 2 0 -102.154 65.8502 -146.134
- 28 45.0795 439 1 1 -92.236 72.8828 -174.45
- 28 98.1881 440 1 1 -92.1499 73.0059 -174.551
- 28 56.096 441 1 1 -91.95 73.2091 -174.748
- 28 142.464 1268 1 0 -91.0407 73.7665 -175.85
- 28 78.7596 395 0 1 -101.117 32.7581 -204.45
- 28 116.38 394 0 1 -101.15 32.6976 -204.615
- 28 152.429 1054 0 0 -101.21 30.9114 -205.85
- 28 74.9836 1053 0 0 -101.248 30.85 -205.87
- 28 173.856 1226 6 0 -102.689 65.25 -26.1733
- 28 143.464 1224 6 0 -102.682 65.05 -25.9243
- 28 100.451 387 9 1 -102.749 64.9888 65.5108
- 28 118.5 388 9 1 -102.55 64.9692 65.4296
- 28 63.1969 1227 9 0 -102.371 65.4501 63.9587
-Number of digits in this event = 128
-Using G4ParticleGun ...
-8.81788 LIN
+Number of tracker hits in this event = 25
+ 28 122.52 239 9 1 -132.267 -6.20362 65.55
+ 28 91.9979 869 9 0 -132.267 -6.20289 64.15
+ 28 138.429 239 8 1 -132.28 -6.18783 35.55
+ 28 119.226 869 8 0 -132.279 -6.18493 34.15
+ 28 115.937 239 7 1 -132.253 -6.12884 5.55
+ 28 106.452 869 7 0 -132.252 -6.1266 4.15
+ 28 125.102 239 6 1 -132.233 -6.07754 -24.45
+ 28 113.142 869 6 0 -132.231 -6.07406 -25.85
+ 28 121.37 239 5 1 -132.181 -6.0039 -54.45
+ 28 125.401 870 5 0 -132.18 -5.99824 -55.85
+ 28 229.695 239 4 1 -132.166 -5.88357 -84.45
+ 28 117.381 870 4 0 -132.164 -5.88003 -85.85
+ 28 90.6333 240 3 1 -132.148 -5.80711 -114.45
+ 28 147.458 871 3 0 -132.144 -5.80207 -115.85
+ 28 211.622 240 2 1 -132.069 -5.68936 -144.45
+ 28 109.183 871 2 0 -132.07 -5.68383 -145.85
+ 28 113.179 240 1 1 -132.069 -5.56684 -174.45
+ 28 170.122 872 1 0 -132.073 -5.55894 -175.85
+ 28 99.5275 240 0 1 -132.149 -5.3957 -204.45
+ 28 108.046 873 0 0 -132.151 -5.38918 -205.85
+ 28 29.4696 862 2 0 -131.681 -7.48526 -145.85
+ 28 84.1164 251 2 1 -129.795 -10.5595 -144.85
+ 28 15.1402 252 2 1 -129.75 -10.736 -144.838
+ 28 65.659 828 2 0 -129.214 -14.2773 -145.85
+ 28 327.071 827 2 0 -129.188 -14.45 -145.887
+Number of digits in this event = 12
+Using G4ParticleGun ...
+8.65946 LIN
proton
Event: 29
-Number of tracker hits in this event = 27
- 29 107.459 755 9 0 -132.159 -29.0175 64.15
- 29 94.2212 239 8 1 -132.16 -29.0195 35.55
- 29 121.4 755 8 0 -132.161 -29.0194 34.15
- 29 118.946 239 7 1 -132.169 -29.0123 5.55
- 29 93.1078 755 7 0 -132.169 -29.0113 4.15
- 29 123.042 239 6 1 -132.169 -28.9911 -24.45
- 29 137.846 755 6 0 -132.168 -28.9897 -25.85
- 29 122.579 239 5 1 -132.158 -28.9602 -54.45
- 29 121.679 755 5 0 -132.158 -28.9592 -55.85
- 29 122.813 239 4 1 -132.15 -28.9397 -84.45
- 29 107.026 755 4 0 -132.15 -28.9391 -85.85
- 29 214.747 239 3 1 -132.152 -28.9264 -114.45
- 29 106.85 755 3 0 -132.151 -28.9248 -115.85
- 29 134.347 240 2 1 -132.144 -28.8889 -144.45
- 29 106.982 755 2 0 -132.143 -28.887 -145.85
- 29 102.272 240 1 1 -132.122 -28.8486 -174.45
- 29 131.126 756 1 0 -132.121 -28.8464 -175.85
- 29 96.6978 240 0 1 -132.106 -28.8003 -204.45
- 29 103.569 756 0 0 -132.102 -28.7978 -205.85
- 29 0.0612312 239 2 1 -132.15 -28.8875 -144.849
- 29 263.155 756 2 0 -132.96 -28.7819 -145.85
- 29 29.3802 596 2 0 -162.68 -60.7859 -146.25
- 29 62.843 595 2 0 -162.689 -60.8501 -146.172
- 29 189.025 594 2 0 -162.652 -61.0509 -146
- 29 10.7532 593 2 0 -162.692 -61.25 -145.873
- 29 294.031 84 2 1 -163.259 -62.3067 -144.85
- 29 420.565 83 2 1 -163.35 -62.391 -144.522
-Number of digits in this event = 14
+Number of tracker hits in this event = 53
+ 29 129.402 512 8 1 -77.5785 118.743 35.55
+ 29 255.124 1492 8 0 -77.5775 118.743 34.15
+ 29 139.85 512 7 1 -77.558 118.736 5.55
+ 29 127.504 1492 7 0 -77.556 118.735 4.15
+ 29 174.537 512 6 1 -77.5208 118.723 -24.45
+ 29 104.91 1492 6 0 -77.5186 118.723 -25.85
+ 29 134.975 512 5 1 -77.4714 118.712 -54.45
+ 29 151.545 1492 5 0 -77.4701 118.712 -55.85
+ 29 207.957 513 4 1 -77.4425 118.704 -84.45
+ 29 104.695 1492 4 0 -77.442 118.704 -85.85
+ 29 123.325 513 3 1 -77.4331 118.701 -114.45
+ 29 263.053 1492 3 0 -77.4338 118.7 -115.85
+ 29 211.664 513 2 1 -77.4472 118.675 -144.45
+ 29 103.467 1492 2 0 -77.4475 118.671 -145.85
+ 29 99.5402 512 1 1 -77.4586 118.608 -174.45
+ 29 94.8402 1492 1 0 -77.4591 118.606 -175.85
+ 29 115.8 512 0 1 -77.4713 118.545 -204.45
+ 29 128.219 1491 0 0 -77.4726 118.541 -205.85
+ 29 61.7762 541 7 1 -71.8293 91.7169 5.15
+ 29 82.4859 679 0 0 -68.8479 -44.0651 -206.25
+ 29 69.7478 678 0 0 -68.8435 -44.25 -206.222
+ 29 175.981 677 0 0 -68.8383 -44.45 -206.193
+ 29 98.2234 676 0 0 -68.833 -44.65 -206.163
+ 29 238.484 675 0 0 -68.8276 -44.85 -206.134
+ 29 103.257 674 0 0 -68.8228 -45.05 -206.104
+ 29 56.6264 673 0 0 -68.8193 -45.25 -206.074
+ 29 63.2199 672 0 0 -68.8156 -45.45 -206.043
+ 29 57.9514 671 0 0 -68.8127 -45.65 -206.012
+ 29 132.255 670 0 0 -68.8093 -45.85 -205.982
+ 29 58.0939 669 0 0 -68.8056 -46.05 -205.95
+ 29 62.9447 668 0 0 -68.8022 -46.25 -205.92
+ 29 64.7566 667 0 0 -68.7986 -46.45 -205.89
+ 29 19.0046 666 0 0 -68.795 -46.65 -205.86
+ 29 491.607 556 0 1 -68.674 -53.4504 -204.85
+ 29 585.865 557 0 1 -68.65 -54.8015 -204.649
+ 29 216.532 621 1 0 -77.6571 -55.807 -176.25
+ 29 109.56 622 1 0 -77.8195 -55.65 -176.074
+ 29 34.9986 688 1 0 -51.999 -42.2955 -176.25
+ 29 181.55 689 1 0 -51.9429 -42.25 -176.138
+ 29 366.461 690 1 0 -51.9774 -42.0499 -176.111
+ 29 121.176 691 1 0 -52.2525 -41.85 -176.135
+ 29 99.8164 692 1 0 -52.5983 -41.6499 -176.056
+ 29 348.922 636 1 1 -52.7666 -41.2868 -174.85
+ 29 43.8661 635 1 1 -52.8501 -41.7953 -174.507
+ 29 157.971 558 0 1 -68.4291 -46.8537 -204.85
+ 29 116.573 559 0 1 -68.2492 -47.0822 -204.577
+ 29 139.985 560 0 1 -68.05 -47.213 -204.573
+ 29 74.7973 514 4 1 -77.25 118.632 -84.6613
+ 29 60.0813 515 4 1 -77.05 118.693 -84.7491
+ 29 148.102 1490 4 0 -74.879 118.345 -85.85
+ 29 54.737 1491 4 0 -74.4204 118.35 -86.1276
+ 29 93.3718 1640 4 0 47.6824 148.231 -86.2499
+ 29 101.288 1641 4 0 48.0602 148.35 -86.1681
+Number of digits in this event = 29
Using G4ParticleGun ...
-9.95234 LIN
+5.11509 LIN
proton
Event: 30
-Number of tracker hits in this event = 45
- 30 125.566 487 9 1 -82.5755 92.0534 65.55
- 30 140.78 1359 9 0 -82.5755 92.052 64.15
- 30 114.494 487 8 1 -82.5774 92.0258 35.55
- 30 298.623 1359 8 0 -82.5779 92.0238 34.15
- 30 116.14 487 7 1 -82.5883 91.9839 5.55
- 30 134.516 1359 7 0 -82.5883 91.983 4.15
- 30 124.299 487 6 1 -82.5889 91.9638 -24.45
- 30 113.271 1359 6 0 -82.5896 91.9625 -25.85
- 30 147.858 487 5 1 -82.6039 91.9362 -54.45
- 30 261.323 1358 5 0 -82.6052 91.9354 -55.85
- 30 115.378 487 4 1 -82.6323 91.9234 -84.45
- 30 208.693 1358 4 0 -82.6332 91.9228 -85.85
- 30 92.4581 486 3 1 -82.6508 91.9141 -114.45
- 30 94.6808 1358 3 0 -82.652 91.9131 -115.85
- 30 183.673 486 2 1 -82.6768 91.8927 -144.45
- 30 101.158 1358 2 0 -82.6783 91.8927 -145.85
- 30 111.497 486 1 1 -82.7092 91.8929 -174.45
- 30 123.104 1358 1 0 -82.7108 91.8929 -175.85
- 30 119.275 486 0 1 -82.7447 91.8896 -204.45
- 30 111.235 1358 0 0 -82.7462 91.8898 -205.85
- 30 76.466 1334 1 0 -107.532 87.0251 -176.25
- 30 89.2516 1626 0 0 -76.2421 145.354 -206.25
- 30 298.27 514 0 1 -77.1184 144.687 -204.849
- 30 142.93 513 0 1 -77.25 144.362 -204.764
- 30 122.241 1780 9 0 23.3023 176.276 63.75
- 30 113.196 1017 9 1 23.5314 176.229 65.15
- 30 16.1844 978 4 1 15.7749 125.178 -84.5978
- 30 15.7575 644 1 1 -51.1245 94.3142 -174.528
- 30 11.6681 573 2 1 -65.4373 113.539 -144.85
- 30 50.1666 663 4 0 -154.934 -47.3843 -86.2496
- 30 71.0911 662 4 0 -154.949 -47.45 -86.1263
- 30 114.312 124 4 1 -155.253 -47.8116 -84.85
- 30 92.3768 654 4 0 -156.53 -49.1703 -85.85
- 30 213.098 129 3 1 -154.186 -29.886 -114.45
- 30 150.916 128 3 1 -154.35 -29.7585 -114.569
- 30 88.1564 486 5 1 -82.65 91.8591 -54.5529
- 30 81.5031 485 5 1 -82.85 91.6875 -54.6343
- 30 15.5436 1357 5 0 -83.5497 91.7404 -55.85
- 30 9.95097 1359 5 0 -83.6414 91.95 -56.2236
- 30 22.6211 1467 5 0 -75.9833 113.578 -56.2499
- 30 129.516 1466 5 0 -75.9829 113.55 -56.187
- 30 16.2955 527 5 1 -74.5431 113.913 -54.85
- 30 187.918 1473 5 0 -72.4017 114.779 -55.8502
- 30 109.575 1474 5 0 -72.3789 114.95 -55.9646
- 30 98.8203 485 8 1 -82.9913 92.8803 35.15
-Number of digits in this event = 21
+Number of tracker hits in this event = 34
+ 30 115.811 873 11 1 -5.37448 -78.5069 125.55
+ 30 405.679 507 11 0 -5.37501 -78.5081 124.15
+ 30 134.04 873 10 1 -5.38291 -78.5258 95.55
+ 30 142.189 507 10 0 -5.38189 -78.5264 94.15
+ 30 250.297 873 9 1 -5.36305 -78.5388 65.55
+ 30 146.771 507 9 0 -5.36229 -78.5381 64.15
+ 30 101.435 873 8 1 -5.344 -78.5266 35.55
+ 30 123.725 507 8 0 -5.34138 -78.5139 34.15
+ 30 190.156 873 7 1 -5.28184 -78.2573 5.55
+ 30 113.516 509 7 0 -5.27958 -78.2443 4.15
+ 30 114.808 874 6 1 -5.23619 -77.9748 -24.45
+ 30 157.768 510 6 0 -5.23365 -77.9612 -25.85
+ 30 106.949 874 5 1 -5.17921 -77.6845 -54.45
+ 30 106.138 511 5 0 -5.17876 -77.6698 -55.85
+ 30 123.996 874 4 1 -5.16834 -77.3665 -84.45
+ 30 121.961 513 4 0 -5.1673 -77.3516 -85.85
+ 30 99.1296 874 3 1 -5.14988 -77.0516 -114.45
+ 30 108.816 515 3 0 -5.14798 -77.0362 -115.85
+ 30 129.705 874 2 1 -5.11653 -76.7156 -144.45
+ 30 118.34 516 2 0 -5.11608 -76.6995 -145.85
+ 30 192.512 874 1 1 -5.10539 -76.3732 -174.45
+ 30 132.206 518 1 0 -5.10357 -76.3555 -175.85
+ 30 117.524 874 0 1 -5.06486 -75.9937 -204.45
+ 30 159.485 520 0 0 -5.06309 -75.9758 -205.85
+ 30 7.08183 89 0 0 -146.365 -162.15 -205.928
+ 30 356.017 365 0 0 69.5228 -107.083 -206.25
+ 30 67.257 1698 0 0 -64.7857 159.927 -206.25
+ 30 612.346 1699 0 0 -64.7894 159.95 -206.24
+ 30 703.882 1700 0 0 -64.8218 160.15 -206.153
+ 30 730.562 1701 0 0 -64.8546 160.35 -206.067
+ 30 733.707 1702 0 0 -64.8896 160.55 -205.976
+ 30 273.323 1703 0 0 -64.9255 160.75 -205.885
+ 30 1605.31 573 0 1 -65.3666 162.98 -204.85
+ 30 1692.69 572 0 1 -65.45 163.402 -204.654
+Number of digits in this event = 25
Using G4ParticleGun ...
-4.62252 LIN
+3.73036 LIN
proton
Event: 31
-Number of tracker hits in this event = 21
- 31 172.408 1176 9 1 55.3454 108.372 65.55
- 31 143.692 1441 9 0 55.3467 108.373 64.15
- 31 100.254 1176 8 1 55.378 108.38 35.55
- 31 99.2622 1441 8 0 55.3789 108.382 34.15
- 31 111.515 1176 7 1 55.3943 108.42 5.55
- 31 212.426 1441 7 0 55.3943 108.422 4.15
- 31 170.094 1176 6 1 55.3876 108.48 -24.45
- 31 115.375 1441 6 0 55.387 108.482 -25.85
- 31 117.21 1176 5 1 55.362 108.54 -54.45
- 31 112.511 1441 5 0 55.3615 108.544 -55.85
- 31 169.329 1176 4 1 55.3462 108.616 -84.45
- 31 175.731 1442 4 0 55.3464 108.619 -85.85
- 31 111.966 1176 3 1 55.3433 108.68 -114.45
- 31 112.84 1442 3 0 55.3438 108.684 -115.85
- 31 123.122 1176 2 1 55.3571 108.769 -144.45
- 31 100.384 1443 2 0 55.3596 108.773 -145.85
- 31 197.637 1176 1 1 55.415 108.865 -174.45
- 31 144.014 1443 1 0 55.4192 108.869 -175.85
- 31 106.664 1177 0 1 55.5312 108.953 -204.45
- 31 104.559 1444 0 0 55.5336 108.959 -205.85
- 31 274.214 1440 7 0 55.3949 108.35 3.8401
-Number of digits in this event = 11
+Number of tracker hits in this event = 16
+ 31 117.589 1302 7 1 80.5982 122.546 5.55
+ 31 159.4 1511 7 0 80.5981 122.547 4.15
+ 31 114.99 1302 6 1 80.5993 122.551 -24.45
+ 31 125.814 1512 6 0 80.599 122.552 -25.85
+ 31 147.388 1302 5 1 80.5961 122.581 -54.45
+ 31 97.6773 1512 5 0 80.5964 122.582 -55.85
+ 31 144.489 1302 4 1 80.6116 122.59 -84.45
+ 31 99.8482 1512 4 0 80.6126 122.591 -85.85
+ 31 84.3342 1302 3 1 80.6331 122.631 -114.45
+ 31 102.913 1512 3 0 80.6342 122.633 -115.85
+ 31 183.896 1303 2 1 80.6536 122.676 -144.45
+ 31 190.798 1512 2 0 80.6548 122.677 -145.85
+ 31 102.267 1303 1 1 80.6716 122.706 -174.45
+ 31 99.3678 1512 1 0 80.672 122.707 -175.85
+ 31 159.738 1303 0 1 80.6798 122.748 -204.45
+ 31 179.6 1513 0 0 80.6804 122.751 -205.85
+Number of digits in this event = 10
Using G4ParticleGun ...
-4.89855 LIN
+8.29441 LIN
proton
Event: 32
-Number of tracker hits in this event = 25
- 32 119.616 296 8 1 -120.847 -71.621 35.55
- 32 118.786 542 8 0 -120.847 -71.6204 34.15
- 32 129.984 296 7 1 -120.842 -71.6103 5.55
- 32 371.287 542 7 0 -120.844 -71.6108 4.15
- 32 106.819 296 6 1 -120.894 -71.6259 -24.45
- 32 106.372 542 6 0 -120.896 -71.6264 -25.85
- 32 101.127 296 5 1 -120.947 -71.6345 -54.45
- 32 100.982 542 5 0 -120.949 -71.6351 -55.85
- 32 105.444 295 4 1 -120.98 -71.649 -84.45
- 32 88.215 542 4 0 -120.982 -71.6487 -85.85
- 32 98.0577 295 3 1 -121.013 -71.6425 -114.45
- 32 155.249 542 3 0 -121.016 -71.6422 -115.85
- 32 155.085 295 2 1 -121.076 -71.6388 -144.45
- 32 114.93 542 2 0 -121.08 -71.6397 -145.85
- 32 91.8626 294 1 1 -121.159 -71.6614 -174.45
- 32 218.513 541 1 0 -121.162 -71.6635 -175.85
- 32 123.694 294 0 1 -121.219 -71.7018 -204.45
- 32 154.597 541 0 0 -121.221 -71.7029 -205.85
- 32 310.697 90 10 0 -123.774 -161.981 93.7502
- 32 137.465 91 10 0 -123.817 -161.95 93.7779
- 32 225.507 1142 8 1 48.5265 -138.719 35.15
- 32 5.30884 313 0 1 -117.35 -10.6968 -204.824
- 32 142.24 683 0 1 -43.3816 -149.881 -204.645
- 32 64.31 1320 13 1 84.2464 -8.11686 185.292
- 32 46.9657 541 7 0 -120.749 -71.65 4.07008
-Number of digits in this event = 14
+Number of tracker hits in this event = 53
+ 32 124.607 879 11 1 -4.09598 18.8566 125.55
+ 32 111.984 994 11 0 -4.0956 18.8574 124.15
+ 32 224.917 879 10 1 -4.08604 18.8727 95.55
+ 32 122.566 994 10 0 -4.08582 18.874 94.15
+ 32 133.442 879 9 1 -4.07974 18.8976 65.55
+ 32 79.5647 994 9 0 -4.08019 18.8995 64.15
+ 32 179.53 879 8 1 -4.0871 18.9393 35.55
+ 32 101.49 994 8 0 -4.0875 18.9413 34.15
+ 32 100.293 879 7 1 -4.09695 18.9857 5.55
+ 32 110.094 994 7 0 -4.09648 18.988 4.15
+ 32 95.8178 879 6 1 -4.09067 19.0377 -24.45
+ 32 111.231 994 6 0 -4.09022 19.0404 -25.85
+ 32 125.019 879 5 1 -4.0805 19.0958 -54.45
+ 32 101.854 995 5 0 -4.08015 19.097 -55.85
+ 32 112.215 879 4 1 -4.07131 19.1223 -84.45
+ 32 105.196 995 4 0 -4.07049 19.1245 -85.85
+ 32 114.545 879 3 1 -4.05353 19.1653 -114.45
+ 32 115.395 995 3 0 -4.05331 19.1705 -115.85
+ 32 134.251 880 2 1 -4.0467 19.2771 -144.45
+ 32 136.214 996 2 0 -4.04695 19.2843 -145.85
+ 32 397.598 880 1 1 -4.04939 19.4327 -174.45
+ 32 143.027 996 1 0 -4.05015 19.4394 -175.85
+ 32 114.08 879 0 1 -4.06771 19.5775 -204.45
+ 32 125.608 997 0 0 -4.06896 19.5842 -205.85
+ 32 149.338 748 1 1 -30.3847 -42.2457 -174.85
+ 32 54.0897 830 0 0 108.689 -14.05 -206.052
+ 32 38.3652 920 7 0 -104.388 4.19096 3.75
+ 32 103.615 921 7 0 -104.356 4.25 3.82627
+ 32 88.6879 922 7 0 -104.369 4.45 3.93453
+ 32 200.654 923 7 0 -104.358 4.65007 3.98972
+ 32 110.485 924 7 0 -104.437 4.85 3.97751
+ 32 135.321 925 7 0 -104.416 5.05 3.92078
+ 32 320.722 383 7 1 -103.525 5.06429 5.15
+ 32 254.38 485 0 1 -82.8736 -32.6616 -204.85
+ 32 160.982 486 0 1 -82.85 -32.5061 -204.733
+ 32 10.0996 820 1 0 -60.9418 -15.9547 -176.25
+ 32 3.7522 586 1 1 -62.8357 -15.586 -174.85
+ 32 318.105 585 1 1 -62.85 -15.5841 -174.842
+ 32 337.699 963 0 1 12.6695 107.721 -204.85
+ 32 54.3145 1591 1 0 -10.9551 138.478 -176.25
+ 32 79.1655 1592 1 0 -11.0729 138.55 -176.093
+ 32 52.6648 841 1 1 -11.7848 139.223 -174.85
+ 32 101.635 840 1 1 -11.85 139.291 -174.716
+ 32 105.696 1579 2 0 -9.22643 136.064 -146.25
+ 32 0.708344 853 2 1 -9.44981 136.093 -144.85
+ 32 196.254 852 2 1 -9.45 136.093 -144.849
+ 32 16.0905 773 0 1 -25.3924 -50.6842 -204.682
+ 32 11.5238 1194 8 1 58.872 126.14 35.4645
+ 32 96.6894 878 8 1 -4.25 18.746 35.4421
+ 32 84.8286 877 8 1 -4.45 18.5599 35.4085
+ 32 114.251 876 8 1 -4.65 18.4362 35.3329
+ 32 289.411 986 8 0 -4.71272 17.3719 34.15
+ 32 208.987 985 8 0 -4.8987 17.25 33.9529
+Number of digits in this event = 26
Using G4ParticleGun ...
-1.28538 LIN
+4.54801 LIN
proton
Event: 33
-Number of tracker hits in this event = 31
- 33 106.302 1278 9 0 112.029 75.8425 64.15
- 33 114.704 1459 8 1 112.047 75.8431 35.55
- 33 135.959 1278 8 0 112.052 75.848 34.15
- 33 126.13 1460 7 1 112.156 75.9483 5.55
- 33 108.64 1279 7 0 112.162 75.9579 4.15
- 33 123.956 1460 6 1 112.253 76.1543 -24.45
- 33 128.663 1280 6 0 112.256 76.1659 -25.85
- 33 115.766 1460 5 1 112.295 76.3874 -54.45
- 33 140.542 1281 5 0 112.299 76.395 -55.85
- 33 185.995 1461 4 1 112.386 76.5154 -84.45
- 33 116.877 1282 4 0 112.388 76.5237 -85.85
- 33 125.248 1461 3 1 112.409 76.684 -114.45
- 33 107.632 1283 3 0 112.412 76.6879 -115.85
- 33 1202.47 1461 2 1 112.518 76.8487 -144.45
- 33 1154.28 1462 2 1 112.55 76.9302 -144.62
- 33 1900.35 1287 2 0 112.779 77.487 -145.85
- 33 200.781 1288 2 0 112.847 77.65 -146.212
- 33 7097.16 1483 1 1 116.89 89.2011 -174.45
- 33 2885 1460 2 1 112.35 76.9298 -144.482
- 33 974.912 1459 2 1 112.15 77.1792 -144.761
- 33 778.31 1290 2 0 111.393 78.1962 -145.85
- 33 2737.85 1291 2 0 111.354 78.25 -145.907
- 33 1646.65 1292 2 0 111.206 78.45 -146.127
- 33 2410.75 1170 3 0 169.014 54.1688 -116.25
- 33 4994.44 1169 3 0 169.311 54.05 -116.103
- 33 193.234 1168 3 0 169.841 53.85 -115.859
- 33 2074.75 1760 3 1 172.155 52.9517 -114.85
- 33 2356.02 1761 3 1 172.35 52.8762 -114.765
- 33 2649.59 1762 3 1 172.55 52.8033 -114.677
- 33 3434.96 1763 3 1 172.75 52.7296 -114.584
- 33 2241.11 1764 3 1 172.95 52.6577 -114.493
-Number of digits in this event = 28
+Number of tracker hits in this event = 104
+ 33 145.151 728 9 1 -34.3668 112.772 65.55
+ 33 110.142 1463 9 0 -34.3646 112.77 64.15
+ 33 195.485 728 8 1 -34.3194 112.736 35.55
+ 33 109.385 1462 8 0 -34.3154 112.735 34.15
+ 33 153.53 729 7 1 -34.2341 112.712 5.55
+ 33 128.373 1462 7 0 -34.2298 112.711 4.15
+ 33 106.833 729 6 1 -34.142 112.698 -24.45
+ 33 193.97 1462 6 0 -34.1365 112.697 -25.85
+ 33 146.1 730 5 1 -34.0197 112.678 -54.45
+ 33 107.754 1462 5 0 -34.0141 112.677 -55.85
+ 33 97.8276 730 4 1 -33.8969 112.649 -84.45
+ 33 100.214 1462 4 0 -33.8906 112.65 -85.85
+ 33 113.973 731 3 1 -33.7676 112.652 -114.45
+ 33 164.135 1462 3 0 -33.7622 112.653 -115.85
+ 33 101.14 731 2 1 -33.654 112.699 -144.45
+ 33 39362.2 1462 2 0 -33.649 112.699 -145.85
+ 33 5773.05 1463 2 0 -33.6503 112.75 -146.073
+ 33 1431.12 1464 2 0 -33.6589 112.95 -146.13
+ 33 1433.97 1465 2 0 -33.669 113.15 -146.188
+ 33 152.087 1466 2 0 -33.6809 113.35 -146.245
+ 33 1202.14 1461 2 0 -33.5999 112.55 -146.044
+ 33 63.8646 1628 5 1 145.75 61.6418 -54.6733
+ 33 1346.32 753 1 1 -29.3066 113.366 -174.45
+ 33 116.434 754 1 1 -29.25 113.39 -174.816
+ 33 1569.22 1466 1 0 -29.0843 113.474 -175.85
+ 33 2093.56 781 0 1 -23.7511 115.736 -204.45
+ 33 2287.81 1478 0 0 -23.458 115.902 -205.85
+ 33 120.058 1479 0 0 -23.3821 115.95 -206.23
+ 33 1551.93 730 2 1 -33.9635 113.659 -144.85
+ 33 294.792 729 2 1 -34.05 113.922 -144.52
+ 33 1686.55 1560 3 0 -44.5636 132.176 -116.25
+ 33 713.801 1561 3 0 -44.6642 132.35 -115.98
+ 33 1855.39 674 3 1 -45.1259 133.087 -114.85
+ 33 663.137 673 3 1 -45.25 133.283 -114.548
+ 33 162.977 1460 2 0 -34.1393 112.35 -146.136
+ 33 181.77 1459 2 0 -34.4224 112.15 -146.177
+ 33 235.851 1458 2 0 -34.7041 111.95 -146.218
+ 33 42.2821 732 2 1 -33.4666 111.729 -144.85
+ 33 129.266 733 2 1 -33.45 111.64 -144.74
+ 33 84.195 1341 3 0 -27.1478 88.3926 -116.25
+ 33 103.291 1340 3 0 -27.109 88.25 -116.075
+ 33 163.947 766 3 1 -26.8457 87.2453 -114.85
+ 33 188.185 1230 4 0 -18.7612 66.2285 -86.25
+ 33 148.668 1229 4 0 -18.6919 66.05 -86.0065
+ 33 167.604 808 4 1 -18.354 65.1985 -84.85
+ 33 17.6316 809 4 1 -18.25 64.9369 -84.4949
+ 33 145.751 1118 5 0 -10.7068 43.8462 -56.25
+ 33 72.4569 1117 5 0 -10.6368 43.65 -55.9873
+ 33 139.944 848 5 1 -10.327 42.8028 -54.85
+ 33 57.078 849 5 1 -10.25 42.5923 -54.5674
+ 33 48.2292 1002 6 0 -3.68132 20.538 -26.25
+ 33 143.699 1001 6 0 -3.65521 20.45 -26.1371
+ 33 21.1601 1000 6 0 -3.5965 20.25 -25.8801
+ 33 207.518 883 6 1 -3.36039 19.4485 -24.85
+ 33 32.4535 878 7 0 4.3224 -4.38963 3.75
+ 33 113.334 877 7 0 4.34189 -4.45 3.8223
+ 33 44.8465 876 7 0 4.40613 -4.65 4.06065
+ 33 219.05 923 7 1 4.70104 -5.56516 5.15
+ 33 87.9772 749 8 0 13.2803 -30.1346 33.75
+ 33 134.266 748 8 0 13.3206 -30.25 33.8843
+ 33 13.2107 747 8 0 13.3895 -30.45 34.1173
+ 33 362.56 968 8 1 13.689 -31.336 35.15
+ 33 22.943 626 9 0 22.4004 -54.8031 63.75
+ 33 116.068 625 9 0 22.4179 -54.85 63.8072
+ 33 41.1734 624 9 0 22.4932 -55.05 64.0521
+ 33 34.2914 1013 9 1 22.8269 -55.961 65.15
+ 33 201.071 1014 9 1 22.85 -56.0243 65.2262
+ 33 77.4126 508 10 0 30.439 -78.3127 93.75
+ 33 411.656 507 10 0 30.4857 -78.45 93.9259
+ 33 63.361 1053 10 1 30.8104 -79.4057 95.15
+ 33 189.411 1054 10 1 30.85 -79.5227 95.2999
+ 33 41.9874 389 11 0 38.3614 -102.267 123.75
+ 33 112.449 388 11 0 38.3888 -102.35 123.854
+ 33 54.0073 387 11 0 38.4551 -102.55 124.105
+ 33 178.03 1093 11 1 38.7312 -103.377 125.15
+ 33 33.6658 276 12 0 43.9695 -124.898 153.75
+ 33 117.922 275 12 0 43.982 -124.95 153.819
+ 33 25.0875 274 12 0 44.0307 -125.15 154.085
+ 33 81.4494 1120 12 1 44.2223 -125.94 155.15
+ 33 113.607 1121 12 1 44.25 -126.054 155.304
+ 33 59.3253 174 13 0 48.2918 -145.268 183.75
+ 33 121.987 173 13 0 48.3089 -145.35 183.871
+ 33 395.359 1142 13 1 48.4953 -146.21 185.15
+ 33 22.9771 71 14 0 53.8885 -165.913 213.75
+ 33 135.441 70 14 0 53.8985 -165.95 213.803
+ 33 30.1546 69 14 0 53.9545 -166.15 214.095
+ 33 174.548 1170 14 1 54.1477 -166.874 215.15
+ 33 284.664 969 8 1 13.8633 -31.6118 35.55
+ 33 157.346 844 5 1 -11.1229 44.0544 -54.8498
+ 33 272.433 701 1 1 -39.6739 136.053 -174.45
+ 33 53.0925 1585 1 0 -39.967 137.2 -175.85
+ 33 191.724 1586 1 0 -40.0053 137.35 -176.033
+ 33 216.309 670 0 1 -45.9494 160.695 -204.45
+ 33 42.5528 1708 0 0 -46.2474 161.84 -205.85
+ 33 197.202 1709 0 0 -46.2761 161.95 -205.985
+ 33 7.36273 1710 0 0 -46.3281 162.15 -206.23
+ 33 74.8112 736 1 1 -32.6582 98.0766 -174.45
+ 33 48.0719 737 1 1 -32.65 97.9576 -174.681
+ 33 7.27422 1386 1 0 -32.6084 97.3569 -175.85
+ 33 205.675 1385 1 0 -32.6079 97.35 -175.863
+ 33 115.262 742 0 1 -31.5953 82.652 -204.45
+ 33 79.4111 1309 0 0 -31.5433 81.9321 -205.85
+ 33 59.8407 1308 0 0 -31.5374 81.85 -206.01
+ 33 113.37 1461 3 0 -33.7432 112.55 -116.196
+Number of digits in this event = 58
Using G4ParticleGun ...
-9.06144 LIN
+3.23068 LIN
proton
Event: 34
-Number of tracker hits in this event = 24
- 34 111.661 1253 11 1 70.8194 -9.41034 125.55
- 34 101.128 853 11 0 70.8204 -9.41033 124.15
- 34 165.696 1253 10 1 70.8421 -9.41218 95.55
- 34 100.339 853 10 0 70.8427 -9.41197 94.15
- 34 142.797 1254 9 1 70.8554 -9.40535 65.55
- 34 111.461 853 9 0 70.8563 -9.4044 64.15
- 34 114.85 1254 8 1 70.8775 -9.38504 35.55
- 34 141.742 853 8 0 70.8792 -9.38366 34.15
- 34 131.152 1254 7 1 70.9186 -9.354 5.55
- 34 148.52 853 7 0 70.9208 -9.3526 4.15
- 34 98.2143 1254 6 1 70.9644 -9.32391 -24.45
- 34 88.5633 853 6 0 70.9652 -9.32176 -25.85
- 34 133.881 1254 5 1 70.9838 -9.2783 -54.45
- 34 138.451 853 5 0 70.9847 -9.27561 -55.85
- 34 100.212 1254 4 1 71.0074 -9.2207 -84.45
- 34 125.069 854 4 0 71.0086 -9.21827 -85.85
- 34 139.542 1254 3 1 71.0358 -9.16788 -114.45
- 34 105.032 854 3 0 71.0382 -9.16543 -115.85
- 34 129.098 1255 2 1 71.0859 -9.11288 -144.45
- 34 87.1854 854 2 0 71.0877 -9.11069 -145.85
- 34 109.027 1255 1 1 71.1244 -9.06789 -174.45
- 34 127.773 854 1 0 71.1269 -9.0656 -175.85
- 34 242.593 1255 0 1 71.1777 -9.02202 -204.45
- 34 132.79 855 0 0 71.1805 -9.02055 -205.85
-Number of digits in this event = 15
+Number of tracker hits in this event = 29
+ 34 121.266 921 11 1 4.42742 -64.0051 125.55
+ 34 99.7441 580 11 0 4.42664 -64.0045 124.15
+ 34 125.717 921 10 1 4.40439 -63.9898 95.55
+ 34 121.637 580 10 0 4.40509 -63.9913 94.15
+ 34 113.037 921 9 1 4.42476 -64.0257 65.55
+ 34 247.822 580 9 0 4.42723 -64.0263 64.15
+ 34 105.363 922 8 1 4.4828 -64.0426 35.55
+ 34 97.0348 580 8 0 4.48425 -64.0444 34.15
+ 34 102.071 922 7 1 4.51825 -64.0838 5.55
+ 34 137.259 579 7 0 4.51694 -64.0868 4.15
+ 34 95.6844 922 6 1 4.48485 -64.1469 -24.45
+ 34 108.913 579 6 0 4.48223 -64.1487 -25.85
+ 34 106.991 921 5 1 4.43388 -64.1884 -54.45
+ 34 112.111 579 5 0 4.42978 -64.1893 -55.85
+ 34 136.966 921 4 1 4.34247 -64.2082 -84.45
+ 34 193.892 579 4 0 4.3359 -64.2095 -85.85
+ 34 127.192 920 3 1 4.20418 -64.2376 -114.45
+ 34 125.415 579 3 0 4.19794 -64.2376 -115.85
+ 34 382.366 920 2 1 4.06517 -64.2391 -144.45
+ 34 135.355 579 2 0 4.05815 -64.2412 -145.85
+ 34 100.381 919 1 1 3.91227 -64.2771 -174.45
+ 34 133.566 578 1 0 3.90654 -64.2786 -175.85
+ 34 178.877 918 0 1 3.78977 -64.3098 -204.45
+ 34 99.6533 578 0 0 3.78447 -64.3124 -205.85
+ 34 89.0243 922 4 1 4.45005 -64.22 -84.5987
+ 34 68.2782 923 4 1 4.65 -64.314 -84.7698
+ 34 46.9042 568 4 0 7.99333 -66.3632 -85.85
+ 34 217.019 567 4 0 8.13091 -66.45 -85.8752
+ 34 384.865 566 4 0 8.40289 -66.65 -85.8982
+Number of digits in this event = 16
Using G4ParticleGun ...
-7.04407 LIN
+1.78109 LIN
proton
Event: 35
-Number of tracker hits in this event = 30
- 35 112.46 407 9 1 -98.69 82.8054 65.55
- 35 131.725 1313 9 0 -98.6907 82.8035 64.15
- 35 125.022 407 8 1 -98.7095 82.7687 35.55
- 35 113.638 1313 8 0 -98.7102 82.7666 34.15
- 35 101.899 407 7 1 -98.7269 82.7271 5.55
- 35 230.797 1313 7 0 -98.7275 82.7263 4.15
- 35 239.097 407 6 1 -98.7401 82.7148 -24.45
- 35 99.1785 1313 6 0 -98.7413 82.7137 -25.85
- 35 135.559 406 5 1 -98.7663 82.6878 -54.45
- 35 130.215 1313 5 0 -98.7666 82.6862 -55.85
- 35 130.085 406 4 1 -98.7814 82.6543 -84.45
- 35 106.362 1313 4 0 -98.7828 82.6532 -85.85
- 35 111.251 406 3 1 -98.81 82.6344 -114.45
- 35 150.145 1312 3 0 -98.8115 82.6334 -115.85
- 35 165.295 406 2 1 -98.8428 82.6139 -144.45
- 35 293.237 1312 2 0 -98.8451 82.6132 -145.85
- 35 173.648 406 1 1 -98.8887 82.5988 -174.45
- 35 170.623 1312 1 0 -98.891 82.5999 -175.85
- 35 115.814 406 0 1 -98.9385 82.6218 -204.45
- 35 126.836 1312 0 0 -98.9405 82.6241 -205.85
- 35 258.822 285 7 0 161.522 -123.032 3.75
- 35 152.14 284 7 0 161.73 -123.15 3.9298
- 35 104.404 286 7 0 162.079 -122.95 3.98965
- 35 83.0701 407 2 1 -98.7498 82.5842 -144.572
- 35 121.841 452 1 1 -89.5113 81.9519 -174.451
- 35 124.243 1307 1 0 -89.3119 81.6251 -175.85
- 35 99.7318 471 0 1 -85.7698 74.4305 -204.45
- 35 84.5409 1269 0 0 -85.8452 73.9485 -205.85
- 35 31.4036 1268 0 0 -85.8691 73.85 -206.134
- 35 21.1371 1312 7 0 -98.6676 82.6499 4.07095
-Number of digits in this event = 20
+Number of tracker hits in this event = 26
+ 35 127.594 894 11 1 -1.17605 -50.4228 125.55
+ 35 166.143 648 11 0 -1.17464 -50.4254 124.15
+ 35 193.156 894 10 1 -1.15299 -50.4878 95.55
+ 35 126.042 647 10 0 -1.15003 -50.4896 94.15
+ 35 160.666 894 9 1 -1.08176 -50.5181 65.55
+ 35 129.222 647 9 0 -1.07581 -50.5189 64.15
+ 35 114.54 895 8 1 -0.948863 -50.5285 35.55
+ 35 104.375 647 8 0 -0.942681 -50.5276 34.15
+ 35 140.648 896 7 1 -0.806396 -50.4998 5.55
+ 35 103.723 647 7 0 -0.802816 -50.4994 4.15
+ 35 259.586 896 6 1 -0.743099 -50.5024 -24.45
+ 35 130.279 647 6 0 -0.738181 -50.4998 -25.85
+ 35 245.563 897 5 1 -0.639108 -50.4472 -54.45
+ 35 104.518 648 5 0 -0.633961 -50.4438 -55.85
+ 35 125.33 897 4 1 -0.523751 -50.3667 -84.45
+ 35 116.262 648 4 0 -0.52028 -50.3598 -85.85
+ 35 110.432 898 3 1 -0.449925 -50.2121 -114.45
+ 35 127.676 649 3 0 -0.446124 -50.2048 -115.85
+ 35 128.162 898 2 1 -0.363462 -50.0587 -144.45
+ 35 133.146 649 2 0 -0.360993 -50.0537 -145.85
+ 35 111.664 898 1 1 -0.320215 -49.9489 -174.45
+ 35 123.208 650 1 0 -0.319503 -49.9465 -175.85
+ 35 117.402 898 0 1 -0.311661 -49.896 -204.45
+ 35 151.967 650 0 0 -0.3134 -49.8934 -205.85
+ 35 25.5838 651 0 0 -0.269966 -49.85 -206.198
+ 35 16.4351 896 5 1 -0.65 -50.4433 -54.7804
+Number of digits in this event = 17
Using G4ParticleGun ...
-4.46056 LIN
+8.46329 LIN
proton
Event: 36
-Number of tracker hits in this event = 43
- 36 128.27 960 11 1 12.1504 38.0223 125.55
- 36 95.0538 1089 11 0 12.1506 38.0236 124.15
- 36 212.222 960 10 1 12.1485 38.0565 95.55
- 36 145.477 1090 10 0 12.1494 38.0594 94.15
- 36 132.828 960 9 1 12.1661 38.1149 65.55
- 36 94.5338 1090 9 0 12.1659 38.1183 64.15
- 36 108.424 960 8 1 12.1659 38.1869 35.55
- 36 125.549 1090 8 0 12.1647 38.19 34.15
- 36 111.549 960 7 1 12.1366 38.2461 5.55
- 36 165.033 1090 7 0 12.1361 38.2483 4.15
- 36 115.755 960 6 1 12.1217 38.2943 -24.45
- 36 112.1 1091 6 0 12.1215 38.2963 -25.85
- 36 98.2278 960 5 1 12.1211 38.3393 -54.45
- 36 96.5927 1091 5 0 12.1202 38.3411 -55.85
- 36 85.4097 960 4 1 12.1011 38.3749 -84.45
- 36 136.851 1091 4 0 12.1012 38.3757 -85.85
- 36 235.88 960 3 1 12.104 38.3923 -114.45
- 36 115.544 1091 3 0 12.1043 38.3915 -115.85
- 36 127.509 960 2 1 12.1196 38.3773 -144.45
- 36 128.854 1091 2 0 12.1211 38.375 -145.85
- 36 112.306 960 1 1 12.1541 38.3266 -174.45
- 36 188.955 1091 1 0 12.1535 38.3232 -175.85
- 36 116.013 960 0 1 12.1364 38.2546 -204.45
- 36 188.081 1091 0 0 12.1346 38.2527 -205.85
- 36 10.1839 1090 0 0 12.107 38.25 -206.241
- 36 57.1264 1009 0 0 25.7192 21.9525 -206.25
- 36 63.2587 959 2 1 12.0499 38.4184 -144.507
- 36 174.999 958 2 1 11.85 38.4387 -144.609
- 36 50.6438 957 2 1 11.65 38.4916 -144.673
- 36 99.2476 956 2 1 11.4489 38.5426 -144.727
- 36 68.2206 955 2 1 11.25 38.6081 -144.751
- 36 80.1749 1095 2 0 8.43815 39.2062 -145.85
- 36 134.731 1096 2 0 8.2787 39.25 -145.859
- 36 30.8502 921 2 1 4.34074 39.7798 -144.85
- 36 63.5232 920 2 1 4.25 39.7916 -144.809
- 36 81.9286 919 2 1 4.04955 39.8441 -144.727
- 36 49.6639 918 2 1 3.85 39.9197 -144.659
- 36 57.6385 917 2 1 3.64984 39.9114 -144.604
- 36 88.8603 916 2 1 3.45 39.8654 -144.662
- 36 96.8225 915 2 1 3.25 39.8168 -144.678
- 36 61.4467 914 2 1 3.05 39.5925 -144.728
- 36 392.55 1058 2 0 -10.2549 31.729 -146.25
- 36 58.6121 1059 2 0 -10.4401 31.8501 -145.975
-Number of digits in this event = 16
+Number of tracker hits in this event = 23
+ 36 126.236 570 10 1 -66.0425 71.3155 95.55
+ 36 108.746 1256 10 0 -66.0424 71.3154 94.15
+ 36 132.125 570 9 1 -66.0407 71.3126 65.55
+ 36 134.69 1256 9 0 -66.0399 71.3126 64.15
+ 36 125.67 570 8 1 -66.0207 71.3127 35.55
+ 36 116.228 1256 8 0 -66.0193 71.3125 34.15
+ 36 160.992 570 7 1 -65.9895 71.3061 5.55
+ 36 93.9919 1256 7 0 -65.9881 71.3048 4.15
+ 36 164.861 570 6 1 -65.9558 71.279 -24.45
+ 36 118.51 1256 6 0 -65.9526 71.2778 -25.85
+ 36 105.9 570 5 1 -65.8869 71.2555 -54.45
+ 36 128.683 1256 5 0 -65.8826 71.2548 -55.85
+ 36 110.62 571 4 1 -65.7976 71.241 -84.45
+ 36 104.969 1255 4 0 -65.7951 71.2405 -85.85
+ 36 116.976 571 3 1 -65.7445 71.2314 -114.45
+ 36 94.0567 1255 3 0 -65.7425 71.2314 -115.85
+ 36 186.282 571 2 1 -65.7023 71.2297 -144.45
+ 36 163.406 1255 2 0 -65.6994 71.2283 -145.85
+ 36 119.087 572 1 1 -65.6366 71.2031 -174.45
+ 36 105.093 1255 1 0 -65.6336 71.2017 -175.85
+ 36 106.858 572 0 1 -65.5736 71.1713 -204.45
+ 36 109.227 1255 0 0 -65.5726 71.1723 -205.85
+ 36 230.099 572 2 1 -65.65 71.2597 -144.677
+Number of digits in this event = 11
Using G4ParticleGun ...
-8.6736 LIN
+6.72841 LIN
proton
Event: 37
-Number of tracker hits in this event = 20
- 37 113.251 1369 9 1 93.997 87.5248 65.55
- 37 115.51 1337 9 0 93.9978 87.5238 64.15
- 37 103.491 1369 8 1 94.0162 87.502 35.55
- 37 107.46 1337 8 0 94.0179 87.5006 34.15
- 37 110.128 1369 7 1 94.0516 87.4725 5.55
- 37 169.061 1337 7 0 94.0531 87.4717 4.15
- 37 168.33 1369 6 1 94.0819 87.4573 -24.45
- 37 135.756 1337 6 0 94.0834 87.4564 -25.85
- 37 102.247 1369 5 1 94.1146 87.4383 -54.45
- 37 144.563 1336 5 0 94.1162 87.4376 -55.85
- 37 101.891 1369 4 1 94.1482 87.4199 -84.45
- 37 109.839 1336 4 0 94.1505 87.419 -85.85
- 37 148.191 1370 3 1 94.1967 87.4034 -114.45
- 37 110.544 1336 3 0 94.1992 87.4027 -115.85
- 37 147.213 1370 2 1 94.248 87.3923 -144.45
- 37 133.207 1336 2 0 94.2501 87.392 -145.85
- 37 162.31 1370 1 1 94.2962 87.3881 -174.45
- 37 150.929 1336 1 0 94.2984 87.3884 -175.85
- 37 105.015 1370 0 1 94.3429 87.3953 -204.45
- 37 102.89 1336 0 0 94.3445 87.3952 -205.85
-Number of digits in this event = 10
+Number of tracker hits in this event = 189
+ 37 148.996 1297 9 1 79.5952 100.444 65.55
+ 37 111.6 1401 9 0 79.5943 100.443 64.15
+ 37 96.4213 1297 8 1 79.5739 100.414 35.55
+ 37 146.485 1401 8 0 79.574 100.414 34.15
+ 37 96.3774 1297 7 1 79.5764 100.398 5.55
+ 37 350.783 1401 7 0 79.5752 100.393 4.15
+ 37 55.0519 1332 8 0 69.2702 86.5895 33.75
+ 37 218.484 1295 6 1 79.1602 99.9007 -24.45
+ 37 342.289 1294 6 1 79.05 99.7874 -24.507
+ 37 287.65 1293 6 1 78.85 99.5818 -24.6101
+ 37 352.207 1292 6 1 78.65 99.3765 -24.7146
+ 37 65.9592 1291 6 1 78.45 99.1725 -24.8194
+ 37 21.5845 1385 6 0 76.5009 97.1681 -25.85
+ 37 339.82 1384 6 0 76.4834 97.15 -25.8593
+ 37 308.713 1383 6 0 76.2893 96.95 -25.962
+ 37 253.053 1382 6 0 76.095 96.75 -26.0653
+ 37 192.112 1381 6 0 75.8994 96.55 -26.1695
+ 37 7.06843 1015 5 1 23.0562 42.1786 -54.45
+ 37 306.581 1014 5 1 23.05 42.173 -54.4529
+ 37 260.146 1013 5 1 22.85 41.9905 -54.5477
+ 37 278.37 1012 5 1 22.65 41.8075 -54.6429
+ 37 304.628 1011 5 1 22.45 41.6242 -54.7398
+ 37 49.1967 1010 5 1 22.25 41.442 -54.8359
+ 37 200.908 1097 5 0 20.1228 39.5393 -55.85
+ 37 470.505 1096 5 0 20.023 39.45 -55.8976
+ 37 294.066 1095 5 0 19.7998 39.25 -56.0042
+ 37 306.003 1094 5 0 19.5785 39.05 -56.1115
+ 37 75.8963 1093 5 0 19.3587 38.85 -56.2178
+ 37 166.431 708 4 1 -38.3328 -14.0194 -84.45
+ 37 305.979 707 4 1 -38.45 -14.1226 -84.5085
+ 37 360.09 706 4 1 -38.65 -14.2984 -84.6076
+ 37 250.84 705 4 1 -38.85 -14.4749 -84.7065
+ 37 103.249 704 4 1 -39.05 -14.651 -84.8039
+ 37 290.393 817 4 0 -41.1523 -16.5158 -85.85
+ 37 466.235 816 4 0 -41.3037 -16.65 -85.9255
+ 37 274.536 815 4 0 -41.5297 -16.85 -86.0379
+ 37 282.02 814 4 0 -41.7554 -17.05 -86.1511
+ 37 73.7599 409 3 1 -98.287 -66.8438 -114.45
+ 37 244.921 408 3 1 -98.35 -66.8958 -114.48
+ 37 240.833 407 3 1 -98.55 -67.0606 -114.577
+ 37 266.532 406 3 1 -98.75 -67.2258 -114.673
+ 37 254.255 405 3 1 -98.95 -67.3905 -114.769
+ 37 299.257 553 3 0 -101.208 -69.2515 -115.85
+ 37 467.702 552 3 0 -101.449 -69.45 -115.965
+ 37 451.242 551 3 0 -101.691 -69.65 -116.083
+ 37 146.373 550 3 0 -101.931 -69.85 -116.201
+ 37 50.5157 107 2 1 -158.708 -117.13 -144.45
+ 37 291.264 106 2 1 -158.75 -117.162 -144.468
+ 37 269.036 105 2 1 -158.95 -117.315 -144.557
+ 37 393.198 104 2 1 -159.15 -117.469 -144.647
+ 37 323.573 103 2 1 -159.35 -117.623 -144.736
+ 37 80.8874 102 2 1 -159.55 -117.775 -144.825
+ 37 395.572 302 2 0 -161.891 -119.552 -145.85
+ 37 793.581 301 2 0 -162.153 -119.75 -145.964
+ 37 768.654 300 2 0 -162.42 -119.95 -146.079
+ 37 170.392 299 2 0 -162.686 -120.15 -146.193
+ 37 113.965 1169 10 0 62.5013 53.9806 93.75
+ 37 25.4054 1168 10 0 62.4535 53.8499 94.07
+ 37 102.855 1211 10 1 62.2923 53.3995 95.15
+ 37 57.7644 1210 10 1 62.25 53.2876 95.4183
+ 37 45.4208 1108 11 0 54.1283 41.7185 123.75
+ 37 65.815 1107 11 0 54.0835 41.65 123.918
+ 37 99.8171 1168 11 1 53.7436 41.1179 125.15
+ 37 23.7745 1167 11 1 53.65 40.9692 125.471
+ 37 157.699 1073 12 0 41.5439 34.7957 153.75
+ 37 112.746 1104 12 1 41.0019 34.4898 155.15
+ 37 1.82339 1103 12 1 40.85 34.4139 155.541
+ 37 117.692 1020 13 0 19.7027 24.166 183.75
+ 37 20.29 1019 13 0 19.4604 24.05 184.074
+ 37 118.33 992 13 1 18.6418 23.7105 185.15
+ 37 57.7891 991 13 1 18.45 23.6426 185.412
+ 37 62.8246 964 14 0 -6.30581 12.9152 213.75
+ 37 83.3523 963 14 0 -6.47457 12.85 213.943
+ 37 60.5218 862 14 1 -7.50989 12.4666 215.15
+ 37 99.6521 861 14 1 -7.6503 12.414 215.309
+ 37 3.63003 860 14 1 -7.85 12.3474 215.54
+ 37 164.184 1173 10 0 63.4649 54.7655 93.75
+ 37 163.093 1172 10 0 63.4225 54.65 94.0242
+ 37 292.838 1215 10 1 63.1938 54.0966 95.1501
+ 37 19.9558 1118 11 0 73.3982 43.6793 123.75
+ 37 81.3721 1117 11 0 73.4269 43.65 123.83
+ 37 28.7363 1268 11 1 73.8257 43.1083 125.15
+ 37 86.5375 1269 11 1 73.85 43.0742 125.231
+ 37 29.4243 979 12 0 70.3468 15.9417 153.75
+ 37 244.428 978 12 0 70.3349 15.8499 153.844
+ 37 133.668 977 12 0 70.3087 15.65 154.053
+ 37 361.739 1250 12 1 70.1929 14.6505 155.15
+ 37 66.5401 874 13 0 57.4422 -5.10326 183.751
+ 37 93.2942 873 13 0 57.3522 -5.25 183.952
+ 37 134.27 1184 13 1 56.9999 -6.1101 185.15
+ 37 94.85 531 14 0 44.6124 -73.6542 213.75
+ 37 140.237 530 14 0 44.5959 -73.8501 213.832
+ 37 129.778 529 14 0 44.5877 -74.0503 213.908
+ 37 123.132 528 14 0 44.6035 -74.25 213.988
+ 37 127.318 527 14 0 44.6548 -74.45 214.088
+ 37 6.31917 1125 14 1 45.2459 -76.7645 215.15
+ 37 197.609 1126 14 1 45.25 -76.7807 215.157
+ 37 153.067 1127 14 1 45.45 -77.3981 215.42
+ 37 98.3644 1128 14 1 45.65 -77.9365 215.508
+ 37 144.842 1129 14 1 45.85 -78.3507 215.539
+ 37 131.225 1130 14 1 46.0502 -78.6999 215.517
+ 37 226.081 1131 14 1 46.25 -79.0423 215.441
+ 37 87.9855 1132 14 1 46.45 -79.5944 215.276
+ 37 33.5219 489 14 0 46.969 -82.1609 214.15
+ 37 76.7553 488 14 0 46.9878 -82.25 214.115
+ 37 54.2297 487 14 0 47.0075 -82.4501 214.038
+ 37 84.8288 486 14 0 47.0025 -82.65 213.98
+ 37 51.2487 485 14 0 47 -82.85 213.916
+ 37 49.244 484 14 0 47.0156 -83.05 213.832
+ 37 103.721 1142 13 1 48.5428 -140.15 185.55
+ 37 49.3132 1141 13 1 48.45 -139.993 185.313
+ 37 70.4608 204 13 0 48.0591 -139.265 184.15
+ 37 72.687 205 13 0 47.9716 -139.15 183.932
+ 37 177.032 250 13 0 22.3603 -129.974 183.75
+ 37 62.474 1008 13 1 21.747 -130.363 185.15
+ 37 62.484 1007 13 1 21.65 -130.419 185.381
+ 37 68.6622 1006 13 1 21.3881 -130.365 185.55
+ 37 91.9108 1005 13 1 21.25 -130.329 185.439
+ 37 25.4071 1004 13 1 21.05 -130.32 185.202
+ 37 150.611 251 13 0 19.8641 -129.95 184.026
+ 37 1.41714 1140 13 1 48.25 -140.377 185.175
+ 37 68.6811 526 14 0 44.331 -74.65 214.007
+ 37 188.44 1120 14 1 44.0775 -75.6551 215.15
+ 37 132.969 1297 6 1 79.562 100.285 -24.45
+ 37 162.566 1400 6 0 79.6397 100.203 -25.85
+ 37 120.492 1305 5 1 81.2175 98.539 -54.45
+ 37 97.5537 1391 5 0 81.2942 98.4557 -55.85
+ 37 117.217 1314 4 1 82.8686 96.7528 -84.45
+ 37 135.327 1382 4 0 82.9471 96.6701 -85.85
+ 37 110.73 1322 3 1 84.5528 94.9855 -114.45
+ 37 119.456 1373 3 0 84.6326 94.9022 -115.85
+ 37 105.246 1331 2 1 86.2618 93.1976 -144.45
+ 37 172.005 1364 2 0 86.342 93.1137 -145.85
+ 37 92.3389 1339 1 1 87.9724 91.4036 -174.45
+ 37 98.5144 1355 1 0 88.0532 91.3194 -175.85
+ 37 120.129 1348 0 1 89.7124 89.5989 -204.45
+ 37 253.33 1347 0 0 89.7951 89.5151 -205.85
+ 37 150.278 1270 0 0 62.9546 74.0517 -206.25
+ 37 64.1559 1269 0 0 62.9561 74.0499 -206.243
+ 37 1.50818 1271 0 0 62.8974 74.25 -205.851
+ 37 1.88478 1193 0 1 58.8444 81.8202 -204.85
+ 37 0.603179 1339 0 0 55.9187 87.9921 -205.85
+ 37 106.153 1134 0 1 46.8502 103.8 -204.85
+ 37 96.2783 1133 0 1 46.85 103.801 -204.85
+ 37 56.0522 1346 0 0 89.853 89.45 -206.207
+ 37 187.946 1399 6 0 79.718 100.15 -26.1845
+ 37 73.2286 560 0 1 -67.85 141.731 -204.534
+ 37 262.382 1269 5 1 74.0394 102.847 -54.45
+ 37 279.604 1414 5 0 73.7847 102.971 -55.85
+ 37 268.72 1242 4 1 68.5352 105.425 -84.45
+ 37 108.271 1426 4 0 68.2991 105.523 -85.85
+ 37 2.9886 1427 4 0 68.2334 105.55 -86.2405
+ 37 117.831 1217 3 1 63.6165 107.654 -114.45
+ 37 176.6 1437 3 0 63.4132 107.737 -115.85
+ 37 66.1806 1438 3 0 63.3805 107.75 -116.076
+ 37 146.164 1196 2 1 59.3431 109.414 -144.45
+ 37 154.05 1446 2 0 59.1494 109.473 -145.85
+ 37 181.168 1175 1 1 55.2261 110.723 -174.45
+ 37 126.83 1453 1 0 55.0258 110.791 -175.85
+ 37 246.723 1154 0 1 50.9724 112.214 -204.45
+ 37 128.372 1460 0 0 50.7713 112.279 -205.85
+ 37 3.76953 1413 5 0 73.7896 102.949 -55.85
+ 37 33.5616 1243 4 1 68.6735 104.861 -84.45
+ 37 125.403 1423 4 0 68.4522 104.908 -85.85
+ 37 72.2676 1219 3 1 63.8826 105.74 -114.45
+ 37 52.6621 1218 3 1 63.85 105.745 -114.632
+ 37 106.225 1428 3 0 63.6409 105.769 -115.85
+ 37 208.756 1195 2 1 59.098 106.504 -144.45
+ 37 26.6602 1194 2 1 59.05 106.509 -144.752
+ 37 124.885 1431 2 0 58.8837 106.53 -145.85
+ 37 172.468 1172 1 1 54.6076 106.979 -174.45
+ 37 99.4561 1434 1 0 54.4312 106.958 -175.85
+ 37 105.303 1431 0 0 50.7283 106.549 -205.85
+ 37 90.9718 35 4 1 -172.95 -0.371143 -84.573
+ 37 226.496 1173 1 1 54.6501 107.012 -174.652
+ 37 711.351 1331 6 1 86.384 106.655 -24.4501
+ 37 139.637 1431 6 0 86.1398 106.397 -25.85
+ 37 64.9734 1639 6 0 69.3344 147.959 -26.25
+ 37 54.8732 1640 6 0 69.2779 148.15 -26.1383
+ 37 54.4022 1641 6 0 69.2269 148.35 -26.0393
+ 37 22.7387 1642 6 0 69.1675 148.55 -25.9222
+ 37 290.762 1244 6 1 68.9788 149.626 -24.85
+ 37 30.2834 1243 6 1 68.8055 150.246 -24.45
+ 37 0.435852 1653 6 0 68.9813 150.949 -25.85
+ 37 157.428 1654 6 0 68.9813 150.95 -25.8512
+ 37 19.1993 1332 6 1 86.45 106.393 -24.8366
+ 37 29.6657 1427 6 0 87.4078 105.743 -25.8502
+ 37 66.5628 1335 6 1 87.1053 104.921 -24.85
+ 37 200.671 1400 7 0 79.8564 100.35 3.81385
+Number of digits in this event = 96
Using G4ParticleGun ...
-3.67801 LIN
+5.94357 LIN
proton
Event: 38
-Number of tracker hits in this event = 26
- 38 208.999 412 10 1 -97.6391 46.2348 95.55
- 38 192.752 1130 10 0 -97.6387 46.2331 94.15
- 38 107.489 412 9 1 -97.6375 46.1949 65.55
- 38 107.249 1130 9 0 -97.6365 46.1911 64.15
- 38 261.806 412 8 1 -97.6157 46.1154 35.55
- 38 111.476 1130 8 0 -97.6149 46.1109 34.15
- 38 149.217 412 7 1 -97.5983 46.0189 5.55
- 38 94.0153 1129 7 0 -97.5987 46.0142 4.15
- 38 262.306 412 6 1 -97.6117 45.9164 -24.45
- 38 101.157 1129 6 0 -97.611 45.9103 -25.85
- 38 150.456 412 5 1 -97.5858 45.7828 -54.45
- 38 121.498 1128 5 0 -97.5839 45.777 -55.85
- 38 123.355 413 4 1 -97.5466 45.6588 -84.45
- 38 111.518 1128 4 0 -97.5468 45.6532 -85.85
- 38 137.388 412 3 1 -97.5597 45.54 -114.45
- 38 268.257 1127 3 0 -97.5584 45.5347 -115.85
- 38 100.739 413 2 1 -97.5366 45.4245 -144.45
- 38 233.784 1126 2 0 -97.5348 45.4157 -145.85
- 38 112.927 413 1 1 -97.4937 45.2425 -174.45
- 38 114.008 1125 1 0 -97.4918 45.2344 -175.85
- 38 102.308 413 0 1 -97.4502 45.072 -204.45
- 38 104.929 1125 0 0 -97.4481 45.0645 -205.85
- 38 2.49167 1149 8 0 -97.3783 49.9879 34.15
- 38 3.82638 397 8 1 -100.62 56.0379 35.15
- 38 209.506 1183 8 0 -101.66 56.7872 34.15
- 38 64.2281 1131 10 0 -97.6043 46.25 94.1077
-Number of digits in this event = 13
+Number of tracker hits in this event = 21
+ 38 104.909 678 8 1 -44.2957 -137.434 35.55
+ 38 120.035 213 8 0 -44.2951 -137.434 34.15
+ 38 148.54 678 7 1 -44.2869 -137.435 5.55
+ 38 146.567 213 7 0 -44.2869 -137.435 4.15
+ 38 495.085 678 6 1 -44.2825 -137.423 -24.45
+ 38 206.442 213 6 0 -44.2825 -137.422 -25.85
+ 38 110.069 678 5 1 -44.2834 -137.41 -54.45
+ 38 123.874 213 5 0 -44.2844 -137.409 -55.85
+ 38 120.529 678 4 1 -44.3037 -137.385 -84.45
+ 38 127.121 213 4 0 -44.3063 -137.383 -85.85
+ 38 138.114 678 3 1 -44.362 -137.347 -114.45
+ 38 113.892 214 3 0 -44.3635 -137.346 -115.85
+ 38 265.567 678 2 1 -44.3993 -137.325 -144.45
+ 38 156.072 214 2 0 -44.3992 -137.324 -145.85
+ 38 125.105 678 1 1 -44.3944 -137.302 -174.45
+ 38 116.355 214 1 0 -44.3939 -137.301 -175.85
+ 38 114.089 678 0 1 -44.3807 -137.295 -204.45
+ 38 106.68 214 0 0 -44.3792 -137.295 -205.85
+ 38 150.208 213 2 0 -44.5497 -137.35 -145.965
+ 38 93.9374 212 2 0 -44.5723 -137.55 -146.16
+ 38 102.797 679 6 1 -44.25 -137.41 -24.617
+Number of digits in this event = 14
Using G4ParticleGun ...
-5.37049 LIN
+8.12478 LIN
proton
Event: 39
-Number of tracker hits in this event = 99
- 39 100.22 1414 10 1 103.052 -48.8352 95.55
- 39 101.304 656 10 0 103.051 -48.835 94.15
- 39 126.739 1414 9 1 103.049 -48.8324 65.55
- 39 101.278 656 9 0 103.049 -48.8321 64.15
- 39 108.716 1414 8 1 103.054 -48.8265 35.55
- 39 145.46 656 8 0 103.054 -48.8261 34.15
- 39 102.705 1414 7 1 103.07 -48.8201 5.55
- 39 108.349 656 7 0 103.069 -48.82 4.15
- 39 92.9342 1414 6 1 103.061 -48.8162 -24.45
- 39 101.45 656 6 0 103.06 -48.8152 -25.85
- 39 106.903 1414 5 1 103.063 -48.7983 -54.45
- 39 370.281 656 5 0 103.063 -48.7962 -55.85
- 39 95.3082 1414 4 1 103.072 -48.7484 -84.45
- 39 126.819 656 4 0 103.072 -48.7459 -85.85
- 39 116.004 1414 3 1 103.086 -48.6968 -114.45
- 39 113.508 656 3 0 103.087 -48.6958 -115.85
- 39 117.609 1414 2 1 103.118 -48.6721 -144.45
- 39 113.836 656 2 0 103.118 -48.6703 -145.85
- 39 128.292 1414 1 1 103.116 -48.6336 -174.45
- 39 105.222 657 1 0 103.118 -48.6313 -175.85
- 39 95.7372 1414 0 1 103.142 -48.5901 -204.45
- 39 176.151 657 0 0 103.145 -48.5886 -205.85
- 39 16.4731 727 0 0 87.0723 -34.4551 -206.187
- 39 12.8874 670 4 0 168.769 -46.039 -86.0256
- 39 58.116 961 1 0 60.2478 12.45 -176.034
- 39 131.546 418 1 0 179.34 -96.4478 -176.118
- 39 70.026 417 1 0 179.503 -96.55 -175.932
- 39 16.9347 312 0 0 111.8 -117.68 -206.25
- 39 107.556 311 0 0 111.803 -117.75 -206.229
- 39 60.3062 310 0 0 111.821 -117.95 -206.179
- 39 51.9318 309 0 0 111.839 -118.15 -206.105
- 39 71.3235 308 0 0 111.855 -118.35 -206.021
- 39 79.7078 307 0 0 111.856 -118.55 -205.938
- 39 7.74437 306 0 0 111.835 -118.75 -205.865
- 39 21.9789 1458 0 1 111.751 -121.217 -204.85
- 39 563.071 1457 0 1 111.75 -121.278 -204.828
- 39 114.467 278 0 0 111.628 -124.39 -205.851
- 39 65.607 277 0 0 111.602 -124.55 -206.037
- 39 62.9261 276 0 0 111.524 -124.75 -206.18
- 39 153.603 1455 0 1 111.203 -125.094 -204.85
- 39 30.5575 442 1 0 126.229 -91.7032 -176.25
- 39 114.064 441 1 0 126.249 -91.75 -176.172
- 39 42.2882 440 1 0 126.333 -91.95 -175.96
- 39 114.316 1535 1 1 127.245 -93.571 -174.85
- 39 77.1667 1536 1 1 127.35 -93.7675 -174.762
- 39 66.7272 1537 1 1 127.55 -94.0411 -174.677
- 39 64.5222 1538 1 1 127.75 -94.1295 -174.638
- 39 59.8895 1539 1 1 127.95 -94.1149 -174.609
- 39 50.8491 1540 1 1 128.15 -94.1556 -174.565
- 39 56.7421 1541 1 1 128.35 -94.2026 -174.505
- 39 174.648 383 2 0 101.704 -103.495 -146.25
- 39 58.1737 382 2 0 101.562 -103.55 -146.098
- 39 259.861 1403 2 1 100.947 -103.088 -144.85
- 39 77.9183 1404 2 1 100.95 -102.668 -144.635
- 39 11.7522 389 2 0 101.598 -102.167 -145.85
- 39 497.844 390 2 0 101.607 -102.15 -145.895
- 39 15.1287 472 1 0 124.982 -85.6223 -176.249
- 39 127.822 471 1 0 124.999 -85.6501 -176.182
- 39 1.50608 1525 1 1 125.349 -86.2063 -174.85
- 39 192.136 1526 1 1 125.35 -86.2085 -174.845
- 39 36.2171 426 2 0 130.943 -94.9285 -146.25
- 39 101.878 425 2 0 130.957 -94.9501 -146.178
- 39 110.819 1555 2 1 131.196 -95.3541 -144.85
- 39 149.875 427 3 0 136.519 -94.7114 -116.25
- 39 130.283 1583 3 1 136.757 -94.6892 -114.85
- 39 5.56324 477 4 0 142.35 -84.4554 -86.25
- 39 107.347 478 4 0 142.353 -84.4498 -86.2346
- 39 155.787 1612 4 1 142.636 -83.8907 -84.8499
- 39 2.24737 634 5 0 135.688 -53.0576 -56.25
- 39 79.7186 635 5 0 135.686 -53.05 -56.243
- 39 70.9253 636 5 0 135.629 -52.85 -56.0685
- 39 41.584 637 5 0 135.559 -52.6497 -55.906
- 39 5.29794 1574 5 1 134.959 -51.4586 -54.85
- 39 146.271 1573 5 1 134.95 -51.4419 -54.8351
- 39 111.443 1572 5 1 134.75 -51.1203 -54.5633
- 39 118.483 704 6 0 140.644 -39.2175 -26.2498
- 39 7.97082 705 6 0 140.725 -39.05 -25.8816
- 39 7.79059 1603 6 1 140.944 -38.6207 -24.85
- 39 104.565 1604 6 1 140.95 -38.6082 -24.8198
- 39 54.766 634 7 0 141.144 -53.1509 3.75032
- 39 98.1223 633 7 0 141.139 -53.25 3.89966
- 39 127.818 1604 7 1 141.12 -53.9572 5.15013
- 39 40.6618 757 7 0 137.7 -28.65 3.79722
- 39 275.545 758 7 0 137.696 -28.45 3.82652
- 39 59.483 410 6 0 141.434 -97.95 -25.9006
- 39 1.87585 686 8 0 143.071 -42.6589 33.7503
- 39 114.307 687 8 0 143.068 -42.65 33.7614
- 39 30.6638 688 8 0 142.891 -42.4498 34.0804
- 39 97.7486 1608 8 1 141.917 -41.9051 35.15
- 39 68.7268 1607 8 1 141.75 -41.8515 35.3691
- 39 165.933 1606 8 1 141.55 -41.8808 35.5244
- 39 234.795 689 8 0 141.121 -42.0533 34.15
- 39 40.5569 503 8 0 172.522 -79.3769 33.75
- 39 173.127 502 8 0 172.51 -79.45 33.7959
- 39 8.94626 430 3 0 135.578 -94.1432 -115.85
- 39 55.9611 1338 0 1 87.85 -158.587 -204.611
- 39 52.5788 657 5 0 102.956 -48.65 -56.238
- 39 4.74474 1629 5 0 -13.8589 146.038 -56.25
- 39 176.143 691 7 0 83.6643 -41.7582 3.75009
-Number of digits in this event = 27
+Number of tracker hits in this event = 39
+ 39 96.8355 1324 10 1 85.031 -14.7868 95.55
+ 39 113.898 826 10 0 85.0303 -14.7871 94.15
+ 39 143.739 1324 9 1 85.0151 -14.7926 65.55
+ 39 91.5398 826 9 0 85.0145 -14.7927 64.15
+ 39 113.004 1324 8 1 85.0056 -14.7949 35.55
+ 39 96.2537 826 8 0 85.0052 -14.7944 34.15
+ 39 127.581 1324 7 1 84.9975 -14.7795 5.55
+ 39 104.855 826 7 0 84.9952 -14.7787 4.15
+ 39 143.177 1324 6 1 84.9448 -14.7614 -24.45
+ 39 103.46 826 6 0 84.9427 -14.7604 -25.85
+ 39 112.479 1324 5 1 84.9038 -14.7412 -54.45
+ 39 137.957 826 5 0 84.9018 -14.7396 -55.85
+ 39 127.575 1324 4 1 84.8573 -14.7069 -84.45
+ 39 174.315 826 4 0 84.8551 -14.7049 -85.85
+ 39 140.291 1323 3 1 84.8062 -14.6635 -114.45
+ 39 111.361 826 3 0 84.8043 -14.661 -115.85
+ 39 111.206 1323 2 1 84.7653 -14.6127 -144.45
+ 39 211.27 827 2 0 84.7627 -14.6099 -145.85
+ 39 123.644 1323 1 1 84.7079 -14.5526 -174.45
+ 39 118.567 827 1 0 84.7053 -14.5507 -175.85
+ 39 147.162 1323 0 1 84.651 -14.5128 -204.45
+ 39 147.473 1322 0 1 84.65 -14.512 -204.824
+ 39 112.456 827 0 0 84.6471 -14.5099 -205.85
+ 39 109.254 823 0 0 84.2806 -15.351 -205.85
+ 39 60.6521 822 0 0 84.267 -15.4501 -206.101
+ 39 176.434 714 0 0 69.6434 -37.0694 -206.25
+ 39 111.864 713 0 0 69.0007 -37.25 -206.089
+ 39 22.4723 712 0 0 68.7812 -37.45 -206.177
+ 39 331.985 826 2 0 84.9015 -14.65 -146.159
+ 39 20.3144 880 4 0 102.01 -3.89247 -86.2497
+ 39 323.374 881 4 0 102.003 -3.85 -86.1635
+ 39 115.157 882 4 0 102.153 -3.65 -85.9485
+ 39 60.0619 1419 4 1 103.971 -3.2996 -84.8499
+ 39 62.6949 1420 4 1 104.15 -3.3021 -84.7397
+ 39 80.469 1421 4 1 104.35 -3.31953 -84.6478
+ 39 172.597 1422 4 1 104.55 -3.38226 -84.5072
+ 39 10.1899 1423 4 1 104.75 -3.54087 -84.4976
+ 39 45.9986 1149 4 0 76.462 49.9356 -86.25
+ 39 328.811 1150 4 0 76.4131 50.05 -86.1846
+Number of digits in this event = 17
Using G4ParticleGun ...
-2.14118 LIN
+9.11833 LIN
proton
Event: 40
-Number of tracker hits in this event = 30
- 40 131.336 649 11 1 -50.0777 2.53814 125.55
- 40 99.0598 912 11 0 -50.078 2.53625 124.15
- 40 119.379 649 10 1 -50.092 2.50092 95.55
- 40 116.846 912 10 0 -50.0962 2.49808 94.15
- 40 196.79 649 9 1 -50.1869 2.43149 65.55
- 40 124.186 911 9 0 -50.1921 2.42827 64.15
- 40 108.517 648 8 1 -50.2966 2.36407 35.55
- 40 125.922 911 8 0 -50.3006 2.36047 34.15
- 40 152.232 648 7 1 -50.3595 2.29478 5.55
- 40 95.8571 911 7 0 -50.3614 2.29009 4.15
- 40 102.645 648 6 1 -50.3816 2.20162 -24.45
- 40 104.632 910 6 0 -50.3824 2.19664 -25.85
- 40 135.414 648 5 1 -50.402 2.10566 -54.45
- 40 88.9052 910 5 0 -50.4043 2.10026 -55.85
- 40 114.384 647 4 1 -50.4636 1.9873 -84.45
- 40 117.413 909 4 0 -50.4688 1.98045 -85.85
- 40 86.41 647 3 1 -50.5886 1.8382 -114.45
- 40 110.208 908 3 0 -50.5992 1.83063 -115.85
- 40 104.137 646 2 1 -50.8162 1.67173 -144.45
- 40 108.189 908 2 0 -50.825 1.66596 -145.85
- 40 142.117 645 1 1 -50.9837 1.55455 -174.45
- 40 144.324 907 1 0 -50.9874 1.54752 -175.85
- 40 148.906 644 0 1 -51.069 1.40116 -204.45
- 40 131.23 906 0 0 -51.0724 1.39381 -205.85
- 40 67.2164 644 1 1 -51.05 1.66027 -174.458
- 40 197.108 643 1 1 -51.25 1.84184 -174.519
- 40 189.052 642 1 1 -51.4502 1.96229 -174.573
- 40 76.6501 641 1 1 -51.65 2.28316 -174.726
- 40 193.507 906 1 0 -53.0081 1.35664 -175.85
- 40 268.499 905 1 0 -53.236 1.24987 -176.182
-Number of digits in this event = 15
+Number of tracker hits in this event = 244
+ 40 171.655 903 10 1 0.756751 -91.6302 95.55
+ 40 97.419 442 10 0 0.756707 -91.6295 94.15
+ 40 0.779579 556 2 0 27.7385 -68.7145 -146.25
+ 40 268.418 1037 2 1 27.5889 -68.398 -144.85
+ 40 15.2848 455 13 0 4.03747 -88.85 183.999
+ 40 87.9303 456 13 0 4.03759 -88.85 184.1
+ 40 53.2064 1381 1 1 96.35 52.1213 -174.748
+ 40 22.7693 1035 9 1 27.1441 -128.52 65.5117
+ 40 454.834 339 0 0 89.4952 -112.292 -206.25
+ 40 108.746 1657 1 1 151.724 -145.141 -174.45
+ 40 210.904 1658 1 1 151.75 -145.054 -174.648
+ 40 86.6327 338 0 0 89.5574 -112.35 -206.067
+ 40 117.852 903 9 1 0.756459 -91.6193 65.55
+ 40 122.601 442 9 0 0.653922 -91.7181 64.15
+ 40 40.5805 893 8 1 -1.44691 -93.7307 35.55
+ 40 107.982 892 8 1 -1.45 -93.7336 35.5088
+ 40 157.867 431 8 0 -1.55218 -93.8271 34.15
+ 40 117.865 881 7 1 -3.70552 -95.7948 5.55
+ 40 312.446 421 7 0 -3.81045 -95.8896 4.15
+ 40 109.337 870 6 1 -5.95472 -97.817 -24.45
+ 40 99.833 411 6 0 -6.05647 -97.9115 -25.85
+ 40 113.96 859 5 1 -8.14115 -99.8285 -54.45
+ 40 116.25 401 5 0 -8.24559 -99.9227 -55.85
+ 40 144.599 848 4 1 -10.3742 -101.849 -84.45
+ 40 18.7686 391 4 0 -10.4786 -101.945 -85.85
+ 40 101.57 390 4 0 -10.4841 -101.95 -85.924
+ 40 99.2479 837 3 1 -12.6138 -103.905 -114.45
+ 40 111.424 380 3 0 -12.7193 -104 -115.85
+ 40 131.727 825 2 1 -14.8691 -105.946 -144.45
+ 40 123.254 370 2 0 -14.9726 -106.04 -145.85
+ 40 143.41 814 1 1 -17.0969 -107.945 -174.45
+ 40 124.972 360 1 0 -17.199 -108.037 -175.85
+ 40 107.123 803 0 1 -19.2824 -109.901 -204.45
+ 40 11839.5 350 0 0 -19.3862 -109.993 -205.85
+ 40 17919.5 351 0 0 -19.382 -109.95 -205.897
+ 40 53.7702 755 0 1 -28.85 -109.234 -204.761
+ 40 151.543 754 0 1 -29.05 -109.359 -204.755
+ 40 584.9 347 0 0 -30.646 -110.607 -205.85
+ 40 692.955 346 0 0 -30.7602 -110.75 -206.034
+ 40 291.984 287 0 0 -23.0297 -122.636 -206.25
+ 40 704.645 792 0 1 -21.4619 -110.984 -204.85
+ 40 728.193 791 0 1 -21.65 -111.073 -204.757
+ 40 669.036 790 0 1 -21.85 -111.167 -204.662
+ 40 805.959 789 0 1 -22.05 -111.256 -204.565
+ 40 88.8413 788 0 1 -22.25 -111.348 -204.465
+ 40 2287.14 190 1 0 -92.3238 -141.986 -176.25
+ 40 3521.68 189 1 0 -92.6993 -142.15 -176.099
+ 40 1885.26 188 1 0 -93.1862 -142.35 -175.926
+ 40 1600.8 412 1 1 -97.571 -144.219 -174.85
+ 40 2083.14 411 1 1 -97.75 -144.295 -174.807
+ 40 2979.96 410 1 1 -97.95 -144.369 -174.752
+ 40 3656.18 409 1 1 -98.15 -144.446 -174.797
+ 40 324.729 349 0 0 -19.2855 -110.15 -205.923
+ 40 435.668 348 0 0 -19.1551 -110.35 -205.986
+ 40 452.57 345 0 0 -18.769 -110.95 -206.174
+ 40 60.399 344 0 0 -18.641 -111.15 -206.238
+ 40 81.2598 1191 3 0 -24.0651 58.3672 -116.153
+ 40 4.27148 871 1 0 -125.327 -5.80062 -176.25
+ 40 73.9616 62 1 0 -51.2957 -167.55 -176.133
+ 40 37.4599 430 0 1 -94.021 -112.882 -204.85
+ 40 62.5725 429 0 1 -94.15 -112.96 -204.825
+ 40 62.9048 428 0 1 -94.3501 -113.085 -204.806
+ 40 67.6424 427 0 1 -94.5501 -113.218 -204.781
+ 40 108.056 426 0 1 -94.75 -113.34 -204.745
+ 40 68.2561 425 0 1 -94.95 -113.464 -204.698
+ 40 83.7941 424 0 1 -95.1501 -113.596 -204.646
+ 40 80.1795 423 0 1 -95.35 -113.709 -204.596
+ 40 56.021 422 0 1 -95.55 -113.817 -204.555
+ 40 65.2404 421 0 1 -95.75 -113.908 -204.551
+ 40 54.6513 420 0 1 -95.95 -113.999 -204.583
+ 40 94.0771 419 0 1 -96.15 -114.106 -204.65
+ 40 78.3748 418 0 1 -96.35 -114.228 -204.693
+ 40 62.2768 417 0 1 -96.5509 -114.33 -204.725
+ 40 88.4663 416 0 1 -96.75 -114.458 -204.761
+ 40 1.93916 415 0 1 -96.9505 -114.633 -204.848
+ 40 76.8913 313 0 0 -99.9118 -117.394 -205.85
+ 40 95.272 312 0 0 -100.09 -117.55 -205.921
+ 40 63.8399 311 0 0 -100.255 -117.75 -205.97
+ 40 166.688 310 0 0 -100.399 -117.95 -205.996
+ 40 101.521 309 0 0 -100.53 -118.15 -206.006
+ 40 64.9853 308 0 0 -100.633 -118.35 -206.017
+ 40 84.1512 307 0 0 -100.746 -118.55 -206.029
+ 40 85.0968 306 0 0 -100.902 -118.75 -206.054
+ 40 71.9369 305 0 0 -101.087 -118.95 -206.093
+ 40 85.5003 304 0 0 -101.252 -119.15 -206.144
+ 40 111.764 303 0 0 -101.424 -119.351 -206.182
+ 40 20.4251 302 0 0 -101.622 -119.55 -206.235
+ 40 18.8861 668 1 0 -92.4939 -46.2848 -176.25
+ 40 97.6264 669 1 0 -92.5278 -46.25 -176.211
+ 40 131.085 670 1 0 -92.7146 -46.05 -175.994
+ 40 18.3492 432 1 1 -93.7072 -45.0099 -174.85
+ 40 90.6862 431 1 1 -93.75 -44.9653 -174.801
+ 40 93.4697 430 1 1 -93.95 -44.7606 -174.58
+ 40 20.6325 1012 2 0 -135.655 22.5705 -146.25
+ 40 65.7101 1013 2 0 -135.703 22.65 -146.217
+ 40 70.6337 1014 2 0 -135.809 22.85 -146.132
+ 40 70.7494 1015 2 0 -135.916 23.05 -146.048
+ 40 64.5843 1016 2 0 -136.027 23.25 -145.97
+ 40 28.5955 1017 2 0 -136.137 23.4504 -145.887
+ 40 31.7044 213 2 1 -137.495 25.9988 -144.85
+ 40 251.278 212 2 1 -137.55 26.1025 -144.807
+ 40 180.2 211 2 1 -137.75 26.5126 -144.656
+ 40 73.3724 210 2 1 -137.95 26.9597 -144.522
+ 40 74.3789 1161 3 0 -143.394 52.2691 -116.25
+ 40 65.5591 1162 3 0 -143.443 52.45 -116.029
+ 40 220.456 181 3 1 -143.751 53.2877 -114.85
+ 40 116.103 1192 4 0 -146.464 58.4625 -86.25
+ 40 107.697 168 4 1 -146.52 58.8314 -84.85
+ 40 54.9878 1326 5 0 -167.373 85.3631 -56.25
+ 40 104.065 1327 5 0 -167.436 85.45 -56.1644
+ 40 34.9977 1328 5 0 -167.589 85.6501 -55.9345
+ 40 360.948 59 5 1 -168.227 86.55 -54.85
+ 40 53.4636 58 5 1 -168.35 86.7769 -54.6017
+ 40 48.6419 1335 5 0 -168.373 87.2025 -55.85
+ 40 62.6722 1336 5 0 -168.361 87.25 -56.0581
+ 40 3.57906 116 5 1 -156.95 83.8973 -54.8471
+ 40 11.7562 1244 5 0 -124.31 69.0357 -56.25
+ 40 142.349 1245 5 0 -124.279 69.0503 -56.2102
+ 40 141.914 282 5 1 -123.733 69.506 -54.85
+ 40 26.9155 1434 6 0 -70.823 107.088 -26.25
+ 40 266.155 1661 6 0 143.333 152.549 -26.25
+ 40 12.8181 1662 6 0 143.346 152.55 -26.2477
+ 40 2.59763 492 6 1 -81.65 -26.1573 -24.4833
+ 40 37.6312 622 0 0 -44.7788 -55.5639 -206.25
+ 40 75.6748 623 0 0 -44.8453 -55.45 -206.167
+ 40 117.72 624 0 0 -44.9639 -55.25 -206.023
+ 40 13.0408 625 0 0 -45.0815 -55.05 -205.883
+ 40 65.821 670 0 1 -45.9506 -53.5344 -204.85
+ 40 138.865 669 0 1 -46.05 -53.3609 -204.732
+ 40 26.945 668 0 1 -46.25 -53.0166 -204.5
+ 40 42.316 804 1 0 -74.8192 -19.1682 -176.25
+ 40 83.8111 805 1 0 -74.9195 -19.05 -176.151
+ 40 85.5792 806 1 0 -75.0889 -18.85 -175.985
+ 40 107.531 518 1 1 -76.2517 -17.4898 -174.85
+ 40 121.313 517 1 1 -76.45 -17.2543 -174.654
+ 40 3.75161 516 1 1 -76.6503 -17.0163 -174.455
+ 40 57.1602 930 2 0 -94.1395 6.16566 -146.25
+ 40 93.9752 931 2 0 -94.2053 6.25 -146.146
+ 40 17.1974 932 2 0 -94.3694 6.45 -145.892
+ 40 48.4277 425 2 1 -95.058 7.29977 -144.85
+ 40 136.239 424 2 1 -95.15 7.41157 -144.711
+ 40 18.8736 1270 3 0 -117.066 74.2058 -116.25
+ 40 106.07 1271 3 0 -117.081 74.25 -116.232
+ 40 77.7689 1272 3 0 -117.145 74.45 -116.142
+ 40 60.5067 1273 3 0 -117.211 74.65 -116.047
+ 40 73.534 1274 3 0 -117.281 74.8511 -115.958
+ 40 38.4096 1275 3 0 -117.345 75.05 -115.895
+ 40 17.3576 309 3 1 -118.327 77.9343 -114.85
+ 40 203.753 308 3 1 -118.35 78.0019 -114.825
+ 40 68.0458 307 3 1 -118.55 78.6831 -114.551
+ 40 11.4345 1581 4 0 -166.389 136.512 -86.25
+ 40 138.043 1582 4 0 -166.421 136.55 -86.2307
+ 40 81.6825 1583 4 0 -166.584 136.75 -86.1264
+ 40 96.1572 1584 4 0 -166.729 136.95 -86.0353
+ 40 51.6637 1585 4 0 -166.878 137.15 -85.9327
+ 40 69.1052 56 4 1 -168.836 139.553 -84.85
+ 40 102.304 55 4 1 -168.95 139.696 -84.7828
+ 40 98.4449 54 4 1 -169.15 139.958 -84.6644
+ 40 113.52 53 4 1 -169.35 140.222 -84.561
+ 40 23.2162 52 4 1 -169.55 140.481 -84.4683
+ 40 17.1141 51 4 1 -169.904 140.802 -84.45
+ 40 59.4416 50 4 1 -169.95 140.821 -84.453
+ 40 57.3393 49 4 1 -170.15 140.904 -84.4634
+ 40 61.8446 48 4 1 -170.35 140.987 -84.4718
+ 40 59.1157 47 4 1 -170.55 141.064 -84.4805
+ 40 75.6847 46 4 1 -170.75 141.143 -84.4907
+ 40 48.1449 45 4 1 -170.95 141.218 -84.4934
+ 40 245.507 44 4 1 -171.151 141.29 -84.4837
+ 40 74.517 43 4 1 -171.35 141.355 -84.4844
+ 40 68.237 42 4 1 -171.55 141.399 -84.4995
+ 40 52.8203 41 4 1 -171.75 141.437 -84.5127
+ 40 94.9374 40 4 1 -171.95 141.481 -84.5196
+ 40 52.5649 39 4 1 -172.15 141.529 -84.5242
+ 40 59.7482 38 4 1 -172.351 141.555 -84.5234
+ 40 55.1038 37 4 1 -172.55 141.559 -84.5165
+ 40 56.9429 36 4 1 -172.75 141.553 -84.5004
+ 40 44.0257 35 4 1 -172.95 141.549 -84.4871
+ 40 58.3954 34 4 1 -173.15 141.544 -84.4786
+ 40 74.6797 33 4 1 -173.35 141.534 -84.4785
+ 40 48.2365 32 4 1 -173.55 141.513 -84.484
+ 40 60.287 31 4 1 -173.75 141.491 -84.4939
+ 40 76.2562 30 4 1 -173.95 141.47 -84.504
+ 40 56.9384 29 4 1 -174.15 141.456 -84.5125
+ 40 64.9706 28 4 1 -174.35 141.445 -84.5164
+ 40 66.5761 27 4 1 -174.55 141.438 -84.5237
+ 40 62.2032 26 4 1 -174.75 141.44 -84.531
+ 40 58.2667 25 4 1 -174.95 141.434 -84.5369
+ 40 74.0057 24 4 1 -175.15 141.428 -84.5326
+ 40 91.4153 23 4 1 -175.35 141.424 -84.5182
+ 40 65.0597 22 4 1 -175.55 141.428 -84.5022
+ 40 66.4736 21 4 1 -175.75 141.432 -84.4819
+ 40 7.22458 20 4 1 -175.95 141.421 -84.4543
+ 40 140.926 309 1 0 15.5818 -118.15 -176.178
+ 40 59.483 685 2 0 -76.9239 -42.85 -146.08
+ 40 50.1733 74 10 0 56.5055 -165.198 93.75
+ 40 106.97 73 10 0 56.6208 -165.35 93.8096
+ 40 91.2535 72 10 0 56.7677 -165.55 93.8781
+ 40 59.4033 71 10 0 56.9191 -165.75 93.9467
+ 40 87.0386 70 10 0 57.0702 -165.95 94.0177
+ 40 108.575 69 10 0 57.2333 -166.15 94.0939
+ 40 38.3238 1196 10 1 59.3583 -168.683 95.15
+ 40 90.1493 1197 10 1 59.45 -168.798 95.1975
+ 40 129.97 1198 10 1 59.6501 -169.061 95.3086
+ 40 86.4657 1199 10 1 59.85 -169.337 95.428
+ 40 29.9419 1209 10 1 61.9395 -170.617 95.5499
+ 40 58.8692 1210 10 1 62.05 -170.614 95.5001
+ 40 63.1614 1211 10 1 62.25 -170.61 95.3978
+ 40 85.2248 1212 10 1 62.45 -170.597 95.294
+ 40 75.3577 1213 10 1 62.65 -170.586 95.2158
+ 40 58.0922 1214 10 1 62.85 -170.599 95.1831
+ 40 31.2833 1215 10 1 63.0504 -170.604 95.1591
+ 40 91.2277 45 10 0 72.3156 -171.099 94.15
+ 40 75.6457 1310 10 1 82.1 -172.262 95.15
+ 40 54.6588 1311 10 1 82.2502 -172.277 95.1654
+ 40 50.0005 1312 10 1 82.45 -172.288 95.1832
+ 40 47.4167 1313 10 1 82.6502 -172.308 95.1931
+ 40 65.2129 1314 10 1 82.85 -172.337 95.2011
+ 40 52.4373 1315 10 1 83.05 -172.339 95.1977
+ 40 51.9926 1316 10 1 83.25 -172.378 95.1774
+ 40 248.13 29 10 0 88.578 -174.152 94.1499
+ 40 163.338 28 10 0 89.3081 -174.35 93.997
+ 40 117.917 27 10 0 89.8224 -174.55 93.9306
+ 40 77.2578 26 10 0 90.2137 -174.75 93.8496
+ 40 88.6856 25 10 0 90.4897 -174.95 93.871
+ 40 88.9791 24 10 0 90.7241 -175.15 93.9488
+ 40 132.956 23 10 0 90.9223 -175.35 94.0175
+ 40 67.893 22 10 0 91.1388 -175.55 94.0797
+ 40 19.2017 21 10 0 91.3396 -175.75 94.1376
+ 40 16.5472 1371 10 1 94.4919 -178.609 95.1502
+ 40 83.1624 1372 10 1 94.55 -178.66 95.1718
+ 40 144.663 1373 10 1 94.7501 -178.806 95.272
+ 40 113.127 1374 10 1 94.95 -178.908 95.3653
+ 40 51.5229 1375 10 1 95.1503 -178.973 95.4636
+ 40 38.3523 1376 10 1 95.35 -179.009 95.5148
+ 40 49.6321 1377 10 1 95.55 -179.06 95.544
+ 40 45.7642 1378 10 1 95.75 -179.138 95.4934
+ 40 72.554 1379 10 1 95.95 -179.238 95.4631
+ 40 88.5531 1380 10 1 96.15 -179.319 95.4129
+ 40 61.6106 1381 10 1 96.35 -179.441 95.3083
+ 40 34.082 1382 10 1 96.55 -179.558 95.192
+ 40 237.235 75 11 0 55.9952 -165.147 123.75
+ 40 129.666 1178 11 1 55.739 -164.699 125.15
+ 40 28.6065 963 9 1 12.65 -89.5747 65.1794
+ 40 57.9648 965 9 1 13.0871 -88.94 65.55
+Number of digits in this event = 59
Using G4ParticleGun ...
-8.28332 LIN
+3.77777 LIN
proton
Event: 41
Number of tracker hits in this event = 26
- 41 133.323 922 9 1 4.45073 125.777 65.55
- 41 108.23 1528 9 0 4.44975 125.776 64.15
- 41 107.706 921 8 1 4.42984 125.769 35.55
- 41 131.227 1528 8 0 4.429 125.769 34.15
- 41 193.354 921 7 1 4.41095 125.775 5.55
- 41 138.075 1528 7 0 4.41 125.775 4.15
- 41 109.238 921 6 1 4.38764 125.776 -24.45
- 41 186.283 1528 6 0 4.38661 125.777 -25.85
- 41 108.018 921 5 1 4.368 125.794 -54.45
- 41 100.006 1528 5 0 4.3666 125.795 -55.85
- 41 94.5572 921 4 1 4.33551 125.801 -84.45
- 41 116.632 1528 4 0 4.33351 125.8 -85.85
- 41 115.93 921 3 1 4.29282 125.784 -114.45
- 41 121.358 1528 3 0 4.29101 125.783 -115.85
- 41 168.856 921 2 1 4.25296 125.775 -144.45
- 41 134.668 1528 2 0 4.25064 125.775 -145.85
- 41 91.724 920 1 1 4.20185 125.773 -174.45
- 41 98.1064 1528 1 0 4.19956 125.773 -175.85
- 41 102.051 920 0 1 4.15409 125.756 -204.45
- 41 106.878 1528 0 0 4.15202 125.754 -205.85
- 41 50.0582 1527 2 0 4.23879 125.75 -146.137
- 41 83.3423 920 2 1 4.24992 125.702 -144.753
- 41 226.403 1524 2 0 3.79711 125.129 -145.85
- 41 147.468 1529 6 0 4.44865 125.95 -26.187
- 41 282.954 1530 6 0 4.61187 126.15 -26.1297
- 41 61.8503 1531 6 0 4.81834 126.35 -26.1797
-Number of digits in this event = 12
+ 41 108.014 812 10 1 -17.4758 -112.882 95.55
+ 41 113.779 336 10 0 -17.474 -112.883 94.15
+ 41 105.19 813 9 1 -17.4377 -112.901 65.55
+ 41 88.2513 336 9 0 -17.4347 -112.902 64.15
+ 41 116.509 813 8 1 -17.3803 -112.913 35.55
+ 41 171.799 336 8 0 -17.3776 -112.912 34.15
+ 41 138.167 813 7 1 -17.3281 -112.898 5.55
+ 41 186.63 336 7 0 -17.3262 -112.897 4.15
+ 41 116.855 813 6 1 -17.2939 -112.882 -24.45
+ 41 143.68 336 6 0 -17.2924 -112.88 -25.85
+ 41 180.09 813 5 1 -17.2569 -112.848 -54.45
+ 41 97.2056 336 5 0 -17.2546 -112.849 -55.85
+ 41 108.548 814 4 1 -17.219 -112.852 -84.45
+ 41 112.101 336 4 0 -17.2155 -112.853 -85.85
+ 41 94.6531 814 3 1 -17.1412 -112.878 -114.45
+ 41 115.149 336 3 0 -17.1385 -112.879 -115.85
+ 41 125.874 814 2 1 -17.0831 -112.9 -144.45
+ 41 139.85 336 2 0 -17.0792 -112.9 -145.85
+ 41 110.632 815 1 1 -17.0003 -112.885 -174.45
+ 41 96.1601 336 1 0 -16.9963 -112.885 -175.85
+ 41 229.618 815 0 1 -16.9037 -112.877 -204.45
+ 41 207.402 336 0 0 -16.8969 -112.88 -205.85
+ 41 371.238 816 0 1 -16.8499 -112.88 -204.769
+ 41 134.06 337 0 0 -15.7494 -112.733 -205.85
+ 41 228.897 338 0 0 -15.428 -112.55 -206.122
+ 41 173.915 817 0 1 -16.65 -112.572 -204.579
+Number of digits in this event = 14
Using G4ParticleGun ...
-8.84072 LIN
+6.74458 LIN
proton
Event: 42
-Number of tracker hits in this event = 25
- 42 137.963 1267 11 1 73.5371 8.57433 125.55
- 42 89.7464 942 11 0 73.5367 8.57426 124.15
- 42 90.2833 1267 10 1 73.5283 8.57155 95.55
- 42 105.898 942 10 0 73.528 8.57098 94.15
- 42 117.361 1267 9 1 73.5171 8.56028 65.55
- 42 131.842 942 9 0 73.5168 8.55948 64.15
- 42 184.903 1267 8 1 73.5172 8.54064 35.55
- 42 182.683 942 8 0 73.5173 8.53962 34.15
- 42 108.268 1267 7 1 73.5195 8.52035 5.55
- 42 134.274 942 7 0 73.5204 8.51964 4.15
- 42 132.487 1267 6 1 73.5405 8.50627 -24.45
- 42 207.847 942 6 0 73.5414 8.50536 -25.85
- 42 149.869 1267 5 1 73.5611 8.48641 -54.45
- 42 98.1199 942 5 0 73.5608 8.48582 -55.85
- 42 205.027 1267 4 1 73.5549 8.47602 -84.45
- 42 117.826 942 4 0 73.5543 8.4755 -85.85
- 42 117.799 1267 3 1 73.5409 8.46749 -114.45
- 42 97.3742 942 3 0 73.5407 8.46698 -115.85
- 42 134.262 1267 2 1 73.5339 8.45208 -144.45
- 42 126.812 942 2 0 73.5338 8.45146 -145.85
- 42 181.123 1267 1 1 73.528 8.43939 -174.45
- 42 119.68 941 1 0 73.5263 8.44003 -175.85
- 42 107.615 1267 0 1 73.4886 8.4583 -204.45
- 42 111.2 942 0 0 73.488 8.45963 -205.85
- 42 205.241 1266 0 1 73.45 8.45505 -204.637
-Number of digits in this event = 14
+Number of tracker hits in this event = 33
+ 42 110.431 1225 10 1 65.2295 55.4951 95.55
+ 42 100.588 1177 10 0 65.2294 55.495 94.15
+ 42 114.978 1225 9 1 65.2276 55.4918 65.55
+ 42 159.565 1177 9 0 65.2271 55.4908 64.15
+ 42 131.431 1225 8 1 65.2051 55.4707 35.55
+ 42 100.732 1177 8 0 65.2036 55.4713 34.15
+ 42 172.212 1225 7 1 65.1692 55.4796 5.55
+ 42 109.784 1177 7 0 65.1682 55.4798 4.15
+ 42 100.251 1225 6 1 65.1487 55.4834 -24.45
+ 42 133.31 1177 6 0 65.1462 55.4839 -25.85
+ 42 121.963 1225 5 1 65.0987 55.4969 -54.45
+ 42 130.771 1177 5 0 65.0957 55.4966 -55.85
+ 42 114.719 1224 4 1 65.0366 55.49 -84.45
+ 42 119.173 1177 4 0 65.037 55.4924 -85.85
+ 42 110.87 1224 3 1 65.044 55.5407 -114.45
+ 42 123.536 1177 3 0 65.0442 55.5426 -115.85
+ 42 201.817 1224 2 1 65.0461 55.5805 -144.45
+ 42 263.842 1177 2 0 65.0456 55.5829 -145.85
+ 42 128.699 1224 1 1 65.0396 55.627 -174.45
+ 42 159.745 1177 1 0 65.0388 55.6278 -175.85
+ 42 266.215 1224 0 1 65.0203 55.645 -204.45
+ 42 114.488 1177 0 0 65.019 55.6456 -205.85
+ 42 183.383 1178 1 0 65.0242 55.6501 -176.078
+ 42 167.234 780 1 0 10.7576 -23.8973 -176.25
+ 42 94.335 1225 2 1 65.05 55.5794 -144.462
+ 42 27.0319 1226 2 1 65.25 55.5466 -144.753
+ 42 45.8134 1178 2 0 66.8482 55.65 -146.164
+ 42 4.61206 1193 2 0 94.1336 58.6581 -146.249
+ 42 205.926 1192 2 0 94.1411 58.65 -146.231
+ 42 5.02184 1191 2 0 94.341 58.45 -145.865
+ 42 31.9836 1375 2 1 95.2945 57.4222 -144.85
+ 42 340.775 1376 2 1 95.3501 57.3723 -144.805
+ 42 115.411 1377 2 1 95.55 57.327 -144.526
+Number of digits in this event = 17
Using G4ParticleGun ...
-8.05856 LIN
+6.17779 LIN
proton
Event: 43
-Number of tracker hits in this event = 20
- 43 116.072 449 9 1 -90.2831 -79.438 65.55
- 43 239.4 503 9 0 -90.2827 -79.4395 64.15
- 43 93.8818 449 8 1 -90.2719 -79.4686 35.55
- 43 112.939 502 8 0 -90.2713 -79.4695 34.15
- 43 98.396 449 7 1 -90.263 -79.4799 5.55
- 43 188.231 502 7 0 -90.2623 -79.4799 4.15
- 43 109.835 449 6 1 -90.2521 -79.4869 -24.45
- 43 113.288 502 6 0 -90.2521 -79.4874 -25.85
- 43 81.4447 449 5 1 -90.2487 -79.501 -54.45
- 43 117.777 502 5 0 -90.2485 -79.5013 -55.85
- 43 196.535 449 4 1 -90.2473 -79.5077 -84.45
- 43 100.301 502 4 0 -90.2473 -79.5083 -85.85
- 43 125.271 449 3 1 -90.249 -79.5195 -114.45
- 43 137.148 502 3 0 -90.2508 -79.5223 -115.85
- 43 168.096 449 2 1 -90.2881 -79.5808 -144.45
- 43 108.807 502 2 0 -90.2906 -79.5832 -145.85
- 43 159.92 449 1 1 -90.3449 -79.6324 -174.45
- 43 105.989 502 1 0 -90.3482 -79.6358 -175.85
- 43 151.127 448 0 1 -90.4159 -79.7043 -204.45
- 43 114.438 501 0 0 -90.4185 -79.7077 -205.85
-Number of digits in this event = 9
+Number of tracker hits in this event = 22
+ 43 120.721 1328 10 1 85.7196 -48.4044 95.55
+ 43 93.7226 658 10 0 85.7201 -48.405 94.15
+ 43 112.245 1328 9 1 85.7309 -48.4191 65.55
+ 43 201.795 658 9 0 85.7321 -48.4184 64.15
+ 43 121.771 1328 8 1 85.7554 -48.4033 35.55
+ 43 183.471 658 8 0 85.7558 -48.4028 34.15
+ 43 106.791 1328 7 1 85.7644 -48.3953 5.55
+ 43 97.4681 658 7 0 85.7635 -48.3956 4.15
+ 43 100.334 1328 6 1 85.7433 -48.4034 -24.45
+ 43 131.897 658 6 0 85.7423 -48.4032 -25.85
+ 43 101.936 1328 5 1 85.7226 -48.4035 -54.45
+ 43 155.498 658 5 0 85.7221 -48.4024 -55.85
+ 43 103.896 1328 4 1 85.7132 -48.3796 -84.45
+ 43 186.494 658 4 0 85.7128 -48.3772 -85.85
+ 43 96.109 1328 3 1 85.7035 -48.3293 -114.45
+ 43 132.788 658 3 0 85.7038 -48.3269 -115.85
+ 43 98.5254 1328 2 1 85.7088 -48.2748 -144.45
+ 43 123.471 658 2 0 85.7095 -48.2728 -145.85
+ 43 122.014 1328 1 1 85.7267 -48.2341 -174.45
+ 43 129.324 659 1 0 85.7249 -48.2286 -175.85
+ 43 104.502 1328 0 1 85.6932 -48.1132 -204.45
+ 43 112.699 659 0 0 85.6911 -48.1116 -205.85
+Number of digits in this event = 13
Using G4ParticleGun ...
-8.67048 LIN
+6.71748 LIN
proton
Event: 44
-Number of tracker hits in this event = 22
- 44 109.071 649 9 1 -50.1304 -116.127 65.55
- 44 126.421 320 9 0 -50.1307 -116.127 64.15
- 44 91.0621 649 8 1 -50.1358 -116.119 35.55
- 44 142.567 320 8 0 -50.1354 -116.12 34.15
- 44 160.798 649 7 1 -50.1262 -116.137 5.55
- 44 117.178 320 7 0 -50.125 -116.136 4.15
- 44 111.069 649 6 1 -50.0989 -116.122 -24.45
- 44 167.69 320 6 0 -50.0977 -116.121 -25.85
- 44 176.293 649 5 1 -50.0748 -116.082 -54.45
- 44 118.694 320 5 0 -50.0732 -116.08 -55.85
- 44 104.808 650 4 1 -50.0397 -116.043 -84.45
- 44 92.1065 320 4 0 -50.0376 -116.041 -85.85
- 44 116.045 650 3 1 -49.9978 -115.997 -114.45
- 44 109.969 320 3 0 -49.9957 -115.995 -115.85
- 44 108.93 650 2 1 -49.9545 -115.947 -144.45
- 44 296.991 321 2 0 -49.9515 -115.945 -145.85
- 44 130.353 650 1 1 -49.8908 -115.896 -174.45
- 44 129.354 321 1 0 -49.8878 -115.894 -175.85
- 44 137.827 651 0 1 -49.8297 -115.852 -204.45
- 44 155.106 321 0 0 -49.8253 -115.849 -205.85
- 44 10.5755 320 2 0 -49.9224 -115.95 -146.012
- 44 91.0847 322 2 0 -49.8143 -115.75 -146.055
-Number of digits in this event = 11
+Number of tracker hits in this event = 33
+ 44 99.7877 1480 8 1 116.226 -80.9488 35.55
+ 44 291.548 495 8 0 116.226 -80.9488 34.15
+ 44 107.406 1480 7 1 116.239 -80.9513 5.55
+ 44 145.514 495 7 0 116.24 -80.9528 4.15
+ 44 106.621 1480 6 1 116.27 -80.983 -24.45
+ 44 111.995 495 6 0 116.271 -80.9841 -25.85
+ 44 135.145 1480 5 1 116.296 -81.0015 -54.45
+ 44 251.654 495 5 0 116.298 -81.0035 -55.85
+ 44 105.693 1480 4 1 116.338 -81.0461 -84.45
+ 44 199.137 495 4 0 116.34 -81.0481 -85.85
+ 44 114.895 1481 3 1 116.38 -81.089 -114.45
+ 44 231.127 494 3 0 116.383 -81.0897 -115.85
+ 44 143.764 1481 2 1 116.446 -81.1048 -144.45
+ 44 115.111 494 2 0 116.452 -81.1029 -145.85
+ 44 126.559 1482 1 1 116.56 -81.0648 -174.45
+ 44 114.214 494 1 0 116.565 -81.063 -175.85
+ 44 153.253 1482 0 1 116.658 -81.0239 -204.45
+ 44 151.126 495 0 0 116.661 -81.0222 -205.85
+ 44 166.115 1111 0 1 42.4063 -44.4919 -204.85
+ 44 17.2715 520 0 0 -23.1803 -75.879 -205.956
+ 44 164.542 1416 3 1 103.351 -148.108 -114.45
+ 44 109.28 173 4 0 87.332 -145.439 -86.2497
+ 44 239.993 172 4 0 87.2421 -145.55 -86.0555
+ 44 124.503 310 0 0 138.984 -117.976 -206.25
+ 44 198.217 1595 0 1 139.237 -118.191 -204.85
+ 44 111.503 206 1 0 151.866 -138.775 -176.25
+ 44 91.3861 205 1 0 151.949 -138.95 -176.024
+ 44 46.8738 1660 1 1 152.305 -139.768 -174.85
+ 44 93.8679 1661 1 1 152.35 -139.883 -174.701
+ 44 94.8001 133 2 0 147.491 -153.442 -146.25
+ 44 104.22 132 2 0 147.513 -153.55 -146.135
+ 44 11.2943 454 5 0 135.292 -89.1082 -56.25
+ 44 3.59425 460 5 0 158.669 -87.9813 -56.25
+Number of digits in this event = 18
Using G4ParticleGun ...
-3.99097 LIN
+5.84432 LIN
proton
Event: 45
-Number of tracker hits in this event = 24
- 45 121.084 664 7 1 -47.2309 -141.847 5.55
- 45 237.678 191 7 0 -47.231 -141.846 4.15
- 45 119.719 664 6 1 -47.2354 -141.831 -24.45
- 45 123.218 191 6 0 -47.236 -141.83 -25.85
- 45 119.885 663 5 1 -47.2537 -141.81 -54.45
- 45 158.466 191 5 0 -47.256 -141.817 -55.85
- 45 111.708 663 4 1 -47.3096 -141.95 -84.45
- 45 84.6722 190 4 0 -47.3133 -141.957 -85.85
- 45 94.0834 663 3 1 -47.3957 -142.089 -114.45
- 45 100.156 190 3 0 -47.4015 -142.094 -115.85
- 45 167.3 662 2 1 -47.5146 -142.219 -144.45
- 45 114.455 189 2 0 -47.5206 -142.226 -145.85
- 45 142.082 662 1 1 -47.6403 -142.382 -174.45
- 45 100.944 188 1 0 -47.6455 -142.391 -175.85
- 45 137.406 661 0 1 -47.7493 -142.579 -204.45
- 45 127.418 187 0 0 -47.7538 -142.589 -205.85
- 45 62.164 620 3 1 -55.9983 -99.3042 -114.664
- 45 48.3935 190 5 0 -56.3807 -142.15 -56.2499
- 45 81.4851 189 5 0 -56.3919 -142.15 -56.2405
- 45 109.539 663 6 1 -47.25 -141.793 -24.6491
- 45 22.5612 195 6 0 -47.581 -140.987 -25.85
- 45 97.7021 196 6 0 -47.577 -140.95 -25.9369
- 45 163.041 197 6 0 -47.4773 -140.75 -26.0669
- 45 180.673 198 6 0 -47.525 -140.55 -25.9829
-Number of digits in this event = 12
+Number of tracker hits in this event = 37
+ 45 125.261 268 9 1 -126.516 13.1646 65.55
+ 45 106.83 965 9 0 -126.517 13.1645 64.15
+ 45 127.799 268 8 1 -126.524 13.1606 35.55
+ 45 104.46 965 8 0 -126.525 13.1612 34.15
+ 45 146.31 268 7 1 -126.544 13.1745 5.55
+ 45 107.038 965 7 0 -126.546 13.1751 4.15
+ 45 103.365 267 6 1 -126.579 13.188 -24.45
+ 45 114.017 965 6 0 -126.58 13.1869 -25.85
+ 45 257.288 267 5 1 -126.614 13.1634 -54.45
+ 45 124.552 965 5 0 -126.615 13.1612 -55.85
+ 45 123.261 267 4 1 -126.632 13.1143 -84.45
+ 45 262.343 965 4 0 -126.633 13.1119 -85.85
+ 45 143.827 267 3 1 -126.638 13.0564 -114.45
+ 45 264.06 965 3 0 -126.638 13.0545 -115.85
+ 45 152.613 267 2 1 -126.645 13.014 -144.45
+ 45 440.453 964 2 0 -126.646 13.0111 -145.85
+ 45 122.306 267 1 1 -126.646 12.9476 -174.45
+ 45 119.942 964 1 0 -126.646 12.9434 -175.85
+ 45 138.2 267 0 1 -126.646 12.8525 -204.45
+ 45 122.617 963 0 0 -126.647 12.848 -205.85
+ 45 101.597 963 2 0 -126.584 12.8104 -145.85
+ 45 2.75849 966 5 0 -126.517 13.4469 -55.8501
+ 45 116.168 967 5 0 -126.516 13.45 -55.8639
+ 45 50.1534 290 4 1 -122.122 23.6812 -84.45
+ 45 208.408 289 4 1 -122.15 23.5621 -84.5908
+ 45 41.9035 1012 4 0 -123.052 22.5491 -85.8509
+ 45 79.4615 1011 4 0 -123.118 22.45 -85.9622
+ 45 20.3053 1010 4 0 -123.18 22.25 -86.1897
+ 45 86.5355 294 3 1 -121.345 -6.72537 -114.45
+ 45 69.3266 295 3 1 -121.15 -6.62612 -114.668
+ 45 38.1842 296 3 1 -120.95 -6.51993 -114.786
+ 45 141.842 870 3 0 -119.372 -5.96766 -115.85
+ 45 138.063 871 3 0 -119.041 -5.85 -116.202
+ 45 148.517 922 3 0 -65.1439 4.59739 -116.25
+ 45 4.25151 577 3 1 -64.4599 4.42971 -114.85
+ 45 100.213 578 3 1 -64.45 4.42756 -114.829
+ 45 53.8747 579 3 1 -64.25 4.41014 -114.599
+Number of digits in this event = 20
Using G4ParticleGun ...
-4.30391 LIN
+2.65603 LIN
proton
Event: 46
-Number of tracker hits in this event = 23
- 46 106.72 552 10 1 -69.4753 84.407 95.55
- 46 115.056 1321 10 0 -69.4744 84.4072 94.15
- 46 114.532 552 9 1 -69.4551 84.4129 65.55
- 46 126.522 1321 9 0 -69.4537 84.4127 64.15
- 46 150.323 553 8 1 -69.425 84.4113 35.55
- 46 115.121 1321 8 0 -69.424 84.4118 34.15
- 46 126.505 553 7 1 -69.4038 84.422 5.55
- 46 141.61 1321 7 0 -69.4019 84.4225 4.15
- 46 105.583 553 6 1 -69.3604 84.4379 -24.45
- 46 112.351 1321 6 0 -69.3568 84.4399 -25.85
- 46 143.666 553 5 1 -69.2859 84.4798 -54.45
- 46 109.242 1322 5 0 -69.2842 84.4817 -55.85
- 46 106.379 553 4 1 -69.2602 84.5331 -84.45
- 46 129.275 1322 4 0 -69.257 84.5374 -85.85
- 46 276.063 554 3 1 -69.1891 84.6323 -114.45
- 46 91.2766 1322 3 0 -69.1859 84.6366 -115.85
- 46 150.279 554 2 1 -69.125 84.7237 -144.45
- 46 97.431 1323 2 0 -69.1234 84.729 -145.85
- 46 106.884 554 1 1 -69.0964 84.8421 -174.45
- 46 106.968 1323 1 0 -69.0935 84.8482 -175.85
- 46 95.805 555 0 1 -69.0306 84.9742 -204.45
- 46 120.304 1324 0 0 -69.028 84.9813 -205.85
- 46 216.589 555 2 1 -69.05 84.6844 -144.535
-Number of digits in this event = 11
+Number of tracker hits in this event = 20
+ 46 88.7227 1397 9 1 99.7039 -63.7285 65.55
+ 46 401.416 581 9 0 99.7013 -63.7296 64.15
+ 46 90.7482 1397 8 1 99.6525 -63.762 35.55
+ 46 128.902 581 8 0 99.6453 -63.7639 34.15
+ 46 92.0351 1396 7 1 99.5012 -63.8145 5.55
+ 46 110.935 581 7 0 99.496 -63.8201 4.15
+ 46 116.946 1396 6 1 99.3928 -63.9341 -24.45
+ 46 114.781 580 6 0 99.3881 -63.9418 -25.85
+ 46 104.196 1395 5 1 99.2813 -64.0933 -54.45
+ 46 99.1714 579 5 0 99.2756 -64.1035 -55.85
+ 46 177.904 1395 4 1 99.1604 -64.3149 -84.45
+ 46 81.7366 578 4 0 99.153 -64.3225 -85.85
+ 46 101.414 1394 3 1 99.0007 -64.4848 -114.45
+ 46 123.333 577 3 0 98.9944 -64.497 -115.85
+ 46 132.209 1393 2 1 98.864 -64.7616 -144.45
+ 46 101.688 576 2 0 98.858 -64.775 -145.85
+ 46 99.4946 1392 1 1 98.7395 -65.0469 -174.45
+ 46 105.346 574 1 0 98.7332 -65.0621 -175.85
+ 46 102.678 1392 0 1 98.6001 -65.3646 -204.45
+ 46 111.588 573 0 0 98.5944 -65.3815 -205.85
+Number of digits in this event = 6
Using G4ParticleGun ...
-6.54359 LIN
+7.56982 LIN
proton
Event: 47
-Number of tracker hits in this event = 24
- 47 27.8085 1346 10 1 89.2693 -73.8654 95.2622
- 47 97.4493 530 10 0 89.2693 -73.8654 94.15
- 47 164.142 1346 9 1 89.2699 -73.8604 65.55
- 47 121.114 530 9 0 89.2701 -73.8594 64.15
- 47 126.022 1346 8 1 89.2766 -73.8363 35.55
- 47 177.392 531 8 0 89.2773 -73.8349 34.15
- 47 152.706 1346 7 1 89.2921 -73.8101 5.55
- 47 181.289 531 7 0 89.2926 -73.8107 4.15
- 47 105.71 1346 6 1 89.3052 -73.8201 -24.45
- 47 131.287 531 6 0 89.305 -73.8212 -25.85
- 47 108.302 1346 5 1 89.3013 -73.8481 -54.45
- 47 190.77 531 5 0 89.3016 -73.8487 -55.85
- 47 113.113 1346 4 1 89.309 -73.859 -84.45
- 47 92.8694 530 4 0 89.31 -73.8615 -85.85
- 47 115.379 1346 3 1 89.3389 -73.9177 -114.45
- 47 118.759 530 3 0 89.3404 -73.9204 -115.85
- 47 166.044 1346 2 1 89.3741 -73.975 -144.45
- 47 234.445 530 2 0 89.3758 -73.9777 -145.85
- 47 107.039 1346 1 1 89.4098 -74.0336 -174.45
- 47 143.486 530 1 0 89.4118 -74.0358 -175.85
- 47 120.728 1347 0 1 89.4519 -74.0769 -204.45
- 47 124.887 529 0 0 89.4544 -74.0782 -205.85
- 47 1.64104 1095 2 0 176.279 39.234 -146.25
- 47 13.2515 837 1 0 167.575 -12.6434 -176.25
-Number of digits in this event = 15
+Number of tracker hits in this event = 20
+ 47 147.153 506 9 1 -78.8428 -104.107 65.55
+ 47 228.907 380 9 0 -78.843 -104.107 64.15
+ 47 127.159 506 8 1 -78.845 -104.102 35.55
+ 47 221.054 380 8 0 -78.8452 -104.102 34.15
+ 47 127.327 505 7 1 -78.8515 -104.093 5.55
+ 47 124.696 380 7 0 -78.853 -104.092 4.15
+ 47 172.331 505 6 1 -78.8862 -104.074 -24.45
+ 47 123.043 380 6 0 -78.888 -104.071 -25.85
+ 47 122.519 505 5 1 -78.9238 -104.013 -54.45
+ 47 106.797 380 5 0 -78.9261 -104.01 -55.85
+ 47 122.856 505 4 1 -78.974 -103.925 -84.45
+ 47 164.053 381 4 0 -78.9767 -103.922 -85.85
+ 47 115.766 505 3 1 -79.0311 -103.86 -114.45
+ 47 117.111 381 3 0 -79.0337 -103.857 -115.85
+ 47 109.429 504 2 1 -79.0855 -103.789 -144.45
+ 47 103.87 381 2 0 -79.0888 -103.785 -145.85
+ 47 115.141 504 1 1 -79.1587 -103.696 -174.45
+ 47 100.934 382 1 0 -79.1624 -103.692 -175.85
+ 47 124.108 504 0 1 -79.2426 -103.61 -204.45
+ 47 106.033 382 0 0 -79.2465 -103.606 -205.85
+Number of digits in this event = 13
Using G4ParticleGun ...
-7.20435 LIN
+6.82686 LIN
proton
Event: 48
Number of tracker hits in this event = 22
- 48 121.041 1374 8 1 95.0602 -102.425 35.55
- 48 270.325 388 8 0 95.0601 -102.425 34.15
- 48 122.798 1374 7 1 95.058 -102.415 5.55
- 48 108.432 388 7 0 95.0576 -102.415 4.15
- 48 90.0393 1374 6 1 95.0489 -102.421 -24.45
- 48 108.865 388 6 0 95.0491 -102.42 -25.85
- 48 105.606 1374 5 1 95.048 -102.397 -54.45
- 48 87.9993 388 5 0 95.0479 -102.396 -55.85
- 48 169.074 1374 4 1 95.045 -102.367 -84.45
- 48 101.812 388 4 0 95.0422 -102.365 -85.85
- 48 281.314 1374 3 1 94.9901 -102.328 -114.45
- 48 240.476 389 3 0 94.9875 -102.326 -115.85
- 48 123.672 1373 2 1 94.9334 -102.298 -144.45
- 48 107.387 389 2 0 94.9312 -102.296 -145.85
- 48 173.008 1373 1 1 94.8849 -102.261 -174.45
- 48 118.358 389 1 0 94.8829 -102.258 -175.85
- 48 118.469 1373 0 1 94.8435 -102.211 -204.45
- 48 152.2 389 0 0 94.8417 -102.209 -205.85
- 48 96.4465 1375 3 1 95.15 -102.618 -114.653
- 48 170.504 387 3 0 94.4243 -102.733 -115.85
- 48 91.1515 386 3 0 94.4047 -102.75 -115.891
- 48 225.486 389 4 0 93.9608 -102.196 -85.85
+ 48 115.54 1273 10 1 74.8006 -57.1311 95.55
+ 48 151.607 614 10 0 74.8008 -57.1315 94.15
+ 48 192.63 1273 9 1 74.8036 -57.1393 65.55
+ 48 141.61 614 9 0 74.805 -57.1402 64.15
+ 48 175.558 1273 8 1 74.8341 -57.161 35.55
+ 48 149.844 614 8 0 74.8351 -57.1621 34.15
+ 48 95.99 1274 7 1 74.8531 -57.1869 5.55
+ 48 130.19 614 7 0 74.855 -57.1872 4.15
+ 48 127.97 1274 6 1 74.8967 -57.1915 -24.45
+ 48 99.4396 614 6 0 74.8987 -57.191 -25.85
+ 48 123.309 1274 5 1 74.9374 -57.1796 -54.45
+ 48 194.29 614 5 0 74.9399 -57.1781 -55.85
+ 48 115.807 1274 4 1 74.9935 -57.1439 -84.45
+ 48 136.485 614 4 0 74.9964 -57.143 -85.85
+ 48 111.658 1275 3 1 75.0566 -57.1269 -114.45
+ 48 283.011 614 3 0 75.0597 -57.1251 -115.85
+ 48 112.916 1275 2 1 75.1261 -57.0832 -144.45
+ 48 110.44 614 2 0 75.1295 -57.0806 -145.85
+ 48 94.4134 1275 1 1 75.1947 -57.0267 -174.45
+ 48 90.7705 615 1 0 75.198 -57.0243 -175.85
+ 48 98.9862 1276 0 1 75.2723 -56.9627 -204.45
+ 48 111.178 615 0 0 75.2767 -56.9592 -205.85
Number of digits in this event = 12
Using G4ParticleGun ...
-3.19831 LIN
+8.70722 LIN
proton
Event: 49
-Number of tracker hits in this event = 23
- 49 110.218 1140 10 1 48.2068 100.544 95.55
- 49 125.19 1401 10 0 48.2076 100.546 94.15
- 49 181.473 1140 9 1 48.2206 100.578 65.55
- 49 143.902 1402 9 0 48.2216 100.582 64.15
- 49 97.1485 1140 8 1 48.2375 100.672 35.55
- 49 114.552 1402 8 0 48.2392 100.676 34.15
- 49 137.83 1141 7 1 48.2761 100.779 5.55
- 49 119.908 1403 7 0 48.2793 100.785 4.15
- 49 97.9833 1141 6 1 48.3419 100.908 -24.45
- 49 106.622 1403 6 0 48.3437 100.914 -25.85
- 49 143.081 1141 5 1 48.3822 101.043 -54.45
- 49 117.427 1404 5 0 48.3838 101.051 -55.85
- 49 98.0242 1141 4 1 48.4081 101.235 -84.45
- 49 107.962 1405 4 0 48.4096 101.244 -85.85
- 49 131.062 1141 3 1 48.4354 101.423 -114.45
- 49 124.243 1406 3 0 48.4369 101.429 -115.85
- 49 113.606 1142 2 1 48.4697 101.556 -144.45
- 49 108.167 1407 2 0 48.4697 101.559 -145.85
- 49 101.598 1142 1 1 48.4704 101.63 -174.45
- 49 108.924 1407 1 0 48.4701 101.635 -175.85
- 49 157.706 1142 0 1 48.466 101.744 -204.45
- 49 12.8079 1407 0 0 48.4649 101.75 -205.85
- 49 87.6759 1408 0 0 48.4648 101.75 -205.886
-Number of digits in this event = 11
+Number of tracker hits in this event = 31
+ 49 99.2908 1066 11 1 33.2506 29.656 125.55
+ 49 120.212 1048 11 0 33.2498 29.6549 124.15
+ 49 113.351 1065 10 1 33.2296 29.63 95.55
+ 49 172.477 1047 10 0 33.2283 29.6286 94.15
+ 49 135.267 1065 9 1 33.199 29.6027 65.55
+ 49 238.69 1047 9 0 33.1967 29.6007 64.15
+ 49 155.259 1065 8 1 33.1514 29.5596 35.55
+ 49 97.2173 1047 8 0 33.1497 29.5579 34.15
+ 49 105.388 1065 7 1 33.1137 29.518 5.55
+ 49 147.071 1047 7 0 33.111 29.5163 4.15
+ 49 110.129 1065 6 1 33.0564 29.478 -24.45
+ 49 190.097 1047 6 0 33.0534 29.4758 -25.85
+ 49 121.042 1064 5 1 32.9924 29.4289 -54.45
+ 49 218.751 1046 5 0 32.989 29.427 -55.85
+ 49 189.847 1064 4 1 32.9185 29.3905 -84.45
+ 49 170.081 1046 4 0 32.9154 29.3878 -85.85
+ 49 134.187 1064 3 1 32.8511 29.3373 -114.45
+ 49 223.194 1046 3 0 32.8479 29.3353 -115.85
+ 49 109.918 1063 2 1 32.7825 29.2985 -144.45
+ 49 101.32 1046 2 0 32.779 29.2962 -145.85
+ 49 101.045 1063 1 1 32.7064 29.2441 -174.45
+ 49 100.653 1045 1 0 32.7022 29.2411 -175.85
+ 49 113.967 1062 0 1 32.6169 29.181 -204.45
+ 49 108.175 1045 0 0 32.6122 29.1769 -205.85
+ 49 24.5606 1436 5 0 75.1446 107.456 -56.25
+ 49 147.135 1167 6 1 53.6464 150.257 -24.5411
+ 49 137.55 1047 4 0 32.9412 29.45 -86.0682
+ 49 52.0556 1049 4 0 32.8132 29.9798 -85.85
+ 49 96.7721 1050 4 0 32.8046 30.0503 -86.0028
+ 49 240.193 1090 4 0 80.9948 38.1993 -86.2494
+ 49 78.6187 1091 4 0 81.6568 38.2505 -86.2017
+Number of digits in this event = 20
Using G4ParticleGun ...
-2.73031 LIN
+6.34643 LIN
proton
Event: 50
-Number of tracker hits in this event = 24
- 50 108.038 836 11 1 -12.697 70.5941 125.55
- 50 129.686 1252 11 0 -12.6968 70.5936 124.15
- 50 141.124 836 10 1 -12.6944 70.5768 95.55
- 50 111.124 1252 10 0 -12.694 70.5813 94.15
- 50 137.852 836 9 1 -12.6951 70.6805 65.55
- 50 85.2952 1253 9 0 -12.6926 70.6872 64.15
- 50 303.792 837 8 1 -12.6364 70.833 35.55
- 50 114.909 1253 8 0 -12.6316 70.8378 34.15
- 50 120.728 837 7 1 -12.5289 70.9339 5.55
- 50 133.936 1254 7 0 -12.5233 70.9395 4.15
- 50 109.893 838 6 1 -12.4096 71.0597 -24.45
- 50 184.355 1255 6 0 -12.4045 71.0658 -25.85
- 50 95.9595 838 5 1 -12.3059 71.1893 -54.45
- 50 110.519 1255 5 0 -12.2986 71.194 -55.85
- 50 118.506 839 4 1 -12.1478 71.2826 -84.45
- 50 114.61 1256 4 0 -12.1402 71.2887 -85.85
- 50 148.427 840 3 1 -11.9828 71.4127 -114.45
- 50 103.594 1256 3 0 -11.9763 71.419 -115.85
- 50 100.017 841 2 1 -11.8418 71.5411 -144.45
- 50 113.883 1257 2 0 -11.8368 71.5463 -145.85
- 50 111.878 841 1 1 -11.7364 71.6505 -174.45
- 50 130.409 1258 1 0 -11.7307 71.6562 -175.85
- 50 141.012 842 0 1 -11.6165 71.7769 -204.45
- 50 155.395 1258 0 0 -11.6092 71.7839 -205.85
-Number of digits in this event = 12
+Number of tracker hits in this event = 20
+ 50 98.7948 353 9 1 -109.489 -66.3105 65.55
+ 50 146.294 568 9 0 -109.489 -66.3117 64.15
+ 50 130.232 353 8 1 -109.475 -66.3416 35.55
+ 50 103.123 568 8 0 -109.474 -66.3424 34.15
+ 50 119.599 353 7 1 -109.465 -66.3598 5.55
+ 50 125.461 568 7 0 -109.465 -66.3607 4.15
+ 50 121.797 353 6 1 -109.491 -66.3795 -24.45
+ 50 97.8187 568 6 0 -109.493 -66.38 -25.85
+ 50 106.959 353 5 1 -109.527 -66.3869 -54.45
+ 50 99.4554 568 5 0 -109.53 -66.3892 -55.85
+ 50 144.796 352 4 1 -109.583 -66.4353 -84.45
+ 50 108.251 568 4 0 -109.586 -66.4378 -85.85
+ 50 111.316 352 3 1 -109.652 -66.4881 -114.45
+ 50 138.53 567 3 0 -109.651 -66.4891 -115.85
+ 50 320.986 352 2 1 -109.648 -66.5114 -144.45
+ 50 174.183 567 2 0 -109.647 -66.512 -145.85
+ 50 112.3 352 1 1 -109.633 -66.5247 -174.45
+ 50 179.094 567 1 0 -109.633 -66.5266 -175.85
+ 50 108.81 352 0 1 -109.624 -66.5647 -204.45
+ 50 111.709 567 0 0 -109.624 -66.5661 -205.85
+Number of digits in this event = 10
Using G4ParticleGun ...
-4.63434 LIN
+2.99004 LIN
proton
Event: 51
-Number of tracker hits in this event = 22
- 51 128.961 1386 10 1 97.4882 43.5076 95.55
- 51 85.9526 1117 10 0 97.4886 43.5085 94.15
- 51 225.744 1386 9 1 97.5059 43.5325 65.55
- 51 109.628 1117 9 0 97.5079 43.5345 64.15
- 51 133.859 1386 8 1 97.547 43.5761 35.55
- 51 114.001 1117 8 0 97.5488 43.5781 34.15
- 51 369.952 1387 7 1 97.5913 43.625 5.55
- 51 105.392 1117 7 0 97.5942 43.6265 4.15
- 51 110.202 1387 6 1 97.6573 43.6579 -24.45
- 51 111.021 1118 6 0 97.6597 43.6603 -25.85
- 51 136.141 1387 5 1 97.7086 43.7083 -54.45
- 51 178.077 1118 5 0 97.7107 43.7129 -55.85
- 51 115.732 1388 4 1 97.7536 43.8028 -84.45
- 51 112.411 1118 4 0 97.7556 43.8082 -85.85
- 51 105.052 1388 3 1 97.7919 43.924 -114.45
- 51 114.699 1119 3 0 97.794 43.9302 -115.85
- 51 172.796 1388 2 1 97.8397 44.0561 -144.45
- 51 92.0428 1120 2 0 97.8419 44.0632 -145.85
- 51 157.959 1388 1 1 97.8838 44.2 -174.45
- 51 149.113 1120 1 0 97.8864 44.2096 -175.85
- 51 116.011 1388 0 1 97.9348 44.4094 -204.45
- 51 161.296 1121 0 0 97.9365 44.4218 -205.85
-Number of digits in this event = 11
+Number of tracker hits in this event = 28
+ 51 106.798 891 11 1 -1.68293 74.4155 125.55
+ 51 119.881 1271 11 0 -1.68282 74.4165 124.15
+ 51 107.624 891 10 1 -1.67739 74.4299 95.55
+ 51 130.673 1271 10 0 -1.67847 74.4294 94.15
+ 51 103.458 891 9 1 -1.69603 74.4203 65.55
+ 51 121.053 1271 9 0 -1.6973 74.4204 64.15
+ 51 115.255 891 8 1 -1.73026 74.4302 35.55
+ 51 123.35 1271 8 0 -1.73131 74.4333 34.15
+ 51 118.306 891 7 1 -1.75064 74.4915 5.55
+ 51 106.648 1272 7 0 -1.75126 74.4943 4.15
+ 51 98.7973 891 6 1 -1.76844 74.5475 -24.45
+ 51 156.63 1272 6 0 -1.76732 74.5487 -25.85
+ 51 120.848 891 5 1 -1.74685 74.5775 -54.45
+ 51 106.181 1272 5 0 -1.7449 74.5791 -55.85
+ 51 120.765 891 4 1 -1.71083 74.6106 -84.45
+ 51 142.126 1272 4 0 -1.70867 74.6135 -85.85
+ 51 115.778 891 3 1 -1.66192 74.6773 -114.45
+ 51 100.77 1273 3 0 -1.65701 74.6812 -115.85
+ 51 114.72 892 2 1 -1.59474 74.7709 -144.45
+ 51 125.282 1273 2 0 -1.5904 74.776 -145.85
+ 51 155.801 892 1 1 -1.51128 74.8813 -174.45
+ 51 139.146 1274 1 0 -1.50682 74.8868 -175.85
+ 51 231.016 893 0 1 -1.40537 75.0147 -204.45
+ 51 104.564 1274 0 0 -1.40067 75.0235 -205.85
+ 51 166.885 1248 3 0 104.338 69.835 -116.25
+ 51 93.1504 1249 3 0 104.471 69.85 -115.889
+ 51 1.28907 1420 3 1 104.245 70.4242 -114.85
+ 51 81.2986 1251 3 0 102.649 70.3896 -115.85
+Number of digits in this event = 13
Using G4ParticleGun ...
-3.00715 LIN
+9.74511 LIN
proton
Event: 52
-Number of tracker hits in this event = 25
- 52 103.052 1260 9 1 72.0806 -99.618 65.55
- 52 111.466 402 9 0 72.0816 -99.6171 64.15
- 52 111.843 1260 8 1 72.1102 -99.5928 35.55
- 52 107.195 402 8 0 72.1115 -99.5925 34.15
- 52 94.5276 1260 7 1 72.1307 -99.587 5.55
- 52 106.039 402 7 0 72.1338 -99.5879 4.15
- 52 120.111 1260 6 1 72.1956 -99.604 -24.45
- 52 109.476 402 6 0 72.1953 -99.6034 -25.85
- 52 107.611 1260 5 1 72.1857 -99.5907 -54.45
- 52 112.085 402 5 0 72.1869 -99.5883 -55.85
- 52 114.906 1260 4 1 72.2092 -99.5354 -84.45
- 52 123.969 403 4 0 72.2137 -99.5321 -85.85
- 52 106.398 1261 3 1 72.2872 -99.4625 -114.45
- 52 176.882 403 3 0 72.2882 -99.4591 -115.85
- 52 192.977 1261 2 1 72.3008 -99.4071 -144.45
- 52 114.791 403 2 0 72.3007 -99.4043 -145.85
- 52 147.861 1261 1 1 72.2994 -99.3482 -174.45
- 52 104.199 404 1 0 72.2992 -99.3472 -175.85
- 52 250.897 1261 0 1 72.2958 -99.3332 -204.45
- 52 106.887 404 0 0 72.2964 -99.3328 -205.85
- 52 84.4662 1262 2 1 72.4501 -99.5444 -144.601
- 52 11.3641 400 2 0 73.3003 -100.131 -145.85
- 52 95.1241 399 2 0 73.3375 -100.15 -145.884
- 52 121.047 398 2 0 73.599 -100.35 -146.072
- 52 82.0262 397 2 0 73.9667 -100.55 -146.201
-Number of digits in this event = 9
+Number of tracker hits in this event = 24
+ 52 113.319 1220 11 1 64.0764 3.83139 125.55
+ 52 150.509 918 11 0 64.0762 3.83079 124.15
+ 52 128.232 1220 10 1 64.0714 3.82072 95.55
+ 52 91.6518 918 10 0 64.0702 3.81972 94.15
+ 52 109.257 1219 9 1 64.044 3.79763 65.55
+ 52 130.291 918 9 0 64.0433 3.79625 64.15
+ 52 109.611 1219 8 1 64.0283 3.76653 35.55
+ 52 112.24 918 8 0 64.0275 3.76483 34.15
+ 52 204.014 1219 7 1 64.016 3.73076 5.55
+ 52 134.586 918 7 0 64.0138 3.72914 4.15
+ 52 162.922 1219 6 1 63.9665 3.69513 -24.45
+ 52 94.3362 918 6 0 63.965 3.6932 -25.85
+ 52 126.393 1219 5 1 63.9335 3.65193 -54.45
+ 52 129.884 917 5 0 63.9314 3.64937 -55.85
+ 52 99.6991 1219 4 1 63.889 3.59365 -84.45
+ 52 102.578 917 4 0 63.8865 3.59105 -85.85
+ 52 138.63 1218 3 1 63.8378 3.5352 -114.45
+ 52 124.528 917 3 0 63.8347 3.53291 -115.85
+ 52 124.809 1218 2 1 63.7709 3.48863 -144.45
+ 52 94.0011 917 2 0 63.7677 3.48732 -145.85
+ 52 128.822 1218 1 1 63.701 3.45668 -174.45
+ 52 126.72 917 1 0 63.6978 3.45515 -175.85
+ 52 127.465 1217 0 1 63.6321 3.42551 -204.45
+ 52 114.499 916 0 0 63.6283 3.42353 -205.85
+Number of digits in this event = 15
Using G4ParticleGun ...
-3.912 LIN
+9.38042 LIN
proton
Event: 53
-Number of tracker hits in this event = 23
- 53 115.147 432 8 1 -93.6671 -99.2411 35.55
- 53 118.301 404 8 0 -93.6668 -99.2421 34.15
- 53 104.174 432 7 1 -93.6607 -99.265 5.55
- 53 103.677 404 7 0 -93.6605 -99.2686 4.15
- 53 104.471 432 6 1 -93.6594 -99.3387 -24.45
- 53 102.808 404 6 0 -93.6588 -99.3404 -25.85
- 53 160.995 432 5 1 -93.6498 -99.3747 -54.45
- 53 211.599 403 5 0 -93.65 -99.3741 -55.85
- 53 87.7124 432 4 1 -93.6539 -99.3645 -84.45
- 53 93.6202 403 4 0 -93.6529 -99.3652 -85.85
- 53 121.374 432 3 1 -93.6278 -99.3789 -114.45
- 53 109.798 403 3 0 -93.6271 -99.3806 -115.85
- 53 121.658 432 2 1 -93.6177 -99.4135 -144.45
- 53 103.24 403 2 0 -93.6176 -99.4143 -145.85
- 53 114.032 432 1 1 -93.6102 -99.4318 -174.45
- 53 181.534 403 1 0 -93.6098 -99.4337 -175.85
- 53 143.281 432 0 1 -93.6026 -99.4701 -204.45
- 53 93.2711 403 0 0 -93.6026 -99.4731 -205.85
- 53 8.03856 282 5 0 -119.825 -123.741 -56.25
- 53 76.3665 281 5 0 -119.834 -123.75 -56.2389
- 53 62.3133 280 5 0 -119.936 -123.95 -56.1385
- 53 39.8578 279 5 0 -120.037 -124.15 -56.1992
- 53 168.567 403 6 0 -93.6648 -99.35 -25.9229
-Number of digits in this event = 9
+Number of tracker hits in this event = 22
+ 53 125.13 1040 10 1 28.1064 -88.6975 95.55
+ 53 105.711 456 10 0 28.1062 -88.6971 94.15
+ 53 141.95 1040 9 1 28.1014 -88.6894 65.55
+ 53 144.802 456 9 0 28.1022 -88.6887 64.15
+ 53 119.457 1040 8 1 28.1174 -88.679 35.55
+ 53 138.771 456 8 0 28.118 -88.6785 34.15
+ 53 417.506 1040 7 1 28.1339 -88.6664 5.55
+ 53 130.659 456 7 0 28.1347 -88.6664 4.15
+ 53 118.696 1040 6 1 28.1487 -88.6671 -24.45
+ 53 100.527 456 6 0 28.1498 -88.6668 -25.85
+ 53 104.068 1040 5 1 28.1722 -88.6641 -54.45
+ 53 96.2967 456 5 0 28.1737 -88.6636 -55.85
+ 53 113.036 1040 4 1 28.2029 -88.6544 -84.45
+ 53 111.351 456 4 0 28.2047 -88.6537 -85.85
+ 53 137.745 1040 3 1 28.2423 -88.6414 -114.45
+ 53 104.703 457 3 0 28.2456 -88.6417 -115.85
+ 53 302.331 1041 2 1 28.3129 -88.6474 -144.45
+ 53 131.584 457 2 0 28.3167 -88.6472 -145.85
+ 53 105.608 1041 1 1 28.3935 -88.6421 -174.45
+ 53 134.296 457 1 0 28.3978 -88.6416 -175.85
+ 53 112.182 1042 0 1 28.4875 -88.6324 -204.45
+ 53 120.628 457 0 0 28.4922 -88.6326 -205.85
+Number of digits in this event = 12
Using G4ParticleGun ...
-4.19171 LIN
+7.60606 LIN
proton
Event: 54
-Number of tracker hits in this event = 23
- 54 87.5295 1050 10 1 30.1058 -100.058 95.55
- 54 186.306 400 10 0 30.1051 -100.06 94.15
- 54 100.251 1050 9 1 30.0913 -100.097 65.55
- 54 139.786 400 9 0 30.0899 -100.1 64.15
- 54 101.023 1050 8 1 30.0655 -100.167 35.55
- 54 91.695 399 8 0 30.0646 -100.17 34.15
- 54 121.808 1049 7 1 30.0499 -100.219 5.55
- 54 137.435 399 7 0 30.048 -100.222 4.15
- 54 120.792 1049 6 1 30.0138 -100.27 -24.45
- 54 312.159 399 6 0 30.0116 -100.272 -25.85
- 54 89.5904 1049 5 1 29.9627 -100.316 -54.45
- 54 102.557 399 5 0 29.9597 -100.318 -55.85
- 54 132.75 1049 4 1 29.8984 -100.348 -84.45
- 54 117.115 399 4 0 29.8997 -100.349 -85.85
- 54 137.018 1049 3 1 29.9258 -100.379 -114.45
- 54 187.386 398 3 0 29.9269 -100.379 -115.85
- 54 106.966 1049 2 1 29.9482 -100.383 -144.45
- 54 97.6482 398 2 0 29.9504 -100.383 -145.85
- 54 95.737 1049 1 1 29.9948 -100.39 -174.45
- 54 120.963 398 1 0 29.9957 -100.391 -175.85
- 54 94.2313 1049 0 1 30.0068 -100.41 -204.45
- 54 136.471 398 0 0 30.0084 -100.41 -205.85
- 54 116.334 450 0 0 -28.2258 -90.05 -206.204
-Number of digits in this event = 12
+Number of tracker hits in this event = 27
+ 54 120.183 769 11 1 -26.2143 26.3513 125.55
+ 54 100.679 1031 11 0 -26.2132 26.3511 124.15
+ 54 118.768 769 10 1 -26.1938 26.353 95.55
+ 54 152.255 1031 10 0 -26.1924 26.353 94.15
+ 54 119.41 769 9 1 -26.1646 26.3546 65.55
+ 54 101.192 1031 9 0 -26.1647 26.3526 64.15
+ 54 107.054 769 8 1 -26.1655 26.3083 35.55
+ 54 108.949 1031 8 0 -26.1663 26.3084 34.15
+ 54 101.6 769 7 1 -26.1826 26.3114 5.55
+ 54 114.198 1031 7 0 -26.183 26.3114 4.15
+ 54 154.841 769 6 1 -26.1876 26.3152 -24.45
+ 54 120.662 1031 6 0 -26.1884 26.3155 -25.85
+ 54 227.174 769 5 1 -26.2036 26.3201 -54.45
+ 54 152.897 1031 5 0 -26.2038 26.3204 -55.85
+ 54 120.891 769 4 1 -26.2095 26.33 -84.45
+ 54 117.042 1031 4 0 -26.2095 26.3303 -85.85
+ 54 141.984 769 3 1 -26.2064 26.3361 -114.45
+ 54 121.266 1031 3 0 -26.206 26.3362 -115.85
+ 54 105.575 769 2 1 -26.1972 26.3389 -144.45
+ 54 170.073 1031 2 0 -26.1961 26.3397 -145.85
+ 54 175.601 769 1 1 -26.1703 26.3535 -174.45
+ 54 98.5463 1031 1 0 -26.1686 26.3537 -175.85
+ 54 131.096 769 0 1 -26.136 26.3597 -204.45
+ 54 101.848 1031 0 0 -26.1351 26.3604 -205.85
+ 54 17.2104 1273 2 0 -81.207 74.7163 -146.145
+ 54 89.184 904 2 0 37.94 0.993482 -146.25
+ 54 61.7227 1050 2 0 49.8775 30.084 -146.25
+Number of digits in this event = 14
Using G4ParticleGun ...
-6.13961 LIN
+4.46983 LIN
proton
Event: 55
-Number of tracker hits in this event = 27
- 55 100.123 1079 10 1 35.9091 83.5133 95.55
- 55 95.6048 1317 10 0 35.9106 83.5132 94.15
- 55 90.3021 1079 9 1 35.9393 83.5111 65.55
- 55 168.269 1317 9 0 35.9406 83.5116 64.15
- 55 128.007 1079 8 1 35.9659 83.5246 35.55
- 55 117.947 1317 8 0 35.967 83.5251 34.15
- 55 126.975 1079 7 1 35.9901 83.5356 5.55
- 55 132.692 1317 7 0 35.9914 83.537 4.15
- 55 137.915 1079 6 1 36.0196 83.5692 -24.45
- 55 212.596 1317 6 0 36.0206 83.5715 -25.85
- 55 126.373 1079 5 1 36.0396 83.6153 -54.45
- 55 226.925 1317 5 0 36.0407 83.6167 -55.85
- 55 109.258 1080 4 1 36.0622 83.6456 -84.45
- 55 120.926 1317 4 0 36.0618 83.6465 -85.85
- 55 103.805 1079 3 1 36.0494 83.6676 -114.45
- 55 94.3335 1318 3 0 36.0499 83.6687 -115.85
- 55 121.702 1080 2 1 36.0592 83.6862 -144.45
- 55 117.056 1318 2 0 36.0597 83.6862 -145.85
- 55 110.199 1080 1 1 36.0786 83.684 -174.45
- 55 125.536 1318 1 0 36.0785 83.684 -175.85
- 55 126.487 1080 0 1 36.0783 83.6801 -204.45
- 55 118.897 1318 0 0 36.078 83.6799 -205.85
- 55 194.091 1316 5 0 34.8631 83.45 -55.9411
- 55 48.6117 1332 9 0 45.2134 86.5909 63.7502
- 55 88.426 1333 9 0 45.3638 86.65 63.76
- 55 169.274 1295 9 0 44.3308 79.1149 63.7501
- 55 193.777 1294 9 0 44.2687 79.0497 63.9562
-Number of digits in this event = 18
+Number of tracker hits in this event = 26
+ 55 130.331 1169 11 1 53.854 44.5741 125.55
+ 55 184.947 1122 11 0 53.852 44.5744 124.15
+ 55 132.677 1168 10 1 53.8051 44.5804 95.55
+ 55 90.6029 1122 10 0 53.8006 44.5807 94.15
+ 55 132.194 1168 9 1 53.7134 44.5913 65.55
+ 55 125.391 1122 9 0 53.7075 44.5919 64.15
+ 55 115.357 1167 8 1 53.581 44.6022 35.55
+ 55 99.615 1122 8 0 53.5732 44.6023 34.15
+ 55 85.693 1166 7 1 53.415 44.6035 5.55
+ 55 126.726 1122 7 0 53.4059 44.6052 4.15
+ 55 116.121 1165 6 1 53.2246 44.6361 -24.45
+ 55 140.671 1122 6 0 53.2166 44.6377 -25.85
+ 55 10.6256 1165 5 1 53.0503 44.6658 -54.45
+ 55 74.7335 1164 5 1 53.05 44.6659 -54.4958
+ 55 150.019 1123 5 0 53.0412 44.6683 -55.85
+ 55 104.92 1164 4 1 52.8526 44.7175 -84.45
+ 55 1.23817 1163 4 1 52.85 44.7182 -84.8388
+ 55 98.0797 1123 4 0 52.8434 44.72 -85.85
+ 55 122.438 1163 3 1 52.6591 44.7726 -114.45
+ 55 126.191 1123 3 0 52.6508 44.7741 -115.85
+ 55 158.958 1162 2 1 52.4798 44.8048 -144.45
+ 55 113.936 1123 2 0 52.4699 44.8047 -145.85
+ 55 158.289 1161 1 1 52.2577 44.7996 -174.45
+ 55 225.588 1123 1 0 52.2481 44.8003 -175.85
+ 55 132.791 1160 0 1 52.056 44.8146 -204.45
+ 55 91.4626 1123 0 0 52.0522 44.8153 -205.85
+Number of digits in this event = 15
Using G4ParticleGun ...
-1.31334 LIN
+7.69312 LIN
proton
Event: 56
-Number of tracker hits in this event = 22
- 56 123.711 1515 7 1 123.241 -79.206 5.55
- 56 144.526 504 7 0 123.241 -79.2102 4.15
- 56 117.993 1515 6 1 123.265 -79.2825 -24.45
- 56 120.026 503 6 0 123.267 -79.2906 -25.85
- 56 116.547 1515 5 1 123.306 -79.4588 -54.45
- 56 135.129 502 5 0 123.31 -79.462 -55.85
- 56 106.997 1516 4 1 123.387 -79.5172 -84.45
- 56 139.726 502 4 0 123.389 -79.5224 -85.85
- 56 106.614 1516 3 1 123.431 -79.633 -114.45
- 56 199.83 502 3 0 123.432 -79.6359 -115.85
- 56 171.478 1516 2 1 123.431 -79.7092 -144.45
- 56 148.972 501 2 0 123.429 -79.7126 -145.85
- 56 127.122 1516 1 1 123.386 -79.7853 -174.45
- 56 128.638 501 1 0 123.382 -79.7876 -175.85
- 56 164.39 1515 0 1 123.313 -79.8366 -204.45
- 56 137.004 501 0 0 123.308 -79.8377 -205.85
- 56 135 503 7 0 123.225 -79.2503 3.91969
- 56 101.5 502 7 0 123.311 -79.45 3.77367
- 56 50.2885 527 7 0 130.117 -74.5223 3.75
- 56 60.9167 528 7 0 130.076 -74.45 3.8193
- 56 43.7386 467 7 0 161.406 -86.6429 3.75001
- 56 43.755 466 7 0 161.415 -86.6502 3.76156
-Number of digits in this event = 14
+Number of tracker hits in this event = 27
+ 56 142.733 788 11 1 -22.2608 -54.5804 125.55
+ 56 165.485 627 11 0 -22.2608 -54.5802 124.15
+ 56 130.173 788 10 1 -22.265 -54.5748 95.55
+ 56 103.585 627 10 0 -22.265 -54.5744 94.15
+ 56 107.563 788 9 1 -22.2624 -54.5662 65.55
+ 56 127.559 627 9 0 -22.2623 -54.5654 64.15
+ 56 144.167 788 8 1 -22.2623 -54.5469 35.55
+ 56 127.196 627 8 0 -22.2616 -54.5465 34.15
+ 56 148.265 789 7 1 -22.2421 -54.5381 5.55
+ 56 111.176 627 7 0 -22.2413 -54.5378 4.15
+ 56 121.491 789 6 1 -22.2273 -54.5318 -24.45
+ 56 225.27 627 6 0 -22.2265 -54.5305 -25.85
+ 56 103.789 789 5 1 -22.2087 -54.5038 -54.45
+ 56 96.3702 627 5 0 -22.208 -54.5026 -55.85
+ 56 113.971 789 4 1 -22.1934 -54.4771 -84.45
+ 56 101.495 627 4 0 -22.1928 -54.4764 -85.85
+ 56 122.871 789 3 1 -22.1808 -54.4639 -114.45
+ 56 118.365 627 3 0 -22.1792 -54.465 -115.85
+ 56 134.724 789 2 1 -22.1425 -54.4867 -144.45
+ 56 222.15 627 2 0 -22.1408 -54.4875 -145.85
+ 56 153.478 789 1 1 -22.1063 -54.5023 -174.45
+ 56 110.933 627 1 0 -22.1051 -54.5036 -175.85
+ 56 166.493 789 0 1 -22.0786 -54.5313 -204.45
+ 56 114.876 627 0 0 -22.0773 -54.5327 -205.85
+ 56 19.2188 698 3 1 -40.3663 -176.851 -114.661
+ 56 46.9328 605 1 1 -59.0048 -40.7206 -174.576
+ 56 122.901 267 4 0 141.737 -126.585 -85.902
+Number of digits in this event = 17
Using G4ParticleGun ...
-1.75147 LIN
+6.71602 LIN
proton
Event: 57
-Number of tracker hits in this event = 20
- 57 130.286 1147 9 1 49.5636 -111.311 65.55
- 57 111.99 344 9 0 49.5672 -111.31 64.15
- 57 107.977 1147 8 1 49.6336 -111.28 35.55
- 57 96.6572 344 8 0 49.6387 -111.282 34.15
- 57 100.603 1148 7 1 49.7411 -111.309 5.55
- 57 149.851 344 7 0 49.7497 -111.308 4.15
- 57 146.631 1149 6 1 49.9124 -111.295 -24.45
- 57 110.262 344 6 0 49.9211 -111.291 -25.85
- 57 127.318 1150 5 1 50.1132 -111.206 -54.45
- 57 433.177 344 5 0 50.1194 -111.205 -55.85
- 57 119.157 1150 4 1 50.238 -111.2 -84.45
- 57 375.06 344 4 0 50.247 -111.199 -85.85
- 57 109.191 1151 3 1 50.4305 -111.145 -114.45
- 57 110.578 345 3 0 50.4412 -111.144 -115.85
- 57 134.218 1153 2 1 50.7288 -111.115 -144.45
- 57 108.392 345 2 0 50.7422 -111.114 -145.85
- 57 118.94 1154 1 1 51.0157 -111.086 -174.45
- 57 146.827 345 1 0 51.0282 -111.087 -175.85
- 57 172.296 1156 0 1 51.2681 -111.113 -204.45
- 57 96.7317 345 0 0 51.2813 -111.113 -205.85
-Number of digits in this event = 10
+Number of tracker hits in this event = 24
+ 57 107.105 1282 11 1 76.6073 -17.2576 125.55
+ 57 100.657 813 11 0 76.6069 -17.2581 124.15
+ 57 94.0562 1282 10 1 76.5976 -17.2705 95.55
+ 57 144.523 813 10 0 76.5964 -17.272 94.15
+ 57 99.0601 1282 9 1 76.5712 -17.3046 65.55
+ 57 155.551 813 9 0 76.5692 -17.3064 64.15
+ 57 108.438 1282 8 1 76.5334 -17.3442 35.55
+ 57 96.6851 813 8 0 76.5319 -17.3453 34.15
+ 57 142.422 1282 7 1 76.5025 -17.3645 5.55
+ 57 105.756 813 7 0 76.5004 -17.3653 4.15
+ 57 141.005 1282 6 1 76.4605 -17.3811 -24.45
+ 57 159.317 813 6 0 76.4586 -17.3819 -25.85
+ 57 109.024 1281 5 1 76.419 -17.3979 -54.45
+ 57 126.231 813 5 0 76.4164 -17.3987 -55.85
+ 57 213.299 1281 4 1 76.3598 -17.414 -84.45
+ 57 110.518 813 4 0 76.3568 -17.4143 -85.85
+ 57 158.935 1281 3 1 76.2951 -17.4258 -114.45
+ 57 98.9467 813 3 0 76.2919 -17.4264 -115.85
+ 57 123.045 1280 2 1 76.2302 -17.4319 -144.45
+ 57 132.556 813 2 0 76.2263 -17.4306 -145.85
+ 57 117.792 1280 1 1 76.1444 -17.4009 -174.45
+ 57 105.902 813 1 0 76.1405 -17.3988 -175.85
+ 57 128.921 1280 0 1 76.0603 -17.354 -204.45
+ 57 235.266 813 0 0 76.0554 -17.352 -205.85
+Number of digits in this event = 13
Using G4ParticleGun ...
-5.0875 LIN
+6.49416 LIN
proton
Event: 58
-Number of tracker hits in this event = 453
- 58 347.617 1203 11 1 60.7428 -45.8842 125.55
- 58 123.086 670 11 0 60.7422 -45.8841 124.15
- 58 93.5078 1203 10 1 60.734 -45.8779 95.55
- 58 150.585 670 10 0 60.7345 -45.8784 94.15
- 58 209.263 841 10 0 39.9632 -11.655 93.75
- 58 9869.87 842 10 0 39.9602 -11.65 93.7541
- 58 11909.3 843 10 0 39.8396 -11.45 93.9171
- 58 5717.79 844 10 0 39.7227 -11.25 94.0797
- 58 1019.98 1095 10 1 39.0583 -10.0627 95.15
- 58 30931.2 1094 10 1 39.05 -10.0478 95.1634
- 58 38.2025 1093 10 1 38.8498 -9.76252 95.4605
- 58 117.919 1686 8 0 127.243 157.408 33.7501
- 58 60.4777 1534 8 1 126.973 157.606 35.1501
- 58 72.87 1533 8 1 126.95 157.655 35.3827
- 58 190.741 1655 8 0 112.516 151.213 33.75
- 58 78.3226 1456 8 1 111.5 151.062 35.1504
- 58 94.8891 1455 8 1 111.35 151.045 35.3474
- 58 14.8627 1454 8 1 111.004 150.896 35.55
- 58 385.776 1453 8 1 110.95 150.857 35.544
- 58 231.282 1647 8 0 110.492 149.697 34.15
- 58 32.0814 810 8 0 96.0035 -17.8654 34.1197
- 58 4890.77 667 10 0 79.8123 -46.479 93.75
- 58 9772.55 1203 9 1 60.7047 -45.5037 65.55
- 58 410.019 1040 10 0 92.5339 28.2229 93.75
- 58 5049.97 1041 10 0 92.5455 28.25 93.7603
- 58 57.4206 1042 10 0 92.6252 28.45 93.8181
- 58 20.6522 664 9 0 61.0886 -47.1682 63.8477
- 58 157.142 710 9 0 63.9558 -38.05 63.8437
- 58 5.4112 698 9 0 60.7134 -40.45 63.9856
- 58 94.8595 1572 10 1 134.55 -54.6749 95.2497
- 58 5322.17 1205 9 1 61.051 -45.5546 65.55
- 58 8654.49 1206 9 1 61.25 -45.3395 65.3695
- 58 842.78 1207 9 1 61.45 -45.125 65.1976
- 58 762.265 680 9 0 62.6259 -43.8922 64.15
- 58 3535.14 681 9 0 62.6662 -43.85 64.1141
- 58 3990.63 682 9 0 62.8554 -43.65 63.9443
- 58 3307.07 683 9 0 63.0194 -43.45 63.8182
- 58 191.869 765 10 0 52.0372 -26.9756 93.75
- 58 235.142 766 10 0 51.9793 -26.85 93.9355
- 58 466.115 1157 10 1 51.5984 -26.03 95.15
- 58 213.976 867 11 0 42.3279 -6.58244 123.75
- 58 225.034 868 11 0 42.2648 -6.45 123.945
- 58 81.0531 1109 11 1 41.8706 -5.63491 125.15
- 58 403.439 1108 11 1 41.85 -5.59228 125.213
- 58 142.197 965 12 0 32.4413 13.1654 153.75
- 58 494.654 966 12 0 32.3988 13.25 153.879
- 58 623.508 1059 12 1 31.9789 14.0882 155.15
- 58 7.37199 1058 12 1 31.85 14.3486 155.542
- 58 1405.23 1063 13 0 22.7097 32.7054 183.75
- 58 765.148 1064 13 0 22.1883 32.8503 184.129
- 58 223.436 1065 13 0 22.0628 33.05 183.993
- 58 11.573 1130 13 0 20.4631 46.2 183.75
- 58 1134.13 1014 13 1 22.9133 34.1648 185.15
- 58 325.004 1226 14 0 27.2454 65.3169 213.75
- 58 593.479 1227 14 0 27.2639 65.45 213.872
- 58 292.229 1228 14 0 27.2929 65.65 214.057
- 58 1437.88 1037 14 1 27.4792 66.8301 215.15
- 58 1083.42 512 4 0 55.5027 -77.4883 -86.0499
- 58 1860.52 571 10 0 97.7506 -65.7833 93.75
- 58 9000.94 570 10 0 97.8748 -65.85 93.8437
- 58 841.2 569 10 0 98.2539 -66.05 94.1369
- 58 1401.35 1396 10 1 99.5315 -66.5908 95.15
- 58 530.015 1397 10 1 99.55 -66.5986 95.1647
- 58 4067.32 1202 9 1 60.65 -46.038 65.4446
- 58 3617.79 666 9 0 60.3635 -46.7401 64.15
- 58 3727.8 665 9 0 60.3253 -46.85 63.9492
- 58 394.108 517 10 0 19.9408 -76.4746 93.75
- 58 283.218 516 10 0 19.706 -76.65 93.91
- 58 56.3162 515 10 0 19.4332 -76.85 94.0994
- 58 103.112 989 10 1 17.984 -77.9395 95.15
- 58 273.413 988 10 1 17.85 -78.0402 95.2472
- 58 305.598 987 10 1 17.65 -78.1887 95.3896
- 58 20.9192 986 10 1 17.45 -78.3347 95.5292
- 58 82.1837 360 11 0 -22.1841 -108.079 123.75
- 58 309.512 359 11 0 -22.2785 -108.15 123.817
- 58 204.199 358 11 0 -22.5439 -108.35 124.008
- 58 217.551 779 11 1 -24.1303 -109.584 125.15
- 58 190.146 778 11 1 -24.25 -109.677 125.236
- 58 194.112 777 11 1 -24.45 -109.83 125.378
- 58 174.822 776 11 1 -24.65 -109.983 125.523
- 58 270.68 213 12 0 -62.8647 -137.368 153.75
- 58 281.795 212 12 0 -63.1184 -137.55 153.938
- 58 1.01436 211 12 0 -63.4044 -137.75 154.149
- 58 99.3095 576 12 1 -64.7749 -138.829 155.15
- 58 278.062 575 12 1 -64.85 -138.888 155.205
- 58 228.864 574 12 1 -65.05 -139.045 155.349
- 58 72.2204 573 12 1 -65.25 -139.206 155.496
- 58 3.43169 94 13 0 -92.9366 -161.346 183.75
- 58 319.844 93 13 0 -92.9413 -161.35 183.755
- 58 315.621 92 13 0 -93.1911 -161.55 184.012
- 58 154.833 429 13 1 -94.2254 -162.425 185.15
- 58 331.326 428 13 1 -94.35 -162.531 185.288
- 58 46.8418 427 13 1 -94.55 -162.696 185.509
- 58 63.9061 782 11 1 -23.5835 -109.578 125.15
- 58 116.328 781 11 1 -23.6502 -109.658 125.27
- 58 264.003 780 11 1 -23.85 -109.735 125.436
- 58 34.0207 256 10 0 3.88983 -128.755 93.75
- 58 30.0902 257 10 0 3.88203 -128.75 93.7665
- 58 845.661 1204 9 1 60.9918 -45.971 65.55
- 58 2724.07 668 9 0 62.2572 -46.328 64.15
- 58 4356.84 1341 8 1 88.2537 -52.7976 35.55
- 58 1942.81 1342 8 1 88.45 -52.8926 35.3832
- 58 552.72 1200 9 1 60.235 -46.3966 65.55
- 58 411.213 1199 9 1 60.05 -46.5478 65.4687
- 58 318.836 1198 9 1 59.85 -46.7104 65.3813
- 58 378.263 1197 9 1 59.65 -46.8738 65.2927
- 58 265.34 1196 9 1 59.45 -47.0381 65.2042
- 58 201.04 655 9 0 57.0904 -48.9744 64.15
- 58 444.479 654 9 0 56.9984 -49.05 64.1089
- 58 433.749 653 9 0 56.753 -49.25 63.9998
- 58 472.93 652 9 0 56.5078 -49.45 63.8902
- 58 139.794 651 9 0 56.2648 -49.65 63.7809
- 58 62.1377 867 8 1 -6.61275 -100.802 35.55
- 58 418.675 866 8 1 -6.65 -100.833 35.5308
- 58 477.11 865 8 1 -6.85 -101 35.4285
- 58 447.311 864 8 1 -7.05 -101.165 35.3268
- 58 276.436 863 8 1 -7.25 -101.33 35.2236
- 58 360.528 385 8 0 -9.3163 -103.011 34.15
- 58 474.898 384 8 0 -9.48709 -103.15 34.0613
- 58 752.945 383 8 0 -9.72991 -103.35 33.9333
- 58 283.277 382 8 0 -9.97502 -103.55 33.8119
- 58 146.954 571 7 1 -65.7697 -150.353 5.55
- 58 444.581 570 7 1 -65.85 -150.413 5.51441
- 58 440.97 569 7 1 -66.05 -150.563 5.42613
- 58 495.553 568 7 1 -66.25 -150.711 5.33767
- 58 544.54 567 7 1 -66.45 -150.86 5.24757
- 58 39.3561 566 7 1 -66.65 -151.009 5.15818
- 58 177.757 137 7 0 -68.8798 -152.692 4.15
- 58 648.489 136 7 0 -68.9563 -152.75 4.11541
- 58 629.519 135 7 0 -69.2215 -152.95 3.99743
- 58 554.664 134 7 0 -69.4848 -153.15 3.87846
- 58 37.0305 133 7 0 -69.7489 -153.35 3.75965
- 58 296.931 899 10 0 77.6707 -0.153767 93.75
- 58 620.504 900 10 0 77.7466 0.05 93.875
- 58 752.922 901 10 0 77.8203 0.25 93.9964
- 58 196.541 902 10 0 77.892 0.45 94.1155
- 58 1134.6 1292 10 1 78.5409 2.19782 95.15
- 58 1340.5 1293 10 1 78.65 2.49197 95.3241
- 58 366.179 1107 11 0 93.1188 41.5573 123.75
- 58 968.891 1108 11 0 93.1531 41.65 123.818
- 58 991.246 1109 11 0 93.2267 41.85 123.961
- 58 259.634 1110 11 0 93.299 42.05 124.103
- 58 2037.62 1368 11 1 93.8032 43.4758 125.15
- 58 600.52 1369 11 1 93.95 43.8911 125.455
- 58 1342.84 1237 12 0 85.3738 67.5426 153.75
- 58 3167.02 1238 12 0 85.3331 67.65 153.88
- 58 341.428 1239 12 0 85.2633 67.85 154.129
- 58 5893.37 1324 12 1 84.9978 68.6305 155.15
- 58 287.471 1208 9 1 61.6814 -46.3799 65.55
- 58 410.839 1209 9 1 61.85 -46.463 65.522
- 58 323.887 1210 9 1 62.05 -46.5618 65.4889
- 58 466.313 1211 9 1 62.25 -46.6612 65.4566
- 58 424.593 1212 9 1 62.45 -46.7596 65.4236
- 58 338.102 1213 9 1 62.65 -46.8579 65.3901
- 58 333.922 1214 9 1 62.85 -46.9559 65.3558
- 58 358.369 1215 9 1 63.05 -47.0526 65.3223
- 58 366.53 1216 9 1 63.25 -47.1483 65.289
- 58 308.197 1217 9 1 63.45 -47.242 65.2565
- 58 360.792 1218 9 1 63.65 -47.3375 65.2243
- 58 580.641 1219 9 1 63.85 -47.4341 65.192
- 58 126.506 1220 9 1 64.05 -47.5304 65.1599
- 58 403.003 647 9 0 70.4153 -50.5393 64.15
- 58 676.137 646 9 0 70.6496 -50.65 64.1128
- 58 969.983 645 9 0 71.0775 -50.85 64.0475
- 58 806.049 644 9 0 71.5144 -51.05 63.9857
- 58 799.267 643 9 0 71.9433 -51.25 63.9284
- 58 759.206 642 9 0 72.3633 -51.45 63.8724
- 58 804.506 641 9 0 72.777 -51.65 63.8154
- 58 120.992 640 9 0 73.1754 -51.85 63.7578
- 58 86.1457 281 10 0 152.614 -123.815 93.75
- 58 140.87 280 10 0 152.774 -123.95 93.7985
- 58 143.191 279 10 0 153.011 -124.15 93.8724
- 58 152.985 278 10 0 153.25 -124.35 93.95
- 58 223.389 277 10 0 153.486 -124.55 94.0243
- 58 115.544 276 10 0 153.72 -124.75 94.0934
- 58 112.429 1685 10 1 157.197 -127.717 95.15
- 58 135.491 1686 10 1 157.35 -127.847 95.1964
- 58 134.074 1687 10 1 157.55 -128.014 95.2569
- 58 107.707 1688 10 1 157.75 -128.184 95.3194
- 58 110.045 1689 10 1 157.95 -128.351 95.384
- 58 135.131 1690 10 1 158.15 -128.518 95.45
- 58 230.685 1691 10 1 158.35 -128.685 95.5153
- 58 682.899 640 10 0 76.5677 -51.9075 93.75
- 58 258.432 1286 10 1 77.361 -52.2142 95.15
- 58 470.056 1287 10 1 77.45 -52.2488 95.307
- 58 157.823 618 11 0 93.4986 -56.4361 123.75
- 58 531.476 617 11 0 93.5522 -56.45 123.845
- 58 149.547 1370 11 1 94.2951 -56.6327 125.15
- 58 476.658 1371 11 1 94.35 -56.646 125.246
- 58 656.411 596 12 0 112.256 -60.6521 153.75
- 58 0.539627 1464 12 1 113.149 -60.8589 155.15
- 58 851.914 1465 12 1 113.15 -60.8591 155.151
- 58 179.645 1466 12 1 113.35 -60.9059 155.463
- 58 902.873 579 13 0 129.544 -64.1684 183.75
- 58 93.5246 1550 13 1 130.337 -64.3298 185.15
- 58 835.283 1551 13 1 130.35 -64.3326 185.174
- 58 28.5437 1552 13 1 130.55 -64.3748 185.529
- 58 853.832 564 14 0 145.703 -67.0524 213.75
- 58 333.01 1631 14 1 146.456 -67.1861 215.15
- 58 445.157 1632 14 1 146.55 -67.2029 215.325
- 58 93.4979 1201 9 1 60.45 -46.1587 65.2093
- 58 141.964 667 9 0 59.9174 -46.6029 64.15
- 58 216.796 1127 8 1 45.5323 -58.5381 35.55
- 58 344.923 1126 8 1 45.45 -58.6058 35.3934
- 58 375.252 604 8 0 44.7929 -59.1531 34.15
- 58 315.234 603 8 0 44.6766 -59.25 33.9303
- 58 487.062 1048 7 1 29.7969 -71.5534 5.55
- 58 196.006 1047 7 1 29.65 -71.6687 5.27092
- 58 469.663 539 7 0 29.0605 -72.1388 4.15
- 58 261.094 538 7 0 28.9211 -72.25 3.88478
- 58 879.36 968 6 1 13.7899 -83.9404 -24.45
- 58 215.178 967 6 1 13.65 -84.0323 -24.694
- 58 840.875 477 6 0 12.9925 -84.4655 -25.85
- 58 384.797 884 5 1 -3.12935 -95.2702 -54.45
- 58 432.93 883 5 1 -3.25 -95.3467 -54.6599
- 58 655.027 421 5 0 -3.91166 -95.7882 -55.85
- 58 76.1134 801 4 1 -19.8204 -106.681 -84.45
- 58 695.098 800 4 1 -19.85 -106.701 -84.5012
- 58 5.35679 799 4 1 -20.05 -106.832 -84.8471
- 58 709.549 364 4 0 -20.6361 -107.205 -85.85
- 58 17.0783 363 4 0 -20.8635 -107.35 -86.2393
- 58 101.611 714 3 1 -37.2211 -117.724 -114.45
- 58 650.628 713 3 1 -37.25 -117.742 -114.499
- 58 16.3306 712 3 1 -37.45 -117.864 -114.841
- 58 872.887 309 3 0 -38.0416 -118.218 -115.85
- 58 39.108 308 3 0 -38.2632 -118.35 -116.228
- 58 390.681 626 2 1 -54.7411 -128.201 -144.45
- 58 543.125 625 2 1 -54.85 -128.269 -144.628
- 58 65.5341 257 2 0 -55.6082 -128.738 -145.85
- 58 949.923 256 2 0 -55.6279 -128.75 -145.882
- 58 93.028 533 1 1 -73.4183 -139.728 -174.45
- 58 825.638 532 1 1 -73.45 -139.748 -174.506
- 58 686.024 199 1 0 -74.2037 -140.222 -175.85
- 58 77.7476 198 1 0 -74.4073 -140.35 -176.214
- 58 718.617 449 0 1 -90.15 -150.22 -204.497
- 58 789.865 147 0 0 -90.8671 -150.613 -205.85
- 58 115.05 991 10 0 24.9965 18.2509 93.75
- 58 98.7862 992 10 0 24.8855 18.45 93.8367
- 58 156.04 993 10 0 24.7732 18.65 93.9247
- 58 110.471 994 10 0 24.6582 18.85 94.01
- 58 55.8464 995 10 0 24.5408 19.05 94.0945
- 58 47.3268 1015 10 1 23.1048 21.5466 95.15
- 58 237.615 1014 10 1 23.05 21.6419 95.1903
- 58 191.456 1013 10 1 22.85 21.9917 95.3377
- 58 90.2891 1012 10 1 22.65 22.3364 95.4818
- 58 17.6484 1245 11 0 -12.5946 69.2127 123.75
- 58 123.016 1246 11 0 -12.6228 69.25 123.773
- 58 125.682 1247 11 0 -12.7748 69.45 123.894
- 58 136.709 1248 11 0 -12.9247 69.65 124.015
- 58 11.0734 1249 11 0 -13.0792 69.85 124.135
- 58 36.7144 828 11 1 -14.3868 71.5339 125.15
- 58 160.481 827 11 1 -14.45 71.6152 125.199
- 58 192.348 826 11 1 -14.65 71.8724 125.353
- 58 45.639 825 11 1 -14.85 72.1262 125.508
- 58 82.5577 1513 12 0 -59.2348 122.833 153.75
- 58 138.662 1514 12 0 -59.337 122.95 153.815
- 58 144.815 1515 12 0 -59.511 123.15 153.926
- 58 167.813 1516 12 0 -59.6861 123.35 154.038
- 58 2.14457 1517 12 0 -59.8598 123.55 154.149
- 58 28.3177 593 12 1 -61.4087 125.391 155.15
- 58 185.109 592 12 1 -61.45 125.44 155.177
- 58 150.471 591 12 1 -61.65 125.678 155.306
- 58 184.876 590 12 1 -61.85 125.916 155.429
- 58 9.16874 1789 13 0 -95.4524 178.13 183.75
- 58 139.197 1790 13 0 -95.465 178.15 183.761
- 58 112.434 1791 13 0 -95.5935 178.35 183.869
- 58 160.667 1792 13 0 -95.7214 178.55 183.98
- 58 75.3079 1793 13 0 -95.846 178.75 184.088
- 58 407.333 669 9 0 60.0714 -46.1549 64.15
- 58 0.603124 1143 8 1 48.6503 -50.9089 35.55
- 58 452.445 1142 8 1 48.65 -50.909 35.5493
- 58 388.925 644 8 0 48.0907 -51.1673 34.15
- 58 480.933 1082 7 1 36.6488 -56.5176 5.55
- 58 300.709 616 7 0 36.0659 -56.7926 4.15
- 58 97.6798 615 7 0 35.9447 -56.85 3.85926
- 58 222.657 1020 6 1 24.0928 -62.5601 -24.45
- 58 370.636 1019 6 1 24.05 -62.5796 -24.5498
- 58 71.2191 586 6 0 23.4932 -62.8368 -25.85
- 58 487.149 585 6 0 23.4648 -62.85 -25.9166
- 58 488.027 956 5 1 11.3903 -68.5263 -54.45
- 58 78.6677 955 5 1 11.25 -68.5934 -54.7675
- 58 178.966 556 5 0 10.7743 -68.8209 -55.85
- 58 254.58 555 5 0 10.7133 -68.85 -55.9886
- 58 331.864 891 4 1 -1.76595 -74.9313 -84.45
- 58 189.616 890 4 1 -1.85 -74.978 -84.6439
- 58 500.171 523 4 0 -2.36761 -75.2676 -85.85
- 58 493.269 827 3 1 -14.5056 -82.2108 -114.45
- 58 117.435 826 3 1 -14.65 -82.2905 -114.785
- 58 508.123 487 3 0 -15.1147 -82.5476 -115.85
- 58 3.0232 762 2 1 -27.6482 -89.2638 -144.45
- 58 382.437 761 2 1 -27.65 -89.2648 -144.454
- 58 114.094 452 2 0 -28.2577 -89.6212 -145.85
- 58 340.454 451 2 0 -28.3067 -89.65 -145.962
- 58 391.406 697 1 1 -40.5779 -96.9306 -174.45
- 58 234.047 696 1 1 -40.65 -96.9762 -174.624
- 58 261.206 414 1 0 -41.1614 -97.2955 -175.85
- 58 314.724 413 1 0 -41.2487 -97.35 -176.059
- 58 363.111 633 0 1 -53.302 -104.591 -204.45
- 58 34.3314 632 0 1 -53.45 -104.688 -204.821
- 58 498.415 375 0 0 -53.8658 -104.956 -205.85
- 58 95.9405 524 4 0 -2.39965 -75.25 -85.9532
- 58 311.903 672 9 0 60.2875 -45.5669 64.15
- 58 268.134 1161 8 1 52.4147 -40.0608 35.55
- 58 243.655 701 8 0 52.0494 -39.7945 34.15
- 58 22.5316 1122 7 1 44.4623 -34.2996 5.55
- 58 203.745 1121 7 1 44.45 -34.2911 5.50401
- 58 234.177 730 7 0 44.0862 -34.038 4.15
- 58 220.001 1081 6 1 36.4048 -28.8587 -24.45
- 58 287.153 757 6 0 36.035 -28.6102 -25.85
- 58 269.263 1041 5 1 28.4368 -23.589 -54.45
- 58 222.207 783 5 0 28.0598 -23.3495 -55.85
- 58 11.7184 1001 4 1 20.2528 -18.5135 -84.45
- 58 454.692 1000 4 1 20.25 -18.5119 -84.4604
- 58 299.371 808 4 0 19.8765 -18.3015 -85.85
- 58 34.3594 809 4 0 19.7851 -18.25 -86.1888
- 58 413.215 960 3 1 12.1569 -13.9103 -114.45
- 58 10.1794 959 3 1 12.05 -13.8484 -114.834
- 58 129.659 831 3 0 11.7652 -13.6854 -115.85
- 58 101.228 832 3 0 11.7034 -13.65 -116.07
- 58 193.315 918 2 1 3.72992 -9.17516 -144.45
- 58 67.1405 917 2 1 3.65 -9.13238 -144.741
- 58 310.927 855 2 0 3.34163 -8.96837 -145.85
- 58 183.387 876 1 1 -4.77547 -4.83609 -174.45
- 58 80.1008 875 1 1 -4.85 -4.79501 -174.717
- 58 277.416 877 1 0 -5.16739 -4.62103 -175.85
- 58 177.59 834 0 1 -13.1658 -0.296626 -204.45
- 58 73.8948 833 0 1 -13.25 -0.254184 -204.731
- 58 177.326 899 0 0 -13.5888 -0.0855021 -205.85
- 58 170.681 900 0 0 -13.765 0.0501224 -205.999
- 58 48.4983 856 2 0 3.16388 -8.84995 -146.217
- 58 78.2249 931 2 0 35.3184 6.31419 -146.25
- 58 15.7564 1069 2 1 34.05 4.71425 -144.759
- 58 56.2149 761 6 0 -16.0958 -27.6706 -25.8509
- 58 267.943 762 6 0 -16.1413 -27.65 -25.9117
- 58 189.802 701 5 1 -39.6588 -21.9123 -54.45
- 58 217.523 700 5 1 -39.8503 -21.836 -54.6599
- 58 450.372 793 5 0 -40.9479 -21.3873 -55.8502
- 58 16.303 794 5 0 -41.2858 -21.25 -56.2116
- 58 65.1119 559 4 1 -68.0687 -10.5216 -84.4503
- 58 70.8702 558 4 1 -68.25 -10.445 -84.5813
- 58 47.7886 557 4 1 -68.4502 -10.3585 -84.7293
- 58 111.503 851 4 0 -69.8807 -9.76975 -85.85
- 58 104.486 852 4 0 -70.1723 -9.65 -86.0757
- 58 40.4263 362 3 1 -107.631 5.46328 -114.45
- 58 82.5007 361 3 1 -107.75 5.48687 -114.549
- 58 57.7325 360 3 1 -107.95 5.524 -114.709
- 58 214.59 928 3 0 -109.31 5.75394 -115.85
- 58 64.6409 187 2 1 -142.609 10.3654 -144.45
- 58 54.5181 186 2 1 -142.75 10.3698 -144.53
- 58 116.934 185 2 1 -142.95 10.3751 -144.646
- 58 69.1321 184 2 1 -143.15 10.381 -144.766
- 58 144.992 951 2 0 -144.951 10.4427 -145.85
- 58 117.967 952 2 0 -145.324 10.45 -146.074
- 58 53.2729 100 1 1 -160.012 27.6298 -174.45
- 58 338.01 99 1 1 -160.15 27.6539 -174.573
- 58 82.8474 98 1 1 -160.35 27.698 -174.745
- 58 242.902 1039 1 0 -161.595 27.9578 -175.85
- 58 17.302 1046 1 0 -160.371 29.3825 -175.85
- 58 77.3943 1047 1 0 -160.378 29.45 -175.921
- 58 45.2038 1048 1 0 -160.395 29.65 -176.151
- 58 58.875 58 0 1 -168.455 60.1554 -204.45
- 58 50.8172 59 0 1 -168.35 60.2274 -204.651
- 58 71.9325 1202 0 0 -168.068 60.628 -205.85
- 58 140.45 1203 0 0 -168.041 60.65 -206.097
- 58 40.0788 1344 0 0 -161.975 88.9867 -206.25
- 58 58.128 1345 0 0 -161.997 89.05 -206.211
- 58 80.4017 1346 0 0 -162.029 89.25 -206.124
- 58 33.3718 1347 0 0 -162.067 89.45 -205.955
- 58 43.7666 85 0 1 -162.951 89.9957 -204.85
- 58 54.9016 82 0 1 -163.579 90.049 -204.619
- 58 258.927 83 0 1 -163.55 89.8942 -204.731
- 58 17.5521 703 5 1 -39.4478 -22.0298 -54.4501
- 58 70.6363 702 5 1 -39.4501 -22.0093 -54.4987
- 58 81.4172 788 5 0 -41.5636 -22.4173 -55.85
- 58 115.753 787 5 0 -41.7764 -22.45 -55.921
- 58 73.3731 786 5 0 -41.9712 -22.6501 -56.1097
- 58 102.422 785 5 0 -41.9671 -22.85 -56.1582
- 58 74.366 784 5 0 -41.8946 -23.0502 -56.17
- 58 176.308 601 5 0 -54.473 -59.723 -56.25
- 58 417.042 1271 8 1 74.2712 -52.686 35.55
- 58 238.877 635 8 0 74.8938 -52.9782 34.15
- 58 45.831 634 8 0 75.0466 -53.05 33.8072
- 58 6.81742 1337 7 1 87.6441 -58.9068 5.55
- 58 236.59 1338 7 1 87.65 -58.9097 5.53652
- 58 121.565 604 7 0 88.2609 -59.2022 4.15
- 58 88.9779 603 7 0 88.3602 -59.25 3.92439
- 58 164.456 1403 6 1 100.819 -65.2996 -24.45
- 58 78.7627 1404 6 1 100.95 -65.3597 -24.7384
- 58 152.004 572 6 0 101.456 -65.591 -25.85
- 58 67.427 571 6 0 101.585 -65.65 -26.1336
- 58 387.853 1472 5 1 114.581 -71.5108 -54.45
- 58 13.748 1473 5 1 114.75 -71.5897 -54.83
- 58 126.419 541 5 0 115.206 -71.8043 -55.85
- 58 157.073 540 5 0 115.304 -71.85 -56.0674
- 58 29.9372 1538 4 1 127.929 -77.8376 -84.45
- 58 339.994 1539 4 1 127.95 -77.847 -84.4972
- 58 239.236 509 4 0 128.54 -78.1201 -85.85
- 58 209.778 1604 3 1 140.992 -83.9053 -114.45
- 58 11.4814 1605 3 1 141.15 -83.9793 -114.825
- 58 178.241 479 3 0 141.584 -84.1845 -115.85
- 58 39.358 478 3 0 141.722 -84.25 -116.177
- 58 20.032 1667 2 1 153.735 -90.0149 -144.45
- 58 120.596 1668 2 1 153.75 -90.0214 -144.485
- 58 198.819 449 2 0 154.32 -90.2742 -145.85
- 58 51.3492 1730 1 1 166.299 -95.6115 -174.45
- 58 177.369 1731 1 1 166.35 -95.6377 -174.573
- 58 152.559 421 1 0 166.873 -95.9089 -175.85
- 58 131.043 420 1 0 166.953 -95.95 -176.044
- 58 130.559 1792 0 1 178.659 -101.99 -204.45
- 58 121.848 1793 0 1 178.75 -102.037 -204.67
- 58 165.948 389 0 0 179.235 -102.294 -205.85
- 58 74.5895 388 0 0 179.341 -102.35 -206.107
- 58 107.874 679 9 0 61.5186 -44.2414 64.15
- 58 231.807 1273 8 1 74.6949 -15.9462 35.55
- 58 28.8232 1274 8 1 74.85 -15.6186 35.2134
- 58 69.9636 827 8 0 75.3506 -14.5782 34.15
- 58 118.726 828 8 0 75.4123 -14.45 34.0189
- 58 22.7529 829 8 0 75.508 -14.25 33.8141
- 58 133.86 1343 7 1 88.7359 13.305 5.55
- 58 80.5762 1344 7 1 88.85 13.5313 5.30112
- 58 51.7436 972 7 0 89.3775 14.5765 4.15
- 58 95.0815 973 7 0 89.4146 14.65 4.06904
- 58 38.8228 974 7 0 89.5161 14.85 3.8469
- 58 103.085 1411 6 1 102.446 40.1859 -24.45
- 58 77.6106 1412 6 1 102.55 40.4034 -24.6981
- 58 11.6421 1106 6 0 103.039 41.4202 -25.85
- 58 201.457 1107 6 0 103.053 41.45 -25.8837
- 58 49.4484 1108 6 0 103.15 41.65 -26.11
- 58 12.9067 1474 5 1 115.132 66.6654 -54.45
- 58 170.843 1475 5 1 115.15 66.702 -54.4925
- 58 125.363 1239 5 0 115.715 67.8682 -55.85
- 58 74.4863 1240 5 0 115.803 68.05 -56.0614
- 58 71.422 1536 4 1 127.489 92.5152 -84.45
- 58 120.766 1537 4 1 127.55 92.6479 -84.5948
- 58 64.2382 1368 4 0 128.077 93.7959 -85.85
- 58 91.7632 1369 4 0 128.148 93.95 -86.0183
- 58 5.62864 1370 4 0 128.24 94.15 -86.2369
- 58 2.22063 1599 3 1 140.146 120.143 -114.45
- 58 291.67 1600 3 1 140.15 120.153 -114.46
- 58 40.8925 1506 3 0 140.705 121.44 -115.85
- 58 77.6667 1507 3 0 140.752 121.55 -115.969
- 58 29.7772 1508 3 0 140.839 121.75 -116.186
- 58 63.1601 1659 2 1 152.113 147.795 -144.45
- 58 139.186 1660 2 1 152.15 147.875 -144.534
- 58 9.40268 1644 2 0 152.727 149.125 -145.85
- 58 166.14 1645 2 0 152.739 149.15 -145.876
- 58 89.2632 1646 2 0 152.831 149.35 -146.087
- 58 194.271 1736 1 1 167.418 176.911 -174.45
- 58 68.6126 1737 1 1 167.55 177.137 -174.679
- 58 32.3565 1790 1 0 168.255 178.264 -175.85
- 58 81.5332 1791 1 0 168.309 178.35 -175.939
- 58 39.9436 1792 1 0 168.434 178.55 -176.148
- 58 82.1052 1601 3 1 140.35 120.487 -114.765
-Number of digits in this event = 292
-Using G4ParticleGun ...
-3.63732 LIN
+Number of tracker hits in this event = 20
+ 58 128.724 1011 9 1 22.3812 -127.926 65.55
+ 58 104.367 261 9 0 22.3808 -127.925 64.15
+ 58 255.358 1011 8 1 22.3729 -127.912 35.55
+ 58 92.5213 261 8 0 22.3731 -127.911 34.15
+ 58 101.265 1011 7 1 22.3797 -127.875 5.55
+ 58 96.6507 261 7 0 22.3805 -127.873 4.15
+ 58 107.86 1011 6 1 22.401 -127.819 -24.45
+ 58 118.214 261 6 0 22.4025 -127.816 -25.85
+ 58 128.4 1011 5 1 22.4283 -127.755 -54.45
+ 58 105.477 261 5 0 22.4295 -127.752 -55.85
+ 58 112.948 1012 4 1 22.4585 -127.68 -84.45
+ 58 118.215 262 4 0 22.4605 -127.675 -85.85
+ 58 108.79 1012 3 1 22.5052 -127.587 -114.45
+ 58 102.673 262 3 0 22.5083 -127.584 -115.85
+ 58 120.783 1012 2 1 22.5799 -127.517 -144.45
+ 58 201.879 263 2 0 22.584 -127.514 -145.85
+ 58 126.042 1013 1 1 22.6627 -127.431 -174.45
+ 58 125.101 263 1 0 22.6663 -127.427 -175.85
+ 58 105.286 1013 0 1 22.7355 -127.344 -204.45
+ 58 119.285 264 0 0 22.7387 -127.34 -205.85
+Number of digits in this event = 8
+Using G4ParticleGun ...
+2.85573 LIN
proton
Event: 59
-Number of tracker hits in this event = 25
- 59 124.543 772 10 1 -25.6252 85.3214 95.55
- 59 90.441 1326 10 0 -25.6272 85.3232 94.15
- 59 200.66 771 9 1 -25.6762 85.3631 65.55
- 59 108.721 1326 9 0 -25.6803 85.3665 64.15
- 59 104.697 771 8 1 -25.7657 85.4332 35.55
- 59 114.482 1326 8 0 -25.7698 85.4361 34.15
- 59 108.457 770 7 1 -25.8567 85.496 5.55
- 59 109.961 1327 7 0 -25.8589 85.4976 4.15
- 59 171.257 770 6 1 -25.9072 85.5326 -24.45
- 59 110.972 1327 6 0 -25.9085 85.5349 -25.85
- 59 171.565 770 5 1 -25.9353 85.5807 -54.45
- 59 125.551 1327 5 0 -25.9351 85.5827 -55.85
- 59 382.443 770 4 1 -25.9308 85.6211 -84.45
- 59 139.885 1327 4 0 -25.9304 85.6237 -85.85
- 59 109.399 770 3 1 -25.9213 85.6802 -114.45
- 59 133.704 1328 3 0 -25.9201 85.685 -115.85
- 59 172.161 770 2 1 -25.8936 85.7899 -144.45
- 59 211.884 1328 2 0 -25.8938 85.7917 -145.85
- 59 480.717 770 1 1 -25.8923 85.8172 -174.45
- 59 122.052 1328 1 0 -25.8908 85.8159 -175.85
- 59 109.865 770 0 1 -25.8549 85.7913 -204.45
- 59 131.661 1328 0 0 -25.8523 85.7893 -205.85
- 59 364.842 769 1 1 -26.05 86.2663 -174.572
- 59 145.134 1328 4 0 -25.8586 85.6704 -85.85
- 59 35.1207 1329 4 0 -26.1083 85.9347 -85.85
-Number of digits in this event = 16
+Number of tracker hits in this event = 30
+ 59 239.78 1595 8 1 139.244 16.9452 35.55
+ 59 105.562 984 8 0 139.243 16.945 34.15
+ 59 119.031 1595 7 1 139.212 16.9464 5.55
+ 59 128.604 984 7 0 139.21 16.9467 4.15
+ 59 110.63 1595 6 1 139.18 16.9627 -24.45
+ 59 123.456 984 6 0 139.177 16.9633 -25.85
+ 59 174.19 1594 5 1 139.116 16.97 -54.45
+ 59 137.093 984 5 0 139.111 16.9669 -55.85
+ 59 113.874 1594 4 1 139.003 16.9123 -84.45
+ 59 162.586 984 4 0 138.997 16.9104 -85.85
+ 59 201.754 1593 3 1 138.885 16.8702 -114.45
+ 59 132.76 984 3 0 138.88 16.8675 -115.85
+ 59 135.164 1593 2 1 138.763 16.8143 -144.45
+ 59 92.3507 983 2 0 138.757 16.8087 -145.85
+ 59 108.052 1592 1 1 138.624 16.6994 -174.45
+ 59 139.932 983 1 0 138.618 16.6944 -175.85
+ 59 92.438 1591 0 1 138.527 16.5875 -204.45
+ 59 103.434 982 0 0 138.524 16.5816 -205.85
+ 59 60.0735 821 0 1 -15.7729 -46.946 -204.643
+ 59 47.6769 342 11 1 -111.62 140.354 125.299
+ 59 6.70647 1512 5 0 117.342 122.55 -56.095
+ 59 96.3298 1592 2 1 138.75 16.8528 -144.61
+ 59 188.223 983 3 0 138.858 16.85 -116.067
+ 59 1.7771 1592 3 1 138.75 17.0514 -114.845
+ 59 186.174 989 3 0 137.676 17.9666 -115.851
+ 59 20.0847 990 3 0 137.636 18.05 -116.196
+ 59 168.866 1333 3 0 171.885 86.6674 -116.25
+ 59 38.1303 1334 3 0 172.175 86.85 -116.137
+ 59 252.652 1446 3 0 162.276 109.366 -116.25
+ 59 116.222 838 3 0 115.656 -12.3979 -116.25
+Number of digits in this event = 18
Using G4ParticleGun ...
-1.71266 LIN
+9.50206 LIN
proton
Event: 60
-Number of tracker hits in this event = 27
- 60 103.971 1034 11 1 26.8756 41.1418 125.55
- 60 258.13 1105 11 0 26.8725 41.144 124.15
- 60 101.958 1033 10 1 26.8059 41.1664 95.55
- 60 210.921 1105 10 0 26.7994 41.1717 94.15
- 60 176.803 1033 9 1 26.6678 41.2823 65.55
- 60 96.1447 1106 9 0 26.6593 41.2915 64.15
- 60 159.509 1032 8 1 26.4873 41.4634 35.55
- 60 99.0567 1107 8 0 26.479 41.4709 34.15
- 60 447.446 1031 7 1 26.3138 41.6321 5.55
- 60 103.944 1107 7 0 26.3023 41.6409 4.15
- 60 99.1648 1030 6 1 26.066 41.8114 -24.45
- 60 116.087 1108 6 0 26.0544 41.8186 -25.85
- 60 138.757 1028 5 1 25.8299 41.9437 -54.45
- 60 178.314 1109 5 0 25.8183 41.9466 -55.85
- 60 118.018 1027 4 1 25.5839 42.0049 -84.45
- 60 111.664 1109 4 0 25.5704 42.0053 -85.85
- 60 141.035 1026 3 1 25.309 42.0216 -114.45
- 60 145.805 1109 3 0 25.2979 42.0246 -115.85
- 60 110.043 1025 2 1 25.0786 42.0808 -144.45
- 60 131.231 1110 2 0 25.0702 42.088 -145.85
- 60 108.754 1024 1 1 24.8987 42.2392 -174.45
- 60 154.94 1110 1 0 24.8906 42.2451 -175.85
- 60 132.844 1023 0 1 24.7358 42.3668 -204.45
- 60 116.768 1111 0 0 24.7286 42.377 -205.85
- 60 11.3033 1032 7 1 26.45 41.8625 5.35929
- 60 75.8677 1110 7 0 26.6685 42.2346 4.14925
- 60 79.0498 1111 7 0 26.6433 42.25 4.0513
-Number of digits in this event = 13
+Number of tracker hits in this event = 20
+ 60 114.023 1567 9 1 133.616 5.42325 65.55
+ 60 79.1015 926 9 0 133.616 5.42345 64.15
+ 60 137.947 1567 8 1 133.611 5.42675 35.55
+ 60 164.663 926 8 0 133.61 5.42663 34.15
+ 60 113.912 1567 7 1 133.596 5.42389 5.55
+ 60 110.088 926 7 0 133.595 5.42327 4.15
+ 60 151.031 1567 6 1 133.578 5.40769 -24.45
+ 60 151.959 926 6 0 133.578 5.4068 -25.85
+ 60 231.469 1567 5 1 133.578 5.39003 -54.45
+ 60 105.173 926 5 0 133.578 5.38838 -55.85
+ 60 98.0979 1567 4 1 133.574 5.35319 -84.45
+ 60 102.13 926 4 0 133.573 5.3513 -85.85
+ 60 107.585 1567 3 1 133.56 5.31276 -114.45
+ 60 120.119 926 3 0 133.559 5.3105 -115.85
+ 60 114.119 1566 2 1 133.539 5.26336 -144.45
+ 60 115.019 926 2 0 133.538 5.26105 -145.85
+ 60 118.955 1566 1 1 133.519 5.21208 -174.45
+ 60 225.415 925 1 0 133.518 5.2098 -175.85
+ 60 98.5753 1566 0 1 133.502 5.16375 -204.45
+ 60 157.284 925 0 0 133.501 5.16133 -205.85
+Number of digits in this event = 9
Using G4ParticleGun ...
-8.06368 LIN
+7.49998 LIN
proton
Event: 61
-Number of tracker hits in this event = 18
- 61 181.906 738 8 1 -32.3847 138.735 35.55
- 61 111.692 1592 8 0 -32.3861 138.736 34.15
- 61 114.12 738 7 1 -32.4124 138.752 5.55
- 61 104.202 1593 7 0 -32.4119 138.754 4.15
- 61 112.222 738 6 1 -32.3992 138.781 -24.45
- 61 109.483 1593 6 0 -32.3996 138.782 -25.85
- 61 135.99 738 5 1 -32.4106 138.803 -54.45
- 61 102.925 1593 5 0 -32.4098 138.804 -55.85
- 61 115.87 738 4 1 -32.3912 138.834 -84.45
- 61 103.728 1593 4 0 -32.3899 138.834 -85.85
- 61 118.45 738 3 1 -32.3596 138.833 -114.45
- 61 98.173 1593 3 0 -32.3577 138.832 -115.85
- 61 130.286 738 2 1 -32.3175 138.799 -144.45
- 61 89.2754 1593 2 0 -32.3153 138.796 -145.85
- 61 114.493 738 1 1 -32.2712 138.726 -174.45
- 61 109.942 1592 1 0 -32.2688 138.723 -175.85
- 61 164.712 739 0 1 -32.2193 138.684 -204.45
- 61 96.2957 1592 0 0 -32.2161 138.682 -205.85
-Number of digits in this event = 5
+Number of tracker hits in this event = 24
+ 61 83.4279 802 10 1 -19.4936 -86.9937 95.55
+ 61 109.182 465 10 0 -19.4929 -86.9938 94.15
+ 61 115.48 802 9 1 -19.478 -86.9943 65.55
+ 61 140.894 465 9 0 -19.477 -86.9942 64.15
+ 61 136.952 802 8 1 -19.4579 -86.9939 35.55
+ 61 124.037 465 8 0 -19.4572 -86.9942 34.15
+ 61 108.924 803 7 1 -19.4402 -87.0035 5.55
+ 61 219.344 465 7 0 -19.4384 -87.0039 4.15
+ 61 105.908 803 6 1 -19.4044 -87.0082 -24.45
+ 61 236.528 465 6 0 -19.4024 -87.0078 -25.85
+ 61 128.159 803 5 1 -19.3589 -87.0033 -54.45
+ 61 144.819 465 5 0 -19.357 -87.0027 -55.85
+ 61 108.204 803 4 1 -19.3138 -86.9937 -84.45
+ 61 101.78 465 4 0 -19.3119 -86.9927 -85.85
+ 61 108.217 803 3 1 -19.2756 -86.9721 -114.45
+ 61 132.883 465 3 0 -19.2729 -86.966 -115.85
+ 61 118.493 804 2 1 -19.2164 -86.8383 -144.45
+ 61 106.088 466 2 0 -19.2133 -86.8322 -145.85
+ 61 122.936 804 1 1 -19.1517 -86.7093 -174.45
+ 61 125.223 466 1 0 -19.1491 -86.7027 -175.85
+ 61 146.685 804 0 1 -19.0958 -86.5673 -204.45
+ 61 117.561 467 0 0 -19.0928 -86.5605 -205.85
+ 61 112.134 466 6 0 -19.583 -86.85 -26.1251
+ 61 102.685 467 6 0 -19.6036 -86.65 -26.1114
+Number of digits in this event = 12
Using G4ParticleGun ...
-5.99088 LIN
+3.27795 LIN
proton
Event: 62
-Number of tracker hits in this event = 26
- 62 113.929 940 10 1 8.09224 -89.2985 95.55
- 62 111.485 453 10 0 8.09234 -89.2992 94.15
- 62 108.13 940 9 1 8.10257 -89.306 65.55
- 62 156.898 453 9 0 8.10281 -89.3055 64.15
- 62 94.6512 940 8 1 8.11245 -89.2927 35.55
- 62 200.576 453 8 0 8.11215 -89.292 34.15
- 62 113.33 940 7 1 8.09934 -89.2781 5.55
- 62 145.442 453 7 0 8.09847 -89.2777 4.15
- 62 94.0854 940 6 1 8.08473 -89.2709 -24.45
- 62 199.762 453 6 0 8.08405 -89.271 -25.85
- 62 126.426 940 5 1 8.07302 -89.2735 -54.45
- 62 141.227 453 5 0 8.07315 -89.274 -55.85
- 62 119.772 940 4 1 8.0718 -89.2889 -84.45
- 62 156.561 453 4 0 8.07274 -89.2896 -85.85
- 62 175.922 940 3 1 8.09136 -89.3056 -114.45
- 62 327.685 453 3 0 8.09289 -89.3051 -115.85
- 62 103.137 940 2 1 8.12792 -89.3 -144.45
- 62 102.442 453 2 0 8.12919 -89.2996 -145.85
- 62 131.193 940 1 1 8.15526 -89.2892 -174.45
- 62 102.437 453 1 0 8.15656 -89.2879 -175.85
- 62 148.921 940 0 1 8.18204 -89.2658 -204.45
- 62 97.0947 453 0 0 8.1833 -89.2653 -205.85
- 62 224.825 452 3 0 7.81879 -89.45 -116.215
- 62 68.6366 739 3 0 -36.7437 -32.0971 -116.25
- 62 27.1099 454 7 0 8.06446 -89.25 4.12753
- 62 77.3455 939 7 1 8.00205 -88.9211 5.15
-Number of digits in this event = 13
+Number of tracker hits in this event = 20
+ 62 113.851 593 9 1 -61.2667 -113.306 65.55
+ 62 110.189 334 9 0 -61.2677 -113.304 64.15
+ 62 194.522 593 8 1 -61.289 -113.286 35.55
+ 62 108.492 334 8 0 -61.2909 -113.284 34.15
+ 62 134.292 593 7 1 -61.3278 -113.246 5.55
+ 62 108.709 334 7 0 -61.3291 -113.245 4.15
+ 62 106.545 593 6 1 -61.3538 -113.227 -24.45
+ 62 133.55 334 6 0 -61.3558 -113.225 -25.85
+ 62 111.65 593 5 1 -61.3931 -113.186 -54.45
+ 62 123.479 334 5 0 -61.3959 -113.185 -55.85
+ 62 129.5 592 4 1 -61.4533 -113.164 -84.45
+ 62 128.785 334 4 0 -61.4552 -113.163 -85.85
+ 62 94.0049 592 3 1 -61.4931 -113.133 -114.45
+ 62 111.446 335 3 0 -61.4947 -113.132 -115.85
+ 62 132.024 592 2 1 -61.5321 -113.121 -144.45
+ 62 100.835 335 2 0 -61.5364 -113.121 -145.85
+ 62 114.003 592 1 1 -61.6276 -113.116 -174.45
+ 62 113.231 335 1 0 -61.6308 -113.117 -175.85
+ 62 248.045 591 0 1 -61.7064 -113.146 -204.45
+ 62 100.678 335 0 0 -61.7118 -113.147 -205.85
+Number of digits in this event = 10
Using G4ParticleGun ...
-2.41566 LIN
+1.43013 LIN
proton
Event: 63
-Number of tracker hits in this event = 81
- 63 104.965 968 9 1 13.7132 -119.743 65.55
- 63 126.526 302 9 0 13.71 -119.741 64.15
- 63 115.216 967 8 1 13.643 -119.713 35.55
- 63 121.267 302 8 0 13.6417 -119.71 34.15
- 63 140.638 967 7 1 13.6068 -119.651 5.55
- 63 144.14 302 7 0 13.6043 -119.646 4.15
- 63 128.705 967 6 1 13.5512 -119.557 -24.45
- 63 133.464 302 6 0 13.5468 -119.553 -25.85
- 63 103.675 967 5 1 13.4683 -119.483 -54.45
- 63 111.271 303 5 0 13.4665 -119.481 -55.85
- 63 103.488 966 4 1 13.425 -119.437 -84.45
- 63 114.068 303 4 0 13.4227 -119.437 -85.85
- 63 102.267 966 3 1 13.3776 -119.438 -114.45
- 63 136.954 303 3 0 13.3764 -119.442 -115.85
- 63 102.547 966 2 1 13.3485 -119.509 -144.45
- 63 109.748 303 2 0 13.347 -119.514 -145.85
- 63 106.239 966 1 1 13.3182 -119.61 -174.45
- 63 110.43 302 1 0 13.3192 -119.612 -175.85
- 63 107.137 966 0 1 13.3281 -119.656 -204.45
- 63 188.298 302 0 0 13.3285 -119.659 -205.85
- 63 32.8793 762 5 0 55.1389 -27.5278 -56.2498
- 63 82.6528 763 5 0 55.157 -27.45 -56.186
- 63 93.1002 764 5 0 55.2174 -27.25 -56.0183
- 63 4.58572 765 5 0 55.2932 -27.0498 -55.8534
- 63 375.003 1178 5 1 55.6529 -25.8903 -54.85
- 63 123.59 1179 5 1 55.85 -25.1885 -54.4829
- 63 245.32 1177 5 1 55.65 -24.7566 -54.5426
- 63 93.1177 119 0 0 25.2853 -156.289 -206.25
- 63 36.4743 118 0 0 25.3873 -156.35 -205.967
- 63 35.2323 1028 0 1 25.7951 -156.604 -204.85
- 63 102.219 1029 0 1 25.8502 -156.641 -204.699
- 63 17.8859 85 1 0 32.1549 -163.134 -176.25
- 63 88.3406 84 1 0 32.1698 -163.15 -176.179
- 63 13.8504 1061 1 1 32.4399 -163.399 -174.85
- 63 201.256 1062 1 1 32.45 -163.408 -174.8
- 63 202.292 71 2 0 34.967 -165.881 -146.248
- 63 91.0239 1075 2 1 35.0685 -165.934 -144.85
- 63 113.464 129 3 0 42.5145 -154.302 -116.25
- 63 21.9883 130 3 0 42.6107 -154.15 -115.917
- 63 263.561 1114 3 1 42.9219 -153.668 -114.85
- 63 25.0027 305 4 0 40.0364 -119.05 -86.25
- 63 75.6906 306 4 0 40.0258 -118.95 -86.1708
- 63 70.9378 307 4 0 40.0171 -118.75 -86.002
- 63 161.057 1099 4 1 40.0271 -117.484 -84.8499
- 63 77.5877 456 5 0 23.8141 -88.8291 -56.2498
- 63 76.2064 457 5 0 23.7023 -88.6499 -56.0465
- 63 57.8865 1013 5 1 22.7435 -87.4445 -54.85
- 63 127.834 1012 5 1 22.6498 -87.3234 -54.7267
- 63 5.89978 1011 5 1 22.45 -87.0573 -54.4593
- 63 72.4389 414 6 0 46.7016 -97.3165 -26.2499
- 63 71.5554 413 6 0 46.8603 -97.35 -26.0753
- 63 102.333 1140 6 1 48.0535 -97.6432 -24.85
- 63 145.245 1141 6 1 48.2507 -97.6844 -24.6294
- 63 68.8034 1142 6 1 48.45 -97.6696 -24.5258
- 63 2.27286 1143 6 1 48.65 -97.643 -24.4551
- 63 41.3614 162 7 0 26.4209 -147.635 3.75
- 63 108.146 161 7 0 26.3641 -147.75 3.86305
- 63 431.73 160 7 0 26.2669 -147.95 3.98526
- 63 119.213 105 0 0 18.9646 -158.997 -206.25
- 63 114.946 994 0 1 18.9174 -159.506 -204.85
- 63 104.17 30 1 0 15.0701 -173.981 -176.25
- 63 24.3369 29 1 0 15.024 -174.15 -175.926
- 63 130.609 974 1 1 14.9606 -174.674 -174.85
- 63 1.24251 397 4 1 -100.55 -174.083 -84.5901
- 63 163.334 396 4 1 -100.75 -174.072 -84.4891
- 63 87.3693 395 4 1 -100.95 -174.07 -84.4599
- 63 184.401 112 0 0 22.8868 -157.585 -206.25
- 63 179.373 1016 0 1 23.2729 -157.871 -204.85
- 63 37.8852 32 1 0 33.1586 -173.685 -176.25
- 63 114.904 31 1 0 33.1981 -173.75 -176.136
- 63 161.584 1068 1 1 33.6933 -174.553 -174.85
- 63 210.483 116 0 0 45.6411 -156.754 -206.25
- 63 54.7466 1137 0 1 47.4753 -157.197 -204.85
- 63 78.2322 1138 0 1 47.6501 -157.254 -204.714
- 63 46.7212 1139 0 1 47.85 -157.329 -204.553
- 63 151.045 124 1 0 47.8709 -155.219 -176.25
- 63 140.964 1141 1 1 48.3292 -154.805 -174.85
- 63 263.958 1140 1 1 48.25 -154.767 -174.724
- 63 97.9145 196 2 0 11.259 -140.85 -146.25
- 63 285.443 195 2 0 11.1624 -140.95 -146.225
- 63 80.5352 194 2 0 11.0525 -141.15 -146.103
-Number of digits in this event = 31
+Number of tracker hits in this event = 23
+ 63 134.845 699 10 1 -40.2078 86.577 95.55
+ 63 132.711 1332 10 0 -40.2082 86.5755 94.15
+ 63 177.942 699 9 1 -40.2219 86.5584 65.55
+ 63 125.21 1332 9 0 -40.2178 86.5581 64.15
+ 63 138.203 699 8 1 -40.1162 86.5514 35.55
+ 63 150.804 1332 8 0 -40.1122 86.5529 34.15
+ 63 119.041 700 7 1 -40.0142 86.5823 5.55
+ 63 108.519 1332 7 0 -40.0066 86.5831 4.15
+ 63 159.29 700 6 1 -39.861 86.5872 -24.45
+ 63 187.084 1332 6 0 -39.8526 86.5849 -25.85
+ 63 138.279 701 5 1 -39.6855 86.538 -54.45
+ 63 142.728 1332 5 0 -39.6795 86.5338 -55.85
+ 63 111.764 702 4 1 -39.5468 86.4309 -84.45
+ 63 102.209 1331 4 0 -39.5384 86.4332 -85.85
+ 63 101.024 703 3 1 -39.3733 86.495 -114.45
+ 63 114.086 1332 3 0 -39.3622 86.5021 -115.85
+ 63 156.459 704 2 1 -39.1221 86.6359 -144.45
+ 63 123.515 1332 2 0 -39.1084 86.6416 -145.85
+ 63 130.042 706 1 1 -38.8203 86.756 -174.45
+ 63 200.246 1333 1 0 -38.8041 86.7641 -175.85
+ 63 152.737 707 0 1 -38.4584 86.9174 -204.45
+ 63 131.482 1334 0 0 -38.4414 86.9296 -205.85
+ 63 73.6379 1333 6 0 -39.8398 86.65 -26.0787
+Number of digits in this event = 17
Using G4ParticleGun ...
-2.0888 LIN
+5.83119 LIN
proton
Event: 64
-Number of tracker hits in this event = 19
- 64 141.69 209 8 1 -138.237 -28.8954 35.55
- 64 208.32 755 8 0 -138.238 -28.894 34.15
- 64 130.452 209 7 1 -138.263 -28.8713 5.55
- 64 103.506 755 7 0 -138.263 -28.8735 4.15
- 64 115.913 209 6 1 -138.28 -28.9234 -24.45
- 64 121.416 755 6 0 -138.279 -28.9222 -25.85
- 64 123.929 209 5 1 -138.283 -28.8918 -54.45
- 64 124.473 755 5 0 -138.283 -28.8881 -55.85
- 64 89.1289 209 4 1 -138.294 -28.8039 -84.45
- 64 127.775 756 4 0 -138.29 -28.7988 -85.85
- 64 179.275 209 3 1 -138.222 -28.6951 -114.45
- 64 116.438 756 3 0 -138.22 -28.6879 -115.85
- 64 234.826 209 2 1 -138.164 -28.54 -144.45
- 64 111.291 757 2 0 -138.158 -28.5309 -145.85
- 64 148.842 210 1 1 -138.035 -28.3513 -174.45
- 64 256.205 758 1 0 -138.027 -28.3409 -175.85
- 64 104.038 211 0 1 -137.881 -28.1363 -204.45
- 64 106.21 759 0 0 -137.872 -28.1272 -205.85
- 64 17.53 757 1 0 -137.746 -28.45 -175.898
+Number of tracker hits in this event = 20
+ 64 114.56 510 9 1 -77.9135 -94.7482 65.55
+ 64 164.079 427 9 0 -77.9138 -94.7472 64.15
+ 64 103.467 510 8 1 -77.9221 -94.7279 35.55
+ 64 134.749 427 8 0 -77.9234 -94.7261 34.15
+ 64 124.299 510 7 1 -77.9495 -94.6822 5.55
+ 64 124.702 427 7 0 -77.9507 -94.6794 4.15
+ 64 149.985 510 6 1 -77.9757 -94.6286 -24.45
+ 64 127.267 427 6 0 -77.9774 -94.6262 -25.85
+ 64 119.294 510 5 1 -78.0066 -94.5831 -54.45
+ 64 130.86 427 5 0 -78.0084 -94.5818 -55.85
+ 64 94.8743 510 4 1 -78.0462 -94.555 -84.45
+ 64 113.065 427 4 0 -78.0476 -94.5529 -85.85
+ 64 103.02 509 3 1 -78.0755 -94.5061 -114.45
+ 64 152.928 428 3 0 -78.0763 -94.5035 -115.85
+ 64 129.198 509 2 1 -78.0969 -94.4503 -144.45
+ 64 109.671 428 2 0 -78.0977 -94.4492 -145.85
+ 64 328.887 509 1 1 -78.1144 -94.4236 -174.45
+ 64 368.72 428 1 0 -78.1158 -94.4221 -175.85
+ 64 103.385 509 0 1 -78.1429 -94.3931 -204.45
+ 64 98.6142 428 0 0 -78.1446 -94.3925 -205.85
Number of digits in this event = 12
Using G4ParticleGun ...
-5.32969 LIN
+7.31805 LIN
proton
Event: 65
-Number of tracker hits in this event = 64
- 65 141.841 996 11 1 19.2788 51.0374 125.55
- 65 109.227 1154 11 0 19.2775 51.0393 124.15
- 65 3.99914 996 10 1 19.25 51.0783 95.55
- 65 93.6312 995 10 1 19.25 51.0783 95.5275
- 65 92.5265 1155 10 0 19.2474 51.0798 94.15
- 65 99.2732 995 9 1 19.1767 51.1058 65.55
- 65 130.387 1155 9 0 19.1714 51.1082 64.15
- 65 117.244 995 8 1 19.0606 51.1591 35.55
- 65 133.231 1155 8 0 19.0541 51.1596 34.15
- 65 101.838 994 7 1 18.9168 51.1666 5.55
- 65 120.361 1155 7 0 18.911 51.1668 4.15
- 65 110.307 993 6 1 18.7893 51.1793 -24.45
- 65 121.471 1155 6 0 18.7837 51.1792 -25.85
- 65 299.586 993 5 1 18.677 51.1758 -54.45
- 65 106.839 1155 5 0 18.6712 51.1749 -55.85
- 65 92.0979 992 4 1 18.5529 51.1511 -84.45
- 65 131.568 1155 4 0 18.5477 51.15 -85.85
- 65 126.012 991 3 1 18.445 51.1312 -114.45
- 65 99.0149 1155 3 0 18.441 51.1318 -115.85
- 65 165.727 991 2 1 18.3594 51.1526 -144.45
- 65 105.964 1155 2 0 18.3565 51.1519 -145.85
- 65 100.435 991 1 1 18.2912 51.1335 -174.45
- 65 94.1703 1155 1 0 18.2866 51.1325 -175.85
- 65 93.5485 990 0 1 18.194 51.1163 -204.45
- 65 284.607 1155 0 0 18.1892 51.1157 -205.85
- 65 35.5894 1154 0 0 18.1726 51.0495 -205.913
- 65 125.96 988 0 1 17.6723 51.3279 -204.85
- 65 40.7069 1158 5 0 18.6334 51.8121 -55.85
- 65 94.5915 1159 5 0 18.6277 51.85 -55.9363
- 65 69.3945 988 4 1 17.6675 65.676 -84.45
- 65 84.9977 989 4 1 17.85 65.7379 -84.5951
- 65 40.7604 990 4 1 18.05 65.8154 -84.758
- 65 67.1256 1231 4 0 19.2611 66.336 -85.85
- 65 104.667 1232 4 0 19.4575 66.45 -86.0323
- 65 128.206 1141 3 1 48.2514 84.6983 -114.45
- 65 5.09856 1325 3 0 48.5908 85.2445 -115.85
- 65 161.795 1326 3 0 48.5943 85.25 -115.863
- 65 8.84784 1327 3 0 48.6772 85.4505 -116.216
- 65 35.4084 1170 2 1 54.155 105.033 -144.45
- 65 74.7627 1169 2 1 54.0499 104.97 -144.532
- 65 75.5428 1168 2 1 53.85 104.82 -144.706
- 65 102.254 1418 2 0 52.6945 103.935 -145.85
- 65 88.7697 1417 2 0 52.4427 103.75 -146.043
- 65 41.058 1416 2 0 52.2032 103.55 -146.174
- 65 134.002 1026 1 1 25.3567 60.0821 -174.45
- 65 3.98653 1027 1 1 25.45 59.98 -174.849
- 65 118.418 1198 1 0 25.6864 59.7591 -175.85
- 65 130.745 1091 0 1 38.2667 56.8306 -204.45
- 65 61.1449 1182 0 0 38.2157 56.6466 -205.851
- 65 224.997 1183 0 0 38.236 56.65 -206.021
- 65 21.7612 1272 0 0 40.7613 74.5663 -206.25
- 65 59.8768 1273 0 0 40.7387 74.65 -206.175
- 65 68.906 1274 0 0 40.6769 74.8502 -206.121
- 65 89.8616 1275 0 0 40.654 75.05 -206.125
- 65 69.7318 1276 0 0 40.6062 75.25 -206.127
- 65 32.7038 1277 0 0 40.5317 75.45 -206.203
- 65 12.0387 1522 0 0 -3.21991 124.557 -206.25
- 65 128.515 1521 0 0 -3.21846 124.55 -206.227
- 65 332.105 886 0 1 -2.69688 124.283 -204.85
- 65 151.377 887 0 1 -2.64975 124.275 -204.774
- 65 56.6633 885 0 1 -2.85 123.978 -204.572
- 65 6.08926 1179 0 0 55.2337 55.8984 -206.25
- 65 24.9741 1330 0 0 34.8041 86.0804 -206.25
- 65 77.9471 16 6 1 -176.9 -146.165 -24.85
-Number of digits in this event = 21
+Number of tracker hits in this event = 26
+ 65 139.534 1162 11 1 52.469 -51.0886 125.55
+ 65 101.753 644 11 0 52.4689 -51.0872 124.15
+ 65 120.946 1162 10 1 52.4669 -51.0622 95.55
+ 65 112.744 644 10 0 52.4659 -51.06 94.15
+ 65 103.22 1161 9 1 52.4458 -51.0139 65.55
+ 65 191.262 645 9 0 52.4452 -51.0118 64.15
+ 65 238.635 1161 8 1 52.4376 -50.9737 35.55
+ 65 93.5912 645 8 0 52.4376 -50.971 34.15
+ 65 115.441 1161 7 1 52.4332 -50.9144 5.55
+ 65 160.935 645 7 0 52.4338 -50.9104 4.15
+ 65 123.058 1162 6 1 52.4506 -50.8267 -24.45
+ 65 99.1792 646 6 0 52.4509 -50.8215 -25.85
+ 65 112.79 1162 5 1 52.4585 -50.7153 -54.45
+ 65 89.4457 646 5 0 52.4589 -50.7104 -55.85
+ 65 127.968 1162 4 1 52.4644 -50.6091 -84.45
+ 65 87.4851 647 4 0 52.4643 -50.6042 -85.85
+ 65 100.275 1162 3 1 52.4602 -50.5014 -114.45
+ 65 105.245 647 3 0 52.4592 -50.4974 -115.85
+ 65 120.343 1161 2 1 52.4374 -50.4139 -144.45
+ 65 183.609 648 2 0 52.4358 -50.4103 -145.85
+ 65 128.88 1161 1 1 52.4066 -50.3354 -174.45
+ 65 145.144 648 1 0 52.4048 -50.3325 -175.85
+ 65 170.844 1161 0 1 52.3659 -50.274 -204.45
+ 65 104.134 648 0 0 52.3644 -50.2712 -205.85
+ 65 203.215 646 7 0 52.3808 -50.85 3.97595
+ 65 153 647 7 0 52.3346 -50.65 3.92434
+Number of digits in this event = 16
Using G4ParticleGun ...
-4.67547 LIN
+1.03917 LIN
proton
Event: 66
-Number of tracker hits in this event = 48
- 66 105.669 1386 9 1 97.486 -66.9052 65.55
- 66 100.485 565 9 0 97.486 -66.9042 64.15
- 66 107.219 1386 8 1 97.4849 -66.8804 35.55
- 66 112.105 565 8 0 97.4832 -66.8785 34.15
- 66 150.048 1386 7 1 97.4456 -66.8377 5.55
- 66 116.398 566 7 0 97.4431 -66.8343 4.15
- 66 127.36 1386 6 1 97.389 -66.768 -24.45
- 66 99.6908 566 6 0 97.385 -66.7633 -25.85
- 66 104.394 1385 5 1 97.304 -66.6699 -54.45
- 66 122.377 566 5 0 97.3015 -66.6656 -55.85
- 66 171.838 1385 4 1 97.2482 -66.579 -84.45
- 66 260.142 567 4 0 97.2466 -66.5759 -85.85
- 66 130.418 1385 3 1 97.2185 -66.513 -114.45
- 66 132.857 567 3 0 97.218 -66.5104 -115.85
- 66 105.153 1385 2 1 97.1975 -66.4633 -144.45
- 66 118.807 567 2 0 97.1972 -66.4616 -145.85
- 66 144.407 1385 1 1 97.1839 -66.4356 -174.45
- 66 96.8265 568 1 0 97.1833 -66.4333 -175.85
- 66 117.277 1385 0 1 97.1727 -66.3838 -204.45
- 66 90.5986 568 0 0 97.1716 -66.3801 -205.85
- 66 75.1621 782 2 1 -23.5322 -33.8992 -144.806
- 66 1.73498 161 1 0 65.3037 -147.75 -176.13
- 66 78.6653 761 0 0 108.729 -27.7673 -206.25
- 66 129.46 760 0 0 108.795 -27.85 -206.079
- 66 185.722 963 0 0 97.6943 12.6831 -206.25
- 66 43.5509 138 4 1 -152.456 -49.0374 -84.7057
- 66 134.175 568 4 0 97.3526 -66.3775 -85.8502
- 66 107.164 1394 3 1 99.0931 -61.2393 -114.45
- 66 9.3406 593 3 0 98.8364 -61.4448 -115.85
- 66 101.332 592 3 0 98.8299 -61.45 -115.885
- 66 90.7193 1359 2 1 92.1411 -64.8141 -144.45
- 66 86.1313 1358 2 1 91.95 -64.9541 -144.592
- 66 73.111 1357 2 1 91.75 -65.1115 -144.726
- 66 109.811 566 2 0 89.7888 -66.65 -145.872
- 66 119.285 565 2 0 89.5241 -66.85 -146.054
- 66 3.57159 564 2 0 89.2532 -67.0501 -146.245
- 66 46.4259 1142 1 1 48.5388 -97.0639 -174.45
- 66 111.049 1143 1 1 48.6504 -97.2007 -174.523
- 66 75.9008 1144 1 1 48.8502 -97.4728 -174.671
- 66 89.7705 406 1 0 49.9169 -98.7699 -175.85
- 66 118.719 405 1 0 50.0811 -98.9501 -176.028
- 66 1.62763 404 1 0 50.2741 -99.1502 -176.244
- 66 99.9911 1254 0 1 70.9598 -123.817 -204.45
- 66 29.4508 1253 0 1 70.8499 -123.989 -204.759
- 66 25.3001 277 0 0 70.4083 -124.702 -205.85
- 66 99.3178 276 0 0 70.3781 -124.75 -205.921
- 66 7.82844 275 0 0 70.2405 -124.95 -206.222
- 66 283.281 207 0 0 74.2618 -138.581 -206.25
-Number of digits in this event = 16
+Number of tracker hits in this event = 22
+ 66 146.521 641 10 1 -51.7092 91.7408 95.55
+ 66 113.351 1357 10 0 -51.705 91.7408 94.15
+ 66 128.007 642 9 1 -51.6242 91.7361 65.55
+ 66 136.978 1357 9 0 -51.6179 91.7399 64.15
+ 66 185.415 642 8 1 -51.487 91.8078 35.55
+ 66 134.942 1358 8 0 -51.4788 91.8093 34.15
+ 66 117.63 643 7 1 -51.2975 91.8286 5.55
+ 66 145.966 1358 7 0 -51.2905 91.8326 4.15
+ 66 133.506 644 6 1 -51.1443 91.9332 -24.45
+ 66 137.903 1358 6 0 -51.1388 91.9342 -25.85
+ 66 120.459 644 5 1 -51.0522 91.9252 -54.45
+ 66 190.146 1358 5 0 -51.0481 91.9265 -55.85
+ 66 119.117 645 4 1 -50.975 91.9546 -84.45
+ 66 147.249 1359 4 0 -50.9756 91.9545 -85.85
+ 66 124.838 645 3 1 -50.9946 91.9553 -114.45
+ 66 167.267 1359 3 0 -50.9938 91.9584 -115.85
+ 66 154.318 645 2 1 -50.9756 92.0124 -144.45
+ 66 189.738 1359 2 0 -50.9747 92.0103 -145.85
+ 66 176.051 645 1 1 -50.9389 91.956 -174.45
+ 66 172.287 1359 1 0 -50.9339 91.9516 -175.85
+ 66 177.689 646 0 1 -50.8173 91.8506 -204.45
+ 66 127.525 1358 0 0 -50.809 91.8484 -205.85
+Number of digits in this event = 20
Using G4ParticleGun ...
-1.37007 LIN
+1.19679 LIN
proton
Event: 67
Number of tracker hits in this event = 24
- 67 133.605 550 10 1 -69.9185 -76.2163 95.55
- 67 92.2841 519 10 0 -69.9181 -76.2134 94.15
- 67 156.626 550 9 1 -69.9087 -76.1549 65.55
- 67 112.924 519 9 0 -69.9123 -76.1525 64.15
- 67 111.474 550 8 1 -69.9812 -76.1115 35.55
- 67 111.861 519 8 0 -69.9857 -76.11 34.15
- 67 187.976 549 7 1 -70.0771 -76.0787 5.55
- 67 118.201 519 7 0 -70.0857 -76.0765 4.15
- 67 119.827 548 6 1 -70.2766 -76.032 -24.45
- 67 118.858 520 6 0 -70.2833 -76.0327 -25.85
- 67 124.867 548 5 1 -70.4207 -76.0631 -54.45
- 67 129.561 519 5 0 -70.4217 -76.0672 -55.85
- 67 152.993 548 4 1 -70.4333 -76.1517 -84.45
- 67 104.565 519 4 0 -70.4343 -76.1604 -85.85
- 67 152.441 547 3 1 -70.4531 -76.3369 -114.45
- 67 135.846 518 3 0 -70.4538 -76.3446 -115.85
- 67 211.815 547 2 1 -70.4606 -76.5086 -144.45
- 67 361.3 517 2 0 -70.4605 -76.517 -145.85
- 67 139.408 548 1 1 -70.4258 -76.6957 -174.45
- 67 120.05 516 1 0 -70.4268 -76.7089 -175.85
- 67 132.201 547 0 1 -70.451 -76.9711 -204.45
- 67 113.136 515 0 0 -70.4497 -76.9869 -205.85
- 67 13.3522 549 2 1 -70.1847 -75.8103 -144.85
- 67 134.884 510 2 0 -70.3571 -77.851 -145.85
-Number of digits in this event = 16
+ 67 117.588 869 11 1 -6.23305 58.0509 125.55
+ 67 237.417 1189 11 0 -6.23405 58.0484 124.15
+ 67 123.635 868 10 1 -6.26738 57.9955 95.55
+ 67 115.221 1189 10 0 -6.26231 57.9859 94.15
+ 67 105.681 869 9 1 -6.17966 57.732 65.55
+ 67 176.071 1188 9 0 -6.17491 57.7239 64.15
+ 67 123.788 869 8 1 -6.05907 57.5587 35.55
+ 67 131.033 1187 8 0 -6.04794 57.5502 34.15
+ 67 153.843 871 7 1 -5.81114 57.3979 5.55
+ 67 155.624 1186 7 0 -5.80124 57.3931 4.15
+ 67 114.181 872 6 1 -5.62333 57.2864 -24.45
+ 67 121.12 1186 6 0 -5.61653 57.2746 -25.85
+ 67 142.413 872 5 1 -5.46865 57.0352 -54.45
+ 67 150.926 1184 5 0 -5.4602 57.0325 -55.85
+ 67 102.98 873 4 1 -5.28609 56.9694 -84.45
+ 67 114.299 1184 4 0 -5.28252 56.9667 -85.85
+ 67 143.936 874 3 1 -5.21576 56.9245 -114.45
+ 67 163.61 1184 3 0 -5.21019 56.9202 -115.85
+ 67 211.531 874 2 1 -5.10306 56.8356 -144.45
+ 67 139.897 1183 2 0 -5.09575 56.8306 -145.85
+ 67 158.13 875 1 1 -4.94454 56.7097 -174.45
+ 67 262.688 1183 1 0 -4.93591 56.7089 -175.85
+ 67 110.844 876 0 1 -4.75941 56.7091 -204.45
+ 67 155.935 1183 0 0 -4.75222 56.7145 -205.85
+Number of digits in this event = 18
Using G4ParticleGun ...
-7.49729 LIN
+2.92599 LIN
proton
Event: 68
-Number of tracker hits in this event = 27
- 68 107.117 488 9 1 -82.3824 -101.124 65.55
- 68 128.402 395 9 0 -82.3822 -101.124 64.15
- 68 115.775 488 8 1 -82.3796 -101.129 35.55
- 68 177.74 395 8 0 -82.3786 -101.129 34.15
- 68 136.499 488 7 1 -82.3634 -101.138 5.55
- 68 139.748 395 7 0 -82.3618 -101.138 4.15
- 68 110.336 488 6 1 -82.3295 -101.145 -24.45
- 68 126.035 395 6 0 -82.3275 -101.144 -25.85
- 68 97.3966 488 5 1 -82.2843 -101.13 -54.45
- 68 106.638 395 5 0 -82.2822 -101.131 -55.85
- 68 103.096 489 4 1 -82.2419 -101.133 -84.45
- 68 208.993 395 4 0 -82.2403 -101.133 -85.85
- 68 119.076 489 3 1 -82.211 -101.138 -114.45
- 68 120.666 395 3 0 -82.2099 -101.14 -115.85
- 68 119.012 489 2 1 -82.1867 -101.175 -144.45
- 68 179.67 394 2 0 -82.1856 -101.176 -145.85
- 68 167.489 489 1 1 -82.1673 -101.208 -174.45
- 68 106.056 394 1 0 -82.167 -101.21 -175.85
- 68 155.391 489 0 1 -82.1631 -101.246 -204.45
- 68 102.001 394 0 0 -82.1631 -101.248 -205.85
- 68 5510.63 1796 5 0 -47.7283 179.516 -55.9436
- 68 53.8932 6 2 0 -54.6568 -178.804 -146.25
- 68 135.115 627 2 1 -54.5053 -179.308 -144.85
- 68 67.5268 281 6 0 -24.4331 -123.784 -26.25
- 68 16.5834 380 1 1 -104.115 66.183 -174.774
- 68 216.946 490 1 1 -82.05 -101.145 -174.588
- 68 1.13375 394 7 0 -82.3459 -101.15 3.75145
+Number of tracker hits in this event = 43
+ 68 202.963 677 9 1 -44.4639 118.624 65.55
+ 68 113.074 1492 9 0 -44.4657 118.625 64.15
+ 68 114.386 677 8 1 -44.5101 118.64 35.55
+ 68 215.382 1492 8 0 -44.5103 118.643 34.15
+ 68 117.449 677 7 1 -44.5207 118.689 5.55
+ 68 125.15 1492 7 0 -44.5199 118.69 4.15
+ 68 159.411 677 6 1 -44.5163 118.712 -24.45
+ 68 119.311 1492 6 0 -44.5135 118.713 -25.85
+ 68 56.2175 677 5 1 -44.4503 118.724 -54.45
+ 68 43.0942 678 5 1 -44.45 118.724 -54.6578
+ 68 151.492 1492 5 0 -44.442 118.727 -55.85
+ 68 109.256 679 4 1 -44.2212 118.846 -84.45
+ 68 123.765 1493 4 0 -44.2076 118.851 -85.85
+ 68 118.449 680 3 1 -43.9181 118.963 -114.45
+ 68 113.255 1494 3 0 -43.9027 118.967 -115.85
+ 68 170.169 682 2 1 -43.5884 119.062 -144.45
+ 68 130.927 1494 2 0 -43.5742 119.069 -145.85
+ 68 112.826 683 1 1 -43.28 119.203 -174.45
+ 68 102.479 1495 1 0 -43.2671 119.21 -175.85
+ 68 90.649 685 0 1 -43.011 119.339 -204.45
+ 68 98.0351 1495 0 0 -42.9995 119.346 -205.85
+ 68 70.2446 1493 8 0 -44.3679 118.75 33.942
+ 68 222.446 1686 8 0 -134.286 157.453 33.75
+ 68 22.9374 1687 8 0 -134.632 157.55 33.9134
+ 68 0.919698 1685 8 0 -134.717 157.35 34.1453
+ 68 56.5784 228 8 1 -134.475 156.979 35.15
+ 68 88.5459 229 8 1 -134.35 156.968 35.2718
+ 68 139.042 230 8 1 -134.15 156.988 35.2714
+ 68 174.78 1683 8 0 -134.75 156.843 34.15
+ 68 60.216 1682 8 0 -134.675 156.75 34.0742
+ 68 86.0777 676 9 1 -44.65 118.517 65.3805
+ 68 60.4017 1487 9 0 -45.816 117.662 64.15
+ 68 125.62 1486 9 0 -45.9592 117.55 64.0034
+ 68 1.4154 1485 9 0 -46.218 117.35 63.7545
+ 68 31.7189 515 8 1 -76.8744 91.5437 35.55
+ 68 154.986 516 8 1 -76.8499 91.5607 35.4289
+ 68 67.6154 1359 8 0 -75.9352 92.0304 34.1497
+ 68 122.246 1360 8 0 -75.7983 92.15 33.9864
+ 68 28.5025 1537 8 0 -43.9226 127.701 33.7503
+ 68 75.0931 1538 8 0 -43.8971 127.75 33.7949
+ 68 82.0124 1539 8 0 -43.7945 127.95 33.9421
+ 68 31.2467 1540 8 0 -43.6602 128.15 34.108
+ 68 144.818 685 8 1 -42.9869 129.882 35.15
Number of digits in this event = 16
Using G4ParticleGun ...
-5.29258 LIN
+4.93455 LIN
proton
Event: 69
-Number of tracker hits in this event = 23
- 69 103.088 1312 10 1 82.4864 -66.6003 95.55
- 69 149.936 567 10 0 82.4875 -66.6003 94.15
- 69 105.926 1312 9 1 82.5139 -66.5977 65.55
- 69 105.542 567 9 0 82.5152 -66.5984 64.15
- 69 105.56 1312 8 1 82.5419 -66.6123 35.55
- 69 147.786 567 8 0 82.5432 -66.6128 34.15
- 69 139.752 1312 7 1 82.5667 -66.6197 5.55
- 69 93.4423 567 7 0 82.5676 -66.6196 4.15
- 69 102.34 1312 6 1 82.5841 -66.618 -24.45
- 69 128.943 567 6 0 82.5843 -66.6181 -25.85
- 69 234.758 1312 5 1 82.5817 -66.6185 -54.45
- 69 103.045 567 5 0 82.5804 -66.6184 -55.85
- 69 98.3837 1312 4 1 82.55 -66.6166 -84.45
- 69 103.657 567 4 0 82.5473 -66.6157 -85.85
- 69 99.3786 1312 3 1 82.4925 -66.5906 -114.45
- 69 105.02 567 3 0 82.4898 -66.5878 -115.85
- 69 128.888 1311 2 1 82.4316 -66.5287 -144.45
- 69 93.3566 567 2 0 82.4261 -66.525 -145.85
- 69 193.86 1311 1 1 82.3123 -66.4536 -174.45
- 69 106.019 567 1 0 82.3076 -66.4516 -175.85
- 69 140.244 1310 0 1 82.2098 -66.4086 -204.45
- 69 262.844 568 0 0 82.2054 -66.4061 -205.85
- 69 351.684 1311 5 1 82.4005 -66.53 -54.45
-Number of digits in this event = 11
+Number of tracker hits in this event = 26
+ 69 147.19 640 11 1 -51.8817 1.47826 125.55
+ 69 92.5347 907 11 0 -51.8827 1.4806 124.15
+ 69 121.004 640 10 1 -51.9071 1.53195 95.55
+ 69 182.688 907 10 0 -51.9093 1.53599 94.15
+ 69 95.2213 640 9 1 -51.9526 1.61673 65.55
+ 69 95.9794 907 9 0 -51.9549 1.62127 64.15
+ 69 141.056 640 8 1 -52.0011 1.71446 35.55
+ 69 106.619 908 8 0 -52.0028 1.7183 34.15
+ 69 110.42 640 7 1 -52.0342 1.79724 5.55
+ 69 96.8409 908 7 0 -52.0361 1.8026 4.15
+ 69 89.1887 639 6 1 -52.0739 1.91082 -24.45
+ 69 116.424 909 6 0 -52.0757 1.91665 -25.85
+ 69 98.0834 639 5 1 -52.1131 2.03563 -54.45
+ 69 137.074 909 5 0 -52.1137 2.04307 -55.85
+ 69 132.765 639 4 1 -52.123 2.18737 -84.45
+ 69 117.674 910 4 0 -52.1221 2.19449 -85.85
+ 69 174.18 639 3 1 -52.1009 2.3395 -114.45
+ 69 99.8359 911 3 0 -52.0998 2.34827 -115.85
+ 69 124.411 639 2 1 -52.0799 2.52801 -144.45
+ 69 225.309 912 2 0 -52.0793 2.53713 -145.85
+ 69 117.963 639 1 1 -52.068 2.72326 -174.45
+ 69 120.242 913 1 0 -52.0679 2.73157 -175.85
+ 69 134.209 639 0 1 -52.0669 2.90139 -204.45
+ 69 167.026 914 0 0 -52.0665 2.90985 -205.85
+ 69 0.0586342 1189 1 0 -80.0117 58.05 -176.229
+ 69 1.54116 16 0 1 -176.811 168.848 -204.85
+Number of digits in this event = 15
Using G4ParticleGun ...
-2.52642 LIN
+8.6342 LIN
proton
Event: 70
-Number of tracker hits in this event = 33
- 70 150.369 795 11 1 -20.8741 48.5036 125.55
- 70 115.372 1142 11 0 -20.8701 48.504 124.15
- 70 142.838 796 10 1 -20.7643 48.4711 95.55
- 70 128.379 1142 10 0 -20.756 48.4703 94.15
- 70 128.103 797 9 1 -20.5881 48.4544 65.55
- 70 108.786 1142 9 0 -20.5781 48.4533 64.15
- 70 99.9874 798 8 1 -20.3692 48.4304 35.55
- 70 318.111 1141 8 0 -20.3582 48.4319 34.15
- 70 104.049 799 7 1 -20.1299 48.4705 5.55
- 70 150.595 1142 7 0 -20.1139 48.4731 4.15
- 70 133.506 801 6 1 -19.7811 48.5284 -24.45
- 70 100.861 1142 6 0 -19.7638 48.5337 -25.85
- 70 226.019 803 5 1 -19.4062 48.6409 -54.45
- 70 244.764 1142 5 0 -19.387 48.6478 -55.85
- 70 94.0319 805 4 1 -18.9916 48.8022 -84.45
- 70 112.88 1143 4 0 -18.9747 48.8097 -85.85
- 70 176.646 807 3 1 -18.6231 48.9619 -114.45
- 70 140.772 1144 3 0 -18.6014 48.9655 -115.85
- 70 122.138 809 2 1 -18.1564 49.0363 -144.45
- 70 170.588 1144 2 0 -18.1359 49.0408 -145.85
- 70 112.818 811 1 1 -17.7032 49.1315 -174.45
- 70 260.838 1145 1 0 -17.6812 49.1373 -175.85
- 70 130.963 814 0 1 -17.239 49.2519 -204.45
- 70 202.986 1146 0 0 -17.2172 49.2578 -205.85
- 70 113.639 1700 9 1 160.208 17.8288 65.4474
- 70 44.3833 1216 10 1 63.3063 -37.3556 95.15
- 70 57.5203 1384 0 0 -41.3936 97.0335 -206.25
- 70 72.0535 1385 0 0 -41.4891 97.15 -206.181
- 70 67.695 1386 0 0 -41.6293 97.35 -206.058
- 70 65.3847 1387 0 0 -41.672 97.5501 -206.092
- 70 65.0547 1388 0 0 -41.5894 97.75 -206.153
- 70 2.6549 714 3 1 -37.25 34.6673 -114.825
- 70 3.04556 1140 8 0 -20.373 48.25 33.7513
-Number of digits in this event = 20
+Number of tracker hits in this event = 27
+ 70 147.285 854 10 1 -9.16588 108.676 95.55
+ 70 214.103 1442 10 0 -9.16592 108.676 94.15
+ 70 98.3015 854 9 1 -9.1682 108.667 65.55
+ 70 106.727 1442 9 0 -9.16846 108.667 64.15
+ 70 105.703 854 8 1 -9.17454 108.662 35.55
+ 70 113.035 1442 8 0 -9.17473 108.661 34.15
+ 70 155.274 854 7 1 -9.17777 108.641 5.55
+ 70 138.125 1442 7 0 -9.17773 108.641 4.15
+ 70 145.837 854 6 1 -9.17821 108.627 -24.45
+ 70 178.802 1442 6 0 -9.17873 108.626 -25.85
+ 70 109.12 854 5 1 -9.18991 108.608 -54.45
+ 70 112.096 1442 5 0 -9.18985 108.607 -55.85
+ 70 378.158 854 4 1 -9.17804 108.592 -84.45
+ 70 261.923 1442 4 0 -9.17846 108.595 -85.85
+ 70 102.425 854 3 1 -9.18686 108.653 -114.45
+ 70 118.306 1442 3 0 -9.18719 108.657 -115.85
+ 70 149.712 854 2 1 -9.19428 108.741 -144.45
+ 70 109.522 1442 2 0 -9.19453 108.745 -145.85
+ 70 134.382 854 1 1 -9.19931 108.826 -174.45
+ 70 137.959 1443 1 0 -9.20194 108.831 -175.85
+ 70 136.225 853 0 1 -9.25364 108.931 -204.45
+ 70 132.89 1443 0 0 -9.25653 108.936 -205.85
+ 70 160.352 853 4 1 -9.25009 109.144 -84.5988
+ 70 104.113 855 4 1 -9.05 109.652 -84.5677
+ 70 119.922 856 4 1 -8.84994 109.577 -84.7901
+ 70 313.218 857 4 1 -8.65 109.43 -84.6219
+ 70 423.817 855 10 1 -9.04947 108.702 95.2004
+Number of digits in this event = 17
Using G4ParticleGun ...
-8.59929 LIN
+1.91441 LIN
proton
Event: 71
-Number of tracker hits in this event = 30
- 71 198.589 1302 11 1 80.5205 -0.897753 125.55
- 71 170.074 895 11 0 80.5201 -0.89784 124.15
- 71 148.859 1302 10 1 80.5105 -0.901014 95.55
- 71 129.394 895 10 0 80.51 -0.902289 94.15
- 71 131.925 1302 9 1 80.5025 -0.932816 65.55
- 71 129.782 895 9 0 80.5022 -0.933572 64.15
- 71 111.645 1302 8 1 80.4938 -0.947887 35.55
- 71 104.031 895 8 0 80.4932 -0.948434 34.15
- 71 173.091 1302 7 1 80.48 -0.958914 5.55
- 71 99.3427 895 7 0 80.4799 -0.958682 4.15
- 71 111.337 1302 6 1 80.4776 -0.953001 -24.45
- 71 213.068 895 6 0 80.4791 -0.954345 -25.85
- 71 110.56 1302 5 1 80.5084 -0.982013 -54.45
- 71 101.264 895 5 0 80.5089 -0.983487 -55.85
- 71 124.558 1302 4 1 80.5152 -1.01047 -84.45
- 71 125.99 895 4 0 80.5158 -1.01162 -85.85
- 71 114.722 1302 3 1 80.5275 -1.03738 -114.45
- 71 164.277 895 3 0 80.5282 -1.03923 -115.85
- 71 109.923 1302 2 1 80.5438 -1.07075 -144.45
- 71 118.892 894 2 0 80.5448 -1.07239 -145.85
- 71 146.086 1302 1 1 80.5642 -1.10665 -174.45
- 71 136.58 894 1 0 80.565 -1.10833 -175.85
- 71 102.672 1302 0 1 80.5808 -1.14345 -204.45
- 71 125.677 894 0 0 80.5817 -1.14665 -205.85
- 71 55.2321 896 6 0 80.47 -0.849879 -26.1123
- 71 57.8893 1301 9 1 80.4498 -0.912921 65.5387
- 71 49.6303 1300 9 1 80.2497 -0.874729 65.4817
- 71 60.7294 1299 9 1 80.05 -0.862045 65.4568
- 71 95.3175 1298 9 1 79.85 -0.777419 65.4834
- 71 17.4187 1297 9 1 79.65 -0.620135 65.5166
-Number of digits in this event = 15
+Number of tracker hits in this event = 18
+ 71 93.7635 1526 8 1 125.5 -68.7275 35.55
+ 71 117.09 556 8 0 125.502 -68.7299 34.15
+ 71 132.351 1527 7 1 125.578 -68.7882 5.55
+ 71 171.792 556 7 0 125.583 -68.7928 4.15
+ 71 107.917 1527 6 1 125.694 -68.8792 -24.45
+ 71 102.133 555 6 0 125.701 -68.8809 -25.85
+ 71 121.11 1528 5 1 125.853 -68.9235 -54.45
+ 71 203.74 555 5 0 125.86 -68.9285 -55.85
+ 71 147.957 1529 4 1 126 -69.0352 -84.45
+ 71 117.087 555 4 0 126.009 -69.0434 -85.85
+ 71 124.366 1530 3 1 126.201 -69.1956 -114.45
+ 71 122.966 554 3 0 126.209 -69.2056 -115.85
+ 71 117.163 1531 2 1 126.361 -69.4051 -144.45
+ 71 98.9545 553 2 0 126.371 -69.4055 -145.85
+ 71 107.743 1532 1 1 126.584 -69.4228 -174.45
+ 71 183.856 553 1 0 126.598 -69.4264 -175.85
+ 71 100.211 1533 0 1 126.89 -69.5671 -204.45
+ 71 132.532 552 0 0 126.905 -69.5748 -205.85
+Number of digits in this event = 10
Using G4ParticleGun ...
-7.16847 LIN
+8.82054 LIN
proton
Event: 72
-Number of tracker hits in this event = 29
- 72 132.215 303 9 1 -119.499 -8.18758 65.55
- 72 105.178 859 9 0 -119.499 -8.18665 64.15
- 72 151.69 303 8 1 -119.506 -8.16689 35.55
- 72 100.667 859 8 0 -119.506 -8.16513 34.15
- 72 131.502 303 7 1 -119.505 -8.12933 5.55
- 72 113.44 859 7 0 -119.504 -8.12926 4.15
- 72 79.1645 303 6 1 -119.494 -8.12691 -24.45
- 72 119.433 859 6 0 -119.494 -8.12627 -25.85
- 72 101.153 303 5 1 -119.469 -8.11402 -54.45
- 72 110.818 859 5 0 -119.468 -8.1114 -55.85
- 72 97.2434 303 4 1 -119.453 -8.0596 -84.45
- 72 117.972 859 4 0 -119.455 -8.05702 -85.85
- 72 126.599 303 3 1 -119.479 -8.00462 -114.45
- 72 106.433 860 3 0 -119.482 -8.00217 -115.85
- 72 126.78 302 2 1 -119.559 -7.95527 -144.45
- 72 109.162 860 2 0 -119.562 -7.9525 -145.85
- 72 119.943 302 1 1 -119.629 -7.89783 -174.45
- 72 294.609 860 1 0 -119.632 -7.89599 -175.85
- 72 132.418 302 0 1 -119.682 -7.8579 -204.45
- 72 117.952 860 0 0 -119.684 -7.85561 -205.85
- 72 47.993 861 1 0 -119.521 -7.84996 -176.185
- 72 38.2061 1178 1 0 -57.3138 55.7813 -176.25
- 72 155.872 1179 1 0 -57.2386 55.85 -176.178
- 72 60.5096 1180 1 0 -57.0222 56.05 -175.957
- 72 8.21838 601 1 1 -59.7449 60.5964 -174.85
- 72 75.5318 1224 1 0 -62.9823 64.928 -175.85
- 72 152.663 1225 1 0 -63.1311 65.05 -175.918
- 72 32.1709 1226 1 0 -63.1953 65.25 -176.189
- 72 70.0381 1143 1 0 -4.29584 48.7408 -176.25
-Number of digits in this event = 10
+Number of tracker hits in this event = 95
+ 72 98.8073 315 9 1 -117.069 -49.6173 65.55
+ 72 101.525 652 9 0 -117.07 -49.6174 64.15
+ 72 114.202 315 8 1 -117.082 -49.6166 35.55
+ 72 110.624 652 8 0 -117.082 -49.6163 34.15
+ 72 113.697 315 7 1 -117.089 -49.6079 5.55
+ 72 112.051 652 7 0 -117.089 -49.6074 4.15
+ 72 240.215 315 6 1 -117.097 -49.5971 -24.45
+ 72 217.38 652 6 0 -117.098 -49.597 -25.85
+ 72 159.749 315 5 1 -117.121 -49.5924 -54.45
+ 72 102.332 652 5 0 -117.123 -49.593 -55.85
+ 72 96.5252 314 4 1 -117.153 -49.6008 -84.45
+ 72 185.027 652 4 0 -117.155 -49.6018 -85.85
+ 72 124.25 314 3 1 -117.201 -49.6234 -114.45
+ 72 188.402 652 3 0 -117.203 -49.6249 -115.85
+ 72 103.805 314 2 1 -117.248 -49.6534 -144.45
+ 72 118.725 651 2 0 -117.251 -49.656 -145.85
+ 72 217.842 314 1 1 -117.314 -49.709 -174.45
+ 72 138.727 651 1 0 -117.317 -49.7117 -175.85
+ 72 126.188 313 0 1 -117.38 -49.7697 -204.45
+ 72 121.366 651 0 0 -117.383 -49.7731 -205.85
+ 72 27.5848 499 0 0 -123.735 -80.1995 -206.25
+ 72 81.0535 498 0 0 -123.746 -80.25 -206.222
+ 72 169.484 497 0 0 -123.787 -80.45 -206.109
+ 72 123.478 496 0 0 -123.829 -80.65 -205.998
+ 72 32.9775 495 0 0 -123.871 -80.85 -205.886
+ 72 295.042 279 0 1 -124.272 -82.7378 -204.85
+ 72 468.166 278 0 1 -124.35 -83.1061 -204.647
+ 72 44.1977 195 1 0 -137.382 -141.055 -176.25
+ 72 115.642 194 1 0 -137.404 -141.15 -176.203
+ 72 78.6494 193 1 0 -137.449 -141.35 -176.106
+ 72 81.2264 192 1 0 -137.494 -141.55 -176.007
+ 72 125.213 191 1 0 -137.54 -141.75 -175.908
+ 72 343.026 210 1 1 -138.019 -143.839 -174.85
+ 72 135.926 209 1 1 -138.15 -144.412 -174.56
+ 72 177.752 284 0 1 -123.2 -80.1744 -204.85
+ 72 17.3314 285 0 1 -123.15 -80.156 -204.669
+ 72 202.934 283 0 1 -123.35 -80.0723 -204.734
+ 72 283.736 486 3 0 -97.0951 -82.8242 -116.25
+ 72 121.944 315 4 1 -117.124 -49.5884 -84.4504
+ 72 107.092 653 4 0 -116.789 -49.3562 -85.8501
+ 72 151.881 349 3 1 -110.179 -44.2919 -114.45
+ 72 552.822 350 3 1 -110.15 -44.2744 -114.523
+ 72 115.829 680 3 0 -109.663 -44.0215 -115.85
+ 72 208.075 411 2 1 -97.9191 -39.9664 -144.45
+ 72 14.2104 412 2 1 -97.7498 -39.8266 -144.792
+ 72 96.3897 702 2 0 -97.228 -39.5026 -145.85
+ 72 284.383 703 2 0 -97.1508 -39.4499 -146.015
+ 72 36.0547 490 1 1 -81.9337 -31.454 -174.45
+ 72 80.8388 491 1 1 -81.85 -31.4705 -174.486
+ 72 49.0017 492 1 1 -81.6498 -31.508 -174.567
+ 72 128.295 493 1 1 -81.4499 -31.5505 -174.642
+ 72 85.2137 494 1 1 -81.25 -31.6043 -174.721
+ 72 92.218 495 1 1 -81.05 -31.6642 -174.787
+ 72 24.4337 496 1 1 -80.8499 -31.7311 -174.838
+ 72 216.145 729 1 0 -74.3631 -34.0771 -175.85
+ 72 267.44 728 1 0 -73.8761 -34.2507 -175.953
+ 72 129.912 781 0 1 -23.6858 -50.2424 -204.45
+ 72 34.7732 780 0 1 -23.85 -50.411 -204.747
+ 72 73.0143 644 0 0 -24.6682 -51.1356 -205.85
+ 72 122.926 643 0 0 -24.8475 -51.25 -206.02
+ 72 93.8374 457 0 0 -103.691 -88.5958 -206.25
+ 72 224.912 456 0 0 -103.823 -88.65 -206.224
+ 72 190.114 455 0 0 -104.413 -88.85 -206.046
+ 72 191.448 454 0 0 -104.946 -89.05 -205.937
+ 72 227.079 453 0 0 -105.545 -89.25 -205.924
+ 72 25.4188 344 0 1 -111.256 -91.0775 -204.85
+ 72 64.9234 343 0 1 -111.35 -91.1023 -204.829
+ 72 61.3371 342 0 1 -111.55 -91.1212 -204.778
+ 72 100.81 341 0 1 -111.75 -91.1507 -204.718
+ 72 100.84 340 0 1 -111.95 -91.1866 -204.65
+ 72 109.4 339 0 1 -112.15 -91.2154 -204.575
+ 72 49.8513 338 0 1 -112.35 -91.2196 -204.469
+ 72 60.8776 337 0 1 -112.55 -91.1487 -204.518
+ 72 66.1383 336 0 1 -112.75 -91.1104 -204.583
+ 72 62.9101 335 0 1 -112.95 -91.0795 -204.67
+ 72 41.9152 334 0 1 -113.15 -91.0403 -204.789
+ 72 317.354 447 0 0 -115.175 -90.6773 -205.85
+ 72 41.9038 465 0 0 -175.761 -86.9708 -206.25
+ 72 70.3726 464 0 0 -175.899 -87.0502 -206.17
+ 72 163.883 463 0 0 -176.068 -87.25 -206.023
+ 72 30.326 462 0 0 -176.315 -87.45 -205.875
+ 72 198.288 572 0 0 -56.9198 -65.4614 -206.25
+ 72 71.8741 430 1 0 -22.8608 -94.1401 -176.25
+ 72 253.038 429 1 0 -22.8608 -94.15 -176.243
+ 72 165.819 431 1 0 -22.9636 -93.95 -175.888
+ 72 81.0133 781 1 1 -23.6696 -95.2049 -174.85
+ 72 37.3132 782 1 1 -23.6499 -95.2184 -174.827
+ 72 7.54036 410 2 1 -97.95 -39.9313 -144.568
+ 72 126.195 698 2 0 -97.9397 -40.2604 -145.85
+ 72 184.96 678 2 0 -85.3786 -44.3275 -146.25
+ 72 176.62 677 2 0 -85.3357 -44.4501 -145.939
+ 72 83.2961 681 3 0 -109.753 -43.6883 -115.85
+ 72 45.3257 682 3 0 -109.715 -43.6499 -115.94
+ 72 192.061 674 3 0 -111.113 -45.0898 -115.85
+ 72 350.849 673 3 0 -111.492 -45.25 -116.138
+Number of digits in this event = 47
Using G4ParticleGun ...
-7.02892 LIN
+2.40287 LIN
proton
Event: 73
-Number of tracker hits in this event = 24
- 73 156.816 717 11 1 -36.484 4.87479 125.55
- 73 163.652 924 11 0 -36.4844 4.87488 124.15
- 73 161.962 717 10 1 -36.4954 4.87956 95.55
- 73 137.645 924 10 0 -36.4958 4.87942 94.15
- 73 180.777 717 9 1 -36.5089 4.88031 65.55
- 73 105.782 924 9 0 -36.5097 4.87975 64.15
- 73 105.324 717 8 1 -36.5274 4.87299 35.55
- 73 103.73 924 8 0 -36.5274 4.87286 34.15
- 73 136.527 717 7 1 -36.5254 4.86817 5.55
- 73 105.05 924 7 0 -36.5254 4.86611 4.15
- 73 145.154 717 6 1 -36.5253 4.82236 -24.45
- 73 118.544 923 6 0 -36.5255 4.82042 -25.85
- 73 108.006 717 5 1 -36.5278 4.78166 -54.45
- 73 146.676 923 5 0 -36.5273 4.78049 -55.85
- 73 135.77 717 4 1 -36.5194 4.75475 -84.45
- 73 143.641 923 4 0 -36.5182 4.75417 -85.85
- 73 123.057 717 3 1 -36.4931 4.74556 -114.45
- 73 103.256 923 3 0 -36.491 4.74541 -115.85
- 73 189.188 718 2 1 -36.4498 4.74357 -144.45
- 73 115.512 923 2 0 -36.4471 4.74389 -145.85
- 73 99.4881 718 1 1 -36.3898 4.74663 -174.45
- 73 123.111 923 1 0 -36.3869 4.74658 -175.85
- 73 119.766 718 0 1 -36.332 4.74384 -204.45
- 73 109.847 923 0 0 -36.3295 4.74411 -205.85
-Number of digits in this event = 14
+Number of tracker hits in this event = 28
+ 73 103.829 1259 10 1 72.0378 54.0295 95.55
+ 73 90.7978 1169 10 0 72.0379 54.0297 94.15
+ 73 200.873 1259 9 1 72.0404 54.0449 65.55
+ 73 183.476 1169 9 0 72.0435 54.0443 64.15
+ 73 111.211 1260 8 1 72.105 54.0276 35.55
+ 73 160.356 1169 8 0 72.1072 54.0288 34.15
+ 73 189.482 1260 7 1 72.1553 54.0591 5.55
+ 73 102.023 1170 7 0 72.155 54.0577 4.15
+ 73 126.196 1260 6 1 72.1425 54.0344 -24.45
+ 73 109.503 1169 6 0 72.1451 54.032 -25.85
+ 73 110.642 1260 5 1 72.1996 53.9737 -54.45
+ 73 112.691 1169 5 0 72.201 53.9744 -55.85
+ 73 173.298 1260 4 1 72.2221 54.0069 -84.45
+ 73 118.308 1169 4 0 72.2212 54.0075 -85.85
+ 73 122.56 1260 3 1 72.2043 54.0205 -114.45
+ 73 143.602 1169 3 0 72.1882 54.0309 -115.85
+ 73 143.309 1259 2 1 71.8621 54.2456 -144.45
+ 73 107.058 1171 2 0 71.8468 54.2564 -145.85
+ 73 153.465 1257 1 1 71.5418 54.4764 -174.45
+ 73 143.825 1172 1 0 71.5258 54.4862 -175.85
+ 73 102.029 1255 0 1 71.194 54.6948 -204.45
+ 73 221.757 1173 0 0 71.1788 54.7031 -205.85
+ 73 40.5763 491 3 0 -65.3076 -81.7695 -116.25
+ 73 73.9267 490 3 0 -65.2433 -81.85 -116.213
+ 73 121.727 489 3 0 -65.0796 -82.05 -116.134
+ 73 118.155 463 3 0 -22.0032 -87.4342 -116.25
+ 73 98.8079 181 2 1 -143.912 13.9651 -144.45
+ 73 226.919 1261 4 1 72.25 53.9003 -84.7413
+Number of digits in this event = 16
Using G4ParticleGun ...
-8.2583 LIN
+9.23301 LIN
proton
Event: 74
-Number of tracker hits in this event = 24
- 74 229.088 1248 11 0 46.1819 69.8269 124.15
- 74 113.708 1130 10 1 46.1804 69.8386 95.55
- 74 111.353 1248 10 0 46.1805 69.8385 94.15
- 74 151.697 1130 9 1 46.1817 69.839 65.55
- 74 98.3028 1248 9 0 46.1818 69.8394 64.15
- 74 131.347 1130 8 1 46.1866 69.8481 35.55
- 74 142.107 1248 8 0 46.1857 69.8489 34.15
- 74 123.825 1130 7 1 46.1623 69.8673 5.55
- 74 108.369 1249 7 0 46.1613 69.8684 4.15
- 74 202.937 1130 6 1 46.1444 69.8902 -24.45
- 74 159.421 1249 6 0 46.1437 69.8907 -25.85
- 74 326.623 1130 5 1 46.126 69.9041 -54.45
- 74 106.651 1249 5 0 46.1248 69.9044 -55.85
- 74 194.194 1130 4 1 46.0995 69.9103 -84.45
- 74 110.055 1249 4 0 46.0982 69.9101 -85.85
- 74 182.408 1130 3 1 46.0718 69.9054 -114.45
- 74 108.769 1249 3 0 46.0704 69.9056 -115.85
- 74 106.302 1129 2 1 46.041 69.9115 -144.45
- 74 102.515 1249 2 0 46.0396 69.9116 -145.85
- 74 101.584 1129 1 1 46.0095 69.9078 -174.45
- 74 116.701 1249 1 0 46.0068 69.9097 -175.85
- 74 117.425 1129 0 1 45.9496 69.9504 -204.45
- 74 205.942 1249 0 0 45.946 69.9527 -205.85
- 74 20.2352 1131 5 1 46.25 70.0086 -54.6454
-Number of digits in this event = 12
+Number of tracker hits in this event = 20
+ 74 102.016 1364 9 1 93.1457 86.8943 65.55
+ 74 96.5279 1334 9 0 93.1452 86.8955 64.15
+ 74 118.592 1364 8 1 93.136 86.9174 35.55
+ 74 124.416 1334 8 0 93.1353 86.9191 34.15
+ 74 152.509 1364 7 1 93.1216 86.9536 5.55
+ 74 96.5821 1334 7 0 93.1212 86.9549 4.15
+ 74 103.754 1364 6 1 93.1113 86.9802 -24.45
+ 74 117.453 1334 6 0 93.1107 86.981 -25.85
+ 74 106.549 1364 5 1 93.0959 86.9996 -54.45
+ 74 189.353 1334 5 0 93.095 87.0003 -55.85
+ 74 117.755 1364 4 1 93.0781 87.0178 -84.45
+ 74 101.027 1334 4 0 93.0775 87.0188 -85.85
+ 74 103.745 1364 3 1 93.0657 87.039 -114.45
+ 74 116.975 1334 3 0 93.0645 87.0401 -115.85
+ 74 177.608 1364 2 1 93.0469 87.0613 -144.45
+ 74 135.778 1335 2 0 93.0464 87.0625 -145.85
+ 74 96.1773 1364 1 1 93.0346 87.0843 -174.45
+ 74 100.268 1335 1 0 93.0329 87.0845 -175.85
+ 74 125.927 1364 0 1 92.9951 87.0868 -204.45
+ 74 108.547 1335 0 0 92.9928 87.0876 -205.85
+Number of digits in this event = 7
Using G4ParticleGun ...
-1.52788 LIN
+6.00374 LIN
proton
Event: 75
-Number of tracker hits in this event = 24
- 75 142.657 312 9 1 -117.74 42.5203 65.55
- 75 164.549 1112 9 0 -117.733 42.5295 64.15
- 75 111.185 312 8 1 -117.594 42.7153 35.55
- 75 152.865 1113 8 0 -117.589 42.7242 34.15
- 75 137.658 313 7 1 -117.481 42.8911 5.55
- 75 143.694 1114 7 0 -117.476 42.8998 4.15
- 75 119.273 313 6 1 -117.379 43.0731 -24.45
- 75 140.089 1115 6 0 -117.373 43.0833 -25.85
- 75 143.345 314 5 1 -117.254 43.2925 -54.45
- 75 109.42 1116 5 0 -117.245 43.3042 -55.85
- 75 151.824 315 4 1 -117.077 43.5308 -84.45
- 75 107.849 1117 4 0 -117.071 43.536 -85.85
- 75 138.641 316 3 1 -116.93 43.6313 -114.45
- 75 166.538 1117 3 0 -116.927 43.6362 -115.85
- 75 111.23 316 2 1 -116.874 43.7359 -144.45
- 75 131.874 1118 2 0 -116.868 43.7363 -145.85
- 75 111.976 317 1 1 -116.736 43.7242 -174.45
- 75 175.842 1118 1 0 -116.727 43.7276 -175.85
- 75 112.508 317 0 1 -116.556 43.8067 -204.45
- 75 113.515 1118 0 0 -116.547 43.8119 -205.85
- 75 133.634 1118 3 0 -116.918 43.6501 -115.982
- 75 40.8396 1111 9 0 -117.787 42.45 64.0659
- 75 182.544 306 9 1 -118.788 42.4847 65.15
- 75 65.7454 307 9 1 -118.75 42.432 65.2134
+Number of tracker hits in this event = 21
+ 75 127.842 1502 9 1 120.722 -47.7651 65.55
+ 75 152.868 661 9 0 120.721 -47.7671 64.15
+ 75 121.717 1502 8 1 120.703 -47.8114 35.55
+ 75 104.075 661 8 0 120.702 -47.8133 34.15
+ 75 90.9789 1502 7 1 120.69 -47.8531 5.55
+ 75 103.228 660 7 0 120.689 -47.8553 4.15
+ 75 274.064 1502 6 1 120.669 -47.8981 -24.45
+ 75 193.402 660 6 0 120.667 -47.8998 -25.85
+ 75 107.469 1502 5 1 120.626 -47.9382 -54.45
+ 75 265.874 660 5 0 120.625 -47.9409 -55.85
+ 75 299.146 1502 4 1 120.613 -47.9978 -84.45
+ 75 110.885 660 4 0 120.612 -48.0013 -85.85
+ 75 128.451 1502 3 1 120.58 -48.072 -114.45
+ 75 107.678 659 3 0 120.579 -48.0741 -115.85
+ 75 141.126 1502 2 1 120.554 -48.1214 -144.45
+ 75 145.786 659 2 0 120.553 -48.1227 -145.85
+ 75 111.632 1501 1 1 120.518 -48.1482 -174.45
+ 75 124.391 659 1 0 120.517 -48.1493 -175.85
+ 75 136.298 1501 0 1 120.491 -48.1706 -204.45
+ 75 173.454 659 0 0 120.49 -48.1716 -205.85
+ 75 130.954 641 4 0 119.276 -51.7992 -85.85
Number of digits in this event = 15
Using G4ParticleGun ...
-1.40826 LIN
+9.19231 LIN
proton
Event: 76
-Number of tracker hits in this event = 19
- 76 107.078 1601 7 1 140.352 49.3613 5.55
- 76 111.175 1146 7 0 140.354 49.3635 4.15
- 76 152.157 1601 6 1 140.402 49.4274 -24.45
- 76 131.265 1146 6 0 140.404 49.4287 -25.85
- 76 181.79 1601 5 1 140.455 49.4571 -54.45
- 76 127.163 1147 5 0 140.458 49.4565 -55.85
- 76 99.9096 1601 4 1 140.534 49.4349 -84.45
- 76 140.97 1146 4 0 140.535 49.4366 -85.85
- 76 133.024 1602 3 1 140.559 49.4642 -114.45
- 76 186.847 1147 3 0 140.56 49.4669 -115.85
- 76 171.983 1602 2 1 140.596 49.5318 -144.45
- 76 136.779 1147 2 0 140.597 49.5349 -145.85
- 76 141.434 1602 1 1 140.661 49.6209 -174.45
- 76 200.274 1147 1 0 140.673 49.6229 -175.85
- 76 124.7 1603 0 1 140.916 49.6447 -204.45
- 76 89.9704 1147 0 0 140.924 49.647 -205.85
- 76 7.96185 979 3 0 56.4929 15.9907 -116.25
- 76 169.742 1600 7 1 140.35 49.3607 5.50627
- 76 161.83 1599 7 1 140.15 49.339 5.39824
-Number of digits in this event = 15
+Number of tracker hits in this event = 24
+ 76 105.074 1244 9 1 68.9433 97.5368 65.55
+ 76 107.89 1386 9 0 68.9429 97.5373 64.15
+ 76 126.253 1244 8 1 68.9337 97.5492 35.55
+ 76 121.763 1386 8 0 68.9334 97.5497 34.15
+ 76 205.756 1244 7 1 68.9251 97.5604 5.55
+ 76 107.401 1387 7 0 68.925 97.5607 4.15
+ 76 117.909 1244 6 1 68.9208 97.5654 -24.45
+ 76 139.468 1387 6 0 68.921 97.5656 -25.85
+ 76 150.327 1244 5 1 68.9298 97.5748 -54.45
+ 76 91.3506 1387 5 0 68.9307 97.5754 -55.85
+ 76 163.212 1244 4 1 68.9498 97.59 -84.45
+ 76 112.757 1387 4 0 68.9509 97.5912 -85.85
+ 76 96.7645 1244 3 1 68.9714 97.6143 -114.45
+ 76 129.05 1387 3 0 68.9725 97.6158 -115.85
+ 76 109.072 1244 2 1 68.992 97.6472 -144.45
+ 76 101.551 1387 2 0 68.993 97.6483 -145.85
+ 76 105.417 1244 1 1 69.0139 97.6712 -174.45
+ 76 122.731 1387 1 0 69.0143 97.6728 -175.85
+ 76 126.135 1244 0 1 69.0251 97.7032 -204.45
+ 76 109.88 1387 0 0 69.0262 97.7057 -205.85
+ 76 99.913 1243 7 1 68.85 97.6177 5.36421
+ 76 187.316 1242 7 1 68.6499 97.6166 5.2381
+ 76 172.076 1241 7 1 68.4496 97.5914 5.2642
+ 76 182.331 1240 7 1 68.25 97.7375 5.16982
+Number of digits in this event = 13
Using G4ParticleGun ...
-5.47531 LIN
+7.06614 LIN
proton
Event: 77
-Number of tracker hits in this event = 25
- 77 101.513 1249 10 1 69.981 81.3908 95.55
- 77 176.321 1306 10 0 69.9812 81.3916 94.15
- 77 149.402 1249 9 1 69.9775 81.4046 65.55
- 77 101.777 1306 9 0 69.9771 81.4049 64.15
- 77 100.037 1249 8 1 69.9684 81.4112 35.55
- 77 170.496 1306 8 0 69.9685 81.411 34.15
- 77 105.36 1249 7 1 69.9683 81.4092 5.55
- 77 178.615 1306 7 0 69.9669 81.409 4.15
- 77 105.877 1249 6 1 69.9348 81.3997 -24.45
- 77 122.234 1306 6 0 69.9327 81.4007 -25.85
- 77 112.81 1249 5 1 69.8852 81.4354 -54.45
- 77 297.689 1306 5 0 69.8825 81.4373 -55.85
- 77 119.343 1248 4 1 69.8172 81.4755 -84.45
- 77 140.566 1307 4 0 69.8147 81.4767 -85.85
- 77 103.024 1248 3 1 69.7627 81.4975 -114.45
- 77 144.013 1307 3 0 69.7602 81.4986 -115.85
- 77 91.8013 1248 2 1 69.7045 81.5247 -144.45
- 77 97.8651 1307 2 0 69.7017 81.5261 -145.85
- 77 115.155 1247 1 1 69.6415 81.5511 -174.45
- 77 172.788 1307 1 0 69.6386 81.554 -175.85
- 77 196.761 1247 0 1 69.5782 81.6133 -204.45
- 77 88.7143 1307 0 0 69.5732 81.6154 -205.85
- 77 116.006 1248 0 1 69.65 81.6037 -204.75
- 77 72.7768 1248 1 1 69.6501 81.5558 -174.616
- 77 163.965 1311 1 0 70.262 82.3318 -175.85
-Number of digits in this event = 12
+Number of tracker hits in this event = 31
+ 77 133.303 594 11 1 -61.0783 -19.8532 125.55
+ 77 97.0369 800 11 0 -61.0781 -19.8537 124.15
+ 77 197.4 594 10 1 -61.0742 -19.8724 95.55
+ 77 147.595 800 10 0 -61.0736 -19.8736 94.15
+ 77 103.527 594 9 1 -61.058 -19.9015 65.55
+ 77 120.383 800 9 0 -61.0576 -19.9024 64.15
+ 77 101.899 595 8 1 -61.0497 -19.9242 35.55
+ 77 100.126 800 8 0 -61.0483 -19.9249 34.15
+ 77 105.251 595 7 1 -61.0192 -19.9379 5.55
+ 77 120.697 800 7 0 -61.0175 -19.9391 4.15
+ 77 214.306 595 6 1 -60.9812 -19.965 -24.45
+ 77 104.294 800 6 0 -60.979 -19.9652 -25.85
+ 77 233.494 595 5 1 -60.9347 -19.9726 -54.45
+ 77 95.2382 800 5 0 -60.9324 -19.9734 -55.85
+ 77 147.072 595 4 1 -60.8826 -19.9901 -84.45
+ 77 120.045 800 4 0 -60.8806 -19.9907 -85.85
+ 77 117.493 596 3 1 -60.837 -20.0035 -114.45
+ 77 110.452 800 3 0 -60.8338 -20.0033 -115.85
+ 77 108.962 596 2 1 -60.7635 -19.998 -144.45
+ 77 166.34 800 2 0 -60.7604 -19.9973 -145.85
+ 77 117.51 596 1 1 -60.6961 -19.9824 -174.45
+ 77 191.26 800 1 0 -60.6934 -19.9821 -175.85
+ 77 106.15 597 0 1 -60.6358 -19.9738 -204.45
+ 77 176.579 800 0 0 -60.6336 -19.9734 -205.85
+ 77 26.9647 796 0 0 -59.9775 -20.7834 -205.85
+ 77 98.7903 795 0 0 -59.9386 -20.85 -205.9
+ 77 12.0368 794 0 0 -59.6796 -21.05 -205.864
+ 77 315.826 627 0 1 -54.5693 -22.4377 -204.85
+ 77 282.562 628 0 1 -54.45 -22.4609 -204.814
+ 77 49.4842 596 6 1 -60.8497 -20.0351 -24.7148
+ 77 120.471 797 6 0 -60.0165 -20.4746 -25.85
+Number of digits in this event = 16
Using G4ParticleGun ...
-1.38297 LIN
+8.71572 LIN
proton
Event: 78
-Number of tracker hits in this event = 87
- 78 142.723 1128 9 1 45.821 113.164 65.55
- 78 122.398 1465 9 0 45.8245 113.165 64.15
- 78 30.9114 1518 6 0 93.9423 123.794 -25.85
- 78 183.671 761 6 1 -27.6556 39.4127 -24.5696
- 78 145.123 760 6 1 -27.85 39.2205 -24.7267
- 78 186.892 1088 6 0 -29.2918 37.8223 -25.85
- 78 314.844 1087 6 0 -29.4707 37.6496 -25.9881
- 78 80.033 1086 6 0 -29.6779 37.45 -26.1486
- 78 126.906 569 5 1 -66.0504 1.76902 -54.45
- 78 131.27 568 5 1 -66.2502 1.5548 -54.6157
- 78 34.9229 567 5 1 -66.45 1.34427 -54.7777
- 78 93.5255 899 5 0 -67.7842 -0.05 -55.8643
- 78 84.853 898 5 0 -67.9757 -0.25 -56.0221
- 78 37.1898 897 5 0 -68.1622 -0.450252 -56.1806
- 78 5.19181 396 4 1 -100.939 -36.1419 -84.45
- 78 79.1802 395 4 1 -100.95 -36.1534 -84.4571
- 78 85.3496 394 4 1 -101.15 -36.3532 -84.5816
- 78 80.32 393 4 1 -101.35 -36.5558 -84.7049
- 78 12.1974 392 4 1 -101.55 -36.7629 -84.8318
- 78 74.413 708 4 0 -103.058 -38.3054 -85.85
- 78 214.579 707 4 0 -103.198 -38.45 -85.9442
- 78 85.2912 706 4 0 -103.392 -38.6503 -86.0775
- 78 19.3321 705 4 0 -103.589 -38.85 -86.2151
- 78 11.1924 186 3 1 -142.937 -78.7893 -114.45
- 78 141.906 185 3 1 -142.95 -78.8313 -114.477
- 78 61.5576 494 3 0 -143.295 -81.0538 -115.85
- 78 120.499 493 3 0 -143.35 -81.25 -115.944
- 78 60.3506 492 3 0 -143.404 -81.4502 -116.027
- 78 93.462 491 3 0 -143.464 -81.65 -116.097
- 78 62.7475 490 3 0 -143.531 -81.85 -116.15
- 78 39.3358 489 3 0 -143.609 -82.05 -116.217
- 78 52.9494 3 2 1 -179.473 -174.529 -144.45
- 78 99.9912 4 2 1 -179.35 -174.388 -144.528
- 78 62.0881 5 2 1 -179.15 -174.174 -144.658
- 78 25.3136 704 4 0 -103.033 -39.05 -86.1318
- 78 89.4943 465 4 0 -124.697 -86.9741 -86.2498
- 78 42.677 464 4 0 -124.644 -87.05 -85.9987
- 78 140.071 278 4 1 -124.518 -87.4813 -84.85
- 78 24.9708 276 4 1 -124.923 -87.804 -84.4502
- 78 106.01 275 4 1 -124.95 -87.8352 -84.4889
- 78 65.5857 274 4 1 -125.15 -87.9737 -84.6497
- 78 46.1186 273 4 1 -125.35 -88.0345 -84.7476
- 78 0.441968 272 4 1 -125.55 -88.0923 -84.8494
- 78 83.8733 456 4 0 -126.858 -88.7362 -85.85
- 78 49.6004 455 4 0 -127.109 -88.85 -86.1096
- 78 19.4777 1089 6 0 -29.2638 37.8689 -25.85
- 78 0.26158 576 5 1 -64.8485 7.88401 -54.45
- 78 63.1819 575 5 1 -64.85 7.88328 -54.4505
- 78 66.8835 574 5 1 -65.0503 7.78187 -54.521
- 78 59.687 573 5 1 -65.25 7.68352 -54.5915
- 78 65.3976 572 5 1 -65.4501 7.58469 -54.6576
- 78 64.3326 571 5 1 -65.65 7.4857 -54.7223
- 78 43.1107 570 5 1 -65.85 7.38413 -54.7932
- 78 101.743 928 5 0 -68.8023 5.7711 -55.85
- 78 129.382 927 5 0 -69.0223 5.64981 -55.9281
- 78 154.564 926 5 0 -69.4158 5.45 -56.0692
- 78 100.185 925 5 0 -69.8757 5.24983 -56.1735
- 78 51.8838 726 5 0 -173.006 -34.6791 -56.25
- 78 55.0618 727 5 0 -172.969 -34.65 -56.0696
- 78 127.907 37 5 1 -172.682 -34.4665 -54.85
- 78 90.5182 767 6 0 -163.374 -26.5353 -26.25
- 78 33.3924 768 6 0 -163.276 -26.4498 -25.9667
- 78 3.46705 86 6 1 -162.756 -26.152 -24.85
- 78 109.878 87 6 1 -162.75 -26.1487 -24.8375
- 78 12.1904 88 6 1 -162.55 -26.0479 -24.4906
- 78 63.4943 698 7 0 -172.199 -40.3606 3.75
- 78 62.7855 697 7 0 -172.251 -40.45 3.92151
- 78 226.601 38 7 1 -172.47 -41.2196 5.1502
- 78 31.6296 37 7 1 -172.55 -41.476 5.51259
- 78 21.4856 566 8 0 -174.552 -66.8059 33.7501
- 78 76.1936 565 8 0 -174.557 -66.8505 33.7995
- 78 116.828 564 8 0 -174.589 -67.05 34.012
- 78 160.347 26 8 1 -174.784 -68.0993 35.15
- 78 128.997 596 9 0 -173.669 -60.8085 63.75
- 78 94.8734 32 9 1 -173.577 -60.4602 65.1504
- 78 75.4442 27 8 1 -174.716 -66.926 35.15
- 78 123.784 1544 2 0 17.9343 129.105 -146.069
- 78 281.783 967 1 1 13.5838 131.646 -174.45
- 78 142.321 1558 1 0 13.3697 131.765 -175.85
- 78 20.2377 945 0 1 9.05705 134.184 -204.45
- 78 151.489 944 0 1 9.05 134.188 -204.495
- 78 70.8428 1570 0 0 8.84119 134.321 -205.85
- 78 56.9106 1571 0 0 8.79463 134.35 -206.153
- 78 123.905 1557 1 0 13.3651 131.635 -175.85
- 78 64.6961 947 0 1 9.48828 133.344 -204.45
- 78 49.733 946 0 1 9.45 133.354 -204.702
- 78 123.53 1566 0 0 9.27928 133.402 -205.85
-Number of digits in this event = 27
+Number of tracker hits in this event = 18
+ 78 116.957 1052 8 1 30.5508 139.53 35.55
+ 78 181.217 1596 8 0 30.5526 139.53 34.15
+ 78 102.156 1052 7 1 30.5871 139.526 5.55
+ 78 144.425 1596 7 0 30.5888 139.525 4.15
+ 78 122.049 1052 6 1 30.6208 139.514 -24.45
+ 78 91.8553 1596 6 0 30.6225 139.514 -25.85
+ 78 133.677 1053 5 1 30.6588 139.511 -54.45
+ 78 119.299 1596 5 0 30.6611 139.51 -55.85
+ 78 102.555 1053 4 1 30.7087 139.489 -84.45
+ 78 117.199 1596 4 0 30.7112 139.489 -85.85
+ 78 93.3217 1053 3 1 30.7594 139.477 -114.45
+ 78 107.436 1596 3 0 30.761 139.476 -115.85
+ 78 105.341 1053 2 1 30.7901 139.451 -144.45
+ 78 118.745 1596 2 0 30.7907 139.45 -145.85
+ 78 193.728 1053 1 1 30.7947 139.439 -174.45
+ 78 139.058 1596 1 0 30.7944 139.439 -175.85
+ 78 95.9838 1053 0 1 30.7869 139.44 -204.45
+ 78 133.101 1596 0 0 30.7862 139.441 -205.85
+Number of digits in this event = 8
Using G4ParticleGun ...
-7.27309 LIN
+1.73525 LIN
proton
Event: 79
-Number of tracker hits in this event = 26
- 79 97.1481 1233 11 1 66.742 -27.2656 125.55
- 79 108.373 763 11 0 66.742 -27.2651 124.15
- 79 104.532 1233 10 1 66.744 -27.2581 95.55
- 79 109.476 763 10 0 66.7439 -27.2575 94.15
- 79 147.393 1233 9 1 66.7389 -27.2476 65.55
- 79 506.124 764 9 0 66.7383 -27.2476 64.15
- 79 101.268 1233 8 1 66.7267 -27.2497 35.55
- 79 121.71 764 8 0 66.7267 -27.2499 34.15
- 79 117.136 1233 7 1 66.7293 -27.2569 5.55
- 79 276.529 763 7 0 66.7296 -27.2588 4.15
- 79 179.35 1233 6 1 66.7369 -27.2966 -24.45
- 79 124.031 763 6 0 66.7284 -27.302 -25.85
- 79 97.8104 1232 5 1 66.5614 -27.4014 -54.45
- 79 176.227 763 5 0 66.5526 -27.4053 -55.85
- 79 109.144 1231 4 1 66.3711 -27.4863 -84.45
- 79 104.526 762 4 0 66.3622 -27.4901 -85.85
- 79 154.924 1230 3 1 66.1827 -27.5671 -114.45
- 79 127.86 762 3 0 66.1739 -27.5714 -115.85
- 79 133.444 1229 2 1 65.9883 -27.6561 -144.45
- 79 96.4855 761 2 0 65.9792 -27.6607 -145.85
- 79 101.695 1228 1 1 65.791 -27.757 -174.45
- 79 132.718 761 1 0 65.7821 -27.7612 -175.85
- 79 114.997 1227 0 1 65.5992 -27.8467 -204.45
- 79 90.5798 760 0 0 65.5901 -27.8507 -205.85
- 79 108.033 1287 0 0 68.6362 77.5757 -205.943
- 79 158.774 765 9 0 67.0361 -26.9741 64.15
-Number of digits in this event = 13
+Number of tracker hits in this event = 22
+ 79 100.17 950 10 1 10.1819 98.0723 95.55
+ 79 103.051 1389 10 0 10.1791 98.0755 94.15
+ 79 120.603 950 9 1 10.108 98.1411 65.55
+ 79 171.527 1389 9 0 10.1034 98.1461 64.15
+ 79 105.228 949 8 1 10.0118 98.2521 35.55
+ 79 134.473 1390 8 0 10.0097 98.2517 34.15
+ 79 107.763 949 7 1 9.97545 98.246 5.55
+ 79 98.0185 1390 7 0 9.97375 98.2409 4.15
+ 79 108.571 949 6 1 9.94637 98.1213 -24.45
+ 79 121.128 1389 6 0 9.94247 98.1136 -25.85
+ 79 120.059 949 5 1 9.85811 97.9542 -54.45
+ 79 100.598 1388 5 0 9.85196 97.9455 -55.85
+ 79 164.875 948 4 1 9.71327 97.7618 -84.45
+ 79 131.063 1388 4 0 9.70486 97.7529 -85.85
+ 79 123.522 947 3 1 9.53887 97.5698 -114.45
+ 79 97.3015 1387 3 0 9.52988 97.5609 -115.85
+ 79 121.318 946 2 1 9.34805 97.3799 -144.45
+ 79 113.599 1386 2 0 9.33904 97.3702 -145.85
+ 79 130.364 945 1 1 9.1649 97.1599 -174.45
+ 79 138.688 1384 1 0 9.17787 97.0628 -175.85
+ 79 173.301 946 0 1 9.44531 95.0904 -204.45
+ 79 100.987 1374 0 0 9.46051 94.9961 -205.85
+Number of digits in this event = 14
Using G4ParticleGun ...
-6.63638 LIN
+9.20887 LIN
proton
Event: 80
-Number of tracker hits in this event = 24
- 80 126.368 607 11 1 -58.5407 -0.93403 125.55
- 80 93.049 895 11 0 -58.5397 -0.933122 124.15
- 80 132.495 607 10 1 -58.5148 -0.913471 95.55
- 80 145.996 895 10 0 -58.5125 -0.911616 94.15
- 80 90.3966 607 9 1 -58.4645 -0.874271 65.55
- 80 123.473 895 9 0 -58.4635 -0.87358 64.15
- 80 128.363 608 8 1 -58.4411 -0.847913 35.55
- 80 191.138 896 8 0 -58.4398 -0.847262 34.15
- 80 98.7568 608 7 1 -58.4146 -0.828919 5.55
- 80 107.644 896 7 0 -58.4127 -0.828185 4.15
- 80 150.925 608 6 1 -58.3789 -0.808847 -24.45
- 80 111.184 896 6 0 -58.3778 -0.806748 -25.85
- 80 145.702 608 5 1 -58.3535 -0.762233 -54.45
- 80 113.58 896 5 0 -58.3532 -0.759647 -55.85
- 80 150.234 608 4 1 -58.3476 -0.702906 -84.45
- 80 116.485 896 4 0 -58.352 -0.701008 -85.85
- 80 130.956 608 3 1 -58.4361 -0.659885 -114.45
- 80 155.34 896 3 0 -58.4409 -0.657778 -115.85
- 80 133.982 607 2 1 -58.5366 -0.612899 -144.45
- 80 126.125 897 2 0 -58.5422 -0.610537 -145.85
- 80 277.214 606 1 1 -58.6575 -0.56009 -174.45
- 80 240.578 897 1 0 -58.6628 -0.558538 -175.85
- 80 100.123 606 0 1 -58.7667 -0.521057 -204.45
- 80 106.553 897 0 0 -58.7725 -0.519293 -205.85
-Number of digits in this event = 16
+Number of tracker hits in this event = 3
+ 80 17.1124 1160 9 0 -0.05 52.2216 63.7589
+ 80 84.9136 1161 9 0 -0.0592388 52.2503 63.7733
+ 80 18.4976 991 9 0 11.1438 18.3803 63.75
+Number of digits in this event = 1
Using G4ParticleGun ...
-7.17796 LIN
+6.72546 LIN
proton
Event: 81
-Number of tracker hits in this event = 16
- 81 121.965 275 7 1 -125.013 76.4383 5.55
- 81 116.707 1281 7 0 -125.014 76.4392 4.15
- 81 232.579 275 6 1 -125.026 76.4618 -24.45
- 81 114.877 1282 6 0 -125.027 76.4621 -25.85
- 81 148.62 275 5 1 -125.047 76.4674 -54.45
- 81 155.182 1282 5 0 -125.048 76.4672 -55.85
- 81 123.317 275 4 1 -125.052 76.4569 -84.45
- 81 123.025 1282 4 0 -125.052 76.4571 -85.85
- 81 197.133 275 3 1 -125.059 76.459 -114.45
- 81 139.852 1282 3 0 -125.059 76.4597 -115.85
- 81 221.849 275 2 1 -125.06 76.4735 -144.45
- 81 134.794 1282 2 0 -125.06 76.4729 -145.85
- 81 113.76 275 1 1 -125.058 76.4635 -174.45
- 81 126.606 1282 1 0 -125.059 76.4619 -175.85
- 81 129.928 275 0 1 -125.085 76.4284 -204.45
- 81 106.562 1281 0 0 -125.087 76.4261 -205.85
-Number of digits in this event = 13
+Number of tracker hits in this event = 31
+ 81 110.721 1275 11 1 75.064 -3.74972 125.55
+ 81 111.823 881 11 0 75.064 -3.74972 124.15
+ 81 118.185 1275 10 1 75.0651 -3.75494 95.55
+ 81 120.256 881 10 0 75.0636 -3.75571 94.15
+ 81 142.91 1274 9 1 75.0337 -3.76964 65.55
+ 81 261.797 881 9 0 75.0315 -3.77094 64.15
+ 81 108.323 1274 8 1 74.9905 -3.79881 35.55
+ 81 111.223 881 8 0 74.9868 -3.79805 34.15
+ 81 120.687 1274 7 1 74.9136 -3.78296 5.55
+ 81 153.848 881 7 0 74.911 -3.78258 4.15
+ 81 101.912 1274 6 1 74.8589 -3.77785 -24.45
+ 81 152.28 881 6 0 74.8561 -3.77672 -25.85
+ 81 169.55 1273 5 1 74.8023 -3.75103 -54.45
+ 81 140.907 881 5 0 74.7991 -3.74997 -55.85
+ 81 107.542 1273 4 1 74.7353 -3.72964 -84.45
+ 81 115.888 881 4 0 74.7319 -3.72963 -85.85
+ 81 130.332 1273 3 1 74.6635 -3.72697 -114.45
+ 81 240.341 881 3 0 74.66 -3.7265 -115.85
+ 81 105.578 1272 2 1 74.5888 -3.71565 -144.45
+ 81 130.71 881 2 0 74.5852 -3.71561 -145.85
+ 81 132.884 1272 1 1 74.5123 -3.71204 -174.45
+ 81 114.473 881 1 0 74.5083 -3.71167 -175.85
+ 81 155.968 1271 0 1 74.4227 -3.70412 -204.45
+ 81 124.33 881 0 0 74.4192 -3.70326 -205.85
+ 81 79.6599 406 9 0 -4.24884 -98.8057 63.75
+ 81 73.9388 405 9 0 -4.40572 -98.95 63.7953
+ 81 73.343 1275 9 1 75.0629 -3.75365 65.55
+ 81 97.4386 880 9 0 75.0115 -3.96999 64.15
+ 81 145.338 1289 8 1 77.9772 -12.0535 35.55
+ 81 67.8636 835 8 0 77.9283 -12.8656 34.15
+ 81 116.687 834 8 0 77.9422 -13.0502 33.9253
+Number of digits in this event = 16
Using G4ParticleGun ...
-3.10305 LIN
+1.48336 LIN
proton
Event: 82
-Number of tracker hits in this event = 94
- 82 151.461 971 10 1 14.4186 -95.7827 95.55
- 82 101.23 421 10 0 14.4187 -95.7812 94.15
- 82 124.411 971 9 1 14.426 -95.7499 65.55
- 82 116.314 422 9 0 14.425 -95.7496 64.15
- 82 145.193 971 8 1 14.406 -95.7363 35.55
- 82 106.928 422 8 0 14.4043 -95.7335 34.15
- 82 119.325 971 7 1 14.377 -95.6692 5.55
- 82 103.491 422 7 0 14.3721 -95.6687 4.15
- 82 124.051 971 6 1 14.2758 -95.6469 -24.45
- 82 143.214 422 6 0 14.2711 -95.6481 -25.85
- 82 322.849 970 5 1 14.171 -95.6729 -54.45
- 82 131.648 422 5 0 14.1655 -95.6753 -55.85
- 82 115.984 970 4 1 14.0604 -95.7312 -84.45
- 82 133.571 422 4 0 14.0573 -95.7324 -85.85
- 82 196.983 969 3 1 13.9926 -95.7523 -114.45
- 82 186.65 421 3 0 13.9911 -95.7539 -115.85
- 82 94.1482 969 2 1 13.9591 -95.7851 -144.45
- 82 129.134 421 2 0 13.9563 -95.7883 -145.85
- 82 100.738 969 1 1 13.8984 -95.847 -174.45
- 82 104.731 421 1 0 13.8916 -95.8475 -175.85
- 82 217.633 968 0 1 13.7456 -95.8663 -204.45
- 82 109.282 421 0 0 13.7382 -95.8672 -205.85
- 82 191.392 463 0 0 5.0409 -87.3896 -206.25
- 82 166.408 922 0 1 4.64864 -86.9794 -204.85
- 82 162.348 503 1 0 -2.80117 -79.3864 -176.25
- 82 144.93 884 1 1 -3.1652 -79.0163 -174.85
- 82 34.1365 883 1 1 -3.25 -78.9302 -174.524
- 82 227.387 543 2 0 -13.4964 -71.3485 -146.25
- 82 8.88389 544 2 0 -13.63 -71.25 -145.883
- 82 54.3541 830 2 1 -14.0107 -70.976 -144.85
- 82 166.074 829 2 1 -14.05 -70.9477 -144.743
- 82 159.953 581 3 0 -26.1022 -63.8108 -116.25
- 82 134.951 766 3 1 -26.6985 -63.4608 -114.85
- 82 20.7456 765 3 1 -26.85 -63.3721 -114.495
- 82 60.5477 618 4 0 -39.2389 -56.2862 -86.25
- 82 154.515 619 4 0 -39.3021 -56.25 -86.1058
- 82 10.3698 701 4 1 -39.8375 -55.938 -84.85
- 82 161.09 700 4 1 -39.85 -55.9307 -84.8206
- 82 52.3657 656 5 0 -52.2343 -48.6783 -56.25
- 82 116.354 657 5 0 -52.2826 -48.65 -56.1386
- 82 10.2189 636 5 1 -52.8398 -48.3258 -54.85
- 82 168.999 635 5 1 -52.85 -48.3199 -54.8264
- 82 173.358 696 6 0 -64.2381 -40.7294 -26.25
- 82 31.1273 697 6 0 -64.3568 -40.65 -25.9516
- 82 146.106 576 6 1 -64.7853 -40.371 -24.85
- 82 152.219 575 6 1 -64.85 -40.3285 -24.6825
- 82 130.715 735 7 0 -76.0152 -32.9123 3.75
- 82 77.2268 736 7 0 -76.1089 -32.85 3.98869
- 82 73.5827 517 7 1 -76.5707 -32.5497 5.15
- 82 105.124 516 7 1 -76.65 -32.4982 5.34964
- 82 160.773 772 8 0 -88.0465 -25.6369 33.75
- 82 73.7034 457 8 1 -88.596 -25.298 35.15
- 82 105.489 456 8 1 -88.65 -25.2643 35.2889
- 82 214.926 810 9 0 -99.7908 -18.0222 63.75
- 82 24.2396 399 9 1 -100.336 -17.6696 65.15
- 82 196.003 398 9 1 -100.35 -17.6607 65.1857
- 82 147.52 842 10 0 -112.623 -11.5142 93.75
- 82 38.8583 843 10 0 -112.752 -11.45 94.0497
- 82 130.095 334 10 1 -113.223 -11.2101 95.15
- 82 53.1143 333 10 1 -113.35 -11.1455 95.4467
- 82 168.11 881 11 0 -123.426 -3.84791 123.75
- 82 49.5375 281 11 1 -123.922 -3.48487 125.15
- 82 142.066 280 11 1 -123.95 -3.46469 125.228
- 82 228.319 924 12 0 -134.588 4.97679 153.75
- 82 57.2524 925 12 0 -134.68 5.05 153.997
- 82 38.2456 225 12 1 -135.12 5.41512 155.15
- 82 137.762 224 12 1 -135.15 5.43966 155.227
- 82 177.684 972 13 0 -146.6 14.5426 183.75
- 82 33.6403 973 13 0 -146.735 14.65 184.087
- 82 325.531 164 13 1 -147.164 14.9945 185.15
- 82 64.0612 1028 14 0 -157.246 25.7806 213.75
- 82 92.6043 1029 14 0 -157.311 25.85 213.933
- 82 26.7819 112 14 1 -157.729 26.3199 215.15
- 82 151.123 111 14 1 -157.75 26.3434 215.211
- 82 24.6773 200 12 1 -140.093 1.14396 155.15
- 82 126.725 199 12 1 -140.15 1.09828 155.181
- 82 108.331 198 12 1 -140.35 1.02581 155.248
- 82 246.538 197 12 1 -140.55 0.974842 155.308
- 82 92.4856 65 1 0 119.232 -166.986 -176.25
- 82 113.651 64 1 0 119.472 -167.15 -176.081
- 82 47.0068 63 1 0 119.762 -167.35 -175.877
- 82 44.9174 1505 1 1 121.23 -168.403 -174.85
- 82 81.7257 1506 1 1 121.35 -168.488 -174.765
- 82 83.7048 1507 1 1 121.55 -168.63 -174.627
- 82 514.165 1508 1 1 121.75 -168.772 -174.483
- 82 65.956 227 0 0 31.8763 -134.623 -206.25
- 82 73.9712 226 0 0 31.8908 -134.75 -206.183
- 82 98.4698 225 0 0 31.9174 -134.95 -206.075
- 82 56.3255 224 0 0 31.9451 -135.151 -205.97
- 82 9.85913 223 0 0 31.9744 -135.35 -205.867
- 82 265.239 1061 0 1 32.2601 -137.322 -204.85
- 82 110.448 969 5 1 14.0496 -95.6233 -54.6301
- 82 356.738 968 5 1 13.8498 -95.5634 -54.6684
- 82 137.717 972 8 1 14.4501 -95.748 35.4985
-Number of digits in this event = 49
+Number of tracker hits in this event = 64
+ 82 104.077 1381 9 1 96.3602 88.0083 65.55
+ 82 122.862 1339 9 0 96.359 88.0059 64.15
+ 82 109.947 1380 8 1 96.3293 87.9533 35.55
+ 82 100.904 1339 8 0 96.3312 87.9518 34.15
+ 82 100.148 1381 7 1 96.3778 87.9254 5.55
+ 82 125.743 1339 7 0 96.3772 87.9264 4.15
+ 82 126.308 1381 6 1 96.3742 87.9405 -24.45
+ 82 124.033 1339 6 0 96.3707 87.9431 -25.85
+ 82 12.1713 1386 5 1 97.35 88.6642 -54.6398
+ 82 43.0979 1787 4 0 102.503 177.597 -85.9832
+ 82 140.549 1348 5 0 99.4747 89.65 -55.9941
+ 82 357.385 1470 6 0 115.087 114.278 -26.25
+ 82 822.084 1471 6 0 115.139 114.35 -26.1731
+ 82 517.739 1472 6 0 115.282 114.55 -25.9596
+ 82 579.081 1479 6 1 116.052 115.626 -24.85
+ 82 1073.25 1480 6 1 116.15 115.763 -24.7086
+ 82 116.956 1628 7 0 135.923 145.923 3.75
+ 82 1100.01 1629 7 0 135.94 145.95 3.77505
+ 82 1110.98 1630 7 0 136.07 146.15 3.96382
+ 82 199.557 1583 7 1 136.921 147.382 5.15
+ 82 1867.88 1584 7 1 136.95 147.424 5.19041
+ 82 603.637 1585 7 1 137.15 147.714 5.47071
+ 82 653.767 1259 6 0 112.784 71.9355 -26.25
+ 82 1106.64 1258 6 0 112.872 71.85 -26.0998
+ 82 1193.27 1467 6 1 113.608 71.1527 -24.85
+ 82 843.34 1468 6 1 113.75 71.0186 -24.6097
+ 82 534.166 1092 7 0 129.769 38.5243 3.75
+ 82 1574.79 1091 7 0 129.805 38.45 3.81433
+ 82 1545.37 1090 7 0 129.897 38.25 3.99068
+ 82 154.145 1551 7 1 130.541 37.026 5.15
+ 82 4247.86 1552 7 1 130.55 37.0096 5.16571
+ 82 186.285 1553 7 1 130.75 36.617 5.53738
+ 82 157.987 1380 5 1 96.3236 87.9974 -54.45
+ 82 224.43 1381 5 1 96.35 88.0712 -54.5129
+ 82 0.0232793 1347 5 0 96.912 89.6489 -55.85
+ 82 68.4665 1349 5 0 96.9835 89.85 -56.0202
+ 82 122.629 1443 4 1 108.855 123.39 -84.45
+ 82 57.3638 1444 4 1 108.95 123.658 -84.6888
+ 82 96.4558 1524 4 0 109.405 124.963 -85.85
+ 82 66.0217 1525 4 0 109.47 125.15 -86.0164
+ 82 22.7509 1526 4 0 109.54 125.35 -86.1942
+ 82 349.877 1503 3 1 120.772 157.558 -114.45
+ 82 43.9723 1695 3 0 121.327 159.251 -115.85
+ 82 81.6466 1696 3 0 121.359 159.35 -115.932
+ 82 110.368 1697 3 0 121.425 159.55 -116.096
+ 82 249.649 1340 5 0 96.0021 88.0751 -55.85
+ 82 172.933 1347 4 1 89.5918 89.8716 -84.45
+ 82 138.326 1349 4 0 89.2818 89.9575 -85.85
+ 82 130.747 1314 3 1 82.9449 91.698 -114.45
+ 82 123.204 1358 3 0 82.6362 91.7922 -115.85
+ 82 192.322 1281 2 1 76.337 93.6972 -144.45
+ 82 1.67122 1280 2 1 76.25 93.7248 -144.844
+ 82 168.398 1368 2 0 76.0278 93.7956 -145.85
+ 82 105.763 1248 1 1 69.6997 95.8025 -174.45
+ 82 136.51 1247 1 1 69.65 95.8181 -174.673
+ 82 202.455 1378 1 0 69.3884 95.9012 -175.85
+ 82 247.113 1214 0 1 63.0489 97.922 -204.45
+ 82 167.017 1389 0 0 62.7342 98.0201 -205.85
+ 82 33.5156 1215 0 1 63.05 97.9088 -204.787
+ 82 26.9082 1376 0 0 60.9303 95.3814 -205.85
+ 82 30.7127 1375 0 0 60.9183 95.35 -205.864
+ 82 7.37472 1208 0 1 61.7928 93.9099 -204.85
+ 82 50.3962 1378 0 0 64.1698 95.8689 -205.85
+ 82 119.306 1277 2 0 119.338 75.5341 -146.25
+Number of digits in this event = 43
Using G4ParticleGun ...
-9.18742 LIN
+5.05847 LIN
proton
Event: 83
-Number of tracker hits in this event = 42
- 83 241.426 307 9 1 -118.737 51.1095 65.55
- 83 173.811 1155 9 0 -118.736 51.1087 64.15
- 83 108.976 307 8 1 -118.722 51.0927 35.55
- 83 113.283 1155 8 0 -118.721 51.0914 34.15
- 83 143.933 307 7 1 -118.696 51.0659 5.55
- 83 114.082 1155 7 0 -118.696 51.0646 4.15
- 83 116.022 307 6 1 -118.686 51.0363 -24.45
- 83 104.826 1154 6 0 -118.685 51.0354 -25.85
- 83 142.672 307 5 1 -118.68 51.0164 -54.45
- 83 100.212 1154 5 0 -118.68 51.0156 -55.85
- 83 379.191 307 4 1 -118.683 50.9939 -84.45
- 83 150.972 1154 4 0 -118.683 50.9931 -85.85
- 83 170.705 307 3 1 -118.702 50.9775 -114.45
- 83 112.349 1154 3 0 -118.702 50.9769 -115.85
- 83 209.354 307 2 1 -118.715 50.9607 -144.45
- 83 134.157 1154 2 0 -118.715 50.9595 -145.85
- 83 216.416 307 1 1 -118.701 50.9353 -174.45
- 83 204.114 1154 1 0 -118.7 50.9347 -175.85
- 83 143.237 307 0 1 -118.677 50.9244 -204.45
- 83 151.676 1154 0 0 -118.676 50.9236 -205.85
- 83 137.544 306 2 1 -118.75 51.0314 -144.661
- 83 128.496 1156 2 0 -118.872 51.3473 -145.85
- 83 200.701 288 1 1 -122.445 58.0733 -174.45
- 83 91.1112 1194 1 0 -122.712 58.876 -175.85
- 83 37.3515 1195 1 0 -122.768 59.05 -176.127
- 83 134.305 272 0 1 -125.715 78.4195 -204.45
- 83 26.5002 273 0 1 -125.55 78.6068 -204.787
- 83 19.6899 1295 0 0 -125.006 79.224 -205.85
- 83 210.077 1296 0 0 -124.983 79.25 -205.896
- 83 93.7139 1328 0 0 -113.528 85.7822 -206.25
- 83 27.023 1327 0 0 -113.431 85.6498 -205.92
- 83 99.5735 335 0 1 -113.051 85.226 -204.85
- 83 40.7452 336 0 1 -112.95 85.1574 -204.593
- 83 29.1521 337 0 1 -112.63 84.8925 -204.45
- 83 75.6528 338 0 1 -112.55 84.91 -204.487
- 83 63.8993 339 0 1 -112.35 84.9421 -204.555
- 83 50.7221 340 0 1 -112.15 84.9317 -204.61
- 83 325.092 341 0 1 -111.95 84.9015 -204.655
- 83 69.2718 342 0 1 -111.75 84.9012 -204.72
- 83 12.0406 343 0 1 -111.55 84.8987 -204.834
- 83 223.434 1322 0 0 -109.631 84.5663 -205.85
- 83 91.8913 306 4 1 -118.75 50.9662 -84.5501
-Number of digits in this event = 21
+Number of tracker hits in this event = 26
+ 83 113.182 642 11 1 -51.5141 23.5167 125.55
+ 83 148.258 1017 11 0 -51.5141 23.5159 124.15
+ 83 93.088 642 10 1 -51.5137 23.4986 95.55
+ 83 131.013 1017 10 0 -51.5127 23.4998 94.15
+ 83 130.452 642 9 1 -51.488 23.5245 65.55
+ 83 104.582 1017 9 0 -51.4876 23.5253 64.15
+ 83 123.16 642 8 1 -51.4856 23.5369 35.55
+ 83 95.6953 1017 8 0 -51.4853 23.535 34.15
+ 83 131.824 642 7 1 -51.481 23.4975 5.55
+ 83 117.025 1017 7 0 -51.4813 23.4943 4.15
+ 83 173.962 642 6 1 -51.4952 23.4272 -24.45
+ 83 151.576 1016 6 0 -51.4956 23.4236 -25.85
+ 83 170.975 642 5 1 -51.5072 23.3514 -54.45
+ 83 103.174 1016 5 0 -51.5074 23.3485 -55.85
+ 83 286.771 642 4 1 -51.5034 23.288 -84.45
+ 83 194.15 1016 4 0 -51.5023 23.285 -85.85
+ 83 97.8898 642 3 1 -51.4773 23.2221 -114.45
+ 83 102.235 1015 3 0 -51.4767 23.2188 -115.85
+ 83 108.683 642 2 1 -51.4684 23.1453 -144.45
+ 83 116.295 1015 2 0 -51.4694 23.141 -145.85
+ 83 125.682 642 1 1 -51.4962 23.0496 -174.45
+ 83 125.737 1014 1 0 -51.4967 23.0449 -175.85
+ 83 131.307 642 0 1 -51.5021 22.9474 -204.45
+ 83 110.731 1014 0 0 -51.5047 22.942 -205.85
+ 83 24.3346 1017 4 0 -51.5421 23.45 -86.199
+ 83 399.649 1155 4 0 -45.427 51.1169 -86.25
+Number of digits in this event = 15
Using G4ParticleGun ...
-5.91111 LIN
+4.68231 LIN
proton
Event: 84
-Number of tracker hits in this event = 25
- 84 123.013 1040 11 1 28.0788 -52.5546 125.55
- 84 112.254 637 11 0 28.0814 -52.5543 124.15
- 84 115.089 1040 10 1 28.1327 -52.5488 95.55
- 84 216.218 637 10 0 28.1354 -52.5488 94.15
- 84 87.4803 1040 9 1 28.1908 -52.5517 65.55
- 84 137.509 637 9 0 28.1932 -52.5516 64.15
- 84 121.048 1040 8 1 28.2401 -52.5489 35.55
- 84 84.3616 637 8 0 28.2429 -52.5475 34.15
- 84 150.705 1041 7 1 28.2985 -52.5212 5.55
- 84 93.2291 637 7 0 28.3007 -52.5202 4.15
- 84 124.509 1041 6 1 28.3355 -52.4786 -24.45
- 84 89.9046 637 6 0 28.3383 -52.4777 -25.85
- 84 100.868 1041 5 1 28.3967 -52.4573 -54.45
- 84 103.313 637 5 0 28.4001 -52.4537 -55.85
- 84 123.323 1042 4 1 28.4686 -52.3776 -84.45
- 84 135.142 638 4 0 28.471 -52.3743 -85.85
- 84 176.211 1042 3 1 28.5171 -52.3078 -114.45
- 84 130.038 638 3 0 28.5185 -52.3018 -115.85
- 84 104.992 1042 2 1 28.5466 -52.1808 -144.45
- 84 113.248 639 2 0 28.549 -52.1751 -145.85
- 84 105.4 1042 1 1 28.5998 -52.057 -174.45
- 84 11.1142 639 1 0 28.6023 -52.0502 -175.85
- 84 97.7823 640 1 0 28.6024 -52.05 -175.89
- 84 115.579 1043 0 1 28.6536 -51.9124 -204.45
- 84 124.259 640 0 0 28.6557 -51.9075 -205.85
-Number of digits in this event = 12
+Number of tracker hits in this event = 27
+ 84 144.523 713 11 1 -37.3059 -55.5254 125.55
+ 84 118.6 622 11 0 -37.3062 -55.5262 124.15
+ 84 119.844 713 10 1 -37.3185 -55.5516 95.55
+ 84 101.82 622 10 0 -37.318 -55.5517 94.15
+ 84 148.375 713 9 1 -37.3108 -55.5533 65.55
+ 84 125.524 622 9 0 -37.3103 -55.552 64.15
+ 84 118.267 713 8 1 -37.2985 -55.5258 35.55
+ 84 106.674 622 8 0 -37.2982 -55.5235 34.15
+ 84 114.055 713 7 1 -37.2845 -55.4758 5.55
+ 84 157.8 622 7 0 -37.2839 -55.4733 4.15
+ 84 139.588 713 6 1 -37.2695 -55.4124 -24.45
+ 84 180.423 623 6 0 -37.2695 -55.4112 -25.85
+ 84 103.454 713 5 1 -37.266 -55.3888 -54.45
+ 84 108.705 623 5 0 -37.2633 -55.3861 -55.85
+ 84 125.535 714 4 1 -37.2159 -55.3295 -84.45
+ 84 142.343 623 4 0 -37.2165 -55.3264 -85.85
+ 84 197.076 714 3 1 -37.2309 -55.2582 -114.45
+ 84 104.347 623 3 0 -37.2295 -55.2537 -115.85
+ 84 186.641 714 2 1 -37.2057 -55.1624 -144.45
+ 84 131.523 624 2 0 -37.2052 -55.1575 -145.85
+ 84 228.521 714 1 1 -37.1948 -55.05 -174.45
+ 84 309.269 625 1 0 -37.1946 -55.0447 -175.85
+ 84 127.595 714 0 1 -37.1898 -54.9388 -204.45
+ 84 121.918 625 0 0 -37.1894 -54.9345 -205.85
+ 84 161.285 616 6 0 -39.7478 -56.7677 -25.85
+ 84 21.5771 722 7 0 -72.3898 -35.474 3.75013
+ 84 95.4838 723 7 0 -72.3871 -35.45 3.77749
+Number of digits in this event = 17
Using G4ParticleGun ...
-3.47297 LIN
+1.77172 LIN
proton
Event: 85
-Number of tracker hits in this event = 20
- 85 121.899 681 9 1 -43.7115 122.557 65.55
- 85 107.09 1512 9 0 -43.7113 122.559 64.15
- 85 93.7744 681 8 1 -43.7092 122.589 35.55
- 85 122.346 1512 8 0 -43.7095 122.592 34.15
- 85 152.327 681 7 1 -43.7154 122.639 5.55
- 85 104.294 1512 7 0 -43.7195 122.642 4.15
- 85 101.96 681 6 1 -43.8015 122.708 -24.45
- 85 137.705 1512 6 0 -43.8035 122.712 -25.85
- 85 90.0312 681 5 1 -43.8413 122.771 -54.45
- 85 137.597 1513 5 0 -43.8418 122.774 -55.85
- 85 129.359 680 4 1 -43.8512 122.845 -84.45
- 85 95.4057 1513 4 0 -43.8482 122.848 -85.85
- 85 149.826 681 3 1 -43.7878 122.905 -114.45
- 85 148.279 1513 3 0 -43.7829 122.909 -115.85
- 85 150.788 681 2 1 -43.6881 123.01 -144.45
- 85 104.55 1514 2 0 -43.682 123.015 -145.85
- 85 140.977 682 1 1 -43.5629 123.117 -174.45
- 85 172.24 1514 1 0 -43.5587 123.122 -175.85
- 85 86.5969 682 0 1 -43.4761 123.218 -204.45
- 85 116.164 1515 0 0 -43.4725 123.223 -205.85
-Number of digits in this event = 12
+Number of tracker hits in this event = 73
+ 85 118.789 847 11 1 -10.4502 -60.7017 125.55
+ 85 311.57 596 11 0 -10.4505 -60.6996 124.15
+ 85 113.745 847 10 1 -10.4607 -60.6515 95.55
+ 85 114.787 597 10 0 -10.4595 -60.6493 94.15
+ 85 132.054 848 9 1 -10.4261 -60.6015 65.55
+ 85 105.628 597 9 0 -10.4226 -60.6002 64.15
+ 85 275.339 848 8 1 -10.3655 -60.5709 35.55
+ 85 111.198 597 8 0 -10.3651 -60.5715 34.15
+ 85 134.24 848 7 1 -10.359 -60.5686 5.55
+ 85 136.716 597 7 0 -10.3547 -60.5698 4.15
+ 85 165.953 848 6 1 -10.2663 -60.5954 -24.45
+ 85 165.803 597 6 0 -10.2634 -60.5943 -25.85
+ 85 115.374 849 5 1 -10.2191 -60.5756 -54.45
+ 85 120.439 597 5 0 -10.2199 -60.577 -55.85
+ 85 144.229 849 4 1 -10.2423 -60.6095 -84.45
+ 85 123.816 597 4 0 -10.2427 -60.6099 -85.85
+ 85 130.654 849 3 1 -10.2453 -60.6149 -114.45
+ 85 124.677 597 3 0 -10.2469 -60.6134 -115.85
+ 85 106.346 848 2 1 -10.3072 -60.5116 -144.45
+ 85 113.289 597 2 0 -10.3141 -60.5103 -145.85
+ 85 119.277 847 1 1 -10.4536 -60.4856 -174.45
+ 85 116.682 597 1 0 -10.4586 -60.4848 -175.85
+ 85 100.629 847 0 1 -10.5549 -60.4798 -204.45
+ 85 123.814 597 0 0 -10.5593 -60.478 -205.85
+ 85 37.324 521 1 1 -75.8014 -53.3543 -174.45
+ 85 135.006 520 1 1 -75.85 -53.3787 -174.524
+ 85 17.3037 519 1 1 -76.05 -53.5403 -174.777
+ 85 82.2426 629 1 0 -76.345 -54.1543 -175.85
+ 85 24.0133 628 1 0 -76.3892 -54.25 -176.157
+ 85 351.685 399 1 0 -139.102 -100.239 -176.25
+ 85 156.012 398 1 0 -139.395 -100.35 -176.182
+ 85 4090.02 387 5 1 -102.614 -99.238 -54.7196
+ 85 148.351 639 0 0 -51.4776 -52.0885 -206.25
+ 85 139.644 640 0 1 -51.8711 -52.6113 -204.849
+ 85 10.8505 571 1 0 -63.5345 -65.8343 -176.25
+ 85 126.275 570 1 0 -63.5481 -65.8501 -176.216
+ 85 107.632 579 1 1 -64.1198 -66.4792 -174.849
+ 85 45.8082 578 1 1 -64.25 -66.6038 -174.576
+ 85 21.1958 505 2 0 -69.9516 -79.0176 -146.25
+ 85 115.777 504 2 0 -69.9664 -79.05 -146.179
+ 85 116.957 548 2 1 -70.2577 -79.6318 -144.85
+ 85 33.4743 342 3 0 -61.3948 -111.661 -116.25
+ 85 76.0348 341 3 0 -61.3706 -111.75 -116.169
+ 85 69.2984 340 3 0 -61.3257 -111.95 -115.988
+ 85 326.558 596 3 1 -60.8154 -113.635 -114.85
+ 85 62.7864 597 3 1 -60.65 -114.135 -114.538
+ 85 54.7935 239 4 0 -57.3565 -132.253 -86.25
+ 85 80.992 238 4 0 -57.3402 -132.35 -86.0866
+ 85 136.574 614 4 1 -57.1607 -133.095 -84.85
+ 85 157.135 253 5 0 -34.7113 -129.51 -56.25
+ 85 97.3994 732 5 1 -33.629 -129.375 -54.85
+ 85 51.8234 733 5 1 -33.45 -129.349 -54.6152
+ 85 144.116 211 6 0 -3.42775 -137.815 -26.25
+ 85 108.761 889 6 1 -2.20802 -138.225 -24.8499
+ 85 67.4222 890 6 1 -2.05 -138.28 -24.6751
+ 85 1.30759 891 6 1 -1.85 -138.341 -24.4537
+ 85 167.078 215 7 0 16.8139 -137.095 3.75
+ 85 79.0974 989 7 1 17.876 -137.183 5.15013
+ 85 77.0091 990 7 1 18.05 -137.2 5.37364
+ 85 135.203 177 8 0 22.374 -144.572 33.75
+ 85 134.601 1012 8 1 22.5315 -145.265 35.15
+ 85 285.931 133 9 0 13.421 -153.431 63.75
+ 85 321.001 132 9 0 13.3295 -153.55 63.9926
+ 85 28.4695 964 9 1 12.8752 -154.309 65.1503
+ 85 110.846 963 9 1 12.85 -154.357 65.2193
+ 85 129.252 959 9 1 11.9997 -154.402 65.55
+ 85 78.6892 134 9 0 11.8986 -153.35 64.0013
+ 85 51.5821 144 9 0 12.338 -151.35 63.9231
+ 85 9.2051 995 9 1 19.2231 -163.719 65.15
+ 85 145.243 458 9 0 -98.5278 -88.3405 63.75
+ 85 367.716 459 9 0 -98.6042 -88.25 63.9585
+ 85 93.3413 598 4 0 -8.9617 -60.2943 -85.85
+ 85 252.265 599 4 0 -8.91905 -60.25 -85.9138
+Number of digits in this event = 36
Using G4ParticleGun ...
-3.80153 LIN
+8.99011 LIN
proton
Event: 86
-Number of tracker hits in this event = 25
- 86 99.8979 700 10 1 -39.9232 101.248 95.55
- 86 209.067 1405 10 0 -39.9212 101.248 94.15
- 86 163.579 700 9 1 -39.8723 101.257 65.55
- 86 113.601 1405 9 0 -39.8708 101.258 64.15
- 86 108.214 701 8 1 -39.8322 101.281 35.55
- 86 93.1556 1405 8 0 -39.829 101.284 34.15
- 86 125.788 701 7 1 -39.763 101.342 5.55
- 86 106.822 1405 7 0 -39.7597 101.343 4.15
- 86 166.181 701 6 1 -39.6869 101.363 -24.45
- 86 97.7589 1406 6 0 -39.6827 101.362 -25.85
- 86 103.093 702 5 1 -39.5919 101.362 -54.45
- 86 87.8513 1406 5 0 -39.5894 101.363 -55.85
- 86 113.343 702 4 1 -39.5417 101.392 -84.45
- 86 141.347 1406 4 0 -39.5408 101.393 -85.85
- 86 263.171 702 3 1 -39.5214 101.428 -114.45
- 86 122.503 1406 3 0 -39.5197 101.43 -115.85
- 86 158.95 702 2 1 -39.4855 101.481 -144.45
- 86 175.884 1406 2 0 -39.4851 101.485 -145.85
- 86 97.0391 702 1 1 -39.4752 101.571 -174.45
- 86 93.6055 1407 1 0 -39.4805 101.575 -175.85
- 86 111.714 702 0 1 -39.5911 101.663 -204.45
- 86 104.169 1407 0 0 -39.5962 101.667 -205.85
- 86 5901.84 1396 2 0 -43.7268 99.4227 -145.942
- 86 59.2842 1583 3 0 -129.893 136.911 -116.25
- 86 116.042 1418 2 0 -37.4848 103.915 -146.25
-Number of digits in this event = 12
+Number of tracker hits in this event = 63
+ 86 244.653 1035 10 1 27.1568 -83.2466 95.55
+ 86 103.798 484 10 0 27.1576 -83.247 94.15
+ 86 808.021 1035 9 1 27.174 -83.2577 65.55
+ 86 120.85 484 9 0 27.1837 -83.241 64.15
+ 86 97.6474 1036 8 1 27.4216 -82.8174 35.55
+ 86 116.471 486 8 0 27.4329 -82.7969 34.15
+ 86 157.929 1038 7 1 27.6652 -82.3783 5.55
+ 86 291.507 488 7 0 27.6772 -82.3578 4.15
+ 86 105.962 1039 6 1 27.9202 -81.9419 -24.45
+ 86 287.524 490 6 0 27.9329 -81.9212 -25.85
+ 86 102.569 1040 5 1 28.1938 -81.4985 -54.45
+ 86 253.528 492 5 0 28.2061 -81.4782 -55.85
+ 86 95.9339 1042 4 1 28.4604 -81.0608 -84.45
+ 86 105.948 495 4 0 28.4727 -81.0407 -85.85
+ 86 131.929 1043 3 1 28.7258 -80.6346 -114.45
+ 86 99.1559 497 3 0 28.7376 -80.615 -115.85
+ 86 239.173 1044 2 1 28.9806 -80.2138 -144.45
+ 86 249.003 499 2 0 28.9923 -80.1947 -145.85
+ 86 99.8871 1045 1 1 29.2287 -79.8051 -174.45
+ 86 168.841 501 1 0 29.2404 -79.7872 -175.85
+ 86 97.4289 1047 0 1 29.4783 -79.4195 -204.45
+ 86 136.085 503 0 0 29.4893 -79.4024 -205.85
+ 86 202.442 498 2 0 27.2268 -80.3743 -145.85
+ 86 173.973 487 7 0 28.5587 -82.45 4.0683
+ 86 228.355 570 7 0 15.6593 -65.9746 3.75
+ 86 13.7186 971 7 1 14.2937 -66.1688 5.15006
+ 86 70.2286 970 7 1 14.25 -66.1739 5.19878
+ 86 244.828 969 7 1 14.05 -66.229 5.36067
+ 86 108.033 968 7 1 13.85 -66.7054 5.32932
+ 86 22.4388 549 7 0 12.0543 -70.1938 4.14998
+ 86 138.649 548 7 0 12.0171 -70.25 4.11133
+ 86 34.0957 547 7 0 11.9579 -70.45 4.00813
+ 86 3.67715 484 7 0 11.8269 -83.0655 3.75
+ 86 123.467 485 10 0 26.8902 -82.99 94.15
+ 86 83.9325 1005 9 1 21.167 -80.034 65.55
+ 86 28.1234 1004 9 1 21.05 -80.0319 65.2399
+ 86 196.784 499 9 0 20.6104 -80.0974 64.15
+ 86 129.633 952 8 1 10.4974 -84.4412 35.5498
+ 86 0.982273 478 8 0 10.3992 -84.2508 34.15
+ 86 133.895 479 8 0 10.3989 -84.25 34.1446
+ 86 113.473 944 7 1 9.03067 -82.9196 5.55
+ 86 120.797 932 6 1 6.64577 -74.9018 -24.4501
+ 86 172.42 524 6 0 6.49051 -75.2152 -25.8504
+ 86 118.098 523 6 0 6.46819 -75.25 -26.0112
+ 86 142.791 904 5 1 0.878301 -80.708 -54.45
+ 86 101.396 493 5 0 0.943607 -81.3158 -55.8503
+ 86 8.6311 876 4 1 -4.84175 -95.3066 -84.45
+ 86 176.915 875 4 1 -4.85 -95.3102 -84.4865
+ 86 126.027 423 4 0 -5.05514 -95.396 -85.85
+ 86 136.337 865 3 1 -7.01884 -94.9027 -114.45
+ 86 58.0548 866 3 1 -6.85 -95.1746 -114.739
+ 86 90.1819 420 3 0 -6.17598 -95.9919 -115.85
+ 86 213.872 419 3 0 -6.06084 -96.15 -116.026
+ 86 42.0886 972 2 1 14.5331 -120.673 -144.45
+ 86 92.1759 973 2 1 14.65 -120.747 -144.507
+ 86 81.2725 974 2 1 14.85 -120.867 -144.666
+ 86 222.676 292 2 0 16.5846 -121.565 -145.85
+ 86 26.4844 293 2 0 17.0529 -121.55 -146.176
+ 86 51.2201 857 3 1 -8.46419 -106.264 -114.45
+ 86 19.9887 23 4 0 6.63627 -175.35 -85.9726
+ 86 6.05579 21 4 0 6.57271 -175.75 -85.9587
+ 86 112.257 20 4 0 6.54607 -175.95 -85.9541
+ 86 324.802 369 3 0 -8.20266 -106.29 -115.85
+Number of digits in this event = 31
Using G4ParticleGun ...
-9.96365 LIN
+2.25399 LIN
proton
Event: 87
-Number of tracker hits in this event = 30
- 87 125.162 750 11 1 -29.8702 -40.8216 125.55
- 87 156.395 696 11 0 -29.8711 -40.8215 124.15
- 87 121.809 750 10 1 -29.8899 -40.8195 95.55
- 87 109.156 696 10 0 -29.8912 -40.8194 94.15
- 87 111.529 750 9 1 -29.9294 -40.7975 65.55
- 87 94.0084 696 9 0 -29.9314 -40.7954 64.15
- 87 105.891 750 8 1 -29.9672 -40.754 35.55
- 87 106.208 696 8 0 -29.969 -40.7521 34.15
- 87 103.014 750 7 1 -30.0076 -40.7129 5.55
- 87 122.536 696 7 0 -30.0097 -40.7112 4.15
- 87 105.878 749 6 1 -30.0522 -40.6761 -24.45
- 87 125.479 696 6 0 -30.0536 -40.6744 -25.85
- 87 104.731 749 5 1 -30.0852 -40.6379 -54.45
- 87 98.7616 697 5 0 -30.0863 -40.6364 -55.85
- 87 103.687 749 4 1 -30.1064 -40.6038 -84.45
- 87 134.807 697 4 0 -30.1078 -40.6021 -85.85
- 87 165.092 749 3 1 -30.1353 -40.5647 -114.45
- 87 98.1588 697 3 0 -30.1368 -40.563 -115.85
- 87 136.454 749 2 1 -30.1695 -40.5286 -144.45
- 87 107.053 697 2 0 -30.1712 -40.5267 -145.85
- 87 133.561 749 1 1 -30.2079 -40.4904 -174.45
- 87 267.714 697 1 0 -30.2092 -40.4888 -175.85
- 87 147.566 749 0 1 -30.2363 -40.4519 -204.45
- 87 29.4357 697 0 0 -30.2374 -40.4501 -205.85
- 87 67.7188 698 0 0 -30.2375 -40.45 -205.965
- 87 194.303 748 1 1 -30.2501 -40.4446 -174.477
- 87 4.16264 709 1 0 -29.4023 -38.0668 -175.85
- 87 186.146 710 1 0 -29.3968 -38.0498 -175.859
- 87 225.307 711 1 0 -29.53 -37.85 -176.149
- 87 89.8366 712 1 0 -29.7434 -37.65 -175.982
-Number of digits in this event = 15
+Number of tracker hits in this event = 40
+ 87 127.218 1086 11 1 37.4245 -5.10058 125.55
+ 87 120.16 874 11 0 37.4244 -5.10019 124.15
+ 87 107.463 1086 10 1 37.4147 -5.10628 95.55
+ 87 118.079 874 10 0 37.4132 -5.10664 94.15
+ 87 113.104 1086 9 1 37.396 -5.1146 65.55
+ 87 126.823 874 9 0 37.3945 -5.11651 64.15
+ 87 125.135 1086 8 1 37.367 -5.15581 35.55
+ 87 110.236 874 8 0 37.3654 -5.15814 34.15
+ 87 124.683 1086 7 1 37.3356 -5.19835 5.55
+ 87 112.138 874 7 0 37.3353 -5.20049 4.15
+ 87 126.31 1086 6 1 37.3257 -5.25475 -24.45
+ 87 92.7239 873 6 0 37.3235 -5.25711 -25.85
+ 87 131.23 1086 5 1 37.2806 -5.30491 -54.45
+ 87 152.019 873 5 0 37.2785 -5.30911 -55.85
+ 87 106.797 1085 4 1 37.2251 -5.39493 -84.45
+ 87 96.3992 873 4 0 37.222 -5.3994 -85.85
+ 87 226.021 1085 3 1 37.1646 -5.48956 -114.45
+ 87 112.494 872 3 0 37.1634 -5.4918 -115.85
+ 87 100.094 1085 2 1 37.1394 -5.53154 -144.45
+ 87 127.135 872 2 0 37.1376 -5.53393 -145.85
+ 87 110.616 1085 1 1 37.0975 -5.59069 -174.45
+ 87 128.411 872 1 0 37.0942 -5.59029 -175.85
+ 87 146.648 1084 0 1 37.0296 -5.57358 -204.45
+ 87 431.129 872 0 0 37.0268 -5.5721 -205.85
+ 87 3.44533 873 0 0 36.7017 -5.44999 -206.238
+ 87 36.209 918 0 0 55.3793 3.75422 -206.25
+ 87 212.062 878 4 0 38.7206 -4.41143 -85.85
+ 87 80.9783 879 4 0 38.8332 -4.25 -85.9618
+ 87 117.027 876 11 0 37.7954 -4.77905 124.15
+ 87 38.5886 877 11 0 37.9303 -4.65 123.793
+ 87 126.925 1116 10 1 43.3674 7.43417 95.5498
+ 87 47.7424 1117 10 1 43.4502 7.21893 95.2476
+ 87 166.172 932 10 0 44.5509 6.64258 94.1499
+ 87 68.7952 931 10 0 44.8125 6.45 93.8876
+ 87 64.5688 930 10 0 44.8384 6.25 93.786
+ 87 70.1065 929 10 0 44.779 6.05 93.7526
+ 87 155.915 928 10 0 44.6857 5.85 93.8294
+ 87 172.923 927 10 0 44.7634 5.64997 93.915
+ 87 153.94 1123 10 1 44.6837 5.61358 95.15
+ 87 51.1658 1122 10 1 44.65 5.55547 95.1765
+Number of digits in this event = 20
Using G4ParticleGun ...
-6.89234 LIN
+5.63298 LIN
proton
Event: 88
-Number of tracker hits in this event = 25
- 88 115.284 1167 11 1 53.5952 -44.2315 125.55
- 88 107.706 679 11 0 53.5957 -44.2304 124.15
- 88 178.096 1167 10 1 53.6062 -44.2079 95.55
- 88 113.92 679 10 0 53.6066 -44.2069 94.15
- 88 132.628 1167 9 1 53.6125 -44.1826 65.55
- 88 357.023 679 9 0 53.6139 -44.1813 64.15
- 88 127.538 1167 8 1 53.6415 -44.1519 35.55
- 88 119.821 679 8 0 53.6427 -44.15 34.15
- 88 272.724 1168 7 1 53.671 -44.1088 5.55
- 88 117.883 679 7 0 53.6726 -44.1063 4.15
- 88 141.689 1168 6 1 53.6994 -44.0546 -24.45
- 88 180.458 679 6 0 53.701 -44.0526 -25.85
- 88 129.558 1168 5 1 53.7326 -44.0071 -54.45
- 88 141.624 680 5 0 53.7338 -44.0055 -55.85
- 88 122.665 1168 4 1 53.7616 -43.9737 -84.45
- 88 109.971 680 4 0 53.7637 -43.9728 -85.85
- 88 91.0983 1168 3 1 53.8059 -43.9507 -114.45
- 88 126.306 680 3 0 53.8072 -43.9497 -115.85
- 88 108.882 1168 2 1 53.8323 -43.9321 -144.45
- 88 102.2 680 2 0 53.8348 -43.9274 -145.85
- 88 119.282 1169 1 1 53.8856 -43.8329 -174.45
- 88 93.0403 681 1 0 53.8882 -43.8278 -175.85
- 88 96.289 1169 0 1 53.9414 -43.7224 -204.45
- 88 124.757 681 0 0 53.9438 -43.7158 -205.85
- 88 208.497 1167 7 1 53.65 -44.1199 5.39989
-Number of digits in this event = 14
-Using G4ParticleGun ...
-8.18816 LIN
+Number of tracker hits in this event = 117
+ 88 127.95 1095 11 1 39.1387 -6.98434 125.55
+ 88 99.5902 865 11 0 39.1391 -6.98478 124.15
+ 88 12.8545 904 10 0 36.7553 0.85 93.7865
+ 88 241.784 1093 10 1 38.754 -7.00485 95.1987
+ 88 762.471 1095 10 1 39.1302 -7.31936 95.55
+ 88 3.50451 853 10 0 39.1528 -9.44627 94.15
+ 88 245.329 852 10 0 39.1529 -9.45 94.1475
+ 88 461.614 851 10 0 39.1559 -9.65 94.0157
+ 88 192.494 850 10 0 39.1596 -9.85 93.8836
+ 88 2.36454 849 10 0 39.163 -10.05 93.751
+ 88 666.261 1099 9 1 39.9638 -52.5034 65.55
+ 88 206.699 626 9 0 40.0242 -54.6599 64.15
+ 88 188.002 625 9 0 40.0295 -54.85 64.0267
+ 88 346.601 624 9 0 40.0356 -55.05 63.8969
+ 88 22.5102 623 9 0 40.0423 -55.25 63.7659
+ 88 767.178 1106 8 1 41.4039 -98.3963 35.55
+ 88 120.101 397 8 0 41.504 -100.625 34.15
+ 88 230.227 396 8 0 41.5096 -100.75 34.0712
+ 88 186.328 395 8 0 41.518 -100.95 33.9445
+ 88 101.99 394 8 0 41.5262 -101.15 33.817
+ 88 769.506 1115 7 1 43.2172 -146.1 5.55
+ 88 12.0032 160 7 0 43.2757 -148.141 4.15
+ 88 217.605 159 7 0 43.2759 -148.15 4.14386
+ 88 307.487 158 7 0 43.2822 -148.35 4.00662
+ 88 170.351 157 7 0 43.288 -148.55 3.86922
+ 88 79.0934 1094 10 1 38.9389 -6.92622 95.55
+ 88 80.3138 1092 10 1 38.65 -6.83195 95.2305
+ 88 291.232 867 10 0 37.6751 -6.51143 94.15
+ 88 307.478 868 10 0 37.4882 -6.45 93.9429
+ 88 204.912 958 9 1 11.839 2.19522 65.55
+ 88 238.021 957 9 1 11.65 2.25124 65.3448
+ 88 346.668 912 9 0 10.5498 2.56673 64.15
+ 88 113.39 913 9 0 10.2588 2.65 63.8341
+ 88 58.1985 821 8 1 -15.7825 10.1593 35.55
+ 88 227.468 820 8 1 -15.85 10.1789 35.4736
+ 88 97.0538 819 8 1 -16.05 10.2369 35.2469
+ 88 654.412 952 8 0 -17.0119 10.519 34.15
+ 88 62.5785 691 7 1 -41.8126 18.0063 5.55
+ 88 255.971 690 7 1 -41.85 18.0185 5.50511
+ 88 119.226 689 7 1 -42.05 18.0844 5.26531
+ 88 441.244 991 7 0 -42.9854 18.3923 4.15
+ 88 168.058 992 7 0 -43.161 18.45 3.94036
+ 88 228.845 564 6 1 -67.0683 26.301 -24.45
+ 88 246.98 563 6 1 -67.25 26.359 -24.6578
+ 88 475.171 1033 6 0 -68.305 26.695 -25.85
+ 88 0.12929 432 5 1 -93.7496 34.7768 -54.45
+ 88 205.214 431 5 1 -93.75 34.7769 -54.4504
+ 88 259.79 430 5 1 -93.95 34.8353 -54.6567
+ 88 522.583 1075 5 0 -95.1095 35.1733 -55.85
+ 88 196.747 1076 5 0 -95.37 35.25 -56.1172
+ 88 33.1634 285 4 1 -123.112 43.4259 -84.45
+ 88 238.147 284 4 1 -123.15 43.437 -84.4874
+ 88 196.56 283 4 1 -123.35 43.4951 -84.6846
+ 88 35.3481 1118 4 0 -124.529 43.8395 -85.85
+ 88 488.004 1119 4 0 -124.565 43.85 -85.8856
+ 88 46.7836 133 3 1 -153.502 52.1065 -114.45
+ 88 223.835 132 3 1 -153.55 52.1205 -114.495
+ 88 213.169 131 3 1 -153.75 52.1792 -114.681
+ 88 481.535 1162 3 0 -155.01 52.5497 -115.85
+ 88 95.8397 1163 3 0 -155.351 52.65 -116.166
+ 88 179.132 1096 10 1 39.25 -6.97692 95.549
+ 88 91.3955 865 10 0 39.9524 -6.86805 94.15
+ 88 52.0634 866 10 0 40.0693 -6.85 93.9174
+ 88 119.607 1171 9 1 54.3272 -4.58771 65.55
+ 88 81.5308 1172 9 1 54.45 -4.57038 65.3109
+ 88 167.761 877 9 0 55.0478 -4.48272 64.15
+ 88 45.2919 1248 8 1 69.8121 -2.32641 35.55
+ 88 109.877 1249 8 1 69.85 -2.31951 35.4769
+ 88 140.98 889 8 0 70.5399 -2.19357 34.15
+ 88 129.498 1327 7 1 85.4935 0.566453 5.55
+ 88 36.4438 1328 7 1 85.65 0.592406 5.24251
+ 88 126.672 903 7 0 86.2081 0.683002 4.15
+ 88 79.2527 1403 6 1 100.827 3.01536 -24.45
+ 88 35.6506 1404 6 1 100.95 3.03417 -24.692
+ 88 241.525 915 6 0 101.535 3.12293 -25.85
+ 88 130.942 1479 5 1 115.994 5.34962 -54.45
+ 88 28.1393 1480 5 1 116.15 5.37722 -54.7608
+ 88 116.071 927 5 0 116.694 5.47343 -55.85
+ 88 131.343 1554 4 1 130.957 7.94831 -84.45
+ 88 2.72854 1555 4 1 131.15 7.98472 -84.8379
+ 88 133.015 940 4 0 131.654 8.07882 -85.85
+ 88 68.9458 1628 3 1 145.829 10.7747 -114.45
+ 88 38.3037 1629 3 1 145.95 10.795 -114.688
+ 88 245.623 954 3 0 146.543 10.8933 -115.85
+ 88 17.4518 1704 2 1 161.116 13.2881 -144.45
+ 88 90.624 1705 2 1 161.15 13.2939 -144.515
+ 88 134.01 966 2 0 161.851 13.4158 -145.85
+ 88 7.16714 967 2 0 162.047 13.45 -146.223
+ 88 115.594 1784 1 1 176.954 16.0739 -174.45
+ 88 7.53286 1785 1 1 177.15 16.1068 -174.82
+ 88 199.103 980 1 0 177.698 16.1954 -175.85
+ 88 98.1968 953 3 0 146.706 10.8499 -116.078
+ 88 114.029 864 10 0 39.1168 -7.05211 94.15
+ 88 107.906 1093 9 1 38.6946 -8.0391 65.55
+ 88 168.541 859 9 0 38.6742 -8.08758 64.15
+ 88 109.817 1091 8 1 38.2603 -9.08078 35.55
+ 88 551.646 854 8 0 38.2393 -9.1301 34.15
+ 88 132.206 1088 7 1 37.8074 -10.1344 5.55
+ 88 122.941 849 7 0 37.7855 -10.1832 4.15
+ 88 119.354 1086 6 1 37.3383 -11.18 -24.45
+ 88 93.5228 844 6 0 37.3156 -11.2289 -25.85
+ 88 107.146 1084 5 1 36.856 -12.2223 -54.45
+ 88 8.66537 1083 5 1 36.85 -12.2355 -54.8224
+ 88 108.909 838 5 0 36.8335 -12.2721 -55.85
+ 88 114.54 1081 4 1 36.374 -13.2899 -84.45
+ 88 144.906 833 4 0 36.3515 -13.3398 -85.85
+ 88 203.641 1079 3 1 35.8961 -14.36 -114.45
+ 88 171.782 828 3 0 35.8729 -14.4112 -115.85
+ 88 122.659 1076 2 1 35.4046 -15.4569 -144.45
+ 88 211.846 822 2 0 35.3831 -15.5068 -145.85
+ 88 97.7419 1074 1 1 34.9461 -16.5102 -174.45
+ 88 159.292 817 1 0 34.927 -16.5596 -175.85
+ 88 112.92 1072 0 1 34.543 -17.5782 -204.45
+ 88 174.531 812 0 0 34.5247 -17.6297 -205.85
+ 88 192.927 1078 3 1 35.85 -14.3992 -114.583
+ 88 93.0173 1080 3 1 36.05 -14.3596 -114.781
+ 88 343.219 1081 3 1 36.25 -14.3747 -114.744
+Number of digits in this event = 69
+Using G4ParticleGun ...
+8.86134 LIN
proton
Event: 89
-Number of tracker hits in this event = 40
- 89 128.422 890 11 1 -1.9931 63.9095 125.55
- 89 92.866 1219 11 0 -1.99378 63.9099 124.15
- 89 94.898 890 10 1 -2.00693 63.9175 95.55
- 89 101.332 1219 10 0 -2.00749 63.9183 94.15
- 89 140.249 890 9 1 -2.0192 63.9359 65.55
- 89 130.72 1219 9 0 -2.01959 63.9369 64.15
- 89 126.088 890 8 1 -2.028 63.9615 35.55
- 89 126.768 1219 8 0 -2.02889 63.9626 34.15
- 89 416.925 890 7 1 -2.04687 63.9865 5.55
- 89 174.91 1219 7 0 -2.04758 63.989 4.15
- 89 272.444 889 6 1 -2.05971 64.0426 -24.45
- 89 128.204 1219 6 0 -2.06022 64.0448 -25.85
- 89 185.08 889 5 1 -2.07244 64.092 -54.45
- 89 120.507 1220 5 0 -2.07265 64.0941 -55.85
- 89 137.482 889 4 1 -2.08189 64.1392 -84.45
- 89 209.133 1220 4 0 -2.08177 64.1412 -85.85
- 89 137.757 889 3 1 -2.08246 64.1863 -114.45
- 89 110.178 1220 3 0 -2.08245 64.1888 -115.85
- 89 131.538 889 2 1 -2.082 64.2366 -144.45
- 89 118.733 1220 2 0 -2.08196 64.2382 -145.85
- 89 105.557 889 1 1 -2.08202 64.272 -174.45
- 89 129.184 1221 1 0 -2.08267 64.2742 -175.85
- 89 124.905 889 0 1 -2.09756 64.3129 -204.45
- 89 127.747 1221 0 0 -2.0977 64.3149 -205.85
- 89 345.806 889 7 1 -2.05025 64.1263 5.47088
- 89 20.2655 1274 7 0 -1.99341 74.9565 4.15
- 89 54.2509 1275 7 0 -1.99025 75.05 4.14549
- 89 10.9986 1276 7 0 -1.99575 75.25 4.14476
- 89 55.8927 873 7 1 -5.36308 87.4058 5.15
- 89 144.75 872 7 1 -5.45 87.6062 5.1742
- 89 70.4637 871 7 1 -5.65 88.0099 5.32227
- 89 71.2022 870 7 1 -5.85 88.2024 5.28035
- 89 68.9852 869 7 1 -6.05 88.3589 5.22708
- 89 36.2403 1347 7 0 -7.56698 89.6019 4.14994
- 89 287.748 1348 7 0 -7.63317 89.65 4.10856
- 89 372.727 1349 7 0 -8.16296 89.8501 4.00323
- 89 40.4214 824 7 1 -15.1515 87.9357 5.15
- 89 84.0165 823 7 1 -15.25 87.9251 5.1958
- 89 227.911 822 7 1 -15.45 87.8406 5.41189
- 89 316.902 821 7 1 -15.6501 87.5728 5.23627
-Number of digits in this event = 25
+Number of tracker hits in this event = 24
+ 89 210.822 808 10 1 -18.3363 112.359 95.55
+ 89 125.46 1461 10 0 -18.3365 112.359 94.15
+ 89 106.295 808 9 1 -18.3375 112.357 65.55
+ 89 104.867 1461 9 0 -18.3362 112.357 64.15
+ 89 221.395 808 8 1 -18.3128 112.359 35.55
+ 89 138.878 1461 8 0 -18.3119 112.359 34.15
+ 89 123.262 808 7 1 -18.2941 112.368 5.55
+ 89 98.8016 1461 7 0 -18.2932 112.369 4.15
+ 89 107.346 808 6 1 -18.2752 112.394 -24.45
+ 89 127.997 1461 6 0 -18.2745 112.395 -25.85
+ 89 122.228 808 5 1 -18.2593 112.424 -54.45
+ 89 110.316 1461 5 0 -18.2585 112.425 -55.85
+ 89 107.927 809 4 1 -18.2422 112.46 -84.45
+ 89 109.004 1461 4 0 -18.2409 112.462 -85.85
+ 89 110.211 809 3 1 -18.216 112.506 -114.45
+ 89 130.659 1461 3 0 -18.2152 112.508 -115.85
+ 89 127.206 809 2 1 -18.1967 112.552 -144.45
+ 89 129.952 1462 2 0 -18.1959 112.555 -145.85
+ 89 92.7512 809 1 1 -18.1803 112.608 -174.45
+ 89 132.463 1462 1 0 -18.1805 112.61 -175.85
+ 89 109.037 809 0 1 -18.1856 112.663 -204.45
+ 89 117.82 1462 0 0 -18.1856 112.666 -205.85
+ 89 65.8087 570 7 1 -65.958 74.1109 5.21836
+ 89 185.047 807 8 1 -18.4501 112.327 35.3928
+Number of digits in this event = 16
Using G4ParticleGun ...
-1.49723 LIN
+5.44999 LIN
proton
Event: 90
-Number of tracker hits in this event = 23
- 90 140.833 431 10 1 -93.7624 51.5467 95.55
- 90 154.079 1157 10 0 -93.7615 51.5478 94.15
- 90 114.156 431 9 1 -93.7684 51.5711 65.55
- 90 115.38 1157 9 0 -93.7665 51.5707 64.15
- 90 171.524 432 8 1 -93.7232 51.5887 35.55
- 90 220.492 1157 8 0 -93.7199 51.589 34.15
- 90 100.788 432 7 1 -93.646 51.5909 5.55
- 90 97.4204 1157 7 0 -93.6447 51.5915 4.15
- 90 161.41 432 6 1 -93.6122 51.5962 -24.45
- 90 133.188 1157 6 0 -93.6091 51.5986 -25.85
- 90 132.608 432 5 1 -93.5535 51.6828 -54.45
- 90 130.329 1158 5 0 -93.5525 51.6881 -55.85
- 90 145.137 433 4 1 -93.5404 51.8017 -84.45
- 90 128.102 1158 4 0 -93.5392 51.8043 -85.85
- 90 121.359 433 3 1 -93.514 51.8441 -114.45
- 90 108.443 1159 3 0 -93.5176 51.8505 -115.85
- 90 125.699 432 2 1 -93.5893 51.9771 -144.45
- 90 107.546 1159 2 0 -93.5896 51.9827 -145.85
- 90 97.4023 432 1 1 -93.5807 52.088 -174.45
- 90 145.018 1160 1 0 -93.5809 52.0936 -175.85
- 90 103.035 433 0 1 -93.5312 52.2086 -204.45
- 90 156.406 1160 0 0 -93.5319 52.214 -205.85
- 90 160.905 432 10 1 -93.75 51.5173 95.5005
-Number of digits in this event = 16
+Number of tracker hits in this event = 27
+ 90 100.797 827 11 1 -14.5493 68.299 125.55
+ 90 117.987 1241 11 0 -14.5495 68.2978 124.15
+ 90 236.547 827 10 1 -14.5514 68.2727 95.55
+ 90 96.8321 1241 10 0 -14.5496 68.2745 94.15
+ 90 394.62 827 9 1 -14.5095 68.3151 65.55
+ 90 126.332 1241 9 0 -14.5062 68.3166 64.15
+ 90 120.3 828 8 1 -14.4366 68.3538 35.55
+ 90 108.331 1241 8 0 -14.4283 68.3509 34.15
+ 90 109.657 828 7 1 -14.2577 68.2888 5.55
+ 90 107.577 1241 7 0 -14.2483 68.2853 4.15
+ 90 187.096 829 6 1 -14.0615 68.2147 -24.45
+ 90 89.9168 1240 6 0 -14.0527 68.2113 -25.85
+ 90 95.8976 830 5 1 -13.8738 68.1343 -54.45
+ 90 294.92 1240 5 0 -13.8669 68.1303 -55.85
+ 90 128.246 831 4 1 -13.7251 68.048 -84.45
+ 90 114.019 1239 4 0 -13.7183 68.0436 -85.85
+ 90 117.724 832 3 1 -13.5808 67.959 -114.45
+ 90 107.679 1239 3 0 -13.5796 67.9574 -115.85
+ 90 143.682 832 2 1 -13.5582 67.9266 -144.45
+ 90 102.482 1239 2 0 -13.5559 67.9255 -145.85
+ 90 136.72 832 1 1 -13.517 67.8929 -174.45
+ 90 185.147 1239 1 0 -13.5149 67.8903 -175.85
+ 90 160.078 832 0 1 -13.4762 67.8398 -204.45
+ 90 116.397 1238 0 0 -13.4729 67.837 -205.85
+ 90 108.812 826 9 1 -14.65 68.325 65.4216
+ 90 267.547 825 9 1 -14.85 68.3933 65.361
+ 90 29.827 824 9 1 -15.05 68.4926 65.5386
+Number of digits in this event = 13
Using G4ParticleGun ...
-9.60293 LIN
+3.21159 LIN
proton
Event: 91
-Number of tracker hits in this event = 26
- 91 56.703 517 11 0 -35.5909 -76.6166 123.948
- 91 196.424 722 10 1 -35.5858 -76.6126 95.55
- 91 181.448 517 10 0 -35.5856 -76.6131 94.15
- 91 102.429 722 9 1 -35.5826 -76.6212 65.55
- 91 103.404 517 9 0 -35.5814 -76.6212 64.15
- 91 140.073 722 8 1 -35.5551 -76.6236 35.55
- 91 116.909 517 8 0 -35.5543 -76.6235 34.15
- 91 373.365 722 7 1 -35.5444 -76.6221 5.55
- 91 147.625 517 7 0 -35.5435 -76.6225 4.15
- 91 139.909 722 6 1 -35.5237 -76.6302 -24.45
- 91 105.188 517 6 0 -35.5229 -76.6311 -25.85
- 91 200.599 722 5 1 -35.5065 -76.6479 -54.45
- 91 172.524 517 5 0 -35.5057 -76.6487 -55.85
- 91 96.3637 722 4 1 -35.4852 -76.6671 -84.45
- 91 110.337 516 4 0 -35.4839 -76.6668 -85.85
- 91 148.505 722 3 1 -35.458 -76.6625 -114.45
- 91 108.787 516 3 0 -35.4565 -76.6623 -115.85
- 91 141.059 723 2 1 -35.4227 -76.6556 -144.45
- 91 97.9572 516 2 0 -35.4208 -76.6554 -145.85
- 91 93.7943 723 1 1 -35.3792 -76.6533 -174.45
- 91 114.689 516 1 0 -35.3774 -76.6544 -175.85
- 91 108.207 723 0 1 -35.3441 -76.6767 -204.45
- 91 115.868 516 0 0 -35.3421 -76.6779 -205.85
- 91 187.867 377 5 0 -49.3252 -104.677 -56.25
- 91 3.13375 723 7 1 -35.4462 -76.7577 5.55
- 91 224.03 518 7 0 -35.8099 -76.4498 4.0858
+Number of tracker hits in this event = 27
+ 91 137.93 821 11 1 -15.7356 -4.78239 125.55
+ 91 98.6274 876 11 0 -15.7367 -4.78304 124.15
+ 91 113.017 821 10 1 -15.7602 -4.80351 95.55
+ 91 116.932 876 10 0 -15.761 -4.80341 94.15
+ 91 98.5497 821 9 1 -15.7702 -4.80241 65.55
+ 91 94.7094 876 9 0 -15.7703 -4.80202 64.15
+ 91 99.5894 821 8 1 -15.7677 -4.79187 35.55
+ 91 108.229 876 8 0 -15.7689 -4.78972 34.15
+ 91 121.912 821 7 1 -15.7947 -4.74344 5.55
+ 91 141.784 876 7 0 -15.7946 -4.7409 4.15
+ 91 106.229 821 6 1 -15.7957 -4.699 -24.45
+ 91 104.562 876 6 0 -15.795 -4.69488 -25.85
+ 91 105.127 821 5 1 -15.7858 -4.60682 -54.45
+ 91 127.772 877 5 0 -15.7868 -4.60008 -55.85
+ 91 118.957 821 4 1 -15.809 -4.45024 -84.45
+ 91 144.711 878 4 0 -15.8108 -4.44344 -85.85
+ 91 100.073 821 3 1 -15.8337 -4.30419 -114.45
+ 91 374.465 878 3 0 -15.8333 -4.29822 -115.85
+ 91 118.175 821 2 1 -15.824 -4.17779 -144.45
+ 91 128.984 879 2 0 -15.8231 -4.17108 -145.85
+ 91 150.067 821 1 1 -15.8033 -4.03734 -174.45
+ 91 98.6597 880 1 0 -15.8023 -4.03039 -175.85
+ 91 191.192 821 0 1 -15.7834 -3.88006 -204.45
+ 91 135.228 880 0 0 -15.7827 -3.87385 -205.85
+ 91 193.278 820 3 1 -15.85 -4.33072 -114.468
+ 91 359.239 877 3 0 -15.6718 -4.62914 -115.85
+ 91 16.4038 829 3 1 -14.2379 -3.41618 -114.85
Number of digits in this event = 13
Using G4ParticleGun ...
-4.14777 LIN
+4.87706 LIN
proton
Event: 92
-Number of tracker hits in this event = 18
- 92 108.219 1308 8 1 81.7856 112.726 35.55
- 92 117.255 1462 8 0 81.7858 112.726 34.15
- 92 116.452 1308 7 1 81.7908 112.714 5.55
- 92 111.881 1462 7 0 81.7921 112.711 4.15
- 92 155.29 1308 6 1 81.8174 112.658 -24.45
- 92 146.711 1462 6 0 81.8197 112.655 -25.85
- 92 120.472 1309 5 1 81.8706 112.597 -54.45
- 92 111.301 1462 5 0 81.8686 112.592 -55.85
- 92 120.227 1308 4 1 81.8233 112.481 -84.45
- 92 106.868 1461 4 0 81.8201 112.478 -85.85
- 92 121.761 1308 3 1 81.7492 112.41 -114.45
- 92 106.029 1461 3 0 81.7439 112.406 -115.85
- 92 189.114 1307 2 1 81.6324 112.32 -144.45
- 92 98.749 1460 2 0 81.6269 112.315 -145.85
- 92 167.4 1307 1 1 81.5129 112.21 -174.45
- 92 116.125 1460 1 0 81.5073 112.205 -175.85
- 92 94.2965 1306 0 1 81.3935 112.111 -204.45
- 92 157.276 1459 0 0 81.3862 112.106 -205.85
-Number of digits in this event = 9
+Number of tracker hits in this event = 22
+ 92 518.76 670 10 1 -45.9646 -85.2998 95.55
+ 92 113.579 473 10 0 -45.9649 -85.2997 94.15
+ 92 107.069 670 9 1 -45.9681 -85.2939 65.55
+ 92 137.591 473 9 0 -45.9683 -85.2924 64.15
+ 92 257.517 670 8 1 -45.9752 -85.2631 35.55
+ 92 89.417 473 8 0 -45.9771 -85.2621 34.15
+ 92 132.14 670 7 1 -46.0127 -85.2412 5.55
+ 92 116.159 474 7 0 -46.016 -85.2407 4.15
+ 92 101.28 669 6 1 -46.0844 -85.2213 -24.45
+ 92 121.811 474 6 0 -46.0897 -85.2202 -25.85
+ 92 135.345 669 5 1 -46.2 -85.1909 -54.45
+ 92 105.562 474 5 0 -46.2052 -85.1891 -55.85
+ 92 94.346 668 4 1 -46.3172 -85.1478 -84.45
+ 92 120.183 474 4 0 -46.3239 -85.1454 -85.85
+ 92 126.434 667 3 1 -46.461 -85.099 -114.45
+ 92 163.87 474 3 0 -46.4672 -85.0956 -115.85
+ 92 108.653 667 2 1 -46.594 -85.0224 -144.45
+ 92 106.481 475 2 0 -46.6006 -85.0222 -145.85
+ 92 95.7133 666 1 1 -46.7345 -85.0184 -174.45
+ 92 138.453 475 1 0 -46.7426 -85.0193 -175.85
+ 92 122.617 665 0 1 -46.9141 -85.0343 -204.45
+ 92 101.731 475 0 0 -46.9222 -85.0346 -205.85
+Number of digits in this event = 12
Using G4ParticleGun ...
-4.97363 LIN
+7.93861 LIN
proton
Event: 93
-Number of tracker hits in this event = 30
- 93 271.625 495 8 1 -80.9211 -114.492 35.55
- 93 119.945 328 8 0 -80.9217 -114.492 34.15
- 93 138.356 495 7 1 -80.9365 -114.479 5.55
- 93 143.827 328 7 0 -80.9375 -114.479 4.15
- 93 130.268 495 6 1 -80.9606 -114.473 -24.45
- 93 101.141 328 6 0 -80.9621 -114.475 -25.85
- 93 187.951 495 5 1 -81.0069 -114.514 -54.45
- 93 124.145 328 5 0 -81.0093 -114.515 -55.85
- 93 116.057 494 4 1 -81.0555 -114.541 -84.45
- 93 118.963 328 4 0 -81.0588 -114.542 -85.85
- 93 99.4932 494 3 1 -81.1172 -114.547 -114.45
- 93 214.783 328 3 0 -81.1208 -114.548 -115.85
- 93 104.844 494 2 1 -81.1951 -114.562 -144.45
- 93 87.5208 327 2 0 -81.1981 -114.562 -145.85
- 93 98.1306 493 1 1 -81.2548 -114.552 -174.45
- 93 99.6324 327 1 0 -81.2569 -114.552 -175.85
- 93 100.691 493 0 1 -81.3015 -114.562 -204.45
- 93 105.71 327 0 0 -81.3039 -114.563 -205.85
- 93 52.714 1019 4 0 -0.714608 23.85 -86.1551
- 93 33.5238 183 2 0 -70.4315 -143.457 -146.25
- 93 95.7899 182 2 0 -70.3835 -143.55 -146.183
- 93 133.033 181 2 0 -70.3036 -143.75 -146.03
- 93 386.84 548 2 1 -70.2763 -144.507 -144.85
- 93 86.6519 549 2 1 -70.25 -144.987 -144.467
- 93 474.448 547 2 1 -70.45 -145.155 -144.565
- 93 0.128187 161 2 0 -70.5176 -147.949 -145.85
- 93 201.723 160 2 0 -70.5176 -147.95 -145.851
- 93 88.0524 327 8 0 -83.6926 -114.713 34.15
- 93 53.134 474 8 1 -85.072 -115.082 35.15
- 93 153.187 475 8 1 -85.05 -115.057 35.2451
-Number of digits in this event = 15
+Number of tracker hits in this event = 33
+ 93 171.324 1099 11 1 39.9123 -19.2389 125.55
+ 93 103.849 804 11 0 39.9118 -19.2401 124.15
+ 93 111.81 1099 10 1 39.9015 -19.2662 95.55
+ 93 98.272 803 10 0 39.9014 -19.2668 94.15
+ 93 113.888 1099 9 1 39.8986 -19.2777 65.55
+ 93 372.777 803 9 0 39.8984 -19.2791 64.15
+ 93 124.506 1099 8 1 39.8971 -19.3032 35.55
+ 93 115.235 803 8 0 39.8983 -19.304 34.15
+ 93 99.4077 1099 7 1 39.9239 -19.3202 5.55
+ 93 94.2304 803 7 0 39.9248 -19.3219 4.15
+ 93 125.569 1099 6 1 39.9443 -19.353 -24.45
+ 93 123.951 803 6 0 39.9461 -19.3544 -25.85
+ 93 153.095 1099 5 1 39.9815 -19.3843 -54.45
+ 93 131.849 803 5 0 39.9827 -19.3871 -55.85
+ 93 147.383 1099 4 1 40.0064 -19.4425 -84.45
+ 93 198.779 803 4 0 40.008 -19.4451 -85.85
+ 93 119.913 1099 3 1 40.0444 -19.4968 -114.45
+ 93 156.797 802 3 0 40.0466 -19.4989 -115.85
+ 93 110.936 1100 2 1 40.0906 -19.5376 -144.45
+ 93 105.828 802 2 0 40.0934 -19.5398 -145.85
+ 93 109.136 1100 1 1 40.1477 -19.5855 -174.45
+ 93 92.5105 802 1 0 40.1508 -19.5866 -175.85
+ 93 120.843 1100 0 1 40.2162 -19.6096 -204.45
+ 93 101.144 802 0 0 40.2193 -19.6103 -205.85
+ 93 245.273 802 4 0 39.9981 -19.45 -86.0825
+ 93 82.678 1098 9 1 39.85 -19.2872 65.4879
+ 93 177.537 1097 9 1 39.6499 -19.2915 65.3046
+ 93 22.3158 1096 9 1 39.45 -19.324 65.2037
+ 93 100.025 804 9 0 37.8165 -19.25 64.0033
+ 93 113.736 805 9 0 37.6442 -19.05 63.8951
+ 93 147.514 806 9 0 37.4787 -18.85 63.7984
+ 93 128.773 807 9 0 37.343 -18.65 63.8416
+ 93 142.022 831 9 0 2.15413 -13.8251 63.75
+Number of digits in this event = 17
Using G4ParticleGun ...
-7.30291 LIN
+1.24404 LIN
proton
Event: 94
-Number of tracker hits in this event = 118
- 94 430.439 520 11 1 -76.0401 -13.2624 125.55
- 94 115.702 833 11 0 -76.041 -13.2606 124.15
- 94 119.204 519 10 1 -76.0616 -13.223 95.55
- 94 123.966 834 10 0 -76.0628 -13.2204 94.15
- 94 100.408 519 9 1 -76.0859 -13.1668 65.55
- 94 91.1597 834 9 0 -76.0868 -13.1655 64.15
- 94 109.68 519 8 1 -76.1081 -13.1418 35.55
- 94 168.86 834 8 0 -76.1093 -13.1405 34.15
- 94 144.8 519 7 1 -76.1379 -13.1088 5.55
- 94 111.305 834 7 0 -76.1401 -13.107 4.15
- 94 126.329 519 6 1 -76.1839 -13.0709 -24.45
- 94 101.145 834 6 0 -76.1859 -13.0676 -25.85
- 94 104.301 519 5 1 -76.228 -13.0018 -54.45
- 94 105.851 835 5 0 -76.2303 -12.997 -55.85
- 94 108.201 518 4 1 -76.2751 -12.9002 -84.45
- 94 117.283 835 4 0 -76.2763 -12.8943 -85.85
- 94 112.501 518 3 1 -76.3021 -12.7732 -114.45
- 94 100.523 836 3 0 -76.3037 -12.7679 -115.85
- 94 119.691 518 2 1 -76.3376 -12.6594 -144.45
- 94 204.338 836 2 0 -76.3408 -12.6549 -145.85
- 94 121.433 518 1 1 -76.4036 -12.5687 -174.45
- 94 261.903 837 1 0 -76.4076 -12.5648 -175.85
- 94 198.746 517 0 1 -76.4908 -12.4829 -204.45
- 94 97.9179 837 0 0 -76.495 -12.4795 -205.85
- 94 144.397 245 2 1 -131.05 -105.542 -144.632
- 94 5.47144 950 0 0 -61.997 10.2378 -206.25
- 94 206.357 951 0 0 -61.9966 10.25 -206.231
- 94 20.1021 952 0 0 -61.9901 10.45 -205.914
- 94 123.175 590 0 1 -61.968 11.1212 -204.85
- 94 8.41535 1040 1 0 -61.4252 28.2396 -176.25
- 94 112.806 1041 1 0 -61.4249 28.25 -176.233
- 94 12.5131 1042 1 0 -61.4187 28.45 -175.898
- 94 276.46 593 1 1 -61.394 29.0784 -174.85
- 94 244.252 1129 2 0 -59.7371 45.8683 -146.25
- 94 33.5215 1130 2 0 -59.7189 46.05 -145.94
- 94 17.0772 601 2 1 -59.6541 46.6888 -144.85
- 94 157.53 602 2 1 -59.65 46.7289 -144.782
- 94 105.566 1208 3 0 -58.3143 61.6562 -116.25
- 94 16.1183 1209 3 0 -58.297 61.85 -115.879
- 94 150.202 609 3 1 -58.2481 62.3823 -114.85
- 94 105.31 1286 4 0 -56.8045 77.2859 -86.25
- 94 40.6179 1287 4 0 -56.7886 77.45 -85.9351
- 94 124.225 616 4 1 -56.7369 78.0198 -84.85
- 94 59.727 1364 5 0 -55.211 93.0322 -56.25
- 94 78.9119 1365 5 0 -55.199 93.15 -56.0256
- 94 139.7 624 5 1 -55.1362 93.761 -54.85
- 94 85.3165 1441 6 0 -54.0213 108.4 -26.25
- 94 32.0604 1442 6 0 -54.01 108.55 -25.957
- 94 212.251 630 6 1 -53.971 109.121 -24.85
- 94 89.1884 1513 7 0 -52.7494 122.8 3.75
- 94 36.1997 1514 7 0 -52.736 122.95 4.06332
- 94 116.981 636 7 1 -52.6916 123.471 5.15
- 94 58.6645 1578 8 0 -52.0614 135.858 33.75
- 94 54.9377 1579 8 0 -52.0568 135.95 33.9619
- 94 113.725 640 8 1 -52.0267 136.468 35.15
- 94 42.8735 1647 9 0 -51.908 149.686 63.75
- 94 162.867 1648 9 0 -51.9075 149.75 63.8878
- 94 140.841 640 9 1 -51.9027 150.339 65.15
- 94 114.522 1720 10 0 -51.6579 164.231 93.75
- 94 41.1076 1721 10 0 -51.6558 164.35 93.9951
- 94 134.486 642 10 1 -51.64 164.914 95.15
- 94 165.998 1797 11 0 -51.0607 179.643 123.75
- 94 52.6855 1798 11 0 -51.0565 179.75 123.957
- 94 118.347 1596 4 1 139.35 145.962 -84.6234
- 94 1.85169 1595 4 1 139.35 145.993 -84.6673
- 94 262.941 613 5 1 -57.4176 106.452 -54.85
- 94 65.9683 612 5 1 -57.45 106.547 -54.8
- 94 65.4203 1432 5 0 -58.2773 106.584 -55.85
- 94 85.6123 608 5 1 -58.4184 106.7 -54.85
- 94 137.757 1112 3 0 -35.1795 42.5928 -116.25
- 94 29.3549 1111 3 0 -34.8206 42.45 -115.911
- 94 130.067 732 3 1 -33.6185 42.2138 -114.85
- 94 63.5262 733 3 1 -33.45 42.1889 -114.698
- 94 121.072 734 3 1 -33.25 42.1947 -114.556
- 94 28.7033 735 3 1 -32.9338 42.185 -114.45
- 94 560.652 736 3 1 -32.85 42.1349 -114.477
- 94 118.247 1106 3 0 -32.2311 41.4413 -115.85
- 94 11.1412 1105 3 0 -32.186 41.25 -116.199
- 94 9.58017 1100 3 0 -33.2495 40.0612 -115.85
- 94 36.7974 1099 3 0 -33.254 40.05 -115.855
- 94 45.2937 739 3 1 -32.1641 40.481 -114.85
- 94 63.7263 1109 3 0 -33.0975 41.8503 -115.85
- 94 125.206 1648 8 0 -57.9912 149.751 33.7503
- 94 150.604 610 8 1 -57.9133 150.25 35.1501
- 94 12.4415 611 8 1 -57.85 150.365 35.534
- 94 105.007 609 8 1 -58.05 150.702 35.4975
- 94 63.0911 608 8 1 -58.2501 150.718 35.3725
- 94 73.731 607 8 1 -58.4502 150.732 35.2603
- 94 10.1096 606 8 1 -58.65 150.717 35.1677
- 94 237.818 1652 8 0 -61.1734 150.664 34.15
- 94 13.5772 1653 8 0 -61.7824 150.75 33.7846
- 94 34.7914 818 0 0 -96.9441 -16.3736 -206.25
- 94 137.328 817 0 0 -97.0457 -16.4506 -206.193
- 94 110.708 816 0 0 -97.346 -16.65 -206.036
- 94 15.17 815 0 0 -97.5915 -16.85 -205.875
- 94 230.886 408 0 1 -98.4602 -18.3605 -204.85
- 94 171.165 409 0 1 -98.35 -19.1265 -204.5
- 94 44.4375 410 0 1 -98.15 -19.6828 -204.722
- 94 98.4514 797 0 0 -97.8343 -20.4565 -205.85
- 94 35.987 796 0 0 -97.7564 -20.65 -206.142
- 94 115.298 666 0 0 -32.2511 -46.6533 -206.25
- 94 85.6363 665 0 0 -32.1032 -46.85 -206.015
- 94 12.6496 744 0 1 -31.0672 -47.9341 -204.85
- 94 119.954 745 0 1 -31.0497 -47.9526 -204.83
- 94 121.944 746 0 1 -30.85 -48.1663 -204.608
- 94 131.33 557 1 0 -8.84248 -68.4826 -176.25
- 94 76.1799 556 1 0 -8.66318 -68.65 -176.023
- 94 81.6141 862 1 1 -7.58299 -69.5441 -174.85
- 94 95.8848 863 1 1 -7.45 -69.6515 -174.707
- 94 30.4635 864 1 1 -7.24959 -69.8136 -174.504
- 94 29.3603 385 2 0 10.0375 -103.057 -146.25
- 94 79.9883 384 2 0 10.0846 -103.15 -146.176
- 94 71.0519 383 2 0 10.1825 -103.35 -146.027
- 94 10.1679 382 2 0 10.2765 -103.55 -145.881
- 94 81.7628 954 2 1 10.9244 -104.935 -144.85
- 94 73.9347 955 2 1 11.05 -105.185 -144.64
- 94 14.4366 518 0 1 -76.45 -12.5432 -204.787
- 94 131.295 835 0 0 -76.143 -12.9017 -205.851
-Number of digits in this event = 40
+Number of tracker hits in this event = 24
+ 94 156.349 628 11 1 -54.3012 34.6206 125.55
+ 94 158.121 1072 11 0 -54.2983 34.6236 124.15
+ 94 147.188 629 10 1 -54.2464 34.6768 95.55
+ 94 234.865 1073 10 0 -54.2453 34.6768 94.15
+ 94 123.614 629 9 1 -54.2307 34.673 65.55
+ 94 100.717 1073 9 0 -54.2274 34.67 64.15
+ 94 110.712 629 8 1 -54.1731 34.6203 35.55
+ 94 121.738 1072 8 0 -54.1653 34.6183 34.15
+ 94 105.14 630 7 1 -53.9896 34.573 5.55
+ 94 395.177 1072 7 0 -53.9768 34.5751 4.15
+ 94 120.116 631 6 1 -53.712 34.6338 -24.45
+ 94 108.806 1072 6 0 -53.6968 34.634 -25.85
+ 94 120.903 633 5 1 -53.3868 34.6429 -54.45
+ 94 119.847 1072 5 0 -53.3698 34.6448 -55.85
+ 94 117.258 635 4 1 -53.0122 34.6779 -84.45
+ 94 139.165 1073 4 0 -52.9962 34.6808 -85.85
+ 94 119.138 636 3 1 -52.6856 34.7351 -114.45
+ 94 118.588 1073 3 0 -52.6697 34.7418 -115.85
+ 94 214.521 638 2 1 -52.3399 34.8784 -144.45
+ 94 166.138 1074 2 0 -52.3184 34.8822 -145.85
+ 94 112.496 640 1 1 -51.8744 34.9448 -174.45
+ 94 139.364 1074 1 0 -51.8544 34.9443 -175.85
+ 94 115.632 643 0 1 -51.4401 34.9375 -204.45
+ 94 263.431 1074 0 0 -51.4297 34.9555 -205.85
+Number of digits in this event = 15
Using G4ParticleGun ...
-1.93866 LIN
+1.55852 LIN
proton
Event: 95
Number of tracker hits in this event = 28
- 95 170.533 934 11 1 6.89624 42.4827 125.55
- 95 135.564 1112 11 0 6.89803 42.4825 124.15
- 95 101.964 934 10 1 6.94308 42.4613 95.55
- 95 131.776 1112 10 0 6.94884 42.4591 94.15
- 95 118.309 935 9 1 7.06854 42.4119 65.55
- 95 81.2277 1111 9 0 7.07378 42.4093 64.15
- 95 104.845 935 8 1 7.18921 42.3587 35.55
- 95 106.571 1111 8 0 7.19611 42.3573 34.15
- 95 136.857 936 7 1 7.33094 42.3092 5.55
- 95 120.856 1111 7 0 7.33769 42.3068 4.15
- 95 108.371 937 6 1 7.48308 42.2478 -24.45
- 95 94.8461 1110 6 0 7.49283 42.2446 -25.85
- 95 109.33 938 5 1 7.66853 42.1863 -54.45
- 95 179.056 1110 5 0 7.67584 42.1844 -55.85
- 95 122.212 938 4 1 7.83642 42.1416 -84.45
- 95 218.141 1110 4 0 7.84465 42.1379 -85.85
- 95 126.573 939 3 1 8.01856 42.0628 -114.45
- 95 113.902 1110 3 0 8.03042 42.0594 -115.85
- 95 174.722 939 2 1 8.04319 41.7504 -144.45
- 95 111.073 1108 2 0 8.04291 41.7352 -145.85
- 95 140.892 939 1 1 8.04176 41.4177 -174.45
- 95 125.46 1106 1 0 8.04354 41.4022 -175.85
- 95 102.28 940 0 1 8.07613 41.0719 -204.45
- 95 130.528 1105 0 0 8.07845 41.0563 -205.85
- 95 190.975 1111 6 0 7.49541 42.25 -26.0389
- 95 117.232 1112 6 0 7.9685 42.45 -26.2013
- 95 105.563 1164 6 0 60.892 52.8736 -26.25
- 95 367.675 1163 6 0 60.9183 52.85 -26.1572
-Number of digits in this event = 16
+ 95 102.767 1025 8 1 25.1325 -141.064 35.55
+ 95 152.386 195 8 0 25.1332 -141.066 34.15
+ 95 105.217 1025 7 1 25.1508 -141.115 5.55
+ 95 165.53 195 7 0 25.1529 -141.121 4.15
+ 95 132.642 1025 6 1 25.172 -141.239 -24.45
+ 95 125.945 194 6 0 25.1717 -141.241 -25.85
+ 95 111.13 1025 5 1 25.1224 -141.28 -54.45
+ 95 317.616 194 5 0 25.1194 -141.285 -55.85
+ 95 114.89 1025 4 1 25.0664 -141.382 -84.45
+ 95 123.911 193 4 0 25.0716 -141.385 -85.85
+ 95 265.376 1025 3 1 25.1791 -141.443 -114.45
+ 95 165.168 193 3 0 25.1827 -141.445 -115.85
+ 95 147.458 1026 2 1 25.2575 -141.479 -144.45
+ 95 117.912 193 2 0 25.2568 -141.483 -145.85
+ 95 115.829 1025 1 1 25.2347 -141.588 -174.45
+ 95 107.736 192 1 0 25.2295 -141.595 -175.85
+ 95 101.96 1025 0 1 25.1371 -141.75 -204.45
+ 95 132.219 191 0 0 25.1256 -141.761 -205.85
+ 95 19.5594 1026 3 1 25.25 -141.272 -114.791
+ 95 34.3843 198 3 0 25.8946 -140.426 -115.85
+ 95 95.4993 199 3 0 25.9741 -140.35 -115.931
+ 95 58.3281 200 3 0 26.1702 -140.15 -116.093
+ 95 21.5386 201 3 0 26.2642 -139.95 -116.196
+ 95 198.395 275 3 0 14.26 -125.023 -116.249
+ 95 193.661 274 3 0 14.1947 -125.15 -116.174
+ 95 318.015 968 3 1 13.8316 -124.892 -114.85
+ 95 157.905 969 3 1 13.85 -124.467 -114.514
+ 95 90.4558 970 3 1 14.0501 -124.548 -114.534
+Number of digits in this event = 15
Using G4ParticleGun ...
-4.94047 LIN
+7.33517 LIN
proton
Event: 96
-Number of tracker hits in this event = 23
- 96 189.582 992 10 1 18.5236 86.6361 95.55
- 96 154.415 1332 10 0 18.5245 86.635 94.15
- 96 151.969 992 9 1 18.544 86.6079 65.55
- 96 98.3032 1332 9 0 18.544 86.6063 64.15
- 96 144.669 992 8 1 18.5521 86.5676 35.55
- 96 405.235 1332 8 0 18.5516 86.5661 34.15
- 96 228.798 992 7 1 18.533 86.5389 5.55
- 96 117.516 1332 7 0 18.5314 86.5367 4.15
- 96 123.178 992 6 1 18.5001 86.4884 -24.45
- 96 141.308 1332 6 0 18.4999 86.4859 -25.85
- 96 110.892 992 5 1 18.4944 86.4359 -54.45
- 96 112.107 1331 5 0 18.4949 86.433 -55.85
- 96 185.663 992 4 1 18.5041 86.3717 -84.45
- 96 109.459 1331 4 0 18.5049 86.371 -85.85
- 96 107.061 992 3 1 18.5314 86.3605 -114.45
- 96 100.06 1331 3 0 18.5311 86.3598 -115.85
- 96 142.488 992 2 1 18.5241 86.3459 -144.45
- 96 103.726 1331 2 0 18.5253 86.3452 -145.85
- 96 166.671 992 1 1 18.5457 86.33 -174.45
- 96 106.993 1331 1 0 18.5472 86.3301 -175.85
- 96 130.153 992 0 1 18.581 86.3358 -204.45
- 96 107.623 1331 0 0 18.5837 86.3369 -205.85
- 96 224.722 1331 8 0 18.3544 86.45 33.9835
-Number of digits in this event = 14
+Number of tracker hits in this event = 25
+ 96 108.763 1119 11 1 43.9985 34.8949 125.55
+ 96 97.591 1074 11 0 43.9977 34.895 124.15
+ 96 99.5284 1119 10 1 43.9804 34.8984 95.55
+ 96 105.461 1074 10 0 43.9808 34.8987 94.15
+ 96 98.6354 1119 9 1 43.9878 34.9091 65.55
+ 96 161.03 1074 9 0 43.9885 34.9092 64.15
+ 96 283.758 1119 8 1 44.002 34.913 35.55
+ 96 101.514 1074 8 0 44.0015 34.9125 34.15
+ 96 126.381 1119 7 1 43.9953 34.9051 5.55
+ 96 205.022 1074 7 0 43.9951 34.9051 4.15
+ 96 92.6983 1119 6 1 43.9923 34.9018 -24.45
+ 96 104.755 1074 6 0 43.9919 34.9017 -25.85
+ 96 115.779 1119 5 1 43.9818 34.9053 -54.45
+ 96 117.737 1074 5 0 43.9806 34.9045 -55.85
+ 96 122.711 1119 4 1 43.9592 34.8913 -84.45
+ 96 112.894 1074 4 0 43.9578 34.8908 -85.85
+ 96 110.451 1119 3 1 43.9344 34.8808 -114.45
+ 96 109.6 1074 3 0 43.9332 34.8793 -115.85
+ 96 156.173 1119 2 1 43.9062 34.851 -144.45
+ 96 116.237 1073 2 0 43.9046 34.8497 -145.85
+ 96 103.502 1119 1 1 43.8722 34.8222 -174.45
+ 96 134.195 1073 1 0 43.871 34.8204 -175.85
+ 96 99.1452 1118 0 1 43.8499 34.786 -204.45
+ 96 242.204 1073 0 0 43.849 34.7846 -205.85
+ 96 27.7521 1072 0 0 43.8521 34.65 -206.209
+Number of digits in this event = 9
Using G4ParticleGun ...
-6.15446 LIN
+1.21157 LIN
proton
Event: 97
-Number of tracker hits in this event = 27
- 97 116.583 390 8 1 -102.119 91.0293 35.55
- 97 131.889 1354 8 0 -102.118 91.0292 34.15
- 97 113.127 390 7 1 -102.108 91.0258 5.55
- 97 145.634 1354 7 0 -102.108 91.0259 4.15
- 97 226.262 390 6 1 -102.114 91.0311 -24.45
- 97 95.6993 1354 6 0 -102.115 91.0303 -25.85
- 97 188.518 390 5 1 -102.134 91.0159 -54.45
- 97 122.26 1354 5 0 -102.135 91.0135 -55.85
- 97 107.897 389 4 1 -102.15 90.9662 -84.45
- 97 137.318 1354 4 0 -102.15 90.9637 -85.85
- 97 219.12 390 3 1 -102.149 90.9098 -114.45
- 97 132.591 1353 3 0 -102.148 90.9082 -115.85
- 97 123.423 390 2 1 -102.144 90.8755 -144.45
- 97 119.923 1353 2 0 -102.143 90.8742 -145.85
- 97 112.933 390 1 1 -102.123 90.8491 -174.45
- 97 102.417 1353 1 0 -102.123 90.8482 -175.85
- 97 96.9424 390 0 1 -102.13 90.8297 -204.45
- 97 119.569 1353 0 0 -102.13 90.829 -205.85
- 97 40.6563 391 5 1 -101.95 91.1975 -54.7465
- 97 3.32782 1361 5 0 -101.537 92.5363 -55.85
- 97 214.812 1362 5 0 -101.531 92.5501 -55.8606
- 97 87.2017 1363 5 0 -101.358 92.75 -56.0106
- 97 63.7527 1381 5 0 -76.9427 96.4496 -56.25
- 97 190.434 1382 5 0 -76.8758 96.55 -56.2136
- 97 2.70497 401 5 1 -99.8526 89.3145 -54.85
- 97 55.9908 1335 5 0 -95.6723 87.0669 -55.85
- 97 95.8575 389 6 1 -102.15 90.8683 -24.4738
-Number of digits in this event = 12
+Number of tracker hits in this event = 26
+ 97 169.663 685 11 1 -42.9148 -67.0212 125.55
+ 97 174.116 565 11 0 -42.9143 -67.0216 124.15
+ 97 127.839 685 10 1 -42.914 -67.023 95.55
+ 97 104.954 565 10 0 -42.9086 -67.0157 94.15
+ 97 136.293 686 9 1 -42.8009 -66.8624 65.55
+ 97 107.333 565 9 0 -42.7953 -66.8519 64.15
+ 97 63.8399 566 9 0 -42.7942 -66.85 63.8998
+ 97 98.9859 686 8 1 -42.6689 -66.6426 35.55
+ 97 136.822 567 8 0 -42.6568 -66.637 34.15
+ 97 125.658 688 7 1 -42.4059 -66.5093 5.55
+ 97 157.542 567 7 0 -42.397 -66.5034 4.15
+ 97 172.82 689 6 1 -42.23 -66.3862 -24.45
+ 97 176.253 568 6 0 -42.2207 -66.3811 -25.85
+ 97 108.305 690 5 1 -42.0288 -66.2749 -54.45
+ 97 110.284 568 5 0 -42.0218 -66.2725 -55.85
+ 97 113.869 690 4 1 -41.8749 -66.2219 -84.45
+ 97 189.456 569 4 0 -41.8701 -66.2176 -85.85
+ 97 115.774 691 3 1 -41.7548 -66.1346 -114.45
+ 97 133.942 569 3 0 -41.7489 -66.1372 -115.85
+ 97 123.517 692 2 1 -41.6385 -66.2033 -144.45
+ 97 112.152 569 2 0 -41.6308 -66.2032 -145.85
+ 97 168.735 692 1 1 -41.4664 -66.2001 -174.45
+ 97 149.381 569 1 0 -41.4569 -66.1978 -175.85
+ 97 360.882 693 0 1 -41.2572 -66.1469 -204.45
+ 97 98.4828 569 0 0 -41.248 -66.1438 -205.85
+ 97 301.257 569 6 0 -42.2606 -66.25 -25.956
+Number of digits in this event = 17
Using G4ParticleGun ...
-8.66292 LIN
+8.73365 LIN
proton
Event: 98
Number of tracker hits in this event = 21
- 98 127.582 553 9 1 -69.282 -109.966 65.55
- 98 100.215 350 9 0 -69.281 -109.965 64.15
- 98 184.843 553 8 1 -69.263 -109.953 35.55
- 98 153.348 350 8 0 -69.2615 -109.951 34.15
- 98 119.696 554 7 1 -69.2314 -109.916 5.55
- 98 107.437 351 7 0 -69.2291 -109.915 4.15
- 98 168.122 554 6 1 -69.1803 -109.88 -24.45
- 98 282.681 351 6 0 -69.1781 -109.877 -25.85
- 98 120.19 554 5 1 -69.1376 -109.82 -54.45
- 98 100.455 351 5 0 -69.1354 -109.817 -55.85
- 98 104.67 554 4 1 -69.0878 -109.752 -84.45
- 98 88.9541 352 4 0 -69.0858 -109.75 -85.85
- 98 119.255 555 3 1 -69.0423 -109.71 -114.45
- 98 210.135 352 3 0 -69.0402 -109.709 -115.85
- 98 139.909 555 2 1 -69.0006 -109.678 -144.45
- 98 113.763 352 2 0 -68.9984 -109.676 -145.85
- 98 115.078 555 1 1 -68.9487 -109.641 -174.45
- 98 167.198 352 1 0 -68.9465 -109.639 -175.85
- 98 96.4521 555 0 1 -68.9024 -109.596 -204.45
- 98 92.7838 352 0 0 -68.9 -109.593 -205.85
- 98 126.955 553 7 1 -69.25 -109.912 5.31425
-Number of digits in this event = 11
+ 98 207.733 1037 8 1 27.6455 -137.83 35.55
+ 98 271.403 211 8 0 27.6449 -137.83 34.15
+ 98 260.805 1037 7 1 27.6342 -137.826 5.55
+ 98 121.157 211 7 0 27.6318 -137.825 4.15
+ 98 117.717 1037 6 1 27.584 -137.809 -24.45
+ 98 113.493 211 6 0 27.582 -137.808 -25.85
+ 98 135.864 1037 5 1 27.5421 -137.796 -54.45
+ 98 124.579 211 5 0 27.5405 -137.795 -55.85
+ 98 92.4014 1037 4 1 27.5062 -137.781 -84.45
+ 98 138.807 211 4 0 27.5047 -137.781 -85.85
+ 98 106.522 1037 3 1 27.4756 -137.764 -114.45
+ 98 136.364 211 3 0 27.4745 -137.763 -115.85
+ 98 101.233 1037 2 1 27.4508 -137.75 -144.45
+ 98 122.648 212 2 0 27.4504 -137.749 -145.85
+ 98 86.8187 1036 1 1 27.4424 -137.726 -174.45
+ 98 124.151 212 1 0 27.4433 -137.725 -175.85
+ 98 149.811 1037 0 1 27.4608 -137.7 -204.45
+ 98 137.294 212 0 0 27.4616 -137.698 -205.85
+ 98 110.116 1036 0 1 27.4499 -137.694 -204.508
+ 98 33.7086 1035 0 1 27.2499 -137.738 -204.786
+ 98 152.748 207 0 0 25.6019 -138.649 -205.85
+Number of digits in this event = 14
Using G4ParticleGun ...
-3.63705 LIN
+5.69503 LIN
proton
Event: 99
-Number of tracker hits in this event = 25
- 99 102.388 851 11 1 -9.77443 2.71694 125.55
- 99 198.078 913 11 0 -9.77492 2.71694 124.15
- 99 146.312 851 10 1 -9.78479 2.72685 95.55
- 99 152.468 913 10 0 -9.78487 2.7268 94.15
- 99 99.038 851 9 1 -9.79223 2.72967 65.55
- 99 88.222 913 9 0 -9.79034 2.72941 64.15
- 99 166.961 851 8 1 -9.75761 2.7189 35.55
- 99 179.416 913 8 0 -9.75577 2.71932 34.15
- 99 126.754 851 7 1 -9.71706 2.7334 5.55
- 99 150.235 913 7 0 -9.71517 2.7347 4.15
- 99 117.053 851 6 1 -9.67232 2.77011 -24.45
- 99 163.892 913 6 0 -9.67072 2.77319 -25.85
- 99 112.251 852 5 1 -9.64213 2.83333 -54.45
- 99 188.703 913 5 0 -9.64024 2.83478 -55.85
- 99 96.7325 852 4 1 -9.59586 2.86875 -84.45
- 99 133.913 914 4 0 -9.59298 2.86738 -85.85
- 99 102.882 852 3 1 -9.52735 2.83676 -114.45
- 99 100.342 913 3 0 -9.52347 2.83659 -115.85
- 99 108.464 853 2 1 -9.44461 2.8469 -144.45
- 99 130.676 913 2 0 -9.44136 2.84691 -145.85
- 99 94.7274 853 1 1 -9.38665 2.84424 -174.45
- 99 116.171 913 1 0 -9.38405 2.8425 -175.85
- 99 116.331 853 0 1 -9.33267 2.80485 -204.45
- 99 98.7165 913 0 0 -9.3297 2.80277 -205.85
- 99 176.66 852 8 1 -9.64993 2.69756 35.4654
-Number of digits in this event = 13
+Number of tracker hits in this event = 30
+ 99 102.515 329 9 1 -114.348 -31.3243 65.55
+ 99 131.171 743 9 0 -114.347 -31.3247 64.15
+ 99 112.975 329 8 1 -114.327 -31.3331 35.55
+ 99 130.289 743 8 0 -114.328 -31.3337 34.15
+ 99 119.44 329 7 1 -114.331 -31.3506 5.55
+ 99 145.624 743 7 0 -114.332 -31.3504 4.15
+ 99 361.869 328 6 1 -114.361 -31.3419 -24.45
+ 99 100.423 743 6 0 -114.361 -31.3402 -25.85
+ 99 148.775 328 5 1 -114.366 -31.3047 -54.45
+ 99 135.596 743 5 0 -114.367 -31.3023 -55.85
+ 99 125.283 328 4 1 -114.396 -31.2571 -84.45
+ 99 110.838 743 4 0 -114.398 -31.2538 -85.85
+ 99 235.427 328 3 1 -114.438 -31.1851 -114.45
+ 99 167.522 744 3 0 -114.439 -31.18 -115.85
+ 99 115.108 328 2 1 -114.472 -31.0759 -144.45
+ 99 110.954 744 2 0 -114.474 -31.0704 -145.85
+ 99 95.4167 328 1 1 -114.512 -30.9574 -174.45
+ 99 80.7097 745 1 0 -114.514 -30.953 -175.85
+ 99 188.291 327 0 1 -114.57 -30.847 -204.45
+ 99 118.212 746 0 0 -114.572 -30.8416 -205.85
+ 99 105.052 742 3 0 -114.569 -31.5276 -115.85
+ 99 109.506 308 2 1 -118.391 -35.849 -144.45
+ 99 120.946 720 2 0 -118.446 -36.0098 -145.851
+ 99 53.4862 719 2 0 -118.455 -36.05 -146.142
+ 99 126.746 298 1 1 -120.506 -40.7219 -174.45
+ 99 105.82 696 1 0 -120.617 -40.7934 -175.85
+ 99 134.17 277 0 1 -124.7 -44.4794 -204.45
+ 99 148.745 676 0 0 -124.447 -44.6842 -205.85
+ 99 70.5838 731 2 0 -116.409 -33.8218 -145.85
+ 99 97.1289 730 2 0 -116.439 -33.85 -146.027
+Number of digits in this event = 15
Run terminated.
Run Summary
Number of events processed : 100
- User=3.780000s Real=4.813706s Sys=0.030000s
+ User=4.170000s Real=5.670012s Sys=0.030000s
End of Run 0
/gun/particle gamma
/gun/energy 1 GeV
@@ -5745,3583 +5077,4197 @@ Cannot set FirstId as its value was already used.
done
Using G4ParticleGun ...
-1.25226 LIN
+5.44362 LIN
gamma
Event: 0
-Number of tracker hits in this event = 1
- 0 212.014 440 1 0 68.8864 -92.0362 -176.25
-Number of digits in this event = 2
+Number of tracker hits in this event = 114
+ 0 353.19 791 9 1 -21.6717 14.3953 65.55
+ 0 236.76 971 9 0 -21.6693 14.3932 64.15
+ 0 143.795 792 8 1 -21.6155 14.3683 35.55
+ 0 228.242 971 8 0 -21.6121 14.3768 34.15
+ 0 114.775 792 7 1 -21.5613 14.5373 5.55
+ 0 144.596 972 7 0 -21.5708 14.5462 4.15
+ 0 132.348 791 6 1 -21.7853 14.7239 -24.45
+ 0 149.031 973 6 0 -21.7252 14.7325 -25.85
+ 0 119.321 798 5 1 -20.3689 14.7472 -54.45
+ 0 138.728 973 5 0 -20.2999 14.7472 -55.85
+ 0 97.2799 807 4 1 -18.6002 15.0209 -84.45
+ 0 107.596 975 4 0 -18.4805 15.0608 -85.85
+ 0 132.382 820 3 1 -15.9226 15.5703 -114.45
+ 0 179.643 977 3 0 -15.8662 15.5818 -115.85
+ 0 106.03 825 2 1 -14.8624 15.5607 -144.45
+ 0 150.003 977 2 0 -14.8409 15.4836 -145.85
+ 0 220.072 827 1 1 -14.5593 13.7943 -174.45
+ 0 222.182 968 1 0 -14.5453 13.7017 -175.85
+ 0 114.061 829 0 1 -14.1171 12.1708 -204.45
+ 0 120.016 960 0 0 -14.1056 12.0799 -205.85
+ 0 250.739 969 3 0 -17.2671 13.8986 -115.85
+ 0 437.229 787 1 1 -22.5539 15.3928 -174.45
+ 0 295.783 976 1 0 -22.5569 15.399 -175.85
+ 0 422.415 787 0 1 -22.5374 15.6085 -204.45
+ 0 365.688 978 0 0 -22.5595 15.6644 -205.85
+ 0 12.208 975 1 0 -22.8194 15.0667 -175.85
+ 0 84.7568 974 1 0 -22.8301 15.05 -175.909
+ 0 67.6707 773 0 1 -25.4464 6.81281 -204.45
+ 0 55.6907 774 0 1 -25.25 6.82752 -204.602
+ 0 36.0956 775 0 1 -25.0498 6.83873 -204.784
+ 0 107.53 934 0 0 -23.9078 6.85097 -205.85
+ 0 140.357 933 0 0 -23.7477 6.85 -206.009
+ 0 38.2311 738 2 1 -32.3667 -12.5219 -144.85
+ 0 127.823 791 8 1 -21.69 14.416 35.55
+ 0 116.026 791 7 1 -21.805 14.383 5.55
+ 0 118.784 971 7 0 -21.8074 14.3828 4.15
+ 0 189.527 790 6 1 -21.8704 14.3683 -24.45
+ 0 192.488 971 6 0 -21.8764 14.3713 -25.85
+ 0 315.723 790 5 1 -22.0004 14.4311 -54.45
+ 0 137.491 971 5 0 -22.0102 14.4364 -55.85
+ 0 138.373 789 4 1 -22.211 14.5409 -84.45
+ 0 270.632 972 4 0 -22.2215 14.5419 -85.85
+ 0 99.2896 788 3 1 -22.4262 14.5555 -114.45
+ 0 98.6851 972 3 0 -22.4367 14.5589 -115.85
+ 0 131.215 787 2 1 -22.6319 14.6055 -144.45
+ 0 298.587 972 2 0 -22.6468 14.6111 -145.85
+ 0 128.706 785 1 1 -22.9754 14.7208 -174.45
+ 0 382.087 973 1 0 -22.989 14.7307 -175.85
+ 0 121.675 783 0 1 -23.2724 14.9365 -204.45
+ 0 100.089 974 0 0 -23.29 14.9444 -205.85
+ 0 143.766 786 2 1 -22.65 14.6002 -144.694
+ 0 81.7471 785 2 1 -22.85 14.4615 -144.75
+ 0 145.278 970 2 0 -22.9076 14.0809 -145.85
+ 0 43.3065 969 2 0 -22.8293 14.05 -145.976
+ 0 140.743 761 1 1 -27.6928 18.4057 -174.45
+ 0 174.858 995 1 0 -27.546 19.2495 -175.85
+ 0 106.152 996 1 0 -27.546 19.25 -175.851
+ 0 45.4446 997 1 0 -27.5028 19.4502 -176.104
+ 0 90.6916 983 1 0 -15.3182 16.779 -176.25
+ 0 90.0899 982 1 0 -15.223 16.65 -176.036
+ 0 141.894 828 1 1 -14.45 15.8896 -174.509
+ 0 138.641 829 1 1 -14.2499 16.0522 -174.651
+ 0 0.946073 830 1 1 -14.05 16.4737 -174.848
+ 0 61.4482 991 1 0 -12.9872 18.2895 -175.85
+ 0 56.6033 992 1 0 -12.8967 18.4504 -175.922
+ 0 70.9812 993 1 0 -12.805 18.6512 -175.917
+ 0 77.7866 994 1 0 -12.6541 18.85 -175.936
+ 0 198.988 841 1 1 -11.778 20.8865 -174.85
+ 0 88.6857 842 1 1 -11.6498 21.4027 -174.498
+ 0 264.832 788 1 1 -22.3812 14.777 -174.45
+ 0 173.603 781 0 1 -23.6725 15.3212 -204.45
+ 0 144.435 976 0 0 -23.751 15.4313 -205.851
+ 0 83.4337 977 0 0 -23.7605 15.45 -206.058
+ 0 279.139 972 5 0 -22.1204 14.4645 -55.85
+ 0 101.698 770 4 1 -25.912 13.7361 -84.4504
+ 0 1.91635 769 4 1 -26.05 13.6394 -84.8454
+ 0 135.954 966 4 0 -26.383 13.4086 -85.85
+ 0 73.872 731 3 1 -33.7655 8.17874 -114.451
+ 0 68.3293 730 3 1 -33.85 8.14034 -114.606
+ 0 24.5645 939 3 0 -34.4838 7.87476 -115.85
+ 0 132.791 938 3 0 -34.5391 7.84995 -115.959
+ 0 105.688 649 2 1 -50.1139 0.832148 -144.45
+ 0 71.8061 648 2 1 -50.25 0.657185 -144.686
+ 0 54.2464 898 2 0 -50.995 -0.324852 -145.85
+ 0 107.257 897 2 0 -51.1012 -0.45 -146.005
+ 0 9.56757 896 2 0 -51.2681 -0.65 -146.233
+ 0 147.098 536 1 1 -72.779 -25.66 -174.451
+ 0 81.4651 535 1 1 -72.85 -25.7224 -174.525
+ 0 83.3459 534 1 1 -73.05 -25.8984 -174.725
+ 0 138.677 765 1 0 -74.4189 -26.8954 -175.85
+ 0 105.968 764 1 0 -74.6309 -27.0501 -176.027
+ 0 139.234 527 1 0 -141.221 -74.4524 -176.25
+ 0 121.319 526 1 0 -141.47 -74.65 -176.021
+ 0 76.4039 187 1 1 -142.585 -75.5087 -174.85
+ 0 66.6413 186 1 1 -142.75 -75.6753 -174.635
+ 0 40.8221 472 2 0 -128.881 -85.6498 -146.25
+ 0 65.7973 471 2 0 -128.88 -85.65 -146.249
+ 0 45.8025 260 2 1 -128.046 -85.5226 -144.85
+ 0 211.63 261 2 1 -127.95 -85.4998 -144.68
+ 0 104.965 317 1 0 -175.362 -116.679 -176.25
+ 0 22.5896 316 1 0 -175.428 -116.75 -176.216
+ 0 85.8162 621 1 0 -164.09 -55.7794 -176.25
+ 0 140.725 622 1 0 -164.128 -55.65 -176.207
+ 0 159.282 903 2 0 -49.9609 0.76437 -145.85
+ 0 118.745 791 4 1 -21.8343 14.1434 -84.4506
+ 0 132.328 970 4 0 -21.8316 14.1459 -85.85
+ 0 108.203 793 3 1 -21.2797 14.1299 -114.45
+ 0 128.365 789 2 1 -22.0517 10.4035 -144.45
+ 0 106.102 950 2 0 -22.0661 10.2293 -145.85
+ 0 160.476 790 1 1 -21.9961 6.70123 -174.45
+ 0 101.779 932 1 0 -21.9029 6.52366 -175.85
+ 0 162.134 804 0 1 -19.2389 2.42835 -204.451
+ 0 144.229 911 0 0 -19.2043 2.36183 -205.851
+ 0 183.993 794 1 1 -21.2242 12.1756 -174.45
+Number of digits in this event = 60
Using G4ParticleGun ...
-9.10616 LIN
+9.07854 LIN
gamma
Event: 1
-Number of tracker hits in this event = 9
- 1 15.8145 736 1 1 -32.65 108.423 -174.775
- 1 76.2505 735 1 1 -32.85 108.419 -174.622
- 1 57.9095 734 1 1 -33.0501 108.382 -174.607
- 1 66.4028 733 1 1 -33.2502 108.414 -174.583
- 1 85.4281 732 1 1 -33.45 108.45 -174.661
- 1 144.792 1444 1 0 -34.1062 109.009 -175.85
- 1 30.6561 706 1 1 -38.7881 107.334 -174.85
- 1 171.218 1427 1 0 -40.1674 105.642 -175.85
- 1 157.427 702 1 1 -39.5386 105.524 -174.85
-Number of digits in this event = 5
-Using G4ParticleGun ...
-3.86463 LIN
+Number of tracker hits in this event = 103
+ 1 349.338 1125 10 1 45.2184 87.4856 95.55
+ 1 246.2 1337 10 0 45.2184 87.4862 94.15
+ 1 412.966 1125 9 1 45.2151 87.4997 65.55
+ 1 251.733 1337 9 0 45.2161 87.5006 64.15
+ 1 136.726 1125 8 1 45.2404 87.5196 35.55
+ 1 241.029 1337 8 0 45.2412 87.5186 34.15
+ 1 131.078 1126 7 1 45.2566 87.5101 5.55
+ 1 302.03 1337 7 0 45.2571 87.5114 4.15
+ 1 124.727 1126 6 1 45.2617 87.5442 -24.45
+ 1 321.872 1337 6 0 45.2604 87.5467 -25.85
+ 1 120.491 1125 5 1 45.2372 87.6133 -54.45
+ 1 213.852 1337 5 0 45.2376 87.6176 -55.85
+ 1 183.559 1125 4 1 45.2463 87.691 -84.45
+ 1 243.823 1338 4 0 45.2459 87.6933 -85.85
+ 1 109.211 1125 3 1 45.2326 87.7475 -114.45
+ 1 128.084 1338 3 0 45.2328 87.751 -115.85
+ 1 134.476 1125 2 1 45.2376 87.8206 -144.45
+ 1 526.597 1338 2 0 45.2379 87.8226 -145.85
+ 1 107.917 1125 1 1 45.2307 87.8522 -174.45
+ 1 133.015 1339 1 0 45.2294 87.8507 -175.85
+ 1 304.087 1125 0 1 45.2069 87.8063 -204.45
+ 1 212.051 1338 0 0 45.2054 87.8016 -205.85
+ 1 198.136 1339 0 0 45.1728 87.85 -205.991
+ 1 128.302 1758 14 1 171.857 56.2942 215.15
+ 1 180.921 1336 3 0 45.9755 87.3237 -116.136
+ 1 64.1634 1157 2 1 51.4924 87.358 -144.45
+ 1 92.0235 1158 2 1 51.6501 87.272 -144.594
+ 1 102.179 1331 2 0 51.8092 86.4438 -145.85
+ 1 58.5714 1330 2 0 51.8159 86.25 -146.123
+ 1 73.3622 1299 2 0 105.3 79.9517 -146.25
+ 1 102.971 1300 2 0 105.513 80.05 -146.173
+ 1 130.487 1112 2 1 42.5377 86.3907 -144.45
+ 1 2.86439 1113 2 1 42.65 86.1331 -144.839
+ 1 81.3193 1327 2 0 42.9849 85.5735 -145.85
+ 1 76.8664 1326 2 0 43.0586 85.45 -146.056
+ 1 57.7816 924 2 0 69.3435 5.02785 -146.25
+ 1 156.339 923 2 0 69.3869 4.84991 -146.161
+ 1 77.8024 922 2 0 69.4235 4.65 -146.063
+ 1 128.811 921 2 0 69.3684 4.44951 -145.974
+ 1 35.5523 920 2 0 69.2687 4.24994 -145.895
+ 1 181.995 1236 2 1 67.3839 1.38754 -144.85
+ 1 113.483 1235 2 1 67.25 1.17918 -144.785
+ 1 589.34 1234 2 1 67.0495 0.819156 -144.705
+ 1 795.827 1233 2 1 66.85 0.327885 -144.67
+ 1 248.254 876 2 0 66.7757 -4.71312 -145.85
+ 1 25.214 931 2 0 59.2846 6.37983 -146.25
+ 1 81.1814 932 2 0 59.2782 6.45016 -146.193
+ 1 96.3647 933 2 0 59.2064 6.65 -146.001
+ 1 244.935 1181 2 1 56.4117 8.01335 -144.85
+ 1 63.1487 1182 2 1 56.45 8.44175 -144.776
+ 1 430.684 945 2 0 59.6166 9.06459 -145.85
+ 1 18.2427 946 2 0 59.7429 9.25 -145.968
+ 1 92.0564 1232 2 1 66.65 -0.588322 -144.634
+ 1 126.172 1231 2 1 66.45 -0.63746 -144.566
+ 1 159.71 1230 2 1 66.25 -0.597148 -144.471
+ 1 113.542 1126 8 1 45.3306 87.5574 35.55
+ 1 116.812 1127 7 1 45.5024 87.6014 5.55
+ 1 155.404 1127 6 1 45.6243 87.6115 -24.45
+ 1 120.237 1128 5 1 45.7998 87.5071 -54.45
+ 1 133.55 1129 4 1 45.9304 87.4449 -84.45
+ 1 149.886 1336 4 0 45.9366 87.4391 -85.85
+ 1 108.876 1130 3 1 46.0797 87.3066 -114.45
+ 1 117.129 1130 2 1 46.1569 87.4265 -144.45
+ 1 102.534 1336 2 0 46.158 87.4302 -145.85
+ 1 121.059 1130 1 1 46.1821 87.4948 -174.45
+ 1 123.774 1337 1 0 46.1766 87.497 -175.85
+ 1 108.299 1130 0 1 46.077 87.6355 -204.45
+ 1 121.78 1337 0 0 46.1417 87.5097 -205.85
+ 1 183.592 1129 5 1 45.9241 87.7745 -54.5405
+ 1 273.137 1338 5 0 45.9365 87.7744 -55.85
+ 1 101.804 1130 4 1 46.0704 87.8243 -84.45
+ 1 122.46 1134 3 1 47.0099 87.6018 -114.45
+ 1 141.598 1337 3 0 47.0363 87.6126 -115.85
+ 1 380.586 1137 2 1 47.525 87.7812 -144.45
+ 1 115.471 1128 1 1 45.7608 87.4913 -174.45
+ 1 106.827 1336 1 0 45.7331 87.3983 -175.85
+ 1 123.243 1329 0 0 45.0082 85.8796 -205.85
+ 1 140.029 1139 1 1 48.0297 87.2413 -174.45
+ 1 1.1885 1140 1 1 48.05 87.1838 -174.845
+ 1 234.7 1334 1 0 48.1087 87.0222 -175.85
+ 1 108.634 1149 0 1 49.9013 82.8761 -204.45
+ 1 132.627 1313 0 0 49.9981 82.7298 -205.85
+ 1 153.779 1150 1 1 50.1806 85.8964 -174.45
+ 1 234.272 1327 1 0 50.318 85.6319 -175.85
+ 1 33.2882 1163 0 1 52.8376 80.0474 -204.45
+ 1 94.4245 1164 0 1 52.85 80.0233 -204.546
+ 1 87.0523 1298 0 0 53.0028 79.7064 -205.85
+ 1 52.1283 1297 0 0 53.03 79.6497 -206.079
+ 1 136.63 1131 4 1 46.3318 88.4945 -84.45
+ 1 119.861 1342 4 0 46.3701 88.4699 -85.85
+ 1 114.716 1133 3 1 46.7494 87.8715 -114.45
+ 1 175.229 1339 3 0 46.6633 87.8846 -115.85
+ 1 117.032 1123 2 1 44.7881 88.0752 -144.45
+ 1 134.443 1339 2 0 44.7226 88.0339 -145.85
+ 1 114.053 1115 1 1 43.2387 87.0153 -174.45
+ 1 154.187 1111 0 1 42.4014 86.1399 -204.45
+ 1 191.258 1330 0 0 42.3373 86.0863 -205.85
+ 1 56.1666 1326 0 0 41.6087 85.2726 -205.85
+ 1 89.0063 1325 0 0 41.5861 85.25 -205.878
+ 1 326.494 1362 0 0 32.5196 92.5929 -206.25
+ 1 113.187 648 3 1 -50.25 120.736 -114.674
+ 1 161.823 1126 9 1 45.2502 87.5396 65.5394
+ 1 332.857 1338 9 0 45.6443 87.7519 64.15
+Number of digits in this event = 63
+Using G4ParticleGun ...
+7.94889 LIN
gamma
Event: 2
-Number of tracker hits in this event = 14
- 2 239.066 755 3 1 -28.8627 46.7257 -114.45
- 2 364.05 1133 3 0 -28.8663 46.7221 -115.85
- 2 471.183 755 2 1 -28.9327 46.6348 -144.45
- 2 154.489 1132 2 0 -28.9392 46.6248 -145.85
- 2 123.756 754 1 1 -29.0661 46.4149 -174.45
- 2 108.907 1131 1 0 -29.0762 46.4045 -175.85
- 2 252.403 753 0 1 -29.3082 46.2043 -204.45
- 2 149.961 1130 0 0 -29.3204 46.1886 -205.85
- 2 39.9787 1271 2 0 2.20085 74.25 -146.239
- 2 102.084 1133 2 0 -28.8984 46.7132 -145.85
- 2 117.357 755 1 1 -28.8852 46.6522 -174.45
- 2 104.625 1132 1 0 -28.8828 46.6492 -175.85
- 2 254.457 756 0 1 -28.8246 46.6103 -204.45
- 2 207.805 1132 0 0 -28.8157 46.6293 -205.85
-Number of digits in this event = 10
+Number of tracker hits in this event = 0
+Number of digits in this event = 2
Using G4ParticleGun ...
-2.96898 LIN
+4.19062 LIN
gamma
Event: 3
-Number of tracker hits in this event = 29
- 3 230.762 417 4 1 -96.6925 45.5706 -84.45
- 3 287.471 1127 4 0 -96.6905 45.5742 -85.85
- 3 242.201 417 3 1 -96.6641 45.6448 -114.45
- 3 364.163 1127 3 0 -96.6577 45.6483 -115.85
- 3 96.2203 418 2 1 -96.5265 45.7278 -144.45
- 3 234.697 1128 2 0 -96.5192 45.7329 -145.85
- 3 134.337 418 1 1 -96.3841 45.8323 -174.45
- 3 263.148 1128 1 0 -96.3766 45.8346 -175.85
- 3 150.806 419 0 1 -96.2235 45.8811 -204.45
- 3 215.336 1129 0 0 -96.2135 45.8823 -205.85
- 3 47.3096 1479 0 0 5.9458 116.052 -206.25
- 3 131.577 1128 3 0 -96.8841 45.6593 -115.85
- 3 139.773 389 2 1 -102.197 45.607 -144.45
- 3 121.081 373 1 1 -105.481 46.9447 -174.45
- 3 114.21 1134 1 0 -105.704 46.8776 -175.85
- 3 134.623 341 0 1 -111.905 44.7945 -204.45
- 3 70.7542 1128 0 0 -111.78 45.777 -205.85
- 3 2.20081 1130 0 0 -111.731 46.0502 -206.241
- 3 223.262 1128 4 0 -96.5803 45.6501 -85.9597
- 3 115.501 424 3 1 -95.2156 45.4619 -114.45
- 3 67.2319 434 2 1 -93.1826 45.5335 -144.45
- 3 34.3951 435 2 1 -93.15 45.5332 -144.715
- 3 126.504 1127 2 0 -93.0053 45.5313 -145.85
- 3 132.888 454 1 1 -89.2372 45.4109 -174.45
- 3 17.3511 1129 1 0 -88.8027 45.85 -176.205
- 3 2.4074 490 0 1 -81.8545 52.768 -204.45
- 3 116.056 491 0 1 -81.85 52.7714 -204.465
- 3 190.074 1165 0 0 -81.4466 53.074 -205.85
- 3 81.7116 595 2 0 -145.702 -60.85 -146.185
-Number of digits in this event = 19
-Using G4ParticleGun ...
-9.17226 LIN
+Number of tracker hits in this event = 41
+ 3 270.681 639 7 1 -52.2145 -138.396 5.55
+ 3 215.241 208 7 0 -52.2122 -138.395 4.15
+ 3 145.767 639 6 1 -52.1724 -138.377 -24.45
+ 3 131.954 208 6 0 -52.1698 -138.375 -25.85
+ 3 142.221 639 5 1 -52.1258 -138.32 -54.45
+ 3 101.201 209 5 0 -52.1228 -138.317 -55.85
+ 3 148.028 639 4 1 -52.0661 -138.255 -84.45
+ 3 177.834 209 4 0 -52.0638 -138.254 -85.85
+ 3 360.341 640 3 1 -52.0149 -138.249 -114.45
+ 3 129.625 209 3 0 -52.0116 -138.252 -115.85
+ 3 123.857 640 2 1 -51.9408 -138.305 -144.45
+ 3 127.787 209 2 0 -51.9354 -138.308 -145.85
+ 3 161.421 641 1 1 -51.8188 -138.375 -174.45
+ 3 143.939 208 1 0 -51.8148 -138.379 -175.85
+ 3 562.189 641 0 1 -51.7308 -138.447 -204.45
+ 3 422.254 208 0 0 -51.7277 -138.449 -205.85
+ 3 344.528 84 2 0 -0.62254 -163.171 -146.25
+ 3 503.646 85 2 0 -0.132384 -163.15 -146.055
+ 3 450.779 909 2 1 1.88877 -162.226 -144.85
+ 3 149.613 910 2 1 2.05021 -162.197 -144.777
+ 3 163.597 911 2 1 2.25023 -162.229 -144.718
+ 3 90.0757 912 2 1 2.4502 -162.411 -144.653
+ 3 58.3388 908 2 1 1.85 -161.982 -144.574
+ 3 110.97 86 2 0 1.04514 -162.95 -146.177
+ 3 7.06414 210 3 0 -52.0465 -138.15 -116.247
+ 3 30.116 622 3 0 -147.699 -55.4622 -116.25
+ 3 253.522 623 3 0 -147.7 -55.4495 -116.238
+ 3 122.395 640 6 1 -52.0103 -137.801 -24.45
+ 3 122.082 211 6 0 -52.0027 -137.785 -25.85
+ 3 136.488 640 5 1 -51.8802 -137.446 -54.45
+ 3 112.501 213 5 0 -51.8722 -137.429 -55.85
+ 3 149.305 641 4 1 -51.7328 -136.992 -84.45
+ 3 178.308 215 4 0 -51.7495 -136.98 -85.85
+ 3 171.896 639 3 1 -52.1085 -136.755 -114.45
+ 3 114.711 217 3 0 -52.1443 -136.743 -115.85
+ 3 110.383 635 2 1 -52.9326 -136.552 -144.45
+ 3 123.556 217 2 0 -52.9639 -136.552 -145.85
+ 3 263.989 632 1 1 -53.4602 -136.505 -174.45
+ 3 120.664 218 1 0 -53.5227 -136.443 -175.85
+ 3 132.125 625 0 1 -54.9962 -135.157 -204.45
+ 3 90.7651 225 0 0 -55.0492 -135.15 -205.85
+Number of digits in this event = 33
+Using G4ParticleGun ...
+2.54087 LIN
gamma
Event: 4
-Number of tracker hits in this event = 1
- 4 83.954 1489 13 1 118 167.292 185.15
-Number of digits in this event = 2
+Number of tracker hits in this event = 21
+ 4 296.903 653 2 1 -49.4036 -63.0635 -144.45
+ 4 237.966 584 2 0 -49.4022 -63.0641 -145.85
+ 4 100.994 653 1 1 -49.3803 -63.1086 -174.45
+ 4 109.802 584 1 0 -49.3748 -63.1011 -175.85
+ 4 172.186 654 0 1 -49.2133 -63.0027 -204.45
+ 4 235.889 585 0 0 -49.195 -63.0159 -205.85
+ 4 120.301 652 1 1 -49.4918 -62.9945 -174.45
+ 4 166.398 585 1 0 -49.497 -62.9888 -175.85
+ 4 114.465 652 0 1 -49.5943 -62.8758 -204.45
+ 4 8.03158 731 1 0 -41.9713 -33.66 -176.25
+ 4 106.235 732 1 0 -41.9659 -33.65 -176.224
+ 4 125.392 733 1 0 -41.8561 -33.45 -176.089
+ 4 274.444 734 1 0 -41.821 -33.25 -175.975
+ 4 36.8271 399 1 0 -37.3901 -100.337 -176.25
+ 4 73.8103 398 1 0 -37.3895 -100.35 -176.225
+ 4 67.8635 397 1 0 -37.2619 -100.55 -176.155
+ 4 54.3197 396 1 0 -37.2181 -100.75 -176.161
+ 4 93.9282 395 1 0 -37.2433 -100.95 -176.225
+ 4 190.398 394 1 0 -37.3104 -101.15 -176.223
+ 4 62.9513 709 1 1 -38.2436 -100.743 -174.85
+ 4 319.837 708 1 1 -38.25 -100.734 -174.84
+Number of digits in this event = 11
Using G4ParticleGun ...
-8.97753 LIN
+7.84602 LIN
gamma
Event: 5
-Number of tracker hits in this event = 45
- 5 332.617 891 5 1 -1.69865 41.0719 -54.45
- 5 582.955 1105 5 0 -1.69822 41.072 -55.85
- 5 236.036 891 4 1 -1.69199 41.0796 -84.45
- 5 266.376 1105 4 0 -1.69264 41.0804 -85.85
- 5 527.895 891 3 1 -1.69674 41.0968 -114.45
- 5 593.789 1105 3 0 -1.69724 41.0993 -115.85
- 5 518.078 891 2 1 -1.71937 41.1403 -144.45
- 5 660.151 1105 2 0 -1.71718 41.1428 -145.85
- 5 120.707 891 1 1 -1.66061 41.2007 -174.45
- 5 234.013 1105 1 0 -1.65605 41.2034 -175.85
- 5 326.071 892 0 1 -1.56263 41.2566 -204.45
- 5 153.266 1106 0 0 -1.557 41.2603 -205.85
- 5 44.3793 1617 12 0 142.677 143.625 153.75
- 5 486.346 1618 12 0 142.932 143.75 154.09
- 5 64.8817 1619 12 0 143.665 143.95 153.791
- 5 141.794 890 2 1 -1.85005 41.0896 -144.543
- 5 263.907 892 1 1 -1.61104 41.1533 -174.45
- 5 117.344 1105 0 0 -1.53503 41.1944 -205.85
- 5 118.378 532 7 1 -73.45 -51.3255 5.35912
- 5 153.026 642 8 0 84.6329 -51.5685 33.75
- 5 256.066 643 8 0 84.5673 -51.45 34.0868
- 5 58.4183 893 0 1 -1.45 41.1854 -204.734
- 5 145.081 1103 0 0 -0.69412 40.7847 -205.85
- 5 1.82933 1104 3 0 -1.76908 41.05 -116.243
- 5 67.9332 862 2 1 -7.6016 38.4122 -144.45
- 5 42.8459 861 2 1 -7.65 38.4139 -144.701
- 5 139.994 1091 2 0 -7.87919 38.4372 -145.85
- 5 118.667 830 1 1 -13.8884 39.8325 -174.45
- 5 111.267 1098 1 0 -14.089 39.7186 -175.85
- 5 0.252316 798 0 1 -20.45 42.123 -204.45
- 5 138.717 797 0 1 -20.4501 42.1233 -204.451
- 5 95.6714 1112 0 0 -20.6254 42.5409 -205.85
- 5 31.9253 1113 0 0 -20.6633 42.65 -206.174
- 5 129.515 1106 1 0 -1.61877 41.4294 -175.85
- 5 107.064 891 0 1 -1.80667 41.5985 -204.45
- 5 156.792 1107 0 0 -1.81494 41.6151 -205.85
- 5 82.0107 1669 0 0 -25.781 153.95 -206.084
- 5 91.9809 892 5 1 -1.65 41.0574 -54.5897
- 5 106.031 1106 5 0 -0.961035 41.25 -56.0534
- 5 176.1 1093 5 0 119.79 38.7632 -56.2499
- 5 19.7715 1092 5 0 120.11 38.65 -55.9011
- 5 135.996 1501 5 1 120.436 38.3279 -54.85
- 5 65.3694 1502 5 1 120.55 38.5287 -54.581
- 5 459.575 1503 5 1 120.75 38.6227 -54.6213
- 5 177.772 1504 5 1 120.95 38.711 -54.6911
-Number of digits in this event = 28
-Using G4ParticleGun ...
-5.32377 LIN
+Number of tracker hits in this event = 146
+ 5 274.192 695 11 1 -40.9995 -2.97981 125.55
+ 5 377.031 885 11 0 -40.9999 -2.97962 124.15
+ 5 300.832 695 10 1 -41.0081 -2.97857 95.55
+ 5 449.387 885 10 0 -41.0103 -2.98189 94.15
+ 5 198.581 694 9 1 -41.0684 -3.04855 65.55
+ 5 115.549 884 9 0 -41.0694 -3.05212 64.15
+ 5 590.072 694 8 1 -41.1006 -3.11266 35.55
+ 5 264.968 884 8 0 -41.1005 -3.11134 34.15
+ 5 331.447 694 7 1 -41.0919 -3.07283 5.55
+ 5 113.439 884 7 0 -41.091 -3.0647 4.15
+ 5 243.212 694 6 1 -41.0601 -2.90542 -24.45
+ 5 274.53 885 6 0 -41.0634 -2.89223 -25.85
+ 5 295.97 694 5 1 -41.1162 -2.60423 -54.45
+ 5 158.857 887 5 0 -41.1277 -2.57475 -55.85
+ 5 173.121 693 4 1 -41.3761 -1.96903 -84.45
+ 5 133.675 890 4 0 -41.3943 -1.95175 -85.85
+ 5 115.554 691 3 1 -41.8127 -1.49951 -114.45
+ 5 110.126 892 3 0 -41.8419 -1.4749 -115.85
+ 5 114.238 688 2 1 -42.3919 -1.03749 -144.45
+ 5 133.314 894 2 0 -42.2359 -1.06757 -145.85
+ 5 126.565 706 1 1 -38.8164 -1.55345 -174.45
+ 5 158.24 893 1 0 -38.4089 -1.40879 -175.85
+ 5 126.81 753 0 1 -29.3414 2.25866 -204.451
+ 5 64.2855 911 0 0 -29.1485 2.422 -205.85
+ 5 52.0239 912 0 0 -29.1139 2.45002 -206.094
+ 5 28.9145 888 0 0 -37.1399 -2.40967 -206.25
+ 5 95.0483 887 0 0 -37.1956 -2.45 -206.182
+ 5 22.1195 886 0 0 -37.3492 -2.65041 -205.92
+ 5 73.8073 711 0 1 -37.8265 -3.75111 -204.85
+ 5 167.728 710 0 1 -37.85 -3.81987 -204.787
+ 5 261.268 712 0 1 -37.611 -4.53423 -204.45
+ 5 141.538 713 0 1 -37.45 -4.58743 -204.621
+ 5 264.979 874 0 0 -36.6245 -5.05035 -205.85
+ 5 39.135 875 0 0 -36.0416 -5.05 -206.068
+ 5 5.90644 1302 0 1 80.4676 -64.9514 -204.45
+ 5 85.9571 1063 0 0 -9.33444 32.65 -206.1
+ 5 150.368 895 2 0 -42.4389 -1.00691 -145.996
+ 5 146.464 685 1 1 -42.9372 -0.624577 -174.45
+ 5 104.91 897 1 0 -42.9873 -0.543888 -175.85
+ 5 108.754 682 0 1 -43.6374 0.986543 -204.45
+ 5 99.5956 905 0 0 -43.6394 1.19544 -205.85
+ 5 18.31 906 0 0 -43.6455 1.25003 -206.199
+ 5 49.2366 672 1 1 -45.5529 -4.11711 -174.45
+ 5 110.406 671 1 1 -45.65 -4.21123 -174.557
+ 5 17.2618 670 1 1 -45.85 -4.43028 -174.798
+ 5 54.7254 873 1 0 -46.6543 -5.32852 -175.85
+ 5 94.723 872 1 0 -46.7643 -5.45 -175.985
+ 5 55.4631 782 1 0 -64.9694 -23.4956 -176.25
+ 5 96.3557 783 1 0 -64.9443 -23.4498 -176.078
+ 5 80.5458 579 1 1 -64.2305 -23.3926 -174.85
+ 5 128.092 580 1 1 -64.05 -23.34 -174.622
+ 5 89.5854 900 0 0 -42.4103 0.102005 -205.85
+ 5 71.5289 695 6 1 -40.9723 -2.83801 -24.45
+ 5 301.762 696 6 1 -40.85 -2.69886 -24.5313
+ 5 242.969 697 6 1 -40.6496 -2.69386 -24.6404
+ 5 185.653 315 3 0 173.131 -116.974 -116.25
+ 5 28.253 871 0 0 -14.9241 -5.81689 -206.25
+ 5 322.268 870 0 0 -14.8498 -5.85002 -206.187
+ 5 41.0438 869 0 0 -14.7147 -6.05 -205.912
+ 5 136.25 826 0 1 -14.6665 -6.77252 -204.849
+ 5 617.268 695 9 1 -41.05 -3.04375 65.2198
+ 5 337.647 885 8 0 -41.128 -2.97633 34.15
+ 5 64.2953 682 7 1 -43.5175 0.295078 5.54958
+ 5 89.6086 681 7 1 -43.65 0.319603 5.42324
+ 5 37.5424 680 7 1 -43.85 0.353138 5.22884
+ 5 156.777 902 7 0 -45.1066 0.523065 4.15
+ 5 70.3379 903 7 0 -45.5382 0.65 3.87999
+ 5 51.8476 433 6 1 -93.3915 22.2713 -24.4501
+ 5 108.27 432 6 1 -93.55 22.2587 -24.5435
+ 5 62.6347 431 6 1 -93.75 22.2454 -24.6766
+ 5 16.8777 430 6 1 -93.95 22.2386 -24.818
+ 5 172.021 1010 6 0 -95.351 22.1789 -25.8503
+ 5 32.2478 259 5 1 -128.285 25.2597 -54.4502
+ 5 119.613 258 5 1 -128.35 25.2954 -54.5415
+ 5 118.392 1028 5 0 -129.058 25.7648 -55.8502
+ 5 14.4959 812 5 0 -179.937 -17.5953 -56.25
+ 5 61.4108 811 5 0 -179.977 -17.65 -56.2133
+ 5 4.00441 810 5 0 -180.141 -17.85 -56.0737
+ 5 8.65966 883 8 0 -41.1579 -3.25 33.7846
+ 5 111.171 691 7 1 -41.6642 -5.59678 5.55
+ 5 95.9901 871 7 0 -41.7596 -5.70325 4.15
+ 5 35.2483 684 6 1 -43.2291 -6.14109 -24.45
+ 5 77.8744 683 6 1 -43.25 -6.14767 -24.5716
+ 5 142.806 869 6 0 -43.4617 -6.20628 -25.85
+ 5 132.945 654 5 1 -49.0542 -6.39609 -54.4503
+ 5 108.69 868 5 0 -49.025 -6.33285 -55.85
+ 5 242.168 666 4 1 -46.8129 -3.69004 -84.45
+ 5 19.3723 667 4 1 -46.6499 -3.66292 -84.7658
+ 5 209.431 884 4 0 -45.9757 -3.18028 -85.8501
+ 5 57.6188 885 4 0 -45.7854 -3.04984 -86.1183
+ 5 110.812 778 3 1 -24.3726 0.25778 -114.45
+ 5 204.629 900 3 0 -24.1108 0.168285 -115.85
+ 5 47.0733 524 3 0 6.16819 -75.1076 -116.25
+ 5 58.3816 523 3 0 6.16044 -75.25 -116.197
+ 5 97.0878 522 3 0 6.14353 -75.45 -116.145
+ 5 61.5108 521 3 0 6.09988 -75.65 -116.106
+ 5 66.3498 520 3 0 6.00377 -75.85 -116.015
+ 5 30.8045 519 3 0 5.87555 -76.0506 -115.874
+ 5 13.8345 923 3 1 4.67591 -78.2573 -114.85
+ 5 90.2082 922 3 1 4.65 -78.3016 -114.827
+ 5 84.701 921 3 1 4.45 -78.5724 -114.678
+ 5 169.92 920 3 1 4.20992 -78.7717 -114.45
+ 5 129.149 505 3 0 3.96988 -78.987 -115.85
+ 5 278.748 504 3 0 4.08492 -79.05 -116.052
+ 5 61.3742 869 5 0 -40.5972 -6.11338 -56.1342
+ 5 109.773 802 5 0 -7.37017 -19.474 -56.2493
+ 5 65.0607 801 5 0 -7.27778 -19.65 -55.9294
+ 5 94.2441 800 5 0 -7.17776 -19.8505 -55.8812
+ 5 151.041 799 5 0 -6.98408 -20.05 -55.9331
+ 5 302.917 1004 5 0 56.1938 20.8753 -56.25
+ 5 183.441 1005 5 0 56.1673 21.05 -56.0921
+ 5 178.449 1180 5 1 56.1185 21.5719 -54.85
+ 5 115.351 885 9 0 -41.0472 -2.93895 64.15
+ 5 138.839 885 7 0 -41.1071 -2.96863 4.15
+ 5 107.342 884 5 0 -41.1783 -3.09259 -55.85
+ 5 144.649 694 4 1 -41.2037 -3.16668 -84.45
+ 5 134.445 694 3 1 -41.2289 -3.22466 -114.45
+ 5 122.595 884 3 0 -41.2345 -3.22626 -115.85
+ 5 161.92 693 2 1 -41.3549 -3.26776 -144.45
+ 5 350.027 883 2 0 -41.3604 -3.26905 -145.85
+ 5 120.736 692 1 1 -41.4723 -3.27902 -174.45
+ 5 245.67 883 1 0 -41.4753 -3.28629 -175.85
+ 5 139.219 692 0 1 -41.5393 -3.41822 -204.45
+ 5 187.343 883 0 0 -41.5406 -3.42594 -205.85
+ 5 8.76309 862 5 0 173.883 -7.6364 -56.25
+ 5 124.6 861 5 0 173.984 -7.6501 -56.1657
+ 5 70.4881 860 5 0 174.221 -7.85 -56.1557
+ 5 61.9547 859 5 0 174.152 -8.05 -56.1601
+ 5 48.4361 780 5 0 -154.752 -23.9868 -56.25
+ 5 30.9964 822 0 1 -15.5009 1.0078 -204.45
+ 5 122.258 1090 1 1 38.0713 -18.2267 -174.85
+ 5 186.923 694 2 1 -41.226 -3.25294 -144.45
+ 5 32.3297 667 1 1 -46.6155 -6.70783 -174.45
+ 5 88.2503 666 1 1 -46.65 -6.71176 -174.57
+ 5 130.43 866 1 0 -47.034 -6.71435 -175.85
+ 5 24.768 623 0 1 -55.3683 -6.05978 -204.45
+ 5 84.5685 622 0 1 -55.4501 -6.06516 -204.547
+ 5 25.0749 621 0 1 -55.65 -6.07476 -204.777
+ 5 161.041 702 1 1 -39.6014 -3.35073 -174.45
+ 5 108.732 707 0 1 -38.5846 -3.09143 -204.45
+ 5 122.976 885 0 0 -38.4852 -2.95773 -205.85
+ 5 110.495 1782 10 1 176.55 85.7508 95.2233
+ 5 27.016 896 11 0 1.42094 -0.666492 123.75
+ 5 124.88 897 11 0 1.44768 -0.65 123.829
+ 5 404.525 905 11 1 1.15263 -0.962675 125.15
+ 5 222.178 906 11 1 1.25 -1.16606 125.312
+Number of digits in this event = 69
+Using G4ParticleGun ...
+6.89018 LIN
gamma
Event: 6
-Number of tracker hits in this event = 61
- 6 262.616 1153 9 1 50.772 2.89853 65.55
- 6 222.702 914 9 0 50.7717 2.89806 64.15
- 6 277.854 1153 8 1 50.7719 2.88453 35.55
- 6 217.786 914 8 0 50.772 2.88503 34.15
- 6 238.894 1153 7 1 50.7744 2.89703 5.55
- 6 144.966 914 7 0 50.7755 2.89995 4.15
- 6 115.831 1153 6 1 50.811 2.92387 -24.45
- 6 150.542 914 6 0 50.8123 2.92513 -25.85
- 6 133.796 1153 5 1 50.8428 2.94927 -54.45
- 6 106.093 914 5 0 50.8425 2.9555 -55.85
- 6 213.832 1153 4 1 50.8084 3.07306 -84.45
- 6 156.652 915 4 0 50.8068 3.07853 -85.85
- 6 91.2923 1153 3 1 50.7801 3.19031 -114.45
- 6 106.442 915 3 0 50.7813 3.19582 -115.85
- 6 125.577 1153 2 1 50.7969 3.30378 -144.45
- 6 115.956 916 2 0 50.7968 3.31397 -145.85
- 6 111.273 1153 1 1 50.7969 3.51582 -174.45
- 6 195.622 917 1 0 50.7992 3.52542 -175.85
- 6 105.023 1154 0 1 50.8624 3.73714 -204.45
- 6 440.602 918 0 0 50.8703 3.75043 -205.85
- 6 121.931 512 2 0 -13.5885 -77.45 -146.09
- 6 117.715 916 1 0 51.1022 3.41299 -175.85
- 6 75.7246 691 1 0 18.7792 -41.7792 -176.25
- 6 71.5879 690 1 0 18.7567 -41.85 -176.202
- 6 64.5769 689 1 0 18.7279 -42.0501 -176.104
- 6 71.338 688 1 0 18.7223 -42.25 -176.06
- 6 87.4134 687 1 0 18.7293 -42.45 -175.985
- 6 61.2543 686 1 0 18.7494 -42.65 -175.894
- 6 83.5142 997 1 1 19.5349 -45.2641 -174.85
- 6 60.5719 998 1 1 19.6502 -45.4573 -174.768
- 6 24.8573 999 1 1 19.85 -45.5782 -174.825
- 6 54.2306 661 1 0 23.1831 -47.7122 -175.85
- 6 121.597 660 1 0 23.3661 -47.85 -175.918
- 6 68.9368 659 1 0 23.4804 -48.05 -176.011
- 6 58.4248 658 1 0 23.5317 -48.25 -176.074
- 6 208.379 657 1 0 23.6112 -48.45 -176.1
- 6 7.18727 656 1 0 24.1132 -48.65 -175.864
- 6 26.977 1025 1 1 25.2087 -49.6521 -174.85
- 6 216.36 1026 1 1 25.25 -49.6999 -174.812
- 6 190.048 1027 1 1 25.45 -49.8852 -174.667
- 6 92.5431 1028 1 1 25.6503 -49.9101 -174.611
- 6 85.4531 1029 1 1 25.85 -49.8476 -174.557
- 6 405.54 1030 1 1 26.05 -49.9308 -174.603
- 6 158.091 913 7 0 50.7759 2.82674 4.15
- 6 161.492 1154 6 1 50.9651 2.64366 -24.45
- 6 1.206 912 6 0 50.9433 2.45052 -25.851
- 6 137.382 911 6 0 50.9433 2.45 -25.8548
- 6 102.54 1154 5 1 50.9019 -1.66637 -54.45
- 6 98.9286 891 5 0 50.9943 -1.71139 -55.8502
- 6 125.508 1160 4 1 52.1252 -2.28504 -84.4506
- 6 113.853 889 4 0 51.9359 -2.23185 -85.85
- 6 171.204 1134 3 1 47.0033 -1.50008 -114.45
- 6 142.38 891 3 0 46.58 -1.70497 -115.85
- 6 107.715 1091 2 1 38.4298 -5.89243 -144.45
- 6 7.02828 1090 2 1 38.25 -5.9449 -144.826
- 6 146.018 869 2 0 37.7562 -6.0763 -145.85
- 6 100.125 1021 1 1 24.4446 -9.53647 -174.45
- 6 163.925 852 1 0 23.8329 -9.59928 -175.85
- 6 85.338 949 0 1 9.99177 -10.8814 -204.45
- 6 54.7412 948 0 1 9.84989 -10.8578 -204.671
- 6 174.12 846 0 0 9.10541 -10.7414 -205.85
-Number of digits in this event = 29
+Number of tracker hits in this event = 55
+ 6 442.671 956 8 1 11.3623 -12.4404 35.55
+ 6 174.642 838 8 0 11.3627 -12.4405 34.15
+ 6 100.213 956 7 1 11.3744 -12.4482 5.55
+ 6 234.86 838 7 0 11.3748 -12.4493 4.15
+ 6 136.672 956 6 1 11.3873 -12.4721 -24.45
+ 6 107.711 837 6 0 11.3868 -12.474 -25.85
+ 6 259.311 956 5 1 11.378 -12.5141 -54.45
+ 6 111.889 837 5 0 11.3777 -12.5154 -55.85
+ 6 103.863 956 4 1 11.3711 -12.542 -84.45
+ 6 106.897 837 4 0 11.3701 -12.5446 -85.85
+ 6 164.069 956 3 1 11.3492 -12.5947 -114.45
+ 6 138.91 837 3 0 11.3478 -12.5987 -115.85
+ 6 130.651 956 2 1 11.3199 -12.68 -144.45
+ 6 140.746 836 2 0 11.3167 -12.681 -145.85
+ 6 107.678 955 1 1 11.2444 -12.7228 -174.45
+ 6 133.344 836 1 0 11.2416 -12.7268 -175.85
+ 6 123.655 955 0 1 11.1766 -12.8119 -204.45
+ 6 138.911 836 0 0 11.1755 -12.8158 -205.85
+ 6 299.438 956 1 1 11.25 -12.7196 -174.451
+ 6 234.394 1239 0 0 22.4633 67.85 -206
+ 6 11.6117 1240 0 0 22.3725 68.05 -205.913
+ 6 145.505 814 0 1 -17.05 -22.4033 -204.556
+ 6 23.1057 839 7 0 11.315 -12.2496 3.76452
+ 6 169.899 1064 7 0 53.482 33.0351 3.75
+ 6 199.063 1065 7 0 53.3799 33.05 4.05149
+ 6 43.5812 1162 7 1 52.5754 33.2981 5.15
+ 6 113.486 837 8 0 11.3291 -12.4597 34.15
+ 6 129.989 952 7 1 10.5694 -12.6767 5.54988
+ 6 133.173 837 7 0 10.5849 -12.6086 4.15
+ 6 188.665 957 6 1 11.6333 -11.4978 -24.4502
+ 6 147.595 843 6 0 11.5954 -11.2549 -25.85
+ 6 143.803 844 6 0 11.5947 -11.25 -25.8781
+ 6 299.943 955 5 1 11.1741 -6.48631 -54.45
+ 6 136.609 869 5 0 11.3232 -6.22411 -55.8501
+ 6 141.561 969 4 1 13.9198 -1.04055 -84.45
+ 6 28.1777 895 4 0 14.0574 -0.858646 -85.85
+ 6 133.551 896 4 0 14.0637 -0.84998 -85.9192
+ 6 136.88 982 3 1 16.6125 2.57142 -114.45
+ 6 197.379 913 3 0 16.6789 2.7896 -115.85
+ 6 24.5227 914 3 0 16.7049 2.85 -116.168
+ 6 273.561 996 2 1 19.3377 9.05291 -144.45
+ 6 45.3252 997 2 1 19.45 9.09576 -144.719
+ 6 133.696 946 2 0 19.9599 9.28961 -145.85
+ 6 1.15473 1054 1 1 31.0448 13.2353 -174.45
+ 6 90.1286 1055 1 1 31.05 13.2384 -174.457
+ 6 52.1756 1056 1 1 31.25 13.3469 -174.707
+ 6 1.55783 968 1 0 32.1004 13.8474 -175.85
+ 6 197.752 969 1 0 32.1053 13.8503 -175.857
+ 6 141.272 1175 0 1 55.1322 27.8304 -204.45
+ 6 52.8423 1043 0 0 55.4993 28.7371 -205.85
+ 6 71.9416 1044 0 0 55.5495 28.85 -206.029
+ 6 175.533 870 5 0 11.3428 -6.02551 -55.85
+ 6 171.39 840 8 0 10.9157 -11.9609 34.1499
+ 6 13.3599 941 8 1 8.42501 -9.93555 35.15
+ 6 29.5302 846 8 0 9.28421 -10.6815 34.15
+Number of digits in this event = 36
Using G4ParticleGun ...
-1.69792 LIN
+1.227 LIN
gamma
Event: 7
-Number of tracker hits in this event = 3
- 7 104.335 404 1 0 -28.5432 -99.2197 -176.25
- 7 19.5518 515 1 0 -37.0563 -77.05 -176.155
- 7 57.6987 1200 8 0 -39.4128 60.05 33.8412
+Number of tracker hits in this event = 1
+ 7 50.5174 934 12 0 109.792 6.87597 153.75
Number of digits in this event = 2
Using G4ParticleGun ...
-6.84805 LIN
+8.05787 LIN
gamma
Event: 8
-Number of tracker hits in this event = 34
- 8 252.61 406 6 1 -98.8841 -66.5576 -24.45
- 8 235.078 567 6 0 -98.884 -66.5556 -25.85
- 8 273.604 406 5 1 -98.8893 -66.5273 -54.45
- 8 239.069 567 5 0 -98.8888 -66.5265 -55.85
- 8 253.558 406 4 1 -98.8787 -66.5174 -84.45
- 8 271.155 567 4 0 -98.8766 -66.52 -85.85
- 8 273.358 406 3 1 -98.8122 -66.5715 -114.45
- 8 267.495 567 3 0 -98.8109 -66.572 -115.85
- 8 498.971 406 2 1 -98.7846 -66.5732 -144.45
- 8 531.684 567 2 0 -98.7861 -66.5715 -145.85
- 8 108.532 406 1 1 -98.8153 -66.5322 -174.45
- 8 220.549 567 1 0 -98.8172 -66.5312 -175.85
- 8 173.78 406 0 1 -98.8447 -66.5047 -204.45
- 8 279.331 567 0 0 -98.8437 -66.5067 -205.85
- 8 30.8916 627 0 0 -95.271 -54.497 -206.25
- 8 165.689 628 0 0 -95.2744 -54.4496 -206.184
- 8 21.7297 428 0 1 -94.3925 -55.3554 -204.85
- 8 238.174 429 0 1 -94.35 -55.3672 -204.819
- 8 120.762 405 2 1 -98.956 -66.6263 -144.45
- 8 283.361 405 1 1 -99.0161 -66.6256 -174.45
- 8 121.162 405 0 1 -99.0894 -66.6248 -204.45
- 8 173.621 570 1 0 -99.0065 -65.945 -175.85
- 8 124.773 408 0 1 -98.4843 -64.9223 -204.45
- 8 106.958 576 0 0 -98.5282 -64.797 -205.85
- 8 111.344 404 1 1 -99.1918 -66.4093 -174.45
- 8 111.403 568 1 0 -99.2076 -66.4014 -175.85
- 8 14.2029 403 0 1 -99.5477 -66.3399 -204.45
- 8 114.835 402 0 1 -99.55 -66.3408 -204.507
- 8 115.433 568 0 0 -99.6048 -66.3591 -205.85
- 8 8.53541 1677 12 0 136.661 155.745 153.75
- 8 208.835 1678 12 0 136.687 155.75 153.766
- 8 136.231 1679 12 0 136.989 155.95 153.824
- 8 41.9353 696 2 0 -96.171 -40.7302 -146.249
- 8 284.722 697 2 0 -96.1622 -40.65 -146.201
-Number of digits in this event = 26
+Number of tracker hits in this event = 0
+Number of digits in this event = 2
Using G4ParticleGun ...
-5.51898 LIN
+6.16205 LIN
gamma
Event: 9
-Number of tracker hits in this event = 7
- 9 189.086 316 6 1 -116.778 -60.5776 -24.85
- 9 245.141 630 1 0 -25.3941 -53.9232 -176.249
- 9 136.148 631 1 0 -25.431 -53.85 -176.071
- 9 94.2933 76 4 1 -164.844 20.5917 -84.85
- 9 48.2059 693 1 0 -86.9766 -41.45 -176.172
- 9 408.753 540 0 0 -81.1014 -71.9362 -206.25
- 9 96.9625 541 0 0 -81.3607 -71.8499 -206.214
-Number of digits in this event = 5
-Using G4ParticleGun ...
-8.09566 LIN
+Number of tracker hits in this event = 219
+ 9 232.77 580 9 1 -63.8835 62.2376 65.55
+ 9 225.55 1210 9 0 -63.883 62.2374 64.15
+ 9 215.831 580 8 1 -63.8722 62.238 35.55
+ 9 245.271 1210 8 0 -63.8718 62.2387 34.15
+ 9 108.733 580 7 1 -63.8756 62.2525 5.55
+ 9 297.175 1211 7 0 -63.8748 62.256 4.15
+ 9 412.763 580 6 1 -63.8604 62.335 -24.45
+ 9 561.124 1211 6 0 -63.8587 62.3406 -25.85
+ 9 162.72 581 5 1 -63.8267 62.451 -54.45
+ 9 124.046 1212 5 0 -63.8248 62.4574 -55.85
+ 9 117.956 581 4 1 -63.79 62.5851 -84.45
+ 9 147.561 1212 4 0 -63.7765 62.587 -85.85
+ 9 149.961 582 3 1 -63.4842 62.5788 -114.45
+ 9 172.276 1212 3 0 -63.4707 62.573 -115.85
+ 9 344.748 584 2 1 -63.2059 62.4516 -144.45
+ 9 121.929 1212 2 0 -63.1859 62.4517 -145.85
+ 9 98.3679 586 1 1 -62.7886 62.4793 -174.45
+ 9 123.809 1212 1 0 -62.7659 62.4833 -175.85
+ 9 218.302 588 0 1 -62.3301 62.6008 -204.45
+ 9 111.207 1212 0 0 -62.3087 62.605 -205.85
+ 9 338.42 581 2 1 -63.7983 62.7874 -144.45
+ 9 174.502 580 2 1 -63.85 62.7818 -144.741
+ 9 260.069 1214 2 0 -64.5144 62.9264 -145.85
+ 9 234.639 1213 2 0 -63.7175 62.8414 -145.85
+ 9 136.158 588 1 1 -62.3551 63.6565 -174.451
+ 9 137.145 1218 1 0 -62.3668 63.7046 -175.85
+ 9 144.286 587 0 1 -62.4825 63.9478 -204.45
+ 9 135.745 1219 0 0 -62.4901 63.8923 -205.85
+ 9 102.708 1211 2 0 -63.8477 62.3465 -145.85
+ 9 144.526 580 1 1 -63.9478 61.9135 -174.45
+ 9 140.282 1209 1 0 -63.9662 61.8681 -175.85
+ 9 94.3388 578 0 1 -64.3012 61.0176 -204.45
+ 9 113.633 1204 0 0 -64.3844 60.9536 -205.85
+ 9 118.28 556 1 1 -68.7073 66.321 -174.45
+ 9 202.475 1234 1 0 -69.1746 66.8827 -175.85
+ 9 94.5693 1235 1 0 -69.3097 67.05 -176.247
+ 9 68.8518 500 0 1 -79.9746 79.8761 -204.45
+ 9 83.759 499 0 1 -80.05 79.9209 -204.559
+ 9 4.65776 498 0 1 -80.25 80.0586 -204.84
+ 9 108.242 1302 0 0 -81.0301 80.5428 -205.85
+ 9 89.0975 1303 0 0 -81.1891 80.65 -206.03
+ 9 30.4463 1366 0 0 -109.775 93.5317 -206.25
+ 9 124.664 1367 0 0 -109.805 93.55 -206.146
+ 9 122.991 350 0 1 -110.038 93.6047 -204.85
+ 9 5.86652 348 0 1 -110.541 93.5286 -204.45
+ 9 125.328 347 0 1 -110.55 93.5339 -204.462
+ 9 474.495 1365 0 0 -111.182 93.3034 -205.85
+ 9 8.81268 1364 0 0 -112.563 93.15 -206.228
+ 9 28.1874 1124 0 0 -134.402 44.9555 -206.25
+ 9 92.8455 1123 0 0 -134.433 44.8494 -206.205
+ 9 522.931 1210 6 0 -63.8409 62.2237 -25.85
+ 9 125.445 586 5 1 -62.6696 61.0898 -54.4503
+ 9 145.854 1205 5 0 -62.6104 61.1348 -55.85
+ 9 120.028 592 4 1 -61.5365 62.1474 -84.45
+ 9 107.904 1210 4 0 -61.4469 62.2301 -85.85
+ 9 8.29785 1211 4 0 -61.424 62.25 -86.2129
+ 9 118.542 603 3 1 -59.2859 63.7128 -114.451
+ 9 17.8639 604 3 1 -59.25 63.7114 -114.781
+ 9 154.937 1218 3 0 -59.1332 63.7083 -115.85
+ 9 127.915 622 2 1 -55.5369 63.9096 -144.45
+ 9 275.202 1219 2 0 -55.2764 63.988 -145.85
+ 9 142.417 653 1 1 -49.394 65.7656 -174.45
+ 9 178.297 1226 1 0 -49.1838 65.3589 -175.85
+ 9 4.56211 1225 1 0 -49.1318 65.25 -176.228
+ 9 123.63 673 0 1 -45.316 57.1554 -204.45
+ 9 17.6201 1184 0 0 -45.2516 56.867 -205.85
+ 9 130.71 1183 0 0 -45.2485 56.85 -205.931
+ 9 46.8091 1220 2 0 -55.2797 64.0502 -146.099
+ 9 127.386 579 5 1 -64.174 60.9803 -54.45
+ 9 69.7637 1206 5 0 -63.8637 61.4184 -55.85
+ 9 250.044 1207 5 0 -63.8436 61.45 -55.9476
+ 9 156.061 604 4 1 -59.1877 71.8687 -84.45
+ 9 105.788 1261 4 0 -59.1951 72.3703 -85.85
+ 9 82.8453 1262 4 0 -59.1978 72.45 -86.0703
+ 9 151.612 601 3 1 -59.7751 82.0859 -114.45
+ 9 68.629 1313 3 0 -59.8859 82.7722 -115.85
+ 9 133.703 1314 3 0 -59.8983 82.8501 -116.011
+ 9 158.107 589 2 1 -62.1411 97.6286 -144.45
+ 9 112.173 1390 2 0 -62.511 98.1798 -145.851
+ 9 101.242 545 1 1 -70.9087 109.584 -174.45
+ 9 34.3243 544 1 1 -71.05 109.376 -174.726
+ 9 108.829 1442 1 0 -71.6207 108.71 -175.85
+ 9 93.2479 1441 1 0 -71.7416 108.55 -176.064
+ 9 81.72 1440 1 0 -71.9276 108.35 -176.201
+ 9 334.971 581 7 1 -63.7271 62.3185 5.55
+ 9 138.91 583 6 1 -63.4019 62.2892 -24.45
+ 9 109.697 584 5 1 -63.191 62.7537 -54.45
+ 9 108.244 1213 5 0 -63.1849 62.7653 -55.85
+ 9 101.916 584 4 1 -63.0771 63.0195 -84.45
+ 9 94.377 1214 4 0 -63.0854 63.0273 -85.85
+ 9 110.202 584 3 1 -63.2041 63.2116 -114.45
+ 9 118.851 1214 3 0 -63.285 62.9742 -115.85
+ 9 106.458 579 2 1 -64.1366 58.8688 -144.45
+ 9 40.9568 1195 2 0 -63.783 59.2283 -145.85
+ 9 107.722 1196 2 0 -63.7619 59.25 -145.935
+ 9 25.657 613 1 1 -57.4174 66.7836 -174.45
+ 9 116.533 612 1 1 -57.45 66.7997 -174.556
+ 9 127.337 549 0 1 -70.0857 72.9961 -204.45
+ 9 32.4935 548 0 1 -70.25 72.918 -204.732
+ 9 209.646 1263 0 0 -70.9209 72.748 -205.85
+ 9 278.61 1210 7 0 -63.7845 62.2407 4.15
+ 9 122.003 581 6 1 -63.7268 62.2458 -24.45
+ 9 114.615 582 5 1 -63.5924 61.7394 -54.45
+ 9 120.494 1208 5 0 -63.5877 61.6862 -55.85
+ 9 211.438 582 4 1 -63.5152 60.6772 -84.45
+ 9 166.836 1202 4 0 -63.5041 60.6038 -85.85
+ 9 188.805 583 3 1 -63.3007 59.1136 -114.45
+ 9 121.623 1194 3 0 -63.2954 59.0187 -115.85
+ 9 116.656 1184 2 0 -63.0755 56.957 -145.85
+ 9 186.172 583 1 1 -63.292 55.3599 -174.45
+ 9 177.646 1176 1 0 -63.3124 55.2891 -175.85
+ 9 160.461 583 0 1 -63.4261 54.1814 -204.45
+ 9 135.726 1170 0 0 -63.4396 54.1044 -205.85
+ 9 9.01853 1175 1 0 -63.3368 55.25 -176.214
+ 9 60.7895 655 1 0 -97.0831 -48.8574 -176.25
+ 9 88.829 654 1 0 -97.1277 -49.0503 -176.217
+ 9 56.9419 653 1 0 -97.188 -49.25 -176.208
+ 9 50.4679 652 1 0 -97.2579 -49.4505 -176.197
+ 9 57.9144 651 1 0 -97.3224 -49.65 -176.175
+ 9 69.3713 650 1 0 -97.3877 -49.85 -176.139
+ 9 63.4407 649 1 0 -97.4398 -50.05 -176.118
+ 9 74.0227 648 1 0 -97.4936 -50.25 -176.105
+ 9 57.4522 647 1 0 -97.5491 -50.45 -176.112
+ 9 85.8859 646 1 0 -97.6212 -50.65 -176.127
+ 9 66.6126 645 1 0 -97.7252 -50.85 -176.135
+ 9 68.3844 644 1 0 -97.8326 -51.05 -176.13
+ 9 53.5665 643 1 0 -97.9394 -51.25 -176.123
+ 9 72.5163 642 1 0 -98.0461 -51.45 -176.153
+ 9 62.9159 641 1 0 -98.1718 -51.65 -176.198
+ 9 29.2404 397 1 0 -156.877 -100.617 -176.25
+ 9 180.2 398 1 0 -156.94 -100.55 -176.168
+ 9 121.555 111 1 1 -157.771 -99.9309 -174.85
+ 9 42.1324 110 1 1 -157.95 -99.7868 -174.546
+ 9 385.908 1484 6 0 -39.1039 117.113 -26.25
+ 9 80.1119 1485 6 0 -39.0057 117.15 -26.1666
+ 9 68.7461 588 6 1 -62.2753 62.0182 -24.45
+ 9 292.82 589 6 1 -62.25 62.0469 -24.5203
+ 9 10.2421 590 6 1 -62.05 62.1603 -24.8222
+ 9 84.9578 1213 6 0 -61.0941 62.7053 -25.8501
+ 9 105.587 1214 6 0 -60.8377 62.85 -26.0243
+ 9 53.9365 1215 6 0 -60.6665 63.05 -26.16
+ 9 55.4079 1666 6 0 13.983 153.379 -26.25
+ 9 82.7601 1667 6 0 14.0778 153.55 -26.1425
+ 9 59.6623 1668 6 0 14.1894 153.75 -25.9942
+ 9 134.154 971 6 1 14.3508 155.157 -24.85
+ 9 131.523 972 6 1 14.45 155.511 -24.5802
+ 9 94.3757 973 6 1 14.6501 155.947 -24.622
+ 9 16.5262 1680 6 0 15.621 156.34 -25.85
+ 9 280.98 1681 6 0 15.6632 156.35 -25.8943
+ 9 21.6061 1682 6 0 16.3263 156.55 -26.2415
+ 9 73.3983 1216 6 0 -61.9524 63.3937 -25.85
+ 9 133.157 1217 6 0 -61.9186 63.45 -25.8788
+ 9 49.2265 1202 6 0 -58.4169 60.65 -25.9088
+ 9 50.5379 1212 6 0 -61.7393 62.45 -26.2098
+ 9 229.69 606 5 1 -58.7051 60.8703 -54.45
+ 9 123.844 547 4 1 -70.5106 73.9198 -84.45
+ 9 90.5175 546 4 1 -70.65 73.908 -84.5089
+ 9 55.4866 545 4 1 -70.85 73.8647 -84.5945
+ 9 57.5041 544 4 1 -71.05 73.8103 -84.6908
+ 9 67.3917 543 4 1 -71.25 73.7554 -84.7794
+ 9 9.02978 542 4 1 -71.4501 73.6702 -84.8376
+ 9 157.438 1258 4 0 -75.6867 71.8374 -85.85
+ 9 254.582 1257 4 0 -76.1654 71.65 -85.9446
+ 9 482.966 1256 4 0 -76.993 71.45 -86.0981
+ 9 162.842 1255 4 0 -78.5327 71.25 -86.0905
+ 9 93.7746 490 4 1 -81.9743 71.9961 -84.8499
+ 9 59.3038 489 4 1 -82.05 72.019 -84.8233
+ 9 73.2775 488 4 1 -82.25 72.1038 -84.7545
+ 9 78.4166 487 4 1 -82.4502 72.1764 -84.6836
+ 9 69.8714 486 4 1 -82.65 72.2315 -84.6307
+ 9 54.9548 485 4 1 -82.85 72.3125 -84.6147
+ 9 66.5217 484 4 1 -83.0501 72.3291 -84.5852
+ 9 90.3411 483 4 1 -83.25 72.3343 -84.5483
+ 9 52.9673 482 4 1 -83.45 72.3377 -84.5759
+ 9 57.9374 481 4 1 -83.65 72.3452 -84.5679
+ 9 67.2457 480 4 1 -83.85 72.3588 -84.5691
+ 9 49.9217 479 4 1 -84.05 72.3827 -84.5621
+ 9 58.7301 478 4 1 -84.25 72.3753 -84.5534
+ 9 59.5797 477 4 1 -84.45 72.3907 -84.5294
+ 9 40.9448 476 4 1 -84.65 72.4293 -84.4809
+ 9 55.2324 475 4 1 -84.8565 72.4613 -84.45
+ 9 62.9623 474 4 1 -85.05 72.4822 -84.4801
+ 9 55.8656 473 4 1 -85.25 72.4724 -84.5333
+ 9 57.6109 472 4 1 -85.45 72.4507 -84.6446
+ 9 59.4399 471 4 1 -85.65 72.4227 -84.7287
+ 9 57.0785 470 4 1 -85.8503 72.3904 -84.7783
+ 9 1.86917 1260 4 0 -87.539 72.0517 -85.85
+ 9 269.367 1259 4 0 -87.5472 72.05 -85.8556
+ 9 15.7397 1501 4 0 -167.336 120.521 -86.25
+ 9 127.11 1502 4 0 -167.329 120.55 -86.2036
+ 9 35.4115 1503 4 0 -167.328 120.75 -85.9149
+ 9 559.254 62 4 1 -167.708 122.136 -84.8498
+ 9 156.328 61 4 1 -167.75 122.439 -84.712
+ 9 115.198 496 2 1 -80.7938 136.735 -144.45
+ 9 121.807 495 2 1 -80.85 136.803 -144.588
+ 9 123.432 1203 5 0 -58.5648 60.82 -55.85
+ 9 80.381 612 4 1 -57.5741 60.2882 -84.45
+ 9 73.0709 613 4 1 -57.45 60.2202 -84.6407
+ 9 108.845 1199 4 0 -56.7442 59.9442 -85.85
+ 9 33.3816 1198 4 0 -56.5441 59.85 -86.1474
+ 9 116.577 876 4 0 -85.6275 -4.69524 -86.2499
+ 9 130.63 875 4 0 -85.8204 -4.85 -86.1516
+ 9 91.5313 874 4 0 -86.1253 -5.05012 -86.0302
+ 9 89.8031 873 4 0 -86.3328 -5.25 -85.936
+ 9 1.35475 872 4 0 -86.4716 -5.45 -85.8523
+ 9 46.5258 461 4 1 -87.7938 -7.60815 -84.85
+ 9 97.8264 460 4 1 -87.8501 -7.70822 -84.8017
+ 9 87.9267 459 4 1 -88.0503 -7.9665 -84.6496
+ 9 105.143 458 4 1 -88.25 -8.19336 -84.5379
+ 9 93.695 457 4 1 -88.45 -8.50273 -84.4865
+ 9 249.345 456 4 1 -88.65 -8.8448 -84.5413
+ 9 98.458 455 4 1 -88.85 -9.08538 -84.5888
+ 9 98.9178 454 4 1 -89.05 -9.34047 -84.6602
+ 9 119.193 453 4 1 -89.25 -9.57768 -84.6186
+ 9 180.642 452 4 1 -89.45 -9.89372 -84.5675
+ 9 58.9581 451 4 1 -89.65 -10.219 -84.6511
+ 9 115.909 849 4 0 -89.7429 -10.2188 -85.85
+ 9 71.1457 686 4 0 -51.2256 -42.7518 -86.2498
+ 9 176.085 685 4 0 -51.0332 -42.85 -86.1296
+Number of digits in this event = 90
+Using G4ParticleGun ...
+1.87623 LIN
gamma
Event: 10
-Number of tracker hits in this event = 20
- 10 293.704 838 1 1 -12.3202 -141.393 -174.45
- 10 332.022 193 1 0 -12.3202 -141.393 -175.85
- 10 238.318 838 0 1 -12.3201 -141.398 -204.45
- 10 216.576 193 0 0 -12.3196 -141.398 -205.85
- 10 8.3898 912 2 0 64.688 2.56972 -146.25
- 10 147.275 865 2 0 70.22 -6.9293 -146.25
- 10 104.192 366 0 0 3.67864 -106.815 -206.25
- 10 59.483 1005 5 1 21.05 4.24557 -54.6595
- 10 14.6201 1430 3 0 -82.6525 106.15 -115.958
- 10 25.5098 1431 3 0 -82.6069 106.35 -115.882
- 10 68.8541 486 3 1 -82.7798 108.061 -114.85
- 10 81.8777 485 3 1 -82.85 108.093 -114.794
- 10 18.7411 1438 3 0 -83.9285 107.757 -115.85
- 10 75.6185 1437 3 0 -83.9266 107.75 -115.863
- 10 352.457 482 3 1 -83.4619 106.972 -114.85
- 10 246.913 481 3 1 -83.65 107.252 -114.622
- 10 250.016 480 3 1 -83.85 107.408 -114.531
- 10 469.917 1433 3 0 -83.7578 106.946 -115.85
- 10 9.59355 1432 3 0 -78.6151 106.577 -115.85
- 10 142.082 517 3 1 -76.5918 106.943 -114.85
-Number of digits in this event = 12
+Number of tracker hits in this event = 0
+Number of digits in this event = 1
Using G4ParticleGun ...
-4.45697 LIN
+6.98098 LIN
gamma
Event: 11
-Number of tracker hits in this event = 10
- 11 331.527 1123 2 1 44.8491 94.6821 -144.45
- 11 244.485 1372 2 0 44.849 94.6835 -145.85
- 11 294.692 1123 1 1 44.8478 94.7043 -174.45
- 11 226.089 1372 1 0 44.8525 94.7014 -175.85
- 11 117.306 1124 0 1 44.944 94.6315 -204.45
- 11 278.794 1372 0 0 44.9503 94.6261 -205.85
- 11 104.603 441 3 0 -98.3915 -91.8825 -116.25
- 11 57.0853 503 4 1 -79.4018 -108.919 -84.85
- 11 107 1123 0 1 44.7726 94.6979 -204.45
- 11 44.5292 1753 10 1 170.845 -64.3906 95.15
-Number of digits in this event = 7
+Number of tracker hits in this event = 3
+ 11 8.3898 1240 1 1 68.0767 -73.9218 -174.45
+ 11 269.693 1098 3 1 39.8233 17.8002 -114.45
+ 11 12.3707 1097 3 1 39.6499 17.6672 -114.578
+Number of digits in this event = 3
Using G4ParticleGun ...
-5.75761 LIN
+5.95611 LIN
gamma
Event: 12
-Number of tracker hits in this event = 82
- 12 553.367 923 6 1 4.7868 -89.1529 -24.45
- 12 415.305 454 6 0 4.78743 -89.1528 -25.85
- 12 118.158 923 5 1 4.80631 -89.1524 -54.45
- 12 138.69 454 5 0 4.80775 -89.1523 -55.85
- 12 349.364 923 4 1 4.83733 -89.1498 -84.45
- 12 386.793 454 4 0 4.83687 -89.1531 -85.85
- 12 262.684 923 3 1 4.83642 -89.2347 -114.45
- 12 365.53 454 3 0 4.83183 -89.2379 -115.85
- 12 107.207 923 2 1 4.76337 -89.2843 -144.45
- 12 115.475 453 2 0 4.76217 -89.2876 -145.85
- 12 115.381 923 1 1 4.74568 -89.3691 -174.45
- 12 133.219 453 1 0 4.74913 -89.3768 -175.85
- 12 100.477 923 0 1 4.80255 -89.523 -204.45
- 12 178.823 452 0 0 4.79687 -89.5157 -205.85
- 12 53.5654 1591 6 0 -31.2554 138.35 -26.1562
- 12 9.97201 734 6 1 -33.157 138.125 -24.85
- 12 91.4341 1583 6 0 -34.9799 136.903 -25.85
- 12 57.4859 1584 6 0 -34.9851 136.95 -25.9418
- 12 73.7205 1728 4 1 165.75 -106.561 -84.7642
- 12 191.117 1729 4 1 165.95 -106.496 -84.7492
- 12 28.441 876 6 0 -56.64 -4.85 -26.1724
- 12 67.3692 506 7 1 -78.65 13.621 5.29821
- 12 64.1782 924 0 1 4.95589 -89.5024 -204.45
- 12 209.592 925 0 1 5.05097 -89.4761 -204.54
- 12 103.792 926 0 1 5.25019 -89.423 -204.719
- 12 546.378 454 0 0 6.55091 -89.2044 -205.85
- 12 107.656 922 3 1 4.64998 -89.2436 -114.735
- 12 325.846 924 3 1 4.86675 -89.1002 -114.45
- 12 119.542 922 2 1 4.61102 -89.1259 -144.45
- 12 319.9 454 2 0 4.59792 -89.121 -145.85
- 12 251.455 921 1 1 4.32622 -89.0539 -174.45
- 12 130.132 455 1 0 4.31803 -89.0485 -175.85
- 12 240.499 920 0 1 4.11405 -88.9181 -204.45
- 12 259.381 455 0 0 4.11349 -88.9182 -205.85
- 12 27.3223 824 0 1 -15.25 25.1878 -204.753
- 12 59.3093 998 0 0 -15.6272 19.85 -206.099
- 12 111.228 924 2 1 4.96621 -89.1464 -144.45
- 12 137.103 924 1 1 5.03905 -89.1369 -174.45
- 12 144.869 454 1 0 5.04341 -89.1361 -175.85
- 12 110.131 682 2 0 -13.8104 -43.5747 -146.25
- 12 123.67 982 4 0 -29.0766 16.4773 -86.25
- 12 149.711 453 0 0 4.94184 -89.25 -206.124
- 12 29.0989 451 0 0 4.78745 -89.65 -206.183
- 12 282.923 426 0 0 -4.6774 -94.7853 -206.25
- 12 75.1227 922 6 1 4.64994 -89.1525 -24.6418
- 12 8.58262 921 6 1 4.45 -89.1738 -24.8396
- 12 120.15 455 6 0 2.68572 -89.05 -26.1162
- 12 78.3711 456 6 0 2.37638 -88.85 -26.0423
- 12 76.9465 902 6 1 0.63356 -88.8803 -24.8499
- 12 53.601 901 6 1 0.45 -88.8934 -24.7069
- 12 199.574 900 6 1 0.249932 -88.9099 -24.6101
- 12 112.289 932 5 1 6.47865 -87.5325 -54.45
- 12 81.4334 462 5 0 6.51862 -87.4629 -55.85
- 12 27.952 463 5 0 6.52626 -87.45 -56.1265
- 12 126.122 936 4 1 7.40863 -85.9845 -84.4503
- 12 143.556 470 4 0 7.45495 -85.9271 -85.8506
- 12 225.218 941 3 1 8.43293 -84.8972 -114.451
- 12 121.357 475 3 0 8.32653 -84.8636 -115.85
- 12 115.916 930 2 1 6.23412 -83.9396 -144.45
- 12 190.985 480 2 0 6.11906 -83.896 -145.85
- 12 133.121 487 1 0 4.22753 -82.5726 -175.85
- 12 107.427 914 0 1 2.99255 -80.3817 -204.45
- 12 142.703 498 0 0 2.96515 -80.3332 -205.85
- 12 131.479 126 2 0 -157.583 -154.855 -146.25
- 12 84.3419 113 2 1 -157.479 -154.349 -144.85
- 12 105.195 114 2 1 -157.35 -154.271 -144.637
- 12 164.449 115 2 1 -157.15 -154.177 -144.692
- 12 36.5248 128 2 0 -158.132 -154.424 -145.85
- 12 100.832 110 2 1 -158.037 -155.099 -144.85
- 12 43.9725 910 1 1 2.2245 -83.264 -174.775
- 12 128.342 483 1 0 2.15449 -83.4353 -175.85
- 12 125.296 482 1 0 2.18392 -83.45 -175.982
- 12 41.4106 690 1 0 34.5162 -41.9775 -176.25
- 12 310.969 691 1 0 34.4767 -41.85 -176.173
- 12 23.7119 692 1 0 34.3916 -41.65 -176.047
- 12 114.896 1079 1 1 35.865 -42.9444 -174.85
- 12 14.102 490 1 0 2.48185 -81.8749 -175.85
- 12 145.527 491 1 0 2.47769 -81.85 -175.878
- 12 70.2936 492 1 0 2.43385 -81.65 -176.089
- 12 20.5153 493 1 0 2.45946 -81.4499 -176.192
- 12 59.7962 587 1 0 -17.994 -62.5887 -176.249
- 12 242.398 605 1 0 -23.6139 -59.0226 -176.25
-Number of digits in this event = 41
+Number of tracker hits in this event = 35
+ 12 247.874 1023 6 1 24.7509 91.1086 -24.45
+ 12 264.914 1354 6 0 24.7509 91.1091 -25.85
+ 12 256.221 1023 5 1 24.7567 91.114 -54.45
+ 12 244.059 1354 5 0 24.758 91.1141 -55.85
+ 12 144.889 1023 4 1 24.7918 91.112 -84.45
+ 12 126.381 1354 4 0 24.7963 91.1126 -85.85
+ 12 112.384 1024 3 1 24.8974 91.1294 -114.45
+ 12 135.41 1354 3 0 24.9022 91.132 -115.85
+ 12 99.9667 1024 2 1 24.9913 91.1801 -144.45
+ 12 215.984 1355 2 0 24.9974 91.1801 -145.85
+ 12 118.305 1025 1 1 25.1283 91.1732 -174.45
+ 12 275.414 1355 1 0 25.1323 91.1741 -175.85
+ 12 189.854 1025 0 1 25.2098 91.1885 -204.45
+ 12 165.282 1355 0 0 25.2129 91.188 -205.85
+ 12 71.6255 228 9 1 -134.35 115.062 65.4042
+ 12 125.678 1026 0 1 25.2571 91.1377 -204.45
+ 12 103.412 1353 0 0 25.6939 90.9028 -205.85
+ 12 27.7 1406 0 0 49.5969 101.486 -206.25
+ 12 105.117 1407 0 0 49.6719 101.55 -206.184
+ 12 51.5297 1408 0 0 49.8974 101.75 -205.98
+ 12 18.2979 1154 0 1 51.0181 103.06 -204.85
+ 12 130.705 1155 0 1 51.05 103.104 -204.813
+ 12 68.7607 1156 0 1 51.25 103.359 -204.595
+ 12 126.658 1022 4 1 24.6053 90.8673 -84.45
+ 12 115.939 1353 4 0 24.5957 90.8535 -85.85
+ 12 125.716 1021 3 1 24.3752 90.5685 -114.45
+ 12 112.732 1352 3 0 24.3656 90.5563 -115.85
+ 12 238.937 1020 2 1 24.1593 90.3042 -144.45
+ 12 112.014 1350 2 0 24.1504 90.2904 -145.85
+ 12 107.967 1019 1 1 23.9817 89.998 -174.45
+ 12 160.574 1349 1 0 23.9717 89.9844 -175.85
+ 12 109.682 1018 0 1 23.7649 89.6979 -204.45
+ 12 112.806 1348 0 0 23.757 89.684 -205.85
+ 12 336.32 1469 5 0 84.2555 114 -56.25
+ 12 61.5306 1021 2 1 24.25 90.4318 -144.565
+Number of digits in this event = 20
Using G4ParticleGun ...
-7.44749 LIN
+3.0847 LIN
gamma
Event: 13
-Number of tracker hits in this event = 1
- 13 114.518 994 3 1 18.85 36.8462 -114.702
-Number of digits in this event = 1
+Number of tracker hits in this event = 48
+ 13 253.52 1020 7 1 24.0883 -72.8691 5.55
+ 13 345.988 535 7 0 24.0878 -72.8692 4.15
+ 13 421.577 1020 6 1 24.0918 -72.8902 -24.45
+ 13 238.87 535 6 0 24.0945 -72.8933 -25.85
+ 13 278.933 1020 5 1 24.128 -72.9437 -54.45
+ 13 114.542 535 5 0 24.1309 -72.9475 -55.85
+ 13 245.223 1020 4 1 24.1987 -73.0354 -84.45
+ 13 117.374 535 4 0 24.2037 -73.0392 -85.85
+ 13 106.772 1021 3 1 24.3025 -73.113 -114.45
+ 13 291.131 534 3 0 24.3074 -73.1153 -115.85
+ 13 145.797 1021 2 1 24.4179 -73.1585 -144.45
+ 13 234.598 534 2 0 24.4237 -73.1597 -145.85
+ 13 109.825 1022 1 1 24.5418 -73.1988 -174.45
+ 13 133.637 534 1 0 24.547 -73.194 -175.85
+ 13 152.293 1023 0 1 24.6585 -73.0749 -204.45
+ 13 112.811 534 0 0 24.6681 -73.0689 -205.85
+ 13 202.54 1740 0 1 168.266 -122.634 -204.45
+ 13 5.84403 279 0 0 167.605 -124.326 -205.85
+ 13 65.9148 278 0 0 167.595 -124.35 -205.867
+ 13 69.9078 277 0 0 167.572 -124.55 -206.089
+ 13 2.74561 276 0 0 167.49 -124.75 -206.243
+ 13 0.526368 50 0 0 153.638 -170.145 -206.25
+ 13 93.059 49 0 0 153.637 -170.15 -206.246
+ 13 87.7861 48 0 0 153.624 -170.35 -206.133
+ 13 106.76 47 0 0 153.635 -170.55 -206.056
+ 13 60.3502 46 0 0 153.508 -170.75 -206.013
+ 13 88.9343 45 0 0 153.424 -170.95 -206.062
+ 13 67.8442 616 6 0 32.6862 -56.8098 -26.2497
+ 13 75.0986 617 6 0 32.6652 -56.6499 -26.0591
+ 13 90.2079 618 6 0 32.6014 -56.45 -25.9642
+ 13 54.0435 619 6 0 32.4992 -56.2499 -25.9997
+ 13 63.0168 620 6 0 32.4329 -56.05 -26.0539
+ 13 90.6386 621 6 0 32.4235 -55.8498 -26.1486
+ 13 181.684 622 6 0 32.4343 -55.65 -26.1538
+ 13 136.089 752 6 0 -27.1195 -29.5947 -26.25
+ 13 118.368 753 6 0 -27.1018 -29.45 -26.098
+ 13 193.734 754 6 0 -26.8756 -29.25 -26.1027
+ 13 186.746 755 6 0 -26.6747 -29.05 -26.1138
+ 13 141.664 536 5 0 24.2204 -72.8045 -55.85
+ 13 138.575 537 4 0 24.1611 -72.4557 -85.85
+ 13 248.711 1020 3 1 24.1045 -72.1436 -114.45
+ 13 103.634 539 3 0 24.0914 -72.1303 -115.85
+ 13 118.388 1018 2 1 23.7924 -71.8245 -144.45
+ 13 104.011 541 2 0 23.777 -71.8044 -145.85
+ 13 122.389 1016 1 1 23.405 -71.3899 -174.45
+ 13 325.259 543 1 0 23.3873 -71.3687 -175.85
+ 13 136.257 1014 0 1 23.0021 -70.9656 -204.45
+ 13 99.6806 545 0 0 22.9805 -70.9509 -205.85
+Number of digits in this event = 24
Using G4ParticleGun ...
-3.60301 LIN
+2.16418 LIN
gamma
Event: 14
-Number of tracker hits in this event = 35
- 14 285.457 1034 5 1 26.8687 -11.0732 -54.45
- 14 251.578 844 5 0 26.8672 -11.0736 -55.85
- 14 355.35 1033 4 1 26.8267 -11.0507 -84.45
- 14 122.208 844 4 0 26.8247 -11.0517 -85.85
- 14 330.131 1033 3 1 26.7823 -11.0602 -114.45
- 14 95.97 844 3 0 26.778 -11.0584 -115.85
- 14 262.789 1033 2 1 26.678 -11.0095 -144.45
- 14 210.025 845 2 0 26.6727 -11.0136 -145.85
- 14 321.076 1032 1 1 26.5592 -11.0862 -174.45
- 14 284.494 844 1 0 26.5516 -11.0862 -175.85
- 14 301.591 1031 0 1 26.398 -11.0959 -204.45
- 14 118.715 844 0 0 26.3866 -11.0958 -205.85
- 14 197.678 839 0 0 -16.4406 -12.088 -206.25
- 14 251.422 838 0 0 -16.6537 -12.25 -206.119
- 14 185.417 1032 0 1 26.45 -11.0405 -204.463
- 14 200.647 1033 0 1 26.65 -10.7384 -204.485
- 14 76.8663 1030 0 1 26.2496 -10.0232 -204.59
- 14 262.176 1029 0 1 26.0497 -10.0551 -204.58
- 14 219.495 1028 0 1 25.8499 -9.9921 -204.541
- 14 149.907 812 2 0 56.8389 -17.6422 -146.25
- 14 83.8709 811 2 0 56.8683 -17.65 -146.223
- 14 140.163 1187 2 1 57.514 -17.4677 -144.85
- 14 25.2038 1033 1 1 26.65 -11.0244 -174.762
- 14 126.22 1043 0 1 28.7938 -14.1933 -204.45
- 14 105.262 827 0 0 28.8527 -14.557 -205.85
- 14 9.58548 826 0 0 28.8649 -14.65 -206.203
- 14 120.295 845 4 0 26.8447 -10.9928 -85.85
- 14 107.6 845 3 0 26.8155 -10.9705 -115.85
- 14 135.782 846 2 0 26.7054 -10.806 -145.85
- 14 136.774 847 1 0 26.5599 -10.6093 -175.85
- 14 148.53 848 0 0 26.3996 -10.381 -205.85
- 14 166.489 1544 3 0 5.49968 128.957 -116.25
- 14 11.9196 1543 3 0 5.48873 128.95 -116.112
- 14 158.901 1515 3 0 -42.9117 123.228 -116.25
- 14 108.474 1286 1 1 77.3479 125.915 -174.85
-Number of digits in this event = 28
+Number of tracker hits in this event = 1
+ 14 16.1244 140 5 0 109.789 -151.978 -56.25
+Number of digits in this event = 3
Using G4ParticleGun ...
-2.24192 LIN
+9.20111 LIN
gamma
Event: 15
-Number of tracker hits in this event = 24
- 15 325.599 1291 4 1 78.3656 7.60249 -84.45
- 15 257.223 937 4 0 78.356 7.60596 -85.85
- 15 181.111 1290 3 1 78.1399 7.68546 -114.45
- 15 323.558 938 3 0 78.125 7.68958 -115.85
- 15 105.034 1288 2 1 77.8147 7.77372 -144.45
- 15 276.649 938 2 0 77.7952 7.77574 -145.85
- 15 97.3279 1286 1 1 77.4038 7.80434 -174.45
- 15 280.963 938 1 0 77.375 7.80049 -175.85
- 15 148.794 1283 0 1 76.6832 7.63645 -204.45
- 15 259.689 937 0 0 76.6427 7.63322 -205.85
- 15 164.387 939 1 0 77.4098 7.85 -175.987
- 15 7.32289 940 1 0 77.3417 8.05 -176.2
- 15 0.182625 1031 4 0 69.5771 26.4493 -86.25
- 15 379.758 1032 4 0 69.5768 26.45 -86.2489
- 15 172.734 1290 4 1 78.25 8.07874 -84.4841
- 15 173.7 1291 3 1 78.3525 7.68887 -114.45
- 15 168.098 1291 2 1 78.4121 7.68002 -144.45
- 15 102.853 1291 1 1 78.3079 7.69405 -174.45
- 15 118.276 1290 0 1 78.1109 7.60846 -204.45
- 15 328.952 306 1 0 -10.6918 -118.84 -176.25
- 15 101.613 179 0 0 -12.4398 -144.297 -206.25
- 15 128.228 938 0 0 78.0826 7.65 -205.969
- 15 220.932 939 0 0 78.1651 7.85012 -206.085
- 15 48.5229 1290 2 1 78.201 7.47299 -144.45
+Number of tracker hits in this event = 25
+ 15 205.551 1496 6 1 119.361 -29.1623 -24.45
+ 15 257.117 754 6 0 119.361 -29.1627 -25.85
+ 15 104.819 1495 5 1 119.35 -29.1738 -54.45
+ 15 398.642 754 5 0 119.348 -29.1744 -55.85
+ 15 329.371 1495 4 1 119.313 -29.1869 -84.45
+ 15 234.051 754 4 0 119.31 -29.1883 -85.85
+ 15 162.244 1495 3 1 119.261 -29.2145 -114.45
+ 15 99.4736 754 3 0 119.261 -29.2148 -115.85
+ 15 142.041 1495 2 1 119.254 -29.2245 -144.45
+ 15 270.977 754 2 0 119.255 -29.2243 -145.85
+ 15 120.307 1495 1 1 119.274 -29.2129 -174.45
+ 15 118.898 754 1 0 119.276 -29.2114 -175.85
+ 15 143.226 1495 0 1 119.313 -29.18 -204.45
+ 15 111.432 754 0 0 119.315 -29.1778 -205.85
+ 15 7.65587 831 0 0 140.869 -13.761 -206.25
+ 15 154.187 832 0 0 140.998 -13.6499 -206.026
+ 15 120.735 1496 5 1 119.371 -29.0823 -54.45
+ 15 102.422 1494 3 1 119.116 -29.0031 -114.45
+ 15 109.483 755 3 0 119.114 -29.0109 -115.85
+ 15 112.854 1494 2 1 119.079 -29.1129 -144.45
+ 15 158.475 1491 1 1 118.364 -28.7167 -174.45
+ 15 112.918 756 1 0 118.336 -28.6881 -175.85
+ 15 162.494 1487 0 1 117.638 -28.151 -204.45
+ 15 411.683 759 0 0 117.576 -28.1352 -205.85
+ 15 36.7327 1536 0 1 127.393 -72.5961 -204.85
Number of digits in this event = 18
Using G4ParticleGun ...
-1.65698 LIN
+3.96923 LIN
gamma
Event: 16
-Number of tracker hits in this event = 50
- 16 244.456 634 8 1 -53.1017 -17.0454 35.55
- 16 286.742 815 8 0 -53.1027 -17.0457 34.15
- 16 108.755 634 7 1 -53.131 -17.053 5.55
- 16 111.652 815 7 0 -53.1337 -17.0473 4.15
- 16 143.773 634 6 1 -53.1847 -16.9521 -24.45
- 16 134.43 815 6 0 -53.1833 -16.9472 -25.85
- 16 103.712 634 5 1 -53.1624 -16.8595 -54.45
- 16 154.056 815 5 0 -53.1537 -16.8591 -55.85
- 16 128.031 635 4 1 -52.9778 -16.849 -84.45
- 16 127.163 816 4 0 -52.9649 -16.8458 -85.85
- 16 106.093 636 3 1 -52.6906 -16.7836 -114.45
- 16 137.652 816 3 0 -52.6806 -16.7734 -115.85
- 16 122.341 637 2 1 -52.4943 -16.5411 -144.45
- 16 134.83 817 2 0 -52.493 -16.5232 -145.85
- 16 259.287 637 1 1 -52.4726 -16.1589 -174.45
- 16 218.332 819 1 0 -52.4771 -16.1376 -175.85
- 16 122.032 637 0 1 -52.6004 -15.7081 -204.45
- 16 149.063 821 0 0 -52.604 -15.6795 -205.85
- 16 181.252 898 4 0 -74.7678 -0.378547 -86.25
- 16 88.7494 818 1 0 -52.9443 -16.2508 -176.162
- 16 64.6417 844 1 0 -100.904 -11.1463 -176.25
- 16 153.192 845 1 0 -100.904 -11.0499 -176.07
- 16 118.675 846 1 0 -100.721 -10.85 -175.928
- 16 105.454 847 1 0 -100.805 -10.65 -175.873
- 16 0.751776 403 1 1 -99.5045 -10.0505 -174.85
- 16 151.928 850 1 0 -99.2325 -10.0273 -175.85
- 16 7.53847 1046 3 1 29.2809 13.7155 -114.45
- 16 376.071 906 5 0 -27.9353 1.29522 -56.25
- 16 178.022 907 5 0 -28.0942 1.45007 -56.0546
- 16 125.58 635 7 1 -52.8772 -17.0731 5.55
- 16 129.191 814 7 0 -52.8699 -17.0775 4.15
- 16 188.049 636 6 1 -52.7827 -17.1205 -24.45
- 16 123.157 814 6 0 -52.7926 -17.1449 -25.85
- 16 111.965 635 5 1 -52.8993 -17.6288 -54.45
- 16 119.208 812 5 0 -52.9172 -17.6373 -55.85
- 16 24.4262 633 4 1 -53.2539 -17.8802 -84.45
- 16 124.855 634 4 1 -53.25 -17.8796 -84.5368
- 16 120.958 810 4 0 -53.1921 -17.8712 -85.85
- 16 114.64 640 3 1 -51.9428 -17.642 -114.45
- 16 215.481 812 3 0 -51.8543 -17.6123 -115.85
- 16 118.137 650 2 1 -49.9448 -17.2254 -144.45
- 16 117.647 813 2 0 -49.8207 -17.2522 -145.85
- 16 117.58 664 1 1 -47.1748 -17.7649 -174.45
- 16 125.797 811 1 0 -47.0353 -17.7724 -175.85
- 16 146.864 679 0 1 -44.1948 -17.8912 -204.45
- 16 207.95 810 0 0 -44.0608 -17.8749 -205.85
- 16 71.5656 813 3 0 -51.7413 -17.45 -115.934
- 16 26.6528 647 3 1 -50.5007 -13.5716 -114.85
- 16 205.882 839 3 0 -50.5269 -12.1911 -115.85
- 16 13.8405 840 3 0 -50.4965 -12.05 -115.933
-Number of digits in this event = 32
+Number of tracker hits in this event = 1
+ 16 75.875 390 10 0 -160.625 -101.95 93.7698
+Number of digits in this event = 3
Using G4ParticleGun ...
-8.04525 LIN
+1.04769 LIN
gamma
Event: 17
-Number of tracker hits in this event = 32
- 17 228.322 678 7 1 -44.4354 75.4902 5.55
- 17 234.67 1277 7 0 -44.4362 75.4914 4.15
- 17 131.13 677 6 1 -44.452 75.5151 -24.45
- 17 269.039 1277 6 0 -44.4544 75.511 -25.85
- 17 172.11 677 5 1 -44.5092 75.4212 -54.45
- 17 111.393 1276 5 0 -44.5038 75.4184 -55.85
- 17 222.432 678 4 1 -44.3704 75.3567 -84.45
- 17 238.678 1276 4 0 -44.365 75.3541 -85.85
- 17 195.069 678 3 1 -44.2592 75.2908 -114.45
- 17 216.685 1276 3 0 -44.2559 75.2848 -115.85
- 17 106.863 679 2 1 -44.1831 75.1533 -144.45
- 17 312.33 1275 2 0 -44.1832 75.1412 -145.85
- 17 142.694 679 1 1 -44.1672 74.8814 -174.45
- 17 238.537 1274 1 0 -44.1639 74.8689 -175.85
- 17 139.996 679 0 1 -44.0905 74.6308 -204.45
- 17 157.74 1272 0 0 -44.0873 74.6164 -205.85
- 17 149.245 678 6 1 -44.4177 75.4884 -24.45
- 17 108.083 678 5 1 -44.4094 75.4756 -54.45
- 17 118.608 1277 5 0 -44.4108 75.473 -55.85
- 17 117.074 678 2 1 -44.391 75.2396 -144.45
- 17 119.347 678 1 1 -44.3872 75.034 -174.45
- 17 246.518 678 0 1 -44.4303 74.7575 -204.45
- 17 159.064 1273 0 0 -44.4311 74.7408 -205.85
- 17 76.6502 490 1 0 125.75 -81.85 -176.221
- 17 76.713 323 1 0 148.285 -115.35 -176.088
- 17 216.851 677 0 1 -44.5213 75.3033 -204.45
- 17 355.147 1276 0 0 -44.5159 75.3183 -205.85
- 17 123.075 1394 0 0 -35.7188 98.9626 -206.25
- 17 102.439 1395 0 0 -35.6945 99.1501 -206.053
- 17 142.302 723 0 1 -35.3606 99.7409 -204.85
- 17 30.2636 724 0 1 -35.25 99.7059 -204.749
- 17 185.769 949 2 1 9.85 -31.7283 -144.723
-Number of digits in this event = 24
+Number of tracker hits in this event = 31
+ 17 247.282 842 6 1 -11.532 -148.809 -24.45
+ 17 298.816 156 6 0 -11.5305 -148.814 -25.85
+ 17 315.096 842 5 1 -11.4758 -148.957 -54.45
+ 17 107.198 155 5 0 -11.4603 -148.979 -55.85
+ 17 130.146 844 4 1 -11.1618 -149.433 -84.45
+ 17 233.895 153 4 0 -11.1443 -149.461 -85.85
+ 17 147.329 846 3 1 -10.8233 -149.912 -114.45
+ 17 180.545 150 3 0 -10.7926 -149.952 -115.85
+ 17 115.312 849 2 1 -10.1251 -150.713 -144.45
+ 17 134.178 146 2 0 -10.1024 -150.755 -145.85
+ 17 143.305 852 1 1 -9.61879 -151.571 -174.45
+ 17 109.88 142 1 0 -9.65161 -151.556 -175.85
+ 17 152.366 849 0 1 -10.1856 -151.55 -204.45
+ 17 127.809 142 0 0 -10.3248 -151.658 -205.85
+ 17 11.023 207 2 0 -18.9063 -138.75 -146.107
+ 17 116.031 157 5 0 -11.6271 -148.611 -55.85
+ 17 131.112 843 4 1 -11.3908 -148.345 -84.45
+ 17 127.47 159 4 0 -11.3844 -148.345 -85.85
+ 17 105.668 844 3 1 -11.2491 -148.377 -114.45
+ 17 118.923 158 3 0 -11.248 -148.381 -115.85
+ 17 124.939 844 2 1 -11.2084 -148.488 -144.45
+ 17 126.604 158 2 0 -11.2094 -148.481 -145.85
+ 17 199.251 844 1 1 -11.1786 -148.26 -174.45
+ 17 273.221 159 1 0 -11.1786 -148.256 -175.85
+ 17 157.412 844 0 1 -11.134 -148.206 -204.45
+ 17 164.705 159 0 0 -11.1314 -148.195 -205.85
+ 17 239.367 845 0 1 -11.05 -148.298 -204.586
+ 17 165.413 158 0 0 -10.3346 -148.389 -205.85
+ 17 340.923 843 3 1 -11.2727 -148.413 -114.45
+ 17 85.6287 842 3 1 -11.4503 -148.445 -114.661
+ 17 478.525 155 0 0 -11.0457 -149.008 -205.85
+Number of digits in this event = 25
Using G4ParticleGun ...
-3.53542 LIN
+2.42955 LIN
gamma
Event: 18
-Number of tracker hits in this event = 4
- 18 55.0178 984 1 0 -104.38 17.0468 -176.25
- 18 103.781 983 1 0 -104.387 16.85 -176.039
- 18 15.5115 1556 3 0 -36.3967 131.429 -116.25
- 18 203.479 719 3 1 -36.167 131.129 -114.85
-Number of digits in this event = 4
+Number of tracker hits in this event = 50
+ 18 233.639 690 5 1 -42.0402 37.7128 -54.45
+ 18 736.21 1088 5 0 -42.0375 37.7128 -55.85
+ 18 310.049 690 4 1 -41.9892 37.6921 -84.45
+ 18 237.81 1088 4 0 -41.9667 37.6945 -85.85
+ 18 144.458 693 3 1 -41.4148 37.7594 -114.45
+ 18 542.657 1088 3 0 -41.3819 37.7992 -115.85
+ 18 398.264 696 2 1 -40.8047 38.7474 -144.45
+ 18 280.98 1093 2 0 -40.7786 38.8223 -145.85
+ 18 120.001 698 1 1 -40.2649 40.2971 -174.45
+ 18 257.475 1101 1 0 -40.2121 40.3345 -175.85
+ 18 134.179 706 0 1 -38.783 41.0872 -204.45
+ 18 130 1105 0 0 -38.7193 41.0898 -205.85
+ 18 141.44 770 3 0 -79.9731 -25.85 -116.05
+ 18 210.309 1095 2 0 -40.3118 39.1412 -145.85
+ 18 5.93311 1096 2 0 -40.2 39.25 -146.224
+ 18 57.9332 741 1 1 -31.8233 48.0914 -174.45
+ 18 60.4905 742 1 1 -31.65 48.137 -174.599
+ 18 36.9433 743 1 1 -31.45 48.177 -174.774
+ 18 233.586 1141 1 0 -30.4449 48.3492 -175.85
+ 18 5.53524 1142 1 0 -30.0311 48.45 -176.244
+ 18 48.9009 1241 0 1 68.4492 102.351 -204.45
+ 18 53.1783 1240 0 1 68.2498 102.269 -204.478
+ 18 3.34345 1239 0 1 68.05 102.285 -204.455
+ 18 113.104 697 1 1 -40.6362 40.1936 -174.45
+ 18 157.037 700 0 1 -39.9627 42.0397 -204.45
+ 18 135.076 1110 0 0 -39.8984 42.2005 -205.85
+ 18 251.356 689 3 1 -42.0717 37.6745 -114.746
+ 18 137.328 691 2 1 -41.7322 37.4501 -144.45
+ 18 127.595 1086 2 0 -41.7101 37.4207 -145.85
+ 18 117.933 692 1 1 -41.4924 36.53 -174.45
+ 18 109.03 1082 1 0 -41.5167 36.5423 -175.85
+ 18 8.24875 691 0 1 -41.8467 36.8135 -204.45
+ 18 111.698 690 0 1 -41.85 36.8139 -204.478
+ 18 168.468 1083 0 0 -41.9979 36.8224 -205.85
+ 18 301.266 689 2 1 -42.1979 37.7457 -144.45
+ 18 100.449 1088 2 0 -42.2084 37.7416 -145.85
+ 18 251.748 688 1 1 -42.3751 37.6705 -174.45
+ 18 131.902 1088 1 0 -42.3783 37.6542 -175.85
+ 18 12.0855 1087 1 0 -42.3791 37.65 -176.2
+ 18 105.908 687 0 1 -42.4512 37.2836 -204.45
+ 18 97.4626 1086 0 0 -42.4567 37.2742 -205.85
+ 18 85.6681 1014 1 0 -32.823 23.0201 -176.25
+ 18 185.631 1089 2 0 -42.2424 37.9183 -145.85
+ 18 118.349 1090 1 0 -42.3302 38.1496 -175.85
+ 18 141.174 688 0 1 -42.3479 38.3235 -204.45
+ 18 147.462 1091 0 0 -42.3452 38.3287 -205.85
+ 18 68.6199 1090 0 0 -42.3347 38.25 -206.019
+ 18 287.56 1089 0 0 -42.3223 38.05 -206.061
+ 18 123.027 1088 0 0 -42.1781 37.85 -206.019
+ 18 127.022 471 8 1 -85.6881 16.6623 35.15
+Number of digits in this event = 31
Using G4ParticleGun ...
-1.97257 LIN
+5.35447 LIN
gamma
Event: 19
-Number of tracker hits in this event = 50
- 19 261.715 1401 6 1 100.528 38.3342 -24.45
- 19 249.633 1091 6 0 100.526 38.3341 -25.85
- 19 120.894 1401 5 1 100.497 38.3216 -54.45
- 19 536.47 1091 5 0 100.497 38.3332 -55.85
- 19 127.732 1401 4 1 100.544 38.5563 -84.45
- 19 268.83 1092 4 0 100.546 38.5645 -85.85
- 19 231.847 1402 3 1 100.562 38.7162 -114.45
- 19 149.203 1093 3 0 100.562 38.7204 -115.85
- 19 127.325 1402 2 1 100.595 38.8689 -144.45
- 19 117.232 1094 2 0 100.6 38.8775 -145.85
- 19 124.62 1402 1 1 100.684 39.0455 -174.45
- 19 128.032 1095 1 0 100.709 39.0601 -175.85
- 19 346.46 1405 0 1 101.212 39.3911 -204.45
- 19 137.48 1096 0 0 101.247 39.4012 -205.85
- 19 197.541 1404 0 1 101.14 39.2201 -204.45
- 19 489.277 1095 0 0 101.196 39.1992 -205.85
- 19 24.8858 1363 0 0 101.364 92.9124 -206.25
- 19 118.061 1364 0 0 101.397 92.95 -206.183
- 19 72.6403 1407 0 1 101.709 94.0286 -204.85
- 19 65.0541 1408 0 1 101.75 94.1042 -204.694
- 19 93.8199 1293 0 0 97.7649 78.7832 -206.25
- 19 58.1097 1292 0 0 97.8578 78.65 -206.041
- 19 282.572 1389 0 1 97.9748 78.8891 -204.85
- 19 197.579 1390 0 1 98.15 79.2241 -204.537
- 19 229.349 1391 0 1 98.35 79.7231 -204.56
- 19 12.1277 1296 0 0 96.3857 79.2571 -205.85
- 19 70.6445 1373 0 1 94.7703 81.0601 -204.85
- 19 43.9275 1372 0 1 94.75 81.107 -204.815
- 19 81.108 1392 0 1 98.55 30.2984 -204.599
- 19 71.7624 1416 0 1 103.35 30.162 -204.629
- 19 291.33 1401 1 1 100.47 38.8461 -174.45
- 19 276.737 1094 1 0 100.502 38.9724 -175.85
- 19 65.7613 1107 0 0 101.27 41.4934 -205.85
- 19 49.1515 1106 0 0 101.256 41.45 -206.05
- 19 274.037 1097 3 0 98.4421 39.6446 -116.25
- 19 83.1639 1098 3 0 98.4243 39.6501 -116.08
- 19 83.5609 1096 3 0 98.1122 39.45 -115.875
- 19 70.2368 1388 3 1 97.898 38.8492 -114.85
- 19 136.639 1399 0 1 100.039 39.2666 -204.45
- 19 148.671 1399 5 1 100.147 38.3419 -54.45
- 19 151.447 1397 4 1 99.6728 38.427 -84.45
- 19 108.061 1395 3 1 99.2206 39.9925 -114.45
- 19 106.356 1100 3 0 99.1958 40.1146 -115.85
- 19 143.679 1392 2 1 98.7301 42.7132 -144.45
- 19 107.316 1114 2 0 98.7188 42.854 -145.85
- 19 227.385 1392 1 1 98.552 45.6185 -174.45
- 19 125.169 1128 1 0 98.6158 45.7442 -175.85
- 19 148.715 1398 0 1 99.7726 48.3403 -204.45
- 19 25.6675 1141 0 0 99.8435 48.4441 -205.85
- 19 117.889 1142 0 0 99.8477 48.45 -205.931
-Number of digits in this event = 29
+Number of tracker hits in this event = 19
+ 19 227.98 445 2 1 -91.0388 -25.2642 -144.45
+ 19 145.236 773 2 0 -91.0387 -25.2645 -145.85
+ 19 217.997 445 1 1 -91.0355 -25.2707 -174.45
+ 19 163.262 774 1 0 -91.1235 -25.2464 -175.85
+ 19 166.254 436 0 1 -92.8595 -25.0013 -204.45
+ 19 181.992 775 0 0 -92.9369 -24.9364 -205.85
+ 19 12.9889 1199 9 0 -100.646 59.9619 63.75
+ 19 166.519 1200 9 0 -100.634 60.05 63.935
+ 19 139.588 774 2 0 -91.0404 -25.25 -145.889
+ 19 23.9857 775 1 0 -91.062 -24.8552 -175.85
+ 19 139.036 776 1 0 -91.0608 -24.85 -175.979
+ 19 110.155 446 0 1 -90.8063 -23.6901 -204.45
+ 19 115.079 782 0 0 -90.8092 -23.6173 -205.85
+ 19 102.878 809 1 0 -114.845 -18.1284 -176.25
+ 19 73.8985 810 1 0 -115.076 -18.05 -175.988
+ 19 217.033 324 1 1 -115.239 -18.1657 -174.85
+ 19 90.269 323 1 1 -115.35 -18.389 -174.674
+ 19 80.7619 322 1 1 -115.55 -18.4322 -174.724
+ 19 243.497 811 1 0 -115.341 -17.85 -175.922
+Number of digits in this event = 14
Using G4ParticleGun ...
-6.88644 LIN
+3.5879 LIN
gamma
Event: 20
-Number of tracker hits in this event = 203
- 20 224.371 1010 10 1 22.1753 -6.32001 95.55
- 20 308.028 868 10 0 22.1758 -6.32052 94.15
- 20 236.55 1010 9 1 22.1987 -6.32807 65.55
- 20 230.699 868 9 0 22.2027 -6.32585 64.15
- 20 118.565 1011 8 1 22.2827 -6.27809 35.55
- 20 487.047 868 8 0 22.2862 -6.27664 34.15
- 20 113.269 1011 7 1 22.3531 -6.24315 5.55
- 20 137.86 869 7 0 22.3555 -6.24163 4.15
- 20 442.78 1011 6 1 22.4057 -6.20775 -24.45
- 20 460.912 869 6 0 22.4085 -6.20609 -25.85
- 20 572.248 1012 5 1 22.4813 -6.17836 -54.45
- 20 105.348 869 5 0 22.4829 -6.17922 -55.85
- 20 108.292 1012 4 1 22.516 -6.19405 -84.45
- 20 240.106 869 4 0 22.5194 -6.19221 -85.85
- 20 271.443 1012 3 1 22.5961 -6.14091 -114.45
- 20 299.213 869 3 0 22.6026 -6.13572 -115.85
- 20 102.041 1013 2 1 22.7414 -6.03495 -144.45
- 20 107.181 870 2 0 22.7442 -6.03455 -145.85
- 20 163.036 1013 1 1 22.7779 -6.01977 -174.45
- 20 226.492 870 1 0 22.7923 -6.02258 -175.85
- 20 118.627 1015 0 1 23.0982 -6.10579 -204.45
- 20 544.002 869 0 0 23.1056 -6.10186 -205.85
- 20 189.687 1270 0 1 74.1728 -3.33601 -204.45
- 20 142.994 1269 0 1 74.05 -3.6218 -204.754
- 20 471.748 1013 5 1 22.65 -6.07978 -54.5228
- 20 63.5603 1014 5 1 22.85 -6.03581 -54.6997
- 20 38.5846 871 5 0 23.8649 -5.68351 -55.85
- 20 132.524 872 5 0 23.948 -5.65 -55.9464
- 20 130.816 789 5 0 61.9269 -22.1995 -56.25
- 20 168.63 788 5 0 61.9252 -22.2501 -56.1808
- 20 93.1304 1209 5 1 62.0107 -23.0138 -54.85
- 20 169.014 1210 5 1 62.05 -23.1793 -54.5555
- 20 5.63886 1211 5 1 62.2658 -23.3624 -54.45
- 20 82.1361 790 5 0 61.4996 -22.05 -56.1279
- 20 91.5473 913 5 0 29.8849 2.74326 -56.25
- 20 29.8047 914 5 0 29.939 2.85004 -55.9344
- 20 527.726 1051 5 1 30.3148 3.91721 -54.85
- 20 3.81774 928 5 0 29.7096 5.83501 -55.85
- 20 108.216 929 5 0 29.6999 5.85 -55.8651
- 20 72.9802 930 5 0 29.6912 6.05 -56.0501
- 20 30.7707 1067 5 0 65.777 33.6175 -56.25
- 20 275.393 1068 5 0 65.8741 33.6501 -56.2012
- 20 341.442 1230 5 1 66.1881 35.0173 -54.85
- 20 33.2043 1229 5 1 66.05 35.1545 -54.6966
- 20 117.164 1231 5 1 66.2503 35.3552 -54.6754
- 20 10.444 793 5 0 60.0516 -21.3137 -55.85
- 20 122.412 876 5 0 22.656 -4.79585 -55.85
- 20 108.749 1014 4 1 22.8733 -3.10058 -84.45
- 20 118.158 885 4 0 22.8856 -3.0498 -85.85
- 20 118.1 1014 3 1 22.9709 -2.00395 -114.45
- 20 128.625 890 3 0 22.9482 -1.98502 -115.85
- 20 139.327 1012 2 1 22.5454 -1.51321 -144.45
- 20 110.97 892 2 0 22.5423 -1.49487 -145.85
- 20 433.64 1010 1 1 22.24 -0.867414 -174.45
- 20 128.64 896 1 0 22.127 -0.797023 -175.85
- 20 109.227 1000 0 1 20.1957 0.564788 -204.45
- 20 224.796 902 0 0 20.0609 0.612745 -205.85
- 20 96.1969 884 4 0 22.8397 -3.19157 -85.85
- 20 391.916 868 5 0 22.6272 -6.39513 -55.85
- 20 156.079 1013 4 1 22.6688 -6.74755 -84.45
- 20 328.055 866 4 0 22.6585 -6.75791 -85.85
- 20 477.988 1011 3 1 22.3668 -6.97418 -114.45
- 20 158.503 865 3 0 22.3536 -6.98077 -115.85
- 20 134.014 1010 2 1 22.1112 -7.11748 -144.45
- 20 124.601 864 2 0 22.1079 -7.12896 -145.85
- 20 132.194 863 1 0 22.1155 -7.3611 -175.85
- 20 271.619 1010 0 1 22.1777 -7.45063 -204.45
- 20 144.518 862 0 0 22.2127 -7.49222 -205.85
- 20 229.686 863 0 0 22.0613 -7.39093 -205.85
- 20 66.2296 1009 0 1 22.05 -7.39346 -204.555
- 20 19.1097 1013 3 1 22.6587 -6.06628 -114.45
- 20 175.071 870 3 0 22.8611 -5.90276 -115.85
- 20 241.958 871 3 0 22.8127 -5.85 -115.971
- 20 41.0784 605 9 0 94.4106 -58.8647 63.75
- 20 21.693 806 4 0 17.254 -18.8238 -86.2498
- 20 122.287 805 4 0 17.2426 -18.85 -86.2011
- 20 35.4304 804 4 0 17.1631 -19.0501 -85.9094
- 20 438.333 984 4 1 16.9447 -20.0314 -84.8498
- 20 448.498 1011 5 1 22.3116 -6.34868 -54.45
- 20 116.058 1011 4 1 22.3513 -6.39253 -84.45
- 20 182.412 868 4 0 22.354 -6.39119 -85.85
- 20 169.866 868 3 0 22.3957 -6.34079 -115.85
- 20 247.628 1011 2 1 22.432 -6.23199 -144.45
- 20 117.735 869 2 0 22.4247 -6.21346 -145.85
- 20 131.483 1008 0 1 21.6665 -5.9082 -204.45
- 20 374.413 1007 0 1 21.65 -5.92732 -204.605
- 20 90.5603 855 5 0 24.094 -8.9279 -55.8503
- 20 59.5499 854 5 0 24.1725 -9.05 -55.8925
- 20 69.204 853 5 0 24.2408 -9.25016 -55.9807
- 20 77.2555 852 5 0 24.2913 -9.45 -56.109
- 20 73.8732 867 4 0 22.3326 -6.45 -86.2045
- 20 83.5404 461 4 0 -35.599 -87.6658 -86.2499
- 20 144.9 1010 4 1 22.1791 -6.11876 -84.45
- 20 113.132 875 2 0 22.4399 -4.93135 -145.85
- 20 140.326 1012 1 1 22.5257 -4.28221 -174.45
- 20 220.405 879 1 0 22.5184 -4.24655 -175.85
- 20 130.749 1011 0 1 22.3246 -3.56756 -204.45
- 20 312.326 882 0 0 22.3248 -3.53933 -205.85
- 20 221.567 866 5 0 23.2748 -6.7597 -55.85
- 20 44.3539 865 5 0 23.3815 -6.85 -56.0798
- 20 11.7055 1095 4 1 39.0674 -7.35109 -84.45
- 20 84.5042 1094 4 1 39.05 -7.35841 -84.4743
- 20 64.0662 1093 4 1 38.85 -7.42243 -84.7023
- 20 134.623 865 4 0 37.2058 -6.9921 -85.85
- 20 10.7796 766 2 1 -26.65 43.4505 -144.806
- 20 121.027 1119 2 0 -27.3265 43.9202 -145.851
- 20 27.1361 1120 2 0 -27.4413 44.05 -146.196
- 20 37.3628 1269 2 0 50.3629 73.918 -146.25
- 20 341.196 1268 2 0 50.4316 73.8496 -146.193
- 20 470.911 1010 8 1 22.2218 -6.3285 35.55
- 20 138.019 1018 7 1 23.6539 -7.39204 5.54983
- 20 115.78 863 7 0 23.7866 -7.43463 4.15
- 20 109.159 1031 6 1 26.3267 -8.30686 -24.45
- 20 157.553 858 6 0 26.4446 -8.3617 -25.85
- 20 143.93 1046 5 1 29.3524 -9.9413 -54.45
- 20 114.876 849 5 0 29.2977 -10.1012 -55.85
- 20 102.798 1044 4 1 28.9973 -12.5468 -84.45
- 20 104.708 836 4 0 28.8413 -12.709 -85.85
- 20 233.28 1029 3 1 25.988 -16.1472 -114.45
- 20 94.2039 819 3 0 25.7747 -16.1258 -115.85
- 20 104.623 1008 2 1 21.8289 -15.3618 -144.45
- 20 124.251 823 2 0 21.6672 -15.2797 -145.85
- 20 162.61 994 1 1 18.9309 -13.9465 -174.45
- 20 140.311 831 1 0 18.6677 -13.7859 -175.85
- 20 116.128 964 0 1 12.9584 -10.148 -204.45
- 20 115.316 849 0 0 12.8165 -10.095 -205.85
- 20 122.439 1009 7 1 22.0399 -6.90474 5.55
- 20 263.494 865 7 0 21.8923 -6.91619 4.15
- 20 167.432 994 6 1 18.9411 -7.22737 -24.45
- 20 148.298 864 6 0 18.7009 -7.22821 -25.85
- 20 44.3362 968 5 1 13.679 -7.42757 -54.45
- 20 76.5613 967 5 1 13.65 -7.43364 -54.6049
- 20 129.848 862 5 0 13.4167 -7.4795 -55.85
- 20 107.023 940 4 1 8.16577 -8.58282 -84.45
- 20 368.002 856 4 0 7.9206 -8.6773 -85.85
- 20 212.562 913 3 1 2.67162 -10.5229 -114.45
- 20 147.759 912 3 1 2.65 -10.5278 -114.591
- 20 115.851 847 3 0 2.45012 -10.561 -115.85
- 20 113.679 889 2 1 -2.1239 -11.2759 -144.45
- 20 143.064 843 2 0 -2.38689 -11.3309 -145.85
- 20 111.27 861 1 1 -7.65391 -12.2754 -174.45
- 20 195.423 838 1 0 -7.88719 -12.3844 -175.85
- 20 105.781 838 0 1 -12.3145 -14.4758 -204.45
- 20 128.769 827 0 0 -12.5723 -14.5782 -205.85
- 20 43.6309 271 3 1 -125.75 56.7439 -114.482
- 20 31.4572 272 3 1 -125.75 56.8509 -114.46
- 20 108.486 1009 8 1 22.0128 -6.32201 35.55
- 20 517.238 1008 7 1 21.8282 -6.44202 5.54994
- 20 158.215 1000 6 1 20.0563 -10.14 -24.45
- 20 94.7171 1001 6 1 20.25 -9.72589 -24.7803
- 20 11.0362 865 6 0 21.3337 -6.89032 -25.85
- 20 89.8123 866 6 0 21.3575 -6.85 -25.8601
- 20 44.9644 867 6 0 21.5507 -6.65 -25.8865
- 20 89.2179 1015 6 1 23.0894 -5.39573 -24.85
- 20 135.83 1016 6 1 23.25 -5.25546 -24.7534
- 20 29.7738 517 7 1 -76.45 45.7462 5.16582
- 20 106.761 516 7 1 -76.6504 45.8484 5.184
- 20 21.1178 1144 7 0 -78.6488 48.9854 4.14993
- 20 94.3308 1145 7 0 -78.6919 49.0502 4.12362
- 20 241.994 1146 7 0 -78.8861 49.25 4.01298
- 20 4.97382 1147 7 0 -78.5678 49.45 3.76943
- 20 44.4265 964 7 0 -93.9269 12.9722 3.7501
- 20 318.497 963 7 0 -93.9539 12.8499 3.79597
- 20 317.126 868 7 0 21.8396 -6.33149 4.15
- 20 134.947 1008 6 1 21.7849 -6.2949 -24.45
- 20 109.41 1007 5 1 21.534 -4.27297 -54.45
- 20 124.309 879 5 0 21.5249 -4.20251 -55.85
- 20 111.773 1006 4 1 21.3076 -2.74049 -84.45
- 20 122.281 886 4 0 21.2878 -2.72117 -85.85
- 20 112.948 1003 3 1 20.8041 -2.30822 -114.45
- 20 183.442 888 3 0 20.7542 -2.30123 -115.85
- 20 110.878 998 2 1 19.7213 -2.16345 -144.45
- 20 178.353 889 2 0 19.6832 -2.08996 -145.85
- 20 117.323 995 1 1 19.0584 -0.302815 -174.45
- 20 113.074 898 1 0 19.0443 -0.344682 -175.85
- 20 110.324 992 0 1 18.4575 -0.885995 -204.45
- 20 125.749 895 0 0 18.4463 -0.972673 -205.85
- 20 314.101 992 1 1 18.6101 -2.10141 -174.45
- 20 227.481 889 1 0 18.5832 -2.06625 -175.85
- 20 111.675 989 0 1 18.0315 -1.42117 -204.45
- 20 141.123 893 0 0 17.8836 -1.43144 -205.851
- 20 36.998 949 0 1 9.89427 -4.35335 -204.45
- 20 111.233 948 0 1 9.85 -4.35366 -204.6
- 20 136.547 878 0 0 9.48215 -4.34332 -205.85
- 20 140.329 1007 6 1 21.5277 -6.32601 -24.45
- 20 116.283 868 6 0 21.4957 -6.3448 -25.85
- 20 117.733 1003 5 1 20.8229 -6.65273 -54.45
- 20 178.072 1000 4 1 20.0647 -6.64521 -84.45
- 20 177.349 996 3 1 19.2878 -7.04036 -114.45
- 20 152.197 864 3 0 19.2679 -7.06541 -115.85
- 20 104.18 993 2 1 18.8205 -7.48072 -144.45
- 20 105.597 862 2 0 18.7903 -7.48918 -145.85
- 20 133.843 991 1 1 18.2847 -7.71208 -174.45
- 20 113.493 861 1 0 18.2563 -7.73168 -175.85
- 20 118.474 988 0 1 17.7076 -8.06924 -204.45
- 20 124.73 859 0 0 17.6865 -8.09683 -205.85
- 20 105.518 1178 12 0 -62.2225 55.7852 153.75
- 20 179.103 1179 12 0 -62.3682 55.85 154.102
- 20 685.077 1005 0 1 21.2191 -6.84355 -204.45
- 20 252.118 866 0 0 21.0166 -6.7898 -205.851
- 20 82.2224 1004 0 1 21.05 -6.75032 -204.528
- 20 41.2852 1003 0 1 20.85 -6.66261 -204.728
- 20 144.362 868 0 0 19.8544 -6.42549 -205.85
-Number of digits in this event = 109
-Using G4ParticleGun ...
-6.64118 LIN
+Number of tracker hits in this event = 0
+Number of digits in this event = 2
+Using G4ParticleGun ...
+8.65953 LIN
gamma
Event: 21
-Number of tracker hits in this event = 0
-Number of digits in this event = 3
+Number of tracker hits in this event = 116
+ 21 314.884 903 7 1 0.697285 38.1399 5.55
+ 21 252.432 1090 7 0 0.702621 38.1366 4.15
+ 21 218.647 903 6 1 0.784589 38.0657 -24.45
+ 21 468.426 1090 6 0 0.792783 38.0585 -25.85
+ 21 170.623 904 5 1 0.895303 37.9113 -54.45
+ 21 125.238 1089 5 0 0.90615 37.9074 -55.85
+ 21 145.321 905 4 1 1.13531 37.8473 -84.45
+ 21 114.512 1088 4 0 1.15195 37.8322 -85.85
+ 21 99.9384 907 3 1 1.47754 37.4782 -114.45
+ 21 171.749 1087 3 0 1.49112 37.4723 -115.85
+ 21 142.493 908 2 1 1.70007 37.3635 -144.45
+ 21 214.485 1086 2 0 1.71799 37.3451 -145.85
+ 21 168.308 910 1 1 2.08366 37.0093 -174.45
+ 21 136.132 1084 1 0 2.08726 36.9997 -175.85
+ 21 137.251 910 0 1 2.15162 36.8216 -204.45
+ 21 130.022 1083 0 0 2.16374 36.8038 -205.85
+ 21 161.052 1128 0 0 -3.79389 45.8015 -206.25
+ 21 21.3048 264 1 1 -127.15 69.2148 -174.707
+ 21 19.9767 143 1 1 -151.55 79.9196 -174.504
+ 21 36.0288 1086 3 0 1.49491 37.45 -116.199
+ 21 138.99 938 3 0 7.54222 7.77808 -116.25
+ 21 262.252 1048 5 0 18.6915 29.7487 -56.25
+ 21 40.863 996 5 1 19.3994 30.0802 -54.85
+ 21 135.492 997 5 1 19.45 30.1169 -54.7289
+ 21 267.85 908 1 1 1.78552 37.7001 -174.45
+ 21 223.482 1088 1 0 1.87657 37.6939 -175.85
+ 21 105.953 919 0 1 3.88483 37.5067 -204.45
+ 21 238.057 1086 0 0 3.90173 37.4477 -205.85
+ 21 122.852 907 0 1 1.63282 37.9916 -204.45
+ 21 193.579 1089 0 0 1.63856 37.9933 -205.85
+ 21 64.4246 1088 0 0 1.68361 37.8498 -206.181
+ 21 84.7175 1087 0 0 1.7587 37.65 -206.172
+ 21 208.254 938 0 0 25.8185 7.71583 -206.25
+ 21 203.979 906 2 1 1.39318 37.5391 -144.45
+ 21 105.379 1089 2 0 1.37793 37.8579 -145.85
+ 21 149.807 902 1 1 0.481906 46.5195 -174.45
+ 21 64.0912 1134 1 0 0.461068 47.0171 -175.85
+ 21 82.0991 1135 1 0 0.458853 47.0502 -175.943
+ 21 218.167 894 0 1 -1.15833 57.518 -204.45
+ 21 124.739 1186 0 0 -1.32056 57.3302 -205.85
+ 21 88.1297 907 2 1 1.45 37.4506 -144.67
+ 21 62.9983 938 1 1 7.76152 34.4419 -174.45
+ 21 73.6106 939 1 1 7.85 34.3576 -174.659
+ 21 302.523 1068 1 0 8.39211 33.8391 -175.85
+ 21 136.835 1010 0 1 22.1988 20.7171 -204.45
+ 21 87.1111 1011 0 1 22.25 20.5594 -204.65
+ 21 70.7827 997 0 0 22.5829 19.5574 -205.85
+ 21 77.2242 996 0 0 22.6187 19.45 -205.978
+ 21 11.0946 995 0 0 22.6788 19.25 -206.216
+ 21 68.3912 904 6 1 0.979997 38.3227 -24.4501
+ 21 74.0747 905 6 1 1.05 38.3241 -24.4938
+ 21 73.4374 906 6 1 1.25 38.3075 -24.6175
+ 21 68.3242 907 6 1 1.45 38.2101 -24.717
+ 21 100.547 904 1 1 0.909114 37.8551 -174.45
+ 21 90.0805 905 1 1 1.05015 37.6372 -174.687
+ 21 48.3777 1078 1 0 2.40978 35.7452 -175.85
+ 21 147.018 1077 1 0 2.47358 35.65 -175.915
+ 21 119.24 1076 1 0 2.62903 35.45 -176.063
+ 21 2.86808 1075 1 0 2.73304 35.25 -176.245
+ 21 216.657 903 5 1 0.66558 38.1393 -54.45
+ 21 142.816 1090 5 0 0.663255 38.1408 -55.85
+ 21 155.955 902 4 1 0.613721 38.1699 -84.45
+ 21 238.539 1090 4 0 0.611825 38.1711 -85.85
+ 21 136.005 902 3 1 0.572568 38.1951 -114.45
+ 21 111.171 1090 3 0 0.570351 38.1955 -115.85
+ 21 290.88 902 2 1 0.520811 38.2036 -144.45
+ 21 186.932 1090 2 0 0.517296 38.2034 -145.85
+ 21 188.643 901 1 1 0.436664 38.1804 -174.45
+ 21 173.661 1090 1 0 0.437207 38.1812 -175.85
+ 21 123.421 902 0 1 0.462678 38.1958 -204.45
+ 21 194.264 1090 0 0 0.457622 38.1983 -205.85
+ 21 0.292397 1254 4 0 -136.064 70.9735 -86.25
+ 21 186.99 1255 4 0 -136.264 71.05 -85.9773
+ 21 30.9116 1028 0 0 -14.3451 25.6946 -206.25
+ 21 213.558 1027 0 0 -14.3965 25.65 -206.178
+ 21 79.8 1026 0 0 -14.5731 25.45 -205.931
+ 21 115.779 832 0 1 -13.4971 26.1693 -204.85
+ 21 27.5991 833 0 1 -13.45 26.1351 -204.786
+ 21 197.049 1036 0 0 56.771 27.3437 -206.25
+ 21 69.6503 1188 0 1 57.6846 27.1446 -204.85
+ 21 77.4245 1189 0 1 57.85 27.1988 -204.63
+ 21 53.8578 1190 0 1 58.05 27.3393 -204.468
+ 21 52.7979 1191 0 1 58.2502 27.3834 -204.469
+ 21 70.3447 1192 0 1 58.4503 27.3695 -204.504
+ 21 4.29718 136 6 1 -152.912 -45.2455 -24.85
+ 21 97.5149 135 6 1 -152.95 -45.2638 -24.7934
+ 21 5.34058 672 6 0 -153.351 -45.6495 -25.85
+ 21 65.7001 671 6 0 -153.351 -45.65 -25.8521
+ 21 335.011 903 2 1 0.65 38.2173 -144.469
+ 21 90.3959 904 2 1 0.85 38.2076 -144.752
+ 21 236.121 1091 2 0 1.6278 38.3033 -145.85
+ 21 33.923 969 1 1 13.9317 41.0588 -174.45
+ 21 73.6366 970 1 1 14.05 41.1537 -174.53
+ 21 194.16 971 1 1 14.25 41.3296 -174.669
+ 21 16.5054 972 1 1 14.45 41.558 -174.821
+ 21 28.7907 1114 1 0 15.5613 42.9896 -175.85
+ 21 84.5599 1115 1 0 15.61 43.05 -175.891
+ 21 61.4409 1116 1 0 15.7654 43.25 -176.023
+ 21 111.671 1117 1 0 15.912 43.45 -176.121
+ 21 56.3702 1118 1 0 16.0596 43.65 -176.208
+ 21 60.8607 1217 0 1 63.4993 97.1649 -204.45
+ 21 70.207 1218 0 1 63.65 97.1441 -204.667
+ 21 137.795 1383 0 0 64.4796 96.9386 -205.85
+ 21 178.032 899 1 1 -0.0975339 38.7675 -174.45
+ 21 122.459 1093 1 0 -0.144376 38.7608 -175.85
+ 21 176.344 895 0 1 -0.993223 38.6709 -204.45
+ 21 6.46416 1093 0 0 -1.05192 38.6505 -205.85
+ 21 108.531 1092 0 0 -1.05324 38.65 -205.882
+ 21 8.61917 926 0 1 5.29364 -19.7283 -204.85
+ 21 80.2524 893 0 1 -1.25 38.5643 -204.533
+ 21 135.879 892 0 1 -1.45 38.5137 -204.656
+ 21 126.701 891 0 1 -1.65 38.5332 -204.766
+ 21 138.129 890 0 1 -1.85006 38.5803 -204.708
+ 21 208.322 889 0 1 -2.05 38.6969 -204.665
+ 21 153.928 1230 0 0 14.7382 66.0509 -206.25
+ 21 37.4446 1229 0 0 14.8891 66.05 -206.025
+Number of digits in this event = 60
Using G4ParticleGun ...
-3.52018 LIN
+1.08959 LIN
gamma
Event: 22
-Number of tracker hits in this event = 0
-Number of digits in this event = 1
+Number of tracker hits in this event = 96
+ 22 273.037 1042 11 1 28.4572 -61.597 125.55
+ 22 273.717 592 11 0 28.4458 -61.612 124.15
+ 22 236.008 1042 10 1 28.6156 -62.1032 95.55
+ 22 122.227 589 10 0 28.6099 -62.0993 94.15
+ 22 117.058 1040 9 1 28.1443 -61.8366 65.55
+ 22 112.308 590 9 0 27.9359 -61.9123 64.15
+ 22 95.6441 1017 8 1 23.5239 -63.6044 35.5485
+ 22 106.552 581 8 0 23.3633 -63.7701 34.1498
+ 22 95.71 995 7 1 19.2052 -66.5536 5.55
+ 22 145.833 566 7 0 19.0996 -66.7403 4.15
+ 22 122.226 985 6 1 17.2126 -70.5502 -24.45
+ 22 81.2961 546 6 0 17.0718 -70.7952 -25.85
+ 22 14.8569 545 6 0 17.0373 -70.85 -26.1753
+ 22 123.07 969 5 1 13.9075 -75.4346 -54.45
+ 22 157.959 522 5 0 14.0187 -75.555 -55.85
+ 22 120.31 982 4 1 16.5958 -78.016 -84.45
+ 22 108.107 508 4 0 16.3672 -78.3089 -85.85
+ 22 121.197 963 3 1 12.7255 -84.4162 -114.45
+ 22 152.836 476 3 0 12.5154 -84.7263 -115.85
+ 22 136.275 937 2 1 7.58511 -91.5118 -144.45
+ 22 10.4157 936 2 1 7.45 -91.5491 -144.807
+ 22 194.966 442 2 0 7.03878 -91.6835 -145.85
+ 22 69.5494 877 1 1 -4.4709 -94.5253 -174.45
+ 22 146.413 876 1 1 -4.65025 -94.4369 -174.67
+ 22 336.794 431 1 0 -5.66613 -93.9225 -175.85
+ 22 12.684 432 1 0 -6.0221 -93.7499 -176.221
+ 22 75.8552 731 0 1 -33.7183 -79.578 -204.45
+ 22 91.96 730 0 1 -33.85 -79.5727 -204.536
+ 22 68.9157 729 0 1 -34.0501 -79.5625 -204.659
+ 22 72.6752 728 0 1 -34.25 -79.5552 -204.784
+ 22 247.286 502 0 0 -36.0573 -79.5259 -205.85
+ 22 161.527 474 0 0 -69.8217 -85.1871 -206.25
+ 22 69.4635 882 0 1 -3.45 -102.397 -204.68
+ 22 360.289 943 4 1 8.74893 -63.3511 -84.45
+ 22 103.178 942 4 1 8.65 -63.5471 -84.8022
+ 22 67.4157 580 4 0 8.30998 -63.975 -85.85
+ 22 117.464 579 4 0 8.26977 -64.0502 -86.0032
+ 22 82.4968 499 4 0 11.7927 -80.1745 -86.25
+ 22 102.508 498 4 0 11.88 -80.2501 -85.9687
+ 22 403.722 960 4 1 12.1712 -80.9097 -84.85
+ 22 13.3127 486 4 0 11.8785 -82.8144 -85.85
+ 22 112.114 485 4 0 11.8728 -82.85 -85.8874
+ 22 389.371 578 4 0 7.97667 -64.2761 -85.85
+ 22 249.335 577 4 0 7.86097 -64.45 -86.1166
+ 22 181.249 841 3 1 -11.8404 -91.2942 -114.45
+ 22 58.3642 842 3 1 -11.65 -90.8716 -114.55
+ 22 88.52 843 3 1 -11.45 -90.8196 -114.488
+ 22 111.853 844 3 1 -11.2499 -90.7266 -114.47
+ 22 114.932 845 3 1 -11.0497 -90.6155 -114.505
+ 22 63.26 846 3 1 -10.85 -90.523 -114.565
+ 22 142.465 847 3 1 -10.6499 -90.4226 -114.64
+ 22 198.869 848 3 1 -10.4497 -90.252 -114.753
+ 22 1.48554 849 3 1 -10.2498 -89.997 -114.848
+ 22 16.6948 459 3 0 -7.99996 -88.0897 -115.85
+ 22 96.1956 460 3 0 -7.94858 -88.05 -115.875
+ 22 114.549 461 3 0 -7.71794 -87.85 -116.042
+ 22 0.31627 566 3 0 57.1225 -66.8496 -116.249
+ 22 104.849 565 3 0 57.1228 -66.85 -116.248
+ 22 120.927 564 3 0 57.2389 -67.05 -115.942
+ 22 22.8421 1178 3 1 55.7705 -66.0043 -114.85
+ 22 264.647 574 3 0 55.375 -65.1235 -115.85
+ 22 17.253 575 3 0 55.3879 -65.05 -115.918
+ 22 107.378 1207 4 1 61.5382 -80.4851 -84.45
+ 22 62.1651 576 4 0 7.35497 -64.65 -86.158
+ 22 101.642 592 10 0 28.5331 -61.5539 94.15
+ 22 117.725 1043 9 1 28.7963 -61.5452 65.55
+ 22 208.51 592 9 0 28.8115 -61.5691 64.15
+ 22 116.267 1045 8 1 29.1853 -62.0181 35.5494
+ 22 129.292 590 8 0 29.1756 -62.0155 34.15
+ 22 143.902 1043 7 1 28.745 -61.8159 5.54985
+ 22 223.554 590 7 0 28.8234 -61.8647 4.15
+ 22 201.5 1049 6 1 29.8834 -62.8529 -24.45
+ 22 175.329 585 6 0 29.9874 -62.9157 -25.85
+ 22 119.488 1059 5 1 31.9503 -63.887 -54.45
+ 22 173.338 580 5 0 32.0249 -63.982 -55.85
+ 22 141.581 1065 4 1 33.1574 -65.7045 -84.4501
+ 22 133.093 571 4 0 33.1521 -65.7256 -85.85
+ 22 108.88 1064 3 1 32.8793 -66.4118 -114.45
+ 22 188.182 568 3 0 32.8127 -66.3988 -115.85
+ 22 158.74 1054 2 1 31.0154 -66.426 -144.45
+ 22 124.562 568 2 0 30.827 -66.3032 -145.85
+ 22 132.858 1033 1 1 26.7929 -63.8277 -174.45
+ 22 183.574 582 1 0 26.461 -63.6479 -175.85
+ 22 106.674 997 0 1 19.5837 -60.2893 -204.45
+ 22 102.146 598 0 0 19.3607 -60.309 -205.85
+ 22 68.7543 1023 0 1 24.6625 -66.633 -204.532
+ 22 142.279 1022 0 1 24.65 -66.6421 -204.683
+ 22 258.973 566 0 0 24.5622 -66.7059 -205.85
+ 22 219.714 1052 1 1 30.5624 -65.0995 -174.45
+ 22 124.158 573 1 0 30.65 -65.2647 -175.85
+ 22 118.634 1060 0 1 32.1167 -68.002 -204.45
+ 22 153.795 560 0 0 32.4153 -67.9394 -205.85
+ 22 110.63 574 1 0 30.6305 -65.1046 -175.85
+ 22 124.59 1058 0 1 31.6913 -65.6911 -204.45
+ 22 101.706 571 0 0 31.773 -65.7024 -205.85
+ 22 86.5438 484 1 0 108.907 -83.0537 -176.25
+Number of digits in this event = 48
Using G4ParticleGun ...
-6.44911 LIN
+5.80044 LIN
gamma
Event: 23
Number of tracker hits in this event = 0
-Number of digits in this event = 1
+Number of digits in this event = 2
Using G4ParticleGun ...
-7.30296 LIN
+6.56089 LIN
gamma
Event: 24
-Number of tracker hits in this event = 2
- 24 25.3463 1373 0 1 94.8769 131.65 -204.85
- 24 2.4813 1374 0 1 94.95 131.829 -204.459
-Number of digits in this event = 2
+Number of tracker hits in this event = 56
+ 24 269.74 387 7 1 -102.582 61.989 5.55
+ 24 226.188 1209 7 0 -102.58 61.9885 4.15
+ 24 154.218 388 6 1 -102.525 61.9733 -24.45
+ 24 139.015 1209 6 0 -102.522 61.9718 -25.85
+ 24 121.246 388 5 1 -102.453 61.9434 -54.45
+ 24 125.609 1209 5 0 -102.451 61.942 -55.85
+ 24 121.065 388 4 1 -102.438 61.8987 -84.45
+ 24 152.987 1209 4 0 -102.438 61.8978 -85.85
+ 24 567.221 388 3 1 -102.449 61.8825 -114.45
+ 24 413.163 1209 3 0 -102.449 61.8864 -115.85
+ 24 113.369 388 2 1 -102.436 61.9703 -144.45
+ 24 120.298 1209 2 0 -102.431 61.9762 -145.85
+ 24 133.12 389 1 1 -102.307 62.1267 -174.45
+ 24 123.37 1210 1 0 -102.3 62.1306 -175.85
+ 24 163.324 390 0 1 -102.133 62.1974 -204.45
+ 24 124.083 1210 0 0 -102.118 62.199 -205.85
+ 24 602.467 368 1 1 -106.37 -39.6454 -174.85
+ 24 45.459 1532 8 1 126.668 -135.272 35.15
+ 24 160.931 1533 8 1 126.75 -135.334 35.3972
+ 24 125.45 1208 3 0 -102.442 61.8162 -115.85
+ 24 148.23 381 2 1 -103.819 60.1782 -144.45
+ 24 126.536 1199 2 0 -103.922 60.0111 -145.851
+ 24 34.0033 369 1 1 -106.332 56.5525 -174.45
+ 24 132.249 1182 1 0 -106.599 56.5948 -175.85
+ 24 181.299 343 0 1 -111.454 58.0859 -204.45
+ 24 41.2377 342 0 1 -111.55 58.0501 -204.675
+ 24 9.34093 1189 0 0 -112.037 57.854 -205.85
+ 24 135.505 1188 0 0 -112.046 57.85 -205.873
+ 24 48.8564 1178 1 0 -107.686 55.7719 -175.85
+ 24 24.3371 1177 1 0 -107.738 55.6495 -175.853
+ 24 66.0557 363 1 1 -107.483 51.8163 -174.85
+ 24 98.0968 1152 1 0 -106.602 50.5574 -175.85
+ 24 424.461 1151 1 0 -106.553 50.45 -175.904
+ 24 108.873 383 2 1 -103.436 62.9939 -144.45
+ 24 92.0111 1214 2 0 -103.413 63.0216 -145.85
+ 24 114.326 385 1 1 -103.087 63.522 -174.45
+ 24 124.028 1217 1 0 -103.149 63.5888 -175.85
+ 24 249.374 379 0 1 -104.238 64.772 -204.45
+ 24 117.681 1224 0 0 -104.357 64.8585 -205.85
+ 24 61.4687 380 0 1 -104.15 64.7912 -204.76
+ 24 212.697 381 0 1 -103.95 64.7937 -204.745
+ 24 191.767 387 6 1 -102.612 62.0638 -24.45
+ 24 112.819 1210 6 0 -102.612 62.0646 -25.85
+ 24 159.832 387 5 1 -102.64 62.0863 -54.45
+ 24 96.9757 1210 5 0 -102.642 62.0845 -55.85
+ 24 146.435 387 4 1 -102.681 62.0652 -84.45
+ 24 121.427 1210 4 0 -102.689 62.0576 -85.85
+ 24 176.982 386 3 1 -102.861 61.9076 -114.45
+ 24 158.278 385 2 1 -103.128 61.8515 -144.45
+ 24 104.8 1208 2 0 -103.135 61.8499 -145.85
+ 24 115.677 384 1 1 -103.302 61.82 -174.45
+ 24 102.525 1208 1 0 -103.311 61.8258 -175.85
+ 24 241.543 383 0 1 -103.482 61.9073 -204.45
+ 24 94.8162 1209 0 0 -103.489 61.9134 -205.85
+ 24 119.595 387 1 1 -102.638 62.571 -174.45
+ 24 128.172 1213 1 0 -102.006 62.714 -175.85
+Number of digits in this event = 38
Using G4ParticleGun ...
-6.29544 LIN
+4.18968 LIN
gamma
Event: 25
-Number of tracker hits in this event = 7
- 25 111.804 1496 4 1 119.419 135.106 -84.85
- 25 85.7577 1497 4 1 119.55 135.111 -84.5026
- 25 98.2653 1498 4 1 119.75 135.105 -84.4742
- 25 261.993 1499 4 1 119.95 134.974 -84.5597
- 25 99.7147 371 4 0 -126.308 -105.75 -86.1865
- 25 6.33724 264 4 1 -127.329 -106.122 -84.85
- 25 180.38 263 4 1 -127.35 -106.127 -84.8263
-Number of digits in this event = 3
+Number of tracker hits in this event = 5
+ 25 118.047 887 8 0 19.5113 -2.65 33.8741
+ 25 136.672 999 8 1 19.8564 -2.15066 35.15
+ 25 192.46 998 8 1 19.85 -2.11322 35.3318
+ 25 153.23 1000 8 1 20.0503 -1.89215 35.1649
+ 25 250.441 1001 8 1 20.2505 -1.87173 35.2643
+Number of digits in this event = 6
Using G4ParticleGun ...
-2.8178 LIN
+7.57833 LIN
gamma
Event: 26
-Number of tracker hits in this event = 0
-Number of digits in this event = 1
-Using G4ParticleGun ...
-7.27211 LIN
+Number of tracker hits in this event = 147
+ 26 243.701 1065 11 1 33.0633 -23.3347 125.55
+ 26 227.69 783 11 0 33.063 -23.3345 124.15
+ 26 381.503 1065 10 1 33.0588 -23.3292 95.55
+ 26 251.02 783 10 0 33.0591 -23.3298 94.15
+ 26 111.435 1065 9 1 33.0651 -23.3389 65.55
+ 26 109.126 783 9 0 33.0665 -23.3403 64.15
+ 26 179.804 1065 8 1 33.0898 -23.37 35.55
+ 26 301.63 783 8 0 33.0904 -23.3721 34.15
+ 26 160.26 1065 7 1 33.102 -23.419 5.55
+ 26 291.886 783 7 0 33.1016 -23.4228 4.15
+ 26 139.807 1065 6 1 33.093 -23.4962 -24.45
+ 26 105.114 782 6 0 33.092 -23.4994 -25.85
+ 26 125.798 1065 5 1 33.0745 -23.5693 -54.45
+ 26 105.424 782 5 0 33.0728 -23.5727 -55.85
+ 26 95.5696 1064 4 1 33.0375 -23.6427 -84.45
+ 26 169.54 782 4 0 33.0357 -23.6473 -85.85
+ 26 122.153 1064 3 1 33.0088 -23.7541 -114.45
+ 26 139.395 781 3 0 33.0075 -23.7559 -115.85
+ 26 108.051 1064 2 1 32.9733 -23.7965 -144.45
+ 26 113.511 781 2 0 32.9507 -23.7907 -145.85
+ 26 180.702 1060 1 1 32.1607 -23.6672 -174.45
+ 26 278.29 781 1 0 32.1287 -23.6602 -175.85
+ 26 91.6653 1058 0 1 31.6909 -23.5807 -204.45
+ 26 119.31 782 0 0 31.6752 -23.5604 -205.85
+ 26 90.068 1062 9 1 32.582 -23.0666 65.55
+ 26 138.013 784 9 0 32.5586 -23.0651 64.15
+ 26 141.337 1060 8 1 32.164 -23.0279 35.55
+ 26 437.987 785 8 0 32.1226 -23.0445 34.15
+ 26 118.959 1056 7 1 31.3469 -23.4226 5.55
+ 26 62.584 782 7 0 31.2915 -23.45 3.99968
+ 26 200.019 1051 6 1 30.2726 -23.8626 -24.45
+ 26 106.713 780 6 0 30.2311 -23.8904 -25.85
+ 26 135.663 1046 5 1 29.4396 -24.5306 -54.45
+ 26 145.817 777 5 0 29.4376 -24.5795 -55.85
+ 26 120.996 1047 4 1 29.5293 -25.6822 -84.4501
+ 26 150.11 772 4 0 29.6872 -25.5901 -85.8501
+ 26 158.786 1063 3 1 32.6678 -23.6997 -114.45
+ 26 97.7132 782 3 0 32.8303 -23.6107 -115.85
+ 26 121.326 1079 2 1 36.0215 -21.9663 -144.45
+ 26 17.0053 1080 2 1 36.05 -21.9448 -144.771
+ 26 123.81 791 2 0 36.1356 -21.8151 -145.85
+ 26 171.791 1088 1 1 37.746 -18.0763 -174.45
+ 26 12.4542 809 1 0 37.7826 -18.0508 -175.85
+ 26 133.303 810 1 0 37.7838 -18.05 -175.9
+ 26 113.088 1094 0 1 38.9735 -17.265 -204.45
+ 26 253.75 813 0 0 39.068 -17.3219 -205.85
+ 26 132.021 814 0 0 39.164 -17.25 -206.001
+ 26 47.5115 815 0 0 39.2536 -17.05 -206.207
+ 26 289.677 950 0 0 33.9801 10.0888 -206.25
+ 26 41.6162 1050 6 1 30.25 -23.8678 -24.748
+ 26 209.511 1047 5 1 29.5074 -24.3025 -54.45
+ 26 13.5108 1035 3 1 27.2372 -25.4119 -114.45
+ 26 103.22 1036 3 1 27.25 -25.4085 -114.481
+ 26 207.631 1037 3 1 27.45 -25.2145 -114.641
+ 26 240.907 1038 3 1 27.65 -24.7742 -114.672
+ 26 293.04 1048 5 1 29.6945 -24.163 -54.45
+ 26 182.676 779 5 0 29.59 -24.2107 -55.85
+ 26 122.997 1034 4 1 26.995 -25.0355 -84.4504
+ 26 104.201 774 4 0 26.6049 -25.0662 -85.85
+ 26 27.5535 991 3 1 18.2726 -25.9478 -114.45
+ 26 109.112 990 3 1 18.25 -25.9768 -114.56
+ 26 180.621 768 3 0 17.9831 -26.3087 -115.85
+ 26 9.72772 959 2 1 11.8544 -32.7427 -144.45
+ 26 120.561 958 2 1 11.85 -32.7499 -144.474
+ 26 106.123 734 2 0 11.5943 -33.1417 -145.851
+ 26 5.24399 733 2 0 11.5234 -33.25 -146.235
+ 26 113.277 930 1 1 6.20682 -41.0487 -174.45
+ 26 109.924 692 1 0 6.21179 -41.5013 -175.85
+ 26 129.849 931 0 1 6.33686 -50.9828 -204.45
+ 26 137.772 643 0 0 6.38289 -51.3327 -205.85
+ 26 37.2581 778 5 0 29.9333 -24.25 -56.1059
+ 26 217.386 1057 4 1 31.6175 -26.9031 -84.45
+ 26 58.5202 761 4 0 31.7127 -27.7305 -85.8508
+ 26 68.4157 760 4 0 31.737 -27.8504 -86.0364
+ 26 238.979 1053 3 1 30.7062 -51.6059 -114.45
+ 26 354.529 1054 3 1 30.85 -51.0111 -114.764
+ 26 86.1629 653 3 0 30.7306 -49.4423 -115.85
+ 26 65.4218 654 3 0 30.7086 -49.2491 -115.999
+ 26 60.4213 655 3 0 30.6718 -49.05 -116.132
+ 26 25.174 1024 2 1 25.0159 -16.4039 -144.45
+ 26 93.286 1025 2 1 25.05 -16.4837 -144.519
+ 26 145.973 1026 2 1 25.25 -16.7437 -144.726
+ 26 9.74342 804 2 0 25.3401 -19.2302 -145.85
+ 26 61.9763 803 2 0 25.3443 -19.2502 -145.865
+ 26 70.6417 802 2 0 25.3202 -19.45 -146.008
+ 26 42.1154 801 2 0 25.2699 -19.65 -146.142
+ 26 49.4342 800 2 0 25.261 -19.85 -146.23
+ 26 62.8431 815 2 0 25.7766 -16.9708 -145.85
+ 26 123.618 814 2 0 25.7723 -17.05 -146.006
+ 26 33.4831 321 3 0 107.595 -115.786 -116.25
+ 26 58.4705 793 1 0 28.2396 -21.3054 -175.85
+ 26 212.583 1062 8 1 32.473 -22.9415 35.55
+ 26 135.46 1060 7 1 32.0729 -23.3222 5.54974
+ 26 99.9401 1063 6 1 32.7665 -23.3795 -24.4512
+ 26 159.268 783 6 0 32.832 -23.2875 -25.8503
+ 26 96.7655 1070 5 1 34.1851 -21.4124 -54.45
+ 26 207.801 793 5 0 34.3059 -21.3481 -55.85
+ 26 121.265 1082 4 1 36.5027 -19.8389 -84.45
+ 26 114.683 800 4 0 36.5403 -19.8895 -85.85
+ 26 94.5485 1086 3 1 37.3049 -21.3162 -114.45
+ 26 232.002 793 3 0 37.2229 -21.4184 -115.85
+ 26 134.934 1078 2 1 35.8292 -23.1075 -144.45
+ 26 113.491 784 2 0 35.7149 -23.1398 -145.85
+ 26 138.104 1065 1 1 33.0814 -23.6469 -174.45
+ 26 114.281 1062 0 1 32.5579 -23.8133 -204.45
+ 26 130.956 781 0 0 32.4819 -23.8059 -205.85
+ 26 30.9789 1143 0 1 48.65 -26.6275 -204.501
+ 26 120.297 1062 7 1 32.5447 -21.9012 5.55
+ 26 100.07 790 7 0 32.5273 -21.9018 4.14994
+ 26 135.331 1060 6 1 32.1264 -22.1477 -24.45
+ 26 134.771 790 6 0 32.2383 -21.9573 -25.85
+ 26 117.475 1071 5 1 34.3555 -17.0348 -54.45
+ 26 124.199 816 5 0 34.4797 -16.7647 -55.85
+ 26 159.989 1089 4 1 37.9076 -12.4525 -84.45
+ 26 167.083 837 4 0 37.9073 -12.5866 -85.85
+ 26 131.995 1087 3 1 37.6372 -15.8321 -114.45
+ 26 136.382 818 3 0 37.5663 -16.2818 -115.85
+ 26 126.83 1081 2 1 36.279 -26.953 -144.45
+ 26 51.8095 761 2 0 36.2104 -27.7503 -145.85
+ 26 63.7166 760 2 0 36.2027 -27.85 -146.031
+ 26 147.29 1073 1 1 34.8477 -43.0299 -174.45
+ 26 95.1977 682 1 0 34.4682 -43.5156 -175.85
+ 26 7.70436 681 1 0 34.3685 -43.6501 -176.22
+ 26 108.161 1047 0 1 29.4993 -56.0416 -204.45
+ 26 70.559 617 0 0 29.647 -56.5853 -205.85
+ 26 74.4391 616 0 0 29.6711 -56.65 -206.016
+ 26 101.377 790 3 0 31.0791 -22.0051 -115.85
+ 26 390.849 1049 2 1 29.9908 -22.1099 -144.45
+ 26 48.2482 807 2 0 29.4197 -18.5703 -145.85
+ 26 190.44 808 2 0 29.3934 -18.45 -145.963
+ 26 56.8174 809 2 0 29.3699 -18.25 -146.109
+ 26 72.535 810 2 0 29.3283 -18.0495 -146.191
+ 26 54.7962 811 2 0 29.2144 -17.85 -146.233
+ 26 130.63 955 2 0 -21.9177 11.1678 -146.25
+ 26 2.41641 954 2 0 -22.1027 11.05 -145.859
+ 26 80.3579 786 2 1 -22.6665 10.8374 -144.85
+ 26 39.9055 785 2 1 -22.85 10.81 -144.601
+ 26 58.116 482 9 1 -83.65 47.5304 65.5018
+ 26 121.327 1048 2 1 29.7044 -15.8765 -144.451
+ 26 109.107 821 2 0 29.5901 -15.7557 -145.85
+ 26 44.86 1038 1 1 27.6756 -12.4889 -174.45
+ 26 118.088 1037 1 1 27.6498 -12.4707 -174.522
+ 26 43.4278 839 1 0 27.0736 -12.0877 -175.85
+ 26 90.8464 840 1 0 27.0199 -12.05 -175.973
+ 26 68.2765 965 0 1 13.1711 -3.27953 -204.45
+ 26 61.8964 964 0 1 13.05 -3.19922 -204.684
+ 26 156.72 886 0 0 12.4823 -2.84443 -205.85
+Number of digits in this event = 73
+Using G4ParticleGun ...
+3.24098 LIN
gamma
Event: 27
-Number of tracker hits in this event = 36
- 27 311.044 805 5 1 -18.902 63.5286 -54.45
- 27 382.616 1217 5 0 -18.9129 63.5285 -55.85
- 27 119.955 804 4 1 -19.1318 63.6217 -84.45
- 27 370.207 1217 4 0 -19.1448 63.6251 -85.85
- 27 129.955 803 3 1 -19.399 63.6886 -114.45
- 27 122.719 1218 3 0 -19.4109 63.6817 -115.85
- 27 266.843 802 2 1 -19.6476 63.501 -144.45
- 27 381.712 1217 2 0 -19.6521 63.5072 -145.85
- 27 154.018 801 1 1 -19.8007 63.6507 -174.45
- 27 111.366 1218 1 0 -19.8083 63.6683 -175.85
- 27 124.024 800 0 1 -20.0244 63.999 -204.45
- 27 139.425 1220 0 0 -20.0391 64.0511 -205.85
- 27 127.544 799 0 1 -20.0506 63.993 -204.781
- 27 110.297 798 0 1 -20.25 63.7683 -204.745
- 27 117.85 1221 0 0 -19.7176 64.3548 -205.85
- 27 45.7818 801 2 1 -19.65 63.4832 -144.631
- 27 391.827 803 2 1 -19.45 63.3015 -144.709
- 27 25.4578 804 2 1 -19.25 63.2603 -144.616
- 27 155.014 806 5 1 -18.85 63.4913 -54.8028
- 27 179.776 805 4 1 -18.8891 63.5242 -84.45
- 27 190.269 805 3 1 -18.8591 63.53 -114.45
- 27 119.321 1217 3 0 -18.857 63.5303 -115.85
- 27 261.647 806 2 1 -18.811 63.5411 -144.45
- 27 216.568 806 1 1 -18.7953 63.582 -174.45
- 27 251.719 1217 1 0 -18.7936 63.583 -175.85
- 27 262.362 806 0 1 -18.7518 63.6042 -204.45
- 27 295.76 1217 0 0 -18.7499 63.6042 -205.85
- 27 203.432 1206 5 1 61.25 80.7166 -54.7919
- 27 139.28 713 0 1 -37.4021 75.1674 -204.488
- 27 58.1593 1274 0 0 -37.5644 74.868 -205.85
- 27 190.588 1273 0 0 -37.5839 74.85 -205.94
- 27 98.6573 712 0 1 -37.45 75.2107 -204.599
- 27 171.124 1276 0 0 -37.919 75.3684 -205.85
- 27 167.095 1235 0 0 -59.6477 67.234 -206.25
- 27 159.073 1236 0 0 -59.8737 67.25 -206.168
- 27 271.143 1237 0 0 -59.9236 67.45 -205.882
-Number of digits in this event = 31
+Number of tracker hits in this event = 9
+ 27 363.635 1270 0 1 74.0503 61.1638 -204.45
+ 27 386.817 1205 0 0 74.05 61.1663 -205.85
+ 27 77.2924 1508 1 0 140.058 121.75 -176.242
+ 27 156.819 1509 1 0 140.28 121.95 -176.045
+ 27 79.037 1510 1 0 140.4 122.15 -175.887
+ 27 32.8363 1594 1 1 139.148 121.962 -174.85
+ 27 42.8248 1512 1 0 137.634 122.738 -175.85
+ 27 292.45 1513 1 0 137.604 122.75 -175.876
+ 27 23.1684 1101 6 1 40.3902 98.1071 -24.45
+Number of digits in this event = 7
Using G4ParticleGun ...
-4.39786 LIN
+4.59916 LIN
gamma
Event: 28
-Number of tracker hits in this event = 1
- 28 63.5631 1505 1 1 121.273 29.9674 -174.85
-Number of digits in this event = 2
+Number of tracker hits in this event = 0
+Number of digits in this event = 3
Using G4ParticleGun ...
-3.30534 LIN
+5.5087 LIN
gamma
Event: 29
-Number of tracker hits in this event = 7
- 29 66.4626 574 2 0 135.094 -65.1998 -146.25
- 29 60.9538 575 2 0 135.058 -65.05 -146.16
- 29 59.8601 576 2 0 134.946 -64.85 -146.1
- 29 90.835 577 2 0 134.862 -64.65 -146.061
- 29 74.9879 578 2 0 134.794 -64.45 -145.97
- 29 169.543 1573 2 1 134.854 -63.4393 -144.85
- 29 39.5099 1574 2 1 134.95 -63.1659 -144.546
-Number of digits in this event = 3
+Number of tracker hits in this event = 102
+ 29 288.188 863 9 1 -7.34746 27.6637 65.55
+ 29 205.676 1038 9 0 -7.3487 27.6632 64.15
+ 29 312.929 863 8 1 -7.37434 27.6546 35.55
+ 29 235.656 1038 8 0 -7.37567 27.6553 34.15
+ 29 297.432 863 7 1 -7.40244 27.668 5.55
+ 29 236.218 1038 7 0 -7.40416 27.6678 4.15
+ 29 423.247 862 6 1 -7.53403 27.6789 -24.45
+ 29 300.028 1038 6 0 -7.53049 27.6752 -25.85
+ 29 102.557 863 5 1 -7.43991 27.6256 -54.45
+ 29 477.234 1037 5 0 -7.4319 27.618 -55.85
+ 29 221.156 864 4 1 -7.23424 27.5136 -84.45
+ 29 611.719 1037 4 0 -7.23183 27.5153 -85.85
+ 29 295.846 864 3 1 -7.18556 27.5944 -114.45
+ 29 110.005 1037 3 0 -7.20435 27.601 -115.85
+ 29 258.604 862 2 1 -7.57714 27.7588 -144.45
+ 29 114.988 1038 2 0 -7.59315 27.7571 -145.85
+ 29 139.318 860 1 1 -7.85399 27.8049 -174.45
+ 29 155.35 861 1 1 -7.85 27.8014 -174.616
+ 29 126.439 1038 1 0 -7.82718 27.7675 -175.85
+ 29 122.377 863 0 1 -7.38963 27.0467 -204.45
+ 29 226.58 1034 0 0 -7.36501 26.9985 -205.85
+ 29 26.5831 1042 1 0 -7.52016 28.6177 -175.85
+ 29 131.401 1043 1 0 -7.52014 28.6501 -175.89
+ 29 94.8441 1027 4 0 -6.41501 25.5964 -85.8503
+ 29 187.062 1026 4 0 -6.27332 25.45 -86.0334
+ 29 70.5531 1025 4 0 -6.07957 25.25 -86.1035
+ 29 161.972 1024 4 0 -5.9525 25.0496 -86.1132
+ 29 442.191 1036 4 0 76.7439 27.3812 -86.25
+ 29 371.252 1037 6 0 -7.51715 27.65 -25.9144
+ 29 127.05 862 5 1 -7.5903 27.5183 -54.45
+ 29 124.777 860 4 1 -7.99076 27.5472 -84.45
+ 29 124.355 858 3 1 -8.34914 27.1108 -114.45
+ 29 125.137 1035 3 0 -8.37176 27.1177 -115.85
+ 29 140.801 855 2 1 -8.91868 27.2816 -144.45
+ 29 654.366 1036 2 0 -8.94524 27.2716 -145.85
+ 29 139.858 853 1 1 -9.3906 27.0823 -174.45
+ 29 160.207 1035 1 0 -9.4033 27.0781 -175.85
+ 29 485.334 851 0 1 -9.70439 27.027 -204.45
+ 29 123.966 860 5 1 -8.01287 27.5246 -54.45
+ 29 129.286 859 4 1 -8.08022 27.5482 -84.45
+ 29 113.669 857 3 1 -8.51441 27.4605 -114.45
+ 29 145.434 1036 3 0 -8.51443 27.4274 -115.85
+ 29 123.767 857 2 1 -8.64037 26.6755 -144.45
+ 29 121.134 1032 2 0 -8.59324 26.5657 -145.85
+ 29 121.916 859 1 1 -8.23954 24.4642 -174.45
+ 29 136.824 1020 1 0 -8.20574 24.16 -175.85
+ 29 119.005 861 0 1 -7.7906 18.153 -204.45
+ 29 116.24 988 0 0 -7.7643 17.7659 -205.85
+ 29 29.0909 215 5 1 -137.057 -27.0669 -54.85
+ 29 843.236 863 4 1 -7.3633 27.5106 -84.4501
+ 29 113.689 875 3 1 -4.95841 25.4541 -114.45
+ 29 6.01514 874 3 1 -5.05 25.4863 -114.826
+ 29 125.541 1027 3 0 -5.29832 25.5677 -115.85
+ 29 63.648 840 2 1 -11.9381 28.1611 -144.45
+ 29 67.2058 839 2 1 -12.05 28.1503 -144.64
+ 29 137.106 1040 2 0 -12.8664 28.1053 -145.85
+ 29 89.3813 734 1 1 -33.0524 26.5473 -174.45
+ 29 28.1276 733 1 1 -33.25 26.588 -174.761
+ 29 145.151 1033 1 0 -33.9221 26.6972 -175.85
+ 29 73.5116 645 0 1 -50.9217 29.2768 -204.45
+ 29 58.2754 644 0 1 -51.05 29.4304 -204.675
+ 29 11.4673 1050 0 0 -51.7291 30.2249 -205.85
+ 29 103.081 1051 0 0 -51.7508 30.2502 -205.888
+ 29 31.1789 1052 0 0 -51.9097 30.4502 -206.169
+ 29 281.986 862 4 1 -7.45 27.2065 -84.6295
+ 29 134.466 860 3 1 -7.9498 27.7326 -114.45
+ 29 100.77 1038 3 0 -7.9236 27.7309 -115.85
+ 29 162.218 857 1 1 -8.58071 26.6083 -174.45
+ 29 120.846 1032 1 0 -8.63508 26.5594 -175.85
+ 29 107.301 1026 0 0 -9.88828 25.3665 -205.85
+ 29 8.89722 850 0 1 -9.8501 28.4921 -204.809
+ 29 69.1628 1046 0 0 -10.3022 29.3017 -205.85
+ 29 82.3685 1047 0 0 -10.3966 29.45 -206.004
+ 29 50.4012 1048 0 0 -10.5104 29.65 -206.164
+ 29 5.63179 1281 0 0 -18.096 76.4276 -206.249
+ 29 297.846 1282 0 0 -18.0921 76.45 -206.236
+ 29 79.1778 1283 0 0 -18.1139 76.65 -206.141
+ 29 95.9989 1284 0 0 -18.2263 76.85 -206.083
+ 29 91.0356 1285 0 0 -18.3499 77.05 -206.011
+ 29 11.3505 1286 0 0 -18.4754 77.2501 -205.874
+ 29 99.7604 802 0 1 -19.4646 79.0801 -204.85
+ 29 92.1836 801 0 1 -19.65 79.3392 -204.675
+ 29 61.7645 800 0 1 -19.85 79.5095 -204.556
+ 29 14.5119 799 0 1 -20.05 79.636 -204.47
+ 29 118.229 863 6 1 -7.41373 27.8284 -24.45
+ 29 188.705 866 5 1 -6.77257 26.459 -54.45
+ 29 118.689 1033 5 0 -6.71565 26.7368 -55.8501
+ 29 122.022 870 4 1 -5.99555 32.2926 -84.45
+ 29 224.19 1062 4 0 -5.88368 32.5343 -85.85
+ 29 154.224 884 3 1 -3.24504 37.3939 -114.45
+ 29 162.14 1087 3 0 -2.97237 37.5815 -115.85
+ 29 112.267 919 2 1 3.97391 41.349 -144.45
+ 29 14.5756 920 2 1 4.05 41.3327 -144.791
+ 29 124.779 1106 2 0 4.33185 41.2878 -145.85
+ 29 41.9895 958 1 1 11.8081 39.2964 -174.45
+ 29 73.477 959 1 1 11.85 39.281 -174.614
+ 29 105.903 1095 1 0 12.1627 39.21 -175.85
+ 29 106.204 992 0 1 18.4507 36.6902 -204.45
+ 29 34.8838 1082 0 0 18.7342 36.4733 -205.85
+ 29 66.275 1081 0 0 18.7634 36.45 -205.992
+ 29 269.045 865 0 1 -7.00238 28.4422 -204.45
+ 29 238.292 1041 0 0 -7.00297 28.4455 -205.85
+Number of digits in this event = 59
Using G4ParticleGun ...
-6.23114 LIN
+5.55959 LIN
gamma
Event: 30
-Number of tracker hits in this event = 8
- 30 256.454 957 1 1 11.5874 80.2692 -174.45
- 30 234.661 1301 1 0 11.5901 80.2711 -175.85
- 30 505.981 957 0 1 11.641 80.3216 -204.45
- 30 239.657 1301 0 0 11.6417 80.3329 -205.85
- 30 261.452 1300 0 0 11.5734 80.2464 -205.85
- 30 16.6636 1059 0 0 -19.5263 32.05 -206.156
- 30 104.733 1058 0 0 -19.7192 31.85 -205.963
- 30 98.4151 800 0 1 -19.9914 32.6321 -204.85
+Number of tracker hits in this event = 12
+ 30 245.116 1120 1 1 44.058 -100.209 -174.45
+ 30 103.865 400 1 0 44.1582 -100.124 -175.85
+ 30 4.96097 1133 0 1 46.6541 -97.7523 -204.45
+ 30 89.8371 1132 0 1 46.65 -97.7538 -204.455
+ 30 76.2519 1131 0 1 46.45 -97.8342 -204.709
+ 30 49.5351 406 0 0 45.6791 -98.7998 -205.85
+ 30 92.8094 405 0 0 45.5744 -98.95 -205.971
+ 30 79.2474 404 0 0 45.3789 -99.15 -206.103
+ 30 5.21652 403 0 0 45.1916 -99.35 -206.241
+ 30 158.467 399 1 0 44.0864 -100.214 -175.85
+ 30 124.771 1120 0 1 44.0686 -100.22 -204.45
+ 30 179.372 399 0 0 44.0674 -100.221 -205.85
Number of digits in this event = 7
Using G4ParticleGun ...
-8.30373 LIN
+8.76403 LIN
gamma
Event: 31
-Number of tracker hits in this event = 3
- 31 57.4562 8 3 0 101.002 -178.427 -116.25
- 31 64.804 1404 3 1 100.997 -178.502 -114.85
- 31 216.629 1403 3 1 100.95 -178.568 -114.794
-Number of digits in this event = 3
+Number of tracker hits in this event = 9
+ 31 204.16 174 7 1 -145.15 -111.61 5.15942
+ 31 124.035 48 0 1 -170.35 24.191 -204.641
+ 31 92.4298 578 3 0 -175.861 -64.2549 -116.25
+ 31 64.5461 577 3 0 -175.932 -64.45 -116.138
+ 31 63.1674 576 3 0 -175.975 -64.65 -116.213
+ 31 28.3781 575 3 0 -176.015 -64.85 -116.217
+ 31 19.1228 742 0 0 21.844 -31.5353 -206.25
+ 31 59.483 893 6 0 152.304 -1.25 -26.1304
+ 31 90.2298 937 1 0 -6.76113 7.6129 -176.25
+Number of digits in this event = 5
Using G4ParticleGun ...
-9.84682 LIN
+6.73978 LIN
gamma
Event: 32
-Number of tracker hits in this event = 62
- 32 229.778 540 8 1 -71.9328 -95.6097 35.55
- 32 310.085 422 8 0 -71.9329 -95.6112 34.15
- 32 256.813 540 7 1 -71.9378 -95.6454 5.55
- 32 334.553 422 7 0 -71.9387 -95.6452 4.15
- 32 236.669 540 6 1 -71.9473 -95.6397 -24.45
- 32 331.856 422 6 0 -71.9463 -95.6411 -25.85
- 32 624.12 540 5 1 -71.9122 -95.6362 -54.45
- 32 637.504 422 5 0 -71.911 -95.6347 -55.85
- 32 577.549 540 4 1 -71.912 -95.5983 -84.45
- 32 605.673 422 4 0 -71.9099 -95.5954 -85.85
- 32 497.549 540 3 1 -71.8596 -95.5148 -114.45
- 32 162.425 423 3 0 -71.8584 -95.497 -115.85
- 32 200.156 540 2 1 -71.874 -95.1196 -144.45
- 32 107.932 425 2 0 -71.8856 -95.1078 -145.85
- 32 109.603 539 1 1 -72.1354 -94.8964 -174.45
- 32 251.301 426 1 0 -72.1536 -94.8737 -175.85
- 32 95.0987 537 0 1 -72.5547 -94.3988 -204.45
- 32 279.598 428 0 0 -72.5612 -94.3795 -205.85
- 32 128.817 541 3 1 -71.659 -95.5851 -114.45
- 32 328.532 422 3 0 -71.6494 -95.5754 -115.85
- 32 161.658 542 2 1 -71.5099 -95.4203 -144.45
- 32 122.527 423 2 0 -71.5105 -95.3964 -145.85
- 32 267.429 542 1 1 -71.552 -94.8872 -174.45
- 32 180.377 541 0 1 -71.7581 -94.4218 -204.45
- 32 113.022 541 4 1 -71.6557 -95.6356 -84.45
- 32 143.023 424 3 0 -71.8613 -95.35 -115.909
- 32 125.665 539 2 1 -72.0521 -94.5958 -144.45
- 32 118.007 427 2 0 -72.0662 -94.5585 -145.85
- 32 142.125 428 2 0 -72.0697 -94.55 -146.181
- 32 113.186 538 1 1 -72.444 -93.8547 -174.45
- 32 263.508 431 1 0 -72.467 -93.8156 -175.85
- 32 132.64 535 0 1 -72.9044 -92.9901 -204.45
- 32 110.946 436 0 0 -72.9109 -92.8941 -205.85
- 32 196.953 541 5 1 -71.85 -95.5575 -54.5234
- 32 222.654 421 5 0 -71.2699 -95.8869 -55.85
- 32 3.18022 420 5 0 -70.9613 -95.95 -56.2429
- 32 124.824 423 4 0 -71.8763 -95.4047 -85.85
- 32 19.3056 425 3 0 -72.0087 -94.9507 -115.85
- 32 110.443 426 3 0 -72.0093 -94.95 -115.895
- 32 99.0089 537 2 1 -72.4832 -94.4196 -144.45
- 32 123.73 535 1 1 -72.9785 -93.8442 -174.45
- 32 106.644 533 0 1 -73.2693 -93.5172 -204.45
- 32 123.105 433 0 0 -73.3021 -93.4711 -205.85
- 32 164.425 422 2 0 -71.9941 -95.6302 -145.85
- 32 119.471 540 1 1 -71.9881 -95.6049 -174.45
- 32 167.364 422 1 0 -71.9912 -95.6064 -175.85
- 32 160.826 540 0 1 -72.0463 -95.6359 -204.45
- 32 143.808 422 0 0 -72.0497 -95.6377 -205.85
- 32 192.226 403 3 0 -58.7928 -99.5181 -116.25
- 32 46.1303 402 3 0 -58.7115 -99.55 -116.003
- 32 163.775 608 3 1 -58.4107 -99.8496 -114.85
- 32 0.205684 609 3 1 -58.25 -100.027 -114.45
- 32 72.3766 519 4 0 -10.5309 -76.1509 -86.25
- 32 225.472 520 4 0 -10.5492 -76.05 -86.1378
- 32 109.473 488 2 0 -13.7226 -82.3029 -146.25
- 32 3.50772 819 2 1 -16.0521 -82.4298 -144.85
- 32 114.327 487 2 0 -17.3345 -82.4836 -145.85
- 32 15.4322 541 7 1 -71.8499 -95.582 5.20033
- 32 153.611 425 7 0 -71.0373 -95.0836 4.15
- 32 193.303 426 7 0 -70.7994 -94.95 3.93309
- 32 233.189 374 7 0 -29.0775 -105.327 3.75
- 32 232.847 373 7 0 -29.2196 -105.35 4.08946
-Number of digits in this event = 45
+Number of tracker hits in this event = 3
+ 32 402.689 1051 0 1 30.3568 124.954 -204.45
+ 32 312.99 1524 0 0 30.3579 124.954 -205.85
+ 32 116.571 1478 3 0 101.667 115.877 -116.25
+Number of digits in this event = 5
Using G4ParticleGun ...
-2.41572 LIN
+3.67371 LIN
gamma
Event: 33
-Number of tracker hits in this event = 183
- 33 234.094 1028 9 1 25.7885 19.0219 65.55
- 33 288.761 994 9 0 25.7918 19.0225 64.15
- 33 105.034 1029 8 1 25.8749 19.0414 35.55
- 33 199.693 994 8 0 25.8808 19.0409 34.15
- 33 384.778 1029 7 1 25.9916 19.0234 5.55
- 33 238.188 994 7 0 26.0003 19.0238 4.15
- 33 211.275 1030 6 1 26.1756 19.0327 -24.45
- 33 255.781 994 6 0 26.1832 19.0283 -25.85
- 33 118.796 1031 5 1 26.349 18.9106 -54.45
- 33 108.65 994 5 0 26.3631 18.905 -55.85
- 33 152.863 1032 4 1 26.6348 18.8112 -84.45
- 33 227.021 993 4 0 26.6571 18.7994 -85.85
- 33 132.477 1035 3 1 27.1073 18.5161 -114.45
- 33 269.086 992 3 0 27.1226 18.5045 -115.85
- 33 108.023 1036 2 1 27.4053 18.2609 -144.45
- 33 130.405 990 2 0 27.42 18.2483 -145.85
- 33 144.729 1038 1 1 27.7921 17.953 -174.45
- 33 119.519 989 1 0 27.8212 17.9268 -175.85
- 33 431.754 1041 0 1 28.4121 17.4423 -204.45
- 33 195.32 986 0 0 28.4611 17.4227 -205.85
- 33 186.65 993 3 0 27.2773 18.65 -115.935
- 33 312.084 987 0 0 28.2581 17.5317 -205.85
- 33 345.888 1035 0 1 27.2064 18.6223 -204.45
- 33 456.847 992 0 0 27.2105 18.621 -205.85
- 33 120.842 1034 0 1 27.05 18.4655 -204.507
- 33 87.0786 1033 0 1 26.85 18.3829 -204.647
- 33 85.3767 1032 0 1 26.65 18.4419 -204.702
- 33 137.685 1025 0 1 25.1005 18.8113 -204.85
- 33 305.19 995 7 0 26.0061 19.0938 4.14946
- 33 158.712 1027 6 1 25.499 20.4164 -24.45
- 33 169.39 1002 6 0 25.5232 20.565 -25.85
- 33 170.612 1033 5 1 26.7283 24.674 -54.45
- 33 105.393 1024 5 0 26.4632 24.8918 -55.85
- 33 155.646 1006 4 1 21.2642 29.7709 -84.45
- 33 3.20645 1007 4 1 21.45 29.9788 -84.8364
- 33 99.0757 1051 4 0 22.0952 30.3744 -85.85
- 33 166.554 1052 4 0 22.2261 30.4501 -86.0437
- 33 275.502 1101 3 1 40.2841 40.1232 -114.45
- 33 76.9857 1102 3 1 40.45 40.1006 -114.575
- 33 149.383 1103 3 1 40.65 40.0859 -114.74
- 33 7.40283 1100 3 0 41.9318 40.052 -115.85
- 33 156.684 1099 3 0 41.9575 40.05 -115.873
- 33 13.7305 1273 2 1 74.8215 36.508 -144.45
- 33 125.204 1274 2 1 74.85 36.5054 -144.505
- 33 141.802 1082 2 0 75.3951 36.5124 -145.85
- 33 68.7491 1260 1 1 72.17 46.3344 -174.45
- 33 101.677 1261 1 1 72.25 46.4196 -174.599
- 33 48.9845 1134 1 0 72.9323 46.9763 -175.85
- 33 133.105 1135 1 0 73.0357 47.05 -176.023
- 33 77.1112 1347 0 1 89.6014 63.9026 -204.45
- 33 107.947 1346 0 1 89.45 64.1073 -204.571
- 33 76.3602 1345 0 1 89.2499 64.3919 -204.744
- 33 28.4896 1235 0 0 87.7538 67.1256 -205.85
- 33 57.98 1236 0 0 87.6985 67.25 -205.894
- 33 107.553 1237 0 0 87.608 67.45 -205.948
- 33 120.645 1238 0 0 87.4731 67.65 -206.039
- 33 57.3779 1239 0 0 87.3443 67.85 -206.146
- 33 15.3373 1416 0 0 69.4541 103.381 -206.25
- 33 111.393 1415 0 0 69.4414 103.35 -206.179
- 33 110.055 1247 0 1 69.529 102.839 -204.85
- 33 211.215 1028 6 1 25.6502 20.4748 -24.6743
- 33 171.213 1034 5 1 26.85 19.0773 -54.5776
- 33 154.045 995 5 0 26.8819 19.0687 -55.85
- 33 109.358 1038 4 1 27.7055 18.8795 -84.45
- 33 119.384 1044 3 1 28.8733 16.3035 -114.45
- 33 138.312 980 3 0 28.8825 16.1407 -115.85
- 33 128.413 1043 2 1 28.6734 13.1643 -144.45
- 33 26.3219 1042 2 1 28.65 13.1259 -144.765
- 33 126.868 964 2 0 28.5672 12.9804 -145.85
- 33 221.088 1032 1 1 26.5589 8.91648 -174.45
- 33 144.967 943 1 0 26.3823 8.75637 -175.85
- 33 30.5603 1003 0 1 20.6803 4.4837 -204.45
- 33 186.579 1002 0 1 20.65 4.45929 -204.565
- 33 125.797 920 0 0 20.3505 4.19631 -205.85
- 33 98.8757 942 1 0 26.6517 8.5454 -175.85
- 33 20.5861 941 1 0 26.6808 8.45 -176.156
- 33 157.56 1047 0 1 29.5652 0.144679 -204.45
- 33 35.8565 899 0 0 29.6879 -0.05 -206.087
- 33 1.80991 598 0 0 26.7596 -60.4439 -206.25
- 33 45.3128 597 0 0 26.7588 -60.45 -206.248
- 33 158.215 1033 1 1 26.65 9.02924 -174.519
- 33 26.6484 1034 1 1 26.8501 9.20505 -174.786
- 33 113.647 949 1 0 27.3897 9.88924 -175.85
- 33 62.1008 950 1 0 27.6192 10.05 -176.144
- 33 5.18705 971 1 0 29.6968 14.266 -176.25
- 33 146.501 970 1 0 29.6858 14.25 -176.243
- 33 276.247 969 1 0 29.509 14.05 -176.152
- 33 126.351 1037 4 1 27.6486 18.8907 -84.45
- 33 116.688 994 4 0 27.2704 18.8893 -85.85
- 33 105.916 993 3 1 18.7888 19.4219 -114.45
- 33 7.84033 992 3 1 18.65 19.4149 -114.819
- 33 145.439 996 3 0 18.2803 19.4254 -115.85
- 33 203.975 937 2 1 7.53146 19.1439 -144.45
- 33 210.982 936 2 1 7.45 19.0068 -144.605
- 33 70.7164 988 2 0 6.5009 17.8229 -145.85
- 33 115.999 987 2 0 6.36571 17.6496 -146.025
- 33 24.6349 817 1 1 -16.5649 4.50745 -174.45
- 33 77.2556 816 1 1 -16.65 4.50208 -174.517
- 33 131.608 815 1 1 -16.85 4.49559 -174.674
- 33 141.399 922 1 0 -18.0145 4.5797 -175.85
- 33 21.0634 923 1 0 -18.3198 4.65004 -176.196
- 33 30.5241 701 0 1 -39.6967 11.1186 -204.451
- 33 108.04 702 0 1 -39.65 11.073 -204.569
- 33 8.44157 703 0 1 -39.45 10.9992 -204.831
- 33 193.834 952 0 0 -38.5147 10.5725 -205.85
- 33 9.18295 1010 0 0 -8.18747 22.05 -206.205
- 33 42.9655 933 0 1 6.65 26.5884 -204.619
- 33 184.172 989 2 0 7.68209 17.9163 -145.85
- 33 26.2048 1192 4 1 58.5743 -37.9542 -84.85
- 33 79.5595 1193 4 1 58.65 -38.1414 -84.4889
- 33 67.7098 1194 4 1 58.85 -38.2099 -84.549
- 33 324.951 1035 5 1 27.05 19.3281 -54.468
- 33 209.734 1036 5 1 27.2502 19.9139 -54.6111
- 33 250.635 1028 8 1 25.7006 18.8362 35.55
- 33 115.724 993 8 0 25.7023 18.7866 34.15
- 33 164.003 1026 7 1 25.3015 17.4662 5.55
- 33 187.556 986 7 0 25.3034 17.3609 4.15
- 33 125.916 1026 6 1 25.403 15.1694 -24.45
- 33 101.102 974 6 0 25.525 15.0355 -25.85
- 33 260.914 1039 5 1 28.007 12.4052 -54.45
- 33 29.9963 961 5 0 28.1083 12.2613 -55.85
- 33 108.498 960 5 0 28.1165 12.25 -55.9602
- 33 99.8892 1052 4 1 30.6103 9.71878 -84.45
- 33 30.7965 1053 4 1 30.65 9.68959 -84.7309
- 33 122.408 947 4 0 30.8064 9.5652 -85.85
- 33 283.251 1073 3 1 34.6579 6.42761 -114.45
- 33 216.574 930 3 0 34.8816 6.23403 -115.85
- 33 151.862 1099 2 1 39.9112 2.14681 -144.45
- 33 121.146 909 2 0 40.1452 1.93166 -145.85
- 33 46.9206 1124 1 1 45.0001 -2.55486 -174.45
- 33 77.6803 1125 1 1 45.0502 -2.59682 -174.608
- 33 262.425 885 1 0 45.4366 -2.92415 -175.852
- 33 191.393 1171 0 1 54.3574 -10.3171 -204.45
- 33 127.435 847 0 0 54.6145 -10.5406 -205.851
- 33 29.4667 835 0 0 58.8154 -13.0408 -206.25
- 33 85.4779 834 0 0 58.8534 -13.05 -206.122
- 33 116.332 1197 0 1 59.5165 -13.2264 -204.85
- 33 163.755 1198 0 1 59.65 -13.2702 -204.672
- 33 1.36972 1199 0 1 59.85 -13.3607 -204.454
- 33 103.712 1196 0 1 59.4495 -13.6691 -204.542
- 33 284.511 1195 0 1 59.25 -13.9593 -204.595
- 33 185.484 1194 0 1 59.05 -14.5048 -204.644
- 33 146.465 823 1 0 28.6279 -15.2891 -176.25
- 33 78.0036 1044 1 1 28.9877 -15.4604 -174.85
- 33 83.9311 1045 1 1 29.0502 -15.5134 -174.569
- 33 12.3523 896 3 0 32.9153 -0.65021 -116.25
- 33 146.846 897 3 0 32.9014 -0.649987 -116.211
- 33 110.95 1062 3 1 32.6483 -0.151983 -114.85
- 33 53.472 1074 3 1 34.8507 6.50976 -114.663
- 33 89.9258 933 3 0 35.0528 6.82058 -115.85
- 33 81.6984 934 3 0 35.0931 6.85038 -116.069
- 33 24.5842 1284 3 0 73.159 76.9774 -116.25
- 33 79.497 1285 3 0 73.21 77.0501 -116.218
- 33 51.1576 1286 3 0 73.3601 77.2502 -116.09
- 33 53.8941 1434 3 0 73.0065 107.089 -116.25
- 33 74.3899 1435 3 0 73 107.15 -116.174
- 33 49.5702 1436 3 0 72.958 107.35 -116.094
- 33 58.4522 1437 3 0 72.943 107.55 -116.059
- 33 101.376 1438 3 0 72.9159 107.75 -116.091
- 33 59.3536 1439 3 0 72.865 107.95 -116.112
- 33 54.4028 1440 3 0 72.9247 108.15 -116.103
- 33 98.6235 1441 3 0 72.934 108.35 -116.088
- 33 123.625 1442 3 0 72.9439 108.55 -116.049
- 33 82.18 1443 3 0 73.0308 108.75 -115.987
- 33 106.707 1444 3 0 73.0895 108.95 -116.13
- 33 299.747 1445 3 0 72.9888 109.15 -116.19
- 33 143.238 1040 5 1 28.0502 12.3961 -54.506
- 33 33.803 854 7 0 -16.1285 -9.20043 3.75
- 33 121.509 853 7 0 -16.1284 -9.25 3.83746
- 33 157.323 818 7 1 -16.3397 -8.97867 5.15
- 33 28.4322 817 7 1 -16.45 -8.86184 5.23612
- 33 125.129 852 7 0 -15.7643 -9.51645 4.14999
- 33 39.5119 995 8 0 26.0509 19.2125 34.15
- 33 80.0468 996 8 0 26.0788 19.2501 34.028
- 33 103.873 1056 7 1 31.3341 27.9573 5.55
- 33 134.182 1042 7 0 31.2628 28.483 4.15
- 33 169.085 1081 6 1 36.3121 36.1324 -24.45
- 33 14.7645 1072 6 0 36.7238 34.5132 -25.85
- 33 64.9586 1071 6 0 36.7408 34.4499 -25.8931
- 33 77.8899 1070 6 0 36.7897 34.25 -26.0377
- 33 110.172 1023 6 0 42.8741 24.8093 -26.2498
- 33 182.007 1113 6 1 42.7535 24.1406 -24.85
- 33 17.8146 1114 6 1 42.85 23.6624 -24.4901
-Number of digits in this event = 89
+Number of tracker hits in this event = 1
+ 33 111.574 1619 13 1 143.95 5.29476 185.179
+Number of digits in this event = 2
Using G4ParticleGun ...
-6.21379 LIN
+4.23942 LIN
gamma
Event: 34
-Number of tracker hits in this event = 0
-Number of digits in this event = 1
+Number of tracker hits in this event = 38
+ 34 276.423 830 8 1 -13.8631 -134.946 35.55
+ 34 259.777 226 8 0 -13.8631 -134.947 34.15
+ 34 215.095 830 7 1 -13.8807 -134.952 5.55
+ 34 173.301 225 7 0 -13.8787 -134.953 4.15
+ 34 125.716 831 6 1 -13.8246 -134.972 -24.45
+ 34 147.744 225 6 0 -13.8177 -134.968 -25.85
+ 34 126.328 831 5 1 -13.6713 -134.883 -54.45
+ 34 126.356 226 5 0 -13.6641 -134.881 -55.85
+ 34 113.054 832 4 1 -13.5284 -134.839 -84.45
+ 34 115.699 226 4 0 -13.5236 -134.838 -85.85
+ 34 96.2862 833 3 1 -13.4262 -134.832 -114.45
+ 34 126.526 226 3 0 -13.4254 -134.837 -115.85
+ 34 130.527 833 2 1 -13.3825 -134.947 -144.45
+ 34 104.24 225 2 0 -13.3808 -134.953 -145.85
+ 34 107.749 833 1 1 -13.3678 -135.066 -174.45
+ 34 176.012 225 1 0 -13.3647 -135.071 -175.85
+ 34 256.821 833 0 1 -13.2995 -135.178 -204.45
+ 34 150.801 224 0 0 -13.2972 -135.182 -205.85
+ 34 337.055 858 0 1 -8.43284 -135.18 -204.45
+ 34 24.7887 376 0 0 -41.0946 -104.849 -206.25
+ 34 53.046 377 0 0 -41.3751 -104.75 -205.999
+ 34 75.5886 220 0 0 -13.4798 -135.985 -205.85
+ 34 104.069 219 0 0 -13.528 -136.15 -206.061
+ 34 118.439 226 7 0 -13.872 -134.928 4.15
+ 34 125.982 830 6 1 -13.9992 -134.599 -24.45
+ 34 118.074 227 6 0 -14.0046 -134.586 -25.85
+ 34 96.9343 829 5 1 -14.112 -134.33 -54.45
+ 34 128.342 229 5 0 -14.1144 -134.318 -55.85
+ 34 165.688 829 4 1 -14.1645 -134.082 -84.45
+ 34 128.841 230 4 0 -14.1756 -134.068 -85.85
+ 34 123.13 828 3 1 -14.4199 -133.83 -114.45
+ 34 153.737 231 3 0 -14.4382 -133.864 -115.85
+ 34 106.692 834 0 1 -13.1868 -88.1904 -204.85
+ 34 103.204 100 6 0 45.7463 -159.974 -26.25
+ 34 4.30149 99 6 0 45.8624 -160.15 -26.2424
+ 34 28.6766 824 0 1 -15.0964 -132.367 -204.45
+ 34 150.16 238 0 0 -14.5824 -132.52 -205.85
+ 34 15.7559 237 0 0 -14.4282 -132.55 -206.189
+Number of digits in this event = 23
Using G4ParticleGun ...
-3.44463 LIN
+8.39888 LIN
gamma
Event: 35
-Number of tracker hits in this event = 0
-Number of digits in this event = 2
+Number of tracker hits in this event = 32
+ 35 49.4482 898 7 1 -0.282304 -2.61847 5.2519
+ 35 259.279 887 7 0 -0.281722 -2.61789 4.15
+ 35 317.519 898 6 1 -0.35741 -2.63346 -24.45
+ 35 275.107 887 6 0 -0.372599 -2.64531 -25.85
+ 35 314.64 896 5 1 -0.69098 -2.97527 -54.45
+ 35 101.6 885 5 0 -0.691165 -2.98243 -55.85
+ 35 140.759 893 4 1 -1.37867 -3.88643 -84.45
+ 35 247.274 880 4 0 -1.41913 -3.94855 -85.85
+ 35 240.103 889 3 1 -2.23682 -5.24897 -114.45
+ 35 136.628 873 3 0 -2.28011 -5.32416 -115.85
+ 35 205.53 884 2 1 -3.14531 -6.87848 -144.45
+ 35 116.085 865 2 0 -3.19577 -6.93403 -145.85
+ 35 114.74 878 1 1 -4.32399 -8.03803 -174.45
+ 35 156.679 859 1 0 -4.3649 -8.08896 -175.85
+ 35 122.106 874 0 1 -5.18375 -9.04677 -204.45
+ 35 119.66 854 0 0 -5.2285 -9.10566 -205.85
+ 35 164.486 898 5 1 -0.310204 -2.59772 -54.45
+ 35 102.617 887 5 0 -0.310901 -2.59621 -55.85
+ 35 194.055 898 4 1 -0.327806 -2.56257 -84.45
+ 35 99.7527 887 4 0 -0.329596 -2.56091 -85.85
+ 35 102.561 898 3 1 -0.362482 -2.52311 -114.45
+ 35 169.55 887 3 0 -0.365753 -2.52239 -115.85
+ 35 129.027 898 2 1 -0.429976 -2.51432 -144.45
+ 35 127.547 887 2 0 -0.434954 -2.51307 -145.85
+ 35 88.0577 897 1 1 -0.53286 -2.47845 -174.45
+ 35 129.721 887 1 0 -0.537299 -2.47253 -175.85
+ 35 137.045 897 0 1 -0.62464 -2.35059 -204.45
+ 35 113.027 888 0 0 -0.628697 -2.34461 -205.85
+ 35 324.827 951 2 0 96.9579 10.2913 -146.25
+ 35 80.3001 745 2 1 -30.8754 39.8253 -144.85
+ 35 163.481 746 2 1 -30.85 39.8612 -144.698
+ 35 0.364928 1278 0 1 75.65 -93.2313 -204.658
+Number of digits in this event = 22
Using G4ParticleGun ...
-3.8092 LIN
+8.80821 LIN
gamma
Event: 36
-Number of tracker hits in this event = 125
- 36 212.324 1380 8 1 96.1602 78.0839 35.55
- 36 308.515 1290 8 0 96.1643 78.0776 34.15
- 36 285.394 1380 7 1 96.3143 77.9106 5.55
- 36 193.327 1289 7 0 96.3114 77.9139 4.15
- 36 377.017 1380 6 1 96.2688 77.9329 -24.45
- 36 129.127 1289 6 0 96.2611 77.9292 -25.85
- 36 156.012 1379 5 1 96.0453 77.8461 -54.45
- 36 93.2043 1288 5 0 96.038 77.8275 -55.85
- 36 488.322 1378 4 1 95.8856 77.4635 -84.45
- 36 388.231 1286 4 0 95.8989 77.4384 -85.85
- 36 557.545 1379 3 1 96.1438 76.9809 -114.45
- 36 245.43 1284 3 0 96.1641 76.9459 -115.85
- 36 133.486 1382 2 1 96.5759 76.2656 -144.45
- 36 109.474 1280 2 0 96.5937 76.2457 -145.85
- 36 661.294 1384 1 1 96.9765 75.9143 -174.45
- 36 154.842 1279 1 0 97.0054 75.8815 -175.85
- 36 137.803 1387 0 1 97.6354 75.1234 -204.45
- 36 94.2959 1275 0 0 97.6574 75.1123 -205.85
- 36 124.404 1377 3 1 95.6258 77.0302 -114.45
- 36 107.092 1372 2 1 94.5745 75.472 -144.45
- 36 102.625 1276 2 0 94.5756 75.447 -145.85
- 36 227.919 1374 1 1 95.0369 74.1213 -174.45
- 36 133.792 1270 1 0 95.1843 74.1618 -175.85
- 36 209.259 1390 0 1 98.186 74.5481 -204.45
- 36 124.982 1272 0 0 98.3862 74.5845 -205.85
- 36 259.904 1391 0 1 98.35 74.5216 -204.798
- 36 81.3358 1266 0 0 98.3104 73.298 -205.85
- 36 25.6551 1265 0 0 98.3121 73.2498 -205.886
- 36 77.8024 1392 0 1 98.5591 73.0901 -204.85
- 36 99.6293 1383 3 1 96.8141 75.5655 -114.45
- 36 161.726 1277 3 0 96.6623 75.5553 -115.851
- 36 110.93 1373 2 1 94.8367 75.3139 -144.45
- 36 107.505 1274 2 0 94.7458 74.9823 -145.85
- 36 103.221 1184 2 1 57.05 57.7296 -144.834
- 36 48.332 1183 2 1 56.8499 57.6453 -144.463
- 36 321.149 1290 7 0 96.1848 78.1038 4.15
- 36 95.6448 1290 6 0 96.1797 78.1239 -25.85
- 36 94.614 1380 5 1 96.1533 78.0806 -54.45
- 36 150.83 1290 5 0 96.1507 78.0783 -55.85
- 36 122.913 1379 4 1 96.0986 78.0155 -84.45
- 36 121.227 1289 4 0 96.0965 78.0122 -85.85
- 36 234.04 1289 3 0 96.0574 77.9388 -115.85
- 36 390.374 1379 2 1 96.0051 77.9013 -144.45
- 36 331.932 1289 2 0 96.0006 77.9019 -145.85
- 36 181.838 1378 1 1 95.908 77.9289 -174.45
- 36 106.73 1289 1 0 95.8994 77.9292 -175.85
- 36 111.915 1377 0 1 95.7225 77.9453 -204.45
- 36 185.607 1289 0 0 95.7153 77.9483 -205.85
- 36 161.363 663 0 1 -47.25 103.412 -204.521
- 36 71.3972 1649 4 0 140.074 150.003 -86.25
- 36 282.839 1378 0 1 95.847 77.8504 -204.45
- 36 252.538 1379 0 1 95.95 77.8919 -204.57
- 36 105.13 1380 0 1 96.15 77.718 -204.805
- 36 16.7564 1282 0 0 99.1621 76.4734 -205.85
- 36 106.294 1281 0 0 99.2081 76.4499 -205.87
- 36 70.6193 1280 0 0 99.4089 76.25 -206.076
- 36 117.116 1288 0 0 96.1672 77.6838 -205.85
- 36 127.067 1386 2 1 97.3781 78.132 -144.45
- 36 120.09 1290 2 0 97.4191 78.185 -145.85
- 36 119.105 1392 1 1 98.5955 78.4485 -174.45
- 36 64.4489 1292 1 0 98.6372 78.6191 -175.85
- 36 32.6662 1293 1 0 98.6456 78.65 -176.101
- 36 185.745 1404 0 1 101.14 82.5362 -204.45
- 36 103.249 1405 0 1 101.15 82.5419 -204.51
- 36 211.323 1313 0 0 101.374 82.6644 -205.85
- 36 568.043 1380 3 1 96.15 77.8404 -114.794
- 36 208.376 1288 3 0 95.9977 77.8446 -115.85
- 36 227.818 1370 2 1 94.1868 73.3517 -144.45
- 36 123.321 1264 2 0 94.1632 73.0031 -145.85
- 36 102.642 1369 1 1 94.0156 64.0595 -174.45
- 36 123.926 1221 1 0 93.8742 64.3751 -175.85
- 36 78.4308 1222 1 0 93.8318 64.45 -176.184
- 36 226.4 1346 0 1 89.3744 71.1697 -204.45
- 36 157.735 1347 0 1 89.45 71.1094 -204.584
- 36 1.46725 1252 0 0 90.2847 70.4514 -205.85
- 36 157.816 1251 0 0 90.2865 70.45 -205.853
- 36 0.630208 1250 0 0 90.5673 70.25 -206.246
- 36 208.031 1174 0 0 101.122 55.003 -206.25
- 36 24.1916 1175 0 0 101.061 55.05 -205.97
- 36 20.4231 1418 0 1 103.913 56.0086 -204.85
- 36 235.002 1419 0 1 103.95 56.0092 -204.832
- 36 35.9843 388 1 0 40.2134 -102.479 -176.25
- 36 70.863 387 1 0 40.2514 -102.55 -176.104
- 36 43.3879 386 1 0 40.211 -102.75 -175.924
- 36 236.656 1099 1 1 39.8877 -104.785 -174.85
- 36 40.6982 1100 1 1 40.05 -105.051 -174.563
- 36 94.1437 1258 0 0 89.3052 71.6708 -205.85
- 36 85.8325 1259 0 0 89.3568 71.8502 -206.032
- 36 128.037 1260 0 0 89.3042 72.05 -205.979
- 36 106.887 1261 0 0 89.5285 72.25 -205.891
- 36 76.7899 1353 0 1 90.83 72.2867 -204.85
- 36 201.06 1354 0 1 90.95 72.2798 -204.772
- 36 69.9295 1355 0 1 91.15 72.1743 -204.847
- 36 30.543 1337 0 1 87.5104 73.382 -204.85
- 36 56.1457 1253 0 0 90.2332 70.8231 -205.85
- 36 43.3534 1352 0 1 90.7 70.777 -204.85
- 36 93.224 1231 0 0 90.3975 66.2889 -205.85
- 36 26.1667 1369 2 1 94.1362 73.2906 -144.45
- 36 115.133 1267 2 0 94.4289 73.4561 -145.851
- 36 88.0154 1360 2 0 65.2414 92.2513 -146.25
- 36 186.199 1361 2 0 65.1659 92.35 -146.057
- 36 142.652 1362 2 0 64.937 92.55 -145.983
- 36 75.0555 1380 2 1 96.15 78.063 -144.536
- 36 84.8842 1290 1 0 97.0573 78.1289 -175.85
- 36 57.0995 1291 1 0 97.05 78.25 -176.069
- 36 102.968 1373 0 0 95.9403 94.8774 -205.85
- 36 76.3333 1374 0 0 95.9566 94.9501 -206.049
- 36 99.0701 1385 1 1 97.1739 76.8843 -174.45
- 36 126.342 1283 1 0 97.288 76.7446 -175.85
- 36 138.585 1398 0 1 99.8856 73.9675 -204.45
- 36 165.983 1269 0 0 100.093 73.8872 -205.85
- 36 189.134 1290 3 0 96.3263 78.2361 -115.85
- 36 173.568 1383 2 1 96.8481 78.7688 -144.45
- 36 147.189 1294 2 0 96.8608 78.9157 -145.85
- 36 186.938 1308 1 0 97.1816 81.7653 -175.85
- 36 132.097 1317 0 0 98.4888 83.628 -205.85
- 36 35.2742 1318 0 0 98.482 83.65 -206.13
- 36 104.964 1371 2 1 94.5031 68.1314 -144.45
- 36 87.75 1239 2 0 94.5988 67.9014 -145.851
- 36 59.1023 1238 2 0 94.6065 67.85 -146.105
- 36 144.426 1388 1 1 97.8842 61.8071 -174.45
- 36 24.6869 1204 1 0 97.7376 60.8891 -175.85
- 36 118.484 1203 1 0 97.7317 60.85 -175.911
- 36 105.905 1373 0 1 94.7606 50.2226 -204.45
- 36 250.632 1151 0 0 95.3376 50.2986 -205.85
-Number of digits in this event = 65
+Number of tracker hits in this event = 100
+ 36 254.326 721 8 1 -35.8187 96.3687 35.55
+ 36 420.421 1381 8 0 -35.821 96.3707 34.15
+ 36 94.3468 720 7 1 -35.9062 96.429 5.55
+ 36 194.713 1381 7 0 -35.9397 96.44 4.15
+ 36 128.456 716 6 1 -36.7144 96.7281 -24.45
+ 36 12.56 1382 6 0 -36.7735 96.7493 -25.85
+ 36 95.8361 1383 6 0 -36.7753 96.75 -25.8942
+ 36 106.475 711 5 1 -37.8325 97.2681 -54.45
+ 36 117.494 1385 5 0 -37.8492 97.3273 -55.85
+ 36 137.519 708 4 1 -38.3226 98.5638 -84.45
+ 36 245.714 1392 4 0 -38.4323 98.5949 -85.85
+ 36 177.18 695 3 1 -40.8935 99.3873 -114.45
+ 36 124.824 1396 3 0 -40.9966 99.423 -115.85
+ 36 9.04865 685 2 1 -43.047 100.153 -144.45
+ 36 123.549 684 2 1 -43.05 100.155 -144.483
+ 36 85.2613 1400 2 0 -43.1787 100.245 -145.85
+ 36 184.992 670 1 1 -45.9425 102.066 -174.45
+ 36 127.736 1409 1 0 -46.0593 102.102 -175.85
+ 36 115.895 658 0 1 -48.4304 102.786 -204.45
+ 36 17.315 657 0 1 -48.45 102.817 -204.8
+ 36 103.15 1413 0 0 -48.514 102.909 -205.85
+ 36 99.1756 721 7 1 -35.8234 96.3448 5.55
+ 36 121.229 1380 7 0 -35.8231 96.344 4.15
+ 36 107.707 721 6 1 -35.8171 96.325 -24.45
+ 36 141.067 1380 6 0 -35.8166 96.3248 -25.85
+ 36 683.541 721 5 1 -35.8049 96.323 -54.45
+ 36 504.444 1380 5 0 -35.8049 96.3225 -55.85
+ 36 149.284 721 4 1 -35.8032 96.314 -84.45
+ 36 130.942 1380 4 0 -35.8033 96.3146 -85.85
+ 36 158.169 721 3 1 -35.8046 96.3266 -114.45
+ 36 94.5275 1380 3 0 -35.8038 96.3264 -115.85
+ 36 161.01 721 2 1 -35.7861 96.3205 -144.45
+ 36 98.5295 1380 2 0 -35.7908 96.3191 -145.85
+ 36 124.606 720 1 1 -35.8786 96.2978 -174.45
+ 36 100.435 1380 1 0 -35.8813 96.2948 -175.85
+ 36 319.734 720 0 1 -35.9375 96.2406 -204.45
+ 36 665.8 1380 0 0 -35.9419 96.2382 -205.85
+ 36 250.862 721 0 1 -35.7186 96.3086 -204.451
+ 36 145.076 1683 2 0 -13.65 156.818 -146.25
+ 36 179.243 879 2 1 -4.25 172.788 -144.65
+ 36 209.986 1379 5 0 -36.4286 96.0582 -55.8504
+ 36 123.201 689 5 1 -42.0955 93.9806 -54.85
+ 36 99.6877 1362 5 0 -43.2952 92.7236 -55.85
+ 36 100.745 730 4 1 -33.9714 95.9723 -84.45
+ 36 300.575 1378 4 0 -33.8338 95.8955 -85.85
+ 36 115.763 745 3 1 -30.8767 93.7281 -114.45
+ 36 120.917 1367 3 0 -30.8026 93.6293 -115.85
+ 36 141.444 750 2 1 -30.0138 91.4048 -144.45
+ 36 131.653 1355 2 0 -29.8604 91.327 -145.85
+ 36 120.567 762 1 1 -27.5836 89.6839 -174.45
+ 36 67.9777 1346 1 0 -27.6876 89.317 -175.85
+ 36 38.3868 1345 1 0 -27.708 89.2498 -176.12
+ 36 129.546 748 0 1 -30.4264 83.0083 -204.45
+ 36 126.8 1313 0 0 -30.1516 82.8234 -205.85
+ 36 34.2352 720 5 1 -35.85 96.3624 -54.7272
+ 36 249.784 1381 5 0 -36.0489 96.4683 -55.8503
+ 36 161.144 706 4 1 -38.7187 98.5379 -84.45
+ 36 49.5005 707 4 1 -38.65 98.5822 -84.7232
+ 36 71.183 1391 4 0 -38.3608 98.55 -86.0325
+ 36 21.5781 732 3 1 -33.5854 92.7001 -114.45
+ 36 63.0402 731 3 1 -33.65 92.7149 -114.509
+ 36 60.673 730 3 1 -33.85 92.756 -114.669
+ 36 67.9898 729 3 1 -34.0501 92.7933 -114.776
+ 36 70.5276 1363 3 0 -36.9141 92.8042 -115.85
+ 36 105.349 1362 3 0 -37.1152 92.7499 -115.882
+ 36 0.77294 696 3 1 -40.8469 91.1182 -114.85
+ 36 61.3294 694 3 1 -41.05 91.0079 -114.793
+ 36 59.027 693 3 1 -41.25 90.8754 -114.767
+ 36 192.196 692 3 1 -41.45 90.7481 -114.743
+ 36 129.085 691 3 1 -41.6504 90.6621 -114.693
+ 36 135.174 690 3 1 -41.85 90.5692 -114.619
+ 36 145.287 689 3 1 -42.0503 90.4754 -114.6
+ 36 329.19 688 3 1 -42.25 90.389 -114.572
+ 36 274.739 687 3 1 -42.45 90.2217 -114.513
+ 36 106.696 722 4 1 -35.5409 95.9066 -84.45
+ 36 345.185 722 3 1 -35.5405 96.0693 -114.45
+ 36 134.436 1379 3 0 -35.5663 96.0894 -115.85
+ 36 345.634 719 2 1 -36.1042 96.5182 -144.45
+ 36 138.324 1381 2 0 -36.1261 96.5099 -145.85
+ 36 95.8817 717 1 1 -36.5468 96.4083 -174.45
+ 36 125.321 1381 1 0 -36.5979 96.4104 -175.85
+ 36 123.364 711 0 1 -37.6704 96.5183 -204.45
+ 36 10.6654 1381 0 0 -37.702 96.549 -205.85
+ 36 94.9455 1382 0 0 -37.703 96.55 -205.897
+ 36 0.136732 1221 1 0 -75.8421 64.45 -176.141
+ 36 143.768 720 2 1 -36.05 96.4904 -144.519
+ 36 297.894 1378 2 0 -35.1946 95.7751 -145.85
+ 36 170.176 1377 2 0 -35.1806 95.75 -145.872
+ 36 146.202 720 4 1 -35.9915 96.6096 -84.45
+ 36 138.929 1382 4 0 -36.0235 96.614 -85.85
+ 36 174.6 717 3 1 -36.4997 96.674 -114.45
+ 36 112.073 1382 3 0 -36.4909 96.6852 -115.85
+ 36 118.484 1384 2 0 -36.2616 96.9936 -145.85
+ 36 110.018 715 1 1 -37.0022 98.4857 -174.45
+ 36 131.543 1391 1 0 -36.9755 98.504 -175.85
+ 36 153.923 717 0 1 -36.4957 99.0364 -204.45
+ 36 122.626 1394 0 0 -36.5144 99.0699 -205.85
+ 36 158.106 719 4 1 -36.0693 96.6188 -84.45
+ 36 74.0012 1384 4 0 -36.0177 97.0575 -85.85
+ 36 69.9579 1385 4 0 -35.9526 97.15 -86.1007
+Number of digits in this event = 61
Using G4ParticleGun ...
-5.67364 LIN
+5.3028 LIN
gamma
Event: 37
-Number of tracker hits in this event = 61
- 37 377.405 1315 7 1 83.053 18.9643 5.55
- 37 239.829 994 7 0 83.0509 18.9645 4.15
- 37 210.527 1314 6 1 82.9975 18.973 -24.45
- 37 338.049 994 6 0 82.9967 18.9734 -25.85
- 37 228.037 1314 5 1 82.969 18.9857 -54.45
- 37 232.89 994 5 0 82.9672 18.9882 -55.85
- 37 115.154 1314 4 1 82.9232 19.0346 -84.45
- 37 230.06 994 4 0 82.9203 19.0369 -85.85
- 37 203.335 1314 3 1 82.8697 19.0798 -114.45
- 37 138.768 995 3 0 82.8595 19.0904 -115.85
- 37 155.835 1312 2 1 82.638 19.3022 -144.45
- 37 144.413 996 2 0 82.6284 19.309 -145.85
- 37 523.077 1311 1 1 82.4314 19.4384 -174.45
- 37 226.192 996 1 0 82.4279 19.4316 -175.85
- 37 302.219 1311 0 1 82.3591 19.2648 -204.45
- 37 173.622 996 0 0 82.3594 19.2605 -205.85
- 37 119.013 933 2 1 6.85 129.11 -144.635
- 37 54.9452 1011 1 0 113.469 22.3412 -176.25
- 37 133.527 1010 1 0 113.506 22.2498 -176.069
- 37 199.243 1473 1 1 114.78 22.1886 -174.85
- 37 152.828 997 1 0 82.4372 19.4894 -175.85
- 37 168.364 1312 0 1 82.6178 20.5317 -204.45
- 37 98.4971 1002 0 0 82.6221 20.595 -205.85
- 37 121.205 997 0 0 82.2597 19.4773 -205.85
- 37 83.2596 492 4 0 88.5923 -81.45 -86.2043
- 37 19.2253 1343 4 1 88.8255 -81.8122 -84.85
- 37 121.011 1344 4 1 88.8502 -81.8378 -84.8225
- 37 279.44 489 4 0 88.2379 -82.1547 -85.8502
- 37 95.593 1315 3 1 83.05 19.2193 -114.481
- 37 63.003 1316 3 1 83.2505 19.1327 -114.48
- 37 229.322 1313 2 1 82.7915 19.0388 -144.45
- 37 119.083 995 2 0 82.1839 19.0791 -145.85
- 37 68.1561 1185 1 1 57.1885 21.8909 -174.45
- 37 83.6342 1184 1 1 57.05 21.7994 -174.53
- 37 56.2298 1183 1 1 56.85 21.7562 -174.702
- 37 148.843 1007 1 0 56.54 21.6275 -175.85
- 37 53.5028 1008 1 0 56.4106 21.65 -176.123
- 37 327.679 942 1 0 68.3487 8.61121 -176.25
- 37 190.403 943 1 0 68.6488 8.65 -176.111
- 37 231.29 944 1 0 69.2261 8.85 -175.913
- 37 22.8249 945 1 0 69.3771 9.05001 -175.916
- 37 256.375 993 2 0 82.8548 18.7883 -145.85
- 37 107.367 1330 1 1 86.1079 12.8167 -174.45
- 37 109.281 962 1 0 86.015 12.5627 -175.85
- 37 176.53 1317 0 1 83.5496 7.1869 -204.45
- 37 108.827 933 0 0 83.2689 6.75492 -205.85
- 37 21.614 932 0 0 83.2126 6.65 -206.191
- 37 0.357857 1243 2 0 36.2592 68.8491 -146.25
- 37 424.892 1244 2 0 36.2568 68.8501 -146.248
- 37 179.679 1313 6 1 82.85 18.9538 -24.6776
- 37 103.013 1315 6 1 83.0597 18.9561 -24.45
- 37 124.862 1313 4 1 82.7804 18.8821 -84.45
- 37 138.405 1312 3 1 82.5366 18.7787 -114.45
- 37 140.516 993 3 0 82.5232 18.7743 -115.85
- 37 105.999 1310 2 1 82.2458 18.6817 -144.45
- 37 127.437 1309 1 1 81.9211 18.5019 -174.45
- 37 121.682 992 1 0 81.9057 18.4932 -175.85
- 37 122.96 1307 0 1 81.6025 18.3154 -204.45
- 37 161.208 991 0 0 81.5874 18.3068 -205.85
- 37 44.7941 427 3 0 152.384 -94.6878 -116.25
- 37 147.05 660 0 1 -47.85 -43.66 -204.788
-Number of digits in this event = 41
+Number of tracker hits in this event = 21
+ 37 61.2434 310 2 0 -122.482 -118.101 -146.25
+ 37 87.8319 309 2 0 -122.673 -118.15 -146.131
+ 37 61.4921 308 2 0 -122.807 -118.35 -145.945
+ 37 60.4853 307 2 0 -122.803 -118.55 -145.926
+ 37 7.51322 306 2 0 -122.736 -118.75 -145.867
+ 37 14.9756 295 2 1 -120.998 -119.442 -144.85
+ 37 72.7789 296 2 1 -120.95 -119.469 -144.823
+ 37 40.8323 297 2 1 -120.75 -119.554 -144.824
+ 37 108.346 291 2 0 -119.109 -121.826 -145.85
+ 37 10.1358 290 2 0 -119.085 -121.95 -145.854
+ 37 17.6972 305 2 1 -119.144 -125.603 -144.85
+ 37 180.173 304 2 1 -119.15 -125.645 -144.843
+ 37 267.016 303 2 1 -119.35 -125.618 -144.533
+ 37 187.376 1397 14 1 99.7404 -141.046 215.15
+ 37 70.5047 1131 2 0 -85.2614 46.25 -146.196
+ 37 58.2704 1132 2 0 -85.4809 46.45 -146.084
+ 37 112.592 1133 2 0 -85.4893 46.65 -146.038
+ 37 136.983 1134 2 0 -85.4254 46.85 -146.102
+ 37 143.104 1135 2 0 -85.1669 47.05 -146.173
+ 37 69.4935 1136 2 0 -85.0382 47.25 -145.974
+ 37 296.754 1137 2 0 -85.0546 47.4501 -145.958
+Number of digits in this event = 9
Using G4ParticleGun ...
-8.70757 LIN
+8.12795 LIN
gamma
Event: 38
-Number of tracker hits in this event = 14
- 38 342.619 1531 3 1 126.475 -72.836 -114.45
- 38 231.619 536 3 0 126.475 -72.8356 -115.85
- 38 110.702 1531 2 1 126.473 -72.8254 -144.45
- 38 234.86 536 2 0 126.473 -72.8239 -145.85
- 38 122.149 1531 1 1 126.472 -72.7936 -174.45
- 38 105.802 536 1 0 126.469 -72.7916 -175.85
- 38 126.323 1531 0 1 126.415 -72.7511 -204.45
- 38 274.409 536 0 0 126.416 -72.7484 -205.85
- 38 179.024 1530 2 1 126.209 -72.6884 -144.45
- 38 114.04 1528 1 1 125.924 -72.5825 -174.45
- 38 200.547 537 1 0 125.907 -72.5859 -175.85
- 38 129.739 1526 0 1 125.547 -72.6584 -204.45
- 38 134.437 508 1 0 57.8706 -78.3214 -176.25
- 38 107.466 1530 3 1 126.35 -72.7496 -114.624
-Number of digits in this event = 11
-Using G4ParticleGun ...
-9.54035 LIN
-gamma
-Event: 39
Number of tracker hits in this event = 0
Number of digits in this event = 1
Using G4ParticleGun ...
-1.15386 LIN
+5.47441 LIN
gamma
-Event: 40
-Number of tracker hits in this event = 21
- 40 288.583 253 4 1 -129.371 -58.9713 -84.45
- 40 227.781 605 4 0 -129.375 -58.9701 -85.85
- 40 118.366 253 3 1 -129.446 -58.9871 -114.45
- 40 105.322 605 3 0 -129.45 -58.9801 -115.85
- 40 122.39 253 2 1 -129.506 -58.887 -144.45
- 40 198.515 605 2 0 -129.518 -58.8894 -145.85
- 40 152.795 251 1 1 -129.868 -58.9493 -174.45
- 40 128.707 605 1 0 -129.889 -58.9679 -175.85
- 40 111.939 249 0 1 -130.285 -59.3362 -204.45
- 40 132.873 603 0 0 -130.305 -59.3735 -205.85
- 40 130.487 254 3 1 -129.244 -58.6202 -114.45
- 40 125.055 607 3 0 -129.257 -58.6089 -115.85
- 40 145.626 252 2 1 -129.589 -58.3985 -144.45
- 40 112.914 608 2 0 -129.609 -58.3978 -145.85
- 40 162.148 250 1 1 -130.034 -58.3571 -174.45
- 40 132.079 608 1 0 -130.068 -58.3484 -175.85
- 40 146.453 246 0 1 -130.821 -58.2181 -204.45
- 40 145.696 609 0 0 -130.87 -58.2112 -205.85
- 40 116.175 84 0 1 -163.15 -30.7437 -204.718
- 40 24.9294 600 3 0 -127.376 -60.0001 -115.85
- 40 222.262 599 3 0 -127.348 -60.05 -115.881
-Number of digits in this event = 17
+Event: 39
+Number of tracker hits in this event = 2
+ 39 123.762 74 4 1 -165.215 -173.44 -84.85
+ 39 29.2141 73 4 1 -165.35 -173.538 -84.5004
+Number of digits in this event = 3
+Using G4ParticleGun ...
+3.91645 LIN
+gamma
+Event: 40
+Number of tracker hits in this event = 0
+Number of digits in this event = 2
Using G4ParticleGun ...
-1.51614 LIN
+6.7079 LIN
gamma
Event: 41
-Number of tracker hits in this event = 5
- 41 27.843 136 13 0 16.5945 -152.935 183.75
- 41 102.561 135 13 0 16.5763 -152.95 183.766
- 41 17.3334 134 13 0 16.3703 -153.15 183.839
- 41 114.805 247 13 0 12.7839 -130.682 183.751
- 41 232.05 246 13 0 12.6826 -130.75 183.907
-Number of digits in this event = 3
+Number of tracker hits in this event = 9
+ 41 330.733 303 2 1 -119.49 -43.4714 -144.45
+ 41 219.628 682 2 0 -119.486 -43.4787 -145.85
+ 41 219.904 303 1 1 -119.405 -43.6497 -174.45
+ 41 145.305 681 1 0 -119.403 -43.6531 -175.85
+ 41 261.082 303 0 1 -119.386 -43.7391 -204.45
+ 41 112.634 681 0 0 -119.377 -43.7357 -205.85
+ 41 240.03 682 1 0 -119.493 -43.5013 -175.85
+ 41 145.186 682 0 0 -119.436 -43.5314 -205.85
+ 41 143.621 272 6 1 -125.627 -52.2977 -24.45
+Number of digits in this event = 10
Using G4ParticleGun ...
-1.64115 LIN
+2.64434 LIN
gamma
Event: 42
-Number of tracker hits in this event = 1
- 42 4.73291 911 0 0 -48.1853 2.25 -205.894
-Number of digits in this event = 1
+Number of tracker hits in this event = 2
+ 42 50.0227 1607 2 0 -168.801 141.649 -146.25
+ 42 113.145 1608 2 0 -168.873 141.75 -146.211
+Number of digits in this event = 2
Using G4ParticleGun ...
-1.17589 LIN
+2.30112 LIN
gamma
Event: 43
Number of tracker hits in this event = 0
-Number of digits in this event = 1
+Number of digits in this event = 2
Using G4ParticleGun ...
-8.30809 LIN
+6.28982 LIN
gamma
Event: 44
-Number of tracker hits in this event = 122
- 44 239.044 763 8 1 -27.4319 121.706 35.55
- 44 227.833 1507 8 0 -27.4316 121.707 34.15
- 44 213.843 763 7 1 -27.4253 121.724 5.55
- 44 251.275 1507 7 0 -27.4254 121.729 4.15
- 44 159.617 763 6 1 -27.4239 121.827 -24.45
- 44 129.789 1508 6 0 -27.4243 121.836 -25.85
- 44 544.372 763 5 1 -27.4302 122.005 -54.45
- 44 105.263 1509 5 0 -27.4285 122.01 -55.85
- 44 625.491 763 4 1 -27.3909 122.106 -84.45
- 44 141.247 1509 4 0 -27.3857 122.112 -85.85
- 44 682.014 763 3 1 -27.2774 122.231 -114.45
- 44 110.782 1510 3 0 -27.2704 122.234 -115.85
- 44 240.769 764 2 1 -27.1094 122.28 -144.45
- 44 137.749 1510 2 0 -27.1022 122.28 -145.85
- 44 234.487 765 1 1 -26.9634 122.281 -174.45
- 44 107.034 1510 1 0 -26.9557 122.279 -175.85
- 44 438.533 766 0 1 -26.8147 122.261 -204.45
- 44 125.09 1510 0 0 -26.8062 122.256 -205.85
- 44 27.5466 926 5 1 5.35913 29.5979 -54.85
- 44 316.713 1510 4 0 -27.4333 122.17 -85.8504
- 44 73.3181 759 3 1 -28.0752 122.944 -114.45
- 44 29.5431 760 3 1 -28.05 122.942 -114.742
- 44 160.284 1513 3 0 -27.9591 122.939 -115.85
- 44 215.452 772 2 1 -25.6282 123.469 -144.45
- 44 121.763 1517 2 0 -25.6502 123.638 -145.85
- 44 127.8 770 1 1 -26.0158 126.765 -174.45
- 44 145.236 1534 1 0 -26.036 127.038 -175.85
- 44 119.266 1562 0 0 -26.7592 132.609 -205.85
- 44 329.454 762 3 1 -27.4596 122.368 -114.45
- 44 167.052 1511 3 0 -27.4464 122.383 -115.85
- 44 95.3232 1512 2 0 -27.1462 122.706 -145.85
- 44 341.578 1515 1 0 -26.9278 123.306 -175.85
- 44 127.124 1520 0 0 -26.7317 124.228 -205.85
- 44 216.865 1508 5 0 -27.4143 121.767 -55.85
- 44 153.562 1508 4 0 -27.4093 121.849 -85.85
- 44 102.611 1508 3 0 -27.372 121.854 -115.85
- 44 129.763 763 2 1 -27.3993 121.839 -144.45
- 44 107.809 1508 2 0 -27.4023 121.835 -145.85
- 44 283.191 762 1 1 -27.4666 121.739 -174.45
- 44 111.786 1507 1 0 -27.4688 121.733 -175.85
- 44 390.377 762 0 1 -27.5187 121.619 -204.45
- 44 126.02 1507 0 0 -27.5242 121.604 -205.85
- 44 138.491 1507 4 0 -27.3464 121.61 -85.85
- 44 232.456 1506 3 0 -27.315 121.474 -115.85
- 44 280.813 762 2 1 -27.5373 121.41 -144.45
- 44 106.392 1506 2 0 -27.5487 121.405 -145.85
- 44 102.861 761 1 1 -27.7869 121.302 -174.45
- 44 126.947 1505 1 0 -27.7973 121.298 -175.85
- 44 113.03 759 0 1 -28.0511 121.246 -204.45
- 44 123.37 1505 0 0 -28.0554 121.241 -205.85
- 44 32.867 764 3 1 -27.25 121.438 -114.74
- 44 103.086 1503 3 0 -26.6706 120.863 -115.85
- 44 78.7962 1502 3 0 -26.5386 120.75 -116.034
- 44 148.902 1450 3 0 30.0041 110.225 -116.25
- 44 5.9469 1056 3 1 31.4351 110.044 -114.85
- 44 87.3044 1057 3 1 31.45 110.041 -114.836
- 44 65.4966 1058 3 1 31.6501 109.978 -114.645
- 44 131.69 1059 3 1 31.85 109.919 -114.509
- 44 107.216 1060 3 1 32.05 110.141 -114.579
- 44 85.0065 1061 3 1 32.2505 110.327 -114.732
- 44 72.9773 1062 3 1 32.45 110.493 -114.755
- 44 139.139 1063 3 1 32.65 110.586 -114.799
- 44 187.374 1064 3 1 32.8506 110.656 -114.771
- 44 267.875 1065 3 1 33.0501 110.899 -114.796
- 44 124.241 762 7 1 -27.4676 121.616 5.55
- 44 235.401 761 6 1 -27.6768 121.46 -24.45
- 44 223.498 1506 6 0 -27.6804 121.452 -25.85
- 44 112.324 761 5 1 -27.7464 121.274 -54.45
- 44 113.98 1505 5 0 -27.7435 121.267 -55.85
- 44 156.589 761 4 1 -27.6547 121.099 -84.45
- 44 95.3669 1504 4 0 -27.6477 121.094 -85.85
- 44 115.257 1504 3 0 -27.5006 121.008 -115.85
- 44 113.114 1504 2 0 -27.5522 121.052 -145.85
- 44 111.774 1504 1 0 -27.5127 120.954 -175.85
- 44 138.185 763 0 1 -27.4349 120.735 -204.45
- 44 131.644 1502 0 0 -27.4133 120.736 -205.85
- 44 59.1194 585 0 1 -62.9325 75.7194 -204.45
- 44 14.5473 1527 0 0 -28.8524 125.63 -206.25
- 44 0.425591 1365 0 1 93.15 -126.169 -204.819
- 44 25.3132 247 0 0 92.607 -130.631 -205.85
- 44 2.56774 1364 0 1 93.088 -129.917 -204.85
- 44 164.639 762 6 1 -27.4856 121.329 -24.45
- 44 91.226 1505 6 0 -27.8211 121.197 -25.85
- 44 17.6335 1504 6 0 -27.8841 121.15 -26.1837
- 44 73.0402 747 5 1 -30.6099 117.221 -54.4505
- 44 212.359 746 5 1 -30.65 117.244 -54.5007
- 44 27.5529 745 5 1 -30.8506 117.31 -54.7666
- 44 100.519 1487 5 0 -31.7052 117.555 -55.85
- 44 135.386 1488 5 0 -31.921 117.75 -56.0762
- 44 36.2362 1498 5 0 -31.0191 119.887 -55.85
- 44 138.023 1499 5 0 -31.034 119.95 -55.8902
- 44 176.18 1500 5 0 -31.1621 120.15 -56.1202
- 44 46.7697 1502 6 0 -27.0803 120.717 -25.8501
- 44 3.4814 753 6 1 -29.3832 119.976 -24.85
- 44 25.7544 1497 6 0 -30.0803 119.714 -25.85
- 44 22.3138 747 6 1 -30.4878 120.289 -24.85
- 44 32.7838 760 6 1 -27.8502 121.484 -24.7531
- 44 157.784 1507 6 0 -28.912 121.654 -25.85
- 44 13.0515 680 5 1 -44.0161 122.227 -54.45
- 44 93.8801 679 5 1 -44.05 122.229 -54.486
- 44 34.1788 678 5 1 -44.2502 122.245 -54.7207
- 44 70.9904 1511 5 0 -44.9875 122.488 -55.8509
- 44 118.754 1512 5 0 -45.1619 122.55 -56.0926
- 44 114.046 537 4 1 -72.536 131.191 -84.4501
- 44 173.007 538 4 1 -72.45 131.337 -84.6683
- 44 63.6476 1562 4 0 -71.5212 132.608 -85.85
- 44 90.2015 1563 4 0 -71.4031 132.75 -85.982
- 44 48.3674 1564 4 0 -71.2206 132.95 -86.1572
- 44 130.207 1767 4 0 -35.7485 173.71 -86.25
- 44 67.1826 1766 4 0 -35.5573 173.55 -86.0464
- 44 49.9986 1765 4 0 -35.4127 173.35 -85.9234
- 44 35.2352 730 4 1 -33.919 171.864 -84.8498
- 44 71.4692 731 4 1 -33.8498 171.795 -84.7989
- 44 65.9746 732 4 1 -33.65 171.669 -84.6926
- 44 53.3299 733 4 1 -33.45 171.567 -84.6297
- 44 126.144 734 4 1 -33.25 171.473 -84.5875
- 44 94.2733 735 4 1 -33.05 171.36 -84.5375
- 44 82.0256 736 4 1 -32.85 171.251 -84.4899
- 44 70.5821 737 4 1 -32.65 171.134 -84.4751
- 44 52.5414 738 4 1 -32.45 171.113 -84.5661
- 44 59.4332 739 4 1 -32.25 171.104 -84.6832
- 44 183.194 1754 4 0 -30.9135 171.114 -85.85
-Number of digits in this event = 60
+Number of tracker hits in this event = 0
+Number of digits in this event = 1
Using G4ParticleGun ...
-6.40352 LIN
+1.15313 LIN
gamma
Event: 45
-Number of tracker hits in this event = 1
- 45 9.86443 1087 0 0 83.7785 37.65 -205.884
-Number of digits in this event = 3
+Number of tracker hits in this event = 58
+ 45 432.267 602 11 1 -59.5055 16.3064 125.55
+ 45 348.379 981 11 0 -59.4931 16.3049 124.15
+ 45 107.013 604 10 1 -59.2234 16.2768 95.55
+ 45 239.638 981 10 0 -59.2207 16.2783 94.15
+ 45 159.45 604 9 1 -59.1651 16.3504 65.55
+ 45 317.77 981 9 0 -59.1675 16.353 64.15
+ 45 116.507 604 8 1 -59.2372 16.4071 35.55
+ 45 106.622 981 8 0 -59.2633 16.3991 34.15
+ 45 159.465 601 7 1 -59.8176 16.2864 5.55
+ 45 146.749 981 7 0 -59.8556 16.2575 4.15
+ 45 157.031 980 7 0 -59.8659 16.25 3.76952
+ 45 64.5617 597 6 1 -60.6457 15.6894 -24.45
+ 45 58.0052 596 6 1 -60.65 15.6876 -24.637
+ 45 116.631 978 6 0 -60.675 15.6752 -25.85
+ 45 126.149 594 5 1 -61.1921 15.3766 -54.45
+ 45 105.101 976 5 0 -61.2019 15.3639 -55.85
+ 45 105.058 594 4 1 -61.2433 15.1568 -84.45
+ 45 129.144 975 4 0 -61.2167 15.1008 -85.85
+ 45 174.297 596 3 1 -60.722 13.9081 -114.45
+ 45 24.1608 969 3 0 -60.6968 13.8534 -115.85
+ 45 91.2651 968 3 0 -60.6954 13.85 -115.936
+ 45 111.382 599 2 1 -60.1106 12.7276 -144.45
+ 45 130.305 963 2 0 -60.0715 12.6705 -145.85
+ 45 146.608 603 1 1 -59.2794 11.4745 -174.45
+ 45 120.891 956 1 0 -59.2361 11.4059 -175.85
+ 45 107.556 608 0 1 -58.3593 10.0517 -204.45
+ 45 125.992 949 0 0 -58.3718 10.0141 -205.85
+ 45 14.5296 914 4 0 -61.2087 3.05 -86.0683
+ 45 91.0332 913 4 0 -61.2373 2.85 -86.0879
+ 45 73.6569 603 9 1 -59.25 16.3145 65.4954
+ 45 247.098 602 10 1 -59.6354 16.3575 95.55
+ 45 109.465 600 9 1 -59.8842 16.3683 65.55
+ 45 146.112 600 8 1 -60.0373 16.4674 35.55
+ 45 236.257 982 8 0 -60.0415 16.4724 34.15
+ 45 202.67 599 7 1 -60.1786 16.5524 5.55
+ 45 118.097 982 7 0 -60.1908 16.5618 4.15
+ 45 183.23 598 6 1 -60.4356 16.7643 -24.45
+ 45 138.687 983 6 0 -60.4595 16.781 -25.85
+ 45 117.941 595 5 1 -60.9578 17.0922 -54.45
+ 45 97.1936 985 5 0 -60.9949 17.1203 -55.85
+ 45 98.7688 591 4 1 -61.7252 17.6853 -84.45
+ 45 165.018 988 4 0 -61.7541 17.6983 -85.85
+ 45 107.718 588 3 1 -62.3697 17.9702 -114.45
+ 45 166.655 989 3 0 -62.3985 17.9786 -115.85
+ 45 116.207 584 2 1 -63.0713 18.1467 -144.45
+ 45 103.406 990 2 0 -63.0977 18.1542 -145.85
+ 45 111.417 582 1 1 -63.6165 18.2879 -174.45
+ 45 182.896 991 1 0 -63.6417 18.3009 -175.85
+ 45 96.3503 579 0 1 -64.1424 18.5844 -204.45
+ 45 111.908 992 0 0 -64.1826 18.5875 -205.85
+ 45 37.2932 1286 3 0 -91.5039 77.3048 -116.25
+ 45 225.27 666 3 0 -43.1465 -46.65 -115.962
+ 45 0.712777 1009 3 0 19.8703 22.0487 -116.25
+ 45 105.267 1010 3 0 19.8728 22.0501 -116.244
+ 45 99.2301 1000 3 1 20.1585 22.0014 -114.849
+ 45 0.939091 775 8 0 -114.991 -24.8957 33.75
+ 45 174.685 980 11 0 -59.4697 16.25 123.9
+ 45 33.2396 979 11 0 -59.5096 16.05 123.785
+Number of digits in this event = 29
Using G4ParticleGun ...
-6.10649 LIN
+6.23382 LIN
gamma
Event: 46
-Number of tracker hits in this event = 0
-Number of digits in this event = 1
+Number of tracker hits in this event = 73
+ 46 257.021 1143 8 1 48.6988 -135.903 35.55
+ 46 265.025 221 8 0 48.6978 -135.902 34.15
+ 46 281.2 1143 7 1 48.6825 -135.879 5.55
+ 46 298.377 221 7 0 48.682 -135.875 4.15
+ 46 154.46 1142 6 1 48.6057 -135.72 -24.45
+ 46 113.548 222 6 0 48.6032 -135.711 -25.85
+ 46 160.387 1142 5 1 48.5463 -135.521 -54.45
+ 46 217.847 223 5 0 48.5452 -135.515 -55.85
+ 46 458.412 1142 4 1 48.5325 -135.389 -84.45
+ 46 250.058 223 4 0 48.5337 -135.382 -85.85
+ 46 124.696 1142 3 1 48.5627 -135.235 -114.45
+ 46 130.971 224 3 0 48.5611 -135.229 -115.85
+ 46 140.422 1142 2 1 48.5279 -135.098 -144.45
+ 46 251.689 225 2 0 48.5284 -135.091 -145.85
+ 46 125.195 1142 1 1 48.5317 -134.953 -174.45
+ 46 160.685 226 1 0 48.5324 -134.948 -175.85
+ 46 121.792 1142 0 1 48.5515 -134.848 -204.45
+ 46 112.817 226 0 0 48.5527 -134.841 -205.85
+ 46 2.58557 805 11 1 -18.8937 135.499 125.15
+ 46 75.1999 806 11 1 -18.85 135.581 125.215
+ 46 223.322 268 0 0 21.9181 -126.426 -206.25
+ 46 136.58 269 0 0 21.7063 -126.35 -206.03
+ 46 138.162 1006 0 1 21.3654 -125.666 -204.85
+ 46 125.686 1005 0 1 21.2063 -125.479 -204.45
+ 46 10.0442 270 0 0 20.818 -126.133 -205.85
+ 46 29.8655 224 6 0 48.9303 -135.199 -25.8503
+ 46 122.371 1141 6 1 48.3012 -134.506 -24.8499
+ 46 127.012 225 4 0 48.5407 -135.111 -85.85
+ 46 43.8965 1123 3 1 44.7981 -133.317 -114.45
+ 46 79.4659 1122 3 1 44.65 -133.363 -114.531
+ 46 57.6042 1121 3 1 44.4499 -133.401 -114.635
+ 46 80.3716 1120 3 1 44.2494 -133.445 -114.768
+ 46 32.9665 231 3 0 43.095 -133.909 -115.85
+ 46 158.345 230 3 0 42.9976 -133.95 -115.939
+ 46 74.8412 929 2 1 5.96556 -157.501 -144.45
+ 46 74.7384 928 2 1 5.85 -157.527 -144.578
+ 46 14.017 927 2 1 5.65 -157.55 -144.805
+ 46 116.192 112 2 0 5.14076 -157.639 -145.85
+ 46 63.7016 98 2 0 13.7983 -160.386 -146.25
+ 46 89.9359 99 2 0 13.8503 -160.35 -146.1
+ 46 79.7778 972 2 1 14.5778 -159.653 -144.85
+ 46 115.617 973 2 1 14.65 -159.47 -144.724
+ 46 114.097 113 2 0 14.8285 -157.527 -145.85
+ 46 115.246 114 2 0 14.6742 -157.35 -146.103
+ 46 116.962 224 4 0 48.5222 -135.345 -85.8502
+ 46 126.12 1143 3 1 48.7494 -135.474 -114.45
+ 46 283.415 223 3 0 48.7038 -135.453 -115.85
+ 46 141.766 1141 2 1 48.3251 -134.965 -144.45
+ 46 104.055 1139 1 1 48.0344 -136.1 -174.45
+ 46 101.387 219 1 0 47.9891 -136.211 -175.85
+ 46 116.604 1133 0 1 46.7357 -138.441 -204.45
+ 46 180.266 208 0 0 46.5262 -138.384 -205.85
+ 46 4.63742 556 4 0 -69.8056 -68.7193 -86.25
+ 46 168.715 557 4 0 -69.9108 -68.65 -86.1187
+ 46 219.192 220 7 0 48.6365 -135.95 3.9719
+ 46 123.39 219 7 0 48.5208 -136.15 4.00632
+ 46 22.8686 1131 7 1 46.2882 -135.725 5.15
+ 46 404.908 1130 7 1 46.2499 -135.711 5.17721
+ 46 123.223 1143 6 1 48.7101 -135.792 -24.45
+ 46 134.23 221 6 0 48.7143 -135.784 -25.85
+ 46 121.45 1143 5 1 48.8168 -135.627 -54.45
+ 46 134.481 222 5 0 48.8217 -135.622 -55.85
+ 46 115.352 1144 4 1 48.9134 -135.53 -84.45
+ 46 96.0563 1144 3 1 48.9974 -135.551 -114.45
+ 46 135.163 1145 2 1 49.074 -135.537 -144.45
+ 46 209.948 223 2 0 49.0802 -135.538 -145.85
+ 46 97.6126 1145 1 1 49.2105 -135.539 -174.45
+ 46 106.613 223 1 0 49.2128 -135.542 -175.85
+ 46 132.697 1146 0 1 49.2525 -135.61 -204.45
+ 46 122.563 222 0 0 49.2613 -135.614 -205.85
+ 46 169.11 1641 13 0 -8.45282 148.433 183.75
+ 46 370.695 222 2 0 49.0729 -135.55 -145.865
+ 46 13.4169 1069 2 1 33.8778 -134.522 -144.85
+Number of digits in this event = 43
Using G4ParticleGun ...
-2.19115 LIN
+1.9223 LIN
gamma
Event: 47
-Number of tracker hits in this event = 47
- 47 219.775 620 8 1 -55.9556 -119.725 35.55
- 47 320.409 302 8 0 -55.9569 -119.69 34.15
- 47 293.152 620 7 1 -55.9458 -118.92 5.55
- 47 100.166 306 7 0 -55.9765 -118.902 4.15
- 47 96.3883 617 6 1 -56.5496 -118.481 -24.45
- 47 214.948 308 6 0 -56.5458 -118.448 -25.85
- 47 152.655 617 5 1 -56.4808 -117.726 -54.45
- 47 217.46 312 5 0 -56.4715 -117.705 -55.85
- 47 108.413 618 4 1 -56.274 -117.319 -84.45
- 47 104.628 314 4 0 -56.2572 -117.278 -85.85
- 47 118.501 620 3 1 -55.9782 -116.423 -114.45
- 47 137.184 318 3 0 -55.9576 -116.407 -115.85
- 47 109.803 622 2 1 -55.4853 -116.115 -144.45
- 47 138.112 320 2 0 -55.482 -116.106 -145.85
- 47 135.017 623 1 1 -55.3872 -115.908 -174.45
- 47 285.682 321 1 0 -55.4375 -115.855 -175.85
- 47 121.128 618 0 1 -56.4019 -114.595 -204.45
- 47 140.984 328 0 0 -56.3797 -114.513 -205.85
- 47 64.2262 625 2 1 -54.9382 -115.944 -144.45
- 47 100.552 322 2 0 -54.76 -115.655 -145.85
- 47 51.2953 323 2 0 -54.8464 -115.55 -146.08
- 47 273.527 609 1 1 -58.1635 -115.452 -174.45
- 47 50.8345 610 0 1 -57.9158 -124.396 -204.45
- 47 98.6332 611 0 1 -57.85 -124.363 -204.561
- 47 195.18 280 0 0 -57.0795 -124.079 -205.85
- 47 6.06027 382 2 0 -82.9267 -103.704 -146.25
- 47 6.07916 483 2 1 -83.4454 -104.108 -144.85
- 47 117.689 482 2 1 -83.45 -104.114 -144.842
- 47 143.659 323 1 0 -58.405 -115.409 -175.85
- 47 153.713 302 7 0 -55.9525 -119.66 4.15
- 47 130.607 620 6 1 -55.8681 -119.737 -24.45
- 47 105.961 301 6 0 -55.8295 -119.778 -25.85
- 47 115.757 625 5 1 -55.011 -120.743 -54.45
- 47 106.333 296 5 0 -54.974 -120.794 -55.85
- 47 162.759 628 4 1 -54.3298 -121.837 -84.45
- 47 169.989 291 4 0 -54.2926 -121.883 -85.85
- 47 106.937 632 3 1 -53.5993 -122.691 -114.45
- 47 97.114 287 3 0 -53.5976 -122.738 -115.85
- 47 14.1545 286 3 0 -53.5971 -122.75 -116.203
- 47 114.178 631 2 1 -53.702 -123.71 -144.45
- 47 108.484 282 2 0 -53.6754 -123.732 -145.85
- 47 133.777 633 1 1 -53.2684 -124.427 -174.45
- 47 117.28 278 1 0 -53.2534 -124.468 -175.85
- 47 240.203 635 0 1 -52.9445 -125.341 -204.45
- 47 137.907 274 0 0 -52.9383 -125.33 -205.85
- 47 142.34 273 0 0 -52.6599 -125.458 -205.85
- 47 123.123 584 0 0 -50.9368 -63.0503 -206.25
-Number of digits in this event = 26
+Number of tracker hits in this event = 73
+ 47 264.677 869 7 1 -6.16909 -10.4756 5.55
+ 47 264.165 847 7 0 -6.16452 -10.4662 4.15
+ 47 282.892 869 6 1 -6.07918 -10.2416 -24.45
+ 47 165.712 849 6 0 -6.07591 -10.2278 -25.85
+ 47 272.253 870 5 1 -6.0325 -9.9336 -54.45
+ 47 147.567 850 5 0 -6.03734 -9.92182 -55.85
+ 47 153.391 869 4 1 -6.14468 -9.68705 -84.45
+ 47 165.052 851 4 0 -6.15573 -9.69328 -85.85
+ 47 125.995 868 3 1 -6.35877 -9.81941 -114.45
+ 47 149.283 851 3 0 -6.36423 -9.8262 -115.85
+ 47 124.957 867 2 1 -6.51397 -9.92251 -144.45
+ 47 131.52 850 2 0 -6.51797 -9.92196 -145.85
+ 47 149.082 867 1 1 -6.54724 -9.94447 -174.45
+ 47 119.362 850 1 0 -6.53701 -9.95433 -175.85
+ 47 135.871 868 0 1 -6.33098 -10.191 -204.45
+ 47 195.277 849 0 0 -6.31118 -10.2007 -205.85
+ 47 44.0967 729 0 0 -2.78549 -34.1802 -206.25
+ 47 197.107 1475 6 1 115.15 -43.1266 -24.8179
+ 47 107.482 1466 6 1 113.37 -42.9212 -24.4501
+ 47 69.5151 852 4 0 -6.09195 -9.65 -85.9455
+ 47 71.2536 871 4 1 -5.69278 -9.62208 -84.8499
+ 47 118.386 849 5 0 -6.05163 -10.0705 -55.85
+ 47 118.444 861 4 1 -7.73055 -10.0692 -84.45
+ 47 252.339 849 4 0 -7.72241 -10.1999 -85.85
+ 47 287.822 860 3 1 -7.89483 -12.5904 -114.45
+ 47 122.258 837 3 0 -8.07946 -12.6014 -115.85
+ 47 160.038 835 2 1 -12.8575 -12.4415 -144.451
+ 47 128.91 837 2 0 -13.3483 -12.6107 -145.85
+ 47 12.3747 836 2 0 -13.467 -12.65 -146.207
+ 47 118.333 786 1 1 -22.7552 -15.285 -174.451
+ 47 53.4977 785 1 1 -22.8501 -15.3451 -174.681
+ 47 12.3096 822 1 0 -23.3132 -15.6404 -175.85
+ 47 116.911 821 1 0 -23.3287 -15.65 -175.889
+ 47 20.78 731 0 1 -33.8003 -24.3266 -204.45
+ 47 122.027 730 0 1 -33.8501 -24.3547 -204.542
+ 47 76.4554 776 0 0 -34.5783 -24.7726 -205.85
+ 47 47.6556 775 0 0 -34.7051 -24.85 -206.098
+ 47 122.553 869 5 1 -6.24513 -9.93617 -54.45
+ 47 180.456 868 5 1 -6.25 -9.9251 -54.461
+ 47 20.3213 861 5 0 -6.78159 -7.71478 -55.85
+ 47 67.3137 862 5 0 -6.79545 -7.65 -55.8868
+ 47 54.5296 863 5 0 -6.82787 -7.44972 -55.9716
+ 47 72.3531 864 5 0 -6.86571 -7.25 -56.0695
+ 47 32.1269 865 5 0 -6.94546 -7.05 -56.1962
+ 47 280.961 1014 5 0 -92.0721 23.0018 -56.25
+ 47 136.615 1013 5 0 -92.659 22.8499 -55.9257
+ 47 78.8244 430 5 1 -94.0389 22.4472 -54.85
+ 47 79.5822 429 5 1 -94.15 22.421 -54.7744
+ 47 101.676 428 5 1 -94.35 22.3954 -54.6577
+ 47 158.218 427 5 1 -94.55 22.3929 -54.5629
+ 47 9.66366 426 5 1 -94.75 22.3632 -54.4635
+ 47 175.039 1002 6 0 -80.6294 20.6419 -26.25
+ 47 65.9213 498 6 1 -80.4038 20.4468 -24.8495
+ 47 112.39 499 6 1 -80.25 20.471 -24.7119
+ 47 30.6501 500 6 1 -80.05 20.4605 -24.7898
+ 47 109.836 995 6 0 -78.6622 19.2226 -25.85
+ 47 113.508 994 6 0 -78.4315 19.0496 -25.9738
+ 47 153.727 993 6 0 -78.2867 18.8496 -26.0219
+ 47 119.734 847 6 0 -6.19307 -10.5459 -25.85
+ 47 126.209 848 5 0 -6.10458 -10.293 -55.85
+ 47 118.809 870 4 1 -5.94825 -9.89582 -84.45
+ 47 117.339 850 4 0 -5.93734 -9.87886 -85.85
+ 47 108.192 871 3 1 -5.74203 -9.55302 -114.45
+ 47 107.856 852 3 0 -5.73698 -9.53726 -115.85
+ 47 151.18 872 2 1 -5.62483 -9.17317 -144.45
+ 47 153.653 854 2 0 -5.61398 -9.15494 -145.85
+ 47 134.375 873 1 1 -5.3832 -8.74974 -174.45
+ 47 220.443 856 1 0 -5.36847 -8.73834 -175.85
+ 47 147.098 874 0 1 -5.06987 -8.51406 -204.45
+ 47 161.346 857 0 0 -5.0555 -8.49463 -205.85
+ 47 222.012 830 0 0 -0.740303 -14.0227 -206.25
+ 47 123.504 858 0 0 -5.06841 -8.45 -205.902
+ 47 1.1773 859 0 0 -5.19361 -8.25 -206.245
+Number of digits in this event = 40
Using G4ParticleGun ...
-9.56342 LIN
+7.35182 LIN
gamma
Event: 48
-Number of tracker hits in this event = 18
- 48 509.881 522 2 1 -75.4699 91.6276 -144.45
- 48 272.279 1357 2 0 -75.4713 91.6348 -145.85
- 48 154.781 522 1 1 -75.4939 91.7795 -174.45
- 48 357.164 1358 1 0 -75.5 91.7927 -175.85
- 48 109.766 522 0 1 -75.6056 92.008 -204.45
- 48 98.5141 1359 0 0 -75.6153 92.0261 -205.85
- 48 163.416 523 1 1 -75.4478 91.6128 -174.45
- 48 138.073 1357 1 0 -75.4447 91.6112 -175.85
- 48 82.3968 523 0 1 -75.3866 91.577 -204.45
- 48 121.123 1357 0 0 -75.3841 91.5757 -205.85
- 48 103.869 1374 2 0 9.20301 95.1226 -146.25
- 48 167.872 1375 2 0 9.0991 95.1501 -146.099
- 48 16.6916 1063 12 0 -161.219 32.829 153.75
- 48 143.822 1064 12 0 -161.234 32.8502 153.765
- 48 182.146 1360 1 0 -77.0348 92.2574 -175.85
- 48 101.758 1359 1 0 -77.0753 92.15 -176.06
- 48 29.8689 1295 0 0 24.3534 79.1096 -206.25
- 48 164.191 1294 0 0 24.3817 79.05 -206.087
-Number of digits in this event = 14
+Number of tracker hits in this event = 0
+Number of digits in this event = 2
Using G4ParticleGun ...
-3.02056 LIN
+2.45309 LIN
gamma
Event: 49
-Number of tracker hits in this event = 150
- 49 340.133 1048 10 1 29.6547 64.0986 95.55
- 49 220.558 1220 10 0 29.6562 64.0979 94.15
- 49 108.872 1048 9 1 29.6785 64.0886 65.55
- 49 120.248 1220 9 0 29.6761 64.0917 64.15
- 49 240.134 1047 8 1 29.6052 64.1528 35.55
- 49 158.835 1220 8 0 29.6035 64.1523 34.15
- 49 749.142 1047 7 1 29.5651 64.1176 5.55
- 49 226.451 1220 7 0 29.5555 64.1165 4.15
- 49 409.786 1046 6 1 29.3684 64.113 -24.45
- 49 188.692 1220 6 0 29.3627 64.1159 -25.85
- 49 265.934 1046 5 1 29.2536 64.2149 -54.45
- 49 186.437 1220 5 0 29.2551 64.2147 -55.85
- 49 288.322 1046 4 1 29.2707 64.1923 -84.45
- 49 235.272 1220 4 0 29.2728 64.1837 -85.85
- 49 335.514 1046 3 1 29.2831 64.009 -114.45
- 49 105.137 1219 3 0 29.2884 64.003 -115.85
- 49 226.776 1046 2 1 29.43 63.8911 -144.45
- 49 139.748 1219 2 0 29.4351 63.8816 -145.85
- 49 192.973 1047 1 1 29.5623 63.6816 -174.45
- 49 126.831 1218 1 0 29.573 63.6632 -175.85
- 49 106.73 1050 0 1 30.1475 63.2013 -204.45
- 49 114.941 1215 0 0 30.1682 63.1821 -205.85
- 49 141.514 1033 0 1 26.7298 63.8591 -204.45
- 49 133.143 1219 0 0 26.5756 63.9808 -205.85
- 49 80.6028 1047 2 1 29.45 63.9018 -144.603
- 49 49.8087 1221 2 0 30.4821 64.3711 -145.851
- 49 97.8404 1222 2 0 30.5821 64.45 -145.979
- 49 13.1701 1223 2 0 30.646 64.6501 -146.202
- 49 6.52834 1384 2 0 45.0845 97.1405 -146.25
- 49 159.031 1385 2 0 45.0918 97.15 -146.226
- 49 287.037 1128 2 1 45.6584 97.724 -144.849
- 49 46.7156 1129 2 1 45.85 98.0315 -144.566
- 49 30.3011 1383 2 0 45.1632 96.8168 -145.85
- 49 180.041 1382 2 0 45.0837 96.7499 -145.903
- 49 174.071 1349 2 0 10.3277 90.004 -146.25
- 49 13.3476 952 2 1 10.6348 90.1622 -144.85
- 49 282.73 953 2 1 10.65 90.1801 -144.819
- 49 1.75892 1432 3 0 -0.992043 106.55 -116.146
- 49 446.199 1045 3 1 29.2499 63.611 -114.762
- 49 193.213 1221 5 0 29.3443 64.25 -56.0518
- 49 131.793 1045 5 1 29.25 64.2108 -54.827
- 49 71.345 1216 5 0 28.5041 63.2938 -55.85
- 49 106.718 1215 5 0 28.4741 63.25 -55.8834
- 49 101.832 1214 5 0 28.385 63.05 -55.9552
- 49 268.453 1036 5 1 27.305 62.3697 -54.85
- 49 184.922 1047 6 1 29.45 64.0793 -24.5146
- 49 124.072 1222 6 0 29.2628 64.6296 -25.85
- 49 116.522 1222 5 0 29.2403 64.6199 -55.85
- 49 133.426 1044 4 1 29.0011 64.1774 -84.45
- 49 173.109 1038 3 1 27.6735 63.744 -114.45
- 49 268.106 1218 3 0 27.6315 63.6936 -115.85
- 49 172.923 1033 2 1 26.7789 62.9341 -144.45
- 49 167.539 1214 2 0 26.8237 62.9237 -145.85
- 49 129.429 1038 1 1 27.6565 62.6429 -174.45
- 49 154.062 1212 1 0 27.7379 62.5969 -175.85
- 49 103.377 1045 0 1 29.1925 61.6728 -204.45
- 49 178.165 1207 0 0 29.2312 61.632 -205.85
- 49 64.274 1672 1 1 154.55 115.244 -174.545
- 49 97.9971 1208 0 0 29.2543 61.65 -206.192
- 49 152.549 1048 7 1 29.65 63.9535 5.44117
- 49 33.7177 1215 7 0 29.6853 63.1176 4.14949
- 49 98.8778 1214 7 0 29.684 63.0499 4.04592
- 49 97.4291 1055 6 1 31.1442 45.5302 -24.4504
- 49 49.1529 1056 6 1 31.25 45.4943 -24.7362
- 49 114.236 1126 6 0 31.7282 45.3088 -25.85
- 49 128.535 1149 6 0 57.7026 49.9061 -26.25
- 49 32.3659 1190 6 1 58.2012 50.16 -24.85
- 49 106.91 1191 6 1 58.25 50.1664 -24.7274
- 49 44.7231 1192 6 1 58.5469 50.4776 -24.45
- 49 179.551 1193 6 1 58.65 50.6282 -24.5497
- 49 51.6391 1167 6 0 59.4941 53.4726 -25.8501
- 49 66.7492 1168 6 0 59.5399 53.65 -25.9148
- 49 78.1995 1169 6 0 59.5584 53.85 -25.9661
- 49 82.1318 1170 6 0 59.7319 54.0501 -26.0126
- 49 115.491 1171 6 0 59.8885 54.25 -26.0771
- 49 43.3093 1172 6 0 60.0195 54.45 -26.1751
- 49 235.214 1175 5 1 55.0632 26.72 -54.45
- 49 8.96979 1030 5 0 55.2328 26.0697 -55.8502
- 49 97.8044 1029 5 0 55.2373 26.05 -55.8892
- 49 14.1375 1173 4 1 54.6571 13.1403 -84.4507
- 49 160.215 1172 4 1 54.65 13.093 -84.4975
- 49 228.333 959 4 0 54.6773 12.0487 -85.85
- 49 100.022 958 4 0 54.6999 11.85 -86.1704
- 49 25.0779 1186 3 1 57.3193 -4.20124 -114.45
- 49 90.4528 1185 3 1 57.25 -4.2472 -114.513
- 49 60.3494 1184 3 1 57.05 -4.38098 -114.698
- 49 96.8819 875 3 0 55.8277 -5.00942 -115.85
- 49 113.808 874 3 0 55.7269 -5.05 -115.957
- 49 32.5241 1061 2 1 32.2657 -20.9249 -144.45
- 49 104.502 1060 2 1 32.25 -20.8231 -144.565
- 49 55.5817 801 2 0 32.0328 -19.7805 -145.85
- 49 400.824 802 2 0 31.9909 -19.6499 -146.006
- 49 381.464 803 2 0 31.8712 -19.45 -146.192
- 49 96.827 971 1 1 14.401 16.8591 -174.45
- 49 92.7986 972 1 1 14.45 16.969 -174.566
- 49 109.73 973 1 1 14.6502 17.1216 -174.666
- 49 155.329 974 1 1 14.85 17.1322 -174.764
- 49 236.504 975 1 1 15.05 17.0465 -174.783
- 49 59.483 1049 2 0 3.93634 29.85 -145.858
- 49 3.06279 1176 5 1 55.2504 26.4645 -54.8354
- 49 177.236 1028 5 0 55.7559 25.8212 -55.8504
- 49 45.7039 1027 5 0 55.8951 25.65 -56.1299
- 49 130.149 1253 4 1 70.6931 7.2478 -84.45
- 49 94.8373 1254 4 1 70.8502 7.0243 -84.6262
- 49 8.27927 1255 4 1 71.05 6.72295 -84.8296
- 49 62.3934 925 4 0 72.0252 5.19193 -85.8502
- 49 100.063 924 4 0 72.1171 5.05 -85.9669
- 49 83.4182 923 4 0 72.2674 4.85 -86.1404
- 49 8.00489 1401 3 1 100.543 -24.6818 -114.45
- 49 197.983 1402 3 1 100.55 -24.703 -114.464
- 49 34.6488 1403 3 1 100.75 -25.2239 -114.78
- 49 34.8725 765 3 0 101.249 -26.9604 -115.85
- 49 70.1366 764 3 0 101.273 -27.05 -115.905
- 49 68.8929 763 3 0 101.318 -27.25 -116.034
- 49 38.7505 762 3 0 101.36 -27.4502 -116.165
- 49 43.7982 911 3 0 160.077 2.29812 -116.25
- 49 86.1713 912 3 0 160.183 2.45 -116.191
- 49 85.5485 913 3 0 160.335 2.65 -116.097
- 49 76.2802 914 3 0 160.512 2.85 -115.973
- 49 2.74367 915 3 0 160.714 3.05 -115.856
- 49 62.9565 1710 3 1 162.205 4.64852 -114.85
- 49 96.2171 1711 3 1 162.35 4.80084 -114.752
- 49 106.078 1712 3 1 162.55 5.00166 -114.631
- 49 91.722 1713 3 1 162.75 5.19846 -114.557
- 49 13.3037 1714 3 1 162.95 5.49449 -114.468
- 49 102.215 911 4 0 159.83 2.34343 -86.25
- 49 1.39207 910 4 0 159.81 2.25 -85.8567
- 49 124.949 1697 4 1 159.728 1.90059 -84.85
- 49 16.5314 712 5 0 107.118 -37.6179 -56.2499
- 49 459.804 711 5 0 107.085 -37.65 -56.2271
- 49 229.719 1046 0 1 29.2532 64.199 -204.45
- 49 111.201 1221 0 0 29.3051 64.287 -205.85
- 49 141.061 1220 0 0 29.4234 64.1929 -205.85
- 49 114.231 1047 9 1 29.5478 64.2758 65.55
- 49 108.079 1221 9 0 29.5443 64.2903 64.15
- 49 121.595 1222 8 0 29.4894 64.6366 34.15
- 49 102.709 1225 7 0 29.4749 65.1423 4.15
- 49 120.076 1229 6 0 29.3902 65.867 -25.85
- 49 108.602 1233 5 0 29.3651 66.7698 -55.85
- 49 149.114 1239 4 0 29.3045 67.8593 -85.85
- 49 128.888 1244 3 0 29.0466 68.9049 -115.85
- 49 143.049 1043 2 1 28.7514 69.7936 -144.45
- 49 220.733 1248 2 0 28.7318 69.8246 -145.85
- 49 190.067 1041 1 1 28.3261 70.4502 -174.45
- 49 113.801 1252 1 0 28.3011 70.4768 -175.85
- 49 114.173 1038 0 1 27.8134 71.0067 -204.45
- 49 101.722 1254 0 0 27.7742 71.0409 -205.85
- 49 11.6995 1255 0 0 27.7637 71.05 -206.217
- 49 325.46 1249 1 0 27.9518 69.9639 -175.85
- 49 29.9587 1238 4 0 29.3056 67.85 -86.2073
-Number of digits in this event = 66
-Using G4ParticleGun ...
-5.4617 LIN
+Number of tracker hits in this event = 0
+Number of digits in this event = 1
+Using G4ParticleGun ...
+5.34343 LIN
gamma
Event: 50
-Number of tracker hits in this event = 4
- 50 322.841 829 0 1 -14.125 -146.05 -204.45
- 50 236.192 170 0 0 -14.1391 -146.04 -205.85
- 50 15.563 143 5 0 109.803 -151.529 -56.25
- 50 109.161 1465 5 1 113.238 -151.991 -54.85
-Number of digits in this event = 4
+Number of tracker hits in this event = 121
+ 50 247.431 1449 7 1 110.102 -10.7095 5.55
+ 50 278.931 846 7 0 110.101 -10.7101 4.15
+ 50 398.051 1449 6 1 110.089 -10.726 -24.45
+ 50 346.923 846 6 0 110.091 -10.7284 -25.85
+ 50 230.451 1449 5 1 110.137 -10.7696 -54.45
+ 50 208.083 846 5 0 110.139 -10.7684 -55.85
+ 50 124.766 1450 4 1 110.194 -10.7478 -84.45
+ 50 118.455 846 4 0 110.198 -10.745 -85.85
+ 50 139.899 1450 3 1 110.27 -10.6876 -114.45
+ 50 172.633 846 3 0 110.274 -10.6844 -115.85
+ 50 348.578 1451 2 1 110.352 -10.6131 -144.45
+ 50 135.891 847 2 0 110.355 -10.6128 -145.85
+ 50 110.967 1451 1 1 110.417 -10.6096 -174.45
+ 50 301.257 847 1 0 110.418 -10.6099 -175.85
+ 50 113.017 1451 0 1 110.417 -10.6186 -204.45
+ 50 112.582 847 0 0 110.416 -10.6178 -205.85
+ 50 237.414 1449 4 1 110.15 -10.7805 -84.4593
+ 50 95.6411 840 4 0 110.627 -11.8586 -85.85
+ 50 37.0782 839 4 0 110.755 -12.05 -86.1293
+ 50 177.022 726 4 0 177.707 -34.6544 -86.25
+ 50 348.036 1786 4 1 177.537 -34.7213 -84.85
+ 50 112.774 1785 4 1 177.35 -34.7763 -84.4903
+ 50 132.454 1450 5 1 110.15 -10.751 -54.4574
+ 50 58.4827 1448 5 1 109.95 -10.3107 -54.8088
+ 50 114.552 848 5 0 109.1 -10.4301 -55.8503
+ 50 136.623 849 5 0 108.884 -10.2497 -55.9384
+ 50 174.607 1442 5 1 108.683 -10.7758 -54.85
+ 50 51.6248 850 5 0 108.302 -10.0181 -55.85
+ 50 113.567 847 6 0 110.17 -10.631 -25.85
+ 50 38.5306 1459 5 1 112.135 -9.61453 -54.45
+ 50 88.1397 1460 5 1 112.15 -9.58033 -54.6158
+ 50 162.892 853 5 0 112.255 -9.32529 -55.85
+ 50 4.60919 854 5 0 112.277 -9.25 -56.2295
+ 50 153.673 1469 4 1 114.111 -3.78849 -84.45
+ 50 105.124 1470 4 1 114.15 -3.73814 -84.6037
+ 50 58.1761 883 4 0 114.508 -3.31593 -85.85
+ 50 80.4099 884 4 0 114.561 -3.25 -86.0448
+ 50 154.15 1505 3 1 121.182 6.4892 -114.45
+ 50 22.7088 1506 3 1 121.35 6.573 -114.782
+ 50 36.523 933 3 0 121.927 6.83263 -115.85
+ 50 133.725 934 3 0 121.965 6.85 -115.92
+ 50 20.9784 1583 2 1 136.891 16.5676 -144.45
+ 50 138.385 1584 2 1 136.95 16.6189 -144.493
+ 50 77.2859 1585 2 1 137.15 16.7766 -144.646
+ 50 20.8877 1586 2 1 137.35 16.9524 -144.809
+ 50 82.3766 990 2 0 138.606 18.0836 -145.85
+ 50 108.27 991 2 0 138.818 18.25 -146.022
+ 50 0.541984 992 2 0 139.099 18.45 -146.247
+ 50 217.96 1453 5 1 110.757 -10.6171 -54.45
+ 50 69.4537 847 5 0 110.802 -10.6459 -55.85
+ 50 129.706 1458 4 1 111.773 -11.2001 -84.45
+ 50 593.513 844 4 0 111.799 -11.2058 -85.85
+ 50 213.174 1461 3 1 112.516 -11.4094 -114.45
+ 50 251.048 843 3 0 112.568 -11.4066 -115.85
+ 50 124.719 1467 2 1 113.731 -11.2522 -144.45
+ 50 252.433 1468 2 1 113.75 -11.2456 -144.798
+ 50 170.988 844 2 0 113.81 -11.2253 -145.85
+ 50 125.811 1476 1 1 115.444 -10.6594 -174.45
+ 50 154.128 1489 0 1 117.975 -9.82063 -204.45
+ 50 191.432 851 0 0 118.13 -9.73807 -205.85
+ 50 53.2708 824 0 0 115.68 -15.1578 -205.85
+ 50 48.8372 650 0 0 111.876 -49.9507 -206.25
+ 50 79.9908 1450 6 1 110.15 -10.809 -24.5647
+ 50 163.353 1451 5 1 110.502 -10.9581 -54.45
+ 50 206.456 845 5 0 110.522 -10.9659 -55.85
+ 50 44.7244 1453 4 1 110.947 -11.127 -84.45
+ 50 59.0807 1454 4 1 110.95 -11.1283 -84.5982
+ 50 178.737 1457 3 1 111.593 -11.3551 -114.45
+ 50 111.228 1459 2 1 112.129 -11.745 -144.45
+ 50 169.321 841 2 0 112.154 -11.7581 -145.85
+ 50 124.55 1462 1 1 112.661 -12.0264 -174.45
+ 50 105.33 840 1 0 112.678 -12.0397 -175.85
+ 50 98.7863 1464 0 1 113.056 -12.3159 -204.45
+ 50 103.956 838 0 0 113.074 -12.3315 -205.85
+ 50 71.8385 739 6 1 -32.0955 126.693 -24.45
+ 50 206.347 740 6 1 -32.05 126.574 -24.5387
+ 50 155.675 1290 4 0 80.9326 78.2207 -86.25
+ 50 56.2759 1458 3 1 111.751 -11.4432 -114.718
+ 50 52.0415 1459 3 1 111.951 -11.4693 -114.761
+ 50 54.0903 1460 3 1 112.15 -11.4916 -114.787
+ 50 42.2703 847 3 0 113.225 -10.5349 -115.85
+ 50 132.874 848 3 0 113.323 -10.4499 -115.929
+ 50 187.111 849 3 0 113.335 -10.25 -116.111
+ 50 14.8317 850 3 0 113.465 -10.0498 -116.217
+ 50 105.416 560 3 0 137.463 -67.8997 -116.25
+ 50 154.789 559 3 0 137.552 -68.0501 -116.144
+ 50 83.377 880 4 0 81.2541 -3.96927 -86.25
+ 50 29.998 1178 5 0 46.7789 55.7806 -56.25
+ 50 114.801 1179 5 0 46.7091 55.85 -56.2219
+ 50 68.3364 1180 5 0 46.4706 56.05 -56.0253
+ 50 71.2681 1181 5 0 46.3351 56.25 -55.9296
+ 50 6.89654 1182 5 0 46.1452 56.45 -55.8588
+ 50 38.0913 1120 5 1 44.157 58.4488 -54.8499
+ 50 57.0807 1119 5 1 44.0498 58.5391 -54.7894
+ 50 55.8497 1118 5 1 43.85 58.6109 -54.7288
+ 50 80.6842 1117 5 1 43.65 58.5693 -54.7264
+ 50 166.82 1116 5 1 43.4499 58.4021 -54.7739
+ 50 162.134 1115 5 1 43.25 58.0079 -54.6992
+ 50 245.15 1452 0 1 110.696 -11.4834 -204.45
+ 50 227.873 842 0 0 110.735 -11.5484 -205.85
+ 50 122.717 1083 0 0 115.227 36.65 -206.022
+ 50 125.299 1449 2 1 110.1 -11.1796 -144.45
+ 50 76.6294 1448 2 1 109.95 -11.0266 -144.509
+ 50 230.993 1447 2 1 109.75 -10.8846 -144.594
+ 50 107.876 1446 2 1 109.55 -10.6855 -144.767
+ 50 4.63455 857 2 0 107.904 -8.46632 -145.85
+ 50 158.021 858 2 0 107.892 -8.45 -145.856
+ 50 76.7015 859 2 0 107.785 -8.24978 -145.888
+ 50 40.7162 860 2 0 107.681 -8.04991 -145.873
+ 50 3.01998 1416 2 1 103.505 0.905925 -144.85
+ 50 69.7352 953 2 0 99.3632 10.6986 -145.85
+ 50 105.547 954 2 0 99.2725 10.85 -145.885
+ 50 72.0135 955 2 0 99.1617 11.0501 -145.883
+ 50 205.051 1391 2 1 98.4125 13.1995 -144.85
+ 50 59.483 1392 2 1 98.55 13.791 -144.499
+ 50 108.274 842 2 0 110.285 -11.4937 -145.85
+ 50 92.7836 1443 1 1 108.81 -15.4133 -174.45
+ 50 85.7002 1442 1 1 108.75 -15.3585 -174.663
+ 50 187.226 825 1 0 108.372 -15.0133 -175.85
+ 50 201.101 1403 0 1 100.788 -8.79131 -204.45
+ 50 108.505 855 0 0 100.868 -8.96418 -205.85
+Number of digits in this event = 58
Using G4ParticleGun ...
-6.96928 LIN
+9.03844 LIN
gamma
Event: 51
-Number of tracker hits in this event = 2
- 51 219.798 752 1 1 -29.45 -34.0401 -174.546
- 51 28.6007 495 8 0 132.158 -81.05 33.897
-Number of digits in this event = 3
+Number of tracker hits in this event = 9
+ 51 258.75 658 1 1 -48.2594 24.4952 -174.45
+ 51 275.903 1022 1 0 -48.2591 24.4951 -175.85
+ 51 210.753 658 0 1 -48.2582 24.4966 -204.45
+ 51 268.156 1022 0 0 -48.2595 24.4965 -205.85
+ 51 45.9185 491 6 0 -116.448 -81.72 -26.25
+ 51 67.4178 96 7 0 -85.8224 -160.75 4.00312
+ 51 178.56 490 6 0 -116.504 -81.85 -26.0401
+ 51 236.552 1020 3 1 24.05 98.7903 -114.822
+ 51 177.168 1021 3 1 24.2513 98.9903 -114.45
+Number of digits in this event = 9
Using G4ParticleGun ...
-7.60703 LIN
+3.6961 LIN
gamma
Event: 52
-Number of tracker hits in this event = 8
- 52 134.769 792 0 1 -21.5917 -98.2119 -204.45
- 52 75.0118 793 0 1 -21.45 -98.5532 -204.576
- 52 148.783 794 0 1 -21.25 -98.7134 -204.644
- 52 21.4079 795 0 1 -21.05 -98.8731 -204.827
- 52 99.3535 398 0 0 -20.2737 -100.478 -205.85
- 52 91.5696 397 0 0 -20.0705 -100.55 -206.011
- 52 75.0467 396 0 0 -19.9899 -100.75 -206.114
- 52 235.296 33 0 0 -22.0204 -173.413 -206.25
-Number of digits in this event = 5
+Number of tracker hits in this event = 38
+ 52 220.19 459 7 1 -88.1708 119.025 5.55
+ 52 263.474 1494 7 0 -88.1712 119.025 4.15
+ 52 119.711 459 6 1 -88.174 119.035 -24.45
+ 52 130.823 1494 6 0 -88.1752 119.038 -25.85
+ 52 119.999 459 5 1 -88.2033 119.097 -54.45
+ 52 117.479 1494 5 0 -88.2055 119.102 -55.85
+ 52 124.766 459 4 1 -88.2448 119.211 -84.45
+ 52 181.12 1495 4 0 -88.2433 119.216 -85.85
+ 52 188.891 459 3 1 -88.2018 119.323 -114.45
+ 52 117.715 1495 3 0 -88.1985 119.327 -115.85
+ 52 203.411 459 2 1 -88.1228 119.424 -144.45
+ 52 311.621 1496 2 0 -88.1202 119.427 -145.85
+ 52 309.831 459 1 1 -88.0645 119.502 -174.45
+ 52 424.11 1496 1 0 -88.0611 119.507 -175.85
+ 52 106.393 460 0 1 -87.961 119.593 -204.45
+ 52 509.461 1497 0 0 -87.9713 119.601 -205.85
+ 52 112.229 442 0 1 -91.6608 120.447 -204.45
+ 52 25.7463 1500 0 0 -92.011 120.165 -205.85
+ 52 90.7681 1499 0 0 -92.0326 120.15 -205.932
+ 52 136.979 443 0 1 -91.4917 119.742 -204.451
+ 52 132.318 1498 0 0 -91.5857 119.86 -205.85
+ 52 156.212 1496 3 0 -88.1939 119.35 -115.946
+ 52 268.845 459 0 1 -88.0651 119.682 -204.45
+ 52 134.889 450 6 1 -89.9779 119.2 -24.45
+ 52 123.667 1495 6 0 -89.9676 119.162 -25.85
+ 52 142.501 453 5 1 -89.3881 118.286 -54.45
+ 52 126.719 1490 5 0 -89.3682 118.238 -55.85
+ 52 139.772 457 4 1 -88.5197 116.903 -84.45
+ 52 127.8 1482 4 0 -88.5594 116.74 -85.85
+ 52 217.449 453 3 1 -89.4142 113.259 -114.45
+ 52 116.483 1463 3 0 -89.5291 112.939 -115.85
+ 52 148.077 438 2 1 -92.4231 106.473 -144.45
+ 52 179.737 1430 2 0 -92.4873 106.269 -145.85
+ 52 147.323 430 1 1 -94.0905 101.876 -174.45
+ 52 126.468 1406 1 0 -94.1246 101.525 -175.85
+ 52 208.168 428 0 1 -94.4026 94.9471 -204.45
+ 52 110.384 1372 0 0 -94.3607 94.6528 -205.85
+ 52 273.914 427 0 1 -94.55 94.841 -204.552
+Number of digits in this event = 30
Using G4ParticleGun ...
-4.80794 LIN
+7.76736 LIN
gamma
Event: 53
-Number of tracker hits in this event = 0
-Number of digits in this event = 2
+Number of tracker hits in this event = 7
+ 53 109.791 148 0 1 -150.513 -163.896 -204.45
+ 53 81.1359 79 0 0 -150.239 -164.308 -205.85
+ 53 78.0386 78 0 0 -150.221 -164.35 -205.95
+ 53 8.99571 19 0 0 -166.148 -176.331 -206.25
+ 53 76.5006 18 0 0 -166.164 -176.35 -206.228
+ 53 136.155 17 0 0 -166.37 -176.55 -206.127
+ 53 10.1606 16 0 0 -166.463 -176.75 -206.228
+Number of digits in this event = 3
Using G4ParticleGun ...
-4.03231 LIN
+4.42038 LIN
gamma
Event: 54
-Number of tracker hits in this event = 133
- 54 279.026 755 10 1 -28.9582 54.6865 95.55
- 54 264.109 1173 10 0 -28.958 54.6862 94.15
- 54 232.573 755 9 1 -28.9578 54.6809 65.55
- 54 247.324 1173 9 0 -28.9613 54.6821 64.15
- 54 108.349 755 8 1 -29.0276 54.6961 35.55
- 54 249.366 1173 8 0 -29.0339 54.6994 34.15
- 54 495.464 754 7 1 -29.1681 54.7733 5.55
- 54 322.123 1173 7 0 -29.1727 54.7764 4.15
- 54 100.803 753 6 1 -29.2714 54.8357 -24.45
- 54 117.546 1173 6 0 -29.2775 54.8356 -25.85
- 54 436.67 753 5 1 -29.4073 54.8391 -54.45
- 54 114.08 1173 5 0 -29.4145 54.8396 -55.85
- 54 117.844 752 4 1 -29.5575 54.8503 -84.45
- 54 131.074 1173 4 0 -29.5621 54.8487 -85.85
- 54 134.313 752 3 1 -29.648 54.7776 -114.45
- 54 152.234 1173 3 0 -29.6542 54.7704 -115.85
- 54 134.869 751 2 1 -29.7795 54.6343 -144.45
- 54 109.156 1172 2 0 -29.785 54.6344 -145.85
- 54 181.12 750 1 1 -29.8851 54.6189 -174.45
- 54 218.848 1172 1 0 -29.8953 54.6173 -175.85
- 54 122.627 749 0 1 -30.1101 54.6014 -204.45
- 54 279.224 1172 0 0 -30.1148 54.6016 -205.85
- 54 98.9493 1340 1 0 -50.1209 88.1703 -176.25
- 54 247.98 649 1 1 -50.1122 88.1055 -174.85
- 54 289.598 650 1 1 -50.05 88.0587 -174.579
- 54 123.11 651 1 1 -49.8499 87.6921 -174.784
- 54 274.597 648 1 1 -50.25 87.4113 -174.474
- 54 74.7252 1173 1 0 -29.8854 54.65 -176.174
- 54 187.034 1011 3 0 -72.3654 22.3079 -116.25
- 54 124.952 1010 3 0 -72.4336 22.25 -116.11
- 54 130.952 749 1 1 -30.05 54.5551 -174.512
- 54 139.132 1171 1 0 -30.2869 54.3772 -175.85
- 54 121.645 721 0 1 -35.7258 51.262 -204.45
- 54 5.03804 720 0 1 -35.85 51.2078 -204.827
- 54 77.9097 1155 0 0 -36.1737 51.0677 -205.85
- 54 163.217 1154 0 0 -36.2241 51.05 -206.004
- 54 85.4145 1495 8 1 119.15 33.8905 35.1741
- 54 75.695 1494 8 1 119.15 33.9429 35.261
- 54 96.1368 1153 0 0 -36.088 50.849 -205.975
- 54 47.0561 717 0 1 -36.586 50.0229 -204.85
- 54 198.61 716 0 1 -36.65 49.9825 -204.774
- 54 262.974 751 1 1 -29.8499 54.712 -174.588
- 54 42.7504 1183 1 0 -29.1606 56.7355 -175.85
- 54 63.9312 1184 1 0 -29.1131 56.85 -175.916
- 54 168.963 1185 1 0 -29.033 57.05 -175.992
- 54 115.474 1186 1 0 -28.9308 57.25 -176.084
- 54 71.6305 1187 1 0 -28.7888 57.45 -176.184
- 54 138.103 1188 1 0 -28.6537 57.6502 -176.243
- 54 285.222 752 1 1 -29.6498 54.8408 -174.658
- 54 40.8381 753 1 1 -29.45 55.0705 -174.573
- 54 126.383 317 14 0 -139.967 -116.653 213.75
- 54 3.35195 1171 5 0 -29.2105 54.2577 -55.85
- 54 159.185 1170 5 0 -29.2081 54.25 -55.8677
- 54 7.40769 768 4 1 -26.286 40.9346 -84.45
- 54 76.9237 769 4 1 -26.25 40.9365 -84.4706
- 54 51.3446 770 4 1 -26.05 40.9452 -84.5901
- 54 55.8984 771 4 1 -25.85 40.9502 -84.694
- 54 12.229 772 4 1 -25.65 40.9497 -84.8226
- 54 91.9519 1105 4 0 -24.2007 41.1718 -85.8502
- 54 110.134 1106 4 0 -23.9142 41.2501 -86.0488
- 54 0.735025 1104 4 0 -1.9173 40.852 -86.25
- 54 114.721 1103 4 0 -1.91899 40.85 -86.247
- 54 150.906 1102 4 0 -2.13363 40.6499 -86.0991
- 54 110.058 1101 4 0 -2.46339 40.4499 -86.0667
- 54 61.5888 1100 4 0 -2.72905 40.25 -85.9887
- 54 57.8436 1099 4 0 -2.86339 40.05 -86.0092
- 54 58.2332 1098 4 0 -2.98966 39.85 -85.9849
- 54 55.1854 1097 4 0 -3.08082 39.65 -85.9115
- 54 49.3883 1096 4 0 -3.11166 39.45 -85.8656
- 54 54.8384 875 4 1 -4.91148 34.8357 -84.85
- 54 15.3063 1002 4 0 -15.307 20.5186 -85.85
- 54 26.4675 798 4 1 -20.3715 11.8964 -84.85
- 54 0.0206463 951 4 0 -22.4421 10.2505 -85.8502
- 54 106.912 950 4 0 -22.4427 10.25 -85.8505
- 54 197.99 949 4 0 -22.7686 10.05 -85.9991
- 54 129.426 1174 5 0 -29.3978 54.9064 -55.85
- 54 128.825 751 4 1 -29.7133 53.089 -84.45
- 54 87.1445 1170 4 0 -29.6878 54.0871 -85.85
- 54 46.614 1171 4 0 -29.6803 54.2501 -86.0811
- 54 142.671 764 3 1 -27.1387 74.8641 -114.45
- 54 8.56598 1279 3 0 -27.0351 76.0308 -115.85
- 54 84.254 1280 3 0 -27.0334 76.0504 -115.874
- 54 71.3489 1281 3 0 -27.0091 76.25 -116.093
- 54 219.765 781 2 1 -23.7748 101.157 -144.45
- 54 109.351 782 2 1 -23.65 100.732 -144.602
- 54 81.3569 783 2 1 -23.45 100.384 -144.586
- 54 211.322 751 0 1 -29.6622 54.6885 -204.45
- 54 212.285 1173 0 0 -29.7133 54.7168 -205.85
- 54 61.5787 754 10 1 -29.05 54.6802 95.2951
- 54 37.2257 753 10 1 -29.2502 54.7154 95.2112
- 54 18.6568 1179 10 0 -31.3356 56.0136 94.15
- 54 69.0766 1180 10 0 -31.3872 56.05 94.1206
- 54 75.8106 1181 10 0 -31.5621 56.25 94.0969
- 54 42.5586 1182 10 0 -31.8045 56.45 94.1201
- 54 46.3421 722 10 1 -35.5687 59.583 95.15
- 54 180.63 721 10 1 -35.65 59.6556 95.1626
- 54 346.741 720 10 1 -35.8501 59.9919 95.2689
- 54 210.743 719 10 1 -36.05 60.1942 95.4573
- 54 144.692 753 8 1 -29.3147 54.8392 35.55
- 54 124.997 754 6 1 -29.123 55.4772 -24.45
- 54 204.027 1177 6 0 -29.1008 55.4956 -25.85
- 54 160.089 758 5 1 -28.4308 55.7604 -54.45
- 54 102.934 1178 5 0 -28.3934 55.7729 -55.85
- 54 120.561 762 4 1 -27.6075 56.0639 -84.45
- 54 244.036 1180 4 0 -27.5556 56.0764 -85.85
- 54 119.25 767 3 1 -26.6031 56.4457 -114.45
- 54 218.658 1182 3 0 -26.5752 56.4704 -115.85
- 54 109.646 770 2 1 -26.0447 56.9319 -144.45
- 54 118.844 1184 2 0 -26.0322 56.9692 -145.85
- 54 149.299 770 1 1 -25.9051 57.7328 -174.45
- 54 298.47 768 0 1 -26.3196 58.3056 -204.45
- 54 119.229 1191 0 0 -26.3333 58.3361 -205.85
- 54 145.966 1188 0 0 -26.5338 57.6808 -205.85
- 54 94.7129 1187 0 0 -26.5428 57.6499 -205.911
- 54 6.53685 1186 0 0 -26.5916 57.45 -206.231
- 54 48.5539 1106 0 0 -20.934 41.2698 -206.25
- 54 196.007 1105 0 0 -20.8212 41.25 -206.103
- 54 206.386 800 0 1 -19.959 41.0438 -204.85
- 54 42.3373 801 0 1 -19.85 41.0151 -204.645
- 54 54.8134 1108 0 0 -19.7894 41.7567 -205.85
- 54 105.355 1109 0 0 -19.7876 41.8501 -206.033
- 54 103.833 1320 0 0 -15.1703 84.0935 -206.25
- 54 175.924 1321 0 0 -15.0693 84.2501 -206.082
- 54 115.57 824 0 1 -15.0779 84.8149 -204.85
- 54 26.963 825 0 1 -15.05 84.8922 -204.799
- 54 135.535 438 0 1 -92.35 33.9716 -204.804
- 54 58.0828 1174 0 0 -2.87521 54.999 -206.25
- 54 128.558 769 0 1 -26.1077 57.61 -204.45
- 54 299.492 1179 0 0 -25.1776 55.9046 -205.85
- 54 98.908 1181 4 0 -27.4738 56.251 -86.168
- 54 135.193 1182 4 0 -27.5194 56.45 -86.0256
- 54 165.695 756 4 1 -28.7181 55.9406 -84.8499
- 54 58.7194 1181 3 0 -27.2631 56.2666 -115.85
-Number of digits in this event = 65
+Number of tracker hits in this event = 0
+Number of digits in this event = 2
Using G4ParticleGun ...
-1.90816 LIN
+5.10523 LIN
gamma
Event: 55
-Number of tracker hits in this event = 60
- 55 261.502 768 11 1 -26.2611 58.5395 125.55
- 55 274.273 1192 11 0 -26.2798 58.5321 124.15
- 55 126.438 767 10 1 -26.6027 58.221 95.55
- 55 210.203 1190 10 0 -26.541 58.2089 94.15
- 55 107.124 773 9 1 -25.388 57.8299 65.55
- 55 118.713 1188 9 0 -25.2894 57.8225 64.15
- 55 126.283 783 8 1 -23.3626 57.7076 35.55
- 55 98.5683 1188 8 0 -23.2748 57.6651 34.15
- 55 103.098 793 7 1 -21.3112 56.6639 5.55
- 55 134.415 1182 7 0 -21.2137 56.5939 4.15
- 55 133.748 804 6 1 -19.1982 54.9425 -24.45
- 55 147.745 1174 6 0 -19.0951 54.9053 -25.85
- 55 109.221 816 5 1 -16.6738 53.9447 -54.45
- 55 1.83872 817 5 1 -16.65 53.9159 -54.8333
- 55 92.1587 1168 5 0 -16.5847 53.8374 -55.85
- 55 137.079 826 4 1 -14.8131 51.5477 -84.45
- 55 167.354 1156 4 0 -14.6935 51.3787 -85.85
- 55 154.934 840 3 1 -11.9482 47.6932 -114.45
- 55 159.868 1137 3 0 -11.8448 47.5112 -115.85
- 55 100.303 852 2 1 -9.52807 43.3562 -144.45
- 55 113.989 1115 2 0 -9.41278 43.1141 -145.85
- 55 13.0244 1114 2 0 -9.38287 43.05 -146.219
- 55 127.366 865 1 1 -7.02592 38.0413 -174.45
- 55 0.376699 1089 1 0 -6.90392 37.8507 -175.85
- 55 107.266 1088 1 0 -6.90347 37.85 -175.855
- 55 128.415 877 0 1 -4.64106 33.9493 -204.45
- 55 101.357 1068 0 0 -4.58138 33.7886 -205.85
- 55 6.33643 1166 6 0 -15.4329 53.257 -26.2489
- 55 77.0695 1165 6 0 -15.4242 53.25 -26.2337
- 55 96.232 1164 6 0 -15.5256 53.05 -26.0566
- 55 105.197 1163 6 0 -15.7905 52.85 -26.051
- 55 231.675 1162 6 0 -16.0509 52.65 -26.0569
- 55 119.984 769 10 1 -26.2457 58.5182 95.55
- 55 121.005 1192 10 0 -26.2504 58.5198 94.15
- 55 192.408 768 9 1 -26.322 58.5411 65.55
- 55 145.481 1192 9 0 -26.3249 58.5391 64.15
- 55 101.05 768 8 1 -26.3845 58.5262 35.55
- 55 116.337 1192 8 0 -26.3802 58.5252 34.15
- 55 222.063 768 7 1 -26.2984 58.4883 5.55
- 55 115.827 1192 7 0 -26.2902 58.4876 4.15
- 55 102.109 769 6 1 -26.1017 58.495 -24.45
- 55 122.686 1192 6 0 -26.0894 58.4971 -25.85
- 55 136.628 771 5 1 -25.8019 58.5123 -54.45
- 55 115.787 1192 5 0 -25.7942 58.5133 -55.85
- 55 158.303 772 4 1 -25.6363 58.5248 -84.45
- 55 119.322 1192 4 0 -25.6268 58.526 -85.85
- 55 107.64 773 3 1 -25.4381 58.5555 -114.45
- 55 125.896 1192 3 0 -25.4307 58.5573 -115.85
- 55 200.838 773 2 1 -25.2865 58.5792 -144.45
- 55 116.002 1192 2 0 -25.2752 58.5808 -145.85
- 55 123.663 775 1 1 -25.0359 58.6249 -174.45
- 55 132.006 1192 1 0 -25.026 58.6228 -175.85
- 55 127.36 776 0 1 -24.8276 58.5661 -204.45
- 55 125.959 1192 0 0 -24.8178 58.5638 -205.85
- 55 55.0749 1772 0 0 26.174 174.55 -206.104
- 55 58.116 1202 0 0 -24.9429 60.5258 -205.85
- 55 317.075 1187 7 0 -26.1156 57.6498 4.14994
- 55 244.272 525 7 1 -75.0059 37.7152 5.15
- 55 66.5138 546 7 1 -70.85 24.3531 5.20125
- 55 87.1606 524 7 1 -75.05 37.7532 5.3076
-Number of digits in this event = 31
+Number of tracker hits in this event = 24
+ 55 212.217 759 4 1 -28.1823 -145.715 -84.45
+ 55 238.871 172 4 0 -28.1825 -145.716 -85.85
+ 55 133.309 759 3 1 -28.1835 -145.725 -114.45
+ 55 121.375 172 3 0 -28.1843 -145.726 -115.85
+ 55 104.765 759 2 1 -28.1968 -145.729 -144.45
+ 55 223.296 172 2 0 -28.1983 -145.729 -145.85
+ 55 116.891 759 1 1 -28.2387 -145.737 -174.45
+ 55 114.256 172 1 0 -28.2419 -145.738 -175.85
+ 55 104.732 758 0 1 -28.303 -145.765 -204.45
+ 55 156.298 171 0 0 -28.3059 -145.766 -205.85
+ 55 178.857 231 2 0 3.01329 -133.785 -146.25
+ 55 113.514 171 4 0 -28.2602 -145.75 -86.0243
+ 55 102.102 753 3 1 -29.3022 -147.129 -114.45
+ 55 23.2251 754 3 1 -29.25 -147.044 -114.76
+ 55 221.669 167 3 0 -29.0473 -146.747 -115.85
+ 55 46.8551 785 2 1 -22.8855 -139.27 -144.45
+ 55 111.963 786 2 1 -22.8499 -139.236 -144.59
+ 55 148.779 206 2 0 -22.5107 -138.927 -145.851
+ 55 27.1562 823 1 1 -15.2883 -133.304 -174.45
+ 55 124.339 824 1 1 -15.25 -133.303 -174.547
+ 55 179.564 234 1 0 -14.6843 -133.339 -175.85
+ 55 112.744 890 0 1 -2.03024 -132.222 -204.45
+ 55 16.2003 891 0 1 -1.85 -132.264 -204.815
+ 55 124.876 238 0 0 -1.35671 -132.375 -205.85
+Number of digits in this event = 14
Using G4ParticleGun ...
-6.76394 LIN
+8.96887 LIN
gamma
Event: 56
-Number of tracker hits in this event = 0
-Number of digits in this event = 1
+Number of tracker hits in this event = 7
+ 56 201.731 683 0 1 -43.295 64.1533 -204.45
+ 56 301.126 1220 0 0 -43.2939 64.1529 -205.85
+ 56 14.5694 1500 1 0 -13.5485 120.15 -176.238
+ 56 119.908 1377 4 0 -94.8961 95.6311 -86.25
+ 56 73.5826 1378 4 0 -94.9207 95.75 -85.8836
+ 56 241.982 1221 0 0 -43.2478 64.25 -205.892
+ 56 100.61 1615 7 1 143.15 32.1234 5.28676
+Number of digits in this event = 6
Using G4ParticleGun ...
-1.85505 LIN
+5.55046 LIN
gamma
Event: 57
-Number of tracker hits in this event = 0
-Number of digits in this event = 2
+Number of tracker hits in this event = 39
+ 57 355.559 222 7 1 -135.699 -30.6577 5.55
+ 57 127.548 747 7 0 -135.701 -30.638 4.14908
+ 57 320.387 222 6 1 -135.707 -30.4343 -24.45
+ 57 211.428 747 6 0 -135.673 -30.4576 -25.85
+ 57 156.269 224 5 1 -135.242 -30.8402 -54.45
+ 57 93.8071 746 5 0 -135.111 -30.8305 -55.85
+ 57 114.492 239 4 1 -132.275 -30.3569 -84.45
+ 57 24.6466 748 4 0 -132.24 -30.2575 -85.85
+ 57 107.376 749 4 0 -132.238 -30.25 -85.9485
+ 57 133.475 239 3 1 -132.275 -27.9421 -114.45
+ 57 105.635 761 3 0 -132.394 -27.7657 -115.85
+ 57 114.647 227 2 1 -134.637 -23.4086 -144.45
+ 57 111.938 783 2 0 -134.803 -23.2816 -145.851
+ 57 7.81838 784 2 0 -134.845 -23.25 -146.214
+ 57 109.594 210 1 1 -137.961 -20.7747 -174.45
+ 57 202.657 795 1 0 -138.113 -20.9071 -175.85
+ 57 152.091 192 0 1 -141.634 -23.7618 -204.45
+ 57 21.7385 191 0 1 -141.75 -23.9698 -204.787
+ 57 25.9435 777 0 0 -141.995 -24.599 -205.85
+ 57 137.289 776 0 0 -142.013 -24.65 -205.938
+ 57 124.329 766 3 0 -136.928 -26.7769 -116.25
+ 57 66.609 216 3 1 -136.933 -26.4904 -114.85
+ 57 225.13 215 3 1 -136.95 -26.4137 -114.689
+ 57 97.4872 238 3 1 -132.35 -27.9636 -114.569
+ 57 121.026 758 3 0 -132.953 -28.2668 -115.85
+ 57 180.258 746 7 0 -135.698 -30.6581 4.15
+ 57 141.487 746 6 0 -135.689 -30.665 -25.85
+ 57 114.276 222 5 1 -135.654 -30.623 -54.45
+ 57 124.166 747 5 0 -135.652 -30.6227 -55.85
+ 57 111.466 222 4 1 -135.597 -30.6246 -84.45
+ 57 116.526 747 4 0 -135.594 -30.624 -85.85
+ 57 109.018 223 3 1 -135.519 -30.6095 -114.45
+ 57 268.751 747 3 0 -135.514 -30.6107 -115.85
+ 57 311.832 223 2 1 -135.41 -30.6325 -144.45
+ 57 98.4799 747 2 0 -135.406 -30.6323 -145.85
+ 57 202.461 224 1 1 -135.323 -30.6305 -174.45
+ 57 119.3 747 1 0 -135.317 -30.6328 -175.85
+ 57 109.758 224 0 1 -135.182 -30.681 -204.45
+ 57 107.163 746 0 0 -135.174 -30.6828 -205.85
+Number of digits in this event = 20
Using G4ParticleGun ...
-1.62331 LIN
+8.76687 LIN
gamma
Event: 58
-Number of tracker hits in this event = 0
-Number of digits in this event = 1
+Number of tracker hits in this event = 2
+ 58 119.999 1305 2 0 -116.347 81.2121 -146.25
+ 58 201.494 1306 2 0 -116.23 81.25 -145.984
+Number of digits in this event = 2
Using G4ParticleGun ...
-1.85962 LIN
+9.61495 LIN
gamma
Event: 59
-Number of tracker hits in this event = 2
- 59 251.226 1292 0 1 78.4661 21.3671 -204.45
- 59 254.045 1006 0 0 78.4658 21.3678 -205.85
-Number of digits in this event = 5
+Number of tracker hits in this event = 0
+Number of digits in this event = 1
Using G4ParticleGun ...
-3.85609 LIN
+8.89334 LIN
gamma
Event: 60
-Number of tracker hits in this event = 27
- 60 62.4928 1055 6 0 -67.5486 31.0504 -26.1354
- 60 247.712 562 5 1 -67.5512 31.0539 -54.45
- 60 254.145 1055 5 0 -67.5481 31.0533 -55.85
- 60 256.047 562 4 1 -67.4951 31.0407 -84.45
- 60 101.508 1054 4 0 -67.4948 31.0418 -85.85
- 60 218.614 562 3 1 -67.4946 31.0716 -114.45
- 60 286.475 1055 3 0 -67.4964 31.0756 -115.85
- 60 124.109 562 2 1 -67.5254 31.1528 -144.45
- 60 409.287 1055 2 0 -67.5225 31.1542 -145.85
- 60 143.713 562 1 1 -67.4725 31.1808 -174.45
- 60 112.345 1055 1 0 -67.4651 31.1692 -175.85
- 60 148.907 563 0 1 -67.3176 30.9923 -204.45
- 60 140.924 1054 0 0 -67.2989 30.9959 -205.85
- 60 187.032 1055 4 0 -67.4847 31.1195 -85.85
- 60 96.9904 560 2 1 -67.8791 31.153 -144.45
- 60 151.286 558 1 1 -68.3754 31.2905 -174.45
- 60 157.71 1056 1 0 -68.4023 31.3027 -175.85
- 60 96.8756 555 0 1 -69.0412 31.507 -204.45
- 60 162.473 1057 0 0 -69.0672 31.5158 -205.85
- 60 112.587 1089 1 0 -116.934 38.0499 -176.25
- 60 83.4458 1090 1 0 -116.938 38.05 -176.248
- 60 112.173 1088 1 0 -117.453 37.85 -176.062
- 60 50.3459 1087 1 0 -117.623 37.65 -176.152
- 60 52.6636 986 1 0 -141.496 17.2903 -176.25
- 60 218.505 985 1 0 -141.525 17.25 -176.141
- 60 27.2785 196 1 1 -140.814 17.6751 -174.85
- 60 79.6947 993 1 0 -140.449 18.7229 -175.85
-Number of digits in this event = 16
+Number of tracker hits in this event = 1
+ 60 53.8972 815 1 1 -17.026 -102 -174.85
+Number of digits in this event = 3
Using G4ParticleGun ...
-9.29607 LIN
+2.57004 LIN
gamma
Event: 61
-Number of tracker hits in this event = 135
- 61 338.607 663 8 1 -47.2759 -127.631 35.55
- 61 251.916 262 8 0 -47.2697 -127.631 34.15
- 61 109.597 664 7 1 -47.15 -127.624 5.55
- 61 229.732 262 7 0 -47.1447 -127.623 4.15
- 61 116.148 665 6 1 -47.0383 -127.594 -24.45
- 61 329.348 262 6 0 -47.0331 -127.593 -25.85
- 61 227.85 665 5 1 -46.9304 -127.567 -54.45
- 61 298.695 262 5 0 -46.9246 -127.564 -55.85
- 61 116.482 666 4 1 -46.8323 -127.513 -84.45
- 61 103.145 263 4 0 -46.8266 -127.51 -85.85
- 61 445.829 666 3 1 -46.7127 -127.447 -114.45
- 61 150.876 263 3 0 -46.7045 -127.442 -115.85
- 61 115.243 667 2 1 -46.5416 -127.348 -144.45
- 61 135.545 264 2 0 -46.5341 -127.342 -145.85
- 61 148.094 668 1 1 -46.3816 -127.23 -174.45
- 61 98.4006 264 1 0 -46.3734 -127.224 -175.85
- 61 158.168 669 0 1 -46.2071 -127.115 -204.45
- 61 122.205 265 0 0 -46.1991 -127.109 -205.85
- 61 112.586 668 0 1 -46.3549 -127.203 -204.45
- 61 148.496 264 0 0 -46.3577 -127.169 -205.85
- 61 229.393 260 0 0 -42.5547 -127.953 -206.25
- 61 90.4909 259 0 0 -42.3473 -128.15 -205.916
- 61 76.8887 258 0 0 -42.232 -128.35 -205.928
- 61 7.82018 706 0 1 -38.6812 -130.227 -204.85
- 61 168.5 707 0 1 -38.65 -130.245 -204.842
- 61 32.8678 708 0 1 -38.45 -130.313 -204.81
- 61 298.957 250 0 0 -37.6187 -129.995 -205.85
- 61 74.9389 667 0 1 -46.45 -127.125 -204.491
- 61 88.297 666 0 1 -46.65 -127.039 -204.664
- 61 24.835 665 0 1 -46.85 -126.963 -204.807
- 61 107.925 268 0 0 -48.6921 -126.425 -205.85
- 61 144.184 269 0 0 -48.9522 -126.35 -206.004
- 61 25.7075 214 0 0 -61.6028 -137.28 -206.25
- 61 88.3399 213 0 0 -61.5525 -137.35 -206.211
- 61 60.6556 212 0 0 -61.3916 -137.55 -206.208
- 61 27.1112 637 0 0 -58.8471 -52.5776 -206.25
- 61 25.8373 875 0 0 -22.829 -4.89176 -206.25
- 61 181.081 876 0 0 -22.782 -4.84973 -206.21
- 61 60.5948 877 0 0 -22.3485 -4.64983 -206.138
- 61 146.789 380 0 0 -86.8874 -104.093 -206.25
- 61 16.4263 379 0 0 -86.9013 -104.15 -206.181
- 61 11.9411 177 6 0 -116.528 -144.679 -26.25
- 61 300.558 262 3 0 -46.8264 -127.654 -115.85
- 61 19.4254 664 2 1 -47.0535 -127.706 -144.45
- 61 107.184 665 2 1 -47.05 -127.712 -144.524
- 61 100.463 261 2 0 -46.982 -127.815 -145.85
- 61 30.8403 671 1 1 -45.6575 -130.137 -174.45
- 61 127.961 672 1 1 -45.65 -130.141 -174.558
- 61 102.948 249 1 0 -45.5519 -130.18 -175.851
- 61 95.8302 683 0 1 -43.3665 -130.981 -204.45
- 61 171.171 245 0 0 -43.2114 -131.1 -205.85
- 61 93.391 299 3 0 -75.1001 -120.253 -116.25
- 61 410.891 300 3 0 -75.12 -120.15 -115.98
- 61 42.3537 688 2 1 -42.3077 -127.509 -144.451
- 61 57.9335 689 2 1 -42.25 -127.513 -144.629
- 61 124.844 262 2 0 -41.7913 -127.585 -145.85
- 61 61.3765 755 1 1 -29.0277 -129.251 -174.45
- 61 85.9202 756 1 1 -28.85 -129.415 -174.565
- 61 75.5309 757 1 1 -28.6498 -129.592 -174.686
- 61 63.5243 758 1 1 -28.45 -129.758 -174.795
- 61 90.3546 243 1 0 -26.5614 -131.376 -175.85
- 61 88.0003 242 1 0 -26.3529 -131.55 -175.965
- 61 110.668 241 1 0 -26.0964 -131.75 -176.103
- 61 0.300129 240 1 0 -25.8567 -131.95 -176.249
- 61 37.8524 665 3 1 -46.85 -127.549 -114.792
- 61 32.3468 253 3 0 -47.086 -129.48 -115.85
- 61 225.428 252 3 0 -47.1092 -129.55 -115.875
- 61 107.505 284 8 0 -30.1722 -123.331 33.7501
- 61 419.262 663 0 1 -47.304 -127.461 -204.45
- 61 76.8882 262 0 0 -47.2924 -127.7 -205.85
- 61 35.1016 261 0 0 -47.2831 -127.75 -206.111
- 61 114.412 263 0 0 -47.1656 -127.378 -205.85
- 61 103.248 304 0 0 -53.1488 -119.179 -206.25
- 61 168.366 632 0 1 -53.51 -119.103 -204.85
- 61 0.482813 208 1 0 -60.8691 -138.549 -176.248
- 61 101.068 207 1 0 -60.8697 -138.55 -176.246
- 61 26.9531 206 1 0 -60.9827 -138.75 -175.924
- 61 35.5095 592 1 1 -61.6104 -139.463 -174.85
- 61 112.167 591 1 1 -61.65 -139.506 -174.785
- 61 6.06154 590 1 1 -61.8501 -139.676 -174.47
- 61 4.69608 368 2 0 -75.7576 -106.374 -146.25
- 61 64.9967 369 2 0 -75.7674 -106.35 -146.23
- 61 108.561 370 2 0 -75.8398 -106.15 -146.075
- 61 4.62169 371 2 0 -75.8902 -105.95 -145.866
- 61 133.291 519 2 1 -76.0988 -105.315 -144.85
- 61 119.226 327 3 0 -106.197 -114.693 -116.25
- 61 13.9759 326 3 0 -106.298 -114.75 -115.886
- 61 169.611 364 3 1 -107.249 -115.246 -114.85
- 61 403.725 363 3 1 -107.35 -115.304 -114.737
- 61 2.17222 631 0 1 -53.6605 -116.791 -204.85
- 61 159.621 664 0 1 -47.25 -127.581 -204.726
- 61 135.697 663 7 1 -47.2688 -127.612 5.55
- 61 268.651 663 6 1 -47.2556 -127.573 -24.45
- 61 143.636 663 5 1 -47.2876 -127.566 -54.45
- 61 329.061 663 4 1 -47.3248 -127.562 -84.45
- 61 123.245 262 4 0 -47.3351 -127.586 -85.85
- 61 158.446 662 3 1 -47.5324 -128.042 -114.45
- 61 133.211 260 3 0 -47.5391 -128.065 -115.85
- 61 129.983 662 2 1 -47.6482 -128.536 -144.45
- 61 105.716 258 2 0 -47.6517 -128.544 -145.85
- 61 111.926 661 1 1 -47.7658 -128.724 -174.45
- 61 7.66355 257 1 0 -47.7652 -128.75 -175.85
- 61 197.065 256 1 0 -47.7651 -128.75 -175.873
- 61 147.201 661 0 1 -47.7387 -129.258 -204.45
- 61 229.686 254 0 0 -47.7273 -129.3 -205.85
- 61 140.645 664 6 1 -47.2263 -127.527 -24.4503
- 61 37.006 266 6 0 -46.228 -126.811 -25.8502
- 61 90.7186 267 6 0 -46.1319 -126.75 -25.9836
- 61 38.6777 559 6 0 -25.9065 -68.175 -26.25
- 61 78.8378 560 6 0 -25.8785 -68.0498 -26.1286
- 61 62.0446 774 6 1 -25.2306 -67.6181 -24.8499
- 61 26.3387 570 6 0 -24.633 -65.8832 -25.85
- 61 76.7092 571 6 0 -24.622 -65.85 -25.8781
- 61 78.8933 572 6 0 -24.5722 -65.65 -26.0484
- 61 81.2022 573 6 0 -24.5273 -65.45 -26.1726
- 61 73.0293 1288 6 0 23.5819 77.7055 -26.25
- 61 118.7 1289 6 0 23.5409 77.85 -26.1687
- 61 102.538 1019 6 1 23.9311 77.7766 -24.85
- 61 254.454 1020 6 1 24.05 77.7437 -24.6495
- 61 225.266 1021 6 1 24.2503 77.8076 -24.6587
- 61 107.654 659 5 1 -48.0929 -129.815 -54.45
- 61 129.009 250 5 0 -47.9758 -129.975 -55.85
- 61 108.132 674 4 1 -45.0654 -132.751 -84.4501
- 61 119.314 236 4 0 -45.095 -132.766 -85.8502
- 61 80.8069 672 3 1 -45.5111 -133.549 -114.45
- 61 38.7871 673 3 1 -45.4499 -133.522 -114.736
- 61 149.523 233 3 0 -45.2672 -133.466 -115.851
- 61 139.924 694 2 1 -41.1781 -130.953 -144.45
- 61 75.9221 245 2 0 -41.0321 -131.122 -145.85
- 61 58.2152 244 2 0 -41.0134 -131.15 -146.065
- 61 164.584 707 1 1 -38.5693 -134.968 -174.45
- 61 87.3169 223 1 0 -38.6666 -135.438 -175.85
- 61 12.9377 222 1 0 -38.6915 -135.55 -176.193
- 61 111.941 696 0 1 -40.7194 -144.654 -204.45
- 61 120.152 177 0 0 -40.8158 -144.685 -205.85
-Number of digits in this event = 53
+Number of tracker hits in this event = 0
+Number of digits in this event = 1
Using G4ParticleGun ...
-7.69953 LIN
+4.0529 LIN
gamma
Event: 62
-Number of tracker hits in this event = 10
- 62 258.679 896 2 1 -0.814283 1.78403 -144.45
- 62 318.498 908 2 0 -0.819326 1.78365 -145.85
- 62 102.848 895 1 1 -0.910962 1.79375 -174.45
- 62 250.086 908 1 0 -0.916371 1.7995 -175.85
- 62 89.6509 895 0 1 -1.01625 1.9061 -204.45
- 62 124.796 909 0 0 -1.01546 1.90478 -205.85
- 62 145.287 896 1 1 -0.817649 1.7891 -174.45
- 62 253.149 896 0 1 -0.801386 1.81563 -204.45
- 62 165.709 908 0 0 -0.801041 1.81533 -205.85
- 62 90.7784 897 0 1 -0.65 1.88227 -204.675
-Number of digits in this event = 11
+Number of tracker hits in this event = 0
+Number of digits in this event = 1
Using G4ParticleGun ...
-6.83548 LIN
+2.19403 LIN
gamma
Event: 63
-Number of tracker hits in this event = 2
- 63 247.23 1759 2 0 -64.6433 171.986 -146.25
- 63 139.713 1760 2 0 -64.9188 172.15 -145.959
-Number of digits in this event = 4
+Number of tracker hits in this event = 0
+Number of digits in this event = 2
Using G4ParticleGun ...
-9.5289 LIN
+8.12198 LIN
gamma
Event: 64
-Number of tracker hits in this event = 22
- 64 246.985 1104 2 1 41.0121 -129.759 -144.45
- 64 248.917 251 2 0 41.0111 -129.758 -145.85
- 64 319.581 1104 1 1 40.9854 -129.749 -174.45
- 64 103.307 252 1 0 40.9856 -129.748 -175.85
- 64 283.837 1104 0 1 40.9858 -129.714 -204.45
- 64 231.912 252 0 0 40.979 -129.733 -205.85
- 64 94.5852 238 3 0 45.1104 -132.375 -116.25
- 64 116.908 927 9 1 5.54196 55.7584 65.15
- 64 71.114 926 9 1 5.45 55.769 65.4161
- 64 113.748 251 1 0 41.0138 -129.793 -175.85
- 64 13.9308 712 2 1 -37.5383 -35.4013 -144.85
- 64 18.0184 723 2 0 -38.8795 -35.3044 -145.85
- 64 92.3998 719 2 1 -36.1464 -35.3842 -144.85
- 64 191.337 439 2 0 162.149 -92.3011 -145.85
- 64 7.96796 528 2 0 131.656 -74.45 -145.858
- 64 15.3431 440 2 0 162.684 -92.15 -146.153
- 64 62.2469 1696 2 1 159.517 -93.1274 -144.45
- 64 133.795 1697 2 1 159.55 -93.1017 -144.452
- 64 71.0462 249 0 1 -130.196 32.8605 -204.45
- 64 196.314 250 0 1 -130.15 32.7599 -204.619
- 64 110.211 251 0 1 -129.95 32.5753 -204.788
- 64 119.089 671 7 0 174.817 -45.7028 3.75
-Number of digits in this event = 10
+Number of tracker hits in this event = 39
+ 64 264.533 1234 2 1 66.9208 -76.6908 -144.45
+ 64 252.978 516 2 0 66.9142 -76.6883 -145.85
+ 64 158.76 1233 1 1 66.7439 -76.6603 -174.45
+ 64 284.235 516 1 0 66.7363 -76.6676 -175.85
+ 64 117.253 1232 0 1 66.594 -76.8256 -204.45
+ 64 255.091 516 0 0 66.5899 -76.8228 -205.85
+ 64 143.619 1067 4 0 -114.382 33.45 -86.1291
+ 64 114.583 1066 4 0 -114.724 33.45 -86.0592
+ 64 29.0883 1271 1 1 74.3188 -76.5169 -174.45
+ 64 115.289 1270 1 1 74.25 -76.5594 -174.52
+ 64 68.0747 1269 1 1 74.05 -76.689 -174.69
+ 64 7.97207 1268 1 1 73.85 -76.7966 -174.836
+ 64 86.805 512 1 0 72.6632 -77.496 -175.85
+ 64 67.134 511 1 0 72.4394 -77.65 -176.073
+ 64 19.3203 1075 0 1 35.084 -105.627 -204.45
+ 64 158.228 1074 0 1 35.0499 -105.696 -204.513
+ 64 25.976 365 0 0 35.025 -107.084 -205.85
+ 64 67.7669 364 0 0 35.0281 -107.15 -205.911
+ 64 114.836 363 0 0 35.061 -107.35 -206.082
+ 64 198.9 362 0 0 35.0693 -107.55 -206.225
+ 64 35.6596 517 1 0 66.8064 -76.6347 -175.85
+ 64 151.052 476 1 0 79.3879 -84.6961 -176.25
+ 64 97.3455 1301 1 1 80.2669 -84.7361 -174.85
+ 64 78.4505 1302 1 1 80.45 -84.8259 -174.669
+ 64 234.136 1303 1 1 80.65 -84.9549 -174.495
+ 64 79.3755 475 1 0 80.2494 -84.967 -175.85
+ 64 82.3708 1292 1 1 78.5607 -84.6736 -174.85
+ 64 32.2526 471 1 0 77.7804 -85.748 -175.85
+ 64 102.973 1285 1 1 77.1896 -86.8745 -174.85
+ 64 201.326 1234 1 1 66.9126 -76.7368 -174.45
+ 64 131.535 1234 0 1 66.9201 -76.752 -204.45
+ 64 123.367 952 0 1 10.65 13.9345 -204.824
+ 64 350.199 366 0 0 83.3031 -106.923 -206.25
+ 64 179.164 1317 0 1 83.5918 -106.927 -204.85
+ 64 180.697 1318 0 1 83.6501 -106.948 -204.499
+ 64 3.34967 1319 0 1 83.85 -107.118 -204.841
+ 64 16.9064 520 1 0 66.949 -75.8794 -175.85
+ 64 88.0982 521 1 0 66.9391 -75.85 -175.867
+ 64 117.751 1232 1 1 66.5968 -75.6804 -174.85
+Number of digits in this event = 20
Using G4ParticleGun ...
-7.95255 LIN
+4.05404 LIN
gamma
Event: 65
Number of tracker hits in this event = 0
-Number of digits in this event = 3
+Number of digits in this event = 2
Using G4ParticleGun ...
-7.08986 LIN
+7.46683 LIN
gamma
Event: 66
-Number of tracker hits in this event = 83
- 66 295.164 1159 9 1 51.9522 -73.7215 65.55
- 66 342.253 531 9 0 51.9532 -73.7214 64.15
- 66 174.23 1159 8 1 51.9712 -73.7192 35.55
- 66 117 531 8 0 51.9729 -73.7218 34.15
- 66 140.749 1159 7 1 52.0135 -73.7719 5.55
- 66 136.809 531 7 0 52.0147 -73.7744 4.15
- 66 227.208 1159 6 1 52.039 -73.8305 -24.45
- 66 257.015 531 6 0 52.0408 -73.8321 -25.85
- 66 115.77 1160 5 1 52.0642 -73.858 -54.45
- 66 190.629 530 5 0 52.0658 -73.8592 -55.85
- 66 119.251 1160 4 1 52.1008 -73.8842 -84.45
- 66 113.509 530 4 0 52.1011 -73.884 -85.85
- 66 131.462 1160 3 1 52.1035 -73.8818 -114.45
- 66 107.447 530 3 0 52.1042 -73.8832 -115.85
- 66 114.275 1160 2 1 52.1264 -73.9148 -144.45
- 66 106.416 530 2 0 52.1267 -73.9143 -145.85
- 66 151.055 1160 1 1 52.1396 -73.9094 -174.45
- 66 125.661 530 1 0 52.1407 -73.9101 -175.85
- 66 179.632 1160 0 1 52.1682 -73.9247 -204.45
- 66 121.946 530 0 0 52.1693 -73.9247 -205.85
- 66 20.1596 1600 1 1 140.15 1.2372 -174.75
- 66 90.0405 1601 1 1 140.35 1.41705 -174.53
- 66 132.033 530 6 0 51.6987 -73.9476 -25.8502
- 66 8.27971 1119 5 1 43.8637 -76.232 -54.45
- 66 152.844 1118 5 1 43.8499 -76.2383 -54.4778
- 66 44.5863 517 5 0 43.1795 -76.6085 -55.85
- 66 88.4387 516 5 0 43.1127 -76.65 -55.9898
- 66 56.643 1049 4 1 29.903 -87.2223 -84.4502
- 66 205.699 1048 4 1 29.8497 -87.1987 -84.5321
- 66 32.3354 465 4 0 29.0705 -86.8597 -85.85
- 66 112.267 466 4 0 29.0465 -86.85 -85.8908
- 66 54.0549 964 3 1 12.9448 -78.0944 -114.45
- 66 131.094 963 3 1 12.8499 -77.9816 -114.587
- 66 57.8069 515 3 0 12.0546 -76.9516 -115.85
- 66 98.2359 516 3 0 11.9752 -76.85 -115.979
- 66 15.1364 517 3 0 11.8417 -76.65 -116.215
- 66 71.8503 884 2 1 -3.12853 -49.574 -144.45
- 66 137.865 885 2 1 -3.05 -49.4089 -144.673
- 66 65.9697 658 2 0 -2.60823 -48.3981 -145.85
- 66 112.455 659 2 0 -2.52906 -48.2499 -146.025
- 66 2.32064 660 2 0 -2.42206 -48.05 -146.243
- 66 29.152 947 1 1 9.55399 -22.8487 -174.45
- 66 133.898 948 1 1 9.65 -22.7823 -174.487
- 66 111.595 949 1 1 9.85 -22.644 -174.56
- 66 86.389 950 1 1 10.0502 -22.5043 -174.626
- 66 466.542 951 1 1 10.25 -22.358 -174.688
- 66 88.3747 952 1 1 10.45 -22.2201 -174.752
- 66 66.4578 953 1 1 10.65 -22.093 -174.816
- 66 2.62564 797 1 0 12.7687 -20.4564 -175.85
- 66 79.4404 798 1 0 12.7774 -20.4497 -175.854
- 66 81.9166 799 1 0 13.0028 -20.25 -175.963
- 66 86.6234 800 1 0 13.2293 -20.05 -176.067
- 66 50.2457 801 1 0 13.4618 -19.85 -176.175
- 66 155.863 1277 0 1 75.5568 41.6125 -204.45
- 66 98.1948 1100 0 0 75.4282 40.2208 -205.85
- 66 72.4226 1099 0 0 75.3951 40.05 -206.006
- 66 24.5987 1098 0 0 75.3412 39.85 -206.182
- 66 673.526 934 0 0 -173.59 6.90601 -206.25
- 66 133.047 935 0 0 -175.582 7.05 -206.062
- 66 95.727 936 0 0 -176.068 7.25003 -206.032
- 66 87.0354 937 0 0 -176.361 7.45012 -206.071
- 66 71.0162 938 0 0 -176.59 7.65054 -206.147
- 66 7.01871 939 0 0 -176.809 7.85 -206.239
- 66 169.862 1007 0 1 21.4825 74.9048 -204.45
- 66 44.1289 1008 0 1 21.65 74.9966 -204.461
- 66 117.279 1158 8 1 51.6661 -73.8922 35.55
- 66 151.727 530 8 0 51.6613 -73.9158 34.15
- 66 150.425 1157 7 1 51.5645 -74.4244 5.55
- 66 145.469 528 7 0 51.5511 -74.443 4.15
- 66 123.614 1156 6 1 51.2644 -74.7955 -24.45
- 66 105.133 526 6 0 51.255 -74.8075 -25.85
- 66 146.237 1155 5 1 51.0879 -75.0356 -54.45
- 66 109.495 525 5 0 51.0755 -75.0401 -55.85
- 66 116.438 1153 4 1 50.8005 -75.1128 -84.45
- 66 131.232 524 4 0 50.7947 -75.117 -85.85
- 66 173.688 1153 3 1 50.664 -75.2318 -114.45
- 66 115.028 524 3 0 50.6574 -75.2328 -115.85
- 66 115.621 1152 2 1 50.573 -75.2036 -144.45
- 66 113.695 524 2 0 50.5511 -75.2016 -145.85
- 66 120.275 1150 1 1 50.068 -75.201 -174.45
- 66 141.851 524 1 0 50.0317 -75.1937 -175.85
- 66 107.695 1146 0 1 49.3122 -75.0485 -204.45
- 66 105.969 525 0 0 49.2784 -75.0285 -205.85
-Number of digits in this event = 36
+Number of tracker hits in this event = 0
+Number of digits in this event = 1
Using G4ParticleGun ...
-4.61643 LIN
+3.35821 LIN
gamma
Event: 67
-Number of tracker hits in this event = 1
- 67 63.6359 918 1 1 3.85 15.4669 -174.601
-Number of digits in this event = 3
+Number of tracker hits in this event = 4
+ 67 286.397 642 8 0 -98.0351 -51.607 33.75
+ 67 57.2112 1793 2 0 36.311 178.75 -146.14
+ 67 286.1 1794 2 0 36.4017 178.95 -146.093
+ 67 81.7522 1795 2 0 36.4946 179.15 -146.085
+Number of digits in this event = 5
Using G4ParticleGun ...
-3.73527 LIN
+9.60949 LIN
gamma
Event: 68
-Number of tracker hits in this event = 24
- 68 300.286 1030 5 1 26.0957 -97.4669 -54.45
- 68 335.647 413 5 0 26.0835 -97.4643 -55.85
- 68 118.487 1029 4 1 25.9051 -97.4372 -84.45
- 68 239.77 413 4 0 25.9267 -97.4862 -85.85
- 68 288.797 1032 3 1 26.5054 -98.5287 -114.45
- 68 101.932 407 3 0 26.5255 -98.5546 -115.85
- 68 122.226 1034 2 1 27.0335 -99.1861 -144.45
- 68 136.852 404 2 0 27.0659 -99.2127 -145.85
- 68 110.487 1038 1 1 27.7317 -99.6072 -174.45
- 68 110.112 402 1 0 27.762 -99.6402 -175.85
- 68 110.744 1041 0 1 28.3599 -100.259 -204.45
- 68 140.563 399 0 0 28.4543 -100.278 -205.85
- 68 15.9474 970 7 1 14.2394 -131.564 5.15
- 68 59.483 901 8 1 0.399154 -137.171 35.15
- 68 125.543 971 7 1 14.25 -131.577 5.18245
- 68 121.655 1030 4 1 26.1118 -97.4433 -84.45
- 68 135.406 1030 3 1 26.1413 -97.3858 -114.45
- 68 112.641 413 3 0 26.1464 -97.3806 -115.85
- 68 176.36 1031 2 1 26.2541 -97.2705 -144.45
- 68 193.898 414 2 0 26.2598 -97.2667 -145.85
- 68 99.4532 1031 1 1 26.3841 -97.1845 -174.45
- 68 291.678 414 1 0 26.3953 -97.1722 -175.85
- 68 156.184 1032 0 1 26.6216 -96.865 -204.45
- 68 91.9012 416 0 0 26.6312 -96.8511 -205.85
-Number of digits in this event = 17
+Number of tracker hits in this event = 15
+ 68 226.78 1240 2 1 68.1307 95.4292 -144.45
+ 68 227.618 1376 2 0 68.1307 95.4287 -145.85
+ 68 310.201 1240 1 1 68.125 95.4177 -174.45
+ 68 264.629 1376 1 0 68.1228 95.4157 -175.85
+ 68 407.228 1240 0 1 68.0834 95.3691 -204.45
+ 68 314.038 1376 0 0 68.083 95.3689 -205.85
+ 68 5.14619 917 1 0 111.879 3.53924 -176.25
+ 68 40.7408 1239 1 1 68.05 95.3884 -174.827
+ 68 110.099 1369 1 0 63.035 94.1002 -175.85
+ 68 76.0953 1368 1 0 62.8027 93.95 -175.878
+ 68 71.8907 1367 1 0 62.6601 93.75 -175.952
+ 68 206.701 1366 1 0 62.6685 93.55 -175.995
+ 68 120.189 1218 1 1 63.7346 94.8599 -174.85
+ 68 151.431 1382 1 0 64.1282 96.6495 -175.85
+ 68 119.134 1383 1 0 64.2594 96.75 -176.062
+Number of digits in this event = 13
Using G4ParticleGun ...
-2.23529 LIN
+5.17354 LIN
gamma
Event: 69
Number of tracker hits in this event = 0
-Number of digits in this event = 1
+Number of digits in this event = 2
Using G4ParticleGun ...
-4.70858 LIN
+2.98968 LIN
gamma
Event: 70
Number of tracker hits in this event = 2
- 70 67.4178 1766 3 1 173.42 115.875 -114.45
- 70 251.473 1573 1 1 134.914 132.853 -174.45
-Number of digits in this event = 3
+ 70 166.49 1638 0 0 3.51396 147.859 -206.25
+ 70 159.747 1639 0 0 3.40643 147.95 -206.015
+Number of digits in this event = 4
Using G4ParticleGun ...
-2.43291 LIN
+4.03229 LIN
gamma
Event: 71
-Number of tracker hits in this event = 153
- 71 336.759 1163 11 1 52.8172 -21.0811 125.55
- 71 326.252 794 11 0 52.8857 -21.0583 124.149
- 71 142.161 1171 10 1 54.3147 -20.4948 95.5498
- 71 105.033 797 10 0 54.3868 -20.5812 94.15
- 71 96.9035 1179 9 1 56.0101 -22.5139 65.55
- 71 26.2619 1180 9 1 56.05 -22.5278 65.2203
- 71 129.912 787 9 0 56.1765 -22.5745 64.15
- 71 132.492 1195 8 1 59.1782 -24.1449 35.55
- 71 137.909 779 8 0 59.2838 -24.102 34.15
- 71 122.805 1213 7 1 62.677 -23.6707 5.54995
- 71 108.3 783 7 0 63.0194 -23.4291 4.15
- 71 85.5058 1242 6 1 68.6018 -18.5788 -24.45
- 71 27.2472 1243 6 1 68.65 -18.4808 -24.7522
- 71 123.287 809 6 0 68.8313 -18.1278 -25.85
- 71 41.5329 810 6 0 68.8774 -18.05 -26.1058
- 71 183.247 1273 5 1 74.781 -9.93797 -54.45
- 71 25.5581 851 5 0 74.96 -9.6733 -55.85
- 71 107.32 852 5 0 74.9755 -9.64998 -55.9699
- 71 143.529 1288 4 1 77.709 -4.04087 -84.45
- 71 123.314 881 4 0 77.87 -3.79957 -85.8501
- 71 120.529 1292 3 1 78.6378 -0.341363 -114.45
- 71 120.83 896 3 0 78.3904 -0.661409 -115.85
- 71 97.5698 1267 2 1 73.6177 -8.01793 -144.45
- 71 232.233 859 2 0 73.4066 -8.15788 -145.85
- 71 205.736 1234 1 1 66.9653 -10.7845 -174.45
- 71 81.9765 839 1 0 66.6232 -12.1452 -175.85
- 71 94.9082 838 1 0 66.5917 -12.2502 -175.954
- 71 89.437 837 1 0 66.5298 -12.45 -176.14
- 71 37.7178 1199 0 1 60.0168 -37.9945 -204.45
- 71 74.4781 1200 0 1 60.0501 -38.0159 -204.6
- 71 35.8033 709 0 0 60.3544 -38.2209 -205.85
- 71 70.8743 708 0 0 60.3941 -38.2502 -206.002
- 71 108.55 1233 1 1 66.85 -10.9413 -174.601
- 71 114.417 1232 1 1 66.65 -10.9812 -174.564
- 71 254.409 1231 1 1 66.45 -11.0876 -174.715
- 71 75.907 1222 6 1 64.5229 -26.4189 -24.6681
- 71 28.6247 768 6 0 64.6398 -26.449 -25.8503
- 71 175.838 767 6 0 64.6437 -26.45 -25.8904
- 71 134.147 1232 5 1 66.6456 -26.5241 -54.45
- 71 42.4013 769 5 0 66.5991 -26.0881 -55.8501
- 71 165.768 770 5 0 66.5954 -26.05 -55.9697
- 71 150.958 1222 4 1 64.6084 -15.9368 -84.45
- 71 33.3196 823 4 0 64.4435 -15.3018 -85.85
- 71 97.6884 824 4 0 64.4313 -15.25 -85.9637
- 71 189.72 1201 3 1 60.3747 -1.76584 -114.45
- 71 79.4102 894 3 0 60.0102 -1.15411 -115.85
- 71 52.638 895 3 0 59.9498 -1.04993 -116.092
- 71 99.5613 1166 2 1 53.3117 10.8926 -144.45
- 71 44.2276 1165 2 1 53.25 11.0213 -144.736
- 71 102.145 957 2 0 53.0514 11.5127 -145.85
- 71 46.7207 958 2 0 53.0087 11.6504 -146.18
- 71 364.735 1154 1 1 50.9662 23.5168 -174.45
- 71 225.925 1021 1 0 50.762 24.2526 -175.85
- 71 10.2088 1022 1 0 50.6935 24.45 -176.215
- 71 40.4531 1121 0 1 44.3352 39.2709 -204.45
- 71 111.855 1120 0 1 44.25 39.3462 -204.549
- 71 23.1818 1119 0 1 44.05 39.521 -204.795
- 71 1.7218 1100 0 0 43.228 40.2479 -205.85
- 71 133.876 1101 0 0 43.2256 40.25 -205.853
- 71 39.4248 1102 0 0 43.0047 40.45 -206.136
- 71 55.8833 1268 0 0 17.9547 73.6843 -206.25
- 71 77.9586 1269 0 0 17.8958 73.85 -206.095
- 71 79.7176 1270 0 0 17.8149 74.05 -205.921
- 71 182.772 985 0 1 17.2341 75.1231 -204.85
- 71 15.5793 984 0 1 17.05 75.5987 -204.482
- 71 242.961 1275 1 0 41.1117 75.0773 -176.25
- 71 44.2308 1111 1 1 42.343 75.3265 -174.85
- 71 81.9548 1112 1 1 42.45 75.3715 -174.71
- 71 139.827 1250 2 0 35.0624 70.2171 -146.25
- 71 109.402 1074 2 1 34.877 69.7795 -144.85
- 71 87.6264 503 6 0 -25.4302 -79.3115 -26.25
- 71 56.4266 592 6 0 -36.6944 -61.6144 -26.25
- 71 251.402 1340 1 0 17.2076 88.0967 -176.25
- 71 135.19 1234 5 1 67.0316 -27.9981 -54.45
- 71 6.09643 760 5 0 66.9648 -28.0491 -55.85
- 71 108.881 759 5 0 66.9637 -28.05 -55.8782
- 71 130.569 1236 4 1 67.2658 -30.4534 -84.45
- 71 73.7699 745 4 0 67.5391 -30.9573 -85.85
- 71 56.5311 744 4 0 67.5869 -31.05 -86.1015
- 71 125.315 1262 3 1 72.5007 -41.8583 -114.45
- 71 103.007 687 3 0 72.5102 -42.5081 -115.85
- 71 24.8327 686 3 0 72.5036 -42.65 -116.165
- 71 59.9337 1258 2 1 71.7172 -55.6168 -144.45
- 71 53.8055 1257 2 1 71.65 -55.6856 -144.662
- 71 122.553 619 2 0 71.3415 -56.0628 -145.85
- 71 12.476 1218 1 1 63.6609 -65.1232 -174.45
- 71 226.698 1217 1 1 63.65 -65.1523 -174.484
- 71 33.0905 568 1 0 63.1616 -66.3748 -175.85
- 71 115.322 567 1 0 63.13 -66.4501 -175.934
- 71 39.2911 566 1 0 63.0445 -66.65 -176.157
- 71 124.814 1159 0 1 51.9628 -89.9101 -204.45
- 71 129.901 1158 0 1 51.8499 -90.0247 -204.758
- 71 135.708 448 0 0 51.4894 -90.4092 -205.85
- 71 99.2395 1157 0 1 51.65 -89.9414 -204.771
- 71 160.345 1156 0 1 51.4498 -89.7642 -204.708
- 71 58.116 778 3 0 41.1837 -24.45 -115.907
- 71 115.289 1164 10 1 52.8506 -21.1027 95.55
- 71 120.088 794 10 0 52.8541 -21.0991 94.15
- 71 124.904 1164 9 1 52.9253 -21.0287 65.55
- 71 129.605 795 9 0 52.9349 -21.0246 64.15
- 71 117.646 1165 8 1 53.1259 -20.9301 35.55
- 71 109.26 795 8 0 53.1331 -20.9264 34.15
- 71 141.469 1166 7 1 53.2736 -20.8622 5.55
- 71 147.737 795 7 0 53.2795 -20.8583 4.15
- 71 96.69 1166 6 1 53.3926 -20.7767 -24.45
- 71 144.59 796 6 0 53.4031 -20.7726 -25.85
- 71 161.117 1167 5 1 53.6244 -20.6785 -54.45
- 71 128.844 796 5 0 53.6344 -20.6738 -55.85
- 71 140.429 1168 4 1 53.798 -20.5377 -84.45
- 71 116.836 797 4 0 53.8092 -20.5356 -85.85
- 71 505.272 1169 3 1 54.0171 -20.475 -114.45
- 71 228.384 797 3 0 54.0231 -20.4737 -115.85
- 71 129.607 1170 2 1 54.1355 -20.4461 -144.45
- 71 176.044 798 2 0 54.1455 -20.4444 -145.85
- 71 106.727 1171 1 1 54.3397 -20.4062 -174.45
- 71 268.911 798 1 0 54.3527 -20.4069 -175.85
- 71 125.915 1172 0 1 54.613 -20.3914 -204.45
- 71 105.903 798 0 0 54.6431 -20.4054 -205.85
- 71 338.216 1172 1 1 54.5818 -20.0798 -174.45
- 71 294.951 799 1 0 54.5807 -20.0781 -175.85
- 71 120.093 1171 0 1 54.4386 -20.0803 -204.45
- 71 126.826 799 0 0 54.3739 -20.0974 -205.85
- 71 51.0191 1174 0 1 54.9075 -16.7019 -204.45
- 71 77.6205 1175 0 1 55.05 -16.6772 -204.615
- 71 154.487 817 0 0 56.0765 -16.6408 -205.85
- 71 97.2778 796 3 0 53.8531 -20.6965 -115.85
- 71 121.161 1162 2 1 52.6355 -17.9066 -144.45
- 71 106.344 810 2 0 52.4523 -17.9877 -145.85
- 71 133.047 1139 1 1 48.0206 -19.9049 -174.45
- 71 3.43891 800 1 0 48.0363 -19.8505 -175.85
- 71 114.772 801 1 0 48.0365 -19.85 -175.863
- 71 157.519 1140 0 1 48.2147 -19.0976 -204.45
- 71 111.628 805 0 0 48.2161 -18.9136 -205.85
- 71 239.579 1058 0 0 85.5903 31.65 -206.005
- 71 183.683 1168 3 1 53.8499 -20.9219 -114.575
- 71 155.593 1167 3 1 53.6498 -20.9731 -114.566
- 71 134.097 795 3 0 53.8941 -20.9064 -115.85
- 71 105.273 1164 2 1 53.0269 -22.6333 -144.45
- 71 122.224 786 2 0 52.9189 -22.7254 -145.85
- 71 122.034 775 1 0 51.0708 -24.9179 -175.85
- 71 128.925 1162 0 1 52.5853 -25.8538 -204.45
- 71 33.3925 1163 0 1 52.6503 -26.0819 -204.785
- 71 28.242 766 0 0 52.8449 -26.7827 -205.85
- 71 238.753 765 0 0 52.8629 -26.85 -205.953
- 71 130.247 1157 2 0 135.677 51.6253 -146.25
- 71 122.497 1578 2 1 135.852 51.4478 -144.849
- 71 176.389 1577 2 1 135.75 51.5749 -144.583
- 71 131.021 1576 2 1 135.55 51.8015 -144.529
- 71 274.036 1286 2 0 167.202 77.2754 -146.25
- 71 93.9529 1287 2 0 167.142 77.45 -146.144
- 71 122.171 1588 1 1 137.75 -38.8973 -174.815
- 71 245.63 1164 11 1 52.8501 -21.1024 125.356
- 71 129.917 1165 11 1 53.0501 -21.1673 125.334
-Number of digits in this event = 80
-Using G4ParticleGun ...
-1.22535 LIN
+Number of tracker hits in this event = 1
+ 71 53.2722 719 4 1 -36.2394 31.8384 -84.85
+Number of digits in this event = 3
+Using G4ParticleGun ...
+4.57392 LIN
gamma
Event: 72
-Number of tracker hits in this event = 0
-Number of digits in this event = 1
+Number of tracker hits in this event = 4
+ 72 334.351 1367 1 1 93.611 70.4102 -174.45
+ 72 286.47 1251 1 0 93.6085 70.4057 -175.85
+ 72 245.656 1367 0 1 93.5595 70.3613 -204.45
+ 72 250.075 1251 0 0 93.5564 70.3538 -205.85
+Number of digits in this event = 7
Using G4ParticleGun ...
-4.03694 LIN
+7.37029 LIN
gamma
Event: 73
-Number of tracker hits in this event = 0
-Number of digits in this event = 2
-Using G4ParticleGun ...
-2.70224 LIN
+Number of tracker hits in this event = 107
+ 73 240.825 567 10 1 -66.4785 -49.8489 95.55
+ 73 288.048 651 10 0 -66.4782 -49.8479 94.15
+ 73 291.663 567 9 1 -66.4735 -49.8273 65.55
+ 73 558.61 651 9 0 -66.4709 -49.8253 64.15
+ 73 125.07 568 8 1 -66.421 -49.789 35.55
+ 73 345.113 651 8 0 -66.4178 -49.7888 34.15
+ 73 146.104 568 7 1 -66.3543 -49.7836 5.55
+ 73 202.782 651 7 0 -66.3514 -49.783 4.15
+ 73 482.751 568 6 1 -66.2952 -49.7675 -24.45
+ 73 238.074 651 6 0 -66.2908 -49.7649 -25.85
+ 73 256.165 569 5 1 -66.204 -49.7136 -54.45
+ 73 632.155 651 5 0 -66.1976 -49.713 -55.85
+ 73 157.077 569 4 1 -66.0611 -49.7064 -84.45
+ 73 250.114 651 4 0 -66.056 -49.7052 -85.85
+ 73 126.415 570 3 1 -65.9446 -49.6821 -114.45
+ 73 230.634 651 3 0 -65.9374 -49.682 -115.85
+ 73 134.794 571 2 1 -65.7918 -49.6942 -144.45
+ 73 223.132 651 2 0 -65.7874 -49.6967 -145.85
+ 73 190.42 571 1 1 -65.7042 -49.7461 -174.45
+ 73 95.688 651 1 0 -65.7017 -49.7474 -175.85
+ 73 236.324 571 0 1 -65.6629 -49.7615 -204.45
+ 73 427.234 651 0 0 -65.6558 -49.7651 -205.85
+ 73 126.936 1422 5 1 104.55 14.0442 -54.5225
+ 73 95.4819 572 0 1 -65.65 -49.6671 -204.51
+ 73 91.9717 1247 0 1 69.5374 -38.0078 -204.45
+ 73 252.079 567 5 1 -66.4878 -49.7896 -54.4503
+ 73 149.519 571 4 1 -65.6894 -51.1581 -84.45
+ 73 43.0141 642 4 0 -65.8497 -51.5997 -85.8502
+ 73 108.143 641 4 0 -65.8637 -51.65 -86.0047
+ 73 109.206 563 3 1 -67.3667 -59.945 -114.45
+ 73 131.323 597 3 0 -67.4243 -60.4729 -115.85
+ 73 181.749 550 2 1 -69.8526 -71.3411 -144.45
+ 73 18.7752 538 2 0 -70.077 -72.4128 -145.85
+ 73 119.149 537 2 0 -70.0848 -72.4502 -145.898
+ 73 20.4635 536 2 0 -70.1427 -72.65 -146.173
+ 73 130.533 524 1 1 -75.0514 -90.6946 -174.45
+ 73 8.60709 523 1 1 -75.25 -90.8396 -174.817
+ 73 89.7374 444 1 0 -75.817 -91.2609 -175.85
+ 73 43.5853 443 1 0 -75.9681 -91.35 -176.102
+ 73 117.867 440 0 1 -92.0029 -100.093 -204.45
+ 73 5.40187 439 0 1 -92.15 -100.044 -204.835
+ 73 414.246 400 0 0 -92.4446 -100.02 -205.85
+ 73 330.806 570 4 1 -65.9051 -48.5027 -84.45
+ 73 173.733 655 4 0 -66.0084 -48.9103 -85.8504
+ 73 103.841 567 8 1 -66.4571 -49.7823 35.55
+ 73 128.326 567 7 1 -66.4632 -49.7987 5.55
+ 73 135.843 571 3 1 -65.8258 -49.7962 -114.45
+ 73 146.693 572 2 1 -65.6019 -49.8406 -144.45
+ 73 117.993 573 1 1 -65.3421 -49.9311 -174.45
+ 73 140.518 650 1 0 -65.3276 -49.9315 -175.85
+ 73 125.53 575 0 1 -65.0176 -49.9345 -204.45
+ 73 145.976 650 0 0 -65.0046 -49.9358 -205.85
+ 73 128.709 574 0 1 -65.05 -49.9732 -204.587
+ 73 0.15564 643 0 0 -66.8719 -51.4499 -205.85
+ 73 307.512 642 0 0 -66.872 -51.45 -205.85
+ 73 178.063 641 0 0 -67.4771 -51.65 -206.11
+ 73 79.6193 640 0 0 -67.6821 -51.85 -206.101
+ 73 68.0639 648 0 0 -86.1296 -50.3498 -206.25
+ 73 94.4521 649 0 0 -86.2498 -50.25 -206.157
+ 73 169.111 568 9 1 -66.4499 -49.807 65.4652
+ 73 53.7642 614 8 1 -57.131 -46.9851 35.55
+ 73 86.5051 615 8 1 -57.0499 -46.9071 35.3819
+ 73 40.1826 668 8 0 -56.4041 -46.3101 34.15
+ 73 88.7982 669 8 0 -56.3389 -46.25 34.0251
+ 73 140.687 692 7 1 -41.641 -33.0972 5.55
+ 73 108.387 733 7 0 -41.3481 -33.3371 4.1498
+ 73 110.855 721 6 1 -35.7895 -38.2075 -24.45
+ 73 46.9997 708 6 0 -35.7854 -38.4197 -25.8505
+ 73 69.3449 707 6 0 -35.7885 -38.45 -26.0289
+ 73 57.164 718 5 1 -36.4005 -42.3931 -54.45
+ 73 72.0595 717 5 1 -36.45 -42.4 -54.6357
+ 73 115.092 687 5 0 -36.6909 -42.5276 -55.8506
+ 73 153.812 682 4 1 -43.6273 -46.4906 -84.45
+ 73 324.659 665 4 0 -43.399 -46.9268 -85.85
+ 73 19.3434 664 4 0 -43.3436 -47.0504 -86.1802
+ 73 100.229 715 3 1 -36.9456 -60.3978 -114.45
+ 73 17.0747 714 3 1 -37.05 -60.3661 -114.775
+ 73 402.363 599 3 0 -37.4059 -60.2242 -115.85
+ 73 26.1503 653 2 1 -49.4251 -55.3896 -144.45
+ 73 92.108 652 2 1 -49.45 -55.3833 -144.536
+ 73 114.482 622 2 0 -49.8174 -55.477 -145.85
+ 73 158.414 516 2 0 -43.4257 -76.7572 -146.25
+ 73 2.68713 686 2 1 -42.6552 -77.216 -144.85
+ 73 131.836 687 2 1 -42.65 -77.2192 -144.841
+ 73 40.1876 688 2 1 -42.45 -77.3906 -144.537
+ 73 27.2708 257 3 0 -82.3648 -128.709 -116.25
+ 73 78.2937 256 3 0 -82.4 -128.75 -116.227
+ 73 52.7211 255 3 0 -82.6029 -128.95 -116.223
+ 73 30.5579 388 3 0 -153.112 -102.472 -116.25
+ 73 64.7946 389 3 0 -153.119 -102.35 -116.227
+ 73 23.3226 390 3 0 -153.147 -102.15 -116.211
+ 73 36.7308 592 9 0 -59.1241 -61.5879 63.75
+ 73 97.598 591 9 0 -59.121 -61.65 63.8714
+ 73 369.263 604 9 1 -59.1055 -62.2683 65.15
+ 73 25.2684 526 10 0 -65.7824 -74.8122 93.75
+ 73 118.669 525 10 0 -65.8022 -74.8501 93.8311
+ 73 50.8617 569 10 1 -66.1962 -75.3637 95.15
+ 73 52.3921 568 10 1 -66.25 -75.4437 95.332
+ 73 185.527 534 11 0 -79.5299 -73.1495 123.75
+ 73 95.9201 499 11 1 -80.142 -72.9677 125.15
+ 73 25.5209 498 11 1 -80.25 -72.9371 125.422
+ 73 0.41235 496 12 0 -98.1582 -80.8497 153.75
+ 73 254.617 495 12 0 -98.1588 -80.85 153.751
+ 73 180.285 407 12 1 -98.6334 -81.0442 155.15
+ 73 18.17 515 12 0 -118.159 -76.9116 153.75
+ 73 69.1995 605 9 1 -59.0498 -62.9686 65.2577
+ 73 553.994 606 9 1 -58.8499 -63.061 65.2958
+Number of digits in this event = 54
+Using G4ParticleGun ...
+9.5241 LIN
gamma
Event: 74
-Number of tracker hits in this event = 27
- 74 214.751 1050 5 1 30.1959 -132.704 -54.45
- 74 391.4 237 5 0 30.1963 -132.709 -55.85
- 74 352.665 1050 4 1 30.1686 -132.803 -84.45
- 74 116.604 236 4 0 30.1549 -132.814 -85.85
- 74 104.061 1049 3 1 29.8837 -133.036 -114.45
- 74 122.597 235 3 0 29.8744 -133.033 -115.85
- 74 106.421 1048 2 1 29.6917 -132.949 -144.45
- 74 121.995 236 2 0 29.6852 -132.937 -145.85
- 74 123.383 1047 1 1 29.5253 -132.688 -174.45
- 74 270.873 237 1 0 29.5178 -132.679 -175.85
- 74 127.688 1046 0 1 29.3837 -132.462 -204.45
- 74 100.917 238 0 0 29.3812 -132.448 -205.85
- 74 171.549 1069 0 1 33.8841 -148.757 -204.451
- 74 170.965 237 4 0 30.2388 -132.663 -85.85
- 74 111.983 1051 3 1 30.3832 -132.659 -114.45
- 74 93.4317 237 3 0 30.3909 -132.655 -115.85
- 74 105.166 1052 2 1 30.5514 -132.568 -144.45
- 74 141.596 237 2 0 30.561 -132.561 -145.85
- 74 114.971 1053 1 1 30.7717 -132.415 -174.45
- 74 134.714 238 1 0 30.7774 -132.405 -175.85
- 74 132.104 1054 0 1 30.8761 -132.196 -204.45
- 74 128.615 239 0 0 30.8766 -132.19 -205.85
- 74 94.1436 508 2 0 150.908 -78.4237 -146.25
- 74 136.76 509 2 0 151.184 -78.2499 -146.206
- 74 174.162 1659 2 1 151.962 -77.8496 -144.85
- 74 74.97 1660 2 1 152.15 -77.7491 -144.607
- 74 102.156 1661 2 1 152.35 -77.5713 -144.532
-Number of digits in this event = 18
+Number of tracker hits in this event = 15
+ 74 276.695 724 0 1 -35.2423 76.722 -204.45
+ 74 273.737 1283 0 0 -35.2422 76.7225 -205.85
+ 74 145.122 681 0 1 -43.7125 97.2494 -204.85
+ 74 238.843 682 0 1 -43.65 97.323 -204.456
+ 74 42.3092 872 1 0 -23.6269 -5.56725 -176.25
+ 74 3.40673 1017 1 0 -44.7042 23.65 -176.18
+ 74 11.6074 647 1 1 -50.45 21.5267 -174.76
+ 74 41.8694 415 5 1 -96.95 110.109 -54.8323
+ 74 87.8509 486 10 0 -143.591 -82.683 93.75
+ 74 219.279 507 10 0 -120.796 -78.6288 93.7501
+ 74 16.2279 1369 0 0 -40.9505 94.1157 -206.25
+ 74 93.9407 1370 0 0 -40.9603 94.15 -206.224
+ 74 87.9442 1371 0 0 -41.0717 94.35 -206.205
+ 74 166.982 1452 0 0 -63.0217 110.736 -206.25
+ 74 113.725 1453 0 0 -63.0591 110.75 -206.216
+Number of digits in this event = 8
Using G4ParticleGun ...
-2.56337 LIN
+8.24974 LIN
gamma
Event: 75
-Number of tracker hits in this event = 3
- 75 91.0105 1373 5 1 94.7514 70.8201 -54.85
- 75 159.502 549 9 1 -70.2311 -166.232 65.55
- 75 173.012 548 9 1 -70.25 -166.151 65.4286
-Number of digits in this event = 4
+Number of tracker hits in this event = 2
+ 75 14.6813 693 6 0 -146.666 -41.4213 -26.2499
+ 75 59.9889 692 6 0 -146.694 -41.4502 -26.2415
+Number of digits in this event = 3
Using G4ParticleGun ...
-9.07858 LIN
+8.17656 LIN
gamma
Event: 76
-Number of tracker hits in this event = 22
- 76 19.0308 1787 10 0 -89.0524 177.602 93.75
- 76 64.718 1786 10 0 -89.052 177.55 93.7794
- 76 89.966 1785 10 0 -89.0468 177.35 93.9165
- 76 53.9384 1784 10 0 -89.06 177.15 94.0918
- 76 50.7549 440 10 1 -91.9962 175.387 95.15
- 76 109.268 439 10 1 -92.15 175.299 95.189
- 76 89.4295 438 10 1 -92.3501 175.072 95.2339
- 76 71.9668 437 10 1 -92.55 174.844 95.2484
- 76 66.3718 436 10 1 -92.75 174.728 95.2793
- 76 60.8691 435 10 1 -92.9501 174.691 95.26
- 76 60.8056 434 10 1 -93.15 174.685 95.2431
- 76 58.1148 433 10 1 -93.35 174.641 95.1623
- 76 52.7015 432 10 1 -93.5505 174.645 95.1514
- 76 73.4029 431 10 1 -93.75 174.719 95.1939
- 76 247.633 430 10 1 -93.95 174.799 95.2812
- 76 586.321 429 10 1 -94.1503 174.884 95.422
- 76 75.3326 428 10 1 -94.35 174.97 95.5156
- 76 171.448 1770 10 0 -93.3997 174.316 94.15
- 76 145.019 1769 10 0 -93.0542 174.15 93.8486
- 76 69.1517 1768 10 0 -92.8351 173.95 93.9127
- 76 78.2754 1767 10 0 -92.828 173.75 93.9907
- 76 49.4581 1766 10 0 -92.8588 173.55 94.0623
-Number of digits in this event = 6
+Number of tracker hits in this event = 113
+ 76 232.799 994 11 1 18.9975 25.3518 125.55
+ 76 369.921 1026 11 0 18.9934 25.348 124.15
+ 76 221.418 994 10 1 18.9118 25.2778 95.55
+ 76 257.71 1026 10 0 18.9069 25.2723 94.15
+ 76 108.508 993 9 1 18.8144 25.146 65.55
+ 76 113.358 1025 9 0 18.8112 25.1381 64.15
+ 76 129.99 993 8 1 18.7849 24.9695 35.55
+ 76 119.981 1024 8 0 18.781 24.9726 34.15
+ 76 118.861 993 7 1 18.7211 25.0244 5.55
+ 76 116.573 1024 7 0 18.6761 25.0097 4.15
+ 76 255.691 988 6 1 17.8071 24.3495 -24.45
+ 76 70.6619 1013 6 0 17.9057 22.7545 -25.85
+ 76 118.059 1012 6 0 17.9121 22.6499 -25.9426
+ 76 70.1401 1011 6 0 17.924 22.45 -26.1176
+ 76 226.669 998 5 1 19.7891 -10.2402 -54.45
+ 76 1.67538 841 5 0 19.6652 -11.8419 -55.8504
+ 76 83.8554 840 5 0 19.6645 -11.8508 -55.8582
+ 76 110.777 839 5 0 19.6517 -12.0501 -56.0327
+ 76 16.4335 838 5 0 19.6401 -12.25 -56.205
+ 76 205.256 989 4 1 17.9247 -45.4324 -84.4502
+ 76 58.1315 662 4 0 18.069 -47.5119 -85.85
+ 76 73.7614 661 4 0 18.0782 -47.65 -85.9425
+ 76 58.0719 660 4 0 18.0904 -47.8503 -86.0776
+ 76 20.6681 659 4 0 18.1041 -48.05 -86.2114
+ 76 64.6263 1004 3 1 20.8629 -90.6432 -114.45
+ 76 148.944 1003 3 1 20.85 -90.7979 -114.553
+ 76 26.4062 437 3 0 20.7002 -92.6993 -115.85
+ 76 82.7171 436 3 0 20.6961 -92.75 -115.885
+ 76 60.6242 435 3 0 20.6819 -92.95 -116.025
+ 76 54.9322 434 3 0 20.6684 -93.15 -116.165
+ 76 227.585 992 2 1 18.5475 -133.437 -144.45
+ 76 92.6594 223 2 0 18.3924 -135.444 -145.85
+ 76 76.9383 222 2 0 18.384 -135.55 -145.924
+ 76 70.0216 221 2 0 18.3643 -135.75 -146.063
+ 76 21.1009 220 2 0 18.3462 -135.95 -146.202
+ 76 193.563 973 1 1 14.7349 -176.594 -174.45
+ 76 39.6601 9 1 0 14.6336 -178.227 -175.85
+ 76 65.3751 8 1 0 14.626 -178.35 -175.954
+ 76 122.817 7 1 0 14.6096 -178.55 -176.122
+ 76 326.169 992 6 1 18.6404 25.1284 -24.45
+ 76 230.267 1025 6 0 18.4058 25.1786 -25.85
+ 76 212.696 955 5 1 11.0804 27.6292 -54.4507
+ 76 118.435 1042 5 0 11.4501 28.5906 -55.85
+ 76 101.626 1043 5 0 11.4726 28.6503 -55.9287
+ 76 41.9263 1044 5 0 11.5358 28.85 -56.1551
+ 76 244.262 977 4 1 15.5866 62.1301 -84.45
+ 76 151.36 1210 4 0 15.073 62.0903 -85.85
+ 76 98.4762 842 3 1 -11.5399 65.8459 -114.45
+ 76 27.0335 841 3 1 -11.65 65.7213 -114.802
+ 76 41.8623 1226 3 0 -12.2836 65.3056 -115.85
+ 76 132.973 1225 3 0 -12.3653 65.25 -115.996
+ 76 45.1588 766 2 1 -26.7589 47.5978 -144.45
+ 76 82.1798 765 2 1 -26.85 47.5742 -144.534
+ 76 74.3552 1065 3 0 -54.4376 33.0786 -116.25
+ 76 190.717 1064 3 0 -54.5466 33.05 -116.178
+ 76 195.962 618 3 1 -56.3128 34.1937 -114.85
+ 76 126.33 617 3 1 -56.45 34.3284 -114.577
+ 76 21.3188 1212 4 0 14.4979 62.45 -86.1312
+ 76 156.063 992 5 1 18.6465 25.2202 -54.45
+ 76 183.115 1025 5 0 18.6568 25.2192 -55.85
+ 76 139.337 993 4 1 18.7916 25.2086 -84.45
+ 76 202.314 1025 4 0 18.8084 25.2045 -85.85
+ 76 113.685 995 3 1 19.1604 25.13 -114.45
+ 76 151.615 1025 3 0 19.164 25.1399 -115.85
+ 76 113.982 996 2 1 19.3265 25.2828 -144.45
+ 76 113.221 1026 2 0 19.359 25.2837 -145.85
+ 76 108.847 999 1 1 19.9977 25.3086 -174.45
+ 76 150.6 1026 1 0 19.9902 25.2883 -175.85
+ 76 121.564 999 0 1 19.8874 24.7902 -204.45
+ 76 122.23 1023 0 0 19.8903 24.7719 -205.85
+ 76 52.085 1013 1 0 20.5649 22.85 -175.909
+ 76 82.2181 1012 1 0 20.6059 22.65 -175.986
+ 76 105.348 1011 1 0 20.6314 22.45 -175.995
+ 76 358.42 1004 1 1 20.9919 22.0789 -174.85
+ 76 105.736 1026 5 0 18.6743 25.25 -56.0276
+ 76 38.5653 823 0 1 -15.25 38.5446 -204.694
+ 76 176.367 822 0 1 -15.45 38.6441 -204.604
+ 76 227.326 988 1 1 17.7044 24.0899 -174.45
+ 76 227.321 1020 1 0 17.7242 24.1014 -175.85
+ 76 109.544 989 0 1 18.0401 24.5942 -204.45
+ 76 114.077 1022 0 0 18.0459 24.595 -205.85
+ 76 150.716 988 0 1 17.6981 24.989 -204.45
+ 76 101.759 1025 0 0 17.6863 25.0622 -205.85
+ 76 32.7804 1574 0 1 135.041 46.5064 -204.45
+ 76 76.0912 1575 0 1 135.15 46.5329 -204.501
+ 76 113.886 1576 0 1 135.35 46.5985 -204.643
+ 76 5.60731 1136 0 0 136.436 47.4435 -205.85
+ 76 202.507 1137 0 0 136.444 47.45 -205.859
+ 76 134.672 994 9 1 19.033 25.3581 65.55
+ 76 118.237 1026 9 0 19.0338 25.36 64.15
+ 76 126.482 994 8 1 19.0496 25.4003 35.55
+ 76 124.657 1026 8 0 19.0489 25.4051 34.15
+ 76 132.107 994 7 1 19.0311 25.5031 5.55
+ 76 108.94 1027 7 0 19.0309 25.5078 4.15
+ 76 160.624 994 6 1 19.0256 25.5951 -24.45
+ 76 113.901 1027 6 0 19.0242 25.5996 -25.85
+ 76 170.187 994 5 1 18.992 25.6804 -54.45
+ 76 112.855 1028 5 0 18.99 25.6842 -55.85
+ 76 129.245 994 4 1 18.9401 25.7655 -84.45
+ 76 112.852 1028 4 0 18.9385 25.7686 -85.85
+ 76 96.0366 994 3 1 18.9037 25.8263 -114.45
+ 76 168.104 1028 3 0 18.9033 25.8284 -115.85
+ 76 126.508 994 2 1 18.8865 25.868 -144.45
+ 76 139.424 1029 2 0 18.8849 25.8747 -145.85
+ 76 138.705 994 1 1 18.8532 26.0106 -174.45
+ 76 305.708 1029 1 0 18.8502 26.0144 -175.85
+ 76 470.469 993 0 1 18.7941 26.0906 -204.45
+ 76 364.696 1030 0 0 18.7954 26.095 -205.85
+ 76 94.1235 728 6 1 -34.3393 -162.063 -24.85
+ 76 102.233 1029 0 0 18.7551 26.0138 -205.85
+ 76 151.365 995 6 1 19.05 25.5666 -24.4896
+ 76 337.822 1032 6 0 17.5477 26.486 -25.8501
+ 76 230.132 1120 3 1 44.1876 99.0484 -114.85
+Number of digits in this event = 55
Using G4ParticleGun ...
-4.50124 LIN
+7.76667 LIN
gamma
Event: 77
-Number of tracker hits in this event = 61
- 77 248.575 331 4 1 -113.946 -1.82872 -84.45
- 77 254.07 891 4 0 -113.946 -1.82755 -85.85
- 77 170.857 330 3 1 -113.954 -1.80966 -114.45
- 77 532.734 891 3 0 -113.955 -1.80983 -115.85
- 77 158.215 330 2 1 -113.958 -1.81504 -144.45
- 77 107.547 891 2 0 -113.957 -1.81484 -145.85
- 77 104.717 331 1 1 -113.94 -1.8119 -174.45
- 77 162.076 891 1 0 -113.941 -1.81082 -175.85
- 77 154.619 330 0 1 -113.964 -1.7836 -204.45
- 77 117.58 891 0 0 -113.969 -1.78062 -205.85
- 77 60.4155 821 10 0 -88.3446 -15.85 94.004
- 77 23.1965 822 10 0 -88.08 -15.6499 94.0841
- 77 59.483 778 1 0 -93.4382 -24.3602 -175.85
- 77 298.794 331 3 1 -113.884 -1.66945 -114.45
- 77 151.135 333 2 1 -113.426 -1.58109 -144.45
- 77 151.05 892 2 0 -113.375 -1.5645 -145.85
- 77 202.5 340 1 1 -112.139 -1.24655 -174.451
- 77 387.87 894 1 0 -112.077 -1.21512 -175.851
- 77 68.36 345 0 1 -111.098 5.36074 -204.45
- 77 74.1309 346 0 1 -110.95 5.28228 -204.607
- 77 11.0099 347 0 1 -110.75 5.16173 -204.819
- 77 35.2297 923 0 0 -109.668 4.70658 -205.85
- 77 107.706 922 0 0 -109.567 4.65 -205.934
- 77 9.28288 921 0 0 -109.246 4.45 -206.223
- 77 43.2027 332 3 1 -113.75 -1.74042 -114.727
- 77 150.751 374 2 1 -105.244 -2.76284 -144.45
- 77 149.934 887 2 0 -105.13 -2.61757 -145.85
- 77 109.85 383 1 1 -103.405 -0.285865 -174.45
- 77 31.8782 900 1 0 -103.284 0.221626 -175.85
- 77 247.256 901 1 0 -103.277 0.25 -175.931
- 77 131.344 394 0 1 -101.338 8.97531 -204.45
- 77 2.08731 947 0 0 -101.265 9.64629 -205.85
- 77 140.52 948 0 0 -101.264 9.65 -205.858
- 77 0.634721 949 0 0 -101.253 9.85 -206.249
- 77 11.8792 902 1 0 -103.082 0.450039 -175.861
- 77 61.2982 390 1 1 -102.118 1.14982 -174.85
- 77 33.1554 912 1 0 -102.551 2.58544 -175.85
- 77 188.706 913 1 0 -102.54 2.65008 -175.882
- 77 108.656 326 2 1 -114.798 -1.17014 -144.45
- 77 144.804 894 2 0 -114.847 -1.15473 -145.85
- 77 121.161 321 1 1 -115.899 -1.06754 -174.45
- 77 357.008 313 0 1 -117.429 -0.716212 -204.45
- 77 101.535 896 0 0 -117.503 -0.680962 -205.85
- 77 89.1098 312 0 1 -117.55 -0.730162 -204.51
- 77 66.8966 696 2 0 -81.9353 -40.6578 -146.25
- 77 215.811 695 2 0 -81.7962 -40.85 -146.125
- 77 183.792 694 2 0 -81.1121 -41.05 -146.039
- 77 34.6849 511 2 1 -77.7369 -41.8521 -144.85
- 77 74.4999 512 2 1 -77.6497 -41.8612 -144.788
- 77 162.476 513 2 1 -77.45 -41.8681 -144.658
- 77 449.54 514 2 1 -77.25 -41.8301 -144.583
- 77 26.2224 672 2 0 -79.4552 -45.5351 -145.85
- 77 289.215 491 2 1 -81.701 -47.6023 -144.85
- 77 39.2471 490 2 1 -81.85 -47.6226 -144.572
- 77 45.6816 687 2 0 -76.9336 -42.5926 -145.85
- 77 162.324 686 2 0 -76.8675 -42.65 -145.949
- 77 134.514 685 2 0 -76.8124 -42.85 -146.154
- 77 67.9176 283 2 1 -123.35 22.5557 -144.738
- 77 145.519 284 2 1 -123.35 22.7316 -144.559
- 77 102.644 285 2 1 -123.15 22.9096 -144.541
- 77 269.745 286 2 1 -122.95 22.9271 -144.573
-Number of digits in this event = 32
-Using G4ParticleGun ...
-7.8378 LIN
+Number of tracker hits in this event = 114
+ 77 296.118 706 6 1 -38.7372 -27.2367 -24.45
+ 77 265.279 764 6 0 -38.7394 -27.2329 -25.85
+ 77 107.997 705 5 1 -38.9443 -27.2477 -54.45
+ 77 151.765 763 5 0 -38.968 -27.2783 -55.85
+ 77 321.258 702 4 1 -39.5266 -27.7966 -84.4502
+ 77 156.402 761 4 0 -39.5987 -27.7914 -85.85
+ 77 165.192 695 3 1 -40.8737 -27.7359 -114.45
+ 77 116.176 761 3 0 -40.9268 -27.7118 -115.85
+ 77 122.004 690 2 1 -41.9885 -26.9427 -144.45
+ 77 146.094 766 2 0 -42.2028 -26.7442 -145.85
+ 77 140.094 669 1 1 -46.2101 -22.7265 -174.451
+ 77 109.663 787 1 0 -46.3203 -22.6012 -175.85
+ 77 122.672 658 0 1 -48.3001 -19.9553 -204.45
+ 77 110.448 801 0 0 -48.2599 -19.8045 -205.85
+ 77 238.245 689 2 1 -42.214 -29.0468 -144.45
+ 77 139.382 754 2 0 -42.2845 -29.0693 -145.85
+ 77 144.984 681 1 1 -43.656 -29.4367 -174.45
+ 77 142.766 753 1 0 -43.7171 -29.3954 -175.85
+ 77 98.2067 677 0 1 -44.5904 -28.3514 -204.45
+ 77 95.6182 758 0 0 -44.5815 -28.3416 -205.85
+ 77 28.1924 780 3 1 -24.05 56.6785 -114.693
+ 77 12.4052 688 2 1 -42.25 -29.0382 -144.797
+ 77 111.064 755 2 0 -42.3369 -29.0314 -145.85
+ 77 17.6476 674 1 1 -45.2339 -29.4033 -174.45
+ 77 116.161 673 1 1 -45.25 -29.4134 -174.51
+ 77 299.616 751 1 0 -45.6031 -29.6541 -175.85
+ 77 177.745 634 0 1 -53.051 -35.2171 -204.45
+ 77 255.394 721 0 0 -53.4281 -35.7119 -205.85
+ 77 9.95866 618 5 0 -126.73 -56.4154 -56.25
+ 77 14.6098 777 5 0 -100.473 -24.4737 -56.25
+ 77 8.87197 909 5 0 -111.969 2.00342 -56.25
+ 77 153.01 706 5 1 -38.745 -27.2395 -54.45
+ 77 154.419 764 5 0 -38.7456 -27.2392 -55.85
+ 77 130.05 706 4 1 -38.7593 -27.2297 -84.45
+ 77 208.286 764 4 0 -38.7601 -27.2293 -85.85
+ 77 225.179 706 3 1 -38.7764 -27.2192 -114.45
+ 77 224.88 764 3 0 -38.7781 -27.2208 -115.85
+ 77 285.892 706 2 1 -38.8123 -27.2588 -144.45
+ 77 152.922 763 2 0 -38.8131 -27.2623 -145.85
+ 77 366.138 706 1 1 -38.8242 -27.3259 -174.45
+ 77 92.5211 763 1 0 -38.8264 -27.3285 -175.85
+ 77 689.128 705 0 1 -38.881 -27.3758 -204.45
+ 77 122.5 763 0 0 -38.8848 -27.3778 -205.85
+ 77 21.3512 1214 2 1 62.8737 130.991 -144.85
+ 77 188.166 752 0 1 -29.6183 -41.2134 -204.85
+ 77 14.7726 705 2 1 -38.85 -27.2103 -144.636
+ 77 173.385 706 0 1 -38.8095 -27.4549 -204.45
+ 77 90.9705 704 0 1 -39.05 -27.6925 -204.556
+ 77 73.3418 703 0 1 -39.25 -27.8494 -204.699
+ 77 21.8724 702 0 1 -39.4503 -27.9707 -204.823
+ 77 120.337 753 0 0 -41.327 -29.2798 -205.85
+ 77 330.178 752 0 0 -41.6602 -29.45 -205.946
+ 77 16.1495 751 0 0 -42.5915 -29.65 -205.858
+ 77 28.3394 655 0 1 -48.9872 -30.256 -204.85
+ 77 62.0835 654 0 1 -49.0503 -30.2719 -204.841
+ 77 69.0054 653 0 1 -49.25 -30.3686 -204.808
+ 77 134.816 652 0 1 -49.45 -30.4563 -204.791
+ 77 57.6785 651 0 1 -49.65 -30.5315 -204.791
+ 77 61.3952 650 0 1 -49.85 -30.6271 -204.822
+ 77 48.5692 649 0 1 -50.05 -30.7059 -204.815
+ 77 74.912 648 0 1 -50.2503 -30.6458 -204.76
+ 77 59.6415 647 0 1 -50.45 -30.5491 -204.734
+ 77 153.163 646 0 1 -50.65 -30.4333 -204.686
+ 77 67.5383 645 0 1 -50.8505 -30.1889 -204.564
+ 77 133.21 644 0 1 -51.05 -30.0223 -204.486
+ 77 113.391 643 0 1 -51.25 -30.0156 -204.476
+ 77 113.625 642 0 1 -51.45 -30.1547 -204.523
+ 77 119.003 641 0 1 -51.65 -30.2158 -204.644
+ 77 14.834 735 0 0 -53.0505 -32.9598 -205.85
+ 77 15.1884 626 0 1 -54.7357 -35.9736 -204.85
+ 77 37.4601 707 0 0 -56.6627 -38.5085 -205.85
+ 77 58.2205 611 0 1 -57.7759 -40.0164 -204.85
+ 77 63.9911 697 0 0 -56.3583 -40.5329 -205.85
+ 77 31.279 620 0 1 -55.9624 -40.5415 -204.85
+ 77 9.29492 765 3 0 -38.9602 -27.05 -116.207
+ 77 379.01 692 2 1 -41.5605 -24.8514 -144.45
+ 77 99.8581 691 2 1 -41.6502 -24.8342 -144.719
+ 77 204.868 776 2 0 -42.0431 -24.7204 -145.85
+ 77 121.988 634 1 1 -53.0597 -21.7599 -174.45
+ 77 62.5057 633 1 1 -53.25 -21.8071 -174.755
+ 77 92.6063 790 1 0 -53.9236 -22.0314 -175.85
+ 77 126.798 789 1 0 -53.9768 -22.05 -175.936
+ 77 106.579 534 0 1 -73.0863 -29.2462 -204.45
+ 77 5.97383 533 0 1 -73.25 -29.1478 -204.835
+ 77 29.4761 755 0 0 -73.7224 -28.8763 -205.85
+ 77 125.128 756 0 0 -73.7683 -28.85 -205.946
+ 77 10.6154 866 0 0 -106.919 -6.6832 -206.25
+ 77 94.8443 867 0 0 -106.955 -6.64957 -206.222
+ 77 90.2178 868 0 0 -107.195 -6.45 -206.053
+ 77 3.9199 869 0 0 -107.441 -6.24996 -205.861
+ 77 7.49135 358 0 1 -108.538 -5.16052 -204.85
+ 77 156.103 357 0 1 -108.55 -5.1488 -204.84
+ 77 255.091 356 0 1 -108.75 -4.88663 -204.64
+ 77 58.6852 873 0 0 -108.45 -5.35075 -205.85
+ 77 83.5205 872 0 0 -108.402 -5.45 -206.014
+ 77 30.6218 477 0 1 -84.65 -15.8081 -204.824
+ 77 158.587 775 2 0 -41.6425 -24.8511 -145.85
+ 77 226.882 680 1 1 -43.884 -23.7775 -174.45
+ 77 233.295 782 1 0 -43.7263 -23.5212 -175.85
+ 77 175.326 798 0 0 -38.1071 -20.4205 -205.85
+ 77 157.827 775 1 0 -43.9383 -24.998 -175.85
+ 77 73.9956 770 1 0 -43.8631 -26.0141 -175.851
+ 77 51.488 769 1 0 -43.8609 -26.05 -176.094
+ 77 136.524 678 0 1 -44.3903 -30.3915 -204.45
+ 77 94.1416 747 0 0 -44.496 -30.607 -205.85
+ 77 22.825 746 0 0 -44.5173 -30.65 -206.164
+ 77 287.056 764 1 0 -38.8193 -27.1911 -175.85
+ 77 103.7 765 0 0 -39.0573 -26.9992 -205.85
+ 77 31.7461 1772 7 1 174.725 6.84924 5.55
+ 77 238.898 1773 7 1 174.75 6.85539 5.4927
+ 77 148.153 389 1 0 -62.3586 -102.198 -176.25
+ 77 261.027 388 1 0 -62.29 -102.35 -175.998
+ 77 212.986 764 0 0 -38.785 -27.1615 -205.85
+ 77 22.8408 707 5 1 -38.6499 -27.1172 -54.4585
+Number of digits in this event = 57
+Using G4ParticleGun ...
+8.9016 LIN
gamma
Event: 78
-Number of tracker hits in this event = 2
- 78 31.5548 1208 0 1 61.85 104.507 -204.669
- 78 166.805 1207 0 1 61.6498 104.459 -204.528
-Number of digits in this event = 3
+Number of tracker hits in this event = 37
+ 78 196.82 256 7 1 -128.813 63.5128 5.55
+ 78 254.075 1217 7 0 -128.812 63.5112 4.15
+ 78 246.012 256 6 1 -128.805 63.4749 -24.45
+ 78 326.092 1217 6 0 -128.806 63.4735 -25.85
+ 78 220.893 256 5 1 -128.825 63.4472 -54.45
+ 78 152.051 1216 5 0 -128.823 63.4451 -55.85
+ 78 500.373 256 4 1 -128.783 63.4099 -84.45
+ 78 103.245 1216 4 0 -128.781 63.4078 -85.85
+ 78 638.807 256 3 1 -128.757 63.3721 -114.45
+ 78 130.249 1216 3 0 -128.758 63.3726 -115.85
+ 78 568.056 256 2 1 -128.774 63.3823 -144.45
+ 78 275.869 1216 2 0 -128.775 63.3816 -145.85
+ 78 314.66 256 1 1 -128.809 63.3636 -174.45
+ 78 123.11 1216 1 0 -128.813 63.3624 -175.85
+ 78 256.208 256 0 1 -128.904 63.3439 -204.45
+ 78 106.546 1216 0 0 -128.911 63.3438 -205.85
+ 78 74.9288 693 0 0 -124.455 -41.2997 -206.25
+ 78 119.799 1217 5 0 -128.842 63.5362 -55.85
+ 78 150.012 1217 4 0 -128.857 63.5496 -85.85
+ 78 462.796 1217 3 0 -128.863 63.5958 -115.85
+ 78 256.502 1218 2 0 -128.891 63.7071 -145.85
+ 78 144.402 1218 1 0 -128.88 63.8064 -175.85
+ 78 133.445 1219 0 0 -128.8 63.9223 -205.85
+ 78 18.4513 301 0 1 -119.901 94.996 -204.85
+ 78 30.738 1457 4 0 -109.401 111.599 -86.25
+ 78 156.179 255 1 1 -128.997 63.5541 -174.45
+ 78 161.781 1217 1 0 -129.009 63.5565 -175.85
+ 78 123.475 254 0 1 -129.297 63.6074 -204.45
+ 78 130.163 1217 0 0 -129.317 63.6162 -205.85
+ 78 52.5778 931 4 0 -155.189 6.44018 -86.25
+ 78 22.4449 932 4 0 -155.167 6.45008 -86.2265
+ 78 72.8506 661 4 0 -107.238 -47.7966 -86.2499
+ 78 228.951 259 1 1 -128.241 63.2423 -174.45
+ 78 283.965 1215 1 0 -128.205 63.2399 -175.85
+ 78 153.4 264 0 1 -127.249 63.1404 -204.45
+ 78 142.025 1215 0 0 -127.198 63.1342 -205.85
+ 78 173.235 255 3 1 -128.95 63.6772 -114.47
+Number of digits in this event = 32
Using G4ParticleGun ...
-7.79955 LIN
+7.37273 LIN
gamma
Event: 79
-Number of tracker hits in this event = 29
- 79 225.991 617 3 1 -56.507 -11.6458 -114.45
- 79 227.797 842 3 0 -56.5063 -11.6455 -115.85
- 79 253.46 617 2 1 -56.4958 -11.6392 -144.45
- 79 245.034 842 2 0 -56.4961 -11.6417 -145.85
- 79 509.169 617 1 1 -56.5058 -11.6867 -174.45
- 79 167.968 841 1 0 -56.5066 -11.691 -175.85
- 79 277.467 617 0 1 -56.5169 -11.7797 -204.45
- 79 248.229 841 0 0 -56.5178 -11.7832 -205.85
- 79 193.754 846 1 1 -10.85 85.2201 -174.541
- 79 181.888 1220 1 0 -37.4299 64.25 -176.048
- 79 100.73 845 1 1 -10.85 85.4205 -174.592
- 79 142.603 638 1 1 -52.4146 -55.4947 -174.45
- 79 14.7706 637 1 1 -52.45 -55.4575 -174.478
- 79 240.109 618 1 1 -56.45 -11.6433 -174.626
- 79 304.006 842 1 0 -55.9092 -11.65 -176.033
- 79 80.8436 669 0 1 -46.1518 -9.42516 -204.45
- 79 107.057 670 0 1 -46.05 -9.61118 -204.617
- 79 34.6715 844 0 0 -45.3945 -11.1888 -205.85
- 79 367.338 843 0 0 -45.3566 -11.2501 -205.902
- 79 143.138 842 0 0 -45.226 -11.4504 -206.078
- 79 5.32311 843 1 0 -56.4512 -11.45 -176.226
- 79 106.778 620 0 1 -55.9135 -7.96328 -204.45
- 79 107.722 621 0 1 -55.85 -7.9761 -204.704
- 79 143.402 860 0 0 -55.5371 -8.01352 -205.85
- 79 103.687 856 0 0 -56.1956 -8.73024 -205.85
- 79 93.4905 855 0 0 -56.1503 -8.85004 -205.887
- 79 97.3646 523 2 1 -75.3411 16.0147 -144.85
- 79 277.192 522 2 1 -75.4508 16.1252 -144.611
- 79 7.71389 521 2 1 -75.65 16.0073 -144.68
-Number of digits in this event = 21
+Number of tracker hits in this event = 54
+ 79 203.891 1420 5 1 104.28 -31.81 -54.45
+ 79 327.151 741 5 0 104.28 -31.8105 -55.85
+ 79 271.044 1420 4 1 104.273 -31.827 -84.45
+ 79 95.0081 741 4 0 104.273 -31.8279 -85.85
+ 79 127.612 1420 3 1 104.26 -31.8449 -114.45
+ 79 124.736 741 3 0 104.26 -31.8458 -115.85
+ 79 133.064 1420 2 1 104.265 -31.8611 -144.45
+ 79 108.682 740 2 0 104.265 -31.8649 -145.85
+ 79 131.379 1420 1 1 104.263 -31.9457 -174.45
+ 79 142.168 740 1 0 104.264 -31.9494 -175.85
+ 79 583.653 1420 0 1 104.285 -32.0229 -204.45
+ 79 114.047 740 0 0 104.285 -32.0256 -205.85
+ 79 33.5451 1443 7 0 90.4113 108.75 3.99828
+ 79 273.397 1444 7 0 90.4066 108.95 4.10737
+ 79 110.155 1445 7 0 90.3836 109.15 3.88397
+ 79 152.362 1419 0 1 104.124 -32.0515 -204.45
+ 79 3.99001 1142 4 1 48.65 110.769 -84.5655
+ 79 12.1114 478 0 0 115.163 -84.3326 -206.25
+ 79 111.214 477 0 0 115.19 -84.45 -206.068
+ 79 94.5885 1477 0 1 115.594 -85.0708 -204.85
+ 79 55.8651 486 0 0 115.891 -82.6894 -205.85
+ 79 179.761 487 0 0 115.892 -82.65 -205.911
+ 79 76.1343 1421 0 1 104.35 -32.0787 -204.469
+ 79 57.4368 1422 0 1 104.55 -32.1723 -204.536
+ 79 58.9972 1423 0 1 104.752 -32.2574 -204.624
+ 79 175.975 1424 0 1 104.95 -32.3393 -204.727
+ 79 12.1642 1425 0 1 105.15 -32.4253 -204.829
+ 79 147.584 735 0 0 107.114 -32.9989 -205.85
+ 79 167.906 734 0 0 107.32 -33.05 -205.922
+ 79 125.976 733 0 0 107.673 -33.2501 -206.04
+ 79 96.7246 732 0 0 107.996 -33.45 -206.114
+ 79 150.806 731 0 0 108.31 -33.65 -206.135
+ 79 327.484 730 0 0 108.794 -33.85 -206.161
+ 79 310.119 729 0 0 109.619 -34.05 -206.071
+ 79 120.249 728 0 0 110.407 -34.2501 -205.899
+ 79 127.42 727 0 0 110.809 -34.45 -205.978
+ 79 99.3685 726 0 0 111.126 -34.65 -206.102
+ 79 11.1739 725 0 0 111.512 -34.85 -206.246
+ 79 139.674 742 4 0 104.313 -31.6477 -85.85
+ 79 162.987 1422 3 1 104.584 -31.2299 -114.45
+ 79 155.57 744 3 0 104.617 -31.2185 -115.85
+ 79 117.416 1425 2 1 105.254 -30.8827 -144.45
+ 79 197.516 745 2 0 105.265 -30.867 -145.85
+ 79 148.643 1426 1 1 105.456 -30.5697 -174.45
+ 79 125.894 747 1 0 105.469 -30.5539 -175.85
+ 79 103.869 1427 0 1 105.717 -30.2476 -204.45
+ 79 232.246 749 0 0 105.745 -30.2175 -205.85
+ 79 88.779 830 1 1 -13.85 106.125 -174.672
+ 79 45.7114 746 2 0 105.183 -30.85 -146.191
+ 79 120.793 235 2 0 93.1994 -133.039 -146.25
+ 79 197.532 1430 0 1 106.345 -30.0792 -204.45
+ 79 80.3423 1431 0 1 106.372 -29.9844 -204.45
+ 79 102.022 1432 0 1 106.55 -30.0315 -204.53
+ 79 35.1247 1433 0 1 106.75 -30.1518 -204.514
+Number of digits in this event = 32
Using G4ParticleGun ...
-6.5701 LIN
+8.13068 LIN
gamma
Event: 80
-Number of tracker hits in this event = 3
- 80 11.6505 1466 1 1 113.35 -49.8065 -174.714
- 80 247.193 1133 2 0 -2.22878 46.6771 -146.25
- 80 105.692 1134 2 0 -2.00595 46.8504 -146.194
-Number of digits in this event = 4
+Number of tracker hits in this event = 93
+ 80 245.642 1192 9 1 58.4657 92.9532 65.55
+ 80 286.528 1364 9 0 58.4645 92.9527 64.15
+ 80 125.599 1191 8 1 58.4455 92.928 35.55
+ 80 316.98 1363 8 0 58.4456 92.9265 34.15
+ 80 253.934 1192 7 1 58.4606 92.8871 5.55
+ 80 281.83 1363 7 0 58.4608 92.8854 4.15
+ 80 271.3 1192 6 1 58.463 92.8449 -24.45
+ 80 296.257 1363 6 0 58.5294 92.803 -25.8501
+ 80 59.2867 1200 5 1 60.1657 92.5693 -54.45
+ 80 46.6691 1201 5 1 60.25 92.5767 -54.6688
+ 80 162.317 1362 5 0 60.719 92.6246 -55.85
+ 80 123.614 1255 4 1 71.0793 96.2976 -84.45
+ 80 27.0786 1254 4 1 71.05 96.2326 -84.759
+ 80 84.0898 1379 4 0 70.9093 96.0363 -85.85
+ 80 15.2506 1378 4 0 70.8881 95.95 -86.2057
+ 80 150.005 1244 3 1 68.9851 87.5128 -114.451
+ 80 19.4158 1331 3 0 68.7714 86.3061 -115.85
+ 80 96.1084 1330 3 0 68.7615 86.25 -115.915
+ 80 58.6975 1329 3 0 68.7229 86.0497 -116.133
+ 80 154.399 1237 2 1 67.4576 60.8583 -144.45
+ 80 102.988 1238 2 1 67.65 60.7941 -144.611
+ 80 37.6997 1239 2 1 67.85 60.708 -144.786
+ 80 79.2862 1200 2 0 69.0133 60.1338 -145.85
+ 80 152.698 1199 2 0 69.1618 60.05 -145.982
+ 80 0.192525 1198 2 0 69.4324 59.85 -146.249
+ 80 108.148 1369 1 1 94.0303 37.2313 -174.45
+ 80 23.2161 1083 1 0 94.0963 36.6767 -175.85
+ 80 150.316 1082 1 0 94.0995 36.65 -175.915
+ 80 47.355 1199 1 0 47.3298 60.0163 -176.25
+ 80 164.504 1200 1 0 47.2837 60.0505 -176.219
+ 80 134.235 1201 1 0 46.9291 60.25 -176.035
+ 80 32.2313 1121 1 1 44.3583 61.0292 -174.85
+ 80 57.4767 1120 1 1 44.25 61.0598 -174.799
+ 80 56.3243 1119 1 1 44.05 61.1211 -174.685
+ 80 62.3009 1118 1 1 43.85 61.1913 -174.562
+ 80 120.105 1202 2 0 37.4147 60.6126 -146.25
+ 80 385.487 1085 2 1 37.1948 60.544 -144.85
+ 80 75.4999 1086 2 1 37.4441 61.031 -144.45
+ 80 67.0897 1087 2 1 37.45 61.0164 -144.455
+ 80 96.9102 920 1 0 -13.5887 4.24899 -176.25
+ 80 114.042 1192 8 1 58.4677 92.9398 35.55
+ 80 184.812 1193 5 1 58.6965 92.9535 -54.45
+ 80 137.547 1363 5 0 58.6906 92.9469 -55.85
+ 80 182.461 1192 4 1 58.5545 92.793 -84.45
+ 80 178.853 1363 4 0 58.5441 92.7828 -85.85
+ 80 118.177 1191 3 1 58.364 92.5446 -114.45
+ 80 108.551 1361 3 0 58.3559 92.5355 -115.85
+ 80 106.155 1190 2 1 58.1677 92.3555 -144.45
+ 80 136.934 1360 2 0 58.1623 92.3436 -145.85
+ 80 122.11 1189 1 1 58.0396 92.1078 -174.45
+ 80 168.08 1359 1 0 58.0314 92.0931 -175.85
+ 80 182.819 1189 0 1 57.8932 91.7754 -204.45
+ 80 102.608 1358 0 0 57.8929 91.7615 -205.85
+ 80 134.211 1190 1 1 58.0844 92.1016 -174.45
+ 80 76.2416 1358 1 0 58.4131 91.9451 -175.85
+ 80 121.502 1398 1 0 85.346 99.7674 -176.25
+ 80 103.78 1330 1 1 86.0523 99.7744 -174.85
+ 80 54.9708 1396 2 0 87.1705 99.5283 -146.25
+ 80 6.57476 1397 2 0 87.1965 99.55 -146.206
+ 80 45.1433 1643 2 0 146.025 148.911 -146.25
+ 80 103.953 1644 2 0 146.096 148.95 -146.193
+ 80 180.435 1645 2 0 146.085 149.15 -146.128
+ 80 115.877 1359 2 0 62.1851 92.15 -146.198
+ 80 42.066 1358 2 0 62.0399 91.95 -145.922
+ 80 216.846 1206 2 1 61.3644 91.0438 -144.85
+ 80 108.929 1205 2 1 61.2496 91.3521 -144.515
+ 80 228.334 1204 2 1 61.0496 91.3045 -144.52
+ 80 252.357 1370 5 0 58.2868 94.2141 -55.85
+ 80 25.9853 1371 5 0 58.0617 94.35 -56.0418
+ 80 235.453 1192 3 1 58.4707 92.7716 -114.45
+ 80 356.806 1363 3 0 58.4695 92.7702 -115.85
+ 80 224.855 1192 2 1 58.4694 92.7397 -144.45
+ 80 230.502 1362 2 0 58.47 92.7443 -145.85
+ 80 366.254 1192 1 1 58.4604 92.865 -174.45
+ 80 152.284 1363 1 0 58.4505 92.8721 -175.85
+ 80 133.657 1191 0 1 58.2583 93.0251 -204.45
+ 80 113.584 1364 0 0 58.2451 93.037 -205.85
+ 80 237.612 1362 1 0 58.7943 92.7091 -175.85
+ 80 106.668 1227 0 1 65.4736 89.0142 -204.45
+ 80 104.026 1343 0 0 65.3882 88.8416 -205.85
+ 80 52.5077 1415 1 0 55.8297 103.256 -176.25
+ 80 89.5362 1416 1 0 55.7077 103.35 -176.086
+ 80 147.058 1171 1 1 54.3278 103.659 -174.85
+ 80 151.927 1170 1 1 54.25 103.716 -174.756
+ 80 108.363 1193 1 1 58.7441 92.6371 -174.45
+ 80 113.117 1194 0 1 58.9815 92.6789 -204.45
+ 80 110.881 1362 0 0 58.9937 92.6796 -205.85
+ 80 39.0089 726 5 0 -104.453 -34.7055 -56.25
+ 80 79.079 376 5 1 -104.873 -34.784 -54.8496
+ 80 203.363 375 5 1 -104.95 -34.7238 -54.6517
+ 80 145.285 374 5 1 -105.15 -34.5696 -54.6992
+ 80 19.7494 1082 3 1 36.6169 158.114 -114.85
+ 80 19.7205 1215 0 0 156.955 63.1784 -206.25
+Number of digits in this event = 47
Using G4ParticleGun ...
-3.67378 LIN
+1.56945 LIN
gamma
Event: 81
-Number of tracker hits in this event = 6
- 81 201.165 307 0 1 -118.565 -54.1931 -204.45
- 81 373.165 629 0 0 -118.569 -54.1959 -205.85
- 81 82.6191 362 4 0 -71.8655 -107.66 -86.25
- 81 68.7236 361 4 0 -71.7888 -107.75 -86.0278
- 81 81.2432 543 4 1 -71.3998 -108.075 -84.8496
- 81 86.4763 544 4 1 -71.2499 -108.063 -84.6481
-Number of digits in this event = 4
+Number of tracker hits in this event = 48
+ 81 308.126 1576 6 1 135.464 44.107 -24.45
+ 81 211.674 1120 6 0 135.458 44.1148 -25.85
+ 81 114.452 1576 5 1 135.369 44.266 -54.45
+ 81 111.499 1121 5 0 135.37 44.2721 -55.85
+ 81 284.488 1575 4 1 135.259 44.4457 -84.45
+ 81 108.595 1122 4 0 135.259 44.4508 -85.85
+ 81 150.718 1575 3 1 135.249 44.5569 -114.45
+ 81 114.27 1122 3 0 135.247 44.5505 -115.85
+ 81 126.683 1575 2 1 135.213 44.4157 -144.45
+ 81 104.859 1121 2 0 135.219 44.4102 -145.85
+ 81 115.018 1576 1 1 135.368 44.2923 -174.45
+ 81 93.4451 1121 1 0 135.375 44.2837 -175.85
+ 81 144.117 1576 0 1 135.517 44.0923 -204.45
+ 81 150.264 1120 0 0 135.529 44.0914 -205.85
+ 81 10.0996 1741 0 1 168.451 31.8779 -204.45
+ 81 158.861 1577 5 1 135.611 43.7013 -54.45
+ 81 144.081 1118 5 0 135.62 43.6933 -55.85
+ 81 137.004 1577 4 1 135.71 43.4956 -84.45
+ 81 138.216 1116 4 0 135.605 43.398 -85.85
+ 81 105.914 1566 3 1 133.512 41.4791 -114.45
+ 81 141.655 1106 3 0 133.406 41.389 -115.85
+ 81 176.171 1553 2 1 130.833 39.2087 -144.45
+ 81 184.992 1095 2 0 130.69 39.1021 -145.85
+ 81 122.195 1537 1 1 127.691 36.9399 -174.45
+ 81 153.801 1083 1 0 127.557 36.7645 -175.85
+ 81 312.119 1523 0 1 124.943 33.0315 -204.45
+ 81 339.547 1063 0 0 124.87 32.8149 -205.85
+ 81 22.0845 1058 0 0 124.89 31.7063 -205.85
+ 81 34.3073 1057 0 0 124.894 31.65 -205.897
+ 81 183.186 1527 0 1 125.643 32.1292 -204.85
+ 81 177.789 1528 0 1 125.75 32.3479 -204.615
+ 81 198.585 1539 0 1 128.105 35.5287 -204.45
+ 81 119.373 1538 0 1 127.95 35.412 -204.686
+ 81 77.4719 1076 0 0 127.053 35.4207 -205.85
+ 81 225.674 1077 0 0 126.911 35.4502 -206.001
+ 81 87.6458 1078 0 0 126.317 35.6501 -206.229
+ 81 52.6743 1079 0 0 126.038 35.85 -206.174
+ 81 68.5862 1080 0 0 125.988 36.05 -206.075
+ 81 95.8982 1081 0 0 125.983 36.2502 -205.928
+ 81 70.9321 1082 0 0 125.978 36.4501 -205.96
+ 81 65.9634 1083 0 0 125.997 36.65 -205.975
+ 81 61.4009 1084 0 0 126.055 36.85 -206.014
+ 81 91.6419 1085 0 0 126.2 37.05 -205.962
+ 81 16.9601 1086 0 0 126.448 37.25 -205.877
+ 81 1.69691 1536 0 1 127.54 38.5243 -204.85
+ 81 128.826 1537 0 1 127.55 38.5368 -204.84
+ 81 52.1413 1540 0 1 128.15 39.0499 -204.715
+ 81 172.337 1096 0 0 128.349 39.3174 -205.85
+Number of digits in this event = 25
Using G4ParticleGun ...
-3.18812 LIN
+3.38767 LIN
gamma
Event: 82
-Number of tracker hits in this event = 42
- 82 326.973 1463 6 1 112.911 -2.92159 -24.45
- 82 554.851 885 6 0 112.917 -2.90289 -25.85
- 82 115.814 1464 5 1 112.956 -2.42094 -54.45
- 82 113.366 888 5 0 112.966 -2.3844 -55.85
- 82 342.951 1463 4 1 112.861 -1.91704 -84.45
- 82 104.032 890 4 0 112.83 -1.87406 -85.8501
- 82 172.629 1459 3 1 112.075 -1.12917 -114.45
- 82 117.55 894 3 0 112.03 -1.10653 -115.85
- 82 165.393 1454 2 1 111.113 -1.0434 -144.45
- 82 71.2661 893 2 0 111.141 -1.39458 -145.85
- 82 61.8396 892 2 0 111.147 -1.45026 -146.071
- 82 118.645 1458 1 1 111.902 -9.04647 -174.45
- 82 109.092 852 1 0 111.859 -9.50946 -175.85
- 82 2.66439 851 1 0 111.844 -9.65004 -176.241
- 82 155.941 1452 0 1 110.644 -20.5604 -204.45
- 82 164.268 794 0 0 110.649 -21.0581 -205.85
- 82 34.7497 905 1 0 110.006 1.13799 -175.85
- 82 324.091 627 1 0 105.926 -54.5136 -176.25
- 82 29.7743 626 1 0 105.722 -54.6503 -175.99
- 82 182.569 628 1 0 105.423 -54.45 -176.025
- 82 182.676 780 1 0 105.776 -24.0235 -176.25
- 82 216.744 779 1 0 105.829 -24.05 -176.058
- 82 99.6732 778 1 0 106.622 -24.25 -176.087
- 82 313.647 1433 1 1 106.854 -23.9681 -174.85
- 82 12.7948 1434 1 1 106.95 -24.0116 -174.758
- 82 16.3127 1462 3 1 112.623 -1.06808 -114.45
- 82 120.329 1463 5 1 112.924 -2.93727 -54.45
- 82 102.421 885 5 0 112.923 -2.9393 -55.85
- 82 180.056 885 4 0 112.899 -2.9667 -85.85
- 82 125.22 1463 3 1 112.886 -2.95212 -114.45
- 82 143.433 885 3 0 112.89 -2.94073 -115.85
- 82 130.683 1464 2 1 112.983 -2.69315 -144.45
- 82 159.455 886 2 0 112.982 -2.67499 -145.85
- 82 291.073 1464 1 1 112.97 -2.29218 -174.45
- 82 139.962 888 1 0 112.976 -2.27341 -175.85
- 82 192.155 1464 0 1 113.094 -1.87587 -204.45
- 82 148.026 890 0 0 113.09 -1.86099 -205.85
- 82 308.974 757 1 0 -31.3833 -28.45 -176.226
- 82 398.871 814 2 0 134.835 -17.0946 -146.25
- 82 150.276 813 2 0 134.97 -17.25 -146.125
- 82 59.506 815 2 0 135.325 -17.05 -146.044
- 82 31.3531 884 4 0 112.782 -3.05 -86.2105
-Number of digits in this event = 27
+Number of tracker hits in this event = 28
+ 82 258.458 870 3 1 -5.85705 90.2998 -114.45
+ 82 240.566 1350 3 0 -5.85648 90.3008 -115.85
+ 82 190.58 871 2 1 -5.84377 90.3235 -144.45
+ 82 244.886 1350 2 0 -5.84212 90.3251 -145.85
+ 82 141.444 871 1 1 -5.80658 90.3617 -174.45
+ 82 304.309 1351 1 0 -5.804 90.3593 -175.85
+ 82 109.36 871 0 1 -5.75465 90.3161 -204.45
+ 82 116.364 1350 0 0 -5.75265 90.3134 -205.85
+ 82 409.97 864 2 1 -7.19919 89.5324 -144.45
+ 82 122.188 1347 2 0 -7.18821 89.5985 -145.85
+ 82 123.592 864 1 1 -7.06873 91.0172 -174.45
+ 82 176.279 1354 1 0 -7.04053 91.0258 -175.85
+ 82 125.933 867 0 1 -6.53548 91.317 -204.45
+ 82 147 1355 0 0 -6.55815 91.3386 -205.85
+ 82 51.819 792 0 0 73.39 -21.45 -206.159
+ 82 70.4875 791 0 0 73.5246 -21.65 -206.149
+ 82 223.851 1351 2 0 -7.28391 90.35 -146.026
+ 82 128.903 867 1 1 -6.62295 100.805 -174.45
+ 82 32.0089 1409 1 0 -6.67999 102.071 -175.85
+ 82 99.6826 1410 1 0 -6.68451 102.15 -175.932
+ 82 32.5394 1411 1 0 -6.67429 102.35 -176.165
+ 82 68.0014 1491 1 0 -13.4005 118.477 -176.25
+ 82 265.688 1492 1 0 -13.5609 118.55 -176.116
+ 82 196.53 1493 1 0 -14.3033 118.75 -175.929
+ 82 40.1616 1494 1 0 -14.5954 118.95 -176.147
+ 82 89.835 892 12 0 142.961 -1.61718 153.75
+ 82 61.9086 891 12 0 142.893 -1.65003 153.807
+ 82 93.6042 865 2 1 -7.05 89.5931 -144.589
+Number of digits in this event = 18
Using G4ParticleGun ...
-7.29004 LIN
+5.81359 LIN
gamma
Event: 83
-Number of tracker hits in this event = 3
- 83 268.976 994 0 1 18.9805 93.283 -204.45
- 83 274.553 1365 0 0 18.9821 93.2841 -205.85
- 83 17.6774 1149 13 0 17.5465 50.0163 183.75
-Number of digits in this event = 4
+Number of tracker hits in this event = 43
+ 83 239.086 1398 7 1 99.8038 22.5627 5.55
+ 83 205.922 1012 7 0 99.8032 22.5563 4.15
+ 83 219.183 1398 6 1 99.7991 22.3995 -24.45
+ 83 128.498 1011 6 0 99.7996 22.3963 -25.85
+ 83 251.736 1398 5 1 99.821 22.3353 -54.45
+ 83 155.247 1011 5 0 99.8292 22.3354 -55.85
+ 83 117.149 1399 4 1 100.013 22.3253 -84.45
+ 83 188.278 1011 4 0 100.023 22.3314 -85.85
+ 83 113.147 1399 3 1 100.126 22.4905 -114.45
+ 83 122.58 1012 3 0 100.123 22.5003 -115.85
+ 83 139.196 1399 2 1 100.132 22.6602 -144.45
+ 83 222.732 1013 2 0 100.145 22.663 -145.85
+ 83 105.722 1401 1 1 100.454 22.7257 -174.45
+ 83 295.55 1013 1 0 100.486 22.739 -175.85
+ 83 242.847 1404 0 1 101.145 23.002 -204.45
+ 83 471.391 1405 0 1 101.15 23.0012 -204.79
+ 83 136.015 1014 0 0 101.164 22.9993 -205.85
+ 83 11.3233 1015 0 0 101.238 23.2414 -205.85
+ 83 273.99 1016 0 0 101.237 23.25 -205.898
+ 83 128.401 1017 0 0 101.602 23.4501 -205.918
+ 83 138.417 120 8 0 -63.7975 -155.95 33.9159
+ 83 208.526 1043 4 0 100.346 28.8228 -86.2498
+ 83 6.6784 1618 1 0 89.0057 143.83 -176.25
+ 83 138.68 1012 0 0 101.212 22.5656 -205.85
+ 83 34.9899 1117 5 0 93.2479 43.6291 -56.25
+ 83 98.0103 1118 5 0 93.2435 43.65 -56.1162
+ 83 413.227 1366 5 1 93.4606 44.9105 -54.85
+ 83 182.387 1365 5 1 93.35 45.5835 -54.6579
+ 83 130.383 1012 6 0 99.813 22.5859 -25.85
+ 83 106.646 1012 5 0 99.8251 22.6454 -55.85
+ 83 100.834 1398 4 1 99.8223 22.7651 -84.45
+ 83 146.834 1013 4 0 99.822 22.7689 -85.85
+ 83 121.939 1398 3 1 99.8377 22.8171 -114.45
+ 83 116.475 1013 3 0 99.8415 22.8177 -115.85
+ 83 172.774 1398 2 1 99.9125 22.8251 -144.45
+ 83 116.252 1399 1 1 100.03 22.8324 -174.45
+ 83 158.049 1400 0 1 100.171 22.8402 -204.45
+ 83 169.763 1013 0 0 100.458 22.7301 -205.85
+ 83 318.241 582 0 0 -13.849 -63.6076 -206.25
+ 83 50.7075 581 0 0 -14.1229 -63.6506 -206.022
+ 83 34.7512 1395 0 1 99.35 23.0755 -204.5
+ 83 120.374 1398 0 1 99.7864 22.8783 -204.45
+ 83 49.4791 1397 0 1 99.75 22.9476 -204.698
+Number of digits in this event = 32
Using G4ParticleGun ...
-6.16269 LIN
+9.14919 LIN
gamma
Event: 84
-Number of tracker hits in this event = 18
- 84 302.546 1332 3 1 86.5224 -67.5961 -114.45
- 84 215.419 562 3 0 86.5231 -67.5959 -115.85
- 84 144.037 1332 2 1 86.5335 -67.5928 -144.45
- 84 216.563 562 2 0 86.5363 -67.5924 -145.85
- 84 163.035 1332 1 1 86.5886 -67.5826 -174.45
- 84 115.102 562 1 0 86.5925 -67.5812 -175.85
- 84 119.449 1333 0 1 86.6711 -67.5488 -204.45
- 84 134.099 562 0 0 86.6747 -67.5471 -205.85
- 84 45.2419 428 6 1 -94.35 -175.674 -24.7875
- 84 47.578 565 0 0 88.7661 -66.9257 -205.85
- 84 175.91 566 0 0 88.9061 -66.85 -205.903
- 84 77.4075 567 0 0 88.9188 -66.65 -206.016
- 84 245.656 1343 0 1 88.7487 -66.9537 -204.85
- 84 107.595 1334 2 1 86.9559 -67.6341 -144.45
- 84 214.721 1337 1 1 87.5413 -67.7933 -174.45
- 84 151.657 561 1 0 87.5697 -67.8011 -175.85
- 84 164.78 1340 0 1 88.2022 -67.9161 -204.45
- 84 128.479 560 0 0 88.205 -67.9163 -205.85
-Number of digits in this event = 14
+Number of tracker hits in this event = 29
+ 84 192.109 726 5 1 -34.7624 12.2094 -54.45
+ 84 320.531 960 5 0 -34.762 12.2102 -55.85
+ 84 323.191 726 4 1 -34.7469 12.2209 -84.45
+ 84 235.813 960 4 0 -34.7459 12.2204 -85.85
+ 84 237.796 726 3 1 -34.7211 12.2108 -114.45
+ 84 246.264 960 3 0 -34.7193 12.2123 -115.85
+ 84 127.353 726 2 1 -34.69 12.2453 -144.45
+ 84 260.47 960 2 0 -34.6887 12.2467 -145.85
+ 84 117.1 726 1 1 -34.6633 12.279 -174.45
+ 84 125.666 961 1 0 -34.6608 12.2787 -175.85
+ 84 136.784 727 0 1 -34.5969 12.2814 -204.45
+ 84 217.184 961 0 0 -34.5905 12.2806 -205.85
+ 84 163.481 980 0 0 -10.8047 16.0979 -206.25
+ 84 8.95287 852 0 1 -9.46975 16.499 -204.849
+ 84 108.97 853 0 1 -9.45 16.5055 -204.825
+ 84 214.128 854 0 1 -9.24942 16.5557 -204.56
+ 84 8.00341 855 0 1 -9.04009 16.7041 -204.45
+ 84 43.4511 988 0 0 -9.09784 17.7768 -205.85
+ 84 66.7071 989 0 0 -9.08471 17.85 -206.02
+ 84 102.671 849 0 1 -10.25 10.5581 -204.642
+ 84 147.09 850 0 1 -10.05 10.6282 -204.636
+ 84 118.488 727 2 1 -34.5684 12.2204 -144.45
+ 84 120.655 727 1 1 -34.454 12.1607 -174.45
+ 84 121.033 960 1 0 -34.4494 12.1557 -175.85
+ 84 183.608 728 0 1 -34.3566 12.0557 -204.45
+ 84 109.677 959 0 0 -34.3518 12.0486 -205.85
+ 84 37.5621 35 3 1 -172.99 -154.46 -114.85
+ 84 33.3969 127 3 0 -172.54 -154.59 -115.85
+ 84 157.143 128 3 0 -172.494 -154.55 -115.882
+Number of digits in this event = 20
Using G4ParticleGun ...
-4.53703 LIN
+4.70614 LIN
gamma
Event: 85
-Number of tracker hits in this event = 1
- 85 13.3156 1571 14 0 58.8531 134.468 213.75
-Number of digits in this event = 2
+Number of tracker hits in this event = 0
+Number of digits in this event = 1
Using G4ParticleGun ...
-2.48753 LIN
+4.96927 LIN
gamma
Event: 86
-Number of tracker hits in this event = 11
- 86 76.8165 1077 0 1 35.6498 131.384 -204.45
- 86 189.006 1078 0 1 35.65 131.383 -204.615
- 86 232.488 1556 0 0 35.6522 131.382 -205.85
- 86 62.8582 395 2 1 -100.95 70.3416 -144.606
- 86 211.034 394 2 1 -101.15 70.3473 -144.475
- 86 153.995 1097 8 0 145.669 39.6498 33.75
- 86 132.414 1625 8 1 145.245 39.5517 35.1503
- 86 314.226 1626 8 1 145.35 39.8072 35.4025
- 86 9.32197 1564 0 0 35.8934 133.119 -205.85
- 86 60.1286 1081 0 1 36.2612 133.763 -204.85
- 86 38.9094 1567 0 0 37.1099 133.724 -205.85
-Number of digits in this event = 8
+Number of tracker hits in this event = 267
+ 86 60.6581 861 10 0 -6.70763 -7.6829 93.8504
+ 86 259.496 866 9 1 -6.6954 -7.64296 65.55
+ 86 436.195 861 9 0 -6.8454 -7.70462 64.15
+ 86 3.64079 854 8 1 -9.24074 -9.88019 35.55
+ 86 115.22 853 8 1 -9.25 -9.86071 35.5481
+ 86 127.963 852 8 1 -9.45006 -9.48451 35.502
+ 86 139.853 851 8 1 -9.65016 -9.22579 35.4873
+ 86 126.395 850 8 1 -9.85 -8.92925 35.4504
+ 86 3.3101 847 8 0 -13.1711 -10.45 34.1287
+ 86 225.52 866 6 1 -6.70449 -7.45593 -24.45
+ 86 121.998 863 6 0 -6.6897 -7.44785 -25.85
+ 86 129.311 868 5 1 -6.43212 -7.30895 -54.45
+ 86 310.643 863 5 0 -6.4311 -7.29852 -55.85
+ 86 268.636 868 4 1 -6.33118 -7.08011 -84.45
+ 86 287.773 864 4 0 -6.33209 -7.07299 -85.85
+ 86 98.565 868 3 1 -6.42113 -6.84493 -114.45
+ 86 178.179 866 3 0 -6.41911 -6.82746 -115.85
+ 86 111.186 868 2 1 -6.44256 -6.5332 -144.45
+ 86 11.9447 867 2 1 -6.45 -6.53255 -144.797
+ 86 128.904 867 2 0 -6.47028 -6.52314 -145.85
+ 86 244.06 865 1 1 -6.93701 -6.36118 -174.45
+ 86 123.529 868 1 0 -6.99387 -6.3295 -175.85
+ 86 113.645 859 0 1 -8.1782 -5.64192 -204.45
+ 86 149.604 872 0 0 -8.25407 -5.62524 -205.85
+ 86 85.976 1793 14 0 113.765 178.818 213.75
+ 86 73.011 641 5 0 -59.0578 -51.6612 -56.25
+ 86 96.5421 640 5 0 -59.1125 -51.85 -56.1434
+ 86 237.757 639 5 0 -59.1298 -52.05 -56.0888
+ 86 55.0885 638 5 0 -59.1707 -52.2504 -56.0276
+ 86 55.5524 637 5 0 -59.1974 -52.45 -55.9577
+ 86 46.5945 636 5 0 -59.2544 -52.65 -55.8911
+ 86 109.516 599 5 1 -60.0513 -54.7225 -54.85
+ 86 4.79665 598 5 1 -60.2501 -55.0943 -54.8416
+ 86 67.6892 618 5 0 -61.0344 -56.3352 -55.85
+ 86 91.9214 617 5 0 -61.1647 -56.45 -55.9506
+ 86 94.2668 616 5 0 -61.4761 -56.65 -56.0558
+ 86 31.1134 615 5 0 -61.5943 -56.8504 -56.1784
+ 86 8.3898 1470 3 1 114.334 -66.744 -114.45
+ 86 451.583 862 6 0 -6.69609 -7.4666 -25.85
+ 86 273.691 867 5 1 -6.52276 -7.72578 -54.45
+ 86 138.115 861 5 0 -6.53592 -7.73553 -55.85
+ 86 132.745 866 4 1 -6.81495 -7.90904 -84.45
+ 86 248.762 860 4 0 -6.83457 -7.91777 -85.85
+ 86 128.558 863 3 1 -7.27954 -8.08002 -114.45
+ 86 99.1347 859 3 0 -7.30164 -8.08506 -115.85
+ 86 114.723 861 2 1 -7.78218 -8.15265 -144.45
+ 86 133.929 859 2 0 -7.9493 -8.09772 -145.85
+ 86 116.667 844 1 1 -11.216 -6.9369 -174.45
+ 86 109.214 865 1 0 -11.3142 -6.85554 -175.85
+ 86 157.884 866 1 0 -11.3205 -6.85 -175.949
+ 86 129.285 835 0 1 -12.9925 -5.77226 -204.45
+ 86 59.5691 867 0 0 -12.782 -6.51987 -205.85
+ 86 50.4153 866 0 0 -12.7436 -6.65 -206.063
+ 86 30.5061 873 3 1 -5.32425 -6.68085 -114.451
+ 86 216.543 874 3 1 -5.25 -6.69273 -114.55
+ 86 16.0398 875 3 1 -5.05 -6.72054 -114.802
+ 86 199.752 865 3 0 -4.1943 -6.85076 -115.85
+ 86 185.872 987 2 1 17.4885 -8.23464 -144.45
+ 86 2.9369 988 2 1 17.65 -8.17027 -144.834
+ 86 177.67 860 2 0 18.1066 -7.97984 -145.85
+ 86 101.2 1086 1 1 37.2577 -4.28649 -174.45
+ 86 85.9929 1087 1 1 37.4501 -4.40621 -174.517
+ 86 87.3658 1088 1 1 37.65 -4.54202 -174.597
+ 86 71.813 1089 1 1 37.8501 -4.68937 -174.694
+ 86 41.9939 1090 1 1 38.05 -4.84736 -174.798
+ 86 113.425 864 1 0 40.7122 -7.05 -176.084
+ 86 9.25028 863 1 0 40.9478 -7.25026 -176.232
+ 86 10.7426 808 1 0 146.179 -18.2743 -176.25
+ 86 227.611 809 1 0 146.228 -18.25 -176.228
+ 86 80.0119 810 1 0 146.563 -18.05 -175.999
+ 86 85.3052 1638 1 1 147.777 -16.2062 -174.85
+ 86 85.5506 1639 1 1 147.95 -15.987 -174.736
+ 86 66.5496 1640 1 1 148.15 -15.7594 -174.667
+ 86 68.7234 1641 1 1 148.35 -15.6369 -174.679
+ 86 49.3848 1642 1 1 148.55 -15.5753 -174.723
+ 86 53.8159 1643 1 1 148.75 -15.5556 -174.75
+ 86 54.2329 1644 1 1 148.95 -15.5272 -174.758
+ 86 46.9088 1645 1 1 149.15 -15.5073 -174.779
+ 86 52.4617 1646 1 1 149.35 -15.5168 -174.819
+ 86 48.6849 1647 1 1 149.55 -15.5176 -174.829
+ 86 86.792 1648 1 1 149.75 -15.495 -174.814
+ 86 63.8699 1649 1 1 149.95 -15.4741 -174.824
+ 86 60.2767 1650 1 1 150.15 -15.4877 -174.784
+ 86 59.7041 1651 1 1 150.35 -15.4798 -174.722
+ 86 82.3716 1652 1 1 150.55 -15.4769 -174.681
+ 86 55.8217 1653 1 1 150.75 -15.4676 -174.637
+ 86 63.6439 1654 1 1 150.95 -15.4559 -174.631
+ 86 57.7245 1655 1 1 151.15 -15.4323 -174.619
+ 86 52.3558 1656 1 1 151.35 -15.4314 -174.616
+ 86 55.5415 1657 1 1 151.55 -15.4371 -174.626
+ 86 36.8427 1658 1 1 151.75 -15.4138 -174.613
+ 86 100.228 1659 1 1 151.95 -15.4017 -174.584
+ 86 62.9851 1660 1 1 152.15 -15.3525 -174.564
+ 86 62.6118 1661 1 1 152.35 -15.2898 -174.556
+ 86 59.3052 1662 1 1 152.55 -15.2424 -174.555
+ 86 62.4515 1663 1 1 152.75 -15.1632 -174.498
+ 86 100.379 1664 1 1 152.95 -15.0585 -174.477
+ 86 44.925 1665 1 1 153.15 -14.9285 -174.457
+ 86 86.7236 1666 1 1 153.35 -14.8063 -174.582
+ 86 72.3742 1667 1 1 153.55 -14.7251 -174.763
+ 86 78.3326 836 1 0 156.199 -12.8237 -175.85
+ 86 346.471 837 1 0 156.379 -12.65 -175.961
+ 86 78.2525 838 1 0 156.557 -12.45 -176.038
+ 86 147.204 839 1 0 156.459 -12.25 -176.095
+ 86 4.16562 840 1 0 156.234 -12.0499 -176.247
+ 86 107.364 1082 1 0 -81.3223 36.5775 -176.25
+ 86 353.024 555 1 0 -9.1667 -68.9178 -176.25
+ 86 119.22 864 3 1 -7.13348 -8.53894 -114.45
+ 86 133.456 856 3 0 -7.12526 -8.68374 -115.85
+ 86 153.264 863 2 1 -7.37679 -11.7047 -144.452
+ 86 179.204 840 2 0 -7.35168 -11.9116 -145.85
+ 86 49.288 819 1 0 -6.86036 -16.2377 -175.85
+ 86 78.5388 818 1 0 -6.85097 -16.25 -175.972
+ 86 110.326 877 0 1 -4.52972 -19.4868 -204.45
+ 86 109.087 802 0 0 -4.43064 -19.5813 -205.851
+ 86 286.907 867 4 1 -6.52833 -7.56516 -84.45
+ 86 215.429 865 4 0 -9.67032 -7.05 -85.9509
+ 86 480.579 866 4 0 -9.7412 -6.85 -86.1151
+ 86 94.1424 910 3 1 2.21897 1.31328 -114.45
+ 86 131.161 911 3 1 2.25 1.35806 -114.68
+ 86 206.318 907 3 0 2.47015 1.55536 -115.85
+ 86 129.551 938 2 1 7.65911 8.61189 -144.45
+ 86 134.125 945 2 0 7.84653 9.0737 -145.85
+ 86 101.74 954 1 1 11.0294 19.2948 -174.45
+ 86 8.7259 955 1 1 11.05 19.3578 -174.818
+ 86 119.099 997 1 0 11.2484 19.4884 -175.85
+ 86 91.2637 996 0 1 19.4035 17.6232 -204.45
+ 86 108.537 997 0 1 19.45 17.6342 -204.472
+ 86 136.664 998 0 1 19.65 17.6872 -204.559
+ 86 156.054 999 0 1 19.85 17.7234 -204.66
+ 86 82.4194 1000 0 1 20.05 17.7363 -204.77
+ 86 305.286 988 0 0 21.9997 17.7918 -205.85
+ 86 26.3254 987 0 0 22.7487 17.65 -206.2
+ 86 264.594 867 6 1 -6.63724 -7.55341 -24.45
+ 86 142.993 871 5 1 -5.71114 -7.97718 -54.45
+ 86 277.874 860 5 0 -5.71402 -7.97639 -55.85
+ 86 125.4 870 4 1 -5.87414 -8.32873 -84.45
+ 86 168.84 858 4 0 -6.02958 -8.26558 -85.85
+ 86 215.191 859 4 0 -6.05808 -8.25 -86.1426
+ 86 101.977 856 3 1 -8.74559 -6.61379 -114.451
+ 86 17.9027 855 3 1 -8.85 -6.66849 -114.765
+ 86 125.926 809 2 1 -18.1101 -10.2924 -144.45
+ 86 18.5086 808 2 1 -18.25 -10.333 -144.796
+ 86 132.229 847 2 0 -18.9628 -10.5143 -145.85
+ 86 4.45818 701 1 1 -39.8401 -16.271 -174.45
+ 86 82.5346 700 1 1 -39.8503 -16.2745 -174.463
+ 86 57.1053 699 1 1 -40.05 -16.3399 -174.706
+ 86 143.56 816 1 0 -41.0316 -16.7088 -175.85
+ 86 16.2029 984 0 1 17.0215 -9.22805 -204.45
+ 86 51.4976 985 0 1 17.05 -9.23616 -204.456
+ 86 58.9555 986 0 1 17.25 -9.28366 -204.467
+ 86 63.0999 987 0 1 17.4504 -9.31349 -204.455
+ 86 60.1595 988 0 1 17.65 -9.32926 -204.455
+ 86 35.982 989 0 1 17.8507 -9.33614 -204.458
+ 86 45.9543 990 0 1 18.05 -9.34076 -204.455
+ 86 63.4876 991 0 1 18.25 -9.33573 -204.497
+ 86 48.2016 992 0 1 18.45 -9.3302 -204.546
+ 86 61.5433 993 0 1 18.65 -9.33885 -204.597
+ 86 69.1333 994 0 1 18.8507 -9.34746 -204.626
+ 86 58.5385 995 0 1 19.05 -9.40448 -204.622
+ 86 21.5209 1001 0 1 20.4125 -9.85836 -204.45
+ 86 104.748 1002 0 1 20.45 -9.84271 -204.512
+ 86 96.5531 852 0 0 20.9882 -9.56697 -205.85
+ 86 147.528 983 0 1 16.698 -9.04899 -204.45
+ 86 84.608 849 0 0 16.939 -10.0897 -205.85
+ 86 85.0558 848 0 0 16.9644 -10.25 -206.052
+ 86 70.9539 564 0 0 21.7955 -67.0966 -206.25
+ 86 61.9896 563 0 0 21.8916 -67.25 -206.175
+ 86 96.3866 562 0 0 21.8516 -67.45 -206.03
+ 86 42.3093 561 0 0 21.708 -67.65 -206.159
+ 86 41.52 893 5 0 -6.34339 -1.34723 -55.85
+ 86 108.816 894 5 0 -6.32833 -1.24992 -55.9587
+ 86 29.6646 895 5 0 -6.31701 -1.05 -56.1805
+ 86 88.1674 1157 5 0 -28.0872 51.513 -56.2499
+ 86 319.125 1158 5 0 -28.2195 51.65 -56.108
+ 86 62.9045 1159 5 0 -28.4196 51.8502 -55.949
+ 86 4.39382 750 5 1 -30.0432 53.632 -54.85
+ 86 79.8885 749 5 1 -30.0502 53.6396 -54.8453
+ 86 84.0582 748 5 1 -30.25 53.8614 -54.7162
+ 86 119.118 747 5 1 -30.45 54.1527 -54.6426
+ 86 39.3125 746 5 1 -30.65 54.4135 -54.5247
+ 86 63.7778 1082 6 0 -42.2363 36.5506 -26.25
+ 86 72.1869 1081 6 0 -42.3183 36.4497 -26.0075
+ 86 210.865 687 6 1 -42.5625 36.1432 -24.85
+ 86 258.357 688 6 1 -42.45 36.0384 -24.5199
+ 86 171.641 1086 6 0 -42.4827 37.2774 -25.85
+ 86 283.245 1085 6 0 -42.1122 37.25 -26.0178
+ 86 61.7806 1084 6 0 -41.49 37.0499 -25.9117
+ 86 223.167 1068 6 0 -43.7976 33.8212 -25.85
+ 86 162.657 866 8 1 -6.7154 -7.73935 35.55
+ 86 135.164 861 8 0 -6.72269 -7.74319 34.15
+ 86 121.924 865 7 1 -6.87776 -7.8214 5.55
+ 86 99.6568 861 7 0 -6.88325 -7.82311 4.15
+ 86 101.794 865 6 1 -6.99382 -7.85923 -24.45
+ 86 109.47 860 6 0 -6.99918 -7.86764 -25.85
+ 86 115.192 864 5 1 -7.06085 -8.04386 -54.45
+ 86 167.891 865 4 1 -7.03123 -8.08162 -84.45
+ 86 94.8212 865 3 1 -6.92367 -8.26605 -114.45
+ 86 100.366 858 3 0 -6.9116 -8.26909 -115.85
+ 86 103.055 866 2 1 -6.67899 -8.32076 -144.45
+ 86 335.172 858 2 0 -6.66496 -8.32767 -145.85
+ 86 114.165 868 1 1 -6.40474 -8.47622 -174.45
+ 86 166.989 857 1 0 -6.38311 -8.47802 -175.85
+ 86 273.27 870 0 1 -5.94142 -8.58315 -204.45
+ 86 271.197 857 0 0 -5.92664 -8.5758 -205.85
+ 86 250.763 1080 6 1 36.0727 113.54 -24.45
+ 86 67.5885 1079 6 1 36.05 113.619 -24.6705
+ 86 391.654 851 0 1 -9.84573 45.2583 -204.45
+ 86 239.801 865 5 1 -6.99549 -7.98819 -54.45
+ 86 119.654 862 5 0 -6.92623 -7.59257 -55.85
+ 86 92.454 778 5 0 -6.02171 -24.2656 -56.2494
+ 86 49.6829 777 5 0 -6.09804 -24.45 -55.9384
+ 86 104.775 866 5 1 -6.66379 -24.9699 -54.85
+ 86 91.1737 867 8 1 -6.65 -7.72144 35.5046
+ 86 89.704 862 8 0 -6.4404 -7.55825 34.15
+ 86 126.222 880 7 1 -3.96572 -4.61811 5.55
+ 86 95.4078 876 7 0 -3.9725 -4.73475 4.15
+ 86 104.994 899 6 1 -0.0500468 -6.65294 -24.5504
+ 86 57.0327 869 6 0 -0.842689 -6.12419 -25.8504
+ 86 100.625 870 6 0 -0.945989 -6.05 -26.0181
+ 86 131.531 822 5 1 -15.5434 8.0588 -54.45
+ 86 605.068 823 5 1 -15.45 8.16618 -54.5537
+ 86 97.2548 824 5 1 -15.25 8.40527 -54.738
+ 86 11.3478 948 5 0 -14.0068 9.83203 -55.85
+ 86 78.4905 949 5 0 -13.9911 9.85 -55.864
+ 86 78.7673 950 5 0 -13.8181 10.0502 -56.0122
+ 86 65.4631 951 5 0 -13.7002 10.25 -56.1124
+ 86 7.14737 952 5 0 -13.5902 10.4504 -56.2356
+ 86 114.355 1139 5 0 24.2645 47.9931 -56.25
+ 86 38.2374 1138 5 0 24.4447 47.85 -55.9427
+ 86 50.0516 1023 5 1 24.8442 47.1727 -54.85
+ 86 129.61 1024 5 1 24.85 47.1623 -54.8325
+ 86 93.3933 1022 5 1 24.65 46.8609 -54.585
+ 86 15.3085 1021 5 1 24.45 46.8633 -54.8137
+ 86 92.4136 1134 5 0 23.2448 46.9629 -55.85
+ 86 125.192 1135 5 0 22.973 47.0501 -56.0365
+ 86 67.7984 1363 5 0 11.851 92.7666 -56.2498
+ 86 75.0867 1364 5 0 11.8296 92.95 -56.1515
+ 86 68.8162 1365 5 0 11.7965 93.1501 -56.0944
+ 86 142.763 1366 5 0 11.9127 93.35 -55.9805
+ 86 63.943 1367 5 0 12.0501 93.5502 -56.1477
+ 86 84.0431 1448 5 0 -17.6419 109.803 -56.25
+ 86 201.742 1449 5 0 -17.6732 109.95 -56.1365
+ 86 73.8998 1450 5 0 -17.8055 110.15 -56.1513
+ 86 67.8855 1407 9 0 66.2703 101.595 63.75
+ 86 124.163 805 4 1 -18.8849 5.9797 -84.45
+ 86 76.7893 804 4 1 -19.05 6.16942 -84.6364
+ 86 81.7251 803 4 1 -19.25 6.39199 -84.7839
+ 86 90.6195 946 4 0 -21.9334 9.37386 -85.8501
+ 86 91.5025 947 4 0 -21.9916 9.45005 -85.8705
+ 86 52.7763 948 4 0 -22.1369 9.65012 -85.8947
+ 86 49.2129 949 4 0 -22.1637 9.85 -85.8999
+ 86 22.0884 950 4 0 -22.1358 10.0507 -85.864
+ 86 722.614 792 4 1 -21.5738 12.5269 -84.8499
+ 86 0.585431 972 4 0 -22.1224 14.6485 -85.85
+ 86 232.399 973 4 0 -22.1239 14.65 -85.8524
+ 86 74.5598 974 4 0 -22.453 14.85 -86.0931
+ 86 71.6546 975 4 0 -22.4815 15.0506 -86.0185
+ 86 24.0902 976 4 0 -22.3858 15.25 -85.9166
+ 86 144.029 791 4 1 -21.7439 15.8583 -84.8497
+ 86 116.616 611 0 0 14.2837 -57.7817 -206.25
+ 86 190.341 612 0 0 14.419 -57.65 -206.129
+ 86 14.019 613 0 0 14.5537 -57.45 -205.909
+ 86 16.1872 970 0 1 14.2435 -56.6703 -204.85
+ 86 13.9552 971 0 1 14.25 -56.6443 -204.844
+ 86 66.96 621 0 0 14.552 -55.6633 -205.85
+ 86 18.7313 622 0 0 14.5425 -55.65 -205.88
+Number of digits in this event = 89
Using G4ParticleGun ...
-7.89007 LIN
+3.99693 LIN
gamma
Event: 87
-Number of tracker hits in this event = 86
- 87 249.987 621 10 1 -55.7079 -78.7134 95.55
- 87 324.983 506 10 0 -55.7192 -78.713 94.15
- 87 140.182 620 9 1 -55.9564 -78.73 65.55
- 87 289.129 506 9 0 -55.9795 -78.7304 64.15
- 87 158.997 617 8 1 -56.51 -78.7099 35.55
- 87 349.861 506 8 0 -56.5247 -78.6953 34.15
- 87 106.657 616 7 1 -56.8013 -78.3702 5.55
- 87 106.935 508 7 0 -56.8266 -78.3512 4.15
- 87 114.419 613 6 1 -57.4072 -78.0149 -24.45
- 87 186.817 510 6 0 -57.4521 -77.9911 -25.85
- 87 126.182 607 5 1 -58.4668 -77.5229 -54.45
- 87 142.818 512 5 0 -58.5137 -77.5089 -55.85
- 87 132.066 602 4 1 -59.457 -77.2838 -84.45
- 87 102.131 513 4 0 -59.5141 -77.2798 -85.85
- 87 149.49 596 3 1 -60.7791 -77.2564 -114.45
- 87 114.471 513 3 0 -60.8377 -77.2818 -115.85
- 87 131.12 590 2 1 -61.943 -77.864 -144.45
- 87 131.103 510 2 0 -61.9898 -77.8963 -145.85
- 87 99.8854 585 1 1 -62.8868 -78.5673 -174.45
- 87 122.149 507 1 0 -62.9251 -78.6111 -175.85
- 87 241.695 582 0 1 -63.6322 -79.4363 -204.45
- 87 135.561 502 0 0 -63.6583 -79.4919 -205.85
- 87 3.41625 826 2 0 32.7775 -14.8464 -146.25
- 87 1.95763 1131 2 1 46.25 -16.9468 -144.719
- 87 73.6508 507 8 0 -56.4569 -78.65 33.855
- 87 154.379 503 8 0 -57.3572 -79.3547 34.15
- 87 3.1572 322 10 1 -115.55 -82.6578 95.3111
- 87 117.625 621 9 1 -55.7271 -78.7132 65.55
- 87 141.09 621 8 1 -55.7514 -78.7356 35.55
- 87 99.8529 621 7 1 -55.7379 -78.733 5.55
- 87 129.373 506 7 0 -55.7391 -78.7342 4.15
- 87 135.136 621 6 1 -55.7648 -78.7715 -24.45
- 87 203.599 506 6 0 -55.7642 -78.7746 -25.85
- 87 335.509 621 5 1 -55.7471 -78.8375 -54.45
- 87 361.233 506 5 0 -55.7456 -78.8433 -55.85
- 87 355.993 621 4 1 -55.7225 -78.982 -84.45
- 87 215.051 505 4 0 -55.7212 -78.9869 -85.85
- 87 125.721 621 3 1 -55.6917 -79.0884 -114.45
- 87 184.744 504 3 0 -55.6912 -79.0905 -115.85
- 87 122.297 621 2 1 -55.672 -79.1313 -144.45
- 87 146.215 504 2 0 -55.6696 -79.1315 -145.85
- 87 116.49 622 1 1 -55.6158 -79.1506 -174.45
- 87 187.408 504 1 0 -55.6121 -79.1478 -175.85
- 87 111.059 622 0 1 -55.537 -79.0802 -204.45
- 87 117.594 504 0 0 -55.5344 -79.0728 -205.85
- 87 135.292 788 2 0 -26.9207 -22.4176 -146.25
- 87 93.8991 787 2 0 -26.7958 -22.4502 -146.101
- 87 86.7686 503 1 0 -55.6357 -79.2503 -175.997
- 87 237.961 502 1 0 -55.641 -79.45 -175.929
- 87 298.524 507 4 0 -56.041 -78.5724 -85.85
- 87 185.519 562 3 1 -67.5362 -78.0395 -114.45
- 87 18.1007 561 3 1 -67.65 -77.7808 -114.772
- 87 287.931 508 3 0 -67.4692 -78.4027 -115.85
- 87 69.2543 507 3 0 -67.4289 -78.45 -115.934
- 87 138.635 622 8 1 -55.6373 -79.0932 35.55
- 87 72.6773 623 8 1 -55.45 -78.9774 35.2395
- 87 284.517 512 8 0 -52.0363 -77.5755 34.15
- 87 33.8795 511 8 0 -51.239 -77.6501 33.8398
- 87 256.365 513 8 0 -51.6453 -77.45 34.1109
- 87 59.2667 622 5 1 -55.65 -78.7443 -54.6635
- 87 162.746 666 4 1 -46.7566 -78.2552 -84.45
- 87 64.4977 667 4 1 -46.6498 -78.3075 -84.7174
- 87 131.507 506 4 0 -46.1929 -78.65 -85.8625
- 87 119.725 718 3 1 -36.3935 -87.1024 -114.45
- 87 25.7493 466 3 0 -35.9752 -86.6717 -115.85
- 87 105.87 467 3 0 -35.9564 -86.65 -115.918
- 87 13.328 762 2 1 -27.457 -75.6678 -144.45
- 87 137.619 763 2 1 -27.45 -75.6574 -144.506
- 87 89.0791 523 2 0 -27.312 -75.4202 -145.85
- 87 143.98 761 1 1 -27.6617 -74.0376 -174.45
- 87 140.205 529 1 0 -28.3033 -74.0734 -175.85
- 87 73.1714 678 0 1 -44.3308 -75.1101 -204.45
- 87 47.934 679 0 1 -44.25 -75.1977 -204.671
- 87 106.098 521 0 0 -43.8606 -75.7216 -205.85
- 87 42.4585 520 0 0 -43.7422 -75.8505 -206.108
- 87 28.3065 689 0 1 -42.111 -5.81682 -204.85
- 87 30.7091 630 4 1 -53.8592 -78.9672 -84.45
- 87 78.8485 631 4 1 -53.85 -78.9663 -84.5631
- 87 109.347 640 3 1 -51.8761 -78.4631 -114.45
- 87 180.044 649 2 1 -50.1916 -77.8344 -144.45
- 87 110.753 511 2 0 -50.0732 -77.7189 -145.85
- 87 127.122 664 1 1 -47.1402 -75.2334 -174.45
- 87 118.116 524 1 0 -47.1937 -75.1439 -175.85
- 87 119.797 657 0 1 -48.5286 -73.3826 -204.45
- 87 90.6915 533 0 0 -48.5498 -73.2742 -205.85
- 87 27.6842 534 0 0 -48.5502 -73.25 -206.167
-Number of digits in this event = 48
-Using G4ParticleGun ...
-3.44208 LIN
+Number of tracker hits in this event = 172
+ 87 243.217 1315 10 1 83.106 41.8859 95.55
+ 87 267.575 1109 10 0 83.1056 41.8855 94.15
+ 87 161.463 1315 9 1 83.095 41.8767 65.55
+ 87 135.146 1109 9 0 83.0919 41.8743 64.15
+ 87 261.91 1314 8 1 83.028 41.8221 35.55
+ 87 576.475 1108 8 0 83.0234 41.8198 34.15
+ 87 275.929 1314 7 1 82.9431 41.7605 5.55
+ 87 111.452 1108 7 0 82.9419 41.7581 4.15
+ 87 160.694 1314 6 1 82.9071 41.7143 -24.45
+ 87 97.9955 1108 6 0 82.9055 41.7104 -25.85
+ 87 105.795 1314 5 1 82.8673 41.644 -54.45
+ 87 125.062 1107 5 0 82.8619 41.6382 -55.85
+ 87 134.598 1313 4 1 82.7389 41.5107 -84.45
+ 87 159.28 1107 4 0 82.7324 41.5074 -85.85
+ 87 120.392 1312 3 1 82.5918 41.4422 -114.45
+ 87 166.947 1106 3 0 82.583 41.4353 -115.85
+ 87 127.479 1311 2 1 82.4026 41.2996 -144.45
+ 87 111.207 1106 2 0 82.3927 41.2946 -145.85
+ 87 234.331 1310 1 1 82.2022 41.1845 -174.45
+ 87 145.391 1105 1 0 82.1918 41.1788 -175.85
+ 87 139.188 1309 0 1 81.9829 41.0619 -204.45
+ 87 161.717 1105 0 0 81.9723 41.057 -205.85
+ 87 30.9789 1218 0 1 63.85 59.2343 -204.699
+ 87 19.1126 773 7 1 -25.405 112.31 5.15
+ 87 21.768 772 7 1 -25.45 112.335 5.16379
+ 87 80.4972 1462 7 0 -26.2707 112.551 4.15
+ 87 17.4242 1461 7 0 -26.2725 112.55 4.14566
+ 87 131.364 1646 4 0 21.0397 149.35 -86.122
+ 87 104.071 1104 0 0 81.9032 41.05 -205.988
+ 87 129.497 1103 0 0 81.8046 40.8499 -206.046
+ 87 105.57 1102 0 0 81.4793 40.65 -206.243
+ 87 34.8253 1309 1 1 82.05 41.0252 -174.747
+ 87 33.1304 1100 1 0 81.695 40.1535 -175.85
+ 87 65.1749 1099 1 0 81.6802 40.0498 -175.933
+ 87 98.3795 1098 1 0 81.6508 39.85 -176.086
+ 87 40.476 1097 1 0 81.6107 39.6495 -176.182
+ 87 302.338 1313 2 1 82.7251 41.7041 -144.45
+ 87 235.11 1108 2 0 82.6995 41.7847 -145.85
+ 87 111.481 1308 1 1 81.707 42.8505 -174.45
+ 87 9.10067 1307 1 1 81.65 42.879 -174.799
+ 87 115.961 1114 1 0 81.4702 42.9788 -175.85
+ 87 115.201 1280 0 1 76.2281 45.3486 -204.45
+ 87 153.069 1125 0 0 76.0084 45.1492 -205.85
+ 87 180.846 1602 6 0 107.608 140.55 -25.9642
+ 87 68.6995 1105 2 0 83.1441 41.1418 -145.85
+ 87 64.8929 1104 2 0 83.2273 41.05 -146.051
+ 87 201.079 1375 1 1 95.1948 22.9571 -174.45
+ 87 70.0295 1376 1 1 95.3501 22.9274 -174.641
+ 87 207.035 1012 1 0 96.3869 22.6492 -175.85
+ 87 179.494 994 1 0 142.045 19.0241 -176.25
+ 87 15.4623 1617 1 1 143.701 18.6105 -174.85
+ 87 70.9533 1618 1 1 143.75 18.5995 -174.81
+ 87 281.466 1619 1 1 143.95 18.5625 -174.648
+ 87 25.4541 1620 1 1 144.15 18.5513 -174.513
+ 87 92.7186 927 2 0 138.441 5.56546 -146.25
+ 87 41.1676 926 2 0 138.375 5.45 -145.989
+ 87 150.292 1588 2 1 137.843 5.12426 -144.849
+ 87 56.1465 1587 2 1 137.75 5.06147 -144.656
+ 87 70.4841 620 12 1 -55.85 -28.9574 155.184
+ 87 204.267 619 12 1 -56.05 -28.9542 155.226
+ 87 100.406 618 12 1 -56.25 -28.9132 155.317
+ 87 147.315 1315 8 1 83.06 41.8136 35.55
+ 87 180.306 1297 7 1 79.4549 39.9839 5.54972
+ 87 62.1902 1098 7 0 79.5243 39.6889 4.15
+ 87 45.3218 1097 7 0 79.5331 39.65 3.96072
+ 87 189.717 1296 6 1 79.4082 33.1338 -24.45
+ 87 84.0911 1064 6 0 79.0076 32.8971 -25.85
+ 87 33.8303 1063 6 0 78.9162 32.8499 -26.1357
+ 87 148.026 1251 5 1 70.4258 28.662 -54.45
+ 87 400.134 1043 5 0 70.2058 28.6503 -55.85
+ 87 131.515 1231 4 1 66.373 29.0971 -84.45
+ 87 103.041 1044 4 0 66.0683 28.8914 -85.85
+ 87 27.9572 1043 4 0 66.0003 28.8499 -86.1525
+ 87 47.9662 1192 3 1 58.5015 22.4134 -114.45
+ 87 72.7778 1191 3 1 58.45 22.4149 -114.613
+ 87 115.01 1011 3 0 58.1526 22.3805 -115.85
+ 87 149.527 1161 2 1 52.3933 19.081 -144.45
+ 87 40.728 1160 2 1 52.25 18.9 -144.749
+ 87 81.5466 990 2 0 51.7103 18.1321 -145.85
+ 87 190.448 989 2 0 51.6461 18.05 -145.964
+ 87 26.054 988 2 0 51.4863 17.85 -146.235
+ 87 28.3593 1073 1 1 34.7078 -2.08349 -174.45
+ 87 112.713 1072 1 1 34.65 -2.12928 -174.533
+ 87 92.8283 1071 1 1 34.45 -2.26037 -174.794
+ 87 135.616 885 1 0 33.5434 -2.87502 -175.85
+ 87 13.6598 884 1 0 33.2289 -3.05013 -176.211
+ 87 25.7389 939 0 1 8.0065 -16.2225 -204.45
+ 87 111.278 940 0 1 8.05004 -16.2991 -204.508
+ 87 142.027 941 0 1 8.25 -16.606 -204.746
+ 87 103.884 806 0 0 9.79996 -18.7125 -205.85
+ 87 100.025 805 0 0 9.9059 -18.85 -205.916
+ 87 84.3964 804 0 0 10.0711 -19.0503 -206.016
+ 87 30.4257 803 0 0 10.2221 -19.25 -206.175
+ 87 52.5693 798 0 0 21.9694 -20.344 -206.25
+ 87 92.5975 799 0 0 22.0053 -20.2496 -206.108
+ 87 2.33828 800 0 0 22.0881 -20.0498 -205.857
+ 87 23.5558 1012 0 1 22.6152 -18.923 -204.85
+ 87 171.238 1013 0 1 22.65 -18.8608 -204.79
+ 87 29.1058 1014 0 1 22.85 -18.6131 -204.517
+ 87 55.478 945 1 0 47.4227 9.15028 -176.25
+ 87 97.7338 946 1 0 47.5067 9.25 -176.117
+ 87 10.7348 947 1 0 47.599 9.45 -175.875
+ 87 123.633 1142 1 1 48.5049 10.7137 -174.85
+ 87 70.3655 626 0 0 35.0675 -54.7502 -206.25
+ 87 53.735 625 0 0 35.0473 -54.8501 -206.032
+ 87 229.23 1075 0 1 35.1017 -55.4089 -204.85
+ 87 0.607045 675 0 1 -44.85 180.03 -204.579
+ 87 71.0105 1042 5 0 70.2032 28.65 -55.8637
+ 87 54.5381 1107 8 0 82.9735 41.65 33.7666
+ 87 110.968 1106 7 0 82.8704 41.431 4.15
+ 87 119.793 1311 6 1 82.3851 40.2739 -24.45
+ 87 129.036 1100 6 0 82.3367 40.2476 -25.85
+ 87 108.193 1305 5 1 81.1051 39.7421 -54.4503
+ 87 129.533 1098 5 0 80.9979 39.7391 -55.85
+ 87 147.08 1294 4 1 78.9832 39.9879 -84.45
+ 87 107.837 1099 4 0 78.9002 39.9029 -85.8502
+ 87 150.503 1286 3 1 77.4173 38.2206 -114.45
+ 87 6.07 1090 3 0 77.3547 38.0522 -115.851
+ 87 135.884 1089 3 0 77.3539 38.05 -115.87
+ 87 108.379 1280 2 1 76.1056 34.922 -144.45
+ 87 106.48 1073 2 0 76.0299 34.8101 -145.851
+ 87 234.611 1273 1 1 74.8051 32.196 -174.45
+ 87 171.814 1059 1 0 74.6965 32.0191 -175.85
+ 87 68.5136 1263 0 1 72.6944 27.1487 -204.45
+ 87 33.6868 1262 0 1 72.65 27.073 -204.73
+ 87 281.881 1033 0 0 72.5164 26.8009 -205.85
+ 87 130.51 1060 1 0 74.5116 32.0828 -175.85
+ 87 141.199 1251 0 1 70.2981 28.5874 -204.45
+ 87 0.461275 1252 0 1 70.45 28.7438 -204.849
+ 87 61.0402 1045 0 0 70.8793 29.1579 -205.85
+ 87 66.7494 1046 0 0 70.9634 29.25 -206.057
+ 87 106.954 1314 9 1 82.956 41.6993 65.55
+ 87 133.143 1108 9 0 82.9787 41.6695 64.15
+ 87 117.037 1317 8 1 83.4944 41.2515 35.55
+ 87 108.194 1105 8 0 83.5177 41.2283 34.15
+ 87 120.167 1319 7 1 84.0251 40.7321 5.55
+ 87 117.684 1103 7 0 84.0577 40.7371 4.15
+ 87 129.935 1323 6 1 84.7305 40.9331 -24.45
+ 87 150.406 1104 6 0 84.7718 40.9429 -25.85
+ 87 98.4719 1326 5 1 85.4084 41.1772 -54.45
+ 87 103.499 1105 5 0 85.4361 41.2285 -55.85
+ 87 219.806 1328 4 1 85.7688 42.2253 -84.45
+ 87 123.704 1111 4 0 85.8537 42.2696 -85.85
+ 87 131.233 1339 3 1 87.9233 42.8957 -114.45
+ 87 117.786 1114 3 0 88.0193 42.9645 -115.85
+ 87 118.413 1122 2 0 90.1633 44.6228 -145.85
+ 87 145.913 1360 1 1 92.2003 45.9917 -174.45
+ 87 135.662 1129 1 0 92.308 46.0341 -175.85
+ 87 145.955 1371 0 1 94.4425 46.7215 -204.45
+ 87 130.538 1133 0 0 94.5717 46.7699 -205.85
+ 87 30.9789 1357 0 0 62.4952 91.55 -206.007
+ 87 338.278 488 0 0 125.833 -82.25 -205.942
+ 87 37.3017 487 0 0 125.838 -82.4502 -205.925
+ 87 128.963 1130 1 0 92.3241 46.0622 -175.85
+ 87 28.8645 1116 4 0 85.3761 43.3515 -85.85
+ 87 82.5571 1117 4 0 85.3616 43.4502 -85.9377
+ 87 52.1513 1118 4 0 85.3477 43.65 -86.1433
+ 87 273.63 1314 2 1 82.8804 41.6258 -144.45
+ 87 134.04 1107 2 0 82.889 41.6217 -145.85
+ 87 128.525 1315 1 1 83.0643 41.4254 -174.45
+ 87 112.031 1106 1 0 83.0477 41.3956 -175.85
+ 87 117.59 1313 0 1 82.7217 40.5619 -204.45
+ 87 206.304 1312 0 1 82.6259 40.7793 -204.45
+ 87 151.912 1114 0 0 82.1344 42.902 -205.85
+ 87 67.8139 1115 0 0 82.1202 43.05 -205.938
+ 87 60.7213 1116 0 0 82.1196 43.2503 -206.042
+ 87 64.2941 1117 0 0 82.1224 43.4505 -206.128
+ 87 11.5911 1118 0 0 82.1152 43.65 -206.224
+ 87 202.246 1317 1 1 83.6365 44.4577 -174.45
+ 87 112.178 1123 1 0 83.6337 44.6923 -175.85
+ 87 127.157 1317 0 1 83.5899 49.8783 -204.45
+ 87 139.508 1150 0 0 83.5846 50.0916 -205.85
+Number of digits in this event = 77
+Using G4ParticleGun ...
+8.38322 LIN
gamma
Event: 88
-Number of tracker hits in this event = 36
- 88 203.531 720 5 1 -35.8747 -69.6769 -54.45
- 88 296.015 551 5 0 -35.8712 -69.6724 -55.85
- 88 127.686 721 4 1 -35.844 -69.581 -84.45
- 88 112.622 552 4 0 -35.8489 -69.557 -85.85
- 88 401.712 720 3 1 -35.9053 -68.981 -114.45
- 88 107.279 555 3 0 -35.9014 -68.9408 -115.85
- 88 267.86 720 2 1 -35.8711 -68.0299 -144.45
- 88 119.313 560 2 0 -35.8721 -68.0253 -145.85
- 88 260.747 721 1 1 -35.8052 -67.8115 -174.45
- 88 123.457 561 1 0 -35.6838 -67.8035 -175.85
- 88 105.448 732 0 1 -33.5146 -68.2401 -204.45
- 88 2.34994 733 0 1 -33.45 -68.264 -204.841
- 88 142.396 558 0 0 -33.2768 -68.3281 -205.85
- 88 28.6095 646 0 0 -67.7568 -50.7639 -206.25
- 88 116.335 562 2 0 -36.2699 -67.5931 -145.85
- 88 43.976 563 2 0 -36.3593 -67.45 -146.125
- 88 52.3145 1024 2 0 -11.9672 24.8929 -146.25
- 88 76.2757 1025 2 0 -11.9471 25.05 -146.151
- 88 65.3489 1026 2 0 -11.9024 25.25 -145.972
- 88 121.384 841 2 1 -11.849 26.5251 -144.85
- 88 22.8511 840 2 1 -11.85 26.7921 -144.524
- 88 67.1971 589 2 0 -142.684 -62.1537 -146.25
- 88 81.8287 183 2 1 -143.427 -61.8543 -144.85
- 88 114.916 182 2 1 -143.55 -61.8115 -144.677
- 88 359.454 721 0 1 -35.7981 -69.2584 -204.45
- 88 98.6755 553 0 0 -35.7851 -69.2667 -205.85
- 88 21.2599 123 8 1 -155.352 37.3019 35.15
- 88 138.486 554 0 0 -35.7666 -69.2023 -205.85
- 88 279.841 720 4 1 -35.8566 -69.7361 -84.45
- 88 187.047 551 4 0 -35.8566 -69.7379 -85.85
- 88 112.143 551 3 0 -35.8677 -69.7733 -115.85
- 88 127.757 550 2 0 -35.8977 -69.8651 -145.85
- 88 112.666 720 1 1 -35.8906 -69.9781 -174.45
- 88 116.686 550 1 0 -35.8857 -69.986 -175.85
- 88 106.908 549 0 0 -35.7835 -70.1543 -205.85
- 88 217.433 719 4 1 -36.05 -69.7393 -84.4633
-Number of digits in this event = 17
+Number of tracker hits in this event = 2
+ 88 32.8649 798 1 1 -20.2924 91.5197 -174.45
+ 88 178.303 395 4 1 -101.133 -60.9512 -84.45
+Number of digits in this event = 5
Using G4ParticleGun ...
-8.31962 LIN
+1.1256 LIN
gamma
Event: 89
-Number of tracker hits in this event = 0
-Number of digits in this event = 2
+Number of tracker hits in this event = 44
+ 89 236.295 904 3 1 0.942055 -71.835 -114.45
+ 89 116.774 540 3 0 0.950991 -71.858 -115.85
+ 89 111.962 906 2 1 1.42739 -72.3906 -144.45
+ 89 107.634 538 2 0 1.50034 -72.3995 -145.85
+ 89 114.602 914 1 1 2.94879 -72.3914 -174.45
+ 89 150.544 538 1 0 3.03784 -72.428 -175.85
+ 89 116.385 924 0 1 4.93837 -73.6359 -204.45
+ 89 141.816 531 0 0 5.04596 -73.7234 -205.85
+ 89 125.492 541 3 0 0.940565 -71.837 -115.85
+ 89 139.659 904 2 1 0.954185 -71.905 -144.45
+ 89 133.518 540 2 0 0.959477 -71.9051 -145.85
+ 89 99.6503 905 1 1 1.09726 -71.8901 -174.45
+ 89 123.682 540 1 0 1.10121 -71.8923 -175.85
+ 89 101.471 905 0 1 1.10547 -71.9103 -204.45
+ 89 115.299 540 0 0 1.10393 -71.9115 -205.85
+ 89 100.95 904 0 1 1.0291 -71.7836 -204.45
+ 89 105.317 542 0 0 0.916223 -71.5492 -205.85
+ 89 18.6689 543 0 0 0.882398 -71.45 -206.193
+ 89 60.5675 722 0 0 -3.59823 -35.616 -206.25
+ 89 145.454 723 0 0 -3.59338 -35.45 -206.155
+ 89 102.803 724 0 0 -3.58159 -35.25 -206.042
+ 89 95.2825 725 0 0 -3.52824 -35.0498 -205.987
+ 89 122.713 726 0 0 -3.41008 -34.8499 -205.928
+ 89 33.4098 727 0 0 -3.24114 -34.65 -205.87
+ 89 5.85925 892 0 1 -1.45721 -32.1237 -204.85
+ 89 98.2511 893 0 1 -1.45 -32.1135 -204.846
+ 89 79.1636 894 0 1 -1.25 -31.8651 -204.808
+ 89 50.7138 895 0 1 -1.0498 -31.7311 -204.799
+ 89 82.321 896 0 1 -0.85 -31.6686 -204.8
+ 89 66.2336 897 0 1 -0.65 -31.5887 -204.811
+ 89 22.5958 898 0 1 -0.45 -31.4746 -204.835
+ 89 110.657 759 0 0 3.76771 -28.2262 -205.85
+ 89 18.8126 760 0 0 4.01208 -28.05 -205.863
+ 89 137.719 931 0 1 6.27718 -27.0427 -204.85
+ 89 57.5776 932 0 1 6.45 -26.9622 -204.756
+ 89 70.0899 933 0 1 6.65012 -26.8728 -204.653
+ 89 124.288 903 2 1 0.85 -71.7344 -144.525
+ 89 51.038 545 2 0 0.500054 -70.9694 -145.85
+ 89 69.9837 546 2 0 0.439508 -70.85 -146.047
+ 89 0.766035 638 2 0 -1.47995 -52.2509 -146.25
+ 89 84.6882 639 2 0 -1.47947 -52.25 -146.246
+ 89 65.0486 640 2 0 -1.43273 -52.0497 -146.034
+ 89 289.212 897 2 1 -0.601125 -51.9071 -144.85
+ 89 140.795 896 2 1 -0.65 -52.1317 -144.486
+Number of digits in this event = 14
Using G4ParticleGun ...
-7.35824 LIN
+1.81796 LIN
gamma
Event: 90
-Number of tracker hits in this event = 161
- 90 216.766 1184 10 1 57.0235 -55.1955 95.55
- 90 212.005 624 10 0 57.0223 -55.1955 94.15
- 90 245.957 1184 9 1 56.996 -55.197 65.55
- 90 200.272 624 9 0 56.9977 -55.1907 64.15
- 90 113.861 1185 8 1 57.0575 -55.0132 35.55
- 90 126.952 625 8 0 57.0608 -55.0054 34.15
- 90 173.634 1185 7 1 57.135 -54.8455 5.55
- 90 130.675 626 7 0 57.1392 -54.8383 4.15
- 90 377.371 1185 6 1 57.2262 -54.7015 -24.45
- 90 127.01 626 6 0 57.2328 -54.6955 -25.85
- 90 175.122 1186 5 1 57.3695 -54.5766 -54.45
- 90 288.695 627 5 0 57.3775 -54.5719 -55.85
- 90 180.794 1187 4 1 57.5357 -54.4865 -84.45
- 90 104.368 627 4 0 57.5406 -54.4811 -85.85
- 90 181.14 1187 3 1 57.6416 -54.3711 -114.45
- 90 270.61 628 3 0 57.6469 -54.366 -115.85
- 90 161.018 1188 2 1 57.7545 -54.2661 -144.45
- 90 157.861 628 2 0 57.7594 -54.2614 -145.85
- 90 230.177 1189 1 1 57.8582 -54.1553 -174.45
- 90 106.674 629 1 0 57.8614 -54.1469 -175.85
- 90 126.605 1189 0 1 57.9268 -53.9742 -204.45
- 90 121.656 630 0 0 57.9363 -53.9609 -205.85
- 90 24.0734 1111 0 1 42.25 -105.297 -204.569
- 90 319.389 1107 0 1 41.5878 -59.469 -204.85
- 90 266.168 1185 5 1 57.25 -54.4864 -54.7031
- 90 309.785 1184 6 1 56.9089 -55.2186 -24.5886
- 90 326.668 623 6 0 56.8796 -55.2968 -25.8502
- 90 469.057 1184 5 1 56.9773 -57.6956 -54.45
- 90 49.1098 610 5 0 57.2987 -58.0198 -55.85
- 90 72.3797 609 5 0 57.3257 -58.05 -56.0101
- 90 0.971999 1215 4 1 63.2455 -65.4165 -84.45
- 90 73.4347 1216 4 1 63.2502 -65.4188 -84.4507
- 90 137.39 1217 4 1 63.45 -65.5099 -84.4732
- 90 154.941 1218 4 1 63.65 -65.5982 -84.5006
- 90 67.313 1219 4 1 63.85 -65.6892 -84.5264
- 90 184.155 1220 4 1 64.05 -65.7857 -84.5577
- 90 57.1479 1221 4 1 64.25 -65.8751 -84.5942
- 90 67.4584 1222 4 1 64.45 -65.9684 -84.632
- 90 99.0781 1223 4 1 64.6503 -66.0592 -84.676
- 90 47.7411 1224 4 1 64.85 -66.1428 -84.7296
- 90 53.8826 1225 4 1 65.0502 -66.2146 -84.7798
- 90 42.1395 1226 4 1 65.25 -66.2689 -84.8226
- 90 71.9314 563 4 0 72.7377 -67.4126 -85.85
- 90 351.326 562 4 0 73.0132 -67.45 -85.8895
- 90 160.48 561 4 0 73.8436 -67.65 -85.9792
- 90 145.258 560 4 0 74.3372 -67.85 -85.999
- 90 130.958 559 4 0 74.7954 -68.0503 -86.0514
- 90 180.884 558 4 0 75.2601 -68.25 -86.1191
- 90 25.7473 557 4 0 75.7836 -68.4503 -86.2374
- 90 448.692 624 6 0 56.8908 -55.2273 -25.85
- 90 120.697 1178 5 1 55.7212 -54.8588 -54.45
- 90 68.4826 1177 4 1 55.5816 -49.7744 -84.4501
- 90 49.7345 1178 4 1 55.65 -49.6974 -84.6635
- 90 10.0085 653 4 0 56.0747 -49.261 -85.8503
- 90 155.861 654 4 0 56.0855 -49.25 -85.8809
- 90 97.8056 1220 3 1 64.1301 -40.1267 -114.45
- 90 52.8276 1221 3 1 64.2502 -39.9039 -114.716
- 90 19.0554 705 3 0 64.7144 -38.9026 -115.85
- 90 120.804 706 3 0 64.7377 -38.8496 -115.911
- 90 28.9006 707 3 0 64.8036 -38.6499 -116.157
- 90 54.5179 1254 2 1 70.9564 -16.7204 -144.45
- 90 85.3531 1253 2 1 70.85 -16.5994 -144.605
- 90 55.3268 822 2 0 70.0169 -15.5838 -145.85
- 90 86.651 823 2 0 69.9122 -15.4496 -145.997
- 90 24.5306 824 2 0 69.7762 -15.25 -146.192
- 90 119.165 1148 1 1 49.6587 11.7931 -174.45
- 90 56.4588 956 1 0 49.9754 11.308 -175.85
- 90 59.109 955 1 0 50.0116 11.25 -176.021
- 90 434.969 1196 0 1 59.4046 8.24145 -204.45
- 90 121.579 938 0 0 59.4157 7.80319 -205.85
- 90 45.5127 748 4 0 128.295 -30.267 -86.25
- 90 111.323 1184 8 1 56.9864 -55.2086 35.55
- 90 126.998 624 8 0 56.9876 -55.2092 34.15
- 90 130.092 1184 7 1 57.02 -55.2106 5.55
- 90 146.892 624 7 0 57.0212 -55.2142 4.15
- 90 332.613 623 5 0 57.0516 -55.3426 -55.85
- 90 156.966 1185 4 1 57.174 -55.3853 -84.45
- 90 100.208 623 4 0 57.1864 -55.3687 -85.85
- 90 131.12 1186 3 1 57.4157 -55.0559 -114.45
- 90 118.374 624 3 0 57.4241 -55.0548 -115.85
- 90 170.76 1187 2 1 57.5515 -54.9839 -144.45
- 90 106.59 625 2 0 57.567 -54.9765 -145.85
- 90 231.772 625 1 0 57.9049 -54.8559 -175.85
- 90 132.435 1191 0 1 58.3164 -54.8386 -204.45
- 90 103.048 625 0 0 58.336 -54.8553 -205.85
- 90 54.2764 944 4 1 8.9986 -33.2177 -84.85
- 90 1.89857 611 2 0 101.048 -57.7516 -146.25
- 90 3.38109 1399 2 1 99.9544 -58.3391 -144.85
- 90 54.2033 1398 2 1 99.95 -58.3397 -144.848
- 90 127.741 627 2 0 58.2203 -54.5472 -145.85
- 90 113.993 690 2 0 76.4254 -41.9165 -146.249
- 90 43.0526 691 2 0 76.5385 -41.85 -145.964
- 90 23.811 1286 2 1 77.3855 -41.3405 -144.85
- 90 308.053 1287 2 1 77.4503 -41.2973 -144.79
- 90 2.90123 1288 2 1 77.6503 -40.7002 -144.844
- 90 138.122 699 2 0 79.4388 -40.0877 -145.85
- 90 121.186 700 2 0 79.5061 -40.0499 -145.911
- 90 74.2335 697 2 0 71.6052 -40.5104 -146.25
- 90 189.354 715 2 0 42.287 -36.9484 -146.25
- 90 113.844 1186 2 1 57.2951 -55.2611 -144.45
- 90 116.872 624 2 0 57.6474 -55.1267 -145.85
- 90 12.5983 1248 1 1 69.6834 -53.4136 -174.45
- 90 88.7673 1247 1 1 69.65 -53.4057 -174.49
- 90 59.2291 1246 1 1 69.4497 -53.3346 -174.729
- 90 118.577 637 1 0 68.0421 -52.5927 -175.85
- 90 101.369 638 1 0 67.7899 -52.45 -176.026
- 90 94.4626 639 1 0 67.5679 -52.2499 -176.105
- 90 52.6973 640 1 0 67.4018 -52.05 -176.191
- 90 35.0461 1106 0 1 41.4498 15.6775 -204.75
- 90 0.0896308 977 0 0 40.6846 15.4502 -205.85
- 90 145.508 976 0 0 40.684 15.45 -205.851
- 90 85.5649 629 3 0 -140.259 -54.25 -115.999
- 90 101.368 194 3 1 -141.229 -54.1032 -114.85
- 90 108.69 193 3 1 -141.35 -54.0792 -114.661
- 90 78.2204 195 3 1 -141.15 -53.786 -114.511
- 90 62.0479 196 3 1 -140.95 -53.702 -114.519
- 90 110.294 197 3 1 -140.75 -53.6644 -114.537
- 90 80.4258 198 3 1 -140.55 -53.3485 -114.574
- 90 85.793 199 3 1 -140.35 -53.2592 -114.684
- 90 125.191 1159 4 1 51.9612 -54.8507 -84.4504
- 90 100.175 625 4 0 51.6226 -54.9609 -85.85
- 90 131.338 1122 3 1 44.6126 -57.2858 -114.45
- 90 350.826 613 3 0 44.3245 -57.2935 -115.85
- 90 133.039 1092 2 1 38.6193 -57.4842 -144.45
- 90 149.482 613 2 0 38.1717 -57.3715 -145.85
- 90 136.069 1042 1 1 28.6187 -55.0344 -174.45
- 90 161.08 987 0 1 17.6355 -51.9391 -204.45
- 90 107.73 640 0 0 17.0322 -51.8656 -205.85
- 90 15.1479 641 0 0 16.8775 -51.85 -206.196
- 90 6.57042 614 3 0 44.3596 -57.25 -116.075
- 90 149.006 1183 4 1 56.7244 -55.0917 -84.45
- 90 121.359 624 4 0 56.7219 -55.0657 -85.85
- 90 123.455 1183 3 1 56.668 -54.469 -114.45
- 90 110.046 1180 2 1 56.1028 -53.0812 -144.45
- 90 28.1579 635 2 0 56.0854 -52.8663 -145.85
- 90 91.1075 636 2 0 56.0846 -52.8499 -145.958
- 90 191.583 1179 1 1 55.94 -48.6358 -174.45
- 90 139.888 658 1 0 55.9297 -48.3435 -175.85
- 90 115.746 1181 0 1 56.329 -41.5517 -204.45
- 90 123.052 694 0 0 56.3011 -41.1773 -205.85
- 90 164.071 1180 1 1 56.05 -48.6743 -174.677
- 90 129.361 1223 5 1 64.8292 -52.8114 -54.45
- 90 147.912 639 5 0 64.8977 -52.2347 -55.8503
- 90 157.838 705 4 0 63.8033 -39.037 -85.8503
- 90 31.447 706 4 0 63.8561 -38.85 -86.1885
- 90 142.669 1241 3 1 68.2605 -19.9357 -114.45
- 90 44.8152 803 3 0 68.1889 -19.3128 -115.85
- 90 64.9583 804 3 0 68.1738 -19.25 -116.053
- 90 148.211 1228 2 1 65.7403 -9.51027 -144.451
- 90 103.359 853 2 0 65.5798 -9.38298 -145.85
- 90 309.353 1220 1 1 64.1568 -6.61464 -174.45
- 90 56.3382 871 1 0 64.3661 -5.71638 -175.85
- 90 116.859 872 1 0 64.391 -5.65 -175.959
- 90 84.9408 1239 0 1 68.0421 -5.36831 -204.45
- 90 74.4697 1238 0 1 67.85 -5.30171 -204.674
- 90 38.6836 875 0 0 66.9338 -4.89022 -205.85
- 90 88.9234 876 0 0 66.8373 -4.85 -205.969
- 90 128.831 638 5 0 63.171 -52.4145 -55.85
- 90 44.803 1209 5 1 61.8982 -52.3659 -54.85
- 90 177.807 679 6 0 117.28 -44.1924 -26.2499
- 90 211.641 680 6 0 117.224 -44.05 -26.0601
-Number of digits in this event = 79
-Using G4ParticleGun ...
-7.28428 LIN
+Number of tracker hits in this event = 0
+Number of digits in this event = 1
+Using G4ParticleGun ...
+6.62924 LIN
gamma
Event: 91
-Number of tracker hits in this event = 156
- 91 455.35 797 10 1 -20.4938 -109.631 95.55
- 91 451.561 352 10 0 -20.4976 -109.633 94.15
- 91 275.528 797 9 1 -20.5746 -109.709 65.55
- 91 293.467 352 9 0 -20.5799 -109.712 64.15
- 91 179.476 796 8 1 -20.6851 -109.77 35.55
- 91 114.462 351 8 0 -20.6837 -109.775 34.15
- 91 141.687 796 7 1 -20.673 -109.873 5.55
- 91 242.342 351 7 0 -20.6728 -109.873 4.15
- 91 116.458 796 6 1 -20.653 -109.852 -24.45
- 91 283.096 351 6 0 -20.6471 -109.858 -25.85
- 91 885.661 797 5 1 -20.5305 -109.984 -54.45
- 91 235.578 350 5 0 -20.5174 -109.995 -55.85
- 91 276.699 799 4 1 -20.2399 -110.222 -84.45
- 91 112.147 349 4 0 -20.2272 -110.227 -85.85
- 91 265.568 800 3 1 -19.986 -110.312 -114.45
- 91 287.844 349 3 0 -19.965 -110.313 -115.85
- 91 259.291 802 2 1 -19.5388 -110.365 -144.45
- 91 123.634 348 2 0 -19.5177 -110.37 -145.85
- 91 125.533 804 1 1 -19.0852 -110.464 -174.45
- 91 237.864 348 1 0 -19.0586 -110.468 -175.85
- 91 117.318 807 0 1 -18.5172 -110.555 -204.45
- 91 117.561 347 0 0 -18.4913 -110.564 -205.85
- 91 256.131 631 1 0 23.5947 -53.827 -176.25
- 91 5.48712 803 2 1 -19.45 -110.267 -144.831
- 91 327.028 350 2 0 -19.2377 -110.14 -145.85
- 91 131.796 832 1 1 -13.5932 -104.223 -174.45
- 91 114.835 382 1 0 -13.132 -103.72 -175.85
- 91 121.561 857 0 1 -8.49296 -94.3339 -204.45
- 91 80.9045 430 0 0 -8.7127 -94.0088 -205.85
- 91 47.7123 431 0 0 -8.7601 -93.95 -206.118
- 91 65.1436 405 0 0 -14.8691 -99.094 -205.85
- 91 246.768 406 0 0 -14.9052 -98.9493 -206.136
- 91 124.36 756 8 1 -28.7095 -39.8948 35.15
- 91 302.83 757 8 1 -28.65 -40.0261 35.3862
- 91 241.784 798 4 1 -20.25 -110.284 -84.8251
- 91 11.2023 341 4 0 -16.9522 -111.778 -85.8501
- 91 157.891 823 4 1 -15.3043 -113.699 -84.8499
- 91 196.073 354 5 0 -20.4808 -109.303 -55.85
- 91 76.6622 796 3 1 -20.742 -114.998 -114.45
- 91 55.5233 795 3 1 -20.85 -115.077 -114.713
- 91 92.4839 318 3 0 -22.4635 -116.386 -115.85
- 91 132.969 317 3 0 -22.7098 -116.55 -116.022
- 91 320.551 352 5 0 -20.3791 -109.709 -55.85
- 91 136.771 815 4 1 -16.9209 -105.657 -84.45
- 91 118.6 373 4 0 -16.8916 -105.534 -85.85
- 91 207.251 830 3 1 -13.9475 -104.939 -114.45
- 91 82.7527 829 3 1 -14.0501 -104.816 -114.683
- 91 55.8805 385 3 0 -15.1028 -103.144 -115.851
- 91 55.3346 386 3 0 -15.1581 -102.95 -115.973
- 91 73.0134 387 3 0 -15.1629 -102.75 -116.081
- 91 103.112 388 3 0 -15.143 -102.55 -116.195
- 91 79.3824 639 3 0 -25.3537 -52.1813 -116.25
- 91 74.6125 640 3 0 -25.4221 -52.05 -116.057
- 91 144.998 641 3 0 -25.4752 -51.8498 -115.969
- 91 102.537 642 3 0 -25.5957 -51.65 -116.069
- 91 293.968 1185 3 0 12.5586 57.1073 -116.25
- 91 188.333 1184 3 0 12.6855 57.05 -116.105
- 91 80.3525 795 5 1 -20.9385 -147.075 -54.45
- 91 46.498 796 5 1 -20.8498 -147.107 -54.5948
- 91 50.3264 798 5 1 -20.45 -147.15 -54.5371
- 91 303.879 797 7 1 -20.65 -109.822 5.53473
- 91 62.1207 357 7 0 -20.3953 -108.694 4.15
- 91 86.1864 358 7 0 -20.4392 -108.55 4.04546
- 91 254.616 359 7 0 -20.5116 -108.35 3.99417
- 91 152.938 360 7 0 -21.2001 -108.15 3.95103
- 91 56.5972 783 7 1 -23.3224 -108.006 5.15
- 91 118.46 782 7 1 -23.45 -107.976 5.22924
- 91 19.5222 781 7 1 -23.65 -107.989 5.18817
- 91 65.1311 356 7 0 -23.0462 -108.863 4.15
- 91 190.213 355 7 0 -23.0809 -108.95 4.09048
- 91 250.25 797 8 1 -20.65 -109.857 35.5093
- 91 21.5642 798 8 1 -20.45 -109.987 35.2242
- 91 104.685 349 8 0 -20.2421 -110.281 34.15
- 91 254.163 537 8 0 -27.2635 -72.5866 33.7503
- 91 130.368 755 8 1 -28.85 -72.6229 35.1927
- 91 131.357 754 8 1 -29.0504 -72.5177 35.3369
- 91 28.2721 798 10 1 -20.45 -109.637 95.2034
- 91 64.238 847 9 1 -10.5674 -109.035 65.55
- 91 74.9575 848 9 1 -10.45 -109.183 65.3425
- 91 74.8403 350 9 0 -9.74893 -110.01 64.1498
- 91 85.1969 349 9 0 -9.63186 -110.15 63.9511
- 91 42.4733 933 8 1 6.74838 -128.799 35.55
- 91 91.6249 934 8 1 6.85 -128.78 35.4858
- 91 179.549 935 8 1 7.05 -128.717 35.3637
- 91 83.2716 264 8 0 6.91473 -127.33 34.1498
- 91 74.097 265 8 0 6.85612 -127.15 33.9849
- 91 29.1833 266 8 0 6.82191 -126.95 33.8215
- 91 30.2864 190 8 0 -149.915 -142.122 33.7501
- 91 189.215 189 8 0 -150.016 -142.15 33.8055
- 91 3.10142 151 8 1 -149.756 -142.021 35.1505
- 91 162.103 152 8 1 -149.75 -142.018 35.1641
- 91 181.895 153 8 1 -149.55 -142.18 35.5404
- 91 171.3 154 8 1 -149.35 -142.308 35.3437
- 91 83.0176 796 10 1 -20.65 -109.592 95.3315
- 91 146.227 352 8 0 -20.5059 -109.701 34.15
- 91 120.914 797 6 1 -20.5081 -109.898 -24.45
- 91 128.838 350 4 0 -20.3704 -110.063 -85.85
- 91 636.594 798 3 1 -20.3556 -110.109 -114.45
- 91 317.903 350 3 0 -20.3554 -110.113 -115.85
- 91 216.358 798 2 1 -20.342 -110.185 -144.45
- 91 227.785 349 2 0 -20.341 -110.187 -145.85
- 91 124.276 798 1 1 -20.3226 -110.217 -174.45
- 91 127.925 349 1 0 -20.322 -110.217 -175.85
- 91 382.756 798 0 1 -20.3061 -110.219 -204.45
- 91 116.449 349 0 0 -20.3073 -110.22 -205.85
- 91 81.4961 512 3 1 -77.45 -139.416 -114.674
- 91 167.752 688 3 0 69.8124 -42.3316 -116.25
- 91 335.296 348 0 0 -20.3831 -110.541 -205.85
- 91 119.468 289 0 0 -8.12647 -122.339 -206.25
- 91 9.63444 288 0 0 -8.11964 -122.35 -206.229
- 91 99.0947 811 2 1 -17.8035 -107.698 -144.45
- 91 129.553 363 2 0 -17.6585 -107.514 -145.85
- 91 109.241 827 1 1 -14.6323 -103.639 -174.45
- 91 217.819 383 1 0 -14.4471 -103.49 -175.85
- 91 71.0309 845 0 1 -10.878 -100.451 -204.45
- 91 162.593 846 0 1 -10.85 -100.44 -204.632
- 91 0.599704 398 0 0 -10.6901 -100.35 -205.85
- 91 190.609 399 0 0 -10.6894 -100.35 -205.856
- 91 33.7387 1091 0 1 38.25 -69.5602 -204.836
- 91 59.7628 797 3 1 -20.45 -110.245 -114.672
- 91 135.651 794 2 1 -21.1786 -110.652 -144.45
- 91 153.126 346 2 0 -21.3453 -110.759 -145.85
- 91 118.063 786 1 1 -22.7844 -114.676 -174.45
- 91 185.756 326 1 0 -22.7631 -114.918 -175.85
- 91 52.8146 325 1 0 -22.7603 -114.95 -176.042
- 91 10.6993 789 0 1 -22.0563 -120.802 -204.45
- 91 95.2283 790 0 1 -22.05 -120.802 -204.496
- 91 112.599 296 0 0 -21.8512 -120.78 -205.85
- 91 187.167 967 0 1 13.45 -87.041 -204.767
- 91 107.539 797 4 1 -20.512 -109.661 -84.45
- 91 142.683 352 4 0 -20.5039 -109.661 -85.85
- 91 109.418 352 3 0 -20.3372 -109.675 -115.85
- 91 118.047 797 1 1 -20.5266 -110.512 -174.45
- 91 116.657 797 0 1 -20.6181 -110.989 -204.45
- 91 131.437 345 0 0 -20.6207 -111.009 -205.85
- 91 24.3003 1013 3 0 -144.287 22.65 -116.059
- 91 56.1799 168 3 1 -146.35 24.0427 -114.573
- 91 64.5017 1078 2 1 35.8018 21.6579 -144.85
- 91 46.8812 1079 2 1 35.85 22.0927 -144.457
- 91 167.262 499 0 1 -80.0693 -126.238 -204.85
- 91 93.8999 498 0 1 -80.25 -126.308 -204.763
- 91 19.3818 351 5 0 -20.5068 -109.75 -56.1673
- 91 211.627 351 4 0 -20.2622 -109.871 -85.85
- 91 18.0816 799 3 1 -20.053 -111.472 -114.45
- 91 60.8521 343 3 0 -19.9839 -111.54 -115.85
- 91 81.2532 342 3 0 -19.974 -111.55 -116.053
- 91 243.28 806 2 1 -18.6986 -112.952 -144.45
- 91 110.842 335 2 0 -18.6292 -113.04 -145.85
- 91 62.9756 814 1 1 -17.0628 -114.843 -174.45
- 91 43.792 815 1 1 -17.05 -114.854 -174.682
- 91 122.125 823 0 1 -15.3107 -116.236 -204.45
- 91 66.4482 319 0 0 -15.1934 -116.337 -205.85
- 91 56.6281 318 0 0 -15.1774 -116.35 -206.036
- 91 163.293 1692 3 0 84.8474 158.55 -115.865
- 91 276.19 334 4 0 -37.3373 -113.333 -86.2498
- 91 66.1025 333 4 0 -37.4603 -113.35 -86.1375
-Number of digits in this event = 78
-Using G4ParticleGun ...
-6.70897 LIN
+Number of tracker hits in this event = 6
+ 91 228.621 659 0 1 -48.2453 -113.14 -204.451
+ 91 310.857 335 0 0 -48.246 -113.14 -205.85
+ 91 281.524 357 6 0 133.569 -108.605 -26.25
+ 91 88.9956 627 0 1 -54.45 -108.851 -204.699
+ 91 35.4003 742 2 1 -31.4934 -174.678 -144.85
+ 91 123.071 296 0 0 -96.981 -120.772 -206.25
+Number of digits in this event = 6
+Using G4ParticleGun ...
+4.66243 LIN
gamma
Event: 92
Number of tracker hits in this event = 0
-Number of digits in this event = 1
+Number of digits in this event = 2
Using G4ParticleGun ...
-7.54272 LIN
+4.43212 LIN
gamma
Event: 93
-Number of tracker hits in this event = 5
- 93 21.9823 1672 4 1 154.588 91.4648 -84.85
- 93 147.803 1673 4 1 154.75 91.5155 -84.723
- 93 1.08924 1361 4 0 156.156 92.5484 -85.85
- 93 159.417 1362 4 0 156.157 92.55 -85.8516
- 93 28.1652 557 0 1 -68.4723 -11.3232 -204.45
-Number of digits in this event = 3
+Number of tracker hits in this event = 0
+Number of digits in this event = 1
Using G4ParticleGun ...
-5.76175 LIN
+1.18177 LIN
gamma
Event: 94
Number of tracker hits in this event = 0
-Number of digits in this event = 2
+Number of digits in this event = 1
Using G4ParticleGun ...
-8.77079 LIN
+6.9332 LIN
gamma
Event: 95
-Number of tracker hits in this event = 26
- 95 383.853 1256 1 1 71.4322 -59.2068 -174.45
- 95 465.047 604 1 0 71.4329 -59.2057 -175.85
- 95 128.824 1256 0 1 71.4428 -59.1847 -204.45
- 95 112.62 604 0 0 71.4437 -59.1836 -205.85
- 95 102.281 1448 1 1 109.871 -156.023 -174.85
- 95 62.2639 1449 1 1 109.95 -156.162 -174.592
- 95 103.782 483 0 0 178.281 -83.25 -206.23
- 95 63.8623 482 0 0 178.569 -83.45 -206.173
- 95 7.86092 273 1 0 111.408 -125.358 -176.25
- 95 90.8862 272 1 0 111.528 -125.55 -175.9
- 95 6.41366 1553 1 1 130.937 -139.939 -174.85
- 95 184.179 149 1 0 141.987 -150.254 -175.85
- 95 74.8331 150 1 0 142.128 -150.15 -176.008
- 95 170.442 1258 0 1 71.8101 -58.5462 -204.45
- 95 280.71 607 0 0 71.8021 -58.5086 -205.85
- 95 43.9145 678 2 0 140.341 -44.3212 -146.25
- 95 20.1954 1542 2 1 128.66 -36.9277 -144.85
- 95 135.425 718 2 0 126.531 -36.27 -145.85
- 95 160.388 1521 2 1 124.452 -36.9727 -144.85
- 95 14.4868 723 2 0 127.717 -35.45 -145.927
- 95 56.6242 1259 0 1 71.85 -58.58 -204.84
- 95 48.7368 599 0 0 72.9298 -60.0563 -205.85
- 95 187.981 1263 0 1 72.7105 -59.5459 -204.85
- 95 103.775 1265 0 1 73.1876 -59.3657 -204.45
- 95 1.84392 1266 0 1 73.25 -59.3917 -204.839
- 95 107.766 602 0 0 73.4138 -59.4505 -205.85
-Number of digits in this event = 12
+Number of tracker hits in this event = 25
+ 95 251.064 661 5 1 -47.8048 -71.9046 -54.45
+ 95 276.161 540 5 0 -47.8033 -71.9052 -55.85
+ 95 248.207 661 4 1 -47.7684 -71.9174 -84.45
+ 95 237.18 540 4 0 -47.7675 -71.9181 -85.85
+ 95 279.767 661 3 1 -47.7497 -71.9331 -114.45
+ 95 254.666 540 3 0 -47.7502 -71.9325 -115.85
+ 95 184.115 661 2 1 -47.7618 -71.9251 -144.45
+ 95 88.0442 540 2 0 -47.7624 -71.9247 -145.85
+ 95 236.19 661 1 1 -47.7725 -71.9227 -174.45
+ 95 151.579 540 1 0 -47.7725 -71.9232 -175.85
+ 95 151.297 661 0 1 -47.7759 -71.9274 -204.45
+ 95 121.835 540 0 0 -47.776 -71.9283 -205.85
+ 95 8.56709 979 2 1 15.9697 27.5209 -144.45
+ 95 50.9159 871 2 0 54.9452 -5.65 -146.21
+ 95 62.3471 634 2 1 -53.05 -43.9638 -144.721
+ 95 14.2255 635 2 1 -53.05 -43.9259 -144.65
+ 95 35.9358 704 6 1 -39.1664 66.9857 -24.85
+ 95 27.7259 539 3 0 -47.7047 -72.05 -116.127
+ 95 152.095 662 2 1 -47.6385 -72.3098 -144.45
+ 95 103.943 538 2 0 -47.6369 -72.3281 -145.85
+ 95 137.693 662 1 1 -47.577 -72.7169 -174.45
+ 95 214.775 536 1 0 -47.5713 -72.7398 -175.85
+ 95 102.646 663 0 1 -47.4462 -73.2071 -204.45
+ 95 142.356 534 0 0 -47.4127 -73.2369 -205.85
+ 95 42.8757 660 3 1 -47.9227 -72.2992 -114.45
+Number of digits in this event = 17
Using G4ParticleGun ...
-5.78856 LIN
+6.28603 LIN
gamma
Event: 96
-Number of tracker hits in this event = 5
- 96 2.85873 540 0 0 -66.1498 -72.0199 -206.25
- 96 44.5638 16 0 0 -6.67326 -176.85 -206.25
- 96 59.483 1780 3 1 176.35 -151.347 -114.661
- 96 3.59686 1212 4 0 26.3789 62.45 -85.9517
- 96 170.924 1630 9 0 123.706 146.155 63.75
-Number of digits in this event = 3
+Number of tracker hits in this event = 71
+ 96 333.405 720 11 1 -35.9021 -26.0967 125.55
+ 96 226.597 769 11 0 -35.9031 -26.0977 124.15
+ 96 227.518 720 10 1 -35.9335 -26.1043 95.55
+ 96 310.56 769 10 0 -35.9398 -26.0991 94.15
+ 96 105.286 719 9 1 -36.0945 -25.9957 65.55
+ 96 322.957 770 9 0 -36.1022 -25.9904 64.15
+ 96 140.255 718 8 1 -36.2715 -25.8315 35.55
+ 96 141.966 771 8 0 -36.2793 -25.8201 34.15
+ 96 119.473 718 7 1 -36.3941 -25.6064 5.55
+ 96 146.339 772 7 0 -36.3997 -25.5885 4.15
+ 96 165.6 717 6 1 -36.5251 -25.1865 -24.45
+ 96 141.264 774 6 0 -36.5398 -25.1656 -25.85
+ 96 104.078 716 5 1 -36.8193 -24.7484 -54.45
+ 96 103.468 776 5 0 -36.8385 -24.7333 -55.85
+ 96 122.968 714 4 1 -37.2226 -24.4037 -84.45
+ 96 125.793 778 4 0 -37.2394 -24.3932 -85.85
+ 96 123.443 712 3 1 -37.6145 -24.2128 -114.45
+ 96 98.5099 779 3 0 -37.632 -24.2087 -115.85
+ 96 178.222 710 2 1 -37.9803 -24.1017 -144.45
+ 96 106.509 779 2 0 -37.9951 -24.1005 -145.85
+ 96 102.187 708 1 1 -38.3141 -24.0672 -174.45
+ 96 196.466 779 1 0 -38.3231 -24.0714 -175.85
+ 96 114.346 707 0 1 -38.5189 -24.1326 -204.45
+ 96 193.927 779 0 0 -38.5314 -24.1297 -205.85
+ 96 37.095 419 0 0 -163.141 -96.2892 -206.25
+ 96 135.218 720 9 1 -35.8605 -26.0622 65.55
+ 96 102.867 769 9 0 -35.8589 -26.0575 64.15
+ 96 119.579 721 8 1 -35.8217 -25.9615 35.55
+ 96 187.077 770 8 0 -35.8205 -25.9584 34.15
+ 96 111.317 721 7 1 -35.7875 -25.9007 5.55
+ 96 132.157 770 7 0 -35.7837 -25.8982 4.15
+ 96 162.717 721 6 1 -35.7051 -25.8326 -24.45
+ 96 136.982 771 6 0 -35.701 -25.8293 -25.85
+ 96 172.898 722 5 1 -35.6126 -25.7701 -54.45
+ 96 119.909 771 5 0 -35.6078 -25.7646 -55.85
+ 96 197.563 722 4 1 -35.499 -25.6587 -84.45
+ 96 76.6702 771 4 0 -35.4924 -25.6513 -85.85
+ 96 51.0315 772 4 0 -35.4914 -25.65 -86.0853
+ 96 118.509 723 3 1 -35.3592 -25.4987 -114.45
+ 96 165.144 772 3 0 -35.3546 -25.4943 -115.85
+ 96 110.77 724 2 1 -35.244 -25.3901 -144.45
+ 96 112.439 773 2 0 -35.2395 -25.3903 -145.85
+ 96 215.623 724 1 1 -35.1528 -25.3941 -174.45
+ 96 313.302 773 1 0 -35.1475 -25.4002 -175.85
+ 96 103.779 724 0 1 -35.0532 -25.5213 -204.45
+ 96 7.49522 725 0 1 -35.05 -25.5139 -204.824
+ 96 246.772 772 0 0 -35.0408 -25.4921 -205.85
+ 96 1.58044 1426 1 0 55.5159 105.544 -175.85
+ 96 204.047 1187 1 1 57.6052 105.775 -174.45
+ 96 234.147 1188 1 1 57.6502 106.342 -174.618
+ 96 105.626 1189 1 1 57.85 107.012 -174.513
+ 96 226.686 1190 1 1 58.05 107.062 -174.473
+ 96 69.1145 1191 1 1 58.25 107.111 -174.577
+ 96 56.5753 727 7 1 -34.5028 -9.92756 5.15
+ 96 143.337 728 7 1 -34.45 -9.85137 5.24525
+ 96 312.888 722 2 1 -35.503 -25.5739 -144.45
+ 96 212.993 772 2 0 -35.4763 -25.5643 -145.85
+ 96 257.69 725 1 1 -34.9034 -25.3369 -174.45
+ 96 305.935 729 0 1 -34.1731 -25.2094 -204.45
+ 96 123.753 774 0 0 -34.1011 -25.2235 -205.85
+ 96 122.574 577 0 1 -64.4649 -38.3889 -204.85
+ 96 55.1421 1003 0 0 -36.4844 20.65 -206.184
+ 96 145.115 576 0 1 -64.65 -38.4343 -204.76
+ 96 163.883 772 1 0 -34.8696 -25.4522 -175.85
+ 96 356.218 721 1 1 -35.6943 -26.0555 -174.45
+ 96 240.903 769 1 0 -35.6931 -26.0548 -175.85
+ 96 116.915 722 0 1 -35.5867 -26.0484 -204.45
+ 96 187.604 769 0 0 -35.5785 -26.0561 -205.85
+ 96 243.201 770 1 0 -35.6911 -26.05 -175.9
+ 96 129.184 721 0 1 -35.7145 -26.2623 -204.45
+ 96 216.945 768 0 0 -35.6975 -26.3098 -205.85
+Number of digits in this event = 48
Using G4ParticleGun ...
-7.98654 LIN
+6.7247 LIN
gamma
Event: 97
-Number of tracker hits in this event = 12
- 97 335.65 1250 2 1 70.0885 127.393 -144.45
- 97 324.787 1536 2 0 70.0887 127.393 -145.85
- 97 213.888 1250 1 1 70.1028 127.411 -174.45
- 97 242.528 1536 1 0 70.102 127.41 -175.85
- 97 478.621 1250 0 1 70.0788 127.4 -204.45
- 97 595.7 1536 0 0 70.08 127.395 -205.85
- 97 99.1012 1783 4 0 -65.5389 176.871 -86.25
- 97 64.059 1037 2 1 27.5006 60.0705 -144.85
- 97 20.336 1123 5 0 -22.3342 44.7252 -56.25
- 97 115.706 536 3 1 -72.65 87.4385 -114.724
- 97 127.991 54 8 0 61.4799 -169.15 33.9256
- 97 537.029 1249 2 1 70.05 127.43 -144.49
-Number of digits in this event = 11
+Number of tracker hits in this event = 9
+ 97 67.8121 143 2 0 163.291 -151.367 -146.25
+ 97 62.0429 144 2 0 163.909 -151.35 -145.866
+ 97 49.8395 1726 2 1 165.533 -150.652 -144.85
+ 97 134.294 1727 2 1 165.55 -150.642 -144.839
+ 97 201.886 1728 2 1 165.75 -150.602 -144.731
+ 97 80.9808 1729 2 1 165.951 -150.565 -144.471
+ 97 149.678 146 2 0 165.053 -150.785 -145.85
+ 97 38.6266 1797 7 1 179.55 145.156 5.26037
+ 97 194.573 1796 7 1 179.55 145.25 5.40129
+Number of digits in this event = 6
Using G4ParticleGun ...
-4.23402 LIN
+5.4983 LIN
gamma
Event: 98
-Number of tracker hits in this event = 0
-Number of digits in this event = 2
+Number of tracker hits in this event = 74
+ 98 245.473 574 9 1 -65.1712 105.515 65.55
+ 98 268.031 1426 9 0 -65.1703 105.514 64.15
+ 98 299.319 574 8 1 -65.1463 105.494 35.55
+ 98 253.261 1426 8 0 -65.1444 105.493 34.15
+ 98 248.169 574 7 1 -65.1006 105.471 5.55
+ 98 247.195 1426 7 0 -65.1003 105.469 4.15
+ 98 308.071 574 6 1 -65.0948 105.425 -24.45
+ 98 313.954 1426 6 0 -65.097 105.422 -25.85
+ 98 243.228 574 5 1 -65.1482 105.354 -54.45
+ 98 153.639 1425 5 0 -65.1516 105.349 -55.85
+ 98 144.712 574 4 1 -65.2322 105.27 -84.45
+ 98 264.127 1425 4 0 -65.2384 105.267 -85.85
+ 98 172.682 573 3 1 -65.3618 105.208 -114.45
+ 98 110.942 1425 3 0 -65.3702 105.204 -115.85
+ 98 154.33 572 2 1 -65.5421 105.127 -144.45
+ 98 250.265 1424 2 0 -65.5487 105.123 -145.85
+ 98 120.695 571 1 1 -65.6952 105.02 -174.45
+ 98 124.738 1424 1 0 -65.7042 105.015 -175.85
+ 98 133.489 570 0 1 -65.8752 104.916 -204.45
+ 98 225.923 1423 0 0 -65.8852 104.911 -205.85
+ 98 255.123 151 4 1 -149.75 112.911 -84.8341
+ 98 11.9532 824 3 1 -15.1318 161.085 -114.85
+ 98 139.602 825 3 1 -15.0499 161.211 -114.58
+ 98 166.524 574 3 1 -65.25 105.134 -114.591
+ 98 22.7236 1424 3 0 -65.095 104.97 -115.85
+ 98 107.767 1423 3 0 -65.0712 104.95 -115.932
+ 98 26.0223 1692 3 0 -63.2591 158.672 -116.25
+ 98 99.0542 1693 3 0 -63.2713 158.75 -116.22
+ 98 88.857 1694 3 0 -63.2215 158.951 -116.07
+ 98 117.827 1695 3 0 -63.3715 159.15 -115.95
+ 98 29.7402 1696 3 0 -63.6024 159.35 -115.931
+ 98 40.8395 583 3 1 -63.2902 159.371 -114.85
+ 98 176.095 584 3 1 -63.25 159.366 -114.738
+ 98 176.823 585 3 1 -63.0499 159.289 -114.497
+ 98 92.928 573 9 1 -65.25 105.516 65.363
+ 98 195.937 572 9 1 -65.45 105.432 65.3811
+ 98 218.947 575 5 1 -65.0379 105.622 -54.45
+ 98 284.986 1427 5 0 -65.0337 105.632 -55.85
+ 98 149 575 4 1 -64.9485 105.807 -84.45
+ 98 119.728 1428 4 0 -64.9428 105.817 -85.85
+ 98 320.159 576 3 1 -64.8261 105.993 -114.45
+ 98 146.255 1429 3 0 -64.8188 106 -115.85
+ 98 162.12 576 2 1 -64.6551 106.126 -144.45
+ 98 117.168 1429 2 0 -64.6533 106.135 -145.85
+ 98 100.202 577 1 1 -64.6178 106.312 -174.45
+ 98 249.256 1430 1 0 -64.618 106.323 -175.85
+ 98 200.209 577 0 1 -64.6128 106.538 -204.45
+ 98 262.587 1432 0 0 -64.6112 106.55 -205.85
+ 98 97.3767 1445 8 1 109.288 -33.698 35.15
+ 98 154.084 1430 3 0 -64.4249 106.15 -115.943
+ 98 18.363 574 2 1 -65.25 106.238 -144.795
+ 98 238.927 1425 2 0 -63.8025 105.221 -145.85
+ 98 137.525 577 4 1 -64.511 105.324 -84.45
+ 98 117.954 589 3 1 -62.101 105.516 -114.45
+ 98 117.134 1426 3 0 -61.968 105.523 -115.85
+ 98 12.4805 603 2 1 -59.2524 105.719 -144.45
+ 98 108.246 604 2 1 -59.25 105.719 -144.473
+ 98 136.464 1427 2 0 -59.1105 105.712 -145.85
+ 98 117.717 618 1 1 -56.3201 105.465 -174.45
+ 98 135.383 1426 1 0 -56.1951 105.461 -175.85
+ 98 25.0154 631 0 1 -53.6603 105.338 -204.45
+ 98 75.5705 632 0 1 -53.65 105.341 -204.542
+ 98 237.555 1426 0 0 -53.5127 105.418 -205.85
+ 98 50.1859 573 5 1 -65.2502 105.646 -54.6799
+ 98 93.6843 1429 5 0 -66.3553 106.053 -55.8501
+ 98 165.801 1430 5 0 -66.5213 106.15 -55.9701
+ 98 12.4468 1393 5 0 -131.834 98.7621 -56.25
+ 98 154.581 1392 5 0 -131.86 98.75 -56.2256
+ 98 96.0089 1391 5 0 -132.283 98.55 -55.9139
+ 98 17.465 193 5 1 -141.482 95.1912 -54.85
+ 98 89.1501 192 5 1 -141.55 95.1675 -54.8382
+ 98 60.6176 191 5 1 -141.75 95.0818 -54.7417
+ 98 57.4406 190 5 1 -141.95 95.0287 -54.634
+ 98 10.3354 189 5 1 -142.15 94.9259 -54.4825
+Number of digits in this event = 45
Using G4ParticleGun ...
-5.44876 LIN
+3.9683 LIN
gamma
Event: 99
-Number of tracker hits in this event = 2
- 99 67.8507 312 3 0 44.3751 -117.612 -116.25
- 99 28.6591 1483 8 1 116.75 -19.2104 35.5144
-Number of digits in this event = 2
+Number of tracker hits in this event = 45
+ 99 227.892 756 8 1 -28.7953 -134.094 35.55
+ 99 303.842 230 8 0 -28.8111 -134.106 34.15
+ 99 124.863 754 7 1 -29.1623 -134.302 5.55
+ 99 185.299 229 7 0 -29.1228 -134.329 4.15
+ 99 182.918 758 6 1 -28.3171 -134.691 -24.45
+ 99 94.0069 227 6 0 -28.2344 -134.705 -25.85
+ 99 169.7 767 5 1 -26.4759 -134.94 -54.45
+ 99 111.278 226 5 0 -26.4623 -134.945 -55.85
+ 99 157.713 769 4 1 -26.089 -135.051 -84.45
+ 99 140.588 225 4 0 -26.1251 -135.024 -85.85
+ 99 134.913 764 3 1 -27.0603 -134.418 -114.45
+ 99 147.558 228 3 0 -27.1123 -134.39 -115.85
+ 99 275.568 758 2 1 -28.2569 -133.815 -144.45
+ 99 114.592 231 2 0 -28.285 -133.838 -145.85
+ 99 389.614 755 1 1 -28.8748 -134.395 -174.45
+ 99 275.176 228 1 0 -28.8887 -134.43 -175.85
+ 99 269.578 754 0 1 -29.1481 -134.854 -204.45
+ 99 267.98 226 0 0 -29.1397 -134.898 -205.85
+ 99 4.38686 713 2 1 -37.25 -118.714 -144.556
+ 99 21.6839 397 2 0 33.8217 -100.75 -146.028
+ 99 89.3513 396 2 0 33.8738 -100.75 -145.985
+ 99 273.449 755 3 1 -28.8824 -134.138 -114.45
+ 99 384.95 230 3 0 -28.8878 -134.139 -115.85
+ 99 129.06 755 2 1 -29.0127 -134.155 -144.45
+ 99 190.367 229 2 0 -29.0166 -134.158 -145.85
+ 99 294.587 754 1 1 -29.0971 -134.216 -174.45
+ 99 127.147 229 1 0 -29.0958 -134.219 -175.85
+ 99 121.666 229 0 0 -29.069 -134.283 -205.85
+ 99 118.674 757 2 1 -28.6222 -134.127 -144.45
+ 99 168.766 230 2 0 -28.6314 -134.147 -145.85
+ 99 120.941 756 1 1 -28.8097 -134.522 -174.45
+ 99 129.569 755 0 1 -28.975 -134.755 -204.45
+ 99 117.376 756 7 1 -28.754 -134.086 5.55
+ 99 145.745 230 7 0 -28.7562 -134.081 4.15
+ 99 166.516 756 6 1 -28.7882 -133.95 -24.45
+ 99 116.577 231 6 0 -28.7865 -133.949 -25.85
+ 99 137.937 756 5 1 -28.7585 -133.92 -54.45
+ 99 116.671 231 5 0 -28.7515 -133.921 -55.85
+ 99 106.983 757 4 1 -28.5823 -133.962 -84.45
+ 99 117.635 230 4 0 -28.5762 -133.965 -85.85
+ 99 134.08 757 3 1 -28.4525 -134.019 -114.45
+ 99 102.843 759 1 1 -28.1184 -134.102 -174.45
+ 99 111.617 230 1 0 -28.1228 -134.099 -175.85
+ 99 97.5176 759 0 1 -28.2373 -134.04 -204.45
+ 99 117.363 230 0 0 -28.2468 -134.038 -205.85
+Number of digits in this event = 31
Run terminated.
Run Summary
Number of events processed : 100
- User=45.100000s Real=45.880644s Sys=0.000000s
+ User=42.080000s Real=42.238811s Sys=0.040000s
End of Run 1
/gun/particle e-
/gun/energy 1 GeV
@@ -9390,8047 +9336,7911 @@ Cannot set FirstId as its value was already used.
done
Using G4ParticleGun ...
-3.21748 LIN
+1.30123 LIN
e-
Event: 0
-Number of tracker hits in this event = 49
- 0 175.871 1444 9 1 108.971 -64.1154 65.55
- 0 307.885 579 9 0 108.97 -64.1202 64.15
- 0 368.521 1444 8 1 108.956 -64.2169 35.55
- 0 181.268 579 8 0 108.956 -64.2204 34.15
- 0 95.7316 1444 7 1 108.953 -64.2824 5.55
- 0 110.874 578 7 0 108.954 -64.2887 4.15
- 0 191.367 1444 6 1 108.972 -64.4158 -24.45
- 0 153.964 578 6 0 108.974 -64.4219 -25.85
- 0 111.807 1444 5 1 109.007 -64.5281 -54.45
- 0 130.862 577 5 0 109.007 -64.5312 -55.85
- 0 124.988 1444 4 1 109.006 -64.591 -84.45
- 0 106.919 577 4 0 109.028 -64.5858 -85.85
- 0 141.738 1446 3 1 109.481 -64.5769 -114.45
- 0 120.214 577 3 0 109.512 -64.578 -115.85
- 0 164.17 1450 2 1 110.197 -64.5401 -144.45
- 0 151.039 577 2 0 110.199 -64.5966 -145.85
- 0 116.518 1450 1 1 110.342 -65.7945 -174.45
- 0 144.579 571 1 0 110.34 -65.7589 -175.85
- 0 140.851 1449 0 1 110.133 -65.2953 -204.45
- 0 58.3971 573 0 0 110.096 -65.255 -205.85
- 0 81.7135 574 0 0 110.091 -65.25 -206.027
- 0 239.026 1445 3 1 109.159 -64.6644 -114.45
- 0 254.251 576 3 0 109.163 -64.6736 -115.85
- 0 348.31 1445 2 1 109.323 -64.8418 -144.45
- 0 375.297 575 2 0 109.374 -64.8779 -145.85
- 0 105.081 1451 1 1 110.446 -65.3914 -174.45
- 0 176.434 573 1 0 110.491 -65.4071 -175.85
- 0 203.395 1456 0 1 111.465 -65.7184 -204.45
- 0 142.336 571 0 0 111.529 -65.7541 -205.85
- 0 104.348 1446 2 1 109.356 -64.8969 -144.45
- 0 130.688 1443 1 1 108.853 -64.5104 -174.45
- 0 119.188 578 1 0 108.786 -64.4422 -175.85
- 0 110.217 1436 0 1 107.375 -63.2464 -204.45
- 0 34.3056 1435 0 1 107.35 -63.2307 -204.794
- 0 105.483 584 0 0 107.269 -63.1876 -205.85
- 0 224.531 1444 2 1 109.079 -64.9523 -144.45
- 0 286.272 572 2 0 108.538 -65.5287 -145.85
- 0 19.3239 576 2 0 108.984 -64.85 -146.16
- 0 13.9826 1434 1 1 106.987 -63.951 -174.45
- 0 147.286 1433 1 1 106.95 -63.9479 -174.488
- 0 63.9664 1432 1 1 106.75 -63.927 -174.71
- 0 481.499 581 1 0 105.79 -63.8148 -175.85
- 0 122.841 1323 0 1 84.7985 -61.3249 -204.45
- 0 44.7556 1322 0 1 84.65 -61.0744 -204.763
- 0 45.2457 599 0 0 84.0869 -60.1673 -205.85
- 0 88.5688 600 0 0 84.0083 -60.05 -206.008
- 0 282.463 1443 8 1 108.95 -64.7293 35.4602
- 0 81.7926 578 9 0 109.088 -64.25 63.9517
- 0 311.329 913 9 0 119.664 2.77168 63.75
-Number of digits in this event = 31
+Number of tracker hits in this event = 60
+ 0 110.238 798 11 1 -20.3307 36.7584 125.55
+ 0 162.627 1083 11 0 -20.3275 36.758 124.15
+ 0 107.874 798 10 1 -20.2694 36.7878 95.55
+ 0 118.65 1083 10 0 -20.2691 36.792 94.15
+ 0 109.357 798 9 1 -20.3672 36.8535 65.55
+ 0 215.542 1084 9 0 -20.3814 36.8532 64.15
+ 0 139.58 796 8 1 -20.6591 36.8585 35.55
+ 0 193.825 1084 8 0 -20.6698 36.8571 34.15
+ 0 124.771 795 7 1 -20.897 36.8309 5.55
+ 0 129.858 1083 7 0 -20.9057 36.8181 4.15
+ 0 207.183 794 6 1 -21.0768 36.5692 -24.45
+ 0 197.735 1082 6 0 -21.0987 36.5541 -25.85
+ 0 118.97 792 5 1 -21.5194 36.227 -54.45
+ 0 175.792 1080 5 0 -21.537 36.2017 -55.85
+ 0 110.182 790 4 1 -21.8903 35.6632 -84.45
+ 0 107.16 1077 4 0 -21.9063 35.6366 -85.85
+ 0 253.051 789 3 1 -22.237 35.1252 -114.45
+ 0 148.887 1075 3 0 -22.2667 35.0987 -115.85
+ 0 140.264 786 2 1 -22.8077 34.5481 -144.45
+ 0 118.118 1072 2 0 -22.8277 34.5277 -145.85
+ 0 100.365 784 1 1 -23.2338 34.0896 -174.45
+ 0 135.748 1070 1 0 -23.244 34.0629 -175.85
+ 0 218.629 783 0 1 -23.4381 33.5673 -204.45
+ 0 109.214 1067 0 0 -23.4376 33.5527 -205.85
+ 0 14.2473 1717 1 0 -92.9866 163.55 -176.182
+ 0 124.677 1718 1 0 -93.0891 163.75 -176.019
+ 0 52.3215 1719 1 0 -93.1036 163.95 -175.897
+ 0 42.8731 439 1 1 -92.2103 166.857 -174.85
+ 0 100.695 440 1 1 -92.15 166.908 -174.734
+ 0 183.304 1005 0 0 -149.441 21.2279 -206.25
+ 0 100.387 1004 0 0 -149.99 21.05 -205.916
+ 0 216.812 876 3 0 33.698 -4.69041 -116.25
+ 0 67.636 1040 3 1 28.1177 14.8229 -114.45
+ 0 147.634 784 0 1 -23.1551 35.6342 -204.45
+ 0 36.7091 782 0 1 -23.45 35.8294 -204.773
+ 0 119.509 1083 0 0 -24.7677 36.6807 -205.85
+ 0 121.966 1084 0 0 -25.0241 36.85 -206.083
+ 0 164.443 1077 0 0 -23.2283 35.5652 -205.85
+ 0 116.599 793 3 1 -21.2966 36.5855 -114.776
+ 0 238.822 1082 3 0 -21.22 36.6282 -115.85
+ 0 46.001 799 2 1 -20.1245 37.5197 -144.45
+ 0 76.5838 800 2 1 -20.05 37.5834 -144.609
+ 0 31.8482 1089 2 0 -19.6309 38.0245 -145.85
+ 0 86.0041 1090 2 0 -19.6063 38.05 -145.918
+ 0 94.1331 860 1 1 -7.87973 40.1539 -174.45
+ 0 107.711 1097 1 0 -8.29178 39.6032 -175.85
+ 0 147.734 1096 1 0 -8.40159 39.45 -176.128
+ 0 95.0833 935 1 0 -21.7755 7.12628 -176.25
+ 0 193.298 271 5 0 13.3857 -125.763 -56.25
+ 0 15.967 272 5 0 13.2181 -125.75 -55.8756
+ 0 492.461 970 5 1 14.2279 -124.653 -54.85
+ 0 43.7258 971 5 1 14.25 -124.622 -54.8246
+ 0 124.723 794 2 1 -21.2211 35.4576 -144.451
+ 0 50.4192 1074 2 0 -21.2982 34.9259 -145.85
+ 0 62.3585 1073 2 0 -21.309 34.8499 -146.041
+ 0 126.086 788 1 1 -22.2816 23.4204 -174.45
+ 0 109.024 1013 1 0 -22.2037 22.8042 -175.85
+ 0 101.435 797 0 1 -20.516 12.2812 -204.45
+ 0 54.7607 958 0 0 -20.369 11.7183 -205.851
+ 0 65.6686 957 0 0 -20.3501 11.65 -206.017
+Number of digits in this event = 28
Using G4ParticleGun ...
-5.81618 LIN
+3.33649 LIN
e-
Event: 1
-Number of tracker hits in this event = 28
- 1 126.864 1029 11 1 25.9331 37.0264 125.55
- 1 159.805 1084 11 0 25.9329 37.0258 124.15
- 1 206.233 1029 10 1 25.9331 37.0148 95.55
- 1 173.287 1084 10 0 25.9334 37.0148 94.15
- 1 178.406 1029 9 1 25.9395 37.0177 65.55
- 1 111.45 1084 9 0 25.9394 37.0184 64.15
- 1 141.371 1029 8 1 25.9347 37.0319 35.55
- 1 141.452 1084 8 0 25.9348 37.0334 34.15
- 1 101.009 1029 7 1 25.9368 37.0597 5.55
- 1 206.95 1085 7 0 25.9372 37.0605 4.15
- 1 158.348 1029 6 1 25.9443 37.0781 -24.45
- 1 143.031 1085 6 0 25.9428 37.0782 -25.85
- 1 281.554 1029 5 1 25.9117 37.082 -54.45
- 1 112.524 1085 5 0 25.9129 37.0836 -55.85
- 1 141.664 1029 4 1 25.9355 37.1196 -84.45
- 1 150.024 1085 4 0 25.9369 37.1215 -85.85
- 1 148.53 1029 3 1 25.9688 37.1685 -114.45
- 1 172.772 1085 3 0 25.9698 37.1718 -115.85
- 1 173.301 1029 2 1 25.9964 37.2369 -144.45
- 1 113.245 1085 2 0 25.9969 37.2407 -145.85
- 1 115.636 1029 1 1 26.0085 37.3167 -174.45
- 1 121.981 1086 1 0 25.9989 37.3195 -175.85
- 1 109.086 1028 0 1 25.7851 37.3162 -204.45
- 1 123.951 1086 0 0 25.7771 37.3011 -205.85
- 1 125.046 1113 0 0 31.0669 42.787 -206.25
- 1 108.61 1056 0 1 31.3954 43.0073 -204.85
- 1 77.385 1057 0 1 31.45 43.0381 -204.687
- 1 329.099 1030 9 1 26.05 37.1063 65.4604
-Number of digits in this event = 22
+Number of tracker hits in this event = 34
+ 1 171.812 351 10 1 -109.926 16.2318 95.55
+ 1 137.449 980 10 0 -109.925 16.2335 94.15
+ 1 138.453 351 9 1 -109.91 16.2622 65.55
+ 1 110.234 981 9 0 -109.907 16.2649 64.15
+ 1 163.696 351 8 1 -109.857 16.3232 35.55
+ 1 107.644 981 8 0 -109.855 16.3279 34.15
+ 1 274.662 351 7 1 -109.818 16.4299 5.55
+ 1 116.694 981 7 0 -109.816 16.4356 4.15
+ 1 183.695 351 6 1 -109.794 16.5471 -24.45
+ 1 325.744 982 6 0 -109.792 16.5466 -25.85
+ 1 101.826 351 5 1 -109.765 16.532 -54.45
+ 1 111.312 982 5 0 -109.767 16.5313 -55.85
+ 1 101.509 351 4 1 -109.849 16.4917 -84.45
+ 1 127.15 982 4 0 -109.854 16.4762 -85.85
+ 1 115.471 351 3 1 -109.906 16.2687 -114.45
+ 1 120.015 980 3 0 -109.903 16.2381 -115.85
+ 1 218.573 351 2 1 -109.823 15.6659 -144.45
+ 1 128.294 977 2 0 -109.845 15.6345 -145.85
+ 1 206.171 349 1 1 -110.314 14.9563 -174.45
+ 1 117.676 974 1 0 -110.326 14.9116 -175.85
+ 1 107.234 347 0 1 -110.574 13.9955 -204.45
+ 1 118.707 969 0 0 -110.591 13.9338 -205.85
+ 1 214.707 352 2 1 -109.75 15.531 -144.731
+ 1 47.7888 1296 2 0 -86.7139 79.3792 -146.25
+ 1 31.8731 1272 3 0 -90.8512 74.64 -116.25
+ 1 77.3707 350 8 1 -109.95 16.3906 35.3896
+ 1 142.353 983 8 0 -110.55 16.6725 34.15
+ 1 85.0834 232 7 1 -133.648 19.6622 5.55
+ 1 260.778 233 7 1 -133.55 19.6461 5.49523
+ 1 91.3085 231 7 1 -133.75 18.7926 5.52881
+ 1 314.728 230 7 1 -133.95 18.5638 5.49907
+ 1 67.0968 987 7 0 -134.528 17.604 4.15
+ 1 19.0257 986 7 0 -134.503 17.4499 4.12145
+ 1 304.611 239 7 1 -132.274 16.9977 5.15
+Number of digits in this event = 19
Using G4ParticleGun ...
-3.71443 LIN
+6.4295 LIN
e-
Event: 2
-Number of tracker hits in this event = 55
- 2 175.438 1525 9 1 125.271 -30.361 65.55
- 2 106.765 748 9 0 125.271 -30.3606 64.15
- 2 106.81 1525 8 1 125.267 -30.3643 35.55
- 2 134.638 748 8 0 125.267 -30.3646 34.15
- 2 102.543 1525 7 1 125.258 -30.3586 5.55
- 2 130.614 748 7 0 125.258 -30.3599 4.15
- 2 157.103 1525 6 1 125.251 -30.3948 -24.45
- 2 100.807 748 6 0 125.252 -30.3973 -25.85
- 2 147.927 1525 5 1 125.284 -30.4506 -54.45
- 2 114.126 747 5 0 125.285 -30.4547 -55.85
- 2 117.675 1525 4 1 125.308 -30.5331 -84.45
- 2 182.359 747 4 0 125.311 -30.538 -85.85
- 2 124.121 1526 3 1 125.384 -30.6389 -114.45
- 2 133.715 747 3 0 125.389 -30.6417 -115.85
- 2 108.638 1526 2 1 125.498 -30.688 -144.45
- 2 118.472 746 2 0 125.505 -30.6903 -145.85
- 2 124.487 1527 1 1 125.626 -30.722 -174.45
- 2 101.521 746 1 0 125.636 -30.7239 -175.85
- 2 147.212 1528 0 1 125.839 -30.755 -204.45
- 2 102.091 746 0 0 125.848 -30.7578 -205.85
- 2 125.883 746 3 0 125.379 -30.65 -115.911
- 2 127.848 1493 2 1 118.804 -42.2205 -144.45
- 2 64.2033 691 2 0 118.977 -41.726 -145.85
- 2 63.2881 692 2 0 119.01 -41.65 -146.034
- 2 74.9354 1535 1 1 127.15 -35.1512 -174.45
- 2 82.8612 1536 1 1 127.35 -35.1206 -174.671
- 2 20.9619 727 1 0 128.255 -34.491 -175.851
- 2 119.13 728 1 0 128.304 -34.45 -175.916
- 2 61.8375 729 1 0 128.529 -34.25 -176.129
- 2 4.69702 306 4 0 97.3494 -118.94 -86.25
- 2 80.6883 305 4 0 97.3498 -118.95 -86.2431
- 2 31.0936 1525 1 1 125.279 -30.2823 -174.791
- 2 115.895 748 1 0 125.253 -30.3059 -175.85
- 2 141.364 1521 0 1 124.362 -29.2825 -204.45
- 2 122.18 1520 0 1 124.35 -29.2684 -204.484
- 2 100.127 757 0 0 124.514 -28.6393 -205.85
- 2 60.4941 758 0 0 124.553 -28.4497 -206.107
- 2 72.2587 1611 8 0 70.6066 142.469 33.75
- 2 53.726 1610 8 0 70.6509 142.35 33.7733
- 2 43.7609 749 1 0 125.344 -30.0769 -175.85
- 2 75.4884 750 1 0 125.354 -30.05 -176
- 2 15.048 1522 0 1 124.55 -14.0347 -204.817
- 2 8.67479 825 0 0 125.285 -15.0296 -205.85
- 2 80.2966 824 0 0 125.296 -15.05 -205.869
- 2 73.8077 823 0 0 125.395 -15.25 -206.048
- 2 72.5113 822 0 0 125.489 -15.45 -206.196
- 2 3.07182 127 0 0 174.585 -154.741 -206.25
- 2 65.6394 126 0 0 174.589 -154.75 -206.247
- 2 51.2232 125 0 0 174.624 -154.95 -206.203
- 2 62.0457 124 0 0 174.675 -155.15 -206.157
- 2 78.5228 123 0 0 174.719 -155.35 -206.112
- 2 125.72 122 0 0 174.631 -155.55 -206.006
- 2 16.2441 121 0 0 174.47 -155.75 -205.886
- 2 313.023 1768 0 1 173.806 -156.245 -204.85
- 2 214.357 1767 0 1 173.75 -156.287 -204.752
-Number of digits in this event = 19
+Number of tracker hits in this event = 102
+ 2 128.823 1372 10 1 94.6088 7.25919 95.55
+ 2 153.862 936 10 0 94.6095 7.25923 94.15
+ 2 201.564 1372 9 1 94.6248 7.26462 65.55
+ 2 189.349 936 9 0 94.6248 7.26517 64.15
+ 2 305.065 1372 8 1 94.6265 7.27587 35.55
+ 2 218.355 936 8 0 94.6253 7.27705 34.15
+ 2 265.892 1372 7 1 94.6091 7.30248 5.55
+ 2 112.656 936 7 0 94.6083 7.30317 4.15
+ 2 116.938 1372 6 1 94.5935 7.31743 -24.45
+ 2 111.553 936 6 0 94.5927 7.31858 -25.85
+ 2 506.26 1372 5 1 94.578 7.3481 -54.45
+ 2 145.645 936 5 0 94.5721 7.34336 -55.85
+ 2 145.992 1371 4 1 94.4312 7.27564 -84.45
+ 2 134.692 936 4 0 94.4237 7.28013 -85.85
+ 2 282.874 1370 3 1 94.2975 7.40318 -114.45
+ 2 213.528 936 3 0 94.2765 7.41468 -115.85
+ 2 145.617 1368 2 1 93.9061 7.67288 -144.45
+ 2 172.491 938 2 0 93.8828 7.68846 -145.85
+ 2 238.686 1366 1 1 93.4535 8.0164 -174.45
+ 2 245.422 939 1 0 93.4378 8.0289 -175.85
+ 2 193.793 1364 0 1 93.1243 8.29921 -204.45
+ 2 108.817 941 0 0 93.1284 8.30293 -205.85
+ 2 34.6878 940 1 0 93.3978 8.05001 -176.169
+ 2 98.9853 1363 0 1 92.797 6.55669 -204.451
+ 2 243.136 1365 0 1 93.1501 6.62842 -204.632
+ 2 47.8236 981 1 0 130.501 16.4069 -176.25
+ 2 160.938 982 1 0 130.682 16.4501 -176.153
+ 2 102.864 983 1 0 131.086 16.6507 -176.021
+ 2 13.7809 984 1 0 131.36 16.8501 -175.871
+ 2 326.106 1563 1 1 132.766 18.6348 -174.85
+ 2 115.247 1564 1 1 132.95 18.9534 -174.664
+ 2 41.7911 1003 1 0 133.567 20.7553 -175.85
+ 2 73.3151 1004 1 0 133.621 20.85 -175.93
+ 2 90.6934 1005 1 0 133.589 21.05 -176.062
+ 2 77.8789 1006 1 0 133.419 21.2501 -176.106
+ 2 75.9182 1007 1 0 133.35 21.45 -176.055
+ 2 57.6699 1561 1 1 132.487 22.5463 -174.85
+ 2 135.488 1560 1 1 132.35 22.6391 -174.82
+ 2 74.0185 1559 1 1 132.15 22.8393 -174.583
+ 2 107.406 934 7 0 94.7336 7.0039 4.14995
+ 2 33.3784 1383 6 1 96.9275 1.20534 -24.45
+ 2 99.5298 1384 6 1 96.9501 1.20023 -24.5068
+ 2 101.581 905 6 0 97.4931 1.08288 -25.85
+ 2 20.0965 904 6 0 97.6296 1.05 -26.1852
+ 2 158.75 1452 5 1 110.603 -1.27253 -54.45
+ 2 90.4269 1453 5 1 110.75 -1.20515 -54.6763
+ 2 18.6181 895 5 0 111.529 -0.864828 -55.85
+ 2 114.321 896 5 0 111.563 -0.85 -55.9023
+ 2 79.905 1559 4 1 131.994 8.79811 -84.45
+ 2 101.778 1560 4 1 132.15 8.91601 -84.6079
+ 2 11.5209 1561 4 1 132.35 9.06217 -84.8141
+ 2 53.5705 948 4 0 133.33 9.76507 -85.85
+ 2 130.934 949 4 0 133.454 9.85 -85.9708
+ 2 2.2701 950 4 0 133.725 10.05 -86.242
+ 2 11.2556 1356 7 1 91.3553 7.70315 5.55
+ 2 98.5077 1355 7 1 91.35 7.7125 5.51296
+ 2 126.825 940 7 0 91.1997 8.11242 4.14966
+ 2 187.845 1342 6 1 88.6072 17.4226 -24.4501
+ 2 88.906 990 6 0 88.0577 18.142 -25.8501
+ 2 141.134 991 6 0 87.9622 18.25 -26.0747
+ 2 21.0972 1259 5 1 71.8976 33.3187 -54.45
+ 2 108.777 1258 5 1 71.85 33.3746 -54.5009
+ 2 154.96 1257 5 1 71.65 33.6201 -54.708
+ 2 48.5784 1074 5 0 70.4679 34.925 -55.85
+ 2 87.5481 1075 5 0 70.3508 35.05 -55.9684
+ 2 42.6132 1076 5 0 70.1352 35.25 -56.175
+ 2 64.616 1183 5 0 20.4726 56.7172 -56.2496
+ 2 64.7481 1182 5 0 20.3445 56.65 -56.0042
+ 2 107.142 998 5 1 19.8191 56.1014 -54.8496
+ 2 96.4013 1069 6 0 13.6431 34.0305 -26.25
+ 2 96.7024 1068 6 0 13.6247 33.85 -26.0242
+ 2 146.483 968 6 1 13.7571 33.0425 -24.85
+ 2 27.2217 969 6 1 13.8506 32.8504 -24.5485
+ 2 200.392 834 5 0 62.445 -13.05 -55.8505
+ 2 123.422 719 0 0 -32.6357 -36.1816 -205.85
+ 2 3.6162 1050 7 0 108.113 30.191 3.75
+ 2 1.88182 1763 7 0 56.0277 172.902 3.75001
+ 2 263.749 937 5 0 94.7713 7.51475 -55.8502
+ 2 60.8651 1390 4 1 98.2265 12.9733 -84.45
+ 2 118.139 1391 4 1 98.3502 13.0232 -84.6679
+ 2 2.18736 965 4 0 99.0061 13.2478 -85.85
+ 2 149.669 966 4 0 99.0127 13.25 -85.862
+ 2 15.9796 1474 3 1 115.106 17.5415 -114.45
+ 2 104.25 1475 3 1 115.15 17.5695 -114.506
+ 2 59.1366 1476 3 1 115.35 17.7173 -114.76
+ 2 40.0664 991 3 0 115.879 18.3862 -115.85
+ 2 132.773 992 3 0 115.93 18.4502 -115.955
+ 2 160.677 1558 2 1 131.915 36.303 -144.45
+ 2 90.2329 1086 2 0 131.954 37.3507 -145.85
+ 2 337.589 1087 2 0 131.962 37.45 -145.98
+ 2 5.65716 1088 2 0 131.98 37.65 -146.226
+ 2 142.773 1570 1 1 134.25 61.2054 -174.45
+ 2 47.1037 1569 1 1 134.15 61.4673 -174.741
+ 2 97.9406 1212 1 0 133.794 62.451 -175.851
+ 2 57.552 1213 1 0 133.727 62.65 -176.074
+ 2 119.583 1526 0 1 125.438 88.6185 -204.45
+ 2 84.0827 1525 0 1 125.35 88.8279 -204.626
+ 2 101.974 1350 0 0 124.83 90.1905 -205.85
+ 2 80.6638 1351 0 0 124.77 90.35 -205.995
+ 2 28.4775 1352 0 0 124.691 90.55 -206.176
+ 2 0.0502813 1371 5 1 94.55 7.21005 -54.8483
+ 2 130.655 934 5 0 94.3629 6.99186 -55.85
+Number of digits in this event = 40
Using G4ParticleGun ...
-1.75256 LIN
+4.96593 LIN
e-
Event: 3
-Number of tracker hits in this event = 64
- 3 114.588 1261 10 1 72.388 68.5713 95.55
- 3 171.047 1242 10 0 72.3876 68.5726 94.15
- 3 127.011 1261 9 1 72.3849 68.5868 65.55
- 3 105.633 1242 9 0 72.372 68.5857 64.15
- 3 150.774 1260 8 1 72.0889 68.558 35.55
- 3 122.064 1242 8 0 72.0746 68.556 34.15
- 3 111.249 1258 7 1 71.7854 68.5198 5.55
- 3 110.479 1242 7 0 71.7716 68.5224 4.15
- 3 133.871 1257 6 1 71.4873 68.578 -24.45
- 3 115.839 1242 6 0 71.4795 68.5856 -25.85
- 3 230.967 1256 5 1 71.318 68.7586 -54.45
- 3 114.287 1243 5 0 71.3119 68.7707 -55.85
- 3 112.366 1255 4 1 71.1758 69.0123 -84.45
- 3 131.88 1244 4 0 71.176 69.0172 -85.85
- 3 159.241 1255 3 1 71.1936 69.1032 -114.45
- 3 167.508 1245 3 0 71.1953 69.1095 -115.85
- 3 143.559 1255 2 1 71.2271 69.2539 -144.45
- 3 104.247 1246 2 0 71.2225 69.2593 -145.85
- 3 152.293 1255 1 1 71.1157 69.3775 -174.45
- 3 105.773 1246 1 0 71.1 69.3842 -175.85
- 3 58.9669 1253 0 1 70.8035 69.4919 -204.45
- 3 35.1969 1254 0 1 70.85 69.5026 -204.676
- 3 115.13 1247 0 0 71.1578 69.5624 -205.851
- 3 90.0636 1256 2 1 71.2502 69.2556 -144.641
- 3 3.25628 1257 2 1 71.4503 69.246 -144.842
- 3 47.4686 1244 2 0 72.4323 68.8843 -145.85
- 3 90.4458 1243 2 0 72.4723 68.85 -145.919
- 3 65.1476 1242 2 0 72.4947 68.65 -146.094
- 3 64.9628 1241 2 0 72.5297 68.4499 -146.13
- 3 45.9946 1240 2 0 72.5794 68.2491 -146.108
- 3 386.247 1252 0 1 70.5382 70.1029 -204.45
- 3 296.67 1250 0 0 70.5443 70.1013 -205.85
- 3 188.746 1261 5 1 72.3657 68.6322 -54.4501
- 3 39.8621 1262 5 1 72.4502 68.7017 -54.6846
- 3 76.0577 1244 5 0 72.8545 68.9976 -55.85
- 3 48.0394 1245 5 0 72.9268 69.0501 -56.076
- 3 245.287 1311 4 1 82.3411 75.5235 -84.4501
- 3 35.4063 1312 4 1 82.45 75.822 -84.785
- 3 94.8549 1283 4 0 82.7888 76.7241 -85.85
- 3 77.1445 1284 4 0 82.8462 76.8503 -86.022
- 3 159.205 1241 5 0 72.3091 68.4269 -55.85
- 3 154.873 1267 4 1 73.5875 61.9738 -84.45
- 3 133.607 1208 4 0 73.607 61.8326 -85.8504
- 3 112.61 1266 3 1 73.3687 58.9355 -114.45
- 3 16.8921 1265 3 1 73.25 58.8577 -114.78
- 3 130.237 1192 3 0 72.8872 58.603 -115.85
- 3 19.1544 1220 2 1 64.0743 52.4282 -144.45
- 3 102.659 1219 2 1 64.05 52.4455 -144.516
- 3 129.847 1163 2 0 63.5232 52.7018 -145.85
- 3 82.0298 1172 1 1 54.5631 58.9492 -174.45
- 3 122.52 1171 1 1 54.45 58.8213 -174.557
- 3 38.8009 1170 1 1 54.2496 58.5369 -174.799
- 3 123.127 1187 1 0 53.2397 57.65 -175.85
- 3 87.5159 1186 1 0 53.0002 57.4499 -176.089
- 3 6.69705 998 1 0 22.882 19.6547 -176.249
- 3 183.996 997 1 0 22.8834 19.65 -176.241
- 3 92.1704 1016 1 1 23.3059 19.2636 -174.85
- 3 19.1097 1017 1 1 23.45 19.1448 -174.519
- 3 114.132 895 2 0 49.1647 -0.916554 -146.25
- 3 16.9824 896 2 0 49.3671 -0.85 -145.923
- 3 406.747 1146 2 1 49.3335 -0.579563 -144.85
- 3 40.6991 1147 2 1 49.4501 -0.999334 -144.544
- 3 167.101 1145 2 1 49.25 -0.93216 -144.625
- 3 206.899 1163 1 0 56.9002 52.85 -175.928
-Number of digits in this event = 27
+Number of tracker hits in this event = 36
+ 3 118.699 852 11 1 -9.54212 -14.6037 125.55
+ 3 112.638 827 11 0 -9.5426 -14.6039 124.15
+ 3 233.025 852 10 1 -9.55067 -14.6089 95.55
+ 3 125.122 827 10 0 -9.55075 -14.6098 94.15
+ 3 116.488 852 9 1 -9.54284 -14.6314 65.55
+ 3 120.209 827 9 0 -9.5431 -14.6314 64.15
+ 3 363.313 852 8 1 -9.54888 -14.6304 35.55
+ 3 131.934 827 8 0 -9.53572 -14.6354 34.15
+ 3 119.429 853 7 1 -9.25921 -14.7272 5.55
+ 3 131.133 826 7 0 -9.24038 -14.7323 4.15
+ 3 114.216 855 6 1 -8.86115 -14.8036 -24.45
+ 3 147.429 826 6 0 -8.83729 -14.8109 -25.85
+ 3 114.806 858 5 1 -8.3725 -14.9975 -54.45
+ 3 232.502 825 5 0 -8.35091 -14.9909 -55.85
+ 3 110.807 860 4 1 -7.98001 -14.8265 -84.45
+ 3 202.848 826 4 0 -7.9503 -14.8154 -85.85
+ 3 121.341 863 3 1 -7.31574 -14.6262 -114.45
+ 3 279.218 827 3 0 -7.28714 -14.5975 -115.85
+ 3 107.088 866 2 1 -6.69876 -14.008 -144.45
+ 3 106.486 830 2 0 -6.68917 -13.9829 -145.85
+ 3 97.2342 867 1 1 -6.57862 -13.3813 -174.45
+ 3 126.856 833 1 0 -6.57644 -13.3646 -175.85
+ 3 122.218 866 0 1 -6.68244 -13.0218 -204.45
+ 3 110.349 835 0 0 -6.6945 -12.9817 -205.85
+ 3 169.344 826 3 0 -7.69909 -14.65 -116.072
+ 3 14.103 825 3 0 -7.67329 -14.85 -115.86
+ 3 92.5899 861 3 1 -7.82273 -16.9145 -114.85
+ 3 5.78139 807 3 0 -5.96451 -18.5334 -115.85
+ 3 49.9826 870 3 1 -5.86623 -18.5515 -114.85
+ 3 34.0568 871 3 1 -5.84997 -18.5242 -114.841
+ 3 130.049 826 5 0 -8.21267 -14.85 -56.2098
+ 3 97.6936 851 8 1 -9.65 -14.7216 35.5482
+ 3 47.1546 701 10 1 -39.65 -93.2676 95.3072
+ 3 115.963 417 10 0 -39.6218 -96.6033 94.15
+ 3 93.7189 776 12 0 -23.751 -24.768 153.75
+ 3 212.496 775 12 0 -23.8636 -24.85 153.88
+Number of digits in this event = 17
Using G4ParticleGun ...
-7.17345 LIN
+4.95915 LIN
e-
Event: 4
-Number of tracker hits in this event = 60
- 4 123.411 1045 10 1 29.2092 -90.2318 95.55
- 4 182.628 449 10 0 29.2094 -90.2317 94.15
- 4 141.6 1045 9 1 29.2119 -90.233 65.55
- 4 107.506 449 9 0 29.2123 -90.2327 64.15
- 4 186.683 1045 8 1 29.2212 -90.2237 35.55
- 4 140.546 449 8 0 29.2221 -90.2215 34.15
- 4 136.091 1045 7 1 29.241 -90.1663 5.55
- 4 113.473 449 7 0 29.2432 -90.1637 4.15
- 4 242.859 1046 5 1 29.3531 -90.039 -54.45
- 4 105.113 450 5 0 29.3561 -90.0357 -55.85
- 4 109.306 1046 4 1 29.4173 -89.9626 -84.45
- 4 141.771 450 4 0 29.4215 -89.9584 -85.85
- 4 133.066 1047 3 1 29.5093 -89.8701 -114.45
- 4 119.564 450 3 0 29.5116 -89.8665 -115.85
- 4 249.637 1047 2 1 29.5563 -89.7869 -144.45
- 4 165.074 451 2 0 29.5595 -89.7837 -145.85
- 4 102.642 1047 1 1 29.6324 -89.7169 -174.45
- 4 113.7 451 1 0 29.6369 -89.7144 -175.85
- 4 144.78 1048 0 1 29.7354 -89.6678 -204.45
- 4 146.794 451 0 0 29.7402 -89.6675 -205.85
- 4 187.024 273 4 0 -33.9681 -125.537 -86.25
- 4 86.1976 272 4 0 -33.7279 -125.55 -86.0087
- 4 397.483 271 4 0 -33.6036 -125.75 -86.0416
- 4 216.323 404 0 0 -110.523 -99.2874 -206.25
- 4 1.76445 1048 2 1 29.65 -89.9382 -144.844
- 4 91.5558 448 2 0 30.2137 -90.4244 -145.85
- 4 75.3367 447 2 0 30.354 -90.5501 -146.129
- 4 3.65181 446 2 0 30.433 -90.7507 -146.241
- 4 76.9624 352 2 0 62.0446 -109.68 -146.25
- 4 61.1758 353 2 0 62.1487 -109.55 -146.099
- 4 51.5727 354 2 0 62.2048 -109.349 -146.136
- 4 81.9641 355 2 0 62.1916 -109.15 -146.097
- 4 1.22289 356 2 0 62.2015 -108.95 -146.246
- 4 13.2702 279 6 0 42.7874 -124.309 -26.25
- 4 167.071 278 6 0 42.7891 -124.35 -26.2056
- 4 92.7414 1115 6 1 43.0844 -124.054 -24.8497
- 4 126.683 1116 6 1 43.25 -123.897 -24.6549
- 4 61.7594 1117 6 1 43.4505 -123.483 -24.5397
- 4 131.733 1046 6 1 29.2732 -90.1895 -24.45
- 4 0.37149 1045 6 1 29.25 -90.2301 -24.5708
- 4 2.72455 1047 6 1 29.45 -90.1846 -24.8406
- 4 326.167 450 6 0 29.8889 -90.0194 -25.85
- 4 1.54541 451 6 0 29.9328 -89.85 -26.2406
- 4 200.281 516 6 0 69.2494 -76.7205 -26.25
- 4 144.963 515 6 0 69.6484 -76.85 -26.2088
- 4 43.0825 510 6 0 121.87 -77.9154 -26.25
- 4 108.126 511 6 0 121.888 -77.8498 -26.1399
- 4 67.7425 512 6 0 121.891 -77.65 -25.9454
- 4 69.4161 513 6 0 121.98 -77.45 -25.9234
- 4 122.932 514 6 0 122.112 -77.25 -25.8986
- 4 75.882 517 6 0 122.716 -76.6498 -26.0031
- 4 299.46 518 6 0 122.699 -76.4499 -25.9905
- 4 44.6492 680 8 0 -112.249 -43.8866 33.75
- 4 232.276 681 8 0 -112.259 -43.8499 33.9048
- 4 75.2963 331 8 1 -113.764 -43.7299 35.15
- 4 87.4988 332 8 1 -113.75 -43.6717 35.229
- 4 12.4744 449 4 0 29.3041 -90.1872 -85.85
- 4 62.754 414 4 0 77.7959 -97.2037 -86.2499
- 4 84.3463 1306 9 1 81.25 -24.8508 65.299
- 4 47.325 1797 7 1 179.55 -169.265 5.28619
-Number of digits in this event = 27
-Using G4ParticleGun ...
-7.91742 LIN
+Number of tracker hits in this event = 136
+ 4 116.986 815 11 1 -16.8899 -41.161 125.55
+ 4 123.745 694 11 0 -16.8937 -41.1613 124.15
+ 4 117.345 815 10 1 -16.967 -41.168 95.55
+ 4 306.092 694 10 0 -16.9703 -41.1694 94.15
+ 4 357.546 815 9 1 -17.0407 -41.1853 65.55
+ 4 367.024 694 9 0 -17.04 -41.1864 64.15
+ 4 116.607 815 8 1 -17.0385 -41.2195 35.55
+ 4 363.545 694 8 0 -17.04 -41.2249 34.15
+ 4 125.824 815 7 1 -17.0426 -41.3317 5.55
+ 4 399.286 693 7 0 -17.0417 -41.3371 4.15
+ 4 119.73 815 6 1 -17.0262 -41.468 -24.45
+ 4 538.2 692 6 0 -17.0316 -41.4697 -25.85
+ 4 102.667 814 5 1 -17.1563 -41.4996 -54.45
+ 4 264.325 692 5 0 -17.1667 -41.4991 -55.85
+ 4 104.913 813 4 1 -17.3205 -41.5479 -84.45
+ 4 370.921 692 4 0 -17.3248 -41.557 -85.85
+ 4 464.695 813 3 1 -17.4118 -41.7567 -114.45
+ 4 225.305 691 3 0 -17.4129 -41.769 -115.85
+ 4 953.065 813 2 1 -17.4426 -42.11 -144.45
+ 4 336.14 689 2 0 -17.4539 -42.1246 -145.85
+ 4 142.495 811 1 1 -17.739 -42.474 -174.45
+ 4 119.214 687 1 0 -17.7519 -42.5118 -175.85
+ 4 125.317 810 0 1 -18.0305 -43.3216 -204.45
+ 4 179.36 683 0 0 -18.038 -43.3609 -205.85
+ 4 3.51242 123 3 1 -155.35 -103.599 -114.711
+ 4 95.4161 778 1 0 61.2188 -24.3225 -176.25
+ 4 97.7744 779 1 0 61.2694 -24.25 -176.224
+ 4 369.647 703 1 0 6.07988 -39.45 -175.979
+ 4 134.105 810 1 1 -18.0339 -41.8765 -174.45
+ 4 175.549 809 1 1 -18.05 -41.9107 -174.526
+ 4 112.394 692 1 0 -18.8301 -41.4564 -175.85
+ 4 108.484 693 1 0 -18.8388 -41.45 -175.864
+ 4 147.245 704 1 0 28.5172 -39.25 -175.974
+ 4 103.075 1058 1 1 31.6658 -37.3099 -174.85
+ 4 113.612 719 1 0 32.6838 -36.1194 -175.85
+ 4 212.728 720 1 0 32.8428 -36.05 -175.89
+ 4 41.3164 1065 1 1 33.2357 -35.7659 -174.85
+ 4 70.1061 690 1 0 -17.9717 -42.0354 -175.85
+ 4 76.5062 689 1 0 -17.9717 -42.0501 -175.94
+ 4 177.115 809 0 1 -18.1064 -47.1286 -204.45
+ 4 155.188 664 0 0 -18.031 -47.1025 -205.85
+ 4 228.547 814 4 1 -17.2126 -41.5294 -84.45
+ 4 122.079 811 3 1 -17.6598 -41.843 -114.45
+ 4 201.186 806 2 1 -18.7738 -41.5575 -144.45
+ 4 72.0939 692 2 0 -18.7615 -41.636 -145.85
+ 4 47.0746 691 2 0 -18.7582 -41.65 -146.087
+ 4 186.333 807 1 1 -18.5267 -43.4092 -174.45
+ 4 261.406 683 1 0 -18.5499 -43.3736 -175.85
+ 4 10.2428 807 0 1 -18.4559 -42.574 -204.45
+ 4 113.458 808 0 1 -18.45 -42.5793 -204.491
+ 4 126.844 686 0 0 -18.2642 -42.7283 -205.85
+ 4 515.342 819 3 1 -16.1422 -42.1258 -114.45
+ 4 96.0299 689 3 0 -16.1597 -42.1657 -115.85
+ 4 176.967 818 2 1 -16.4306 -42.9156 -144.45
+ 4 113.593 685 2 0 -16.4282 -42.9217 -145.85
+ 4 213.103 816 1 1 -16.6939 -43.6681 -174.45
+ 4 215.969 681 1 0 -16.6847 -43.7112 -175.85
+ 4 123.017 818 0 1 -16.4115 -44.7614 -204.45
+ 4 180.398 676 0 0 -16.4744 -44.8041 -205.85
+ 4 487.91 693 3 0 -17.292 -41.3245 -115.85
+ 4 93.2791 696 2 0 -17.4125 -40.7067 -145.85
+ 4 34.0625 808 1 1 -18.4464 -39.9062 -174.45
+ 4 139.282 700 1 0 -18.4939 -39.864 -175.85
+ 4 230.195 802 0 1 -19.4984 -38.9628 -204.45
+ 4 106.172 705 0 0 -19.5287 -38.931 -205.85
+ 4 230.853 693 2 0 -17.2883 -41.4218 -145.85
+ 4 177.119 818 1 1 -16.3202 -41.0998 -174.45
+ 4 109.463 694 1 0 -16.3137 -41.0916 -175.85
+ 4 113.102 819 0 1 -16.2206 -40.8268 -204.45
+ 4 122.995 696 0 0 -16.1717 -40.8373 -205.85
+ 4 188.122 694 7 0 -16.9875 -41.25 3.89645
+ 4 66.6724 452 7 0 -28.9103 -89.4827 3.75
+ 4 66.4582 451 7 0 -28.9511 -89.6501 3.81344
+ 4 257.703 424 7 0 -84.7516 -95.3018 3.75
+ 4 72.9723 834 9 0 1.9168 -13.223 63.75
+ 4 110.276 835 9 0 2.04436 -13.05 63.9223
+ 4 12.5272 914 9 1 3.01022 -12.6293 65.1502
+ 4 119.681 915 9 1 3.05 -12.6168 65.2069
+ 4 116.829 916 9 1 3.25 -12.4794 65.3702
+ 4 5.43803 917 9 1 3.45 -12.3378 65.5382
+ 4 130.207 813 8 1 -17.3436 -41.0808 35.55
+ 4 177.894 809 7 1 -18.066 -41.3894 5.55
+ 4 114.339 804 6 1 -19.1005 -41.5283 -24.45
+ 4 155.992 799 5 1 -20.2156 -41.4992 -54.45
+ 4 39.1399 796 4 1 -20.8449 -40.7916 -84.45
+ 4 69.8165 795 4 1 -20.85 -40.7914 -84.5999
+ 4 130.607 696 4 0 -20.8922 -40.7903 -85.85
+ 4 45.6264 791 3 1 -21.8426 -40.8325 -114.45
+ 4 76.1598 790 3 1 -21.85 -40.8385 -114.606
+ 4 108.713 695 3 0 -21.9077 -40.885 -115.85
+ 4 136.261 783 2 1 -23.2787 -42.0034 -144.45
+ 4 164.113 774 1 1 -25.1487 -43.213 -174.45
+ 4 462.343 766 0 1 -26.7247 -44.3491 -204.45
+ 4 109.23 678 0 0 -26.7837 -44.3701 -205.85
+ 4 41.1932 767 0 1 -26.65 -44.2362 -204.822
+ 4 7.59125 755 1 1 -29.0142 -31.5854 -174.85
+ 4 112.623 816 8 1 -16.8375 -41.2093 35.55
+ 4 163.568 816 7 1 -16.8303 -41.2458 5.55
+ 4 128.208 817 6 1 -16.6418 -41.2897 -24.45
+ 4 142.652 693 6 0 -16.6362 -41.2878 -25.85
+ 4 127.537 817 5 1 -16.5286 -41.2711 -54.45
+ 4 107.682 693 5 0 -16.5299 -41.2701 -55.85
+ 4 122.671 817 4 1 -16.5701 -41.2279 -84.45
+ 4 115.713 694 4 0 -16.5748 -41.2329 -85.85
+ 4 169.888 816 3 1 -16.6614 -41.3232 -114.45
+ 4 106.712 816 2 1 -16.6877 -41.4497 -144.45
+ 4 120.834 815 0 1 -17.0308 -41.6176 -204.45
+ 4 186.804 692 0 0 -17.041 -41.6253 -205.85
+ 4 33.2325 672 6 0 -10.5233 -45.5972 -26.2497
+ 4 103.91 671 6 0 -10.5026 -45.6501 -26.1332
+ 4 4.38684 670 6 0 -10.4709 -45.85 -25.8587
+ 4 655.718 842 6 1 -11.4769 -46.5815 -24.8498
+ 4 180.565 841 6 1 -11.65 -46.6938 -24.7252
+ 4 23.1945 693 4 0 -16.2865 -41.3698 -86.2048
+ 4 124.725 692 3 0 -16.0459 -41.5099 -115.85
+ 4 167.649 823 2 1 -15.4084 -42.2887 -144.45
+ 4 137.085 688 2 0 -15.464 -42.3753 -145.85
+ 4 84.0674 817 1 1 -16.45 -44.1235 -174.624
+ 4 181.11 679 1 0 -16.4937 -44.1987 -175.853
+ 4 123.18 811 0 1 -17.6576 -45.8052 -204.45
+ 4 77.3085 671 0 0 -17.6604 -45.8432 -205.85
+ 4 55.3277 670 0 0 -17.6614 -45.85 -206.076
+ 4 19.3622 678 1 0 -16.4919 -44.25 -176.226
+ 4 305.291 824 2 1 -15.25 -42.3003 -144.809
+ 4 52.2888 825 2 1 -15.05 -42.1774 -144.776
+ 4 98.9079 820 2 1 -15.9644 -41.9073 -144.45
+ 4 105.451 690 2 0 -15.9364 -41.9854 -145.85
+ 4 129.345 821 1 1 -15.7036 -43.8039 -174.45
+ 4 123.855 828 0 1 -14.4488 -44.0064 -204.45
+ 4 174.955 680 0 0 -14.3574 -43.9159 -205.85
+ 4 48.1439 780 8 0 -33.1381 -23.9135 33.75
+ 4 67.8987 781 8 0 -33.1917 -23.8499 33.8577
+ 4 34.7613 782 8 0 -33.3121 -23.65 34.0652
+ 4 74.6376 730 8 1 -33.9387 -22.5979 35.15
+ 4 66.0982 729 8 1 -34.0501 -22.4325 35.3748
+ 4 58.7696 817 7 1 -16.6109 -41.8405 5.55
+Number of digits in this event = 74
+Using G4ParticleGun ...
+5.49342 LIN
e-
Event: 5
-Number of tracker hits in this event = 50
- 5 166.761 753 9 1 -29.3923 -123.206 65.55
- 5 116.204 284 9 0 -29.3934 -123.206 64.15
- 5 122.776 753 8 1 -29.4176 -123.198 35.55
- 5 210.647 284 8 0 -29.4186 -123.198 34.15
- 5 102.178 753 7 1 -29.443 -123.21 5.55
- 5 122.648 284 7 0 -29.4448 -123.211 4.15
- 5 112.311 752 6 1 -29.4772 -123.253 -24.45
- 5 169.851 284 6 0 -29.4787 -123.254 -25.85
- 5 118.406 752 5 1 -29.5128 -123.282 -54.45
- 5 114.397 284 5 0 -29.5159 -123.283 -55.85
- 5 123.573 752 4 1 -29.6003 -123.302 -84.45
- 5 117.09 284 4 0 -29.6052 -123.303 -85.85
- 5 394.799 751 3 1 -29.682 -123.366 -114.45
- 5 253.091 283 3 0 -29.6921 -123.374 -115.85
- 5 117.868 750 2 1 -29.8941 -123.561 -144.45
- 5 121.336 282 2 0 -29.9014 -123.577 -145.85
- 5 115.515 750 1 1 -30.0376 -123.907 -174.45
- 5 281.65 281 1 0 -30.0382 -123.926 -175.85
- 5 454.077 749 0 1 -30.0608 -124.332 -204.45
- 5 457.214 279 0 0 -30.0579 -124.316 -205.85
- 5 184.639 748 0 1 -30.25 -123.954 -204.733
- 5 111.502 284 3 0 -29.658 -123.345 -115.85
- 5 110.764 754 2 1 -29.1294 -122.673 -144.45
- 5 194.807 287 2 0 -29.042 -122.709 -145.85
- 5 135.212 763 1 1 -27.3423 -123.424 -174.45
- 5 413.974 283 1 0 -27.2085 -123.496 -175.85
- 5 126.741 779 0 1 -24.2366 -124.972 -204.451
- 5 158.209 275 0 0 -24.0324 -125.031 -205.85
- 5 118.697 751 2 1 -29.8249 -123.794 -144.45
- 5 105.215 281 2 0 -29.8023 -123.829 -145.85
- 5 129.056 753 1 1 -29.3842 -124.514 -174.45
- 5 313.948 277 1 0 -29.3726 -124.561 -175.85
- 5 117.256 754 0 1 -29.1762 -125.417 -204.45
- 5 113.441 273 0 0 -29.2158 -125.464 -205.85
- 5 236.673 752 1 1 -29.6489 -123.352 -174.45
- 5 327.695 751 0 1 -29.7117 -123.433 -204.45
- 5 105.941 283 0 0 -29.7149 -123.439 -205.85
- 5 100.316 1271 1 0 32.9232 74.25 -175.971
- 5 267.703 282 0 0 -29.8016 -123.569 -205.85
- 5 136.211 285 1 0 -29.2679 -123.075 -175.85
- 5 98.6917 789 0 1 -22.1801 -114.171 -204.45
- 5 17.307 788 0 1 -22.2501 -114.111 -204.78
- 5 118.397 330 0 0 -22.5484 -113.995 -205.85
- 5 13.065 727 8 1 -34.6499 -118.999 35.55
- 5 40.918 726 8 1 -34.65 -118.993 35.5453
- 5 15.4657 253 8 0 -80.5526 -129.529 33.7502
- 5 107.036 252 8 0 -80.6042 -129.55 33.7714
- 5 79.7035 251 8 0 -80.7807 -129.75 33.9687
- 5 231.746 496 8 1 -80.6634 -130.437 35.15
- 5 135.971 497 8 1 -80.6498 -130.439 35.3029
-Number of digits in this event = 29
+Number of tracker hits in this event = 41
+ 5 116.913 1177 9 1 55.544 113.122 65.55
+ 5 257.277 1464 9 0 55.5434 113.124 64.15
+ 5 133.137 1177 8 1 55.5298 113.176 35.55
+ 5 135.915 1465 8 0 55.5341 113.177 34.15
+ 5 130.907 1177 7 1 55.6195 113.171 5.55
+ 5 102.037 1465 7 0 55.6257 113.165 4.15
+ 5 123.969 1178 6 1 55.7553 113.063 -24.45
+ 5 130.385 1464 6 0 55.7642 113.067 -25.85
+ 5 196.12 1179 5 1 55.9312 113.158 -54.45
+ 5 161.465 1465 5 0 55.9424 113.164 -55.85
+ 5 122.298 1180 4 1 56.1772 113.315 -84.45
+ 5 126.336 1465 4 0 56.1899 113.318 -85.85
+ 5 118.356 1181 3 1 56.4284 113.372 -114.45
+ 5 128.319 1466 3 0 56.4451 113.378 -115.85
+ 5 106.003 1183 2 1 56.8126 113.483 -144.45
+ 5 125.487 1466 2 0 56.8213 113.495 -145.85
+ 5 144.313 1184 1 1 57.0103 113.861 -174.45
+ 5 208.425 1468 1 0 57.0174 113.881 -175.85
+ 5 189.813 1185 0 1 57.1622 114.249 -204.45
+ 5 110.03 1470 0 0 57.1634 114.284 -205.85
+ 5 7.10698 1296 1 0 131.861 79.45 -176.062
+ 5 234.238 1043 0 1 28.8123 124.677 -204.85
+ 5 250.399 1185 1 1 57.1544 113.589 -174.45
+ 5 117.299 1466 1 0 57.2432 113.535 -175.85
+ 5 145.562 1195 0 1 59.1982 111.893 -204.45
+ 5 69.6254 1194 0 1 59.05 111.716 -204.804
+ 5 84.8502 1454 0 0 58.6153 111.117 -205.85
+ 5 263.678 1453 0 0 58.5025 110.95 -206.154
+ 5 2.62607 457 0 1 -88.45 18.9023 -204.735
+ 5 119.33 1465 1 0 57.2575 113.239 -175.85
+ 5 88.6931 1197 0 1 59.6347 107.257 -204.45
+ 5 35.3829 1198 0 1 59.65 107.248 -204.762
+ 5 111.972 1435 0 0 59.6941 107.22 -205.85
+ 5 32.1095 1176 0 1 55.4037 113.705 -204.79
+ 5 253.699 1467 0 0 55.4033 113.707 -205.85
+ 5 3.84761 858 3 1 -8.32432 166.766 -114.85
+ 5 88.9675 1733 3 0 -8.75729 166.911 -115.85
+ 5 114.887 1218 3 1 63.8147 26.2064 -114.45
+ 5 14.4281 1372 2 0 -31.564 94.5673 -146.25
+ 5 96.8811 1371 2 0 -31.5655 94.55 -146.22
+ 5 128.815 1463 9 0 55.6561 112.95 63.8967
+Number of digits in this event = 24
Using G4ParticleGun ...
-7.30606 LIN
+9.17794 LIN
e-
Event: 6
-Number of tracker hits in this event = 101
- 6 207.523 1126 9 1 45.3902 -122.857 65.55
- 6 126.71 286 9 0 45.3888 -122.857 64.15
- 6 134.999 1126 8 1 45.3628 -122.857 35.55
- 6 171.6 286 8 0 45.3618 -122.856 34.15
- 6 130.812 1126 7 1 45.3395 -122.843 5.55
- 6 198.73 286 7 0 45.3383 -122.842 4.15
- 6 439.064 1126 6 1 45.315 -122.822 -24.45
- 6 346.704 286 6 0 45.3166 -122.821 -25.85
- 6 589.728 1126 5 1 45.35 -122.798 -54.45
- 6 159.401 286 5 0 45.3521 -122.797 -55.85
- 6 123.641 1126 4 1 45.3974 -122.789 -84.45
- 6 139.921 286 4 0 45.3963 -122.781 -85.85
- 6 174.95 1126 3 1 45.3425 -122.564 -114.45
- 6 166.512 287 3 0 45.341 -122.555 -115.85
- 6 117.007 1126 2 1 45.3078 -122.364 -144.45
- 6 108.799 288 2 0 45.3062 -122.354 -145.85
- 6 136.908 1126 1 1 45.2706 -122.156 -174.45
- 6 152.218 290 1 0 45.2686 -122.146 -175.85
- 6 125.194 1125 0 1 45.226 -121.934 -204.45
- 6 105.585 291 0 0 45.2253 -121.921 -205.85
- 6 176.917 552 7 1 -69.5773 -101.208 5.15
- 6 136.482 285 5 0 45.2551 -122.95 -55.8677
- 6 6.80085 1130 4 1 46.0632 -123.36 -84.45
- 6 82.3529 1129 4 1 46.05 -123.36 -84.4642
- 6 68.1245 1128 4 1 45.8498 -123.318 -84.6868
- 6 7.82574 1127 4 1 45.65 -123.301 -84.8333
- 6 242.207 284 4 0 44.2448 -123.26 -85.85
- 6 57.617 764 3 1 -27.1615 -94.24 -114.45
- 6 58.2783 763 3 1 -27.25 -94.1774 -114.637
- 6 58.2634 431 3 0 -27.6217 -93.8344 -115.851
- 6 69.3263 432 3 0 -27.6512 -93.7499 -116.054
- 6 37.6268 1185 5 1 57.05 -49.3414 -54.6897
- 6 2.79766 1186 5 1 57.25 -49.0795 -54.568
- 6 6.54215 283 4 0 43.9372 -123.35 -86.2351
- 6 93.8835 287 5 0 45.3873 -122.748 -55.85
- 6 197.507 1133 4 1 46.8183 -121.947 -84.4501
- 6 123.1 291 4 0 46.5734 -121.94 -85.8507
- 6 25.7757 1107 3 1 41.5137 -119.139 -114.45
- 6 102.741 1106 3 1 41.45 -119.12 -114.521
- 6 29.1934 1105 3 1 41.2495 -119.06 -114.758
- 6 59.0247 306 3 0 40.4322 -118.766 -115.85
- 6 171.62 307 3 0 40.3885 -118.75 -115.908
- 6 78.7938 999 2 1 19.9633 -106.181 -144.45
- 6 112.395 998 2 1 19.8498 -105.975 -144.628
- 6 58.8935 378 2 0 19.3017 -104.462 -145.85
- 6 94.575 379 2 0 19.2594 -104.35 -145.943
- 6 34.4289 380 2 0 19.2318 -104.15 -146.141
- 6 8.80723 995 1 1 19.2361 -84.7178 -174.45
- 6 162.95 996 1 1 19.25 -84.7095 -174.463
- 6 79.9885 997 1 1 19.45 -84.5864 -174.651
- 6 11.1526 998 1 1 19.65 -84.4564 -174.826
- 6 6.0704 481 1 0 20.691 -83.6654 -175.85
- 6 123.725 482 1 0 20.7101 -83.6499 -175.869
- 6 64.2411 483 1 0 20.945 -83.45 -176.097
- 6 34.5818 1072 0 1 34.5915 -75.2646 -204.45
- 6 196.534 1073 0 1 34.6501 -75.299 -204.554
- 6 35.8797 522 0 0 35.2846 -75.6132 -205.85
- 6 98.7167 521 0 0 35.3424 -75.65 -205.972
- 6 109.446 1367 0 1 93.55 -77.1476 -204.568
- 6 299.302 290 4 0 46.5319 -121.95 -86.0398
- 6 126.562 1134 4 1 46.8501 -122.041 -84.5327
- 6 90.6733 289 4 0 47.4883 -122.272 -85.8506
- 6 111.303 288 4 0 47.6194 -122.35 -85.9994
- 6 22.9467 1143 4 1 48.8126 -122.501 -84.85
- 6 138.33 1144 4 1 48.85 -122.499 -84.7933
- 6 129.997 1145 4 1 49.0502 -122.635 -84.7188
- 6 152.755 1146 4 1 49.25 -122.792 -84.7031
- 6 145.56 1147 4 1 49.45 -122.898 -84.837
- 6 126.257 1125 6 1 45.25 -122.905 -24.7737
- 6 128.007 1122 5 1 44.5961 -121.64 -54.45
- 6 171.75 293 5 0 44.4748 -121.531 -55.85
- 6 117.441 1111 4 1 42.3775 -118.864 -84.4505
- 6 257.676 306 4 0 42.3931 -118.826 -85.85
- 6 117.515 1113 3 1 42.6559 -117.737 -114.45
- 6 146.458 312 3 0 42.7188 -117.739 -115.85
- 6 204.828 1118 2 1 43.7528 -117.912 -144.45
- 6 138.609 311 2 0 43.8595 -117.898 -145.851
- 6 108.924 1129 1 1 45.9783 -117.354 -174.45
- 6 168.026 313 1 0 46.0637 -117.379 -175.85
- 6 150.275 1139 0 1 47.9885 -118.172 -204.45
- 6 119.33 309 0 0 48.1222 -118.225 -205.85
- 6 148.132 292 5 0 44.3664 -121.55 -55.9222
- 6 91.5583 291 5 0 44.1726 -121.75 -55.9645
- 6 125.552 283 5 0 45.2641 -123.387 -55.85
- 6 226.722 1124 4 1 44.9662 -124.39 -84.45
- 6 104.764 278 4 0 44.92 -124.359 -85.85
- 6 0.298163 279 4 0 44.9079 -124.35 -86.2474
- 6 146.161 1119 3 1 43.9411 -123.814 -114.45
- 6 179.27 282 3 0 43.839 -123.722 -115.85
- 6 111.714 1105 2 1 41.2348 -121.912 -144.45
- 6 145.166 291 2 0 41.0679 -121.856 -145.85
- 6 126.405 1087 1 1 37.5175 -120.801 -174.45
- 6 112.975 296 1 0 37.3445 -120.77 -175.85
- 6 239.113 1071 0 1 34.2933 -120.162 -204.45
- 6 31.2409 1070 0 1 34.25 -120.152 -204.715
- 6 107.198 300 0 0 34.0609 -120.112 -205.85
- 6 137.723 297 1 0 37.2981 -120.75 -176.034
- 6 149.464 466 1 0 53.3628 -86.8122 -176.25
- 6 61.0383 467 1 0 53.6615 -86.65 -176.187
- 6 397.631 525 1 0 24.1009 -74.8807 -176.25
- 6 109.782 526 1 0 24.0151 -74.8499 -176.124
-Number of digits in this event = 55
+Number of tracker hits in this event = 35
+ 6 135.607 554 8 1 -69.1369 127.157 35.55
+ 6 160.288 1535 8 0 -69.1372 127.157 34.15
+ 6 119.732 554 7 1 -69.1444 127.151 5.55
+ 6 67.0121 1535 7 0 -69.1442 127.15 4.15
+ 6 30.984 1534 7 0 -69.1442 127.15 3.88952
+ 6 195.859 554 6 1 -69.1395 127.135 -24.45
+ 6 101.752 1534 6 0 -69.1391 127.134 -25.85
+ 6 97.8909 554 5 1 -69.1289 127.12 -54.45
+ 6 188.47 1534 5 0 -69.1284 127.119 -55.85
+ 6 132.865 554 4 1 -69.1159 127.109 -84.45
+ 6 129.505 1534 4 0 -69.115 127.109 -85.85
+ 6 214.697 554 3 1 -69.0999 127.108 -114.45
+ 6 123.064 1534 3 0 -69.0981 127.109 -115.85
+ 6 104.131 554 2 1 -69.0627 127.13 -144.45
+ 6 111.256 1534 2 0 -69.0617 127.13 -145.85
+ 6 355.352 555 1 1 -69.0435 127.152 -174.45
+ 6 211.183 1535 1 0 -69.044 127.154 -175.85
+ 6 124.668 554 0 1 -69.0595 127.205 -204.45
+ 6 287.159 1535 0 0 -69.0616 127.206 -205.85
+ 6 359.562 554 1 1 -69.0501 127.153 -174.612
+ 6 111.086 553 1 1 -69.25 127.182 -174.717
+ 6 123.47 552 1 1 -69.45 127.178 -174.675
+ 6 138.468 555 0 1 -68.9803 127.235 -204.45
+ 6 261.246 1534 1 0 -69.1459 127.09 -175.85
+ 6 106.659 546 0 1 -70.7389 124.852 -204.45
+ 6 283.704 1522 0 0 -70.7842 124.683 -205.85
+ 6 10.2729 653 6 1 -49.4478 -115.998 -24.85
+ 6 140.512 652 6 1 -49.45 -116.202 -24.7105
+ 6 117.069 318 6 0 -50.9735 -116.441 -25.85
+ 6 206.76 1674 1 0 -16.1282 155.082 -176.25
+ 6 103.817 1533 1 0 -68.7509 126.875 -175.85
+ 6 111.109 1530 1 0 -49.3022 126.307 -176.25
+ 6 124.849 657 1 1 -48.6417 126.227 -174.85
+ 6 133.694 556 0 1 -68.8349 127.043 -204.45
+ 6 181.413 1534 0 0 -68.7979 127 -205.85
+Number of digits in this event = 25
Using G4ParticleGun ...
-6.32383 LIN
+2.23214 LIN
e-
Event: 7
-Number of tracker hits in this event = 103
- 7 210.059 399 8 1 -100.315 -101.061 35.55
- 7 558.02 395 8 0 -100.314 -101.062 34.15
- 7 253.934 399 7 1 -100.305 -101.078 5.55
- 7 276.807 395 7 0 -100.303 -101.079 4.15
- 7 221.931 399 6 1 -100.272 -101.122 -24.45
- 7 98.2475 395 6 0 -100.271 -101.125 -25.85
- 7 155.127 399 5 1 -100.249 -101.181 -54.45
- 7 103.398 394 5 0 -100.247 -101.183 -55.85
- 7 124.627 399 4 1 -100.211 -101.226 -84.45
- 7 169.498 394 4 0 -100.211 -101.227 -85.85
- 7 139.311 399 3 1 -100.196 -101.261 -114.45
- 7 126.943 394 3 0 -100.197 -101.263 -115.85
- 7 112.109 399 2 1 -100.212 -101.302 -144.45
- 7 151.7 394 2 0 -100.212 -101.303 -145.85
- 7 177.545 399 1 1 -100.225 -101.332 -174.45
- 7 141.668 394 1 0 -100.225 -101.333 -175.85
- 7 257.84 399 0 1 -100.23 -101.356 -204.45
- 7 104.73 393 0 0 -100.228 -101.356 -205.85
- 7 6.49732 1524 8 1 125.028 6.55164 35.15
- 7 245.534 1525 8 1 125.15 6.59302 35.3411
- 7 210.424 1232 7 0 -126.287 66.6144 3.75
- 7 133.4 328 5 1 -114.406 170.538 -54.45
- 7 34.6358 267 7 1 -126.672 66.325 5.15
- 7 296.56 266 7 1 -126.75 66.3534 5.22173
- 7 65.478 1181 7 1 56.2741 132.2 5.15
- 7 97.5334 1182 7 1 56.45 132.423 5.41425
- 7 313.439 1256 8 0 -90.5252 71.3797 33.7501
- 7 258.062 318 9 0 41.8144 -116.409 63.7502
- 7 68.9969 398 5 1 -100.35 -101.149 -54.61
- 7 27.0224 395 5 0 -100.653 -100.965 -55.85
- 7 88.1739 396 5 0 -100.675 -100.95 -55.9319
- 7 36.1599 352 4 1 -109.693 -91.2168 -84.45
- 7 77.8624 351 4 1 -109.75 -91.2034 -84.5253
- 7 18.7208 350 4 1 -109.95 -91.1862 -84.7913
- 7 175.389 444 4 0 -110.837 -91.2106 -85.85
- 7 136.414 192 3 1 -141.715 -89.9759 -114.45
- 7 23.0986 442 3 0 -141.974 -91.6697 -115.85
- 7 142.037 441 3 0 -141.992 -91.75 -115.916
- 7 89.8246 440 3 0 -142.017 -91.9501 -116.102
- 7 6.32751 439 3 0 -142.011 -92.1506 -116.231
- 7 62.9443 400 0 1 -100.15 -101.376 -204.458
- 7 94.4679 401 0 1 -99.9498 -101.414 -204.6
- 7 21.8833 402 0 1 -99.75 -101.546 -204.791
- 7 1.7358 389 0 0 -98.9784 -102.347 -205.85
- 7 107.778 388 0 0 -98.9754 -102.35 -205.854
- 7 70.1226 387 0 0 -98.6772 -102.551 -205.982
- 7 92.0499 386 0 0 -98.4346 -102.75 -206.027
- 7 132.251 385 0 0 -98.2624 -102.95 -206.091
- 7 19.7374 384 0 0 -98.1755 -103.15 -206.22
- 7 93.0203 394 0 0 -100.221 -101.208 -205.85
- 7 97.0374 400 6 1 -100.15 -101.102 -24.4968
- 7 69.6336 401 6 1 -99.95 -101.157 -24.6185
- 7 149.466 402 6 1 -99.75 -101.236 -24.7306
- 7 193.964 392 6 0 -98.1736 -101.66 -25.8502
- 7 402.36 348 6 0 3.74237 -110.422 -26.25
- 7 83.9983 929 6 1 5.87159 -110.769 -24.85
- 7 480.419 930 6 1 6.05 -110.779 -24.7274
- 7 128.202 931 6 1 6.25025 -110.763 -24.6466
- 7 48.1262 932 6 1 6.45 -110.685 -24.5544
- 7 87.7882 933 6 1 6.65 -110.603 -24.5078
- 7 189.406 347 6 0 3.79835 -110.55 -26.1955
- 7 129.663 398 7 1 -100.439 -101.138 5.54996
- 7 116.498 372 6 1 -105.729 -99.3814 -24.45
- 7 22.9278 373 6 1 -105.55 -99.4563 -24.7626
- 7 44.5614 402 6 0 -104.986 -99.7134 -25.85
- 7 258.065 401 6 0 -104.909 -99.7501 -26.0015
- 7 16.6572 446 5 1 -90.7812 -106.895 -54.45
- 7 101.27 447 5 1 -90.75 -106.892 -54.4992
- 7 17.1856 448 5 1 -90.55 -106.881 -54.8018
- 7 124.517 366 5 0 -89.7881 -106.851 -55.85
- 7 141.176 556 4 1 -68.8352 -107.205 -84.4504
- 7 6.87144 557 4 1 -68.6499 -107.236 -84.8238
- 7 113.684 364 4 0 -68.2457 -107.282 -85.85
- 7 112.48 347 4 0 -57.5313 -110.727 -86.25
- 7 85.6128 346 4 0 -57.5331 -110.75 -86.0966
- 7 67.0595 612 4 1 -57.6059 -110.893 -84.85
- 7 35.3524 611 4 1 -57.65 -110.893 -84.5998
- 7 95.9025 396 7 0 -100.25 -100.942 4.15
- 7 96.2212 396 6 1 -100.943 -100.309 -24.45
- 7 121.413 395 6 1 -100.95 -100.301 -24.7952
- 7 122.916 399 6 0 -100.97 -100.277 -25.85
- 7 128.792 393 5 1 -101.512 -99.5919 -54.45
- 7 17.331 402 5 0 -101.518 -99.5522 -55.85
- 7 98.115 403 5 0 -101.518 -99.55 -55.93
- 7 108.709 392 4 1 -101.736 -98.73 -84.45
- 7 203.253 407 4 0 -101.717 -98.6941 -85.85
- 7 110.682 394 3 1 -101.189 -97.9765 -114.45
- 7 285.101 411 3 0 -101.168 -97.9357 -115.85
- 7 125.81 397 2 1 -100.612 -97.0904 -144.45
- 7 130.063 415 2 0 -100.624 -97.0395 -145.85
- 7 134.102 395 1 1 -100.976 -96.0193 -174.45
- 7 60.8231 420 1 0 -100.995 -95.9585 -175.85
- 7 44.5847 421 1 0 -100.998 -95.95 -176.048
- 7 123.706 393 0 1 -101.377 -94.8444 -204.45
- 7 161.613 426 0 0 -101.489 -94.8372 -205.85
- 7 57.2601 433 0 1 -93.4884 5.25719 -204.85
- 7 80.2424 432 0 1 -93.55 5.45362 -204.513
- 7 187.649 412 3 0 -101.184 -97.75 -116.014
- 7 75.0618 394 6 1 -101.15 -100.429 -24.6954
- 7 113.489 393 6 1 -101.35 -100.349 -24.7168
- 7 256.602 392 6 1 -101.55 -100.296 -24.6652
- 7 143.325 391 6 1 -101.75 -100.345 -24.5984
- 7 199.559 396 8 0 -100.466 -100.95 33.8788
-Number of digits in this event = 50
+Number of tracker hits in this event = 25
+ 7 115.199 576 8 1 -64.7032 -128.914 35.55
+ 7 171.49 256 8 0 -64.7013 -128.913 34.15
+ 7 112.003 576 7 1 -64.6593 -128.894 5.55
+ 7 129.359 256 7 0 -64.6579 -128.892 4.15
+ 7 115.794 577 6 1 -64.6402 -128.871 -24.45
+ 7 130.798 256 6 0 -64.6407 -128.87 -25.85
+ 7 212.173 576 5 1 -64.6618 -128.843 -54.45
+ 7 135.015 256 5 0 -64.6622 -128.839 -55.85
+ 7 175.453 576 4 1 -64.6761 -128.718 -84.45
+ 7 106.184 257 4 0 -64.6749 -128.712 -85.85
+ 7 157.598 577 3 1 -64.6445 -128.587 -114.45
+ 7 110.228 257 3 0 -64.6458 -128.574 -115.85
+ 7 122.135 576 2 1 -64.6642 -128.342 -144.45
+ 7 264.372 259 2 0 -64.6574 -128.325 -145.85
+ 7 150.419 577 1 1 -64.5253 -127.988 -174.45
+ 7 130.496 260 1 0 -64.5145 -127.972 -175.85
+ 7 126.628 578 0 1 -64.2976 -127.647 -204.45
+ 7 160.362 262 0 0 -64.2847 -127.625 -205.85
+ 7 37.5319 725 7 0 -44.3643 -34.9421 3.75
+ 7 156.391 556 11 0 -43.2965 -68.6842 123.75
+ 7 314.295 258 2 0 -64.7231 -128.35 -145.936
+ 7 14.7471 575 5 1 -64.85 -128.895 -54.8083
+ 7 13.0156 254 5 0 -65.7935 -129.334 -55.85
+ 7 122.414 253 5 0 -65.8258 -129.35 -55.8872
+ 7 28.8749 252 5 0 -66.0824 -129.55 -56.1678
+Number of digits in this event = 17
Using G4ParticleGun ...
-8.8682 LIN
+8.56036 LIN
e-
Event: 8
-Number of tracker hits in this event = 121
- 8 113.995 916 11 1 3.29332 5.07457 125.55
- 8 225.762 925 11 0 3.29347 5.07491 124.15
- 8 98.9072 916 10 1 3.30112 5.08032 95.55
- 8 105.122 925 10 0 3.30183 5.08083 94.15
- 8 154.437 916 9 1 3.31492 5.09307 65.55
- 8 152.412 925 9 0 3.31545 5.09266 64.15
- 8 117.559 916 8 1 3.32845 5.08083 35.55
- 8 140.077 925 8 0 3.32955 5.07932 34.15
- 8 157.446 916 7 1 3.35236 5.04976 5.55
- 8 125.066 924 7 0 3.35351 5.04707 4.15
- 8 732.45 916 6 1 3.37751 4.99196 -24.45
- 8 281.563 924 6 0 3.37877 4.98862 -25.85
- 8 120.713 916 5 1 3.40359 4.92824 -54.45
- 8 111.59 924 5 0 3.40467 4.92156 -55.85
- 8 97.8502 916 4 1 3.43085 4.78119 -84.45
- 8 144.714 923 4 0 3.43137 4.77408 -85.85
- 8 107.693 916 3 1 3.44618 4.63313 -114.45
- 8 109.51 922 3 0 3.44662 4.62506 -115.85
- 8 128.889 917 2 1 3.45757 4.45459 -144.45
- 8 168.657 921 2 0 3.45698 4.44652 -145.85
- 8 129.859 916 1 1 3.44901 4.27732 -174.45
- 8 191.267 921 1 0 3.4493 4.26776 -175.85
- 8 166.672 916 0 1 3.4475 4.07066 -204.45
- 8 89.5248 920 0 0 3.44783 4.06221 -205.85
- 8 50.3617 1252 0 1 70.45 -129.445 -204.713
- 8 87.714 1251 0 1 70.45 -129.589 -204.571
- 8 108.961 670 3 1 -45.9657 -1.53243 -114.85
- 8 160.456 701 4 1 -39.7833 -43.6821 -84.85
- 8 27.1481 548 4 1 -70.25 -17.7509 -84.4985
- 8 101.001 699 10 0 73.3004 -40.05 93.8308
- 8 173.136 1254 10 1 71.0193 -42.0945 95.15
- 8 73.9892 927 6 0 2.47777 5.49804 -25.85
- 8 144.105 915 6 1 3.25 4.77132 -24.6267
- 8 307.499 923 6 0 3.22873 4.84425 -25.8505
- 8 82.6125 1010 6 0 -0.15185 22.05 -25.9779
- 8 102.86 1011 6 0 -0.177451 22.25 -26.0275
- 8 162.6 929 5 1 5.88513 5.50878 -54.45
- 8 113.7 927 5 0 5.94577 5.55157 -55.8505
- 8 155.208 934 4 1 6.92276 9.37659 -84.45
- 8 200.732 947 4 0 7.1291 9.51791 -85.85
- 8 97.0955 955 3 1 11.1513 12.0714 -114.45
- 8 28.9062 960 3 0 11.3246 12.239 -115.85
- 8 81.2046 961 3 0 11.3351 12.25 -115.939
- 8 147.373 973 2 1 14.6961 15.5683 -144.45
- 8 77.1989 978 2 0 15.0084 15.8129 -145.85
- 8 56.5794 979 2 0 15.057 15.85 -146.068
- 8 347.53 1005 1 1 21.0711 20.4569 -174.45
- 8 106.688 1003 1 0 21.4599 20.7175 -175.85
- 8 19.2028 1049 0 1 30.0401 26.9521 -204.45
- 8 134.062 1050 0 1 30.05 26.9602 -204.472
- 8 3.93165 1036 0 0 30.6192 27.4436 -205.85
- 8 109.505 1037 0 0 30.6266 27.45 -205.868
- 8 30.2411 1006 1 1 21.2501 19.9282 -174.781
- 8 19.8535 994 1 0 21.8901 18.8952 -175.85
- 8 227.057 993 1 0 21.9094 18.85 -175.91
- 8 63.4429 992 1 0 22.0008 18.65 -176.05
- 8 48.8661 991 1 0 22.0187 18.45 -176.123
- 8 55.1793 990 1 0 22.0288 18.2499 -176.118
- 8 64.8656 989 1 0 22.0841 18.05 -176.157
- 8 17.5929 988 1 0 22.1185 17.85 -176.208
- 8 12.2528 605 1 0 29.9739 -59.0137 -176.25
- 8 311.996 604 1 0 29.9835 -59.05 -176.225
- 8 113.178 1044 1 1 28.9811 -58.5952 -174.85
- 8 164.376 1043 1 1 28.85 -58.7683 -174.742
- 8 82.0549 1009 1 1 21.8996 18.348 -174.85
- 8 124.752 1008 1 1 21.85 18.2654 -174.736
- 8 101.029 972 2 1 14.65 15.5722 -144.489
- 8 429.286 971 2 1 14.4499 15.5938 -144.582
- 8 16.0706 905 4 0 4.53497 1.13383 -86.25
- 8 26.5599 910 5 1 2.10857 -1.12564 -54.4507
- 8 93.1855 909 5 1 2.05 -1.13566 -54.5332
- 8 23.9572 908 5 1 1.84989 -1.11361 -54.7942
- 8 136.432 895 5 0 1.17955 -1.04098 -55.85
- 8 30.3275 925 6 0 3.21845 5.23381 -25.8503
- 8 195.79 926 6 0 3.2028 5.25001 -25.9689
- 8 238.712 895 5 1 -0.967098 9.50475 -54.45
- 8 36.819 894 5 1 -1.05 9.46369 -54.7291
- 8 138.36 946 5 0 -1.3921 9.33527 -55.8501
- 8 64.6014 852 4 1 -9.59855 7.16256 -84.4501
- 8 163.944 851 4 1 -9.65011 7.15742 -84.514
- 8 55.3398 850 4 1 -9.85003 7.15278 -84.752
- 8 145.683 935 4 0 -10.7098 7.16904 -85.85
- 8 140.741 696 3 1 -40.6823 6.63279 -114.45
- 8 64.913 929 3 0 -40.8234 5.91601 -115.85
- 8 63.7839 928 3 0 -40.8224 5.85 -116.021
- 8 18.3353 938 4 0 -10.6766 7.83923 -85.85
- 8 199.327 939 4 0 -10.6934 7.85004 -85.872
- 8 7.61578 1069 4 0 -39.8805 34.0377 -86.2494
- 8 116.906 1070 4 0 -39.8861 34.05 -86.2163
- 8 167.245 700 4 1 -39.8648 34.3813 -84.8496
- 8 18.1188 1240 5 0 -4.47924 68.217 -56.25
- 8 131.241 1241 5 0 -4.4485 68.25 -56.2255
- 8 158.369 1242 5 0 -4.29487 68.45 -56.0938
- 8 21.9725 1243 5 0 -3.99158 68.65 -55.8917
- 8 26.2838 887 5 1 -2.53696 69.7917 -54.85
- 8 65.5119 888 5 1 -2.45 69.829 -54.7939
- 8 69.6033 889 5 1 -2.25 69.83 -54.6724
- 8 35.7834 890 5 1 -2.05 69.8172 -54.5198
- 8 95.8893 1155 5 0 -31.9687 51.1287 -56.25
- 8 64.9354 1156 5 0 -31.9346 51.25 -55.8945
- 8 118.596 741 5 1 -31.8054 51.5315 -54.85
- 8 343.311 742 5 1 -31.65 51.6664 -54.6891
- 8 190.961 743 5 1 -31.45 51.9363 -54.6518
- 8 6.45563 896 5 1 -0.849984 9.36285 -54.8418
- 8 133.346 943 5 0 0.669631 8.82281 -55.8501
- 8 33.5235 900 5 1 0.129667 9.37437 -54.85
- 8 190.299 916 2 1 3.25834 5.14415 -144.45
- 8 55.7725 915 2 1 3.25 5.14319 -144.663
- 8 234.513 925 2 0 3.19351 5.12771 -145.85
- 8 132.24 910 1 1 2.07268 4.29133 -174.45
- 8 187.832 920 1 0 2.05368 4.14229 -175.85
- 8 26.2898 907 0 1 1.46142 0.921186 -204.45
- 8 118.184 906 0 1 1.45 0.92612 -204.559
- 8 129.922 904 0 0 1.31769 0.987534 -205.85
- 8 161.228 915 1 1 3.18134 5.15709 -174.45
- 8 121.136 925 1 0 3.18136 5.15858 -175.85
- 8 118.469 915 0 1 3.18943 5.18541 -204.45
- 8 129.389 925 0 0 3.18389 5.18841 -205.85
- 8 141.018 1263 13 1 72.85 41.9129 185.4
- 8 0.01077 924 11 0 3.35405 5.04997 123.75
- 8 137.044 755 11 0 -11.2869 -29.0396 123.75
-Number of digits in this event = 56
+Number of tracker hits in this event = 68
+ 8 111.812 579 10 1 -64.1949 74.1933 95.55
+ 8 110.621 1270 10 0 -64.1947 74.1932 94.15
+ 8 124.069 579 9 1 -64.1896 74.1922 65.55
+ 8 137.413 1270 9 0 -64.1885 74.1928 64.15
+ 8 126.041 579 8 1 -64.1609 74.2082 35.55
+ 8 113.761 1270 8 0 -64.1605 74.2092 34.15
+ 8 101.653 579 7 1 -64.1491 74.2299 5.55
+ 8 116.012 1270 7 0 -64.1491 74.2308 4.15
+ 8 233.045 579 6 1 -64.1446 74.2439 -24.45
+ 8 127.38 1270 6 0 -64.1454 74.2471 -25.85
+ 8 150.151 579 5 1 -64.1691 74.3227 -54.45
+ 8 137.393 1271 5 0 -64.169 74.3272 -55.85
+ 8 334.193 579 4 1 -64.1618 74.4251 -84.45
+ 8 237.782 1271 4 0 -64.1612 74.426 -85.85
+ 8 107.872 579 3 1 -64.2013 74.4304 -114.45
+ 8 115.616 1271 3 0 -64.2074 74.4308 -115.85
+ 8 107.559 578 2 1 -64.353 74.4412 -144.45
+ 8 144.249 1271 2 0 -64.3646 74.4446 -145.85
+ 8 129.84 577 1 1 -64.6366 74.4614 -174.45
+ 8 153.146 1272 1 0 -64.6458 74.4668 -175.85
+ 8 112.857 576 0 1 -64.8284 74.5517 -204.45
+ 8 187.284 1272 0 0 -64.8431 74.555 -205.85
+ 8 70.6163 1265 6 0 -64.6371 73.1953 -25.85
+ 8 48.8075 581 6 1 -63.6546 72.327 -24.8499
+ 8 37.8517 1255 6 0 -64.5916 71.1837 -25.85
+ 8 193.421 581 3 1 -63.8449 72.9323 -114.45
+ 8 80.8556 1259 3 0 -63.7035 72.0307 -115.85
+ 8 72.6246 1258 3 0 -63.6666 71.85 -116.126
+ 8 143.741 606 2 1 -58.8281 54.7113 -144.45
+ 8 115.398 1171 2 0 -58.394 54.4008 -145.85
+ 8 128.691 648 1 1 -50.4434 48.577 -174.45
+ 8 157.846 1141 1 0 -50.0129 48.3926 -175.85
+ 8 208.017 689 0 1 -42.1379 43.3688 -204.45
+ 8 5.56742 690 0 1 -42.05 43.3014 -204.832
+ 8 112.333 1115 0 0 -41.8162 43.1252 -205.85
+ 8 125.88 1272 4 0 -64.4975 74.5261 -85.8501
+ 8 214.161 558 3 1 -68.2622 81.694 -114.45
+ 8 21.2819 1314 3 0 -68.7716 82.9942 -115.85
+ 8 80.8104 1315 3 0 -68.7922 83.0502 -115.911
+ 8 44.3686 1316 3 0 -68.8732 83.25 -116.138
+ 8 41.3523 494 2 1 -81.1346 111.793 -144.45
+ 8 80.1662 493 2 1 -81.2501 111.812 -144.585
+ 8 23.3263 492 2 1 -81.45 111.818 -144.804
+ 8 83.7395 1458 2 0 -82.4713 111.914 -145.85
+ 8 66.7404 1459 2 0 -82.6947 111.95 -146.073
+ 8 4.41463 1528 2 0 -116.523 125.945 -146.25
+ 8 151.013 1529 2 0 -116.528 125.95 -146.228
+ 8 102.17 316 2 1 -116.775 126.219 -144.85
+ 8 125.595 1558 3 0 -139.745 131.752 -116.25
+ 8 46.7399 1557 3 0 -139.988 131.75 -115.979
+ 8 30.24 195 3 1 -141.087 131.325 -114.85
+ 8 97.2433 194 3 1 -141.15 131.303 -114.785
+ 8 29.9664 193 3 1 -141.35 131.216 -114.53
+ 8 105.543 1590 4 0 -133.099 138.231 -86.25
+ 8 92.8884 236 4 1 -132.792 138.54 -84.85
+ 8 167.555 237 4 1 -132.75 138.581 -84.6384
+ 8 152.052 1566 5 0 -124.265 133.353 -56.25
+ 8 273.848 1565 5 0 -124.262 133.35 -56.2359
+ 8 104.012 278 5 1 -124.486 132.966 -54.8497
+ 8 55.2403 277 5 1 -124.55 132.891 -54.5651
+ 8 41.0256 1564 5 0 -124.116 133.15 -55.9161
+ 8 13.7746 279 5 1 -124.175 132.773 -54.85
+ 8 25.8514 1235 3 0 -60.9183 67.1204 -116.25
+ 8 70.2248 1234 3 0 -60.8785 67.05 -116.189
+ 8 58.573 1233 3 0 -60.8595 66.85 -116.037
+ 8 17.6889 1232 3 0 -60.8454 66.65 -115.909
+ 8 491.82 598 3 1 -60.3549 65.799 -114.85
+ 8 108.072 599 3 1 -60.25 65.6357 -114.528
+Number of digits in this event = 29
Using G4ParticleGun ...
-8.89771 LIN
+2.68298 LIN
e-
Event: 9
-Number of tracker hits in this event = 155
- 9 113.059 660 11 1 -47.8578 32.2443 125.55
- 9 285.212 1060 11 0 -47.858 32.2441 124.15
- 9 372.472 660 10 1 -47.8678 32.246 95.55
- 9 226.436 1060 10 0 -47.8671 32.2467 94.15
- 9 107.607 660 9 1 -47.8523 32.2614 65.55
- 9 185.156 1061 9 0 -47.8521 32.2632 64.15
- 9 102.445 661 8 1 -47.8385 32.3003 35.55
- 9 137.593 1061 8 0 -47.8372 32.3025 34.15
- 9 135.002 661 7 1 -47.822 32.3554 5.55
- 9 108.286 1061 7 0 -47.823 32.3558 4.15
- 9 362.577 661 6 1 -47.8412 32.3604 -24.45
- 9 378.024 1061 6 0 -47.8426 32.3619 -25.85
- 9 189.188 660 5 1 -47.8769 32.3912 -54.45
- 9 103.88 1061 5 0 -47.8765 32.3934 -55.85
- 9 145.345 660 4 1 -47.8703 32.4376 -84.45
- 9 123.479 1061 4 0 -47.8699 32.4389 -85.85
- 9 152.817 660 3 1 -47.8628 32.4653 -114.45
- 9 124.23 1062 3 0 -47.8623 32.4661 -115.85
- 9 107.089 660 2 1 -47.8514 32.4881 -144.45
- 9 145.851 1062 2 0 -47.8509 32.4901 -145.85
- 9 111.217 661 1 1 -47.8383 32.53 -174.45
- 9 118.492 1062 1 0 -47.8389 32.5337 -175.85
- 9 110.602 661 0 1 -47.8479 32.6177 -204.45
- 9 108.2 1062 0 0 -47.8494 32.6215 -205.85
- 9 257.91 1172 11 0 -116.66 54.65 123.766
- 9 132.509 1403 10 0 -132.419 100.913 93.7506
- 9 253.563 1404 10 0 -132.289 100.95 93.875
- 9 193.78 1405 10 0 -131.991 101.15 94.0984
- 9 259.138 125 4 1 -154.95 -27.1188 -84.7659
- 9 41.2074 765 4 0 -155.1 -27.05 -85.8664
- 9 51.1101 44 1 0 -83.5137 -171.15 -176.109
- 9 349.478 482 1 1 -83.4972 -171.64 -174.85
- 9 217.073 483 1 1 -83.45 -171.7 -174.727
- 9 139.118 481 1 1 -83.65 -171.342 -174.654
- 9 236.067 1066 0 0 -50.7041 33.2775 -206.25
- 9 19.7235 834 3 0 132.199 -13.2218 -116.25
- 9 132.38 833 3 0 132.259 -13.25 -116.203
- 9 0.0426679 1568 3 1 133.95 -13.934 -114.85
- 9 93.4678 1569 3 1 133.95 -13.9341 -114.85
- 9 113.137 1570 3 1 134.15 -13.9913 -114.688
- 9 1.62293 1571 3 1 134.35 -14.1066 -114.456
- 9 108.679 661 4 1 -47.85 32.4558 -84.6943
- 9 109.255 663 5 1 -47.3931 32.8697 -54.4508
- 9 109.298 1064 5 0 -47.2794 32.9593 -55.85
- 9 172.593 675 4 1 -45.0277 34.334 -84.45
- 9 99.9738 1071 4 0 -44.9545 34.3863 -85.85
- 9 129.459 680 3 1 -43.9263 35.0097 -114.45
- 9 35.3677 1074 3 0 -43.9569 35.047 -115.85
- 9 85.2617 1075 3 0 -43.9594 35.05 -115.961
- 9 228.505 677 2 1 -44.5757 35.5574 -144.45
- 9 110.93 1078 2 0 -44.6268 35.6981 -145.85
- 9 137.303 671 1 1 -45.7537 38.6269 -174.45
- 9 113.598 1094 1 0 -45.754 38.8796 -175.85
- 9 124.11 668 0 1 -46.321 43.9528 -204.45
- 9 21.7644 1120 0 0 -46.3901 44.2323 -205.85
- 9 82.5887 1121 0 0 -46.3944 44.25 -205.938
- 9 3.69255 1069 4 0 -45.0877 33.8548 -85.85
- 9 232.473 1068 4 0 -45.0879 33.8497 -85.8602
- 9 46.2739 1121 4 0 -49.9711 44.3388 -86.2499
- 9 40.1036 898 4 0 -37.1693 -0.440916 -86.25
- 9 26.1583 897 4 0 -37.1647 -0.45 -86.2466
- 9 61.1013 659 5 1 -48.05 32.4942 -54.6201
- 9 125.681 1062 5 0 -48.1234 32.6054 -55.85
- 9 115.032 648 4 1 -50.3505 34.3386 -84.45
- 9 138.328 1072 4 0 -50.4873 34.5161 -85.8502
- 9 87.3759 638 3 1 -52.3365 38.9524 -114.45
- 9 18.5647 639 3 1 -52.2499 38.9998 -114.791
- 9 211.632 1095 3 0 -51.9832 39.1407 -115.85
- 9 49.9508 675 2 1 -45.0025 43.1435 -144.45
- 9 80.2042 676 2 1 -44.85 43.1773 -144.55
- 9 28.0509 678 2 1 -44.45 43.2551 -144.82
- 9 214.74 1117 2 0 -42.9235 43.492 -145.85
- 9 123.479 887 1 1 -2.61363 42.251 -174.45
- 9 9.31418 888 1 1 -2.45 42.0688 -174.826
- 9 306.211 1107 1 0 -1.9807 41.5973 -175.85
- 9 126.124 1106 1 0 -1.83393 41.45 -176.137
- 9 50.1109 965 0 1 13.0882 27.1123 -204.45
- 9 149.072 966 0 1 13.25 27.0908 -204.559
- 9 74.2172 967 0 1 13.45 27.0613 -204.711
- 9 170.551 1034 0 0 14.6068 26.9601 -205.85
- 9 247.118 1105 1 0 -1.90716 41.25 -176.075
- 9 16.928 1104 1 0 -1.88701 41.0495 -176.011
- 9 30.9002 1249 9 0 -91.6552 69.9948 63.75
- 9 176.995 659 9 1 -48.2058 28.7183 65.5499
- 9 113.303 1043 9 0 -48.194 28.6546 64.15
- 9 108.175 678 8 1 -44.3528 31.9724 35.55
- 9 30.0507 679 8 1 -44.25 32.0169 35.2884
- 9 231.705 1060 8 0 -43.7258 32.0661 34.1491
- 9 84.2449 699 7 1 -40.1763 38.5415 5.55
- 9 13.83 698 7 1 -40.25 38.6521 5.21858
- 9 144.681 1093 7 0 -40.5362 38.7696 4.15
- 9 26.8441 1094 7 0 -40.5999 38.85 3.82669
- 9 221.67 690 4 1 -41.9262 -15.2795 -84.45
- 9 87.4305 691 4 1 -41.85 -15.3329 -84.5025
- 9 94.2268 692 4 1 -41.65 -15.5589 -84.628
- 9 71.7618 693 4 1 -41.45 -15.8284 -84.7581
- 9 17.7517 808 4 0 -40.2099 -18.3869 -85.8501
- 9 66.4522 807 4 0 -40.1747 -18.45 -85.8709
- 9 80.2634 806 4 0 -40.0815 -18.65 -85.9399
- 9 58.1262 805 4 0 -40.0396 -18.85 -86.0417
- 9 62.266 804 4 0 -40.0308 -19.05 -86.1549
- 9 57.9403 1060 4 1 32.05 -42.9936 -84.8369
- 9 15.0714 818 4 0 -41.8427 -16.44 -85.85
- 9 163.397 817 4 0 -41.8422 -16.45 -85.8621
- 9 78.0438 816 4 0 -41.8293 -16.65 -86.0913
- 9 118.402 695 3 1 -40.9474 -44.4194 -114.45
- 9 101.493 680 3 0 -41.1409 -44.0189 -115.85
- 9 11.5113 646 2 1 -50.8219 -37.3147 -144.45
- 9 98.2049 645 2 1 -50.85 -37.295 -144.478
- 9 73.462 644 2 1 -51.05 -37.1644 -144.689
- 9 130.665 718 2 0 -52.1153 -36.4445 -145.85
- 9 111.202 719 2 0 -52.3707 -36.25 -146.095
- 9 6.32087 720 2 0 -52.6261 -36.05 -146.244
- 9 18.9292 1152 2 0 -91.1943 50.6112 -146.25
- 9 204.521 1153 2 0 -91.1363 50.6505 -146.2
- 9 76.8833 455 2 1 -88.9385 51.117 -144.85
- 9 366.429 456 2 1 -88.85 51.1365 -144.788
- 9 170.321 457 2 1 -88.65 51.1296 -144.625
- 9 600.362 458 2 1 -88.412 51.1619 -144.45
- 9 57.8968 1171 2 0 -88.9937 54.3127 -145.85
- 9 92.6884 1172 2 0 -88.9694 54.45 -145.985
- 9 384.174 1173 2 0 -89.0229 54.65 -146.125
- 9 132.625 1176 2 0 -98.2932 55.3996 -145.85
- 9 92.8231 1175 2 0 -98.6085 55.25 -146.009
- 9 266.655 1174 2 0 -98.6675 55.05 -146.124
- 9 76.6712 679 3 1 -44.25 -153.569 -114.806
- 9 367.857 534 1 1 -73.0592 -25.796 -174.45
- 9 2.34197 661 10 1 -47.85 32.2441 95.1654
- 9 216.597 1061 10 0 -47.7802 32.2903 94.15
- 9 32.2 670 9 1 -45.8689 33.2643 65.55
- 9 73.3184 671 9 1 -45.8499 33.2752 65.4144
- 9 116.753 1066 9 0 -45.6575 33.3171 64.15
- 9 203.656 685 8 1 -42.8882 32.5833 35.5497
- 9 118.955 1062 8 0 -43.3125 32.5442 34.15
- 9 127.202 649 7 1 -50.0719 31.1051 5.55
- 9 136.283 1055 7 0 -50.3573 31.081 4.14884
- 9 44.5273 630 6 1 -53.8828 30.3184 -24.45
- 9 143.969 631 6 1 -53.85 30.4038 -24.5828
- 9 258.126 1056 6 0 -53.5894 31.3398 -25.85
- 9 98.8398 1057 6 0 -53.5698 31.45 -25.9845
- 9 14.2372 1058 6 0 -53.5484 31.65 -26.2129
- 9 132.628 643 5 1 -51.3866 56.9041 -54.45
- 9 185.903 644 5 1 -51.25 57.1957 -54.4997
- 9 163.684 645 5 1 -51.05 57.7283 -54.5614
- 9 418.731 646 5 1 -50.85 58.3596 -54.6501
- 9 184.395 647 5 1 -50.6498 58.8959 -54.713
- 9 95.6746 648 5 1 -50.4499 59.1978 -54.7712
- 9 110.296 649 5 1 -50.25 59.4932 -54.7905
- 9 102.376 650 5 1 -50.0496 59.8617 -54.792
- 9 201.519 651 5 1 -49.85 60.2243 -54.7975
- 9 417.945 652 5 1 -49.65 61.019 -54.7534
- 9 40.1236 1299 5 0 -48.2678 79.8639 -55.85
- 9 5.77802 661 5 1 -47.7457 175.901 -54.85
- 9 188.445 290 4 1 -122.135 -148.971 -84.45
- 9 149.383 289 4 1 -122.15 -149.084 -84.67
-Number of digits in this event = 72
+Number of tracker hits in this event = 26
+ 9 162.467 1221 10 1 64.3636 89.4656 95.55
+ 9 96.3772 1347 10 0 64.3689 89.4647 94.15
+ 9 118.229 1222 9 1 64.4713 89.4468 65.55
+ 9 169.331 1347 9 0 64.4652 89.5679 64.15
+ 9 128.769 1223 8 1 64.8017 93.1494 35.55
+ 9 115.605 1366 8 0 64.7598 93.4199 34.15
+ 9 141.862 1219 7 1 63.9822 99.6552 5.55
+ 9 50.0459 1399 7 0 63.9702 100.111 4.14972
+ 9 96.9084 1400 7 0 63.9672 100.15 4.03237
+ 9 259.429 1202 6 1 60.6417 110.552 -24.45
+ 9 70.5865 1201 6 1 60.4499 110.624 -24.4763
+ 9 96.23 1200 6 1 60.25 110.687 -24.4776
+ 9 64.4079 1199 6 1 60.05 110.712 -24.5238
+ 9 65.777 1198 6 1 59.85 110.72 -24.588
+ 9 86.5406 1197 6 1 59.65 110.733 -24.6468
+ 9 63.7181 1196 6 1 59.45 110.778 -24.6943
+ 9 53.4826 1195 6 1 59.25 110.883 -24.723
+ 9 46.5995 1194 6 1 59.05 110.959 -24.7415
+ 9 56.385 1193 6 1 58.8498 111.041 -24.7685
+ 9 73.4916 1192 6 1 58.65 111.164 -24.7804
+ 9 124.141 1191 6 1 58.45 111.308 -24.7899
+ 9 24.9319 1463 6 0 56.4946 112.909 -25.85
+ 9 136.518 1464 6 0 56.4456 112.95 -25.8814
+ 9 17.922 1465 6 0 56.2072 113.15 -26.1938
+ 9 178.805 1203 6 1 60.7512 110.523 -24.45
+ 9 146.592 1344 10 0 64.304 88.9252 94.15
+Number of digits in this event = 11
Using G4ParticleGun ...
-7.73084 LIN
+4.25187 LIN
e-
Event: 10
-Number of tracker hits in this event = 59
- 10 214.48 334 9 1 -113.338 -30.5321 65.55
- 10 269.343 747 9 0 -113.337 -30.533 64.15
- 10 131.29 334 8 1 -113.323 -30.5489 35.55
- 10 118.53 747 8 0 -113.324 -30.5487 34.15
- 10 200.337 334 7 1 -113.333 -30.5486 5.55
- 10 220.767 747 7 0 -113.333 -30.5499 4.15
- 10 131.467 334 6 1 -113.325 -30.5751 -24.45
- 10 141.92 747 6 0 -113.325 -30.5771 -25.85
- 10 118.247 334 5 1 -113.323 -30.6168 -54.45
- 10 169.642 747 5 0 -113.324 -30.6188 -55.85
- 10 402.04 333 4 1 -113.352 -30.6652 -84.45
- 10 132.952 746 4 0 -113.353 -30.6667 -85.85
- 10 152.29 333 3 1 -113.356 -30.701 -114.45
- 10 97.8803 746 3 0 -113.355 -30.701 -115.85
- 10 122.892 334 2 1 -113.339 -30.7058 -144.45
- 10 134.178 746 2 0 -113.335 -30.7046 -145.85
- 10 466.57 334 1 1 -113.26 -30.686 -174.45
- 10 372.17 746 1 0 -113.25 -30.6854 -175.85
- 10 133.277 335 0 1 -113.059 -30.6747 -204.45
- 10 412.335 746 0 0 -113.051 -30.6717 -205.85
- 10 101.01 541 0 1 -71.681 -75.4424 -204.85
- 10 139.56 542 0 1 -71.65 -75.4946 -204.659
- 10 46.7268 1155 1 0 -36.111 51.05 -176.02
- 10 7.24178 1156 1 0 -35.9408 51.25 -175.866
- 10 72.085 723 1 1 -35.4127 51.5655 -174.85
- 10 218.067 724 1 1 -35.25 51.615 -174.708
- 10 446.002 334 0 1 -113.16 -30.7077 -204.45
- 10 132.347 747 0 0 -113.16 -30.4778 -205.85
- 10 9.15982 1301 4 0 -56.9962 80.4314 -86.25
- 10 50.6881 1302 4 0 -57.0017 80.45 -86.2372
- 10 32.369 1524 4 0 -47.0391 125.137 -86.25
- 10 135.794 1525 4 0 -47.1004 125.15 -86.1986
- 10 28.6812 1248 4 0 13.9298 69.8366 -86.25
- 10 108.395 334 4 1 -113.35 -30.728 -84.4875
- 10 60.987 332 4 1 -113.55 -30.7288 -84.7418
- 10 51.7543 333 6 1 -113.35 -30.5838 -24.815
- 10 188.704 745 6 0 -113.54 -31.0061 -25.85
- 10 120.469 333 7 1 -113.35 -30.5301 5.3846
- 10 0.076591 748 7 0 -113.427 -30.45 3.75089
- 10 122.48 327 6 1 -114.69 -29.2941 -24.45
- 10 109.794 753 6 0 -114.719 -29.2763 -25.85
- 10 128.958 323 5 1 -115.421 -29.0156 -54.45
- 10 140.553 755 5 0 -115.426 -28.9591 -55.85
- 10 145.197 321 4 1 -115.755 -27.7735 -84.45
- 10 99.3186 761 4 0 -115.766 -27.7257 -85.85
- 10 135.861 322 3 1 -115.682 -26.7713 -114.45
- 10 124.26 768 3 0 -115.806 -26.4141 -115.85
- 10 159.423 314 2 1 -117.21 -16.7255 -144.45
- 10 72.9509 821 2 0 -117.625 -15.7716 -145.85
- 10 68.1417 822 2 0 -117.67 -15.65 -146.034
- 10 54.6763 288 1 1 -122.465 2.39254 -174.45
- 10 67.6173 287 1 1 -122.55 2.51219 -174.644
- 10 44.899 916 1 0 -123.067 3.35639 -175.85
- 10 81.3625 917 1 0 -123.124 3.45 -175.989
- 10 122.749 229 0 1 -134.215 16.8198 -204.45
- 10 54.4708 986 0 0 -134.635 17.3992 -205.85
- 10 94.0451 987 0 0 -134.672 17.45 -205.976
- 10 59.1537 51 0 1 -169.75 34.7477 -204.763
- 10 229.642 746 9 0 -113.284 -30.65 63.8886
-Number of digits in this event = 36
+Number of tracker hits in this event = 66
+ 10 99.118 902 10 1 0.539525 -95.2114 95.55
+ 10 120.987 424 10 0 0.539144 -95.211 94.15
+ 10 104.142 902 9 1 0.536322 -95.198 65.55
+ 10 104.605 424 9 0 0.535875 -95.1989 64.15
+ 10 107.272 902 8 1 0.522598 -95.2227 35.55
+ 10 106.164 424 8 0 0.52393 -95.2235 34.15
+ 10 110.377 902 7 1 0.558557 -95.2345 5.55
+ 10 147.891 424 7 0 0.559826 -95.2353 4.15
+ 10 132.771 902 6 1 0.569638 -95.2503 -24.45
+ 10 117.682 424 6 0 0.571499 -95.2513 -25.85
+ 10 132.36 902 5 1 0.604857 -95.2741 -54.45
+ 10 148.195 424 5 0 0.607882 -95.2727 -55.85
+ 10 152.242 903 4 1 0.669385 -95.238 -84.45
+ 10 316.426 424 4 0 0.671751 -95.2377 -85.85
+ 10 225.253 903 3 1 0.717183 -95.228 -114.45
+ 10 211.405 424 3 0 0.718115 -95.2292 -115.85
+ 10 240.321 903 2 1 0.755881 -95.2607 -144.45
+ 10 124.557 424 2 0 0.757731 -95.2636 -145.85
+ 10 257.188 903 1 1 0.795803 -95.3252 -174.45
+ 10 243.414 424 1 0 0.798811 -95.3279 -175.85
+ 10 122.073 904 0 1 0.852837 -95.3791 -204.45
+ 10 103.782 423 0 0 0.857792 -95.3814 -205.85
+ 10 72.9623 440 0 0 -5.63205 -92.0377 -206.25
+ 10 75.5233 423 1 0 0.785133 -95.35 -176.04
+ 10 84.1804 422 1 0 0.736761 -95.55 -176.106
+ 10 130.573 421 1 0 0.719519 -95.7504 -176.12
+ 10 83.2908 420 1 0 0.688147 -95.9502 -175.959
+ 10 52.9776 419 1 0 0.655218 -96.15 -175.905
+ 10 122.907 902 1 1 0.481443 -96.3197 -174.85
+ 10 208.372 901 1 1 0.449713 -96.2452 -174.633
+ 10 130.976 902 2 1 0.65 -95.2601 -144.709
+ 10 330.877 902 3 1 0.648779 -95.1982 -114.783
+ 10 135.037 432 3 0 0.100489 -93.7253 -115.85
+ 10 64.598 433 3 0 0.1637 -93.55 -116.098
+ 10 154.777 425 3 0 0.411425 -95.0957 -115.85
+ 10 64.006 892 2 1 -1.63654 -90.4798 -144.45
+ 10 70.1386 891 2 1 -1.65 -90.4466 -144.608
+ 10 118.946 449 2 0 -1.76057 -90.2282 -145.85
+ 10 132.332 876 1 1 -4.71022 -85.3431 -174.451
+ 10 182.06 471 1 0 -4.69744 -85.7111 -175.851
+ 10 116.365 877 0 1 -4.46221 -93.5238 -204.451
+ 10 119.895 432 0 0 -4.90064 -93.6303 -205.85
+ 10 152.242 895 3 1 -0.897966 -93.8993 -114.85
+ 10 197.934 423 3 0 0.503186 -95.4605 -115.85
+ 10 117.927 907 2 1 1.48166 -93.667 -144.45
+ 10 115.084 432 2 0 1.57601 -93.6684 -145.85
+ 10 97.808 904 1 1 1.03372 -93.0822 -174.45
+ 10 145.037 438 1 0 0.947098 -92.4393 -175.85
+ 10 143.945 439 1 0 0.925858 -92.35 -176.042
+ 10 44.8027 468 1 0 -18.518 -86.3406 -176.25
+ 10 67.7309 469 1 0 -18.4878 -86.25 -176.152
+ 10 66.7844 470 1 0 -18.4443 -86.05 -176.106
+ 10 83.5543 477 1 0 27.2336 -84.4865 -176.25
+ 10 95.2605 476 1 0 27.3714 -84.65 -176.196
+ 10 91.5652 385 1 0 53.4253 -103.098 -176.25
+ 10 175.407 384 1 0 53.5173 -103.15 -176.136
+ 10 18.3271 422 3 0 0.499217 -95.55 -116.184
+ 10 116.706 363 3 0 12.2486 -107.479 -116.25
+ 10 78.8681 965 3 1 13.1237 -107.456 -114.85
+ 10 62.4185 966 3 1 13.25 -107.451 -114.671
+ 10 147.765 361 4 0 -2.70796 -107.782 -86.25
+ 10 67.0385 881 4 1 -3.69311 -107.86 -84.85
+ 10 70.566 880 4 1 -3.85 -107.89 -84.6892
+ 10 18.2663 879 4 1 -4.05018 -107.954 -84.5124
+ 10 64.0952 323 5 0 -37.2728 -115.35 -56.1786
+ 10 214.714 1353 2 1 90.7765 -40.406 -144.85
+Number of digits in this event = 32
Using G4ParticleGun ...
-9.85309 LIN
+3.08629 LIN
e-
Event: 11
-Number of tracker hits in this event = 60
- 11 97.0587 275 8 1 -125.141 -64.7916 35.55
- 11 106.97 576 8 0 -125.141 -64.7917 34.15
- 11 100.497 275 7 1 -125.147 -64.7957 5.55
- 11 92.0295 576 7 0 -125.148 -64.7948 4.15
- 11 135.333 274 6 1 -125.168 -64.7728 -24.45
- 11 112.183 576 6 0 -125.167 -64.7721 -25.85
- 11 393.931 274 5 1 -125.163 -64.7584 -54.45
- 11 345.301 576 5 0 -125.163 -64.762 -55.85
- 11 421.701 274 4 1 -125.162 -64.8139 -84.45
- 11 464.338 576 4 0 -125.149 -64.8183 -85.85
- 11 697.569 276 3 1 -124.891 -64.9179 -114.45
- 11 291.222 575 3 0 -124.881 -64.9289 -115.85
- 11 102.943 277 2 1 -124.686 -65.1445 -144.45
- 11 118.462 574 2 0 -124.686 -65.1523 -145.85
- 11 152.446 277 1 1 -124.693 -65.2695 -174.45
- 11 359.915 573 1 0 -124.693 -65.2702 -175.85
- 11 283.992 277 0 1 -124.668 -65.3104 -204.45
- 11 121.239 573 0 0 -124.673 -65.314 -205.85
- 11 318.991 274 0 1 -125.297 -65.6427 -204.45
- 11 61.6836 275 0 1 -125.15 -65.6441 -204.677
- 11 233.784 571 0 0 -124.327 -65.6648 -205.85
- 11 26.2129 572 0 0 -124.035 -65.65 -206.171
- 11 330.007 576 3 0 -124.925 -64.7503 -115.85
- 11 258.506 275 2 1 -125.033 -64.1248 -144.45
- 11 217.285 579 2 0 -125.047 -64.0985 -145.85
- 11 110.777 274 1 1 -125.302 -63.5524 -174.45
- 11 117.128 582 1 0 -125.32 -63.532 -175.85
- 11 116.443 272 0 1 -125.712 -63.0994 -204.45
- 11 161.013 584 0 0 -125.72 -63.0764 -205.85
- 11 307.266 271 0 1 -125.79 -63.1225 -204.45
- 11 247.715 583 0 0 -126.218 -63.3748 -205.85
- 11 20.4162 401 0 0 -137.979 -99.8999 -206.25
- 11 228.85 400 0 0 -137.981 -99.95 -206.23
- 11 88.7287 399 0 0 -137.914 -100.15 -206.079
- 11 4.93941 210 0 1 -138.144 -100.486 -204.849
- 11 196.359 209 0 1 -138.15 -100.489 -204.829
- 11 151.761 828 8 1 -14.4234 134.893 35.15
- 11 4.33249 826 8 1 -14.8452 133.06 35.55
- 11 102.589 825 8 1 -14.85 133.061 35.5475
- 11 112.343 574 3 0 -125.317 -65.05 -116.191
- 11 159.132 275 3 1 -125.066 -64.6114 -114.45
- 11 113.202 577 3 0 -125.064 -64.6043 -115.85
- 11 124.874 577 2 0 -125.009 -64.4514 -145.85
- 11 102.947 276 1 1 -124.907 -64.3896 -174.45
- 11 121.77 578 1 0 -124.901 -64.3873 -175.85
- 11 538.121 578 0 0 -124.727 -64.359 -205.85
- 11 385.499 276 0 1 -124.895 -64.147 -204.45
- 11 283.277 579 0 0 -124.849 -64.1381 -205.85
- 11 265.795 274 2 1 -125.285 -64.7458 -144.45
- 11 245.705 576 2 0 -125.298 -64.7244 -145.85
- 11 221.418 273 1 1 -125.488 -64.1557 -174.45
- 11 239.428 579 1 0 -125.501 -64.1213 -175.85
- 11 134.672 701 1 0 -140.583 -39.7471 -176.25
- 11 174.179 272 1 1 -125.569 -64.5083 -174.45
- 11 135.547 577 1 0 -125.588 -64.4971 -175.85
- 11 459.464 270 0 1 -125.961 -64.2768 -204.45
- 11 125.802 545 1 0 -143.421 -70.8619 -176.249
- 11 319.372 181 1 1 -143.757 -70.8153 -174.85
- 11 109.328 547 1 0 -143.782 -70.62 -175.85
- 11 179.984 546 1 0 -143.707 -70.6501 -176.007
-Number of digits in this event = 41
+Number of tracker hits in this event = 42
+ 11 94.5578 1093 10 0 110.19 38.8351 94.0743
+ 11 146.935 1450 9 1 110.21 38.8222 65.55
+ 11 195.264 1093 9 0 110.209 38.823 64.15
+ 11 103.609 1450 8 1 110.173 38.8392 35.55
+ 11 91.412 1093 8 0 110.175 38.84 34.15
+ 11 106.986 1450 7 1 110.21 38.8543 5.55
+ 11 180.157 1094 7 0 110.211 38.854 4.15
+ 11 114.239 1450 6 1 110.221 38.8379 -24.45
+ 11 102.083 1093 6 0 110.221 38.839 -25.85
+ 11 163.774 1450 5 1 110.23 38.8577 -54.45
+ 11 108.454 1094 5 0 110.232 38.8586 -55.85
+ 11 112.054 1450 4 1 110.256 38.8681 -84.45
+ 11 102.94 1094 4 0 110.256 38.8674 -85.85
+ 11 115.721 1450 3 1 110.236 38.8357 -114.45
+ 11 111.174 1093 3 0 110.233 38.8331 -115.85
+ 11 127.235 1450 2 1 110.155 38.7883 -144.45
+ 11 264.829 1093 2 0 110.15 38.7863 -145.85
+ 11 238.793 1449 1 1 110.039 38.7432 -174.45
+ 11 114.07 1093 1 0 110.037 38.7413 -175.85
+ 11 314.833 1449 0 1 109.999 38.7217 -204.45
+ 11 244.046 1093 0 0 109.999 38.7197 -205.85
+ 11 166.925 527 3 0 106.098 -74.45 -115.907
+ 11 0.95361 1391 0 1 98.5487 27.8032 -204.85
+ 11 263.667 1390 0 1 98.3497 27.6188 -204.559
+ 11 228.547 1451 2 1 110.407 38.9361 -144.45
+ 11 99.3858 1094 2 0 110.456 38.9508 -145.85
+ 11 167.642 1457 1 1 111.642 38.9698 -174.45
+ 11 129.293 1094 1 0 111.734 38.9552 -175.85
+ 11 137.779 1468 0 1 113.86 38.883 -204.45
+ 11 111.655 1094 0 0 113.793 38.9697 -205.85
+ 11 60.3465 1458 1 1 111.75 38.9926 -174.768
+ 11 82.5054 1095 1 0 111.548 39.1475 -175.85
+ 11 113.395 1096 1 0 111.566 39.25 -175.958
+ 11 206.581 1097 1 0 111.604 39.45 -175.996
+ 11 323.561 1477 1 1 115.694 36.2053 -174.45
+ 11 49.3056 1074 1 0 115.628 34.9693 -175.85
+ 11 89.8739 1073 1 0 115.624 34.85 -175.982
+ 11 27.1315 1072 1 0 115.611 34.6499 -176.189
+ 11 124.223 1462 0 1 112.586 7.2308 -204.45
+ 11 10.4757 931 0 0 112.481 6.27754 -205.85
+ 11 205.024 930 0 0 112.478 6.25 -205.891
+ 11 19.388 929 0 0 112.464 6.04996 -206.187
+Number of digits in this event = 21
Using G4ParticleGun ...
-5.62914 LIN
+9.22533 LIN
e-
Event: 12
-Number of tracker hits in this event = 33
- 12 128.659 1250 9 1 70.1868 94.5959 65.55
- 12 110.976 1372 9 0 70.1861 94.5969 64.15
- 12 108.843 1250 8 1 70.1728 94.6148 35.55
- 12 119.985 1372 8 0 70.1722 94.6153 34.15
- 12 103.427 1250 7 1 70.1627 94.6234 5.55
- 12 105.902 1372 7 0 70.1613 94.622 4.15
- 12 192.818 1250 6 1 70.1291 94.5992 -24.45
- 12 119.278 1372 6 0 70.1282 94.5974 -25.85
- 12 136.572 1250 5 1 70.109 94.5532 -54.45
- 12 128.854 1372 5 0 70.1051 94.5525 -55.85
- 12 113.86 1249 4 1 70.017 94.5211 -84.45
- 12 172.204 1371 4 0 70.0132 94.5086 -85.85
- 12 119.258 1249 3 1 70.015 94.2416 -114.45
- 12 111.523 1370 3 0 70.0118 94.2291 -115.85
- 12 104.578 1249 2 1 69.9329 93.9729 -144.45
- 12 106.352 1368 2 0 69.9312 93.9493 -145.85
- 12 183.291 1249 1 1 69.8984 93.4388 -174.45
- 12 111.503 1366 1 0 69.8917 93.4146 -175.85
- 12 397.102 1248 0 1 69.7718 92.9254 -204.45
- 12 172.943 1363 0 0 69.7609 92.9061 -205.85
- 12 21.1543 1224 1 0 -33.8554 64.9291 -176.25
- 12 147.551 1369 6 0 70.1 94.1056 -25.85
- 12 2.1568 1371 1 0 69.8974 94.4755 -176.247
- 12 21.0496 1096 1 0 132.404 39.27 -176.25
- 12 197.719 1095 1 0 132.433 39.25 -176.223
- 12 411.806 1371 0 0 69.6979 94.5277 -205.85
- 12 399.401 1249 0 1 69.8537 94.3291 -204.45
- 12 154.987 1370 0 0 69.8597 94.2865 -205.85
- 12 85.1245 1372 0 0 68.9333 94.7002 -205.85
- 12 228.086 1373 0 0 68.7194 94.75 -206.141
- 12 31.7301 1598 0 0 53.5195 139.823 -206.25
- 12 34.3593 1599 0 0 53.5 139.95 -206.235
- 12 93.1314 1374 0 0 68.585 94.95 -206.133
-Number of digits in this event = 16
-Using G4ParticleGun ...
-8.80093 LIN
+Number of tracker hits in this event = 193
+ 12 276.212 974 11 1 14.959 -12.9712 125.55
+ 12 165.888 835 11 0 14.9586 -12.9717 124.15
+ 12 656.443 974 10 1 14.9512 -12.9848 95.55
+ 12 270.338 835 10 0 14.9505 -12.9859 94.15
+ 12 141.199 974 9 1 14.9354 -13.0112 65.55
+ 12 324.482 835 9 0 14.9344 -13.0115 64.15
+ 12 278.108 974 8 1 14.9186 -13.0169 35.55
+ 12 152.423 835 8 0 14.914 -13.0169 34.15
+ 12 104.158 973 7 1 14.8196 -13.0127 5.55
+ 12 121.335 835 7 0 14.8157 -13.0122 4.15
+ 12 207.588 973 6 1 14.7366 -12.9972 -24.45
+ 12 110.357 835 6 0 14.7312 -12.9968 -25.85
+ 12 116.667 972 5 1 14.6201 -12.9816 -54.45
+ 12 207.113 835 5 0 14.615 -12.9823 -55.85
+ 12 160.754 972 4 1 14.5138 -13 -84.45
+ 12 136.851 835 4 0 14.5091 -13.0013 -85.85
+ 12 363.114 971 3 1 14.4168 -13.0217 -114.45
+ 12 101.252 835 3 0 14.4116 -13.0255 -115.85
+ 12 130.66 971 2 1 14.2997 -13.0997 -144.45
+ 12 118.557 834 2 0 14.2938 -13.103 -145.85
+ 12 107.547 970 1 1 14.171 -13.1691 -174.45
+ 12 540.49 834 1 0 14.1669 -13.1727 -175.85
+ 12 137.19 970 0 1 14.0808 -13.2461 -204.45
+ 12 65.5249 834 0 0 14.0738 -13.2498 -205.85
+ 12 426.994 833 0 0 14.0735 -13.25 -205.912
+ 12 31.5312 1289 1 0 -76.6482 77.8767 -176.25
+ 12 83.9636 1288 1 0 -76.6668 77.85 -176.163
+ 12 492.21 514 1 1 -77.1047 77.1773 -174.85
+ 12 153.864 513 1 1 -77.2573 76.6643 -174.45
+ 12 187.009 512 1 1 -77.4501 75.2175 -174.476
+ 12 42.0709 1281 1 0 -77.4827 76.374 -175.85
+ 12 106.705 1282 1 0 -77.4812 76.45 -175.979
+ 12 35.1506 1283 1 0 -77.4992 76.65 -176.158
+ 12 39.7256 1360 1 0 -35.7641 92.2923 -176.25
+ 12 32.2664 1346 1 0 -85.3605 89.4389 -176.25
+ 12 101.606 1347 1 0 -85.4352 89.4502 -176.149
+ 12 14.5536 468 1 1 -86.4225 89.7455 -174.85
+ 12 107.052 467 1 1 -86.45 89.7542 -174.814
+ 12 3.68733 466 1 1 -86.65 89.8384 -174.467
+ 12 105.008 1647 2 0 -83.3995 149.586 -146.25
+ 12 72.6665 1648 2 0 -83.4305 149.75 -146.194
+ 12 19.8385 1649 2 0 -83.4784 149.95 -146.224
+ 12 179.675 754 2 0 158.897 -29.0701 -146.25
+ 12 78.6585 753 2 0 158.972 -29.25 -146.173
+ 12 59.483 872 3 0 -22.5674 -5.55595 -116.25
+ 12 74.6695 681 2 0 81.4416 -43.65 -146.058
+ 12 65.413 652 3 1 -49.45 32.0536 -114.653
+ 12 216.746 323 2 1 -115.352 110.284 -144.45
+ 12 27.2357 324 2 1 -115.35 110.403 -144.467
+ 12 263.28 973 1 1 14.8166 -13.2151 -174.45
+ 12 106.831 974 0 1 14.9026 -13.4363 -204.45
+ 12 107.917 973 0 1 14.7558 -13.2487 -204.45
+ 12 57.6022 541 4 0 -62.8791 -71.65 -86.1363
+ 12 194.149 973 10 1 14.8499 -12.8039 95.2208
+ 12 3.31339 1277 4 0 -1.36646 75.6288 -86.2495
+ 12 82.8406 1278 4 0 -1.36946 75.65 -86.2426
+ 12 185.498 1279 4 0 -1.37136 75.8502 -86.1751
+ 12 72.196 1280 4 0 -1.3913 76.05 -86.0781
+ 12 44.2741 1281 4 0 -1.44825 76.2502 -85.9436
+ 12 37.809 890 4 1 -2.01682 77.9824 -84.85
+ 12 377.785 889 4 1 -2.05 78.0645 -84.7888
+ 12 120.53 1290 4 0 -1.35841 78.0887 -85.85
+ 12 14.5502 1291 4 0 -1.30558 78.2501 -86.1989
+ 12 129.883 1342 4 0 17.8978 88.4857 -86.25
+ 12 213.686 1343 4 0 18.1189 88.65 -86.1239
+ 12 129.313 1479 4 0 -34.8717 116.109 -86.25
+ 12 128.828 974 3 1 14.9528 -13.1685 -114.45
+ 12 117.163 832 3 0 14.7583 -13.5339 -115.85
+ 12 28.8795 937 2 1 7.47794 -19.2364 -144.45
+ 12 113.101 936 2 1 7.45 -19.2874 -144.561
+ 12 39.8807 801 2 0 7.18844 -19.8058 -145.85
+ 12 114.029 800 2 0 7.16719 -19.85 -145.961
+ 12 104.56 762 2 0 -0.5179 -27.5678 -146.25
+ 12 95.9634 898 2 1 -0.422109 -27.517 -144.849
+ 12 170.008 905 3 0 1.92115 1.15421 -116.25
+ 12 181.348 906 3 0 1.9295 1.25006 -116.158
+ 12 143.834 910 3 1 2.12068 2.07728 -114.85
+ 12 67.9812 792 4 0 -21.9771 -21.5671 -86.25
+ 12 316.043 791 4 0 -22.0477 -21.65 -86.1292
+ 12 61.8458 790 4 0 -22.154 -21.8506 -86.0136
+ 12 28.3551 789 4 0 -22.1962 -22.0502 -85.9032
+ 12 219.945 790 4 1 -21.9731 -23.981 -84.85
+ 12 24.9482 791 4 1 -21.8498 -24.4442 -84.4994
+ 12 118.267 838 11 0 15.0411 -12.4422 124.15
+ 12 41.2226 839 11 0 15.024 -12.2499 123.863
+ 12 83.7931 834 10 0 15.0121 -13.2195 94.1499
+ 12 41.496 833 10 0 15.0196 -13.25 93.9474
+ 12 102.669 981 9 1 16.2707 -17.4343 65.55
+ 12 67.197 812 9 0 16.4062 -17.6226 64.15
+ 12 50.6983 811 9 0 16.4253 -17.65 63.9455
+ 12 131.583 994 8 1 18.9088 -21.2277 35.5497
+ 12 118.467 792 8 0 18.9858 -21.5517 34.15
+ 12 62.4164 1003 7 1 20.7343 -28.7768 5.55
+ 12 102.821 1002 7 1 20.65 -28.8655 5.38629
+ 12 90.6163 749 7 0 19.5773 -30.0768 4.15
+ 12 88.3934 748 7 0 19.425 -30.25 3.99275
+ 12 34.3466 747 7 0 19.2235 -30.45 3.81835
+ 12 74.1773 833 6 1 -13.3192 -59.236 -24.45
+ 12 123.224 832 6 1 -13.4502 -59.4167 -24.6278
+ 12 46.742 596 6 0 -14.3683 -60.7423 -25.85
+ 12 87.9436 595 6 0 -14.4443 -60.85 -25.9455
+ 12 169.355 594 6 0 -14.5682 -61.05 -26.0986
+ 12 51.4934 728 5 1 -34.2702 -92.5825 -54.45
+ 12 98.0602 729 5 1 -34.25 -92.4952 -54.6234
+ 12 106.447 439 5 0 -34.1195 -92.297 -55.8507
+ 12 74.4644 440 5 0 -34.1863 -92.15 -56.1588
+ 12 151.301 480 5 0 -70.4508 -83.9895 -56.25
+ 12 0.526889 479 5 0 -70.5642 -84.05 -55.8507
+ 12 376.296 547 5 1 -70.5674 -85.3512 -54.85
+ 12 237.284 1014 6 1 23.0045 -35.8973 -24.45
+ 12 141.595 721 6 0 23.0938 -35.8298 -25.85
+ 12 4.75856 1037 5 1 27.6248 -33.6461 -54.45
+ 12 69.5209 1038 5 1 27.65 -33.653 -54.4581
+ 12 97.2614 1039 5 1 27.85 -33.7023 -54.5197
+ 12 72.2322 1040 5 1 28.0501 -33.7743 -54.5812
+ 12 70.0778 1041 5 1 28.25 -33.862 -54.6341
+ 12 65.2917 1042 5 1 28.45 -33.9514 -54.6831
+ 12 76.3491 1043 5 1 28.65 -34.0476 -54.733
+ 12 61.3422 1044 5 1 28.85 -34.1307 -54.7983
+ 12 55.501 725 5 0 31.7196 -34.984 -55.85
+ 12 225.402 724 5 0 31.9172 -35.05 -55.9221
+ 12 72.8594 723 5 0 32.4604 -35.2501 -56.156
+ 12 256.918 565 5 0 144.153 -66.967 -56.25
+ 12 37.3037 1627 5 1 145.643 -67.0756 -54.8497
+ 12 95.2861 1628 5 1 145.75 -67.0885 -54.7606
+ 12 90.4729 1629 5 1 145.951 -67.1064 -54.5961
+ 12 102.917 640 6 0 160.092 -52.0149 -26.2499
+ 12 19.0546 641 6 0 160.127 -51.85 -25.9051
+ 12 128.902 1699 6 1 160.083 -51.4249 -24.85
+ 12 157.891 718 6 0 22.9334 -36.3954 -25.8503
+ 12 90.7269 717 6 0 22.9268 -36.45 -25.9979
+ 12 186.141 1018 5 1 23.716 -44.7504 -54.45
+ 12 72.2435 686 5 0 23.5643 -42.799 -55.85
+ 12 78.868 687 5 0 23.5434 -42.65 -55.9461
+ 12 94.0683 688 5 0 23.5142 -42.4499 -56.0941
+ 12 36.9566 689 5 0 23.4882 -42.25 -56.2139
+ 12 57.2423 1099 5 0 23.3262 39.9834 -56.2499
+ 12 86.9504 1100 5 0 23.362 40.05 -56.139
+ 12 112.727 1019 5 1 23.8979 40.6486 -54.85
+ 12 61.5857 1020 5 1 24.05 40.7541 -54.5523
+ 12 262.899 1126 6 0 17.361 45.3811 -26.25
+ 12 269.151 1127 6 0 17.319 45.4502 -26.0238
+ 12 172.248 985 6 1 17.1667 46.3818 -24.85
+ 12 197.494 986 6 1 17.25 46.8249 -24.5035
+ 12 28.1808 1130 6 0 18.1212 46.113 -25.85
+ 12 152.041 1129 6 0 18.1842 46.05 -25.9301
+ 12 114.746 1128 6 0 18.3658 45.85 -26.2108
+ 12 32.719 457 6 0 67.4349 -88.6132 -26.25
+ 12 271.042 456 6 0 67.4731 -88.65 -26.2265
+ 12 72.3784 1232 6 1 66.4803 -89.2606 -24.85
+ 12 174.88 1004 7 1 20.9939 -26.3617 5.55
+ 12 109.241 969 9 1 14.0082 -11.0889 65.55
+ 12 182.311 845 9 0 13.9533 -10.9823 64.15
+ 12 120.665 964 8 1 12.9201 -8.63036 35.55
+ 12 134.812 857 8 0 12.882 -8.49907 34.15
+ 12 101.019 959 7 1 11.864 -5.94605 5.55
+ 12 110.661 871 7 0 11.8381 -5.82078 4.15
+ 12 118.815 956 6 1 11.4092 -3.10064 -24.45
+ 12 139.965 885 6 0 11.3613 -3.0109 -25.85
+ 12 103.262 951 5 1 10.3715 -1.59338 -54.45
+ 12 116.374 892 5 0 10.3412 -1.55782 -55.85
+ 12 111.891 945 4 1 9.15595 -1.23145 -84.45
+ 12 157.734 894 4 0 9.11646 -1.13563 -85.85
+ 12 106.87 940 3 1 8.07771 1.01772 -114.45
+ 12 100.058 939 2 1 7.97713 2.69515 -144.45
+ 12 115.322 913 2 0 7.93781 2.74311 -145.85
+ 12 272.025 934 1 1 6.91882 3.98195 -174.45
+ 12 117.09 919 1 0 6.8722 3.93575 -175.85
+ 12 71.4491 929 0 1 6.00661 3.56058 -204.45
+ 12 36.2068 930 0 1 6.05001 3.59148 -204.721
+ 12 172.841 918 0 0 6.3041 3.77514 -205.85
+ 12 21.927 933 1 1 6.85 4.07216 -174.596
+ 12 52.997 917 1 0 7.49935 3.54604 -175.85
+ 12 137.666 916 1 0 7.55951 3.44985 -175.976
+ 12 5.77703 915 1 0 7.7414 3.25 -176.236
+ 12 170.479 958 7 1 11.8499 -5.91707 5.18637
+ 12 178.729 975 10 1 15.0501 -13.0586 95.4579
+ 12 229.547 976 10 1 15.25 -13.1703 95.3569
+ 12 237.289 833 3 0 14.3414 -13.3379 -115.85
+ 12 110.933 970 2 1 14.1516 -13.3232 -144.45
+ 12 188.616 833 2 0 14.1361 -13.3409 -145.85
+ 12 130.681 967 1 1 13.5744 -13.7007 -174.45
+ 12 165.853 831 1 0 13.529 -13.6948 -175.85
+ 12 31.3852 964 0 1 12.8529 -13.3005 -204.45
+ 12 77.1108 963 0 1 12.85 -13.2965 -204.566
+ 12 199.672 593 2 0 67.2088 -61.3489 -146.25
+ 12 76.6523 594 2 0 67.166 -61.25 -146.032
+ 12 3.05438 968 2 1 13.6511 -13.4916 -144.45
+ 12 111.02 967 2 1 13.65 -13.4912 -144.461
+ 12 111.215 832 2 0 13.5142 -13.4655 -145.85
+ 12 108.601 953 1 1 10.7603 -13.0164 -174.45
+ 12 113.142 934 0 1 7.00802 -13.6103 -204.45
+ 12 122.408 832 0 0 6.82216 -13.6165 -205.85
+Number of digits in this event = 76
+Using G4ParticleGun ...
+7.22439 LIN
e-
Event: 13
-Number of tracker hits in this event = 53
- 13 109.951 1281 10 1 76.2781 -56.5218 95.55
- 13 113.47 617 10 0 76.279 -56.5218 94.15
- 13 105.616 1281 9 1 76.2964 -56.5197 65.55
- 13 220.167 617 9 0 76.2974 -56.5193 64.15
- 13 308.627 1281 8 1 76.3204 -56.5081 35.55
- 13 99.2246 617 8 0 76.3218 -56.5075 34.15
- 13 131.169 1281 7 1 76.3411 -56.4951 5.55
- 13 140.713 617 7 0 76.3422 -56.4957 4.15
- 13 121.508 1281 6 1 76.3707 -56.5068 -24.45
- 13 133.244 617 6 0 76.3721 -56.5063 -25.85
- 13 133.461 1281 5 1 76.4017 -56.4947 -54.45
- 13 144.469 617 5 0 76.4028 -56.4926 -55.85
- 13 239.445 1281 4 1 76.4207 -56.4525 -84.45
- 13 143.773 617 4 0 76.4228 -56.4526 -85.85
- 13 824.962 1282 3 1 76.4665 -56.4536 -114.45
- 13 122.922 617 3 0 76.468 -56.4531 -115.85
- 13 223.153 1282 2 1 76.5041 -56.4434 -144.45
- 13 273.169 618 2 0 76.5067 -56.4435 -145.85
- 13 163.037 1282 1 1 76.5567 -56.4475 -174.45
- 13 265.861 618 1 0 76.5583 -56.4481 -175.85
- 13 116.914 1282 0 1 76.5887 -56.4612 -204.45
- 13 119.369 617 0 0 76.5895 -56.4616 -205.85
- 13 119.171 1283 0 1 76.6501 -56.4418 -204.473
- 13 17.6663 1284 0 1 76.85 -56.4131 -204.793
- 13 181.968 618 0 0 77.4586 -56.3381 -205.85
- 13 141.658 619 3 0 76.5439 -56.1504 -115.85
- 13 111.399 1295 2 1 79.1888 -50.7687 -144.45
- 13 217.861 648 2 0 78.9987 -50.3596 -145.85
- 13 42.4328 649 2 0 78.9527 -50.2499 -146.219
- 13 102.925 1277 1 1 75.5038 -41.8983 -174.45
- 13 32.6571 1276 1 1 75.45 -41.7847 -174.731
- 13 131.24 693 1 0 75.2288 -41.3592 -175.85
- 13 34.8905 694 1 0 75.1739 -41.25 -176.134
- 13 157.895 1250 0 1 70.2294 -31.2293 -204.45
- 13 186.059 747 0 0 69.602 -30.6395 -205.85
- 13 155.462 647 2 0 78.9746 -50.4501 -145.986
- 13 113.595 618 3 0 76.4606 -56.4447 -115.85
- 13 141.594 1301 1 1 80.3213 -56.0365 -174.45
- 13 130.713 619 1 0 80.4864 -56.1126 -175.85
- 13 123.41 1320 0 1 84.0713 -57.7758 -204.45
- 13 115.341 610 0 0 84.171 -57.9143 -205.85
- 13 289.115 1280 4 1 76.2499 -56.1973 -84.7473
- 13 278.217 1279 4 1 76.05 -55.6082 -84.503
- 13 114.933 1278 0 1 75.7281 -54.4503 -204.45
- 13 107.979 628 0 0 75.5008 -54.3857 -205.85
- 13 139.889 617 1 0 76.5686 -56.4824 -175.85
- 13 137.515 1286 0 1 77.2917 -55.9658 -204.45
- 13 189.288 619 0 0 77.1689 -56.2007 -205.85
- 13 66.5872 1280 8 1 76.2499 -56.5346 35.5108
- 13 108.037 1279 8 1 76.05 -56.6133 35.3345
- 13 38.0681 1278 8 1 75.85 -56.7059 35.2016
- 13 33.3417 613 8 0 74.1209 -57.4158 34.15
- 13 518.777 612 8 0 74.0307 -57.45 34.096
-Number of digits in this event = 34
+Number of tracker hits in this event = 111
+ 13 104.781 1027 11 1 25.5969 42.9511 125.55
+ 13 106.467 1114 11 0 25.5968 42.9504 124.15
+ 13 121.326 1027 10 1 25.6033 42.9273 95.55
+ 13 115.878 1114 10 0 25.6039 42.9265 94.15
+ 13 137.631 1027 9 1 25.6149 42.913 65.55
+ 13 114.391 1114 9 0 25.6166 42.9119 64.15
+ 13 129.1 1028 8 1 25.653 42.8897 35.55
+ 13 126.556 1114 8 0 25.6586 42.8894 34.15
+ 13 107.681 1028 7 1 25.7789 42.8792 5.55
+ 13 128.141 1114 7 0 25.7869 42.8812 4.15
+ 13 135.04 1029 6 1 25.9454 42.9271 -24.45
+ 13 111.409 1114 6 0 25.9558 42.93 -25.85
+ 13 119.741 1030 5 1 26.2117 43.051 -54.45
+ 13 220.584 1114 5 0 26.2297 43.0495 -55.85
+ 13 225.994 1032 4 1 26.6178 43.0008 -84.45
+ 13 265.91 1114 4 0 26.6085 43.0203 -85.85
+ 13 129.467 1031 3 1 26.4192 43.4268 -114.45
+ 13 104.051 1116 3 0 26.3986 43.4411 -115.85
+ 13 109.008 1029 2 1 25.956 43.8297 -144.45
+ 13 139.234 1119 2 0 25.9473 43.8672 -145.85
+ 13 48.8022 1028 1 1 25.847 44.6335 -174.45
+ 13 50.9503 1029 1 1 25.85 44.6379 -174.636
+ 13 224.007 1123 1 0 25.8626 44.6664 -175.85
+ 13 133.081 1030 0 1 26.1165 45.32 -204.45
+ 13 231.994 1126 0 0 26.1565 45.365 -205.85
+ 13 5.80503 1160 2 0 110.8 52.0654 -146.25
+ 13 259.988 1122 1 0 25.7041 44.65 -176.212
+ 13 147.793 1031 4 1 26.4497 43.0362 -84.5508
+ 13 57.3454 1030 4 1 26.25 43.0005 -84.7312
+ 13 114.89 1115 4 0 24.1295 43.05 -85.9211
+ 13 4.88583 1116 4 0 24.0462 43.2501 -85.8562
+ 13 28.9311 1024 4 1 25.0259 45.8314 -84.85
+ 13 103.999 1025 4 1 25.05 45.8806 -84.8476
+ 13 102.45 1131 4 0 25.34 46.4246 -85.85
+ 13 59.483 866 5 1 -6.73228 -91.1692 -54.45
+ 13 62.8865 633 0 1 -53.4317 121.938 -204.45
+ 13 4.15856 632 0 1 -53.45 121.919 -204.457
+ 13 443.167 1027 8 1 25.5163 42.9021 35.55
+ 13 155.112 1026 8 1 25.4498 43.3878 35.3625
+ 13 73.9154 1123 8 0 24.9768 44.6701 34.1494
+ 13 63.1413 1124 8 0 24.9042 44.85 33.9785
+ 13 30.5563 1125 8 0 24.8225 45.05 33.8364
+ 13 62.6034 1282 8 0 22.0752 76.59 33.75
+ 13 73.8045 1283 8 0 22.0949 76.65 33.8926
+ 13 72.3311 1009 8 1 21.9932 77.6292 35.15
+ 13 62.134 1008 8 1 21.85 77.7893 35.3611
+ 13 102.865 1111 8 0 25.1053 42.4224 34.1497
+ 13 61.5999 1234 8 0 14.4571 66.9083 33.75
+ 13 61.0182 1235 8 0 14.437 67.0503 33.8556
+ 13 52.6215 1236 8 0 14.4311 67.25 34.0063
+ 13 154.595 970 8 1 14.2289 67.9997 35.15
+ 13 59.483 1318 2 1 83.7358 29.0737 -144.45
+ 13 168.575 1027 6 1 25.6404 42.831 -24.5437
+ 13 510.792 1113 6 0 25.6276 42.8341 -25.85
+ 13 200.304 1024 5 1 24.9061 43.8489 -54.45
+ 13 67.9282 1025 5 1 25.05 43.6492 -54.7129
+ 13 96.2105 1113 5 0 25.4573 42.8229 -55.85
+ 13 29.7156 1112 5 0 25.541 42.65 -56.1311
+ 13 0.432682 1065 4 1 33.0512 29.129 -84.45
+ 13 71.1143 1064 4 1 33.0497 29.1288 -84.4517
+ 13 70.0295 1063 4 1 32.8495 29.1004 -84.6686
+ 13 261.734 1044 4 0 31.753 28.9613 -85.8501
+ 13 67.2595 1233 4 0 -42.5164 66.678 -86.2498
+ 13 110.848 1234 4 0 -42.5766 66.85 -86.1554
+ 13 53.5818 1235 4 0 -42.6189 67.0503 -86.0803
+ 13 72.2163 1236 4 0 -42.6769 67.2503 -86.0161
+ 13 50.8735 1237 4 0 -42.7473 67.45 -85.9419
+ 13 6.40344 1238 4 0 -42.8045 67.65 -85.859
+ 13 193.521 682 4 1 -43.5203 70.9734 -84.8499
+ 13 112.015 681 4 1 -43.65 71.2854 -84.7886
+ 13 79.4373 680 4 1 -43.85 71.5562 -84.7415
+ 13 64.9064 679 4 1 -44.05 71.7104 -84.6964
+ 13 69.6735 678 4 1 -44.2501 71.8528 -84.6441
+ 13 57.5865 677 4 1 -44.45 72.0049 -84.6763
+ 13 63.692 676 4 1 -44.6501 72.1269 -84.698
+ 13 61.0583 675 4 1 -44.85 72.2663 -84.6632
+ 13 125.46 674 4 1 -45.0506 72.4815 -84.5622
+ 13 134.902 1209 5 0 -19.942 62.0029 -56.2493
+ 13 21.5788 1208 5 0 -19.6416 61.8499 -55.9222
+ 13 326.898 804 5 1 -19.2026 60.9209 -54.85
+ 13 36.1967 803 5 1 -19.2968 60.3926 -54.45
+ 13 62.6536 802 5 1 -19.45 60.3666 -54.4774
+ 13 68.2079 801 5 1 -19.65 60.3217 -54.5225
+ 13 51.9889 800 5 1 -19.8501 60.3427 -54.5421
+ 13 44.4126 799 5 1 -20.05 60.2923 -54.5587
+ 13 54.9106 798 5 1 -20.25 60.3418 -54.6024
+ 13 163.368 797 5 1 -20.4501 60.4514 -54.7021
+ 13 179.612 796 5 1 -20.6501 60.636 -54.7698
+ 13 291.97 795 5 1 -20.85 60.953 -54.7918
+ 13 1.50257 1213 5 0 -20.191 62.847 -55.85
+ 13 223.252 1214 5 0 -20.189 62.85 -55.8535
+ 13 101.041 848 4 1 -10.25 49.5046 -84.5199
+ 13 59.706 1131 6 0 22.068 46.2985 -26.25
+ 13 114.801 1132 6 0 21.9955 46.45 -26.1176
+ 13 339.216 1007 6 1 21.6114 47.0915 -24.85
+ 13 24.2411 1008 6 1 21.65 47.2997 -24.5264
+ 13 119.546 1028 5 1 25.7392 42.801 -54.45
+ 13 210.474 1033 4 1 26.7795 44.9669 -84.45
+ 13 26.498 1125 4 0 26.8722 45.2305 -85.85
+ 13 109.169 1126 4 0 26.8787 45.25 -85.9468
+ 13 114.942 1043 3 1 28.7746 51.4502 -114.45
+ 13 117.588 1158 3 0 28.7888 51.7217 -115.85
+ 13 134.99 1044 2 1 29.033 56.7375 -144.45
+ 13 167.606 1184 2 0 28.8969 56.8636 -145.85
+ 13 82.3814 1031 1 1 26.2971 59.5531 -174.45
+ 13 20.776 1030 1 1 26.25 59.5463 -174.781
+ 13 155.79 1197 1 0 26.0924 59.5239 -175.85
+ 13 182.719 1005 0 1 21.1561 59.7649 -204.45
+ 13 122.308 1199 0 0 20.8639 59.9885 -205.85
+ 13 2.33295 1200 0 0 20.7883 60.05 -206.237
+ 13 54.3753 1004 0 1 21.05 59.8342 -204.806
+Number of digits in this event = 41
Using G4ParticleGun ...
-9.58264 LIN
+2.66481 LIN
e-
Event: 14
-Number of tracker hits in this event = 77
- 14 111.192 1102 11 1 40.6323 -2.36672 125.55
- 14 105.943 888 11 0 40.6322 -2.36722 124.15
- 14 106.725 1102 10 1 40.6281 -2.3756 95.55
- 14 129.452 888 10 0 40.6287 -2.37631 94.15
- 14 123.534 1102 9 1 40.6397 -2.39148 65.55
- 14 112.032 888 9 0 40.641 -2.39193 64.15
- 14 111.528 1103 8 1 40.6676 -2.40185 35.55
- 14 111.454 888 8 0 40.6688 -2.40177 34.15
- 14 113.989 1103 7 1 40.6898 -2.39668 5.55
- 14 122.42 888 7 0 40.6911 -2.39584 4.15
- 14 121.956 1103 6 1 40.7183 -2.37888 -24.45
- 14 191.784 888 6 0 40.7218 -2.37947 -25.85
- 14 117.388 1103 5 1 40.7926 -2.39102 -54.45
- 14 112.456 888 5 0 40.7961 -2.39201 -55.85
- 14 321.22 1104 4 1 40.8635 -2.41161 -84.45
- 14 193.615 888 4 0 40.8669 -2.41351 -85.85
- 14 105.024 1104 3 1 40.9349 -2.45548 -114.45
- 14 245.586 887 3 0 40.9376 -2.45824 -115.85
- 14 397.374 1104 2 1 40.9936 -2.51369 -144.45
- 14 412.82 887 2 0 40.9965 -2.51829 -145.85
- 14 359.697 1105 1 1 41.0583 -2.61047 -174.45
- 14 207.521 887 1 0 41.0613 -2.6146 -175.85
- 14 241.266 1105 0 1 41.1215 -2.70031 -204.45
- 14 241.486 886 0 0 41.123 -2.70494 -205.85
- 14 19.5855 824 3 1 -15.0675 -79.2329 -114.85
- 14 58.116 973 1 1 14.8196 89.751 -174.45
- 14 2.37774 910 2 1 2.21235 114.568 -144.85
- 14 9.8058 909 2 1 2.05 119.347 -144.558
- 14 46.5853 911 2 1 2.29352 119.336 -144.45
- 14 170.096 633 0 0 37.6495 -53.4086 -206.25
- 14 40.4574 423 4 0 -35.5205 -95.35 -86.2105
- 14 19.4557 906 2 1 1.42167 35.4225 -144.85
- 14 131.993 419 2 0 81.2299 -96.3367 -146.25
- 14 3.39217 418 2 0 81.2121 -96.35 -146.191
- 14 283.1 888 1 0 41.2455 -2.4259 -175.85
- 14 122.528 1109 0 1 42.0258 -2.41802 -204.45
- 14 250.854 888 0 0 42.0695 -2.41132 -205.85
- 14 61.3384 1132 1 0 -70.8348 46.45 -175.959
- 14 251.736 886 2 0 41.0184 -2.65 -146.138
- 14 6.9048 888 3 0 40.9638 -2.45 -116.236
- 14 22.7211 1103 4 1 40.6585 -2.6432 -84.4501
- 14 151.148 1102 4 1 40.65 -2.64316 -84.4509
- 14 106.183 1101 4 1 40.4499 -2.648 -84.4942
- 14 75.1389 1100 4 1 40.25 -2.6368 -84.5191
- 14 46.3082 1099 4 1 40.05 -2.64177 -84.5155
- 14 112.112 1098 4 1 39.85 -2.67131 -84.5126
- 14 56.4662 1097 4 1 39.6492 -2.70879 -84.5444
- 14 63.2545 1096 4 1 39.45 -2.75535 -84.6043
- 14 102.968 1095 4 1 39.2495 -2.83124 -84.6591
- 14 44.8122 1094 4 1 39.05 -2.88789 -84.6926
- 14 61.3661 1093 4 1 38.85 -2.93996 -84.7232
- 14 46.2668 1092 4 1 38.6496 -2.97542 -84.7497
- 14 64.5604 1091 4 1 38.45 -3.00872 -84.7499
- 14 52.7405 1090 4 1 38.25 -3.06702 -84.75
- 14 43.7751 1089 4 1 38.0498 -3.11077 -84.723
- 14 57.4637 1088 4 1 37.8492 -3.16976 -84.7387
- 14 49.1936 1087 4 1 37.6497 -3.22565 -84.7826
- 14 24.2392 1086 4 1 37.4499 -3.25363 -84.8223
- 14 292.004 884 4 0 34.2168 -3.16744 -85.8501
- 14 4.81456 885 4 0 33.4461 -3.05 -86.2383
- 14 78.9303 1099 4 0 -28.9745 39.9982 -86.25
- 14 39.34 1100 4 0 -29.0957 40.05 -86.0215
- 14 73.9098 755 4 1 -29.033 40.112 -84.85
- 14 69.5537 754 4 1 -29.05 40.0938 -84.625
- 14 57.2952 880 4 0 39.3599 -3.93159 -85.85
- 14 107.036 879 4 0 39.244 -4.05033 -85.9596
- 14 130.053 878 4 0 39.0337 -4.25 -86.1026
- 14 74.5701 834 3 1 -13.1611 -36.9097 -114.45
- 14 137.897 833 3 1 -13.25 -37.0958 -114.538
- 14 103.465 832 3 1 -13.4501 -37.5457 -114.711
- 14 25.1151 831 3 1 -13.65 -37.8945 -114.822
- 14 60.1137 696 3 0 -15.0431 -40.6835 -115.85
- 14 66.6157 695 3 0 -15.1419 -40.8502 -115.921
- 14 149.829 694 3 0 -15.2758 -41.05 -116.011
- 14 71.2528 693 3 0 -15.4677 -41.25 -116.133
- 14 68.4404 502 3 0 -46.5327 -79.6398 -116.25
- 14 276.653 501 3 0 -46.5345 -79.65 -116.002
-Number of digits in this event = 29
+Number of tracker hits in this event = 71
+ 14 114.136 1308 10 1 81.694 64.5644 95.55
+ 14 128.277 1222 10 0 81.6938 64.5634 94.15
+ 14 263.462 1308 9 1 81.6846 64.5544 65.55
+ 14 92.5461 1222 9 0 81.6853 64.5566 64.15
+ 14 123.914 1308 8 1 81.7141 64.6053 35.55
+ 14 114.65 1222 8 0 81.713 64.6085 34.15
+ 14 108.309 1308 7 1 81.6899 64.6828 5.55
+ 14 151.532 1223 7 0 81.6896 64.6878 4.15
+ 14 172.474 1308 6 1 81.6636 64.7826 -24.45
+ 14 137.015 1223 6 0 81.6726 64.7921 -25.85
+ 14 103.133 1309 5 1 81.8704 65.0211 -54.45
+ 14 114.529 1224 5 0 81.8895 65.0312 -55.85
+ 14 214.065 1311 4 1 82.2629 65.2597 -84.45
+ 14 99.505 1226 4 0 82.2711 65.2805 -85.85
+ 14 110.235 1311 3 1 82.4166 65.7027 -114.45
+ 14 107.552 1228 3 0 82.4218 65.7287 -115.85
+ 14 123.909 1312 2 1 82.4927 66.2761 -144.45
+ 14 152.658 1230 2 0 82.4093 66.1998 -145.85
+ 14 170.129 1303 1 1 80.8356 63.9256 -174.45
+ 14 109.041 1219 1 0 80.3559 63.9941 -175.852
+ 14 15.5638 1252 0 1 70.4657 64.1013 -204.45
+ 14 132.557 1251 0 1 70.45 64.1109 -204.499
+ 14 65.7584 1221 0 0 70.0315 64.3996 -205.85
+ 14 93.6584 1222 0 0 69.9642 64.4501 -206.079
+ 14 85.646 648 8 0 -89.5659 -50.25 33.8292
+ 14 153.03 413 6 0 86.0659 -97.5376 -26.25
+ 14 35.335 409 6 0 85.2672 -98.15 -25.9534
+ 14 13.3265 949 5 0 52.5472 10.05 -56.1052
+ 14 36.2014 1307 6 1 81.65 64.775 -24.7113
+ 14 188.324 1220 6 0 80.9846 64.2201 -25.85
+ 14 94.2314 1219 6 0 80.7878 64.05 -26.1617
+ 14 56.1568 1218 6 0 80.7347 63.8499 -26.2328
+ 14 57.3187 1217 6 0 80.735 63.65 -26.2068
+ 14 69.26 1216 6 0 80.767 63.45 -26.2181
+ 14 152.396 1215 6 0 80.82 63.2499 -26.1964
+ 14 228.914 1214 6 0 80.7971 63.0498 -26.1168
+ 14 27.8359 1301 6 1 80.3395 64.4996 -24.85
+ 14 104.83 1227 6 0 80.3564 65.6074 -25.85
+ 14 146.352 1228 6 0 80.4205 65.6501 -25.905
+ 14 238.383 1307 3 1 81.6231 65.1225 -114.45
+ 14 256.718 1225 3 0 81.6503 65.1544 -115.85
+ 14 109.842 1310 2 1 82.1273 65.8232 -144.45
+ 14 113.899 1228 2 0 82.174 65.8266 -145.85
+ 14 122.044 1315 1 1 83.1297 65.8896 -174.45
+ 14 166.476 1229 1 0 83.161 65.9024 -175.85
+ 14 106.042 1318 0 1 83.803 66.0775 -204.45
+ 14 143.159 1230 0 0 83.8036 66.1156 -205.85
+ 14 125.815 1307 2 1 81.5911 65.242 -144.45
+ 14 118.898 1225 2 0 81.586 65.2474 -145.85
+ 14 239.782 1307 1 1 81.4916 65.3489 -174.45
+ 14 202.139 1226 1 0 81.485 65.358 -175.85
+ 14 146.336 1306 0 1 81.3619 65.5649 -204.45
+ 14 140.335 1227 0 0 81.3432 65.5798 -205.85
+ 14 58.2477 1239 1 0 61.3775 67.8778 -176.25
+ 14 23.818 1153 6 0 49.1627 50.65 -26.2111
+ 14 1.43579 1307 9 1 81.65 64.7108 65.1528
+ 14 143.409 1227 9 0 81.3844 65.4851 64.1494
+ 14 35.2289 1226 9 0 81.192 65.4499 63.8051
+ 14 19.9183 694 9 0 10.0086 -41.2194 63.75
+ 14 337.39 693 9 0 9.97039 -41.25 63.7976
+ 14 294.949 1306 1 1 81.3606 64.8793 -174.45
+ 14 304.107 1224 1 0 81.3463 64.8855 -175.85
+ 14 134.117 1304 0 1 80.9638 64.9362 -204.45
+ 14 295.039 1224 0 0 80.9467 64.8956 -205.85
+ 14 129.16 176 3 0 132.306 -144.94 -116.25
+ 14 191.345 1305 0 1 81.2179 64.8905 -204.45
+ 14 59.483 1210 3 0 16.8202 62.05 -116.136
+ 14 12.4707 903 3 0 11.364 0.678765 -116.25
+ 14 86.6687 902 3 0 11.3783 0.649742 -116.233
+ 14 131.029 901 3 0 11.432 0.449974 -116.221
+ 14 55.2237 1297 1 0 127.609 79.5569 -176.25
+Number of digits in this event = 38
Using G4ParticleGun ...
-1.78268 LIN
+3.91253 LIN
e-
Event: 15
-Number of tracker hits in this event = 43
- 15 128.694 1242 11 1 68.5677 -30.9859 125.55
- 15 113.141 745 11 0 68.57 -30.9832 124.15
- 15 143.67 1242 10 1 68.6346 -30.926 95.55
- 15 135.229 745 10 0 68.6368 -30.9219 94.15
- 15 122.37 1243 9 1 68.6815 -30.8403 65.55
- 15 109.792 746 9 0 68.6833 -30.8348 64.15
- 15 119.846 1243 8 1 68.7115 -30.7006 35.55
- 15 137.668 746 8 0 68.7176 -30.6938 34.15
- 15 119.181 1243 7 1 68.8364 -30.5651 5.55
- 15 134.275 747 7 0 68.8444 -30.5579 4.15
- 15 124.277 1244 6 1 69.017 -30.3752 -24.45
- 15 170.705 748 6 0 69.0252 -30.3694 -25.85
- 15 110.651 1245 5 1 69.1911 -30.2549 -54.45
- 15 175.215 748 5 0 69.1946 -30.2512 -55.85
- 15 0.200282 749 5 0 69.1955 -30.25 -56.2489
- 15 115.949 1246 4 1 69.3139 -30.1991 -84.45
- 15 103.919 749 4 0 69.3165 -30.1953 -85.85
- 15 490.806 1246 3 1 69.3913 -30.1078 -114.45
- 15 105.064 749 3 0 69.3918 -30.108 -115.85
- 15 179.709 1246 2 1 69.4406 -30.0698 -144.45
- 15 238.502 749 2 0 69.4472 -30.0771 -145.85
- 15 180.806 1247 1 1 69.556 -30.2145 -174.45
- 15 108.93 749 1 0 69.5496 -30.2246 -175.85
- 15 49.309 1247 0 1 69.4563 -30.3575 -204.45
- 15 50.2035 1246 0 1 69.45 -30.3548 -204.67
- 15 109.427 748 0 0 69.4113 -30.3443 -205.85
- 15 192.371 750 3 0 69.3856 -29.8841 -115.85
- 15 67.3608 1245 2 1 69.2463 -30.1475 -144.45
- 15 64.8954 1246 1 1 69.4451 -29.5023 -174.45
- 15 87.7978 752 1 0 69.48 -29.4592 -175.85
- 15 40.8262 753 1 0 69.4873 -29.45 -176.142
- 15 246.671 1251 0 1 70.3835 -28.4862 -204.45
- 15 108.887 758 0 0 70.3714 -28.3787 -205.85
- 15 122.095 751 3 0 69.3977 -29.8375 -115.85
- 15 179.996 1236 2 1 67.4044 -29.7351 -144.45
- 15 118.602 753 2 0 67.4052 -29.3658 -145.851
- 15 229.069 1237 1 1 67.4782 -22.1885 -174.45
- 15 107.26 789 1 0 67.4672 -22.2024 -175.85
- 15 22.6896 1240 0 1 68.2071 -23.9977 -204.45
- 15 130.251 1241 0 1 68.2501 -24.0313 -204.502
- 15 65.0078 1242 0 1 68.45 -24.2007 -204.724
- 15 50.4141 775 0 0 69.5249 -24.9501 -205.85
- 15 109.062 774 0 0 69.6693 -25.05 -205.991
-Number of digits in this event = 21
+Number of tracker hits in this event = 22
+ 15 161.971 158 7 1 -148.518 13.1356 5.55
+ 15 124.003 965 7 0 -148.519 13.137 4.15
+ 15 120.144 158 6 1 -148.528 13.1611 -24.45
+ 15 121.599 965 6 0 -148.529 13.161 -25.85
+ 15 134.733 157 5 1 -148.555 13.1618 -54.45
+ 15 124.558 965 5 0 -148.558 13.1601 -55.85
+ 15 285.983 157 4 1 -148.617 13.1288 -84.45
+ 15 255.225 965 4 0 -148.621 13.1265 -85.85
+ 15 104.08 157 3 1 -148.708 13.0825 -114.45
+ 15 137.894 965 3 0 -148.712 13.0784 -115.85
+ 15 151.284 156 2 1 -148.802 13.004 -144.45
+ 15 123.628 964 2 0 -148.805 13.0009 -145.85
+ 15 118.938 156 1 1 -148.858 12.9585 -174.45
+ 15 152.111 964 1 0 -148.861 12.9492 -175.85
+ 15 105.229 156 0 1 -148.877 12.7451 -204.45
+ 15 102.822 963 0 0 -148.877 12.7417 -205.85
+ 15 1.12015 1431 7 0 -157.668 106.55 4.07923
+ 15 117.801 406 1 1 -98.95 9.54196 -174.78
+ 15 160.826 142 3 1 -151.555 12.2934 -114.45
+ 15 144.756 959 3 0 -151.744 11.9796 -115.85
+ 15 164.653 962 1 0 -171.379 12.5151 -175.85
+ 15 45.9642 1317 10 0 -118.015 83.5209 94.15
+Number of digits in this event = 18
Using G4ParticleGun ...
-6.95026 LIN
+7.96236 LIN
e-
Event: 16
-Number of tracker hits in this event = 119
- 16 160.061 512 11 1 -77.4687 -23.0954 125.55
- 16 121.057 784 11 0 -77.4671 -23.0965 124.15
- 16 110.082 513 10 1 -77.4389 -23.1142 95.55
- 16 120.54 784 10 0 -77.4371 -23.1169 94.15
- 16 104.272 513 9 1 -77.4045 -23.175 65.55
- 16 105.387 784 9 0 -77.402 -23.1768 64.15
- 16 136.845 513 8 1 -77.351 -23.2099 35.55
- 16 145.176 784 8 0 -77.3478 -23.2112 34.15
- 16 228.376 513 7 1 -77.2851 -23.2384 5.55
- 16 106.104 784 7 0 -77.2814 -23.2395 4.15
- 16 150.873 514 6 1 -77.2075 -23.2631 -24.45
- 16 116.904 783 6 0 -77.2024 -23.265 -25.85
- 16 124.546 514 5 1 -77.105 -23.2956 -54.45
- 16 144.626 783 5 0 -77.1007 -23.2956 -55.85
- 16 291.111 515 4 1 -77.0178 -23.2911 -84.45
- 16 278.94 783 4 0 -77.0139 -23.2901 -85.85
- 16 114.757 515 3 1 -76.9327 -23.2734 -114.45
- 16 327.929 783 3 0 -76.9279 -23.2726 -115.85
- 16 113.767 516 2 1 -76.8303 -23.2571 -144.45
- 16 126.238 783 2 0 -76.825 -23.2588 -145.85
- 16 191.228 516 1 1 -76.7165 -23.2976 -174.45
- 16 123.723 783 1 0 -76.7116 -23.3004 -175.85
- 16 123.561 517 0 1 -76.6131 -23.3519 -204.45
- 16 155.476 783 0 0 -76.6094 -23.3553 -205.85
- 16 47.7626 515 1 1 -76.85 -23.1677 -174.643
- 16 183.794 785 1 0 -77.2155 -23.0199 -175.85
- 16 17.2588 475 0 1 -85.03 -14.851 -204.45
- 16 142.891 474 0 1 -85.05 -14.8822 -204.489
- 16 235.579 473 0 1 -85.2502 -15.2424 -204.772
- 16 263.215 472 0 1 -85.45 -15.9232 -204.783
- 16 31.9728 800 0 0 -86.3759 -19.9299 -205.85
- 16 68.3129 799 0 0 -86.4013 -20.05 -205.888
- 16 57.5553 798 0 0 -86.4566 -20.25 -205.937
- 16 69.7522 797 0 0 -86.5331 -20.45 -205.981
- 16 53.003 796 0 0 -86.6148 -20.65 -206.005
- 16 46.3317 795 0 0 -86.696 -20.8502 -206.032
- 16 129.5 794 0 0 -86.7748 -21.05 -206.046
- 16 222.754 793 0 0 -86.8698 -21.25 -206.123
- 16 160.23 792 0 0 -86.9739 -21.45 -206.218
- 16 21.3009 451 9 0 -72.6134 -89.7558 63.75
- 16 82.9733 514 7 1 -77.25 -23.1698 5.49283
- 16 631.956 513 5 1 -77.2812 -23.2254 -54.45
- 16 454.194 784 5 0 -77.2885 -23.2217 -55.85
- 16 178.851 513 4 1 -77.439 -23.2047 -84.45
- 16 154.284 784 4 0 -77.4684 -23.2115 -85.85
- 16 163.708 509 3 1 -78.0536 -23.3575 -114.45
- 16 229.798 506 2 1 -78.7003 -24.3011 -144.45
- 16 121.994 778 2 0 -78.7323 -24.3427 -145.85
- 16 348.674 503 1 1 -79.4176 -25.1514 -174.45
- 16 448.066 774 1 0 -79.4397 -25.1743 -175.85
- 16 109.119 500 0 1 -79.9041 -25.7744 -204.45
- 16 117.581 771 0 0 -79.9989 -25.7885 -205.85
- 16 31.2389 664 1 0 21.7788 -47.2412 -176.25
- 16 85.5888 663 1 0 21.808 -47.25 -176.228
- 16 121.51 504 1 1 -79.25 -25.2962 -174.458
- 16 67.4612 520 0 1 -75.9018 -22.7188 -204.45
- 16 135.934 519 0 1 -76.05 -22.5835 -204.602
- 16 38.5304 791 0 0 -77.0444 -21.7347 -205.85
- 16 23.4555 502 1 1 -79.45 -25.2553 -174.769
- 16 22.3579 426 0 1 -94.8967 -21.7946 -204.45
- 16 105.959 425 0 1 -94.95 -21.7672 -204.522
- 16 11.0328 424 0 1 -95.15 -21.6724 -204.819
- 16 8.3898 804 2 0 52.5259 -19.158 -146.25
- 16 153.385 858 2 0 47.7867 -8.29859 -146.25
- 16 4.68833 859 2 0 47.715 -8.24994 -146.188
- 16 182.183 517 4 1 -76.5853 -23.3884 -84.45
- 16 114.016 510 3 1 -77.9901 -23.5307 -114.45
- 16 91.486 782 3 0 -78.043 -23.5811 -115.85
- 16 39.9334 505 2 1 -78.85 -24.7608 -144.715
- 16 81.4843 776 2 0 -78.9009 -24.8298 -145.85
- 16 31.5076 775 2 0 -78.9149 -24.85 -146.166
- 16 120.727 499 1 1 -80.0866 -26.5405 -174.451
- 16 97.5682 767 1 0 -80.1125 -26.6037 -175.85
- 16 139.269 499 0 1 -80.2054 -27.8394 -204.45
- 16 113.119 760 0 0 -80.2114 -27.8785 -205.85
- 16 96.5193 439 2 0 -91.7309 -92.2903 -146.25
- 16 47.814 512 5 1 -77.4502 -23.1358 -54.6957
- 16 291.663 786 5 0 -78.0279 -22.8194 -55.85
- 16 307.779 785 5 0 -78.8464 -22.85 -55.9371
- 16 240.069 782 5 0 -77.4969 -23.5841 -55.85
- 16 44.7479 781 5 0 -77.5304 -23.65 -56.1205
- 16 132.302 488 4 1 -82.3825 -30.8962 -84.45
- 16 75.698 742 4 0 -82.5324 -31.5481 -85.85
- 16 49.0663 741 4 0 -82.5642 -31.65 -86.0583
- 16 224.807 464 3 1 -87.1098 -43.923 -114.45
- 16 36.9077 463 3 1 -87.2501 -44.414 -114.77
- 16 12.3058 671 3 0 -87.8678 -45.8194 -115.85
- 16 89.4311 670 3 0 -87.8816 -45.8504 -115.873
- 16 71.3193 669 3 0 -87.9537 -46.05 -116.015
- 16 51.0245 668 3 0 -88.0271 -46.25 -116.156
- 16 25.7334 403 2 1 -99.5419 -86.956 -144.45
- 16 141.33 402 2 1 -99.55 -86.9491 -144.462
- 16 40.2005 401 2 1 -99.75 -86.7824 -144.76
- 16 23.8124 469 2 0 -100.59 -86.0877 -145.85
- 16 148.055 470 2 0 -100.636 -86.05 -145.909
- 16 185.374 209 1 1 -138.243 -83.0191 -174.45
- 16 107.044 486 1 0 -138.549 -82.8389 -175.85
- 16 194.734 211 0 1 -137.945 -82.1065 -204.45
- 16 105.909 212 0 1 -137.75 -82.3246 -204.561
- 16 83.1974 213 0 1 -137.55 -82.5003 -204.699
- 16 20.267 481 0 0 -136.194 -83.8024 -205.85
- 16 133.62 480 0 0 -136.153 -83.85 -205.9
- 16 47.3714 479 0 0 -136.038 -84.05 -206.134
- 16 99.9053 506 4 1 -78.6886 -25.1094 -84.4503
- 16 108.409 773 4 0 -78.6217 -25.3011 -85.85
- 16 139.994 502 3 1 -79.5054 -32.0371 -114.45
- 16 93.9539 736 3 0 -79.8052 -32.7397 -115.85
- 16 84.0237 735 3 0 -79.8415 -32.85 -116.069
- 16 119.47 484 2 1 -83.1547 -51.9873 -144.45
- 16 121.397 640 2 0 -82.9563 -51.95 -145.85
- 16 57.6728 534 1 1 -73.2133 -53.2113 -174.45
- 16 65.4078 533 1 1 -73.25 -53.1283 -174.643
- 16 63.6942 639 1 0 -73.5428 -52.2031 -175.85
- 16 59.4147 640 1 0 -73.6073 -52.0497 -176.058
- 16 48.5873 584 1 0 -55.3955 -63.0997 -176.25
- 16 153.772 583 1 0 -55.3075 -63.2503 -176.155
- 16 62.1573 582 1 0 -55.1634 -63.45 -176.009
- 16 8.6845 581 1 0 -55.0606 -63.65 -175.864
- 16 209.861 627 1 1 -54.5207 -64.8293 -174.85
-Number of digits in this event = 56
-Using G4ParticleGun ...
-4.67809 LIN
+Number of tracker hits in this event = 77
+ 16 119.321 564 10 1 -67.1215 -80.7455 95.55
+ 16 178.469 496 10 0 -67.1216 -80.7465 94.15
+ 16 247.218 564 9 1 -67.1268 -80.7679 65.55
+ 16 143.178 496 9 0 -67.1272 -80.7691 64.15
+ 16 112.095 564 8 1 -67.1345 -80.7891 35.55
+ 16 123.599 496 8 0 -67.1344 -80.79 34.15
+ 16 208.621 564 7 1 -67.1314 -80.8054 5.55
+ 16 247.622 496 7 0 -67.133 -80.8056 4.15
+ 16 111 564 6 1 -67.1668 -80.8098 -24.45
+ 16 117.478 496 6 0 -67.1712 -80.8105 -25.85
+ 16 109.107 563 5 1 -67.2665 -80.8247 -54.45
+ 16 139.23 496 5 0 -67.2707 -80.8271 -55.85
+ 16 147.852 563 4 1 -67.3528 -80.8745 -84.45
+ 16 243.333 495 4 0 -67.3589 -80.8791 -85.85
+ 16 346.282 562 3 1 -67.4826 -80.9745 -114.45
+ 16 229.198 495 3 0 -67.4873 -80.9794 -115.85
+ 16 197.58 562 2 1 -67.5902 -81.08 -144.45
+ 16 146.399 494 2 0 -67.5977 -81.0826 -145.85
+ 16 108.422 561 1 1 -67.7494 -81.126 -174.45
+ 16 174.045 494 1 0 -67.7562 -81.1289 -175.85
+ 16 182.317 560 0 1 -67.9038 -81.1874 -204.45
+ 16 111.523 494 0 0 -67.9116 -81.1923 -205.85
+ 16 16.7122 510 0 0 -85.1325 -77.8595 -206.25
+ 16 152.159 511 0 0 -85.1793 -77.85 -206.219
+ 16 9.71136 475 0 1 -84.8633 -77.1854 -204.85
+ 16 154.549 476 0 1 -84.85 -77.1703 -204.82
+ 16 184.845 477 0 1 -84.65 -77.1554 -204.655
+ 16 33.307 1028 8 0 -113.016 25.65 33.8271
+ 16 309.576 351 8 1 -109.817 28.1914 35.15
+ 16 172.127 352 8 1 -109.749 28.2705 35.2008
+ 16 20.4922 222 2 1 -135.55 4.12191 -144.676
+ 16 172.341 563 7 1 -67.25 -80.7997 5.24491
+ 16 392.089 564 4 1 -67.1477 -80.8212 -84.4506
+ 16 194.665 549 3 1 -70.2371 -82.5739 -114.45
+ 16 7.90082 485 3 0 -69.8936 -83.0454 -115.85
+ 16 117.188 484 3 0 -69.8902 -83.05 -115.864
+ 16 128.351 578 2 1 -64.4368 -93.9421 -144.45
+ 16 149.242 428 2 0 -64.1863 -94.4003 -145.85
+ 16 1.87192 601 1 1 -59.8407 -103.617 -174.45
+ 16 73.6431 600 1 1 -59.8501 -103.619 -174.458
+ 16 74.1706 599 1 1 -60.05 -103.652 -174.633
+ 16 17.5367 598 1 1 -60.2501 -103.689 -174.807
+ 16 76.8436 381 1 0 -61.4765 -103.91 -175.85
+ 16 98.2692 380 1 0 -61.6695 -103.95 -176.016
+ 16 59.1373 422 0 1 -95.5778 -111.672 -204.45
+ 16 164.089 421 0 1 -95.75 -111.664 -204.611
+ 16 2.94849 420 0 1 -95.95 -111.686 -204.846
+ 16 137.01 341 0 0 -96.7379 -111.791 -205.85
+ 16 237.994 496 4 0 -67.1509 -80.8314 -85.85
+ 16 118.193 558 2 1 -68.4014 -80.4492 -144.45
+ 16 110.413 498 2 0 -68.4375 -80.3924 -145.85
+ 16 244.315 554 1 1 -69.1191 -79.2202 -174.45
+ 16 134.348 504 1 0 -69.1231 -79.1811 -175.85
+ 16 122.191 554 0 1 -69.2419 -78.3302 -204.45
+ 16 172.945 508 0 0 -69.2514 -78.3001 -205.85
+ 16 255.711 499 0 0 -54.3806 -80.1456 -206.25
+ 16 7.46305 494 9 0 -66.983 -81.2349 64.15
+ 16 85.4044 493 9 0 -66.9773 -81.25 64.1164
+ 16 110.807 563 9 1 -67.25 -80.7789 65.3256
+ 16 104.118 565 3 1 -66.9591 -81.3805 -114.45
+ 16 99.9438 493 3 0 -66.8736 -81.4128 -115.85
+ 16 316.122 574 2 1 -65.1318 -81.9938 -144.45
+ 16 112.079 489 2 0 -65.0551 -82.0516 -145.85
+ 16 126.106 583 1 1 -63.4167 -83.3322 -174.45
+ 16 45.595 483 1 0 -63.3517 -83.4376 -175.85
+ 16 73.405 482 1 0 -63.3447 -83.45 -176.025
+ 16 126.589 589 0 1 -62.1719 -85.5419 -204.45
+ 16 134.577 471 0 0 -62.0289 -85.6848 -205.85
+ 16 219.706 488 0 0 -50.1346 -82.4046 -206.25
+ 16 239.871 565 4 1 -67.05 -80.8128 -84.4652
+ 16 36.5312 467 4 0 -66.2439 -86.538 -85.85
+ 16 188.614 466 4 0 -66.2021 -86.65 -85.8953
+ 16 401.704 688 4 0 -48.7816 -42.2863 -86.25
+ 16 275.369 687 4 0 -49.2222 -42.45 -86.0951
+ 16 15.2113 1129 4 0 -167.313 45.85 -86.0582
+ 16 34.8765 58 4 1 -168.535 46.32 -84.85
+ 16 272.793 57 4 1 -168.55 46.3282 -84.8349
+Number of digits in this event = 46
+Using G4ParticleGun ...
+3.90107 LIN
e-
Event: 17
-Number of tracker hits in this event = 30
- 17 117.475 1064 11 1 32.9916 -35.97 125.55
- 17 139.543 720 11 0 32.9923 -35.9712 124.15
- 17 213.859 1064 10 1 33.011 -35.9916 95.55
- 17 133.973 720 10 0 33.0112 -35.992 94.15
- 17 123.193 1064 9 1 33.0207 -35.9967 65.55
- 17 102.523 720 9 0 33.0204 -35.9956 64.15
- 17 151.497 1064 8 1 33.0075 -35.9739 35.55
- 17 131.409 720 8 0 33.0061 -35.9714 34.15
- 17 98.8731 1064 7 1 32.9722 -35.9239 5.55
- 17 107.47 720 7 0 32.9699 -35.9234 4.15
- 17 106.765 1064 6 1 32.917 -35.9139 -24.45
- 17 105.968 720 6 0 32.9151 -35.9133 -25.85
- 17 107.675 1064 5 1 32.8877 -35.9097 -54.45
- 17 116.772 720 5 0 32.8919 -35.9148 -55.85
- 17 121.557 1064 4 1 32.9763 -36.018 -84.45
- 17 408.626 720 4 0 32.9825 -36.023 -85.85
- 17 104.176 1065 3 1 33.0962 -36.1136 -114.45
- 17 119.509 719 3 0 33.1057 -36.1176 -115.85
- 17 112.36 1066 2 1 33.2945 -36.2044 -144.45
- 17 117.128 719 2 0 33.3068 -36.21 -145.85
- 17 131.007 1067 1 1 33.5557 -36.3274 -174.45
- 17 104.794 718 1 0 33.5646 -36.3356 -175.85
- 17 319.626 1068 0 1 33.7377 -36.4892 -204.45
- 17 138.416 717 0 0 33.7464 -36.4918 -205.85
- 17 170.594 944 14 1 8.89456 33.8145 215.55
- 17 14.104 943 14 1 8.84999 33.7528 215.514
- 17 398.561 714 0 0 33.5322 -37.052 -205.85
- 17 132.079 721 4 0 33.6591 -35.85 -86.0698
- 17 28.7289 107 4 0 89.3817 -158.723 -86.25
- 17 30.6448 106 4 0 89.4109 -158.75 -86.2362
-Number of digits in this event = 17
+Number of tracker hits in this event = 119
+ 17 105.325 483 10 1 -83.2936 -63.9041 95.55
+ 17 131.356 580 10 0 -83.2914 -63.9037 94.15
+ 17 283.53 484 9 1 -83.2421 -63.8934 65.55
+ 17 168.653 580 9 0 -83.2424 -63.8954 64.15
+ 17 98.5434 483 8 1 -83.2668 -63.966 35.55
+ 17 196.27 580 8 0 -83.2689 -63.9701 34.15
+ 17 159.263 483 7 1 -83.3059 -64.0637 5.55
+ 17 122.036 579 7 0 -83.3056 -64.0674 4.15
+ 17 357.82 483 6 1 -83.2851 -64.1486 -24.45
+ 17 359.787 579 6 0 -83.2863 -64.1509 -25.85
+ 17 122.97 483 5 1 -83.3124 -64.1915 -54.45
+ 17 104.364 579 5 0 -83.3131 -64.1921 -55.85
+ 17 118.698 483 4 1 -83.3176 -64.2047 -84.45
+ 17 224.313 579 4 0 -83.3164 -64.2053 -85.85
+ 17 115.889 483 3 1 -83.2955 -64.2046 -114.45
+ 17 125.136 579 3 0 -83.2948 -64.2043 -115.85
+ 17 369.56 483 2 1 -83.2846 -64.2029 -144.45
+ 17 173.713 579 2 0 -83.2839 -64.2038 -145.85
+ 17 204.447 483 1 1 -83.2718 -64.2183 -174.45
+ 17 284.995 579 1 0 -83.2749 -64.2166 -175.85
+ 17 131.621 483 0 1 -83.3227 -64.1728 -204.45
+ 17 226.482 579 0 0 -83.3243 -64.1702 -205.85
+ 17 35.6948 484 6 1 -83.2497 -64.1602 -24.7487
+ 17 202.792 528 5 1 -74.2856 -65.0918 -54.45
+ 17 114.254 529 5 1 -74.25 -65.1258 -54.5934
+ 17 94.6337 573 5 0 -74.0575 -65.3846 -55.85
+ 17 17.2063 572 5 0 -74.0033 -65.45 -56.181
+ 17 227.914 557 4 1 -68.5823 -70.8805 -84.45
+ 17 80.4457 542 4 0 -68.3103 -71.5006 -85.85
+ 17 25.2425 541 4 0 -68.2526 -71.65 -86.1688
+ 17 122.544 582 3 1 -63.6052 -84.588 -114.45
+ 17 114.686 474 3 0 -63.707 -85.0809 -115.85
+ 17 120.487 565 2 1 -66.8999 -98.0569 -144.45
+ 17 52.7656 566 2 1 -66.8499 -98.1583 -144.706
+ 17 69.8092 407 2 0 -66.6276 -98.6474 -145.85
+ 17 46.7389 406 2 0 -66.5608 -98.75 -146.12
+ 17 65.6838 620 1 1 -56.0198 -109.034 -174.45
+ 17 56.0566 621 1 1 -55.8497 -108.96 -174.487
+ 17 57.6923 622 1 1 -55.65 -108.866 -174.523
+ 17 50.929 623 1 1 -55.4498 -108.788 -174.575
+ 17 46.3614 624 1 1 -55.2498 -108.702 -174.638
+ 17 48.4188 625 1 1 -55.05 -108.642 -174.674
+ 17 46.0628 626 1 1 -54.85 -108.562 -174.7
+ 17 66.8427 627 1 1 -54.6499 -108.467 -174.722
+ 17 61.6969 628 1 1 -54.4497 -108.364 -174.747
+ 17 52.5185 629 1 1 -54.25 -108.258 -174.781
+ 17 60.7566 630 1 1 -54.05 -108.176 -174.799
+ 17 70.4644 631 1 1 -53.85 -108.065 -174.813
+ 17 58.6534 632 1 1 -53.65 -107.968 -174.803
+ 17 59.588 633 1 1 -53.45 -107.881 -174.794
+ 17 76.8004 634 1 1 -53.2498 -107.791 -174.767
+ 17 59.8972 635 1 1 -53.0493 -107.706 -174.71
+ 17 67.6429 636 1 1 -52.85 -107.617 -174.645
+ 17 105.082 637 1 1 -52.65 -107.506 -174.569
+ 17 46.9064 638 1 1 -52.4494 -107.404 -174.497
+ 17 18.9911 640 1 1 -51.914 -107.372 -174.45
+ 17 58.3628 641 1 1 -51.8499 -107.41 -174.479
+ 17 88.9286 642 1 1 -51.65 -107.533 -174.585
+ 17 61.8437 643 1 1 -51.45 -107.705 -174.754
+ 17 27.5273 357 1 0 -50.2392 -108.681 -175.85
+ 17 73.9959 356 1 0 -50.1569 -108.75 -175.922
+ 17 103.837 355 1 0 -49.952 -108.95 -176.077
+ 17 35.8732 354 1 0 -49.6942 -109.15 -176.208
+ 17 51.7918 939 0 1 7.96466 -169.772 -204.45
+ 17 116.218 938 0 1 7.84968 -169.639 -204.519
+ 17 118.492 937 0 1 7.65 -169.393 -204.638
+ 17 370.23 936 0 1 7.45 -169.107 -204.73
+ 17 78.1801 558 4 1 -68.45 -70.9621 -84.7504
+ 17 168.181 559 4 1 -68.25 -70.8416 -84.7979
+ 17 202.105 560 4 1 -68.05 -70.7287 -84.5013
+ 17 211.642 549 4 0 -68.9312 -70.2416 -85.85
+ 17 133.872 548 4 0 -69.061 -70.25 -86.0436
+ 17 37.0228 555 4 1 -68.9045 -69.4324 -84.8497
+ 17 32.4015 547 4 0 -68.4817 -70.4501 -85.857
+ 17 11.4985 578 6 0 -83.3333 -64.25 -26.2069
+ 17 150.885 485 5 1 -82.9075 -66.0702 -54.4507
+ 17 135.798 569 5 0 -82.8542 -66.1179 -55.85
+ 17 144.615 492 4 1 -81.5861 -67.5129 -84.45
+ 17 216.658 562 4 0 -81.5324 -67.5435 -85.85
+ 17 111.321 499 3 1 -80.2169 -68.5769 -114.45
+ 17 117.298 556 3 0 -80.0489 -68.6593 -115.851
+ 17 31.1369 519 2 1 -76.0742 -70.4894 -144.45
+ 17 91.7232 520 2 1 -76.05 -70.5049 -144.557
+ 17 116.801 546 2 0 -75.7861 -70.6554 -145.85
+ 17 149.014 551 1 1 -69.7622 -74.3762 -174.45
+ 17 258.029 528 1 0 -69.6532 -74.3679 -175.851
+ 17 110.311 557 0 1 -68.565 -73.5919 -204.45
+ 17 12.4742 556 0 1 -68.6502 -73.5666 -204.803
+ 17 125.502 532 0 0 -68.9178 -73.5127 -205.85
+ 17 212.293 485 4 1 -83.0133 -63.7782 -84.45
+ 17 299.737 581 4 0 -83.0106 -63.766 -85.85
+ 17 102.119 484 3 1 -83.0723 -63.4567 -114.45
+ 17 130.829 583 3 0 -83.0839 -63.43 -115.85
+ 17 180.788 585 2 0 -83.3142 -62.9507 -145.85
+ 17 124.892 485 1 1 -83.0313 -62.4462 -174.45
+ 17 126.874 588 1 0 -83.0355 -62.4087 -175.85
+ 17 108.779 485 0 1 -83.0269 -61.7141 -204.45
+ 17 122.363 591 0 0 -83.0053 -61.6805 -205.85
+ 17 114.176 789 1 0 -134.521 -22.1734 -176.25
+ 17 109.768 790 1 0 -134.442 -22.05 -176.146
+ 17 12.658 791 1 0 -134.339 -21.85 -176.233
+ 17 124.863 486 3 1 -82.6648 -64.2209 -114.451
+ 17 119.263 578 3 0 -82.6972 -64.2772 -115.85
+ 17 117.659 482 2 1 -83.5142 -65.3422 -144.45
+ 17 138.646 573 2 0 -83.3672 -65.3345 -145.85
+ 17 102.617 496 1 1 -80.6803 -64.298 -174.45
+ 17 20.1639 497 1 1 -80.65 -64.2881 -174.768
+ 17 129.908 514 0 1 -77.2328 -63.2867 -204.45
+ 17 123.217 585 0 0 -77.0844 -63.0478 -205.85
+ 17 136.758 491 1 1 -81.7001 -64.9435 -174.45
+ 17 86.485 492 1 1 -81.65 -64.9543 -174.59
+ 17 102.914 575 1 0 -81.0579 -64.8643 -175.85
+ 17 101.066 576 1 0 -80.9887 -64.85 -176
+ 17 184.974 572 0 1 -65.6442 -61.9578 -204.45
+ 17 15.775 588 0 0 -65.3546 -62.4276 -205.85
+ 17 133.156 587 0 0 -65.3405 -62.45 -205.915
+ 17 126.179 574 1 0 -81.8079 -65.05 -176.03
+ 17 121.125 487 0 1 -82.4579 -66.9957 -204.45
+ 17 117.261 564 0 0 -82.5309 -67.1378 -205.85
+Number of digits in this event = 51
Using G4ParticleGun ...
-3.05524 LIN
+9.85628 LIN
e-
Event: 18
-Number of tracker hits in this event = 110
- 18 111.03 252 9 1 -129.567 1.10261 65.55
- 18 179.371 905 9 0 -129.566 1.10194 64.15
- 18 95.3006 252 8 1 -129.55 1.0783 35.55
- 18 37.524 253 8 1 -129.55 1.07795 35.2893
- 18 156.982 905 8 0 -129.548 1.07702 34.15
- 18 334.781 253 7 1 -129.488 1.05112 5.55
- 18 253.515 904 7 0 -129.483 1.04945 4.15
- 18 207.452 253 6 1 -129.391 1.02026 -24.45
- 18 393.516 904 6 0 -129.384 1.01254 -25.85
- 18 140.176 254 5 1 -129.229 0.881352 -54.45
- 18 200.021 904 5 0 -129.213 0.873933 -55.85
- 18 157.4 256 4 1 -128.893 0.693334 -84.45
- 18 111.307 903 4 0 -128.884 0.678875 -85.85
- 18 201.44 257 3 1 -128.711 0.393313 -114.45
- 18 148.868 901 3 0 -128.705 0.384723 -115.85
- 18 208.023 257 2 1 -128.597 0.211208 -144.45
- 18 206.956 900 2 0 -128.588 0.202354 -145.85
- 18 114.691 252 0 1 -129.56 -0.833599 -204.45
- 18 131.874 895 0 0 -129.6 -0.866279 -205.85
- 18 208.344 905 6 0 -129.404 1.05 -26.2226
- 18 74.8713 959 6 0 -104.847 11.9987 -26.25
- 18 53.3796 1162 0 0 -118.412 52.45 -206.214
- 18 62.2841 1163 0 0 -118.36 52.6501 -206.026
- 18 222.359 311 0 1 -117.899 53.4669 -204.85
- 18 366.591 310 0 1 -117.95 53.682 -204.693
- 18 74.8027 309 0 1 -118.15 53.7431 -204.619
- 18 120.415 252 6 1 -129.55 1.32937 -24.607
- 18 46.3892 251 6 1 -129.75 1.537 -24.8019
- 18 50.7204 915 6 0 -131.101 3.14041 -25.85
- 18 151.23 916 6 0 -131.197 3.25045 -25.9143
- 18 99.7916 917 6 0 -131.435 3.45 -26.0128
- 18 86.4857 918 6 0 -131.667 3.65006 -26.1197
- 18 128.389 1090 6 0 -133.089 38.1486 -26.25
- 18 30.3924 237 6 1 -132.595 38.2389 -24.8498
- 18 85.0724 238 6 1 -132.55 38.2464 -24.7007
- 18 137.454 1121 6 0 -13.1959 44.3434 -26.25
- 18 26.1307 1122 6 0 -13.0314 44.45 -26.214
- 18 19.1131 888 6 0 27.2203 -2.36387 -26.25
- 18 330.316 776 8 0 -79.9083 -24.7986 33.75
- 18 266.984 253 3 1 -129.352 0.839223 -114.451
- 18 182.068 903 3 0 -129.387 0.736508 -115.85
- 18 106.836 256 2 1 -128.88 -1.12564 -144.45
- 18 172.99 894 2 0 -129.067 -1.16028 -145.85
- 18 233.968 236 1 1 -132.901 -0.76794 -174.45
- 18 46.3015 235 1 1 -132.95 -0.757021 -174.684
- 18 170.537 896 1 0 -133.214 -0.714309 -175.85
- 18 248.647 190 0 1 -141.967 -0.329605 -204.45
- 18 172.254 898 0 0 -142.431 -0.37317 -205.85
- 18 143.841 897 1 0 -133.358 -0.65 -176.201
- 18 111.998 904 3 0 -129.36 0.861661 -115.85
- 18 155.476 249 2 1 -130.23 1.80287 -144.45
- 18 129.014 908 2 0 -130.241 1.72877 -145.85
- 18 102.555 247 1 1 -130.663 0.0762894 -174.45
- 18 232.575 242 0 1 -131.629 -1.25507 -204.45
- 18 109.543 892 0 0 -131.705 -1.52775 -205.85
- 18 312.113 918 3 0 -130.4 3.79194 -116.25
- 18 54.3213 830 1 0 -122.345 -13.989 -176.25
- 18 219.809 829 1 0 -122.335 -14.05 -176.153
- 18 203.36 292 1 1 -121.598 -16.9264 -174.85
- 18 202.201 293 1 1 -121.55 -17.1345 -174.801
- 18 322.711 291 1 1 -121.75 -17.7515 -174.455
- 18 236.389 290 1 1 -121.95 -18.0074 -174.512
- 18 53.0058 793 1 0 -122.119 -21.2851 -175.85
- 18 143.739 792 1 0 -122.142 -21.45 -175.893
- 18 58.5867 791 1 0 -122.059 -21.65 -175.892
- 18 143.395 253 4 1 -129.437 1.11004 -84.45
- 18 128.94 905 4 0 -129.275 1.08188 -85.85
- 18 85.5195 265 3 1 -127.131 3.4054 -114.45
- 18 73.7342 266 3 1 -126.95 3.53867 -114.602
- 18 52.2512 267 3 1 -126.75 3.68897 -114.769
- 18 166.27 922 3 0 -125.357 4.59923 -115.85
- 18 121.541 923 3 0 -125.278 4.65 -115.912
- 18 90.7449 924 3 0 -124.999 4.85 -116.155
- 18 290.585 1042 3 0 -47.9216 28.5955 -116.25
- 18 95.0647 1043 3 0 -47.5497 28.65 -116.043
- 18 79.108 672 3 1 -45.6 28.6834 -114.85
- 18 179.392 673 3 1 -45.45 28.682 -114.755
- 18 109.945 674 3 1 -45.2496 28.6622 -114.653
- 18 34.9822 675 3 1 -45.05 28.6113 -114.53
- 18 2.46304 1041 3 0 -46.8046 28.4483 -115.85
- 18 9.81942 1062 2 0 -85.1387 32.45 -145.936
- 18 146 1063 2 0 -85.2323 32.6502 -145.956
- 18 64.838 1064 2 0 -85.1521 32.8501 -145.942
- 18 113.371 906 7 0 -129.25 1.30904 4.15
- 18 8.90996 278 6 1 -124.36 4.75981 -24.45
- 18 106.847 279 6 1 -124.35 4.76298 -24.4773
- 18 117.611 924 6 0 -123.831 4.8722 -25.8509
- 18 111.692 322 5 1 -115.589 6.49661 -54.4503
- 18 33.1563 323 5 1 -115.55 6.53977 -54.733
- 18 215.371 933 5 0 -115.38 6.71362 -55.85
- 18 202.994 354 4 1 -109.281 11.2363 -84.4507
- 18 6.60752 958 4 0 -108.867 11.8414 -85.85
- 18 221.028 959 4 0 -108.861 11.85 -85.8699
- 18 45.9561 397 3 1 -100.596 24.2886 -114.45
- 18 81.7156 398 3 1 -100.55 24.3314 -114.573
- 18 117.718 1023 3 0 -100.095 24.7447 -115.85
- 18 10.2773 1024 3 0 -99.9679 24.85 -116.199
- 18 219.644 935 5 0 -124.854 7.07043 -55.85
- 18 63.7603 928 5 0 -121.862 5.85 -55.868
- 18 289.272 905 7 0 -129.492 1.1073 4.15
- 18 120.523 255 6 1 -129.053 1.12294 -24.45
- 18 129.696 253 5 1 -129.458 0.976937 -54.45
- 18 48.349 905 5 0 -129.544 1.05 -56.0894
- 18 105.87 245 4 1 -131.08 2.45119 -84.45
- 18 116.965 912 4 0 -131.137 2.55275 -85.85
- 18 97.8233 239 3 1 -132.276 4.51144 -114.45
- 18 149.392 237 2 1 -132.646 5.84096 -144.45
- 18 106.396 929 2 0 -132.66 5.91211 -145.85
- 18 135.925 934 1 0 -132.803 6.90881 -175.85
- 18 94.0614 928 0 0 -131.577 5.65387 -205.85
-Number of digits in this event = 59
+Number of tracker hits in this event = 31
+ 18 174.391 1458 9 1 111.777 46.0516 65.55
+ 18 124.476 1130 9 0 111.777 46.0521 64.15
+ 18 130.354 1458 8 1 111.774 46.0596 35.55
+ 18 110.449 1130 8 0 111.775 46.059 34.15
+ 18 97.731 1458 7 1 111.789 46.0462 5.55
+ 18 99.3673 1129 7 0 111.79 46.0471 4.15
+ 18 160.328 1458 6 1 111.808 46.0666 -24.45
+ 18 119.975 1130 6 0 111.808 46.0679 -25.85
+ 18 126.856 1458 5 1 111.82 46.0932 -54.45
+ 18 290.377 1130 5 0 111.821 46.0943 -55.85
+ 18 109.181 1458 4 1 111.847 46.1163 -84.45
+ 18 131.893 1130 4 0 111.849 46.119 -85.85
+ 18 131.666 1458 3 1 111.892 46.1762 -114.45
+ 18 141.627 1130 3 0 111.896 46.178 -115.85
+ 18 386.544 1459 2 1 111.98 46.2121 -144.45
+ 18 172.861 1130 2 0 111.984 46.2138 -145.85
+ 18 115.166 1459 1 1 112.062 46.2518 -174.45
+ 18 128.767 1131 1 0 112.066 46.2536 -175.85
+ 18 342.721 1459 0 1 112.141 46.2787 -204.45
+ 18 290.101 1131 0 0 112.147 46.2838 -205.85
+ 18 73.3124 1143 0 0 171.312 48.7173 -206.25
+ 18 59.483 1746 0 1 169.55 126.087 -204.466
+ 18 66.1056 1129 4 0 111.872 46.05 -86.22
+ 18 26.5374 1128 4 0 111.81 45.85 -86.2453
+ 18 32.2516 652 4 0 25.134 -49.5861 -86.2499
+ 18 92.7409 651 4 0 25.0637 -49.6503 -86.1907
+ 18 24.4408 650 4 0 24.9677 -49.85 -86.1799
+ 18 293.053 1458 0 1 111.939 46.2447 -204.45
+ 18 108.96 1129 0 0 111.845 46.0345 -205.85
+ 18 215.655 1130 0 0 111.909 46.2031 -205.85
+ 18 247.148 1457 0 1 111.708 46.2323 -204.45
+Number of digits in this event = 19
Using G4ParticleGun ...
-2.9678 LIN
+8.08473 LIN
e-
Event: 19
-Number of tracker hits in this event = 69
- 19 118.582 1436 9 1 107.43 -63.0715 65.55
- 19 153.455 584 9 0 107.429 -63.0708 64.15
- 19 121.225 1436 8 1 107.405 -63.0738 35.55
- 19 130.092 584 8 0 107.405 -63.0773 34.15
- 19 96.3817 1436 7 1 107.388 -63.16 5.55
- 19 136.357 584 7 0 107.386 -63.1627 4.15
- 19 104.221 1436 6 1 107.369 -63.1726 -24.45
- 19 121.04 584 6 0 107.374 -63.1699 -25.85
- 19 126.324 1436 5 1 107.473 -63.1147 -54.45
- 19 211.347 584 5 0 107.475 -63.1134 -55.85
- 19 206.865 1436 4 1 107.518 -63.0922 -84.45
- 19 128.755 584 4 0 107.52 -63.0944 -85.85
- 19 469.044 1437 3 1 107.553 -63.1395 -114.45
- 19 373.863 584 3 0 107.555 -63.1424 -115.85
- 19 248.086 1437 2 1 107.596 -63.1938 -144.45
- 19 237.202 584 2 0 107.598 -63.1963 -145.85
- 19 126.409 1437 1 1 107.624 -63.2416 -174.45
- 19 136.924 584 1 0 107.626 -63.2433 -175.85
- 19 123.375 1437 0 1 107.667 -63.2742 -204.45
- 19 133.048 583 0 0 107.67 -63.2768 -205.85
- 19 307.991 1796 10 1 179.525 106.158 95.5499
- 19 17.3184 712 0 0 97.1123 -37.4937 -206.25
- 19 338.599 713 0 0 97.15 -37.4498 -206.208
- 19 216.641 714 0 0 97.4439 -37.2499 -206.155
- 19 123.679 1447 2 1 109.609 -62.2612 -144.45
- 19 153.586 588 2 0 109.858 -62.3391 -145.85
- 19 210.534 1475 1 1 115.161 -64.8431 -174.45
- 19 143.212 575 1 0 115.539 -64.9853 -175.85
- 19 118.747 1510 0 1 122.182 -68.1896 -204.45
- 19 128.666 558 0 0 122.387 -68.2892 -205.85
- 19 326.773 1438 2 1 107.874 -62.9236 -144.45
- 19 119.005 586 2 0 107.906 -62.8463 -145.85
- 19 114.788 1440 1 1 108.25 -61.4032 -174.45
- 19 177.792 593 1 0 108.183 -61.3055 -175.85
- 19 151.819 1435 0 1 107.24 -59.6723 -204.45
- 19 113.193 602 0 0 107.139 -59.5677 -205.85
- 19 4.99283 939 1 0 144.8 8.0251 -176.25
- 19 98.4753 940 1 0 144.812 8.05015 -176.24
- 19 73.0029 941 1 0 144.998 8.25 -176.007
- 19 332.531 1625 1 1 145.303 9.07874 -174.85
- 19 8.69184 1626 1 1 145.35 9.59179 -174.826
- 19 107.164 948 1 0 145.433 9.73951 -175.85
- 19 408.579 949 1 0 145.323 9.85028 -176.041
- 19 8.00769 950 1 0 145.181 10.0501 -176.16
- 19 111.415 1447 1 1 109.55 -71.5716 -174.459
- 19 66.4257 1465 1 1 113.316 -68.5723 -174.45
- 19 86.8225 1466 1 1 113.35 -68.6292 -174.633
- 19 121.318 556 1 0 114.002 -68.7891 -175.851
- 19 125.275 585 2 0 107.934 -62.8966 -145.85
- 19 8.05786 1476 1 1 115.374 -62.2671 -174.45
- 19 78.683 1474 1 1 115.15 -62.3172 -174.646
- 19 5.80903 1473 1 1 114.95 -62.3726 -174.837
- 19 193.911 586 1 0 113.904 -62.6898 -175.85
- 19 134.171 1305 0 1 81.1531 -71.6528 -204.45
- 19 180.939 1306 0 1 81.2501 -71.8322 -204.662
- 19 224.182 539 0 0 81.5128 -72.2163 -205.85
- 19 47.6451 538 0 0 81.5172 -72.2501 -206.008
- 19 71.9409 506 0 0 65.1637 -78.6911 -206.25
- 19 120.758 507 0 0 65.1082 -78.65 -206.065
- 19 28.4326 508 0 0 65.0882 -78.45 -205.885
- 19 18.4455 1221 0 1 64.2719 -76.9486 -204.85
- 19 24.8269 1220 0 1 64.25 -76.9094 -204.841
- 19 7.18816 530 0 0 62.5268 -73.8628 -205.85
- 19 332.148 531 0 0 62.5169 -73.85 -205.854
- 19 76.3493 585 9 0 107.417 -63.0499 64.1001
- 19 17.9728 1435 9 1 107.347 -62.6357 65.15
- 19 5.23676 596 9 0 107.291 -60.6711 64.15
- 19 18.18 1437 9 1 107.582 -61.0005 65.15
- 19 11.0115 594 9 0 107.54 -61.1236 64.15
-Number of digits in this event = 41
+Number of tracker hits in this event = 52
+ 19 123.209 407 9 1 -98.6019 -68.1015 65.55
+ 19 129.221 559 9 0 -98.6024 -68.1012 64.15
+ 19 121.553 407 8 1 -98.6117 -68.0921 35.55
+ 19 102.874 559 8 0 -98.6122 -68.0907 34.15
+ 19 150.042 407 7 1 -98.624 -68.0652 5.55
+ 19 122.047 559 7 0 -98.6243 -68.0646 4.15
+ 19 108.752 407 6 1 -98.6288 -68.0542 -24.45
+ 19 158.732 559 6 0 -98.6288 -68.0554 -25.85
+ 19 325.862 407 5 1 -98.6303 -68.0803 -54.45
+ 19 218.113 559 5 0 -98.6301 -68.0825 -55.85
+ 19 149.424 407 4 1 -98.6246 -68.1252 -84.45
+ 19 203.457 559 4 0 -98.622 -68.1294 -85.85
+ 19 123.438 407 3 1 -98.5734 -68.2135 -114.45
+ 19 212.254 559 3 0 -98.5736 -68.2192 -115.85
+ 19 112.645 407 2 1 -98.5839 -68.3327 -144.45
+ 19 107.103 558 2 0 -98.5848 -68.34 -145.85
+ 19 408.581 407 1 1 -98.6021 -68.4872 -174.45
+ 19 184.587 557 1 0 -98.6018 -68.4926 -175.85
+ 19 131.515 407 0 1 -98.5938 -68.5941 -204.45
+ 19 152.854 557 0 0 -98.5927 -68.5988 -205.85
+ 19 231.123 558 1 0 -98.5768 -68.2573 -175.85
+ 19 227.751 408 0 1 -98.5107 -68.3304 -204.45
+ 19 228.151 558 0 0 -98.5176 -68.3534 -205.85
+ 19 176.395 200 5 1 -139.979 -113.017 -54.85
+ 19 26.4337 403 5 0 -116.933 -99.55 -56.0193
+ 19 105.835 406 5 1 -98.75 -68.4271 -54.5192
+ 19 74.0477 405 5 1 -98.95 -68.6492 -54.6648
+ 19 74.8078 404 5 1 -99.15 -68.784 -54.7752
+ 19 87.2586 550 5 0 -100.898 -69.8737 -55.85
+ 19 94.269 549 5 0 -101.124 -70.05 -55.9769
+ 19 85.2236 548 5 0 -101.339 -70.25 -56.0987
+ 19 3.00714 547 5 0 -101.461 -70.45 -56.2453
+ 19 123.772 323 4 1 -115.368 -113.425 -84.4507
+ 19 11.1531 337 4 0 -115.454 -112.579 -85.85
+ 19 147.522 338 4 0 -115.453 -112.55 -85.8872
+ 19 46.0539 339 4 0 -115.394 -112.35 -86.0963
+ 19 173.308 634 2 0 -149.84 -53.25 -145.93
+ 19 57.2136 408 5 1 -98.55 -68.02 -54.6856
+ 19 143.359 560 5 0 -98.2075 -67.9993 -55.85
+ 19 7.4015 485 4 1 -83.0261 -66.8987 -84.45
+ 19 48.9686 484 4 1 -83.05 -66.8851 -84.4605
+ 19 77.3848 483 4 1 -83.2501 -66.7662 -84.5261
+ 19 66.3675 482 4 1 -83.4503 -66.5777 -84.5726
+ 19 74.5313 481 4 1 -83.65 -66.3619 -84.6198
+ 19 82.6762 480 4 1 -83.8501 -66.1944 -84.6078
+ 19 99.9547 479 4 1 -84.05 -66.0641 -84.5626
+ 19 4.25663 478 4 1 -84.2506 -66.0057 -84.4558
+ 19 196.399 476 4 1 -84.7038 -65.7396 -84.45
+ 19 74.56 576 4 0 -84.9463 -64.7317 -85.8501
+ 19 109.944 577 4 0 -85.0351 -64.6499 -86.0216
+ 19 37.063 578 4 0 -85.2473 -64.45 -86.185
+ 19 12.3942 848 5 0 -143.621 -10.4383 -56.25
+Number of digits in this event = 28
Using G4ParticleGun ...
-5.37031 LIN
+3.59861 LIN
e-
Event: 20
-Number of tracker hits in this event = 37
- 20 103.591 1469 9 1 113.984 58.9993 65.55
- 20 122.396 1194 9 0 113.984 58.9985 64.15
- 20 135.685 1469 8 1 113.988 58.9786 35.55
- 20 116.949 1194 8 0 113.991 58.9771 34.15
- 20 148.974 1469 7 1 114.055 58.9621 5.55
- 20 125.093 1194 7 0 114.057 58.9613 4.15
- 20 164.803 1469 6 1 114.087 58.9397 -24.45
- 20 116.338 1194 6 0 114.09 58.941 -25.85
- 20 160.77 1470 5 1 114.156 58.9654 -54.45
- 20 130.039 1194 5 0 114.164 58.9609 -55.85
- 20 97.5352 1470 4 1 114.28 58.9571 -84.45
- 20 106.783 1194 4 0 114.287 58.9617 -85.85
- 20 139.659 1471 3 1 114.423 59.077 -114.45
- 20 112.992 1195 3 0 114.425 59.0834 -115.85
- 20 99.8817 1471 2 1 114.446 59.1923 -144.45
- 20 107.491 1195 2 0 114.442 59.2057 -145.85
- 20 107.114 1471 1 1 114.361 59.4743 -174.45
- 20 168.794 1197 1 0 114.361 59.4836 -175.85
- 20 153.601 1471 0 1 114.414 59.6428 -204.45
- 20 112.383 1197 0 0 114.405 59.6412 -205.85
- 20 164.709 1203 5 0 115.148 60.6875 -55.8505
- 20 175.396 1204 5 0 115.13 60.85 -56.0491
- 20 129.782 1472 2 1 114.552 58.9258 -144.45
- 20 154.011 1196 2 0 115.216 59.2664 -145.85
- 20 62.3936 1541 1 1 128.482 64.9229 -174.45
- 20 81.595 1542 1 1 128.55 64.96 -174.617
- 20 62.2172 1225 1 0 128.971 65.209 -175.85
- 20 73.4118 1226 1 0 129.044 65.2501 -176.06
- 20 101.556 1595 0 1 139.214 69.5952 -204.45
- 20 36.5195 1596 0 1 139.35 69.3805 -204.75
- 20 35.5235 1242 0 0 139.82 68.5291 -205.85
- 20 102.753 1241 0 0 139.866 68.45 -205.957
- 20 0.139156 1240 0 0 140.002 68.25 -206.25
- 20 44.957 925 7 0 84.1328 5.20174 3.75
- 20 103.942 926 7 0 84.1496 5.25034 3.83094
- 20 9.98085 846 1 0 111.617 -10.8387 -176.25
- 20 0.799856 845 1 0 111.62 -10.8501 -176.246
-Number of digits in this event = 17
+Number of tracker hits in this event = 27
+ 20 90.6417 845 11 0 82.6694 -10.9374 124.15
+ 20 85.9951 1313 10 1 82.6603 -10.9465 95.55
+ 20 241.244 845 10 0 82.6606 -10.9481 94.15
+ 20 90.2866 1313 9 1 82.6668 -10.9947 65.55
+ 20 110.499 845 9 0 82.6656 -10.9966 64.15
+ 20 152.909 1312 8 1 82.6347 -11.0391 35.55
+ 20 114.912 845 8 0 82.6335 -11.0421 34.15
+ 20 129.582 1312 7 1 82.6018 -11.0981 5.55
+ 20 126.939 844 7 0 82.5969 -11.0977 4.15
+ 20 124.157 1312 6 1 82.4895 -11.0996 -24.45
+ 20 146.024 844 6 0 82.4864 -11.0994 -25.85
+ 20 116.226 1311 5 1 82.419 -11.0892 -54.45
+ 20 194.102 844 5 0 82.4148 -11.0877 -55.85
+ 20 118.094 1311 4 1 82.3281 -11.0651 -84.45
+ 20 123.366 844 4 0 82.3239 -11.0619 -85.85
+ 20 110.644 1310 3 1 82.2278 -10.9779 -114.45
+ 20 118.094 845 3 0 82.2226 -10.9767 -115.85
+ 20 157.973 1310 2 1 82.1199 -10.9499 -144.45
+ 20 146.665 845 2 0 82.1163 -10.9535 -145.85
+ 20 125.127 1309 1 1 82.0492 -11.0343 -174.45
+ 20 99.0998 845 1 0 82.0406 -11.0408 -175.85
+ 20 137.692 1308 0 1 81.8499 -11.1806 -204.45
+ 20 119.383 844 0 0 81.838 -11.1874 -205.85
+ 20 90.4713 724 7 1 -35.0578 -172.845 5.15
+ 20 28.8483 421 5 0 7.25914 -95.75 -56.233
+ 20 168.43 934 5 1 7.03798 -95.2191 -54.85
+ 20 11.5323 935 5 1 7.05 -95.2242 -54.7497
+Number of digits in this event = 15
Using G4ParticleGun ...
-6.3525 LIN
+7.37962 LIN
e-
Event: 21
-Number of tracker hits in this event = 110
- 21 136.45 509 11 1 -78.2118 22.7902 125.55
- 21 114.906 1013 11 0 -78.2135 22.7916 124.15
- 21 109.2 509 10 1 -78.2482 22.8168 95.55
- 21 137.629 1013 10 0 -78.2506 22.82 94.15
- 21 140.847 508 9 1 -78.2991 22.8864 65.55
- 21 125.407 1014 9 0 -78.3034 22.8891 64.15
- 21 100.314 508 8 1 -78.3947 22.955 35.55
- 21 167.198 1014 8 0 -78.4029 22.9604 34.15
- 21 125.009 507 7 1 -78.5662 23.0697 5.55
- 21 124.12 1015 7 0 -78.5741 23.0751 4.15
- 21 230.291 506 6 1 -78.7285 23.1807 -24.45
- 21 175.217 1015 6 0 -78.7349 23.1842 -25.85
- 21 395.583 505 5 1 -78.8663 23.2528 -54.45
- 21 357.36 1016 5 0 -78.8762 23.255 -55.85
- 21 162.723 504 4 1 -79.0773 23.2993 -84.45
- 21 128.994 1016 4 0 -79.0839 23.3009 -85.85
- 21 194.199 504 3 1 -79.2069 23.328 -114.45
- 21 129.018 1016 3 0 -79.2144 23.3307 -115.85
- 21 118.794 503 2 1 -79.3806 23.3895 -144.45
- 21 321.255 1016 2 0 -79.3897 23.3896 -145.85
- 21 104.753 502 1 1 -79.5761 23.3892 -174.45
- 21 158.871 1016 1 0 -79.5827 23.3909 -175.85
- 21 126.846 501 0 1 -79.7028 23.4278 -204.45
- 21 119.414 1016 0 0 -79.7091 23.4369 -205.85
- 21 29.0403 1017 1 0 -79.6595 23.45 -176.159
- 21 69.9747 1226 1 0 -97.1664 65.3293 -176.25
- 21 104.355 1227 1 0 -97.2099 65.45 -176.124
- 21 85.8005 411 1 1 -97.7912 65.3021 -174.849
- 21 224.602 410 1 1 -97.9501 65.3001 -174.659
- 21 132.894 409 1 1 -98.15 65.2753 -174.563
- 21 125.517 502 4 1 -79.4974 22.6696 -84.45
- 21 492.624 1012 4 0 -79.5235 22.5673 -85.85
- 21 6.91498 499 3 1 -80.2482 19.4417 -114.45
- 21 156.586 498 3 1 -80.25 19.437 -114.483
- 21 5.48621 996 3 0 -80.332 19.2524 -115.85
- 21 127.536 995 3 0 -80.3331 19.25 -115.868
- 21 41.5536 489 2 1 -82.2299 15.5513 -144.45
- 21 94.0033 488 2 1 -82.25 15.486 -144.585
- 21 115.383 973 2 0 -82.483 14.843 -145.85
- 21 17.4525 972 2 0 -82.5501 14.65 -146.225
- 21 76.9092 460 1 1 -87.897 0.184784 -174.45
- 21 23.0363 896 1 0 -87.9581 -0.813608 -175.85
- 21 182.625 895 1 0 -87.9601 -0.85 -175.901
- 21 171.121 894 1 0 -87.9705 -1.05005 -176.177
- 21 203.919 453 0 1 -89.4165 -21.5791 -204.45
- 21 48.0073 787 0 0 -89.4645 -22.5511 -205.85
- 21 100.204 786 0 0 -89.4687 -22.6503 -205.993
- 21 91.2701 452 0 1 -89.45 -21.5227 -204.672
- 21 119.92 793 0 0 -90.15 -21.4142 -205.872
- 21 259.252 792 0 0 -90.2715 -21.45 -206.051
- 21 15.3253 791 0 0 -90.4225 -21.65 -205.888
- 21 11.485 666 0 0 -115.241 -46.8357 -206.25
- 21 55.4674 665 0 0 -115.255 -46.85 -206.241
- 21 185.925 893 1 0 -87.7734 -1.25004 -176.087
- 21 44.9216 892 1 0 -87.5686 -1.45 -176.197
- 21 26.749 383 1 0 -88.5494 -103.459 -176.25
- 21 93.7865 56 1 0 -108.946 -168.766 -176.25
- 21 181.278 1014 5 0 -78.876 23.0328 -55.8503
- 21 231.736 512 4 1 -77.4592 18.6484 -84.45
- 21 56.9838 990 4 0 -77.8675 18.1124 -85.85
- 21 58.6303 989 4 0 -77.9186 18.05 -86.0242
- 21 40.8098 486 3 1 -82.748 10.7553 -114.45
- 21 64.5599 487 3 1 -82.65 10.695 -114.542
- 21 78.7438 488 3 1 -82.45 10.6266 -114.695
- 21 141.938 953 3 0 -81.1295 10.7417 -115.85
- 21 128.187 1073 3 0 -28.6917 34.7399 -116.25
- 21 139.345 1074 3 0 -28.3178 34.8501 -115.92
- 21 15.2871 762 3 1 -27.4831 35.2536 -114.85
- 21 104.124 763 3 1 -27.45 35.278 -114.799
- 21 163.507 764 3 1 -27.25 35.4164 -114.509
- 21 39.3525 1075 3 0 -27.3668 35.0846 -115.85
- 21 241.065 1061 3 0 -54.216 32.4056 -116.25
- 21 87.2312 1062 3 0 -54.7754 32.45 -115.964
- 21 80.0151 1063 3 0 -54.9641 32.65 -115.917
- 21 53.8303 1064 3 0 -55.0281 32.8501 -115.91
- 21 16.4832 1065 3 0 -55.0619 33.05 -115.871
- 21 87.9169 619 3 1 -56.2149 36.014 -114.85
- 21 315.943 618 3 1 -56.25 36.0816 -114.826
- 21 201.217 617 3 1 -56.4501 36.5681 -114.535
- 21 48.4669 986 4 0 -77.8494 17.3642 -85.8503
- 21 72.4544 985 4 0 -77.8789 17.25 -85.9894
- 21 36.7526 984 4 0 -77.9032 17.05 -86.1668
- 21 0.0880915 490 3 1 -82.0499 -19.9918 -114.45
- 21 113.631 489 3 1 -82.05 -19.9919 -114.45
- 21 149.898 797 3 0 -82.6102 -20.5742 -115.85
- 21 36.4616 796 3 0 -82.6476 -20.6501 -116.153
- 21 53.526 713 3 0 -75.1736 -37.3552 -116.25
- 21 79.8785 712 3 0 -75.1694 -37.4503 -116.145
- 21 177.78 711 3 0 -75.2219 -37.6501 -116.037
- 21 167.334 710 3 0 -75.0981 -37.85 -116.101
- 21 371.771 507 2 1 -78.5388 23.1151 -144.451
- 21 193.629 1015 2 0 -78.5438 23.0665 -145.85
- 21 158.412 505 1 1 -78.9337 21.3919 -174.45
- 21 125.109 1006 1 0 -78.9493 21.3708 -175.851
- 21 142.965 504 0 1 -79.0868 20.4832 -204.45
- 21 243.756 1001 0 0 -79.1519 20.3597 -205.85
- 21 135.28 493 1 1 -81.328 22.2098 -174.451
- 21 97.52 1011 1 0 -81.4118 22.3023 -175.85
- 21 369.499 485 0 1 -82.9669 23.4676 -204.45
- 21 134.85 1017 0 0 -83.1371 23.5245 -205.85
- 21 32.381 1011 0 0 -83.0183 22.3432 -205.85
- 21 61.5178 1010 0 0 -83.0284 22.25 -205.921
- 21 68.0464 1009 0 0 -83.062 22.05 -206.027
- 21 23.0697 1008 0 0 -83.1253 21.8499 -206.183
- 21 179.211 934 0 0 -81.2255 6.90768 -206.25
- 21 0.762411 935 0 0 -80.9376 7.05 -205.852
- 21 62.5037 525 0 1 -75.0308 8.00831 -204.85
- 21 134.183 526 0 1 -74.8494 8.07535 -204.828
- 21 183.605 527 0 1 -74.65 8.11537 -204.798
- 21 181.308 943 0 0 -74.8713 8.73023 -205.85
-Number of digits in this event = 55
+Number of tracker hits in this event = 35
+ 21 168.196 1445 9 1 109.214 45.7294 65.55
+ 21 108.343 1128 9 0 109.214 45.7289 64.15
+ 21 105.671 1445 8 1 109.225 45.7096 35.55
+ 21 134.589 1128 8 0 109.226 45.7088 34.15
+ 21 131.632 1445 7 1 109.254 45.694 5.55
+ 21 124.41 1128 7 0 109.255 45.6935 4.15
+ 21 97.7576 1445 6 1 109.28 45.6872 -24.45
+ 21 237.483 1128 6 0 109.283 45.6879 -25.85
+ 21 204.896 1445 5 1 109.348 45.7045 -54.45
+ 21 134.88 1128 5 0 109.351 45.705 -55.85
+ 21 115.27 1446 4 1 109.419 45.7108 -84.45
+ 21 104.918 1128 4 0 109.424 45.7105 -85.85
+ 21 168.925 1446 3 1 109.519 45.7077 -114.45
+ 21 163.187 1128 3 0 109.526 45.7064 -115.85
+ 21 426.07 1447 2 1 109.655 45.6802 -144.45
+ 21 334.635 1128 2 0 109.661 45.679 -145.85
+ 21 117.497 1448 1 1 109.779 45.6503 -174.45
+ 21 114.868 1128 1 0 109.784 45.6505 -175.85
+ 21 179.244 1448 0 1 109.879 45.653 -204.45
+ 21 137.985 1128 0 0 109.884 45.6536 -205.85
+ 21 120.502 1105 2 0 151.408 41.2057 -146.25
+ 21 120.249 1441 1 1 108.391 45.3804 -174.45
+ 21 0.20287 1440 1 1 108.35 45.3672 -174.848
+ 21 116.75 1126 1 0 108.242 45.3327 -175.85
+ 21 359.066 1424 0 1 105.027 44.5833 -204.45
+ 21 38.3664 1423 0 1 104.95 44.5747 -204.825
+ 21 124.071 1122 0 0 104.747 44.5513 -205.85
+ 21 1.16072 1425 0 1 105.15 44.3953 -204.604
+ 21 101.217 1447 1 1 109.75 45.7123 -174.488
+ 21 223.873 1129 1 0 109.42 45.8622 -175.85
+ 21 45.9021 1408 0 1 101.79 49.7839 -204.45
+ 21 198.674 1407 0 1 101.75 49.8309 -204.582
+ 21 123.469 1151 0 0 101.379 50.3199 -205.85
+ 21 6.58448 1152 0 0 101.264 50.45 -206.237
+ 21 350.398 1136 5 0 108.772 47.3757 -55.8503
+Number of digits in this event = 23
Using G4ParticleGun ...
-4.30265 LIN
+8.66425 LIN
e-
Event: 22
-Number of tracker hits in this event = 96
- 22 171.931 781 9 1 -23.6752 -121.389 65.55
- 22 348.939 293 9 0 -23.6749 -121.391 64.15
- 22 108.924 781 8 1 -23.6648 -121.43 35.55
- 22 120.692 293 8 0 -23.6637 -121.432 34.15
- 22 141.45 781 7 1 -23.6551 -121.482 5.55
- 22 192.683 293 7 0 -23.6543 -121.484 4.15
- 22 137.421 782 6 1 -23.6358 -121.539 -24.45
- 22 122.544 293 6 0 -23.6342 -121.542 -25.85
- 22 113.24 782 5 1 -23.5959 -121.601 -54.45
- 22 97.0442 292 5 0 -23.5888 -121.604 -55.85
- 22 104.779 783 4 1 -23.4355 -121.655 -84.45
- 22 123.952 292 4 0 -23.4261 -121.659 -85.85
- 22 177.074 784 3 1 -23.2422 -121.737 -114.45
- 22 179.222 292 3 0 -23.232 -121.744 -115.85
- 22 100.059 785 2 1 -23.0125 -121.883 -144.45
- 22 243.552 291 2 0 -22.9999 -121.888 -145.85
- 22 368.978 786 1 1 -22.7322 -121.99 -174.45
- 22 480.08 290 1 0 -22.7204 -121.997 -175.85
- 22 244.114 787 0 1 -22.4774 -122.116 -204.45
- 22 91.8859 290 0 0 -22.465 -122.119 -205.85
- 22 158.58 1006 4 0 -11.0644 21.3241 -86.25
- 22 275.032 852 4 1 -9.62547 21.9424 -84.85
- 22 28.5614 1016 4 0 -9.25282 23.3901 -85.85
- 22 53.3556 1017 4 0 -9.24299 23.4501 -85.9087
- 22 65.091 1018 4 0 -9.154 23.6503 -86.0043
- 22 68.1037 1019 4 0 -9.07459 23.85 -86.0468
- 22 99.7561 1020 4 0 -8.95609 24.05 -86.1504
- 22 154.708 1648 4 0 48.1075 149.804 -86.25
- 22 337.914 1141 4 1 48.3402 150.215 -84.8497
- 22 34.004 1142 4 1 48.45 150.284 -84.6604
- 22 167.378 1651 4 0 48.2718 150.465 -85.85
- 22 219.811 1650 4 0 48.3519 150.35 -86.0997
- 22 88.8893 738 1 1 -32.3668 -56.2392 -174.85
- 22 4.4049 336 1 0 -20.2491 -112.885 -176.25
- 22 47.1915 335 1 0 -20.1279 -112.95 -176.009
- 22 117.207 288 0 0 -22.6316 -122.541 -205.85
- 22 101.143 785 0 1 -22.9924 -123.305 -204.45
- 22 117.887 284 0 0 -23.0123 -123.325 -205.85
- 22 270.198 985 9 1 17.0988 -128.16 65.15
- 22 9.6919 1334 7 1 86.85 -157.177 5.4068
- 22 137.111 1333 7 1 86.7816 -157.29 5.54982
- 22 25.0796 114 7 0 88.8749 -157.339 4.15
- 22 210.982 984 9 1 17.0499 -128.157 65.2469
- 22 286.939 786 0 1 -22.7227 -121.822 -204.45
- 22 463.96 294 0 0 -22.4939 -121.301 -205.851
- 22 168.774 292 0 0 -22.703 -121.707 -205.85
- 22 255.671 782 3 1 -23.5285 -121.73 -114.45
- 22 110.595 291 3 0 -23.2173 -121.901 -115.85
- 22 320.122 814 2 1 -17.2159 -124.1 -144.45
- 22 56.9515 815 2 1 -17.0499 -123.593 -144.831
- 22 4.10111 301 2 0 -17.1525 -119.775 -145.85
- 22 87.8062 302 2 0 -17.1526 -119.75 -145.857
- 22 71.7066 303 2 0 -17.2328 -119.55 -145.964
- 22 101.766 304 2 0 -17.3499 -119.35 -146.082
- 22 23.4361 305 2 0 -17.4291 -119.15 -146.201
- 22 120.321 748 1 1 -30.3755 -78.3469 -174.45
- 22 11.1792 747 1 1 -30.45 -78.3488 -174.794
- 22 120.032 508 1 0 -30.6982 -78.3072 -175.85
- 22 51.3017 622 1 0 -16.7844 -55.5563 -176.249
- 22 112.757 623 1 0 -16.6654 -55.45 -176.115
- 22 4.97763 624 1 0 -16.3494 -55.25 -175.859
- 22 49.6673 827 1 1 -14.6118 -54.8942 -174.85
- 22 182.003 828 1 1 -14.45 -54.8624 -174.772
- 22 10.9722 294 3 0 -23.2934 -121.165 -115.85
- 22 104.102 295 3 0 -23.2847 -121.15 -115.892
- 22 27.8687 827 2 1 -14.5119 -112.388 -144.45
- 22 89.4491 828 2 1 -14.4495 -112.295 -144.528
- 22 41.2963 829 2 1 -14.25 -112.087 -144.73
- 22 93.9106 343 2 0 -12.959 -111.465 -145.85
- 22 66.9141 344 2 0 -12.7651 -111.35 -145.974
- 22 119.18 345 2 0 -12.5406 -111.15 -146.038
- 22 27.0601 346 2 0 -12.2044 -110.95 -146.194
- 22 23.2411 601 2 0 56.2199 -59.7002 -146.25
- 22 97.3863 602 2 0 56.2644 -59.6499 -146.202
- 22 190.148 603 2 0 56.4669 -59.45 -146.039
- 22 101.102 1189 2 1 57.9065 -57.9787 -144.85
- 22 45.8949 1190 2 1 58.05 -57.7919 -144.588
- 22 131.495 1191 2 1 58.2527 -57.5008 -144.45
- 22 0.243483 611 2 0 58.8494 -57.8496 -145.85
- 22 117.551 610 2 0 58.8499 -57.85 -145.852
- 22 175.659 783 0 1 -23.357 -121.906 -204.45
- 22 124.84 291 0 0 -23.3501 -121.909 -205.85
- 22 71.3272 271 0 0 -50.6941 -125.813 -206.25
- 22 85.589 782 0 1 -23.4506 -121.825 -204.474
- 22 58.8108 781 0 1 -23.6501 -121.715 -204.702
- 22 85.4167 295 0 0 -25.0453 -121.15 -206.066
- 22 265.252 377 0 0 -77.4177 -104.707 -206.25
- 22 38.3672 500 0 1 -79.9294 -104.41 -204.85
- 22 474.363 499 0 1 -80.0501 -104.393 -204.782
- 22 181.105 498 0 1 -80.25 -104.359 -204.69
- 22 141.004 497 0 1 -80.4504 -104.314 -204.599
- 22 103.629 496 0 1 -80.65 -104.23 -204.513
- 22 28.3816 494 0 1 -81.1315 -104.029 -204.45
- 22 64.4772 495 0 1 -81.0495 -104.052 -204.497
- 22 36.7003 242 1 0 -95.3009 -131.699 -176.25
- 22 100.857 241 1 0 -95.3192 -131.75 -176.242
-Number of digits in this event = 42
+Number of tracker hits in this event = 77
+ 22 169.067 470 10 1 -85.9112 73.4196 95.55
+ 22 125.153 1266 10 0 -85.9108 73.4199 94.15
+ 22 106.623 470 9 1 -85.9035 73.4286 65.55
+ 22 119.78 1266 9 0 -85.9035 73.428 64.15
+ 22 112.355 470 8 1 -85.8992 73.422 35.55
+ 22 126.369 1266 8 0 -85.9004 73.4198 34.15
+ 22 118.283 470 7 1 -85.9202 73.3751 5.55
+ 22 125.417 1266 7 0 -85.9206 73.373 4.15
+ 22 358.125 470 6 1 -85.9294 73.3336 -24.45
+ 22 438.372 1266 6 0 -85.9299 73.332 -25.85
+ 22 146.725 470 5 1 -85.9461 73.3065 -54.45
+ 22 114.518 1266 5 0 -85.9461 73.3053 -55.85
+ 22 136.801 470 4 1 -85.9506 73.2903 -84.45
+ 22 131.749 1266 4 0 -85.9489 73.2895 -85.85
+ 22 129.749 470 3 1 -85.9099 73.2454 -114.45
+ 22 104.429 1265 3 0 -85.9195 73.2417 -115.85
+ 22 100.217 469 2 1 -86.1344 73.2155 -144.45
+ 22 119.675 1265 2 0 -86.1359 73.211 -145.85
+ 22 113.763 469 1 1 -86.1417 73.1168 -174.45
+ 22 114.703 1265 1 0 -86.1398 73.1214 -175.85
+ 22 357.831 469 0 1 -86.0874 73.2039 -204.45
+ 22 199.631 1265 0 0 -86.084 73.2184 -205.85
+ 22 18.5428 1740 7 0 172.708 168.232 3.75
+ 22 68.4213 374 3 1 -105.318 156.903 -114.85
+ 22 154.978 373 3 1 -105.35 157.042 -114.644
+ 22 130.575 476 5 1 -84.8222 73.493 -54.45
+ 22 138.1 1267 5 0 -84.7406 73.4918 -55.85
+ 22 17.456 485 4 1 -82.8559 73.6132 -84.45
+ 22 92.6754 486 4 1 -82.85 73.6079 -84.526
+ 22 135.634 1267 4 0 -82.7566 73.5142 -85.85
+ 22 96.6655 498 3 1 -80.4304 71.6105 -114.45
+ 22 165.282 1258 3 0 -80.3288 71.6639 -115.85
+ 22 114.174 508 2 1 -78.4401 72.7653 -144.45
+ 22 124.86 1263 2 0 -78.3228 72.8331 -145.85
+ 22 11.1781 1264 2 0 -78.294 72.85 -146.208
+ 22 117.16 521 1 1 -75.7976 74.4666 -174.45
+ 22 92.2903 1272 1 0 -75.6279 74.6143 -175.85
+ 22 16.7281 1273 1 0 -75.5843 74.65 -176.194
+ 22 98.5227 541 0 1 -71.7549 77.2725 -204.45
+ 22 75.4222 1286 0 0 -71.5441 77.4213 -205.85
+ 22 34.737 1287 0 0 -71.5026 77.45 -206.118
+ 22 130.709 86 14 0 37.3052 -162.807 213.75
+ 22 266.167 85 14 0 37.3447 -162.95 213.942
+ 22 42.0137 348 6 0 -30.1174 -110.374 -26.25
+ 22 132.485 472 5 1 -85.6385 72.5799 -54.45
+ 22 222.562 1262 5 0 -85.5629 72.5458 -55.85
+ 22 150.934 481 4 1 -83.8108 71.8047 -84.45
+ 22 137.887 1258 4 0 -83.7192 71.81 -85.85
+ 22 139.987 492 3 1 -81.6242 72.056 -114.45
+ 22 124.331 1259 3 0 -81.4438 71.9188 -115.85
+ 22 116.952 511 2 1 -77.7582 69.2485 -144.45
+ 22 178.178 1245 2 0 -77.605 69.1193 -145.85
+ 22 196.324 528 1 1 -74.3322 66.5803 -174.45
+ 22 105.096 1232 1 0 -74.1468 66.4757 -175.85
+ 22 13.6509 1231 1 0 -74.1014 66.45 -176.194
+ 22 71.3491 548 0 1 -70.3065 64.2756 -204.45
+ 22 59.1059 549 0 1 -70.25 64.265 -204.717
+ 22 126.113 1220 0 0 -70.0251 64.1852 -205.85
+ 22 28.6179 1507 0 0 -122.137 121.627 -206.25
+ 22 115.893 469 10 1 -86.05 73.2302 95.4932
+ 22 110.128 468 10 1 -86.25 72.8424 95.5417
+ 22 78.4351 467 10 1 -86.45 72.7419 95.5112
+ 22 148.536 466 10 1 -86.6503 72.5892 95.3702
+ 22 22.5541 465 10 1 -86.8501 72.7658 95.174
+ 22 52.0548 1274 10 0 -89.8108 74.8991 94.15
+ 22 46.9023 1275 10 0 -89.9344 75.0511 94.1173
+ 22 36.8735 1276 10 0 -89.9928 75.25 94.1458
+ 22 156.165 1277 10 0 -90.1502 75.6003 94.145
+ 22 74.1699 1278 10 0 -90.1758 75.65 94.1313
+ 22 10.965 1279 10 0 -90.05 76.0144 94.0827
+ 22 27.4788 1280 10 0 -90.0469 76.05 94.0909
+ 22 49.2734 1281 10 0 -90.15 76.2649 94.0961
+ 22 300.383 449 10 1 -90.2766 76.9562 95.15
+ 22 132.617 550 6 1 -69.9794 26.8114 -24.45
+ 22 240.172 713 0 1 -37.45 109.788 -204.578
+ 22 45.3133 714 0 1 -37.25 109.821 -204.574
+ 22 75.7251 551 6 1 -69.85 26.6059 -24.6932
+Number of digits in this event = 36
Using G4ParticleGun ...
-5.56017 LIN
+5.95166 LIN
e-
Event: 23
-Number of tracker hits in this event = 87
- 23 133.961 862 11 1 -7.57676 -46.9766 125.55
- 23 137.638 665 11 0 -7.57714 -46.9767 124.15
- 23 246.895 862 10 1 -7.58446 -46.9812 95.55
- 23 134.799 665 10 0 -7.58558 -46.9829 94.15
- 23 218.618 862 9 1 -7.60091 -47.0259 65.55
- 23 111.226 665 9 0 -7.60069 -47.0283 64.15
- 23 117.642 862 8 1 -7.59698 -47.083 35.55
- 23 134.638 664 8 0 -7.59755 -47.0842 34.15
- 23 98.7449 862 7 1 -7.60593 -47.1171 5.55
- 23 136.243 664 7 0 -7.60476 -47.12 4.15
- 23 132.169 862 6 1 -7.57584 -47.1754 -24.45
- 23 104.334 664 6 0 -7.5746 -47.1759 -25.85
- 23 170.335 862 5 1 -7.54531 -47.1845 -54.45
- 23 115.059 664 5 0 -7.54384 -47.1844 -55.85
- 23 143.536 862 4 1 -7.52035 -47.1906 -84.45
- 23 151.599 664 4 0 -7.51979 -47.1895 -85.85
- 23 373.227 862 3 1 -7.51037 -47.1664 -114.45
- 23 546.719 664 3 0 -7.51003 -47.1653 -115.85
- 23 686.459 862 2 1 -7.50403 -47.1342 -144.45
- 23 392.912 664 2 0 -7.50311 -47.1349 -145.85
- 23 259.198 862 1 1 -7.48492 -47.1478 -174.45
- 23 478.497 664 1 0 -7.48213 -47.1471 -175.85
- 23 130.866 863 0 1 -7.42419 -47.1344 -204.45
- 23 451.587 664 0 0 -7.41997 -47.1324 -205.85
- 23 292.608 864 1 1 -7.22549 -47.1862 -174.45
- 23 147.458 865 0 1 -7.01015 -47.4996 -204.45
- 23 427.733 662 0 0 -7.00405 -47.5184 -205.85
- 23 93.0367 279 3 1 -124.34 -122.231 -114.45
- 23 53.5202 278 3 1 -124.35 -122.277 -114.455
- 23 176.774 667 2 0 -7.51399 -46.6376 -145.85
- 23 111.241 669 1 0 -7.23388 -46.2197 -175.85
- 23 509.887 861 0 1 -7.68346 -45.9042 -204.45
- 23 248.094 670 0 0 -7.70312 -45.8629 -205.85
- 23 126.199 1024 3 1 24.94 -40.613 -114.45
- 23 68.996 610 1 0 103.352 -57.9541 -176.25
- 23 92.3085 662 2 0 -7.39544 -47.5945 -145.85
- 23 33.5032 661 2 0 -7.36397 -47.65 -146.134
- 23 66.0308 883 1 1 -3.43544 -52.3819 -174.45
- 23 109.03 882 1 1 -3.45 -52.4074 -174.532
- 23 54.38 636 1 0 -3.71633 -52.8086 -175.85
- 23 267.683 635 1 0 -3.7434 -52.85 -175.985
- 23 194.809 855 0 1 -8.96754 -62.5799 -204.45
- 23 67.1503 854 0 1 -9.05 -62.6262 -204.663
- 23 128.062 585 0 0 -9.54906 -62.8697 -205.85
- 23 74.5473 514 0 0 -22.1414 -77.0882 -206.25
- 23 59.2727 513 0 0 -22.1905 -77.25 -206.022
- 23 180.281 786 0 1 -22.7359 -77.9195 -204.85
- 23 88.4089 785 0 1 -22.85 -78.0378 -204.556
- 23 40.8842 693 1 0 -17.9997 -41.3839 -176.25
- 23 78.7605 694 1 0 -18.001 -41.25 -176.161
- 23 68.3478 695 1 0 -17.9802 -41.05 -176.043
- 23 49.9486 696 1 0 -17.9402 -40.8498 -175.928
- 23 230.425 812 1 1 -17.5761 -38.5166 -174.85
- 23 19.7199 813 1 1 -17.4498 -38.0003 -174.52
- 23 4.02701 188 10 1 -142.35 -38.0889 95.1556
- 23 100.739 663 2 0 -7.4501 -47.3877 -145.85
- 23 126.364 866 1 1 -6.73715 -47.1113 -174.45
- 23 234.024 872 0 1 -5.55409 -48.5256 -204.45
- 23 105.539 657 0 0 -5.51046 -48.5826 -205.85
- 23 289.331 637 0 0 1.29537 -52.5432 -206.25
- 23 62.9301 638 0 0 2.1448 -52.45 -206.024
- 23 83.8222 639 0 0 2.27533 -52.2499 -206.053
- 23 576.814 640 0 0 2.52273 -52.0493 -206.011
- 23 37.4727 641 0 0 3.58488 -51.85 -206.032
- 23 150.435 927 0 1 5.46205 -51.2118 -204.85
- 23 36.8417 635 0 0 6.35623 -52.8954 -205.85
- 23 252.617 861 3 1 -7.83664 -47.1465 -114.45
- 23 115.831 860 2 1 -7.95291 -47.1264 -144.45
- 23 129.602 857 1 1 -8.51502 -46.5696 -174.45
- 23 123.228 667 1 0 -8.53742 -46.5452 -175.85
- 23 35.8311 946 1 1 9.27074 2.42365 -174.85
- 23 40.767 667 3 0 -7.78206 -46.4794 -115.85
- 23 107.549 668 3 0 -7.77925 -46.45 -115.92
- 23 11.9032 864 2 1 -7.07837 -35.4376 -144.45
- 23 92.9178 865 2 1 -7.04981 -35.4366 -144.498
- 23 10.5737 866 2 1 -6.85 -35.427 -144.817
- 23 103.912 723 2 0 -6.21465 -35.4485 -145.85
- 23 29.9447 722 2 0 -6.19689 -35.45 -145.879
- 23 155.508 954 1 1 10.9994 -34.4511 -174.45
- 23 112.242 728 1 0 10.6247 -34.3973 -175.85
- 23 164.743 929 0 1 5.97655 -31.5052 -204.45
- 23 5.46432 930 0 1 6.05 -31.4715 -204.817
- 23 103.776 744 0 0 6.28201 -31.237 -205.85
- 23 45.037 668 10 0 -7.45987 -46.3304 94.15
- 23 112.674 669 10 0 -7.43993 -46.2499 93.9862
- 23 123.401 862 0 1 -7.5907 -47.1392 -204.45
- 23 96.8375 663 0 0 -7.70322 -47.25 -205.902
-Number of digits in this event = 45
+Number of tracker hits in this event = 152
+ 23 187.782 909 11 1 1.93557 74.5414 125.55
+ 23 225.976 1272 11 0 1.93593 74.5421 124.15
+ 23 124.986 909 10 1 1.94695 74.5524 95.55
+ 23 220.211 1272 10 0 1.9477 74.5555 94.15
+ 23 178.729 909 9 1 1.95646 74.6164 65.55
+ 23 111.26 1272 9 0 1.95682 74.6219 64.15
+ 23 541.478 909 8 1 1.97111 74.7322 35.55
+ 23 270.409 1273 8 0 1.97102 74.7388 34.15
+ 23 193.626 909 7 1 1.98854 74.8553 5.55
+ 23 132.891 1274 7 0 1.99089 74.8592 4.15
+ 23 141.548 909 6 1 2.03884 74.9443 -24.45
+ 23 137.129 1274 6 0 2.04435 74.9493 -25.85
+ 23 390.692 910 5 1 2.15236 75.0475 -54.45
+ 23 107.356 1275 5 0 2.15699 75.0518 -55.85
+ 23 230.293 911 4 1 2.25519 75.1497 -84.45
+ 23 169.57 1275 4 0 2.25851 75.1569 -85.85
+ 23 120.647 911 3 1 2.33105 75.3016 -114.45
+ 23 119.221 1276 3 0 2.33481 75.3102 -115.85
+ 23 281.347 911 2 1 2.4168 75.4899 -144.45
+ 23 142.644 1277 2 0 2.42253 75.499 -145.85
+ 23 574.817 912 1 1 2.53551 75.6685 -174.45
+ 23 217.533 1278 1 0 2.53698 75.6737 -175.85
+ 23 368.128 912 0 1 2.55024 75.7753 -204.45
+ 23 160.256 1278 0 0 2.55197 75.7812 -205.85
+ 23 221.816 1383 1 0 45.1686 96.8025 -176.25
+ 23 221.05 1130 1 1 46.1426 97.0681 -174.85
+ 23 115.866 1400 1 0 36.8013 100.192 -176.25
+ 23 137.895 1401 1 0 36.8592 100.35 -176.04
+ 23 35.7644 1402 1 0 36.6133 100.55 -175.909
+ 23 7.93786 1074 1 1 34.87 100.588 -174.85
+ 23 98.6387 1073 1 1 34.85 100.59 -174.836
+ 23 60.1395 1072 1 1 34.65 100.604 -174.76
+ 23 70.1977 1071 1 1 34.4498 100.648 -174.723
+ 23 108.201 1070 1 1 34.2496 100.72 -174.679
+ 23 160.2 1069 1 1 34.0499 100.929 -174.734
+ 23 6.68239 1068 1 1 33.8498 101.024 -174.468
+ 23 120.293 915 1 1 3.11476 75.0236 -174.45
+ 23 102.24 1273 1 0 2.99885 74.6968 -175.85
+ 23 2.12916 1272 1 0 2.97897 74.65 -176.247
+ 23 92.4101 911 0 1 2.45 69.57 -204.741
+ 23 87.0901 1241 0 0 1.91833 68.4478 -205.85
+ 23 85.697 1240 0 0 1.81637 68.25 -206.05
+ 23 49.0201 990 0 0 -42.1856 18.1559 -206.25
+ 23 110.148 989 0 0 -42.3085 18.0498 -206.19
+ 23 131.133 988 0 0 -42.6312 17.8499 -206.074
+ 23 91.0549 987 0 0 -42.9131 17.65 -205.987
+ 23 23.6573 986 0 0 -43.1564 17.45 -205.875
+ 23 42.1104 671 0 1 -45.7306 15.2204 -204.85
+ 23 81.8749 670 0 1 -45.85 15.1179 -204.788
+ 23 52.3765 669 0 1 -46.0502 14.9644 -204.734
+ 23 65.1733 668 0 1 -46.25 14.8321 -204.711
+ 23 63.5216 667 0 1 -46.4504 14.6871 -204.694
+ 23 73.6796 666 0 1 -46.65 14.5539 -204.708
+ 23 109.78 665 0 1 -46.85 14.3988 -204.718
+ 23 103.254 664 0 1 -47.05 14.2261 -204.731
+ 23 81.1994 663 0 1 -47.2504 14.0542 -204.783
+ 23 10.0182 964 0 0 -49.3672 12.8725 -205.85
+ 23 124.248 963 0 0 -49.405 12.85 -205.868
+ 23 77.8547 962 0 0 -49.7799 12.65 -206.082
+ 23 68.87 1251 4 1 70.3086 -29.9209 -84.85
+ 23 154.759 1277 1 0 2.41288 75.6359 -175.851
+ 23 121.681 908 0 1 1.78269 78.2491 -204.45
+ 23 113.728 1291 0 0 1.75496 78.3067 -205.85
+ 23 22.7762 910 4 1 2.24998 75.2264 -84.8045
+ 23 12.6606 1280 4 0 2.46437 76.224 -85.85
+ 23 273.183 1281 4 0 2.46931 76.25 -85.8702
+ 23 119.929 1279 0 0 2.44029 76.0496 -205.85
+ 23 149.366 1276 1 0 2.62323 75.4432 -175.85
+ 23 148.289 916 0 1 3.27004 74.7278 -204.45
+ 23 163.709 1273 0 0 3.30299 74.6976 -205.85
+ 23 213.466 1274 5 0 2.13307 75.0209 -55.8501
+ 23 141.811 908 4 1 1.81582 73.903 -84.45
+ 23 113.036 1269 4 0 1.7 73.9649 -85.85
+ 23 109.193 899 3 1 -0.0853541 75.6955 -114.45
+ 23 104.081 1278 3 0 -0.115417 75.6931 -115.85
+ 23 113.622 895 2 1 -0.970215 75.4412 -144.45
+ 23 134.581 1276 2 0 -1.15414 75.2707 -145.85
+ 23 122.58 883 1 1 -3.40858 73.2613 -174.45
+ 23 83.2724 1266 1 0 -3.55599 73.3813 -175.85
+ 23 72.463 1371 1 0 -7.16342 94.4089 -176.25
+ 23 62.9437 1372 1 0 -7.15973 94.5501 -176.045
+ 23 103.178 864 1 1 -7.06342 95.068 -174.85
+ 23 152.378 905 4 1 1.09536 74.5746 -84.4506
+ 23 148.58 1272 4 0 1.21489 74.5004 -85.85
+ 23 0.606437 918 3 1 3.84902 73.4411 -114.45
+ 23 118.694 919 3 1 3.85 73.4407 -114.454
+ 23 165.928 1266 3 0 4.20624 73.3438 -115.85
+ 23 41.1784 967 2 1 13.602 71.4207 -144.45
+ 23 67.0655 968 2 1 13.6502 71.4023 -144.603
+ 23 190.523 1255 2 0 14.0403 71.2316 -145.85
+ 23 123.849 1012 1 1 22.4923 67.3923 -174.45
+ 23 142.049 1236 1 0 23.0365 67.3091 -175.85
+ 23 22.5543 1070 0 1 34.2328 66.2393 -204.45
+ 23 83.3269 1071 0 1 34.25 66.2354 -204.508
+ 23 107.846 1230 0 0 34.5322 66.2345 -205.85
+ 23 10.7092 1231 0 0 34.5968 66.25 -206.237
+ 23 22.6993 1265 4 0 0.862497 73.1375 -85.8501
+ 23 58.8386 909 4 1 2.01817 73.9299 -84.85
+ 23 69.9343 909 2 1 1.86138 74.3273 -144.45
+ 23 19.6521 908 2 1 1.84999 74.3596 -144.764
+ 23 108.994 1272 2 0 1.77234 74.4943 -145.85
+ 23 105.351 903 1 1 0.721886 81.0881 -174.45
+ 23 54.0256 1308 1 0 1.15851 81.7724 -175.85
+ 23 72.0754 1309 1 0 1.21306 81.85 -176.012
+ 23 82.1905 1459 1 0 11.7759 112.028 -176.25
+ 23 87.8042 1460 1 0 11.8035 112.15 -176.034
+ 23 122.239 958 1 1 11.8181 112.785 -174.85
+ 23 1.65518 1575 2 0 49.1899 135.348 -146.25
+ 23 84.8168 1576 2 0 49.1945 135.35 -146.246
+ 23 137.477 1577 2 0 49.3772 135.55 -146.012
+ 23 91.7457 1578 2 0 49.6859 135.75 -146.072
+ 23 82.6489 1579 2 0 49.8999 135.95 -146.167
+ 23 73.4235 1580 2 0 50.1006 136.15 -146.095
+ 23 168.617 1581 2 0 50.2986 136.35 -146.012
+ 23 6.52719 1582 2 0 50.3244 136.55 -145.872
+ 23 336.647 1152 2 1 50.6113 137.96 -144.85
+ 23 139.397 1153 2 1 50.65 138.365 -144.563
+ 23 118.169 907 7 1 1.61527 76.7263 5.54953
+ 23 128.22 1284 7 0 1.60457 76.8977 4.14985
+ 23 104.514 907 6 1 1.45349 80.7242 -24.45
+ 23 125.997 1304 6 0 1.53375 80.8703 -25.8506
+ 23 60.7794 912 5 1 2.4678 83.658 -54.45
+ 23 57.0417 911 5 1 2.44995 83.6936 -54.6375
+ 23 98.7383 1319 5 0 2.30055 83.9322 -55.85
+ 23 125.433 895 4 1 -0.957966 88.9579 -84.45
+ 23 130.344 1346 4 0 -1.21301 89.2832 -85.85
+ 23 111.549 872 3 1 -5.61165 94.5803 -114.451
+ 23 18.484 871 3 1 -5.65 94.641 -114.782
+ 23 120.621 1373 3 0 -5.78201 94.8221 -115.85
+ 23 175.701 850 2 1 -9.88341 99.7127 -144.45
+ 23 25.8674 1398 2 0 -10.1606 99.9337 -145.85
+ 23 98.6015 1399 2 0 -10.181 99.95 -145.954
+ 23 173.178 822 1 1 -15.574 103.888 -174.45
+ 23 11.4625 821 1 1 -15.65 103.856 -174.806
+ 23 164.828 1418 1 0 -15.8709 103.782 -175.85
+ 23 28.7766 793 0 1 -21.417 100.811 -204.45
+ 23 101.444 792 0 1 -21.45 100.769 -204.542
+ 23 131.108 1399 0 0 -21.9958 100.134 -205.85
+ 23 1.4347 1398 0 0 -22.167 99.95 -206.244
+ 23 132.608 906 6 1 1.44759 80.7268 -24.45
+ 23 84.4222 1306 6 0 0.910319 81.3419 -25.85
+ 23 42.0408 1307 6 0 0.758541 81.45 -26.1113
+ 23 33.5342 1325 2 0 -14.2619 85.25 -146.192
+ 23 133.635 1417 2 0 2.00655 103.669 -146.25
+ 23 3.22773 908 8 1 1.85 74.769 35.169
+ 23 32.3396 1274 8 0 1.68715 75.0243 34.1495
+ 23 68.4789 1275 8 0 1.67119 75.05 34.0248
+ 23 147.656 890 7 1 -1.90729 81.8445 5.54969
+ 23 77.7729 1309 7 0 0.95793 81.8605 4.15
+ 23 256.871 1308 7 0 1.16558 81.85 4.0607
+ 23 375.665 997 6 1 19.5975 73.076 -24.45
+ 23 17.3214 1273 11 0 1.90902 74.6501 123.759
+Number of digits in this event = 65
Using G4ParticleGun ...
-7.38952 LIN
+3.52911 LIN
e-
Event: 24
-Number of tracker hits in this event = 98
- 24 146.45 369 9 1 -106.316 57.9349 65.55
- 24 131.158 1189 9 0 -106.316 57.9345 64.15
- 24 103.276 369 8 1 -106.304 57.9254 35.55
- 24 112.06 1189 8 0 -106.303 57.9253 34.15
- 24 137.129 369 7 1 -106.277 57.9202 5.55
- 24 105.725 1189 7 0 -106.277 57.9242 4.15
- 24 139.927 369 6 1 -106.267 58.0202 -24.45
- 24 114.637 1189 6 0 -106.268 58.0288 -25.85
- 24 115.212 369 5 1 -106.284 58.2102 -54.45
- 24 112.809 1190 5 0 -106.287 58.2171 -55.85
- 24 325.543 368 4 1 -106.352 58.358 -84.45
- 24 135.233 1191 4 0 -106.355 58.3634 -85.85
- 24 780.04 368 3 1 -106.412 58.4645 -114.45
- 24 222.298 1192 3 0 -106.416 58.4716 -115.85
- 24 193.568 368 2 1 -106.501 58.6325 -144.45
- 24 136.143 1192 2 0 -106.499 58.6464 -145.85
- 24 343.2 1193 2 0 -106.498 58.65 -146.207
- 24 104.841 368 1 1 -106.452 58.941 -174.45
- 24 114.576 1194 1 0 -106.455 58.9557 -175.85
- 24 341.851 368 0 1 -106.507 59.2544 -204.45
- 24 227.295 1196 0 0 -106.508 59.2699 -205.85
- 24 67.0733 1262 2 0 -140.166 72.5391 -146.25
- 24 107.56 1263 2 0 -140.173 72.65 -145.923
- 24 109.121 206 2 1 -138.831 74.3168 -144.85
- 24 27.4841 1273 2 0 -139.047 74.8321 -145.85
- 24 112.584 1195 0 0 -106.496 59.2379 -205.85
- 24 422.81 1191 3 0 -106.422 58.45 -116.102
- 24 1.2001 1108 1 0 -100.516 41.85 -176.117
- 24 87.004 427 0 1 -94.6374 30.3212 -204.45
- 24 184.513 367 2 1 -106.55 58.8543 -144.594
- 24 51.3064 1200 2 0 -106.772 60.132 -145.85
- 24 95.9821 1201 2 0 -106.795 60.25 -145.963
- 24 68.816 1202 2 0 -106.822 60.45 -146.127
- 24 68.7982 346 1 1 -110.877 91.8014 -174.45
- 24 252.056 345 1 1 -110.95 91.6951 -174.639
- 24 239.446 344 1 1 -111.15 91.4272 -174.579
- 24 53.3549 449 0 0 -110.73 -90.15 -205.935
- 24 66.5762 448 0 0 -110.771 -90.35 -205.976
- 24 114.658 447 0 0 -110.861 -90.55 -206.101
- 24 75.4993 446 0 0 -111.06 -90.7503 -206.225
- 24 502.943 386 0 0 -137.043 -102.762 -206.25
- 24 6.50689 387 0 0 -137.265 -102.75 -206.067
- 24 255.918 1188 3 0 -106.597 57.7275 -115.85
- 24 25.7438 1187 3 0 -106.621 57.65 -116.149
- 24 122.259 351 2 1 -109.794 59.4229 -144.45
- 24 3.02192 352 2 1 -109.75 59.4003 -144.841
- 24 108.029 1196 2 0 -109.598 59.3134 -145.85
- 24 30.0032 379 1 1 -104.166 57.5661 -174.45
- 24 103.93 380 1 1 -104.15 57.586 -174.51
- 24 38.2075 1189 1 0 -103.892 58.0108 -175.85
- 24 80.4635 1190 1 0 -103.869 58.05 -175.966
- 24 103.599 401 0 1 -99.9271 72.2055 -204.45
- 24 74.4995 1260 0 0 -99.9472 72.0738 -205.85
- 24 42.0399 1259 0 0 -99.9412 72.05 -206.067
- 24 255.147 369 4 1 -106.193 57.89 -84.45
- 24 215.322 1189 4 0 -106.193 57.8879 -85.85
- 24 112.374 369 3 1 -106.189 57.8484 -114.45
- 24 123.421 369 2 1 -106.177 57.8009 -144.45
- 24 110.404 1188 2 0 -106.178 57.7975 -145.85
- 24 116.901 369 1 1 -106.195 57.7221 -174.45
- 24 321.714 1188 1 0 -106.195 57.7226 -175.85
- 24 114.831 369 0 1 -106.196 57.7372 -204.45
- 24 111.033 1188 0 0 -106.196 57.7403 -205.85
- 24 73.539 538 9 0 -106.241 -72.333 63.75
- 24 55.6697 1187 1 0 -106.735 57.65 -176.235
- 24 76.4738 366 2 1 -106.815 58.8302 -144.45
- 24 117.2 408 1 1 -98.4491 57.6079 -174.45
- 24 23.1489 1185 1 0 -98.3067 57.0831 -175.85
- 24 98.6638 1184 1 0 -98.2999 57.0499 -175.949
- 24 168.477 389 0 1 -102.311 52.3176 -204.451
- 24 10.4023 1169 0 0 -102.081 54.0134 -205.85
- 24 60.4016 1170 0 0 -102.074 54.05 -205.88
- 24 150.825 1171 0 0 -102.039 54.2503 -206.011
- 24 92.8702 1172 0 0 -102.016 54.45 -206.073
- 24 107.882 1173 0 0 -101.977 54.65 -206.139
- 24 46.7889 1174 0 0 -101.93 54.85 -206.197
- 24 34.1177 1475 0 0 -76.402 115.246 -206.25
- 24 88.0691 1476 0 0 -76.3244 115.35 -206.168
- 24 92.2803 1477 0 0 -76.1626 115.55 -206.006
- 24 125.116 524 0 1 -75.2044 117.095 -204.85
- 24 122.574 525 0 1 -75.05 117.397 -204.668
- 24 116.191 1569 1 0 -65.7997 134.036 -176.25
- 24 218.3 1570 1 0 -65.7273 134.15 -176.079
- 24 49.8863 1571 1 0 -65.6155 134.35 -175.892
- 24 142.656 587 1 1 -62.4822 141.538 -174.85
- 24 461.027 588 1 1 -62.45 141.622 -174.831
- 24 562.874 589 1 1 -62.25 141.993 -174.655
- 24 171.963 1194 2 0 -106.272 58.8503 -146.046
- 24 142.549 366 1 1 -106.842 60.6018 -174.45
- 24 120.838 1204 1 0 -106.819 60.8768 -175.85
- 24 108.628 378 0 1 -104.402 68.3098 -204.45
- 24 138.286 1241 0 0 -104.522 68.3655 -205.85
- 24 220.273 365 1 1 -107.107 59.4413 -174.45
- 24 288.268 1197 1 0 -107.123 59.466 -175.85
- 24 158.777 363 0 1 -107.474 59.9326 -204.45
- 24 118.711 1199 0 0 -107.487 59.9632 -205.85
- 24 139.104 364 0 1 -107.248 60.2555 -204.45
- 24 100.734 1201 0 0 -107.258 60.3031 -205.85
-Number of digits in this event = 43
+Number of tracker hits in this event = 58
+ 24 207.515 604 10 1 -59.0703 -62.4161 95.55
+ 24 146.757 588 10 0 -59.0691 -62.418 94.15
+ 24 85.7022 604 9 1 -59.0502 -62.4657 65.55
+ 24 33.9963 605 9 1 -59.05 -62.467 65.2837
+ 24 209.634 587 9 0 -59.0488 -62.4727 64.15
+ 24 148.95 605 8 1 -59.0158 -62.6175 35.55
+ 24 123.7 587 8 0 -59.0142 -62.6256 34.15
+ 24 142.85 605 7 1 -58.9852 -62.7949 5.55
+ 24 137.728 586 7 0 -58.9821 -62.8063 4.15
+ 24 266.3 605 6 1 -58.9173 -63.0303 -24.45
+ 24 197.255 585 6 0 -58.9137 -63.0406 -25.85
+ 24 144.385 606 5 1 -58.8326 -63.2466 -54.45
+ 24 113.566 583 5 0 -58.8297 -63.2571 -55.85
+ 24 182.105 606 4 1 -58.7689 -63.4797 -84.45
+ 24 118.387 582 4 0 -58.7683 -63.494 -85.85
+ 24 123.353 606 3 1 -58.7287 -63.8112 -114.45
+ 24 150.236 581 3 0 -58.728 -63.827 -115.85
+ 24 279.291 606 2 1 -58.7184 -64.1545 -144.45
+ 24 128.892 579 2 0 -58.7183 -64.1698 -145.85
+ 24 125.987 606 1 1 -58.7166 -64.4841 -174.45
+ 24 129.681 577 1 0 -58.7174 -64.5004 -175.85
+ 24 151.584 606 0 1 -58.7213 -64.8284 -204.45
+ 24 157.182 576 0 0 -58.7241 -64.8437 -205.85
+ 24 233.559 580 2 0 -58.7042 -63.9998 -145.85
+ 24 41.0949 600 1 1 -60.0414 -66.1917 -174.45
+ 24 108.29 599 1 1 -60.05 -66.1924 -174.567
+ 24 112.585 569 1 0 -60.1501 -66.2241 -175.85
+ 24 75.8213 586 0 1 -62.8223 -67.0508 -204.451
+ 24 92.2818 585 0 1 -62.85 -67.0713 -204.714
+ 24 130.152 564 0 0 -62.9576 -67.117 -205.85
+ 24 67.4946 561 0 0 -62.9718 -67.6932 -205.85
+ 24 60.3608 560 0 0 -62.9761 -67.85 -206.036
+ 24 25.8488 454 0 0 -85.475 -89.2193 -206.25
+ 24 184.128 453 0 0 -85.5143 -89.2502 -206.223
+ 24 113.755 470 0 1 -86.0223 -89.5925 -204.85
+ 24 103.235 607 2 1 -58.6499 -63.9182 -144.491
+ 24 48.9515 627 1 1 -54.575 -66.7443 -174.45
+ 24 79.7016 628 1 1 -54.45 -66.7418 -174.596
+ 24 4.33439 629 1 1 -54.25 -66.7135 -174.834
+ 24 167.912 567 1 0 -53.3799 -66.5159 -175.85
+ 24 2.81621 568 1 0 -52.9979 -66.45 -176.238
+ 24 6.88003 375 1 0 0.725069 -105.128 -176.25
+ 24 88.9142 374 1 0 0.740752 -105.15 -176.234
+ 24 59.046 373 1 0 0.881471 -105.35 -176.083
+ 24 51.2739 372 1 0 1.02101 -105.55 -175.943
+ 24 41.6987 911 1 1 2.38738 -107.57 -174.85
+ 24 146.922 912 1 1 2.45 -107.681 -174.79
+ 24 154.985 913 1 1 2.65 -108.075 -174.616
+ 24 129.02 914 1 1 2.94523 -108.88 -174.45
+ 24 161.827 915 1 1 3.05 -109.038 -174.715
+ 24 47.7575 351 1 0 3.65429 -109.866 -175.85
+ 24 93.3059 350 1 0 3.7102 -109.95 -175.965
+ 24 26.1156 931 0 1 6.42746 -122.116 -204.45
+ 24 138.135 932 0 1 6.45 -122.116 -204.502
+ 24 37.8312 292 0 0 7.09475 -121.633 -205.85
+ 24 223.894 293 0 0 7.17182 -121.55 -205.98
+ 24 210.677 725 0 0 -108.08 -34.9778 -206.25
+ 24 17.7782 726 0 0 -108.279 -34.85 -206.163
+Number of digits in this event = 32
Using G4ParticleGun ...
-1.98944 LIN
+4.02028 LIN
e-
Event: 25
-Number of tracker hits in this event = 57
- 25 151.343 1599 8 1 140.112 20.9046 35.55
- 25 115.571 1004 8 0 140.112 20.906 34.15
- 25 144.712 1599 7 1 140.104 20.9158 5.55
- 25 148.214 1004 7 0 140.105 20.9164 4.15
- 25 193.035 1599 6 1 140.14 20.9249 -24.45
- 25 100.591 1004 6 0 140.138 20.9225 -25.85
- 25 110.992 1599 5 1 140.108 20.8746 -54.45
- 25 105.306 1004 5 0 140.105 20.8708 -55.85
- 25 343.933 1599 4 1 140.027 20.7923 -84.45
- 25 223.446 1003 4 0 140.029 20.7972 -85.85
- 25 286.768 1599 3 1 140.056 20.9175 -114.45
- 25 217.229 1004 3 0 140.056 20.9219 -115.85
- 25 184.742 1599 2 1 140.082 21.0119 -144.45
- 25 186.148 1004 2 0 140.078 21.0159 -145.85
- 25 111.905 1599 1 1 139.995 21.1268 -174.45
- 25 141.655 1005 1 0 139.994 21.1306 -175.85
- 25 115.424 1598 0 1 139.946 21.2055 -204.45
- 25 134.098 1005 0 0 139.949 21.2166 -205.85
- 25 116.89 1004 4 0 140.026 20.8918 -85.85
- 25 117.341 1596 2 1 139.541 20.8105 -144.45
- 25 129.224 1003 2 0 139.568 20.8021 -145.85
- 25 155.655 1600 1 1 140.231 20.5993 -174.45
- 25 184.463 1002 1 0 140.265 20.5782 -175.85
- 25 153.108 1602 0 1 140.739 20.0423 -204.45
- 25 139.455 999 0 0 140.749 20.0139 -205.85
- 25 106.145 1615 3 1 143.18 19.2008 -114.45
- 25 107.478 995 3 0 143.45 19.1302 -115.85
- 25 165.796 1647 2 1 149.62 17.499 -144.45
- 25 135.619 987 2 0 150.013 17.5741 -145.85
- 25 112.68 1680 1 1 156.259 18.922 -174.45
- 25 45.7552 1679 1 1 156.15 19.2382 -174.718
- 25 81.2582 1003 1 0 155.642 20.65 -175.959
- 25 50.2207 1004 1 0 155.573 20.85 -176.14
- 25 240.568 1616 0 1 143.37 54.1983 -204.45
- 25 103.509 1181 0 0 143.903 56.2511 -205.851
- 25 67.0685 1182 0 0 143.952 56.45 -206.009
- 25 28.2823 1183 0 0 144 56.65 -206.189
- 25 88.4685 1350 0 0 175.849 90.15 -206.214
- 25 92.627 1351 0 0 176.045 90.35 -206.051
- 25 23.1528 1783 0 1 176.916 91.5666 -204.85
- 25 112.907 1784 0 1 176.95 91.6019 -204.794
- 25 352.245 1785 0 1 177.322 91.5458 -204.45
- 25 228.419 1786 0 1 177.35 91.3322 -204.695
- 25 92.15 1787 0 1 177.55 91.3985 -204.78
- 25 296.687 1618 0 1 143.804 53.8079 -204.45
- 25 36.7898 1159 0 0 144.521 51.9492 -205.85
- 25 79.6086 1158 0 0 144.579 51.8498 -205.914
- 25 84.1054 1157 0 0 144.686 51.6491 -206.072
- 25 46.9336 1156 0 0 144.814 51.4498 -206.193
- 25 290.478 1601 1 1 140.508 21.4201 -174.451
- 25 5.93149 1000 1 0 140.656 20.062 -175.85
- 25 87.348 999 1 0 140.657 20.0496 -175.862
- 25 67.6104 998 1 0 140.665 19.8499 -176.047
- 25 15.9446 997 1 0 140.718 19.6495 -176.2
- 25 123.244 1008 1 0 140.409 21.6873 -175.851
- 25 135.829 1594 0 1 139.015 25.7201 -204.451
- 25 332.756 1025 0 0 138.956 25.2477 -205.85
-Number of digits in this event = 29
+Number of tracker hits in this event = 39
+ 25 131.322 1494 8 1 118.968 65.8572 35.55
+ 25 101.364 1229 8 0 118.968 65.856 34.15
+ 25 139.657 1494 7 1 118.965 65.8351 5.55
+ 25 128.313 1228 7 0 118.966 65.8352 4.15
+ 25 100.969 1494 6 1 118.965 65.8314 -24.45
+ 25 102.282 1228 6 0 118.966 65.8363 -25.85
+ 25 126.301 1494 5 1 118.983 65.9271 -54.45
+ 25 110.138 1229 5 0 118.985 65.9303 -55.85
+ 25 129 1494 4 1 119.022 65.9895 -84.45
+ 25 161.772 1229 4 0 119.024 65.9955 -85.85
+ 25 351.051 1494 3 1 119.049 66.1221 -114.45
+ 25 160.814 1230 3 0 119.047 66.1337 -115.85
+ 25 149.166 1494 2 1 118.999 66.3742 -144.45
+ 25 108.818 1231 2 0 118.985 66.3886 -145.85
+ 25 180.353 1492 1 1 118.685 66.7313 -174.45
+ 25 126.353 1233 1 0 118.659 66.7464 -175.85
+ 25 98.2623 1489 0 1 118.118 67.0681 -204.45
+ 25 147.366 1235 0 0 118.095 67.0862 -205.85
+ 25 235.201 1232 0 0 119.212 66.5155 -205.889
+ 25 1.51632 1198 0 0 140.779 59.7524 -206.25
+ 25 108.308 1285 8 0 -32.2709 77.1744 33.75
+ 25 103.292 1286 8 0 -32.2129 77.25 33.7603
+ 25 54.4993 1493 3 1 118.95 65.7579 -114.453
+ 25 79.5707 1492 3 1 118.75 65.8085 -114.485
+ 25 65.9761 1491 3 1 118.549 65.8891 -114.54
+ 25 64.2897 1490 3 1 118.349 65.8695 -114.597
+ 25 61.8337 1489 3 1 118.15 65.8546 -114.565
+ 25 57.6715 1488 3 1 117.95 65.9199 -114.491
+ 25 60.0106 1487 3 1 117.75 66.0478 -114.525
+ 25 215.515 1486 3 1 117.55 66.1279 -114.482
+ 25 78.4124 1485 3 1 117.349 66.0883 -114.505
+ 25 298.434 1493 1 1 118.921 65.8111 -174.451
+ 25 247.721 1228 1 0 118.864 65.7325 -175.85
+ 25 107.017 1488 0 1 117.941 63.9175 -204.45
+ 25 114.235 1219 0 0 117.938 63.8957 -205.85
+ 25 129.995 1218 0 0 117.937 63.8497 -205.966
+ 25 223.173 1073 0 0 109.044 34.7321 -206.25
+ 25 157.56 1491 0 1 118.434 66.3185 -204.45
+ 25 123.15 1231 0 0 118.371 66.3702 -205.85
+Number of digits in this event = 23
Using G4ParticleGun ...
-8.99576 LIN
+6.51173 LIN
e-
Event: 26
-Number of tracker hits in this event = 33
- 26 143.527 245 8 1 -131.115 43.8994 35.55
- 26 106.643 1119 8 0 -131.115 43.8994 34.15
- 26 102.846 245 7 1 -131.119 43.8969 5.55
- 26 166.474 1119 7 0 -131.119 43.8972 4.15
- 26 122.364 245 6 1 -131.13 43.9077 -24.45
- 26 119.46 1119 6 0 -131.13 43.9081 -25.85
- 26 443.127 245 5 1 -131.131 43.9169 -54.45
- 26 372.631 1119 5 0 -131.131 43.9169 -55.85
- 26 241.03 245 4 1 -131.131 43.9188 -84.45
- 26 535.064 1119 4 0 -131.132 43.918 -85.85
- 26 404.407 245 3 1 -131.147 43.8975 -114.45
- 26 245.426 1119 3 0 -131.146 43.8951 -115.85
- 26 299.398 245 2 1 -131.137 43.8421 -144.45
- 26 232.455 1118 2 0 -131.136 43.8388 -145.85
- 26 263.051 245 1 1 -131.116 43.7734 -174.45
- 26 124.575 1118 1 0 -131.115 43.77 -175.85
- 26 99.8715 245 0 1 -131.092 43.6983 -204.45
- 26 103.537 1118 0 0 -131.09 43.6951 -205.85
- 26 226.11 123 1 1 -155.35 24.1362 -174.669
- 26 145.659 1119 2 0 -131.14 44.0113 -145.85
- 26 123.624 1119 1 0 -131.151 44.0247 -175.85
- 26 341.825 244 0 1 -131.221 44.0614 -204.45
- 26 108.665 1120 0 0 -131.223 44.0626 -205.85
- 26 185.971 1607 0 0 -97.1132 141.55 -206.244
- 26 65.5835 1118 4 0 -131.05 43.85 -86.0194
- 26 116.153 244 4 1 -131.166 43.8832 -84.45
- 26 99.0703 1118 3 0 -131.149 43.8031 -115.85
- 26 99.8781 244 2 1 -131.192 43.6884 -144.45
- 26 160.851 244 1 1 -131.193 43.361 -174.45
- 26 160.05 1116 1 0 -131.191 43.3443 -175.85
- 26 144.979 1114 0 0 -131.175 42.9885 -205.85
- 26 149.509 119 0 1 -156.15 152.252 -204.756
- 26 108.049 244 5 1 -131.15 43.9195 -54.6033
-Number of digits in this event = 24
+Number of tracker hits in this event = 41
+ 26 128.527 629 11 1 -54.1732 -21.3955 125.55
+ 26 177.3 793 11 0 -54.1762 -21.3961 124.15
+ 26 116.945 629 10 1 -54.2355 -21.4096 95.55
+ 26 132.66 793 10 0 -54.2407 -21.4105 94.15
+ 26 109.799 628 9 1 -54.3459 -21.4245 65.55
+ 26 226.543 793 9 0 -54.3519 -21.4214 64.15
+ 26 96.3498 627 8 1 -54.457 -21.3726 35.55
+ 26 101.104 793 8 0 -54.4617 -21.3714 34.15
+ 26 219.535 627 7 1 -54.5573 -21.3477 5.55
+ 26 105.048 793 7 0 -54.5633 -21.3497 4.15
+ 26 140.447 626 6 1 -54.6827 -21.3874 -24.45
+ 26 118.408 793 6 0 -54.6875 -21.3909 -25.85
+ 26 111.865 626 5 1 -54.7859 -21.4648 -54.45
+ 26 132.096 792 5 0 -54.7901 -21.4681 -55.85
+ 26 127.378 625 4 1 -54.896 -21.5192 -84.45
+ 26 170.048 792 4 0 -54.9117 -21.5136 -85.85
+ 26 153.864 624 3 1 -55.2139 -21.3874 -114.45
+ 26 126.824 793 3 0 -55.2215 -21.3724 -115.85
+ 26 121.733 623 2 1 -55.3207 -21.0371 -144.45
+ 26 108.529 795 2 0 -55.3242 -21.0228 -145.85
+ 26 138.658 623 1 1 -55.378 -20.7358 -174.45
+ 26 133.979 796 1 0 -55.3753 -20.7344 -175.85
+ 26 134.019 623 0 1 -55.2962 -20.7422 -204.45
+ 26 117.152 796 0 0 -55.3023 -20.752 -205.85
+ 26 69.6823 585 4 1 -62.85 58.9771 -84.7452
+ 26 129.02 586 4 1 -62.85 59.0624 -84.5352
+ 26 132.255 596 0 1 -60.6993 25.5441 -204.85
+ 26 88.4796 302 1 1 -119.55 16.4704 -174.641
+ 26 87.4403 1405 6 1 101.21 -102.262 -24.85
+ 26 278.525 629 2 1 -54.244 -21.4137 -144.45
+ 26 359.593 793 2 0 -54.2468 -21.4187 -145.85
+ 26 293.772 628 1 1 -54.3214 -21.5569 -174.45
+ 26 196.057 792 1 0 -54.3224 -21.5576 -175.85
+ 26 259.549 628 0 1 -54.2776 -21.5767 -204.45
+ 26 227.506 792 0 0 -54.2694 -21.5743 -205.85
+ 26 111.688 486 6 0 -16.3527 -82.8378 -26.25
+ 26 11.1919 1492 6 0 -0.525824 118.669 -26.25
+ 26 111.142 793 1 0 -54.3515 -21.4056 -175.85
+ 26 85.4053 600 1 0 131.686 -60.0045 -176.25
+ 26 16.9325 893 1 0 94.8229 -1.43117 -176.25
+ 26 218.804 644 1 0 -91.333 -51.1559 -176.25
+Number of digits in this event = 27
Using G4ParticleGun ...
-7.89801 LIN
+4.21822 LIN
e-
Event: 27
-Number of tracker hits in this event = 33
- 27 123.168 319 9 1 -116.259 -60.1136 65.55
- 27 124.906 599 9 0 -116.259 -60.114 64.15
- 27 116.045 319 8 1 -116.262 -60.1245 35.55
- 27 167.336 599 8 0 -116.261 -60.1234 34.15
- 27 248.162 319 7 1 -116.248 -60.101 5.55
- 27 147.699 599 7 0 -116.248 -60.1005 4.15
- 27 120.737 319 6 1 -116.244 -60.0908 -24.45
- 27 123.587 599 6 0 -116.243 -60.0907 -25.85
- 27 112.255 319 5 1 -116.238 -60.0861 -54.45
- 27 124.49 599 5 0 -116.238 -60.0861 -55.85
- 27 186.503 319 4 1 -116.241 -60.0816 -84.45
- 27 172.418 599 4 0 -116.24 -60.0809 -85.85
- 27 130.812 319 3 1 -116.233 -60.066 -114.45
- 27 112.851 599 3 0 -116.234 -60.0658 -115.85
- 27 148.681 319 2 1 -116.251 -60.0572 -144.45
- 27 113.652 599 2 0 -116.252 -60.0569 -145.85
- 27 191.23 319 1 1 -116.274 -60.0494 -174.45
- 27 101.696 600 1 0 -116.275 -60.0485 -175.85
- 27 404.161 319 0 1 -116.288 -60.0278 -204.45
- 27 207.483 600 0 0 -116.287 -60.0266 -205.85
- 27 153.717 320 0 1 -116.15 -59.6517 -204.646
- 27 25.4183 607 0 0 -115.72 -58.5151 -205.85
- 27 101.325 608 0 0 -115.698 -58.45 -205.928
- 27 35.8289 609 0 0 -115.626 -58.2495 -206.157
- 27 24.2081 709 0 0 -99.1156 -38.0722 -206.25
- 27 138.406 710 0 0 -99.0908 -38.0498 -206.209
- 27 52.883 711 0 0 -98.9134 -37.8497 -205.978
- 27 137.579 405 0 1 -98.9874 -35.9806 -204.85
- 27 63.5497 406 0 1 -98.95 -35.5204 -204.584
- 27 52.8036 1023 2 0 -68.8623 24.65 -146.011
- 27 268.698 601 0 0 -115.766 -59.7635 -205.85
- 27 120.007 599 0 0 -116.427 -60.1923 -205.85
- 27 123.974 318 0 1 -116.35 -60.0203 -204.517
-Number of digits in this event = 23
+Number of tracker hits in this event = 31
+ 27 121.807 1491 8 1 118.447 83.682 35.55
+ 27 107.82 1318 8 0 118.447 83.6799 34.15
+ 27 118.174 1491 7 1 118.438 83.6472 5.55
+ 27 220.598 1317 7 0 118.438 83.6473 4.15
+ 27 262.127 1491 6 1 118.446 83.6481 -24.45
+ 27 124.497 1317 6 0 118.447 83.6492 -25.85
+ 27 145.868 1491 5 1 118.448 83.6745 -54.45
+ 27 126.142 1318 5 0 118.446 83.6759 -55.85
+ 27 137.224 1491 4 1 118.428 83.7004 -84.45
+ 27 95.1745 1318 4 0 118.429 83.7022 -85.85
+ 27 139.828 1491 3 1 118.446 83.7363 -114.45
+ 27 106.957 1318 3 0 118.443 83.7432 -115.85
+ 27 116.127 1491 2 1 118.414 83.9035 -144.45
+ 27 110.204 1319 2 0 118.413 83.9105 -145.85
+ 27 371.368 1491 1 1 118.356 84.0458 -174.45
+ 27 100.238 1320 1 0 118.362 84.0708 -175.85
+ 27 103.042 1491 0 1 118.514 84.5967 -204.45
+ 27 127.803 1322 0 0 118.518 84.6199 -205.85
+ 27 46.0564 1318 2 0 118.517 83.7754 -146.178
+ 27 344.477 1492 1 1 118.581 83.8161 -174.45
+ 27 254.365 1318 1 0 118.585 83.8172 -175.85
+ 27 276.374 1492 0 1 118.672 83.8378 -204.45
+ 27 298.488 1318 0 0 118.673 83.8374 -205.85
+ 27 89.2874 1493 0 1 118.75 83.8058 -204.5
+ 27 121.937 1494 0 1 118.95 83.778 -204.685
+ 27 228.401 1330 0 0 119.729 86.0795 -205.85
+ 27 214.089 1331 0 0 119.774 86.25 -205.956
+ 27 97.5439 1319 0 0 118.712 83.9866 -205.85
+ 27 125.923 1319 1 0 118.441 83.9093 -175.85
+ 27 144.654 1484 0 1 117.019 85.9302 -204.45
+ 27 159.828 1329 0 0 116.984 85.9793 -205.85
+Number of digits in this event = 22
Using G4ParticleGun ...
-9.49187 LIN
+1.21027 LIN
e-
Event: 28
-Number of tracker hits in this event = 84
- 28 129.068 911 11 1 2.4184 -23.2442 125.55
- 28 93.3237 784 11 0 2.41864 -23.2443 124.15
- 28 143.008 911 10 1 2.422 -23.2481 95.55
- 28 124.019 784 10 0 2.42247 -23.2475 94.15
- 28 155.59 911 9 1 2.43299 -23.2339 65.55
- 28 118.397 784 9 0 2.43182 -23.2338 64.15
- 28 165.746 911 8 1 2.40598 -23.2362 35.55
- 28 118.718 784 8 0 2.40433 -23.2369 34.15
- 28 132.661 911 7 1 2.36902 -23.2537 5.55
- 28 127.144 783 7 0 2.36752 -23.2529 4.15
- 28 126.668 911 6 1 2.33512 -23.2414 -24.45
- 28 127.526 784 6 0 2.33415 -23.2406 -25.85
- 28 117.868 911 5 1 2.31497 -23.2258 -54.45
- 28 135.069 784 5 0 2.31505 -23.225 -55.85
- 28 177.998 911 4 1 2.31522 -23.2063 -84.45
- 28 399.564 784 4 0 2.31498 -23.2044 -85.85
- 28 145.974 911 3 1 2.31162 -23.1656 -114.45
- 28 412.58 784 3 0 2.31108 -23.1642 -115.85
- 28 228.473 911 2 1 2.30342 -23.1385 -144.45
- 28 238.916 784 2 0 2.30232 -23.1368 -145.85
- 28 157.389 911 1 1 2.27642 -23.1006 -174.45
- 28 118.23 784 1 0 2.2756 -23.0991 -175.85
- 28 114.078 911 0 1 2.2573 -23.0739 -204.45
- 28 159.599 784 0 0 2.25769 -23.0725 -205.85
- 28 53.3562 1283 8 1 76.6905 11.1842 35.15
- 28 134.616 156 4 0 -21.0598 -148.75 -85.9102
- 28 194.305 107 14 1 -158.75 -67.0674 215.233
- 28 240.009 910 2 1 2.24994 -23.1981 -144.55
- 28 16.8173 720 2 0 -9.86321 -36.0272 -146.25
- 28 115.695 719 2 0 -9.87884 -36.0501 -146.193
- 28 235.548 849 2 1 -10.211 -36.5356 -144.85
- 28 153.501 848 2 1 -10.25 -36.5933 -144.694
- 28 70.5202 846 2 1 -10.8102 -37.2692 -144.45
- 28 69.6101 847 2 1 -10.65 -37.4208 -144.575
- 28 42.833 850 2 1 -10.0497 -38.2386 -144.57
- 28 3.98942 909 2 1 2.05 -23.0542 -144.835
- 28 149.07 786 2 0 1.37817 -22.703 -145.85
- 28 3.71871 787 2 0 1.15173 -22.65 -146.176
- 28 140.561 729 2 0 -50.98 -34.0803 -146.25
- 28 12.5348 728 2 0 -51.0326 -34.25 -145.914
- 28 73.2489 645 2 1 -51.0103 -34.7191 -144.85
- 28 323.037 644 2 1 -51.0503 -34.7213 -144.682
- 28 120.424 744 6 1 -31.1288 -179.476 -24.85
- 28 355.541 912 4 1 2.5115 -23.1472 -84.45
- 28 105.635 905 3 1 1.08069 -23.429 -114.45
- 28 100.33 782 3 0 0.981304 -23.4839 -115.85
- 28 122.406 894 2 1 -1.14647 -24.7418 -144.45
- 28 119.799 776 2 0 -1.21549 -24.7472 -145.85
- 28 116.349 887 1 1 -2.50052 -24.6014 -174.45
- 28 133.407 777 1 0 -2.5751 -24.5666 -175.85
- 28 100.833 880 0 1 -3.85047 -23.6365 -204.45
- 28 123.671 782 0 0 -3.84226 -23.6116 -205.85
- 28 65.6161 36 3 0 34.3871 -172.77 -116.25
- 28 121.257 918 3 1 3.76449 -23.1437 -114.45
- 28 110.802 924 2 1 4.97443 -24.4278 -144.45
- 28 153.435 777 2 0 5.07215 -24.4709 -145.85
- 28 125.192 931 1 1 6.28707 -25.2814 -174.45
- 28 111.037 773 1 0 6.32692 -25.26 -175.85
- 28 133.796 934 0 1 7.00082 -24.8918 -204.45
- 28 125.855 775 0 0 7.04383 -24.904 -205.85
- 28 279.256 808 0 0 13.6944 -18.3668 -206.25
- 28 144.173 809 0 0 13.4758 -18.25 -205.884
- 28 142.16 767 0 0 40.0698 -26.5207 -206.25
- 28 0.617367 989 4 0 42.5632 18.0463 -85.85
- 28 104.635 580 0 0 -3.14757 -63.85 -206.086
- 28 60.0648 579 0 0 -3.16069 -64.05 -206.163
- 28 9.36292 779 4 0 2.48883 -24.2396 -85.85
- 28 231.676 778 4 0 2.48956 -24.25 -85.8639
- 28 79.4159 777 4 0 2.56799 -24.45 -86.0896
- 28 156.907 787 4 0 58.4711 -22.6371 -86.2499
- 28 102.429 788 4 0 58.7697 -22.4499 -86.0134
- 28 77.8132 1202 4 1 60.4876 -23.0358 -84.85
- 28 572.418 1203 4 1 60.65 -23.0225 -84.7047
- 28 11.6556 1204 4 1 60.85 -22.9123 -84.5492
- 28 180.141 912 3 1 2.5095 -23.2506 -114.45
- 28 64.3943 785 3 0 2.95044 -23.05 -116.041
- 28 94.3843 957 2 1 11.5507 -20.6313 -144.45
- 28 7.54524 958 2 1 11.65 -20.5666 -144.809
- 28 123.232 798 2 0 11.9291 -20.407 -145.85
- 28 44.9488 1002 1 1 20.5821 -14.863 -174.45
- 28 86.9784 1003 1 1 20.65 -14.9119 -174.533
- 28 21.9876 822 1 0 20.8457 -15.6113 -175.85
- 28 107.1 821 1 0 20.8491 -15.6501 -175.915
- 28 117.85 926 2 0 94.6089 5.43645 -146.25
-Number of digits in this event = 47
+Number of tracker hits in this event = 46
+ 28 140.336 729 10 1 -34.1142 88.8746 95.55
+ 28 133.408 1344 10 0 -34.1193 88.8682 94.15
+ 28 164.438 729 9 1 -34.1879 88.694 65.55
+ 28 134.383 1343 9 0 -34.1779 88.7033 64.15
+ 28 133.893 730 8 1 -33.951 88.9033 35.55
+ 28 176.923 1344 8 0 -33.9343 88.9077 34.15
+ 28 108.375 732 7 1 -33.5657 88.998 5.55
+ 28 143.897 1344 7 0 -33.5586 89.0041 4.15
+ 28 133.098 733 6 1 -33.4465 89.1573 -24.45
+ 28 98.4958 1345 6 0 -33.4377 89.1543 -25.85
+ 28 30.7845 733 5 1 -33.2509 89.0786 -54.45
+ 28 107.633 734 5 1 -33.25 89.0788 -54.5388
+ 28 209.362 1345 5 0 -33.236 89.0809 -55.85
+ 28 134.196 735 4 1 -32.9281 89.1301 -84.45
+ 28 140.622 1345 4 0 -32.9199 89.1358 -85.85
+ 28 128.514 736 3 1 -32.77 89.2271 -114.45
+ 28 163.356 1345 3 0 -32.7576 89.2282 -115.85
+ 28 135.598 737 2 1 -32.4797 89.2487 -144.45
+ 28 145.965 1346 2 0 -32.4681 89.2589 -145.85
+ 28 104.188 739 1 1 -32.2366 89.4621 -174.45
+ 28 102.944 1347 1 0 -32.232 89.4655 -175.85
+ 28 97.4778 739 0 1 -32.1406 89.5366 -204.45
+ 28 140.994 1347 0 0 -32.148 89.5322 -205.85
+ 28 56.5514 1765 8 1 173.35 -96.5046 35.3393
+ 28 63.1345 1766 8 1 173.35 -96.6725 35.1794
+ 28 59.483 373 3 0 -118.171 -105.446 -116.25
+ 28 56.9679 1345 7 0 -33.4876 89.05 3.85178
+ 28 54.8098 744 2 1 -31.1535 87.6229 -144.45
+ 28 85.6738 734 6 1 -33.1892 89.1895 -24.4501
+ 28 49.0427 735 6 1 -33.05 89.1593 -24.6727
+ 28 121.842 1344 6 0 -32.3721 88.9735 -25.85
+ 28 195.643 836 5 1 -12.6878 90.8865 -54.45
+ 28 126.883 837 5 1 -12.65 90.848 -54.6582
+ 28 112.908 1351 5 0 -12.3356 90.5103 -55.85
+ 28 166.386 891 4 1 -1.74281 85.2771 -84.45
+ 28 110.246 890 4 1 -1.85 85.1386 -84.6936
+ 28 19.1902 1312 4 0 -4.15562 82.5099 -85.85
+ 28 167.642 1311 4 0 -4.20538 82.4495 -85.8707
+ 28 237.696 1310 4 0 -4.41463 82.25 -85.903
+ 28 22.1603 1309 4 0 -5.16615 82.05 -86.1977
+ 28 84.7326 1228 4 0 -76.4137 65.7049 -86.25
+ 28 148.733 1227 4 0 -76.6504 65.65 -86.041
+ 28 110.527 508 4 1 -78.3356 65.082 -84.85
+ 28 67.5908 507 4 1 -78.45 64.8186 -84.7313
+ 28 75.7623 506 4 1 -78.6501 64.8414 -84.7537
+ 28 235.956 505 4 1 -78.8504 64.8073 -84.746
+Number of digits in this event = 25
Using G4ParticleGun ...
-4.95759 LIN
+3.90497 LIN
e-
Event: 29
-Number of tracker hits in this event = 41
- 29 150.437 1273 10 1 74.7678 -83.5871 95.55
- 29 215.456 482 10 0 74.7669 -83.589 94.15
- 29 118.299 1273 9 1 74.747 -83.6286 65.55
- 29 92.5129 482 9 0 74.7458 -83.63 64.15
- 29 95.5612 1273 8 1 74.7203 -83.6594 35.55
- 29 107.868 481 8 0 74.72 -83.6639 34.15
- 29 128.57 1273 7 1 74.7109 -83.7559 5.55
- 29 106.43 481 7 0 74.7111 -83.7631 4.15
- 29 150.192 1273 6 1 74.714 -83.9129 -24.45
- 29 113.823 480 6 0 74.7149 -83.9196 -25.85
- 29 203.093 1273 5 1 74.7398 -84.0576 -54.45
- 29 145.397 479 5 0 74.7395 -84.0569 -55.85
- 29 123.061 1274 4 1 74.8825 -83.9979 -84.45
- 29 97.7832 480 4 0 74.8745 -83.9994 -85.85
- 29 108.75 1273 3 1 74.7327 -83.9911 -114.45
- 29 221.542 480 3 0 74.7477 -84.0085 -115.85
- 29 154.522 1275 2 1 75.0951 -84.4252 -144.45
- 29 125.949 478 2 0 75.0934 -84.4163 -145.85
- 29 197.579 1275 1 1 75.0821 -84.1641 -174.45
- 29 105.598 479 1 0 75.081 -84.1695 -175.85
- 29 148.482 1275 0 1 75.0649 -84.3675 -204.45
- 29 107.028 478 0 0 75.0681 -84.34 -205.85
- 29 3.10799 697 8 1 -40.5341 -49.2785 35.15
- 29 55.9676 696 8 1 -40.65 -49.2558 35.4345
- 29 472.256 419 1 0 80.2891 -96.1874 -176.25
- 29 16.5682 1277 0 1 75.5881 -85.1586 -204.45
- 29 61.2878 1278 0 1 75.65 -85.1671 -204.483
- 29 55.9121 1279 0 1 75.85 -85.1782 -204.589
- 29 80.1277 1280 0 1 76.05 -85.1612 -204.693
- 29 22.0916 1281 0 1 76.25 -85.1811 -204.799
- 29 197.298 474 0 0 77.9079 -85.0611 -205.851
- 29 110.058 592 0 0 139.149 -61.5482 -206.25
- 29 102.957 593 0 0 139.447 -61.45 -206.075
- 29 106.062 594 0 0 139.708 -61.25 -206.043
- 29 103.207 595 0 0 139.896 -61.05 -206.057
- 29 65.2206 596 0 0 140.151 -60.85 -206.123
- 29 144.826 1267 5 1 73.4982 -85.0723 -54.45
- 29 44.5413 481 5 0 73.2101 -83.7763 -55.85
- 29 58.2346 482 5 0 73.1909 -83.65 -55.9844
- 29 128.646 483 5 0 73.2253 -83.45 -56.1348
- 29 8.38362 484 5 0 73.252 -83.25 -56.2408
-Number of digits in this event = 19
-Using G4ParticleGun ...
-2.86196 LIN
+Number of tracker hits in this event = 172
+ 29 569.617 1330 10 1 86.1501 65.272 95.55
+ 29 140.435 1226 10 0 86.1537 65.2721 94.15
+ 29 126.088 1330 9 1 86.226 65.2711 65.55
+ 29 134.935 1226 9 0 86.2306 65.2719 64.15
+ 29 254.18 1331 8 1 86.3242 65.2825 35.55
+ 29 131.396 1226 8 0 86.3265 65.2823 34.15
+ 29 156.847 1331 7 1 86.3737 65.2826 5.55
+ 29 146.153 1226 7 0 86.3758 65.2826 4.15
+ 29 250.373 1331 6 1 86.4134 65.2739 -24.45
+ 29 626.041 1226 6 0 86.4169 65.2738 -25.85
+ 29 137.348 1332 5 1 86.4958 65.2618 -54.45
+ 29 203.504 1226 5 0 86.4989 65.2608 -55.85
+ 29 109.522 1332 4 1 86.551 65.2395 -84.45
+ 29 114.524 1225 4 0 86.5528 65.2361 -85.85
+ 29 321.218 1332 3 1 86.5873 65.1659 -114.45
+ 29 372.565 1225 3 0 86.5905 65.163 -115.85
+ 29 147.058 1333 2 1 86.6607 65.105 -144.45
+ 29 127.052 1225 2 0 86.6693 65.1005 -145.85
+ 29 120.862 1333 1 1 86.8408 65.0068 -174.45
+ 29 149.255 1224 1 0 86.8519 64.9999 -175.85
+ 29 130.047 1335 0 1 87.0504 64.8464 -204.45
+ 29 157.176 1223 0 0 87.058 64.8333 -205.85
+ 29 25.5416 1591 10 0 -76.3341 138.474 93.75
+ 29 27.4679 1590 10 0 -76.4429 138.35 94.1107
+ 29 86.609 516 10 1 -76.775 137.108 95.15
+ 29 16.8997 1582 10 0 -77.5194 136.596 94.15
+ 29 7.06941 495 10 1 -81.0322 135.527 95.15
+ 29 33.6777 494 10 1 -81.05 135.524 95.1553
+ 29 0.919122 1573 10 0 -82.7899 134.751 94.15
+ 29 235.225 1572 10 0 -82.7923 134.75 94.1484
+ 29 124.328 1410 7 1 102.278 75.8647 5.15
+ 29 52.7565 1409 7 1 102.15 75.9632 5.512
+ 29 111.411 1343 2 1 88.7179 63.0408 -144.45
+ 29 1.08227 1217 2 0 88.4464 63.6483 -145.85
+ 29 110.298 1218 2 0 88.4455 63.65 -145.854
+ 29 169.512 1310 1 1 82.075 78.4885 -174.45
+ 29 99.4324 1295 1 0 82.2214 79.1236 -175.85
+ 29 9.0542 1296 1 0 82.2427 79.25 -176.212
+ 29 176.799 1324 0 1 84.8791 90.15 -204.488
+ 29 231.572 1325 0 1 85.05 90.7554 -204.61
+ 29 164.966 1326 0 1 85.2501 91.2805 -204.598
+ 29 274.676 1327 0 1 85.45 91.7189 -204.508
+ 29 158.147 1328 0 1 85.65 92.1014 -204.511
+ 29 103.028 1329 0 1 85.85 92.5263 -204.685
+ 29 3.23049 1372 0 0 87.1345 94.7388 -205.85
+ 29 95.6891 1373 0 0 87.1408 94.75 -205.856
+ 29 84.0588 1374 0 0 87.2382 94.95 -205.946
+ 29 58.0224 1375 0 0 87.3477 95.1501 -205.967
+ 29 51.5055 1376 0 0 87.4617 95.35 -205.95
+ 29 74.5084 1377 0 0 87.5986 95.5502 -205.94
+ 29 60.8752 1378 0 0 87.7878 95.7504 -205.915
+ 29 48.1877 1379 0 0 87.9469 95.95 -205.869
+ 29 53.5277 1356 0 1 91.414 99.2353 -204.85
+ 29 88.3357 1357 0 1 91.55 99.3864 -204.829
+ 29 178.435 1358 0 1 91.75 99.6409 -204.82
+ 29 116.982 1359 0 1 91.95 99.9688 -204.846
+ 29 18.8733 1436 0 0 96.3937 107.483 -205.85
+ 29 69.636 1437 0 0 96.4377 107.55 -205.859
+ 29 108.884 1438 0 0 96.5581 107.75 -205.873
+ 29 117.819 1439 0 0 96.7044 107.95 -205.879
+ 29 59.5174 1440 0 0 96.8374 108.15 -205.88
+ 29 55.0515 1441 0 0 96.9907 108.35 -205.878
+ 29 46.1259 1442 0 0 97.0814 108.551 -205.888
+ 29 57.9756 1443 0 0 97.0861 108.75 -205.912
+ 29 192.548 1444 0 0 97.0875 108.95 -205.918
+ 29 67.7327 1445 0 0 97.1289 109.15 -205.901
+ 29 59.5501 1446 0 0 97.1929 109.35 -205.885
+ 29 57.6637 1447 0 0 97.2719 109.55 -205.887
+ 29 64.2527 1448 0 0 97.3304 109.75 -205.956
+ 29 43.89 1449 0 0 97.3197 109.95 -206.018
+ 29 52.2401 1450 0 0 97.2986 110.15 -206.096
+ 29 58.4505 1451 0 0 97.2852 110.35 -206.154
+ 29 12.6691 1452 0 0 97.2231 110.55 -206.237
+ 29 7.12284 1369 0 1 93.9811 112.276 -204.85
+ 29 3.94579 1470 0 0 85.5958 114.218 -205.85
+ 29 41.3849 1318 0 1 83.7802 115.703 -204.85
+ 29 40.505 1486 0 0 74.8057 117.486 -205.85
+ 29 126.927 1320 2 1 84.23 64.4307 -144.45
+ 29 119.227 1222 2 0 84.2907 64.5217 -145.85
+ 29 136.957 1325 1 1 85.0708 67.2236 -174.45
+ 29 160.604 1236 1 0 85.0731 67.279 -175.85
+ 29 115.679 1320 0 1 84.1941 69.1481 -204.45
+ 29 119.858 1247 0 0 84.071 69.5196 -205.85
+ 29 114.57 1225 6 0 86.4347 65.2345 -25.85
+ 29 120.179 1341 5 1 88.3908 64.8693 -54.4504
+ 29 176.245 1224 5 0 88.4746 64.884 -55.85
+ 29 84.9729 1321 4 1 84.3328 64.4936 -84.45
+ 29 62.3939 1320 4 1 84.25 64.4386 -84.7105
+ 29 136.179 1220 4 0 83.8211 64.1655 -85.85
+ 29 61.7712 1274 3 1 74.8939 57.5473 -114.45
+ 29 51.0053 1273 3 1 74.85 57.602 -114.682
+ 29 111.383 1188 3 0 74.5929 57.7171 -115.85
+ 29 111.911 1134 3 0 72.8165 46.9965 -116.249
+ 29 193.481 1261 3 1 72.3424 46.4976 -114.85
+ 29 142.09 1336 5 1 87.3002 65.0196 -54.4504
+ 29 2.04065 1229 5 0 87.5179 66.0449 -55.85
+ 29 94.8178 1230 5 0 87.519 66.05 -55.857
+ 29 65.3413 1231 5 0 87.577 66.2502 -56.1121
+ 29 99.8502 1368 4 1 93.7518 89.2348 -84.45
+ 29 44.7894 1369 4 1 93.9501 89.15 -84.7337
+ 29 280.528 1343 4 0 94.8499 88.8154 -85.85
+ 29 175.078 1177 4 0 120.573 55.6499 -86.25
+ 29 63.7942 1176 4 0 120.666 55.45 -86.0468
+ 29 36.6149 1507 4 1 121.658 54.8424 -84.85
+ 29 161.286 1508 4 1 121.75 54.7962 -84.7413
+ 29 112.218 1509 4 1 121.95 54.3845 -84.4656
+ 29 17.7583 1510 4 1 122.15 54.3355 -84.4599
+ 29 32.4271 1342 4 0 95.1174 88.65 -86.0781
+ 29 326.853 1332 8 1 86.45 65.2158 35.3179
+ 29 205.545 1333 4 1 86.6859 65.4971 -84.45
+ 29 217.148 1227 4 0 86.6983 65.4718 -85.85
+ 29 88.5832 1333 3 1 86.7857 64.0532 -114.45
+ 29 28.9574 1220 3 0 86.8795 64.2363 -115.85
+ 29 88.5979 1221 3 0 86.8857 64.25 -115.955
+ 29 463.285 1348 2 1 89.7055 67.3019 -144.45
+ 29 20.9519 1349 2 1 89.85 67.4685 -144.758
+ 29 201.862 1240 2 0 90.3766 68.0591 -145.851
+ 29 33.522 1241 2 0 90.5356 68.25 -146.199
+ 29 5.62741 1420 1 1 104.325 83.6928 -174.45
+ 29 79.4016 1421 1 1 104.35 83.7109 -174.467
+ 29 84.8842 1422 1 1 104.55 83.8448 -174.607
+ 29 71.5748 1423 1 1 104.75 83.9699 -174.748
+ 29 26.9555 1324 1 0 106.572 84.9972 -175.85
+ 29 120.016 1325 1 0 106.657 85.05 -175.899
+ 29 144.317 1326 1 0 106.951 85.2501 -176.058
+ 29 70.7466 1327 1 0 107.219 85.4501 -176.203
+ 29 86.7305 1720 0 1 164.274 126.787 -204.45
+ 29 66.2822 1721 0 1 164.35 126.772 -204.526
+ 29 66.2689 1722 0 1 164.55 126.735 -204.704
+ 29 209.507 1531 0 0 165.983 126.46 -205.85
+ 29 260.272 1335 3 1 87.1788 66.0093 -114.45
+ 29 138.022 1230 3 0 87.1666 66.173 -115.85
+ 29 191.309 1334 2 1 87.0137 69.338 -144.45
+ 29 103.221 1247 2 0 87.0839 69.5431 -145.851
+ 29 126.787 1343 1 1 88.7197 74.2399 -174.45
+ 29 113.954 1272 1 0 88.897 74.5463 -175.85
+ 29 79.6361 1363 0 1 92.9009 80.7388 -204.45
+ 29 58.0458 1364 0 1 92.95 80.7833 -204.679
+ 29 65.1024 1304 0 0 93.1861 81.0026 -205.85
+ 29 52.8617 1305 0 0 93.2346 81.05 -206.097
+ 29 55.6957 1332 6 1 86.4948 65.3687 -24.45
+ 29 121.762 1331 5 1 86.3814 63.5037 -54.45
+ 29 127.438 1219 5 0 86.2875 63.9061 -55.8501
+ 29 67.5174 1326 4 1 85.3398 70.6553 -84.45
+ 29 49.7845 1325 4 1 85.25 70.6061 -84.6655
+ 29 51.4732 1251 4 0 84.7437 70.2906 -85.8501
+ 29 94.2604 1250 4 0 84.6852 70.25 -85.9867
+ 29 186.29 1268 3 1 73.7276 57.4806 -114.45
+ 29 0.548326 1269 3 1 73.85 57.3577 -114.848
+ 29 5.72872 1185 3 0 74.1503 57.0558 -115.85
+ 29 125.726 1184 3 0 74.1562 57.0499 -115.87
+ 29 63.3186 1316 2 1 83.3091 48.689 -144.45
+ 29 93.4067 1317 2 1 83.45 48.672 -144.616
+ 29 153.041 1143 2 0 84.4242 48.6973 -145.85
+ 29 197.871 1432 1 1 106.571 48.6969 -174.45
+ 29 224.032 1431 1 1 106.55 49.2816 -174.688
+ 29 5.088 1166 1 0 105.803 53.4317 -175.85
+ 29 52.5873 1167 1 0 105.8 53.4502 -175.855
+ 29 77.8883 1168 1 0 105.765 53.6504 -175.903
+ 29 94.7826 1169 1 0 105.732 53.8504 -175.973
+ 29 59.5183 1170 1 0 105.693 54.05 -176.04
+ 29 48.8889 1171 1 0 105.696 54.2504 -176.032
+ 29 66.9946 1172 1 0 105.712 54.4501 -176.021
+ 29 42.2438 1173 1 0 105.733 54.6502 -176.01
+ 29 98.8956 1174 1 0 105.757 54.85 -176.009
+ 29 81.6601 1175 1 0 105.771 55.05 -176.001
+ 29 57.3702 1176 1 0 105.744 55.25 -176
+ 29 132.281 1177 1 0 105.699 55.4514 -176.011
+ 29 47.2815 1178 1 0 105.621 55.65 -176.042
+ 29 53.8453 1179 1 0 105.541 55.8502 -176.065
+ 29 66.2953 1180 1 0 105.466 56.05 -176.115
+ 29 47.5192 1181 1 0 105.386 56.25 -176.198
+Number of digits in this event = 63
+Using G4ParticleGun ...
+6.80485 LIN
e-
Event: 30
-Number of tracker hits in this event = 21
- 30 147.5 1415 7 1 103.219 -106.17 5.55
- 30 120.808 369 7 0 103.219 -106.169 4.15
- 30 103.498 1415 6 1 103.219 -106.143 -24.45
- 30 121.642 370 6 0 103.219 -106.137 -25.85
- 30 131.494 1415 5 1 103.224 -106.023 -54.45
- 30 140.728 370 5 0 103.224 -106.018 -55.85
- 30 163.239 1415 4 1 103.219 -105.925 -84.45
- 30 113.72 371 4 0 103.222 -105.919 -85.85
- 30 111.305 1415 3 1 103.263 -105.79 -114.45
- 30 214.711 371 3 0 103.263 -105.783 -115.85
- 30 119.441 1415 2 1 103.264 -105.637 -144.45
- 30 145.053 372 2 0 103.262 -105.632 -145.85
- 30 99.0099 1415 1 1 103.225 -105.536 -174.45
- 30 200.358 373 1 0 103.225 -105.53 -175.85
- 30 128.28 1415 0 1 103.226 -105.419 -204.45
- 30 108.999 373 0 0 103.224 -105.415 -205.85
- 30 65.8084 629 5 0 -56.106 -54.0515 -56.25
- 30 0.941923 611 5 1 -57.8478 -55.8967 -54.85
- 30 149.924 610 5 1 -57.8501 -55.8994 -54.8483
- 30 351.444 609 5 1 -58.05 -56.1945 -54.8263
- 30 81.1166 1196 0 1 59.4197 -100.313 -204.85
-Number of digits in this event = 15
+Number of tracker hits in this event = 132
+ 30 135.81 1018 10 1 23.726 -108.824 95.55
+ 30 144.351 356 10 0 23.7245 -108.826 94.15
+ 30 144.073 1018 9 1 23.6846 -108.883 65.55
+ 30 128.395 356 9 0 23.6805 -108.886 64.15
+ 30 130.659 1017 8 1 23.5997 -108.964 35.55
+ 30 153.029 355 8 0 23.5981 -108.965 34.15
+ 30 334.21 1017 7 1 23.5716 -108.984 5.55
+ 30 179.058 355 7 0 23.5701 -108.98 4.15
+ 30 547.415 1017 6 1 23.5489 -108.889 -24.45
+ 30 682.414 356 6 0 23.5464 -108.884 -25.85
+ 30 348.844 1017 5 1 23.5129 -108.752 -54.45
+ 30 154.138 357 5 0 23.5091 -108.739 -55.85
+ 30 215.782 1016 4 1 23.4369 -108.493 -84.45
+ 30 161.827 358 4 0 23.4339 -108.483 -85.85
+ 30 152.325 1016 3 1 23.3924 -108.282 -114.45
+ 30 131.143 359 3 0 23.3941 -108.271 -115.85
+ 30 157.027 1016 2 1 23.4098 -108.048 -144.45
+ 30 127.096 360 2 0 23.41 -108.043 -145.85
+ 30 94.4819 1016 1 1 23.4118 -107.947 -174.45
+ 30 121.841 361 1 0 23.4086 -107.936 -175.85
+ 30 139.766 1016 0 1 23.3305 -107.718 -204.45
+ 30 214.264 362 0 0 23.3322 -107.704 -205.85
+ 30 100.466 354 6 0 23.5331 -109.192 -25.8502
+ 30 0.120644 355 6 0 23.5085 -108.95 -25.85
+ 30 181.53 1016 5 1 23.3537 -107.244 -54.4504
+ 30 168.128 366 5 0 23.1719 -106.87 -55.85
+ 30 30.8469 375 5 0 34.5226 -105.138 -56.25
+ 30 106.171 374 5 0 34.5575 -105.15 -56.1969
+ 30 32.013 1077 5 1 35.5984 -105.333 -54.85
+ 30 85.2329 1078 5 1 35.65 -105.339 -54.7882
+ 30 68.3682 1079 5 1 35.85 -105.372 -54.6112
+ 30 9.68973 1244 2 1 68.9171 -113.977 -144.45
+ 30 76.6304 1245 2 1 69.05 -113.999 -144.656
+ 30 214.71 1246 2 1 69.25 -114.049 -144.726
+ 30 116.754 1247 2 1 69.4512 -113.918 -144.623
+ 30 206.111 1248 2 1 69.65 -113.858 -144.473
+ 30 335.693 1017 4 1 23.4501 -109.133 -84.5625
+ 30 63.53 349 4 0 24.4486 -110.189 -85.85
+ 30 24.0257 1048 4 1 29.7789 -108.741 -84.85
+ 30 82.4419 1049 4 1 29.8508 -108.739 -84.8294
+ 30 177.823 352 4 0 29.511 -109.649 -85.85
+ 30 20.2125 351 4 0 29.4694 -109.75 -85.9623
+ 30 252.162 356 5 0 23.5392 -108.782 -55.85
+ 30 124.187 354 4 0 23.5925 -109.216 -85.85
+ 30 199.705 1017 3 1 23.4587 -109.582 -114.45
+ 30 357.633 352 3 0 23.4409 -109.613 -115.85
+ 30 138.117 1015 2 1 23.0678 -110.314 -144.45
+ 30 135.647 349 2 0 23.0561 -110.343 -145.85
+ 30 14.6733 348 2 0 23.0533 -110.35 -146.197
+ 30 291.63 1012 1 1 22.6268 -110.846 -174.45
+ 30 235.842 346 1 0 22.6187 -110.847 -175.85
+ 30 102.979 1010 0 1 22.2091 -110.786 -204.45
+ 30 190.596 347 0 0 22.1999 -110.735 -205.85
+ 30 9.95866 586 4 1 -62.7023 36.2556 -84.45
+ 30 59.483 584 4 1 -63.05 37.0312 -84.4779
+ 30 218.439 351 3 0 23.5697 -109.75 -116.097
+ 30 118.904 1018 4 1 23.7522 -108.727 -84.45
+ 30 216.697 357 4 0 23.761 -108.728 -85.85
+ 30 138.765 1019 3 1 23.9524 -108.701 -114.45
+ 30 118.128 357 3 0 23.959 -108.705 -115.85
+ 30 111.194 1020 2 1 24.0736 -108.811 -144.45
+ 30 785.593 356 2 0 24.0812 -108.819 -145.85
+ 30 281.136 1020 1 1 24.2408 -108.979 -174.45
+ 30 112.643 355 1 0 24.2496 -108.982 -175.85
+ 30 285.277 1021 0 1 24.4179 -109.033 -204.45
+ 30 417.128 355 0 0 24.4273 -109.041 -205.85
+ 30 12.7275 354 0 0 24.4073 -109.15 -206.2
+ 30 18.721 453 0 0 47.2425 -89.2987 -206.25
+ 30 90.9444 454 0 0 47.2893 -89.25 -206.22
+ 30 81.2355 455 0 0 47.4956 -89.05 -206.074
+ 30 55.3665 456 0 0 47.7101 -88.85 -205.94
+ 30 93.8162 1148 0 1 49.6576 -87.1038 -204.85
+ 30 127.848 1149 0 1 49.8505 -86.8899 -204.738
+ 30 95.5042 1150 0 1 50.0502 -86.5598 -204.532
+ 30 108.075 1151 0 1 50.25 -86.3288 -204.571
+ 30 50.7492 1152 0 1 50.45 -86.1372 -204.764
+ 30 41.1982 473 0 0 51.5488 -85.3208 -205.85
+ 30 114.038 474 0 0 51.628 -85.25 -205.924
+ 30 86.2504 475 0 0 51.8642 -85.05 -206.129
+ 30 92.4357 1022 0 1 24.45 -108.827 -204.742
+ 30 103.906 1019 1 1 24.0498 -109.153 -174.607
+ 30 250.297 1018 1 1 23.85 -109.178 -174.722
+ 30 104.994 356 4 0 23.7744 -108.75 -85.9934
+ 30 78.411 81 4 0 15.9036 -163.761 -86.2499
+ 30 164.056 80 4 0 15.7614 -163.95 -86.141
+ 30 468.562 973 4 1 14.7623 -163.99 -84.8496
+ 30 244.519 974 4 1 14.85 -164.494 -84.8198
+ 30 1.94962 79 4 0 15.6077 -164.15 -85.8535
+ 30 28.4636 975 4 1 15.0746 -164.433 -84.85
+ 30 44.4038 282 4 0 31.6831 -123.681 -86.25
+ 30 147.551 281 4 0 31.6937 -123.75 -86.1544
+ 30 68.8366 1042 4 1 28.6259 -123.443 -84.85
+ 30 202.854 1041 4 1 28.45 -123.431 -84.8422
+ 30 2.17565 225 8 0 51.3832 -135.145 33.7501
+ 30 90.3476 224 8 0 51.3881 -135.15 33.756
+ 30 136.718 223 8 0 51.4486 -135.35 33.958
+ 30 213.314 222 8 0 51.6729 -135.55 33.9979
+ 30 102.625 356 7 0 23.6283 -108.776 4.15
+ 30 143.716 1016 6 1 23.45 -108.447 -24.5042
+ 30 109.345 358 6 0 23.4091 -108.395 -25.85
+ 30 103.558 1011 5 1 22.3556 -107.312 -54.45
+ 30 114.368 364 5 0 22.3011 -107.264 -55.85
+ 30 79.011 1005 4 1 21.0503 -106.185 -84.45
+ 30 130.876 1004 4 1 21.05 -106.183 -84.675
+ 30 102.225 369 4 0 21.0385 -106.17 -85.85
+ 30 178.756 1003 3 1 20.6614 -105.794 -114.45
+ 30 120.577 371 3 0 20.6286 -105.772 -115.85
+ 30 100.527 997 2 1 19.5927 -105.108 -144.45
+ 30 35.7038 375 2 0 19.6083 -104.961 -145.85
+ 30 89.5681 376 2 0 19.6092 -104.95 -145.95
+ 30 156.851 999 1 1 19.9488 -102.173 -174.45
+ 30 119.32 390 1 0 19.9847 -102.018 -175.85
+ 30 102.65 999 0 1 19.9844 -99.2776 -204.45
+ 30 115.596 404 0 0 19.9193 -99.174 -205.85
+ 30 169.4 1003 4 1 20.85 -106.162 -84.5146
+ 30 89.1647 1002 4 1 20.65 -106.24 -84.6783
+ 30 51.7895 1001 4 1 20.45 -106.34 -84.7965
+ 30 174.503 365 4 0 18.617 -106.978 -85.85
+ 30 24.0345 366 4 0 18.289 -106.95 -86.1947
+ 30 23.9565 270 4 0 21.3972 -126.079 -86.2497
+ 30 86.8238 269 4 0 21.3746 -126.15 -86.2109
+ 30 76.2858 268 4 0 21.1896 -126.35 -86.2261
+ 30 223.301 41 4 0 -5.31357 -171.837 -86.25
+ 30 59.0867 42 4 0 -5.43375 -171.75 -86.21
+ 30 306.592 1017 2 1 23.4761 -108.855 -144.45
+ 30 249.018 1017 1 1 23.4532 -108.876 -174.45
+ 30 345.8 356 1 0 23.4569 -108.871 -175.85
+ 30 243.571 1017 0 1 23.5386 -108.781 -204.45
+ 30 154.84 356 0 0 23.5414 -108.775 -205.85
+ 30 30.9789 318 0 0 53.9937 -116.477 -206.25
+ 30 168.908 1020 0 1 24.1705 -108.536 -204.45
+ 30 149.395 358 0 0 24.2171 -108.523 -205.85
+Number of digits in this event = 71
Using G4ParticleGun ...
-8.68742 LIN
+9.97451 LIN
e-
Event: 31
-Number of tracker hits in this event = 26
- 31 119.79 510 11 1 -77.9088 21.112 125.55
- 31 103.689 1005 11 0 -77.9072 21.1119 124.15
- 31 112.441 510 10 1 -77.8712 21.1083 95.55
- 31 134.563 1005 10 0 -77.8714 21.1072 94.15
- 31 105.084 510 9 1 -77.871 21.079 65.55
- 31 125.55 1005 9 0 -77.8691 21.0784 64.15
- 31 175.92 511 8 1 -77.8221 21.0664 35.55
- 31 117.606 1005 8 0 -77.817 21.0654 34.15
- 31 101.478 511 7 1 -77.6884 21.0469 5.55
- 31 227.707 1004 7 0 -77.6874 21.0451 4.15
- 31 133.702 511 6 1 -77.6986 21.0126 -24.45
- 31 133.285 1004 6 0 -77.6999 21.0109 -25.85
- 31 168.47 511 5 1 -77.7025 20.971 -54.45
- 31 116.57 1004 5 0 -77.7089 20.9654 -55.85
- 31 106.271 511 4 1 -77.8295 20.8581 -84.45
- 31 181.033 1004 4 0 -77.8325 20.8557 -85.85
- 31 141.151 510 3 1 -77.9028 20.8037 -114.45
- 31 211.718 1003 3 0 -77.9074 20.8014 -115.85
- 31 132.196 510 2 1 -77.9991 20.7438 -144.45
- 31 103.61 1003 2 0 -77.9986 20.7421 -145.85
- 31 132.844 510 1 1 -77.9842 20.699 -174.45
- 31 153.869 1003 1 0 -77.9865 20.6928 -175.85
- 31 124.506 510 0 1 -78.0136 20.595 -204.45
- 31 94.2586 1002 0 0 -78.0027 20.5929 -205.85
- 31 192.097 512 6 1 -77.6498 21.026 -24.7439
- 31 161.356 513 6 1 -77.45 20.9636 -24.7491
-Number of digits in this event = 18
+Number of tracker hits in this event = 52
+ 31 237.069 813 11 1 -17.3421 -35.114 125.55
+ 31 92.9079 724 11 0 -17.342 -35.1135 124.15
+ 31 141.156 813 10 1 -17.3411 -35.1044 95.55
+ 31 125.639 724 10 0 -17.3412 -35.1044 94.15
+ 31 163.154 813 9 1 -17.3423 -35.0996 65.55
+ 31 127.45 724 9 0 -17.3421 -35.0985 64.15
+ 31 115.306 813 8 1 -17.3396 -35.0728 35.55
+ 31 114.166 724 8 0 -17.3379 -35.0718 34.15
+ 31 115.868 813 7 1 -17.3045 -35.0527 5.55
+ 31 100.589 724 7 0 -17.3037 -35.0527 4.15
+ 31 200.013 813 6 1 -17.289 -35.0509 -24.45
+ 31 118.242 724 6 0 -17.3047 -35.0567 -25.85
+ 31 175.163 811 5 1 -17.7075 -35.2042 -54.45
+ 31 23.8692 724 5 0 -17.7182 -35.2468 -55.85
+ 31 157.42 723 5 0 -17.7191 -35.25 -55.957
+ 31 147.122 810 4 1 -17.9259 -36.182 -84.45
+ 31 11.0882 719 4 0 -17.9268 -36.2481 -85.85
+ 31 88.7465 718 4 0 -17.9268 -36.25 -85.8907
+ 31 118.029 810 3 1 -17.9804 -37.5707 -114.45
+ 31 186.309 711 3 0 -17.9746 -37.6682 -115.85
+ 31 130.381 811 2 1 -17.8335 -39.7662 -144.45
+ 31 133.734 700 2 0 -17.8365 -39.853 -145.85
+ 31 121.357 810 1 1 -17.9177 -41.5376 -174.45
+ 31 147.69 692 1 0 -17.9518 -41.6279 -175.85
+ 31 30.7938 691 1 0 -17.9604 -41.65 -176.185
+ 31 124.559 806 0 1 -18.7133 -43.6161 -204.45
+ 31 271.449 680 0 0 -18.8471 -43.9191 -205.85
+ 31 187.269 1624 3 1 144.95 -26.2738 -114.557
+ 31 281.337 809 3 1 -18.0589 -37.2064 -114.45
+ 31 241.409 714 3 0 -18.2039 -37.1806 -115.85
+ 31 115.59 793 2 1 -21.3816 -35.9439 -144.45
+ 31 36.1806 792 2 1 -21.45 -35.9284 -144.71
+ 31 111.723 721 2 0 -21.7423 -35.8183 -145.85
+ 31 93.7477 760 1 1 -27.9432 -32.0162 -174.45
+ 31 94.7969 740 1 0 -28.1416 -31.9516 -175.85
+ 31 123.418 735 0 1 -33.008 -29.5406 -204.45
+ 31 129.32 755 0 0 -33.0081 -28.9852 -205.851
+ 31 17.5328 756 0 0 -32.9986 -28.85 -206.206
+ 31 153.325 713 3 0 -18.0895 -37.2685 -115.85
+ 31 111.919 799 2 1 -20.1989 -36.9599 -144.45
+ 31 120.221 714 2 0 -20.2748 -37.0546 -145.85
+ 31 118.623 793 1 1 -21.3663 -39.9422 -174.45
+ 31 100.274 699 1 0 -21.4566 -40.1878 -175.85
+ 31 10.3814 698 1 0 -21.476 -40.25 -176.208
+ 31 6.01163 787 0 1 -22.6417 -44.9609 -204.45
+ 31 119.13 786 0 1 -22.65 -44.965 -204.48
+ 31 65.0092 674 0 0 -23.071 -45.2032 -205.85
+ 31 43.8513 673 0 0 -23.1455 -45.2501 -206.096
+ 31 226.572 823 0 1 -15.4222 -34.9165 -204.45
+ 31 2.92755 824 0 1 -15.25 -34.9616 -204.84
+ 31 129.891 724 0 0 -14.8727 -35.0727 -205.85
+ 31 119.404 725 0 0 -15.4364 -34.9067 -205.85
+Number of digits in this event = 27
Using G4ParticleGun ...
-3.17758 LIN
+9.75381 LIN
e-
Event: 32
-Number of tracker hits in this event = 33
- 32 112.155 871 10 1 -5.74484 114.869 95.55
- 32 165.893 1473 10 0 -5.74715 114.869 94.15
- 32 118.77 871 9 1 -5.79843 114.874 65.55
- 32 284.474 1473 9 0 -5.80064 114.871 64.15
- 32 119.25 870 8 1 -5.85593 114.822 35.55
- 32 109.044 1473 8 0 -5.85968 114.821 34.15
- 32 135.069 870 7 1 -5.93033 114.804 5.55
- 32 103.921 1473 7 0 -5.93616 114.803 4.15
- 32 0.0888092 870 6 1 -6.04999 114.795 -24.45
- 32 113.456 869 6 1 -6.05 114.795 -24.4516
- 32 115.827 1473 6 0 -6.05567 114.793 -25.85
- 32 159.342 869 5 1 -6.17186 114.747 -54.45
- 32 174.603 1472 5 0 -6.18213 114.748 -55.85
- 32 176.788 868 4 1 -6.39063 114.772 -84.45
- 32 190.843 1473 4 0 -6.40259 114.774 -85.85
- 32 123.869 867 3 1 -6.64122 114.811 -114.45
- 32 108.68 1473 3 0 -6.65199 114.81 -115.85
- 32 109.732 865 2 1 -6.87356 114.801 -144.45
- 32 415.812 1473 2 0 -6.88591 114.799 -145.85
- 32 131.48 864 1 1 -7.1489 114.785 -174.45
- 32 110.829 1473 1 0 -7.16376 114.781 -175.85
- 32 98.6335 862 0 1 -7.46565 114.705 -204.45
- 32 114.708 1472 0 0 -7.47875 114.7 -205.85
- 32 156.638 863 1 1 -7.36914 115.022 -174.45
- 32 119.506 1474 1 0 -7.37594 114.999 -175.85
- 32 120.663 863 0 1 -7.41346 114.449 -204.45
- 32 186.872 1471 0 0 -7.42588 114.391 -205.85
- 32 157.342 866 1 1 -6.7669 114.404 -174.45
- 32 120.674 1471 1 0 -6.74726 114.361 -175.85
- 32 2.34481 1470 1 0 -6.74251 114.35 -176.24
- 32 131.199 869 0 1 -6.15172 113.12 -204.45
- 32 106.047 1464 0 0 -6.078 113.055 -205.85
- 32 79.5438 1452 0 0 -7.78129 110.75 -206.25
-Number of digits in this event = 18
+Number of tracker hits in this event = 65
+ 32 152.727 429 10 1 -94.1871 40.9469 95.55
+ 32 126.068 1104 10 0 -94.1879 40.9452 94.15
+ 32 137.39 429 9 1 -94.2071 40.9153 65.55
+ 32 117.577 1104 9 0 -94.2096 40.9151 64.15
+ 32 135.943 429 8 1 -94.257 40.9144 35.55
+ 32 144.18 1104 8 0 -94.2575 40.9123 34.15
+ 32 119.379 429 7 1 -94.2593 40.8717 5.55
+ 32 96.702 1104 7 0 -94.2605 40.8692 4.15
+ 32 353.388 429 6 1 -94.2922 40.8179 -24.45
+ 32 370.738 1103 6 0 -94.2942 40.8164 -25.85
+ 32 226.786 429 5 1 -94.337 40.7905 -54.45
+ 32 159.75 1103 5 0 -94.339 40.7885 -55.85
+ 32 151.76 428 4 1 -94.3836 40.7567 -84.45
+ 32 120.198 1103 4 0 -94.3866 40.7552 -85.85
+ 32 133.852 428 3 1 -94.4381 40.7177 -114.45
+ 32 151.279 1103 3 0 -94.4455 40.7122 -115.85
+ 32 97.8057 427 2 1 -94.5859 40.5985 -144.45
+ 32 128.319 1102 2 0 -94.5937 40.5921 -145.85
+ 32 110.113 426 1 1 -94.9366 40.314 -174.45
+ 32 164.93 1101 1 0 -94.9541 40.2997 -175.85
+ 32 125.852 424 0 1 -95.3185 40.0123 -204.45
+ 32 379.711 1099 0 0 -95.3357 40.0003 -205.85
+ 32 101.611 1098 0 0 -95.5084 39.85 -206.194
+ 32 392.269 428 2 1 -94.4007 40.7155 -144.45
+ 32 237.046 1103 2 0 -94.3915 40.707 -145.85
+ 32 185.011 430 1 1 -94.1197 40.5384 -174.45
+ 32 140.125 1102 1 0 -94.1133 40.541 -175.85
+ 32 150.137 430 0 1 -94.0244 40.5816 -204.45
+ 32 104.995 1102 0 0 -94.0464 40.5943 -205.85
+ 32 116.52 428 1 1 -94.4974 40.8261 -174.45
+ 32 108.956 1103 1 0 -94.5201 40.7997 -175.85
+ 32 138.814 426 0 1 -94.914 40.0129 -204.45
+ 32 97.0396 259 0 1 -128.15 -46.9516 -204.665
+ 32 44.9556 1104 6 0 -94.3136 41.0297 -25.85
+ 32 97.932 1105 6 0 -94.3115 41.05 -26.0145
+ 32 122.298 1123 5 0 -94.2215 44.6945 -55.85
+ 32 117.31 421 4 1 -95.8234 44.037 -84.45
+ 32 125.822 1119 4 0 -96.2062 43.9835 -85.85
+ 32 43.1294 383 3 1 -103.483 43.2007 -114.45
+ 32 93.4373 382 3 1 -103.55 43.1783 -114.61
+ 32 207.335 1114 3 0 -104.094 42.9951 -115.85
+ 32 25.177 320 2 1 -116.109 39.5053 -144.45
+ 32 96.8797 319 2 1 -116.15 39.4878 -144.531
+ 32 151.48 1095 2 0 -116.839 39.2241 -145.85
+ 32 26.8367 243 1 1 -131.518 33.3022 -174.45
+ 32 117.81 242 1 1 -131.55 33.3053 -174.547
+ 32 100.64 1066 1 0 -131.971 33.3324 -175.85
+ 32 106.008 201 0 1 -139.786 32.1018 -204.45
+ 32 18.6706 200 0 1 -139.95 32.0954 -204.798
+ 32 131.592 1060 0 0 -140.427 32.0824 -205.85
+ 32 140.36 433 5 1 -93.547 40.912 -54.45
+ 32 115.543 1104 5 0 -93.4625 40.9175 -55.85
+ 32 120.22 442 4 1 -91.5767 40.9227 -84.45
+ 32 124.851 1104 4 0 -91.5119 40.9851 -85.85
+ 32 124.603 448 3 1 -90.4181 42.2453 -114.45
+ 32 193.439 1111 3 0 -90.3634 42.2887 -115.85
+ 32 115.972 454 2 1 -89.1838 43.2555 -144.45
+ 32 149.558 1116 2 0 -89.0923 43.2995 -145.85
+ 32 27.538 464 1 1 -87.0586 44.3897 -174.45
+ 32 100.612 465 1 1 -87.05 44.3946 -174.564
+ 32 6.07188 1121 1 0 -86.9539 44.4491 -175.85
+ 32 104.763 1122 1 0 -86.9523 44.45 -175.872
+ 32 115.226 475 0 1 -84.9079 45.4146 -204.45
+ 32 139.155 1127 0 0 -84.7632 45.4564 -205.85
+ 32 9.74411 1403 0 0 -111.521 100.75 -206.021
+Number of digits in this event = 37
Using G4ParticleGun ...
-4.78877 LIN
+5.61996 LIN
e-
Event: 33
-Number of tracker hits in this event = 22
- 33 279.323 1618 8 1 143.851 -0.84463 35.55
- 33 123.176 896 8 0 143.849 -0.844411 34.15
- 33 127.733 1618 7 1 143.812 -0.839915 5.55
- 33 115.488 896 7 0 143.812 -0.841249 4.15
- 33 147.128 1618 6 1 143.795 -0.869131 -24.45
- 33 130.94 895 6 0 143.795 -0.869563 -25.85
- 33 130.806 1618 5 1 143.786 -0.878882 -54.45
- 33 114.83 895 5 0 143.786 -0.884722 -55.85
- 33 108.802 1617 4 1 143.744 -1.00082 -84.45
- 33 143.159 895 4 0 143.749 -0.999789 -85.85
- 33 216.514 1618 3 1 143.844 -1.00342 -114.45
- 33 102.163 895 3 0 143.852 -1.00386 -115.85
- 33 152.681 1619 2 1 143.973 -0.975367 -144.45
- 33 137.033 895 2 0 143.979 -0.972102 -145.85
- 33 115.824 1619 1 1 144.125 -0.943291 -174.45
- 33 144.34 895 1 0 144.124 -0.941278 -175.85
- 33 165.193 1619 0 1 144.077 -0.926478 -204.45
- 33 110.855 895 0 0 144.069 -0.927841 -205.85
- 33 290.247 899 3 0 169.649 -0.206804 -116.25
- 33 52.8315 898 3 0 170.129 -0.250017 -115.871
- 33 4.05458 1783 3 1 176.925 0.0790588 -114.85
- 33 123.943 1619 3 1 143.95 -1.02591 -114.766
-Number of digits in this event = 16
+Number of tracker hits in this event = 20
+ 33 55.9712 412 9 1 -97.5655 93.3599 65.3063
+ 33 113.094 1366 9 0 -97.5655 93.3598 64.15
+ 33 152.757 412 8 1 -97.5601 93.3536 35.55
+ 33 129.058 1366 8 0 -97.5601 93.3529 34.15
+ 33 149.764 412 7 1 -97.564 93.3389 5.55
+ 33 186.264 1365 7 0 -97.5677 93.3347 4.15
+ 33 130.055 412 6 1 -97.7105 93.271 -24.45
+ 33 141.505 1365 6 0 -97.7262 93.2661 -25.85
+ 33 102.227 410 5 1 -98.0765 93.1709 -54.45
+ 33 116.724 1364 5 0 -98.094 93.1332 -55.85
+ 33 219.6 408 4 1 -98.4479 92.308 -84.45
+ 33 106.334 1360 4 0 -98.4526 92.2543 -85.85
+ 33 110.583 408 3 1 -98.4981 91.2373 -114.45
+ 33 140.72 1355 3 0 -98.4856 91.1711 -115.85
+ 33 155.547 409 2 1 -98.237 89.7908 -144.45
+ 33 123.874 1348 2 0 -98.2223 89.7074 -145.85
+ 33 135.061 411 1 1 -97.913 88.0621 -174.45
+ 33 116.948 1339 1 0 -97.89 87.9844 -175.85
+ 33 136.066 413 0 1 -97.4746 86.5768 -204.45
+ 33 110.314 1332 0 0 -97.4582 86.5228 -205.85
+Number of digits in this event = 15
Using G4ParticleGun ...
-9.67691 LIN
+7.74982 LIN
e-
Event: 34
-Number of tracker hits in this event = 81
- 34 303.283 1089 11 1 37.9992 30.6955 125.55
- 34 137.347 1053 11 0 37.9996 30.6949 124.15
- 34 144.266 1089 10 1 38.0144 30.677 95.55
- 34 180.278 1053 10 0 38.0157 30.6767 94.15
- 34 118.257 1089 9 1 38.0459 30.6679 65.55
- 34 85.8026 1053 9 0 38.0479 30.6667 64.15
- 34 134.989 1090 8 1 38.0912 30.6476 35.55
- 34 181.279 1052 8 0 38.0924 30.6467 34.15
- 34 193.065 1090 7 1 38.1152 30.6306 5.55
- 34 124.128 1052 7 0 38.1162 30.629 4.15
- 34 101.257 1090 6 1 38.1415 30.5969 -24.45
- 34 291.897 1052 6 0 38.143 30.5951 -25.85
- 34 260.477 1090 5 1 38.1679 30.5602 -54.45
- 34 858.67 1052 5 0 38.1662 30.56 -55.85
- 34 118.785 1090 4 1 38.129 30.5512 -84.45
- 34 121.771 1052 4 0 38.1265 30.5515 -85.85
- 34 515.647 1090 3 1 38.075 30.56 -114.45
- 34 444.175 1052 3 0 38.0729 30.5586 -115.85
- 34 110.012 1089 2 1 38.0311 30.5281 -144.45
- 34 103.487 1052 2 0 38.0323 30.5255 -145.85
- 34 252.394 1090 1 1 38.0553 30.4685 -174.45
- 34 94.9046 1052 1 0 38.0549 30.4643 -175.85
- 34 115.34 1089 0 1 38.0386 30.3766 -204.45
- 34 109.898 1051 0 0 38.0386 30.3736 -205.85
- 34 109.682 458 3 0 -93.9943 -88.2847 -116.25
- 34 253.266 1082 2 1 36.635 30.8247 -144.45
- 34 118.48 1054 2 0 36.6919 30.9164 -145.85
- 34 130.193 1061 1 0 38.0346 32.4105 -175.85
- 34 78.3979 1079 0 1 35.8668 30.8912 -204.45
- 34 67.4991 1078 0 1 35.85 30.881 -204.618
- 34 101.756 1053 0 0 35.738 30.8057 -205.85
- 34 104.182 1094 2 1 38.9983 31.3309 -144.45
- 34 95.259 1056 2 0 38.952 31.2698 -145.85
- 34 156.495 1093 1 1 38.8085 30.2713 -174.45
- 34 125.286 1050 1 0 38.5939 30.2024 -175.85
- 34 74.4161 1075 0 1 35.1239 27.5478 -204.45
- 34 211.387 1074 0 1 35.05 27.504 -204.648
- 34 170.645 1035 0 0 34.5777 27.2424 -205.85
- 34 68.24 1089 3 1 38.05 30.4914 -114.479
- 34 390.381 1088 3 1 37.85 30.4796 -114.608
- 34 43.9075 1087 3 1 37.6498 30.5335 -114.764
- 34 252.28 1055 3 0 35.4847 31.1367 -115.85
- 34 64.1093 1067 3 1 33.5437 30.7678 -114.85
- 34 204.706 1066 3 1 33.4498 30.6987 -114.811
- 34 50.441 1051 5 0 38.7658 30.4499 -56.0715
- 34 30.5568 1053 5 0 39.5742 30.65 -55.9007
- 34 39.9219 1095 5 1 39.0957 31.4467 -54.8499
- 34 151.988 1094 5 1 39.0498 31.5424 -54.7847
- 34 348.422 1060 5 0 39.2019 32.0534 -55.8501
- 34 104.156 1059 5 0 38.9098 32.05 -56.1742
- 34 50.8396 1034 5 0 13.5109 26.9812 -56.2499
- 34 9.95568 1089 6 1 38.0281 30.6506 -24.8324
- 34 157.048 1053 6 0 38.0315 30.6509 -25.85
- 34 114.163 1091 4 1 38.3335 30.267 -84.45
- 34 165.558 1051 4 0 38.36 30.2705 -85.85
- 34 111.846 1094 3 1 38.8904 30.3317 -114.45
- 34 116.035 1051 3 0 38.9623 30.3196 -115.85
- 34 114.09 1102 2 1 40.455 30.0655 -144.45
- 34 106.194 1050 2 0 40.5156 30.0578 -145.85
- 34 127.917 1108 1 1 41.6842 29.9129 -174.45
- 34 115.873 1049 1 0 41.7848 29.8839 -175.85
- 34 370.626 1119 0 1 43.865 29.2804 -204.45
- 34 13.812 1046 0 0 43.9535 29.2511 -205.85
- 34 135.716 1045 0 0 43.957 29.25 -205.906
- 34 162.948 1049 0 0 45.5863 29.9817 -205.85
- 34 66.2895 1129 0 1 45.8721 29.9168 -204.85
- 34 72.6393 1128 0 1 45.85 29.8733 -204.79
- 34 21.4105 1119 6 1 43.863 -125.177 -24.85
- 34 90.9414 1091 5 1 38.2924 30.528 -54.45
- 34 119.226 1102 4 1 40.5603 29.4201 -84.45
- 34 127.141 1046 4 0 40.7331 29.402 -85.85
- 34 114.04 1121 3 1 44.3453 29.1095 -114.45
- 34 124.817 1044 3 0 44.5195 29.0156 -115.85
- 34 152.786 1140 2 1 48.0831 27.0679 -144.45
- 34 188.916 1034 2 0 48.3173 26.9919 -145.85
- 34 125.524 1165 1 1 53.1344 25.254 -174.45
- 34 114.626 1023 1 0 53.4955 24.7716 -175.85
- 34 15.0817 1022 1 0 53.5849 24.65 -176.199
- 34 148.299 1203 0 1 60.7367 14.7664 -204.45
- 34 39.661 970 0 0 60.9939 14.1193 -205.85
- 34 80.5912 969 0 0 61.0166 14.05 -205.999
-Number of digits in this event = 41
+Number of tracker hits in this event = 83
+ 34 130.365 852 9 1 -9.52826 130.368 65.55
+ 34 98.0884 1551 9 0 -9.5279 130.368 64.15
+ 34 119.02 852 8 1 -9.51865 130.383 35.55
+ 34 147.225 1551 8 0 -9.51676 130.383 34.15
+ 34 418.398 852 7 1 -9.47503 130.397 5.55
+ 34 362.223 1551 7 0 -9.4725 130.398 4.15
+ 34 146.255 853 6 1 -9.42165 130.413 -24.45
+ 34 108.701 1551 6 0 -9.41877 130.415 -25.85
+ 34 129.03 853 5 1 -9.35327 130.457 -54.45
+ 34 144.582 1551 5 0 -9.35048 130.459 -55.85
+ 34 177.069 853 4 1 -9.29383 130.493 -84.45
+ 34 132.604 1551 4 0 -9.29062 130.494 -85.85
+ 34 105.407 854 3 1 -9.22319 130.524 -114.45
+ 34 118.671 1551 3 0 -9.22092 130.524 -115.85
+ 34 117.317 854 2 1 -9.16855 130.522 -144.45
+ 34 161.137 1551 2 0 -9.16501 130.521 -145.85
+ 34 147.274 854 1 1 -9.08971 130.515 -174.45
+ 34 325.207 1551 1 0 -9.08604 130.517 -175.85
+ 34 319.077 855 0 1 -9.0127 130.56 -204.45
+ 34 161.02 1552 0 0 -9.00801 130.562 -205.85
+ 34 157.622 854 4 1 -9.25 130.615 -84.8395
+ 34 164.365 855 4 1 -9.05 130.965 -84.6952
+ 34 65.2834 856 4 1 -8.85 131.168 -84.8165
+ 34 96.0536 1560 4 0 -8.35202 132.227 -85.85
+ 34 116.75 1552 1 0 -9.05719 130.562 -175.85
+ 34 137.553 1551 0 0 -8.98554 130.515 -205.85
+ 34 98.9369 856 0 1 -8.85 130.414 -204.556
+ 34 282.178 1547 0 0 -8.00932 129.687 -205.85
+ 34 68.3337 1546 0 0 -7.87689 129.55 -206.085
+ 34 341.257 1548 0 0 -7.92495 129.75 -205.94
+ 34 303.125 1549 0 0 -7.92654 129.95 -206.033
+ 34 126.89 853 1 1 -9.28834 130.482 -174.587
+ 34 117.422 852 0 1 -9.52893 130.178 -204.45
+ 34 27.8126 343 9 0 -76.0211 -111.35 63.8664
+ 34 55.65 413 9 1 -97.35 -108.882 65.1708
+ 34 200.932 342 9 0 -76.0592 -111.55 64.1155
+ 34 124.324 1511 0 0 -38.1063 122.505 -206.25
+ 34 112.037 869 0 1 -6.13871 135.732 -204.45
+ 34 82.9974 868 0 1 -6.25074 135.788 -204.572
+ 34 57.9603 867 0 1 -6.45 135.844 -204.715
+ 34 32.7445 866 0 1 -6.65 135.881 -204.789
+ 34 175.909 1579 0 0 -8.13319 136.135 -205.85
+ 34 145.786 1580 0 0 -8.20464 136.15 -205.901
+ 34 69.513 1581 0 0 -8.28795 136.35 -206.093
+ 34 18.0901 1582 0 0 -8.33849 136.55 -206.234
+ 34 299.307 851 6 1 -9.78192 130.709 -24.45
+ 34 164.995 1553 6 0 -9.77091 130.758 -25.85
+ 34 114.232 851 5 1 -9.69036 131.942 -54.45
+ 34 140.259 1559 5 0 -9.7256 132.02 -55.85
+ 34 125.119 847 4 1 -10.5612 133.789 -84.45
+ 34 115.016 1568 4 0 -10.5981 133.893 -85.85
+ 34 134.964 842 3 1 -11.577 135.883 -114.45
+ 34 138.153 1579 3 0 -11.6638 135.986 -115.85
+ 34 106.445 832 2 1 -13.5525 137.996 -144.45
+ 34 175.992 1589 2 0 -13.6699 138.113 -145.85
+ 34 123.254 819 1 1 -16.1121 140.439 -174.45
+ 34 109.189 1602 1 0 -16.2803 140.573 -175.85
+ 34 179.595 801 0 1 -19.6881 143.366 -204.45
+ 34 43.0019 1616 0 0 -19.8504 143.531 -205.85
+ 34 70.3735 1617 0 0 -19.87 143.55 -206.021
+ 34 29.3981 844 3 1 -11.1984 135.492 -114.45
+ 34 10.1188 1569 5 0 -8.84447 133.985 -55.85
+ 34 62.1207 876 5 1 -4.79757 135.695 -54.85
+ 34 173.607 1575 5 0 -3.74782 135.276 -55.85
+ 34 143.428 1562 0 0 5.42024 132.581 -206.25
+ 34 268.175 1026 0 1 25.3038 132.674 -204.45
+ 34 282.717 1552 6 0 -9.7674 130.75 -25.9029
+ 34 110.828 1550 7 0 -9.5406 130.347 4.14985
+ 34 127.431 1546 6 0 -9.82331 129.435 -25.85
+ 34 103.203 841 5 1 -11.665 126.476 -54.45
+ 34 28.402 1531 5 0 -11.6953 126.359 -55.85
+ 34 86.5449 1530 5 0 -11.6976 126.35 -55.9656
+ 34 33.7775 839 4 1 -12.2351 123.816 -84.4501
+ 34 97.4421 838 4 1 -12.25 123.798 -84.5819
+ 34 174.582 1517 4 0 -12.4009 123.627 -85.85
+ 34 135.472 823 3 1 -15.2818 119.847 -114.45
+ 34 129.54 1498 3 0 -15.3237 119.802 -115.85
+ 34 134.265 818 2 1 -16.4437 119.165 -144.45
+ 34 105.559 1495 2 0 -16.3839 119.195 -145.85
+ 34 103.142 827 1 1 -14.5994 119.525 -174.45
+ 34 116.661 1498 1 0 -14.6336 119.783 -175.851
+ 34 120.189 823 0 1 -15.4275 125.306 -204.45
+ 34 145.71 1527 0 0 -15.2954 125.58 -205.85
+Number of digits in this event = 47
Using G4ParticleGun ...
-8.44016 LIN
+3.25691 LIN
e-
Event: 35
-Number of tracker hits in this event = 38
- 35 119.519 872 11 1 -5.55585 -72.1207 125.55
- 35 110.426 539 11 0 -5.55594 -72.1203 124.15
- 35 132.663 872 10 1 -5.55436 -72.106 95.55
- 35 120.351 539 10 0 -5.55417 -72.1068 94.15
- 35 269.388 872 9 1 -5.55091 -72.125 65.55
- 35 201.4 539 9 0 -5.55036 -72.1256 64.15
- 35 99.0031 872 8 1 -5.54334 -72.1403 35.55
- 35 121.444 539 8 0 -5.54317 -72.1419 34.15
- 35 112.905 872 7 1 -5.54676 -72.1737 5.55
- 35 280.264 539 7 0 -5.54867 -72.1769 4.15
- 35 174.767 872 6 1 -5.58699 -72.2413 -24.45
- 35 136.709 539 6 0 -5.58706 -72.2446 -25.85
- 35 128.233 872 5 1 -5.59009 -72.3112 -54.45
- 35 138.461 538 5 0 -5.59052 -72.3141 -55.85
- 35 121.539 872 4 1 -5.6018 -72.3769 -84.45
- 35 112.881 538 4 0 -5.60153 -72.3798 -85.85
- 35 98.4551 872 3 1 -5.59945 -72.4391 -114.45
- 35 157.916 538 3 0 -5.60009 -72.4425 -115.85
- 35 163.443 872 2 1 -5.61479 -72.513 -144.45
- 35 113.507 537 2 0 -5.61474 -72.5168 -145.85
- 35 114.477 872 1 1 -5.61598 -72.5944 -174.45
- 35 108.705 537 1 0 -5.61482 -72.5966 -175.85
- 35 149.375 872 0 1 -5.59656 -72.6454 -204.45
- 35 129 537 0 0 -5.59601 -72.6479 -205.85
- 35 74.2576 537 3 0 -5.72872 -72.4527 -115.85
- 35 48.4688 660 3 0 10.1578 -47.9606 -116.25
- 35 118.04 661 3 0 10.2287 -47.8495 -116.137
- 35 56.0194 662 3 0 10.3068 -47.6499 -116.003
- 35 127.274 954 3 1 10.9052 -47.0299 -114.85
- 35 243.28 955 3 1 11.05 -46.7623 -114.558
- 35 71.3026 956 3 1 11.25 -46.356 -114.645
- 35 54.9227 957 3 1 11.45 -46.1931 -114.749
- 35 25.0262 681 3 0 13.286 -43.6975 -115.85
- 35 55.6269 682 3 0 13.3189 -43.65 -115.856
- 35 52.7468 683 3 0 13.3551 -43.45 -115.883
- 35 148.415 965 3 1 13.1286 -42.556 -114.85
- 35 429.984 692 3 0 12.9662 -41.5353 -115.85
- 35 34.2954 693 3 0 12.9595 -41.45 -115.986
-Number of digits in this event = 20
+Number of tracker hits in this event = 29
+ 35 115.834 1412 8 1 102.628 94.182 35.55
+ 35 131.106 1370 8 0 102.625 94.1833 34.15
+ 35 98.9127 1412 7 1 102.568 94.2107 5.55
+ 35 98.6336 1370 7 0 102.564 94.2116 4.15
+ 35 103.708 1411 6 1 102.497 94.2271 -24.45
+ 35 116.885 1370 6 0 102.495 94.2276 -25.85
+ 35 116.59 1411 5 1 102.459 94.238 -54.45
+ 35 102.892 1370 5 0 102.456 94.2397 -55.85
+ 35 109.891 1411 4 1 102.41 94.2781 -84.45
+ 35 121.704 1370 4 0 102.407 94.2776 -85.85
+ 35 120.883 1411 3 1 102.368 94.2594 -114.45
+ 35 120.938 1370 3 0 102.369 94.257 -115.85
+ 35 145.71 1411 2 1 102.396 94.2122 -144.45
+ 35 193.99 1370 2 0 102.396 94.2089 -145.85
+ 35 104.387 1411 1 1 102.378 94.1299 -174.45
+ 35 112.338 1369 1 0 102.375 94.1267 -175.85
+ 35 132.837 1410 0 1 102.326 94.0583 -204.45
+ 35 189.032 1369 0 0 102.324 94.0539 -205.85
+ 35 174.573 1371 2 0 102.379 94.3501 -146.046
+ 35 86.9017 1411 0 1 102.35 94.3001 -204.477
+ 35 28.3797 1412 0 1 102.55 94.3198 -204.758
+ 35 135.225 1371 0 0 103.356 94.4394 -205.85
+ 35 23.8157 1400 1 0 86.0216 100.337 -176.25
+ 35 138.08 1401 1 0 85.9996 100.35 -176.211
+ 35 19.2627 1324 1 1 84.9239 100.475 -174.85
+ 35 95.5877 1323 1 1 84.85 100.483 -174.771
+ 35 99.8851 1322 1 1 84.65 100.538 -174.587
+ 35 407.892 1321 1 1 84.45 100.608 -174.46
+ 35 24.4249 1320 1 1 84.2498 100.602 -174.726
+Number of digits in this event = 13
Using G4ParticleGun ...
-5.24272 LIN
+4.71273 LIN
e-
Event: 36
-Number of tracker hits in this event = 137
- 36 162.105 1467 10 1 113.672 8.54583 95.55
- 36 117.949 942 10 0 113.686 8.55143 94.15
- 36 166.12 1469 9 1 113.96 8.68984 65.55
- 36 198.42 943 9 0 113.968 8.70035 64.15
- 36 186.788 1469 8 1 114.083 8.91019 35.55
- 36 254.844 944 8 0 114.302 8.89173 34.15
- 36 49.6488 1496 7 1 119.489 9.23597 5.5494
- 36 73.9373 1497 7 1 119.55 9.27373 5.35102
- 36 143.462 947 7 0 119.933 9.51137 4.15
- 36 47.3816 1535 6 1 127.331 14.9985 -24.4506
- 36 73.6564 1536 6 1 127.35 15.0385 -24.5792
- 36 8.73368 976 6 0 127.549 15.4387 -25.85
- 36 93.617 977 6 0 127.554 15.45 -25.8859
- 36 73.3121 1562 5 1 132.624 24.0762 -54.45
- 36 58.3141 1563 5 1 132.75 24.1627 -54.7007
- 36 47.6304 1022 5 0 133.351 24.5964 -55.85
- 36 82.8989 1023 5 0 133.436 24.65 -56.0046
- 36 117.989 1641 4 1 148.446 33.3594 -84.45
- 36 7.36564 1069 4 0 148.374 34.043 -85.85
- 36 130.392 1070 4 0 148.373 34.05 -85.864
- 36 58.183 1639 3 1 148.114 48.0566 -114.45
- 36 110.412 1640 3 1 148.15 48.0946 -114.541
- 36 159.371 1143 3 0 148.71 48.7529 -115.85
- 36 105.077 1144 3 0 148.786 48.85 -116.011
- 36 83.8606 1737 2 1 167.617 63.4939 -144.45
- 36 83.6182 1738 2 1 167.75 63.5715 -144.568
- 36 33.263 1739 2 1 167.95 63.6952 -144.771
- 36 114.464 1222 2 0 169.004 64.4818 -145.85
- 36 83.8683 1223 2 0 169.226 64.65 -146.084
- 36 322.753 1470 7 1 114.161 9.07052 5.55
- 36 464.04 945 7 0 114.175 9.06477 4.15
- 36 285.005 1471 6 1 114.416 8.8362 -24.45
- 36 108.003 943 6 0 114.427 8.82208 -25.85
- 36 138.127 1472 5 1 114.65 8.63066 -54.45
- 36 176.458 943 5 0 114.661 8.69198 -55.85
- 36 274.44 1473 4 1 114.776 9.98856 -84.45
- 36 107.129 949 4 0 114.838 10.0327 -85.85
- 36 134.517 1479 3 1 116.075 10.588 -114.45
- 36 245.455 952 3 0 116.037 10.52 -115.851
- 36 190.03 1473 2 1 114.896 9.16406 -144.45
- 36 135.646 945 2 0 114.812 9.12014 -145.85
- 36 146.799 1463 1 1 112.823 8.27913 -174.45
- 36 156.515 940 1 0 112.687 8.24371 -175.85
- 36 117.96 1455 0 1 111.327 6.76756 -204.45
- 36 76.3067 933 0 0 110.902 6.83369 -205.85
- 36 30.1433 934 0 0 110.819 6.85 -206.131
- 36 25.2144 1472 4 1 114.75 10.0009 -84.4776
- 36 139.936 944 6 0 114.414 9.00702 -25.85
- 36 121.489 1473 5 1 114.902 8.93024 -54.45
- 36 114.801 944 5 0 114.922 8.929 -55.85
- 36 109.06 1475 4 1 115.342 8.91292 -84.45
- 36 100.781 944 4 0 115.369 8.9178 -85.85
- 36 231.317 1478 3 1 115.858 9.11241 -114.45
- 36 127.836 945 3 0 115.884 9.14621 -115.85
- 36 109.855 1481 2 1 116.47 9.90453 -144.45
- 36 322.224 949 2 0 116.5 9.9286 -145.85
- 36 194.132 1484 1 1 117.057 10.4414 -174.45
- 36 131.458 952 1 0 117.101 10.4662 -175.85
- 36 125.872 1489 0 1 118.014 11.0294 -204.45
- 36 123.456 955 0 0 118.035 11.0527 -205.85
- 36 109.846 1470 1 1 114.193 10.4747 -174.45
- 36 38.7112 947 1 0 114.2 9.51758 -175.85
- 36 100.203 946 1 0 114.196 9.45 -175.947
- 36 104.61 943 3 0 115.849 8.78331 -115.85
- 36 108.75 1492 2 1 118.722 1.64758 -144.45
- 36 124.583 905 2 0 118.848 1.15113 -145.85
- 36 92.3396 1455 1 1 111.288 -10.3566 -174.45
- 36 136.642 1456 1 1 111.35 -10.5791 -174.683
- 36 129.262 1457 1 1 111.55 -10.761 -174.767
- 36 8.41896 1458 1 1 111.75 -10.9233 -174.846
- 36 13.4148 830 1 0 115.543 -14.0056 -175.85
- 36 381.989 829 1 0 115.585 -14.05 -175.866
- 36 261.759 828 1 0 115.843 -14.25 -175.985
- 36 279.997 1478 1 1 115.872 9.06285 -174.45
- 36 224.999 945 1 0 115.89 9.06594 -175.85
- 36 113.92 1480 0 1 116.239 9.09693 -204.45
- 36 197.886 945 0 0 116.344 9.08745 -205.85
- 36 34.0871 1473 0 1 114.895 9.08392 -204.451
- 36 89.3982 1474 0 1 114.95 9.01699 -204.583
- 36 111.221 940 0 0 115.644 8.20144 -205.85
- 36 63.0764 939 0 0 115.794 8.05 -206.082
- 36 256.414 1472 3 1 114.74 9.89402 -114.45
- 36 127.2 949 3 0 114.767 9.94025 -115.85
- 36 181.69 1476 2 1 115.373 10.5567 -144.451
- 36 115.099 952 2 0 115.866 10.499 -145.85
- 36 52.422 1514 1 1 123.074 8.03199 -174.45
- 36 84.5987 1513 1 1 122.95 8.0429 -174.586
- 36 11.2934 1512 1 1 122.75 8.07775 -174.811
- 36 140.002 941 1 0 121.841 8.28065 -175.85
- 36 28.5765 1389 0 1 98.0198 14.8719 -204.45
- 36 105.655 1388 0 1 97.95 14.8649 -204.54
- 36 165.955 973 0 0 97.2026 14.7678 -205.851
- 36 258.097 908 8 0 164.425 1.70663 33.75
- 36 258.011 1479 1 1 115.956 9.92824 -174.45
- 36 275.554 949 1 0 116.008 9.91416 -175.85
- 36 121.116 1483 0 1 116.848 9.36509 -204.45
- 36 111.634 946 0 0 116.933 9.38993 -205.85
- 36 161.388 1484 0 1 117.005 11.3715 -204.45
- 36 226.207 957 0 0 117.107 11.5162 -205.85
- 36 189.961 948 3 0 114.594 9.71918 -115.85
- 36 17.6031 776 3 0 91.2496 -24.794 -116.25
- 36 143.722 775 3 0 91.2184 -24.85 -116.21
- 36 74.1281 774 3 0 90.8307 -25.05 -116.069
- 36 98.2382 773 3 0 90.6735 -25.25 -116.093
- 36 29.4532 772 3 0 90.6352 -25.45 -116.201
- 36 405.973 656 3 0 115.691 -48.7202 -116.25
- 36 11.421 940 2 0 100.411 8.05 -145.935
- 36 77.7819 941 2 0 99.971 8.25 -146.014
- 36 218.962 1469 4 1 114.087 8.64583 -84.4502
- 36 408.061 943 4 0 114.103 8.72565 -85.85
- 36 51.8081 1473 3 1 114.904 10.391 -114.45
- 36 75.7699 1474 3 1 114.95 10.4368 -114.583
- 36 79.3896 1517 2 1 123.667 6.9625 -144.45
- 36 61.4267 1518 2 1 123.75 7.11704 -144.712
- 36 62.6034 938 2 0 124.162 7.75839 -145.85
- 36 53.3409 939 2 0 124.229 7.85 -146.051
- 36 2.25435 858 2 0 145.901 -8.44452 -146.25
- 36 114.982 857 2 0 145.903 -8.45 -146.244
- 36 43.6385 856 2 0 146.018 -8.65 -145.962
- 36 0.388326 1632 2 1 146.75 -9.47751 -144.85
- 36 138.332 1633 2 1 146.75 -9.47798 -144.849
- 36 15.4791 1634 2 1 146.95 -9.77272 -144.484
- 36 119.58 873 3 0 148.542 -5.34473 -116.25
- 36 14.821 1642 3 1 148.74 -5.35231 -114.849
- 36 89.6725 1643 3 1 148.75 -5.35068 -114.792
- 36 265.546 1477 3 1 115.635 9.60596 -114.451
- 36 43.3874 947 3 0 115.546 9.46306 -115.85
- 36 67.9664 946 3 0 115.542 9.44999 -115.986
- 36 78.5373 1472 2 1 114.737 6.34115 -144.45
- 36 46.7421 929 2 0 114.763 5.88536 -145.85
- 36 66.9235 928 2 0 114.763 5.85 -145.959
- 36 21.3088 1468 1 1 113.938 -3.64044 -174.45
- 36 93.1946 1469 1 1 113.95 -3.66527 -174.508
- 36 215.246 879 1 0 114.226 -4.11381 -175.85
- 36 132.366 1496 0 1 119.356 -13.3873 -204.45
- 36 118.775 831 0 0 119.609 -13.6978 -205.85
- 36 103.486 864 0 0 124.131 -7.15638 -206.25
-Number of digits in this event = 59
+Number of tracker hits in this event = 69
+ 36 104.068 1536 8 1 127.398 66.5039 35.55
+ 36 150.148 1232 8 0 127.397 66.5021 34.15
+ 36 131.274 1536 7 1 127.391 66.4718 5.55
+ 36 96.4514 1232 7 0 127.391 66.4706 4.15
+ 36 117.956 1536 6 1 127.378 66.4574 -24.45
+ 36 123.879 1232 6 0 127.378 66.4571 -25.85
+ 36 103.95 1536 5 1 127.382 66.4568 -54.45
+ 36 115.099 1232 5 0 127.383 66.457 -55.85
+ 36 297.147 1536 4 1 127.418 66.4604 -84.45
+ 36 106.146 1232 4 0 127.42 66.4609 -85.85
+ 36 406.004 1536 3 1 127.46 66.4669 -114.45
+ 36 129.034 1232 3 0 127.46 66.4647 -115.85
+ 36 235.88 1536 2 1 127.467 66.4129 -144.45
+ 36 155.578 1231 2 0 127.465 66.4133 -145.85
+ 36 97.6484 1536 1 1 127.434 66.4055 -174.45
+ 36 217.196 1231 1 0 127.431 66.4071 -175.85
+ 36 179.93 1536 0 1 127.383 66.4351 -204.45
+ 36 113.928 1231 0 0 127.379 66.4355 -205.85
+ 36 16.2638 1278 0 0 111.888 75.8183 -206.249
+ 36 79.6197 1279 0 0 111.9 75.85 -206.187
+ 36 107.261 1280 0 0 112.044 76.05 -206.127
+ 36 7.4725 1281 0 0 112.1 76.25 -206.228
+ 36 62.5342 1207 0 0 123.335 61.6339 -206.25
+ 36 65.7709 1206 0 0 123.382 61.45 -206.171
+ 36 88.7998 1205 0 0 123.344 61.25 -206.107
+ 36 47.5314 1204 0 0 123.375 61.05 -205.991
+ 36 217.251 1517 0 1 123.629 60.8837 -204.85
+ 36 185.222 1516 0 1 123.55 60.7767 -204.544
+ 36 175.346 1537 0 1 127.55 66.4796 -204.569
+ 36 59.8873 1239 0 0 126.988 67.8983 -205.85
+ 36 161.432 1240 0 0 126.969 68.0501 -205.942
+ 36 149.236 1287 0 0 121.303 77.5917 -206.25
+ 36 15.6021 355 2 0 40.7211 -108.95 -146.21
+ 36 126.409 354 2 0 40.6281 -109.15 -146.12
+ 36 141.412 353 2 0 40.4416 -109.35 -145.974
+ 36 74.2351 352 2 0 40.1628 -109.55 -145.909
+ 36 167.579 351 2 0 39.8882 -109.75 -145.952
+ 36 421.688 350 2 0 39.5255 -109.95 -145.967
+ 36 137.218 349 2 0 39.1624 -110.15 -145.917
+ 36 8.20175 1070 2 1 34.0755 -108.889 -144.85
+ 36 86.3087 1069 2 1 34.05 -108.885 -144.844
+ 36 123.906 1068 2 1 33.85 -108.888 -144.702
+ 36 448.293 1067 2 1 33.6498 -108.914 -144.531
+ 36 460.974 1537 4 1 127.55 66.5151 -84.593
+ 36 212.261 1231 3 0 127.455 66.3429 -115.85
+ 36 205.292 1227 2 0 127.451 65.6414 -145.85
+ 36 153.555 1530 1 1 126.27 66.2315 -174.45
+ 36 205.242 1526 0 1 125.414 67.0519 -204.45
+ 36 147.113 1235 0 0 125.337 67.1216 -205.85
+ 36 115.316 1576 0 1 135.434 76.9953 -204.45
+ 36 108.817 1285 0 0 135.663 77.0723 -205.85
+ 36 42.1502 1034 2 0 126.259 26.9252 -146.25
+ 36 86.3086 1033 2 0 126.231 26.8499 -146.186
+ 36 62.906 1032 2 0 126.095 26.6497 -146.16
+ 36 73.1661 1031 2 0 125.946 26.4499 -146.158
+ 36 67.8991 1030 2 0 125.86 26.2495 -146.123
+ 36 85.1008 1029 2 0 125.788 26.05 -146.11
+ 36 399.508 1028 2 0 125.508 25.85 -146.206
+ 36 111.112 1058 2 0 71.9196 31.7041 -146.25
+ 36 64.7282 1057 2 0 71.9308 31.65 -145.996
+ 36 40.2323 1260 2 1 72.1677 31.4012 -144.85
+ 36 181.761 1261 2 1 72.25 31.3797 -144.751
+ 36 253.936 1262 2 1 72.45 31.5286 -144.484
+ 36 163.337 1529 2 1 126.066 67.1206 -144.45
+ 36 170.251 1235 2 0 125.993 67.1653 -145.85
+ 36 113.993 1522 1 1 124.667 67.9486 -174.45
+ 36 96.7434 1239 1 0 124.637 67.98 -175.85
+ 36 135.021 1518 0 1 123.921 68.4451 -204.45
+ 36 127.956 1241 0 0 123.819 68.4367 -205.85
+Number of digits in this event = 37
Using G4ParticleGun ...
-4.603 LIN
+3.75792 LIN
e-
Event: 37
-Number of tracker hits in this event = 197
- 37 123.975 1163 11 1 52.692 26.3129 125.55
- 37 141.004 1031 11 0 52.6923 26.3111 124.15
- 37 122.645 1163 10 1 52.7025 26.2754 95.55
- 37 114.775 1031 10 0 52.7042 26.2726 94.15
- 37 104.752 1163 9 1 52.7389 26.2072 65.55
- 37 181.615 1030 9 0 52.7394 26.2015 64.15
- 37 394.317 1163 8 1 52.7684 26.0566 35.55
- 37 453.465 1030 8 0 52.7826 26.0542 34.15
- 37 100.293 1165 7 1 53.0733 26.019 5.55
- 37 319.45 1029 7 0 53.0853 26.0152 4.15
- 37 134.125 1166 6 1 53.2956 25.9644 -24.45
- 37 167.395 1029 6 0 53.3039 25.9679 -25.85
- 37 140.855 1166 5 1 53.4223 26.0885 -54.45
- 37 339.283 1030 5 0 53.4204 26.099 -55.85
- 37 256.267 1166 4 1 53.4229 26.288 -84.45
- 37 152.393 1031 4 0 53.4324 26.2901 -85.85
- 37 594.756 1167 3 1 53.6231 26.2678 -114.45
- 37 389.928 1031 3 0 53.6622 26.2806 -115.85
- 37 130.887 1172 2 1 54.6408 26.5021 -144.45
- 37 138.302 1173 2 1 54.65 26.5026 -144.495
- 37 403.119 1032 2 0 54.9246 26.5246 -145.85
- 37 143.309 1203 1 1 60.7621 27.2258 -174.45
- 37 0.143522 1204 1 1 60.85 27.2271 -174.849
- 37 138.301 1035 1 0 61.0711 27.2292 -175.85
- 37 111.234 1238 0 1 67.7137 26.7694 -204.45
- 37 105.933 1033 0 0 67.987 26.7482 -205.85
- 37 295.763 1009 2 0 83.6128 21.9598 -146.25
- 37 266.95 1008 2 0 83.838 21.85 -146.038
- 37 57.3874 1007 2 0 83.6423 21.6499 -146.177
- 37 41.2697 1031 2 0 54.9141 26.45 -146.153
- 37 320.631 973 2 0 79.1557 14.7962 -146.25
- 37 237.357 1287 2 1 77.5887 16.3376 -144.85
- 37 123.408 1032 3 0 53.6811 26.4687 -115.85
- 37 62.6695 1177 2 1 55.512 26.9963 -144.45
- 37 53.0802 1176 2 1 55.45 26.9782 -144.661
- 37 16.3124 1034 2 0 55.0946 26.8569 -145.85
- 37 288.522 1033 2 0 55.0743 26.8499 -145.917
- 37 127.902 1127 1 1 45.6129 24.0375 -174.45
- 37 1.87362 1126 1 1 45.4499 24.0402 -174.843
- 37 133.121 1020 1 0 45.0259 24.0639 -175.85
- 37 116.105 1058 0 1 31.8279 22.7384 -204.45
- 37 27.9924 1057 0 1 31.6497 22.7216 -204.754
- 37 167.271 1013 0 0 31.0202 22.662 -205.85
- 37 349.231 1012 0 0 30.901 22.65 -206.056
- 37 80.3052 1044 0 0 -12.9231 28.9449 -206.25
- 37 83.6904 1045 0 0 -13.0543 29.05 -206.062
- 37 76.2615 829 0 1 -14.0904 29.7336 -204.85
- 37 105.347 828 0 1 -14.25 29.8541 -204.62
- 37 71.6577 827 0 1 -14.45 30.0204 -204.494
- 37 68.5075 826 0 1 -14.65 30.141 -204.585
- 37 73.0881 825 0 1 -14.85 30.2768 -204.661
- 37 101.671 824 0 1 -15.05 30.4428 -204.728
- 37 91.2462 823 0 1 -15.2501 30.6353 -204.738
- 37 80.2365 822 0 1 -15.45 30.8132 -204.726
- 37 77.2338 821 0 1 -15.6501 31.0117 -204.696
- 37 55.014 820 0 1 -15.85 31.1914 -204.653
- 37 78.8491 819 0 1 -16.0501 31.3328 -204.585
- 37 44.8252 818 0 1 -16.2504 31.4601 -204.559
- 37 85.8034 817 0 1 -16.4502 31.5604 -204.6
- 37 53.7659 816 0 1 -16.65 31.6526 -204.668
- 37 83.0952 815 0 1 -16.8501 31.7437 -204.703
- 37 60.1894 814 0 1 -17.05 31.8329 -204.701
- 37 86.1638 813 0 1 -17.25 31.9237 -204.692
- 37 82.1343 812 0 1 -17.45 32.0879 -204.699
- 37 119.226 811 0 1 -17.6501 32.3068 -204.702
- 37 126.004 810 0 1 -17.85 32.5692 -204.687
- 37 83.3055 809 0 1 -18.0502 32.7902 -204.671
- 37 60.6456 808 0 1 -18.2504 32.9569 -204.637
- 37 53.9303 807 0 1 -18.45 33.0705 -204.62
- 37 55.9843 806 0 1 -18.65 33.1434 -204.588
- 37 125.355 805 0 1 -18.8502 33.1833 -204.598
- 37 53.503 804 0 1 -19.05 33.1678 -204.642
- 37 154.656 803 0 1 -19.25 33.1621 -204.679
- 37 76.9159 802 0 1 -19.45 33.1495 -204.749
- 37 247.253 1064 0 0 -21.1151 32.9955 -205.85
- 37 20.9208 1063 0 0 -21.7459 32.85 -206.237
- 37 79.4915 1102 0 0 -21.1298 40.5343 -206.25
- 37 69.0065 1103 0 0 -20.988 40.65 -205.971
- 37 6.15823 780 0 1 -23.8826 44.9553 -204.85
- 37 213.199 1237 0 0 -36.3938 67.4646 -205.85
- 37 87.748 714 0 1 -37.158 68.3957 -204.85
- 37 82.7525 713 0 1 -37.25 68.311 -204.728
- 37 59.7605 1238 0 0 -36.9514 67.7399 -205.85
- 37 280.846 1236 0 0 -37.0299 67.4498 -206.019
- 37 181.461 1020 0 0 42.6057 24.0863 -205.85
- 37 41.2699 1021 0 0 42.6022 24.25 -205.981
- 37 93.3275 1113 0 1 42.7856 23.8882 -204.85
- 37 114.224 1166 2 1 53.3651 26.0864 -144.45
- 37 221.846 1029 2 0 53.3378 26.0307 -145.85
- 37 98.7744 1164 1 1 52.9228 25.0964 -174.45
- 37 453.674 1024 1 0 52.8996 25.0077 -175.85
- 37 220.49 1161 0 1 52.291 23.124 -204.45
- 37 508.861 1014 0 0 52.3346 23.0247 -205.85
- 37 425.876 1169 4 1 53.9055 26.1321 -84.45
- 37 262.388 1164 7 1 52.9387 26.1099 5.55
- 37 170.062 1030 7 0 52.9433 26.1084 4.15
- 37 276 1164 6 1 53.0138 26.0924 -24.45
- 37 165.333 1030 6 0 53.0206 26.0966 -25.85
- 37 755.656 1165 5 1 53.1433 26.2023 -54.45
- 37 341.867 1030 4 0 53.3101 26.2403 -85.85
- 37 156.349 1168 3 1 53.7117 26.4112 -114.45
- 37 109.063 1170 2 1 54.162 26.5694 -144.45
- 37 108.341 1173 1 1 54.7064 26.5784 -174.45
- 37 128.743 1032 1 0 54.7384 26.5589 -175.85
- 37 141.388 1176 0 1 55.4268 26.1588 -204.45
- 37 139.174 1030 0 0 55.4629 26.1487 -205.85
- 37 83.5351 759 0 0 -33.9352 -28.05 -206.042
- 37 61.9303 1093 0 0 42.0203 38.6649 -206.25
- 37 299.87 1029 5 0 53.1543 26.0282 -55.85
- 37 104.237 1162 4 1 52.6494 25.8418 -84.45
- 37 109.569 1028 4 0 52.6224 25.8116 -85.85
- 37 120.869 1159 3 1 52.0301 25.2066 -114.45
- 37 477.151 1025 3 0 52.0225 25.2171 -115.85
- 37 110.218 1159 2 1 52.0029 25.474 -144.45
- 37 116.41 1027 2 0 51.9998 25.5056 -145.85
- 37 168.609 1159 1 1 51.9317 26.1678 -174.45
- 37 118.099 1030 1 0 51.9779 26.1586 -175.85
- 37 110.563 1164 0 1 52.9511 25.7341 -204.45
- 37 59.8268 1028 0 0 52.9503 25.6619 -205.85
- 37 84.4518 1027 0 0 52.9509 25.65 -206.063
- 37 176.546 1167 4 1 53.4943 26.1078 -84.45
- 37 131.93 1167 2 1 53.5554 24.6634 -144.45
- 37 143.833 1022 2 0 53.5416 24.6225 -145.85
- 37 139.219 1165 1 1 53.2195 23.7657 -174.45
- 37 143.438 1018 1 0 53.2173 23.7053 -175.85
- 37 113.887 1165 0 1 53.1476 22.4487 -204.45
- 37 106.351 1011 0 0 53.1472 22.3818 -205.85
- 37 244.961 1027 6 0 52.9447 25.5908 -25.85
- 37 185.288 1164 5 1 53.0224 25.3675 -54.45
- 37 122.326 1026 5 0 53.0278 25.3568 -55.85
- 37 136.709 1165 4 1 53.1599 25.1511 -84.45
- 37 178.664 1025 4 0 53.1721 25.1393 -85.85
- 37 271.391 1024 3 0 53.5234 24.9091 -115.85
- 37 87.8115 1190 1 1 58.2164 23.7072 -174.45
- 37 61.7926 1191 1 1 58.25 23.6653 -174.715
- 37 112.463 1017 1 0 58.4287 23.4894 -175.85
- 37 16.4135 1016 1 0 58.483 23.45 -176.182
- 37 50.9574 1220 0 1 64.1566 21.5518 -204.45
- 37 79.5021 1221 0 1 64.25 21.4976 -204.601
- 37 4.85385 1005 0 0 64.9881 21.0578 -205.85
- 37 129.241 1004 0 0 65.0014 21.05 -205.872
- 37 165.817 1382 3 1 96.5851 -125.275 -114.586
- 37 298.701 365 4 0 117.204 -107.103 -86.25
- 37 100.198 366 4 0 117.36 -106.95 -86.0332
- 37 58.3781 1495 4 1 119.166 -105.568 -84.8498
- 37 89.491 1496 4 1 119.35 -105.432 -84.7629
- 37 349.588 1497 4 1 119.55 -105.295 -84.5815
- 37 138.219 1498 4 1 119.75 -104.873 -84.7135
- 37 82.7102 378 4 0 120.72 -104.518 -85.8502
- 37 178.083 377 4 0 120.9 -104.55 -85.9856
- 37 163.418 376 4 0 121.441 -104.75 -86.124
- 37 57.0025 375 4 0 121.74 -104.95 -86.2396
- 37 38.4006 1412 1 0 101.815 102.604 -176.25
- 37 166.967 1418 1 0 9.78312 103.773 -176.25
- 37 243.69 1112 3 1 42.5497 35.92 -114.45
- 37 79.7278 1071 3 0 43.1726 34.3735 -115.85
- 37 149.554 1070 3 0 43.2347 34.2495 -115.996
- 37 17.7445 1069 3 0 43.3817 34.05 -116.218
- 37 59.6119 901 6 0 74.8009 0.323649 -26.2499
- 37 242.019 1027 5 0 53.1696 25.5309 -55.852
- 37 153.861 1171 4 1 54.397 27.746 -84.45
- 37 148.242 1038 4 0 54.1952 27.8054 -85.85
- 37 267.919 1152 3 1 50.4519 28.404 -114.45
- 37 110.496 1041 3 0 50.4407 28.2821 -115.85
- 37 208.001 1148 2 1 49.8335 26.2963 -144.45
- 37 118.585 1030 2 0 49.8591 26.2278 -145.85
- 37 136.46 1153 1 1 50.6991 24.7719 -174.45
- 37 140.988 1147 0 1 49.6198 29.4523 -204.45
- 37 5.50861 1048 0 0 49.1849 29.8463 -205.85
- 37 183.567 1049 0 0 49.1808 29.85 -205.863
- 37 87.0122 1151 3 1 50.4498 28.5457 -114.759
- 37 41.0249 1048 3 0 50.0243 29.74 -115.85
- 37 62.5936 1049 3 0 49.9523 29.85 -115.863
- 37 430.711 1050 3 0 49.8589 30.05 -115.906
- 37 68.6695 1051 3 0 49.537 30.2501 -115.963
- 37 116.693 1156 4 1 51.4059 27.2771 -84.45
- 37 118.075 1036 4 0 51.3398 27.2835 -85.85
- 37 84.7218 1153 3 1 50.65 26.9484 -114.646
- 37 22.7697 1154 3 1 50.85 26.704 -114.803
- 37 29.1301 1023 3 0 52.3626 24.85 -116.186
- 37 46.6197 1286 2 1 77.4447 -6.98708 -144.45
- 37 280.015 862 2 0 77.4518 -7.48259 -145.85
- 37 87.5938 703 2 0 82.8319 -39.2893 -146.25
- 37 75.2636 702 2 0 82.8624 -39.45 -146.061
- 37 164.864 1315 2 1 83.0535 -40.4641 -144.85
- 37 315.454 1170 1 1 54.1196 24.546 -174.45
- 37 80.245 1022 1 0 53.9802 24.4672 -175.85
- 37 21.2393 1021 1 0 53.952 24.45 -176.16
- 37 9.86675 1158 0 1 51.8487 22.5793 -204.45
- 37 114.608 1159 0 1 51.85 22.5876 -204.488
- 37 18.1855 1169 1 1 54.05 24.6172 -174.769
- 37 26.4988 1023 1 0 53.8895 24.8365 -175.85
- 37 63.8786 1160 0 1 52.05 28.8626 -204.45
- 37 73.522 1162 0 1 52.45 29.0173 -204.676
- 37 21.3731 1163 0 1 52.65 29.1206 -204.808
- 37 119.93 1050 0 0 54.3224 30.05 -205.883
- 37 105.066 1051 0 0 54.6668 30.2503 -206.091
-Number of digits in this event = 92
-Using G4ParticleGun ...
-1.30193 LIN
+Number of tracker hits in this event = 75
+ 37 305.096 264 9 1 -127.278 -34.4127 65.55
+ 37 137.22 728 9 0 -127.277 -34.4123 64.15
+ 37 112.675 264 8 1 -127.261 -34.4043 35.55
+ 37 148.694 728 8 0 -127.264 -34.405 34.15
+ 37 180.903 264 7 1 -127.316 -34.4129 5.55
+ 37 119.956 728 7 0 -127.318 -34.4127 4.15
+ 37 100.206 263 6 1 -127.351 -34.4089 -24.45
+ 37 110.73 728 6 0 -127.354 -34.4097 -25.85
+ 37 201.076 263 5 1 -127.426 -34.4277 -54.45
+ 37 114.063 728 5 0 -127.428 -34.4268 -55.85
+ 37 121.399 263 4 1 -127.474 -34.4083 -84.45
+ 37 101.068 728 4 0 -127.482 -34.401 -85.85
+ 37 100.839 258 3 1 -128.421 -34.6963 -114.45
+ 37 112.953 726 3 0 -128.439 -34.8069 -115.85
+ 37 242.734 258 2 1 -128.541 -36.563 -144.45
+ 37 121.677 717 2 0 -128.302 -36.5055 -145.85
+ 37 97.6602 282 1 1 -123.602 -35.372 -174.45
+ 37 29.7006 283 1 1 -123.55 -35.3685 -174.742
+ 37 95.7809 723 1 0 -123.367 -35.3592 -175.85
+ 37 107.853 306 0 1 -118.942 -34.5667 -204.45
+ 37 134.069 726 0 0 -118.575 -34.7352 -205.85
+ 37 49.0075 807 5 1 -18.604 -175.399 -54.85
+ 37 137.865 808 5 1 -18.45 -175.572 -54.4772
+ 37 238.027 23 5 0 -17.8664 -175.527 -55.85
+ 37 171.583 22 5 0 -18.0328 -175.55 -56.1418
+ 37 246.106 263 3 1 -127.511 -34.3897 -114.45
+ 37 284.781 728 3 0 -127.426 -34.3587 -115.85
+ 37 14.0502 280 2 1 -124.105 -33.7861 -144.45
+ 37 48.8449 279 2 1 -124.15 -33.7872 -144.468
+ 37 99.2493 278 2 1 -124.35 -33.7932 -144.559
+ 37 74.3554 277 2 1 -124.55 -33.7851 -144.661
+ 37 61.7942 276 2 1 -124.75 -33.7749 -144.763
+ 37 182.957 730 2 0 -126.981 -33.9484 -145.85
+ 37 260.548 729 2 0 -127.522 -34.05 -146.144
+ 37 135.401 21 1 1 -175.864 -46.3271 -174.45
+ 37 2.15889 20 1 1 -175.95 -46.2008 -174.844
+ 37 136.387 670 1 0 -176.328 -45.9664 -175.851
+ 37 42.457 262 3 1 -127.55 -34.3533 -114.728
+ 37 17.5696 732 3 0 -127.753 -33.4866 -115.85
+ 37 132.361 733 3 0 -127.755 -33.45 -115.903
+ 37 192.52 257 2 1 -128.616 -31.0269 -144.45
+ 37 67.8547 747 2 0 -129.028 -30.5458 -145.85
+ 37 52.3103 748 2 0 -129.115 -30.45 -146.089
+ 37 89.5972 215 1 1 -136.955 -16.6081 -174.45
+ 37 102.475 214 1 1 -137.15 -16.4802 -174.642
+ 37 27.914 213 1 1 -137.35 -16.3527 -174.805
+ 37 13.4331 822 1 0 -138.704 -15.4775 -175.85
+ 37 181.083 823 1 0 -138.747 -15.4498 -175.882
+ 37 65.3386 824 1 0 -139.15 -15.25 -176.14
+ 37 348.732 259 2 1 -128.35 -30.7825 -144.635
+ 37 3.29686 260 2 1 -128.15 -30.7994 -144.622
+ 37 151.78 264 6 1 -127.318 -34.3618 -24.45
+ 37 23.7577 733 6 0 -126.859 -33.3177 -25.85
+ 37 76.0786 734 6 0 -126.826 -33.25 -25.9292
+ 37 144.062 735 6 0 -126.727 -33.05 -26.0781
+ 37 56.3039 736 6 0 -126.659 -32.85 -26.1463
+ 37 68.5188 737 6 0 -126.607 -32.65 -26.1877
+ 37 58.331 738 6 0 -126.551 -32.45 -26.2195
+ 37 53.49 739 6 0 -126.523 -32.25 -26.235
+ 37 56.2907 740 6 0 -126.518 -32.05 -26.2467
+ 37 166.503 741 6 0 -126.541 -31.85 -26.2437
+ 37 108.767 742 6 0 -126.546 -31.65 -26.2358
+ 37 65.2239 719 9 0 -127.027 -36.1198 64.1499
+ 37 100.992 718 9 0 -127.014 -36.25 64.0559
+ 37 64.9327 717 9 0 -127.001 -36.4501 63.9103
+ 37 12.9684 716 9 0 -127.006 -36.65 63.771
+ 37 68.6286 261 8 1 -127.899 -89.1538 35.55
+ 37 221.822 262 8 1 -127.75 -89.0272 35.4052
+ 37 11.3323 263 8 1 -127.55 -88.8007 35.1805
+ 37 10.4373 461 8 0 -126.574 -87.677 34.15
+ 37 130.829 462 8 0 -126.549 -87.6499 34.1236
+ 37 150.501 463 8 0 -126.225 -87.45 33.8984
+ 37 396.559 464 8 0 -125.759 -87.25 33.852
+ 37 70.7323 280 8 1 -124.097 -87.7481 35.15
+ 37 90.5633 281 8 1 -123.95 -87.8281 35.3542
+Number of digits in this event = 32
+Using G4ParticleGun ...
+6.44182 LIN
e-
Event: 38
-Number of tracker hits in this event = 26
- 38 20.6595 1121 11 1 44.3138 69.6569 125.237
- 38 152.418 1248 11 0 44.3139 69.6568 124.15
- 38 112.712 1121 10 1 44.2911 69.6346 95.55
- 38 165.085 1247 10 0 44.301 69.6456 94.15
- 38 205.84 1122 9 1 44.5282 69.865 65.55
- 38 121.897 1249 9 0 44.5343 69.8827 64.15
- 38 108.863 1123 8 1 44.6534 70.2523 35.55
- 38 214.13 1251 8 0 44.6639 70.2746 34.15
- 38 100.002 1124 7 1 44.8721 70.742 5.55
- 38 144.085 1253 7 0 44.8803 70.7642 4.15
- 38 139.152 1125 6 1 45.0502 71.2067 -24.45
- 38 128.456 1255 6 0 45.0579 71.2328 -25.85
- 38 122.684 1125 5 1 45.2376 71.7758 -54.45
- 38 126.183 1258 5 0 45.2453 71.8036 -55.85
- 38 106.323 1126 4 1 45.426 72.3798 -84.45
- 38 106.883 1261 4 0 45.4413 72.4067 -85.85
- 38 131.674 1128 3 1 45.7443 72.9533 -114.45
- 38 108.463 1264 3 0 45.763 72.9794 -115.85
- 38 123.66 1130 2 1 46.1404 73.5253 -144.45
- 38 118.263 1267 2 0 46.1594 73.5528 -145.85
- 38 180.443 1132 1 1 46.5094 74.1103 -174.45
- 38 120.557 1270 1 0 46.5261 74.1357 -175.85
- 38 112.662 1134 0 1 46.8867 74.6192 -204.45
- 38 131.327 1272 0 0 46.9042 74.6363 -205.85
- 38 194.838 1726 1 1 165.35 14.5645 -174.524
- 38 119.436 1250 8 0 44.792 70.25 34.0046
-Number of digits in this event = 17
+Number of tracker hits in this event = 36
+ 38 114.528 894 11 1 -1.06166 17.2841 125.55
+ 38 112.488 986 11 0 -1.06171 17.2856 124.15
+ 38 129.772 894 10 1 -1.06116 17.3152 95.55
+ 38 114.691 986 10 0 -1.0612 17.3157 94.15
+ 38 138.647 894 9 1 -1.06199 17.3253 65.55
+ 38 243.357 986 9 0 -1.06176 17.3254 64.15
+ 38 156.622 894 8 1 -1.05479 17.3328 35.55
+ 38 129.136 986 8 0 -1.0538 17.3341 34.15
+ 38 184.603 895 7 1 -1.02803 17.358 5.55
+ 38 135.748 986 7 0 -1.02613 17.3591 4.15
+ 38 121.667 895 6 1 -0.990207 17.3782 -24.45
+ 38 100.078 986 6 0 -0.988439 17.3785 -25.85
+ 38 150.257 895 5 1 -0.954219 17.3868 -54.45
+ 38 139.116 986 5 0 -0.951502 17.388 -55.85
+ 38 106.951 895 4 1 -0.891854 17.4134 -84.45
+ 38 140.154 986 4 0 -0.889474 17.4152 -85.85
+ 38 105.786 896 3 1 -0.849093 17.4438 -114.45
+ 38 137.826 986 3 0 -0.847685 17.4444 -115.85
+ 38 119.308 896 2 1 -0.809694 17.4469 -144.45
+ 38 122.769 986 2 0 -0.805339 17.4488 -145.85
+ 38 113.358 896 1 1 -0.723877 17.4804 -174.45
+ 38 87.2349 987 1 0 -0.720739 17.4821 -175.85
+ 38 269.937 897 0 1 -0.646812 17.5014 -204.45
+ 38 122.763 987 0 0 -0.649732 17.4869 -205.85
+ 38 23.0104 1473 10 0 -166.824 114.868 93.75
+ 38 264.991 1474 10 0 -166.96 114.95 94.0147
+ 38 154.752 896 7 1 -0.85 17.3521 5.24404
+ 38 31.0514 897 7 1 -0.65 17.2678 5.17167
+ 38 209.31 984 7 0 3.1745 16.9806 4.14984
+ 38 266.03 983 7 0 3.20233 16.85 3.87823
+ 38 159.221 895 8 1 -1.05 17.3765 35.3074
+ 38 235.729 895 1 1 -0.978388 17.3454 -174.45
+ 38 287.87 986 1 0 -0.928903 17.3537 -175.85
+ 38 111.058 899 0 1 -0.161854 17.7021 -204.45
+ 38 115.924 894 0 1 -1.06261 16.774 -204.45
+ 38 117.488 983 0 0 -1.09115 16.7255 -205.85
+Number of digits in this event = 25
Using G4ParticleGun ...
-5.02674 LIN
+5.33612 LIN
e-
Event: 39
-Number of tracker hits in this event = 229
- 39 121.677 1407 10 1 101.691 2.41469 95.55
- 39 209.113 911 10 0 101.69 2.41522 94.15
- 39 106.937 1407 9 1 101.66 2.42044 65.55
- 39 244.948 911 9 0 101.658 2.41889 64.15
- 39 471.194 1407 8 1 101.63 2.39006 35.55
- 39 375.635 911 8 0 101.629 2.38902 34.15
- 39 694.295 1407 7 1 101.632 2.37322 5.55
- 39 337.605 911 7 0 101.631 2.37322 4.15
- 39 115.316 1407 6 1 101.607 2.36896 -24.45
- 39 156.91 911 6 0 101.606 2.36888 -25.85
- 39 112.655 1407 5 1 101.587 2.373 -54.45
- 39 490.241 911 5 0 101.583 2.37134 -55.85
- 39 138.662 1406 4 1 101.486 2.31997 -84.45
- 39 132.466 911 4 0 101.487 2.31591 -85.85
- 39 176.664 1406 3 1 101.481 2.22616 -114.45
- 39 110.375 910 3 0 101.483 2.22296 -115.85
- 39 135.942 1406 2 1 101.513 2.1682 -144.45
- 39 124.635 910 2 0 101.513 2.16333 -145.85
- 39 192.335 1406 1 1 101.521 2.04951 -174.45
- 39 153.642 909 1 0 101.521 2.04725 -175.85
- 39 305.837 1406 0 1 101.535 1.98958 -204.45
- 39 95.3995 909 0 0 101.546 1.98478 -205.85
- 39 274.894 912 7 0 101.646 2.45374 4.15
- 39 163.124 1417 6 1 103.719 5.80953 -24.45
- 39 113.008 925 6 0 103.258 5.21858 -25.8506
- 39 166.619 1373 5 1 94.9378 -4.70218 -54.45
- 39 15.0665 1372 5 1 94.75 -5.05219 -54.8044
- 39 76.125 869 5 0 94.1659 -6.07096 -55.85
- 39 242.195 868 5 0 94.0649 -6.25 -56.0286
- 39 570.7 1287 4 1 77.5797 -31.9121 -84.4502
- 39 79.1508 732 4 0 77.6228 -33.5202 -85.85
- 39 76.259 731 4 0 77.6299 -33.65 -85.952
- 39 49.2917 730 4 0 77.6419 -33.85 -86.081
- 39 16.3413 729 4 0 77.6469 -34.05 -86.2156
- 39 95.6163 1285 3 1 77.084 -75.097 -114.45
- 39 336.227 1284 3 1 77.05 -75.3797 -114.508
- 39 172.61 1283 3 1 76.85 -76.6066 -114.746
- 39 4.10099 501 3 0 76.1416 -79.8327 -115.85
- 39 195.337 500 3 0 76.1377 -79.85 -115.856
- 39 69.2395 499 3 0 76.0739 -80.05 -115.935
- 39 67.7577 498 3 0 75.9812 -80.2503 -116.029
- 39 64.2716 497 3 0 75.8738 -80.45 -116.139
- 39 23.8025 1136 2 1 47.2635 -125.504 -144.45
- 39 266.281 1135 2 1 47.2498 -125.521 -144.484
- 39 6.36559 270 2 0 46.5769 -126.14 -145.85
- 39 128.697 269 2 0 46.5652 -126.15 -145.873
- 39 49.1653 1071 1 1 34.4173 -138.417 -174.45
- 39 112.018 1070 1 1 34.25 -138.394 -174.558
- 39 109.958 1069 1 1 34.05 -138.373 -174.681
- 39 21.8397 1068 1 1 33.85 -138.351 -174.808
- 39 203.363 210 1 0 32.1463 -138.042 -175.85
- 39 3.05186 211 1 0 31.4486 -137.95 -176.244
- 39 217.008 217 1 0 -66.1591 -136.567 -176.25
- 39 54.7513 216 1 0 -66.7339 -136.75 -175.9
- 39 49.7457 555 1 1 -68.9001 -137.324 -174.85
- 39 79.1642 554 1 1 -69.05 -137.366 -174.786
- 39 58.87 553 1 1 -69.2501 -137.434 -174.69
- 39 67.444 552 1 1 -69.45 -137.506 -174.586
- 39 52.998 221 2 0 -65.8102 -135.774 -146.25
- 39 67.8486 222 2 0 -65.7927 -135.75 -146.069
- 39 150.738 571 2 1 -65.815 -135.489 -144.849
- 39 8.40242 411 3 0 -52.2464 -97.7749 -116.25
- 39 63.7906 412 3 0 -52.2376 -97.75 -116.232
- 39 115.11 413 3 0 -52.1848 -97.55 -116.133
- 39 214.896 414 3 0 -52.1526 -97.35 -116.065
- 39 83.8437 415 3 0 -52.1341 -97.15 -116.001
- 39 106.097 416 3 0 -52.0767 -96.95 -115.931
- 39 41.9836 648 3 1 -50.3711 -96.5 -114.85
- 39 79.4743 649 3 1 -50.25 -96.5078 -114.791
- 39 22.6674 650 3 1 -50.0499 -96.6797 -114.803
- 39 4.70687 910 7 0 101.681 2.25 3.77459
- 39 221.234 1415 6 1 103.307 0.0787347 -24.45
- 39 136.561 900 6 0 103.393 0.173452 -25.85
- 39 240.952 1422 5 1 104.571 1.6032 -54.4503
- 39 8.98163 912 5 0 104.482 2.62605 -55.8501
- 39 164.058 913 5 0 104.482 2.65004 -55.8854
- 39 39.3829 914 5 0 104.482 2.85005 -56.1303
- 39 45.3475 1153 5 0 129.872 50.8085 -56.25
- 39 96.5854 1154 5 0 129.917 50.85 -56.1939
- 39 65.139 1155 5 0 130.146 51.05 -56.0099
- 39 97.902 1156 5 0 130.309 51.25 -55.8993
- 39 89.6273 1157 5 0 130.482 51.45 -55.8679
- 39 62.7619 1562 5 1 132.613 54.2937 -54.85
- 39 394.749 1563 5 1 132.75 54.4994 -54.8069
- 39 198.154 1564 5 1 132.95 55.4243 -54.7994
- 39 202.109 1565 5 1 133.15 55.7944 -54.7408
- 39 10.156 1195 5 0 134.931 59.2168 -55.85
- 39 63.4513 1196 5 0 134.95 59.2502 -55.8575
- 39 78.5614 1197 5 0 135.05 59.45 -55.9101
- 39 60.3679 1198 5 0 135.022 59.65 -56.0531
- 39 169.179 1199 5 0 134.893 59.85 -56.0671
- 39 73.9287 1200 5 0 134.727 60.05 -56.1815
- 39 72.1904 1423 5 1 104.75 1.60187 -54.6265
- 39 64.5359 1424 5 1 104.951 1.50544 -54.7722
- 39 114.522 1425 5 1 105.15 1.41518 -54.7592
- 39 341.914 1426 5 1 105.35 1.43777 -54.5771
- 39 135.962 1493 0 1 118.878 44.6419 -204.45
- 39 190.127 1494 0 1 118.95 44.7085 -204.813
- 39 223.718 1124 0 0 119.13 44.8889 -205.85
- 39 7.12371 1495 0 1 119.15 44.7542 -204.822
- 39 31.6463 902 6 0 103.27 0.574617 -25.85
- 39 276.259 903 6 0 103.253 0.65 -25.9144
- 39 71.3488 302 6 0 162.2 -119.555 -26.25
- 39 8.92699 939 9 0 104.762 8.03975 63.75
- 39 282.848 940 9 0 104.758 8.05 63.7738
- 39 397.096 1406 5 1 101.453 2.36691 -54.45
- 39 116.291 1420 4 1 104.2 4.15689 -84.45
- 39 86.59 923 4 0 104.627 4.76184 -85.8504
- 39 85.35 924 4 0 104.694 4.85007 -86.0679
- 39 63.2698 1468 3 1 113.857 16.0442 -114.45
- 39 80.2212 1469 3 1 113.95 16.1625 -114.617
- 39 106.854 985 3 0 114.679 17.0712 -115.85
- 39 59.0527 986 3 0 114.811 17.2501 -116.089
- 39 132 1543 2 1 128.89 39.579 -144.45
- 39 28.7692 1544 2 1 128.95 39.7132 -144.746
- 39 115.486 1101 2 0 129.257 40.2526 -145.85
- 39 7.65451 1102 2 0 129.358 40.45 -146.214
- 39 511.36 1575 1 1 135.289 55.4747 -174.45
- 39 1.16493 1182 1 0 135.323 56.647 -175.85
- 39 104.365 1183 1 0 135.324 56.6503 -175.854
- 39 73.2344 1184 1 0 135.325 56.85 -176.114
- 39 19.6582 1563 0 1 132.798 79.0459 -204.45
- 39 114.111 1562 0 1 132.75 79.108 -204.487
- 39 218.681 1561 0 1 132.55 79.3688 -204.628
- 39 23.6809 1560 0 1 132.35 79.6671 -204.81
- 39 25.9055 1307 0 0 131.145 81.5728 -205.85
- 39 96.2326 1308 0 0 131.097 81.65 -205.892
- 39 74.0981 1309 0 0 130.953 81.85 -206.014
- 39 140.018 1310 0 0 130.8 82.05 -206.149
- 39 139.213 1407 4 1 101.577 2.0704 -84.45
- 39 103.054 909 4 0 101.564 2.03944 -85.85
- 39 207.992 1405 3 1 101.258 1.36657 -114.45
- 39 291.874 906 3 0 101.199 1.31366 -115.85
- 39 114.827 1399 2 1 99.9904 0.182872 -144.45
- 39 114.257 900 2 0 99.8822 0.131429 -145.85
- 39 173.579 1386 1 1 97.5429 -0.731129 -174.45
- 39 122.119 896 1 0 97.5006 -0.715291 -175.85
- 39 104.698 1382 0 1 96.6599 -0.315137 -204.45
- 39 11.0304 898 0 0 96.6874 -0.25184 -205.85
- 39 92.6702 899 0 0 96.6882 -0.25 -205.892
- 39 40.2544 1404 3 1 101.15 1.39745 -114.706
- 39 159.473 904 3 0 100.151 1.03929 -115.85
- 39 189.956 905 3 0 100.039 1.05 -115.884
- 39 94.4585 900 10 0 152.487 0.05 93.8862
- 39 46.1999 1662 10 1 152.676 -0.559465 95.1503
- 39 75.7935 1663 10 1 152.75 -0.625533 95.268
- 39 176.09 1664 10 1 152.95 -0.631498 95.4576
- 39 259.92 1665 10 1 153.15 -0.556201 95.5198
- 39 57.1583 888 10 0 151.431 -2.39866 94.15
- 39 48.9077 1660 10 1 152.307 -1.89193 95.15
- 39 125.161 1405 6 1 101.262 2.49902 -24.45
- 39 106.895 912 6 0 101.249 2.52858 -25.85
- 39 258.064 1404 5 1 101.023 3.19574 -54.45
- 39 135.262 915 5 0 101.018 3.22986 -55.85
- 39 124.611 1403 4 1 100.915 3.95541 -84.45
- 39 184.174 919 4 0 100.909 3.98659 -85.85
- 39 124.525 1403 3 1 100.813 4.60813 -114.45
- 39 115.507 922 3 0 100.811 4.6372 -115.85
- 39 101.086 1403 2 1 100.789 5.2563 -144.45
- 39 114.497 926 2 0 100.784 5.30623 -145.85
- 39 107.167 1402 1 1 100.572 6.37434 -174.45
- 39 130.343 931 1 0 100.568 6.42733 -175.85
- 39 242.817 1401 0 1 100.514 7.48629 -204.45
- 39 151.77 937 0 0 100.53 7.53997 -205.85
- 39 103.416 1400 0 1 100.33 7.37152 -204.45
- 39 33.5865 1399 0 1 100.15 7.41346 -204.772
- 39 161.776 938 0 0 99.4598 7.68706 -205.85
- 39 111.121 936 0 0 100.338 7.26566 -205.85
- 39 9.26119 956 0 0 101.863 11.25 -205.905
- 39 150.78 1402 2 1 100.657 5.18028 -144.596
- 39 229.738 925 2 0 100.65 5.20561 -145.85
- 39 99.7344 1403 1 1 100.856 5.64874 -174.451
- 39 160.654 927 1 0 100.863 5.59474 -175.85
- 39 120.184 920 0 0 101.347 4.12262 -205.85
- 39 134.754 1400 1 1 100.301 5.12131 -174.45
- 39 150.343 925 1 0 99.8102 5.13742 -175.85
- 39 181.298 1353 0 1 90.918 5.75228 -204.45
- 39 169.14 927 0 0 90.5498 5.60547 -205.85
- 39 2.23786 807 0 0 75.1722 -18.6406 -206.25
- 39 315.686 806 0 0 75.1662 -18.65 -206.244
- 39 409.15 1403 5 1 100.95 2.5649 -54.7539
- 39 51.8453 908 5 0 100.076 1.75049 -55.85
- 39 94.8513 907 5 0 99.9783 1.64992 -55.9625
- 39 78.8375 906 5 0 99.7957 1.45 -56.1386
- 39 0.668326 905 5 0 99.6881 1.25 -56.2488
- 39 199.525 1290 4 1 78.1807 -50.1447 -84.45
- 39 114.683 1291 4 1 78.25 -50.4064 -84.6451
- 39 79.0596 640 4 0 78.8465 -51.8783 -85.85
- 39 108.486 639 4 0 78.9248 -52.05 -86.0246
- 39 8.6227 638 4 0 79.1236 -52.25 -86.233
- 39 129.165 571 4 0 160.508 -65.792 -86.25
- 39 110.872 572 4 0 160.859 -65.6499 -86.162
- 39 267.102 573 4 0 161.094 -65.45 -86.1466
- 39 224.818 1708 4 1 161.889 -65.2134 -84.8496
- 39 59.7719 1714 4 1 163.025 -65.3899 -84.85
- 39 95.1537 1715 4 1 163.15 -65.3367 -84.7573
- 39 175.54 1716 4 1 163.35 -65.1882 -84.7314
- 39 93.1716 1717 4 1 163.55 -65.2307 -84.7412
- 39 139.975 575 4 0 162.707 -64.8599 -85.85
- 39 16.1074 576 4 0 162.65 -64.85 -85.8925
- 39 159.046 1402 5 1 100.75 2.40046 -54.4712
- 39 110.091 1401 5 1 100.55 2.1276 -54.4624
- 39 77.4649 1400 5 1 100.35 1.9039 -54.4962
- 39 83.0625 1399 5 1 100.15 1.76123 -54.5685
- 39 59.3499 1398 5 1 99.95 1.59718 -54.6287
- 39 80.6885 1397 5 1 99.75 1.41773 -54.7277
- 39 11.8245 1396 5 1 99.55 1.23818 -54.8381
- 39 182.299 899 5 0 97.3449 -0.131275 -55.8501
- 39 155.408 898 5 0 97.138 -0.25 -55.9214
- 39 236.982 897 5 0 96.8398 -0.45 -55.9737
- 39 39.7503 896 5 0 96.5035 -0.65 -55.89
- 39 40.7412 1363 5 1 92.9483 -3.51473 -54.85
- 39 65.4086 877 5 0 91.1628 -4.61525 -55.85
- 39 101.188 876 5 0 91.1153 -4.65 -55.8906
- 39 59.2635 875 5 0 90.8549 -4.85 -56.1294
- 39 334.317 900 5 0 96.4294 0.050092 -56.0777
- 39 3.28727 1405 8 1 101.343 2.36982 35.55
- 39 105.083 1406 8 1 101.35 2.36567 35.5431
- 39 1.28459 907 8 0 103.299 1.45239 34.15
- 39 273.096 906 8 0 103.304 1.44997 34.1469
- 39 251.787 905 8 0 104.066 1.25 33.7852
- 39 60.0798 1412 8 0 160.222 102.599 33.7501
- 39 59.5902 1413 8 0 160.28 102.75 33.8243
- 39 89.2474 1414 8 0 160.34 102.951 33.8893
- 39 100.483 1415 8 0 160.232 103.15 33.9719
- 39 37.8589 1416 8 0 160.009 103.35 34.1003
- 39 12.758 1689 8 1 158.015 103.421 35.15
- 39 22.8538 1421 8 0 155.241 104.509 34.15
- 39 472.606 1651 8 1 150.445 107.455 35.1501
-Number of digits in this event = 96
+Number of tracker hits in this event = 35
+ 39 174.171 759 9 1 -28.1363 118.863 65.55
+ 39 102.299 1493 9 0 -28.1367 118.862 64.15
+ 39 281.79 759 8 1 -28.1407 118.832 35.55
+ 39 118.521 1493 8 0 -28.1395 118.83 34.15
+ 39 138.684 759 7 1 -28.1134 118.801 5.55
+ 39 119.017 1493 7 0 -28.1121 118.798 4.15
+ 39 112.614 759 6 1 -28.0886 118.739 -24.45
+ 39 149.453 1492 6 0 -28.086 118.737 -25.85
+ 39 114.238 760 5 1 -28.0296 118.686 -54.45
+ 39 237.574 1492 5 0 -28.0279 118.685 -55.85
+ 39 111.526 760 4 1 -27.9925 118.653 -84.45
+ 39 115.575 1492 4 0 -27.9916 118.651 -85.85
+ 39 143.445 760 3 1 -27.9726 118.603 -114.45
+ 39 116.057 1492 3 0 -27.9727 118.61 -115.85
+ 39 177.238 760 2 1 -28.037 118.671 -144.45
+ 39 136.961 1492 2 0 -28.0361 118.667 -145.85
+ 39 150.206 760 1 1 -28.0494 118.617 -174.45
+ 39 238.379 1492 1 0 -28.0545 118.616 -175.85
+ 39 456.538 759 0 1 -28.1979 118.623 -204.45
+ 39 393.706 1492 0 0 -28.1977 118.612 -205.85
+ 39 144.466 1313 0 1 82.736 152.574 -204.45
+ 39 231.891 760 0 1 -27.9213 118.447 -204.45
+ 39 315.218 1491 0 0 -27.9065 118.44 -205.85
+ 39 26.6488 1490 8 0 -28.5184 118.203 34.1499
+ 39 118.421 1489 8 0 -28.5442 118.15 34.0505
+ 39 51.1522 1488 8 0 -28.5922 117.95 33.8119
+ 39 289.333 767 7 1 -26.5786 82.1232 5.54983
+ 39 137.779 1308 7 0 -26.7141 81.7095 4.15
+ 39 139.576 1404 7 0 -0.676279 101.127 3.75056
+ 39 87.8128 1405 7 0 -0.6384 101.15 3.99636
+ 39 315.238 895 7 1 -0.950721 101.936 5.15
+ 39 226.405 1494 0 0 -28.1789 118.964 -205.85
+ 39 62.607 1493 0 0 -20.2108 118.807 -206.25
+ 39 32.675 1272 0 0 -80.6104 74.524 -206.25
+ 39 159.012 1271 0 0 -80.6611 74.45 -206.239
+Number of digits in this event = 23
Using G4ParticleGun ...
-1.86768 LIN
+5.87555 LIN
e-
Event: 40
-Number of tracker hits in this event = 29
- 40 106.793 1207 9 1 61.6053 118.188 65.55
- 40 101.142 1490 9 0 61.605 118.186 64.15
- 40 114.375 1207 8 1 61.5993 118.159 35.55
- 40 203.604 1490 8 0 61.5979 118.158 34.15
- 40 170.758 1207 7 1 61.5873 118.115 5.55
- 40 112.995 1489 7 0 61.5869 118.116 4.15
- 40 125.344 1207 6 1 61.582 118.112 -24.45
- 40 127.454 1489 6 0 61.5838 118.111 -25.85
- 40 138.07 1207 5 1 61.6265 118.091 -54.45
- 40 119.36 1489 5 0 61.6259 118.089 -55.85
- 40 124.261 1207 4 1 61.6128 118.056 -84.45
- 40 139.299 1489 4 0 61.6079 118.058 -85.85
- 40 109.158 1207 3 1 61.5005 118.118 -114.45
- 40 164.148 1489 3 0 61.4943 118.122 -115.85
- 40 126.89 1206 2 1 61.3719 118.179 -144.45
- 40 154.754 1490 2 0 61.368 118.185 -145.85
- 40 151.971 1206 1 1 61.2906 118.316 -174.45
- 40 121.151 1490 1 0 61.286 118.321 -175.85
- 40 190.965 1205 0 1 61.176 118.426 -204.45
- 40 131.445 1491 0 0 61.1741 118.426 -205.85
- 40 128.882 1242 1 0 124.214 68.526 -176.25
- 40 107.178 610 2 1 -57.85 -133.33 -144.702
- 40 67.9232 25 4 0 -11.4628 -175.099 -86.25
- 40 90.4196 24 4 0 -11.4322 -175.15 -86.0803
- 40 130.286 840 4 1 -11.9551 -175.684 -84.8498
- 40 52.808 1444 0 0 54.0259 108.997 -206.25
- 40 99.765 1443 0 0 53.8894 108.95 -206.153
- 40 153.59 1442 0 0 53.7511 108.75 -206.108
- 40 251.701 1441 0 0 53.6601 108.55 -206.057
-Number of digits in this event = 21
+Number of tracker hits in this event = 59
+ 40 127.02 1230 9 1 66.2328 -115.092 65.55
+ 40 135.549 325 9 0 66.2323 -115.092 64.15
+ 40 111.141 1230 8 1 66.2227 -115.089 35.55
+ 40 128.444 325 8 0 66.2228 -115.087 34.15
+ 40 112.183 1230 7 1 66.2243 -115.059 5.55
+ 40 110.603 325 7 0 66.2264 -115.057 4.15
+ 40 147.683 1231 6 1 66.2659 -115.017 -24.45
+ 40 143.354 325 6 0 66.2685 -115.014 -25.85
+ 40 168.906 1231 5 1 66.32 -114.96 -54.45
+ 40 98.5394 325 5 0 66.3257 -114.958 -55.85
+ 40 81.5099 1232 4 1 66.4543 -114.934 -84.45
+ 40 137.174 326 4 0 66.4632 -114.935 -85.85
+ 40 119.717 1232 3 1 66.6291 -114.958 -114.45
+ 40 126.025 325 3 0 66.645 -114.966 -115.85
+ 40 258.785 1234 2 1 66.9936 -115.125 -144.45
+ 40 299.967 325 2 0 67.0172 -115.132 -145.85
+ 40 107.506 1237 1 1 67.5198 -115.262 -174.45
+ 40 133.21 324 1 0 67.5441 -115.268 -175.85
+ 40 108.903 1239 0 1 68.0372 -115.373 -204.45
+ 40 115.083 323 0 0 68.0577 -115.382 -205.85
+ 40 68.5025 324 2 0 67.0235 -115.15 -145.916
+ 40 204.029 1233 2 1 66.7923 -115.018 -144.45
+ 40 88.5455 323 2 0 66.7584 -115.361 -145.85
+ 40 81.443 1233 1 1 66.8105 -119.205 -174.45
+ 40 80.1101 1234 1 1 66.85 -119.183 -174.778
+ 40 124.314 305 1 0 67.0218 -119.12 -175.85
+ 40 140.291 1256 0 1 71.4341 -115.066 -204.45
+ 40 71.3635 328 0 0 71.2007 -114.433 -205.85
+ 40 69.2802 329 0 0 71.1693 -114.35 -206.033
+ 40 4.55486 294 0 0 69.6497 -121.332 -206.25
+ 40 59.843 293 0 0 69.6497 -121.35 -206.236
+ 40 133.272 292 0 0 69.6239 -121.55 -206.054
+ 40 433.941 1247 0 1 69.524 -122.318 -204.85
+ 40 235.417 1248 0 1 69.7091 -122.753 -204.45
+ 40 68.4666 1246 0 1 69.45 -123.712 -204.542
+ 40 123.524 1243 1 1 68.7572 -115.382 -174.45
+ 40 119.324 323 1 0 68.992 -115.511 -175.85
+ 40 135.957 1267 0 1 73.5155 -118.03 -204.451
+ 40 110.782 312 0 0 73.9401 -117.738 -205.85
+ 40 17.5864 311 0 0 73.9483 -117.849 -205.85
+ 40 132.916 1231 4 1 66.45 -114.935 -84.7441
+ 40 60.991 326 3 0 66.471 -114.853 -115.85
+ 40 212.76 1232 0 1 66.6152 -114.681 -204.45
+ 40 218.296 327 0 0 66.6153 -114.692 -205.85
+ 40 156.143 1681 11 0 119.555 156.376 123.75
+ 40 131.095 434 1 0 82.7516 -93.2514 -176.25
+ 40 78.2781 435 1 0 82.7736 -93.1499 -176.16
+ 40 224.009 433 1 0 82.7642 -93.35 -176.08
+ 40 66.5245 216 0 0 134.932 -136.814 -206.25
+ 40 212.517 217 0 0 134.923 -136.75 -206.081
+ 40 105.514 1577 0 1 135.745 -136.637 -204.85
+ 40 53.0547 1578 0 1 135.75 -136.638 -204.841
+ 40 126.105 1230 5 1 66.2385 -114.884 -54.45
+ 40 20.0168 334 5 0 66.6239 -113.225 -55.85
+ 40 78.4202 335 5 0 66.6394 -113.15 -55.9133
+ 40 65.1143 336 5 0 66.662 -112.95 -56.1125
+ 40 20.5076 337 5 0 66.5358 -112.75 -56.2277
+ 40 34.4974 825 4 1 -14.8747 -58.2611 -84.45
+ 40 35.6633 826 4 1 -14.85 -58.2112 -84.4731
+Number of digits in this event = 30
Using G4ParticleGun ...
-4.34159 LIN
+4.31198 LIN
e-
Event: 41
-Number of tracker hits in this event = 101
- 41 164.551 1196 11 1 59.3325 -34.3233 125.55
- 41 116.388 728 11 0 59.3331 -34.3231 124.15
- 41 111.803 1196 10 1 59.3489 -34.3209 95.55
- 41 132.164 728 10 0 59.3492 -34.3215 94.15
- 41 106.011 1196 9 1 59.3573 -34.3306 65.55
- 41 95.2887 728 9 0 59.3577 -34.3308 64.15
- 41 343.616 1196 8 1 59.3713 -34.3345 35.55
- 41 306.159 728 8 0 59.3711 -34.3344 34.15
- 41 156.366 1196 7 1 59.3677 -34.3269 5.55
- 41 118.943 728 7 0 59.3679 -34.3267 4.15
- 41 260.939 1196 6 1 59.3696 -34.3222 -24.45
- 41 112.598 728 6 0 59.3697 -34.3219 -25.85
- 41 101.172 1196 5 1 59.373 -34.313 -54.45
- 41 115.431 728 5 0 59.3741 -34.3132 -55.85
- 41 136.122 1196 4 1 59.4021 -34.3236 -84.45
- 41 113.208 728 4 0 59.4045 -34.3246 -85.85
- 41 110.455 1197 3 1 59.4519 -34.3495 -114.45
- 41 103.064 728 3 0 59.4544 -34.3504 -115.85
- 41 131.85 1197 2 1 59.5007 -34.3789 -144.45
- 41 110.84 728 2 0 59.5023 -34.3787 -145.85
- 41 110.189 1197 1 1 59.5368 -34.3714 -174.45
- 41 127.267 728 1 0 59.5388 -34.3713 -175.85
- 41 121.544 1197 0 1 59.5735 -34.365 -204.45
- 41 131.738 728 0 0 59.5759 -34.3632 -205.85
- 41 207.306 723 6 0 58.7655 -35.346 -25.8501
- 41 58.202 722 6 0 58.6034 -35.45 -26.1496
- 41 44.9052 1196 1 1 59.3391 -34.4952 -174.45
- 41 59.6919 734 1 0 60.7887 -33.2396 -175.85
- 41 249.556 1207 1 1 61.4568 -32.2623 -174.85
- 41 24.7571 1206 1 1 61.4498 -32.207 -174.792
- 41 118.175 1193 7 1 58.7294 -34.3927 5.55
- 41 119.257 727 7 0 58.6122 -34.5091 4.14988
- 41 97.007 1182 6 1 56.4576 -36.6361 -24.45
- 41 12.0385 1181 6 1 56.45 -36.6881 -24.7949
- 41 32.6101 716 6 0 56.4382 -36.8345 -25.8502
- 41 101.094 715 6 0 56.4371 -36.85 -25.9641
- 41 115.944 1181 5 1 56.2913 -40.4386 -54.45
- 41 145.585 698 5 0 56.6051 -40.4233 -55.8503
- 41 3.16569 1215 4 1 63.2469 -39.8618 -84.4503
- 41 99.6021 1216 4 1 63.25 -39.8599 -84.4661
- 41 122.333 701 4 0 63.526 -39.7375 -85.85
- 41 129.97 1245 3 1 69.1013 -37.9186 -114.45
- 41 108.814 712 3 0 69.3258 -37.5497 -115.85
- 41 4.08922 713 3 0 69.3875 -37.45 -116.233
- 41 121.301 1269 2 1 73.8735 -29.9642 -144.45
- 41 129.122 751 2 0 74.142 -29.8389 -145.85
- 41 115.294 1299 1 1 79.8997 -26.3122 -174.45
- 41 64.293 769 1 0 80.1363 -26.075 -175.85
- 41 184.057 770 1 0 80.1614 -26.05 -176
- 41 29.7526 1328 0 1 85.7888 -22.3604 -204.45
- 41 97.729 1329 0 1 85.85 -22.3386 -204.559
- 41 129.096 789 0 0 86.5677 -22.1229 -205.85
- 41 57.6654 1195 8 1 59.25 -34.3993 35.3
- 41 132.922 726 8 0 58.7135 -34.7399 34.15
- 41 22.3458 725 8 0 58.5577 -34.85 33.8107
- 41 114.272 1127 7 1 45.6068 -43.5404 5.55
- 41 85.5876 1126 7 1 45.4498 -43.5536 5.3563
- 41 209.207 681 7 0 44.418 -43.6685 4.15
- 41 55.9078 1006 6 1 21.4287 -44.8284 -24.45
- 41 87.8131 1005 6 1 21.25 -44.8495 -24.5969
- 41 57.0051 1004 6 1 21.05 -44.8746 -24.7669
- 41 156.751 674 6 0 19.7209 -45.1446 -25.8503
- 41 122.284 503 6 0 -23.9582 -79.2701 -26.25
- 41 119.65 502 6 0 -24.0603 -79.4501 -26.0587
- 41 15.9361 501 6 0 -24.175 -79.65 -25.8814
- 41 254.646 775 6 1 -24.9072 -80.9466 -24.85
- 41 167.732 774 6 1 -25.0505 -81.2296 -24.6357
- 41 159.093 546 7 0 -63.3697 -70.744 3.75
- 41 70.3808 547 7 0 -63.8023 -70.65 4.04621
- 41 67.9497 572 7 1 -65.4967 -70.168 5.15
- 41 110.45 571 7 1 -65.65 -70.1202 5.25433
- 41 75.3007 570 7 1 -65.85 -70.0766 5.37576
- 41 28.1514 569 7 1 -66.05 -70.0412 5.49554
- 41 13.1678 850 8 0 -84.7226 -9.89501 33.75
- 41 56.5175 851 8 0 -84.7366 -9.85 33.7714
- 41 73.8083 852 8 0 -84.7939 -9.64938 33.8534
- 41 60.1206 853 8 0 -84.8558 -9.45 33.9287
- 41 51.016 854 8 0 -84.9204 -9.25 33.9991
- 41 54.1533 855 8 0 -84.9675 -9.05 34.0424
- 41 124.606 856 8 0 -85.0075 -8.85 34.0931
- 41 254.458 472 8 1 -85.5919 -5.64904 35.15
- 41 51.6957 834 9 0 -94.8104 -13.1838 63.75
- 41 80.7839 833 9 0 -94.8531 -13.25 63.9289
- 41 26.1031 427 9 1 -94.5751 -13.6199 65.15
- 41 170.012 428 9 1 -94.55 -13.6329 65.2311
- 41 73.5282 473 8 1 -85.4498 -4.72193 35.4981
- 41 61.8427 474 8 1 -85.2498 -4.7831 35.2689
- 41 128.589 875 8 0 -84.4116 -4.97272 34.1499
- 41 17.305 1055 8 0 -29.6204 31.2051 33.75
- 41 86.1181 1056 8 0 -29.5648 31.25 33.7925
- 41 88.7045 1057 8 0 -29.4175 31.45 33.8857
- 41 122.464 1058 8 0 -29.3082 31.65 33.9132
- 41 82.0906 1059 8 0 -29.2093 31.8502 33.947
- 41 63.9676 1060 8 0 -29.0939 32.0501 34.0671
- 41 367.988 760 8 1 -27.9978 33.6246 35.1505
- 41 159.611 759 8 1 -28.05 34.2293 35.2149
- 41 187.76 761 8 1 -27.8499 34.4712 35.3878
- 41 52.1889 678 6 0 21.2223 -44.3373 -25.85
- 41 172.279 679 6 0 21.2394 -44.2499 -25.9124
- 41 121.877 680 6 0 21.2396 -44.0498 -25.8754
- 41 131.155 681 6 0 21.2168 -43.85 -25.9374
-Number of digits in this event = 41
+Number of tracker hits in this event = 64
+ 41 100.603 761 11 1 -27.6915 -18.4675 125.55
+ 41 115.73 807 11 0 -27.6914 -18.4701 124.15
+ 41 155.524 761 10 1 -27.6852 -18.5229 95.55
+ 41 119.999 807 10 0 -27.6832 -18.5242 94.15
+ 41 114.26 762 9 1 -27.6382 -18.5597 65.55
+ 41 116.39 807 9 0 -27.6329 -18.5597 64.15
+ 41 114.973 762 8 1 -27.5309 -18.5529 35.55
+ 41 114.256 807 8 0 -27.5275 -18.5507 34.15
+ 41 124.051 762 7 1 -27.4585 -18.5059 5.55
+ 41 149.054 807 7 0 -27.4557 -18.5031 4.15
+ 41 230.102 763 6 1 -27.405 -18.4488 -24.45
+ 41 138.713 808 6 0 -27.4069 -18.4411 -25.85
+ 41 153.062 763 5 1 -27.4454 -18.2903 -54.45
+ 41 116.634 808 5 0 -27.4502 -18.2829 -55.85
+ 41 221.499 762 4 1 -27.5594 -18.1378 -84.45
+ 41 149.03 809 4 0 -27.5632 -18.1325 -85.85
+ 41 104.081 761 3 1 -27.6508 -18.0191 -114.45
+ 41 116.072 810 3 0 -27.6572 -18.0123 -115.85
+ 41 136.23 761 2 1 -27.7841 -17.8681 -144.45
+ 41 130.902 810 2 0 -27.7901 -17.8584 -145.85
+ 41 147.833 760 1 1 -27.9148 -17.6584 -174.45
+ 41 141.551 812 1 0 -27.9214 -17.6467 -175.85
+ 41 247.07 759 0 1 -28.0554 -17.4112 -204.45
+ 41 104.378 813 0 0 -28.0617 -17.3988 -205.85
+ 41 65.9332 760 0 1 -28.05 -17.4021 -204.799
+ 41 159.162 816 0 0 -27.1721 -16.8053 -205.85
+ 41 147.611 149 9 0 75.9062 -150.223 63.75
+ 41 251.256 763 4 1 -27.4477 -18.6517 -84.45
+ 41 248.627 806 4 0 -27.4558 -18.6574 -85.85
+ 41 227.136 762 3 1 -27.6165 -18.7617 -114.45
+ 41 234.785 806 3 0 -27.6337 -18.7717 -115.85
+ 41 149.021 760 2 1 -27.9523 -18.9918 -144.45
+ 41 126.068 805 2 0 -27.9668 -18.9994 -145.85
+ 41 130.563 758 1 1 -28.3018 -19.1984 -174.45
+ 41 127.582 804 1 0 -28.2946 -19.1972 -175.85
+ 41 128.901 804 0 0 -28.1454 -19.1342 -205.85
+ 41 109.9 799 4 0 -26.1337 -20.1386 -85.8501
+ 41 112.881 798 4 0 -25.9151 -20.2501 -85.9735
+ 41 101.422 782 4 1 -23.6239 -20.5763 -84.8498
+ 41 134.017 783 4 1 -23.45 -20.6694 -84.7535
+ 41 127.035 805 3 0 -27.4806 -18.8891 -115.85
+ 41 117.942 762 2 1 -27.5379 -19.3379 -144.45
+ 41 112.318 803 2 0 -27.5415 -19.3569 -145.85
+ 41 225.266 762 1 1 -27.4969 -19.7738 -174.45
+ 41 134.742 801 1 0 -27.4865 -19.8073 -175.85
+ 41 126.415 763 0 1 -27.2943 -20.502 -204.45
+ 41 134.092 797 0 0 -27.2736 -20.5413 -205.85
+ 41 137.171 564 0 0 -108.452 -67.0657 -206.25
+ 41 83.8634 563 0 0 -108.807 -67.2504 -205.982
+ 41 62.4102 349 0 1 -110.192 -68.1864 -204.85
+ 41 57.2417 348 0 1 -110.35 -68.2833 -204.722
+ 41 90.8604 347 0 1 -110.55 -68.4132 -204.571
+ 41 100.568 486 1 0 -166.828 -82.7219 -176.25
+ 41 143.188 485 1 0 -167.179 -82.85 -176.085
+ 41 35.8754 54 1 1 -169.225 -83.3717 -174.85
+ 41 62.4261 53 1 1 -169.35 -83.3952 -174.777
+ 41 101.693 52 1 1 -169.55 -83.4213 -174.642
+ 41 1.26672 51 1 1 -169.75 -83.4769 -174.456
+ 41 62.5291 622 2 0 -157.305 -55.6442 -146.25
+ 41 78.8442 623 2 0 -157.218 -55.4499 -146.089
+ 41 37.1369 624 2 0 -157.143 -55.2497 -145.93
+ 41 109.524 115 2 1 -156.971 -53.7985 -144.85
+ 41 90.8634 116 2 1 -156.95 -53.6304 -144.714
+ 41 289.358 291 7 0 85.8791 -121.829 3.75
+Number of digits in this event = 36
Using G4ParticleGun ...
-4.94636 LIN
+9.12152 LIN
e-
Event: 42
-Number of tracker hits in this event = 38
- 42 115.62 713 10 1 -37.3111 -102.177 95.55
- 42 103.221 389 10 0 -37.3115 -102.176 94.15
- 42 121.07 713 9 1 -37.3227 -102.146 65.55
- 42 180.159 390 9 0 -37.3231 -102.146 64.15
- 42 145.853 713 8 1 -37.3256 -102.134 35.55
- 42 115.039 390 8 0 -37.3271 -102.134 34.15
- 42 117.803 713 7 1 -37.3575 -102.122 5.55
- 42 151.517 390 7 0 -37.3598 -102.121 4.15
- 42 108.469 713 6 1 -37.4053 -102.106 -24.45
- 42 120.17 390 6 0 -37.4081 -102.105 -25.85
- 42 138.321 712 5 1 -37.4645 -102.07 -54.45
- 42 96.858 390 5 0 -37.4677 -102.071 -55.85
- 42 162.295 712 4 1 -37.5306 -102.088 -84.45
- 42 137.607 390 4 0 -37.5323 -102.113 -85.85
- 42 121.378 712 3 1 -37.5022 -102.744 -114.45
- 42 146.321 386 3 0 -37.5567 -102.791 -115.85
- 42 134.389 705 2 1 -38.8845 -103.725 -144.45
- 42 127.444 381 2 0 -38.9171 -103.812 -145.85
- 42 154.097 702 1 1 -39.6051 -105.432 -174.45
- 42 108.812 373 1 0 -39.6351 -105.522 -175.85
- 42 104.876 699 0 1 -40.0937 -107.724 -204.45
- 42 118.755 361 0 0 -40.0964 -107.824 -205.85
- 42 14.6383 1049 5 1 29.8855 9.99203 -54.45
- 42 114.789 1048 5 1 29.85 9.98394 -54.5039
- 42 27.225 1047 5 1 29.6497 10.0963 -54.7911
- 42 247.797 950 5 0 28.8475 10.1933 -55.8508
- 42 170.773 951 5 0 28.8159 10.25 -55.9511
- 42 69.9948 952 5 0 28.8438 10.45 -56.0609
- 42 36.9171 939 8 1 7.85 68.5664 35.3305
- 42 339.494 711 1 1 -37.6826 -102.077 -174.45
- 42 268.684 390 1 0 -37.6602 -102.064 -175.85
- 42 101.281 714 0 1 -37.2141 -101.723 -204.45
- 42 215.202 392 0 0 -37.1996 -101.696 -205.85
- 42 151.974 710 1 1 -37.85 -102.091 -174.682
- 42 167.083 709 1 1 -38.05 -102.052 -174.78
- 42 169.71 709 0 1 -38.1422 -101.678 -204.45
- 42 273.278 713 0 1 -37.3736 -102.118 -204.45
- 42 230.945 390 0 0 -37.401 -102.103 -205.85
-Number of digits in this event = 25
-Using G4ParticleGun ...
-5.31858 LIN
+Number of tracker hits in this event = 142
+ 42 155.909 1482 9 1 116.666 53.6834 65.55
+ 42 164.669 1168 9 0 116.666 53.683 64.15
+ 42 104.455 1482 8 1 116.668 53.6736 35.55
+ 42 115.567 1168 8 0 116.669 53.674 34.15
+ 42 430.918 1482 7 1 116.684 53.6762 5.55
+ 42 421.458 1168 7 0 116.685 53.6767 4.15
+ 42 497.257 1482 6 1 116.71 53.6976 -24.45
+ 42 159.966 1168 6 0 116.713 53.6968 -25.85
+ 42 128.894 1483 5 1 116.756 53.6792 -54.45
+ 42 133.898 1168 5 0 116.758 53.6763 -55.85
+ 42 244.549 1483 4 1 116.801 53.6135 -84.45
+ 42 93.5918 1167 4 0 116.802 53.6105 -85.85
+ 42 148.103 1483 3 1 116.837 53.5641 -114.45
+ 42 141.446 1167 3 0 116.838 53.5631 -115.85
+ 42 267.362 1483 2 1 116.849 53.5419 -144.45
+ 42 280.5 1167 2 0 116.849 53.5423 -145.85
+ 42 115.65 1483 1 1 116.84 53.5327 -174.45
+ 42 390.506 1167 1 0 116.84 53.5328 -175.85
+ 42 109.98 1483 0 1 116.826 53.5307 -204.45
+ 42 239.045 1167 0 0 116.821 53.5378 -205.85
+ 42 22.945 1482 0 1 116.617 53.8739 -204.45
+ 42 71.8202 1481 0 1 116.55 53.9229 -204.485
+ 42 71.7407 1480 0 1 116.35 54.079 -204.59
+ 42 265.18 1479 0 1 116.15 54.233 -204.681
+ 42 82.3111 1478 0 1 115.95 54.3581 -204.772
+ 42 148.904 1180 0 0 113.442 56.0634 -205.85
+ 42 117.989 1181 0 0 113.124 56.25 -205.96
+ 42 164.98 1182 0 0 112.749 56.45 -206.029
+ 42 316.384 1183 0 0 112.32 56.6503 -206.125
+ 42 192.025 1184 0 0 111.15 56.85 -206.005
+ 42 171.043 1185 0 0 110.63 57.0501 -205.923
+ 42 255.829 1186 0 0 110.032 57.25 -205.892
+ 42 179.934 1187 0 0 109.429 57.45 -205.906
+ 42 19.04 1188 0 0 108.791 57.6501 -205.865
+ 42 33.22 1416 0 1 103.469 59.1341 -204.85
+ 42 67.5374 1415 0 1 103.35 59.1508 -204.824
+ 42 109.535 1414 0 1 103.15 59.1751 -204.772
+ 42 61.6927 1413 0 1 102.95 59.1989 -204.713
+ 42 58.9797 1412 0 1 102.75 59.2068 -204.666
+ 42 75.3554 1411 0 1 102.55 59.2311 -204.625
+ 42 136.754 1410 0 1 102.35 59.2458 -204.556
+ 42 366.199 1409 0 1 102.15 59.2514 -204.485
+ 42 34.4157 1408 0 1 101.911 58.9462 -204.45
+ 42 16.3397 1194 0 0 102.384 58.8639 -205.85
+ 42 151.755 1193 0 0 102.398 58.85 -205.929
+ 42 371.391 1484 1 1 117.019 53.4695 -174.45
+ 42 370.265 1485 0 1 117.255 53.2477 -204.45
+ 42 236.362 1166 0 0 117.241 53.2584 -205.85
+ 42 29.7279 1481 6 1 116.55 53.8693 -24.5637
+ 42 159.293 1481 7 1 116.55 53.6335 5.30755
+ 42 54.4697 1480 7 1 116.35 53.5359 5.1785
+ 42 27.5487 1165 7 0 113.792 53.2417 4.14962
+ 42 33.342 1166 7 0 113.724 53.25 4.13191
+ 42 69.8513 1454 7 1 111.115 53.4272 5.15
+ 42 82.5107 1453 7 1 110.95 53.4178 5.2319
+ 42 101.811 1452 7 1 110.75 53.3754 5.2457
+ 42 4.03715 1159 7 0 110.112 51.8609 4.14994
+ 42 235.418 1158 7 0 110.108 51.8497 4.14126
+ 42 8.73824 540 9 1 -72.05 12.0576 65.493
+ 42 99.4756 1452 5 1 110.63 -149.456 -54.45
+ 42 121.221 1453 5 1 110.75 -149.5 -54.482
+ 42 155.856 1375 5 0 -111.077 95.3065 -56.25
+ 42 163.963 1376 5 0 -111.316 95.35 -56.0294
+ 42 217.958 1203 1 0 87.6498 60.6661 -176.25
+ 42 248.154 146 11 1 -150.813 137.299 125.15
+ 42 281.027 1167 6 0 116.63 53.595 -25.85
+ 42 208.192 1482 5 1 116.646 53.43 -54.45
+ 42 152.088 1166 5 0 116.642 53.4212 -55.85
+ 42 136.761 1482 4 1 116.578 53.2334 -84.45
+ 42 105.94 1165 4 0 116.574 53.2243 -85.85
+ 42 121.156 1481 3 1 116.495 53.0408 -114.45
+ 42 231.791 1164 3 0 116.492 53.0297 -115.85
+ 42 127.079 1481 2 1 116.434 52.783 -144.45
+ 42 111.042 1163 2 0 116.43 52.7663 -145.85
+ 42 183.74 1481 1 1 116.362 52.4101 -174.45
+ 42 106.009 1161 1 0 116.347 52.3961 -175.85
+ 42 102.767 1158 0 0 116.01 51.8474 -205.85
+ 42 78.269 1371 1 1 94.4801 10.0615 -174.85
+ 42 395.01 1483 6 1 116.764 53.8514 -24.45
+ 42 131.268 1169 6 0 116.737 53.9038 -25.85
+ 42 182.132 1480 5 1 116.251 54.9853 -54.45
+ 42 52.0652 1174 5 0 116.201 55.0421 -55.85
+ 42 190.362 1175 5 0 116.195 55.05 -56.0359
+ 42 182.494 1474 4 1 115.125 56.517 -84.4501
+ 42 212.493 1182 4 0 114.991 56.6263 -85.85
+ 42 160.974 1183 4 0 114.961 56.65 -86.1277
+ 42 117.952 1456 3 1 111.423 59.3998 -114.45
+ 42 46.7582 1197 3 0 111.252 59.6214 -115.85
+ 42 151.211 1198 3 0 111.23 59.65 -116.032
+ 42 127.529 1437 2 1 107.701 63.8479 -144.45
+ 42 126.17 1220 2 0 107.625 64.063 -145.85
+ 42 114.969 1429 1 1 106.125 68.3977 -174.45
+ 42 108.482 1243 1 0 106.023 68.652 -175.85
+ 42 128.254 1419 0 1 104.07 74.0972 -204.45
+ 42 293.968 1271 0 0 103.894 74.3047 -205.85
+ 42 76.5554 1467 4 1 113.662 57.9331 -84.45
+ 42 96.9167 1466 4 1 113.55 58.0609 -84.5922
+ 42 30.3936 1465 4 1 113.35 58.2666 -84.7801
+ 42 88.9808 1197 4 0 112.311 59.4512 -85.85
+ 42 70.9559 1198 4 0 112.156 59.65 -86.0204
+ 42 36.8252 1199 4 0 112.035 59.8506 -86.1749
+ 42 48.2182 1359 3 1 92.0258 84.7117 -114.45
+ 42 111.871 1358 3 1 91.95 84.8581 -114.517
+ 42 50.2794 1357 3 1 91.7499 85.2177 -114.722
+ 42 37.1214 1330 3 0 91.0032 86.183 -115.85
+ 42 71.687 1331 3 0 90.9526 86.2501 -115.929
+ 42 48.8632 1332 3 0 90.8598 86.4503 -116.12
+ 42 13.2531 1478 2 0 70.2586 115.75 -145.968
+ 42 37.3035 1226 2 1 65.45 108.601 -144.826
+ 42 185.084 1464 2 0 80.0902 113.137 -145.85
+ 42 0.729383 1193 3 1 58.85 154.255 -114.621
+ 42 16.8907 1125 0 1 45.2367 59.5283 -204.45
+ 42 122.486 1126 0 1 45.2501 59.5194 -204.485
+ 42 16.1814 1484 6 1 116.95 53.7462 -24.7992
+ 42 1.32261 1568 5 1 133.752 48.8684 -54.45
+ 42 115.266 1567 5 1 133.75 48.8691 -54.4541
+ 42 4.55793 1566 5 1 133.55 48.9624 -54.832
+ 42 298.192 1146 5 0 133.05 49.3121 -55.85
+ 42 181.68 1504 4 1 121.091 56.755 -84.45
+ 42 22.1832 1495 3 1 119.324 48.7285 -114.45
+ 42 104.348 1496 3 1 119.35 48.6808 -114.518
+ 42 35.3152 1138 3 0 119.761 47.7433 -115.85
+ 42 58.2233 1137 3 0 119.785 47.65 -116.022
+ 42 29.7661 1453 2 1 110.785 44.3655 -144.45
+ 42 153.84 1452 2 1 110.75 44.2717 -144.485
+ 42 31.4907 1451 2 1 110.55 43.8452 -144.765
+ 42 164.305 1112 2 0 110.099 42.6165 -145.85
+ 42 88.6806 1111 2 0 110.002 42.4498 -146.026
+ 42 60.7685 920 2 0 74.503 4.15996 -146.25
+ 42 86.8733 919 2 0 74.378 4.04992 -146.079
+ 42 126.665 918 2 0 74.2166 3.85 -145.959
+ 42 66.4989 917 2 0 74.1037 3.64993 -145.958
+ 42 60.4049 916 2 0 74.035 3.45 -146
+ 42 371.932 915 2 0 73.9782 3.25 -146.053
+ 42 41.273 914 2 0 72.995 3.05 -145.927
+ 42 179.626 1263 2 1 72.7146 1.37791 -144.85
+ 42 170.662 1262 2 1 72.65 1.14354 -144.681
+ 42 185.937 905 2 0 72.2644 1.1059 -145.85
+ 42 19.7288 904 2 0 72.1732 1.04996 -145.904
+ 42 3.76072 1002 2 0 140.169 20.45 -145.884
+ 42 144.552 1762 13 0 15.676 172.564 183.75
+ 42 42.6909 958 13 1 11.7085 171.155 185.55
+Number of digits in this event = 70
+Using G4ParticleGun ...
+6.69217 LIN
e-
Event: 43
-Number of tracker hits in this event = 104
- 43 116.15 718 10 1 -36.4487 86.8865 95.55
- 43 121.822 1334 10 0 -36.4485 86.8858 94.15
- 43 104.198 717 9 1 -36.4506 86.8647 65.55
- 43 114.352 1334 9 0 -36.4516 86.8626 64.15
- 43 296.454 717 8 1 -36.4765 86.816 35.55
- 43 223.187 1333 8 0 -36.4793 86.8131 34.15
- 43 228.266 717 7 1 -36.5378 86.7499 5.55
- 43 106.175 1333 7 0 -36.5415 86.7462 4.15
- 43 342.26 717 6 1 -36.6192 86.6736 -24.45
- 43 110.45 1333 6 0 -36.6213 86.6691 -25.85
- 43 184.529 716 5 1 -36.6621 86.5794 -54.45
- 43 104.252 1332 5 0 -36.6654 86.5764 -55.85
- 43 231.499 716 4 1 -36.7351 86.5199 -84.45
- 43 113.109 1332 4 0 -36.7408 86.5152 -85.85
- 43 227.94 716 3 1 -36.8482 86.4253 -114.45
- 43 143.628 1331 3 0 -36.8537 86.4219 -115.85
- 43 104.797 715 2 1 -36.969 86.3494 -144.45
- 43 339.058 1331 2 0 -36.9741 86.3453 -145.85
- 43 154.048 714 1 1 -37.0773 86.2566 -174.45
- 43 124.002 1331 1 0 -37.0812 86.2518 -175.85
- 43 202.045 714 0 1 -37.1672 86.1576 -204.45
- 43 209.884 1330 0 0 -37.172 86.1525 -205.85
- 43 27.8173 1672 6 0 -70.6199 154.702 -26.25
- 43 183.921 1673 6 0 -70.6602 154.75 -26.1875
- 43 27.6331 837 7 1 -12.65 -101.039 5.15446
- 43 330.934 713 0 1 -37.25 86.3069 -204.713
- 43 120.791 1334 4 0 -36.68 86.9106 -85.8501
- 43 129.463 723 3 1 -35.3086 90.2165 -114.45
- 43 82.5356 1346 3 0 -35.5108 89.3915 -115.85
- 43 49.5754 1345 3 0 -35.5406 89.25 -116.091
- 43 100.673 704 2 1 -39.0856 69.8306 -144.45
- 43 61.4038 705 2 1 -39.05 69.6802 -144.709
- 43 65.3818 1244 2 0 -38.9356 68.9921 -145.85
- 43 58.1896 1243 2 0 -38.8981 68.85 -146.083
- 43 15.7387 724 1 1 -35.101 50.8518 -174.45
- 43 244.741 725 1 1 -35.05 50.8925 -174.477
- 43 105.049 726 1 1 -34.85 51.0649 -174.57
- 43 100.888 727 1 1 -34.65 51.3828 -174.695
- 43 32.4455 1163 1 0 -33.4039 52.7893 -175.85
- 43 98.1894 1164 1 0 -33.341 52.85 -175.899
- 43 137.064 1165 1 0 -33.0994 53.05 -176.031
- 43 115.021 1166 1 0 -32.8106 53.25 -176.147
- 43 30.6727 1167 1 0 -32.449 53.45 -176.235
- 43 108.2 1331 6 0 -36.1627 86.3614 -25.85
- 43 17.9366 1551 6 0 -24.9163 130.49 -26.2499
- 43 101.491 1552 6 0 -24.9357 130.55 -26.2458
- 43 124.618 1692 6 0 -70.1744 158.73 -26.25
- 43 2.0102 1693 6 0 -70.1681 158.75 -26.2286
- 43 229.378 717 3 1 -36.65 86.4962 -114.526
- 43 188.421 718 3 1 -36.45 86.4417 -114.663
- 43 441.956 719 3 1 -36.25 86.2141 -114.757
- 43 210.741 720 3 1 -36.05 85.7267 -114.688
- 43 110.617 721 3 1 -35.85 85.3413 -114.552
- 43 127.703 1329 3 0 -36.2593 85.9099 -115.85
- 43 71.8636 1462 3 0 -57.2014 112.596 -116.25
- 43 88.215 1463 3 0 -57.2701 112.75 -116.117
- 43 152.886 1464 3 0 -57.3799 112.95 -116.074
- 43 125.602 1465 3 0 -57.5691 113.15 -116.006
- 43 41.5868 607 3 1 -58.6164 112.687 -114.85
- 43 228.585 606 3 1 -58.65 112.684 -114.806
- 43 14.7104 605 3 1 -58.85 112.531 -114.699
- 43 359.496 718 8 1 -36.45 87.0467 35.2438
- 43 269.789 1332 3 0 -36.5449 86.6348 -115.85
- 43 236.699 740 2 1 -31.8668 86.6461 -144.45
- 43 201.665 741 2 1 -31.85 86.7238 -144.527
- 43 165.479 1336 2 0 -32.1073 87.4056 -145.851
- 43 218.943 1337 2 0 -32.1293 87.45 -145.902
- 43 170.072 1338 2 0 -32.2288 87.65 -146.139
- 43 236.23 1330 2 0 5.0536 86.2182 -146.25
- 43 77.2576 1329 2 0 5.39825 86.05 -145.983
- 43 118.301 1328 2 0 5.5878 85.85 -145.991
- 43 127.68 1327 2 0 5.768 85.65 -145.9
- 43 265.512 1326 2 0 5.94929 85.45 -146.035
- 43 81.5579 926 2 1 5.45 86.9902 -144.744
- 43 180.209 927 2 1 5.45 87.1133 -144.694
- 43 60.4524 1335 2 0 -32.3536 87.1779 -145.85
- 43 33.2647 1298 1 0 -35.0796 79.73 -175.85
- 43 74.1386 1297 1 0 -35.09 79.65 -175.94
- 43 28.1825 1296 1 0 -35.125 79.45 -176.16
- 43 9.76365 699 0 1 -40.2447 52.6913 -204.45
- 43 203.184 698 0 1 -40.2501 52.6636 -204.472
- 43 34.7388 1154 0 0 -40.5162 50.9466 -205.85
- 43 71.0208 1153 0 0 -40.5304 50.85 -205.929
- 43 61.4597 1152 0 0 -40.5562 50.65 -206.087
- 43 5.87173 1151 0 0 -40.5867 50.45 -206.234
- 43 17.7741 945 0 0 -59.8573 9.09095 -206.25
- 43 98.7812 944 0 0 -59.893 9.04976 -206.207
- 43 54.7322 943 0 0 -60.0739 8.85 -205.986
- 43 4.59568 594 0 1 -61.2402 7.63324 -204.85
- 43 136.219 593 0 1 -61.25 7.62319 -204.841
- 43 315.808 592 0 1 -61.45 7.44546 -204.657
- 43 143.275 914 1 0 -81.396 2.96795 -176.25
- 43 2.92243 488 1 1 -82.4424 2.88445 -174.85
- 43 90.6106 487 1 1 -82.45 2.88401 -174.84
- 43 32.5294 486 1 1 -82.65 2.88575 -174.56
- 43 5.6944 485 1 1 -83.0264 2.66364 -174.45
- 43 261.268 484 1 1 -83.0502 2.6644 -174.468
- 43 31.1348 920 1 0 -83.0982 4.10866 -175.85
- 43 53.5321 921 1 0 -83.065 4.25012 -175.923
- 43 62.4182 922 1 0 -83.0335 4.45037 -175.941
- 43 99.8579 923 1 0 -83.0099 4.6502 -175.962
- 43 56.9948 924 1 0 -83.0529 4.85014 -175.961
- 43 59.2622 925 1 0 -83.074 5.05 -175.967
- 43 49.3651 926 1 0 -83.1494 5.25 -176.079
-Number of digits in this event = 48
+Number of tracker hits in this event = 26
+ 43 155.56 748 9 1 -30.2962 -130.965 65.55
+ 43 135.11 245 9 0 -30.2959 -130.966 64.15
+ 43 136.467 748 8 1 -30.2882 -130.984 35.55
+ 43 122.491 245 8 0 -30.2869 -130.983 34.15
+ 43 131.606 748 7 1 -30.2695 -130.983 5.55
+ 43 156.769 245 7 0 -30.2688 -130.984 4.15
+ 43 148.322 748 6 1 -30.2518 -131.021 -24.45
+ 43 119.086 245 6 0 -30.251 -131.022 -25.85
+ 43 144.217 749 5 1 -30.2329 -131.046 -54.45
+ 43 172.495 245 5 0 -30.2317 -131.047 -55.85
+ 43 222.357 749 4 1 -30.2073 -131.071 -84.45
+ 43 146.119 245 4 0 -30.206 -131.072 -85.85
+ 43 159.447 749 3 1 -30.1791 -131.099 -114.45
+ 43 110.707 245 3 0 -30.1787 -131.1 -115.85
+ 43 117.08 749 2 1 -30.1717 -131.132 -144.45
+ 43 118.145 245 2 0 -30.172 -131.132 -145.85
+ 43 109.327 749 1 1 -30.1783 -131.149 -174.45
+ 43 112.249 244 1 0 -30.1772 -131.151 -175.85
+ 43 120.137 749 0 1 -30.1513 -131.198 -204.45
+ 43 103.421 244 0 0 -30.1517 -131.201 -205.85
+ 43 198.794 531 1 1 -73.7049 -114.849 -174.85
+ 43 217.09 329 1 0 -30.3053 -114.303 -176.25
+ 43 59.483 911 3 0 -44.6069 2.25 -116.129
+ 43 52.782 1194 3 1 59.0005 -179.924 -114.85
+ 43 20.7901 460 7 1 -88.0388 -59.4988 5.55
+ 43 136.456 459 7 1 -88.05 -59.4981 5.53484
+Number of digits in this event = 18
Using G4ParticleGun ...
-7.98272 LIN
+7.59244 LIN
e-
Event: 44
-Number of tracker hits in this event = 270
- 44 122.821 1151 11 1 50.3459 64.579 125.55
- 44 101.925 1222 11 0 50.3462 64.5792 124.15
- 44 399.168 1151 10 1 50.3534 64.5843 95.55
- 44 394.671 1222 10 0 50.356 64.5859 94.15
- 44 518.516 1151 9 1 50.4084 64.6206 65.55
- 44 349.342 1222 9 0 50.4123 64.6176 64.15
- 44 122.564 1152 8 1 50.4817 64.5723 35.55
- 44 274.583 1222 8 0 50.4831 64.5708 34.15
- 44 544.529 1152 7 1 50.5079 64.5382 5.55
- 44 295.415 1222 7 0 50.5083 64.5319 4.15
- 44 282.021 1152 6 1 50.5207 64.4069 -24.45
- 44 129.076 1221 6 0 50.5197 64.4038 -25.85
- 44 182.379 1152 5 1 50.4843 64.3425 -54.45
- 44 224.602 1221 5 0 50.4918 64.3399 -55.85
- 44 437.342 1152 4 1 50.6338 64.275 -84.45
- 44 239.44 1221 4 0 50.6456 64.2768 -85.85
- 44 122.326 1154 3 1 50.9029 64.2978 -114.45
- 44 457.208 1221 3 0 50.9192 64.2979 -115.85
- 44 297.38 1156 2 1 51.2509 64.3084 -144.45
- 44 378.734 1221 2 0 51.2704 64.298 -145.85
- 44 198.951 1157 1 1 51.5091 63.8809 -174.45
- 44 169.716 1219 1 0 51.5169 63.8728 -175.85
- 44 364.831 1158 0 1 51.6861 63.7146 -204.45
- 44 106.065 1218 0 0 51.6837 63.7262 -205.85
- 44 313.847 1159 0 1 51.8501 63.5019 -204.8
- 44 72.1457 1218 1 0 51.5188 63.85 -175.935
- 44 101.342 1250 3 0 5.20187 70.1344 -116.25
- 44 129.475 1249 3 0 5.04001 70.05 -115.861
- 44 8.91198 1181 6 0 -128.972 56.4407 -26.25
- 44 104.915 1182 6 0 -129.119 56.4502 -26.0227
- 44 2.77981 251 6 1 -129.896 57.9711 -24.85
- 44 143.48 1192 6 0 -129.915 58.6097 -25.85
- 44 78.3878 807 3 0 -78.0034 -18.5844 -116.25
- 44 143.285 806 3 0 -78.0677 -18.6504 -116.218
- 44 190.853 1125 3 0 50.4954 45.1656 -116.25
- 44 99.6811 1157 2 1 51.45 64.4362 -144.478
- 44 88.1195 1158 2 1 51.65 64.4349 -144.558
- 44 73.4808 1159 2 1 51.85 64.371 -144.647
- 44 11.8455 1160 2 1 52.05 64.2056 -144.817
- 44 68.6748 1213 2 0 53.7079 62.764 -145.85
- 44 59.7213 1212 2 0 53.8438 62.65 -145.919
- 44 88.4206 1211 2 0 53.9648 62.45 -146.014
- 44 180.082 1210 2 0 54.0334 62.2495 -146.083
- 44 46.5927 1209 2 0 54.0799 62.0499 -146.178
- 44 63.1979 870 2 0 67.727 -5.99601 -146.25
- 44 128.376 869 2 0 67.7231 -6.05 -146.065
- 44 177.38 1238 2 1 67.8247 -6.40854 -144.85
- 44 49.8123 1239 2 1 67.85 -6.47332 -144.75
- 44 103.02 1237 2 1 67.65 -6.67508 -144.6
- 44 52.2318 872 2 0 67.4615 -5.59901 -145.85
- 44 57.2469 873 2 0 67.4446 -5.45 -145.928
- 44 102.776 874 2 0 67.3844 -5.25 -146.038
- 44 158.35 820 2 0 90.8673 -16.0011 -146.25
- 44 58.6525 819 2 0 90.9332 -16.0501 -146.182
- 44 96.9125 1155 2 1 51.25 64.4047 -144.638
- 44 248.5 1154 2 1 51.05 64.4347 -144.646
- 44 364.657 1153 2 1 50.85 64.445 -144.621
- 44 44.6127 1220 4 0 50.642 64.25 -86.1952
- 44 119.205 1017 4 1 23.599 93.6025 -84.45
- 44 118.556 1221 7 0 50.8776 64.292 4.14996
- 44 51.6062 1042 7 0 61.6907 28.4962 3.75
- 44 82.9012 1041 7 0 61.6899 28.45 3.77628
- 44 50.2945 1040 7 0 61.7234 28.25 3.91246
- 44 90.57 1039 7 0 61.7614 28.05 4.00887
- 44 76.099 1205 7 1 61.2208 27.3107 5.15
- 44 70.1543 1204 7 1 61.05 27.2527 5.30137
- 44 101.647 1203 7 1 60.85 27.2723 5.35853
- 44 62.7269 1202 7 1 60.65 27.2614 5.2329
- 44 141.234 1201 7 1 60.45 27.1462 5.25545
- 44 326.212 1200 7 1 60.25 26.9287 5.45532
- 44 105.596 1199 7 1 60.0498 26.6771 5.51107
- 44 55.5685 1288 7 0 85.6935 77.6577 3.7501
- 44 27.1493 1379 7 0 131.305 96.1018 3.75011
- 44 409.278 1222 4 0 50.6247 64.5548 -85.85
- 44 205.953 1151 3 1 50.2725 64.5183 -114.45
- 44 160.451 1150 2 1 50.195 62.2306 -144.451
- 44 242.122 1148 1 1 49.6778 58.9752 -174.45
- 44 13.7785 1149 1 1 49.85 58.7569 -174.811
- 44 150.783 1190 1 0 50.3762 58.2472 -175.85
- 44 26.097 1255 0 1 71.1936 48.1341 -204.45
- 44 122.28 1256 0 1 71.25 48.1338 -204.545
- 44 158.812 1142 0 0 70.4813 48.4894 -205.85
- 44 98.7881 1364 2 0 61.2467 92.95 -145.907
- 44 136.571 1153 3 1 50.6831 64.4323 -114.45
- 44 246.524 1152 2 1 50.6079 64.4616 -144.45
- 44 186.955 1155 1 1 51.2059 63.072 -174.45
- 44 144.951 1214 1 0 51.1915 63.0339 -175.85
- 44 72.7194 1155 0 1 51.1466 62.2267 -204.45
- 44 167.933 1156 0 1 51.2503 62.3004 -204.571
- 44 5.25499 1157 0 1 51.4506 62.4785 -204.838
- 44 66.514 1215 0 0 52.1522 63.1803 -205.85
- 44 127.712 1216 0 0 52.2232 63.25 -205.953
- 44 77.9895 913 14 0 -39.3771 2.85 213.815
- 44 35.4277 914 14 0 -39.3796 2.85 213.823
- 44 25.3721 912 14 0 -39.51 2.65 214.086
- 44 71.5611 702 14 1 -39.4616 1.67713 215.15
- 44 155.513 703 14 1 -39.45 1.45774 215.231
- 44 54.4214 704 14 1 -39.25 1.16144 215.17
- 44 372.046 899 14 0 -36.4531 -0.153824 214.15
- 44 101.421 1463 0 1 112.75 54.1019 -204.477
- 44 90.6727 1150 8 1 50.2046 64.8379 35.55
- 44 115.243 1223 8 0 50.1864 64.8476 34.15
- 44 9.97337 1224 8 0 50.1817 64.85 33.796
- 44 108.166 1148 7 1 49.8137 65.0328 5.55
- 44 142.226 1224 7 0 49.8009 65.0387 4.15
- 44 120.06 1147 6 1 49.5272 65.1755 -24.45
- 44 216.348 1225 6 0 49.5079 65.1892 -25.85
- 44 103.52 1145 5 1 49.0822 65.451 -54.45
- 44 275.869 1227 5 0 49.0581 65.4599 -55.85
- 44 164.567 1142 4 1 48.5997 65.6748 -84.45
- 44 145.591 1228 4 0 48.5707 65.6914 -85.85
- 44 363.779 1139 3 1 47.9941 66.0399 -114.45
- 44 349.35 1230 3 0 47.961 66.0674 -115.85
- 44 152.442 1136 2 1 47.2938 66.607 -144.45
- 44 186.451 1233 2 0 47.2527 66.6589 -145.85
- 44 123.508 1131 1 1 46.3372 67.759 -174.45
- 44 118.435 1238 1 0 46.2849 67.8067 -175.85
- 44 130.728 1125 0 1 45.1746 68.7897 -204.45
- 44 132.721 1243 0 0 45.1381 68.8367 -205.85
- 44 139.235 1140 2 1 48.0569 66.5959 -144.45
- 44 167.675 1232 2 0 48.0401 66.6304 -145.85
- 44 118.188 1138 1 1 47.7197 67.3866 -174.45
- 44 156.169 1236 1 0 47.6965 67.4082 -175.85
- 44 118.509 1136 0 1 47.2964 67.7912 -204.45
- 44 203.306 1238 0 0 47.2212 67.8374 -205.85
- 44 195.184 1239 0 0 47.2042 67.85 -206.169
- 44 44.3343 1133 0 1 46.8337 67.6971 -204.85
- 44 93.1062 1209 6 1 61.9372 -45.831 -24.85
- 44 221.931 1125 2 1 45.1301 67.641 -144.45
- 44 114.441 1237 2 0 45.1388 67.5567 -145.85
- 44 374.919 1139 2 1 47.9608 66.1084 -144.45
- 44 319.808 1231 2 0 48.317 66.3091 -145.85
- 44 86.5707 1217 1 1 63.5857 75.911 -174.45
- 44 133.904 1216 1 1 63.45 76.1797 -174.615
- 44 20.1337 1215 1 1 63.25 76.5724 -174.813
- 44 22.895 1292 1 0 61.6855 78.5818 -175.85
- 44 79.8431 1293 1 0 61.6253 78.65 -175.885
- 44 85.452 1294 1 0 61.4318 78.85 -175.988
- 44 100.466 1295 1 0 61.1678 79.0503 -176.098
- 44 43.7636 1296 1 0 60.8308 79.25 -176.206
- 44 7.09908 1176 0 1 55.25 113.235 -204.726
- 44 67.5884 1138 2 1 47.85 66.1413 -144.68
- 44 106.717 1059 1 1 31.9546 73.7235 -174.45
- 44 15.0843 1058 1 1 31.85 73.8262 -174.804
- 44 130.527 1270 1 0 31.5245 74.1058 -175.85
- 44 31.9535 1000 0 1 20.1294 82.6953 -204.45
- 44 66.2194 999 0 1 20.05 82.6639 -204.515
- 44 259.447 998 0 1 19.8499 82.5701 -204.658
- 44 17.7347 997 0 1 19.65 82.4574 -204.809
- 44 118.017 1308 0 0 18.5962 81.7096 -205.85
- 44 130.289 1307 0 0 18.5072 81.65 -205.938
- 44 0.952106 1306 0 0 18.2346 81.45 -206.248
- 44 169.822 1151 8 1 50.4436 64.6368 35.55
- 44 258.341 1151 7 1 50.4487 64.6237 5.55
- 44 208.448 1151 6 1 50.4472 64.6473 -24.45
- 44 140.96 1222 6 0 50.4436 64.6486 -25.85
- 44 148.179 1151 5 1 50.3702 64.6678 -54.45
- 44 129.118 1223 5 0 50.3677 64.6666 -55.85
- 44 320.905 1151 4 1 50.3281 64.6439 -84.45
- 44 115.808 1222 3 0 50.3109 64.5701 -115.85
- 44 111.39 1151 2 1 50.2516 64.4794 -144.45
- 44 283.743 1222 2 0 50.2492 64.4738 -145.85
- 44 128.256 1150 1 1 50.2082 64.3598 -174.45
- 44 126.847 1221 1 0 50.2049 64.3553 -175.85
- 44 154.562 1150 0 1 50.1244 64.2623 -204.45
- 44 176.407 1221 0 0 50.1176 64.2595 -205.85
- 44 121.859 1228 1 0 80.0256 65.7486 -176.25
- 44 634.32 1296 1 1 79.4427 66.048 -174.85
- 44 264.427 1150 7 1 50.25 64.5681 5.2849
- 44 1.33489 1154 0 1 50.8515 64.7319 -204.45
- 44 176.092 1222 0 0 50.779 64.6134 -205.85
- 44 269.879 1223 7 0 50.4956 64.6862 4.15
- 44 133.101 1223 6 0 50.525 64.8016 -25.85
- 44 163.152 1149 5 1 49.9715 65.1185 -54.45
- 44 97.5532 1225 5 0 49.9448 65.119 -55.85
- 44 133.513 1146 4 1 49.4473 65.1282 -84.45
- 44 572.232 1225 4 0 49.4143 65.1271 -85.85
- 44 228.175 1143 3 1 48.7574 65.0519 -114.45
- 44 104.908 1225 3 0 48.7383 65.0795 -115.85
- 44 118.544 1141 2 1 48.2853 65.6614 -144.45
- 44 516.171 1228 2 0 48.2923 65.7064 -145.85
- 44 108.151 1142 1 1 48.4561 66.6028 -174.45
- 44 151.755 1233 1 0 48.4754 66.6657 -175.85
- 44 87.2624 1144 0 1 48.9401 67.9496 -204.45
- 44 11.3055 1448 9 0 -106.273 109.75 63.8862
- 44 147.601 1141 1 1 48.45 66.62 -174.764
- 44 261.881 1148 4 1 49.714 65.1807 -84.45
- 44 147.748 1226 3 0 48.7369 65.3319 -115.85
- 44 342.741 1224 2 0 47.8947 64.9577 -145.85
- 44 123.008 1135 1 1 47.1607 63.422 -174.45
- 44 128.434 1216 1 0 47.0859 63.3633 -175.85
- 44 118.215 1128 0 1 45.6944 62.2064 -204.45
- 44 120.603 1210 0 0 45.5925 62.1696 -205.85
- 44 9.74358 904 8 0 11.3025 0.908473 33.75
- 44 141.12 903 8 0 11.3015 0.849976 34.0665
- 44 182.675 1229 2 0 48.8002 65.85 -146.002
- 44 239.72 1230 2 0 48.6736 66.05 -146.09
- 44 183.455 1149 3 1 49.9407 65.0109 -114.45
- 44 158.698 1224 3 0 49.9648 65.0307 -115.85
- 44 111.294 1168 1 1 53.8116 66.5952 -174.45
- 44 116.974 1232 1 0 53.8474 66.5719 -175.85
- 44 130.956 1178 0 1 55.6743 65.9467 -204.451
- 44 108.509 1230 0 0 55.8797 66.1103 -205.85
- 44 63.7791 1219 3 0 50.3065 63.9879 -115.85
- 44 86.344 1218 3 0 50.3751 63.85 -116.011
- 44 21.0977 1217 3 0 50.5406 63.65 -116.204
- 44 199.291 936 3 0 175.36 7.37813 -116.25
- 44 83.735 935 3 0 176.03 7.25 -116.24
- 44 139.404 934 3 0 176.304 7.05 -116.196
- 44 97.0907 933 3 0 176.665 6.84986 -116.054
- 44 163.7 932 3 0 176.963 6.65 -116.083
- 44 63.626 278 1 1 -124.35 15.7625 -174.643
- 44 480.468 1226 6 0 50.857 65.25 -25.8507
- 44 54.3503 1227 6 0 50.9526 65.45 -25.9599
- 44 136.026 1603 1 0 39.3729 140.889 -176.25
- 44 167.002 1669 1 0 4.52644 153.995 -176.25
- 44 80.1638 1670 1 0 4.46289 154.15 -176.073
- 44 107.56 1158 6 1 51.6712 66.3263 -24.45
- 44 126.119 1231 6 0 51.7764 66.3626 -25.85
- 44 118.442 1170 5 1 54.2265 67.4527 -54.45
- 44 88.6057 1171 5 1 54.25 67.4516 -54.8426
- 44 165.324 1237 5 0 54.3112 67.4555 -55.85
- 44 131.581 1177 4 1 55.6349 67.2593 -84.45
- 44 76.0172 1235 4 0 55.5509 67.0788 -85.8508
- 44 90.3212 1234 4 0 55.5401 67.05 -86.0456
- 44 111.068 1170 3 1 54.2031 62.6733 -114.45
- 44 129.847 1212 3 0 54.2569 62.6068 -115.85
- 44 244.131 1172 2 1 54.5801 61.3103 -144.45
- 44 111.459 1206 2 0 54.5142 61.3314 -145.85
- 44 128.461 1164 1 1 52.9183 60.6477 -174.45
- 44 95.3598 1206 1 0 52.755 61.3132 -175.85
- 44 31.0452 1207 1 0 52.7129 61.45 -176.145
- 44 122.624 1142 0 1 48.5726 74.9936 -204.45
- 44 68.6196 1143 0 1 48.65 75.1073 -204.721
- 44 40.8994 1277 0 0 48.997 75.5989 -205.85
- 44 114.685 1278 0 0 49.0321 75.65 -205.968
- 44 281.447 1171 2 1 54.45 61.4935 -144.622
- 44 7.52855 712 8 1 -37.6285 -88.615 35.15
- 44 27.8633 713 8 1 -37.45 -88.421 35.3033
- 44 244.189 711 8 1 -37.65 -88.6479 35.228
- 44 13.8841 710 8 1 -37.85 -88.5724 35.1846
- 44 206.053 464 8 0 -38.0108 -87.2464 34.15
- 44 91.0511 1149 2 1 50.05 64.5345 -144.472
- 44 80.9999 1148 2 1 49.85 64.5928 -144.561
- 44 69.984 1147 2 1 49.65 64.6113 -144.676
- 44 27.5014 1146 2 1 49.4497 64.6192 -144.789
- 44 63.437 937 1 1 7.58809 53.8451 -174.45
- 44 46.476 938 1 1 7.65 53.7913 -174.714
- 44 127.596 1166 1 0 9.15784 53.2981 -175.85
- 44 26.2871 1165 1 0 9.56851 53.25 -176.143
- 44 167.091 1223 2 0 51.5386 64.674 -145.85
- 44 30.8939 1253 1 1 70.8367 66.8086 -174.45
- 44 181.236 1254 1 1 70.85 66.8315 -174.477
- 44 11.1278 1239 1 0 71.5843 68.0223 -175.85
- 44 127.002 1240 1 0 71.6015 68.05 -175.883
- 44 60.6835 1241 1 0 71.7279 68.25 -176.132
- 44 251.601 1308 1 0 112.967 81.8088 -176.25
- 44 46.4964 1473 1 1 114.809 81.6051 -174.85
- 44 86.6592 1474 1 1 114.95 81.5845 -174.738
- 44 30.967 1475 1 1 115.15 81.5379 -174.512
- 44 615.391 1423 2 0 159.499 104.824 -146.25
- 44 295.644 1424 2 0 159.735 104.95 -146.083
- 44 99.1214 1422 2 0 161.702 104.75 -145.975
- 44 77.1725 1421 2 0 161.934 104.55 -145.948
- 44 55.2371 1420 2 0 162.103 104.35 -145.928
- 44 190.602 1716 2 1 163.361 102.784 -144.85
- 44 225.062 1715 2 1 163.35 102.392 -144.738
- 44 67.1783 1717 2 1 163.55 102.182 -144.508
- 44 313.716 1699 2 1 160.085 104.632 -144.85
- 44 252.763 1309 1 0 113.003 81.85 -176.198
-Number of digits in this event = 143
-Using G4ParticleGun ...
-3.57871 LIN
+Number of tracker hits in this event = 54
+ 44 105.799 346 9 1 -110.867 -63.2774 65.55
+ 44 181.891 583 9 0 -110.868 -63.2774 64.15
+ 44 125.413 346 8 1 -110.872 -63.2808 35.55
+ 44 138.056 583 8 0 -110.873 -63.2815 34.15
+ 44 125.226 346 7 1 -110.889 -63.2908 5.55
+ 44 112.969 583 7 0 -110.889 -63.2906 4.15
+ 44 275.382 346 6 1 -110.892 -63.2859 -24.45
+ 44 1201.26 583 6 0 -110.894 -63.2851 -25.85
+ 44 107.271 346 5 1 -110.914 -63.2692 -54.45
+ 44 142.457 583 5 0 -110.905 -63.2813 -55.85
+ 44 120.23 347 4 1 -110.711 -63.4902 -84.45
+ 44 140.972 582 4 0 -110.717 -63.4947 -85.85
+ 44 133.337 346 3 1 -110.768 -63.5674 -114.45
+ 44 131.239 582 3 0 -110.79 -63.5095 -115.85
+ 44 127.219 345 2 1 -111.105 -62.4412 -144.45
+ 44 97.7901 588 2 0 -111.17 -62.3277 -145.85
+ 44 110.901 338 1 1 -112.463 -60.0873 -174.45
+ 44 145.393 600 1 0 -112.538 -59.9731 -175.85
+ 44 181.722 330 0 1 -114.118 -57.714 -204.45
+ 44 122.08 612 0 0 -114.207 -57.585 -205.85
+ 44 60.2014 347 6 1 -110.75 -63.3778 -24.6101
+ 44 53.3351 417 5 1 -96.611 -63.7395 -54.45
+ 44 65.3416 416 5 1 -96.75 -63.8208 -54.4681
+ 44 59.0508 415 5 1 -96.95 -63.928 -54.5053
+ 44 51.2622 414 5 1 -97.1503 -64.0175 -54.4886
+ 44 61.9416 413 5 1 -97.35 -64.0511 -54.4562
+ 44 129.835 412 5 1 -97.5505 -64.0356 -54.5224
+ 44 74.2987 411 5 1 -97.7502 -64.0645 -54.685
+ 44 40.3177 410 5 1 -97.9501 -64.1227 -54.7899
+ 44 202.221 572 5 0 -101.991 -65.5611 -55.85
+ 44 5.30802 368 5 1 -106.522 -66.3184 -54.85
+ 44 68.2459 367 5 1 -106.55 -66.3246 -54.8449
+ 44 89.7859 366 5 1 -106.75 -66.3476 -54.723
+ 44 86.8117 365 5 1 -106.95 -66.3432 -54.5883
+ 44 79.18 364 5 1 -107.15 -66.3538 -54.4779
+ 44 60.09 363 5 1 -107.35 -66.447 -54.5699
+ 44 104.987 362 5 1 -107.55 -66.4574 -54.6062
+ 44 312.915 571 5 0 -107.583 -65.8366 -55.85
+ 44 245.488 347 5 1 -110.678 -63.1645 -54.45
+ 44 201.486 584 5 0 -110.663 -63.1641 -55.85
+ 44 110.543 348 4 1 -110.371 -63.1034 -84.45
+ 44 116.835 584 4 0 -110.319 -63.1148 -85.85
+ 44 116.256 355 3 1 -109.103 -63.3695 -114.45
+ 44 145.345 583 3 0 -109.061 -63.3641 -115.85
+ 44 127.563 359 2 1 -108.181 -63.1277 -144.45
+ 44 146.704 584 2 0 -108.11 -63.121 -145.85
+ 44 136.283 367 1 1 -106.624 -62.8707 -174.45
+ 44 127.427 585 1 0 -106.563 -62.8867 -175.85
+ 44 146.893 373 0 1 -105.394 -63.0386 -204.45
+ 44 115.119 584 0 0 -105.419 -63.0943 -205.85
+ 44 200.772 348 5 1 -110.55 -63.1701 -54.5368
+ 44 71.0797 585 3 0 -110.344 -62.8693 -115.85
+ 44 168.19 586 3 0 -110.126 -62.85 -116.097
+ 44 0.660595 569 4 0 -66.8675 -66.25 -85.9579
+Number of digits in this event = 30
+Using G4ParticleGun ...
+8.43815 LIN
e-
Event: 45
-Number of tracker hits in this event = 62
- 45 135.587 548 10 1 -70.3325 -54.4397 95.55
- 45 121.52 628 10 0 -70.3324 -54.4391 94.15
- 45 141.557 548 9 1 -70.3265 -54.4305 65.55
- 45 117.456 628 9 0 -70.3279 -54.4322 64.15
- 45 140.617 548 8 1 -70.357 -54.4614 35.55
- 45 171.147 627 8 0 -70.356 -54.4631 34.15
- 45 109.249 548 7 1 -70.3322 -54.5058 5.55
- 45 104.272 627 7 0 -70.324 -54.5112 4.15
- 45 129.023 549 6 1 -70.1416 -54.6083 -24.45
- 45 93.4549 627 6 0 -70.1291 -54.6109 -25.85
- 45 133.325 550 5 1 -69.887 -54.6565 -54.45
- 45 101.3 626 5 0 -69.8684 -54.6596 -55.85
- 45 158.737 552 4 1 -69.4931 -54.7043 -84.45
- 45 132.729 626 4 0 -69.4772 -54.7067 -85.85
- 45 587.485 554 3 1 -69.1681 -54.7221 -114.45
- 45 127.711 626 3 0 -69.1533 -54.7137 -115.85
- 45 176.025 556 2 1 -68.7965 -54.5489 -144.45
- 45 281.683 627 2 0 -68.7778 -54.535 -145.85
- 45 106.577 558 1 1 -68.4424 -54.2444 -174.45
- 45 121.802 629 1 0 -68.4194 -54.2313 -175.85
- 45 128.347 560 0 1 -67.9021 -53.9547 -204.45
- 45 108.853 630 0 0 -67.8685 -53.9584 -205.85
- 45 37.4595 539 2 1 -72.05 -55.2064 -144.751
- 45 250.575 538 2 1 -72.2503 -55.1686 -144.791
- 45 147.732 628 2 0 -72.3346 -54.4067 -145.85
- 45 187.352 626 2 0 -72.6284 -54.6501 -146.138
- 45 137.685 553 2 1 -69.3966 -55.1624 -144.45
- 45 15.0254 552 2 1 -69.4501 -55.296 -144.804
- 45 50.7219 622 2 0 -69.7145 -55.5846 -145.85
- 45 78.1916 621 2 0 -69.7729 -55.65 -146.053
- 45 56.2473 513 1 1 -77.3956 -64.5811 -174.45
- 45 72.8259 514 1 1 -77.25 -64.5857 -174.595
- 45 133.209 515 1 1 -77.05 -64.5782 -174.792
- 45 62.3864 578 1 0 -76.0785 -64.3042 -175.85
- 45 102.461 579 1 0 -75.9276 -64.25 -176.024
- 45 20.2144 658 0 1 -48.3123 -58.3191 -204.45
- 45 68.6949 659 0 1 -48.25 -58.3041 -204.484
- 45 92.1652 660 0 1 -48.05 -58.2541 -204.569
- 45 28.9516 661 0 1 -47.85 -58.244 -204.794
- 45 158.503 608 0 0 -47.0845 -58.3176 -205.85
- 45 107.281 523 2 0 -117.983 -75.2607 -146.25
- 45 314.822 522 2 0 -118.104 -75.4501 -146.05
- 45 154.064 548 1 1 -70.3835 -54.3426 -174.45
- 45 133.188 628 1 0 -70.3495 -54.4037 -175.85
- 45 130.846 551 0 1 -69.661 -55.3137 -204.45
- 45 143.011 623 0 0 -69.6353 -55.3317 -205.85
- 45 131.945 548 2 1 -70.293 -54.354 -144.45
- 45 140.944 630 2 0 -70.5019 -54.029 -145.85
- 45 145.725 661 1 0 -77.1757 -47.788 -175.85
- 45 107.462 497 0 1 -80.5701 -48.8491 -204.45
- 45 13.3947 496 0 1 -80.65 -48.9566 -204.791
- 45 111.229 653 0 0 -80.9038 -49.2657 -205.85
- 45 98.4453 549 2 1 -70.25 -54.3572 -144.482
- 45 136.484 629 2 0 -69.7337 -54.2384 -145.85
- 45 29.8947 599 1 1 -60.0962 -51.6397 -174.45
- 45 191.636 600 1 1 -60.05 -51.6439 -174.526
- 45 191.385 641 1 0 -59.4226 -51.7372 -175.851
- 45 13.2016 667 0 1 -46.4741 -55.8706 -204.45
- 45 174.146 668 0 1 -46.4499 -55.8987 -204.489
- 45 29.2088 669 0 1 -46.25 -56.0863 -204.773
- 45 36.2766 616 0 0 -45.2889 -56.7834 -205.85
- 45 126.057 615 0 0 -45.1951 -56.8501 -205.955
-Number of digits in this event = 36
-Using G4ParticleGun ...
-3.73254 LIN
+Number of tracker hits in this event = 154
+ 45 361.459 661 11 1 -47.6709 30.0705 125.55
+ 45 136.834 1050 11 0 -47.6714 30.0705 124.15
+ 45 104.299 661 10 1 -47.6781 30.0692 95.55
+ 45 165.236 1050 10 0 -47.6778 30.069 94.15
+ 45 177.67 661 9 1 -47.671 30.0688 65.55
+ 45 114.278 1050 9 0 -47.6684 30.0673 64.15
+ 45 144.924 662 8 1 -47.6149 30.0383 35.55
+ 45 96.1073 1049 8 0 -47.6107 30.037 34.15
+ 45 378.674 662 7 1 -47.5076 30.0061 5.55
+ 45 502.768 1049 7 0 -47.5017 30.0036 4.15
+ 45 140.344 663 6 1 -47.3743 29.9525 -24.45
+ 45 158.093 1049 6 0 -47.372 29.9509 -25.85
+ 45 109.62 663 5 1 -47.3191 29.9182 -54.45
+ 45 118.094 1049 5 0 -47.319 29.9151 -55.85
+ 45 109.465 663 4 1 -47.3099 29.8651 -84.45
+ 45 340.351 1049 4 0 -47.3085 29.8622 -85.85
+ 45 122.417 663 3 1 -47.2855 29.8066 -114.45
+ 45 100.729 1048 3 0 -47.2815 29.8028 -115.85
+ 45 348.436 664 2 1 -47.1991 29.7236 -144.45
+ 45 116.1 1048 2 0 -47.1958 29.7201 -145.85
+ 45 130.836 664 1 1 -47.1378 29.6399 -174.45
+ 45 98.7612 1047 1 0 -47.1365 29.6363 -175.85
+ 45 223.218 664 0 1 -47.1136 29.5594 -204.45
+ 45 145.596 1047 0 0 -47.1119 29.5564 -205.85
+ 45 109.038 1282 4 0 51.4777 76.5191 -86.25
+ 45 10.2391 1611 5 0 76.1551 142.35 -56.024
+ 45 57.2287 1612 5 0 76.2226 142.55 -55.9319
+ 45 80.4311 1048 1 0 -47.1569 29.7426 -175.85
+ 45 61.8095 921 0 0 -91.1117 4.39224 -206.25
+ 45 109.207 665 2 1 -47.0499 29.7521 -144.515
+ 45 43.2663 666 2 1 -46.85 29.4893 -144.764
+ 45 12.5303 1041 2 0 -46.0345 28.2907 -145.85
+ 45 118.521 1040 2 0 -46.0077 28.25 -145.886
+ 45 257.864 1039 2 0 -45.9106 28.0499 -146.031
+ 45 75.1611 1038 2 0 -45.8189 27.85 -146.147
+ 45 31.5916 1037 2 0 -45.7287 27.6494 -146.215
+ 45 144.108 786 1 1 -22.7912 -34.2019 -174.45
+ 45 64.5618 732 1 0 -22.1298 -33.5344 -175.851
+ 45 145.694 733 1 0 -22.0197 -33.45 -176.015
+ 45 53.4889 1077 1 0 130.495 35.5076 -176.25
+ 45 293.676 1049 2 0 -47.3462 30.044 -145.85
+ 45 99.1263 1050 2 0 -47.3532 30.05 -145.893
+ 45 52.1163 640 1 1 -51.9667 35.1122 -174.45
+ 45 147.23 639 1 1 -52.05 34.9161 -174.53
+ 45 153.07 638 1 1 -52.25 34.4651 -174.704
+ 45 41.4417 1056 1 0 -53.4456 31.3921 -175.85
+ 45 83.2353 1055 1 0 -53.5057 31.25 -175.904
+ 45 65.3616 1054 1 0 -53.5892 31.05 -175.981
+ 45 80.7466 1053 1 0 -53.6831 30.8498 -176.058
+ 45 102.925 1052 1 0 -53.791 30.65 -176.145
+ 45 32.6238 1051 1 0 -53.8982 30.45 -176.231
+ 45 167.645 465 0 1 -86.8719 -31.6935 -204.45
+ 45 74.9659 464 0 1 -87.0502 -31.7839 -204.75
+ 45 141.39 739 0 0 -87.6939 -32.1031 -205.85
+ 45 180.053 741 0 0 -86.5424 -31.6789 -205.85
+ 45 86.0282 660 9 1 -47.85 30.1088 65.3955
+ 45 70.5559 659 9 1 -48.05 30.221 65.4183
+ 45 86.8419 658 9 1 -48.25 30.2852 65.4465
+ 45 189.524 657 9 1 -48.45 30.287 65.4521
+ 45 105.474 656 9 1 -48.65 30.2439 65.2561
+ 45 78.6833 655 6 1 -49.0233 30.4219 -24.4502
+ 45 90.826 654 6 1 -49.05 30.4305 -24.5876
+ 45 142.912 1052 6 0 -49.3101 30.4939 -25.85
+ 45 168.637 617 5 1 -56.4621 32.2095 -54.45
+ 45 158.222 1061 5 0 -56.9525 32.2977 -55.8504
+ 45 129.626 558 4 1 -68.3427 34.5695 -84.45
+ 45 11.6193 557 4 1 -68.45 34.5542 -84.803
+ 45 121.959 1072 4 0 -68.7853 34.5294 -85.85
+ 45 29.9183 507 3 1 -78.6481 33.2819 -114.45
+ 45 176.94 506 3 1 -78.65 33.2823 -114.456
+ 45 169.067 1066 3 0 -79.1707 33.3668 -115.85
+ 45 111.118 447 2 1 -90.62 35.0605 -144.45
+ 45 56.1831 446 2 1 -90.75 35.0575 -144.69
+ 45 153.471 1074 2 0 -91.3981 35.0296 -145.85
+ 45 1.25742 370 1 1 -106.148 34.9202 -174.45
+ 45 213.547 369 1 1 -106.15 34.919 -174.456
+ 45 196.373 1072 1 0 -106.681 34.5841 -175.85
+ 45 48.784 310 0 1 -118.065 26.7142 -204.45
+ 45 157.965 309 0 1 -118.15 26.6494 -204.542
+ 45 32.8318 308 0 1 -118.35 26.4968 -204.765
+ 45 86.8193 1028 0 0 -119.334 25.7567 -205.851
+ 45 96.6924 1027 0 0 -119.479 25.6499 -206.01
+ 45 115.332 656 6 1 -48.6757 29.3896 -24.45
+ 45 117.732 1046 6 0 -48.6187 29.4142 -25.85
+ 45 114.482 662 5 1 -47.6122 29.9727 -54.4503
+ 45 122.768 1050 5 0 -47.4886 30.0514 -55.85
+ 45 261.84 676 4 1 -44.737 32.9415 -84.45
+ 45 138.951 1065 4 0 -44.6489 33.105 -85.8501
+ 45 149.958 686 3 1 -42.737 36.4077 -114.45
+ 45 77.3289 1082 3 0 -42.7136 36.6098 -115.85
+ 45 29.9537 1083 3 0 -42.7061 36.65 -116.134
+ 45 49.0874 690 2 1 -41.8595 40.5512 -144.45
+ 45 53.1029 691 2 1 -41.85 40.5904 -144.655
+ 45 36.2661 1103 2 0 -41.7785 40.8271 -145.85
+ 45 92.2781 1104 2 0 -41.7717 40.85 -145.965
+ 45 297.432 700 1 1 -39.9318 46.3223 -174.45
+ 45 0.681756 701 1 1 -39.85 46.1702 -174.847
+ 45 125.044 1128 1 0 -39.6798 45.7967 -175.85
+ 45 12.9151 1127 1 0 -39.6187 45.6499 -176.206
+ 45 394.268 723 0 1 -35.4141 32.3355 -204.45
+ 45 92.5924 1056 0 0 -34.8672 31.416 -205.85
+ 45 45.943 1055 0 0 -34.7559 31.25 -206.124
+ 45 3.02628 999 0 0 -29.9506 20.049 -206.25
+ 45 149.694 1000 0 0 -29.9511 20.05 -206.242
+ 45 106.968 749 0 1 -30.0631 19.9794 -204.85
+ 45 73.7885 882 1 0 -39.9008 -3.50107 -176.25
+ 45 62.3116 881 1 0 -39.9998 -3.65 -176.051
+ 45 236.834 698 1 1 -40.4097 -3.97875 -174.85
+ 45 55.7719 697 1 1 -40.45 -4.08104 -174.555
+ 45 113.818 880 1 0 -40.6165 -3.89754 -175.85
+ 45 55.775 879 1 0 -40.7684 -4.05 -176.147
+ 45 245.699 980 0 0 -41.7888 16.104 -206.25
+ 45 292.846 661 4 1 -47.6777 30.0452 -84.45
+ 45 127.008 656 3 1 -48.7789 29.2696 -114.45
+ 45 107.728 1045 3 0 -48.8734 29.196 -115.85
+ 45 78.3423 646 2 1 -50.7961 27.7393 -144.45
+ 45 129.258 663 1 1 -47.4237 30.1014 -174.45
+ 45 165.696 1050 1 0 -47.2955 30.2152 -175.85
+ 45 93.4436 677 0 1 -44.4587 32.3569 -204.45
+ 45 119.203 678 0 1 -44.45 32.3602 -204.506
+ 45 91.6424 1061 0 0 -44.2258 32.4384 -205.85
+ 45 326.782 1062 0 0 -44.195 32.45 -206.032
+ 45 23.9016 946 0 0 -142.724 9.27345 -206.25
+ 45 150.768 945 0 0 -142.807 9.25 -206.23
+ 45 148.029 181 0 1 -143.833 9.0645 -204.85
+ 45 103.517 180 0 1 -143.95 9.04063 -204.66
+ 45 15.193 182 0 1 -143.75 9.17025 -204.483
+ 45 78.3033 1063 0 0 -45.1734 32.65 -206.105
+ 45 82.06 1085 0 0 -48.4678 37.1217 -206.25
+ 45 51.2681 1334 1 1 87.0209 -40.9265 -174.45
+ 45 112.072 1335 1 1 87.05 -40.9771 -174.592
+ 45 210.908 1336 1 1 87.25 -40.8634 -174.648
+ 45 120.037 661 3 1 -47.6698 30.0389 -114.45
+ 45 126.57 1049 3 0 -47.6697 30.039 -115.85
+ 45 112.206 661 2 1 -47.6629 30.0348 -144.45
+ 45 111.018 662 1 1 -47.5895 29.9867 -174.45
+ 45 125.329 1049 1 0 -47.5859 29.9839 -175.85
+ 45 124.369 662 0 1 -47.505 29.9318 -204.45
+ 45 107.487 1049 0 0 -47.5007 29.9321 -205.85
+ 45 25.1813 543 13 0 -19.9644 -71.3575 183.75
+ 45 187.328 799 13 1 -20.2227 -71.3959 185.15
+ 45 94.6939 953 0 0 -50.3148 10.6582 -206.25
+ 45 23.7481 952 0 0 -50.4494 10.65 -205.953
+ 45 66.6934 647 0 1 -50.4742 10.6923 -204.85
+ 45 98.5782 648 0 1 -50.45 10.7437 -204.669
+ 45 148.049 649 0 1 -50.2219 10.7725 -204.45
+ 45 148.358 194 1 0 -40.3213 -141.15 -176.013
+ 45 24.4203 660 11 1 -47.85 30.0602 125.238
+ 45 121.168 1051 11 0 -48.4147 30.3772 124.15
+ 45 78.6305 803 11 0 -45.8769 -19.318 123.75
+ 45 92.006 802 11 0 -45.9248 -19.45 123.905
+ 45 203.954 668 11 1 -46.3471 -19.6403 125.15
+ 45 119.059 669 11 1 -46.25 -19.9596 125.424
+ 45 328.954 670 11 1 -46.05 -20.1107 125.507
+Number of digits in this event = 67
+Using G4ParticleGun ...
+3.81206 LIN
e-
Event: 46
-Number of tracker hits in this event = 59
- 46 171.806 339 10 0 29.244 -112.266 94.15
- 46 99.3237 1045 9 1 29.2445 -112.267 65.55
- 46 122.066 339 9 0 29.2434 -112.267 64.15
- 46 103.733 1045 8 1 29.2251 -112.273 35.55
- 46 109.347 339 8 0 29.2259 -112.276 34.15
- 46 114.662 1045 7 1 29.2446 -112.338 5.55
- 46 110.881 339 7 0 29.2451 -112.342 4.15
- 46 118.501 1046 6 1 29.2531 -112.43 -24.45
- 46 134.214 338 6 0 29.2548 -112.435 -25.85
- 46 350.96 1046 5 1 29.2959 -112.551 -54.45
- 46 245.118 337 5 0 29.2939 -112.557 -55.85
- 46 161.045 1046 4 1 29.2548 -112.691 -84.45
- 46 292.543 337 4 0 29.2547 -112.698 -85.85
- 46 225.355 1045 3 1 29.2491 -112.841 -114.45
- 46 109.791 336 3 0 29.2481 -112.844 -115.85
- 46 118.672 1045 2 1 29.229 -112.905 -144.45
- 46 117.663 336 2 0 29.2293 -112.909 -145.85
- 46 104.546 1045 1 1 29.2328 -112.981 -174.45
- 46 111.581 335 1 0 29.2316 -112.987 -175.85
- 46 590.116 1045 0 1 29.2088 -113.084 -204.45
- 46 139.426 335 0 0 29.2084 -113.09 -205.85
- 46 48.7316 451 1 0 -53.5239 -89.7233 -176.25
- 46 173.215 1046 0 1 29.25 -113.052 -204.725
- 46 55.9971 1714 0 1 162.95 -78.3554 -204.734
- 46 27.5879 1044 0 1 29.05 -113.14 -204.772
- 46 28.7867 336 0 0 28.618 -112.781 -205.85
- 46 81.9477 337 0 0 28.5833 -112.75 -205.941
- 46 35.6907 483 0 0 22.79 -83.3674 -206.25
- 46 123.072 484 0 0 22.7898 -83.2495 -206.178
- 46 456.071 1014 0 1 22.9748 -83.263 -204.849
- 46 72.2209 1015 0 1 23.05 -83.164 -204.519
- 46 15.8804 1047 5 1 29.45 -112.744 -54.796
- 46 129.25 335 5 0 30.2037 -113.036 -55.85
- 46 106.798 261 5 0 57.4634 -127.798 -56.25
- 46 4.0115 1188 5 1 57.8421 -128.006 -54.85
- 46 128.37 1189 5 1 57.85 -128.008 -54.8305
- 46 305.558 338 5 0 29.511 -112.536 -55.85
- 46 49.7111 1043 5 1 28.85 -112.124 -54.6453
- 46 291.637 1045 5 1 29.1974 -112.328 -54.45
- 46 120.321 1021 4 1 24.3658 -112.974 -84.45
- 46 107.908 332 4 0 24.6497 -113.561 -85.85
- 46 3.59192 331 4 0 24.7584 -113.75 -86.2392
- 46 142.899 1038 4 1 27.808 -111.847 -84.45
- 46 119.278 341 4 0 27.8575 -111.852 -85.85
- 46 108.515 343 3 0 29.1806 -111.42 -115.85
- 46 310.508 1041 2 1 28.3339 -111.904 -144.45
- 46 110.381 341 2 0 28.3913 -111.848 -145.85
- 46 102.381 1031 1 1 26.3913 -112.309 -174.45
- 46 93.4844 341 1 0 26.3799 -111.949 -175.85
- 46 202.413 1032 0 1 26.5007 -105.32 -204.45
- 46 81.7843 382 0 0 26.781 -103.677 -205.85
- 46 93.9989 383 0 0 26.7998 -103.55 -205.961
- 46 102.739 384 0 0 26.8255 -103.35 -206.113
- 46 112.858 339 0 0 29.1342 -112.308 -205.85
- 46 133.581 338 0 0 29.2008 -112.353 -205.851
- 46 27.6867 449 1 0 -5.5084 -90.18 -176.25
- 46 85.1728 450 1 0 -5.67124 -90.05 -176.175
- 46 170.299 632 1 0 -43.9433 -53.4836 -176.25
- 46 36.3109 633 1 0 -43.9406 -53.45 -176.208
-Number of digits in this event = 26
+Number of tracker hits in this event = 42
+ 46 147.13 1001 10 1 20.2654 -82.4341 95.55
+ 46 134.294 488 10 0 20.265 -82.4351 94.15
+ 46 323.104 1001 9 1 20.2598 -82.4576 65.55
+ 46 103.711 487 9 0 20.2565 -82.4608 64.15
+ 46 110.523 1000 8 1 20.1888 -82.5261 35.55
+ 46 92.2366 487 8 0 20.1831 -82.5287 34.15
+ 46 109.035 1000 7 1 20.0569 -82.5922 5.55
+ 46 89.699 487 7 0 20.0512 -82.5996 4.15
+ 46 125.788 999 6 1 19.9259 -82.7329 -24.45
+ 46 124.341 486 6 0 19.9202 -82.7386 -25.85
+ 46 103.659 998 5 1 19.7949 -82.8531 -54.45
+ 46 130.356 485 5 0 19.7843 -82.8583 -55.85
+ 46 102.627 997 4 1 19.5728 -82.9572 -84.45
+ 46 139.932 485 4 0 19.5576 -82.961 -85.85
+ 46 104.422 995 3 1 19.2391 -83.037 -114.45
+ 46 445.39 485 3 0 19.2191 -83.0422 -115.85
+ 46 199.367 993 2 1 18.8054 -83.1518 -144.45
+ 46 134.222 484 2 0 18.7836 -83.1552 -145.85
+ 46 120.668 991 1 1 18.3348 -83.2312 -174.45
+ 46 112.521 484 1 0 18.3095 -83.2317 -175.85
+ 46 137.766 988 0 1 17.7942 -83.2562 -204.45
+ 46 182.76 483 0 0 17.7684 -83.2572 -205.85
+ 46 8.49247 1299 2 1 79.85 -120.301 -144.695
+ 46 37.0673 653 1 0 -21.4606 -49.3565 -176.25
+ 46 107.289 1250 6 0 113.826 70.158 -26.25
+ 46 77.5347 1251 6 0 113.976 70.25 -26.1927
+ 46 142.546 994 2 1 18.8502 -83.1428 -144.603
+ 46 33.2992 490 2 0 19.8908 -81.9365 -145.85
+ 46 95.2142 491 2 0 19.9015 -81.85 -145.902
+ 46 206.122 492 2 0 19.7298 -81.6499 -146.036
+ 46 163.523 493 2 0 19.6205 -81.45 -146.168
+ 46 100.91 484 3 0 19.6724 -83.05 -116.111
+ 46 91.5841 483 3 0 19.6709 -83.2502 -116
+ 46 51.238 482 3 0 19.6175 -83.45 -115.86
+ 46 249.515 996 3 1 19.2734 -86.5042 -114.85
+ 46 35.6517 1000 9 1 20.25 -82.792 65.4698
+ 46 432.291 1000 0 1 20.186 -82.9053 -204.45
+ 46 77.8218 484 0 0 19.7929 -83.1996 -205.85
+ 46 93.0602 1188 0 1 57.6964 -141.658 -204.45
+ 46 27.7537 1187 0 1 57.65 -141.634 -204.482
+ 46 136.698 485 0 0 20.2032 -82.8873 -205.85
+ 46 6.88037 932 2 0 69.0959 6.54192 -146.25
+Number of digits in this event = 22
Using G4ParticleGun ...
-4.45443 LIN
+2.20445 LIN
e-
Event: 47
-Number of tracker hits in this event = 54
- 47 142.342 1034 8 1 26.8524 -134.704 35.55
- 47 114.267 227 8 0 26.8526 -134.705 34.15
- 47 173.847 1034 7 1 26.8697 -134.732 5.55
- 47 169.899 227 7 0 26.8699 -134.732 4.15
- 47 113.299 1034 6 1 26.8753 -134.752 -24.45
- 47 126.814 226 6 0 26.8747 -134.753 -25.85
- 47 104.856 1034 5 1 26.8562 -134.78 -54.45
- 47 128.5 226 5 0 26.8566 -134.783 -55.85
- 47 103.244 1034 4 1 26.8684 -134.843 -84.45
- 47 131.958 226 4 0 26.8683 -134.847 -85.85
- 47 105.668 1034 3 1 26.8643 -134.933 -114.45
- 47 121.582 226 3 0 26.8658 -134.934 -115.85
- 47 363.668 1034 2 1 26.8895 -134.965 -144.45
- 47 141.862 225 2 0 26.8882 -134.968 -145.85
- 47 362.04 1034 1 1 26.8686 -135.016 -174.45
- 47 103.14 225 1 0 26.8676 -135.02 -175.85
- 47 113.705 1033 0 1 26.8452 -135.089 -204.45
- 47 180.779 225 0 0 26.8405 -135.092 -205.85
- 47 59.483 350 4 0 132.978 -109.952 -85.85
- 47 166.782 1033 5 1 26.85 -134.781 -54.7393
- 47 141.741 1033 2 1 26.824 -134.89 -144.45
- 47 620.028 226 2 0 26.9707 -134.91 -145.85
- 47 130.682 1028 1 1 25.7751 -136.934 -174.45
- 47 0.479548 1029 1 1 25.85 -136.66 -174.848
- 47 13.4047 220 1 0 25.9192 -135.985 -175.85
- 47 180.943 221 1 0 25.9231 -135.95 -175.902
- 47 41.8018 222 1 0 25.9401 -135.75 -176.173
- 47 51.8473 1045 0 1 29.1188 -113.963 -204.45
- 47 104.823 1046 0 1 29.25 -113.801 -204.562
- 47 71.0848 1047 0 1 29.4504 -113.548 -204.716
- 47 36.6724 341 0 0 31.0481 -111.818 -205.85
- 47 92.0186 342 0 0 31.1129 -111.75 -205.899
- 47 51.476 343 0 0 31.2916 -111.55 -206.04
- 47 89.4254 344 0 0 31.3697 -111.35 -206.152
- 47 7.53113 345 0 0 31.4393 -111.15 -206.242
- 47 27.5502 1032 2 1 26.65 -135 -144.774
- 47 10.354 224 2 0 25.7468 -135.337 -145.85
- 47 136.466 223 2 0 25.7158 -135.35 -145.888
- 47 134.982 1035 1 1 27.05 -134.816 -174.656
- 47 221.589 226 1 0 27.3413 -134.891 -175.85
- 47 50.8306 1071 0 1 34.3983 -136.918 -204.45
- 47 70.6487 1072 0 1 34.45 -136.936 -204.628
- 47 116.672 215 0 0 34.8095 -137.049 -205.85
- 47 172.015 1033 1 1 26.7585 -134.824 -174.45
- 47 165.076 1032 0 1 26.4998 -135.888 -204.45
- 47 213.744 221 0 0 26.5285 -135.937 -205.85
- 47 69.9941 220 0 0 26.5362 -135.95 -206.215
- 47 21.8884 1097 1 1 39.5127 -170.907 -174.85
- 47 143.76 29 0 0 97.3442 -174.248 -206.25
- 47 105.711 227 1 0 26.8931 -134.672 -175.85
- 47 156.616 1019 0 1 24.0246 -134.129 -204.45
- 47 17.6721 1018 0 1 23.85 -134.572 -204.809
- 47 83.8117 219 0 0 23.2307 -136.15 -205.915
- 47 65.6275 218 0 0 23.1451 -136.35 -206.102
-Number of digits in this event = 26
+Number of tracker hits in this event = 29
+ 47 127.785 1052 11 1 30.5778 2.63358 125.55
+ 47 144.316 912 11 0 30.5763 2.63328 124.15
+ 47 130.907 1052 10 1 30.5344 2.63933 95.55
+ 47 134.516 912 10 0 30.532 2.63568 94.15
+ 47 131.069 1052 9 1 30.5068 2.57461 65.55
+ 47 156.404 912 9 0 30.5191 2.56967 64.15
+ 47 114.684 1053 8 1 30.7692 2.48138 35.55
+ 47 105.527 912 8 0 30.7812 2.48053 34.15
+ 47 106.525 1054 7 1 31.0371 2.4795 5.55
+ 47 108.206 912 7 0 31.0518 2.48136 4.15
+ 47 121.51 1056 6 1 31.355 2.49957 -24.45
+ 47 98.0991 912 6 0 31.3642 2.50139 -25.85
+ 47 108.6 1057 5 1 31.5339 2.51023 -54.45
+ 47 197.572 912 5 0 31.5263 2.52167 -55.85
+ 47 143.767 1056 4 1 31.3677 2.74963 -84.45
+ 47 106.007 913 4 0 31.3517 2.77214 -85.85
+ 47 180.515 1054 3 1 31.0448 3.18345 -114.45
+ 47 105.659 915 3 0 31.0254 3.2109 -115.85
+ 47 117.514 1052 2 1 30.538 3.70958 -144.45
+ 47 111.074 918 2 0 30.4931 3.74078 -145.85
+ 47 105.346 1047 1 1 29.5341 4.33814 -174.45
+ 47 106.941 921 1 0 29.5024 4.3723 -175.85
+ 47 104.297 1046 0 1 29.2742 5.16689 -204.45
+ 47 188.078 925 0 0 29.3519 5.16383 -205.85
+ 47 49.8881 1027 11 0 87.029 25.5842 123.75
+ 47 90.2528 1028 11 0 87.093 25.65 123.875
+ 47 60.8823 1029 11 0 87.2086 25.85 124.031
+ 47 143.083 1338 11 1 87.6804 27.4216 125.15
+ 47 77.7965 1339 11 1 87.85 27.6661 125.45
+Number of digits in this event = 13
Using G4ParticleGun ...
-3.61914 LIN
+3.23777 LIN
e-
Event: 48
-Number of tracker hits in this event = 138
- 48 122.854 1058 9 1 31.664 126.446 65.55
- 48 134.348 1531 9 0 31.6641 126.449 64.15
- 48 150.646 1058 8 1 31.658 126.525 35.55
- 48 134.378 1531 8 0 31.658 126.528 34.15
- 48 108.301 1058 7 1 31.6539 126.588 5.55
- 48 126.577 1532 7 0 31.6392 126.599 4.15
- 48 146.181 1055 6 1 31.1935 126.855 -24.45
- 48 136.413 1533 6 0 31.1674 126.873 -25.85
- 48 147.719 1052 5 1 30.6447 127.27 -54.45
- 48 153.266 1535 5 0 30.6229 127.297 -55.85
- 48 122.16 1050 4 1 30.2007 127.777 -84.45
- 48 127.725 1538 4 0 30.1833 127.795 -85.85
- 48 208.027 1048 3 1 29.8088 128.175 -114.45
- 48 129.983 1540 3 0 29.7987 128.171 -115.85
- 48 116.871 1048 2 1 29.65 128.106 -144.45
- 48 129.272 1539 2 0 29.6656 128.099 -145.85
- 48 124.701 1049 1 1 30.0027 127.902 -174.45
- 48 186.104 1538 1 0 30.0236 127.897 -175.85
- 48 373.175 1051 0 1 30.3475 127.789 -204.45
- 48 127.534 1538 0 0 30.3586 127.767 -205.85
- 48 28.7828 555 1 0 165.307 -69.0389 -175.85
- 48 127.062 1044 1 1 29.03 128.847 -174.45
- 48 137.052 1543 1 0 29.0375 128.85 -175.85
- 48 104.861 1045 0 1 29.0872 128.925 -204.45
- 48 42.2108 1044 0 1 29.05 128.901 -204.716
- 48 95.2072 1543 0 0 28.898 128.807 -205.85
- 48 92.8939 1045 1 1 29.05 128.831 -174.535
- 48 99.3204 1542 1 0 29.2031 128.737 -175.85
- 48 27.3391 1060 0 1 32.2344 126.802 -204.45
- 48 108.714 1061 0 1 32.25 126.793 -204.513
- 48 106.976 1532 0 0 32.5422 126.625 -205.85
- 48 61.6513 1051 4 1 30.3348 127.855 -84.45
- 48 90.0941 1052 4 1 30.45 127.889 -84.5765
- 48 0.833394 1053 4 1 30.6501 127.985 -84.8449
- 48 188.531 1541 4 0 31.4233 128.397 -85.85
- 48 6.42588 1542 4 0 31.7545 128.55 -86.231
- 48 80.6069 1200 3 1 60.1754 143.774 -114.45
- 48 62.0372 1199 3 1 60.05 143.871 -114.671
- 48 51.1459 1620 3 0 59.659 144.297 -115.85
- 48 72.0025 1621 3 0 59.6172 144.35 -115.991
- 48 156.38 1155 2 1 51.0546 158.669 -144.45
- 48 143.262 1154 2 1 51.0499 158.673 -144.456
- 48 24.5218 1153 2 1 50.85 158.911 -144.77
- 48 92.1285 1695 2 0 50.241 159.3 -145.85
- 48 94.0531 1696 2 0 50.1393 159.35 -145.987
- 48 59.031 986 1 1 17.314 170.633 -174.45
- 48 50.4964 985 1 1 17.25 170.57 -174.637
- 48 43.2412 1751 1 0 16.5513 170.358 -175.85
- 48 105.348 1750 1 0 16.5161 170.35 -175.925
- 48 96.129 1758 1 0 -17.3269 171.881 -176.25
- 48 118.131 1759 1 0 -17.3898 171.95 -176.008
- 48 306.363 815 1 1 -16.9943 171.512 -174.85
- 48 184.728 816 1 1 -16.85 171.473 -174.723
- 48 24.8056 818 1 1 -16.45 172.901 -174.621
- 48 112.515 1693 2 0 50.7127 158.851 -145.85
- 48 14.2177 1694 2 0 50.6022 158.95 -146.197
- 48 333.802 1057 6 1 31.6274 126.653 -24.45
- 48 330.098 1532 6 0 31.6294 126.655 -25.85
- 48 613.032 1057 5 1 31.6359 126.725 -54.45
- 48 372.822 1532 5 0 31.6508 126.734 -55.85
- 48 122.161 1059 4 1 31.9455 126.913 -84.45
- 48 119.657 1533 4 0 31.9576 126.913 -85.85
- 48 120.464 1060 3 1 32.211 126.894 -114.45
- 48 315.164 1533 3 0 32.2379 126.86 -115.85
- 48 148.544 1063 2 1 32.8064 125.879 -144.45
- 48 411.075 1528 2 0 32.8323 125.811 -145.85
- 48 128.272 1064 1 1 33.0162 124.352 -174.45
- 48 117.805 1520 1 0 33.1072 124.277 -175.85
- 48 173.13 1075 0 1 35.1026 122.649 -204.45
- 48 10.9841 1512 0 0 35.1492 122.553 -205.85
- 48 105.677 1511 0 0 35.1509 122.55 -205.901
- 48 130.014 1064 2 1 32.8502 125.871 -144.529
- 48 210.373 1462 2 0 48.3719 112.693 -146.25
- 48 209.432 1069 0 1 33.8778 126.987 -204.45
- 48 222.312 1534 0 0 33.904 127.001 -205.85
- 48 113.591 1056 4 1 31.4302 126.728 -84.45
- 48 157.371 1532 4 0 31.4238 126.729 -85.85
- 48 155.279 1056 3 1 31.2996 126.757 -114.45
- 48 137.714 1055 2 1 31.2109 126.867 -144.45
- 48 124.049 1533 2 0 31.2046 126.875 -145.85
- 48 209.414 1055 1 1 31.0755 127.035 -174.45
- 48 95.7075 1534 1 0 31.0688 127.042 -175.85
- 48 135.409 1054 0 1 30.9364 127.214 -204.45
- 48 258.608 1535 0 0 30.934 127.216 -205.85
- 48 71.3424 1054 1 1 31.05 127.013 -174.61
- 48 51.4653 1522 5 0 31.8346 124.667 -55.8501
- 48 71.6677 1521 5 0 31.8761 124.55 -55.9177
- 48 57.1396 1520 5 0 31.9203 124.35 -56.0299
- 48 90.2641 1519 5 0 31.9302 124.15 -56.0811
- 48 61.1448 1518 5 0 31.9381 123.95 -56.0995
- 48 46.7459 1517 5 0 31.8319 123.75 -56.1015
- 48 102.869 1516 5 0 31.785 123.55 -56.134
- 48 65.8827 1515 5 0 31.6724 123.35 -56.1454
- 48 136.796 1514 5 0 31.577 123.15 -56.117
- 48 129.609 1513 5 0 31.6028 122.95 -56.0988
- 48 126.329 1512 5 0 31.7713 122.75 -56.217
- 48 271.411 1056 5 1 31.45 122.324 -54.786
- 48 7.1192 1055 5 1 31.25 122.079 -54.458
- 48 117.663 1534 5 0 31.5718 126.985 -55.8511
- 48 362.362 1055 4 1 31.2215 130.722 -84.4503
- 48 96.4489 1550 4 0 31.1857 130.234 -85.85
- 48 47.513 1549 4 0 31.1767 130.15 -86.0952
- 48 185.364 1049 3 1 29.9116 120.251 -114.45
- 48 99.7732 1496 3 0 30.0849 119.512 -115.85
- 48 21.9861 1495 3 0 30.1246 119.35 -116.162
- 48 17.2257 1067 2 1 33.6257 104.836 -144.45
- 48 163.34 1068 2 1 33.65 104.803 -144.504
- 48 45.3672 1419 2 0 34.2774 104.021 -145.85
- 48 91.7226 1418 2 0 34.3394 103.95 -145.982
- 48 141.625 1130 1 1 46.1962 92.6541 -174.45
- 48 82.9582 1367 1 0 46.2722 93.5573 -175.85
- 48 36.8685 1368 1 0 46.2897 93.7501 -176.14
- 48 334.385 1124 0 1 44.9752 115.334 -204.45
- 48 124.8 1474 0 0 44.5737 115.071 -205.85
- 48 55.0177 1123 0 1 44.85 115.292 -204.708
- 48 37.8348 1515 4 0 31.1789 123.178 -85.8501
- 48 91.3206 1514 4 0 31.1746 123.15 -85.9615
- 48 130.164 1046 3 1 29.3507 116.164 -114.45
- 48 217.233 1479 3 0 29.5293 116.034 -115.85
- 48 120.203 1069 2 1 33.8501 112.994 -144.479
- 48 110.844 1463 2 0 34.1124 112.922 -145.85
- 48 178.626 1104 1 1 40.8572 109.042 -174.45
- 48 0.600941 1443 1 0 40.8982 108.751 -175.85
- 48 165.001 1442 1 0 40.8983 108.75 -175.853
- 48 141.84 1109 0 1 41.9726 101.777 -204.45
- 48 135.878 1408 0 0 41.8226 101.807 -205.85
- 48 67.9387 1508 0 0 33.2548 121.805 -206.25
- 48 99.5632 1509 0 0 33.2337 121.95 -206.112
- 48 21.2864 1510 0 0 33.1737 122.15 -205.886
- 48 215.649 1063 0 1 32.6921 123.148 -204.85
- 48 195.197 1062 0 1 32.65 123.235 -204.775
- 48 392.209 1064 0 1 32.85 123.25 -204.687
- 48 680.404 1065 0 1 33.05 122.988 -204.759
- 48 1.9702 1503 0 0 34.6766 120.95 -205.883
- 48 24.0544 1505 0 0 35.1255 121.15 -206.066
- 48 41.4351 1515 0 0 32.7935 123.191 -205.85
- 48 85.809 1514 0 0 32.7755 123.15 -205.889
- 48 102.329 1478 3 0 29.5976 115.95 -116.109
-Number of digits in this event = 71
+Number of tracker hits in this event = 73
+ 48 113.517 1325 9 1 85.0727 -94.1431 65.55
+ 48 134.009 430 9 0 85.0722 -94.1388 64.15
+ 48 107.887 1325 8 1 85.07 -94.0464 35.55
+ 48 136.159 430 8 0 85.0717 -94.0427 34.15
+ 48 148.778 1325 7 1 85.1025 -93.9648 5.55
+ 48 122.358 430 7 0 85.104 -93.9606 4.15
+ 48 126.166 1325 6 1 85.1681 -93.8728 -24.45
+ 48 123.042 431 6 0 85.1712 -93.8672 -25.85
+ 48 134.396 1325 5 1 85.2408 -93.7592 -54.45
+ 48 159.204 431 5 0 85.2435 -93.7553 -55.85
+ 48 237.164 1326 4 1 85.2981 -93.6786 -84.45
+ 48 125.329 432 4 0 85.3011 -93.6745 -85.85
+ 48 100.08 1326 3 1 85.3622 -93.6025 -114.45
+ 48 139.967 432 3 0 85.3637 -93.5984 -115.85
+ 48 166.815 1326 2 1 85.3979 -93.5167 -144.45
+ 48 171.795 433 2 0 85.3982 -93.5123 -145.85
+ 48 113.988 1326 1 1 85.4014 -93.439 -174.45
+ 48 142.092 433 1 0 85.399 -93.4305 -175.85
+ 48 185.538 1326 0 1 85.3589 -93.2834 -204.45
+ 48 131.532 434 0 0 85.3581 -93.2856 -205.85
+ 48 77.34 361 1 0 25.3644 -107.866 -176.25
+ 48 192.163 360 1 0 25.1941 -107.95 -175.858
+ 48 60.5992 1023 1 1 24.8345 -108.206 -174.85
+ 48 19.0043 138 1 0 134.726 -152.359 -176.25
+ 48 153.605 139 1 0 134.663 -152.35 -176.193
+ 48 134.002 1569 1 1 134.017 -151.8 -174.85
+ 48 129.403 1568 1 1 133.95 -151.71 -174.722
+ 48 229.268 142 1 0 134.518 -151.73 -175.85
+ 48 64.7788 1386 6 0 68.8896 97.4107 -26.25
+ 48 218.996 1327 0 1 85.45 -93.2877 -204.539
+ 48 201.678 1328 0 1 85.6503 -93.247 -204.648
+ 48 1.39199 357 2 0 83.753 -108.749 -146.25
+ 48 134.915 356 2 0 83.7523 -108.75 -146.249
+ 48 161.695 1327 2 1 85.4501 -93.4368 -144.512
+ 48 29.5242 1328 2 1 85.6501 -93.3353 -144.759
+ 48 52.6251 436 2 0 86.1999 -92.812 -145.85
+ 48 112.159 437 2 0 86.261 -92.7499 -145.996
+ 48 2.97066 538 2 0 94.4625 -72.2587 -146.25
+ 48 324.008 539 2 0 94.4649 -72.25 -146.237
+ 48 226.403 540 2 0 94.631 -72.05 -146.104
+ 48 12.4201 159 0 0 -12.4032 -148.15 -206.121
+ 48 44.9974 1325 4 1 85.0557 -93.9717 -84.45
+ 48 240.313 1324 4 1 85.05 -93.9589 -84.5522
+ 48 116.808 431 4 0 84.987 -93.8161 -85.8502
+ 48 175.345 1313 3 1 82.8226 -90.9317 -114.45
+ 48 65.0796 446 3 0 82.7747 -90.7775 -115.85
+ 48 45.7898 447 3 0 82.7651 -90.75 -116.102
+ 48 38.1656 1309 2 1 81.8581 -87.8011 -144.45
+ 48 81.4601 1308 2 1 81.85 -87.8264 -144.578
+ 48 120.383 459 2 0 81.7797 -88.1261 -145.85
+ 48 137.144 1301 1 1 80.412 -95.7422 -174.45
+ 48 73.1323 418 1 0 80.2187 -96.4409 -175.85
+ 48 147.028 417 1 0 80.1848 -96.55 -176.065
+ 48 7.94686 1284 0 1 76.8542 -111.249 -204.45
+ 48 177.056 1283 0 1 76.85 -111.256 -204.479
+ 48 300.908 342 0 0 76.6833 -111.653 -205.85
+ 48 18.4711 341 0 0 76.6429 -111.75 -206.204
+ 48 68.755 1306 2 1 81.3817 -87.6679 -144.45
+ 48 82.5482 1305 2 1 81.2498 -87.7427 -144.551
+ 48 82.0989 1304 2 1 81.0499 -87.7012 -144.706
+ 48 0.533063 1303 2 1 80.85 -87.6431 -144.848
+ 48 93.9217 462 2 0 78.1593 -87.5974 -145.85
+ 48 179.684 1293 2 1 78.725 -87.3817 -144.85
+ 48 144.36 1292 2 1 78.65 -87.2622 -144.468
+ 48 99.3001 430 4 0 84.7847 -94.0114 -85.85
+ 48 33.195 429 4 0 84.7796 -94.15 -86.1292
+ 48 96.5116 508 4 0 126.163 -78.3877 -86.25
+ 48 101.396 509 4 0 126.405 -78.25 -86.2165
+ 48 64.9897 510 4 0 126.237 -78.05 -86.2318
+ 48 40.1096 511 4 0 126.153 -77.85 -86.1766
+ 48 116.754 765 4 0 159.61 -27.049 -86.25
+ 48 80.2558 766 4 0 159.889 -26.8496 -86.2112
+ 48 381.861 767 4 0 159.898 -26.65 -86.187
+Number of digits in this event = 40
Using G4ParticleGun ...
-9.57057 LIN
+6.62376 LIN
e-
Event: 49
-Number of tracker hits in this event = 48
- 49 140.24 624 8 1 -55.201 132.363 35.55
- 49 189.795 1561 8 0 -55.2013 132.364 34.15
- 49 127.867 624 7 1 -55.2037 132.374 5.55
- 49 146.766 1561 7 0 -55.2033 132.374 4.15
- 49 138.716 624 6 1 -55.1914 132.38 -24.45
- 49 130.609 1561 6 0 -55.1907 132.38 -25.85
- 49 103.064 624 5 1 -55.174 132.385 -54.45
- 49 130.72 1561 5 0 -55.1758 132.386 -55.85
- 49 336.854 624 4 1 -55.1977 132.424 -84.45
- 49 357.478 1561 4 0 -55.1998 132.424 -85.85
- 49 412.251 624 3 1 -55.2403 132.442 -114.45
- 49 388.211 1561 3 0 -55.2508 132.442 -115.85
- 49 228.417 622 2 1 -55.4611 132.434 -144.45
- 49 757.402 1561 2 0 -55.4747 132.435 -145.85
- 49 134.958 621 1 1 -55.7462 132.5 -174.45
- 49 319.131 1561 1 0 -55.7532 132.487 -175.85
- 49 116.751 621 0 1 -55.8328 132.171 -204.45
- 49 507.805 1560 0 0 -55.852 132.168 -205.85
- 49 56.4277 631 0 1 -53.8326 133.012 -204.85
- 49 50.7258 1575 0 0 -53.1633 135.283 -205.85
- 49 258.367 1576 0 0 -53.1414 135.35 -205.87
- 49 263.76 623 1 1 -55.404 132.433 -174.45
- 49 610.237 1560 1 0 -55.3735 132.239 -175.85
- 49 503.346 624 0 1 -55.2441 128.673 -204.45
- 49 58.9953 1540 0 0 -55.0921 128.224 -205.85
- 49 64.8109 1539 0 0 -55.0582 128.15 -206.086
- 49 389.999 636 0 1 -52.6774 128.178 -204.45
- 49 95.2547 1538 0 0 -52.6161 127.95 -205.874
- 49 35.018 1529 0 0 -53.5656 126.062 -205.85
- 49 72.2096 1528 0 0 -53.5995 125.949 -205.899
- 49 57.0992 634 0 1 -53.1282 123.921 -204.85
- 49 120.195 635 0 1 -53.05 123.727 -204.767
- 49 71.1637 637 0 1 -52.65 123.412 -204.622
- 49 65.3353 1517 0 0 -53.7678 123.632 -205.85
- 49 274.74 1516 0 0 -53.8503 123.55 -205.931
- 49 610.886 624 2 1 -55.109 132.417 -144.45
- 49 493.325 624 1 1 -55.1004 132.435 -174.45
- 49 356.039 1561 0 0 -55.141 132.445 -205.85
- 49 314.168 1562 1 0 -55.3394 132.572 -175.85
- 49 132.931 625 2 1 -55.0352 132.334 -144.45
- 49 107.972 1560 2 0 -55.0309 132.332 -145.85
- 49 149.232 625 1 1 -54.9321 132.289 -174.45
- 49 153.56 626 0 1 -54.8319 132.173 -204.45
- 49 86.7534 1505 1 0 -29.8154 121.306 -176.25
- 49 207.954 1504 1 0 -29.6428 121.15 -175.95
- 49 106.447 625 0 1 -54.9151 132.323 -204.45
- 49 102.071 1563 0 0 -55.1212 132.772 -205.85
- 49 202.106 1559 0 0 -55.0628 132.15 -206.144
-Number of digits in this event = 36
+Number of tracker hits in this event = 132
+ 49 128.956 805 11 1 -18.9985 -65.2603 125.55
+ 49 84.4922 573 11 0 -18.9971 -65.26 124.15
+ 49 107.947 805 10 1 -18.9724 -65.2516 95.55
+ 49 118.685 573 10 0 -18.9715 -65.2516 94.15
+ 49 224.376 805 9 1 -18.9543 -65.2529 65.55
+ 49 165.551 573 9 0 -18.9549 -65.2531 64.15
+ 49 257.742 805 8 1 -18.9673 -65.2575 35.55
+ 49 148.705 573 8 0 -18.9682 -65.2604 34.15
+ 49 140.86 805 7 1 -18.9921 -65.3149 5.55
+ 49 204.897 573 7 0 -18.9944 -65.3157 4.15
+ 49 185.993 805 6 1 -19.0137 -65.3224 -24.45
+ 49 135.662 573 6 0 -19.017 -65.3241 -25.85
+ 49 206.442 804 5 1 -19.0615 -65.3391 -54.45
+ 49 112.265 573 5 0 -19.0665 -65.3383 -55.85
+ 49 474.89 804 4 1 -19.1793 -65.3204 -84.45
+ 49 429.292 573 4 0 -19.1834 -65.3179 -85.85
+ 49 218.497 803 3 1 -19.2671 -65.2906 -114.45
+ 49 424.93 573 3 0 -19.2643 -65.2863 -115.85
+ 49 115.362 804 2 1 -19.2191 -65.2294 -144.45
+ 49 207.625 574 2 0 -19.2247 -65.2321 -145.85
+ 49 166.136 803 1 1 -19.2781 -65.2727 -174.45
+ 49 135.994 573 1 0 -19.2778 -65.2763 -175.85
+ 49 119.503 803 0 1 -19.2962 -65.2858 -204.45
+ 49 100.116 573 0 0 -19.305 -65.3001 -205.85
+ 49 157.868 819 6 0 -64.5723 -16.25 -26.1568
+ 49 338.689 648 0 0 64.1024 -50.3293 -206.25
+ 49 146.36 805 3 1 -18.9719 -65.41 -114.45
+ 49 110.577 805 2 1 -18.985 -65.1025 -144.45
+ 49 95.7244 806 1 1 -18.8197 -64.7084 -174.45
+ 49 252.34 576 1 0 -18.8024 -64.7075 -175.85
+ 49 104.247 808 0 1 -18.4376 -64.7491 -204.45
+ 49 113.809 576 0 0 -18.4158 -64.7436 -205.85
+ 49 138.463 572 3 0 -19.0169 -65.4503 -115.999
+ 49 237.321 573 2 0 -18.8784 -65.4178 -145.85
+ 49 138.598 797 3 1 -20.4712 -65.6915 -114.45
+ 49 114.827 571 3 0 -20.5662 -65.6762 -115.85
+ 49 133.371 788 2 1 -22.3922 -65.526 -144.45
+ 49 140.744 572 2 0 -22.4337 -65.5093 -145.85
+ 49 230.163 785 1 1 -23.0013 -64.6511 -174.45
+ 49 68.5469 585 1 0 -22.7743 -63.0224 -175.85
+ 49 323.24 586 1 0 -22.7505 -62.85 -175.999
+ 49 37.2446 587 1 0 -22.7222 -62.6495 -176.171
+ 49 226.3 810 0 1 -18.0014 -29.6745 -204.45
+ 49 4.055 759 0 0 -17.8839 -28.0658 -205.85
+ 49 70.6561 760 0 0 -17.8827 -28.05 -205.864
+ 49 61.6511 761 0 0 -17.8683 -27.8499 -206.036
+ 49 12.8861 762 0 0 -17.8519 -27.6497 -206.211
+ 49 41.6407 778 0 0 -11.3368 -24.3438 -206.25
+ 49 251.422 777 0 0 -11.2852 -24.4502 -206.133
+ 49 32.3958 776 0 0 -11.1912 -24.65 -205.932
+ 49 107.619 849 0 1 -10.2293 -26.4411 -204.85
+ 49 84.2948 850 0 1 -10.05 -26.7625 -204.644
+ 49 135.902 851 0 1 -9.85 -27.0306 -204.629
+ 49 77.5033 852 0 1 -9.65 -27.3181 -204.764
+ 49 9.72612 730 0 0 -8.5248 -34.0072 -205.85
+ 49 59.5958 729 0 0 -8.51407 -34.05 -205.855
+ 49 855.619 863 0 1 -7.41145 -38.1751 -204.85
+ 49 102.357 804 8 1 -19.0501 -65.3048 35.3018
+ 49 201.469 803 8 1 -19.2501 -65.3633 35.2992
+ 49 101.536 806 8 1 -18.8497 -65.1636 35.4177
+ 49 35.9597 823 8 1 -15.3055 -51.4431 35.55
+ 49 51.8206 646 8 0 -15.2533 -50.7543 34.15
+ 49 87.1766 647 8 0 -15.269 -50.65 34.0071
+ 49 5.25189 648 8 0 -15.3061 -50.45 33.7718
+ 49 5.71582 691 8 0 -2.83793 -41.8393 33.75
+ 49 113.371 690 8 0 -2.8314 -41.85 33.7675
+ 49 15.1582 689 8 0 -2.73355 -42.05 34.0975
+ 49 178.155 887 8 1 -2.58978 -42.7597 35.1503
+ 49 151.317 886 8 1 -2.67653 -43.1103 35.5493
+ 49 64.3572 685 8 0 -2.91485 -42.9153 34.15
+ 49 92.0087 686 8 0 -3.03284 -42.85 33.94
+ 49 117.312 574 9 0 -19.0315 -65.2475 64.15
+ 49 165.257 801 8 1 -19.8048 -65.8766 35.5499
+ 49 126.554 571 8 0 -19.9456 -65.7725 34.1493
+ 49 100.36 784 7 1 -23.1168 -63.4714 5.55
+ 49 61.1509 583 7 0 -23.2442 -63.2769 4.15
+ 49 51.0401 584 7 0 -23.2605 -63.25 3.94118
+ 49 117.307 772 6 1 -25.49 -60.2048 -24.4501
+ 49 199.17 598 6 0 -25.5611 -60.2504 -25.85
+ 49 114.588 763 5 1 -27.2831 -61.6608 -54.4511
+ 49 216.478 591 5 0 -27.7651 -61.6635 -55.85
+ 49 133.101 714 4 1 -37.1539 -62.3319 -84.45
+ 49 125.309 587 4 0 -37.4951 -62.5202 -85.85
+ 49 154.386 681 3 1 -43.6846 -66.1472 -114.45
+ 49 122.844 566 3 0 -43.9149 -66.6568 -115.85
+ 49 217.019 655 2 1 -48.9137 -76.7781 -144.45
+ 49 98.6311 654 2 1 -49.0501 -76.8727 -144.727
+ 49 1.04543 514 2 0 -49.581 -77.2483 -145.85
+ 49 149.186 513 2 0 -49.5834 -77.25 -145.855
+ 49 34.4345 585 1 1 -62.9985 -85.4573 -174.45
+ 49 106.813 584 1 1 -63.05 -85.4749 -174.548
+ 49 172.44 471 1 0 -63.7888 -85.6856 -175.85
+ 49 78.0331 494 0 1 -81.1179 -90.5976 -204.45
+ 49 64.1145 493 0 1 -81.2501 -90.646 -204.657
+ 49 73.9772 446 0 0 -81.9641 -90.9063 -205.85
+ 49 79.3047 445 0 0 -82.0926 -90.95 -206.065
+ 49 47.4706 656 2 1 -48.8122 -76.7844 -144.45
+ 49 76.6403 510 2 0 -50.0933 -77.9431 -145.85
+ 49 109.402 509 2 0 -50.2259 -78.05 -145.964
+ 49 84.7392 508 2 0 -50.496 -78.25 -146.014
+ 49 111.652 507 2 0 -50.7667 -78.45 -146.083
+ 49 47.5067 149 2 0 -149.218 -150.251 -146.25
+ 49 198.902 148 2 0 -149.367 -150.35 -146.208
+ 49 21.0636 147 2 0 -149.678 -150.55 -145.882
+ 49 51.7332 158 2 1 -148.416 -153.61 -144.85
+ 49 112.616 159 2 1 -148.35 -153.761 -144.801
+ 49 13.6478 160 2 1 -148.15 -154.137 -144.828
+ 49 49.3495 122 2 0 -146.93 -155.585 -145.85
+ 49 57.554 121 2 0 -146.847 -155.75 -145.889
+ 49 102.309 120 2 0 -146.831 -155.95 -145.958
+ 49 30.3421 119 2 0 -146.766 -156.15 -145.905
+ 49 276.862 168 2 1 -146.536 -157.329 -144.85
+ 49 123.751 169 2 1 -146.35 -157.448 -144.498
+ 49 105.748 170 2 1 -146.15 -157.348 -144.552
+ 49 19.9331 794 8 1 -21.2338 -64.8388 35.55
+ 49 206.229 793 8 1 -21.25 -64.7865 35.4875
+ 49 38.9421 590 8 0 -21.7571 -61.9773 34.1499
+ 49 59.0649 591 8 0 -21.7768 -61.85 34.0875
+ 49 70.7555 592 8 0 -21.7731 -61.6495 33.9727
+ 49 70.7623 593 8 0 -21.7632 -61.45 33.8937
+ 49 60.4733 594 8 0 -21.747 -61.25 33.8161
+ 49 1.09398 595 8 0 -21.7191 -61.05 33.7529
+ 49 39.8188 1391 8 0 -83.1202 98.4739 33.75
+ 49 9.37006 1392 8 0 -83.1816 98.55 33.7523
+ 49 240.078 806 2 1 -18.7946 -65.4092 -144.45
+ 49 328.151 805 1 1 -18.8542 -65.4276 -174.45
+ 49 228.811 572 1 0 -18.9386 -65.5276 -175.85
+ 49 103.474 796 0 1 -20.6862 -67.5635 -204.45
+ 49 119.754 561 0 0 -20.773 -67.6887 -205.85
+ 49 119.735 816 0 1 -16.6794 -65.7212 -204.45
+ 49 128.209 817 0 1 -16.65 -65.7535 -204.798
+ 49 220.47 570 0 0 -16.5593 -65.8567 -205.85
+Number of digits in this event = 58
Using G4ParticleGun ...
-7.71766 LIN
+9.13064 LIN
e-
Event: 50
-Number of tracker hits in this event = 229
- 50 130.91 981 11 1 16.4418 -63.9064 125.55
- 50 162.586 580 11 0 16.4415 -63.9067 124.15
- 50 659.708 981 10 1 16.4365 -63.9167 95.55
- 50 381.869 580 10 0 16.4368 -63.9177 94.15
- 50 134.514 981 9 1 16.438 -63.9401 65.55
- 50 135.263 580 9 0 16.4366 -63.9414 64.15
- 50 141.655 981 8 1 16.4189 -63.967 35.55
- 50 100.481 580 8 0 16.4179 -63.9683 34.15
- 50 136.207 981 7 1 16.3945 -63.9953 5.55
- 50 159.218 580 7 0 16.3954 -63.9979 4.15
- 50 137.362 981 6 1 16.4128 -64.0508 -24.45
- 50 111.128 579 6 0 16.4118 -64.0517 -25.85
- 50 322.003 981 5 1 16.3887 -64.0696 -54.45
- 50 567.786 579 5 0 16.3848 -64.074 -55.85
- 50 343.505 981 4 1 16.2981 -64.1557 -84.45
- 50 238.199 579 4 0 16.2925 -64.1617 -85.85
- 50 123.424 980 3 1 16.1817 -64.2875 -114.45
- 50 118.488 578 3 0 16.1719 -64.2905 -115.85
- 50 155.358 979 2 1 15.9829 -64.352 -144.45
- 50 468.823 578 2 0 15.974 -64.3562 -145.85
- 50 220.842 978 1 1 15.7795 -64.4548 -174.45
- 50 292.524 577 1 0 15.7697 -64.4603 -175.85
- 50 156.212 977 0 1 15.571 -64.5661 -204.45
- 50 123.798 577 0 0 15.5631 -64.5711 -205.85
- 50 196.457 980 2 1 16.0812 -64.3184 -144.704
- 50 301.188 979 1 1 15.85 -63.5039 -174.491
- 50 170.049 584 1 0 16.1299 -63.2084 -175.85
- 50 140.067 1008 0 1 21.7423 -56.5114 -204.45
- 50 59.9829 621 0 0 22.0783 -55.7687 -205.85
- 50 59.2018 622 0 0 22.1327 -55.65 -206.072
- 50 314.9 981 1 1 16.3465 -64.6105 -174.45
- 50 115.587 972 0 1 14.5668 -64.0437 -204.45
- 50 272.225 581 0 0 14.8698 -63.7513 -205.85
- 50 4.15002 578 1 0 16.0427 -64.2515 -175.85
- 50 470.75 579 1 0 16.0431 -64.25 -175.863
- 50 428.114 986 0 1 17.4265 -61.3761 -204.45
- 50 62.5018 595 0 0 17.3115 -60.9242 -205.85
- 50 53.7689 596 0 0 17.2983 -60.85 -206.046
- 50 22.4845 571 0 0 26.4658 -65.65 -206.12
- 50 273.449 987 0 1 17.45 -61.3782 -204.732
- 50 38.7013 590 0 0 17.0285 -61.9124 -205.85
- 50 171.048 982 0 1 16.5073 -62.9617 -204.85
- 50 55.7288 582 1 0 15.1966 -63.5398 -175.85
- 50 113.637 583 1 0 15.1181 -63.45 -175.99
- 50 25.0871 838 0 1 -12.362 -37.8253 -204.45
- 50 87.458 837 0 1 -12.45 -37.8076 -204.514
- 50 87.5157 836 0 1 -12.65 -37.7659 -204.642
- 50 61.3795 835 0 1 -12.85 -37.7383 -204.746
- 50 75.5545 834 0 1 -13.0501 -37.6786 -204.83
- 50 117.732 716 0 0 -15.5642 -36.6965 -205.85
- 50 224.057 717 0 0 -15.7259 -36.65 -205.918
- 50 97.5732 718 0 0 -16.4092 -36.45 -206.146
- 50 129.283 775 0 0 -64.3612 -24.927 -206.25
- 50 7.41746 776 0 0 -64.496 -24.8499 -205.889
- 50 25.115 576 0 1 -64.803 -24.5655 -204.849
- 50 103.214 575 0 1 -64.8502 -24.5281 -204.737
- 50 1.09157 118 1 0 -17.3453 -156.545 -176.25
- 50 162.601 117 1 0 -17.3483 -156.55 -176.248
- 50 214.745 116 1 0 -17.6316 -156.75 -176.156
- 50 325.282 982 1 1 16.5955 -64.3194 -174.576
- 50 207.805 580 1 0 16.6258 -63.9131 -175.85
- 50 56.1522 581 1 0 16.6258 -63.85 -176.02
- 50 48.2331 627 0 0 17.4648 -54.5606 -205.85
- 50 73.5495 626 0 0 17.4518 -54.6503 -206.024
- 50 38.0786 625 0 0 17.5324 -54.8501 -206.223
- 50 181.3 550 0 0 48.2511 -69.9595 -206.25
- 50 249.24 551 0 0 48.4544 -69.85 -206.092
- 50 158.223 1027 1 1 25.65 -13.6051 -174.622
- 50 80.042 853 4 0 3.29416 -9.431 -86.25
- 50 116.743 975 4 1 15.2339 -64.9089 -84.4501
- 50 130.834 575 4 0 15.1857 -65.0294 -85.85
- 50 61.8102 574 4 0 15.1794 -65.05 -86.0708
- 50 95.8334 971 3 1 14.3528 -68.0562 -114.45
- 50 157.304 558 3 0 14.1791 -68.2899 -115.85
- 50 131.877 954 2 1 11.0369 -73.3583 -144.45
- 50 136.25 531 2 0 10.8932 -73.698 -145.85
- 50 119.93 941 1 1 8.42577 -81.2067 -174.45
- 50 311.248 493 1 0 8.36205 -81.2773 -175.85
- 50 111.458 939 0 1 7.88539 -82.1483 -204.45
- 50 155.681 489 0 0 7.89111 -82.1955 -205.85
- 50 309.622 700 1 0 69.2968 -39.9581 -176.25
- 50 36.143 955 2 1 11.05 -73.4028 -144.766
- 50 323.405 539 2 0 10.9779 -72.2137 -145.85
- 50 259.707 540 2 0 10.8761 -72.0498 -145.925
- 50 246.46 981 3 1 16.373 -64.0937 -114.45
- 50 92.7321 579 3 0 16.3739 -64.0947 -115.85
- 50 399.924 981 2 1 16.373 -64.1235 -144.45
- 50 428.86 579 2 0 16.374 -64.1225 -145.85
- 50 163.352 981 0 1 16.4431 -64.1062 -204.45
- 50 158.67 579 0 0 16.4443 -64.1082 -205.85
- 50 89.1857 852 1 0 -68.4535 -9.6204 -176.25
- 50 182.533 552 1 1 -69.5673 -10.1005 -174.85
- 50 30.6218 367 0 0 44.1157 -106.55 -206.172
- 50 232.101 980 1 1 16.1525 -64.0491 -174.45
- 50 249.736 980 0 1 16.2339 -63.7395 -204.45
- 50 230.212 722 1 0 -121.85 -35.6258 -176.25
- 50 164.439 587 0 0 17.2408 -62.6497 -205.85
- 50 165.106 580 0 0 16.1957 -63.9003 -205.85
- 50 108.216 983 9 1 16.7869 -64.185 65.5498
- 50 160.752 578 9 0 16.7163 -64.3187 64.15
- 50 326.221 977 8 1 15.6005 -66.7737 35.55
- 50 137.332 565 8 0 15.4734 -66.8784 34.15
- 50 165.868 964 7 1 12.9464 -69.5182 5.55
- 50 4.33011 552 7 0 12.7223 -69.6481 4.14989
- 50 118.425 551 7 0 12.7191 -69.65 4.12979
- 50 62.9885 939 6 1 7.87851 -72.9454 -24.4502
- 50 47.4624 938 6 1 7.85 -72.9405 -24.6829
- 50 128.094 535 6 0 7.70222 -72.921 -25.85
- 50 137.046 920 5 1 4.13025 -72.2339 -54.45
- 50 147.057 539 5 0 3.87886 -72.1554 -55.85
- 50 1.63793 873 4 1 -5.4465 -67.1935 -84.4502
- 50 150.715 872 4 1 -5.45 -67.1917 -84.4562
- 50 15.8449 871 4 1 -5.65 -67.0942 -84.798
- 50 152.233 566 4 0 -6.25725 -66.8098 -85.85
- 50 44.507 781 3 1 -23.7561 -59.6691 -114.45
- 50 97.9377 780 3 1 -23.85 -59.6506 -114.58
- 50 284.247 602 3 0 -24.7663 -59.4809 -115.85
- 50 44.8388 603 3 0 -24.9495 -59.45 -116.103
- 50 76.9331 674 2 1 -45.0947 -56.6605 -144.45
- 50 66.3914 673 2 1 -45.2501 -56.6575 -144.657
- 50 164.534 617 2 0 -46.1356 -56.6317 -145.85
- 50 10.3217 571 1 1 -65.8291 -56.2011 -174.45
- 50 98.1147 570 1 1 -65.85 -56.202 -174.474
- 50 64.512 569 1 1 -66.05 -56.2 -174.687
- 50 155.697 619 1 0 -67.1102 -56.1432 -175.85
- 50 63.2913 320 0 1 -116.095 -64.5041 -204.45
- 50 54.4521 319 0 1 -116.15 -64.4391 -204.639
- 50 144.786 578 0 0 -116.768 -64.4276 -205.85
- 50 5.70001 946 6 1 9.26132 -72.3994 -24.4501
- 50 68.9862 945 6 1 9.24961 -72.3977 -24.4581
- 50 77.4327 944 6 1 9.05 -72.3565 -24.5872
- 50 35.0571 943 6 1 8.85 -72.346 -24.7616
- 50 201.653 539 6 0 7.37546 -72.1195 -25.8501
- 50 59.5525 703 5 1 -39.3141 -78.8095 -54.45
- 50 58.5849 702 5 1 -39.45 -78.8182 -54.5288
- 50 98.6662 701 5 1 -39.65 -78.8336 -54.6321
- 50 79.4713 700 5 1 -39.85 -78.8475 -54.7535
- 50 242.564 506 5 0 -41.2819 -78.8352 -55.85
- 50 66.2358 452 4 1 -89.4853 -71.4518 -84.45
- 50 89.18 451 4 1 -89.6501 -71.6066 -84.5383
- 50 244.467 450 4 1 -89.85 -71.8636 -84.6232
- 50 125.944 449 4 1 -90.15 -72.1008 -84.7381
- 50 62.4361 448 4 1 -90.3509 -72.2558 -84.7931
- 50 113.304 527 4 0 -94.0552 -74.4536 -85.85
- 50 321.804 526 4 0 -94.416 -74.65 -85.9661
- 50 35.8035 781 4 0 -134.755 -23.7194 -86.25
- 50 69.3764 782 4 0 -134.756 -23.65 -86.2192
- 50 83.2 783 4 0 -134.791 -23.45 -86.1286
- 50 87.1471 784 4 0 -134.925 -23.2495 -86.0085
- 50 16.4048 785 4 0 -135.098 -23.05 -85.8773
- 50 29.0236 219 4 1 -136.295 -21.3283 -84.85
- 50 122.625 218 4 1 -136.35 -21.2455 -84.8052
- 50 103.935 217 4 1 -136.55 -20.9529 -84.6239
- 50 135.016 562 8 0 15.8106 -67.5205 34.15
- 50 228.509 982 10 1 16.45 -63.9158 95.34
- 50 109.29 984 9 1 16.8938 -61.9285 65.55
- 50 118.796 591 9 0 17.1413 -61.7652 64.1498
- 50 124.87 1009 8 1 21.907 -55.1377 35.55
- 50 58.8522 625 8 0 21.8633 -54.8818 34.1499
- 50 185.205 626 8 0 21.8537 -54.85 33.9418
- 50 69.6756 1001 7 1 20.3167 -51.7833 5.54993
- 50 75.9279 1000 7 1 20.25 -51.811 5.33752
- 50 87.9255 640 7 0 19.9597 -52.003 4.15
- 50 27.2882 639 7 0 19.9107 -52.05 3.86637
- 50 132.527 969 6 1 13.9492 -56.964 -24.4501
- 50 88.858 611 6 0 13.9067 -57.7126 -25.85
- 50 55.338 610 6 0 13.9034 -57.85 -26.0897
- 50 242.61 977 5 1 15.5864 -69.8512 -54.45
- 50 535.329 547 5 0 15.6949 -70.5068 -55.85
- 50 43.7 546 5 0 15.7095 -70.65 -56.1785
- 50 133.09 268 5 0 84.8754 -126.367 -56.25
- 50 203.547 267 5 0 85.164 -126.55 -56.1449
- 50 99.6327 266 5 0 85.4723 -126.75 -56.0724
- 50 115.845 265 5 0 85.7413 -126.95 -56.0083
- 50 63.2008 264 5 0 85.9961 -127.15 -55.9178
- 50 67.0306 1345 5 1 89.0678 -129.434 -54.85
- 50 66.1574 1346 5 1 89.25 -129.569 -54.7798
- 50 64.3586 1347 5 1 89.4516 -129.708 -54.704
- 50 73.3273 1348 5 1 89.65 -129.834 -54.6365
- 50 67.9241 1349 5 1 89.8501 -129.961 -54.58
- 50 61.6909 1350 5 1 90.15 -130.127 -54.4956
- 50 93.5279 1351 5 1 90.4287 -130.374 -54.45
- 50 155.706 1352 5 1 90.55 -130.679 -54.5282
- 50 305.182 1353 5 1 90.7502 -131.108 -54.6186
- 50 111.74 1354 5 1 90.9506 -131.435 -54.672
- 50 167.401 1355 5 1 91.15 -131.803 -54.73
- 50 46.4082 1356 5 1 91.35 -132.254 -54.8109
- 50 22.6762 218 5 0 93.4836 -136.464 -55.85
- 50 247.271 217 5 0 93.5253 -136.55 -55.871
- 50 57.9532 216 5 0 93.6127 -136.75 -55.9118
- 50 126.88 215 5 0 93.7046 -136.951 -55.9642
- 50 54.359 214 5 0 93.7977 -137.15 -56.0267
- 50 57.1097 213 5 0 93.8862 -137.35 -56.0836
- 50 54.4759 212 5 0 93.969 -137.55 -56.141
- 50 122.055 211 5 0 94.0396 -137.75 -56.1895
- 50 47.362 210 5 0 94.1179 -137.95 -56.2306
- 50 104.325 976 5 1 15.45 -69.8873 -54.5688
- 50 78.5111 975 5 1 15.2499 -69.9858 -54.6629
- 50 100.746 974 5 1 15.0496 -70.0719 -54.7074
- 50 5.86474 968 6 1 13.85 -56.9944 -24.5001
- 50 56.5537 979 10 1 15.998 -64.0377 95.55
- 50 72.5331 978 10 1 15.85 -64.1001 95.4027
- 50 24.873 977 10 1 15.6498 -64.1531 95.2418
- 50 146.509 577 10 0 14.8551 -64.4747 94.15
- 50 86.7191 576 10 0 14.7903 -64.6503 93.8974
- 50 120.873 522 10 0 8.24608 -75.4644 93.75
- 50 22.1163 523 10 0 8.24254 -75.4499 94.0711
- 50 231.515 942 10 1 8.55706 -75.1201 95.15
- 50 186.332 943 10 1 8.65003 -74.8872 95.5386
- 50 67.0733 1377 12 1 95.55 154.387 155.356
- 50 104.429 581 10 0 16.2496 -63.736 94.15
- 50 227.811 963 9 1 12.7855 -59.9157 65.5499
- 50 26.3593 962 9 1 12.65 -59.6358 65.2091
- 50 14.6554 606 9 0 12.2653 -58.6939 64.15
- 50 106.45 607 9 0 12.2472 -58.6499 64.1008
- 50 52.6231 608 9 0 12.1667 -58.4498 63.8801
- 50 173.341 916 8 1 3.41203 -34.1308 35.55
- 50 140.905 733 8 0 3.14281 -33.4384 34.15
- 50 144.068 892 7 1 -1.46895 -20.6254 5.55
- 50 0.883965 800 7 0 -1.76352 -19.8522 4.15
- 50 188.498 801 7 0 -1.76433 -19.85 4.14617
- 50 19.7628 802 7 0 -1.83364 -19.65 3.75798
- 50 54.0521 867 6 1 -6.51299 -4.12917 -24.45
- 50 63.33 866 6 1 -6.65 -4.05205 -24.5467
- 50 66.7006 865 6 1 -6.85 -3.94658 -24.7043
- 50 8.5732 864 6 1 -7.05 -3.85031 -24.8447
- 50 100.623 884 6 0 -8.52554 -3.13758 -25.85
- 50 141.812 885 6 0 -8.69987 -3.05 -25.973
- 50 5.2965 886 6 0 -9.05798 -2.84995 -26.2397
-Number of digits in this event = 107
-Using G4ParticleGun ...
-8.81132 LIN
+Number of tracker hits in this event = 55
+ 50 278.025 451 10 1 -89.7192 -69.2677 95.55
+ 50 162.194 553 10 0 -89.7206 -69.2682 94.15
+ 50 168.351 451 9 1 -89.7475 -69.2759 65.55
+ 50 166.779 553 9 0 -89.7477 -69.2741 64.15
+ 50 183.739 451 8 1 -89.7507 -69.2239 35.55
+ 50 119.905 554 8 0 -89.7504 -69.2213 34.15
+ 50 111.68 451 7 1 -89.7494 -69.1697 5.55
+ 50 135.405 554 7 0 -89.7487 -69.1691 4.15
+ 50 377.895 451 6 1 -89.7338 -69.163 -24.45
+ 50 359.316 554 6 0 -89.7309 -69.1601 -25.85
+ 50 126.24 451 5 1 -89.6991 -69.1093 -54.45
+ 50 137.797 554 5 0 -89.6975 -69.1054 -55.85
+ 50 115.973 451 4 1 -89.6585 -69.0278 -84.45
+ 50 113.981 555 4 0 -89.6595 -69.0256 -85.85
+ 50 121.114 451 3 1 -89.6537 -69.005 -114.45
+ 50 167.591 555 3 0 -89.6517 -69.0044 -115.85
+ 50 287.465 452 2 1 -89.6358 -69.0204 -144.45
+ 50 106.001 555 2 0 -89.6363 -69.0148 -145.85
+ 50 102.954 452 1 1 -89.6095 -68.8673 -174.45
+ 50 110.645 555 1 0 -89.6153 -68.8592 -175.85
+ 50 130.165 451 0 1 -89.737 -68.7005 -204.45
+ 50 106.976 556 0 0 -89.7405 -68.7016 -205.85
+ 50 150.005 590 9 0 7.6963 -62.05 63.7661
+ 50 24.79 688 0 0 -119.301 -42.45 -206.23
+ 50 0.731163 978 2 0 -105.875 15.85 -145.971
+ 50 25.438 379 2 1 -104.175 28.9571 -144.45
+ 50 157.609 380 2 1 -104.15 28.9562 -144.494
+ 50 105.011 449 4 1 -90.2372 -67.3096 -84.45
+ 50 215.883 563 4 0 -90.2425 -67.2694 -85.85
+ 50 107.25 448 3 1 -90.4639 -66.4326 -114.45
+ 50 136.037 568 3 0 -90.4233 -66.428 -115.85
+ 50 255.171 568 2 0 -89.5754 -66.3713 -145.85
+ 50 126.251 457 1 1 -88.5574 -65.7451 -174.45
+ 50 108.554 571 1 0 -88.5172 -65.7282 -175.85
+ 50 104.488 461 0 1 -87.6896 -65.4117 -204.45
+ 50 110.141 573 0 0 -87.5981 -65.4212 -205.85
+ 50 121.27 451 2 1 -89.65 -66.34 -144.492
+ 50 133.375 453 5 1 -89.3872 -69.503 -54.45
+ 50 117.737 552 5 0 -89.3914 -69.497 -55.85
+ 50 117.458 453 4 1 -89.4092 -69.193 -84.45
+ 50 106.181 554 4 0 -89.339 -69.1643 -85.85
+ 50 150.01 460 3 1 -87.9179 -68.2829 -114.45
+ 50 120.676 559 3 0 -87.8638 -68.1909 -115.85
+ 50 155.223 467 2 1 -86.6274 -66.5231 -144.45
+ 50 103.787 470 1 1 -86.0489 -64.1413 -174.45
+ 50 144.862 580 1 0 -86.0291 -64.0048 -175.85
+ 50 99.9765 472 0 1 -85.6194 -61.3318 -204.45
+ 50 168.853 594 0 0 -85.7265 -61.2044 -205.85
+ 50 38.8836 709 8 0 -154.983 -38.0948 33.75
+ 50 37.9381 121 8 1 -155.768 -38.5699 35.1501
+ 50 106.566 704 8 0 -157.14 -39.156 34.1498
+ 50 84.3893 452 10 1 -89.65 -69.2559 95.454
+ 50 41.3339 453 10 1 -89.45 -69.1647 95.2482
+ 50 72.5023 555 10 0 -88.3779 -68.9021 94.1499
+ 50 77.8471 556 10 0 -88.2989 -68.8498 93.9363
+Number of digits in this event = 29
+Using G4ParticleGun ...
+1.6408 LIN
e-
Event: 51
-Number of tracker hits in this event = 33
- 51 103.546 380 10 1 -104.023 13.309 95.55
- 51 114.576 966 10 0 -104.023 13.3092 94.15
- 51 249.556 380 9 1 -104.022 13.3079 65.55
- 51 160.088 966 9 0 -104.023 13.3079 64.15
- 51 99.8673 380 8 1 -104.033 13.3065 35.55
- 51 124.563 966 8 0 -104.035 13.3055 34.15
- 51 155.386 380 7 1 -104.076 13.2813 5.55
- 51 111.082 966 7 0 -104.078 13.2802 4.15
- 51 94.7877 380 6 1 -104.136 13.2582 -24.45
- 51 141.113 966 6 0 -104.138 13.2581 -25.85
- 51 142.393 379 5 1 -104.187 13.2579 -54.45
- 51 140.755 966 5 0 -104.189 13.2559 -55.85
- 51 117.817 379 4 1 -104.217 13.2134 -84.45
- 51 183.018 965 4 0 -104.217 13.2106 -85.85
- 51 142.581 379 3 1 -104.226 13.1517 -114.45
- 51 154.203 965 3 0 -104.226 13.1488 -115.85
- 51 120.359 379 2 1 -104.217 13.0907 -144.45
- 51 182.72 965 2 0 -104.217 13.0878 -145.85
- 51 113.135 379 1 1 -104.222 13.0326 -174.45
- 51 111.058 964 1 0 -104.223 13.0301 -175.85
- 51 259.684 379 0 1 -104.244 12.9813 -204.45
- 51 228.571 964 0 0 -104.245 12.9794 -205.85
- 51 24.6699 378 0 1 -104.35 12.9702 -204.752
- 51 22.6862 7 4 1 -178.75 -55.5944 -84.7169
- 51 138.407 421 2 1 -95.8419 69.6157 -144.85
- 51 62.6243 422 2 1 -95.7499 69.6778 -144.798
- 51 84.2316 918 0 0 -90.6609 3.72298 -206.25
- 51 106.599 917 0 0 -90.5713 3.65 -206.208
- 51 186.835 507 0 0 -93.5913 -78.4666 -206.25
- 51 175.746 1157 8 0 -127.906 51.4849 33.7501
- 51 340.563 1156 8 0 -127.967 51.4498 33.9059
- 51 135.392 1155 8 0 -127.855 51.25 34.0676
- 51 325.135 1385 2 1 97.15 -106.998 -144.528
-Number of digits in this event = 24
+Number of tracker hits in this event = 114
+ 51 111.024 677 11 1 -44.5764 17.7169 125.55
+ 51 127.828 988 11 0 -44.5699 17.7102 124.15
+ 51 136.421 677 10 1 -44.4543 17.5734 95.55
+ 51 127.481 987 10 0 -44.4406 17.5622 94.15
+ 51 122.096 679 9 1 -44.1519 17.3345 65.55
+ 51 140.742 986 9 0 -44.1373 17.3242 64.15
+ 51 366.896 681 8 1 -43.8414 17.0935 35.55
+ 51 397.697 985 8 0 -43.8264 17.0843 34.15
+ 51 270.481 682 7 1 -43.5552 16.8839 5.55
+ 51 244.531 984 7 0 -43.4471 16.9984 4.15
+ 51 124.312 693 6 1 -41.4204 19.0711 -24.45
+ 51 125.665 995 6 0 -41.2622 19.1293 -25.8506
+ 51 112.241 710 5 1 -37.981 20.2081 -54.45
+ 51 103.721 1000 5 0 -37.87 20.1906 -55.85
+ 51 100.324 726 4 1 -34.7872 19.2621 -84.4504
+ 51 122.301 996 4 0 -34.5949 19.3336 -85.85
+ 51 2.49693 743 3 1 -31.2504 20.8532 -114.45
+ 51 167.022 744 3 1 -31.25 20.8531 -114.454
+ 51 108.648 1003 3 0 -31.0879 20.8348 -115.85
+ 51 114.301 761 2 1 -27.7709 20.4596 -144.45
+ 51 103.96 1001 2 0 -27.6691 20.4433 -145.85
+ 51 426.556 774 1 1 -25.1728 20.8076 -174.45
+ 51 25.2811 1008 1 0 -24.8228 21.7888 -175.85
+ 51 98.8714 1009 1 0 -24.8028 21.85 -175.931
+ 51 5.90526 1010 1 0 -24.7284 22.05 -176.223
+ 51 496.039 809 0 1 -18.1712 40.5536 -204.45
+ 51 26.6815 1106 0 0 -18.0654 41.404 -205.85
+ 51 130.511 1107 0 0 -18.0579 41.45 -205.928
+ 51 89.5359 775 1 1 -25.05 20.7173 -174.581
+ 51 131.066 773 1 1 -25.25 20.9453 -174.572
+ 51 132.848 817 0 1 -16.5691 29.5489 -204.45
+ 51 74.8409 816 0 1 -16.65 29.7091 -204.688
+ 51 169.539 1052 0 0 -16.9014 30.4662 -205.85
+ 51 48.4074 1053 0 0 -16.9689 30.6501 -206.135
+ 51 56.7459 1072 0 0 -13.5462 34.5722 -206.25
+ 51 103.032 1071 0 0 -13.5209 34.45 -206.041
+ 51 85.0775 838 0 1 -12.4243 33.2564 -204.85
+ 51 224.567 839 0 1 -12.25 33.1506 -204.648
+ 51 70.0647 840 0 1 -12.05 33.1248 -204.484
+ 51 97.0654 1069 0 0 -12.4766 33.8521 -205.85
+ 51 94.4741 1070 0 0 -12.535 34.05 -206.025
+ 51 303.226 1249 0 0 -80.6647 69.9083 -206.25
+ 51 193.3 507 0 1 -78.6163 69.3677 -204.85
+ 51 5.0486 1113 0 0 -13.9492 42.65 -205.962
+ 51 33.7109 1062 0 0 -18.2585 32.5456 -205.85
+ 51 88.6262 1063 0 0 -18.3267 32.65 -205.904
+ 51 99.4049 1064 0 0 -18.5069 32.8505 -206.051
+ 51 16.1236 1040 0 0 -34.9691 28.0835 -206.25
+ 51 213.951 1039 0 0 -34.9634 28.05 -206.208
+ 51 29.5691 1038 0 0 -34.9373 27.85 -206.007
+ 51 131.607 727 0 1 -34.4566 28.9868 -204.85
+ 51 59.2471 728 0 1 -34.45 28.9953 -204.841
+ 51 92.7839 818 0 1 -16.4498 29.5732 -204.513
+ 51 30.4572 819 0 1 -16.25 29.6885 -204.744
+ 51 3.10629 1050 0 0 -15.5104 30.2461 -205.85
+ 51 112.498 1051 0 0 -15.5051 30.25 -205.858
+ 51 162.696 601 5 1 -59.7242 -27.77 -54.85
+ 51 103.055 681 7 1 -43.7102 17.2898 5.55
+ 51 118.576 986 7 0 -43.7167 17.3908 4.15
+ 51 111.857 681 6 1 -43.805 19.807 -24.45
+ 51 136.856 1000 6 0 -43.8308 20.0813 -25.85
+ 51 228.126 680 5 1 -43.9713 26.0332 -54.4506
+ 51 475.302 1030 5 0 -44.2127 26.2059 -55.85
+ 51 21.6007 1031 5 0 -44.2672 26.25 -56.1689
+ 51 49.6223 655 4 1 -49.0256 30.0744 -84.451
+ 51 76.7511 654 4 1 -49.05 30.1026 -84.6412
+ 51 113.018 1051 4 0 -49.1919 30.2798 -85.85
+ 51 140.049 638 3 1 -52.271 34.7595 -114.45
+ 51 16.3096 1074 3 0 -52.268 35.0424 -115.85
+ 51 117.27 1075 3 0 -52.2681 35.0502 -115.889
+ 51 127.556 638 2 1 -52.3424 40.2764 -144.45
+ 51 163.772 1101 2 0 -52.4215 40.3707 -145.85
+ 51 98.9728 632 1 1 -53.4947 42.6525 -174.45
+ 51 152.833 1112 1 0 -53.5604 42.5899 -175.85
+ 51 123.305 624 0 1 -55.073 40.9617 -204.45
+ 51 119.192 1104 0 0 -55.3237 40.9128 -205.85
+ 51 10.858 15 2 1 -176.95 33.4576 -144.532
+ 51 8.3249 12 2 1 -177.618 32.121 -144.45
+ 51 242.371 676 5 1 -44.7297 26.6491 -54.85
+ 51 124.643 685 6 1 -42.9245 16.8931 -24.45
+ 51 168.775 984 6 0 -42.9065 16.9014 -25.85
+ 51 94.4329 688 5 1 -42.4253 17.1732 -54.45
+ 51 103.604 985 5 0 -42.3843 17.1766 -55.85
+ 51 117.568 691 4 1 -41.7057 17.1976 -84.45
+ 51 486.017 985 4 0 -41.637 17.1288 -85.85
+ 51 153.333 698 3 1 -40.323 15.8959 -114.45
+ 51 110.407 978 3 0 -40.2682 15.789 -115.85
+ 51 133.165 704 2 1 -39.1626 13.6194 -144.45
+ 51 196.556 967 2 0 -39.1148 13.5331 -145.85
+ 51 129.882 709 1 1 -38.149 11.6737 -174.45
+ 51 116.556 957 1 0 -38.1269 11.5611 -175.85
+ 51 123.314 712 0 1 -37.6106 9.10288 -204.45
+ 51 128.465 944 0 0 -37.5312 8.97083 -205.85
+ 51 322.416 678 4 1 -44.3648 17.2388 -84.45
+ 51 122.233 677 3 1 -44.4716 17.0387 -114.45
+ 51 109.336 984 3 0 -44.4637 16.9984 -115.85
+ 51 138.06 679 2 1 -44.2005 16.3134 -144.45
+ 51 110.054 981 2 0 -44.1659 16.2843 -145.85
+ 51 111.132 681 1 1 -43.748 15.0773 -174.45
+ 51 280.966 975 1 0 -43.6916 15.1002 -175.85
+ 51 118.327 685 0 1 -42.9289 14.9606 -204.45
+ 51 190.188 975 0 0 -42.9742 15.0794 -205.85
+ 51 159.283 976 1 0 -43.7314 15.25 -175.879
+ 51 2.71169 685 1 1 -42.8544 15.4641 -174.85
+ 51 0.0958329 686 1 1 -42.85 15.4631 -174.85
+ 51 158.164 673 3 1 -45.4235 14.4259 -114.45
+ 51 131.791 970 3 0 -45.3501 14.2413 -115.851
+ 51 145.887 678 2 1 -44.2821 9.94023 -144.45
+ 51 110.883 948 2 0 -44.4441 9.79082 -145.85
+ 51 136.634 664 1 1 -47.1088 6.59462 -174.45
+ 51 210.123 931 1 0 -47.0611 6.38057 -175.851
+ 51 96.5108 669 0 1 -46.1202 1.64786 -204.451
+ 51 9.88539 908 0 0 -45.9201 1.8451 -205.85
+ 51 121.049 909 0 0 -45.9151 1.85 -205.886
+Number of digits in this event = 58
Using G4ParticleGun ...
-4.60832 LIN
+9.87299 LIN
e-
Event: 52
-Number of tracker hits in this event = 65
- 52 127.946 1008 11 1 21.8444 76.7318 125.55
- 52 102.63 1283 11 0 21.843 76.7333 124.15
- 52 265.561 1008 10 1 21.8136 76.764 95.55
- 52 112.108 1283 10 0 21.8113 76.7666 94.15
- 52 165.111 1008 9 1 21.7677 76.8184 65.55
- 52 152.275 1283 9 0 21.7651 76.8206 64.15
- 52 199.251 1008 8 1 21.7164 76.864 35.55
- 52 107.056 1284 8 0 21.7153 76.8655 34.15
- 52 121.274 1008 7 1 21.6853 76.9019 5.55
- 52 142.586 1284 7 0 21.6873 76.8947 4.15
- 52 127.771 1008 6 1 21.7424 76.7411 -24.45
- 52 116.78 1283 6 0 21.7422 76.7348 -25.85
- 52 173.787 1008 5 1 21.7428 76.6275 -54.45
- 52 130.223 1282 5 0 21.7294 76.6108 -55.85
- 52 196.835 1007 4 1 21.4686 76.2648 -84.45
- 52 122.303 1281 4 0 21.4567 76.2549 -85.85
- 52 205.78 1005 3 1 21.2097 76.1029 -114.45
- 52 714.32 1280 3 0 21.2027 76.0872 -115.85
- 52 106.488 1005 2 1 21.0556 75.6981 -144.45
- 52 259.99 1278 2 0 21.0379 75.6677 -145.85
- 52 22.9793 1003 1 1 20.6519 74.9629 -174.45
- 52 82.299 1002 1 1 20.65 74.9605 -174.528
- 52 241.914 1274 1 0 20.6186 74.9202 -175.85
- 52 111.75 999 0 1 19.9157 74.1016 -204.45
- 52 162.28 1270 0 0 19.8887 74.0974 -205.85
- 52 151.768 1280 4 0 21.4618 76.2499 -86.1499
- 52 407.932 1008 3 1 21.8085 76.0883 -114.45
- 52 101.807 1008 2 1 21.817 75.9342 -144.45
- 52 105.515 1279 2 0 21.8172 75.9183 -145.85
- 52 121.895 1008 1 1 21.8113 75.6084 -174.45
- 52 111.747 1277 1 0 21.8032 75.5879 -175.85
- 52 121.62 1007 0 1 21.63 75.1466 -204.45
- 52 117.015 1275 0 0 21.6349 75.1306 -205.85
- 52 148.763 1663 6 0 -5.31216 152.884 -26.25
- 52 126.517 1664 6 0 -5.3228 152.95 -26.1293
- 52 203.528 874 6 1 -5.20566 153.824 -24.85
- 52 191.009 861 6 1 -7.80463 151.765 -24.8499
- 52 237.485 1277 3 0 19.4741 75.5229 -116.25
- 52 171.653 1007 2 1 21.4905 75.6943 -144.45
- 52 132.766 1005 1 1 21.1737 75.1697 -174.45
- 52 130.583 1275 1 0 21.1469 75.1405 -175.85
- 52 122.656 1002 0 1 20.6129 74.5549 -204.45
- 52 120.496 1272 0 0 20.5901 74.5253 -205.85
- 52 31.5076 1362 0 0 -0.451722 92.6081 -206.25
- 52 108.69 1007 1 1 21.5178 75.0807 -174.45
- 52 247.84 1285 3 0 21.6886 77.0777 -115.85
- 52 125.506 1012 2 1 22.6336 77.3882 -144.45
- 52 12.9321 1013 2 1 22.65 77.3972 -144.795
- 52 119.772 1286 2 0 22.71 77.4179 -145.85
- 52 114.465 1023 1 1 24.6924 77.9379 -174.45
- 52 109.762 1289 1 0 24.782 77.9462 -175.85
- 52 106.871 1032 0 1 26.466 77.9668 -204.45
- 52 110.542 1289 0 0 26.5071 77.9515 -205.85
- 52 45.6068 1284 3 0 21.6485 77.05 -116.205
- 52 71.5209 951 3 0 -127.332 10.3697 -116.25
- 52 135.068 1007 3 1 21.6231 77.1621 -114.45
- 52 6.74527 1006 3 1 21.45 77.3623 -114.819
- 52 110.96 1289 3 0 20.9334 77.9067 -115.85
- 52 57.8839 1290 3 0 20.8033 78.05 -116.108
- 52 261.597 937 2 1 7.64777 94.8039 -144.45
- 52 15.6131 1383 2 0 7.50008 96.91 -145.85
- 52 82.1699 1384 2 0 7.49733 96.95 -145.878
- 52 53.1973 1385 2 0 7.49096 97.15 -146.013
- 52 68.3444 1386 2 0 7.49066 97.35 -146.127
- 52 3.12434 1387 2 0 7.50411 97.55 -146.241
-Number of digits in this event = 38
+Number of tracker hits in this event = 49
+ 52 105.535 292 9 1 -121.568 -53.1822 65.55
+ 52 112.384 634 9 0 -121.569 -53.1816 64.15
+ 52 97.2597 292 8 1 -121.602 -53.1674 35.55
+ 52 171.922 634 8 0 -121.603 -53.1661 34.15
+ 52 110.242 292 7 1 -121.627 -53.1347 5.55
+ 52 107.227 634 7 0 -121.628 -53.133 4.15
+ 52 258.03 292 6 1 -121.659 -53.1004 -24.45
+ 52 106.416 634 6 0 -121.661 -53.0984 -25.85
+ 52 121.188 292 5 1 -121.695 -53.0562 -54.45
+ 52 114.827 634 5 0 -121.696 -53.0547 -55.85
+ 52 153.952 292 4 1 -121.711 -53.0225 -84.45
+ 52 104.234 635 4 0 -121.713 -53.0217 -85.85
+ 52 119.419 292 3 1 -121.743 -53.0037 -114.45
+ 52 116.444 635 3 0 -121.744 -53.0021 -115.85
+ 52 396.277 291 2 1 -121.772 -52.9695 -144.45
+ 52 245.368 635 2 0 -121.773 -52.9671 -145.85
+ 52 176.837 291 1 1 -121.782 -52.9236 -174.45
+ 52 339.101 635 1 0 -121.784 -52.9222 -175.85
+ 52 429.122 291 0 1 -121.794 -52.8882 -204.45
+ 52 296.999 635 0 0 -121.793 -52.8881 -205.85
+ 52 81.8499 292 1 1 -121.75 -52.912 -174.549
+ 52 242.945 634 2 0 -121.752 -53.063 -145.85
+ 52 94.8634 293 1 1 -121.476 -53.8323 -174.45
+ 52 106.264 630 1 0 -121.491 -53.9015 -175.85
+ 52 253.585 293 0 1 -121.42 -55.2072 -204.45
+ 52 124.033 623 0 0 -121.58 -55.2552 -205.85
+ 52 20.0672 186 10 0 -153.895 -142.75 93.7776
+ 52 219.889 294 1 1 -121.256 -52.8569 -174.45
+ 52 141.388 292 0 1 -121.558 -53.4734 -204.45
+ 52 129.517 632 0 0 -121.617 -53.5535 -205.85
+ 52 123.4 431 6 0 -133.814 -93.8308 -26.25
+ 52 202.875 430 6 0 -133.91 -93.95 -26.0496
+ 52 70.0846 290 0 1 -121.95 -52.695 -204.651
+ 52 94.7381 639 0 0 -122.841 -52.1441 -205.851
+ 52 64.4018 640 0 0 -123.027 -52.05 -206.078
+ 52 23.8486 820 1 1 -16.0403 73.5726 -174.45
+ 52 308.973 819 1 1 -16.05 73.5311 -174.472
+ 52 114.499 634 0 0 -121.774 -53.1841 -205.85
+ 52 1.47741 633 0 0 -121.783 -53.25 -206.24
+ 52 81.6312 733 3 0 -139.206 -33.3757 -116.25
+ 52 66.6286 734 3 0 -139.194 -33.25 -116.087
+ 52 64.4707 735 3 0 -139.184 -33.0498 -115.934
+ 52 30.642 736 3 0 -139.187 -32.85 -115.887
+ 52 12.3117 202 3 1 -139.576 -30.0896 -114.85
+ 52 12.6436 779 3 0 -139.665 -24.1127 -115.85
+ 52 15.6033 780 3 0 -139.667 -24.05 -115.852
+ 52 237.906 204 3 1 -139.299 -17.1621 -114.85
+ 52 194.26 823 3 0 -138.896 -15.4143 -115.851
+ 52 131.813 824 3 0 -138.776 -15.2499 -115.969
+Number of digits in this event = 25
Using G4ParticleGun ...
-1.34042 LIN
+9.23665 LIN
e-
Event: 53
-Number of tracker hits in this event = 190
- 53 119.52 409 10 1 -98.3263 49.0532 95.55
- 53 156.463 1144 10 0 -98.3201 49.0496 94.15
- 53 296.077 409 9 1 -98.1849 49.0036 65.55
- 53 343.343 1144 9 0 -98.1767 49.0015 64.15
- 53 162.972 410 8 1 -98.0263 48.9558 35.55
- 53 153.687 1144 8 0 -98.0182 48.9576 34.15
- 53 105.073 411 7 1 -97.8662 49.0165 5.55
- 53 142.692 1144 7 0 -97.865 49.0271 4.15
- 53 104.331 411 6 1 -97.8142 49.2457 -24.45
- 53 161.99 1146 6 0 -97.8053 49.2576 -25.85
- 53 129.505 412 5 1 -97.6498 49.5013 -54.45
- 53 98.5016 1147 5 0 -97.6409 49.509 -55.85
- 53 110.537 413 4 1 -97.4753 49.6688 -84.45
- 53 193.881 1148 4 0 -97.4752 49.6796 -85.85
- 53 121.705 413 3 1 -97.4976 49.9292 -114.45
- 53 103.411 1149 3 0 -97.5008 49.9384 -115.85
- 53 108.676 412 2 1 -97.5827 50.127 -144.45
- 53 109.399 1150 2 0 -97.5877 50.1342 -145.85
- 53 329.216 412 1 1 -97.6715 50.2577 -174.45
- 53 142.101 1151 1 0 -97.6825 50.2601 -175.85
- 53 134.052 411 0 1 -97.938 50.2609 -204.45
- 53 436.153 1151 0 0 -97.949 50.2572 -205.85
- 53 43.9971 523 4 1 -75.3672 42.3639 -84.85
- 53 17.1938 1152 0 0 -97.4872 50.45 -205.908
- 53 34.8223 417 0 1 -96.6261 51.1637 -204.85
- 53 14.6557 418 0 1 -96.55 51.2002 -204.825
- 53 208.953 1156 0 0 -95.7805 51.3412 -205.85
- 53 89.694 1105 0 0 -98.7077 41.1625 -206.25
- 53 126.508 414 3 1 -97.3486 50.0024 -114.45
- 53 157.677 415 3 1 -97.15 49.8761 -114.529
- 53 38.9385 416 3 1 -96.95 49.7762 -114.504
- 53 39.2121 408 9 1 -98.35 49.0268 65.2087
- 53 3.16851 1145 9 0 -98.9526 49.05 64.15
- 53 4.85784 1143 9 0 -99.0149 48.8495 63.7596
- 53 1.79773 878 9 0 -66.5458 -4.44839 63.75
- 53 118.214 877 9 0 -66.5426 -4.45 63.7536
- 53 31.6035 876 9 0 -66.4712 -4.65017 64.0398
- 53 50.8729 566 9 1 -66.791 -5.0716 65.15
- 53 275.225 565 9 1 -66.85 -5.14343 65.2791
- 53 145.709 564 9 1 -67.05 -5.2656 65.43
- 53 149.417 410 9 1 -98.15 49.0129 65.4546
- 53 137.872 1142 1 0 -96.9294 48.5256 -175.85
- 53 158.47 1143 1 0 -97.2928 48.6501 -176.14
- 53 237.988 413 1 1 -97.4838 48.5492 -174.85
- 53 262.929 408 4 1 -98.4135 48.8409 -84.45
- 53 251.929 1143 4 0 -98.4327 48.8474 -85.85
- 53 163.686 406 3 1 -98.8354 48.9168 -114.45
- 53 141.733 1144 3 0 -98.9184 48.9292 -115.85
- 53 190.337 397 2 1 -100.563 49.1137 -144.45
- 53 121.383 1145 2 0 -100.635 49.0802 -145.85
- 53 121.21 390 1 1 -102.019 48.3498 -174.45
- 53 109.773 1141 1 0 -102.073 48.3255 -175.85
- 53 116.032 384 0 1 -103.175 47.8751 -204.45
- 53 106.205 1139 0 0 -103.347 47.869 -205.85
- 53 124.72 420 3 1 -96.0843 47.5469 -114.45
- 53 144.215 1136 3 0 -95.8143 47.3989 -115.85
- 53 8.39243 438 2 1 -92.3552 45.8273 -144.45
- 53 352.405 439 2 1 -92.35 45.8597 -144.455
- 53 238.1 440 2 1 -92.15 47.067 -144.598
- 53 298.768 441 2 1 -91.95 47.9524 -144.693
- 53 539.753 442 2 1 -91.75 48.9852 -144.76
- 53 278.752 443 2 1 -91.55 49.9247 -144.787
- 53 135.889 444 2 1 -91.35 50.8427 -144.831
- 53 27.5189 1243 2 0 -89.0904 68.7548 -145.85
- 53 51.7626 1244 2 0 -89.078 68.85 -145.857
- 53 72.0508 1245 2 0 -89.0491 69.0503 -145.871
- 53 91.3087 1246 2 0 -89.0179 69.2504 -145.884
- 53 44.7786 1247 2 0 -88.9861 69.45 -145.901
- 53 51.4323 1248 2 0 -88.9556 69.65 -145.92
- 53 56.4022 1249 2 0 -88.9242 69.85 -145.935
- 53 54.3667 1250 2 0 -88.8939 70.05 -145.94
- 53 48.3775 1251 2 0 -88.861 70.2502 -145.938
- 53 47.3887 1252 2 0 -88.8201 70.4503 -145.936
- 53 72.1988 1253 2 0 -88.7786 70.65 -145.938
- 53 60.28 1254 2 0 -88.7365 70.85 -145.94
- 53 50.5061 1255 2 0 -88.6906 71.0501 -145.943
- 53 47.3364 1256 2 0 -88.6448 71.2505 -145.945
- 53 138.796 1257 2 0 -88.5996 71.45 -145.942
- 53 51.8808 1258 2 0 -88.5576 71.6506 -145.944
- 53 65.4012 1259 2 0 -88.5197 71.85 -145.952
- 53 49.0565 1260 2 0 -88.4882 72.05 -145.959
- 53 57.1044 1261 2 0 -88.4659 72.25 -145.963
- 53 51.6853 1262 2 0 -88.4439 72.45 -145.969
- 53 52.7767 1263 2 0 -88.4153 72.65 -145.977
- 53 83.7522 1264 2 0 -88.389 72.85 -145.984
- 53 51.3256 1265 2 0 -88.3622 73.05 -145.991
- 53 54.9548 1266 2 0 -88.335 73.25 -145.997
- 53 95.1011 1267 2 0 -88.3078 73.4502 -146.002
- 53 54.717 1268 2 0 -88.282 73.6501 -146.007
- 53 145.213 1269 2 0 -88.2562 73.85 -146.018
- 53 61.3552 1270 2 0 -88.228 74.05 -146.026
- 53 79.4893 1271 2 0 -88.1994 74.2501 -146.026
- 53 50.125 1272 2 0 -88.1764 74.4511 -146.021
- 53 65.351 1273 2 0 -88.1548 74.65 -146.017
- 53 57.4257 1274 2 0 -88.139 74.8508 -146.012
- 53 67.916 1275 2 0 -88.1295 75.05 -146.009
- 53 178.511 1276 2 0 -88.1236 75.25 -146.008
- 53 58.12 1277 2 0 -88.1203 75.45 -146.01
- 53 73.5948 1278 2 0 -88.1144 75.65 -146.019
- 53 57.1164 1279 2 0 -88.1066 75.85 -146.031
- 53 52.5886 1280 2 0 -88.1033 76.05 -146.042
- 53 52.6823 1281 2 0 -88.1025 76.25 -146.059
- 53 46.1776 1282 2 0 -88.1015 76.45 -146.069
- 53 64.574 1283 2 0 -88.0972 76.65 -146.079
- 53 57.5296 1284 2 0 -88.0913 76.8502 -146.084
- 53 57.2499 1285 2 0 -88.0792 77.05 -146.101
- 53 77.8195 1286 2 0 -88.0664 77.25 -146.104
- 53 78.9627 1287 2 0 -88.0512 77.45 -146.11
- 53 98.8308 1288 2 0 -88.032 77.65 -146.112
- 53 114.283 1289 2 0 -88.0124 77.85 -146.116
- 53 61.8423 1290 2 0 -87.9795 78.0506 -146.108
- 53 67.733 1291 2 0 -87.9437 78.2501 -146.102
- 53 70.5972 1292 2 0 -87.9059 78.45 -146.092
- 53 57.3416 1293 2 0 -87.8709 78.65 -146.073
- 53 56.9198 1294 2 0 -87.8373 78.8506 -146.053
- 53 48.2465 1295 2 0 -87.802 79.05 -146.03
- 53 53.5291 1296 2 0 -87.752 79.25 -146.001
- 53 57.5056 1297 2 0 -87.6936 79.45 -145.97
- 53 55.7062 1298 2 0 -87.6383 79.65 -145.939
- 53 44.1662 1299 2 0 -87.581 79.85 -145.909
- 53 21.2769 1300 2 0 -87.5286 80.05 -145.868
- 53 51.7587 469 2 1 -86.0932 84.7263 -144.85
- 53 196.545 470 2 1 -86.05 84.8703 -144.817
- 53 173.057 471 2 1 -85.85 85.5339 -144.622
- 53 25.2488 1479 3 0 -92.7316 116.075 -116.25
- 53 78.3582 1480 3 0 -92.7489 116.15 -116.178
- 53 53.3852 1481 3 0 -92.7945 116.35 -115.979
- 53 195.528 435 3 1 -93.0875 117.708 -114.85
- 53 56.3858 434 3 1 -93.15 118.115 -114.561
- 53 81.2284 436 3 1 -92.8763 119.28 -114.45
- 53 152.941 437 3 1 -92.75 119.536 -114.513
- 53 131.985 438 3 1 -92.55 119.925 -114.616
- 53 107.298 439 3 1 -92.3495 120.279 -114.732
- 53 65.9418 440 3 1 -92.15 120.54 -114.802
- 53 19.4866 1526 3 0 -89.946 125.487 -115.85
- 53 73.3145 1527 3 0 -89.9163 125.55 -115.864
- 53 59.484 1528 3 0 -89.8123 125.75 -115.904
- 53 61.5887 1529 3 0 -89.7125 125.95 -115.948
- 53 171.713 1530 3 0 -89.6059 126.15 -115.981
- 53 196.613 1531 3 0 -89.4984 126.35 -116.027
- 53 49.5949 1532 3 0 -89.3995 126.55 -116.07
- 53 58.5867 1533 3 0 -89.3147 126.75 -116.12
- 53 84.7713 1534 3 0 -89.229 126.95 -116.166
- 53 64.339 1535 3 0 -89.1414 127.15 -116.192
- 53 83.7845 1536 3 0 -89.0568 127.35 -116.196
- 53 84.9341 1537 3 0 -88.9697 127.55 -116.201
- 53 54.3434 1538 3 0 -88.8656 127.75 -116.204
- 53 76.1822 1539 3 0 -88.7699 127.95 -116.205
- 53 85.998 1540 3 0 -88.6454 128.15 -116.205
- 53 76.8987 1541 3 0 -88.4946 128.35 -116.186
- 53 177.449 1542 3 0 -88.3495 128.55 -116.126
- 53 71.3791 1543 3 0 -88.1994 128.75 -116.064
- 53 89.2198 1544 3 0 -88.0707 128.95 -116
- 53 109.249 1545 3 0 -87.9097 129.15 -115.957
- 53 100.284 1546 3 0 -87.7542 129.35 -115.928
- 53 89.0603 1547 3 0 -87.5801 129.55 -115.908
- 53 80.4121 1548 3 0 -87.3936 129.75 -115.902
- 53 140.691 1549 3 0 -87.2479 129.95 -115.931
- 53 64.3023 1550 3 0 -87.1288 130.15 -115.961
- 53 52.8088 1551 3 0 -87.0289 130.35 -115.976
- 53 149.193 1552 3 0 -86.9411 130.55 -115.99
- 53 44.0837 1553 3 0 -86.878 130.75 -115.994
- 53 65.0913 1554 3 0 -86.817 130.951 -115.978
- 53 51.3346 1555 3 0 -86.7483 131.15 -115.963
- 53 70.7908 1556 3 0 -86.6722 131.35 -115.948
- 53 50.562 1557 3 0 -86.6069 131.552 -115.944
- 53 119.979 1558 3 0 -86.5702 131.75 -115.975
- 53 46.9356 1559 3 0 -86.5376 131.95 -115.991
- 53 81.9572 1560 3 0 -86.5042 132.15 -115.962
- 53 47.8674 1561 3 0 -86.4659 132.35 -115.922
- 53 38.8354 1562 3 0 -86.4284 132.55 -115.878
- 53 172.764 465 3 1 -86.9872 137.365 -114.85
- 53 375.87 464 3 1 -87.05 137.927 -114.756
- 53 36.9335 463 3 1 -87.25 138.908 -114.508
- 53 180.474 1552 4 0 -72.2836 130.732 -86.25
- 53 2.7281 541 4 1 -71.6551 130.434 -84.85
- 53 155.082 542 4 1 -71.65 130.431 -84.8378
- 53 59.7678 543 4 1 -71.45 130.441 -84.5261
- 53 66.5646 544 4 1 -71.25 130.676 -84.6088
- 53 222.4 1553 4 0 -70.8273 130.75 -85.9908
- 53 25.6737 1511 4 0 -81.4217 122.381 -86.25
- 53 204.513 1510 4 0 -81.4739 122.35 -86.1956
- 53 50.4678 486 4 1 -82.7587 121.854 -84.85
- 53 77.8711 485 4 1 -82.8501 121.811 -84.6813
- 53 101.089 1385 2 0 -107.04 97.3215 -146.25
- 53 36.0417 1386 2 0 -107.244 97.3501 -145.922
- 53 188.386 360 2 1 -107.975 98.4832 -144.85
- 53 184.375 359 2 1 -108.15 98.6301 -144.777
- 53 116.178 358 2 1 -108.35 98.481 -144.62
- 53 100.157 357 2 1 -108.55 98.4271 -144.513
-Number of digits in this event = 60
+Number of tracker hits in this event = 36
+ 53 155.457 1160 10 1 52.1521 82.4721 95.55
+ 53 141.515 1312 10 0 52.1514 82.4725 94.15
+ 53 126.271 1160 9 1 52.139 82.4787 65.55
+ 53 110.241 1312 9 0 52.1383 82.4796 64.15
+ 53 143.671 1160 8 1 52.1201 82.4965 35.55
+ 53 184.97 1312 8 0 52.119 82.497 34.15
+ 53 104.796 1160 7 1 52.0996 82.5131 5.55
+ 53 113.846 1312 7 0 52.0995 82.5139 4.15
+ 53 107.827 1160 6 1 52.0943 82.5424 -24.45
+ 53 197.105 1312 6 0 52.0928 82.5454 -25.85
+ 53 124.129 1160 5 1 52.062 82.6035 -54.45
+ 53 120.64 1312 5 0 52.0594 82.6047 -55.85
+ 53 119.635 1159 4 1 52.001 82.6215 -84.45
+ 53 144.304 1312 4 0 51.9981 82.6264 -85.85
+ 53 122.526 1159 3 1 51.9425 82.7298 -114.45
+ 53 137.565 1313 3 0 51.9385 82.7324 -115.85
+ 53 198.312 1159 2 1 51.8626 82.7848 -144.45
+ 53 107.942 1313 2 0 51.861 82.7853 -145.85
+ 53 139.734 1158 1 1 51.8225 82.7777 -174.45
+ 53 120.323 1313 1 0 51.8201 82.7776 -175.85
+ 53 173.974 1158 0 1 51.7709 82.7665 -204.45
+ 53 168.24 1313 0 0 51.7676 82.7682 -205.85
+ 53 193.73 1209 3 0 76.9173 61.8769 -116.25
+ 53 18.1484 1160 0 1 52.0767 82.5996 -204.45
+ 53 435.757 1159 0 1 52.0499 82.6238 -204.514
+ 53 107.507 1314 0 0 51.5131 82.8865 -205.85
+ 53 18.1293 1311 8 0 52.049 82.45 33.8331
+ 53 32.4786 1311 0 0 52.4148 82.2671 -205.85
+ 53 3.68692 1310 0 0 52.4459 82.25 -205.929
+ 53 88.2907 1307 0 0 51.5995 81.6372 -205.85
+ 53 90.7282 1308 0 0 51.6283 81.65 -206.078
+ 53 61.2903 1309 0 0 51.6584 81.85 -206.189
+ 53 30.2972 1544 0 0 113.221 129.106 -206.25
+ 53 301.557 1545 0 0 113.282 129.15 -206.205
+ 53 183.528 1546 0 0 113.104 129.35 -205.944
+ 53 419.748 1740 10 0 11.6022 168.283 93.75
+Number of digits in this event = 24
Using G4ParticleGun ...
-5.85555 LIN
+7.66189 LIN
e-
Event: 54
-Number of tracker hits in this event = 69
- 54 120.897 969 9 1 13.8522 -129.865 65.55
- 54 147.687 251 9 0 13.8514 -129.866 64.15
- 54 258.987 968 8 1 13.8402 -129.877 35.55
- 54 117.522 251 8 0 13.839 -129.878 34.15
- 54 275.217 968 7 1 13.8228 -129.895 5.55
- 54 240.037 251 7 0 13.8207 -129.895 4.15
- 54 105.422 968 6 1 13.7742 -129.903 -24.45
- 54 109.875 251 6 0 13.7721 -129.905 -25.85
- 54 231.743 968 5 1 13.7268 -129.945 -54.45
- 54 127.91 251 5 0 13.7239 -129.946 -55.85
- 54 124.813 968 4 1 13.6608 -129.947 -84.45
- 54 17.298 251 4 0 13.6544 -129.95 -85.85
- 54 110.019 250 4 0 13.6542 -129.95 -85.8909
- 54 124.392 967 3 1 13.5131 -130.025 -114.45
- 54 137.73 250 3 0 13.4937 -130.028 -115.85
- 54 267.356 965 2 1 13.0995 -130.111 -144.45
- 54 110.785 250 2 0 13.0778 -130.124 -145.85
- 54 157.795 962 1 1 12.6394 -130.337 -174.45
- 54 197.516 248 1 0 12.6267 -130.352 -175.85
- 54 103.275 961 0 1 12.3966 -130.592 -204.45
- 54 212.946 247 0 0 12.3732 -130.614 -205.85
- 54 36.0092 604 1 1 -59.0998 -150.647 -174.85
- 54 135.393 592 1 1 -61.45 -158.977 -174.531
- 54 314.894 284 0 0 -95.1239 -123.214 -206.25
- 54 40.3998 421 0 1 -95.8701 -123.242 -204.85
- 54 91.3794 420 0 1 -95.9501 -123.251 -204.727
- 54 36.6258 419 0 1 -96.15 -123.362 -204.493
- 54 173.413 317 1 0 -110.238 -116.698 -176.25
- 54 60.3188 342 1 1 -111.617 -116.59 -174.85
- 54 78.7125 341 1 1 -111.75 -116.571 -174.772
- 54 54.5973 340 1 1 -111.95 -116.558 -174.63
- 54 46.5105 339 1 1 -112.15 -116.524 -174.644
- 54 75.1124 338 1 1 -112.35 -116.486 -174.713
- 54 47.5285 322 1 0 -112.448 -115.676 -175.85
- 54 152.555 323 1 0 -112.401 -115.55 -176.029
- 54 70.2823 695 1 0 -139.776 -41.0188 -176.25
- 54 85.5097 696 1 0 -139.873 -40.85 -176.091
- 54 47.9285 697 1 0 -140.037 -40.65 -175.986
- 54 79.0617 698 1 0 -140.084 -40.45 -176.055
- 54 63.6289 699 1 0 -140.13 -40.2499 -176.017
- 54 61.1528 700 1 0 -140.16 -40.05 -175.952
- 54 30.47 701 1 0 -140.175 -39.85 -175.898
- 54 147.373 196 1 1 -140.866 -38.0947 -174.85
- 54 84.9194 195 1 1 -140.95 -37.7534 -174.595
- 54 108.774 194 1 1 -141.15 -37.7532 -174.564
- 54 462.754 193 1 1 -141.35 -37.9038 -174.752
- 54 486.008 192 1 1 -141.55 -38.094 -174.815
- 54 106.158 967 1 1 13.4986 -129.998 -174.685
- 54 88.411 254 1 0 14.0411 -129.294 -175.85
- 54 86.0857 255 1 0 14.1969 -129.15 -176.074
- 54 131.016 256 1 0 14.4498 -128.95 -176.1
- 54 20.8217 257 1 0 14.7022 -128.75 -175.88
- 54 60.3482 979 1 1 15.92 -128.097 -174.85
- 54 74.8191 980 1 1 16.0502 -128.064 -174.654
- 54 117.232 250 1 0 13.4785 -130.016 -175.85
- 54 136.429 963 0 1 12.6848 -130.669 -204.451
- 54 101.58 937 9 0 -44.3328 7.47059 63.75
- 54 11.7495 707 0 1 -38.6149 -67.8433 -204.45
- 54 255.126 706 0 1 -38.6501 -67.8687 -204.464
- 54 89.9895 959 6 1 11.9417 -129.911 -24.45
- 54 49.6839 958 6 1 11.85 -129.915 -24.6632
- 54 202.328 250 6 0 11.4282 -129.973 -25.85
- 54 27.929 912 5 1 2.61619 -130.572 -54.45
- 54 212.82 913 5 1 2.65 -130.653 -54.5101
- 54 133.384 241 5 0 3.1099 -131.767 -55.85
- 54 66.249 240 5 0 3.19228 -131.95 -56.0537
- 54 45.3156 253 7 0 13.8819 -129.403 4.15
- 54 77.3245 254 7 0 13.8867 -129.35 4.02119
- 54 152.377 968 9 1 13.85 -129.864 65.2772
-Number of digits in this event = 31
+Number of tracker hits in this event = 48
+ 54 122.211 1289 10 1 78.0014 79.4556 95.55
+ 54 112.507 1297 10 0 78.002 79.4564 94.15
+ 54 114.869 1289 9 1 78.0125 79.4734 65.55
+ 54 95.2526 1297 9 0 78.0132 79.4743 64.15
+ 54 124.35 1289 8 1 78.024 79.4941 35.55
+ 54 119.061 1297 8 0 78.0269 79.4924 34.15
+ 54 192.642 1290 7 1 78.0896 79.461 5.55
+ 54 108.662 1297 7 0 78.0887 79.4593 4.15
+ 54 115.307 1289 6 1 78.0443 79.4204 -24.45
+ 54 101.108 1296 6 0 78.0339 79.4206 -25.85
+ 54 124.976 1288 5 1 77.8262 79.4225 -54.45
+ 54 324.157 1296 5 0 77.8118 79.4166 -55.85
+ 54 103.991 1287 4 1 77.5508 79.2982 -84.45
+ 54 153.356 1296 4 0 77.5378 79.2878 -85.85
+ 54 100.597 1286 3 1 77.2797 79.117 -114.45
+ 54 191.613 1295 3 0 77.2734 79.1021 -115.85
+ 54 564.633 1285 2 1 77.1766 78.7963 -144.45
+ 54 134.527 1293 2 0 77.1729 78.7789 -145.85
+ 54 148.473 1285 1 1 77.1207 78.4461 -174.45
+ 54 127.318 1291 1 0 77.12 78.4354 -175.85
+ 54 108.61 1285 0 1 77.1162 78.2131 -204.45
+ 54 112.833 1290 0 0 77.1125 78.207 -205.85
+ 54 125.244 391 4 0 28.3008 -101.75 -86.1193
+ 54 16.3851 1041 4 1 28.4447 -102.107 -84.85
+ 54 251.011 1042 4 1 28.45 -102.113 -84.8272
+ 54 101.223 1363 1 1 92.75 61.8697 -174.716
+ 54 97.5625 1362 1 1 92.75 61.7645 -174.723
+ 54 101.005 1700 1 0 70.7209 160.15 -176.11
+ 54 118.46 1295 2 0 77.0416 79.2329 -145.85
+ 54 108.656 1281 1 1 76.293 77.9331 -174.45
+ 54 114.445 1289 1 0 76.3312 77.8813 -175.85
+ 54 114.941 1283 0 1 76.6528 77.0008 -204.45
+ 54 182.232 1284 0 0 76.6679 77.0092 -205.85
+ 54 118.868 1296 2 0 77.0687 79.3154 -145.85
+ 54 157.429 1282 1 1 76.553 79.5484 -174.45
+ 54 245.872 1297 1 0 76.5488 79.5574 -175.85
+ 54 180.407 1282 0 1 76.4571 79.753 -204.45
+ 54 114.822 1298 0 0 76.4765 79.7599 -205.85
+ 54 54.9949 1284 2 1 77.05 79.33 -144.72
+ 54 32.8981 526 0 1 -74.731 36.6062 -204.45
+ 54 75.2871 527 0 1 -74.65 36.5695 -204.517
+ 54 642.516 528 0 1 -74.45 36.4124 -204.62
+ 54 200.818 529 0 1 -74.25 35.9034 -204.55
+ 54 227.244 1290 1 1 78.075 79.6213 -174.45
+ 54 119.104 1298 1 0 78.0734 79.6662 -175.85
+ 54 110.709 1293 0 1 78.7989 79.2553 -204.45
+ 54 171.471 1296 0 0 78.8483 79.2606 -205.85
+ 54 107.206 1218 0 0 85.731 63.7879 -206.25
+Number of digits in this event = 23
Using G4ParticleGun ...
-7.46521 LIN
+3.04013 LIN
e-
Event: 55
-Number of tracker hits in this event = 119
- 55 111.624 1535 9 1 127.206 36.3983 65.55
- 55 139.752 1081 9 0 127.206 36.3962 64.15
- 55 130.767 1535 8 1 127.208 36.354 35.55
- 55 119.761 1081 8 0 127.209 36.3525 34.15
- 55 237.798 1535 7 1 127.229 36.3255 5.55
- 55 153.321 1081 7 0 127.229 36.3238 4.15
- 55 163.674 1535 6 1 127.243 36.2926 -24.45
- 55 280.509 1081 6 0 127.245 36.2901 -25.85
- 55 479.074 1535 5 1 127.279 36.2396 -54.45
- 55 120.15 1080 5 0 127.28 36.2372 -55.85
- 55 151.335 1535 4 1 127.299 36.1892 -84.45
- 55 182.518 1080 4 0 127.298 36.1878 -85.85
- 55 100.813 1535 3 1 127.298 36.1585 -114.45
- 55 121.003 1080 3 0 127.298 36.1576 -115.85
- 55 157.217 1535 2 1 127.295 36.141 -144.45
- 55 116.436 1080 2 0 127.296 36.1406 -145.85
- 55 97.4967 1535 1 1 127.299 36.126 -174.45
- 55 122.129 1080 1 0 127.3 36.1255 -175.85
- 55 194.073 1535 0 1 127.319 36.1137 -204.45
- 55 142.211 1080 0 0 127.32 36.1143 -205.85
- 55 0.368836 582 14 1 -63.4521 153.308 215.15
- 55 72.9591 646 0 0 84.8962 -50.6783 -206.25
- 55 100.944 645 0 0 84.7877 -50.85 -206.122
- 55 53.9368 644 0 0 84.4562 -51.05 -205.943
- 55 71.3325 1312 0 1 82.6478 -50.8968 -204.85
- 55 72.6324 1311 0 1 82.45 -50.8819 -204.725
- 55 65.307 1310 0 1 82.2495 -50.8347 -204.641
- 55 37.8293 1309 0 1 82.0497 -50.7795 -204.536
- 55 42.5529 1308 0 1 81.8331 -50.8011 -204.45
- 55 51.763 1307 0 1 81.6491 -50.9057 -204.475
- 55 67.594 1306 0 1 81.45 -51.0127 -204.512
- 55 51.446 1305 0 1 81.25 -51.115 -204.554
- 55 58.8815 1304 0 1 81.05 -51.1962 -204.594
- 55 216.888 1303 0 1 80.85 -51.287 -204.54
- 55 69.3513 1302 0 1 80.65 -51.2276 -204.651
- 55 109.162 1301 0 1 80.4498 -51.1098 -204.659
- 55 136.916 1300 0 1 80.2496 -50.8697 -204.598
- 55 123.259 1299 0 1 80.0499 -50.5166 -204.484
- 55 93.1243 1298 0 1 79.85 -50.1943 -204.502
- 55 291.099 1297 0 1 79.65 -49.9217 -204.495
- 55 68.8612 1296 0 1 79.45 -49.2941 -204.71
- 55 259.355 655 0 0 78.7524 -48.9684 -205.85
- 55 142.688 656 0 0 78.7202 -48.85 -206.105
- 55 279.666 1536 0 1 127.431 35.999 -204.45
- 55 245.52 1079 0 0 127.585 36.0017 -205.85
- 55 356.829 1534 5 1 127.144 36.4264 -54.45
- 55 21.6906 1092 5 0 125.656 38.5781 -55.85
- 55 52.0986 1093 5 0 125.623 38.6501 -55.8923
- 55 35.9937 1094 5 0 125.712 38.8505 -55.9121
- 55 81.8497 1536 5 1 127.35 41.3198 -54.772
- 55 23.8076 1097 5 0 127.907 39.6268 -55.85
- 55 7.39175 1088 5 0 126.264 37.8327 -55.85
- 55 94.6472 1089 5 0 126.252 37.8501 -55.8665
- 55 162.257 1090 5 0 126.058 38.0502 -56.1393
- 55 55.4768 1361 5 0 80.4131 92.3895 -56.2497
- 55 91.2833 1362 5 0 80.4165 92.55 -56.1095
- 55 62.816 1363 5 0 80.4736 92.75 -56.0883
- 55 91.381 1364 5 0 80.5478 92.9505 -56.0113
- 55 56.2617 1365 5 0 80.6356 93.15 -55.8913
- 55 53.6544 1366 5 0 80.7103 93.3503 -55.86
- 55 43.5593 1367 5 0 80.7687 93.55 -55.8706
- 55 7.87736 1368 5 0 80.7967 93.75 -55.8558
- 55 9.2171 1317 5 1 83.5726 102.212 -54.85
- 55 47.7626 1424 5 0 83.993 104.983 -55.85
- 55 59.8465 1425 5 0 83.988 105.15 -55.9299
- 55 49.6846 1426 5 0 83.9605 105.35 -55.9928
- 55 61.6758 1427 5 0 83.902 105.55 -56.0573
- 55 73.7502 1428 5 0 83.8567 105.75 -56.1171
- 55 59.5046 1429 5 0 83.8331 105.95 -56.1442
- 55 69.6551 1430 5 0 83.778 106.15 -56.1701
- 55 80.3596 1431 5 0 83.6897 106.35 -56.1633
- 55 100.027 1432 5 0 83.4946 106.55 -56.1442
- 55 80.5399 1433 5 0 83.3956 106.75 -56.1037
- 55 115.365 1434 5 0 83.2583 106.95 -56.1073
- 55 119.182 1539 5 1 127.98 35.9465 -54.45
- 55 87.0852 1078 5 0 128.329 35.6995 -55.85
- 55 34.9901 1077 5 0 128.397 35.65 -56.1427
- 55 275.548 1570 4 1 134.232 30.4103 -84.45
- 55 5.9221 1571 4 1 134.35 30.2769 -84.826
- 55 71.4298 1049 4 0 134.706 29.9126 -85.8502
- 55 118.655 1048 4 0 134.774 29.8499 -86.0313
- 55 130.158 1625 3 1 145.161 21.2598 -114.45
- 55 135.115 1004 3 0 145.37 21.0257 -115.85
- 55 143.237 1653 2 1 150.802 16.238 -144.45
- 55 29.0858 1652 2 1 150.75 16.1418 -144.75
- 55 135.722 978 2 0 150.518 15.7793 -145.85
- 55 2.26147 977 2 0 150.447 15.65 -146.236
- 55 139.037 1636 1 1 147.483 6.64407 -174.45
- 55 30.9142 1635 1 1 147.35 6.82579 -174.742
- 55 52.6115 936 1 0 146.867 7.37942 -175.85
- 55 98.458 937 1 0 146.804 7.45013 -175.996
- 55 30.5425 1585 0 1 137.162 21.024 -204.451
- 55 108.606 1584 0 1 137.15 21.0353 -204.469
- 55 66.2073 1583 0 1 136.95 21.2095 -204.732
- 55 140.701 1010 0 0 135.876 22.0542 -205.85
- 55 57.2164 1011 0 0 135.605 22.2502 -206.124
- 55 6.73336 1579 0 1 136.031 19.443 -204.85
- 55 14.7931 989 0 0 134.566 17.9234 -205.85
- 55 61.7515 1572 0 1 134.731 17.5986 -204.85
- 55 135.96 1757 0 1 171.627 17.6086 -204.45
- 55 107.91 986 0 0 171.83 17.3319 -205.85
- 55 59.8486 1060 0 0 161.049 32.1383 -206.25
- 55 79.8101 1061 0 0 160.997 32.25 -206.107
- 55 168.109 1702 0 1 160.628 32.8345 -204.849
- 55 9.85526 1701 0 1 160.55 32.9645 -204.48
- 55 136.496 1703 0 1 160.75 32.7827 -204.606
- 55 114.696 1704 0 1 160.95 32.4272 -204.695
- 55 133.013 1705 0 1 161.15 32.1413 -204.733
- 55 20.559 1046 0 0 164.139 29.3091 -205.85
- 55 141.807 1045 0 0 164.191 29.25 -205.882
- 55 280.797 1044 0 0 164.487 29.05 -206.054
- 55 51.6826 1720 0 1 164.253 29.9382 -204.85
- 55 11.8646 1052 0 0 164.732 30.6473 -205.85
- 55 289.421 1053 0 0 164.734 30.65 -205.855
- 55 242.062 1047 4 0 134.145 29.6498 -85.8755
- 55 440.836 1081 4 0 127.254 36.2576 -85.9048
- 55 76.8701 1592 3 1 138.708 43.2469 -114.45
- 55 130.594 1593 3 1 138.75 43.2914 -114.584
- 55 97.8716 1118 3 0 138.875 43.681 -115.85
-Number of digits in this event = 45
+Number of tracker hits in this event = 124
+ 55 202.448 554 10 1 -69.183 72.1235 95.55
+ 55 349.307 1260 10 0 -69.1898 72.1212 94.15
+ 55 104.17 553 9 1 -69.3285 72.0643 65.55
+ 55 205.857 1260 9 0 -69.3355 72.0644 64.15
+ 55 114.007 552 8 1 -69.4769 72.0777 35.55
+ 55 254.002 1260 8 0 -69.4845 72.0774 34.15
+ 55 173.956 552 7 1 -69.6172 72.0608 5.55
+ 55 122.711 1260 7 0 -69.6208 72.0565 4.15
+ 55 458.368 551 6 1 -69.6942 71.9847 -24.45
+ 55 250.062 1259 6 0 -69.6992 71.9835 -25.85
+ 55 113.103 551 5 1 -69.7934 71.9564 -54.45
+ 55 128.995 1259 5 0 -69.7974 71.9563 -55.85
+ 55 102.443 550 4 1 -69.8721 71.9552 -84.45
+ 55 132.468 1259 4 0 -69.8795 71.958 -85.85
+ 55 88.7297 550 3 1 -70.0329 72.011 -114.45
+ 55 114.378 1259 3 0 -70.0404 72.0127 -115.85
+ 55 297.598 549 2 1 -70.216 72.0762 -144.45
+ 55 107.303 1260 2 0 -70.2231 72.0813 -145.85
+ 55 263.511 548 1 1 -70.3726 72.1925 -174.45
+ 55 131.638 1260 1 0 -70.3809 72.1967 -175.85
+ 55 426.997 547 0 1 -70.5448 72.291 -204.45
+ 55 173.856 1261 0 0 -70.5535 72.3003 -205.85
+ 55 59.483 1526 1 0 -66.3172 125.35 -176.027
+ 55 105.459 548 2 1 -70.25 71.9442 -144.626
+ 55 109.56 550 2 1 -70.05 71.8761 -144.758
+ 55 76.7539 1264 2 0 -69.902 72.9019 -145.85
+ 55 215.656 1260 0 0 -70.4809 72.2071 -205.85
+ 55 145.344 490 2 1 -81.9875 52.669 -144.85
+ 55 17.4613 1405 8 0 -78.6948 101.234 33.75
+ 55 295.883 1345 8 0 -5.38644 89.1927 33.75
+ 55 127.874 479 5 1 -84.2002 70.7281 -54.45
+ 55 44.8008 480 5 1 -84.05 70.7516 -54.714
+ 55 14.4413 1255 5 0 -83.2241 71.2344 -55.85
+ 55 233.958 1256 5 0 -83.1989 71.25 -55.8873
+ 55 218.765 630 4 1 -54.0093 86.6142 -84.45
+ 55 43.9324 629 4 1 -54.05 86.0779 -84.8044
+ 55 23.9576 1322 4 0 -54.0882 84.5616 -85.8501
+ 55 175.009 1321 4 0 -54.0967 84.45 -85.8822
+ 55 125.207 1353 4 0 -15.8883 90.8315 -86.25
+ 55 187.907 817 4 1 -16.558 91.3994 -84.8499
+ 55 101.8 818 4 1 -16.45 91.8532 -84.6511
+ 55 33.9509 819 4 1 -16.25 91.9581 -84.5012
+ 55 170.999 1260 6 0 -69.7046 72.0729 -25.85
+ 55 130.037 554 5 1 -69.0622 74.4449 -54.45
+ 55 112.787 1271 5 0 -69.5172 74.4189 -55.851
+ 55 28.9394 499 4 1 -80.1989 74.6136 -84.4504
+ 55 96.3003 498 4 1 -80.25 74.6337 -84.5307
+ 55 1.43472 497 4 1 -80.45 74.7118 -84.8449
+ 55 121.552 1274 4 0 -81.0404 74.9264 -85.85
+ 55 103.794 426 3 1 -94.7793 83.2599 -114.45
+ 55 77.5404 1318 3 0 -94.9415 83.7574 -115.85
+ 55 49.681 1319 3 0 -94.991 83.85 -116.1
+ 55 96.9414 412 2 1 -97.6734 93.0552 -144.45
+ 55 137.522 411 2 1 -97.75 93.0751 -144.571
+ 55 3.95928 410 2 1 -97.95 93.1031 -144.84
+ 55 188.921 1365 2 0 -98.8195 93.2125 -145.85
+ 55 150.376 262 1 1 -127.727 100.379 -174.45
+ 55 101.551 1404 1 0 -127.422 100.986 -175.85
+ 55 23.9901 1405 1 0 -127.337 101.15 -176.177
+ 55 89.5426 306 0 1 -118.878 122.018 -204.45
+ 55 25.6424 307 0 1 -118.75 122.166 -204.799
+ 55 33.8237 1512 0 0 -118.207 122.703 -205.85
+ 55 73.2508 1513 0 0 -118.149 122.75 -205.976
+ 55 129.439 1265 1 0 -70.3695 73.0503 -175.85
+ 55 3.83807 1266 1 0 -70.3429 73.25 -176.233
+ 55 52.994 1033 1 0 -73.7861 26.8197 -176.25
+ 55 44.4023 1032 1 0 -73.8113 26.65 -176.237
+ 55 83.5991 547 1 1 -70.5067 72.0336 -174.45
+ 55 156.298 546 1 1 -70.65 71.783 -174.498
+ 55 132.945 545 1 1 -70.85 71.3959 -174.522
+ 55 25.8559 544 1 1 -71.0502 71.114 -174.769
+ 55 615.889 1249 1 0 -71.6667 70.0172 -175.85
+ 55 182.694 1250 1 0 -72.2347 70.05 -176
+ 55 175.355 1259 9 0 -69.3831 72.05 64.019
+ 55 29.7685 989 0 0 -63.3339 18.05 -205.903
+ 55 82.5517 585 0 1 -62.9233 17.6648 -204.85
+ 55 137.308 553 10 1 -69.25 72.119 95.4068
+ 55 144.496 482 9 1 -83.4647 71.8684 65.55
+ 55 1.73221 481 9 1 -83.65 71.6756 65.1548
+ 55 154.585 1255 9 0 -84.1979 71.2384 64.1492
+ 55 147.107 403 8 1 -99.3975 63.8334 35.55
+ 55 40.8759 1212 8 0 -99.3327 62.5767 34.1499
+ 55 76.4385 1211 8 0 -99.3256 62.45 34.017
+ 55 13.6969 1210 8 0 -99.3088 62.25 33.7953
+ 55 194.407 418 7 1 -96.3552 37.4454 5.55
+ 55 35.1644 1081 7 0 -96.5513 36.3133 4.14985
+ 55 112.072 1080 7 0 -96.5605 36.25 4.07211
+ 55 19.5525 1079 7 0 -96.5866 36.05 3.82052
+ 55 144.061 401 6 1 -99.7597 16.0169 -24.4503
+ 55 23.1128 400 6 1 -99.95 15.7523 -24.7838
+ 55 0.66763 975 6 0 -100.574 15.0524 -25.85
+ 55 92.4543 974 6 0 -100.576 15.05 -25.8536
+ 55 40.1129 973 6 0 -100.751 14.85 -26.1517
+ 55 65.5588 556 6 0 -134.334 -68.6534 -26.2499
+ 55 52.9867 555 6 0 -134.402 -68.85 -26.1634
+ 55 50.8842 554 6 0 -134.47 -69.05 -26.0719
+ 55 83.7216 553 6 0 -134.533 -69.25 -25.9704
+ 55 16.9298 552 6 0 -134.591 -69.45 -25.8746
+ 55 284.74 224 6 1 -135.161 -71.7027 -24.8499
+ 55 5.18153 418 7 0 -129.476 -96.5423 3.75
+ 55 83.8608 417 7 0 -129.474 -96.5501 3.75916
+ 55 75.2757 416 7 0 -129.416 -96.75 3.99357
+ 55 44.9541 254 7 1 -129.168 -97.286 5.15015
+ 55 345.148 255 7 1 -129.15 -97.3274 5.24322
+ 55 151.516 369 8 0 -118.65 -106.246 33.7509
+ 55 98.7615 368 8 0 -118.505 -106.35 34.0913
+ 55 125.154 309 8 1 -118.194 -106.81 35.15
+ 55 12.5329 310 8 1 -118.15 -106.9 35.4925
+ 55 38.0149 280 9 0 -116.805 -124.091 63.75
+ 55 87.3112 279 9 0 -116.801 -124.15 63.8504
+ 55 172.792 315 9 1 -116.955 -124.9 65.15
+ 55 6.31933 172 10 0 -110.751 -145.735 93.75
+ 55 153.734 171 10 0 -110.746 -145.75 93.7699
+ 55 59.8517 170 10 0 -110.678 -145.95 94.0065
+ 55 20.0522 169 10 0 -110.638 -146.15 94.1219
+ 55 278.467 349 10 1 -110.281 -147.887 95.15
+ 55 162.541 350 10 1 -110.15 -148.574 95.4848
+ 55 80.978 153 10 0 -110.835 -149.358 94.15
+ 55 93.5269 152 10 0 -110.931 -149.55 93.9927
+ 55 62.9513 151 10 0 -111.053 -149.75 93.8536
+ 55 3.34351 150 10 0 -111.17 -149.95 93.7515
+ 55 267.092 315 5 1 -117.058 -7.6132 -54.45
+ 55 64.696 314 5 1 -117.15 -7.88664 -54.7092
+ 55 181.628 316 5 1 -116.95 -8.36929 -54.4724
+Number of digits in this event = 55
Using G4ParticleGun ...
-6.58335 LIN
+9.73663 LIN
e-
Event: 56
-Number of tracker hits in this event = 105
- 56 92.5387 1323 9 1 84.6627 102.074 65.55
- 56 182.724 1409 9 0 84.662 102.075 64.15
- 56 203.767 1323 8 1 84.6522 102.095 35.55
- 56 143.091 1409 8 0 84.6513 102.096 34.15
- 56 439.832 1322 7 1 84.6342 102.112 5.55
- 56 271.281 1409 7 0 84.6308 102.112 4.15
- 56 124.579 1322 6 1 84.5622 102.125 -24.45
- 56 108.133 1409 6 0 84.5587 102.126 -25.85
- 56 119.035 1322 5 1 84.4784 102.126 -54.45
- 56 114.944 1409 5 0 84.4744 102.125 -55.85
- 56 230.827 1321 4 1 84.3938 102.11 -84.45
- 56 182.685 1409 4 0 84.3891 102.11 -85.85
- 56 121.463 1321 3 1 84.29 102.107 -114.45
- 56 203.732 1409 3 0 84.2849 102.106 -115.85
- 56 114.386 1320 2 1 84.1768 102.084 -144.45
- 56 144.08 1409 2 0 84.1734 102.085 -145.85
- 56 157.459 1320 1 1 84.1035 102.094 -174.45
- 56 107.779 1409 1 0 84.0996 102.093 -175.85
- 56 175.091 1319 0 1 84.0207 102.091 -204.45
- 56 137.706 1409 0 0 84.0156 102.092 -205.85
- 56 250.372 201 3 1 -139.75 97.5022 -114.684
- 56 68.4958 200 3 1 -139.95 97.5124 -114.496
- 56 82.8421 1294 2 0 9.37031 78.9243 -146.25
- 56 85.6963 1730 0 1 166.15 41.0207 -204.807
- 56 15.4393 1729 0 1 166.15 40.9857 -204.771
- 56 61.0473 1321 7 1 84.45 101.999 5.30127
- 56 137.493 1408 7 0 83.3799 101.822 4.14993
- 56 54.4647 1169 6 1 53.9687 98.2876 -24.4504
- 56 95.7919 1168 6 1 53.8498 98.2639 -24.6302
- 56 150.706 1389 6 0 53.1304 98.0394 -25.8501
- 56 14.5552 1074 5 1 34.884 92.6179 -54.45
- 56 108.721 1073 5 1 34.85 92.595 -54.4945
- 56 58.5701 1072 5 1 34.65 92.4615 -54.7286
- 56 106.613 1358 5 0 33.8062 91.8743 -55.85
- 56 75.3313 1357 5 0 33.6254 91.75 -56.0842
- 56 24.2933 956 4 1 11.2788 77.7837 -84.4501
- 56 95.0141 955 4 1 11.25 77.7818 -84.5399
- 56 19.3901 1288 4 0 10.7092 77.6575 -85.8501
- 56 90.1212 1287 4 0 10.6715 77.65 -85.9242
- 56 412.728 1415 4 0 -23.8535 103.229 -86.25
- 56 260.831 1416 4 0 -23.9225 103.35 -86.1721
- 56 37.3594 786 4 1 -22.755 103.28 -84.8499
- 56 94.7729 787 4 1 -22.65 103.27 -84.7651
- 56 249.487 788 4 1 -22.45 103.271 -84.7678
- 56 224.167 1414 4 0 -20.3333 103.15 -85.9534
- 56 418.183 1413 4 0 -20.1637 102.95 -85.9838
- 56 106.381 1412 4 0 -19.7303 102.75 -86.0756
- 56 47.0346 1411 4 0 -19.4542 102.55 -86.174
- 56 73.9165 1410 4 0 -19.4234 102.35 -86.1439
- 56 14.1065 1408 4 0 -19.6031 101.949 -86.2414
- 56 3.69402 1321 4 0 -45.953 84.4432 -86.25
- 56 65.9987 1322 4 0 -45.9623 84.45 -86.244
- 56 34.5934 1398 4 0 -16.9349 99.95 -86.1734
- 56 122.21 1326 1 1 85.4005 99.9736 -174.45
- 56 140.985 1398 1 0 85.3432 99.9179 -175.85
- 56 52.755 1318 0 1 83.85 96.7298 -204.724
- 56 122.557 1382 0 0 83.4129 96.6376 -205.85
- 56 195.229 1399 1 0 85.3746 99.95 -175.975
- 56 99.5651 1276 6 1 75.4272 103.108 -24.4502
- 56 58.6235 1275 6 1 75.25 103.289 -24.7088
- 56 84.1404 1419 6 0 74.533 104.093 -25.85
- 56 123.327 1420 6 0 74.4824 104.15 -25.9304
- 56 14.3621 1421 6 0 74.3155 104.35 -26.2127
- 56 71.9852 1189 5 1 57.9993 125.377 -54.45
- 56 85.2247 1188 5 1 57.85 125.482 -54.6222
- 56 1.59372 1187 5 1 57.65 125.634 -54.8438
- 56 96.319 1531 5 0 56.7105 126.373 -55.85
- 56 65.0674 1532 5 0 56.4851 126.55 -56.1038
- 56 15.88 1056 4 1 31.2867 148.117 -84.45
- 56 88.445 1055 4 1 31.2496 148.099 -84.4914
- 56 74.5091 1054 4 1 31.05 148.009 -84.7154
- 56 203.481 1637 4 0 29.9944 147.65 -85.8501
- 56 1.90958 1636 4 0 29.6376 147.55 -86.2456
- 56 0.188851 922 3 1 4.45056 141.435 -114.45
- 56 77.1477 921 3 1 4.45 141.435 -114.451
- 56 56.3446 920 3 1 4.24993 141.408 -114.593
- 56 64.2632 919 3 1 4.04996 141.383 -114.741
- 56 176.35 1604 3 0 2.51705 141.058 -115.85
- 56 76.8767 743 2 1 -31.2989 131.382 -144.45
- 56 109.112 742 2 1 -31.45 131.254 -144.614
- 56 5.17327 741 2 1 -31.65 131.106 -144.835
- 56 21.5247 1552 2 0 -32.6819 130.566 -145.85
- 56 233.355 1551 2 0 -32.7124 130.55 -145.879
- 56 76.688 1550 2 0 -33.0773 130.35 -146.217
- 56 280.282 599 1 1 -60.1513 112.633 -174.45
- 56 2.58307 1455 1 0 -60.4069 111.16 -175.85
- 56 119.768 1454 1 0 -60.4088 111.15 -175.86
- 56 103.579 1453 1 0 -60.45 110.95 -176.099
- 56 55.4325 603 0 1 -59.329 95.8123 -204.45
- 56 97.5534 604 0 1 -59.25 95.7436 -204.585
- 56 198.261 1373 0 0 -58.18 94.9431 -205.85
- 56 33.5144 1412 0 0 -34.8191 102.68 -206.25
- 56 189.913 1413 0 0 -34.739 102.75 -206.174
- 56 134.607 731 0 1 -33.8195 103.156 -204.85
- 56 25.2576 732 0 1 -33.65 103.217 -204.527
- 56 38.0322 733 0 1 -33.333 103.105 -204.45
- 56 320.277 734 0 1 -33.25 103.111 -204.533
- 56 84.651 1419 0 0 -33.3578 104.024 -205.85
- 56 398.676 1420 0 0 -33.3476 104.15 -206.024
- 56 105.201 1421 0 0 -33.2655 104.35 -206.054
- 56 27.9999 1422 0 0 -33.2589 104.55 -206.169
- 56 184.829 1549 2 0 -30.8475 130.15 -146.049
- 56 93.4138 1548 2 0 -30.8066 129.95 -145.932
- 56 323.39 745 2 1 -30.8502 130.143 -144.85
- 56 9.23305 879 2 1 -4.05 162.03 -144.488
-Number of digits in this event = 40
+Number of tracker hits in this event = 62
+ 56 112.446 1194 11 1 58.9066 -51.8888 125.55
+ 56 193.858 640 11 0 58.907 -51.8886 124.15
+ 56 283.462 1194 10 1 58.9142 -51.8861 95.55
+ 56 112.197 640 10 0 58.9144 -51.8867 94.15
+ 56 150.67 1194 9 1 58.9163 -51.8986 65.55
+ 56 117.9 640 9 0 58.9163 -51.8989 64.15
+ 56 142.901 1194 8 1 58.9128 -51.9085 35.55
+ 56 107.538 640 8 0 58.912 -51.9084 34.15
+ 56 116.559 1194 7 1 58.8963 -51.9093 5.55
+ 56 124.687 640 7 0 58.8958 -51.9088 4.15
+ 56 119.619 1194 6 1 58.8845 -51.9017 -24.45
+ 56 105.812 640 6 0 58.8832 -51.9007 -25.85
+ 56 95.3541 1194 5 1 58.8548 -51.879 -54.45
+ 56 124.656 640 5 0 58.8554 -51.8772 -55.85
+ 56 466.863 1194 4 1 58.8624 -51.8424 -84.45
+ 56 116.441 641 4 0 58.8654 -51.8441 -85.85
+ 56 240.484 1194 3 1 58.9198 -51.8695 -114.45
+ 56 261.448 640 3 0 58.9247 -51.8663 -115.85
+ 56 190.542 1194 2 1 59.0475 -51.802 -144.45
+ 56 118.104 641 2 0 59.0526 -51.7995 -145.85
+ 56 192.001 1195 1 1 59.1666 -51.7629 -174.45
+ 56 131.045 641 1 0 59.1704 -51.7609 -175.85
+ 56 148.011 1195 0 1 59.2354 -51.7363 -204.45
+ 56 132.578 641 0 0 59.2368 -51.734 -205.85
+ 56 23.7379 641 10 0 59.1164 -51.6777 94.15
+ 56 99.2906 642 10 0 59.1339 -51.65 94.0288
+ 56 18.1833 798 10 0 73.0791 -20.3065 93.75
+ 56 76.7237 799 10 0 73.1016 -20.2495 93.8342
+ 56 14.4483 800 10 0 73.223 -20.05 94.1083
+ 56 60.5151 1268 10 1 73.7754 -19.2342 95.15
+ 56 115.847 1269 10 1 73.85 -19.1285 95.2922
+ 56 111.866 1270 10 1 74.0537 -18.9968 95.5498
+ 56 220.525 1271 10 1 74.25 -18.6438 95.4351
+ 56 64.6177 822 10 0 72.7515 -15.5818 94.1499
+ 56 114.956 823 10 0 72.6209 -15.45 94.0243
+ 56 8.83454 824 10 0 72.3942 -15.25 93.7666
+ 56 213.886 1298 10 0 7.77648 79.6535 93.75
+ 56 225.032 938 10 1 7.75196 79.7872 95.15
+ 56 217.504 937 10 1 7.64992 79.661 95.5261
+ 56 174.548 1297 10 0 7.44827 79.5562 94.1494
+ 56 265.337 640 4 0 58.94 -51.9625 -85.85
+ 56 151.899 1195 2 1 59.1169 -52.0112 -144.45
+ 56 124.072 640 2 0 59.1246 -52.0139 -145.85
+ 56 137.262 1196 1 1 59.2834 -52.0647 -174.45
+ 56 159.246 639 1 0 59.2879 -52.0648 -175.85
+ 56 115.754 1196 0 1 59.3819 -52.0713 -204.45
+ 56 135.799 639 0 0 59.3869 -52.0718 -205.85
+ 56 16.3361 1205 0 1 61.1569 -16.3964 -204.85
+ 56 127.636 1197 0 1 59.4824 -52.1218 -204.45
+ 56 110.989 640 0 0 59.3779 -52.0267 -205.85
+ 56 417.19 765 0 0 51.3852 -26.9968 -206.25
+ 56 131.781 1193 4 1 58.85 -51.8322 -84.7087
+ 56 249.869 1192 4 1 58.65 -51.6129 -84.6707
+ 56 124.439 1195 3 1 59.0747 -51.0395 -114.45
+ 56 281.052 645 3 0 59.0887 -50.9747 -115.85
+ 56 134.924 1196 2 1 59.3987 -49.898 -144.45
+ 56 115.662 650 2 0 59.4283 -49.8924 -145.85
+ 56 176.149 1199 1 1 60.0372 -49.6618 -174.45
+ 56 104.384 652 1 0 60.0137 -49.6217 -175.85
+ 56 313.532 1199 0 1 60.0254 -49.0094 -204.45
+ 56 66.4469 655 0 0 59.9699 -48.8719 -205.85
+ 56 72.7367 656 0 0 59.9615 -48.85 -206.052
+Number of digits in this event = 36
Using G4ParticleGun ...
-4.07335 LIN
+5.80899 LIN
e-
Event: 57
-Number of tracker hits in this event = 23
- 57 161.981 1221 9 1 64.4338 117.015 65.55
- 57 125.633 1484 9 0 64.4311 117.013 64.15
- 57 155.887 1221 8 1 64.3747 116.961 35.55
- 57 100.861 1484 8 0 64.3727 116.959 34.15
- 57 261.023 1221 7 1 64.3279 116.916 5.55
- 57 169.964 1483 7 0 64.3274 116.915 4.15
- 57 108.713 1221 6 1 64.3139 116.887 -24.45
- 57 155.912 1483 6 0 64.3135 116.886 -25.85
- 57 99.3694 1221 5 1 64.3204 116.878 -54.45
- 57 104.499 1483 5 0 64.3227 116.878 -55.85
- 57 204.191 1221 4 1 64.3706 116.875 -84.45
- 57 136.227 1483 4 0 64.371 116.872 -85.85
- 57 212.025 1221 3 1 64.3739 116.811 -114.45
- 57 109.457 1483 3 0 64.3786 116.81 -115.85
- 57 172.662 1222 2 1 64.5557 116.887 -144.45
- 57 160.012 1483 2 0 64.5757 116.895 -145.85
- 57 300.356 1225 1 1 65.1066 117.032 -174.45
- 57 155.103 1484 1 0 65.1386 117.044 -175.85
- 57 153.748 1229 0 1 65.8634 117.225 -204.45
- 57 127.927 1485 0 0 65.9023 117.219 -205.85
- 57 60.32 1224 1 1 65.05 117.342 -174.564
- 57 21.1556 741 2 1 -31.7043 101.03 -144.45
- 57 307.6 742 2 1 -31.65 101.023 -144.491
-Number of digits in this event = 18
-Using G4ParticleGun ...
-4.14092 LIN
+Number of tracker hits in this event = 132
+ 57 155.378 1145 11 1 49.1548 61.073 125.55
+ 57 119.395 1205 11 0 49.1538 61.0726 124.15
+ 57 150.598 1145 10 1 49.1338 61.0613 95.55
+ 57 181.57 1205 10 0 49.1331 61.0616 94.15
+ 57 136.194 1145 9 1 49.1188 61.065 65.55
+ 57 103.018 1205 9 0 49.119 61.0668 64.15
+ 57 427.326 1145 8 1 49.1243 61.1117 35.55
+ 57 490.415 1205 8 0 49.1252 61.1163 34.15
+ 57 116.419 1145 7 1 49.1466 61.2175 5.55
+ 57 442.126 1205 7 0 49.1468 61.2209 4.15
+ 57 282.144 1145 6 1 49.1496 61.2982 -24.45
+ 57 107.276 1206 6 0 49.1473 61.3033 -25.85
+ 57 259.076 1145 5 1 49.104 61.4161 -54.45
+ 57 102.496 1206 5 0 49.104 61.4223 -55.85
+ 57 534.343 1145 4 1 49.0936 61.5509 -84.45
+ 57 358.855 1207 4 0 49.092 61.5602 -85.85
+ 57 310.451 1145 3 1 49.0565 61.748 -114.45
+ 57 196.496 1208 3 0 49.055 61.7577 -115.85
+ 57 276.198 1144 2 1 49.0209 61.9567 -144.45
+ 57 121.056 1209 2 0 49.0202 61.9671 -145.85
+ 57 132.02 1144 1 1 49.0066 62.1838 -174.45
+ 57 140.977 1210 1 0 49.0062 62.1956 -175.85
+ 57 298.837 1144 0 1 49.0109 62.4453 -204.45
+ 57 241.933 1212 0 0 49.0132 62.4584 -205.85
+ 57 22.5669 906 1 0 111.74 1.43498 -176.25
+ 57 137.922 1211 0 0 48.8967 62.45 -206.172
+ 57 217.861 1167 0 0 44.9325 53.5479 -206.25
+ 57 8.82598 1166 0 0 45.0757 53.45 -206.018
+ 57 215.131 1126 0 1 45.2522 57.4129 -204.85
+ 57 3.45429 1125 0 1 45.25 57.4329 -204.845
+ 57 11.7206 1179 0 0 43.1597 55.8644 -206.25
+ 57 111.969 1178 0 0 43.1449 55.85 -206.202
+ 57 57.4658 1177 0 0 43.0184 55.65 -205.964
+ 57 1.16789 1111 0 1 42.2531 53.7196 -204.85
+ 57 178.749 1110 0 1 42.25 53.7144 -204.845
+ 57 16.3536 1042 0 0 10.3356 28.551 -206.25
+ 57 131.006 1352 1 0 34.8025 90.6126 -176.25
+ 57 54.2535 1231 0 1 66.25 135.796 -204.797
+ 57 9.0204 1150 3 1 50.2451 60.993 -114.45
+ 57 87.9026 1151 3 1 50.2501 60.9906 -114.491
+ 57 121.028 1204 3 0 50.4046 60.9106 -115.85
+ 57 183.95 1167 2 1 53.5367 59.5409 -144.45
+ 57 117.776 1196 2 0 53.707 59.4051 -145.85
+ 57 203.497 1188 1 1 57.7229 56.3906 -174.45
+ 57 103.365 1181 1 0 58.0165 56.2831 -175.85
+ 57 30.5667 1219 0 1 64.0281 53.9802 -204.45
+ 57 79.8777 1220 0 1 64.05 53.9631 -204.547
+ 57 127.907 1168 0 0 64.3547 53.7316 -205.85
+ 57 123.514 1198 2 0 53.0772 59.7258 -145.85
+ 57 271.614 1199 2 0 52.6758 59.8501 -146.024
+ 57 162.313 1248 2 0 27.41 69.6864 -146.25
+ 57 61.6817 1249 2 0 27.7528 69.85 -145.966
+ 57 27.2861 1046 2 1 29.3916 71.721 -144.85
+ 57 191.367 1047 2 1 29.45 71.8161 -144.808
+ 57 17.0624 1048 2 1 29.6501 72.0352 -144.807
+ 57 133.192 1263 2 0 30.328 72.757 -145.85
+ 57 265.251 1264 2 0 30.428 72.85 -145.96
+ 57 45.4315 1044 2 1 28.8972 74.608 -144.85
+ 57 173.195 1043 2 1 28.85 74.6803 -144.783
+ 57 157.408 1209 3 0 49.2727 61.911 -115.85
+ 57 282.203 1144 7 1 48.9209 61.229 5.55
+ 57 132.447 1143 6 1 48.8277 61.4881 -24.45
+ 57 115.901 1207 6 0 48.8291 61.5044 -25.85
+ 57 229.216 1143 5 1 48.8278 61.8979 -54.45
+ 57 150.704 1209 5 0 48.8187 61.9147 -55.85
+ 57 143.008 1143 4 1 48.6619 62.2829 -84.45
+ 57 136.211 1211 4 0 48.6678 62.3132 -85.85
+ 57 270.558 1143 3 1 48.8254 62.9747 -114.45
+ 57 93.3556 1214 3 0 48.8353 63.0107 -115.85
+ 57 126.4 1218 2 0 49.0526 63.7907 -145.85
+ 57 164.409 1147 1 1 49.508 64.4848 -174.45
+ 57 143.111 1222 1 0 49.5193 64.4956 -175.85
+ 57 284.894 1148 0 1 49.7455 64.7325 -204.45
+ 57 206.737 1223 0 0 49.7523 64.7491 -205.85
+ 57 88.9175 1145 2 1 49.05 63.7311 -144.652
+ 57 70.8407 1144 5 1 48.8501 61.8805 -54.5744
+ 57 2.47768 1144 3 1 48.85 62.2286 -114.839
+ 57 278.845 1185 2 1 57.0762 57.086 -144.45
+ 57 29.1553 1186 2 1 57.25 56.252 -144.796
+ 57 26.9795 1172 2 0 57.6246 54.5607 -145.85
+ 57 61.4546 1171 2 0 57.6291 54.45 -145.924
+ 57 54.3111 1170 2 0 57.6145 54.25 -146.052
+ 57 93.6446 1169 2 0 57.5937 54.0493 -146.174
+ 57 21.6681 1164 1 1 52.988 -0.785289 -174.45
+ 57 123.483 1165 1 1 53.05 -0.75012 -174.529
+ 57 62.1727 1166 1 1 53.25 -0.660711 -174.725
+ 57 78.781 900 1 0 54.0911 0.176796 -175.85
+ 57 159.668 901 1 0 54.1609 0.25 -176.016
+ 57 104.854 950 1 0 37.9024 10.2027 -176.25
+ 57 54.8279 949 1 0 37.8005 10.05 -175.968
+ 57 14.1602 948 1 0 37.7369 9.85 -175.882
+ 57 62.0097 1086 1 1 37.2579 8.7232 -174.85
+ 57 347.721 1085 1 1 37.2498 8.70649 -174.836
+ 57 26.3298 1084 1 1 37.05 8.2956 -174.461
+ 57 198.375 946 1 0 38.7218 9.2853 -175.85
+ 57 165.493 1102 1 1 40.5104 9.21681 -174.85
+ 57 137.079 1205 6 0 49.0681 61.062 -25.85
+ 57 128.742 1204 5 0 49.1748 60.9489 -55.85
+ 57 124.527 1146 4 1 49.2652 60.7209 -84.45
+ 57 156.028 1203 4 0 49.2676 60.7104 -85.85
+ 57 128.638 1146 3 1 49.3643 60.525 -114.45
+ 57 121.417 1202 3 0 49.3674 60.5046 -115.85
+ 57 117.26 1146 2 1 49.4046 60.0482 -144.45
+ 57 105.921 1145 1 1 49.2475 59.4801 -174.45
+ 57 94.959 1197 1 0 49.2413 59.463 -175.85
+ 57 103.561 1145 0 1 49.1054 59.108 -204.45
+ 57 118.409 1195 0 0 49.1161 59.0818 -205.85
+ 57 165.258 1152 1 0 11.4999 50.6324 -176.25
+ 57 333.341 1151 1 0 11.1993 50.45 -176.05
+ 57 239.261 958 1 1 11.7495 49.6605 -174.85
+ 57 150.312 1150 1 0 11.5946 50.1273 -175.85
+ 57 302.925 1148 1 1 49.7421 60.0973 -174.45
+ 57 261.327 1200 1 0 49.7538 60.0807 -175.85
+ 57 97.0452 1199 0 0 49.7242 59.8581 -205.85
+ 57 125.289 1262 0 1 72.45 129.714 -204.822
+ 57 51.9458 1125 1 0 11.9677 45.1258 -176.25
+ 57 150.778 1124 1 0 11.8206 45.05 -176.158
+ 57 119.672 953 1 1 10.663 45.7491 -174.85
+ 57 156.919 952 1 1 10.6496 45.7597 -174.836
+ 57 169.921 951 1 1 10.45 45.8562 -174.557
+ 57 70.4737 954 1 1 10.8503 45.3852 -174.705
+ 57 79.1504 955 1 1 11.05 45.4215 -174.703
+ 57 87.7799 956 1 1 11.2504 45.4777 -174.716
+ 57 80.163 957 1 1 11.4501 45.3454 -174.74
+ 57 192.059 1126 1 0 11.6817 45.3392 -175.85
+ 57 128.389 1153 0 1 50.7296 61.1939 -204.45
+ 57 98.9705 1205 0 0 50.7566 61.1957 -205.85
+ 57 176.282 1029 0 0 34.4998 26.05 -206.056
+ 57 61.2812 1146 11 1 49.25 61.0808 125.432
+ 57 53.8152 1147 11 1 49.4503 61.0265 125.357
+ 57 157.076 1148 11 1 49.65 60.9607 125.363
+ 57 57.0661 1149 11 1 49.85 60.9798 125.484
+Number of digits in this event = 76
+Using G4ParticleGun ...
+6.04617 LIN
e-
Event: 58
-Number of tracker hits in this event = 108
- 58 202.272 1261 11 1 72.4192 -1.34729 125.55
- 58 106.798 893 11 0 72.419 -1.34777 124.15
- 58 98.1456 1261 10 1 72.4176 -1.36007 95.55
- 58 102.021 893 10 0 72.4202 -1.36322 94.15
- 58 137.534 1262 9 1 72.4699 -1.4252 65.55
- 58 138.116 893 9 0 72.469 -1.4303 64.15
- 58 148.484 1261 8 1 72.4498 -1.54008 35.55
- 58 131.818 892 8 0 72.4481 -1.544 34.15
- 58 228.975 1261 7 1 72.4051 -1.63294 5.55
- 58 108.903 892 7 0 72.4016 -1.64089 4.15
- 58 112 1261 6 1 72.3384 -1.8204 -24.45
- 58 124.071 891 6 0 72.3329 -1.82611 -25.85
- 58 140.398 1260 5 1 72.2366 -1.94392 -54.45
- 58 148.568 890 5 0 72.2312 -1.95003 -55.85
- 58 111.981 1260 4 1 72.1206 -2.07681 -84.45
- 58 128.334 889 4 0 72.1148 -2.08486 -85.85
- 58 91.1594 1259 3 1 72.0044 -2.25298 -114.45
- 58 102.689 888 3 0 71.9996 -2.25974 -115.85
- 58 385.046 1259 2 1 71.9009 -2.40305 -144.45
- 58 151.866 888 2 0 71.8996 -2.406 -145.85
- 58 116.727 1259 1 1 71.8805 -2.45519 -174.45
- 58 381.398 887 1 0 71.87 -2.45993 -175.85
- 58 137.324 1258 0 1 71.6612 -2.56514 -204.45
- 58 104.61 887 0 0 71.6441 -2.57711 -205.85
- 58 150.321 688 1 1 -42.2765 -117.538 -174.85
- 58 84.7159 687 1 1 -42.45 -117.755 -174.731
- 58 451.169 686 1 1 -42.65 -117.77 -174.569
- 58 352.838 887 2 0 71.9396 -2.55722 -145.85
- 58 188.33 1269 1 1 73.9644 -5.96414 -174.45
- 58 115.637 867 1 0 73.7267 -6.5007 -175.85
- 58 21.5029 1252 0 1 70.5072 -15.6997 -204.45
- 58 143.931 1251 0 1 70.45 -15.6597 -204.495
- 58 118.45 1250 0 1 70.25 -15.5356 -204.628
- 58 45.447 1249 0 1 70.05 -15.4167 -204.747
- 58 292.622 827 0 0 68.6789 -14.5964 -205.85
- 58 96.1282 828 0 0 68.3538 -14.45 -206.11
- 58 92.2714 1005 0 0 61.7531 21.2052 -206.25
- 58 184.43 1006 0 0 61.7883 21.25 -206.22
- 58 48.9632 1007 0 0 62.0233 21.4503 -206.007
- 58 27.1567 1213 0 1 62.7964 21.9661 -204.85
- 58 92.8015 1214 0 1 62.85 22.0121 -204.756
- 58 127.414 1215 0 1 63.1226 22.2483 -204.45
- 58 79.9319 1004 0 0 63.4645 21.05 -206.108
- 58 4.25115 1003 0 0 63.4194 20.85 -206.24
- 58 32.0509 1071 2 0 15.3499 34.3793 -146.25
- 58 524.716 1072 2 0 15.2672 34.45 -146.199
- 58 28.0117 969 2 1 13.9027 34.9416 -144.85
- 58 136.142 968 2 1 13.8495 34.9905 -144.776
- 58 64.5207 967 2 1 13.6499 35.0864 -144.649
- 58 155.658 966 2 1 13.45 35.0103 -144.671
- 58 36.4956 965 2 1 13.25 34.8767 -144.551
- 58 108.928 975 2 1 15.1611 34.6907 -144.85
- 58 269.704 976 2 1 15.2501 34.5792 -144.654
- 58 115.695 1256 1 1 71.2893 -3.40383 -174.45
- 58 38.2303 1257 1 1 71.4501 -3.59308 -174.738
- 58 47.6995 878 1 0 72.2258 -4.3582 -175.85
- 58 76.1128 877 1 0 72.3301 -4.45 -175.976
- 58 53.9345 876 1 0 72.5491 -4.65 -176.164
- 58 9.52847 308 1 0 109.713 -118.516 -176.25
- 58 68.3982 307 1 0 109.706 -118.55 -176.234
- 58 68.713 306 1 0 109.674 -118.75 -176.122
- 58 54.1593 305 1 0 109.653 -118.95 -176.068
- 58 53.2107 304 1 0 109.652 -119.15 -175.997
- 58 70.2207 303 1 0 109.643 -119.35 -175.926
- 58 43.7862 302 1 0 109.645 -119.551 -175.875
- 58 82.8973 1448 1 1 109.86 -125.616 -174.85
- 58 11.0291 246 1 0 109.846 -130.909 -175.85
- 58 60.9972 245 1 0 109.846 -130.95 -175.859
- 58 46.5071 244 1 0 109.837 -131.15 -175.889
- 58 59.4401 243 1 0 109.846 -131.35 -175.943
- 58 77.8187 242 1 0 109.877 -131.55 -176.013
- 58 88.195 241 1 0 109.919 -131.75 -176.114
- 58 2.1764 240 1 0 109.98 -131.95 -176.243
- 58 70.1195 1564 0 1 133.024 -179.779 -204.45
- 58 69.1533 1565 0 1 133.15 -179.783 -204.679
- 58 171.2 1 0 0 133.801 -179.89 -205.85
- 58 275.168 0 0 0 134.096 -179.95 -206.147
- 58 7.0917 1446 1 1 109.496 -118.72 -174.85
- 58 109.344 160 4 0 110.69 -147.968 -86.25
- 58 151.223 161 4 0 110.699 -147.95 -86.2225
- 58 70.5569 1784 3 1 176.95 119.221 -114.572
- 58 9.69086 1448 3 1 109.95 164.879 -114.561
- 58 360.251 1260 1 1 72.1595 -2.36807 -174.45
- 58 154.961 962 0 0 69.6841 12.5354 -205.85
- 58 182.1 1275 0 1 75.0849 -4.12679 -204.45
- 58 116.239 879 0 0 75.3426 -4.16035 -205.85
- 58 81.1382 891 11 0 72.9169 -1.65327 124.15
- 58 196.332 892 11 0 72.9836 -1.65 124.091
- 58 109.077 893 8 0 72.3517 -1.36339 34.15
- 58 329.207 1262 7 1 72.4576 -1.18895 5.55
- 58 131.919 894 7 0 72.4083 -1.18938 4.15
- 58 132.047 1257 6 1 71.485 -1.00903 -24.45
- 58 141.4 895 6 0 71.4579 -0.983992 -25.85
- 58 126.968 1254 5 1 70.9425 -0.252297 -54.45
- 58 194.626 899 5 0 70.9115 -0.139285 -55.85
- 58 236.914 1252 4 1 70.5569 2.25224 -84.45
- 58 148.982 911 4 0 70.5486 2.34274 -85.85
- 58 124.065 1252 3 1 70.5398 4.06317 -114.45
- 58 113.319 920 3 0 70.5647 4.1181 -115.85
- 58 316.508 1255 2 1 71.1389 5.10388 -144.45
- 58 118.172 925 2 0 71.1342 5.13812 -145.85
- 58 276.549 1254 1 1 71.042 5.86998 -174.45
- 58 117.666 929 1 0 71.0329 5.89751 -175.85
- 58 124.048 1253 0 1 70.7688 6.47658 -204.45
- 58 143.577 932 0 0 70.7342 6.51532 -205.85
- 58 133.563 1255 1 1 71.0502 5.74954 -174.641
- 58 0.896006 936 1 0 66.8564 7.42779 -175.85
- 58 22.1417 937 1 0 66.8448 7.45 -176.196
-Number of digits in this event = 50
+Number of tracker hits in this event = 48
+ 58 120.367 1469 8 1 114.002 84.6175 35.55
+ 58 128.466 1322 8 0 114.004 84.6181 34.15
+ 58 279.496 1469 7 1 114.041 84.6348 5.55
+ 58 145.457 1322 7 0 114.043 84.636 4.15
+ 58 146.041 1469 6 1 114.058 84.6534 -24.45
+ 58 106.895 1323 6 0 114.058 84.6541 -25.85
+ 58 100.425 1469 5 1 114.049 84.6699 -54.45
+ 58 126.227 1323 5 0 114.049 84.6708 -55.85
+ 58 104.05 1469 4 1 114.031 84.6869 -84.45
+ 58 200.291 1323 4 0 114.029 84.6902 -85.85
+ 58 86.7548 1469 3 1 113.982 84.7461 -114.45
+ 58 422.344 1323 3 0 113.98 84.7498 -115.85
+ 58 104.07 1468 2 1 113.942 84.836 -144.45
+ 58 117.327 1323 2 0 113.939 84.8393 -145.85
+ 58 118.254 1468 1 1 113.883 84.9041 -174.45
+ 58 113.308 1324 1 0 113.88 84.9073 -175.85
+ 58 100.206 1468 0 1 113.805 84.973 -204.45
+ 58 121.138 1324 0 0 113.801 84.9757 -205.85
+ 58 143.99 787 4 1 -22.45 114.01 -84.6391
+ 58 45.3777 1324 2 0 113.941 84.8501 -146.14
+ 58 323.186 1467 0 1 113.581 84.8969 -204.45
+ 58 58.9204 1324 4 0 114.156 84.85 -85.9979
+ 58 75.6317 1325 4 0 114.211 85.0502 -86.0894
+ 58 51.2449 1350 4 0 124.669 90.2616 -86.25
+ 58 7.52498 1521 4 1 124.362 90.3539 -84.85
+ 58 134.385 1520 4 1 124.35 90.3551 -84.8278
+ 58 22.4684 1343 4 0 123.673 88.6936 -85.85
+ 58 8.67224 1342 4 0 123.683 88.6499 -85.8522
+ 58 56.5902 1499 4 1 120.029 83.9258 -84.85
+ 58 71.0331 1315 4 0 118.448 83.1268 -85.85
+ 58 322.587 1470 3 1 114.203 84.713 -114.45
+ 58 133.794 1473 2 1 114.865 84.5194 -144.45
+ 58 246.827 1322 2 0 114.928 84.5657 -145.85
+ 58 95.4663 1479 1 1 116.03 85.7061 -174.45
+ 58 125.567 1328 1 0 116.064 85.7647 -175.85
+ 58 115.277 1481 0 1 116.548 86.2617 -204.45
+ 58 175.424 1330 0 0 116.547 86.1868 -205.85
+ 58 115.571 1469 2 1 114.063 84.475 -144.45
+ 58 125.258 1463 1 1 112.88 84.6896 -174.45
+ 58 124.77 1323 1 0 112.798 84.7144 -175.85
+ 58 115.999 1454 0 1 110.968 85.1922 -204.45
+ 58 361.382 1325 0 0 110.924 85.1531 -205.85
+ 58 210.411 1470 0 1 114.209 84.7693 -204.45
+ 58 16.5242 1469 0 1 114.15 84.855 -204.769
+ 58 8.96393 1326 0 0 113.886 85.25 -206.22
+ 58 89.8399 1563 1 1 132.851 109.848 -174.85
+ 58 146.578 1564 1 1 132.95 109.857 -174.658
+ 58 116.005 1323 0 0 114.109 84.727 -205.85
+Number of digits in this event = 25
Using G4ParticleGun ...
-8.31592 LIN
+8.39422 LIN
e-
Event: 59
-Number of tracker hits in this event = 56
- 59 115.107 1543 9 1 128.839 -4.60245 65.55
- 59 156.23 877 9 0 128.839 -4.60195 64.15
- 59 169.079 1543 8 1 128.847 -4.59174 35.55
- 59 159.548 877 8 0 128.847 -4.59128 34.15
- 59 113.871 1543 7 1 128.856 -4.57692 5.55
- 59 189.736 877 7 0 128.856 -4.57615 4.15
- 59 117.664 1543 6 1 128.87 -4.56292 -24.45
- 59 157.718 877 6 0 128.88 -4.57348 -25.85
- 59 313.894 1544 5 1 129.083 -4.77079 -54.45
- 59 274.451 876 5 0 129.104 -4.79055 -55.85
- 59 157.581 1546 4 1 129.54 -5.14416 -84.45
- 59 131.449 874 4 0 129.556 -5.15801 -85.85
- 59 138.694 1548 3 1 129.912 -5.43635 -114.45
- 59 121.526 873 3 0 129.929 -5.44477 -115.85
- 59 149.311 1550 2 1 130.321 -5.63616 -144.45
- 59 128.67 872 2 0 130.342 -5.6368 -145.85
- 59 156.991 1553 1 1 130.818 -5.69297 -174.45
- 59 245.304 871 1 0 130.85 -5.67576 -175.85
- 59 158.778 1556 0 1 131.486 -5.38854 -204.45
- 59 237.763 873 0 0 131.533 -5.38315 -205.85
- 59 38.4458 699 1 0 -90.9106 -40.2022 -176.25
- 59 145.226 1157 1 0 170.59 51.45 -175.98
- 59 58.5545 1156 1 0 170.729 51.45 -176.102
- 59 121.655 1543 4 1 128.812 -2.59077 -84.45
- 59 242.234 888 4 0 128.885 -2.28228 -85.85
- 59 240.049 889 4 0 128.892 -2.25 -85.9959
- 59 145.021 1550 3 1 130.197 4.28553 -114.45
- 59 68.9699 922 3 0 130.256 4.60036 -115.85
- 59 64.7131 923 3 0 130.264 4.65 -116.079
- 59 197.844 1557 2 1 131.622 10.7652 -144.45
- 59 61.3808 955 2 0 131.781 11.1886 -145.85
- 59 120.528 956 2 0 131.803 11.25 -146.059
- 59 436.684 1568 1 1 133.921 20.8088 -174.45
- 59 155.04 1005 1 0 133.921 21.1848 -175.85
- 59 65.15 1006 1 0 133.92 21.2501 -176.09
- 59 125.686 1571 0 1 134.381 29.6669 -204.45
- 59 199.8 1048 0 0 134.492 29.7054 -205.85
- 59 74.7556 1541 5 1 128.513 -4.10448 -54.45
- 59 35.7503 1542 5 1 128.55 -4.07298 -54.7345
- 59 137.567 880 5 0 128.692 -3.92854 -55.85
- 59 106.812 1557 4 1 131.645 -0.238843 -84.45
- 59 129.952 1549 3 1 130.027 3.81285 -114.45
- 59 132.371 921 3 0 130.126 4.26009 -115.85
- 59 256.387 1558 2 1 131.752 13.7403 -144.45
- 59 150.707 970 2 0 132.391 14.1405 -145.85
- 59 190.687 1639 1 1 147.968 20.6508 -174.45
- 59 142.959 1004 1 0 148.547 20.9406 -175.85
- 59 137.248 1697 0 1 159.614 24.9186 -204.45
- 59 4.4847 1024 0 0 159.887 24.851 -205.85
- 59 131.527 1023 0 0 159.891 24.85 -205.868
- 59 85.3289 1546 2 1 129.39 -4.32682 -144.45
- 59 100.368 1545 2 1 129.35 -4.21165 -144.651
- 59 59.483 1428 12 1 105.911 46.2901 155.15
- 59 384.981 914 2 0 117.176 2.86131 -146.25
- 59 78.3915 913 2 0 117.185 2.85 -146.236
- 59 79.929 1019 5 1 24.05 10.8098 -54.7186
-Number of digits in this event = 41
+Number of tracker hits in this event = 36
+ 59 105.228 333 8 1 -113.431 -82.3985 35.55
+ 59 103.677 488 8 0 -113.43 -82.3991 34.15
+ 59 141.2 333 7 1 -113.42 -82.4152 5.55
+ 59 116.859 488 7 0 -113.419 -82.416 4.15
+ 59 133.713 333 6 1 -113.409 -82.4256 -24.45
+ 59 135.597 488 6 0 -113.407 -82.4255 -25.85
+ 59 151.023 333 5 1 -113.365 -82.4308 -54.45
+ 59 147.617 488 5 0 -113.362 -82.4305 -55.85
+ 59 107.753 334 4 1 -113.326 -82.425 -84.45
+ 59 175.315 488 4 0 -113.324 -82.4289 -85.85
+ 59 125.797 334 3 1 -113.265 -82.4968 -114.45
+ 59 161.198 487 3 0 -113.261 -82.5004 -115.85
+ 59 109.322 334 2 1 -113.177 -82.5635 -144.45
+ 59 125.462 487 2 0 -113.172 -82.5671 -145.85
+ 59 113.256 335 1 1 -113.07 -82.6453 -174.45
+ 59 191.971 487 1 0 -113.065 -82.6481 -175.85
+ 59 247.786 335 0 1 -112.962 -82.7261 -204.45
+ 59 361.961 486 0 0 -112.958 -82.7281 -205.85
+ 59 303.695 336 0 1 -112.944 -82.7366 -204.45
+ 59 377.82 337 0 1 -112.75 -82.7387 -204.628
+ 59 28.8247 338 0 1 -112.55 -82.5192 -204.703
+ 59 72.4992 271 6 0 -94.1131 -125.791 -26.25
+ 59 68.5918 270 6 0 -94.0735 -125.95 -26.1093
+ 59 50.4583 269 6 0 -94.0771 -126.15 -26.0174
+ 59 79.0189 268 6 0 -94.1199 -126.35 -26.0226
+ 59 53.1389 267 6 0 -94.1841 -126.55 -26.0989
+ 59 66.8259 266 6 0 -94.2257 -126.75 -26.1667
+ 59 28.2806 265 6 0 -94.2638 -126.95 -26.2112
+ 59 226.905 334 5 1 -113.301 -82.6005 -54.45
+ 59 43.8206 463 5 0 -112.156 -87.2938 -55.85
+ 59 56.4993 462 5 0 -112.114 -87.45 -55.8842
+ 59 76.2244 461 5 0 -112.085 -87.65 -55.9424
+ 59 60.5227 460 5 0 -112.107 -87.85 -56.0068
+ 59 52.1283 459 5 0 -112.14 -88.05 -56.0975
+ 59 84.2709 458 5 0 -112.22 -88.25 -56.1539
+ 59 31.4189 457 5 0 -112.304 -88.45 -56.2124
+Number of digits in this event = 17
Using G4ParticleGun ...
-7.15581 LIN
+4.94426 LIN
e-
Event: 60
-Number of tracker hits in this event = 80
- 60 137.223 1207 10 1 61.6442 -90.8015 95.55
- 60 127.488 446 10 0 61.644 -90.8019 94.15
- 60 104.365 1207 9 1 61.6413 -90.8129 65.55
- 60 131.127 446 9 0 61.6409 -90.8134 64.15
- 60 100.557 1207 8 1 61.6336 -90.8185 35.55
- 60 177.686 446 8 0 61.6346 -90.8188 34.15
- 60 102.325 1207 7 1 61.6486 -90.8249 5.55
- 60 99.0654 446 7 0 61.6483 -90.8249 4.15
- 60 190.35 1207 6 1 61.6354 -90.8243 -24.45
- 60 208.327 446 6 0 61.6341 -90.8248 -25.85
- 60 146.343 1207 5 1 61.6075 -90.8359 -54.45
- 60 116.619 446 5 0 61.606 -90.8367 -55.85
- 60 557.283 1207 4 1 61.5703 -90.8525 -84.45
- 60 366.489 446 4 0 61.5691 -90.8542 -85.85
- 60 350.214 1207 3 1 61.5439 -90.8916 -114.45
- 60 319.948 446 3 0 61.5419 -90.8928 -115.85
- 60 218.94 1207 2 1 61.4957 -90.9134 -144.45
- 60 136.21 446 2 0 61.493 -90.9152 -145.85
- 60 125.013 1206 1 1 61.4375 -90.9425 -174.45
- 60 129.704 446 1 0 61.4333 -90.9437 -175.85
- 60 116.09 1206 0 1 61.3561 -90.9695 -204.45
- 60 122.135 445 0 0 61.3539 -90.9708 -205.85
- 60 62.2836 1219 0 1 63.9463 -77.6023 -204.85
- 60 22.4958 493 1 0 57.6803 -81.25 -176.189
- 60 105.757 494 1 0 57.6433 -81.2499 -176.086
- 60 9.5344 369 4 0 132.775 -106.237 -86.25
- 60 39.5665 1565 4 1 133.32 -106.337 -84.85
- 60 273.051 1566 4 1 133.35 -106.383 -84.7785
- 60 140.58 1208 3 1 61.6502 -90.9036 -114.813
- 60 226.908 1251 2 1 70.2699 -91.346 -144.45
- 60 186.84 444 2 0 70.4216 -91.2283 -145.85
- 60 22.5007 1263 1 1 72.7994 -89.156 -174.45
- 60 222.734 1264 1 1 72.85 -89.1474 -174.523
- 60 41.4665 1265 1 1 73.05 -89.1022 -174.776
- 60 84.7279 456 1 0 74.0271 -88.7685 -175.85
- 60 78.4216 457 1 0 74.2402 -88.65 -176.066
- 60 182.836 609 1 0 134.131 -58.1863 -176.25
- 60 33.5501 1576 1 1 135.491 -58.2814 -174.85
- 60 471.167 1577 1 1 135.55 -58.293 -174.778
- 60 36.2908 1578 1 1 135.75 -58.3039 -174.56
- 60 53.2201 601 1 0 134.858 -59.7264 -175.85
- 60 91.0835 600 1 0 134.769 -59.85 -176.009
- 60 82.5211 1267 1 0 97.4243 73.5114 -176.25
- 60 230.887 447 3 0 61.2101 -90.6161 -115.85
- 60 9.02668 448 3 0 61.1347 -90.55 -116.224
- 60 227.472 1179 2 1 56.0366 -86.5678 -144.45
- 60 0.189658 1178 2 1 55.85 -86.79 -144.849
- 60 41.5324 462 2 0 55.2826 -87.579 -145.85
- 60 147.606 461 2 0 55.2322 -87.65 -145.942
- 60 38.9187 460 2 0 55.0809 -87.85 -146.164
- 60 202.479 469 2 0 54.6039 -86.2241 -145.851
- 60 367.54 629 2 0 19.4061 -54.1768 -146.25
- 60 141.059 447 6 0 61.7211 -90.75 -25.9616
- 60 228.065 1208 6 1 61.6501 -90.8001 -24.7637
- 60 15.0582 468 3 0 58.4266 -86.2504 -116.25
- 60 126.866 469 3 0 58.4264 -86.25 -116.247
- 60 102.769 1190 3 1 58.1642 -86.3793 -114.85
- 60 187.439 445 2 0 61.4551 -91.0778 -145.85
- 60 115.175 443 2 0 61.5056 -91.3501 -146.156
- 60 124.71 1204 3 1 60.9536 -91.2112 -114.45
- 60 120.55 444 3 0 60.8952 -91.2508 -115.85
- 60 108.278 1198 2 1 59.7015 -91.9565 -144.45
- 60 161.882 440 2 0 59.6774 -92.0851 -145.85
- 60 141.962 1196 1 1 59.2644 -94.8576 -174.45
- 60 107.398 425 1 0 59.217 -95.0069 -175.85
- 60 102.064 1191 0 1 58.3182 -98.0167 -204.45
- 60 112.607 409 0 0 58.3054 -98.2171 -205.85
- 60 128.446 453 4 0 61.1863 -89.3399 -85.85
- 60 107.563 1209 2 1 61.9512 -90.6087 -144.45
- 60 135.425 447 2 0 61.9537 -90.5914 -145.85
- 60 198.102 1210 1 1 62.0775 -90.2347 -174.45
- 60 239.059 449 1 0 62.0553 -90.2104 -175.85
- 60 145.712 1207 0 1 61.5813 -89.799 -204.45
- 60 207.337 451 0 0 61.5618 -89.7832 -205.85
- 60 12.1385 1706 7 0 -56.7647 161.35 3.78762
- 60 85.084 1707 7 0 -56.8301 161.55 3.97657
- 60 70.9175 612 7 1 -57.4932 161.86 5.15
- 60 9.16667 611 7 1 -57.65 161.88 5.1535
- 60 51.4178 1714 7 0 -59.1477 163.085 4.14998
- 60 320.423 1715 7 0 -59.2147 163.15 4.08705
-Number of digits in this event = 47
+Number of tracker hits in this event = 45
+ 60 132.746 755 11 1 -29.0298 18.6595 125.55
+ 60 134.674 993 11 0 -29.0291 18.659 124.15
+ 60 109.262 755 10 1 -29.0166 18.648 95.55
+ 60 173.558 992 10 0 -29.015 18.6479 94.15
+ 60 149.909 755 9 1 -28.9808 18.6454 65.55
+ 60 105.808 992 9 0 -28.9787 18.6469 64.15
+ 60 115.963 755 8 1 -28.9299 18.6914 35.55
+ 60 115.552 993 8 0 -28.9284 18.6937 34.15
+ 60 128.732 755 7 1 -28.8932 18.739 5.55
+ 60 131.255 993 7 0 -28.8921 18.7426 4.15
+ 60 385.633 755 6 1 -28.8769 18.8178 -24.45
+ 60 125.16 993 6 0 -28.8766 18.8212 -25.85
+ 60 106.691 755 5 1 -28.8681 18.8937 -54.45
+ 60 107.409 994 5 0 -28.8672 18.8992 -55.85
+ 60 191.461 756 4 1 -28.8495 19.0194 -84.45
+ 60 124.266 994 4 0 -28.8495 19.0254 -85.85
+ 60 118.098 755 3 1 -28.88 19.1598 -114.45
+ 60 174.177 995 3 0 -28.8835 19.1747 -115.85
+ 60 126.337 755 2 1 -28.9878 19.3681 -144.45
+ 60 137.113 996 2 0 -28.9799 19.3535 -145.85
+ 60 196.603 756 1 1 -28.7947 19.0576 -174.45
+ 60 172.743 995 1 0 -28.773 19.056 -175.85
+ 60 149.005 758 0 1 -28.2716 18.9743 -204.45
+ 60 142.327 994 0 0 -28.2455 18.9877 -205.85
+ 60 78.2549 1120 0 0 -51.1089 44.25 -205.899
+ 60 286.341 756 6 1 -28.824 18.7533 -24.45
+ 60 92.3381 991 6 0 -29.0652 18.3337 -25.8502
+ 60 64.6179 990 6 0 -29.0661 18.25 -26.0293
+ 60 57.0544 534 7 1 -73.1889 65.7375 5.55
+ 60 226.953 533 7 1 -73.2501 65.784 5.43401
+ 60 163.792 754 6 1 -29.05 19.0514 -24.738
+ 60 87.5571 757 4 1 -28.65 18.8177 -84.6516
+ 60 123.869 992 4 0 -28.1023 18.6421 -85.85
+ 60 74.2487 806 3 1 -18.6621 17.8527 -114.45
+ 60 20.8334 807 3 1 -18.65 17.8015 -114.75
+ 60 103.448 987 3 0 -18.5559 17.6236 -115.85
+ 60 69.2158 821 2 1 -15.8047 12.4496 -144.45
+ 60 80.6981 822 2 1 -15.65 12.2866 -144.582
+ 60 47.2415 823 2 1 -15.4498 12.1084 -144.759
+ 60 69.6574 951 2 0 -14.0138 10.4372 -145.85
+ 60 125.387 950 2 0 -13.8864 10.2497 -145.95
+ 60 72.2758 949 2 0 -13.7709 10.05 -146.021
+ 60 88.9251 948 2 0 -13.6418 9.85 -146.097
+ 60 77.425 947 2 0 -13.4888 9.64946 -146.184
+ 60 45.7661 954 2 0 -14.1972 11.05 -146.093
+Number of digits in this event = 25
Using G4ParticleGun ...
-9.72044 LIN
+8.68037 LIN
e-
Event: 61
-Number of tracker hits in this event = 63
- 61 239.329 266 8 1 -126.883 -62.7754 35.55
- 61 109.128 586 8 0 -126.884 -62.7751 34.15
- 61 267.997 266 7 1 -126.899 -62.7668 5.55
- 61 131.956 586 7 0 -126.901 -62.7657 4.15
- 61 224.048 266 6 1 -126.934 -62.7432 -24.45
- 61 145.265 586 6 0 -126.937 -62.7383 -25.85
- 61 149.403 265 5 1 -127.004 -62.6254 -54.45
- 61 112.191 587 5 0 -127.008 -62.6222 -55.85
- 61 138.469 264 4 1 -127.154 -62.5908 -84.45
- 61 126.004 587 4 0 -127.169 -62.5857 -85.85
- 61 138.063 263 3 1 -127.456 -62.5203 -114.45
- 61 200.331 587 3 0 -127.477 -62.526 -115.85
- 61 112.478 261 2 1 -127.86 -62.6482 -144.45
- 61 468.675 586 2 0 -127.886 -62.6567 -145.85
- 61 170.064 258 1 1 -128.428 -62.8181 -174.45
- 61 226.657 586 1 0 -128.441 -62.8151 -175.85
- 61 4.49035 257 0 1 -128.75 -62.8075 -204.45
- 61 101.675 256 0 1 -128.75 -62.8074 -204.47
- 61 113.995 586 0 0 -128.767 -62.8027 -205.85
- 61 110.577 305 11 0 57.0021 -119.068 123.75
- 61 157.481 265 4 1 -126.957 -62.7674 -84.45
- 61 138.092 584 4 0 -127.847 -63.0584 -85.85
- 61 14.1925 157 3 1 -148.722 -74.619 -114.45
- 61 78.0324 156 3 1 -148.751 -74.6357 -114.473
- 61 110.772 155 3 1 -148.95 -74.7431 -114.649
- 61 140.613 523 3 0 -149.974 -75.3247 -115.85
- 61 19.842 522 3 0 -150.276 -75.45 -116.194
- 61 25.4138 14 2 1 -177.305 -82.7281 -144.45
- 61 99.1391 13 2 1 -177.35 -82.7473 -144.53
- 61 20.0419 485 2 0 -177.902 -83.035 -145.85
- 61 88.2331 484 2 0 -177.926 -83.05 -145.913
- 61 415.116 266 2 1 -126.891 -62.773 -144.451
- 61 119.832 585 2 0 -126.888 -62.8636 -145.85
- 61 147.192 267 1 1 -126.584 -64.5331 -174.45
- 61 135.756 577 1 0 -126.559 -64.6148 -175.85
- 61 231.937 271 0 1 -125.766 -66.0943 -204.45
- 61 337.944 569 0 0 -125.744 -66.0896 -205.85
- 61 111.807 272 0 1 -125.75 -66.02 -204.575
- 61 104.574 570 0 0 -125.552 -65.8585 -205.85
- 61 41.766 571 0 0 -125.532 -65.8499 -205.976
- 61 43.0792 261 0 1 -127.836 -64.2927 -204.85
- 61 196.205 260 0 1 -127.95 -64.1983 -204.8
- 61 121.877 259 0 1 -128.15 -63.818 -204.719
- 61 62.7579 258 0 1 -128.35 -63.4536 -204.583
- 61 93.2711 570 1 0 -125.909 -65.85 -175.86
- 61 144.958 267 2 1 -126.75 -62.8616 -144.779
- 61 134.95 265 2 1 -126.95 -62.7582 -144.785
- 61 119.989 248 1 1 -130.354 -61.9495 -174.45
- 61 71.6776 591 1 0 -130.378 -61.6945 -175.85
- 61 61.1165 592 1 0 -130.38 -61.65 -176.095
- 61 156.039 247 0 1 -130.676 -56.5304 -204.45
- 61 121.89 616 0 0 -130.327 -56.796 -205.85
- 61 135.291 641 2 0 -61.5044 -51.6999 -146.25
- 61 308.301 266 3 1 -126.887 -62.7747 -114.45
- 61 208.52 586 3 0 -126.891 -62.7703 -115.85
- 61 222.956 265 1 1 -127.146 -62.6058 -174.45
- 61 13.3313 264 1 1 -127.15 -62.6056 -174.803
- 61 134.004 587 1 0 -127.163 -62.6029 -175.85
- 61 97.0157 263 0 1 -127.502 -62.5397 -204.45
- 61 129.208 587 0 0 -127.534 -62.5196 -205.85
- 61 133.711 585 1 0 -126.958 -62.902 -175.85
- 61 133.123 265 0 1 -127.102 -62.9573 -204.45
- 61 102.213 585 0 0 -127.104 -62.9572 -205.85
-Number of digits in this event = 39
-Using G4ParticleGun ...
-7.87989 LIN
+Number of tracker hits in this event = 113
+ 61 136.941 506 11 1 -78.7622 -4.23846 125.55
+ 61 229.393 879 11 0 -78.7609 -4.23685 124.15
+ 61 160.579 506 10 1 -78.7321 -4.20205 95.55
+ 61 105.253 879 10 0 -78.7303 -4.19935 94.15
+ 61 128.347 506 9 1 -78.6929 -4.14296 65.55
+ 61 141.697 879 9 0 -78.6913 -4.14035 64.15
+ 61 189.75 506 8 1 -78.6571 -4.08488 35.55
+ 61 158.099 879 8 0 -78.6548 -4.08018 34.15
+ 61 310.503 507 7 1 -78.6096 -3.98325 5.55
+ 61 449.815 880 7 0 -78.6071 -3.97932 4.15
+ 61 104.778 507 6 1 -78.5596 -3.89608 -24.45
+ 61 139.835 880 6 0 -78.5575 -3.89257 -25.85
+ 61 615.242 507 5 1 -78.499 -3.81753 -54.45
+ 61 207.918 881 5 0 -78.5008 -3.81343 -55.85
+ 61 231.992 507 4 1 -78.5497 -3.71497 -84.45
+ 61 421.187 881 4 0 -78.5569 -3.71436 -85.85
+ 61 114.075 506 3 1 -78.7163 -3.6984 -114.45
+ 61 518.612 881 3 0 -78.7319 -3.6904 -115.85
+ 61 122.886 505 2 1 -79.0438 -3.5511 -144.45
+ 61 332.048 882 2 0 -79.052 -3.54714 -145.85
+ 61 113.629 504 1 1 -79.2044 -3.48211 -174.45
+ 61 332.028 882 1 0 -79.2166 -3.47318 -175.85
+ 61 162.592 502 0 1 -79.4693 -3.2874 -204.45
+ 61 395.247 883 0 0 -79.4877 -3.28326 -205.85
+ 61 43.6293 872 5 0 -78.522 -5.53692 -55.85
+ 61 131.906 871 5 0 -78.5182 -5.65 -55.9502
+ 61 64.6981 870 5 0 -78.5432 -5.85 -56.1271
+ 61 5.24689 869 5 0 -78.5713 -6.05 -56.2454
+ 61 274.811 508 4 1 -78.4299 -3.76837 -84.45
+ 61 285.579 508 3 1 -78.3785 -3.73392 -114.45
+ 61 214.857 508 2 1 -78.3443 -3.68014 -144.45
+ 61 361.113 881 2 0 -78.3438 -3.67199 -145.85
+ 61 110.14 508 1 1 -78.3383 -3.49396 -174.45
+ 61 105.021 508 0 1 -78.2679 -3.37804 -204.45
+ 61 65.3969 1145 3 0 -122.992 49.1282 -116.25
+ 61 289.903 507 3 1 -78.4713 -3.70411 -114.45
+ 61 229.963 509 1 1 -78.159 -3.38186 -174.45
+ 61 129.429 883 1 0 -78.1492 -3.37844 -175.85
+ 61 133.165 510 0 1 -77.9367 -3.31943 -204.45
+ 61 139.178 657 2 1 -48.65 87.1981 -144.747
+ 61 222.99 882 4 0 -78.4427 -3.65 -86.0905
+ 61 144.28 500 4 1 -79.8639 -3.8044 -84.85
+ 61 195.747 499 4 1 -80.05 -3.91634 -84.6203
+ 61 11.4107 509 6 1 -78.0636 -2.65085 -24.4501
+ 61 122.165 510 6 1 -78.05 -2.64754 -24.4946
+ 61 136.151 887 6 0 -77.7026 -2.49469 -25.85
+ 61 140.93 542 5 1 -71.5273 -0.277908 -54.45
+ 61 132.617 543 5 1 -71.45 -0.31646 -54.676
+ 61 108.978 897 5 0 -71.0618 -0.499822 -55.8501
+ 61 264.512 588 4 1 -62.313 -4.55837 -84.4508
+ 61 19.1725 589 4 1 -62.25 -4.66067 -84.7918
+ 61 89.6112 875 4 0 -62.0443 -4.98198 -85.85
+ 61 57.214 874 4 0 -62.0078 -5.05013 -86.0594
+ 61 39.4594 613 3 1 -57.3114 -14.3115 -114.45
+ 61 113.207 614 3 1 -57.25 -14.3674 -114.562
+ 61 44.6191 825 3 0 -56.5494 -14.9738 -115.85
+ 61 127.943 824 3 0 -56.4582 -15.05 -116.02
+ 61 106.26 696 2 1 -40.8188 -27.7339 -144.45
+ 61 41.8998 697 2 1 -40.6497 -27.8278 -144.732
+ 61 107.24 759 2 0 -39.973 -28.1702 -145.85
+ 61 59.0502 758 2 0 -39.8248 -28.2501 -146.092
+ 61 56.3089 788 1 1 -22.289 -38.1506 -174.45
+ 61 43.8004 789 1 1 -22.25 -38.2183 -174.671
+ 61 133.671 707 1 0 -22.0645 -38.5413 -175.85
+ 61 4.50431 706 1 0 -22.011 -38.65 -176.238
+ 61 88.917 796 0 1 -20.7083 -45.5415 -204.45
+ 61 9.407 797 0 1 -20.65 -45.6337 -204.81
+ 61 104.884 670 0 0 -20.4634 -45.9544 -205.85
+ 61 49.0599 669 0 0 -20.4162 -46.0501 -206.127
+ 61 221.393 879 4 0 -62.515 -4.11561 -85.85
+ 61 48.3413 506 7 1 -78.65 -4.01567 5.319
+ 61 100.375 879 7 0 -78.7717 -4.07167 4.14977
+ 61 133.332 493 6 1 -81.2717 -4.87236 -24.45
+ 61 123.736 873 6 0 -81.6592 -5.2685 -25.8501
+ 61 36.2884 456 5 1 -88.6847 -13.8921 -54.45
+ 61 93.4272 457 5 1 -88.65 -13.8935 -54.6053
+ 61 115.364 830 5 0 -88.4884 -13.9402 -55.85
+ 61 60.9598 479 4 1 -84.1914 -16.0732 -84.45
+ 61 44.6464 478 4 1 -84.25 -16.0581 -84.6668
+ 61 117.084 820 4 0 -84.5455 -15.9412 -85.8512
+ 61 80.4915 999 4 0 -101.723 19.8621 -86.25
+ 61 136.825 1000 4 0 -101.771 20.051 -86.1328
+ 61 175.224 1001 4 0 -101.844 20.25 -86.012
+ 61 110.132 1002 4 0 -101.993 20.4501 -85.9106
+ 61 165.697 387 4 1 -102.564 22.6236 -84.85
+ 61 84.7109 386 4 1 -102.75 23.1378 -84.5046
+ 61 173.078 385 4 1 -102.95 23.1586 -84.5663
+ 61 84.8676 1009 4 0 -103.641 22.0006 -85.8501
+ 61 53.2882 1008 4 0 -103.775 21.85 -86.072
+ 61 211.93 880 5 0 -78.5937 -3.99018 -55.85
+ 61 133.094 880 4 0 -78.5521 -3.8887 -85.85
+ 61 153.094 507 2 1 -78.4871 -3.02081 -144.45
+ 61 108.638 885 2 0 -78.4748 -2.98594 -145.85
+ 61 192.623 889 1 0 -78.1171 -2.1927 -175.85
+ 61 104.008 509 0 1 -78.211 -1.2374 -204.45
+ 61 173.756 894 0 0 -78.2158 -1.17238 -205.85
+ 61 8.13739 1263 5 0 -83.5425 72.8125 -56.25
+ 61 88.1337 1264 5 0 -83.5514 72.85 -56.1212
+ 61 4.76549 1265 5 0 -83.5918 73.0501 -55.8713
+ 61 120.374 485 5 1 -82.9785 73.7822 -54.8499
+ 61 60.1498 486 5 1 -82.85 73.8958 -54.6346
+ 61 130.737 506 4 1 -78.7292 -4.47754 -84.4506
+ 61 111.255 877 4 0 -78.6527 -4.53028 -85.851
+ 61 140.119 513 3 1 -77.3634 -4.96566 -114.451
+ 61 106.61 875 3 0 -77.2982 -4.97927 -115.85
+ 61 111.166 523 2 1 -75.3331 -5.09115 -144.45
+ 61 31.1535 874 2 0 -75.3082 -5.0535 -145.85
+ 61 59.4447 875 2 0 -75.3069 -5.04997 -145.969
+ 61 150.705 524 1 1 -75.1022 -4.35243 -174.45
+ 61 112.697 878 1 0 -75.4084 -4.38856 -175.85
+ 61 43.9731 490 0 1 -81.9982 -4.76637 -204.45
+ 61 54.6053 489 0 1 -82.0502 -4.74774 -204.628
+ 61 98.8432 877 0 0 -82.429 -4.61454 -205.85
+Number of digits in this event = 59
+Using G4ParticleGun ...
+6.15981 LIN
e-
Event: 62
-Number of tracker hits in this event = 100
- 62 100.188 300 9 1 -120.142 -55.9287 65.55
- 62 119.882 620 9 0 -120.142 -55.9287 64.15
- 62 256.391 300 8 1 -120.135 -55.9318 35.55
- 62 171.051 620 8 0 -120.135 -55.9328 34.15
- 62 135.462 300 7 1 -120.144 -55.9621 5.55
- 62 185.932 620 7 0 -120.144 -55.963 4.15
- 62 99.5827 300 6 1 -120.145 -55.9813 -24.45
- 62 133.699 620 6 0 -120.146 -55.9826 -25.85
- 62 104.554 299 5 1 -120.163 -56.0142 -54.45
- 62 107.648 620 5 0 -120.164 -56.0171 -55.85
- 62 200.658 299 4 1 -120.18 -56.0761 -84.45
- 62 215.683 619 4 0 -120.18 -56.0783 -85.85
- 62 358.165 299 3 1 -120.173 -56.1272 -114.45
- 62 311.916 619 3 0 -120.172 -56.1301 -115.85
- 62 121.636 299 2 1 -120.155 -56.1889 -144.45
- 62 146.708 619 2 0 -120.155 -56.1908 -145.85
- 62 170.036 300 1 1 -120.148 -56.2258 -174.45
- 62 615.173 619 1 0 -120.148 -56.228 -175.85
- 62 254.902 300 0 1 -120.148 -56.2848 -204.45
- 62 159.214 618 0 0 -120.141 -56.2934 -205.85
- 62 34.7597 566 0 0 -58.1854 -66.6672 -206.25
- 62 30.6277 299 0 1 -120.175 -56.2998 -204.45
- 62 193.738 299 1 1 -120.15 -56.2047 -174.492
- 62 132.031 288 0 1 -122.431 -54.3147 -204.45
- 62 54.1656 287 0 1 -122.55 -54.319 -204.702
- 62 233.217 628 0 0 -123.084 -54.3595 -205.85
- 62 160.436 308 0 1 -118.507 -55.4761 -204.45
- 62 101.731 622 0 0 -118.374 -55.4691 -205.85
- 62 411.519 300 4 1 -120.15 -56.0796 -84.7611
- 62 159.721 313 3 1 -117.482 -55.8736 -114.45
- 62 106.974 620 3 0 -117.393 -56.0187 -115.85
- 62 157.587 321 2 1 -115.812 -60.0563 -144.45
- 62 11.0868 322 2 1 -115.75 -60.0874 -144.815
- 62 160.257 599 2 0 -115.593 -60.1622 -145.85
- 62 112.987 348 1 1 -110.516 -62.6714 -174.45
- 62 170.419 586 1 0 -110.142 -62.7659 -175.85
- 62 112.931 396 0 1 -100.912 -64.9265 -204.45
- 62 114.619 575 0 0 -100.588 -64.9342 -205.85
- 62 218.839 6 11 1 -178.88 -92.4088 125.15
- 62 71.379 5 11 1 -178.95 -92.3081 125.535
- 62 95.2869 269 0 1 -126.218 -149.524 -204.85
- 62 8.13416 1013 5 0 -49.6089 22.6893 -56.25
- 62 121.906 618 3 0 -120.275 -56.2681 -115.85
- 62 62.4414 609 3 0 -140.688 -58.1099 -116.25
- 62 62.8133 610 3 0 -140.819 -58.05 -116.078
- 62 104.52 197 3 1 -140.694 -57.8294 -114.85
- 62 77.9509 485 4 0 -154.516 -82.8551 -86.25
- 62 86.1873 484 4 0 -154.654 -83.05 -86.0914
- 62 3.41784 483 4 0 -154.637 -83.2502 -85.8586
- 62 14.5168 133 4 1 -153.381 -85.2058 -84.85
- 62 155.755 134 4 1 -153.35 -85.2518 -84.8283
- 62 443.826 468 4 0 -152.796 -86.3038 -85.85
- 62 96.9463 514 4 0 -143.099 -77.1432 -86.2499
- 62 95.8659 513 4 0 -143.091 -77.2501 -86.1546
- 62 93.3465 297 2 1 -120.634 -56.2926 -144.45
- 62 105.584 618 2 0 -120.691 -56.3314 -145.85
- 62 101.409 290 1 1 -122.116 -57.0712 -174.45
- 62 106.28 614 1 0 -122.189 -57.1268 -175.85
- 62 99.3152 282 0 1 -123.62 -58.1602 -204.45
- 62 26.784 609 0 0 -123.641 -58.245 -205.85
- 62 83.607 608 0 0 -123.643 -58.25 -205.929
- 62 64.6752 1720 1 0 34.407 164.15 -175.988
- 62 42.535 621 8 0 -119.787 -55.6742 34.15
- 62 49.4451 622 8 0 -119.754 -55.65 33.9863
- 62 100.288 330 7 1 -114.035 -52.141 5.55
- 62 172.366 640 7 0 -113.903 -51.8944 4.15
- 62 23.1632 641 7 0 -113.878 -51.85 3.84968
- 62 129.121 341 6 1 -111.818 -49.6312 -24.45
- 62 113.934 654 6 0 -111.691 -49.1812 -25.85
- 62 17.841 655 6 0 -111.649 -49.0494 -26.176
- 62 85.314 357 5 1 -108.717 -37.0729 -54.4502
- 62 28.6294 356 5 1 -108.75 -36.9942 -54.7519
- 62 54.5485 716 5 0 -108.947 -36.688 -55.85
- 62 74.9905 717 5 0 -108.972 -36.65 -55.9793
- 62 92.6351 325 4 1 -115.077 -26.7031 -84.45
- 62 32.9301 324 4 1 -115.15 -26.7153 -84.735
- 62 100.32 766 4 0 -115.433 -26.7888 -85.8503
- 62 122.082 295 3 1 -120.955 -29.1233 -114.45
- 62 132.759 755 3 0 -121.244 -29.0433 -115.85
- 62 97.7991 266 2 1 -126.851 -29.9608 -144.45
- 62 28.7135 267 2 1 -126.75 -30.0115 -144.779
- 62 79.4795 749 2 0 -126.409 -30.1954 -145.85
- 62 34.6089 748 2 0 -126.326 -30.25 -146.149
- 62 14.4703 308 1 1 -118.36 -35.0525 -174.45
- 62 171.195 309 1 1 -118.35 -35.0754 -174.49
- 62 135.311 719 1 0 -117.816 -36.0532 -175.85
- 62 38.4183 718 1 0 -117.711 -36.25 -176.141
- 62 142.082 352 0 1 -109.708 -54.1654 -204.45
- 62 9.44331 353 0 1 -109.55 -54.0565 -204.837
- 62 115.638 631 0 0 -109.129 -53.7558 -205.85
- 62 3.80764 632 0 0 -108.955 -53.65 -206.234
- 62 56.2998 1440 0 1 108.15 -22.5431 -204.723
- 62 249.523 1441 0 1 108.35 -22.5013 -204.752
- 62 94.0566 479 0 0 -80.986 -84.2162 -206.25
- 62 53.5393 478 0 0 -81.0731 -84.25 -206.007
- 62 39.7392 492 0 1 -81.5855 -84.1558 -204.85
- 62 79.2392 491 0 1 -81.6501 -84.1389 -204.73
- 62 195.208 651 6 0 -111.822 -49.6551 -25.85
- 62 328.278 564 1 1 -67.151 -17.5323 -174.45
- 62 54.9087 563 1 1 -67.25 -18.1402 -174.632
-Number of digits in this event = 41
+Number of tracker hits in this event = 61
+ 62 128.001 1213 10 1 62.6972 -73.9506 95.55
+ 62 158.606 530 10 0 62.699 -73.9493 94.15
+ 62 139.099 1213 9 1 62.7398 -73.9225 65.55
+ 62 118.71 530 9 0 62.7404 -73.9204 64.15
+ 62 232.715 1213 8 1 62.6902 -73.7967 35.55
+ 62 158.234 531 8 0 62.6868 -73.792 34.15
+ 62 115.251 1212 7 1 62.6221 -73.6963 5.55
+ 62 158.41 531 7 0 62.6172 -73.6915 4.15
+ 62 99.5791 1212 6 1 62.5176 -73.5945 -24.45
+ 62 97.6805 532 6 0 62.5106 -73.5893 -25.85
+ 62 118.742 1211 5 1 62.3748 -73.48 -54.45
+ 62 135.956 532 5 0 62.3703 -73.4773 -55.85
+ 62 193.711 1211 4 1 62.2782 -73.4234 -84.45
+ 62 120.513 533 4 0 62.2756 -73.4198 -85.85
+ 62 154.898 1210 3 1 62.2256 -73.3354 -114.45
+ 62 131.319 533 3 0 62.223 -73.3338 -115.85
+ 62 151.976 1210 2 1 62.1516 -73.3036 -144.45
+ 62 127.702 533 2 0 62.1454 -73.3021 -145.85
+ 62 192.75 1209 1 1 62.0238 -73.2852 -174.45
+ 62 232.639 533 1 0 62.0169 -73.2904 -175.85
+ 62 105.202 1209 0 1 61.883 -73.3875 -204.45
+ 62 126.258 533 0 0 61.8745 -73.3942 -205.85
+ 62 133.945 982 4 1 16.6302 123.628 -84.45
+ 62 193.332 983 4 1 16.65 123.578 -84.5528
+ 62 399.092 532 4 0 62.2493 -73.45 -86.1684
+ 62 9.77169 535 5 0 61.8575 -72.8753 -55.8503
+ 62 113.584 536 5 0 61.844 -72.8499 -55.878
+ 62 87.0952 537 5 0 61.6823 -72.65 -56.0063
+ 62 157.095 538 5 0 61.5138 -72.45 -56.0744
+ 62 46.3025 539 5 0 61.3001 -72.25 -56.1672
+ 62 247.999 1209 2 1 61.9312 -73.1924 -144.45
+ 62 220.15 534 2 0 61.9154 -73.2002 -145.85
+ 62 139.134 1207 1 1 61.5307 -73.4017 -174.45
+ 62 134.146 1205 0 1 61.115 -73.8822 -204.45
+ 62 140.583 530 0 0 61.1009 -73.8934 -205.85
+ 62 113.756 1208 1 1 61.8127 -73.0513 -174.45
+ 62 219.723 535 1 0 61.8058 -73.0422 -175.85
+ 62 97.4797 1208 0 1 61.6512 -72.8751 -204.45
+ 62 41.9874 1207 0 1 61.65 -72.8742 -204.712
+ 62 140.205 535 0 0 61.6451 -72.8701 -205.85
+ 62 91.4969 332 2 0 51.6968 -113.573 -146.25
+ 62 291.177 679 2 0 -86.7657 -44.1678 -146.25
+ 62 400.685 680 2 0 -87.1101 -44.0498 -146.051
+ 62 97.6268 678 2 0 -88.3945 -44.25 -145.961
+ 62 98.9583 677 2 0 -88.5855 -44.45 -145.951
+ 62 94.681 676 2 0 -88.8044 -44.65 -145.967
+ 62 6.92352 675 2 0 -88.9913 -44.8505 -145.858
+ 62 100.568 449 2 1 -90.15 -45.9886 -144.824
+ 62 46.3404 448 2 1 -90.35 -46.1613 -144.807
+ 62 69.1476 668 2 0 -92.0119 -46.4092 -145.85
+ 62 142.997 667 2 0 -92.1057 -46.45 -145.893
+ 62 94.2851 424 2 1 -95.2659 -45.141 -144.85
+ 62 97.6172 423 2 1 -95.35 -45.0787 -144.808
+ 62 205.136 422 2 1 -95.55 -44.8767 -144.696
+ 62 358.493 421 2 1 -95.75 -44.4442 -144.636
+ 62 245.701 1214 1 1 63.0106 -73.7059 -174.45
+ 62 252.232 531 1 0 63.0056 -73.7102 -175.85
+ 62 104.13 1214 0 1 62.9218 -73.8242 -204.45
+ 62 107.302 531 0 0 62.905 -73.8297 -205.85
+ 62 90.4518 1220 0 1 64.106 -73.526 -204.45
+ 62 152.212 532 0 0 64.1531 -73.512 -205.85
+Number of digits in this event = 38
Using G4ParticleGun ...
-5.5288 LIN
+1.67754 LIN
e-
Event: 63
-Number of tracker hits in this event = 73
- 63 129.334 426 10 1 -94.9012 -43.6319 95.55
- 63 111.214 682 10 0 -94.9019 -43.6315 94.15
- 63 131.233 426 9 1 -94.9068 -43.6237 65.55
- 63 201.051 682 9 0 -94.9073 -43.6239 64.15
- 63 130.49 426 8 1 -94.9182 -43.6292 35.55
- 63 186.757 682 8 0 -94.9175 -43.6289 34.15
- 63 112.5 426 7 1 -94.9258 -43.6275 5.55
- 63 138.03 682 7 0 -94.9261 -43.6273 4.15
- 63 157.109 426 6 1 -94.9287 -43.6256 -24.45
- 63 125.153 682 6 0 -94.9285 -43.6239 -25.85
- 63 585.802 426 5 1 -94.9127 -43.5885 -54.45
- 63 114.988 682 5 0 -94.9126 -43.5873 -55.85
- 63 470.623 426 4 1 -94.9062 -43.5647 -84.45
- 63 105.868 682 4 0 -94.9086 -43.5649 -85.85
- 63 184.999 425 3 1 -94.9672 -43.566 -114.45
- 63 125.092 682 3 0 -94.9704 -43.5696 -115.85
- 63 122.577 425 2 1 -95.0265 -43.6425 -144.45
- 63 181.951 682 2 0 -95.0288 -43.6406 -145.85
- 63 155.522 425 1 1 -95.0792 -43.5986 -174.45
- 63 157.629 682 1 0 -95.0822 -43.5965 -175.85
- 63 116.275 425 0 1 -95.1426 -43.5483 -204.45
- 63 139.574 682 0 0 -95.1441 -43.5447 -205.85
- 63 47.0873 923 0 1 4.68256 -43.0559 -204.85
- 63 51.0587 528 1 1 -74.353 -110.547 -174.85
- 63 40.5041 529 1 1 -74.2499 -110.539 -174.65
- 63 6.01727 1142 4 0 -42.0101 48.4805 -86.25
- 63 113.349 1143 4 0 -41.9054 48.65 -85.8965
- 63 173.844 691 4 1 -41.7041 48.6202 -84.85
- 63 2.18551 673 6 0 -94.0998 -45.4415 -25.85
- 63 2.78837 672 6 0 -94.0963 -45.45 -25.8521
- 63 219.241 433 6 1 -93.5009 -47.479 -24.8498
- 63 60.7332 432 6 1 -93.55 -47.5004 -24.7025
- 63 103.78 425 4 1 -94.9581 -43.5481 -84.4501
- 63 52.6491 427 4 1 -94.75 -43.0027 -84.7482
- 63 22.3376 696 4 0 -93.3035 -40.6854 -85.85
- 63 68.4843 697 4 0 -93.282 -40.649 -85.8697
- 63 79.2142 698 4 0 -93.1806 -40.45 -85.9999
- 63 49.0968 699 4 0 -93.1755 -40.2495 -86.1477
- 63 53.1581 610 4 0 -148.454 -57.9675 -86.25
- 63 115.068 609 4 0 -148.568 -58.05 -86.1678
- 63 306.793 608 4 0 -148.704 -58.25 -86.0535
- 63 51.2165 681 4 0 -95.1503 -43.8251 -85.85
- 63 63.4662 680 4 0 -95.1771 -43.85 -86.0177
- 63 32.3925 391 3 1 -101.765 -47.8626 -114.45
- 63 87.4693 392 3 1 -101.75 -47.8769 -114.548
- 63 144.755 661 3 0 -101.638 -47.7643 -115.85
- 63 120.824 398 2 1 -100.422 -44.4798 -144.45
- 63 92.6072 676 2 0 -100.302 -44.7934 -145.85
- 63 31.2182 675 2 0 -100.266 -44.8501 -146.136
- 63 110.868 615 2 0 -97.9472 -56.9987 -146.25
- 63 64.9466 614 2 0 -97.9312 -57.05 -145.896
- 63 130.97 411 2 1 -97.8837 -57.3127 -144.85
- 63 2.23524 723 3 0 -93.7517 -35.2552 -116.25
- 63 173.429 724 3 0 -93.7507 -35.25 -116.243
- 63 9.26072 725 3 0 -93.6633 -35.05 -115.873
- 63 341.492 433 3 1 -93.434 -34.4266 -114.85
- 63 48.6424 434 3 1 -93.35 -34.3107 -114.611
- 63 42.0258 435 3 1 -93.0674 -34.2486 -114.45
- 63 63.8934 436 3 1 -92.95 -34.2582 -114.568
- 63 50.5149 437 3 1 -92.7499 -34.2642 -114.756
- 63 140.706 727 3 0 -91.9165 -34.4635 -115.85
- 63 341.447 728 3 0 -91.6633 -34.4499 -116.18
- 63 219.367 510 4 1 -77.9474 -30.2771 -84.4501
- 63 8.53782 511 4 1 -77.85 -30.1453 -84.5061
- 63 71.924 730 3 0 -93.1571 -33.9923 -115.85
- 63 142.548 729 3 0 -93.2099 -34.0502 -116.083
- 63 151.543 639 6 0 -99.2405 -52.0824 -26.2494
- 63 125.284 404 6 1 -99.1835 -52.0065 -24.85
- 63 168.533 403 6 1 -99.3723 -52.0473 -24.45
- 63 203.542 643 6 0 -99.5958 -51.2621 -25.85
- 63 34.7513 642 6 0 -99.2688 -51.45 -25.9014
- 63 120.89 401 6 1 -99.7875 -52.6121 -24.85
- 63 43.922 402 6 1 -99.75 -52.5962 -24.806
-Number of digits in this event = 36
+Number of tracker hits in this event = 113
+ 63 136.245 627 11 1 -54.5344 -46.0044 125.55
+ 63 112.934 670 11 0 -54.5774 -45.9644 124.15
+ 63 66.2935 621 10 1 -55.7921 -44.8849 95.5498
+ 63 54.8025 620 10 1 -55.85 -44.8462 95.3138
+ 63 115.384 677 10 0 -56.1462 -44.6495 94.15
+ 63 123.1 584 9 1 -63.0581 -39.7515 65.5498
+ 63 123.102 702 9 0 -63.4256 -39.4975 64.15
+ 63 71.2361 703 9 0 -63.4956 -39.45 63.8893
+ 63 38.5295 543 8 1 -71.4405 -34.0033 35.55
+ 63 112.224 542 8 1 -71.45 -33.9904 35.5132
+ 63 168.894 732 8 0 -71.8226 -33.5109 34.15
+ 63 71.4323 733 8 0 -71.8721 -33.45 33.9718
+ 63 122.592 502 7 1 -79.5065 -23.8188 5.54985
+ 63 112.184 783 7 0 -79.7113 -23.4498 4.15
+ 63 157.089 483 6 1 -83.4404 -16.4471 -24.45
+ 63 138.713 484 6 1 -83.25 -16.4862 -24.6874
+ 63 168.497 816 6 0 -82.4193 -16.7488 -25.85
+ 63 3.93059 815 6 0 -82.142 -16.85 -26.2356
+ 63 94.3624 590 5 1 -61.9291 -26.4914 -54.4506
+ 63 75.1206 591 5 1 -61.85 -26.6497 -54.721
+ 63 47.9332 763 5 0 -61.5217 -27.3377 -55.85
+ 63 82.3892 762 5 0 -61.4691 -27.45 -56.028
+ 63 1.69298 775 5 0 -16.2219 -24.8533 -56.25
+ 63 357.645 776 5 0 -16.2167 -24.85 -56.2457
+ 63 157.824 777 5 0 -15.9343 -24.65 -55.9824
+ 63 19.5524 829 5 1 -14.0971 -23.2336 -54.85
+ 63 66.4193 830 5 1 -14.05 -23.194 -54.8205
+ 63 95.3105 831 5 1 -13.85 -23.0365 -54.7153
+ 63 78.9659 832 5 1 -13.65 -22.8882 -54.632
+ 63 70.1274 833 5 1 -13.4499 -22.7427 -54.5267
+ 63 119.05 834 5 1 -13.25 -22.6334 -54.4566
+ 63 41.5684 835 5 1 -13.05 -22.3125 -54.7386
+ 63 58.1446 794 5 0 -12.6705 -21.2342 -55.85
+ 63 197.28 795 5 0 -12.6036 -21.05 -55.9983
+ 63 194.469 890 4 1 -2.00075 -5.56059 -84.4501
+ 63 67.4275 871 4 0 -2.2317 -5.66985 -85.85
+ 63 113.041 872 4 0 -2.22637 -5.65 -86.0241
+ 63 15.6176 873 4 0 -2.10008 -5.45 -86.211
+ 63 195.215 1037 4 0 42.1187 27.5826 -86.25
+ 63 270.729 1038 4 0 42.7131 27.65 -86.1476
+ 63 307.111 1039 4 0 43.0075 27.85 -86.0498
+ 63 121.869 888 4 0 2.52372 -2.36413 -85.85
+ 63 172.235 796 5 0 -12.5057 -20.85 -56.1097
+ 63 357.25 778 5 0 -15.7942 -24.45 -55.8707
+ 63 197.333 482 6 1 -83.5195 -16.4668 -24.45
+ 63 15.328 485 6 1 -83.05 -16.4701 -24.8247
+ 63 179.673 818 6 0 -81.5724 -16.4396 -25.85
+ 63 39.6414 819 6 0 -81.0073 -16.25 -26.1697
+ 63 315.338 1036 6 0 -30.0751 27.3323 -26.25
+ 63 162.958 1037 6 0 -29.9969 27.45 -26.0547
+ 63 126.184 758 6 1 -28.3135 27.4998 -24.85
+ 63 277.568 759 6 1 -28.25 27.4443 -24.6876
+ 63 238.788 1033 6 0 -28.471 26.7933 -25.8501
+ 63 298.901 906 7 1 1.25 66.0227 5.16008
+ 63 24.7889 820 6 0 -83.7383 -15.8916 -25.8502
+ 63 109.9 821 6 0 -83.7562 -15.85 -25.9541
+ 63 126.221 439 5 1 -92.1647 -0.980286 -54.4502
+ 63 99.3085 438 5 1 -92.35 -0.76399 -54.6797
+ 63 108.494 900 5 0 -93.222 0.0848718 -55.8503
+ 63 57.3305 901 5 0 -93.3601 0.25 -56.1114
+ 63 71.9945 1169 5 0 -90.5385 53.9551 -56.25
+ 63 76.2997 1170 5 0 -90.477 54.05 -56.1537
+ 63 22.5371 1171 5 0 -90.4766 54.2503 -55.9294
+ 63 112.168 446 5 1 -90.8771 55.1325 -54.85
+ 63 4.94625 445 5 1 -90.95 55.3231 -54.4757
+ 63 122.922 544 8 1 -71.2395 -33.4013 35.55
+ 63 147.164 566 7 1 -66.6869 -38.9786 5.55
+ 63 8.90182 567 7 1 -66.65 -39.0048 5.18875
+ 63 103.702 704 7 0 -66.5396 -39.0877 4.15
+ 63 108.882 588 6 1 -62.3368 -42.5609 -24.45
+ 63 121.595 684 6 0 -62.2813 -43.0682 -25.85
+ 63 331.871 592 5 1 -61.4903 -52.5292 -54.45
+ 63 128.551 634 5 0 -61.4345 -53.1258 -55.85
+ 63 42.7494 633 5 0 -61.4212 -53.25 -56.1205
+ 63 176.684 598 4 1 -60.3318 -64.6203 -84.4501
+ 63 28.9566 570 4 0 -60.6571 -65.9796 -85.8501
+ 63 75.6752 569 4 0 -60.6784 -66.0501 -85.9277
+ 63 128.572 568 4 0 -60.7602 -66.2502 -86.1467
+ 63 120.428 549 3 1 -70.1656 -90.2974 -114.45
+ 63 92.2493 451 3 0 -69.9908 -89.7701 -115.85
+ 63 94.6912 452 3 0 -70.0599 -89.65 -116.085
+ 63 199.636 1005 4 0 -119.299 21.0862 -86.25
+ 63 103.647 885 5 0 -147.826 -2.85 -56.0512
+ 63 59.5788 1006 4 0 -119.321 21.25 -86.176
+ 63 19.6587 548 3 1 -70.25 -90.2918 -114.668
+ 63 167.686 593 5 1 -61.45 -52.388 -54.4745
+ 63 123.123 965 1 0 -102.314 13.168 -176.25
+ 63 259.157 966 1 0 -102.205 13.25 -175.875
+ 63 362.341 390 1 1 -102.011 13.7957 -174.85
+ 63 209.383 391 1 1 -101.95 14.171 -174.726
+ 63 124.226 970 1 0 -100.938 14.1206 -175.85
+ 63 83.721 969 1 0 -100.773 14.0497 -175.989
+ 63 84.7247 968 1 0 -100.8 13.85 -176.186
+ 63 83.9405 967 1 0 -100.916 13.65 -176.205
+ 63 267.3 623 2 1 -55.2816 -46.6531 -144.45
+ 63 141.153 666 2 0 -55.3014 -46.6534 -145.85
+ 63 123.706 621 1 1 -55.7071 -46.7304 -174.45
+ 63 146.654 666 1 0 -55.7214 -46.7473 -175.85
+ 63 105.147 619 0 1 -56.1216 -47.0173 -204.45
+ 63 110.48 665 0 0 -56.1477 -47.024 -205.85
+ 63 31.5304 1212 6 1 62.45 41.2549 -24.7627
+ 63 64.8978 1211 6 1 62.45 41.2854 -24.7072
+ 63 24.3507 667 2 0 -55.2531 -46.4622 -145.85
+ 63 94.2503 668 2 0 -55.2513 -46.45 -145.937
+ 63 103.051 629 1 1 -54.1444 -42.9096 -174.45
+ 63 1.01337 687 1 0 -54.2072 -42.4514 -175.85
+ 63 136.314 688 1 0 -54.2074 -42.45 -175.854
+ 63 127.965 618 0 1 -56.2704 -33.5492 -204.45
+ 63 17.8057 734 0 0 -56.5157 -33.0778 -205.85
+ 63 107.925 735 0 0 -56.5302 -33.05 -205.931
+ 63 21.5984 90 0 1 -162.055 -39.8658 -204.45
+ 63 92.2432 669 2 0 -57.6252 -46.12 -145.85
+ 63 190.466 613 2 1 -57.3605 -46.0139 -144.85
+Number of digits in this event = 53
Using G4ParticleGun ...
-5.87264 LIN
+7.50077 LIN
e-
Event: 64
-Number of tracker hits in this event = 54
- 64 153.392 1104 10 1 40.9947 82.0238 95.55
- 64 134.552 1309 10 0 40.9945 82.0251 94.15
- 64 150.727 1104 9 1 40.9919 82.04 65.55
- 64 143.942 1309 9 0 40.9902 82.0406 64.15
- 64 120.011 1104 8 1 40.9552 82.0498 35.55
- 64 120.323 1309 8 0 40.9543 82.0497 34.15
- 64 213.757 1104 7 1 40.9352 82.0459 5.55
- 64 461.834 1309 7 0 40.9323 82.0461 4.15
- 64 460.649 1104 6 1 40.869 82.0456 -24.45
- 64 387.808 1309 6 0 40.8666 82.0474 -25.85
- 64 127.917 1103 5 1 40.8089 82.078 -54.45
- 64 138.973 1310 5 0 40.807 82.0776 -55.85
- 64 155.444 1103 4 1 40.7751 82.0788 -84.45
- 64 308.801 1310 4 0 40.7735 82.0789 -85.85
- 64 136.268 1103 3 1 40.7369 82.0832 -114.45
- 64 164.241 1310 3 0 40.7326 82.0841 -115.85
- 64 114.393 1102 2 1 40.6376 82.1008 -144.45
- 64 103.82 1310 2 0 40.6346 82.101 -145.85
- 64 147.475 1102 1 1 40.5736 82.1028 -174.45
- 64 106.783 1310 1 0 40.5671 82.1008 -175.85
- 64 113.655 1101 0 1 40.445 82.0496 -204.45
- 64 216.305 1309 0 0 40.4396 82.0469 -205.85
- 64 204.77 1102 0 1 40.5024 82.1846 -204.45
- 64 211.765 1310 0 0 40.5179 82.2215 -205.85
- 64 55.8231 1403 13 0 -74.2732 100.845 183.75
- 64 171.29 1404 13 0 -74.3687 100.95 183.793
- 64 254.53 1405 13 0 -74.5026 101.15 183.837
- 64 153.856 1310 7 0 40.9345 82.05 4.02427
- 64 244.498 1104 5 1 40.9593 82.005 -54.45
- 64 144.163 1309 5 0 40.9649 82.01 -55.85
- 64 122.776 1105 4 1 41.0899 82.1104 -84.45
- 64 123.817 1106 3 1 41.2763 81.6822 -114.45
- 64 122.909 1308 3 0 41.2787 81.6791 -115.85
- 64 180.052 1106 2 1 41.3352 81.5401 -144.45
- 64 155.045 1307 2 0 41.3321 81.5336 -145.85
- 64 155.612 1105 1 1 41.2374 81.3861 -174.45
- 64 129.027 1306 1 0 41.2178 81.3603 -175.85
- 64 132.729 1103 0 1 40.7741 80.8392 -204.45
- 64 113.304 1303 0 0 40.7235 80.8289 -205.85
- 64 152.508 1101 5 1 40.2672 82.4683 -54.45
- 64 129.784 1312 5 0 40.2213 82.4997 -55.85
- 64 96.0067 1096 4 1 39.3927 83.2019 -84.45
- 64 81.1458 1315 4 0 39.3311 83.2426 -85.85
- 64 38.2153 1316 4 0 39.3201 83.25 -86.0991
- 64 108.791 1089 3 1 38.036 84.1178 -114.45
- 64 198.182 1320 3 0 37.9574 84.1333 -115.85
- 64 147.458 1081 2 1 36.4071 84.5512 -144.45
- 64 126.36 1322 2 0 36.3224 84.5598 -145.85
- 64 123.136 1072 1 1 34.5874 84.6868 -174.45
- 64 134.684 1323 1 0 34.4967 84.6878 -175.85
- 64 123.324 1063 0 1 32.6974 84.7407 -204.45
- 64 119.032 1323 0 0 32.5965 84.734 -205.85
- 64 92.9959 1090 2 1 38.0603 84.1157 -144.45
- 64 110.518 1089 2 1 38.05 84.1115 -144.475
-Number of digits in this event = 44
-Using G4ParticleGun ...
-1.50134 LIN
+Number of tracker hits in this event = 25
+ 64 120.301 324 9 1 -115.187 -53.1509 65.55
+ 64 106.335 634 9 0 -115.186 -53.1532 64.15
+ 64 108.304 324 8 1 -115.167 -53.2008 35.55
+ 64 117.881 634 8 0 -115.166 -53.2041 34.15
+ 64 228.831 324 7 1 -115.157 -53.2685 5.55
+ 64 139.29 633 7 0 -115.156 -53.2732 4.15
+ 64 123.001 324 6 1 -115.151 -53.3717 -24.45
+ 64 110.633 633 6 0 -115.151 -53.3766 -25.85
+ 64 123.779 324 5 1 -115.153 -53.4789 -54.45
+ 64 119.083 632 5 0 -115.152 -53.4833 -55.85
+ 64 107.729 325 4 1 -115.136 -53.5528 -84.45
+ 64 113.705 632 4 0 -115.134 -53.5529 -85.85
+ 64 133.476 325 3 1 -115.103 -53.5456 -114.45
+ 64 116.84 632 3 0 -115.099 -53.5436 -115.85
+ 64 125.625 325 2 1 -115.031 -53.5076 -144.45
+ 64 132.928 632 2 0 -115.036 -53.5059 -145.85
+ 64 104.793 325 1 1 -115.12 -53.4733 -174.45
+ 64 121.878 632 1 0 -115.123 -53.47 -175.85
+ 64 364.938 324 0 1 -115.187 -53.4069 -204.45
+ 64 123.954 633 0 0 -115.188 -53.4011 -205.85
+ 64 123.52 417 1 0 -148.544 -96.692 -176.25
+ 64 58.742 416 1 0 -148.615 -96.75 -176.185
+ 64 256.05 364 6 1 -107.195 41.0316 -24.85
+ 64 209.623 365 6 1 -107.15 41.1641 -24.4572
+ 64 222.082 630 0 0 -115.213 -53.873 -205.85
+Number of digits in this event = 17
+Using G4ParticleGun ...
+4.8259 LIN
e-
Event: 65
-Number of tracker hits in this event = 22
- 65 154.774 1224 9 1 64.8862 99.376 65.55
- 65 110.171 1396 9 0 64.8877 99.3775 64.15
- 65 120.133 1224 8 1 64.934 99.3997 35.55
- 65 127.168 1396 8 0 64.9294 99.4016 34.15
- 65 109.656 1223 7 1 64.8376 99.4471 5.55
- 65 107.44 1396 7 0 64.8363 99.4527 4.15
- 65 162.355 1223 6 1 64.8137 99.5715 -24.45
- 65 123.791 1397 6 0 64.8187 99.5772 -25.85
- 65 134.6 1224 5 1 64.939 99.6729 -54.45
- 65 110.115 1397 5 0 64.947 99.6735 -55.85
- 65 134.163 1225 4 1 65.1181 99.7008 -84.45
- 65 127.343 1397 4 0 65.1238 99.6998 -85.85
- 65 103.751 1226 3 1 65.2565 99.6952 -114.45
- 65 124.575 1397 3 0 65.2587 99.6957 -115.85
- 65 104.047 1226 2 1 65.3704 99.6949 -144.45
- 65 181.449 1397 2 0 65.3763 99.6954 -145.85
- 65 133.619 1227 1 1 65.5198 99.6851 -174.45
- 65 113.704 1397 1 0 65.5307 99.692 -175.85
- 65 117.531 1228 0 1 65.7501 99.8469 -204.45
- 65 341.787 1398 0 0 65.7505 99.8526 -205.85
- 65 406.865 1227 0 1 65.5923 99.8366 -204.45
- 65 135.049 1224 6 1 64.85 99.5627 -24.5272
-Number of digits in this event = 15
+Number of tracker hits in this event = 111
+ 65 142.5 898 11 1 -0.251423 17.4575 125.55
+ 65 103.713 987 11 0 -0.25094 17.458 124.15
+ 65 108.485 899 10 1 -0.244065 17.4697 95.55
+ 65 98.4833 987 10 0 -0.243885 17.4716 94.15
+ 65 433.867 899 9 1 -0.247103 17.5267 65.55
+ 65 385.298 987 9 0 -0.246557 17.5296 64.15
+ 65 178.24 899 8 1 -0.231379 17.5849 35.55
+ 65 353.512 987 8 0 -0.231248 17.5873 34.15
+ 65 113.658 899 7 1 -0.22877 17.6317 5.55
+ 65 95.7877 987 7 0 -0.228166 17.6338 4.15
+ 65 128.648 899 6 1 -0.205379 17.6723 -24.45
+ 65 96.1309 988 6 0 -0.205104 17.6736 -25.85
+ 65 181.084 899 5 1 -0.192082 17.7004 -54.45
+ 65 360.632 988 5 0 -0.192984 17.7021 -55.85
+ 65 125.667 899 4 1 -0.216767 17.7416 -84.45
+ 65 116.007 988 4 0 -0.219392 17.7446 -85.85
+ 65 104.568 898 3 1 -0.273127 17.8038 -114.45
+ 65 116.838 988 3 0 -0.277989 17.8066 -115.85
+ 65 236.283 898 2 1 -0.387766 17.8596 -144.45
+ 65 114.377 989 2 0 -0.39362 17.8625 -145.85
+ 65 151.996 897 1 1 -0.511538 17.9213 -174.45
+ 65 209.278 989 1 0 -0.517409 17.926 -175.85
+ 65 105.04 897 0 1 -0.623582 18.0224 -204.45
+ 65 148.047 989 0 0 -0.630419 18.0257 -205.85
+ 65 659.68 899 3 1 -0.196594 17.8079 -114.45
+ 65 133.233 987 3 0 -0.12868 17.5317 -115.85
+ 65 52.0019 914 2 1 2.91056 12.0386 -144.45
+ 65 54.5921 915 2 1 3.0505 12.0493 -144.641
+ 65 170.749 960 2 0 3.92057 12.1537 -145.85
+ 65 80.6185 1032 1 1 26.4978 17.1154 -174.45
+ 65 35.5288 1033 1 1 26.65 17.0231 -174.723
+ 65 83.2189 982 1 0 27.1283 16.5544 -175.85
+ 65 54.5815 981 1 0 27.1849 16.4498 -176.083
+ 65 123.316 941 1 0 42.9219 8.34522 -176.25
+ 65 128.28 1116 1 1 43.3433 8.70646 -174.85
+ 65 47.7651 966 2 0 55.1318 13.4355 -146.25
+ 65 82.1236 967 2 0 55.1838 13.45 -146.111
+ 65 36.912 1177 2 1 55.6114 13.1998 -144.85
+ 65 70.6101 1178 2 1 55.65 13.1797 -144.751
+ 65 53.5921 1003 1 0 30.5304 20.7 -176.25
+ 65 85.1564 1004 1 0 30.5927 20.85 -176.108
+ 65 89.1314 1005 1 0 30.732 21.05 -176.091
+ 65 218.158 989 3 0 -0.196535 17.858 -115.85
+ 65 111.428 994 2 0 -0.352933 18.9986 -145.85
+ 65 172.674 906 1 1 1.26414 19.2019 -174.45
+ 65 96.781 905 1 1 1.24995 19.2011 -174.841
+ 65 130.485 995 1 0 1.21308 19.206 -175.85
+ 65 105.254 900 0 1 0.180858 19.0948 -204.45
+ 65 131.779 994 0 0 0.222837 19.0195 -205.85
+ 65 214.433 898 8 1 -0.380596 17.6327 35.55
+ 65 128.293 894 7 1 -1.15763 16.6817 5.55
+ 65 110.369 983 7 0 -1.12844 16.7536 4.14988
+ 65 124.248 898 6 1 -0.264351 17.9301 -24.45
+ 65 109.58 989 6 0 -0.211114 17.9088 -25.85
+ 65 116.787 907 5 1 1.61627 17.6674 -54.45
+ 65 112.661 906 4 1 1.34609 18.0675 -84.45
+ 65 298.28 990 4 0 1.10008 18.1744 -85.8503
+ 65 138.2 881 3 1 -3.73636 20.8959 -114.45
+ 65 126.034 1005 3 0 -3.92605 21.1346 -115.85
+ 65 115.382 862 2 1 -7.56342 26.5394 -144.45
+ 65 29.5395 1033 2 0 -7.80965 26.8378 -145.85
+ 65 130.833 1034 2 0 -7.82014 26.85 -145.909
+ 65 313.712 837 1 1 -12.5126 32.7868 -174.45
+ 65 16.1882 1065 1 0 -12.7097 33.2276 -175.85
+ 65 120.204 1066 1 0 -12.72 33.25 -175.922
+ 65 129.435 826 0 1 -14.8463 41.3323 -204.45
+ 65 7.15686 1107 0 0 -14.8873 41.6446 -205.851
+ 65 117.532 1108 0 0 -14.8884 41.65 -205.875
+ 65 153.003 785 0 1 -23.0269 34.6612 -204.45
+ 65 136.22 784 0 1 -23.05 34.5642 -204.593
+ 65 150.151 1422 9 0 -77.8739 104.662 63.75
+ 65 184.958 1421 9 0 -77.8991 104.55 64.0158
+ 65 240.821 986 8 0 -0.411229 17.4001 34.15
+ 65 120.725 896 7 1 -0.803006 17.2223 5.55
+ 65 115.769 985 7 0 -0.802948 17.2175 4.15
+ 65 128.002 896 6 1 -0.755231 17.148 -24.45
+ 65 132.45 985 6 0 -0.745348 17.1748 -25.85
+ 65 116.365 897 5 1 -0.583753 17.6848 -54.45
+ 65 112.703 898 4 1 -0.253087 18.1236 -84.45
+ 65 109.905 992 3 0 -0.0782467 18.4906 -115.85
+ 65 164.223 900 2 1 0.202051 18.7853 -144.45
+ 65 131.558 993 2 0 0.243889 18.814 -145.85
+ 65 121.428 996 1 0 1.21248 19.3624 -175.85
+ 65 126.342 909 0 1 2.03024 19.6602 -204.45
+ 65 127.347 998 0 0 2.03301 19.6543 -205.85
+ 65 238.838 534 0 1 -73.05 45.3641 -204.756
+ 65 22.3729 1128 0 0 -66.8492 45.8349 -205.85
+ 65 17.3675 995 3 0 -0.203772 19.0561 -115.85
+ 65 275.49 994 3 0 -0.204297 19.05 -115.921
+ 65 214.314 886 2 1 -2.6897 14.611 -144.45
+ 65 7.70291 885 2 1 -2.85011 14.6556 -144.811
+ 65 372.741 973 2 0 -3.34241 14.774 -145.85
+ 65 98.546 974 2 0 -3.50327 14.8501 -146.224
+ 65 121.197 838 1 1 -12.4124 20.0769 -174.45
+ 65 179.869 836 1 1 -12.6501 19.9304 -174.519
+ 65 75.547 835 1 1 -12.8505 19.7959 -174.615
+ 65 65.1699 834 1 1 -13.05 19.6267 -174.752
+ 65 102.389 988 1 0 -14.915 17.85 -175.889
+ 65 90.8972 987 1 0 -15.1873 17.65 -176.006
+ 65 156.715 986 1 0 -15.4339 17.45 -176.159
+ 65 7.79582 636 0 1 -52.8283 -13.96 -204.45
+ 65 90.5129 635 0 1 -52.85 -13.9664 -204.47
+ 65 105.347 634 0 1 -53.0502 -14.0045 -204.715
+ 65 138.025 829 0 0 -53.5576 -14.0721 -205.85
+ 65 179.79 911 2 1 2.26571 17.3717 -144.45
+ 65 122.036 986 2 0 2.60344 17.3573 -145.85
+ 65 21.5808 951 1 1 10.4279 17.4363 -174.45
+ 65 97.8573 952 1 1 10.45 17.4338 -174.53
+ 65 49.5038 992 0 1 18.5719 16.5427 -204.451
+ 65 70.6133 993 0 1 18.6502 16.5269 -204.612
+ 65 123.082 981 0 0 19.2656 16.3739 -205.85
+Number of digits in this event = 59
Using G4ParticleGun ...
-9.70289 LIN
+5.48964 LIN
e-
Event: 66
-Number of tracker hits in this event = 91
- 66 386.435 714 11 1 -37.2265 -48.9186 125.55
- 66 154.139 655 11 0 -37.2272 -48.9178 124.15
- 66 138.147 714 10 1 -37.241 -48.902 95.55
- 66 116.089 655 10 0 -37.2414 -48.9006 94.15
- 66 148.519 714 9 1 -37.2481 -48.87 65.55
- 66 162.501 655 9 0 -37.2475 -48.8682 64.15
- 66 520.882 714 8 1 -37.2379 -48.8269 35.55
- 66 385.005 656 8 0 -37.2371 -48.8249 34.15
- 66 150.301 714 7 1 -37.2224 -48.7825 5.55
- 66 226.516 656 7 0 -37.2216 -48.7803 4.15
- 66 123.317 714 6 1 -37.2008 -48.7329 -24.45
- 66 235.488 656 6 0 -37.2002 -48.7302 -25.85
- 66 119.513 714 5 1 -37.1863 -48.6747 -54.45
- 66 332.243 656 5 0 -37.1856 -48.6728 -55.85
- 66 103.197 714 4 1 -37.1682 -48.6305 -84.45
- 66 111.06 657 4 0 -37.1672 -48.6288 -85.85
- 66 120.854 714 3 1 -37.1484 -48.5941 -114.45
- 66 158.871 657 3 0 -37.1474 -48.5926 -115.85
- 66 126.486 714 2 1 -37.1286 -48.5626 -144.45
- 66 149.687 657 2 0 -37.1278 -48.5605 -145.85
- 66 138.369 714 1 1 -37.1113 -48.5205 -174.45
- 66 151.498 657 1 0 -37.1109 -48.5174 -175.85
- 66 467.91 714 0 1 -37.101 -48.4537 -204.45
- 66 101.202 657 0 0 -37.1012 -48.4506 -205.85
- 66 433.14 658 0 0 -37.1012 -48.45 -206.099
- 66 51.5082 487 1 0 -35.0731 -82.5985 -176.25
- 66 232.29 486 1 0 -35.1222 -82.65 -176.18
- 66 270.371 1012 1 1 22.546 28.6428 -174.45
- 66 31.9023 87 0 1 -162.603 147.656 -204.85
- 66 70.4397 722 0 0 -28.0994 -35.5965 -206.25
- 66 60.9243 723 0 0 -28.1838 -35.45 -206.062
- 66 17.546 759 0 1 -28.0635 -35.2837 -204.849
- 66 174.964 760 0 1 -28.05 -35.2588 -204.82
- 66 2.1742 616 0 0 -20.7434 -56.8471 -206.25
- 66 368.568 615 0 0 -20.7342 -56.8502 -206.244
- 66 107.867 804 0 1 -19.2181 -57.2503 -204.849
- 66 170.251 805 0 1 -19.05 -57.3708 -204.58
- 66 168.403 716 7 1 -36.7133 -49.0205 5.55
- 66 93.1334 655 7 0 -36.7048 -49.0306 4.15
- 66 108.773 717 6 1 -36.5908 -49.1496 -24.45
- 66 101.927 654 6 0 -36.5678 -49.1654 -25.85
- 66 140.248 719 5 1 -36.1501 -49.5024 -54.45
- 66 156.17 652 5 0 -36.1249 -49.5025 -55.85
- 66 206.947 722 4 1 -35.5884 -49.4813 -84.45
- 66 113.908 652 4 0 -35.5466 -49.4697 -85.85
- 66 107.44 726 3 1 -34.6729 -49.1779 -114.45
- 66 111.815 654 3 0 -34.6459 -49.1367 -115.85
- 66 166.868 729 2 1 -34.0901 -48.2392 -144.45
- 66 108.227 659 2 0 -34.0491 -48.1836 -145.85
- 66 92.9433 734 1 1 -33.1601 -47.0153 -174.45
- 66 126.617 665 1 0 -33.1213 -46.956 -175.85
- 66 75.3159 738 0 1 -32.2559 -45.6457 -204.45
- 66 52.818 739 0 1 -32.25 -45.6318 -204.684
- 66 129.87 672 0 0 -32.2192 -45.5625 -205.85
- 66 188.063 715 7 1 -37.0267 -48.7748 5.55
- 66 162.611 712 6 1 -37.5914 -48.7989 -24.45
- 66 128.841 709 5 1 -38.2157 -48.8286 -54.45
- 66 101.869 705 4 1 -38.8958 -49.1352 -84.45
- 66 123.344 654 4 0 -38.9426 -49.1563 -85.85
- 66 157.356 700 3 1 -39.9236 -49.5393 -114.45
- 66 169.826 652 3 0 -39.9895 -49.5619 -115.85
- 66 126.229 693 2 1 -41.2756 -50.0244 -144.45
- 66 88.8521 650 2 0 -41.3383 -50.0315 -145.85
- 66 134.746 687 1 1 -42.6029 -50.1632 -174.45
- 66 139.991 649 1 0 -42.6744 -50.1837 -175.85
- 66 120.309 679 0 1 -44.1282 -50.5772 -204.45
- 66 123.234 647 0 0 -44.1993 -50.6094 -205.85
- 66 16.5071 491 1 1 -81.65 -50.8431 -174.599
- 66 41.2662 656 3 0 -37.2762 -48.6603 -115.85
- 66 7.63296 563 3 0 -71.8819 -67.4373 -116.25
- 66 166.82 562 3 0 -71.9178 -67.45 -116.228
- 66 40.6372 535 3 1 -72.9798 -68.0792 -114.85
- 66 128.879 534 3 1 -73.05 -68.1374 -114.755
- 66 4.24708 533 3 1 -73.25 -68.2263 -114.467
- 66 87.2873 410 3 0 178.831 -97.95 -116.21
- 66 186.314 411 3 0 179.246 -97.95 -116.058
- 66 113.851 712 2 1 -37.519 -48.7361 -144.45
- 66 103.631 713 2 1 -37.45 -48.3347 -144.699
- 66 34.1199 673 2 0 -35.5189 -45.3751 -145.85
- 66 105.799 674 2 0 -35.4521 -45.25 -145.882
- 66 59.3593 675 2 0 -35.3679 -45.05 -145.964
- 66 73.777 676 2 0 -35.3216 -44.85 -146.045
- 66 88.5287 677 2 0 -35.2564 -44.65 -146.16
- 66 53.4841 678 2 0 -35.2945 -44.45 -146.233
- 66 64.1009 679 2 0 -35.3795 -44.25 -146.239
- 66 78.3905 680 2 0 -35.4844 -44.05 -146.103
- 66 82.4114 681 2 0 -35.647 -43.8496 -145.934
- 66 232.012 682 2 0 -35.7732 -43.6499 -145.935
- 66 138.295 683 2 0 -36.1338 -43.4499 -145.995
- 66 133.859 581 2 0 -86.094 -63.7038 -146.25
- 66 81.4164 582 2 0 -86.3619 -63.6499 -146.167
-Number of digits in this event = 53
+Number of tracker hits in this event = 145
+ 66 112.332 703 11 1 -39.2773 -47.7707 125.55
+ 66 126.76 661 11 0 -39.2772 -47.7709 124.15
+ 66 106.479 703 10 1 -39.2758 -47.7731 95.55
+ 66 106.535 661 10 0 -39.2755 -47.7725 94.15
+ 66 223.574 703 9 1 -39.2632 -47.7484 65.55
+ 66 159.18 661 9 0 -39.2375 -47.7546 64.15
+ 66 125.655 706 8 1 -38.8129 -47.9216 35.55
+ 66 233.632 660 8 0 -38.8145 -47.9601 34.15
+ 66 106.259 705 7 1 -39.0322 -48.8191 5.55
+ 66 132.126 655 7 0 -39.0087 -48.8734 4.15
+ 66 168.14 706 6 1 -38.6693 -49.9767 -24.45
+ 66 114.358 650 6 0 -38.6049 -49.9623 -25.85
+ 66 127.172 714 5 1 -37.2367 -49.7227 -54.45
+ 66 253.696 651 5 0 -37.1685 -49.7234 -55.85
+ 66 111.542 729 4 1 -34.2331 -47.8171 -84.4501
+ 66 234.616 661 4 0 -34.3054 -47.7021 -85.85
+ 66 22.4372 662 4 0 -34.3528 -47.6499 -86.1993
+ 66 112.925 708 3 1 -38.3179 -43.1421 -114.45
+ 66 228.369 685 3 0 -38.5675 -43.0153 -115.85
+ 66 90.1574 680 2 1 -43.9983 -40.6405 -144.45
+ 66 5.91813 679 2 1 -44.05 -40.5913 -144.82
+ 66 123.379 698 2 0 -44.1945 -40.4325 -145.85
+ 66 117.454 656 1 1 -48.8339 -34.9092 -174.45
+ 66 101.087 725 1 0 -48.7851 -34.8809 -175.85
+ 66 112.011 668 0 1 -46.3958 -35.6959 -204.45
+ 66 130.02 722 0 0 -45.9929 -35.6277 -205.85
+ 66 45.1971 681 0 0 -38.6293 -43.7938 -206.25
+ 66 101.869 680 0 0 -38.6349 -43.85 -206.103
+ 66 129.533 706 0 1 -38.7303 -44.5723 -204.85
+ 66 101.648 763 1 0 -25.0787 -27.4289 -176.25
+ 66 44.7716 764 1 0 -24.8799 -27.25 -175.965
+ 66 9.27856 780 1 1 -23.8757 -26.7325 -174.85
+ 66 68.4901 781 1 1 -23.85 -26.7204 -174.823
+ 66 64.7135 782 1 1 -23.65 -26.6816 -174.643
+ 66 17.4106 783 1 1 -23.45 -26.6239 -174.469
+ 66 368.368 766 2 0 -54.0162 -26.6599 -146.25
+ 66 263.781 624 2 1 -55.0893 -27.297 -144.85
+ 66 149.681 623 2 1 -55.2505 -27.4249 -144.494
+ 66 73.9738 622 2 1 -55.45 -27.5795 -144.508
+ 66 91.3748 708 4 1 -38.2617 -52.4417 -84.4501
+ 66 163.499 638 4 0 -38.8278 -52.2772 -85.8502
+ 66 108.077 639 4 0 -38.8963 -52.25 -85.9939
+ 66 97.653 639 3 1 -52.213 -47.1474 -114.45
+ 66 105.064 664 3 0 -52.259 -47.1572 -115.851
+ 66 85.0997 641 2 1 -51.8025 -45.2961 -144.45
+ 66 109.286 640 2 1 -51.85 -45.0892 -144.614
+ 66 50.356 686 2 0 -52.39 -42.8113 -145.85
+ 66 81.231 687 2 0 -52.4224 -42.65 -145.932
+ 66 65.0398 688 2 0 -52.4527 -42.45 -146.032
+ 66 52.3235 689 2 0 -52.4784 -42.25 -146.141
+ 66 21.2205 690 2 0 -52.5034 -42.0499 -146.219
+ 66 81.4128 1196 2 0 -84.6731 59.3014 -146.25
+ 66 69.4977 1197 2 0 -84.7514 59.4501 -146.157
+ 66 202.954 1198 2 0 -84.8816 59.6502 -146.092
+ 66 84.7152 1199 2 0 -85.0309 59.85 -146.037
+ 66 79.4271 1200 2 0 -85.1979 60.05 -145.963
+ 66 39.5599 1201 2 0 -85.384 60.25 -145.883
+ 66 48.2206 453 2 1 -89.3505 65.0151 -144.85
+ 66 90.457 452 2 1 -89.45 65.124 -144.822
+ 66 69.4166 451 2 1 -89.65 65.3031 -144.732
+ 66 93.1014 450 2 1 -89.85 65.4677 -144.742
+ 66 76.154 449 2 1 -90.15 65.6757 -144.79
+ 66 64.4687 448 2 1 -90.35 65.791 -144.804
+ 66 107.255 447 2 1 -90.55 65.9156 -144.81
+ 66 80.3703 446 2 1 -90.75 66.0738 -144.799
+ 66 84.2411 445 2 1 -90.95 66.247 -144.812
+ 66 69.5419 444 2 1 -91.15 66.4413 -144.809
+ 66 69.1879 443 2 1 -91.35 66.6352 -144.84
+ 66 129.127 442 2 1 -91.55 66.8192 -144.844
+ 66 307.462 1256 2 0 -95.3246 71.3017 -145.85
+ 66 54.6699 1257 2 0 -95.4049 71.4503 -145.882
+ 66 49.3642 1258 2 0 -95.4351 71.65 -145.927
+ 66 74.5044 1259 2 0 -95.507 71.85 -145.953
+ 66 111.493 1260 2 0 -95.6002 72.0502 -145.946
+ 66 50.7644 1261 2 0 -95.673 72.25 -145.923
+ 66 52.4131 1262 2 0 -95.7578 72.45 -145.911
+ 66 61.9749 1263 2 0 -95.8444 72.6506 -145.889
+ 66 81.6266 1264 2 0 -95.9543 72.85 -145.904
+ 66 95.5201 1265 2 0 -96.0788 73.05 -145.931
+ 66 66.9599 1266 2 0 -96.1751 73.2502 -145.931
+ 66 33.046 1267 2 0 -96.2613 73.4502 -145.892
+ 66 27.2589 411 2 1 -97.8746 75.5057 -144.85
+ 66 88.7027 410 2 1 -97.95 75.59 -144.814
+ 66 209.341 409 2 1 -98.15 75.7974 -144.703
+ 66 167.572 408 2 1 -98.3501 76.4503 -144.548
+ 66 307.831 407 2 1 -98.55 76.8582 -144.719
+ 66 6.01977 562 7 0 -34.0392 -67.6364 3.75
+ 66 59.3827 561 7 0 -34.0356 -67.65 3.77117
+ 66 72.4299 560 7 0 -34.0312 -67.85 3.86951
+ 66 62.1279 559 7 0 -34.1147 -68.05 3.93169
+ 66 54.6283 558 7 0 -34.1632 -68.2505 3.98192
+ 66 58.8419 557 7 0 -34.1989 -68.45 4.02491
+ 66 72.7627 556 7 0 -34.1541 -68.65 4.01158
+ 66 78.5594 555 7 0 -34.1845 -68.85 3.99954
+ 66 66.9569 554 7 0 -34.211 -69.05 3.87911
+ 66 86.7292 553 7 0 -34.2067 -69.25 3.91488
+ 66 50.7314 552 7 0 -34.2549 -69.45 4.03827
+ 66 18.9132 727 7 1 -34.6347 -71.2426 5.15
+ 66 361.019 726 7 1 -34.65 -71.3066 5.19004
+ 66 16.6849 725 7 1 -34.85 -71.5535 5.46061
+ 66 23.2925 688 1 1 -42.3933 -54.8856 -174.45
+ 66 492.919 626 1 0 -42.3747 -54.7412 -175.85
+ 66 42.102 659 8 0 -38.6009 -48.05 33.8126
+ 66 264.075 634 8 0 -6.59275 -53.2147 33.75
+ 66 106.451 707 1 1 -38.5332 -53.9597 -174.45
+ 66 33.23 630 1 0 -38.7635 -53.8584 -175.85
+ 66 96.4078 631 1 0 -38.7821 -53.85 -175.978
+ 66 134.587 684 0 1 -43.133 -51.2406 -204.45
+ 66 115.004 643 0 0 -43.4603 -51.3547 -205.851
+ 66 75.6668 657 2 0 -37.3013 -48.4732 -145.85
+ 66 148.136 658 2 0 -37.1634 -48.4499 -145.962
+ 66 517.57 659 2 0 -37.13 -48.2496 -145.955
+ 66 413.312 703 7 1 -39.2603 -47.729 5.55
+ 66 309.262 661 7 0 -39.2629 -47.7282 4.15
+ 66 251.737 703 6 1 -39.3139 -47.7078 -24.45
+ 66 316.125 661 6 0 -39.3148 -47.7066 -25.85
+ 66 112.573 703 5 1 -39.3432 -47.6827 -54.45
+ 66 194.099 661 5 0 -39.3477 -47.682 -55.85
+ 66 42.4696 703 4 1 -39.4492 -47.6725 -84.45
+ 66 68.7862 702 4 1 -39.45 -47.6721 -84.5946
+ 66 107.69 702 3 1 -39.614 -47.5909 -114.45
+ 66 92.098 662 3 0 -39.6225 -47.5844 -115.85
+ 66 131.194 701 2 1 -39.7889 -47.4428 -144.45
+ 66 128.5 663 2 0 -39.7982 -47.4357 -145.85
+ 66 247.193 700 1 1 -39.9871 -47.2846 -174.45
+ 66 175.1 663 1 0 -40.0015 -47.2778 -175.85
+ 66 264.951 698 0 1 -40.2835 -47.1357 -204.45
+ 66 120.592 664 0 0 -40.2981 -47.1277 -205.85
+ 66 218.633 701 1 1 -39.85 -47.3988 -174.48
+ 66 84.6151 702 1 1 -39.65 -47.5725 -174.67
+ 66 49.1038 665 1 0 -38.849 -46.9727 -175.85
+ 66 117.108 666 1 0 -38.7987 -46.85 -176.01
+ 66 426.088 662 5 0 -39.3488 -47.65 -56.0078
+ 66 117.956 702 5 1 -39.5509 -47.8519 -54.45
+ 66 106.32 660 5 0 -39.5598 -47.8589 -55.85
+ 66 145.839 701 4 1 -39.7398 -48.0116 -84.45
+ 66 179.538 660 4 0 -39.7472 -48.0144 -85.85
+ 66 132.819 700 3 1 -39.8925 -48.0714 -114.45
+ 66 107.925 659 3 0 -39.8981 -48.0737 -115.85
+ 66 127.3 700 2 1 -40.02 -48.1496 -144.45
+ 66 118.562 699 1 1 -40.1546 -48.1148 -174.45
+ 66 108.258 659 1 0 -40.1665 -48.1152 -175.85
+ 66 108.613 659 0 0 -40.4293 -48.1469 -205.85
+ 66 129.915 665 0 1 -47.0168 -21.3387 -204.85
+ 66 141.718 666 0 1 -46.85 -21.3011 -204.564
+Number of digits in this event = 50
Using G4ParticleGun ...
-1.42275 LIN
+5.16366 LIN
e-
Event: 67
-Number of tracker hits in this event = 69
- 67 111.371 774 7 1 -25.1676 144.31 5.55
- 67 120.987 1620 7 0 -25.171 144.311 4.15
- 67 113.99 774 6 1 -25.2418 144.318 -24.45
- 67 119.105 1620 6 0 -25.2323 144.322 -25.85
- 67 150.975 775 5 1 -25.031 144.391 -54.45
- 67 108.697 1621 5 0 -25.0172 144.39 -55.85
- 67 195.903 776 4 1 -24.7406 144.394 -84.45
- 67 250.786 1621 4 0 -24.7364 144.402 -85.85
- 67 106.961 776 3 1 -24.689 144.576 -114.45
- 67 186.496 1622 3 0 -24.6849 144.584 -115.85
- 67 119.371 777 2 1 -24.5939 144.723 -144.45
- 67 260.542 1622 2 0 -24.5769 144.723 -145.85
- 67 148.199 779 1 1 -24.1554 144.737 -174.451
- 67 120.246 1622 1 0 -24.0953 144.745 -175.85
- 67 198.368 785 0 1 -22.8537 144.867 -204.45
- 67 107.959 1623 0 0 -22.8818 144.923 -205.85
- 67 39.2209 1406 2 0 -45.3225 101.51 -146.25
- 67 440.43 773 4 1 -25.4107 144.355 -84.45
- 67 118.047 773 3 1 -25.3954 144.448 -114.45
- 67 48.48 1623 3 0 -24.9075 144.75 -116.104
- 67 149.296 818 2 1 -16.3574 149.255 -144.45
- 67 3.1641 819 2 1 -16.25 149.297 -144.835
- 67 115.286 1646 2 0 -15.9664 149.407 -145.85
- 67 126.514 859 1 1 -8.19375 152.692 -174.45
- 67 119.22 1663 1 0 -7.87898 152.798 -175.85
- 67 153.313 892 0 1 -1.52995 154.555 -204.45
- 67 38.4432 893 0 1 -1.4497 154.561 -204.747
- 67 142.521 1672 0 0 -1.15484 154.592 -205.85
- 67 327.355 758 1 1 -28.3344 142.541 -174.45
- 67 151.243 1611 1 0 -28.4051 142.499 -175.85
- 67 54.5814 751 0 1 -29.8396 141.582 -204.45
- 67 56.5091 750 0 1 -29.85 141.574 -204.683
- 67 166.721 1606 0 0 -29.9036 141.533 -205.85
- 67 54.0768 1751 2 0 -17.6753 170.35 -146.197
- 67 191.453 1464 2 0 71.2445 113.064 -146.25
- 67 0.170137 1203 0 0 -148.808 60.7908 -206.25
- 67 138.706 1612 1 0 -28.4502 142.591 -175.85
- 67 134.342 749 0 1 -30.2091 143.294 -204.45
- 67 107.95 1616 0 0 -30.2754 143.429 -205.85
- 67 185.214 772 4 1 -25.45 144.431 -84.6318
- 67 173.034 1625 4 0 -25.7464 145.245 -85.85
- 67 460.01 1626 4 0 -25.7912 145.351 -85.9295
- 67 127.561 1627 4 0 -26.2454 145.55 -85.9061
- 67 145.096 775 4 1 -24.98 146.001 -84.85
- 67 69.8055 1624 4 0 -25.6318 145.15 -85.8999
- 67 32.1834 1617 4 0 -25.7546 143.597 -85.85
- 67 114.109 1616 4 0 -25.7737 143.55 -85.9443
- 67 160.489 742 3 1 -31.4628 127.136 -114.45
- 67 88.8086 1527 3 0 -31.8448 125.741 -115.85
- 67 79.0263 1526 3 0 -31.8952 125.55 -116.036
- 67 7.34805 1525 3 0 -31.9445 125.35 -116.221
- 67 209.254 699 2 1 -40.1541 92.061 -144.45
- 67 16.5573 1350 2 0 -39.8448 90.1867 -145.85
- 67 56.2848 1349 2 0 -39.8233 90.05 -145.952
- 67 60.373 1348 2 0 -39.7963 89.85 -146.082
- 67 127.489 1347 2 0 -39.7718 89.6498 -146.215
- 67 55.4103 730 1 1 -34.0056 44.3455 -174.45
- 67 250.289 729 1 1 -34.05 44.2096 -174.529
- 67 22.4293 728 1 1 -34.25 43.7306 -174.82
- 67 3.34303 1110 1 0 -35.079 42.0664 -175.85
- 67 175.052 1109 1 0 -35.0877 42.0499 -175.86
- 67 120.759 1108 1 0 -35.2118 41.8496 -175.969
- 67 146.412 1107 1 0 -35.3284 41.65 -176.077
- 67 67.2481 1106 1 0 -35.421 41.45 -176.176
- 67 13.9693 705 1 0 -54.4437 -39.0191 -176.25
- 67 139.034 704 1 0 -54.4351 -39.05 -176.212
- 67 71.0665 703 1 0 -54.4017 -39.25 -175.979
- 67 112.929 628 1 1 -54.2867 -40.0893 -174.85
- 67 32.4481 629 1 1 -54.25 -40.2967 -174.553
-Number of digits in this event = 37
+Number of tracker hits in this event = 132
+ 67 144.347 1418 10 1 103.934 -10.2114 95.55
+ 67 187.896 849 10 0 103.934 -10.2116 94.15
+ 67 157.796 1418 9 1 103.943 -10.2058 65.55
+ 67 134.925 849 9 0 103.944 -10.2057 64.15
+ 67 136.234 1419 8 1 103.974 -10.2031 35.55
+ 67 170.832 849 8 0 103.978 -10.2025 34.15
+ 67 221.836 1419 7 1 104.05 -10.1862 5.55
+ 67 119.523 849 7 0 104.053 -10.1852 4.15
+ 67 106.627 1419 6 1 104.125 -10.1643 -24.45
+ 67 347.417 849 6 0 104.13 -10.1623 -25.85
+ 67 104.793 1420 5 1 104.245 -10.1147 -54.45
+ 67 192.628 849 5 0 104.251 -10.1108 -55.85
+ 67 157.48 1421 4 1 104.37 -10.0362 -84.45
+ 67 181.512 850 4 0 104.374 -10.0317 -85.85
+ 67 205.972 1421 3 1 104.449 -9.9369 -114.45
+ 67 123.592 850 3 0 104.453 -9.9333 -115.85
+ 67 112.425 1421 2 1 104.535 -9.85988 -144.45
+ 67 153.422 850 2 0 104.538 -9.85744 -145.85
+ 67 175.154 1422 1 1 104.6 -9.80068 -174.45
+ 67 136.302 851 1 0 104.604 -9.79162 -175.85
+ 67 236.394 1422 0 1 104.67 -9.62435 -204.45
+ 67 191.609 852 0 0 104.677 -9.61942 -205.85
+ 67 142.128 1332 10 0 -28.261 86.4685 93.75
+ 67 487.227 854 1 0 105.751 -9.09658 -175.85
+ 67 130.839 855 1 0 106.148 -9.05 -175.892
+ 67 12.74 1446 1 1 109.531 -4.76317 -174.85
+ 67 151.571 1447 1 1 109.55 -4.75238 -174.838
+ 67 17.1294 1429 1 1 105.971 -7.58364 -174.85
+ 67 103 868 1 0 104.964 -6.36491 -175.85
+ 67 49.0487 1454 4 0 56.4892 111.014 -86.2499
+ 67 44.1075 1455 4 0 56.5319 111.15 -86.1402
+ 67 122.307 1456 4 0 56.5615 111.35 -86.0674
+ 67 62.9524 1457 4 0 56.5981 111.55 -86.0191
+ 67 246.875 1458 4 0 56.5987 111.75 -85.9716
+ 67 47.2208 1197 4 1 59.5433 113.853 -84.85
+ 67 173.105 1198 4 1 59.65 113.963 -84.8306
+ 67 72.3255 1199 4 1 59.85 114.08 -84.8117
+ 67 177.247 1200 4 1 60.0501 114.114 -84.7299
+ 67 70.0238 1201 4 1 60.25 114.339 -84.5926
+ 67 110.092 1202 4 1 60.45 114.414 -84.5068
+ 67 49.3508 897 0 0 25.6609 -0.45 -206.125
+ 67 132.537 896 0 0 25.7633 -0.65 -206.189
+ 67 121.802 1308 4 0 38.2203 81.6951 -86.25
+ 67 20.1363 1088 4 1 37.6679 82.2609 -84.85
+ 67 162.544 1087 4 1 37.65 82.2814 -84.813
+ 67 3.06627 1086 4 1 37.4498 82.4323 -84.4593
+ 67 25.5828 850 6 0 104.159 -10.05 -26.2372
+ 67 246.265 1419 5 1 104.121 -10.2745 -54.45
+ 67 225.821 848 5 0 103.996 -10.2532 -55.85
+ 67 102.815 1405 4 1 101.202 -9.71154 -84.45
+ 67 94.2814 1404 4 1 101.15 -9.70552 -84.6936
+ 67 112.136 851 4 0 100.908 -9.67281 -85.85
+ 67 5.35089 1375 3 1 95.1548 -8.96135 -114.45
+ 67 125.123 1374 3 1 95.15 -8.96161 -114.474
+ 67 124.557 855 3 0 94.8596 -8.96326 -115.85
+ 67 108.803 1343 2 1 88.7684 -9.3077 -144.45
+ 67 16.7345 1342 2 1 88.65 -9.31999 -144.799
+ 67 192.674 853 2 0 88.2861 -9.37135 -145.85
+ 67 167.913 1288 1 1 77.7645 -9.52613 -174.45
+ 67 49.2967 1287 1 1 77.65 -9.50265 -174.779
+ 67 229.63 853 1 0 77.2878 -9.43446 -175.85
+ 67 21.9554 1233 0 1 66.6907 -7.50715 -204.45
+ 67 95.6699 1232 0 1 66.65 -7.49188 -204.514
+ 67 8.42664 1231 0 1 66.45 -7.41622 -204.821
+ 67 328.404 864 0 0 65.7779 -7.15902 -205.85
+ 67 52.7457 222 3 0 170.562 -135.554 -116.25
+ 67 197.946 858 1 0 75.9909 -8.44161 -175.85
+ 67 115.523 859 1 0 75.7119 -8.25 -175.904
+ 67 47.1615 859 2 0 107.451 -8.20871 -145.85
+ 67 257.566 1419 2 1 104.119 -10.2524 -144.45
+ 67 273.807 848 2 0 104.126 -10.2576 -145.85
+ 67 231.116 1420 1 1 104.269 -10.3765 -174.45
+ 67 273.629 848 1 0 104.271 -10.4063 -175.85
+ 67 122.88 1420 0 1 104.33 -10.9746 -204.45
+ 67 176.886 845 0 0 104.337 -11.0262 -205.85
+ 67 87.8064 1420 2 1 104.15 -10.2467 -144.595
+ 67 149.769 849 2 0 104.285 -10.2242 -145.85
+ 67 233.852 1434 1 1 107.081 -10.6048 -174.451
+ 67 135.749 846 1 0 107.247 -10.6885 -175.85
+ 67 104.86 1449 0 1 109.991 -12.1458 -204.45
+ 67 132.599 1450 0 1 110.15 -12.1567 -204.525
+ 67 74.6779 1451 0 1 110.35 -12.167 -204.621
+ 67 72.6277 1452 0 1 110.55 -12.1723 -204.712
+ 67 29.1665 1453 0 1 110.75 -12.1764 -204.804
+ 67 312.169 839 0 0 113.084 -12.2026 -205.85
+ 67 0.270239 838 0 0 114.029 -12.25 -206.249
+ 67 159.88 792 0 0 156.65 -21.45 -206.25
+ 67 152.56 1681 0 1 156.425 -21.9933 -204.85
+ 67 30.0079 1680 0 1 156.35 -22.126 -204.507
+ 67 40.9517 297 1 0 174.85 -120.62 -176.25
+ 67 100.004 296 1 0 174.874 -120.75 -176.213
+ 67 154.646 295 1 0 174.911 -120.95 -176.141
+ 67 264.099 294 1 0 174.95 -121.151 -176.066
+ 67 67.3888 293 1 0 174.991 -121.35 -175.984
+ 67 46.4543 292 1 0 175.027 -121.55 -175.903
+ 67 709.125 1776 1 1 175.358 -123.845 -174.85
+ 67 300.235 1775 1 1 175.35 -125.847 -174.741
+ 67 59.9635 250 1 0 173.921 -129.99 -175.85
+ 67 78.9179 249 1 0 173.85 -130.15 -175.874
+ 67 54.2059 248 1 0 173.755 -130.35 -175.879
+ 67 66.2152 1753 1 1 170.882 -134.849 -174.85
+ 67 218.203 1752 1 1 170.75 -135.046 -174.783
+ 67 153.14 1751 1 1 170.55 -135.365 -174.654
+ 67 18.1802 1750 1 1 170.35 -135.751 -174.483
+ 67 31.2921 1749 1 1 169.978 -135.721 -174.45
+ 67 132.458 1748 1 1 169.95 -135.681 -174.488
+ 67 163.215 1747 1 1 169.75 -135.427 -174.792
+ 67 71.3367 228 1 0 168.901 -134.529 -175.85
+ 67 86.9484 229 1 0 168.73 -134.35 -176.047
+ 67 97.2152 1650 0 1 150.347 -115.368 -204.45
+ 67 71.5764 1649 0 1 150.15 -115.352 -204.534
+ 67 61.2155 1648 0 1 149.95 -115.367 -204.496
+ 67 161.649 1647 0 1 149.75 -115.357 -204.509
+ 67 181.647 1418 4 1 103.936 -10.3053 -84.45
+ 67 126.803 848 4 0 103.931 -10.3083 -85.85
+ 67 119.61 1418 3 1 103.832 -10.3724 -114.45
+ 67 111.01 848 3 0 103.842 -10.3685 -115.85
+ 67 99.2754 846 0 0 104.67 -10.7347 -205.85
+ 67 81.6579 1308 2 1 81.6945 2.01354 -144.45
+ 67 42.5938 848 10 0 103.897 -10.25 93.8839
+ 67 25.5685 1334 9 1 86.9098 -20.9136 65.5499
+ 67 144.425 1333 9 1 86.8492 -20.8479 65.5067
+ 67 221.239 1332 9 1 86.65 -20.6684 65.2982
+ 67 60.7841 799 9 0 85.6942 -20.1413 64.15
+ 67 113.091 800 9 0 85.5722 -20.0498 63.9048
+ 67 24.5734 648 9 0 79.4383 -50.3674 63.75
+ 67 145.276 647 9 0 79.4209 -50.45 63.8124
+ 67 54.0846 646 9 0 79.3019 -50.6503 64.0403
+ 67 123.374 1295 9 1 79.1764 -51.7644 65.15
+ 67 101.601 1294 9 1 79.0499 -52.0018 65.4064
+ 67 67.0681 1293 9 1 78.85 -52.1883 65.4756
+ 67 38.3061 547 0 0 -117.784 -70.4522 -206.25
+Number of digits in this event = 68
Using G4ParticleGun ...
-6.13025 LIN
+3.92579 LIN
e-
Event: 68
-Number of tracker hits in this event = 30
- 68 116.967 938 7 1 7.7333 -149.196 5.55
- 68 109.842 154 7 0 7.73243 -149.195 4.15
- 68 148.585 938 6 1 7.71625 -149.165 -24.45
- 68 95.21 154 6 0 7.71458 -149.164 -25.85
- 68 141.532 938 5 1 7.68031 -149.155 -54.45
- 68 147.442 154 5 0 7.67705 -149.156 -55.85
- 68 138.965 937 4 1 7.60981 -149.172 -84.45
- 68 117.398 154 4 0 7.60725 -149.172 -85.85
- 68 129.431 937 3 1 7.55261 -149.183 -114.45
- 68 123.051 154 3 0 7.5494 -149.183 -115.85
- 68 431.671 937 2 1 7.4863 -149.19 -144.45
- 68 392.721 154 2 0 7.48396 -149.191 -145.85
- 68 123.151 936 1 1 7.43679 -149.216 -174.45
- 68 134.631 154 1 0 7.43636 -149.217 -175.85
- 68 104.35 936 0 1 7.42513 -149.233 -204.45
- 68 110.871 154 0 0 7.42558 -149.233 -205.85
- 68 46.7609 42 6 0 -172.894 -171.75 -25.8811
- 68 67.1212 1500 3 1 120.18 -69.4868 -114.85
- 68 34.0123 962 1 1 12.5428 -152.177 -174.45
- 68 88.8668 963 1 1 12.6503 -152.141 -174.556
- 68 29.6741 964 1 1 12.8502 -152.079 -174.773
- 68 242.139 142 1 0 13.7783 -151.746 -175.85
- 68 63.9989 1130 0 1 46.1868 -140.948 -204.45
- 68 66.3143 1131 0 1 46.25 -140.94 -204.642
- 68 135.517 196 0 0 46.6325 -140.897 -205.85
- 68 51.0076 936 2 1 7.45 -149.214 -144.719
- 68 109.145 82 2 0 1.24827 -163.722 -146.25
- 68 166.339 81 2 0 1.20104 -163.75 -146.181
- 68 4.18335 1006 2 1 21.2781 -160.822 -144.85
- 68 211.879 96 2 0 21.5533 -160.885 -145.85
-Number of digits in this event = 17
-Using G4ParticleGun ...
-4.26804 LIN
+Number of tracker hits in this event = 68
+ 68 111.329 504 8 1 -79.0976 -111.416 35.55
+ 68 106.452 343 8 0 -79.0974 -111.415 34.15
+ 68 120.736 504 7 1 -79.0855 -111.388 5.55
+ 68 102.946 343 7 0 -79.0844 -111.388 4.15
+ 68 124.189 504 6 1 -79.0624 -111.39 -24.45
+ 68 116.93 343 6 0 -79.0628 -111.389 -25.85
+ 68 158.033 504 5 1 -79.0808 -111.361 -54.45
+ 68 179.985 343 5 0 -79.0812 -111.359 -55.85
+ 68 107.194 504 4 1 -79.0771 -111.32 -84.45
+ 68 125.017 344 4 0 -79.0745 -111.318 -85.85
+ 68 182.759 505 3 1 -79.0251 -111.269 -114.45
+ 68 123.482 344 3 0 -79.0236 -111.268 -115.85
+ 68 368.75 505 2 1 -78.9908 -111.262 -144.45
+ 68 241.711 344 2 0 -78.9901 -111.259 -145.85
+ 68 166.175 505 1 1 -78.9897 -111.18 -174.45
+ 68 230.342 344 1 0 -78.9844 -111.176 -175.85
+ 68 131.364 505 0 1 -78.8811 -111.101 -204.45
+ 68 194.307 345 0 0 -78.8767 -111.096 -205.85
+ 68 280.517 488 1 1 -82.336 -108.241 -174.45
+ 68 120.798 365 1 0 -82.6154 -107.115 -175.85
+ 68 56.9656 366 1 0 -82.6761 -106.95 -176.088
+ 68 93.4268 470 0 1 -85.9658 -87.7639 -204.45
+ 68 162.377 469 0 1 -86.05 -87.6425 -204.595
+ 68 86.4955 467 0 0 -87.0946 -86.6338 -205.85
+ 68 71.5667 468 0 0 -87.278 -86.45 -206.063
+ 68 133.184 343 2 0 -78.9467 -111.35 -145.857
+ 68 128.008 510 1 1 -78.0256 -111.31 -174.45
+ 68 156.904 511 0 1 -77.6972 -110.86 -204.45
+ 68 108.262 347 0 0 -77.8394 -110.679 -205.85
+ 68 127.185 504 3 1 -79.05 -111.282 -114.788
+ 68 161.591 344 5 0 -79.1876 -111.35 -56.1598
+ 68 125.61 505 6 1 -79.0445 -111.367 -24.4501
+ 68 104.844 342 6 0 -78.6938 -111.585 -25.85
+ 68 117.836 545 5 1 -71.0112 -115.991 -54.45
+ 68 163.509 321 5 0 -70.4101 -115.9 -55.85
+ 68 81.5135 615 4 1 -56.8554 -114.255 -84.4502
+ 68 185.363 616 4 1 -56.8499 -114.249 -84.4579
+ 68 59.5888 617 4 1 -56.6499 -114.079 -84.7228
+ 68 4.21918 333 4 0 -55.7471 -113.357 -85.85
+ 68 148.937 334 4 0 -55.7385 -113.35 -85.8609
+ 68 32.968 335 4 0 -55.5172 -113.15 -86.1702
+ 68 38.0881 716 3 1 -36.7469 -94.6573 -114.45
+ 68 74.6851 717 3 1 -36.65 -94.5731 -114.522
+ 68 77.7264 718 3 1 -36.45 -94.402 -114.663
+ 68 23.9167 719 3 1 -36.25 -94.2459 -114.807
+ 68 23.4432 434 3 0 -34.8259 -93.2083 -115.85
+ 68 82.6959 435 3 0 -34.748 -93.15 -115.904
+ 68 88.8687 436 3 0 -34.4873 -92.95 -116.068
+ 68 29.1596 437 3 0 -34.2326 -92.7498 -116.225
+ 68 9.1101 950 2 1 10.2156 -58.1375 -144.45
+ 68 72.2516 951 2 1 10.25 -58.1235 -144.464
+ 68 59.5299 952 2 1 10.45 -58.0402 -144.549
+ 68 58.7245 953 2 1 10.65 -57.9681 -144.649
+ 68 59.812 954 2 1 10.85 -57.8896 -144.752
+ 68 34.3991 614 2 0 12.8025 -57.089 -145.85
+ 68 180.202 615 2 0 12.8947 -57.05 -145.903
+ 68 59.4838 616 2 0 13.3297 -56.8497 -146.158
+ 68 77.3414 1230 1 1 66.1189 -34.829 -174.45
+ 68 38.4996 1231 1 1 66.25 -34.6574 -174.73
+ 68 39.9946 729 1 0 66.7723 -34.1089 -175.85
+ 68 105.239 730 1 0 66.8326 -34.05 -175.975
+ 68 123.783 1308 0 1 81.7999 -20.3078 -204.452
+ 68 104.035 800 0 0 81.998 -19.886 -205.85
+ 68 226.835 801 0 0 82.0132 -19.85 -205.902
+ 68 533.439 1704 1 1 161.048 -45.3405 -174.45
+ 68 318.674 1703 1 1 160.95 -46.5865 -174.611
+ 68 92.5348 1702 1 1 160.75 -47.0451 -174.549
+ 68 162.287 1701 1 1 160.55 -47.0149 -174.553
+Number of digits in this event = 33
+Using G4ParticleGun ...
+6.4207 LIN
e-
Event: 69
-Number of tracker hits in this event = 58
- 69 25.1539 1312 11 1 82.4988 -3.964 125.213
- 69 114.975 880 11 0 82.4987 -3.96394 124.15
- 69 156.483 1312 10 1 82.4949 -3.9542 95.55
- 69 215.781 880 10 0 82.4962 -3.95284 94.15
- 69 109.171 1312 9 1 82.516 -3.92963 65.55
- 69 106.699 880 9 0 82.5174 -3.92626 64.15
- 69 111.605 1312 8 1 82.5421 -3.85788 35.55
- 69 114.689 880 8 0 82.5447 -3.85405 34.15
- 69 94.5373 1312 7 1 82.5928 -3.77826 5.55
- 69 150.389 881 7 0 82.5942 -3.77535 4.15
- 69 170.868 1312 6 1 82.6243 -3.70661 -24.45
- 69 248.442 881 6 0 82.6263 -3.70371 -25.85
- 69 126.457 1313 5 1 82.6628 -3.641 -54.45
- 69 123.698 882 5 0 82.6643 -3.63437 -55.85
- 69 175.93 1313 4 1 82.6981 -3.49532 -84.45
- 69 147.454 882 4 0 82.6994 -3.48896 -85.85
- 69 137.522 1313 3 1 82.7199 -3.35919 -114.45
- 69 192.981 883 3 0 82.7221 -3.34981 -115.85
- 69 287.567 1313 2 1 82.7695 -3.1664 -144.45
- 69 228.329 884 2 0 82.7717 -3.15889 -145.85
- 69 443.647 1313 1 1 82.8048 -2.9946 -174.45
- 69 360.918 885 1 0 82.802 -2.97942 -175.85
- 69 264.067 1313 0 1 82.7391 -2.62016 -204.45
- 69 95.7474 887 0 0 82.747 -2.60233 -205.85
- 69 45.2976 723 0 0 155.134 -35.4072 -206.25
- 69 157.605 722 0 0 155.14 -35.45 -206.196
- 69 125.64 1312 0 1 82.6416 -2.95984 -204.45
- 69 232.554 885 0 0 82.6176 -2.97821 -205.85
- 69 136.42 1070 7 0 -25.3333 34.051 3.75
- 69 121.18 777 7 1 -24.6184 34.8312 5.15
- 69 51.263 987 3 0 75.7857 17.45 -116.11
- 69 18.8334 1277 3 1 75.4781 17.5031 -114.85
- 69 46.7527 1276 3 1 75.45 17.4798 -114.833
- 69 17.6601 975 3 0 73.3708 15.099 -115.85
- 69 280.751 974 3 0 73.3693 15.05 -115.868
- 69 5.82324 1259 3 1 71.9023 16.141 -114.85
- 69 64.1564 983 3 0 71.2403 16.7253 -115.85
- 69 150.82 1314 2 1 82.85 -3.25524 -144.472
- 69 53.9832 1315 2 1 83.05 -3.45724 -144.715
- 69 133.752 882 2 0 83.9432 -3.63092 -145.85
- 69 36.8912 1354 1 1 91.0585 -5.23425 -174.45
- 69 105.842 1353 1 1 90.95 -5.12303 -174.546
- 69 57.602 1352 1 1 90.75 -4.91859 -174.742
- 69 85.4051 880 1 0 89.909 -3.92474 -175.85
- 69 77.5108 881 1 0 89.8341 -3.84967 -175.928
- 69 100.016 882 1 0 89.6415 -3.65 -176.06
- 69 18.6896 883 1 0 89.4434 -3.44978 -176.215
- 69 10.1068 1181 0 1 56.2855 35.7655 -204.45
- 69 97.5438 1180 0 1 56.25 35.7598 -204.46
- 69 85.1541 1179 0 1 56.05 35.7375 -204.5
- 69 59.5215 1178 0 1 55.85 35.734 -204.567
- 69 48.8449 1177 0 1 55.65 35.7634 -204.644
- 69 56.205 1176 0 1 55.45 35.7898 -204.706
- 69 44.4872 1175 0 1 55.2498 35.8171 -204.759
- 69 7.51158 1174 0 1 55.0493 35.8537 -204.836
- 69 106.955 1080 0 0 53.2384 36.1721 -205.85
- 69 138.298 1081 0 0 52.8439 36.25 -206.014
- 69 93.9721 1082 0 0 52.4056 36.4502 -206.162
-Number of digits in this event = 28
+Number of tracker hits in this event = 102
+ 69 102.595 1302 9 1 80.603 -105.556 65.55
+ 69 138.384 372 9 0 80.6025 -105.555 64.15
+ 69 108.282 1302 8 1 80.5853 -105.551 35.55
+ 69 125.262 372 8 0 80.5833 -105.551 34.15
+ 69 108.731 1302 7 1 80.5493 -105.555 5.55
+ 69 114.869 372 7 0 80.5481 -105.556 4.15
+ 69 225.637 1302 6 1 80.5197 -105.577 -24.45
+ 69 239.453 372 6 0 80.5157 -105.577 -25.85
+ 69 183.058 1301 5 1 80.4358 -105.568 -54.45
+ 69 243.999 372 5 0 80.433 -105.569 -55.85
+ 69 108.863 1301 4 1 80.3715 -105.587 -84.45
+ 69 428.604 372 4 0 80.3691 -105.59 -85.85
+ 69 142.874 1301 3 1 80.3288 -105.651 -114.45
+ 69 279.751 372 3 0 80.3282 -105.654 -115.85
+ 69 152.598 1301 2 1 80.3161 -105.714 -144.45
+ 69 218.679 372 2 0 80.317 -105.715 -145.85
+ 69 136.973 1301 1 1 80.333 -105.748 -174.45
+ 69 116.105 372 1 0 80.3331 -105.748 -175.85
+ 69 161.892 1301 0 1 80.3402 -105.761 -204.45
+ 69 144.824 371 0 0 80.3428 -105.765 -205.85
+ 69 181.662 347 1 0 52.8406 -110.55 -176.13
+ 69 63.2768 1300 0 1 80.25 -105.751 -204.477
+ 69 80.9002 1299 0 1 80.05 -105.721 -204.588
+ 69 70.6746 1298 0 1 79.85 -105.699 -204.585
+ 69 74.3713 1297 0 1 79.65 -105.718 -204.657
+ 69 224.485 1296 0 1 79.4498 -105.747 -204.655
+ 69 115.972 1295 0 1 79.25 -105.758 -204.696
+ 69 30.304 1294 0 1 79.0499 -105.641 -204.738
+ 69 58.2035 373 0 0 79.3439 -105.461 -205.85
+ 69 73.0486 1290 0 1 78.1461 -103.914 -204.85
+ 69 263.484 1289 0 1 78.05 -103.822 -204.798
+ 69 38.5915 379 2 0 80.7155 -104.338 -145.85
+ 69 211.743 1320 2 1 84.1228 -104.314 -144.85
+ 69 45.3304 374 2 0 85.8583 -105.166 -145.85
+ 69 156.528 375 2 0 85.9255 -105.15 -145.881
+ 69 98.7936 1301 6 1 80.4499 -105.576 -24.5203
+ 69 84.3994 371 6 0 80.092 -105.931 -25.85
+ 69 140.732 370 6 0 80.071 -105.95 -25.9241
+ 69 110.52 1264 5 1 72.9604 -107.685 -54.45
+ 69 2.9716 1265 5 1 73.05 -107.699 -54.8378
+ 69 87.3072 362 5 0 73.3386 -107.73 -55.85
+ 69 18.2406 361 5 0 73.4339 -107.75 -56.1657
+ 69 18.3847 506 5 0 71.8486 -78.6744 -56.25
+ 69 76.1299 507 5 0 71.8429 -78.6498 -56.2275
+ 69 49.8797 508 5 0 71.7477 -78.45 -55.972
+ 69 241.187 1258 5 1 71.6614 -77.4932 -54.8498
+ 69 14.1072 1257 5 1 71.65 -77.418 -54.8221
+ 69 194.633 1259 5 1 71.8538 -76.9421 -54.45
+ 69 75.2108 536 5 0 70.6315 -72.7624 -55.85
+ 69 88.2356 537 5 0 70.4599 -72.65 -55.8987
+ 69 2.72672 538 5 0 70.2705 -72.45 -55.8616
+ 69 162.175 1251 5 1 70.2942 -72.2689 -54.85
+ 69 56.205 1252 5 1 70.45 -72.2906 -54.549
+ 69 4.68225 558 5 0 70.9353 -68.45 -56.1572
+ 69 82.3208 1303 6 1 80.6502 -105.753 -24.5347
+ 69 87.9853 1304 6 1 80.85 -105.934 -24.6778
+ 69 16.2532 1305 6 1 81.05 -106.073 -24.8149
+ 69 24.0953 365 6 0 83.0865 -107.118 -25.8501
+ 69 142.945 364 6 0 83.1535 -107.15 -25.8834
+ 69 56.8691 363 6 0 83.4774 -107.35 -26.1356
+ 69 7.40123 421 0 0 97.3945 -95.95 -206.189
+ 69 535.685 1385 0 1 97.3435 -95.1798 -204.85
+ 69 166.109 1302 1 1 80.5575 -105.526 -174.45
+ 69 76.6049 1303 1 1 80.6501 -105.578 -174.597
+ 69 23.0032 1304 1 1 80.85 -105.661 -174.806
+ 69 79.7101 370 1 0 82.1428 -106.085 -175.85
+ 69 222.376 369 1 0 82.3333 -106.15 -175.965
+ 69 40.0367 368 1 0 82.6322 -106.35 -176.173
+ 69 43.2939 364 1 0 139.59 -107.248 -176.25
+ 69 109.892 365 1 0 139.687 -107.15 -176.137
+ 69 6.18667 1602 1 1 140.734 -106.298 -174.85
+ 69 171.995 1603 1 1 140.75 -106.284 -174.828
+ 69 27.0012 1616 1 1 143.35 -106.777 -174.618
+ 69 319.351 1617 1 1 143.55 -106.828 -174.602
+ 69 253.733 1618 1 1 143.75 -106.885 -174.488
+ 69 90.7729 1619 1 1 143.95 -106.931 -174.562
+ 69 83.7246 1620 1 1 144.15 -107.068 -174.488
+ 69 96.6844 1621 1 1 144.35 -107.203 -174.452
+ 69 181.053 1622 1 1 144.55 -107.19 -174.571
+ 69 163.761 1604 1 1 140.95 -106.094 -174.469
+ 69 98.4317 373 1 0 80.4917 -105.447 -175.85
+ 69 144.642 386 0 0 79.3375 -102.897 -205.85
+ 69 297.012 1302 4 1 80.5973 -105.57 -84.45
+ 69 264.17 1302 3 1 80.4552 -105.666 -114.45
+ 69 132.756 1308 2 1 81.7878 -105.645 -144.45
+ 69 120.879 1315 1 1 83.1522 -106.115 -174.45
+ 69 109.065 1319 0 1 83.9305 -106.99 -204.45
+ 69 109.218 365 0 0 83.977 -107.087 -205.85
+ 69 4.50879 298 2 0 95.3712 -120.492 -146.25
+ 69 234.924 371 3 0 80.6735 -105.836 -115.85
+ 69 234.749 1309 2 1 81.9496 -105.743 -144.45
+ 69 19.9109 371 2 0 81.9899 -105.939 -145.85
+ 69 94.9573 370 2 0 81.9922 -105.95 -145.928
+ 69 114.446 1311 1 1 82.3734 -110.165 -174.45
+ 69 156.317 348 1 0 82.3784 -110.409 -175.85
+ 69 207.635 1312 0 1 82.4851 -115.747 -204.45
+ 69 40.1284 1311 0 1 82.45 -115.85 -204.83
+ 69 6.55623 320 0 0 82.3511 -116.142 -205.85
+ 69 129.621 319 0 0 82.3483 -116.15 -205.879
+ 69 151.119 1310 2 1 82.05 -105.428 -144.699
+ 69 98.3825 1311 2 1 82.25 -105.414 -144.787
+ 69 127.747 376 2 0 83.2595 -104.857 -145.85
+Number of digits in this event = 48
Using G4ParticleGun ...
-6.44272 LIN
+8.7534 LIN
e-
Event: 70
-Number of tracker hits in this event = 25
- 70 107.851 379 10 1 -104.269 48.6521 95.55
- 70 156.347 1143 10 0 -104.268 48.6528 94.15
- 70 163.787 379 9 1 -104.252 48.6617 65.55
- 70 118.783 1143 9 0 -104.252 48.6616 64.15
- 70 127.555 379 8 1 -104.239 48.6586 35.55
- 70 136.354 1143 8 0 -104.239 48.6581 34.15
- 70 118.321 379 7 1 -104.219 48.6481 5.55
- 70 136.274 1142 7 0 -104.219 48.6471 4.15
- 70 100.605 379 6 1 -104.204 48.6312 -24.45
- 70 112.078 1142 6 0 -104.202 48.6322 -25.85
- 70 120.983 379 5 1 -104.161 48.6453 -54.45
- 70 121.734 1142 5 0 -104.158 48.6446 -55.85
- 70 131.326 380 4 1 -104.103 48.628 -84.45
- 70 121.032 1142 4 0 -104.099 48.6287 -85.85
- 70 141.63 380 3 1 -104.024 48.643 -114.45
- 70 123.184 1142 3 0 -104.022 48.6437 -115.85
- 70 104.821 380 2 1 -103.966 48.6576 -144.45
- 70 133.147 1143 2 0 -103.963 48.658 -145.85
- 70 124.949 381 1 1 -103.91 48.6697 -174.45
- 70 97.6671 1143 1 0 -103.908 48.6714 -175.85
- 70 402.127 381 0 1 -103.865 48.7091 -204.45
- 70 488.186 1143 0 0 -103.862 48.7089 -205.85
- 70 43.364 1142 2 0 -103.966 48.6499 -146.089
- 70 92.7575 197 3 1 -140.555 59.4687 -114.85
- 70 54.9873 198 3 1 -140.55 59.4443 -114.575
-Number of digits in this event = 18
+Number of tracker hits in this event = 64
+ 70 121.624 1087 11 1 37.5841 -21.7271 125.55
+ 70 111.063 791 11 0 37.5839 -21.7272 124.15
+ 70 123.686 1087 10 1 37.5824 -21.7273 95.55
+ 70 121.738 791 10 0 37.582 -21.7268 94.15
+ 70 201.989 1087 9 1 37.5719 -21.7152 65.55
+ 70 172.534 791 9 0 37.571 -21.7141 64.15
+ 70 138.031 1087 8 1 37.5514 -21.6897 35.55
+ 70 113.432 791 8 0 37.5504 -21.6882 34.15
+ 70 131.532 1087 7 1 37.5304 -21.6574 5.55
+ 70 110.68 791 7 0 37.529 -21.6562 4.15
+ 70 128.365 1087 6 1 37.5003 -21.6341 -24.45
+ 70 312.822 792 6 0 37.499 -21.6327 -25.85
+ 70 134.877 1087 5 1 37.4722 -21.6084 -54.45
+ 70 126.825 792 5 0 37.4712 -21.6082 -55.85
+ 70 116.967 1086 4 1 37.4467 -21.6071 -84.45
+ 70 189.149 792 4 0 37.445 -21.6073 -85.85
+ 70 164.305 1086 3 1 37.4017 -21.6168 -114.45
+ 70 110.145 792 3 0 37.3993 -21.6168 -115.85
+ 70 121.687 1086 2 1 37.3475 -21.6129 -144.45
+ 70 123.791 792 2 0 37.3445 -21.6125 -145.85
+ 70 216.101 1086 1 1 37.281 -21.6038 -174.45
+ 70 149.125 792 1 0 37.2786 -21.6025 -175.85
+ 70 135.964 1085 0 1 37.2249 -21.576 -204.45
+ 70 133.735 792 0 0 37.2212 -21.5735 -205.85
+ 70 187.007 615 6 0 -141.096 -57.0222 -26.25
+ 70 2.10858 616 6 0 -141.258 -56.85 -25.8604
+ 70 65.5687 193 6 1 -141.508 -56.1155 -24.85
+ 70 113.843 192 6 1 -141.55 -56.0729 -24.7519
+ 70 118.014 191 6 1 -141.75 -56.1295 -24.7464
+ 70 120.302 190 6 1 -141.95 -56.0684 -24.8006
+ 70 3.05934 690 1 0 104.371 -41.8757 -176.25
+ 70 95.0195 1425 1 1 105.16 -40.922 -174.85
+ 70 151.593 791 1 0 37.2954 -21.65 -175.974
+ 70 124.796 1141 3 1 48.4357 -12.9618 -114.45
+ 70 23.8749 839 3 0 48.5375 -12.1084 -115.85
+ 70 99.6127 840 3 0 48.5435 -12.05 -115.928
+ 70 1.30896 841 3 0 48.5233 -11.8499 -116.246
+ 70 4.89106 1116 2 1 43.4427 7.35534 -144.45
+ 70 120.848 1117 2 1 43.45 7.36508 -144.467
+ 70 12.9694 1118 2 1 43.65 7.56763 -144.82
+ 70 46.3766 940 2 0 44.2653 8.17023 -145.85
+ 70 120.624 941 2 0 44.3477 8.25 -145.959
+ 70 2.53759 942 2 0 44.6182 8.45 -146.241
+ 70 32.4732 1330 2 0 80.1339 86.1344 -146.25
+ 70 134.183 1331 2 0 80.16 86.25 -146.196
+ 70 109.855 1332 2 0 80.2388 86.45 -146.097
+ 70 67.3236 1333 2 0 80.336 86.65 -146
+ 70 44.9727 1334 2 0 80.3745 86.85 -145.939
+ 70 55.5098 1335 2 0 80.3791 87.05 -145.907
+ 70 54.6758 1336 2 0 80.3454 87.2501 -145.885
+ 70 33.2247 1337 2 0 80.3258 87.4501 -145.861
+ 70 435.224 1303 2 1 80.7904 93.8639 -144.85
+ 70 490.683 1304 2 1 80.85 94.3888 -144.727
+ 70 173.394 1302 2 1 80.65 96.3247 -144.704
+ 70 91.4508 1035 1 0 62.7017 27.05 -175.997
+ 70 111.624 1086 5 1 37.3297 -21.7157 -54.4502
+ 70 87.7073 789 5 0 37.9725 -22.1177 -55.85
+ 70 179.349 788 5 0 38.0254 -22.25 -56.0385
+ 70 323.504 1081 5 0 -2.09912 36.2749 -56.25
+ 70 154.385 1080 5 0 -2.36507 36.2498 -56.173
+ 70 90.8476 1079 5 0 -2.58422 36.05 -56.1743
+ 70 72.8202 1449 5 0 -30.7097 110.065 -56.25
+ 70 130.873 1539 12 0 -54.0011 128.065 153.75
+ 70 101.727 1538 12 0 -53.7682 127.95 153.831
+Number of digits in this event = 36
Using G4ParticleGun ...
-8.20806 LIN
+1.67367 LIN
e-
Event: 71
-Number of tracker hits in this event = 32
- 71 112.679 1442 10 1 108.625 2.74956 95.55
- 71 118.559 913 10 0 108.624 2.75012 94.15
- 71 110.068 1442 9 1 108.612 2.763 65.55
- 71 108.397 913 9 0 108.611 2.7641 64.15
- 71 112.68 1442 8 1 108.585 2.792 35.55
- 71 125.481 913 8 0 108.585 2.79386 34.15
- 71 141.219 1442 7 1 108.581 2.83363 5.55
- 71 126.906 913 7 0 108.581 2.83571 4.15
- 71 108.177 1442 6 1 108.591 2.87923 -24.45
- 71 134.907 914 6 0 108.592 2.88033 -25.85
- 71 110.639 1442 5 1 108.602 2.90789 -54.45
- 71 122.126 914 5 0 108.604 2.91174 -55.85
- 71 122.037 1442 4 1 108.653 2.98383 -84.45
- 71 156.435 914 4 0 108.655 2.98794 -85.85
- 71 144.209 1442 3 1 108.702 3.06721 -114.45
- 71 169.555 915 3 0 108.704 3.07173 -115.85
- 71 128.585 1442 2 1 108.744 3.16637 -144.45
- 71 100.427 915 2 0 108.748 3.17132 -145.85
- 71 112.827 1443 1 1 108.819 3.27141 -174.45
- 71 111.723 916 1 0 108.822 3.27694 -175.85
- 71 500.6 1443 0 1 108.881 3.39107 -204.45
- 71 372.296 916 0 0 108.885 3.39586 -205.85
- 71 285.04 196 5 0 62.2414 -140.75 -56.1515
- 71 14.1515 600 4 0 164.747 -59.9195 -86.25
- 71 56.9305 1608 12 1 141.812 -36.037 155.15
- 71 103.029 1607 12 1 141.75 -36.038 155.37
- 71 174.414 599 4 0 164.85 -60.05 -85.9081
- 71 283.439 968 3 0 68.0833 13.7763 -116.25
- 71 26.1424 969 3 0 67.9101 13.8501 -115.926
- 71 68.7142 915 4 0 108.635 3.05 -85.8857
- 71 269.201 1437 4 1 107.663 1.4408 -84.85
- 71 140.294 1436 4 1 107.55 1.34304 -84.6965
-Number of digits in this event = 20
-Using G4ParticleGun ...
-5.53499 LIN
+Number of tracker hits in this event = 122
+ 71 111.114 754 9 1 -29.0872 -125.208 65.55
+ 71 126.334 274 9 0 -29.0845 -125.212 64.15
+ 71 166.082 755 8 1 -29.0387 -125.274 35.55
+ 71 207.157 274 8 0 -29.0335 -125.28 34.15
+ 71 112.02 755 7 1 -28.9351 -125.415 5.55
+ 71 147.736 273 7 0 -28.9339 -125.423 4.15
+ 71 337.231 755 6 1 -28.9101 -125.573 -24.45
+ 71 129.47 272 6 0 -28.91 -125.588 -25.85
+ 71 141.698 755 5 1 -28.9154 -125.877 -54.45
+ 71 163.818 271 5 0 -28.9098 -125.899 -55.85
+ 71 163.171 756 4 1 -28.8169 -126.398 -84.45
+ 71 107.486 268 4 0 -28.7741 -126.435 -85.85
+ 71 115.193 760 3 1 -27.9445 -127.166 -114.45
+ 71 115.717 264 3 0 -27.9097 -127.192 -115.85
+ 71 213.37 764 2 1 -27.2324 -127.701 -144.45
+ 71 119.634 262 2 0 -27.1999 -127.709 -145.85
+ 71 116.264 768 1 1 -26.4339 -127.819 -174.45
+ 71 111.291 261 1 0 -26.4002 -127.839 -175.85
+ 71 120.875 771 0 1 -25.669 -128.274 -204.45
+ 71 104.698 259 0 0 -25.6128 -128.293 -205.85
+ 71 45.9032 763 2 1 -27.2501 -127.708 -144.5
+ 71 492.546 755 3 1 -28.9286 -126.571 -114.45
+ 71 489.891 267 3 0 -28.9414 -126.583 -115.85
+ 71 200.329 754 2 1 -29.1668 -126.852 -144.45
+ 71 161.689 266 2 0 -29.2424 -126.816 -145.85
+ 71 107.048 746 1 1 -30.8325 -126.116 -174.45
+ 71 26.175 745 1 1 -30.85 -126.114 -174.729
+ 71 215.216 270 1 0 -30.9189 -126.101 -175.85
+ 71 124.753 736 0 1 -32.7117 -125.831 -204.45
+ 71 126.863 271 0 0 -32.8171 -125.818 -205.85
+ 71 136.607 43 3 0 -42.7321 -171.463 -116.25
+ 71 220.604 268 3 0 -28.9509 -126.55 -115.85
+ 71 54.299 755 2 1 -29.05 -124.962 -144.601
+ 71 141.922 275 2 0 -29.0342 -124.994 -145.85
+ 71 102.094 758 1 1 -28.3589 -125.546 -174.45
+ 71 173.138 272 1 0 -28.3137 -125.565 -175.85
+ 71 105.553 763 0 1 -27.2769 -126.059 -204.45
+ 71 126.722 270 0 0 -27.1969 -126.082 -205.85
+ 71 136.269 741 2 1 -31.6908 -127.887 -144.45
+ 71 118.489 260 2 0 -31.7232 -128.011 -145.85
+ 71 47.7793 738 1 1 -32.2739 -130.792 -174.45
+ 71 63.1115 739 1 1 -32.25 -130.802 -174.606
+ 71 229.336 246 1 0 -32.0586 -130.849 -175.85
+ 71 119.06 761 0 1 -27.6598 -131.887 -204.45
+ 71 119.151 239 0 0 -27.8665 -132.215 -205.85
+ 71 264.507 243 0 0 -27.0016 -131.437 -205.85
+ 71 79.3702 217 0 0 -81.2905 -136.649 -206.25
+ 71 94.4097 216 0 0 -81.3598 -136.75 -206.13
+ 71 208.055 215 0 0 -81.2971 -136.95 -206.081
+ 71 123.577 779 0 1 -24.1567 -137.635 -204.85
+ 71 72.0102 207 0 0 -23.2702 -138.67 -205.85
+ 71 137.361 753 2 1 -29.3069 -126.68 -144.45
+ 71 235.431 267 2 0 -29.3498 -126.663 -145.85
+ 71 132.964 748 1 1 -30.2859 -126.503 -174.45
+ 71 240.494 268 1 0 -30.3237 -126.496 -175.85
+ 71 116.183 741 0 1 -31.6585 -125.444 -204.45
+ 71 71.5275 273 0 0 -31.8014 -125.365 -205.85
+ 71 58.751 274 0 0 -31.8288 -125.35 -206.119
+ 71 271.553 759 1 1 -28.1188 -126.202 -174.45
+ 71 146.399 746 0 1 -30.7833 -123.553 -204.452
+ 71 444.727 283 0 0 -30.7978 -123.437 -205.85
+ 71 103.739 282 0 0 -30.9331 -123.55 -206.128
+ 71 141.728 760 1 1 -28.05 -126.259 -174.807
+ 71 120.932 778 0 1 -24.425 -130.529 -204.45
+ 71 122.005 246 0 0 -24.1183 -130.802 -205.85
+ 71 424.203 275 6 0 -28.8787 -125.122 -25.85
+ 71 104.636 761 5 1 -27.7633 -125.858 -54.45
+ 71 202.655 270 5 0 -27.5881 -125.95 -55.915
+ 71 143.813 779 4 1 -24.239 -127.79 -84.4504
+ 71 156.137 260 4 0 -24.0746 -128.037 -85.85
+ 71 120.887 800 3 1 -20.0434 -133.513 -114.45
+ 71 101.962 231 3 0 -19.6493 -133.811 -115.85
+ 71 131.54 845 2 1 -11.0061 -139.914 -144.45
+ 71 136.635 199 2 0 -10.5406 -140.221 -145.851
+ 71 116.253 892 1 1 -1.56414 -145.9 -174.45
+ 71 106.426 171 1 0 -1.25413 -145.894 -175.85
+ 71 143.742 927 0 1 5.5022 -144.937 -204.45
+ 71 28.5135 928 0 1 5.65 -144.95 -204.772
+ 71 146.986 175 0 0 6.11953 -144.99 -205.85
+ 71 87.2745 926 0 1 5.45 -144.902 -204.581
+ 71 41.9022 177 0 0 5.33138 -144.596 -205.85
+ 71 82.8102 178 0 0 5.31092 -144.55 -206.025
+ 71 230.862 753 5 1 -29.3903 -126.153 -54.45
+ 71 118.321 759 4 1 -28.093 -122.378 -84.45
+ 71 24.9711 289 4 0 -28.1308 -122.166 -85.85
+ 71 163.092 290 4 0 -28.1335 -122.15 -85.9509
+ 71 136.247 758 3 1 -28.3782 -117.351 -114.45
+ 71 171.935 315 3 0 -28.43 -117.128 -115.851
+ 71 135.991 752 2 1 -29.5551 -112.437 -144.45
+ 71 75.7659 339 2 0 -29.486 -112.188 -145.85
+ 71 56.7191 340 2 0 -29.4763 -112.15 -146.059
+ 71 494.357 370 1 0 -27.779 -106.148 -175.85
+ 71 105.963 785 0 1 -22.9514 -99.3827 -204.45
+ 71 125.065 405 0 0 -22.7648 -99.0603 -205.85
+ 71 15.8315 562 3 0 143.93 -67.6436 -116.25
+ 71 23.9477 1626 3 1 145.49 -67.5775 -114.85
+ 71 93.5402 1627 3 1 145.55 -67.5696 -114.793
+ 71 292.483 1628 3 1 145.75 -67.5457 -114.624
+ 71 133.373 747 7 1 -30.6314 -126.518 5.55
+ 71 125.188 268 7 0 -30.677 -126.498 4.15
+ 71 134.694 741 6 1 -31.776 -125.961 -24.45
+ 71 119.304 270 6 0 -31.9814 -126.042 -25.85
+ 71 110.437 718 5 1 -36.3192 -128.151 -54.45
+ 71 109.078 259 5 0 -36.5935 -128.3 -55.85
+ 71 112.329 690 4 1 -42.0469 -131.533 -84.45
+ 71 186.753 242 4 0 -42.0121 -131.58 -85.85
+ 71 48.1982 699 3 1 -40.0831 -132.146 -114.45
+ 71 59.8472 700 3 1 -40.05 -132.172 -114.632
+ 71 110.818 238 3 0 -39.8066 -132.4 -115.85
+ 71 152.861 730 2 1 -33.9361 -138.603 -144.45
+ 71 129.267 204 2 0 -34.054 -139.181 -145.85
+ 71 46.7998 718 1 1 -36.3805 -150.46 -174.45
+ 71 152.013 717 1 1 -36.45 -150.556 -174.553
+ 71 6.36457 141 1 0 -37.2353 -151.93 -175.85
+ 71 74.45 140 1 0 -37.2461 -151.95 -175.868
+ 71 95.14 139 1 0 -37.3686 -152.15 -176.052
+ 71 2.18653 138 1 0 -37.5052 -152.35 -176.243
+ 71 257.004 671 0 1 -45.769 -146.354 -204.45
+ 71 156.341 672 0 1 -45.65 -146.539 -204.577
+ 71 23.1413 162 0 0 -45.3164 -147.697 -205.85
+ 71 143.823 161 0 0 -45.3091 -147.751 -205.874
+ 71 23.4309 160 0 0 -45.322 -147.95 -205.875
+Number of digits in this event = 67
+Using G4ParticleGun ...
+5.18394 LIN
e-
Event: 72
-Number of tracker hits in this event = 25
- 72 96.3826 471 9 0 -104.615 -85.7433 64.15
- 72 374.506 377 8 1 -104.619 -85.7442 35.55
- 72 119.794 471 8 0 -104.619 -85.744 34.15
- 72 137.381 377 7 1 -104.626 -85.7501 5.55
- 72 217.431 471 7 0 -104.625 -85.7505 4.15
- 72 114.114 377 6 1 -104.594 -85.7605 -24.45
- 72 132.359 471 6 0 -104.588 -85.7631 -25.85
- 72 181.069 378 5 1 -104.468 -85.825 -54.45
- 72 109.112 471 5 0 -104.466 -85.8268 -55.85
- 72 137.757 378 4 1 -104.378 -85.8658 -84.45
- 72 115.001 470 4 0 -104.377 -85.8749 -85.85
- 72 121.781 379 3 1 -104.342 -86.0743 -114.45
- 72 123.902 469 3 0 -104.344 -86.0889 -115.85
- 72 125.318 378 2 1 -104.394 -86.3679 -144.45
- 72 214.512 468 2 0 -104.394 -86.3984 -145.85
- 72 351.429 378 1 1 -104.42 -87.0565 -174.45
- 72 163.711 464 1 0 -104.421 -87.1019 -175.85
- 72 125.019 378 0 1 -104.5 -88.1442 -204.45
- 72 152.223 459 0 0 -104.516 -88.234 -205.85
- 72 47.4594 458 0 0 -104.518 -88.25 -206.097
- 72 279.285 468 1 0 -104.324 -86.3185 -175.85
- 72 149.646 386 0 1 -102.876 -86.2932 -204.45
- 72 118.519 468 0 0 -102.709 -86.3598 -205.851
- 72 151.35 375 0 1 -104.955 -87.2618 -204.45
- 72 128.665 463 0 0 -105.021 -87.3353 -205.85
-Number of digits in this event = 20
+Number of tracker hits in this event = 160
+ 72 102.531 832 11 1 -13.512 -10.8951 125.55
+ 72 133.185 845 11 0 -13.5141 -10.8969 124.15
+ 72 416.303 832 10 1 -13.5565 -10.9373 95.55
+ 72 523.128 845 10 0 -13.5577 -10.9399 94.15
+ 72 114.586 832 9 1 -13.5837 -11.0051 65.55
+ 72 119.295 845 9 0 -13.584 -11.0085 64.15
+ 72 163.705 832 8 1 -13.5858 -11.0774 35.55
+ 72 121.151 844 8 0 -13.5841 -11.0805 34.15
+ 72 163.29 832 7 1 -13.5722 -11.1393 5.55
+ 72 104.341 844 7 0 -13.5728 -11.1398 4.15
+ 72 107.265 832 6 1 -13.5557 -11.1404 -24.45
+ 72 150.02 844 6 0 -13.5564 -11.1304 -25.85
+ 72 115.447 832 5 1 -13.5616 -10.9191 -54.45
+ 72 451.366 845 5 0 -13.552 -10.9225 -55.85
+ 72 207.399 833 4 1 -13.3516 -11.0125 -84.45
+ 72 164.487 845 4 0 -13.3364 -11.0181 -85.85
+ 72 117.111 835 3 1 -13.0227 -11.1147 -114.45
+ 72 136.652 844 3 0 -13.0088 -11.1418 -115.85
+ 72 161.236 836 2 1 -12.7406 -11.6569 -144.45
+ 72 114.228 841 2 0 -12.7124 -11.7397 -145.85
+ 72 211.445 839 1 1 -12.1001 -13.4356 -174.45
+ 72 125.813 832 1 0 -12.0738 -13.5148 -175.85
+ 72 293.161 842 0 1 -11.554 -15.1374 -204.45
+ 72 173.554 824 0 0 -11.487 -15.1965 -205.85
+ 72 300.774 857 5 1 -8.55709 60.8591 -54.45
+ 72 31.9393 858 5 1 -8.44996 60.757 -54.5493
+ 72 430.392 833 1 1 -13.3644 -11.0765 -174.45
+ 72 255.92 844 1 0 -13.5288 -11.1883 -175.85
+ 72 97.0115 811 0 1 -17.7619 -12.4057 -204.45
+ 72 182 837 0 0 -17.7643 -12.5668 -205.85
+ 72 90.4185 843 1 0 -13.5292 -11.2503 -176.027
+ 72 141.957 842 1 0 -13.3918 -11.4501 -176.081
+ 72 155.168 841 1 0 -13.5768 -11.65 -176.113
+ 72 61.3301 840 1 0 -13.7138 -11.8501 -176.17
+ 72 36.9546 839 1 0 -13.7005 -12.0506 -176.212
+ 72 59.9505 831 0 0 -11.3323 -13.8085 -205.85
+ 72 184.606 830 0 0 -11.2992 -13.85 -206.055
+ 72 147.419 830 9 1 -14.0002 -10.4295 65.55
+ 72 121.066 848 9 0 -14.0388 -10.4166 64.15
+ 72 123.621 826 8 1 -14.706 -10.0407 35.55
+ 72 121.418 850 8 0 -14.7306 -10.0182 34.15
+ 72 128.555 823 7 1 -15.3082 -9.58232 5.55
+ 72 108.355 852 7 0 -15.3967 -9.59605 4.15
+ 72 94.0526 815 6 1 -16.9142 -9.96377 -24.45
+ 72 131.453 850 6 0 -16.9756 -10.0201 -25.85
+ 72 193.963 810 5 1 -17.9399 -10.9568 -54.45
+ 72 136.936 810 4 1 -18.0039 -12.1728 -84.45
+ 72 114.199 838 4 0 -17.9525 -12.2624 -85.8506
+ 72 155.284 816 3 1 -16.7288 -14.6734 -114.45
+ 72 95.5485 826 3 0 -16.5378 -14.7994 -115.85
+ 72 152.12 835 2 1 -12.8913 -17.1296 -144.45
+ 72 117.042 813 2 0 -12.7387 -17.3335 -145.85
+ 72 14.2543 852 1 1 -9.45622 -21.6641 -174.45
+ 72 116.243 853 1 1 -9.45 -21.6722 -174.508
+ 72 103.193 790 1 0 -9.29045 -21.8694 -175.85
+ 72 12.5301 870 0 1 -5.8569 -26.5559 -204.45
+ 72 112.29 871 0 1 -5.85 -26.563 -204.497
+ 72 198.376 766 0 0 -5.65656 -26.7728 -205.85
+ 72 36.8603 809 5 1 -18.05 -10.9834 -54.7315
+ 72 197.82 844 5 0 -18.5073 -11.1163 -55.85
+ 72 80.8862 731 4 1 -33.6931 -16.932 -84.4501
+ 72 80.9969 730 4 1 -33.85 -17.0313 -84.6362
+ 72 102.067 811 4 0 -34.876 -17.7201 -85.85
+ 72 48.2891 810 4 0 -35.0571 -17.85 -86.0879
+ 72 68.6687 633 3 1 -53.3622 -31.3138 -114.45
+ 72 56.3617 632 3 1 -53.45 -31.2774 -114.671
+ 72 111.745 744 3 0 -54.0902 -31.0925 -115.85
+ 72 67.2075 745 3 0 -54.2046 -31.05 -116.05
+ 72 2.56279 575 2 1 -65.0437 -27.5682 -144.45
+ 72 99.8191 574 2 1 -65.05 -27.5696 -144.456
+ 72 60.6026 573 2 1 -65.25 -27.6011 -144.648
+ 72 177.451 762 2 0 -66.4583 -27.6105 -145.85
+ 72 14.6712 763 2 0 -66.8995 -27.45 -146.216
+ 72 54.1923 447 2 0 -160.655 -90.5988 -146.25
+ 72 52.1082 446 2 0 -160.793 -90.75 -146.2
+ 72 61.6626 445 2 0 -160.885 -90.95 -146.203
+ 72 35.4412 444 2 0 -160.915 -91.15 -146.197
+ 72 68.3278 846 5 0 -18.6844 -10.8498 -56.1962
+ 72 75.971 847 5 0 -18.7602 -10.6499 -56.2158
+ 72 14.7159 848 5 0 -18.6537 -10.45 -56.2378
+ 72 81.8292 1522 5 0 -24.795 124.577 -56.25
+ 72 93.6137 1523 5 0 -24.8655 124.75 -56.0213
+ 72 37.5728 769 5 1 -26.1657 124.54 -54.8498
+ 72 76.631 768 5 1 -26.25 124.553 -54.7324
+ 72 75.7406 767 5 1 -26.4502 124.612 -54.6548
+ 72 138.88 766 5 1 -26.65 124.629 -54.6924
+ 72 32.6986 1516 5 0 -26.4569 123.418 -55.85
+ 72 234.395 1515 5 0 -26.4655 123.35 -55.8773
+ 72 181.511 825 1 1 -14.8505 -6.96782 -174.45
+ 72 131.288 826 1 1 -14.85 -6.96766 -174.473
+ 72 123.265 865 1 0 -14.809 -6.94327 -175.85
+ 72 102.765 829 0 1 -14.1372 -6.49829 -204.45
+ 72 125.595 868 0 0 -14.0028 -6.39903 -205.85
+ 72 27.1296 859 1 0 -15.4018 -8.20458 -175.85
+ 72 142.271 858 1 0 -15.4239 -8.25006 -175.902
+ 72 38.4729 857 1 0 -15.5351 -8.45 -176.136
+ 72 115.626 748 0 1 -30.309 -32.7233 -204.45
+ 72 90.5255 747 0 1 -30.45 -32.9418 -204.654
+ 72 46.0567 728 0 0 -31.3553 -34.3276 -205.85
+ 72 88.2014 727 0 0 -31.4367 -34.45 -205.956
+ 72 79.207 726 0 0 -31.5724 -34.6502 -206.138
+ 72 21.7044 533 0 0 -52.8991 -73.3912 -206.25
+ 72 76.2727 532 0 0 -52.923 -73.45 -206.187
+ 72 57.3379 531 0 0 -52.9995 -73.65 -205.987
+ 72 155.688 632 0 1 -53.4618 -74.9595 -204.85
+ 72 18.194 631 0 1 -53.8158 -75.9507 -204.45
+ 72 69.0626 630 0 1 -53.8502 -75.976 -204.468
+ 72 96.4629 629 0 1 -54.05 -76.1347 -204.581
+ 72 89.7472 628 0 1 -54.25 -76.3392 -204.695
+ 72 18.7383 627 0 1 -54.45 -76.5693 -204.824
+ 72 106.262 508 0 0 -55.723 -78.2897 -205.85
+ 72 84.9993 507 0 0 -55.863 -78.45 -205.969
+ 72 29.2553 506 0 0 -56.0814 -78.6501 -206.177
+ 72 109.124 839 9 1 -12.2268 -12.2268 65.55
+ 72 97.8754 838 9 0 -12.1772 -12.3331 64.15
+ 72 118.399 844 8 1 -11.1088 -14.384 35.55
+ 72 108.272 828 8 0 -11.0566 -14.4334 34.15
+ 72 141.999 851 7 1 -9.76122 -15.1657 5.55
+ 72 135.642 824 7 0 -9.72959 -15.1621 4.15
+ 72 121.993 854 6 1 -9.15836 -15.1951 -24.45
+ 72 122.677 824 6 0 -9.10498 -15.1731 -25.85
+ 72 130.783 860 5 1 -7.99031 -14.3385 -54.45
+ 72 174.324 828 5 0 -7.89731 -14.3709 -55.85
+ 72 239.496 871 4 1 -5.82416 -15.2683 -84.45
+ 72 149.274 823 4 0 -5.70253 -15.2591 -85.85
+ 72 502.147 884 3 1 -3.16145 -15.0485 -114.45
+ 72 114.843 825 3 0 -3.00292 -15.0238 -115.85
+ 72 4.42556 901 2 1 0.447764 -14.4058 -144.45
+ 72 103.354 902 2 1 0.45 -14.4055 -144.471
+ 72 144.779 828 2 0 0.587788 -14.3833 -145.85
+ 72 26.1026 916 1 1 3.44044 -13.8859 -174.45
+ 72 213.288 917 1 1 3.45 -13.8887 -174.538
+ 72 120.767 830 1 0 3.61378 -13.9098 -175.85
+ 72 105.522 932 0 1 6.5722 -13.993 -204.45
+ 72 78.0677 870 4 1 -5.85 -15.2723 -84.7228
+ 72 57.3491 831 10 1 -13.65 -10.9254 95.3213
+ 72 51.0943 760 9 1 -27.9517 -10.8677 65.55
+ 72 76.9172 759 9 1 -28.05 -10.9129 65.3871
+ 72 228.071 843 9 0 -28.8563 -11.276 64.1497
+ 72 149.136 632 8 1 -53.4888 -18.1849 35.55
+ 72 26.6797 806 8 0 -53.8402 -18.8184 34.15
+ 72 99.2044 805 8 0 -53.855 -18.8501 34.0861
+ 72 81.1032 620 7 1 -55.9736 -33.4284 5.54991
+ 72 50.3643 619 7 1 -56.05 -33.3678 5.32725
+ 72 113.046 735 7 0 -56.3861 -33.0021 4.14996
+ 72 103.725 568 6 1 -66.4245 -26.4821 -24.4501
+ 72 346.893 767 6 0 -66.352 -26.4913 -25.85
+ 72 15.5845 547 5 1 -70.4691 -23.3441 -54.4502
+ 72 113.043 548 5 1 -70.45 -23.313 -54.5148
+ 72 133.191 787 5 0 -70.1778 -22.5696 -55.85
+ 72 70.2205 788 5 0 -70.1584 -22.45 -56.0248
+ 72 16.6966 789 5 0 -70.162 -22.25 -56.2097
+ 72 11.4683 1059 5 0 -97.8425 32.0252 -56.25
+ 72 108.184 1060 5 0 -97.8746 32.0501 -56.2221
+ 72 56.3766 1061 5 0 -98.0258 32.25 -56.0229
+ 72 30.1259 1062 5 0 -98.1324 32.45 -55.9004
+ 72 242.653 409 5 1 -98.2038 34.1902 -54.85
+ 72 389.201 410 5 1 -98.15 34.5237 -54.6008
+ 72 115.298 411 5 1 -97.95 34.4722 -54.4803
+ 72 61.8304 768 6 0 -65.9433 -26.4497 -26.191
+Number of digits in this event = 65
Using G4ParticleGun ...
-2.00809 LIN
+7.72985 LIN
e-
Event: 73
-Number of tracker hits in this event = 22
- 73 101.001 320 8 1 -116.106 -76.419 35.55
- 73 104.118 518 8 0 -116.108 -76.4157 34.15
- 73 214.564 319 7 1 -116.167 -76.3707 5.55
- 73 122.694 518 7 0 -116.17 -76.3652 4.15
- 73 135.219 319 6 1 -116.213 -76.2354 -24.45
- 73 134.167 519 6 0 -116.214 -76.2311 -25.85
- 73 125.594 319 5 1 -116.228 -76.168 -54.45
- 73 142.744 519 5 0 -116.227 -76.162 -55.85
- 73 195.368 319 4 1 -116.22 -76.0405 -84.4507
- 73 96.4919 520 4 0 -116.197 -76.0187 -85.8501
- 73 102.712 324 3 1 -115.211 -75.1011 -114.45
- 73 105.847 524 3 0 -115.251 -75.0856 -115.85
- 73 124.022 319 2 1 -116.231 -75.1741 -144.45
- 73 142.207 524 2 0 -116.245 -75.1842 -145.85
- 73 122.382 319 1 1 -116.303 -75.638 -174.45
- 73 123.323 522 1 0 -116.415 -75.5011 -175.85
- 73 100.76 309 0 1 -118.3 -72.1684 -204.45
- 73 20.9801 308 0 1 -118.35 -72.1516 -204.772
- 73 131.012 539 0 0 -118.526 -72.082 -205.85
- 73 129.353 510 3 0 -116.777 -77.85 -116.075
- 73 158.587 797 3 0 -74.6493 -20.5901 -116.25
- 73 88.7486 682 2 0 -160.171 -43.5678 -146.25
-Number of digits in this event = 16
-Using G4ParticleGun ...
-3.41436 LIN
+Number of tracker hits in this event = 82
+ 73 225.805 300 8 1 -120.006 -82.3376 35.55
+ 73 175.623 488 8 0 -120.006 -82.3385 34.15
+ 73 94.0759 300 7 1 -120.01 -82.3562 5.55
+ 73 151.784 488 7 0 -120.012 -82.3571 4.15
+ 73 143.457 300 6 1 -120.04 -82.376 -24.45
+ 73 148.353 488 6 0 -120.041 -82.3767 -25.85
+ 73 92.0697 300 5 1 -120.068 -82.3855 -54.45
+ 73 200.483 488 5 0 -120.071 -82.3867 -55.85
+ 73 420.17 300 4 1 -120.131 -82.4171 -84.45
+ 73 444.758 488 4 0 -120.135 -82.4176 -85.85
+ 73 127.579 299 3 1 -120.213 -82.4301 -114.45
+ 73 127.198 488 3 0 -120.217 -82.4313 -115.85
+ 73 113.755 299 2 1 -120.287 -82.4596 -144.45
+ 73 129.185 487 2 0 -120.29 -82.4612 -145.85
+ 73 160.527 298 1 1 -120.351 -82.4963 -174.45
+ 73 114.977 487 1 0 -120.354 -82.4985 -175.85
+ 73 138.712 298 0 1 -120.405 -82.5379 -204.45
+ 73 129.134 487 0 0 -120.407 -82.5397 -205.85
+ 73 67.4178 1065 8 1 33.25 2.50018 35.2739
+ 73 60.9059 101 5 1 -159.95 23.5419 -54.5451
+ 73 155.741 102 5 1 -159.75 23.5816 -54.6508
+ 73 128.065 600 2 0 -38.5722 -59.9855 -146.25
+ 73 208.62 599 2 0 -38.1919 -60.05 -145.907
+ 73 311.636 299 1 1 -120.35 -82.5571 -174.808
+ 73 131.242 382 1 0 -35.8353 -103.631 -176.25
+ 73 79.0482 887 8 0 -110.564 -2.46517 33.75
+ 73 125.743 888 8 0 -110.565 -2.45 33.8655
+ 73 64.9518 787 8 0 -95.7088 -22.5926 33.75
+ 73 128.17 1044 4 0 -160.821 28.85 -86.1864
+ 73 98.1393 299 4 1 -120.15 -82.3991 -84.7857
+ 73 28.38 490 4 0 -121.174 -81.8862 -85.8505
+ 73 15.3453 491 4 0 -121.237 -81.85 -85.861
+ 73 55.8386 287 4 1 -122.614 -80.8522 -84.85
+ 73 55.3345 286 4 1 -122.75 -80.7332 -84.7679
+ 73 104.227 501 4 0 -123.148 -79.7781 -85.8504
+ 73 80.6729 502 4 0 -123.227 -79.65 -86.1043
+ 73 64.144 252 4 1 -129.691 -82.1558 -84.4503
+ 73 92.9506 253 4 1 -129.55 -82.157 -84.5988
+ 73 19.7601 487 4 0 -119.954 -82.6364 -85.85
+ 73 104.254 486 4 0 -119.945 -82.65 -85.9319
+ 73 43.046 314 3 1 -117.159 -87.1569 -114.45
+ 73 192.091 315 3 1 -117.15 -87.1994 -114.608
+ 73 110.163 462 3 0 -117.119 -87.5003 -115.85
+ 73 71.4865 311 2 1 -117.884 -97.4693 -144.45
+ 73 96.3866 310 2 1 -117.95 -97.6225 -144.612
+ 73 19.1593 407 2 0 -118.376 -98.707 -145.85
+ 73 105.768 406 2 0 -118.394 -98.75 -145.902
+ 73 40.0363 405 2 0 -118.477 -98.95 -146.155
+ 73 155.268 264 1 1 -127.312 -122.61 -174.45
+ 73 119.842 265 1 1 -127.15 -122.725 -174.632
+ 73 3.84982 266 1 1 -126.95 -122.872 -174.838
+ 73 121.773 281 1 0 -125.644 -123.789 -175.85
+ 73 107.551 280 1 0 -125.481 -123.95 -176.006
+ 73 80.1429 279 1 0 -125.341 -124.15 -176.188
+ 73 6.62771 316 3 1 -116.95 -87.0505 -114.814
+ 73 107.275 466 3 0 -116.355 -86.7624 -115.85
+ 73 2.07733 467 3 0 -116.145 -86.65 -116.237
+ 73 58.9363 396 2 1 -100.94 -76.5354 -144.45
+ 73 75.2892 397 2 1 -100.749 -76.59 -144.575
+ 73 64.738 398 2 1 -100.55 -76.6415 -144.72
+ 73 65.463 514 2 0 -99.493 -77.1423 -145.85
+ 73 129.924 513 2 0 -99.2901 -77.2501 -146.017
+ 73 75.0617 244 2 0 -40.1576 -131.259 -146.25
+ 73 60.9918 243 2 0 -40.0218 -131.35 -146.036
+ 73 78.5064 705 2 1 -38.9597 -131.335 -144.85
+ 73 81.9311 706 2 1 -38.85 -131.322 -144.67
+ 73 114.569 280 3 1 -124.019 -82.1353 -114.45
+ 73 147.199 493 3 0 -123.925 -81.3821 -115.85
+ 73 99.0177 333 2 1 -113.422 -84.2661 -144.45
+ 73 70.8108 334 2 1 -113.35 -84.1566 -144.643
+ 73 109.467 482 2 0 -112.943 -83.5709 -145.85
+ 73 26.0379 483 2 0 -112.885 -83.4497 -146.185
+ 73 34.8484 633 2 0 -111.106 -53.3456 -146.25
+ 73 157.898 634 2 0 -111.099 -53.2492 -146.116
+ 73 298.529 343 2 1 -111.371 -52.6214 -144.85
+ 73 86.7644 344 2 1 -111.35 -51.9962 -144.692
+ 73 63.1859 345 2 1 -111.15 -51.9032 -144.786
+ 73 97.9528 346 2 1 -110.95 -51.829 -144.766
+ 73 188.794 347 2 1 -110.75 -51.7932 -144.764
+ 73 366.807 348 2 1 -110.55 -51.7538 -144.69
+ 73 66.982 1084 2 1 36.85 41.885 -144.726
+ 73 59.483 1082 2 1 36.6007 44.0882 -144.45
+Number of digits in this event = 33
+Using G4ParticleGun ...
+3.27936 LIN
e-
Event: 74
-Number of tracker hits in this event = 39
- 74 114.42 1229 8 1 66.0044 -120.334 35.55
- 74 128.97 299 8 0 66.0035 -120.334 34.15
- 74 159.715 1229 7 1 65.9774 -120.329 5.55
- 74 122.3 299 7 0 65.9754 -120.327 4.15
- 74 129.343 1229 6 1 65.935 -120.293 -24.45
- 74 113.175 299 6 0 65.9349 -120.291 -25.85
- 74 436.465 1229 5 1 65.9466 -120.221 -54.45
- 74 208.343 299 5 0 65.9474 -120.22 -55.85
- 74 134.694 1229 4 1 65.9596 -120.185 -84.45
- 74 150.988 299 4 0 65.9592 -120.186 -85.85
- 74 183.157 1229 3 1 65.9576 -120.205 -114.45
- 74 375.661 299 3 0 65.9556 -120.208 -115.85
- 74 103.973 1229 2 1 65.9161 -120.269 -144.45
- 74 121.041 299 2 0 65.9089 -120.271 -145.85
- 74 121.454 1228 1 1 65.7552 -120.333 -174.45
- 74 116.421 299 1 0 65.7454 -120.335 -175.85
- 74 256.767 1227 0 1 65.5343 -120.368 -204.45
- 74 105.114 298 0 0 65.5247 -120.368 -205.85
- 74 22.9682 303 5 0 65.3319 -119.396 -55.85
- 74 114.408 304 5 0 65.2971 -119.35 -55.9061
- 74 13.8896 305 5 0 65.3472 -119.15 -56.2195
- 74 67.564 457 5 0 51.1765 -88.5078 -56.25
- 74 123.726 458 5 0 51.2053 -88.45 -56.1041
- 74 170.306 459 5 0 51.1257 -88.25 -56.1685
- 74 96.2767 460 5 0 51.0995 -88.05 -56.1483
- 74 242.849 1228 3 1 65.8198 -120.305 -114.45
- 74 137.696 1228 2 1 65.7302 -120.109 -144.45
- 74 131.465 300 2 0 65.711 -120.095 -145.85
- 74 140.968 1226 1 1 65.333 -119.842 -174.45
- 74 116.258 301 1 0 65.326 -119.822 -175.85
- 74 159.063 1225 0 1 65.2077 -119.428 -204.45
- 74 104.522 303 0 0 65.2054 -119.401 -205.85
- 74 123.503 1233 2 1 66.6905 -118.738 -144.45
- 74 105.757 307 2 0 66.8001 -118.634 -145.85
- 74 90.0008 1244 1 1 69.0258 -116.613 -174.45
- 74 28.663 1245 1 1 69.05 -116.605 -174.745
- 74 115.496 317 1 0 69.1356 -116.571 -175.85
- 74 115.734 1256 0 1 71.3277 -115.706 -204.45
- 74 147.153 322 0 0 71.5022 -115.666 -205.85
-Number of digits in this event = 24
+Number of tracker hits in this event = 34
+ 74 185.633 531 11 1 -73.7277 -18.1007 125.55
+ 74 138.425 809 11 0 -73.7273 -18.1014 124.15
+ 74 137.766 531 10 1 -73.744 -18.0971 95.55
+ 74 147.756 809 10 0 -73.7437 -18.099 94.15
+ 74 125.601 531 9 1 -73.7195 -18.1574 65.55
+ 74 125.678 809 9 0 -73.7199 -18.1557 64.15
+ 74 103.585 531 8 1 -73.747 -18.0842 35.55
+ 74 128.785 809 8 0 -73.7556 -18.0788 34.15
+ 74 268.246 530 7 1 -73.9578 -17.9621 5.55
+ 74 184.805 810 7 0 -73.9587 -17.9531 4.15
+ 74 187.773 530 6 1 -73.9719 -17.7632 -24.45
+ 74 121.31 811 6 0 -73.9895 -17.7422 -25.85
+ 74 130.815 528 5 1 -74.3576 -17.2757 -54.45
+ 74 120.289 813 5 0 -74.3872 -17.2689 -55.85
+ 74 125.643 525 4 1 -74.9987 -17.1222 -84.45
+ 74 124.346 814 4 0 -75.0298 -17.0987 -85.85
+ 74 117.101 521 3 1 -75.6742 -16.6421 -114.45
+ 74 126.88 817 3 0 -75.71 -16.6368 -115.85
+ 74 190.304 518 2 1 -76.3775 -16.5034 -144.45
+ 74 189.556 817 2 0 -76.4074 -16.4807 -145.85
+ 74 110.001 514 1 1 -77.0721 -15.9832 -174.45
+ 74 114.546 820 1 0 -77.0993 -15.9686 -175.85
+ 74 134.532 511 0 1 -77.6684 -15.7288 -204.45
+ 74 119.22 821 0 0 -77.6891 -15.7144 -205.85
+ 74 125.415 517 2 1 -76.4501 -16.4926 -144.519
+ 74 92.0174 818 2 0 -76.921 -16.4414 -145.85
+ 74 190.479 944 2 0 -97.19 8.8746 -146.25
+ 74 261.478 943 2 0 -97.6438 8.84974 -146.103
+ 74 126.134 942 2 0 -98.1276 8.64967 -145.998
+ 74 26.5811 941 2 0 -98.3909 8.45 -145.882
+ 74 213.053 406 2 1 -98.7669 5.77958 -144.85
+ 74 132.764 405 2 1 -98.95 5.16977 -144.549
+ 74 195.742 404 2 1 -99.1502 4.87322 -144.491
+ 74 166.556 403 2 1 -99.35 4.8534 -144.676
+Number of digits in this event = 29
Using G4ParticleGun ...
-9.03742 LIN
+3.15914 LIN
e-
Event: 75
-Number of tracker hits in this event = 76
- 75 108.987 834 8 1 -13.0601 141.841 35.55
- 75 110.68 1608 8 0 -13.06 141.842 34.15
- 75 120.164 834 7 1 -13.0584 141.869 5.55
- 75 337.05 1608 7 0 -13.058 141.87 4.15
- 75 103.932 835 6 1 -13.0486 141.888 -24.45
- 75 130.795 1608 6 0 -13.0488 141.89 -25.85
- 75 123.917 834 5 1 -13.052 141.923 -54.45
- 75 125.848 1608 5 0 -13.0511 141.926 -55.85
- 75 109.619 835 4 1 -13.0363 141.978 -84.45
- 75 132.099 1609 4 0 -13.0359 141.98 -85.85
- 75 346.954 835 3 1 -13.0249 142.017 -114.45
- 75 288.353 1609 3 0 -13.0237 142.019 -115.85
- 75 111.825 835 2 1 -12.9969 142.055 -144.45
- 75 361.462 1609 2 0 -12.9956 142.057 -145.85
- 75 130.745 835 1 1 -12.9733 142.098 -174.45
- 75 117.863 1609 1 0 -12.9712 142.099 -175.85
- 75 163.531 835 0 1 -12.93 142.129 -204.45
- 75 157.7 1609 0 0 -12.9272 142.131 -205.85
- 75 113.19 227 5 0 -152.38 -134.633 -56.25
- 75 246.464 226 5 0 -152.489 -134.75 -56.124
- 75 100.82 126 5 0 -123.32 -154.836 -56.2499
- 75 139.896 882 5 0 70.0093 -3.45 -56.236
- 75 102.75 881 5 0 70.1464 -3.65 -56.0447
- 75 239.016 1610 0 0 -12.9316 142.152 -205.85
- 75 451.676 834 3 1 -13.05 142.021 -114.536
- 75 192.18 1610 3 0 -13.6157 142.252 -115.85
- 75 29.9908 771 2 1 -25.7437 147.015 -144.45
- 75 93.0387 770 2 1 -25.8501 147.08 -144.479
- 75 60.9229 769 2 1 -26.05 147.151 -144.538
- 75 73.1953 768 2 1 -26.25 147.206 -144.592
- 75 62.5545 767 2 1 -26.45 147.279 -144.646
- 75 58.8586 766 2 1 -26.65 147.383 -144.703
- 75 67.491 765 2 1 -26.85 147.505 -144.758
- 75 52.1284 764 2 1 -27.05 147.638 -144.814
- 75 65.9989 1649 2 0 -30.5069 150.027 -145.85
- 75 170.8 1650 2 0 -30.6997 150.15 -145.9
- 75 92.0479 1651 2 0 -30.9358 150.35 -145.948
- 75 108.329 1652 2 0 -31.2111 150.55 -146.03
- 75 406.821 1653 2 0 -31.5537 150.75 -146.128
- 75 128.482 1608 3 0 -12.9481 141.95 -115.988
- 75 123.988 841 2 1 -11.7044 140.936 -144.45
- 75 144.519 1603 2 0 -11.5809 140.895 -145.85
- 75 121.795 853 1 1 -9.35207 139.749 -174.45
- 75 81.8556 1600 1 0 -9.31118 140.236 -175.85
- 75 30.2721 1601 1 0 -9.30129 140.35 -176.134
- 75 156.012 857 0 1 -8.60317 153.893 -204.45
- 75 133.784 1671 0 0 -8.51594 154.523 -205.85
- 75 167.772 1672 0 0 -8.51216 154.55 -205.912
- 75 23.2746 1496 2 0 -22.9501 119.538 -146.25
- 75 343.204 1497 2 0 -22.942 119.55 -146.198
- 75 65.2019 1607 3 0 -13.0737 141.75 -116.073
- 75 208.67 839 2 1 -12.0721 138.092 -144.451
- 75 13.3123 1590 2 0 -12.1748 138.34 -145.85
- 75 132.885 1591 2 0 -12.1792 138.35 -145.904
- 75 110.366 831 1 1 -13.7284 146.031 -174.45
- 75 3.65769 832 1 1 -13.65 146.197 -174.832
- 75 65.473 1632 1 0 -13.4614 146.639 -175.85
- 75 66.2533 1633 1 0 -13.434 146.75 -176.065
- 75 63.001 836 0 1 -12.8496 168.898 -204.457
- 75 81.0864 837 0 1 -12.6492 168.972 -204.638
- 75 18.2121 838 0 1 -12.4498 169.053 -204.799
- 75 176.848 1747 0 0 -11.0355 169.569 -205.85
- 75 62.8405 1748 0 0 -10.6064 169.75 -206.164
- 75 106.479 844 2 1 -11.1317 142.493 -144.45
- 75 152.735 1612 2 0 -11.3255 142.64 -145.85
- 75 47.8287 820 1 1 -16.0238 145.067 -174.451
- 75 80.8752 819 1 1 -16.05 145.072 -174.584
- 75 116.006 1624 1 0 -16.2544 145.116 -175.85
- 75 274.119 804 0 1 -19.2418 143.212 -204.45
- 75 138.254 1615 0 0 -19.1255 143.243 -205.85
- 75 72.2455 805 0 1 -19.05 142.919 -204.679
- 75 76.249 806 0 1 -18.85 142.774 -204.793
- 75 68.3438 807 0 1 -18.65 142.613 -204.824
- 75 151.684 1607 0 0 -15.3053 141.557 -205.85
- 75 69.3604 1606 0 0 -15.0929 141.55 -206.156
- 75 13.7966 1607 7 0 -13.0167 141.75 4.10196
-Number of digits in this event = 37
+Number of tracker hits in this event = 84
+ 75 102.717 1451 9 1 110.515 -58.7394 65.55
+ 75 265.473 606 9 0 110.516 -58.7412 64.15
+ 75 198.971 1451 8 1 110.53 -58.7722 35.55
+ 75 255.979 606 8 0 110.529 -58.7734 34.15
+ 75 127.517 1451 7 1 110.52 -58.7902 5.55
+ 75 227.476 606 7 0 110.52 -58.7903 4.15
+ 75 142.354 1451 6 1 110.524 -58.787 -24.45
+ 75 99.1183 606 6 0 110.527 -58.7832 -25.85
+ 75 112.187 1452 5 1 110.588 -58.7092 -54.45
+ 75 129.866 606 5 0 110.59 -58.7074 -55.85
+ 75 124.206 1452 4 1 110.611 -58.6718 -84.45
+ 75 233.791 606 4 0 110.609 -58.671 -85.85
+ 75 147.211 1452 3 1 110.591 -58.6402 -114.45
+ 75 104.549 607 3 0 110.59 -58.6346 -115.85
+ 75 138.668 1452 2 1 110.564 -58.5202 -144.45
+ 75 115.958 607 2 0 110.561 -58.511 -145.85
+ 75 374.899 1451 1 1 110.513 -58.3186 -174.45
+ 75 344.509 608 1 0 110.504 -58.3046 -175.85
+ 75 95.0128 1450 0 1 110.332 -58.0241 -204.45
+ 75 109.042 610 0 0 110.322 -57.9928 -205.85
+ 75 62.2187 64 3 0 73.9754 -167.191 -116.25
+ 75 73.84 803 1 0 97.847 -19.3504 -176.25
+ 75 194.577 804 1 0 97.729 -19.25 -176.045
+ 75 6.15867 1384 1 1 96.9667 -18.7707 -174.85
+ 75 118.544 1383 1 1 96.95 -18.7611 -174.823
+ 75 142.47 1382 1 1 96.75 -18.8283 -174.521
+ 75 16.4237 805 1 0 96.835 -19.0412 -175.85
+ 75 83.9852 887 1 0 157.628 -2.4889 -176.25
+ 75 118.103 886 1 0 157.739 -2.65 -176.106
+ 75 280.355 885 1 0 157.76 -2.85 -176.131
+ 75 166.115 1440 0 1 108.279 -55.8644 -204.45
+ 75 257.571 621 0 0 108.36 -55.8281 -205.85
+ 75 111.452 1451 0 1 110.549 -58.242 -204.45
+ 75 128.156 609 0 0 110.548 -58.2316 -205.85
+ 75 10.7175 1424 1 0 -54.3964 105.089 -176.25
+ 75 118.513 1425 1 0 -54.4628 105.15 -176.221
+ 75 191.429 1426 1 0 -54.5933 105.35 -176.093
+ 75 105.02 1031 1 0 133.686 26.25 -175.934
+ 75 39.1541 214 2 0 70.6959 -137.15 -146.207
+ 75 172.569 1453 1 1 110.767 -58.3976 -174.45
+ 75 56.9545 1452 1 1 110.75 -58.3558 -174.808
+ 75 363.363 609 1 0 110.688 -58.182 -175.85
+ 75 47.5916 1445 0 1 109.198 -54.3899 -204.45
+ 75 52.4515 1446 0 1 109.35 -54.4487 -204.535
+ 75 63.8012 1447 0 1 109.55 -54.5319 -204.646
+ 75 65.6425 1448 0 1 109.75 -54.6223 -204.761
+ 75 87.8204 622 0 0 111.692 -55.5958 -205.85
+ 75 98.3359 620 0 0 112.18 -55.85 -206.106
+ 75 124.552 340 0 0 147.529 -112.097 -206.25
+ 75 75.0352 339 0 0 147.527 -112.15 -206.226
+ 75 62.4158 338 0 0 147.515 -112.351 -206.141
+ 75 79.9162 337 0 0 147.504 -112.55 -206.084
+ 75 66.8943 336 0 0 147.485 -112.75 -206.011
+ 75 58.8318 335 0 0 147.482 -112.95 -205.93
+ 75 5.60547 334 0 0 147.483 -113.15 -205.862
+ 75 79.2721 1637 0 1 147.728 -115.481 -204.85
+ 75 164.374 1638 0 1 147.75 -115.739 -204.693
+ 75 79.1023 199 1 0 139.677 -140.205 -176.25
+ 75 210.07 198 1 0 139.618 -140.35 -176.049
+ 75 133.636 197 1 0 139.519 -140.55 -175.904
+ 75 183.912 1594 1 1 139.106 -142.706 -174.85
+ 75 232.853 1593 1 1 138.95 -143.374 -174.544
+ 75 92.5076 1592 1 1 138.75 -143.854 -174.488
+ 75 107.352 1591 1 1 138.55 -144.122 -174.517
+ 75 55.5049 1590 1 1 138.35 -144.255 -174.538
+ 75 25.0644 1589 1 1 138.15 -144.354 -174.483
+ 75 44.2998 1 2 0 120.495 -179.881 -146.25
+ 75 85.4006 0 2 0 120.445 -179.95 -146.177
+ 75 9.14203 1706 13 0 123.059 161.539 183.75
+ 75 62.0546 1707 13 0 123.071 161.55 183.767
+ 75 41.2229 1664 13 0 119.072 153.04 183.75
+ 75 135.416 1436 0 1 107.514 -52.8439 -204.45
+ 75 159.556 637 0 0 107.504 -52.513 -205.85
+ 75 45.455 638 0 0 107.501 -52.45 -206.148
+ 75 50.7143 1760 8 0 -50.0495 172.15 33.8047
+ 75 87.144 1761 8 0 -50.0327 172.35 34.0078
+ 75 58.792 1762 8 0 -49.871 172.55 34.0515
+ 75 48.5476 1763 8 0 -49.7669 172.75 34.0684
+ 75 19.3049 662 8 1 -47.5244 174.73 35.15
+ 75 66.8099 663 8 1 -47.45 174.763 35.1762
+ 75 65.0465 664 8 1 -47.25 174.851 35.227
+ 75 365.738 665 8 1 -47.0497 174.965 35.24
+ 75 181.897 1772 8 0 -46.6884 174.552 34.15
+ 75 128.056 1452 9 1 110.55 -58.737 65.4424
+Number of digits in this event = 36
Using G4ParticleGun ...
-1.57212 LIN
+8.96477 LIN
e-
Event: 76
-Number of tracker hits in this event = 28
- 76 124.921 914 11 1 3.03429 73.2551 125.55
- 76 150.985 1266 11 0 3.03132 73.2559 124.15
- 76 113.79 914 10 1 2.96445 73.2913 95.55
- 76 98.4488 1266 10 0 2.95825 73.2965 94.15
- 76 125.941 913 9 1 2.82023 73.4071 65.55
- 76 134.267 1266 9 0 2.81373 73.4191 64.15
- 76 131.357 913 8 1 2.67772 73.6567 35.55
- 76 125.21 1268 8 0 2.67336 73.6719 34.15
- 76 117.686 912 7 1 2.59593 73.9657 5.55
- 76 110.534 1269 7 0 2.58958 73.9777 4.15
- 76 123.613 912 6 1 2.46576 74.2191 -24.45
- 76 137.384 1270 6 0 2.46246 74.2309 -25.85
- 76 99.9032 911 5 1 2.42855 74.5178 -54.45
- 76 137.824 1272 5 0 2.42794 74.5326 -55.85
- 76 113.651 911 4 1 2.40011 74.8599 -84.45
- 76 156.622 1274 4 0 2.39931 74.8759 -85.85
- 76 461.474 911 3 1 2.37577 75.1895 -114.45
- 76 105.754 1275 3 0 2.37297 75.2042 -115.85
- 76 109.41 911 2 1 2.31267 75.5233 -144.45
- 76 217.298 1277 2 0 2.31377 75.5416 -145.85
- 76 113.674 911 1 1 2.32187 75.9523 -174.45
- 76 137.933 1279 1 0 2.32261 75.9715 -175.85
- 76 106.457 911 0 1 2.34321 76.3532 -204.45
- 76 123.189 1281 0 0 2.34566 76.3668 -205.85
- 76 56.7303 1276 2 0 2.37962 75.45 -145.98
- 76 48.2445 910 3 1 2.24973 75.2035 -114.734
- 76 155.315 1271 3 0 2.09229 74.336 -115.85
- 76 115.158 1272 3 0 2.18637 74.4501 -115.929
-Number of digits in this event = 18
+Number of tracker hits in this event = 46
+ 76 162.217 344 10 1 -111.275 -4.52908 95.55
+ 76 111.507 877 10 0 -111.275 -4.52878 94.15
+ 76 144.883 344 9 1 -111.275 -4.52223 65.55
+ 76 117.751 877 9 0 -111.275 -4.52254 64.15
+ 76 124.136 344 8 1 -111.274 -4.52825 35.55
+ 76 104.588 877 8 0 -111.274 -4.5288 34.15
+ 76 204.771 344 7 1 -111.268 -4.54315 5.55
+ 76 195.496 877 7 0 -111.267 -4.54536 4.15
+ 76 146.725 344 6 1 -111.251 -4.58893 -24.45
+ 76 115.488 877 6 0 -111.251 -4.59158 -25.85
+ 76 354.379 344 5 1 -111.245 -4.64889 -54.45
+ 76 107.854 876 5 0 -111.244 -4.65144 -55.85
+ 76 110.998 344 4 1 -111.225 -4.7044 -84.45
+ 76 107.239 876 4 0 -111.223 -4.70832 -85.85
+ 76 162.379 344 3 1 -111.174 -4.78309 -114.45
+ 76 174.106 876 3 0 -111.173 -4.78662 -115.85
+ 76 78.8386 344 2 1 -111.15 -4.85893 -144.45
+ 76 58.646 345 2 1 -111.15 -4.85972 -144.758
+ 76 167.27 875 2 0 -111.149 -4.86241 -145.85
+ 76 140.948 345 1 1 -111.116 -4.93488 -174.45
+ 76 101.215 875 1 0 -111.114 -4.93833 -175.85
+ 76 124.759 345 0 1 -111.078 -5.00394 -204.45
+ 76 119.996 875 0 0 -111.075 -5.00851 -205.85
+ 76 9.64733 90 2 1 -162.047 64.1377 -144.85
+ 76 14.9786 1292 3 0 -177.194 78.45 -116.028
+ 76 321.526 877 5 0 -111.197 -4.62389 -55.85
+ 76 120.569 349 4 1 -110.307 -4.48013 -84.45
+ 76 109.157 877 4 0 -110.186 -4.57979 -85.85
+ 76 107.083 361 3 1 -107.807 -7.11602 -114.45
+ 76 133.901 863 3 0 -107.759 -7.27954 -115.85
+ 76 104.655 367 2 1 -106.737 -10.5214 -144.45
+ 76 114.373 846 2 0 -106.723 -10.7021 -145.85
+ 76 128.136 370 1 1 -106.149 -14.5009 -174.45
+ 76 114.727 826 1 0 -106.16 -14.6775 -175.85
+ 76 132.104 370 0 1 -106.135 -18.4649 -204.45
+ 76 124.002 807 0 0 -106.046 -18.5432 -205.85
+ 76 127.585 328 4 1 -114.44 -4.38144 -84.45
+ 76 147.658 878 4 0 -114.461 -4.39538 -85.85
+ 76 96.4466 326 3 1 -114.775 -4.95266 -114.45
+ 76 121.111 874 3 0 -114.787 -5.09726 -115.85
+ 76 106.078 326 2 1 -114.82 -8.00619 -144.45
+ 76 146.749 860 2 0 -114.752 -8.03504 -145.85
+ 76 195.597 332 1 1 -113.674 -8.68291 -174.45
+ 76 110.695 857 1 0 -113.638 -8.63052 -175.85
+ 76 97.739 342 0 1 -111.615 -6.83586 -204.451
+ 76 130.648 866 0 0 -111.567 -6.80854 -205.85
+Number of digits in this event = 27
Using G4ParticleGun ...
-8.99665 LIN
+3.35259 LIN
e-
Event: 77
-Number of tracker hits in this event = 93
- 77 180.092 230 9 1 -134.104 -8.96534 65.55
- 77 121.155 855 9 0 -134.103 -8.96534 64.15
- 77 144.518 230 8 1 -134.091 -8.96031 35.55
- 77 126.981 855 8 0 -134.091 -8.95973 34.15
- 77 399.393 230 7 1 -134.081 -8.94664 5.55
- 77 398.474 855 7 0 -134.08 -8.9463 4.15
- 77 433.014 230 6 1 -134.051 -8.93386 -24.45
- 77 246.598 855 6 0 -134.05 -8.93233 -25.85
- 77 225.617 230 5 1 -134.032 -8.88739 -54.45
- 77 288.878 855 5 0 -134.031 -8.88521 -55.85
- 77 654.523 230 4 1 -134.006 -8.83765 -84.45
- 77 764.428 856 4 0 -134.003 -8.83366 -85.85
- 77 144.549 231 3 1 -133.94 -8.75456 -114.45
- 77 200.59 856 3 0 -133.937 -8.75027 -115.85
- 77 143.457 231 2 1 -133.87 -8.66041 -144.45
- 77 120.626 856 2 0 -133.867 -8.65662 -145.85
- 77 107.579 231 1 1 -133.809 -8.57645 -174.45
- 77 108.582 857 1 0 -133.808 -8.56997 -175.85
- 77 131.258 231 0 1 -133.791 -8.4355 -204.45
- 77 221.653 858 0 0 -133.789 -8.4286 -205.85
- 77 132.226 230 3 1 -134.077 -8.08671 -114.45
- 77 157.836 860 3 0 -133.894 -8.02316 -115.85
- 77 170.099 252 2 1 -129.701 -6.4579 -144.45
- 77 134.596 866 2 0 -129.638 -6.65975 -145.85
- 77 150.925 257 1 1 -128.697 -11.1524 -174.45
- 77 82.1119 842 1 0 -128.606 -11.5579 -175.85
- 77 40.9491 841 1 0 -128.582 -11.65 -176.173
- 77 115.762 270 0 1 -126.074 -20.8938 -204.45
- 77 108.099 796 0 0 -125.92 -20.8268 -205.85
- 77 116.498 224 3 1 -135.214 -8.44806 -114.45
- 77 360.226 858 3 0 -135.321 -8.41528 -115.85
- 77 156.458 213 2 1 -137.41 -7.58929 -144.45
- 77 112.302 862 2 0 -137.569 -7.49294 -145.85
- 77 121.493 194 1 1 -141.164 -5.36336 -174.45
- 77 124.151 874 1 0 -141.385 -5.24128 -175.85
- 77 138.006 170 0 1 -146.137 -2.41533 -204.45
- 77 97.6795 169 0 1 -146.15 -2.41054 -204.499
- 77 156.926 888 0 0 -146.516 -2.26647 -205.85
- 77 87.3941 889 0 0 -146.554 -2.25 -205.994
- 77 8.85201 172 0 1 -145.75 -2.55626 -204.454
- 77 102.266 231 5 1 -133.759 -8.94253 -54.45
- 77 138.891 233 4 1 -133.471 -8.74794 -84.45
- 77 107.971 234 3 1 -133.284 -8.61511 -114.45
- 77 120.033 857 3 0 -133.268 -8.60666 -115.85
- 77 106.181 236 2 1 -132.935 -8.4263 -144.45
- 77 253.784 858 2 0 -132.918 -8.41519 -145.85
- 77 116.305 237 1 1 -132.585 -8.18938 -174.45
- 77 164.33 859 1 0 -132.577 -8.12513 -175.85
- 77 141.768 240 0 1 -132.024 -7.27704 -204.45
- 77 123.89 864 0 0 -131.83 -7.24421 -205.851
- 77 246.035 238 0 1 -132.481 -7.89581 -204.45
- 77 234.504 860 0 0 -132.477 -7.87665 -205.85
- 77 4.97865 1675 6 0 17.0536 155.159 -26.25
- 77 113.218 854 6 0 -134.039 -9.05595 -25.85
- 77 219.727 854 5 0 -134.135 -9.13377 -55.85
- 77 167.568 229 4 1 -134.216 -9.14261 -84.45
- 77 368.548 854 4 0 -134.22 -9.14839 -85.85
- 77 243.954 229 3 1 -134.322 -9.28082 -114.45
- 77 125.149 853 3 0 -134.324 -9.28029 -115.85
- 77 141.086 229 2 1 -134.347 -9.25194 -144.45
- 77 138.031 853 2 0 -134.34 -9.25279 -145.85
- 77 98.0832 229 1 1 -134.211 -9.30191 -174.45
- 77 121.967 853 1 0 -134.209 -9.29889 -175.85
- 77 715.759 230 0 1 -134.14 -9.20189 -204.45
- 77 200.689 854 0 0 -134.127 -9.195 -205.85
- 77 300.75 229 0 1 -134.15 -9.19541 -204.645
- 77 54.253 229 7 1 -134.188 -8.92926 5.55
- 77 154.575 228 7 1 -134.35 -8.77243 5.51366
- 77 157.201 227 7 1 -134.55 -8.26992 5.48395
- 77 407.442 226 7 1 -134.75 -7.73011 5.4139
- 77 99.1789 225 7 1 -134.95 -7.32976 5.46643
- 77 101.435 855 3 0 -134.172 -8.94795 -115.85
- 77 160.394 228 2 1 -134.47 -8.41189 -144.45
- 77 58.2125 227 1 1 -134.724 -6.66442 -174.45
- 77 74.5369 226 1 1 -134.75 -6.6708 -174.561
- 77 115.725 866 1 0 -135.077 -6.73722 -175.85
- 77 84.6169 191 0 1 -141.903 -9.0758 -204.451
- 77 48.0629 190 0 1 -141.95 -9.06937 -204.7
- 77 135.495 855 0 0 -142.209 -9.05 -205.936
- 77 121.317 226 3 1 -134.899 -8.50903 -114.45
- 77 118.847 219 2 1 -136.275 -6.91794 -144.45
- 77 140.178 865 2 0 -136.353 -6.88907 -145.85
- 77 171.973 209 1 1 -138.289 -6.39778 -174.45
- 77 114.336 868 1 0 -138.383 -6.34261 -175.85
- 77 101.364 197 0 1 -140.57 -5.23983 -204.45
- 77 133.312 874 0 0 -140.67 -5.24151 -205.851
- 77 136.289 208 1 1 -138.35 -6.42974 -174.602
- 77 129.077 856 0 0 -134.148 -8.82771 -205.85
- 77 14.2098 845 0 0 -134.189 -10.9995 -205.85
- 77 75.1508 844 0 0 -134.19 -11.05 -205.886
- 77 67.0493 843 0 0 -134.195 -11.2501 -206.035
- 77 24.806 842 0 0 -134.189 -11.45 -206.183
- 77 5.10605 859 0 0 -134.557 -8.24991 -206.225
-Number of digits in this event = 61
+Number of tracker hits in this event = 34
+ 77 197.483 648 11 0 -65.8411 -50.428 124.15
+ 77 134.601 571 10 1 -65.8413 -50.4283 95.55
+ 77 110.829 648 10 0 -65.8404 -50.4301 94.15
+ 77 199.852 571 9 1 -65.8295 -50.4691 65.55
+ 77 108.554 647 9 0 -65.8292 -50.4698 64.15
+ 77 249.09 571 8 1 -65.8276 -50.4911 35.55
+ 77 124.088 647 8 0 -65.8247 -50.4906 34.15
+ 77 121.331 571 7 1 -65.781 -50.493 5.55
+ 77 237.752 647 7 0 -65.7772 -50.4919 4.15
+ 77 117.259 571 6 1 -65.7071 -50.4781 -24.45
+ 77 111.207 647 6 0 -65.7032 -50.477 -25.85
+ 77 149.44 572 5 1 -65.6176 -50.4762 -54.45
+ 77 101.614 647 5 0 -65.6139 -50.4767 -55.85
+ 77 139.917 572 4 1 -65.5411 -50.5083 -84.45
+ 77 111.024 647 4 0 -65.5411 -50.5088 -85.85
+ 77 272.938 572 3 1 -65.5137 -50.5285 -114.45
+ 77 128.95 647 3 0 -65.5095 -50.5269 -115.85
+ 77 153.824 573 2 1 -65.4287 -50.5011 -144.45
+ 77 103.274 647 2 0 -65.4292 -50.5056 -145.85
+ 77 104.97 573 1 1 -65.4465 -50.5982 -174.45
+ 77 295.621 647 1 0 -65.4475 -50.6057 -175.85
+ 77 129.527 572 0 1 -65.4948 -50.7799 -204.45
+ 77 112.38 646 0 0 -65.4958 -50.7893 -205.85
+ 77 59.5736 675 0 0 -62.3441 -44.9167 -206.25
+ 77 7.42922 645 3 0 -66.0554 -51.0433 -115.85
+ 77 198.892 644 3 0 -66.0645 -51.05 -115.871
+ 77 58.4411 96 4 1 -160.929 40.3062 -84.45
+ 77 81.3266 95 4 1 -160.95 40.3341 -84.5214
+ 77 47.6427 895 0 1 -1.05 -91.9723 -204.831
+ 77 46.1131 894 0 1 -1.05 -91.94 -204.508
+ 77 62.2529 648 7 0 -65.7294 -50.45 3.93841
+ 77 164.906 494 0 0 -79.136 -81.05 -206.089
+ 77 188.051 495 0 0 -79.3732 -81.05 -205.974
+ 77 153.388 251 0 1 -129.75 -66.0622 -204.501
+Number of digits in this event = 21
Using G4ParticleGun ...
-9.30754 LIN
+9.89794 LIN
e-
Event: 78
-Number of tracker hits in this event = 151
- 78 98.7347 972 8 1 14.4818 -135.289 35.55
- 78 111.974 224 8 0 14.4815 -135.289 34.15
- 78 757.38 972 7 1 14.4787 -135.284 5.55
- 78 901.347 224 7 0 14.476 -135.283 4.15
- 78 319.31 971 6 1 14.4297 -135.261 -24.45
- 78 241.51 224 6 0 14.4262 -135.259 -25.85
- 78 109.13 971 5 1 14.3559 -135.212 -54.45
- 78 120.121 224 5 0 14.3548 -135.208 -55.85
- 78 392.23 971 4 1 14.3301 -135.118 -84.45
- 78 125.795 225 4 0 14.3315 -135.113 -85.85
- 78 611.315 971 3 1 14.3761 -134.991 -114.45
- 78 152.086 225 3 0 14.3769 -134.985 -115.85
- 78 260.051 971 2 1 14.3845 -134.86 -144.45
- 78 122.044 226 2 0 14.387 -134.855 -145.85
- 78 277.696 971 1 1 14.4399 -134.744 -174.45
- 78 105.71 227 1 0 14.4427 -134.739 -175.85
- 78 114.806 972 0 1 14.4973 -134.641 -204.45
- 78 231.522 227 0 0 14.501 -134.634 -205.85
- 78 3.99508 110 3 1 -157.95 30.5935 -114.537
- 78 128.364 814 1 0 -39.7029 -17.25 -176.194
- 78 301.899 972 3 1 14.4501 -135.196 -114.645
- 78 143.889 969 6 1 13.8675 -134.451 -24.45
- 78 80.9767 968 6 1 13.85 -134.427 -24.5873
- 78 243.916 229 6 0 13.6698 -134.195 -25.85
- 78 55.374 230 6 0 13.6346 -134.15 -26.0938
- 78 122.634 948 5 1 9.72295 -129.115 -54.45
- 78 109.839 256 5 0 9.59081 -128.89 -55.85
- 78 126.343 933 4 1 6.74836 -124.343 -84.4502
- 78 125.406 280 4 0 6.66633 -124.141 -85.85
- 78 123.804 926 3 1 5.29075 -119.836 -114.45
- 78 115.659 302 3 0 5.30867 -119.682 -115.85
- 78 103.568 927 2 1 5.48092 -116.781 -144.45
- 78 210.243 317 2 0 5.47337 -116.625 -145.85
- 78 142.511 927 1 1 5.46687 -113.565 -174.45
- 78 253.285 926 1 1 5.45 -113.531 -174.561
- 78 162.382 335 1 0 5.25545 -113.122 -175.85
- 78 93.6928 906 0 1 1.28895 -103.408 -204.45
- 78 43.0369 905 0 1 1.24997 -103.261 -204.763
- 78 4.94662 386 0 0 1.12592 -102.759 -205.85
- 78 129.374 387 0 0 1.12381 -102.75 -205.869
- 78 182.78 925 4 0 40.1285 5.05 -86.1654
- 78 5.13914 1070 1 1 34.05 54.4578 -174.766
- 78 115.78 926 4 0 40.1955 5.25 -86.0055
- 78 460.271 972 6 1 14.5831 -134.884 -24.45
- 78 181.814 226 6 0 14.6166 -134.918 -25.85
- 78 105.853 976 5 1 15.2557 -135.631 -54.45
- 78 113.793 222 5 0 15.291 -135.672 -55.85
- 78 37.2667 979 4 1 16.0492 -136.451 -84.45
- 78 72.8727 980 4 1 16.05 -136.452 -84.4921
- 78 106.967 218 4 0 16.0695 -136.465 -85.85
- 78 130.666 982 3 1 16.5038 -136.785 -114.45
- 78 110.069 216 3 0 16.5464 -136.789 -115.85
- 78 134.393 986 2 1 17.3166 -136.83 -144.45
- 78 103.868 216 2 0 17.3919 -136.827 -145.85
- 78 180.46 993 1 1 18.7618 -136.708 -174.45
- 78 174.771 217 1 0 18.7846 -136.682 -175.85
- 78 113.23 995 0 1 19.1324 -136.172 -204.45
- 78 128.385 220 0 0 19.0818 -136.139 -205.85
- 78 32.9211 975 5 1 15.25 -135.655 -54.7752
- 78 29.727 219 5 0 14.7833 -136.297 -55.85
- 78 126.237 218 5 0 14.7392 -136.35 -55.9433
- 78 155.723 225 6 0 14.5569 -135.144 -25.85
- 78 133.408 973 5 1 14.7177 -134.814 -54.45
- 78 105.679 226 5 0 14.7251 -134.796 -55.85
- 78 186.29 974 4 1 14.8685 -134.445 -84.45
- 78 307.91 228 4 0 14.8741 -134.424 -85.85
- 78 121.502 974 3 1 14.9939 -133.968 -114.45
- 78 2.2681 230 3 0 14.9887 -133.95 -115.85
- 78 126.305 231 3 0 14.9886 -133.95 -115.87
- 78 155.216 974 2 1 14.9029 -133.596 -144.45
- 78 124.649 232 2 0 14.8997 -133.575 -145.85
- 78 224.721 973 1 1 14.8097 -133.158 -174.45
- 78 143.49 235 1 0 14.8064 -133.14 -175.85
- 78 147.92 973 0 1 14.7472 -132.788 -204.45
- 78 120.825 236 0 0 14.7475 -132.785 -205.85
- 78 107.024 333 3 1 -113.458 24.0979 -114.85
- 78 204.55 970 6 1 14.0543 -135.817 -24.45
- 78 139.098 221 6 0 14.0678 -135.815 -25.85
- 78 111.865 972 5 1 14.4677 -135.913 -54.45
- 78 110.268 221 5 0 14.4574 -135.91 -55.85
- 78 183.021 972 4 1 14.5462 -135.972 -84.45
- 78 186.068 220 4 0 14.5261 -135.983 -85.85
- 78 82.4124 970 3 1 14.25 -136.147 -114.624
- 78 133.879 220 3 0 14.2005 -136.127 -115.85
- 78 107.421 964 2 1 12.9525 -135.55 -144.45
- 78 125.077 223 2 0 12.9141 -135.539 -145.85
- 78 236.342 960 1 1 12.1478 -135.226 -174.45
- 78 112.135 224 1 0 12.1039 -135.216 -175.85
- 78 135.899 955 0 1 11.207 -134.594 -204.45
- 78 41.8857 507 4 0 -90.4414 -78.65 -86.1038
- 78 25.5321 506 4 0 -90.4457 -78.65 -86.0949
- 78 67.0382 212 3 0 15.3666 -137.601 -115.85
- 78 85.3565 211 3 0 15.4751 -137.75 -116.005
- 78 37.8407 210 3 0 15.6346 -137.95 -116.225
- 78 52.004 22 3 0 34.2339 -175.674 -116.25
- 78 179.505 21 3 0 34.2256 -175.75 -116.11
- 78 156.892 1070 3 1 34.1257 -176.485 -114.85
- 78 109.57 16 13 0 -152.146 -176.95 183.75
- 78 67.746 17 13 0 -152.355 -176.75 183.977
- 78 193.35 134 13 1 -153.155 -176.227 185.15
- 78 145.745 133 13 1 -153.35 -175.841 185.467
- 78 35.3676 132 13 1 -153.55 -175.696 185.238
- 78 134.386 25 13 0 -154.22 -175.094 184.15
- 78 82.0775 26 13 0 -154.284 -174.95 183.995
- 78 232.656 27 13 0 -154.337 -174.75 184.025
- 78 14.9725 28 13 0 -154.234 -174.55 184.013
- 78 17.2881 85 5 0 -45.6737 -163.148 -56.25
- 78 24.7976 645 5 1 -51.0332 -167.673 -54.45
- 78 120.734 644 5 1 -51.05 -167.655 -54.4685
- 78 85.6845 973 4 1 14.65 -135.857 -84.6467
- 78 207.064 223 4 0 16.1312 -135.405 -85.85
- 78 369.576 224 4 0 16.2591 -135.35 -86.0176
- 78 84.3625 1076 3 1 35.302 -116.809 -114.45
- 78 152.905 1075 3 1 35.2499 -116.508 -114.548
- 78 482.905 326 3 0 35.1189 -114.845 -115.85
- 78 371.604 327 3 0 35.1197 -114.75 -115.921
- 78 33.241 325 3 0 36.439 -114.95 -116.226
- 78 107.74 433 0 0 29.1226 -93.4823 -206.25
- 78 172.414 224 3 0 14.4121 -135.297 -115.85
- 78 220.685 224 2 0 14.3575 -135.219 -145.85
- 78 143.193 225 1 0 14.3134 -135.146 -175.85
- 78 146.558 971 0 1 14.3128 -135.099 -204.45
- 78 385.855 225 0 0 14.3153 -135.094 -205.85
- 78 116.961 1272 0 0 155.658 74.4831 -206.25
- 78 109.452 969 3 1 14.0039 -134.636 -114.45
- 78 125.587 227 3 0 13.9666 -134.581 -115.85
- 78 104.608 966 2 1 13.3201 -133.246 -144.45
- 78 132.584 234 2 0 13.342 -133.173 -145.85
- 78 109.652 969 1 1 13.8693 -131.908 -174.45
- 78 140.839 241 1 0 13.8689 -131.929 -175.85
- 78 266.379 970 0 1 14.171 -132.315 -204.45
- 78 97.5786 238 0 0 14.1621 -132.375 -205.85
- 78 72.7502 228 6 0 13.3253 -134.477 -25.8503
- 78 318.961 855 5 1 -8.89597 -100.825 -54.45
- 78 128.887 854 5 1 -9.05 -101.032 -54.6142
- 78 188.43 856 5 1 -8.85 -101.673 -54.4591
- 78 116.092 952 5 1 10.6452 -133.528 -54.45
- 78 191.796 233 5 0 10.4063 -133.508 -55.8503
- 78 95.904 927 4 1 5.56999 -133.954 -84.45
- 78 3.30946 229 4 0 5.28861 -134.345 -85.8501
- 78 115.941 884 3 1 -3.09116 -141.416 -114.45
- 78 120.564 193 3 0 -3.13416 -141.412 -115.85
- 78 120.444 889 2 1 -2.25 -140.732 -144.451
- 78 17.0027 890 2 1 -2.04998 -140.697 -144.814
- 78 161.497 197 2 0 -1.52109 -140.648 -145.85
- 78 56.5647 213 1 0 12.3199 -137.376 -175.85
- 78 88.764 214 1 0 12.3414 -137.35 -176.065
- 78 89.6285 974 0 1 14.9718 -130.436 -204.45
- 78 71.7579 975 0 1 15.05 -130.388 -204.605
- 78 95.6041 250 0 0 15.6574 -130.016 -205.85
- 78 43.6938 251 0 0 15.7771 -129.95 -206.107
-Number of digits in this event = 87
-Using G4ParticleGun ...
-1.60882 LIN
+Number of tracker hits in this event = 89
+ 78 124 1134 9 1 46.8768 -113.17 65.55
+ 78 351.538 334 9 0 46.8764 -113.17 64.15
+ 78 112.652 1134 8 1 46.8695 -113.168 35.55
+ 78 223.678 334 8 0 46.8692 -113.168 34.15
+ 78 129.561 1134 7 1 46.8647 -113.167 5.55
+ 78 102.6 334 7 0 46.8654 -113.167 4.15
+ 78 151.27 1134 6 1 46.8813 -113.151 -24.45
+ 78 162.131 334 6 0 46.882 -113.151 -25.85
+ 78 115.315 1134 5 1 46.9065 -113.139 -54.45
+ 78 170.512 335 5 0 46.9047 -113.138 -55.85
+ 78 531.504 1134 4 1 46.8661 -113.102 -84.45
+ 78 156.174 335 4 0 46.8681 -113.102 -85.85
+ 78 174.803 1134 3 1 46.8931 -113.09 -114.45
+ 78 131.319 335 3 0 46.893 -113.091 -115.85
+ 78 129.932 1134 2 1 46.8817 -113.109 -144.45
+ 78 237.263 335 2 0 46.8808 -113.11 -145.85
+ 78 279.634 1133 1 1 46.8466 -113.124 -174.45
+ 78 197.601 335 1 0 46.85 -113.125 -175.85
+ 78 411.494 1134 0 1 46.9195 -113.151 -204.45
+ 78 252.967 334 0 0 46.9255 -113.152 -205.85
+ 78 16.6456 1077 0 0 -24.1234 35.5985 -206.25
+ 78 65.1036 1078 0 0 -24.1316 35.65 -206.221
+ 78 79.94 1079 0 0 -24.1595 35.85 -206.201
+ 78 54.1743 1080 0 0 -24.2314 36.05 -206.204
+ 78 194.167 605 2 1 -58.85 13.0251 -144.822
+ 78 15.4735 604 2 1 -59.05 13.5266 -144.49
+ 78 61.0788 606 2 1 -58.8498 13.7186 -144.59
+ 78 77.3419 607 2 1 -58.65 13.7639 -144.563
+ 78 283.916 608 2 1 -58.45 13.856 -144.492
+ 78 111.534 334 1 0 46.8251 -113.15 -175.993
+ 78 165.191 176 5 0 54.1932 -144.751 -56.25
+ 78 43.5636 177 5 0 54.1939 -144.75 -56.2456
+ 78 43.1874 100 5 0 141.322 -160.078 -56.25
+ 78 33.3595 341 3 0 47.0672 -111.814 -115.85
+ 78 95.8318 342 3 0 47.0723 -111.75 -115.915
+ 78 194.384 343 3 0 47.0923 -111.55 -115.94
+ 78 235.907 335 0 0 47.032 -112.975 -205.85
+ 78 61.3494 336 0 0 47.0587 -112.95 -206.023
+ 78 290.857 1133 4 1 46.85 -112.569 -84.6781
+ 78 46.4986 1132 4 1 46.65 -112.421 -84.5143
+ 78 272.254 135 5 0 36.9157 -153.121 -56.25
+ 78 36.4558 134 5 0 36.9148 -153.15 -56.2151
+ 78 67.2438 620 1 0 -61.0789 -56.038 -176.25
+ 78 390.24 1134 1 1 47.0312 -113.07 -174.45
+ 78 100.576 336 1 0 46.9648 -112.856 -175.85
+ 78 303.031 1118 0 1 43.7062 -111.976 -204.45
+ 78 114.025 1117 0 1 43.65 -112.043 -204.807
+ 78 130.746 339 0 0 43.5562 -112.259 -205.85
+ 78 97.0442 342 0 0 43.5256 -111.585 -205.85
+ 78 89.0723 330 1 0 46.5713 -113.988 -175.85
+ 78 214.679 329 1 0 46.4979 -114.15 -176.129
+ 78 153.198 1084 0 1 36.8687 -127.099 -204.45
+ 78 40.0014 265 0 0 37.3039 -127.142 -205.851
+ 78 84.1676 264 0 0 37.3307 -127.15 -205.937
+ 78 173.011 485 4 1 -82.9592 -71.6845 -84.45
+ 78 83.0682 486 4 1 -82.85 -71.6006 -84.5007
+ 78 572.698 1133 2 1 46.8194 -113.148 -144.451
+ 78 145.042 336 2 0 46.8746 -112.845 -145.85
+ 78 101.807 1136 1 1 47.3402 -106.71 -174.45
+ 78 284.064 370 1 0 47.0942 -106.069 -175.85
+ 78 58.7881 371 1 0 47.0451 -105.95 -176.117
+ 78 128.816 1107 0 1 41.6057 -93.4271 -204.45
+ 78 15.2189 1108 0 1 41.65 -93.2795 -204.794
+ 78 55.8642 436 0 0 41.8061 -92.8377 -205.85
+ 78 159.285 437 0 0 41.833 -92.75 -206.017
+ 78 0.209349 380 0 0 38.6997 -104.008 -206.249
+ 78 109.571 397 0 0 36.1271 -100.671 -206.25
+ 78 117.236 1079 0 1 36.002 -101.136 -204.85
+ 78 121.587 1128 1 1 45.8163 -112.401 -174.45
+ 78 97.942 338 1 0 45.8621 -112.376 -175.85
+ 78 166.675 1133 0 1 46.6834 -111.826 -204.45
+ 78 107.375 341 0 0 46.7324 -111.799 -205.85
+ 78 17.7007 339 1 0 45.8723 -112.35 -176.207
+ 78 37.5475 402 1 0 34.7315 -99.5637 -176.25
+ 78 112.946 403 1 0 34.6953 -99.55 -176.138
+ 78 170.639 1071 1 1 34.3092 -99.4031 -174.85
+ 78 74.0705 1070 1 1 34.25 -99.4166 -174.76
+ 78 53.5524 335 8 0 46.868 -113.15 33.9004
+ 78 247.765 334 2 0 46.8244 -113.261 -145.85
+ 78 93.9381 1132 1 1 46.5524 -115.421 -174.451
+ 78 119.537 323 1 0 46.6214 -115.477 -175.85
+ 78 21.0988 1139 0 1 48.0444 -116.814 -204.45
+ 78 269.967 1140 0 1 48.05 -116.815 -204.495
+ 78 108.43 316 0 0 48.2054 -116.868 -205.851
+ 78 277.644 1137 1 1 47.5804 -114.144 -174.45
+ 78 118.922 323 0 0 48.2618 -115.365 -205.85
+ 78 187.385 381 1 0 96.7983 -103.935 -176.25
+ 78 189.428 382 1 0 96.7962 -103.75 -176.036
+ 78 38.436 1380 1 1 96.3038 -103.532 -174.85
+Number of digits in this event = 46
+Using G4ParticleGun ...
+8.91639 LIN
e-
Event: 79
-Number of tracker hits in this event = 131
- 79 122.505 1374 9 1 94.9749 95.0563 65.55
- 79 124.727 1374 9 0 94.9735 95.0599 64.15
- 79 121.223 1373 8 1 94.9497 95.143 35.55
- 79 118.011 1375 8 0 94.9441 95.1514 34.15
- 79 133.931 1373 7 1 94.8418 95.3234 5.55
- 79 125.813 1375 7 0 94.8357 95.3343 4.15
- 79 352.868 1372 6 1 94.708 95.553 -24.45
- 79 240.074 1377 6 0 94.7094 95.5627 -25.85
- 79 110.768 1372 5 1 94.7482 95.7407 -54.45
- 79 103.045 1378 5 0 94.7489 95.7509 -55.85
- 79 518.108 1373 4 1 94.779 95.9365 -84.45
- 79 267.658 1379 4 0 94.7656 95.9505 -85.85
- 79 100.197 1371 3 1 94.4883 96.1874 -114.45
- 79 152.38 1380 3 0 94.4577 96.2061 -115.85
- 79 153.635 1368 2 1 93.7837 96.6564 -144.45
- 79 277.352 1382 2 0 93.7667 96.672 -145.85
- 79 108.827 1366 1 1 93.4042 96.9793 -174.45
- 79 228.513 1384 1 0 93.3914 96.9819 -175.85
- 79 121.529 1364 0 1 93.1148 96.9832 -204.45
- 79 198.624 1384 0 0 93.0954 96.9686 -205.85
- 79 31.6862 1463 11 0 167.439 112.779 123.75
- 79 140.434 1462 11 0 167.519 112.75 123.84
- 79 24.2773 1461 11 0 167.903 112.55 124.107
- 79 16.7934 1744 11 1 169.115 111.39 125.15
- 79 173.29 1745 11 1 169.15 111.354 125.183
- 79 92.8158 1453 11 0 169.201 110.918 124.15
- 79 46.904 1454 11 0 169.144 110.95 123.9
- 79 341.66 1371 2 1 94.3917 96.8389 -144.45
- 79 259.347 1383 2 0 94.3847 96.8548 -145.85
- 79 127.79 1370 1 1 94.2285 97.1127 -174.45
- 79 199.883 1368 0 1 93.8532 97.5844 -204.45
- 79 122.065 1387 0 0 93.8359 97.6161 -205.85
- 79 38.177 770 0 1 -25.9008 -33.9517 -204.85
- 79 110.851 1369 1 1 94.0377 97.2478 -174.45
- 79 121.706 1386 1 0 93.9537 97.4069 -175.85
- 79 11.7574 1360 0 1 92.3424 100.394 -204.45
- 79 197.267 1361 0 1 92.35 100.402 -204.498
- 79 115.861 1403 0 0 92.5787 100.757 -205.85
- 79 126.634 1399 0 0 92.4488 100.104 -205.85
- 79 65.4205 1266 0 0 99.5671 73.4186 -206.25
- 79 74.5021 1265 0 0 99.6152 73.25 -206.108
- 79 51.484 1264 0 0 99.5981 73.0497 -206.019
- 79 64.3175 1263 0 0 99.5825 72.85 -205.949
- 79 14.1667 1262 0 0 99.579 72.65 -205.869
- 79 232.529 1397 0 1 99.7183 69.9351 -204.85
- 79 89.6816 1398 0 1 99.75 69.253 -204.579
- 79 43.8272 1351 1 0 149.597 90.5388 -176.25
- 79 545.24 1352 1 0 149.624 90.55 -176.235
- 79 4.35343 1353 1 0 150.233 90.75 -175.996
- 79 11.6876 1652 1 1 150.565 91.4442 -174.85
- 79 140.479 1651 1 1 150.55 91.4698 -174.811
- 79 72.2308 1650 1 1 150.333 91.8516 -174.45
- 79 62.4856 1649 1 1 150.15 91.9128 -174.594
- 79 54.508 1648 1 1 149.95 92.0172 -174.702
- 79 39.8108 1647 1 1 149.749 92.1159 -174.761
- 79 61.2877 1364 1 0 149.089 92.9978 -175.85
- 79 118.429 1365 1 0 149.009 93.15 -176.01
- 79 69.1346 1366 1 0 148.989 93.3502 -176.12
- 79 1.88335 1563 1 0 153.28 132.946 -176.25
- 79 93.6888 1564 1 0 153.281 132.95 -176.245
- 79 66.4548 1565 1 0 153.207 133.15 -175.967
- 79 21.5844 1661 1 1 152.395 133.595 -174.85
- 79 172.974 1660 1 1 152.35 133.616 -174.779
- 79 3.12197 1659 1 1 152.15 133.654 -174.464
- 79 108.868 1378 4 0 94.8127 95.9437 -85.85
- 79 246.79 1373 3 1 94.7597 95.5822 -114.45
- 79 123.126 1377 3 0 94.7658 95.6849 -115.85
- 79 134.533 1373 2 1 94.9363 97.7097 -144.45
- 79 43.1463 1387 2 0 94.9255 97.7461 -145.85
- 79 67.0933 1388 2 0 94.9241 97.75 -145.991
- 79 107.603 1371 1 1 94.4789 98.7515 -174.45
- 79 128.311 1393 1 0 94.4785 98.7512 -175.85
- 79 127.188 1372 0 1 94.6696 98.485 -204.45
- 79 127.854 1391 0 0 94.6466 98.482 -205.85
- 79 419.598 1374 1 1 95.0354 96.8574 -174.451
- 79 126.172 1380 1 0 94.8178 96.3349 -175.85
- 79 70.6336 1318 0 1 83.7709 84.9681 -204.451
- 79 60.6478 1319 0 1 83.85 84.9081 -204.624
- 79 117.463 1322 0 0 84.3688 84.6289 -205.85
- 79 174.045 1375 1 1 95.15 97.3314 -174.649
- 79 190.366 1383 1 0 95.6527 96.9012 -175.85
- 79 67.3622 1321 1 0 107.224 84.45 -176.193
- 79 70.6113 1376 1 1 95.35 97.2016 -174.831
- 79 70.6502 1390 1 0 94.7617 98.3193 -175.85
- 79 128.928 1375 3 1 95.2867 97.3179 -114.45
- 79 122.196 1386 3 0 95.2791 97.4195 -115.85
- 79 220.247 1370 2 1 94.1809 98.6653 -144.45
- 79 92.6613 1392 2 0 94.5675 98.7031 -145.85
- 79 74.8472 1413 1 1 102.89 99.8968 -174.45
- 79 37.0849 1414 1 1 102.95 99.8807 -174.698
- 79 137.342 1398 1 0 103.245 99.7924 -175.85
- 79 124.594 1457 0 1 111.58 96.4923 -204.45
- 79 35.2013 1381 0 0 112.069 96.3591 -205.85
- 79 81.2983 1380 0 0 112.101 96.35 -205.941
- 79 140.906 1373 5 1 94.8327 95.0526 -54.4504
- 79 161.151 1374 5 0 94.8214 95.041 -55.8503
- 79 120.028 1372 4 1 94.6307 94.6021 -84.45
- 79 158.767 1371 4 0 94.6261 94.5473 -85.8504
- 79 189.497 1365 3 0 94.8618 93.2113 -115.85
- 79 123.601 1352 2 0 94.3721 90.5954 -145.85
- 79 132.458 1359 1 1 92.0807 89.4165 -174.45
- 79 142.979 1346 1 0 92.0517 89.4218 -175.85
- 79 138.566 1357 0 1 91.604 89.2279 -204.45
- 79 115.224 1345 0 0 91.63 89.2293 -205.851
- 79 34.2634 1348 0 0 91.9293 89.8171 -205.851
- 79 105.977 1349 0 0 91.9475 89.85 -205.971
- 79 133.217 1376 6 0 94.7304 95.4988 -25.8503
- 79 113.252 1377 5 1 95.5567 92.9728 -54.45
- 79 127.411 1364 5 0 95.8394 92.9983 -55.8501
- 79 64.9307 1392 4 1 98.7275 94.2621 -84.4501
- 79 76.4732 1391 4 1 98.55 94.305 -84.5966
- 79 8.15519 1390 4 1 98.35 94.2863 -84.8329
- 79 216.925 1369 4 0 97.5079 94.1496 -85.85
- 79 3.54311 1368 4 0 96.9791 93.95 -86.2409
- 79 75.3726 1121 3 1 44.4461 54.6954 -114.451
- 79 90.4805 1120 3 1 44.25 54.8178 -114.569
- 79 28.9248 1119 3 1 44.05 55.0364 -114.796
- 79 27.8371 1177 3 0 43.2888 55.6131 -115.85
- 79 175.096 1178 3 0 43.2408 55.65 -115.913
- 79 38.5646 1174 3 0 21.4413 55.0282 -116.25
- 79 100.754 1175 3 0 21.4421 55.05 -116.192
- 79 34.0224 1176 3 0 21.3666 55.2505 -115.972
- 79 147.372 1006 3 1 21.3944 55.6472 -114.85
- 79 100.902 1005 3 1 21.25 55.8471 -114.668
- 79 245.709 1181 3 0 21.1109 56.3843 -115.85
- 79 68.532 1182 3 0 21.0859 56.4502 -115.924
- 79 53.2881 1378 4 1 95.786 99.3996 -84.4501
- 79 65.2771 1377 4 1 95.7499 99.4311 -84.4575
- 79 100.851 1376 4 1 95.55 99.5832 -84.472
- 79 95.512 1375 4 1 95.35 99.7636 -84.5172
- 79 95.7914 1374 4 1 95.15 100.014 -84.5511
-Number of digits in this event = 61
+Number of tracker hits in this event = 121
+ 79 150.254 1102 11 1 40.4611 21.8005 125.55
+ 79 111.543 1008 11 0 40.461 21.7999 124.15
+ 79 109.441 1102 10 1 40.4558 21.7823 95.55
+ 79 108.937 1008 10 0 40.4548 21.7805 94.15
+ 79 158.228 1101 9 1 40.427 21.7509 65.55
+ 79 211.924 1008 9 0 40.4258 21.7498 64.15
+ 79 173.267 1101 8 1 40.4018 21.7317 35.55
+ 79 192.555 1008 8 0 40.4032 21.7307 34.15
+ 79 115.219 1101 7 1 40.4362 21.7112 5.55
+ 79 126.082 1008 7 0 40.4374 21.7103 4.15
+ 79 117.723 1102 6 1 40.4569 21.6798 -24.45
+ 79 234.214 1008 6 0 40.4564 21.6744 -25.85
+ 79 168.859 1102 5 1 40.4527 21.5536 -54.45
+ 79 213.561 1007 5 0 40.4534 21.5425 -55.85
+ 79 108.429 1102 4 1 40.4621 21.2982 -84.45
+ 79 118.359 1006 4 0 40.4603 21.2855 -85.85
+ 79 415.309 1102 3 1 40.4556 21.0502 -114.45
+ 79 252.325 1004 3 0 40.4572 21.0317 -115.85
+ 79 102.846 1102 2 1 40.5155 20.638 -144.45
+ 79 204.013 1002 2 0 40.5091 20.6202 -145.85
+ 79 108.106 1101 1 1 40.368 20.2746 -174.45
+ 79 172.902 1001 1 0 40.361 20.2552 -175.85
+ 79 4.56815 1000 1 0 40.359 20.25 -176.23
+ 79 130.293 1100 0 1 40.2358 19.8498 -204.45
+ 79 130.276 998 0 0 40.2264 19.8302 -205.85
+ 79 273.158 1400 3 0 90.2178 100.275 -116.25
+ 79 24.2243 1393 2 1 98.75 -23.5058 -144.823
+ 79 66.6357 1044 1 0 106.834 29.037 -176.25
+ 79 18.2772 732 6 1 -33.45 122.392 -24.7204
+ 79 134.73 1367 5 1 93.6667 61.4395 -54.85
+ 79 115.141 1368 5 1 93.75 61.5013 -54.5527
+ 79 176.549 1369 5 1 93.95 61.3127 -54.5854
+ 79 103.866 1195 5 0 3.83379 59.05 -55.9482
+ 79 301.124 1101 3 1 40.4112 21.0667 -114.45
+ 79 105.186 1012 3 0 40.0797 22.4788 -115.85
+ 79 32.4081 1013 3 0 40.1405 22.65 -116.15
+ 79 110.062 1103 3 1 40.7682 21.7859 -114.45
+ 79 168.133 1006 3 0 40.3672 21.3657 -115.85
+ 79 211.505 1007 3 0 40.1733 21.45 -116.11
+ 79 90.7828 1098 3 1 39.7884 19.9878 -114.85
+ 79 157.702 992 3 0 39.8844 18.6346 -115.85
+ 79 71.0541 991 3 0 39.7819 18.45 -116.211
+ 79 219.421 688 3 0 37.3473 -42.2929 -116.249
+ 79 136.243 1101 6 1 40.3518 21.7169 -24.45
+ 79 145.861 1110 5 1 42.1233 22.4471 -54.45
+ 79 47.7294 1011 5 0 42.1708 22.27 -55.85
+ 79 64.9461 1010 5 0 42.1754 22.25 -56.0052
+ 79 110.643 1116 4 1 43.2653 18.9902 -84.4501
+ 79 119.535 993 4 0 43.339 18.8385 -85.85
+ 79 42.5797 1121 3 1 44.3427 15.9488 -114.45
+ 79 123.051 1149 1 1 50.032 8.86887 -174.45
+ 79 83.6096 1150 1 1 50.05 8.86015 -174.513
+ 79 158.092 943 1 0 50.4434 8.70629 -175.85
+ 79 91.5164 1197 0 1 59.5511 5.61053 -204.45
+ 79 28.9241 1198 0 1 59.6502 5.52669 -204.751
+ 79 284.179 925 0 0 60.0287 5.23526 -205.85
+ 79 93.8439 942 1 0 49.8874 8.64992 -175.868
+ 79 264.48 1129 0 1 45.9195 6.59166 -204.45
+ 79 75.7721 1128 0 1 45.85 6.4687 -204.653
+ 79 24.3616 926 0 0 45.2068 5.31543 -205.851
+ 79 34.3483 924 0 0 45.0348 5.05 -206.146
+ 79 122.777 1130 0 1 46.05 6.14917 -204.696
+ 79 13.1897 921 0 0 47.7013 4.28641 -205.85
+ 79 10.5559 1207 0 1 61.6157 7.00506 -204.85
+ 79 180.367 935 0 0 63.8645 7.12641 -205.85
+ 79 256.003 1015 7 0 13.0162 23.193 3.75
+ 79 30.5927 1016 7 0 12.7182 23.25 4.06359
+ 79 64.0105 957 7 1 11.569 23.3874 5.15
+ 79 72.658 956 7 1 11.45 23.4018 5.26111
+ 79 71.2465 955 7 1 11.25 23.4368 5.43262
+ 79 14.8699 1333 8 0 -14.5102 86.7988 33.75
+ 79 93.9565 1334 8 0 -14.5327 86.85 33.7684
+ 79 75.5831 1335 8 0 -14.5699 87.05 33.9338
+ 79 116.915 832 8 1 -13.6307 88.4267 35.15
+ 79 95.3149 833 8 1 -13.45 88.6754 35.2077
+ 79 31.8864 1350 8 0 -11.0163 90.2614 34.15
+ 79 63.5699 1351 8 0 -10.9541 90.35 34.0994
+ 79 122.736 1352 8 0 -11.0112 90.55 34.0822
+ 79 77.1624 1396 8 0 3.89016 99.4128 33.75
+ 79 121.81 1397 8 0 3.96104 99.55 33.8584
+ 79 191.308 1398 8 0 4.03945 99.75 33.9885
+ 79 48.4457 1342 8 0 -13.0442 88.495 34.1499
+ 79 111.954 1341 8 0 -13.0163 88.45 34.1417
+ 79 10.2507 1355 8 0 -18.0292 91.2249 34.15
+ 79 59.483 921 1 0 44.9822 4.42639 -175.85
+ 79 387.72 1102 0 1 40.485 21.6312 -204.45
+ 79 422.672 1103 0 1 40.65 22.1349 -204.707
+ 79 187.132 1104 0 1 40.85 22.4097 -204.645
+ 79 28.8367 1105 0 1 41.0501 22.4846 -204.655
+ 79 185.196 1101 0 1 40.437 21.7404 -204.45
+ 79 248.505 1008 0 0 40.4404 21.7796 -205.85
+ 79 5.85434 1114 0 0 36.6259 43.0278 -206.25
+ 79 107.269 1115 0 0 36.6221 43.05 -206.233
+ 79 37.5382 1116 0 0 36.5103 43.25 -205.943
+ 79 24.477 1079 0 1 35.923 44.2487 -204.85
+ 79 221.969 1078 0 1 35.85 44.3036 -204.793
+ 79 147.488 1077 0 1 35.65 44.4992 -204.683
+ 79 155.366 1076 0 1 35.45 45.0338 -204.674
+ 79 92.7243 1075 0 1 35.2499 45.5103 -204.557
+ 79 106.971 1074 0 1 35.0499 45.5779 -204.636
+ 79 58.8725 1073 0 1 34.85 45.7766 -204.724
+ 79 11.4281 1142 0 0 33.5023 48.6203 -205.85
+ 79 97.1318 1143 0 0 33.4897 48.6503 -205.863
+ 79 164.77 1068 0 1 33.8236 51.56 -204.85
+ 79 209.516 1069 0 1 33.8501 51.637 -204.659
+ 79 130.921 1009 0 0 40.5229 21.85 -205.912
+ 79 136.23 1008 3 0 40.3986 21.7712 -115.85
+ 79 103.231 1096 2 1 39.4068 21.7974 -144.45
+ 79 109.936 1008 2 0 39.3416 21.79 -145.85
+ 79 210.265 1090 1 1 38.1523 21.7249 -174.45
+ 79 128.173 1008 1 0 38.1099 21.731 -175.85
+ 79 130.216 1085 0 1 37.146 21.7951 -204.45
+ 79 36.8109 1110 2 1 42.2157 21.8345 -144.45
+ 79 103.582 1111 2 1 42.25 21.8493 -144.593
+ 79 172.143 1009 2 0 42.515 21.9941 -145.851
+ 79 285.754 1125 1 1 45.1454 26.2587 -174.451
+ 79 26.5231 1028 1 0 45.1549 25.6943 -175.85
+ 79 90.2492 1027 1 0 45.1591 25.65 -175.956
+ 79 175.263 1139 0 1 47.9907 14.2692 -204.45
+ 79 126.698 967 0 0 47.7104 13.6165 -205.85
+ 79 17.1851 966 0 0 47.6522 13.45 -206.186
+Number of digits in this event = 56
Using G4ParticleGun ...
-5.53968 LIN
+9.19276 LIN
e-
Event: 80
-Number of tracker hits in this event = 87
- 80 127.791 973 11 1 14.7973 -18.197 125.55
- 80 124.462 809 11 0 14.7969 -18.1967 124.15
- 80 146.522 973 10 1 14.7984 -18.1883 95.55
- 80 122.604 809 10 0 14.7979 -18.1891 94.15
- 80 111.951 973 9 1 14.7862 -18.2066 65.55
- 80 121.462 809 9 0 14.7851 -18.2069 64.15
- 80 126.004 973 8 1 14.761 -18.2112 35.55
- 80 149.205 809 8 0 14.7598 -18.2127 34.15
- 80 110.531 973 7 1 14.7334 -18.2386 5.55
- 80 123.411 809 7 0 14.7316 -18.2388 4.15
- 80 442.735 973 6 1 14.692 -18.2411 -24.45
- 80 147.962 809 6 0 14.688 -18.2425 -25.85
- 80 510.155 972 5 1 14.6051 -18.2654 -54.45
- 80 541.831 808 5 0 14.6006 -18.266 -55.85
- 80 154.311 972 4 1 14.5065 -18.2796 -84.45
- 80 125.089 808 4 0 14.5026 -18.2793 -85.85
- 80 130.917 971 3 1 14.4261 -18.2586 -114.45
- 80 107.435 808 3 0 14.421 -18.2579 -115.85
- 80 241.343 971 2 1 14.3293 -18.2435 -144.45
- 80 127.405 809 2 0 14.3251 -18.2433 -145.85
- 80 194.508 970 1 1 14.2382 -18.2388 -174.45
- 80 128.802 809 1 0 14.2343 -18.236 -175.85
- 80 124.043 970 0 1 14.1609 -18.1802 -204.45
- 80 165.269 809 0 0 14.1566 -18.1789 -205.85
- 80 233.268 808 6 0 14.7018 -18.273 -25.85
- 80 130.333 973 4 1 14.687 -19.1295 -84.45
- 80 129.422 804 4 0 14.6884 -19.1748 -85.85
- 80 133.995 972 3 1 14.5852 -19.6607 -114.45
- 80 128.028 801 3 0 14.5741 -19.6737 -115.85
- 80 114.726 800 2 0 14.3228 -19.8989 -145.85
- 80 104.568 967 1 1 13.5371 -19.3298 -174.45
- 80 115.713 803 1 0 13.4578 -19.2807 -175.85
- 80 119.101 958 0 1 11.7865 -18.3316 -204.45
- 80 196.238 808 0 0 11.7564 -18.2828 -205.85
- 80 323.919 774 1 0 15.77 -25.2038 -176.25
- 80 49.6751 773 1 0 15.9298 -25.25 -176.199
- 80 259.595 971 4 1 14.4096 -17.5999 -84.45
- 80 112.927 812 4 0 14.36 -17.5654 -85.85
- 80 10.2495 969 3 1 13.8557 -17.1279 -114.45
- 80 103.154 968 3 1 13.85 -17.1253 -114.493
- 80 203.239 815 3 0 13.6721 -17.046 -115.85
- 80 244.974 948 2 1 9.80412 -16.0575 -144.45
- 80 117.3 820 2 0 9.62059 -15.9744 -145.85
- 80 102.25 930 1 1 6.23936 -13.8479 -174.45
- 80 122.701 832 1 0 6.05451 -13.6487 -175.85
- 80 127.221 910 0 1 2.23125 -9.70957 -204.451
- 80 18.5799 852 0 0 1.94325 -9.46305 -205.85
- 80 87.0622 853 0 0 1.92736 -9.45 -205.927
- 80 45.2302 1393 3 0 105.325 98.9352 -116.25
- 80 86.4441 1394 3 0 105.336 98.95 -116.245
- 80 43.7149 1395 3 0 105.46 99.15 -116.014
- 80 236.02 1428 3 1 105.778 99.0802 -114.85
- 80 270.826 1429 3 1 105.95 99.2304 -114.458
- 80 92.4117 1430 3 1 106.15 99.3964 -114.47
- 80 243.592 1392 3 0 102.846 98.6628 -115.85
- 80 135.241 815 4 0 14.4121 -16.9047 -85.85
- 80 102.923 975 3 1 15.1097 -18.8325 -114.45
- 80 34.701 806 3 0 15.1372 -18.85 -115.85
- 80 69.2319 805 3 0 15.1373 -18.85 -115.853
- 80 123.458 979 2 1 15.9113 -18.676 -144.45
- 80 117.263 806 2 0 16.0552 -18.7891 -145.85
- 80 149.407 995 1 1 19.1322 -21.0033 -174.45
- 80 160.808 794 1 0 19.3358 -21.0773 -175.85
- 80 119.276 1013 0 1 22.7871 -22.6215 -204.45
- 80 100.61 786 0 0 22.7175 -22.6674 -205.85
- 80 32.4334 977 5 1 15.4817 -18.6893 -54.4514
- 80 71.9923 976 5 1 15.45 -18.6742 -54.569
- 80 152.687 807 5 0 15.107 -18.5124 -55.85
- 80 44.4357 938 4 1 7.69594 -15.5624 -84.45
- 80 127.246 937 4 1 7.65 -15.556 -84.5223
- 80 3.36053 936 4 1 7.45 -15.5347 -84.8387
- 80 131.751 823 4 0 6.83268 -15.4434 -85.85
- 80 85.2726 837 3 1 -12.4514 -13.372 -114.45
- 80 62.5057 836 3 1 -12.65 -13.384 -114.733
- 80 164.93 832 3 0 -13.4041 -13.4905 -115.85
- 80 124.149 726 2 1 -34.6668 -17.8435 -144.451
- 80 261.512 813 2 0 -35.2306 -17.4226 -145.85
- 80 144.43 670 1 1 -45.8629 -6.72019 -174.45
- 80 75.3422 870 1 0 -45.9778 -5.9418 -175.85
- 80 60.0337 871 1 0 -45.992 -5.85 -175.996
- 80 66.6221 872 1 0 -46.0263 -5.65 -176.102
- 80 27.8307 873 1 0 -46.0616 -5.44962 -176.211
- 80 42.7162 626 0 1 -54.7046 48.8055 -204.45
- 80 82.3605 627 0 1 -54.65 48.8324 -204.593
- 80 215.781 1145 0 0 -54.1461 49.1131 -205.85
- 80 352.893 829 1 0 -3.92448 -14.2029 -175.85
- 80 318.177 868 1 1 -6.34408 -161.703 -174.85
-Number of digits in this event = 53
+Number of tracker hits in this event = 38
+ 80 130.507 1399 9 1 100.074 68.219 65.55
+ 80 102.425 1240 9 0 100.075 68.2192 64.15
+ 80 159.958 1399 8 1 100.093 68.2213 35.55
+ 80 116.144 1240 8 0 100.094 68.2212 34.15
+ 80 143.964 1399 7 1 100.121 68.2173 5.55
+ 80 145.244 1240 7 0 100.122 68.2177 4.15
+ 80 171.116 1399 6 1 100.145 68.2242 -24.45
+ 80 112.952 1240 6 0 100.145 68.2249 -25.85
+ 80 131.685 1400 5 1 100.157 68.2382 -54.45
+ 80 104.034 1240 5 0 100.157 68.2382 -55.85
+ 80 128.716 1400 4 1 100.153 68.2398 -84.45
+ 80 111.843 1240 4 0 100.152 68.2411 -85.85
+ 80 149.444 1399 3 1 100.126 68.269 -114.45
+ 80 121.102 1241 3 0 100.124 68.2702 -115.85
+ 80 163.375 1399 2 1 100.088 68.2921 -144.45
+ 80 112.171 1241 2 0 100.086 68.2936 -145.85
+ 80 336.184 1399 1 1 100.053 68.3266 -174.45
+ 80 383.693 1241 1 0 100.051 68.328 -175.85
+ 80 142.419 1399 0 1 100.027 68.3568 -204.45
+ 80 97.6869 1241 0 0 100.026 68.3606 -205.85
+ 80 198.896 1643 2 0 27.3724 148.842 -146.25
+ 80 36.9836 1644 2 0 27.3461 148.95 -145.954
+ 80 120.802 1035 2 1 27.248 149.489 -144.85
+ 80 116.995 1034 2 1 27.05 149.658 -144.592
+ 80 96.1332 1033 2 1 26.85 149.957 -144.53
+ 80 99.7403 1032 2 1 26.6498 150 -144.73
+ 80 135.757 1642 2 0 26.4575 148.75 -145.922
+ 80 157.298 1586 2 0 56.9283 137.526 -146.25
+ 80 143.9 1057 2 1 31.5308 48.9663 -144.85
+ 80 163.785 1221 0 1 64.396 51.7205 -204.85
+ 80 178.291 1220 0 1 64.25 51.5618 -204.531
+ 80 42.235 1160 0 0 64.6724 52.1583 -205.85
+ 80 250.62 1161 0 0 64.7171 52.2501 -205.906
+ 80 24.6396 694 0 0 -7.76759 -41.05 -206.229
+ 80 164.164 1402 0 1 100.602 68.5968 -204.45
+ 80 154.664 1242 0 0 100.613 68.6216 -205.85
+ 80 147.378 1400 0 1 100.172 68.8928 -204.45
+ 80 117.897 1244 0 0 100.263 68.9059 -205.85
+Number of digits in this event = 27
Using G4ParticleGun ...
-8.64872 LIN
+2.47109 LIN
e-
Event: 81
-Number of tracker hits in this event = 123
- 81 100.175 917 8 1 3.45053 141.8 35.55
- 81 109.303 1608 8 0 3.44988 141.8 34.15
- 81 250.441 916 7 1 3.43495 141.795 5.55
- 81 152.157 1608 7 0 3.43298 141.794 4.15
- 81 120.887 916 6 1 3.38678 141.778 -24.45
- 81 122.773 1608 6 0 3.384 141.777 -25.85
- 81 488.732 916 5 1 3.33366 141.767 -54.45
- 81 329.895 1608 5 0 3.33228 141.767 -55.85
- 81 286.691 916 4 1 3.30905 141.769 -84.45
- 81 413.504 1608 4 0 3.30721 141.77 -85.85
- 81 417.083 916 3 1 3.27105 141.777 -114.45
- 81 285.566 1608 3 0 3.26837 141.778 -115.85
- 81 280.374 915 2 1 3.21799 141.814 -144.45
- 81 423.597 1608 2 0 3.21583 141.817 -145.85
- 81 222.701 915 1 1 3.18683 141.881 -174.45
- 81 123.304 1608 1 0 3.18697 141.883 -175.85
- 81 541.764 915 0 1 3.18848 141.916 -204.45
- 81 125.541 1608 0 0 3.18866 141.917 -205.85
- 81 237.354 1607 3 0 3.28345 141.75 -116.046
- 81 475.669 915 3 1 3.25 141.783 -114.468
- 81 52.0603 914 3 1 3.04973 141.829 -114.537
- 81 49.7698 913 3 1 2.85 141.84 -114.564
- 81 139.838 912 3 1 2.65 141.824 -114.545
- 81 39.4353 911 3 1 2.45 141.603 -114.536
- 81 200.31 1050 2 0 -45.0553 30.25 -146.037
- 81 149.619 1049 2 0 -45.1237 30.05 -145.943
- 81 236.232 1609 3 0 3.04949 142.018 -115.85
- 81 57.5995 896 2 1 -0.822189 146.702 -144.45
- 81 45.4926 895 2 1 -0.850011 146.743 -144.688
- 81 162.358 1633 2 0 -0.976207 146.95 -145.85
- 81 119.084 1634 2 0 -0.976458 146.95 -145.852
- 81 102.909 882 1 1 -3.55316 151.474 -174.45
- 81 108.558 1656 1 0 -3.67968 151.397 -175.85
- 81 136.351 865 0 1 -6.8614 149.647 -204.45
- 81 193.863 1646 0 0 -7.03112 149.52 -205.85
- 81 125.003 1606 3 0 3.24847 141.525 -115.85
- 81 120.594 918 2 1 3.73898 136.768 -144.45
- 81 132.222 1581 2 0 3.86363 136.462 -145.85
- 81 107.718 927 1 1 5.58933 130.844 -174.45
- 81 118.015 1553 1 0 5.63915 130.92 -175.85
- 81 136.416 943 0 1 8.66695 132.998 -204.45
- 81 88.5761 1563 0 0 8.76834 132.782 -205.85
- 81 74.5279 1562 0 0 8.78292 132.75 -206.048
- 81 206.885 1607 0 0 3.11411 141.678 -205.85
- 81 171.315 1446 0 0 28.0702 109.512 -206.25
- 81 299.287 1039 0 1 28.037 109.91 -204.849
- 81 1.40683 1604 7 0 3.46302 140.954 4.14995
- 81 80.4832 1603 7 0 3.46345 140.95 4.14486
- 81 138.936 1602 7 0 3.52725 140.75 3.8987
- 81 228.968 1601 7 0 3.59122 140.55 3.77607
- 81 127.81 1785 7 0 44.7812 177.157 3.75
- 81 93.8922 1784 7 0 44.8215 177.15 3.77611
- 81 38.0496 1719 7 0 37.2159 164.075 3.75
- 81 107.347 926 2 1 5.34051 143.564 -144.45
- 81 153.833 1617 2 0 5.65548 143.685 -145.85
- 81 5.249 961 1 1 12.4446 145.556 -174.45
- 81 178.62 962 1 1 12.45 145.561 -174.468
- 81 9.88006 1628 1 0 12.8383 145.939 -175.85
- 81 101.418 1629 1 0 12.8488 145.95 -175.889
- 81 119.005 1011 0 1 22.2617 154.153 -204.45
- 81 3.93317 1012 0 1 22.45 154.212 -204.828
- 81 404.82 1671 0 0 22.9594 154.361 -205.851
- 81 123.048 1532 0 0 -48.6631 126.575 -206.25
- 81 27.4595 654 0 1 -49.2145 126.783 -204.85
- 81 109.766 653 0 1 -49.25 126.799 -204.753
- 81 199.633 1672 0 0 22.919 154.55 -205.998
- 81 110.921 1611 2 0 3.13957 142.545 -145.85
- 81 114.557 1612 1 0 3.09937 142.702 -175.85
- 81 192.599 913 0 1 2.77149 142.719 -204.45
- 81 161.787 1612 0 0 2.76248 142.725 -205.85
- 81 39.2167 1235 2 1 67.2495 137.798 -144.45
- 81 170.533 914 0 1 2.85 142.839 -204.811
- 81 198.643 1611 0 0 3.78431 142.522 -205.85
- 81 327.622 1612 2 0 3.14033 142.55 -146.012
- 81 214.975 919 4 1 4.01468 141.939 -84.45
- 81 119.467 910 2 1 2.16821 142.313 -144.45
- 81 251.395 1610 2 0 2.01584 142.297 -145.85
- 81 136.862 892 1 1 -1.59422 142.182 -174.45
- 81 127.572 1610 1 0 -1.67845 142.178 -175.85
- 81 285.898 884 0 1 -3.10935 142.095 -204.45
- 81 125.598 1610 0 0 -3.29658 142.248 -205.85
- 81 17.5254 1569 0 0 20.5516 133.969 -206.25
- 81 132.308 1568 0 0 20.5721 133.95 -206.233
- 81 47.1393 917 1 1 3.61586 139.333 -174.45
- 81 47.4585 918 1 1 3.65001 139.33 -174.665
- 81 111.625 1595 1 0 3.83769 139.33 -175.85
- 81 102.788 944 0 1 8.91219 139.536 -204.45
- 81 117.116 1597 0 0 9.26324 139.631 -205.85
- 81 120.969 903 1 1 0.769595 141.839 -174.45
- 81 257.443 1609 1 0 0.487796 142.081 -175.85
- 81 126.799 876 0 1 -4.69696 146.573 -204.45
- 81 191.712 1633 0 0 -5.1172 146.873 -205.85
- 81 13.4292 1634 0 0 -5.22113 146.95 -206.2
- 81 286.095 929 2 1 5.98371 142.772 -144.45
- 81 55.7169 928 2 1 5.85 142.87 -144.676
- 81 163.263 1616 2 0 4.98768 143.373 -145.851
- 81 118.858 913 1 1 2.72161 138.782 -174.45
- 81 9.6939 1591 1 0 2.83549 138.355 -175.85
- 81 118.677 1590 1 0 2.83694 138.35 -175.866
- 81 97.1967 929 0 1 5.9461 130.594 -204.45
- 81 79.3225 930 0 1 6.05016 130.479 -204.685
- 81 228.459 1548 0 0 6.56798 129.935 -205.85
- 81 38.1757 1643 0 0 -17.5217 148.852 -206.25
- 81 71.0716 1644 0 0 -17.5872 148.95 -206.199
- 81 69.8495 1645 0 0 -17.7318 149.15 -206.119
- 81 44.279 1647 0 0 -17.987 149.55 -205.91
- 81 78.2398 804 0 1 -19.0882 150.005 -204.85
- 81 126.285 803 0 1 -19.25 150.092 -204.693
- 81 24.4952 1543 0 0 6.52507 128.83 -205.85
- 81 61.152 1542 0 0 6.55426 128.75 -205.913
- 81 56.6261 1541 0 0 6.62963 128.55 -206.046
- 81 68.3403 1540 0 0 6.70334 128.35 -206.169
- 81 213.252 1357 0 0 20.1003 91.6498 -206.25
- 81 243.9 930 2 1 6.05 142.731 -144.72
- 81 373.995 917 2 1 3.48196 141.861 -144.45
- 81 99.7746 1609 2 0 3.5501 141.995 -145.852
- 81 120.491 921 1 1 4.25989 144.327 -174.45
- 81 208.041 1620 1 0 4.35075 144.208 -175.85
- 81 135.56 936 0 1 7.37506 140.768 -204.45
- 81 0.880633 937 0 1 7.45013 140.628 -204.848
- 81 127.065 1600 0 0 7.68921 140.274 -205.85
- 81 187.382 1619 1 0 4.44783 144.15 -176.188
- 81 140.066 916 1 1 3.36108 142.119 -174.45
-Number of digits in this event = 71
+Number of tracker hits in this event = 48
+ 81 120.343 928 11 1 5.66515 44.1023 125.55
+ 81 101.332 1120 11 0 5.66435 44.1048 124.15
+ 81 125.189 927 10 1 5.64894 44.1505 95.55
+ 81 244.298 1120 10 0 5.64845 44.1523 94.15
+ 81 134.134 927 9 1 5.63537 44.1634 65.55
+ 81 113.731 1120 9 0 5.63705 44.1625 64.15
+ 81 127.675 928 8 1 5.66966 44.1556 35.55
+ 81 140.954 1120 8 0 5.67155 44.154 34.15
+ 81 133.666 928 7 1 5.71636 44.1047 5.55
+ 81 113.013 1120 7 0 5.7163 44.1051 4.15
+ 81 115.152 928 6 1 5.71503 44.1059 -24.45
+ 81 212.546 1120 6 0 5.71727 44.1053 -25.85
+ 81 99.2742 928 5 1 5.75679 44.0903 -54.45
+ 81 119.229 1120 5 0 5.76132 44.0917 -55.85
+ 81 138.21 928 4 1 5.8416 44.1196 -84.45
+ 81 149.237 1120 4 0 5.84134 44.1164 -85.85
+ 81 144.882 928 3 1 5.84724 44.0478 -114.45
+ 81 135.425 1119 3 0 5.84662 44.046 -115.85
+ 81 321.038 928 2 1 5.82227 44.0111 -144.45
+ 81 111.757 1119 2 0 5.81917 44.0079 -145.85
+ 81 130.192 929 1 1 5.90504 44.4516 -174.45
+ 81 135.704 1122 1 0 5.92561 44.4718 -175.85
+ 81 94.6943 931 0 1 6.31929 44.9396 -204.45
+ 81 109.873 1124 0 0 6.34424 45.0052 -205.85
+ 81 337.691 929 0 1 5.93063 44.7709 -204.45
+ 81 82.3256 1125 0 0 6.28153 45.1394 -205.85
+ 81 46.1779 1126 0 0 6.38845 45.25 -206.119
+ 81 99.9971 1204 0 0 29.1793 60.9337 -206.25
+ 81 223.417 1205 0 0 29.4374 61.05 -206.052
+ 81 112.928 1206 0 0 29.7634 61.25 -205.925
+ 81 103.187 1053 0 1 30.6949 61.6401 -204.85
+ 81 58.5889 1200 0 0 30.734 60.1836 -205.85
+ 81 160.862 1055 0 1 31.155 59.6009 -204.85
+ 81 108.409 1119 0 0 5.6611 43.964 -205.85
+ 81 58.8407 1118 0 0 5.60841 43.85 -206.078
+ 81 163.878 1078 0 0 -10.6153 35.757 -206.25
+ 81 1.03946 1079 0 0 -11.0424 35.85 -205.852
+ 81 20.9875 835 0 1 -12.9844 37.0258 -204.85
+ 81 60.9754 834 0 1 -13.0501 37.0798 -204.83
+ 81 50.6352 833 0 1 -13.2504 37.199 -204.792
+ 81 76.2535 832 0 1 -13.45 37.1964 -204.721
+ 81 53.3368 831 0 1 -13.65 37.1658 -204.611
+ 81 142.496 1050 6 0 14.8188 30.1525 -26.25
+ 81 2.92324 1049 6 0 14.8668 30.05 -25.8585
+ 81 571.458 972 6 1 14.5985 28.7987 -24.8499
+ 81 65.183 973 6 1 14.6505 27.8577 -24.6249
+ 81 36.1227 901 0 1 0.45 36.0563 -204.653
+ 81 40.6889 902 0 1 0.450048 36.0873 -204.62
+Number of digits in this event = 23
Using G4ParticleGun ...
-6.55273 LIN
+9.15764 LIN
e-
Event: 82
-Number of tracker hits in this event = 41
- 82 107.809 1324 9 1 85.0117 85.97 65.55
- 82 126.238 1329 9 0 85.0108 85.971 64.15
- 82 115.073 1324 8 1 84.9868 86.0029 35.55
- 82 206.913 1329 8 0 84.9857 86.003 34.15
- 82 274.39 1324 7 1 84.9661 86.0038 5.55
- 82 129.802 1329 7 0 84.9677 86.0053 4.15
- 82 366.333 1324 6 1 85.0167 86.0388 -24.45
- 82 135.563 1329 6 0 85.0185 86.0397 -25.85
- 82 99.8497 1325 5 1 85.0561 86.0461 -54.45
- 82 109.145 1329 5 0 85.0578 86.0474 -55.85
- 82 124.519 1325 4 1 85.0906 86.0712 -84.45
- 82 129.204 1330 4 0 85.0932 86.0685 -85.85
- 82 105.943 1325 3 1 85.1376 86.0084 -114.45
- 82 124.566 1329 3 0 85.1388 86.0062 -115.85
- 82 186.537 1325 2 1 85.1589 85.9574 -144.45
- 82 129.717 1329 2 0 85.1655 85.9489 -145.85
- 82 177.354 1326 1 1 85.3013 85.7482 -174.45
- 82 126.377 1328 1 0 85.313 85.7325 -175.85
- 82 108.562 1327 0 1 85.5569 85.3866 -204.45
- 82 164.679 1326 0 0 85.5669 85.3741 -205.85
- 82 82.6948 1325 6 1 85.05 86.2985 -24.48
- 82 88.6063 1326 6 1 85.25 86.2318 -24.5502
- 82 117.466 1327 6 1 85.45 86.2666 -24.6625
- 82 110.266 1328 6 0 85.6188 85.843 -25.85
- 82 100.452 1425 1 0 -145.563 105.262 -176.25
- 82 179.23 1424 1 0 -145.677 105.15 -176.19
- 82 15.2118 1323 7 1 84.85 86.0999 5.4269
- 82 63.3138 1332 7 0 85.1746 86.552 4.1491
- 82 89.3724 1333 7 0 85.1824 86.65 3.96586
- 82 37.6098 1043 7 0 134.221 28.772 3.75016
- 82 81.3776 1042 7 0 134.278 28.6492 3.80456
- 82 67.7473 1041 7 0 134.337 28.45 4.00865
- 82 73.0016 1040 7 0 134.324 28.2497 4.09503
- 82 70.8907 1039 7 0 134.376 28.05 4.08411
- 82 72.0614 1038 7 0 134.491 27.8499 4.04741
- 82 164.674 1037 7 0 134.53 27.65 4.07335
- 82 100.591 1036 7 0 134.38 27.45 3.87386
- 82 57.5501 1035 7 0 134.274 27.2498 3.9
- 82 97.7598 1034 7 0 134.207 27.05 3.92323
- 82 27.3517 1033 7 0 134.257 26.8497 4.09817
- 82 338.91 1570 7 1 134.223 26.3394 5.15
-Number of digits in this event = 19
+Number of tracker hits in this event = 44
+ 82 147.863 894 11 1 -1.12443 63.1078 125.55
+ 82 121.422 1215 11 0 -1.12463 63.1071 124.15
+ 82 218.783 894 10 1 -1.12778 63.0923 95.55
+ 82 115.251 1215 10 0 -1.12767 63.0922 94.15
+ 82 121.846 894 9 1 -1.12674 63.091 65.55
+ 82 137.113 1215 9 0 -1.12638 63.0904 64.15
+ 82 119.327 894 8 1 -1.11816 63.0733 35.55
+ 82 152.071 1215 8 0 -1.11684 63.0722 34.15
+ 82 128.448 894 7 1 -1.09119 63.0508 5.55
+ 82 105.064 1215 7 0 -1.08654 63.0536 4.15
+ 82 131.065 895 6 1 -0.995417 63.1086 -24.45
+ 82 117.858 1215 6 0 -0.991431 63.1082 -25.85
+ 82 214.712 895 5 1 -0.904752 63.11 -54.45
+ 82 217.682 1215 5 0 -0.898983 63.1112 -55.85
+ 82 108.885 896 4 1 -0.777802 63.1388 -84.45
+ 82 156.592 1215 4 0 -0.775063 63.1436 -85.85
+ 82 107.989 896 3 1 -0.713721 63.2499 -114.45
+ 82 111.237 1216 3 0 -0.709728 63.2538 -115.85
+ 82 215.631 897 2 1 -0.634863 63.3371 -144.45
+ 82 445.328 1216 2 0 -0.635261 63.3445 -145.85
+ 82 109.493 897 1 1 -0.648018 63.4896 -174.45
+ 82 140.082 1217 1 0 -0.648893 63.4961 -175.85
+ 82 121.925 896 0 1 -0.660574 63.6291 -204.45
+ 82 159.173 1217 0 0 -0.661481 63.6371 -205.85
+ 82 92.0537 896 2 1 -0.650127 63.1074 -144.645
+ 82 87.5238 895 2 1 -0.85 62.9829 -144.732
+ 82 28.1947 1209 2 0 -0.838201 61.901 -145.85
+ 82 269.961 1208 2 0 -0.794051 61.85 -145.883
+ 82 96.1328 1216 4 0 -0.728992 63.25 -86.1382
+ 82 99.4293 1217 4 0 -0.737085 63.45 -86.0206
+ 82 291.55 1218 4 0 -0.874522 63.65 -86.022
+ 82 134.637 896 5 1 -0.85 63.0931 -54.5989
+ 82 39.1869 1204 5 0 0.0815721 60.9524 -55.85
+ 82 93.1013 1203 5 0 0.166693 60.85 -55.9436
+ 82 216.885 895 1 1 -0.883734 63.0346 -174.45
+ 82 289.968 1214 1 0 -0.942268 62.9435 -175.85
+ 82 29.936 889 0 1 -2.24277 60.1643 -204.451
+ 82 85.958 888 0 1 -2.25 60.163 -204.55
+ 82 288.397 1200 0 0 -2.34669 60.1558 -205.85
+ 82 2.00061 1700 0 0 -66.9446 160.234 -206.25
+ 82 167.844 893 0 1 -1.42126 61.6688 -204.45
+ 82 131.477 1208 0 0 -1.34489 61.7141 -205.85
+ 82 44.9082 1317 7 0 111.035 83.5127 3.75
+ 82 55.4944 1187 9 0 -130.171 57.55 63.75
+Number of digits in this event = 27
Using G4ParticleGun ...
-1.69455 LIN
+1.26156 LIN
e-
Event: 83
-Number of tracker hits in this event = 27
- 83 99.1688 598 10 1 -60.4476 -66.9094 95.55
- 83 117.189 565 10 0 -60.4492 -66.9172 94.15
- 83 170.743 597 9 1 -60.475 -67.0803 65.55
- 83 155.337 564 9 0 -60.4731 -67.0892 64.15
- 83 154.462 598 8 1 -60.4316 -67.2625 35.55
- 83 116.534 563 8 0 -60.4311 -67.2712 34.15
- 83 111.195 598 7 1 -60.428 -67.4464 5.55
- 83 108.09 562 7 0 -60.4292 -67.4514 4.15
- 83 122.008 597 6 1 -60.4623 -67.5359 -24.45
- 83 141.792 562 6 0 -60.4635 -67.5415 -25.85
- 83 109.214 597 5 1 -60.4696 -67.6579 -54.45
- 83 114.75 561 5 0 -60.4712 -67.6609 -55.85
- 83 111.955 597 4 1 -60.506 -67.7342 -84.45
- 83 110.042 561 4 0 -60.5051 -67.735 -85.85
- 83 104.106 597 3 1 -60.5024 -67.7584 -114.45
- 83 191.57 561 3 0 -60.5094 -67.7561 -115.85
- 83 196.704 596 2 1 -60.6602 -67.7179 -144.45
- 83 127.224 561 2 0 -60.6649 -67.7209 -145.85
- 83 173.534 596 1 1 -60.7822 -67.7983 -174.45
- 83 148.133 561 1 0 -60.7789 -67.8128 -175.85
- 83 115.144 596 0 1 -60.6532 -68.1766 -204.45
- 83 108.858 559 0 0 -60.6433 -68.1897 -205.85
- 83 93.5657 597 2 1 -60.6498 -67.724 -144.571
- 83 6.11434 137 5 0 88.4154 -152.716 -55.85
- 83 20.4471 1347 5 1 89.6088 -152.954 -54.45
- 83 159.073 1348 5 1 89.65 -152.976 -54.4862
- 83 46.2786 1349 5 1 89.8501 -153.042 -54.4705
-Number of digits in this event = 12
+Number of tracker hits in this event = 47
+ 83 117.85 1462 8 1 112.6 -78.8243 35.55
+ 83 142.466 506 8 0 112.598 -78.8255 34.15
+ 83 106.812 1462 7 1 112.583 -78.8866 5.55
+ 83 177.479 505 7 0 112.584 -78.8975 4.15
+ 83 364.632 1462 6 1 112.598 -79.1349 -24.45
+ 83 121.517 504 6 0 112.599 -79.152 -25.85
+ 83 147.374 1462 5 1 112.619 -79.5236 -54.45
+ 83 114.162 502 5 0 112.622 -79.5369 -55.85
+ 83 140.979 1462 4 1 112.677 -79.8122 -84.45
+ 83 127.843 501 4 0 112.676 -79.8257 -85.85
+ 83 149.513 1462 3 1 112.657 -80.1283 -114.45
+ 83 117.201 499 3 0 112.653 -80.1351 -115.85
+ 83 335.921 1461 2 1 112.544 -80.29 -144.45
+ 83 311.285 498 2 0 112.53 -80.296 -145.85
+ 83 119.924 1460 1 1 112.258 -80.4123 -174.45
+ 83 125.119 498 1 0 112.249 -80.4091 -175.85
+ 83 116.769 1459 0 1 112.022 -80.3446 -204.45
+ 83 154.906 498 0 0 112.01 -80.3432 -205.85
+ 83 182.439 1192 8 1 58.65 87.0321 35.2614
+ 83 69.4885 1462 2 1 112.55 -80.2964 -144.702
+ 83 124.696 1463 1 1 112.934 -81.3307 -174.45
+ 83 176.402 493 1 0 112.949 -81.3144 -175.85
+ 83 253.901 1466 0 1 113.53 -80.6638 -204.45
+ 83 124.248 496 0 0 113.463 -80.768 -205.85
+ 83 251.468 499 2 0 112.594 -80.2499 -146.016
+ 83 84.6867 494 2 0 111.913 -81.1099 -145.85
+ 83 101.738 493 2 0 111.8 -81.25 -146.065
+ 83 85.7062 1384 1 1 97.0451 -99.0368 -174.45
+ 83 44.3648 1383 1 1 96.95 -99.1374 -174.708
+ 83 17.4039 403 1 0 96.6194 -99.5379 -175.85
+ 83 128.408 402 1 0 96.6109 -99.55 -175.888
+ 83 132.226 1351 0 1 90.3855 -104.275 -204.45
+ 83 103.215 383 0 0 91.0487 -103.499 -205.85
+ 83 4.69291 384 0 0 91.2382 -103.35 -206.23
+ 83 144.116 380 0 0 79.6858 -104.102 -206.25
+ 83 79.4564 379 0 0 79.4862 -104.15 -206.078
+ 83 8.01082 1287 0 1 77.4746 -103.914 -204.85
+ 83 90.5908 1286 0 1 77.45 -103.91 -204.834
+ 83 114.142 1285 0 1 77.25 -103.857 -204.689
+ 83 4.29631 1284 0 1 77.05 -103.771 -204.466
+ 83 1.96088 444 1 0 64.6813 -91.1543 -176.25
+ 83 149.487 445 1 0 64.6774 -91.15 -176.241
+ 83 34.0127 446 1 0 64.3814 -90.95 -175.947
+ 83 90.8284 1215 1 1 63.1598 -88.8996 -174.85
+ 83 152.436 1214 1 1 63.0498 -88.7042 -174.672
+ 83 297.538 209 0 0 83.7551 -138.15 -205.974
+ 83 149.727 505 8 0 112.623 -78.85 34.0762
+Number of digits in this event = 28
Using G4ParticleGun ...
-8.00192 LIN
+4.86254 LIN
e-
Event: 84
-Number of tracker hits in this event = 32
- 84 247.373 365 10 1 -106.975 38.7129 95.55
- 84 116.684 1093 10 0 -106.976 38.7126 94.15
- 84 127.66 365 9 1 -107.023 38.5794 65.55
- 84 117.194 1092 9 0 -106.943 38.5802 64.15
- 84 132.863 373 8 1 -105.422 38.4783 35.55
- 84 201.103 1092 8 0 -105.35 38.5289 34.15
- 84 171.353 381 7 1 -103.813 39.5022 5.55
- 84 115.486 1097 7 0 -103.697 39.5915 4.15
- 84 127.604 393 6 1 -101.433 41.5606 -24.45
- 84 181.593 1107 6 0 -101.31 41.6306 -25.85
- 84 0.803665 1108 6 0 -101.276 41.65 -26.2436
- 84 119.181 406 5 1 -98.8092 43.1055 -54.45
- 84 205.714 1115 5 0 -98.7101 43.1983 -55.85
- 84 118.737 416 4 1 -96.7625 45.1635 -84.45
- 84 55.5956 417 4 1 -96.75 45.1769 -84.6372
- 84 225.754 1126 4 0 -96.6737 45.268 -85.85
- 84 149.908 426 3 1 -94.9081 47.2582 -114.45
- 84 82.1106 1136 3 0 -94.751 47.4215 -115.85
- 84 41.8373 1137 3 0 -94.7237 47.45 -116.092
- 84 119.993 443 2 1 -91.437 50.6085 -144.45
- 84 111.628 1153 2 0 -91.312 50.7658 -145.85
- 84 265.565 456 1 1 -88.7696 53.9194 -174.45
- 84 7.02377 1169 1 0 -88.6409 54.0484 -175.85
- 84 107.835 1170 1 0 -88.6393 54.05 -175.868
- 84 127.286 470 0 1 -85.9909 56.7007 -204.45
- 84 126.234 1184 0 0 -85.8784 56.8627 -205.85
- 84 89.8324 543 11 1 -71.3269 -71.4652 125.55
- 84 174.71 457 1 1 -88.6499 54.0203 -174.788
- 84 89.5402 1174 1 0 -89.6068 54.8613 -175.85
- 84 89.6083 458 1 1 -88.45 49.5135 -174.609
- 84 279.495 459 1 1 -88.25 49.6222 -174.683
- 84 79.5683 644 0 0 -178.663 -51.05 -206.242
-Number of digits in this event = 16
+Number of tracker hits in this event = 53
+ 84 128.994 894 10 1 -1.11387 -96.9011 95.55
+ 84 128.238 416 10 0 -1.1124 -96.9016 94.15
+ 84 128.936 894 9 1 -1.07874 -96.9168 65.55
+ 84 134.937 416 9 0 -1.07748 -96.918 64.15
+ 84 102.366 894 8 1 -1.05431 -96.9406 35.55
+ 84 156.871 416 8 0 -1.05382 -96.943 34.15
+ 84 503.048 895 7 1 -1.03326 -96.9932 5.55
+ 84 259.942 415 7 0 -1.03273 -96.9958 4.15
+ 84 184.011 895 6 1 -1.0235 -97.0494 -24.45
+ 84 143.888 415 6 0 -1.02143 -97.0507 -25.85
+ 84 139.244 895 5 1 -0.977879 -97.0788 -54.45
+ 84 149.517 415 5 0 -0.977634 -97.0814 -55.85
+ 84 120.486 895 4 1 -0.979803 -97.1374 -84.45
+ 84 139.764 415 4 0 -0.980305 -97.1408 -85.85
+ 84 148.363 895 3 1 -0.983407 -97.2019 -114.45
+ 84 87.0998 414 3 0 -0.984296 -97.2052 -115.85
+ 84 108.421 895 2 1 -1.00193 -97.2759 -144.45
+ 84 105.311 414 2 0 -1.00358 -97.2807 -145.85
+ 84 182.34 895 1 1 -1.03858 -97.3728 -174.45
+ 84 144.051 413 1 0 -1.03947 -97.3791 -175.85
+ 84 134.596 894 0 1 -1.05883 -97.5002 -204.45
+ 84 148.572 413 0 0 -1.05795 -97.5072 -205.85
+ 84 20.4204 949 6 1 9.8899 9.15534 -24.85
+ 84 221.599 1241 8 1 68.25 39.4276 35.1556
+ 84 48.189 948 6 1 9.85 9.27025 -24.5394
+ 84 236.897 929 1 1 5.92767 21.0063 -174.85
+ 84 145.35 414 5 0 -0.969549 -97.15 -56.1111
+ 84 229.066 894 7 1 -1.05 -96.6273 5.46313
+ 84 97.3318 416 7 0 -0.785239 -96.8522 4.14983
+ 84 134.276 921 6 1 4.29562 -98.2418 -24.45
+ 84 35.6666 922 6 1 4.45 -98.2347 -24.7229
+ 84 168.602 409 6 0 5.05685 -98.2681 -25.8502
+ 84 72.0974 1004 5 1 21.0008 -98.329 -54.45
+ 84 44.6141 1005 5 1 21.05 -98.3795 -54.6846
+ 84 141.762 407 5 0 21.2363 -98.5677 -55.85
+ 84 150.405 1015 4 1 23.0706 -106.52 -84.4502
+ 84 37.6508 363 4 0 23.4178 -107.465 -85.8501
+ 84 130.195 362 4 0 23.4483 -107.55 -85.9669
+ 84 1.1092 361 4 0 23.5199 -107.75 -86.2452
+ 84 61.6782 1045 3 1 29.0961 -128.44 -114.45
+ 84 120.949 1044 3 1 29.05 -128.562 -114.578
+ 84 46.5715 252 3 0 28.4947 -129.696 -115.85
+ 84 94.3932 251 3 0 28.4679 -129.75 -115.912
+ 84 122.264 250 3 0 28.3771 -129.95 -116.142
+ 84 158.977 977 2 1 15.5389 -158.844 -144.45
+ 84 105.982 101 2 0 15.5993 -159.771 -145.85
+ 84 30.6013 100 2 0 15.6134 -159.95 -146.139
+ 84 127.383 967 1 1 13.4613 -177.608 -174.45
+ 84 120.19 13 1 0 13.8274 -177.543 -175.851
+ 84 95.4472 1007 0 1 21.484 -177.605 -204.45
+ 84 30.2825 1008 0 1 21.65 -177.671 -204.763
+ 84 114.896 11 0 0 22.0376 -177.881 -205.85
+ 84 71.1875 1058 1 1 31.7195 -120.375 -174.45
+Number of digits in this event = 35
Using G4ParticleGun ...
-9.89031 LIN
+3.69383 LIN
e-
Event: 85
-Number of tracker hits in this event = 56
- 85 120.044 1581 7 1 136.379 60.6061 5.55
- 85 117.491 1202 7 0 136.377 60.6069 4.15
- 85 189.926 1580 6 1 136.35 60.6255 -24.45
- 85 115.553 1202 6 0 136.349 60.6264 -25.85
- 85 114.758 1580 5 1 136.337 60.647 -54.45
- 85 125.073 1202 5 0 136.337 60.6482 -55.85
- 85 129.682 1580 4 1 136.334 60.6735 -84.45
- 85 124.808 1203 4 0 136.333 60.676 -85.85
- 85 99.2201 1580 3 1 136.311 60.7375 -114.45
- 85 154.223 1203 3 0 136.311 60.7387 -115.85
- 85 559.63 1580 2 1 136.3 60.7632 -144.45
- 85 795.252 1203 2 0 136.298 60.7643 -145.85
- 85 181.844 1580 1 1 136.261 60.7883 -174.45
- 85 115.231 1203 1 0 136.259 60.7891 -175.85
- 85 123.25 1580 0 1 136.222 60.8062 -204.45
- 85 102.216 1203 0 0 136.22 60.8073 -205.85
- 85 41.2517 1727 11 0 -41.3984 165.658 123.75
- 85 436.412 1235 0 0 134.675 67.2165 -206.25
- 85 66.7873 1581 2 1 136.35 60.7601 -144.615
- 85 160.726 1628 1 1 145.802 58.6318 -174.45
- 85 107.838 1191 1 0 146.131 58.3997 -175.85
- 85 67.566 1668 0 1 153.84 54.8196 -204.45
- 85 146.813 1669 0 1 153.95 54.6964 -204.603
- 85 77.1462 1167 0 0 154.959 53.6198 -205.85
- 85 119.514 1166 0 0 155.12 53.45 -206.046
- 85 233.589 1627 1 1 145.75 58.6763 -174.536
- 85 230.832 1579 1 1 136.107 61.2371 -174.45
- 85 147.204 1206 1 0 136.096 61.283 -175.85
- 85 259.031 1578 0 1 135.772 62.2396 -204.45
- 85 306.424 1211 0 0 135.745 62.2998 -205.85
- 85 105.221 1212 0 0 135.784 62.45 -206.153
- 85 26.642 1579 2 1 136.15 60.7196 -144.791
- 85 97.9646 1231 2 0 160.364 66.3767 -146.25
- 85 211.514 1230 2 0 160.549 66.2496 -146.06
- 85 229.015 1700 2 1 160.16 69.855 -144.85
- 85 44.1242 1699 2 1 160.15 69.8816 -144.825
- 85 98.2102 1201 1 0 136.121 60.2712 -175.85
- 85 106.211 1197 0 0 135.839 59.564 -205.85
- 85 108.227 330 7 0 -164.899 -114.069 3.75
- 85 29.8956 331 7 0 -164.826 -113.95 4.04868
- 85 141.966 80 7 1 -164.069 -113.402 5.15
- 85 130.865 64 7 0 44.306 -167.278 3.75
- 85 98.2223 1579 7 1 135.991 60.2182 5.55
- 85 332.185 1578 7 1 135.95 60.293 5.52228
- 85 632.527 1206 7 0 135.719 61.3097 4.15
- 85 175.735 1207 7 0 135.672 61.45 4.01788
- 85 21.5955 1580 7 1 136.203 60.687 5.55
- 85 26.2553 1577 7 1 135.75 61.0506 5.2295
- 85 142.74 1208 7 0 134.326 61.6501 4.1264
- 85 19.1284 1403 6 1 100.912 81.0755 -24.4506
- 85 60.9558 1404 6 1 100.95 81.0745 -24.4939
- 85 64.6276 1405 6 1 101.15 81.0466 -24.7049
- 85 121.206 1304 6 0 102.526 80.881 -25.8501
- 85 136.502 1526 5 1 125.36 88.0018 -54.4501
- 85 118.162 1338 5 0 125.896 87.8238 -55.85
- 85 1.97596 1339 5 0 126.043 87.85 -56.2426
-Number of digits in this event = 31
-Using G4ParticleGun ...
-4.10489 LIN
+Number of tracker hits in this event = 125
+ 85 161.109 846 11 1 -10.7567 -20.7398 125.55
+ 85 123.492 796 11 0 -10.7578 -20.7353 124.15
+ 85 108.422 846 10 1 -10.7813 -20.6436 95.55
+ 85 131.856 797 10 0 -10.7846 -20.6406 94.15
+ 85 99.2271 845 9 1 -10.8645 -20.5861 65.55
+ 85 124.585 797 9 0 -10.87 -20.5811 64.15
+ 85 115.924 845 8 1 -10.995 -20.466 35.55
+ 85 137.757 797 8 0 -11.0017 -20.4653 34.15
+ 85 111.693 844 7 1 -11.1581 -20.458 5.55
+ 85 132.925 797 7 0 -11.1685 -20.4543 4.15
+ 85 110.953 843 6 1 -11.3825 -20.3783 -24.45
+ 85 96.1351 798 6 0 -11.3915 -20.3695 -25.85
+ 85 130.465 842 5 1 -11.5768 -20.1954 -54.45
+ 85 125.117 799 5 0 -11.5797 -20.1863 -55.85
+ 85 100.418 842 4 1 -11.6356 -19.9956 -84.45
+ 85 131.624 800 4 0 -11.6439 -19.987 -85.85
+ 85 161.057 841 3 1 -11.8186 -19.7759 -114.45
+ 85 146.692 801 3 0 -11.8309 -19.7714 -115.85
+ 85 332.198 839 2 1 -12.0822 -19.6864 -144.45
+ 85 337.073 801 2 0 -12.052 -19.6835 -145.85
+ 85 19.681 842 1 1 -11.451 -19.6543 -174.45
+ 85 173.263 843 1 1 -11.45 -19.6539 -174.507
+ 85 112.437 802 1 0 -11.428 -19.6453 -175.85
+ 85 101.886 845 0 1 -10.9631 -19.4668 -204.45
+ 85 148.239 802 0 0 -10.9447 -19.4579 -205.85
+ 85 103.874 734 1 0 -97.7659 -33.1305 -176.25
+ 85 65.6702 735 1 0 -97.753 -33.05 -176.082
+ 85 336.69 413 1 1 -97.4873 -32.3157 -174.85
+ 85 271.262 838 2 1 -12.25 -19.5867 -144.549
+ 85 86.3548 837 2 1 -12.4503 -19.784 -144.58
+ 85 182.51 799 4 0 -11.8588 -20.2498 -86.0161
+ 85 187.862 838 3 1 -12.2681 -20.4213 -114.45
+ 85 240.953 797 3 0 -12.2744 -20.4852 -115.85
+ 85 153.464 789 2 0 -12.1468 -22.0516 -145.85
+ 85 159.115 834 1 1 -13.1737 -24.9477 -174.45
+ 85 159.263 774 1 0 -13.2758 -25.0837 -175.85
+ 85 115.553 822 0 1 -15.5311 -27.612 -204.45
+ 85 145.424 761 0 0 -15.5956 -27.749 -205.85
+ 85 288.783 730 0 0 -19.4922 -33.9251 -206.25
+ 85 77.8621 806 0 1 -18.7978 -33.9631 -204.85
+ 85 117.724 805 0 1 -18.85 -33.9272 -204.765
+ 85 48.8701 839 3 1 -12.25 -20.4036 -114.69
+ 85 144.649 798 3 0 -12.1462 -20.4421 -115.85
+ 85 149.142 852 2 1 -9.56162 -20.5095 -144.45
+ 85 319.824 797 2 0 -9.36775 -20.5877 -145.85
+ 85 317.174 869 1 1 -6.23141 -21.2364 -174.45
+ 85 158.66 795 1 0 -6.34264 -20.972 -175.85
+ 85 101.015 854 0 1 -9.15919 -16.3511 -204.45
+ 85 101.83 853 0 1 -9.25 -16.4555 -204.605
+ 85 234.045 813 0 0 -10.0771 -17.3928 -205.85
+ 85 108.025 812 0 0 -10.1277 -17.4506 -205.926
+ 85 20.8033 811 0 0 -10.2833 -17.65 -206.181
+ 85 163.467 868 1 1 -6.25551 -21.2863 -174.45
+ 85 19.0214 867 1 1 -6.45037 -21.3371 -174.775
+ 85 140.288 792 1 0 -6.93222 -21.4516 -175.851
+ 85 150.403 793 1 0 -7.08865 -21.45 -176.137
+ 85 128.367 844 6 1 -11.2464 -20.3665 -24.45
+ 85 43.1764 845 6 1 -11.05 -20.6614 -24.7749
+ 85 68.0275 788 6 0 -9.57865 -22.2596 -25.85
+ 85 78.6873 787 6 0 -9.41162 -22.4509 -25.9179
+ 85 119.308 786 6 0 -9.17596 -22.6501 -25.8933
+ 85 131.686 785 6 0 -8.70737 -22.85 -25.951
+ 85 78.1783 784 6 0 -8.31843 -23.05 -26.1069
+ 85 38.7224 560 6 0 45.7541 -67.9376 -26.25
+ 85 124.382 559 6 0 45.8091 -68.05 -26.1385
+ 85 1.08439 558 6 0 45.907 -68.25 -25.855
+ 85 124.29 1129 6 1 46.0167 -68.6604 -24.85
+ 85 152.207 1128 6 1 45.85 -68.7927 -24.465
+ 85 48.2815 555 6 0 45.2855 -68.967 -25.85
+ 85 113.655 554 6 0 45.1484 -69.05 -25.9862
+ 85 320.981 846 1 1 -10.7633 -20.2371 -174.45
+ 85 214.875 847 1 1 -10.65 -20.3121 -174.695
+ 85 489.109 796 1 0 -10.1618 -20.6891 -175.85
+ 85 122.677 908 0 1 1.76828 -28.0036 -204.45
+ 85 113.52 756 0 0 1.95562 -28.705 -205.85
+ 85 174.031 755 0 0 1.98463 -28.85 -206.144
+ 85 54.1929 845 1 1 -10.8929 -20.1609 -174.45
+ 85 65.8226 844 1 1 -11.05 -20.1512 -174.58
+ 85 140.904 799 1 0 -13.156 -20.0827 -175.85
+ 85 222.114 800 1 0 -13.4974 -20.05 -176.032
+ 85 29.9378 436 0 1 -92.8594 -29.0393 -204.45
+ 85 56.9439 435 0 1 -92.95 -29.0545 -204.479
+ 85 57.3446 434 0 1 -93.1503 -29.1087 -204.568
+ 85 113.049 433 0 1 -93.35 -29.1616 -204.678
+ 85 68.2992 432 0 1 -93.55 -29.2245 -204.755
+ 85 198.495 750 0 0 -95.6923 -29.8953 -205.85
+ 85 72.8912 787 0 0 -121.99 -22.5781 -206.25
+ 85 66.629 788 0 0 -122.068 -22.45 -206.048
+ 85 133.78 288 0 1 -122.475 -21.8161 -204.85
+ 85 125.025 714 0 0 -130.867 -37.2228 -206.25
+ 85 110.002 713 0 0 -130.883 -37.25 -206.221
+ 85 38.3197 437 0 1 -92.6366 -28.8705 -204.45
+ 85 77.1999 438 0 1 -92.5486 -28.9017 -204.557
+ 85 10.8494 439 0 1 -92.3497 -28.9823 -204.783
+ 85 55.6722 828 1 1 -14.3827 -20.3725 -174.85
+ 85 144.184 827 1 1 -14.45 -20.3389 -174.847
+ 85 20.1403 845 11 1 -10.8501 -20.7689 125.189
+ 85 11.4888 799 11 0 -11.7175 -20.0705 124.15
+ 85 322.612 800 11 0 -11.7343 -20.05 124.125
+ 85 299.974 847 4 1 -10.4677 -20.7897 -84.45
+ 85 261.394 796 4 0 -10.4643 -20.809 -85.85
+ 85 70.9026 848 3 1 -10.4433 -21.293 -114.45
+ 85 158.594 847 3 1 -10.45 -21.2827 -114.704
+ 85 158.171 794 3 0 -10.4852 -21.2289 -115.85
+ 85 129.157 841 2 1 -11.6661 -19.9219 -144.45
+ 85 61.5527 800 2 0 -11.7166 -19.8614 -145.85
+ 85 104.475 837 1 1 -12.4603 -18.7539 -174.45
+ 85 116.604 806 1 0 -12.4984 -18.6939 -175.85
+ 85 107.761 833 0 1 -13.3328 -17.4026 -204.45
+ 85 116.091 847 2 1 -10.6135 -20.6093 -144.45
+ 85 226.506 847 0 1 -10.4858 -21.8199 -204.45
+ 85 101.76 790 0 0 -10.479 -21.8605 -205.85
+ 85 11.0623 251 3 0 6.66568 -129.929 -116.25
+ 85 24.5169 250 3 0 6.66915 -129.95 -116.244
+ 85 46.5276 171 3 0 -13.7083 -145.84 -116.25
+ 85 110.252 847 6 1 -10.6231 -20.6373 -24.4503
+ 85 125.841 796 6 0 -10.2288 -20.7755 -25.85
+ 85 248.753 846 2 1 -10.7116 -20.7235 -144.45
+ 85 251.129 796 2 0 -10.7114 -20.7144 -145.85
+ 85 654.182 797 1 0 -10.6831 -20.524 -175.85
+ 85 177.445 846 0 1 -10.667 -21.0733 -204.45
+ 85 114.046 794 0 0 -10.6898 -21.078 -205.85
+ 85 168.513 636 1 0 -72.2067 -52.8229 -176.25
+ 85 140.895 798 1 0 -10.7996 -20.45 -176.005
+ 85 134.637 799 0 0 -10.643 -20.0963 -205.85
+Number of digits in this event = 67
+Using G4ParticleGun ...
+2.94542 LIN
e-
Event: 86
-Number of tracker hits in this event = 76
- 86 136.475 753 9 1 -29.412 -115.475 65.55
- 86 126.516 323 9 0 -29.4102 -115.475 64.15
- 86 194.111 753 8 1 -29.3772 -115.475 35.55
- 86 125.125 323 8 0 -29.3796 -115.477 34.15
- 86 133.391 753 7 1 -29.4206 -115.51 5.55
- 86 122.503 323 7 0 -29.4218 -115.511 4.15
- 86 151.747 753 6 1 -29.4481 -115.537 -24.45
- 86 113.269 323 6 0 -29.447 -115.538 -25.85
- 86 520.835 753 5 1 -29.4259 -115.555 -54.45
- 86 449.639 323 5 0 -29.4607 -115.534 -55.85
- 86 159.842 749 4 1 -30.2273 -115.054 -84.45
- 86 479.788 325 4 0 -30.2516 -115.026 -85.85
- 86 151.528 746 3 1 -30.7152 -114.408 -114.45
- 86 136.785 328 3 0 -30.7352 -114.376 -115.85
- 86 181.757 744 2 1 -31.0893 -113.722 -144.45
- 86 141.681 332 2 0 -31.0985 -113.655 -145.85
- 86 106.95 743 1 1 -31.3998 -112.16 -174.45
- 86 119.181 340 1 0 -31.3699 -112.103 -175.85
- 86 107.764 745 0 1 -30.8673 -110.91 -204.45
- 86 123.534 346 0 0 -30.8497 -110.84 -205.85
- 86 30.9789 406 0 0 -53.4688 -98.95 -206.179
- 86 30.5912 752 8 1 -29.4502 -115.42 35.5187
- 86 389.813 753 4 1 -29.2754 -115.485 -84.45
- 86 328.275 323 4 0 -29.2764 -115.484 -85.85
- 86 141.005 753 3 1 -29.3007 -115.451 -114.45
- 86 107.962 323 3 0 -29.3026 -115.452 -115.85
- 86 128.519 753 2 1 -29.338 -115.464 -144.45
- 86 123.525 323 2 0 -29.3366 -115.462 -145.85
- 86 158.512 753 1 1 -29.3021 -115.443 -174.45
- 86 154.169 323 1 0 -29.3006 -115.437 -175.85
- 86 174.404 753 0 1 -29.3698 -115.314 -204.45
- 86 177.734 324 0 0 -29.3753 -115.302 -205.85
- 86 95.4655 646 1 0 -51.3606 -50.85 -175.971
- 86 27.7371 718 1 1 -36.3314 -2.11063 -174.85
- 86 56.9327 754 0 1 -29.2497 -115.43 -204.676
- 86 541.832 755 0 1 -29.05 -115.391 -204.696
- 86 193.714 756 0 1 -28.8496 -114.865 -204.727
- 86 120.808 762 4 1 -27.5703 -115.086 -84.4501
- 86 128.953 763 3 1 -27.3348 -115.553 -114.45
- 86 120.145 322 3 0 -27.29 -115.56 -115.85
- 86 93.5697 768 2 1 -26.2977 -116.177 -144.451
- 86 113.062 319 2 0 -26.215 -116.218 -145.852
- 86 113.49 778 1 1 -24.4362 -117.309 -174.45
- 86 51.9403 314 1 0 -24.3378 -117.154 -175.85
- 86 150.312 315 1 0 -24.3349 -117.15 -175.878
- 86 111.833 797 0 1 -20.6179 -112.338 -204.45
- 86 107.233 340 0 0 -20.4059 -112.096 -205.85
- 86 165.707 321 4 0 -29.2148 -115.828 -85.85
- 86 51.8548 750 3 1 -30.0024 -121.115 -114.45
- 86 114.305 749 3 1 -30.05 -121.254 -114.598
- 86 20.8734 288 3 0 -30.3878 -122.495 -115.85
- 86 63.8199 287 3 0 -30.4022 -122.55 -115.904
- 86 66.6381 286 3 0 -30.4514 -122.75 -116.079
- 86 160.487 714 2 1 -37.1654 -156.859 -144.452
- 86 9.4376 713 2 1 -37.25 -157.035 -144.81
- 86 74.5019 113 2 0 -37.4081 -157.466 -145.85
- 86 69.1618 112 2 0 -37.4354 -157.55 -146.046
- 86 234.701 686 1 1 -42.8326 -168.466 -174.45
- 86 80.989 56 1 0 -42.7726 -168.909 -175.85
- 86 83.4262 55 1 0 -42.7654 -168.95 -175.992
- 86 137.3 722 0 1 -35.4731 -178.37 -204.45
- 86 115.861 11 0 0 -35.5446 -177.923 -205.85
- 86 40.716 12 0 0 -35.5674 -177.75 -206.112
- 86 118.347 754 3 1 -29.194 -114.969 -114.45
- 86 237.215 325 3 0 -29.2218 -114.967 -115.85
- 86 147.425 752 2 1 -29.4849 -114.423 -144.45
- 86 183.917 328 2 0 -29.5037 -114.427 -145.85
- 86 131.377 751 1 1 -29.7642 -114.768 -174.45
- 86 222.392 327 1 0 -29.8682 -114.682 -175.85
- 86 111.3 740 0 1 -31.9726 -112.512 -204.45
- 86 62.0632 338 0 0 -32.103 -112.375 -205.851
- 86 57.2583 339 0 0 -32.1271 -112.35 -206.103
- 86 114.281 674 4 1 -45.1248 113.94 -84.85
- 86 72.9308 331 2 0 -29.341 -113.829 -145.85
- 86 13.3323 754 2 1 -29.25 -114.352 -144.622
- 86 34.4822 324 3 0 -29.4017 -115.15 -116.172
-Number of digits in this event = 43
+Number of tracker hits in this event = 106
+ 86 138.657 586 11 1 -62.8059 23.3465 125.55
+ 86 115.236 1016 11 0 -62.8062 23.3451 124.15
+ 86 107.728 586 10 1 -62.8199 23.315 95.55
+ 86 120.64 1016 10 0 -62.8174 23.313 94.15
+ 86 138.837 586 9 1 -62.7672 23.275 65.55
+ 86 109.133 1016 9 0 -62.7675 23.2723 64.15
+ 86 130.802 586 8 1 -62.7748 23.2182 35.55
+ 86 106.365 1015 8 0 -62.7761 23.2156 34.15
+ 86 862.702 586 7 1 -62.8144 23.1699 5.55
+ 86 304.303 1015 7 0 -62.8168 23.1701 4.15
+ 86 115.006 585 6 1 -62.8573 23.1662 -24.45
+ 86 253.569 1015 6 0 -62.8587 23.1652 -25.85
+ 86 116.684 585 5 1 -62.882 23.1464 -54.45
+ 86 129.458 1015 5 0 -62.8817 23.1473 -55.85
+ 86 118.983 585 4 1 -62.9134 23.1559 -84.45
+ 86 150.527 1015 4 0 -62.9169 23.157 -85.85
+ 86 98.4311 585 3 1 -63.0019 23.1816 -114.45
+ 86 128.476 1015 3 0 -63.0085 23.1828 -115.85
+ 86 139.83 584 2 1 -63.133 23.2077 -144.45
+ 86 125.544 1015 2 0 -63.1371 23.2055 -145.85
+ 86 176.416 584 1 1 -63.2105 23.1527 -174.45
+ 86 119.664 1015 1 0 -63.2137 23.1521 -175.85
+ 86 130.421 583 0 1 -63.2807 23.1252 -204.45
+ 86 250.309 1015 0 0 -63.2832 23.1229 -205.85
+ 86 132.091 551 7 1 -69.7206 74.1815 5.15
+ 86 27.4788 57 4 1 -168.597 -121.658 -84.85
+ 86 259.87 944 1 0 -57.1233 8.86593 -176.25
+ 86 247.003 17 0 1 -176.654 52.0539 -204.85
+ 86 26.6632 18 0 1 -176.55 51.9867 -204.713
+ 86 196.564 585 7 1 -62.8525 23.3486 5.54983
+ 86 79.464 1025 7 0 -63.0859 25.0521 4.15
+ 86 131.833 1026 7 0 -63.111 25.25 3.9822
+ 86 34.893 1027 7 0 -63.1218 25.45 3.82713
+ 86 69.8723 1270 7 0 -71.3167 74.1586 3.75017
+ 86 71.2837 1271 7 0 -71.3858 74.25 3.94007
+ 86 86.1259 538 7 1 -72.358 74.706 5.15057
+ 86 100.682 537 7 1 -72.45 74.7529 5.25593
+ 86 14.7041 536 7 1 -72.6504 74.9045 5.5078
+ 86 64.4093 535 7 1 -72.9002 74.983 5.54976
+ 86 105.83 534 7 1 -73.0503 74.9991 5.357
+ 86 117.184 1275 7 0 -73.7717 75.1279 4.15
+ 86 69.4525 1471 7 0 -95.8507 114.384 3.75004
+ 86 125.717 1472 7 0 -95.8225 114.55 3.87201
+ 86 413.883 1473 7 0 -95.7723 114.75 3.96048
+ 86 88.4918 1014 7 0 -62.7557 23.05 4.10097
+ 86 111.95 593 6 1 -61.3276 21.9296 -24.4501
+ 86 148.786 1009 6 0 -61.1479 21.8974 -25.85
+ 86 136.997 614 5 1 -57.1323 20.5822 -54.45
+ 86 114.971 1002 5 0 -56.9733 20.6072 -55.85
+ 86 140.094 631 4 1 -53.6819 20.7242 -84.4502
+ 86 26.0215 632 4 1 -53.65 20.7363 -84.7738
+ 86 290.519 1003 4 0 -53.5494 20.7619 -85.8507
+ 86 167.608 646 3 1 -50.8358 21.9449 -114.451
+ 86 297.746 1009 3 0 -50.7369 21.9942 -115.85
+ 86 102.969 659 2 1 -48.1824 23.4218 -144.45
+ 86 100.5 1017 2 0 -48.036 23.4819 -145.85
+ 86 103.274 676 1 1 -44.6922 24.5291 -174.45
+ 86 191.525 1024 1 0 -44.7032 24.8762 -175.85
+ 86 161.703 676 0 1 -44.6527 32.051 -204.45
+ 86 281.099 1061 0 0 -44.6465 32.2711 -205.85
+ 86 8.34406 1055 0 0 -47.7007 31.1784 -205.85
+ 86 27.5242 653 0 1 -49.4171 30.7629 -204.85
+ 86 137.522 652 0 1 -49.45 30.7584 -204.809
+ 86 122.108 587 6 1 -62.6262 23.2748 -24.45
+ 86 119.669 590 5 1 -61.9552 22.0495 -54.45
+ 86 189.544 1009 5 0 -61.8709 21.9992 -55.85
+ 86 116.027 598 4 1 -60.3235 20.9073 -84.45
+ 86 210.967 611 3 1 -57.7546 19.4464 -114.45
+ 86 189.913 996 3 0 -57.6018 19.3876 -115.85
+ 86 127.115 627 2 1 -54.5365 18.3165 -144.45
+ 86 108.702 991 2 0 -54.3838 18.2682 -145.85
+ 86 291.795 643 1 1 -51.3148 17.1554 -174.45
+ 86 138.631 985 1 0 -51.1308 17.1165 -175.85
+ 86 123.631 662 0 1 -47.5453 16.3252 -204.45
+ 86 11.2433 981 0 0 -47.3879 16.2523 -205.85
+ 86 113.487 980 0 0 -47.3828 16.25 -205.895
+ 86 20.9782 644 1 1 -51.2252 16.9365 -174.45
+ 86 10.5831 976 1 0 -51.7441 15.281 -175.85
+ 86 77.3918 975 1 0 -51.7543 15.25 -175.877
+ 86 79.0807 974 1 0 -51.8372 15.05 -176.049
+ 86 4.81748 973 1 0 -51.9158 14.8498 -176.237
+ 86 111.974 595 0 1 -60.9163 -20.3123 -204.45
+ 86 6.15718 596 0 1 -60.85 -20.2698 -204.837
+ 86 59.3069 799 0 0 -60.5349 -20.1496 -205.85
+ 86 56.4192 800 0 0 -60.5081 -20.0495 -206.046
+ 86 44.2799 801 0 0 -60.4612 -19.85 -206.14
+ 86 15.1808 802 0 0 -60.4411 -19.65 -206.22
+ 86 130.055 585 1 1 -63.0499 22.4947 -174.513
+ 86 62.5489 586 1 1 -62.85 22.1018 -174.737
+ 86 29.6699 1004 1 0 -62.3661 20.9265 -175.85
+ 86 94.2754 1003 1 0 -62.3282 20.8494 -175.934
+ 86 10.3825 1002 1 0 -62.2344 20.65 -176.218
+ 86 152.429 1098 1 0 -28.9308 39.7937 -176.25
+ 86 256.505 1099 1 0 -28.8951 39.85 -176.206
+ 86 43.3907 762 1 1 -27.5878 40.2149 -174.85
+ 86 128.728 763 1 1 -27.45 40.2197 -174.732
+ 86 64.3262 764 1 1 -27.25 40.2588 -174.466
+ 86 74.2266 765 1 1 -27.05 40.1283 -174.48
+ 86 121.658 766 1 1 -26.8297 40.0782 -174.45
+ 86 118.54 910 1 0 -25.5866 2.11134 -176.25
+ 86 147.114 1019 7 0 -62.6484 23.8802 4.15
+ 86 45.6617 1020 7 0 -62.6464 24.05 3.85616
+ 86 64.8134 626 6 1 -54.7185 58.1885 -24.4501
+ 86 64.7265 625 6 1 -54.85 58.2604 -24.6085
+ 86 61.6533 624 6 1 -55.0504 58.2136 -24.7974
+ 86 208.337 1190 6 0 -57.0293 58.2242 -25.85
+Number of digits in this event = 49
Using G4ParticleGun ...
-4.20905 LIN
+9.05265 LIN
e-
Event: 87
-Number of tracker hits in this event = 28
- 87 128.635 232 8 1 -133.556 24.5367 35.55
- 87 145.468 1022 8 0 -133.555 24.5371 34.15
- 87 101.103 233 7 1 -133.546 24.5338 5.55
- 87 122.592 1022 7 0 -133.543 24.5344 4.15
- 87 110.454 233 6 1 -133.465 24.5452 -24.45
- 87 108.529 1022 6 0 -133.459 24.5452 -25.85
- 87 136.595 234 5 1 -133.332 24.5433 -54.45
- 87 103.292 1022 5 0 -133.326 24.5422 -55.85
- 87 151.998 234 4 1 -133.203 24.5372 -84.45
- 87 116.607 1022 4 0 -133.197 24.5356 -85.85
- 87 113.534 235 3 1 -133.061 24.5029 -114.45
- 87 249.219 1022 3 0 -133.058 24.502 -115.85
- 87 134.829 235 2 1 -132.995 24.4862 -144.45
- 87 155.185 1022 2 0 -132.99 24.4872 -145.85
- 87 117.067 236 1 1 -132.9 24.5086 -174.45
- 87 112.886 1022 1 0 -132.893 24.5108 -175.85
- 87 166.759 237 0 1 -132.739 24.5567 -204.45
- 87 209.461 1022 0 0 -132.732 24.5584 -205.85
- 87 60.7085 1236 4 0 -75.4074 67.3419 -86.2497
- 87 142.1 1237 4 0 -75.3288 67.45 -86.1275
- 87 105.239 528 4 1 -74.4394 68.0991 -84.8498
- 87 45.9762 529 4 1 -74.2497 68.2538 -84.5667
- 87 118.002 1222 5 0 -55.6705 64.4937 -56.25
- 87 25.345 622 5 1 -55.4726 64.4134 -54.85
- 87 99.3522 623 5 1 -55.4498 64.4134 -54.7342
- 87 91.675 1621 6 0 161.145 144.35 -25.8882
- 87 253.53 1019 0 0 -140.886 23.9569 -206.25
- 87 148.959 1018 0 0 -141.066 23.85 -206.016
-Number of digits in this event = 16
-Using G4ParticleGun ...
-7.02462 LIN
+Number of tracker hits in this event = 77
+ 87 214.367 218 8 0 52.2161 -136.382 34.15
+ 87 284.054 1160 7 1 52.2152 -136.38 5.55
+ 87 175.961 218 7 0 52.2156 -136.381 4.15
+ 87 134.606 1160 6 1 52.2205 -136.398 -24.45
+ 87 199.427 218 6 0 52.218 -136.398 -25.85
+ 87 133.078 1160 5 1 52.1677 -136.401 -54.45
+ 87 143.285 218 5 0 52.1658 -136.402 -55.85
+ 87 160.123 1160 4 1 52.1249 -136.41 -84.45
+ 87 185.109 218 4 0 52.123 -136.41 -85.85
+ 87 133.076 1160 3 1 52.0837 -136.412 -114.45
+ 87 102.831 218 3 0 52.0824 -136.412 -115.85
+ 87 216.996 1160 2 1 52.055 -136.41 -144.45
+ 87 98.9582 218 2 0 52.0536 -136.41 -145.85
+ 87 157.143 1159 1 1 52.0249 -136.412 -174.45
+ 87 148.001 218 1 0 52.022 -136.412 -175.85
+ 87 148.778 1159 0 1 51.9569 -136.422 -204.45
+ 87 175.811 218 0 0 51.9531 -136.423 -205.85
+ 87 106.623 257 2 1 -128.55 -147.828 -144.65
+ 87 35.5455 1545 4 0 135.37 129.15 -86.1984
+ 87 302.694 1546 4 0 135.378 129.35 -86.1065
+ 87 44.3547 1547 4 0 135.439 129.55 -86.0527
+ 87 118.859 1755 4 0 24.9615 171.15 -86.1806
+ 87 267.887 1756 4 0 24.812 171.35 -86.0919
+ 87 40.3995 1509 3 0 -73.1356 122.005 -116.25
+ 87 54.8632 1510 3 0 -73.189 122.15 -116.203
+ 87 200.845 219 2 0 52.4045 -136.342 -145.85
+ 87 6.46228 1197 1 1 59.6434 -134.866 -174.45
+ 87 101.89 1198 1 1 59.65 -134.868 -174.48
+ 87 122.38 225 1 0 59.8809 -134.955 -175.85
+ 87 141.411 1219 0 1 63.8886 -136.935 -204.45
+ 87 66.5494 1218 0 1 63.85 -136.969 -204.686
+ 87 22.3824 215 0 0 63.6448 -137.142 -205.85
+ 87 96.9076 214 0 0 63.6345 -137.15 -205.908
+ 87 38.3823 222 7 0 52.17 -135.604 4.15
+ 87 96.0797 223 7 0 52.1646 -135.55 4.04095
+ 87 164.798 1146 6 1 49.3941 -121.978 -24.45
+ 87 0.315184 1145 6 1 49.25 -121.662 -24.8484
+ 87 32.2129 296 6 0 48.8398 -120.806 -25.85
+ 87 112.031 297 6 0 48.812 -120.75 -25.917
+ 87 42.9706 298 6 0 48.6653 -120.55 -26.1853
+ 87 86.0735 1038 5 1 27.8136 -97.4587 -54.45
+ 87 56.3365 1037 5 1 27.65 -97.3842 -54.7071
+ 87 169.649 415 5 0 26.8243 -97.0856 -55.85
+ 87 55.5556 906 4 1 1.3355 -88.7927 -84.45
+ 87 79.2836 907 4 1 1.45 -88.6347 -84.5014
+ 87 100.403 908 4 1 1.65 -88.4332 -84.62
+ 87 27.8522 909 4 1 1.85 -88.1974 -84.7929
+ 87 92.3108 465 4 0 2.83829 -86.9834 -85.85
+ 87 133.943 466 4 0 2.9479 -86.8498 -85.9695
+ 87 61.3322 467 4 0 3.13237 -86.6499 -86.1699
+ 87 148.341 752 4 0 -3.94192 -29.5805 -86.25
+ 87 107.614 753 4 0 -4.11958 -29.45 -86.105
+ 87 169.461 754 4 0 -4.4035 -29.25 -85.9225
+ 87 49.166 860 4 1 -7.96031 -26.9524 -84.85
+ 87 101.609 859 4 1 -8.05 -26.888 -84.8257
+ 87 92.3701 858 4 1 -8.25018 -26.71 -84.755
+ 87 97.3213 857 4 1 -8.4503 -26.557 -84.7479
+ 87 64.0528 856 4 1 -8.65 -26.2691 -84.7851
+ 87 13.6902 784 4 0 -9.46059 -23.1217 -85.85
+ 87 74.4764 785 4 0 -9.48016 -23.05 -85.8706
+ 87 58.6928 786 4 0 -9.56603 -22.85 -85.9597
+ 87 91.7068 787 4 0 -9.66819 -22.65 -86.0448
+ 87 189.094 717 3 1 -36.534 -31.1743 -114.45
+ 87 1.95297 735 3 0 -36.9922 -33.0403 -115.85
+ 87 376.232 734 3 0 -36.9949 -33.05 -115.857
+ 87 56.0757 771 3 0 -89.0835 -25.677 -116.25
+ 87 95.7103 772 3 0 -89.1092 -25.65 -116.209
+ 87 76.7516 773 3 0 -89.2173 -25.4499 -116.01
+ 87 75.6122 774 3 0 -89.278 -25.25 -115.87
+ 87 238.209 448 3 1 -90.4266 -22.9735 -114.85
+ 87 75.6843 449 3 1 -90.35 -22.7082 -114.523
+ 87 165.265 450 3 1 -90.05 -22.7174 -114.751
+ 87 193.641 800 3 0 -90.05 -20.006 -115.875
+ 87 11.4125 455 3 1 -88.8783 -19.8463 -114.85
+ 87 3.6353 805 3 0 -88.2183 -19.0396 -115.85
+ 87 7.42925 466 3 1 -86.72 -17.9324 -114.85
+ 87 20.6461 807 3 0 -85.7833 -18.593 -115.85
+Number of digits in this event = 33
+Using G4ParticleGun ...
+6.03908 LIN
e-
Event: 88
-Number of tracker hits in this event = 55
- 88 111.889 1003 7 1 20.6663 147.734 5.55
- 88 131.227 1637 7 0 20.6662 147.734 4.15
- 88 115.465 1003 6 1 20.6686 147.733 -24.45
- 88 118.758 1637 6 0 20.6689 147.733 -25.85
- 88 109.757 1003 5 1 20.6736 147.736 -54.45
- 88 127.98 1637 5 0 20.6716 147.735 -55.85
- 88 106.594 1002 4 1 20.6309 147.714 -84.45
- 88 92.7 1637 4 0 20.6286 147.712 -85.85
- 88 111.958 1002 3 1 20.5765 147.669 -114.45
- 88 385.385 1637 3 0 20.5733 147.667 -115.85
- 88 174.016 1002 2 1 20.5063 147.615 -144.45
- 88 323.147 1637 2 0 20.5038 147.613 -145.85
- 88 96.4402 1001 1 1 20.4483 147.587 -174.45
- 88 257.809 1637 1 0 20.4457 147.584 -175.85
- 88 112.383 1001 0 1 20.3915 147.522 -204.45
- 88 134.321 1636 0 0 20.3908 147.519 -205.85
- 88 244.926 1001 2 1 20.45 147.63 -144.613
- 88 43.8749 1627 2 0 20.2421 145.677 -145.85
- 88 91.4378 1626 2 0 20.2252 145.55 -145.953
- 88 134.637 1625 2 0 20.2516 145.35 -146.072
- 88 47.4802 1624 2 0 20.2285 145.149 -146.172
- 88 36.5104 1623 2 0 20.2313 144.95 -146.223
- 88 250.236 1306 2 0 29.9768 81.4308 -146.25
- 88 402.224 1053 2 1 30.6638 81.0978 -144.85
- 88 108.969 1054 2 1 30.85 80.8118 -144.708
- 88 440.385 1003 3 1 20.6859 147.706 -114.45
- 88 269.945 1003 2 1 20.742 147.657 -144.45
- 88 122.712 1004 1 1 20.8999 147.589 -174.45
- 88 108.658 1004 0 1 20.9878 147.563 -204.45
- 88 245.395 1637 0 0 20.9915 147.559 -205.85
- 88 228.617 1643 3 0 20.2187 148.837 -115.85
- 88 163.309 1002 1 1 20.5589 147.459 -174.45
- 88 122.959 1636 1 0 20.5391 147.465 -175.85
- 88 147.115 1000 0 1 20.1239 147.586 -204.45
- 88 92.2032 1003 1 1 20.65 147.406 -174.541
- 88 95.5276 1632 1 0 21.5012 146.721 -175.85
- 88 40.7246 1631 1 0 21.7191 146.55 -176.138
- 88 112.546 1561 1 0 57.3971 132.374 -176.25
- 88 106.764 1188 1 1 57.6934 132.968 -174.85
- 88 65.8106 1489 2 0 75.3932 118.093 -146.25
- 88 65.4608 1488 2 0 75.4408 117.95 -146.11
- 88 71.2689 1487 2 0 75.5134 117.75 -145.97
- 88 181.325 1278 2 1 75.7423 115.705 -144.85
- 88 159.724 1279 2 1 75.85 115.222 -144.639
- 88 227.003 1280 2 1 76.05 114.866 -144.471
- 88 51.44 1281 2 1 76.25 114.282 -144.692
- 88 95.755 1466 2 0 76.6231 113.508 -145.85
- 88 146.709 1465 2 0 76.7296 113.35 -145.975
- 88 48.1211 1464 2 0 76.8669 113.15 -146.119
- 88 120.738 1085 2 0 135.493 37.2336 -146.25
- 88 76.1102 1084 2 0 135.602 37.05 -146.147
- 88 126.016 1083 2 0 135.815 36.85 -146.071
- 88 158.612 1582 2 1 136.709 34.8181 -144.85
- 88 123.292 1583 2 1 136.75 34.7176 -144.753
- 88 160.002 1467 2 0 78.5947 113.611 -145.85
-Number of digits in this event = 30
+Number of tracker hits in this event = 176
+ 88 120.309 998 9 1 19.7191 117.567 65.55
+ 88 143.615 1487 9 0 19.7209 117.569 64.15
+ 88 156.329 998 8 1 19.7621 117.61 35.55
+ 88 111.963 1487 8 0 19.7644 117.613 34.15
+ 88 232.442 998 7 1 19.8126 117.672 5.55
+ 88 139.82 1487 7 0 19.8124 117.677 4.15
+ 88 422.687 998 6 1 19.8034 117.779 -24.45
+ 88 556.241 1488 6 0 19.8012 117.786 -25.85
+ 88 248.84 998 5 1 19.7571 117.921 -54.45
+ 88 361.19 1488 5 0 19.7541 117.929 -55.85
+ 88 210.094 998 4 1 19.6711 118.111 -84.45
+ 88 104.745 1489 4 0 19.663 118.125 -85.85
+ 88 194.103 997 3 1 19.5059 118.407 -114.45
+ 88 210.914 1491 3 0 19.5126 118.425 -115.85
+ 88 353.054 997 2 1 19.6451 118.806 -144.45
+ 88 307.199 1493 2 0 19.6574 118.82 -145.85
+ 88 109.921 999 1 1 19.9558 119.145 -174.45
+ 88 254.217 1495 1 0 19.979 119.162 -175.85
+ 88 135.743 1001 0 1 20.4202 119.498 -204.45
+ 88 109.932 1496 0 0 20.4421 119.522 -205.85
+ 88 289.598 1491 2 0 19.6115 118.441 -145.85
+ 88 458.054 997 1 1 19.5857 118.69 -174.45
+ 88 237.928 1492 1 0 19.5884 118.701 -175.85
+ 88 108.361 997 0 1 19.6418 118.913 -204.45
+ 88 412.6 1493 0 0 19.6428 118.921 -205.85
+ 88 115.027 1613 13 0 -163.216 142.858 183.75
+ 88 165.257 85 13 1 -163.014 141.813 185.15
+ 88 197.725 86 13 1 -162.95 141.562 185.434
+ 88 280.011 996 0 1 19.4236 118.75 -204.45
+ 88 13.4581 1308 3 0 -99.1204 81.7998 -116.25
+ 88 72.1282 399 3 1 -100.189 81.1642 -114.85
+ 88 70.6312 398 3 1 -100.35 81.0621 -114.678
+ 88 17.7623 397 3 1 -100.55 80.9793 -114.493
+ 88 111.07 1306 4 0 -112.171 81.3486 -86.25
+ 88 0.0374814 337 4 1 -112.75 81.2501 -84.8496
+ 88 100.079 336 4 1 -112.75 81.25 -84.8483
+ 88 48.9993 335 4 1 -112.95 81.1899 -84.5135
+ 88 202.376 334 4 1 -113.15 81.3078 -84.5177
+ 88 55.6805 1313 4 0 -112.627 82.7304 -85.85
+ 88 161.598 1314 4 0 -112.596 82.85 -86.0144
+ 88 158.951 1315 4 0 -112.531 83.0503 -86.1602
+ 88 316.203 1316 4 0 -112.255 83.25 -86.1756
+ 88 7.86233 1317 4 0 -111.946 83.45 -86.241
+ 88 53.7481 1754 4 0 -89.6623 171.059 -86.25
+ 88 39.6819 1755 4 0 -89.704 171.15 -86.1653
+ 88 11.5807 1490 3 0 19.6772 118.244 -115.85
+ 88 234.518 996 5 1 19.3643 117.83 -54.45
+ 88 48.6965 999 4 1 19.858 117.353 -84.4507
+ 88 134.428 1486 4 0 19.7941 117.357 -85.85
+ 88 337.455 992 3 1 18.59 117.706 -114.45
+ 88 120.387 1487 3 0 18.3238 117.633 -115.85
+ 88 117.051 962 2 1 12.6306 115.83 -144.45
+ 88 120.966 1477 2 0 12.3866 115.743 -145.85
+ 88 261.125 937 1 1 7.53925 114.313 -174.451
+ 88 139.878 1470 1 0 7.24015 114.262 -175.85
+ 88 56.7069 905 0 1 1.07901 113.08 -204.45
+ 88 54.9198 904 0 1 1.05 113.118 -204.669
+ 88 66.5907 1465 0 0 0.894375 113.326 -205.85
+ 88 73.3556 1466 0 0 0.877512 113.35 -205.982
+ 88 189.519 1472 1 0 7.09928 114.601 -175.85
+ 88 119.185 1485 3 0 18.3321 117.275 -115.85
+ 88 10.5094 1484 3 0 18.2616 117.15 -116.219
+ 88 11.4521 1236 3 0 5.6383 67.2885 -116.25
+ 88 80.1831 1235 3 0 5.6309 67.25 -116.201
+ 88 47.5908 1234 3 0 5.61901 67.05 -115.961
+ 88 152.043 927 3 1 5.60032 66.1763 -114.85
+ 88 83.1649 1486 5 0 20.7962 117.55 -55.9166
+ 88 29.5294 905 1 1 1.23844 -45.4927 -174.85
+ 88 29.1781 673 1 0 1.25891 -45.4352 -175.85
+ 88 88.0156 908 1 1 1.78122 -45.3009 -174.85
+ 88 134.775 999 5 1 19.878 118.268 -54.45
+ 88 69.2059 1490 5 0 19.9871 118.338 -55.85
+ 88 40.2745 1491 5 0 20.0056 118.35 -56.0887
+ 88 186.492 1011 4 1 22.3174 119.369 -84.45
+ 88 223.318 1496 4 0 22.5003 119.418 -85.85
+ 88 344.156 1029 3 1 25.9537 120.164 -114.451
+ 88 184.674 1499 3 0 26.1232 120.071 -115.85
+ 88 119.389 1049 2 1 29.9286 118.378 -144.45
+ 88 242.976 1489 2 0 30.2475 118.131 -145.85
+ 88 32.9728 1081 1 1 36.4102 112.347 -174.45
+ 88 98.2328 1082 1 1 36.45 112.325 -174.574
+ 88 149.402 1459 1 0 36.8478 112.091 -175.851
+ 88 122.898 1131 0 1 46.3359 106.949 -204.45
+ 88 99.4577 1433 0 0 46.5796 106.785 -205.85
+ 88 30.3476 1432 0 0 46.6301 106.75 -206.136
+ 88 139.648 1501 3 0 25.9232 120.39 -115.85
+ 88 31.7962 1029 2 1 26.017 125.399 -144.45
+ 88 112.912 1030 2 1 26.0501 125.401 -144.523
+ 88 105.273 1525 2 0 26.5946 125.35 -145.85
+ 88 96.3407 1077 1 1 35.5844 125.239 -174.45
+ 88 36.8289 1078 1 1 35.65 125.204 -174.723
+ 88 116.094 1524 1 0 35.9121 125.069 -175.85
+ 88 157.301 1106 0 1 41.2895 120.592 -204.451
+ 88 30.0938 1107 0 1 41.45 120.597 -204.745
+ 88 117.974 1502 0 0 42.078 120.594 -205.85
+ 88 2.09282 1072 7 0 -15.2503 34.6158 3.75
+ 88 28.6095 1279 0 1 75.874 156.207 -204.85
+ 88 67.3659 1030 3 1 26.05 120.177 -114.603
+ 88 42.6739 1498 3 0 26.7372 119.95 -116.138
+ 88 140.609 1112 2 1 42.5337 117.054 -144.45
+ 88 141.618 1483 2 0 42.9099 116.866 -145.85
+ 88 15.5435 1482 2 0 42.9819 116.75 -146.196
+ 88 123.524 1165 1 1 53.0594 106.777 -174.45
+ 88 53.6401 1166 1 1 53.25 106.584 -174.709
+ 88 16.7183 1426 1 0 53.828 105.401 -175.85
+ 88 66.5397 1425 1 0 53.8512 105.35 -175.9
+ 88 46.1265 1424 1 0 53.9033 105.15 -176.115
+ 88 150.776 1144 0 1 48.9677 83.4776 -204.45
+ 88 81.1029 1145 0 1 49.05 83.4182 -204.562
+ 88 28.0363 1316 0 0 49.4514 83.4403 -205.85
+ 88 122.469 1317 0 0 49.4691 83.4501 -205.921
+ 88 163.382 1384 0 0 49.4811 96.9543 -206.25
+ 88 71.933 1287 3 0 40.135 77.644 -116.25
+ 88 89.3194 1286 3 0 40.1489 77.45 -116.124
+ 88 106.097 1101 3 1 40.4415 77.1552 -114.85
+ 88 99.1144 1102 3 1 40.45 77.1504 -114.813
+ 88 41.8196 1059 0 1 31.99 130.226 -204.77
+ 88 101.486 1550 0 0 32.0839 130.321 -205.85
+ 88 66.6802 1551 0 0 32.0751 130.479 -205.85
+ 88 57.1363 1552 0 0 32.0952 130.55 -206.114
+ 88 44.9142 1541 1 0 0.351077 128.55 -175.978
+ 88 100.756 901 1 1 0.356268 127.992 -174.85
+ 88 133.939 1489 6 0 19.9423 117.95 -25.8697
+ 88 191.032 1487 6 0 19.7789 117.75 -25.9251
+ 88 231.815 991 3 1 18.4403 119.988 -114.45
+ 88 130.144 1500 3 0 18.5253 120.274 -115.851
+ 88 165.202 1026 2 1 25.3161 128.473 -144.45
+ 88 76.337 1027 2 1 25.45 128.749 -144.59
+ 88 105.176 1028 2 1 25.65 128.919 -144.691
+ 88 72.9096 1552 2 0 26.6659 130.567 -145.85
+ 88 70.5254 1553 2 0 26.7633 130.75 -146.011
+ 88 38.1567 1089 1 1 37.9735 146.424 -174.45
+ 88 222.098 1090 1 1 38.05 146.309 -174.522
+ 88 102.78 1091 1 1 38.2501 145.977 -174.662
+ 88 5.33225 1092 1 1 38.45 145.742 -174.84
+ 88 110.139 1622 1 0 39.4545 144.722 -175.85
+ 88 146.548 1621 1 0 39.6115 144.55 -176.007
+ 88 99.5939 1620 1 0 39.7575 144.35 -176.134
+ 88 38.1815 1176 1 0 94.3021 55.3444 -176.25
+ 88 69.8427 1175 1 0 94.3456 55.25 -176.218
+ 88 87.8556 1174 1 0 94.4945 55.05 -176.152
+ 88 51.4521 1173 1 0 94.6553 54.85 -176.159
+ 88 54.6244 1492 3 0 17.8808 118.618 -115.85
+ 88 6.34172 889 2 1 -2.23714 114.306 -144.45
+ 88 266.931 888 2 1 -2.25 114.299 -144.488
+ 88 151.534 1456 2 0 -3.24975 111.532 -145.85
+ 88 74.6679 1455 2 0 -3.32903 111.35 -145.907
+ 88 83.7065 1454 2 0 -3.3579 111.15 -146.072
+ 88 155.894 1075 2 0 -34.4923 35.2214 -146.25
+ 88 378.587 1074 2 0 -34.6676 35.0499 -146.178
+ 88 35.6934 1073 2 0 -34.7043 34.85 -146.12
+ 88 3.97433 1748 4 0 -72.5512 169.75 -86.1751
+ 88 138.716 1484 7 0 19.9091 117.149 4.15
+ 88 20.6392 1002 6 1 20.5065 108.339 -24.45
+ 88 142.417 1001 6 1 20.45 108.285 -24.4836
+ 88 89.8076 1000 6 1 20.25 108.089 -24.6086
+ 88 104.272 999 6 1 20.05 107.859 -24.7341
+ 88 196.645 1426 6 0 18.3184 105.535 -25.8501
+ 88 95.1787 1425 6 0 18.1647 105.35 -25.9268
+ 88 80.0998 1424 6 0 17.997 105.15 -26.0273
+ 88 78.6442 1423 6 0 17.8011 104.95 -26.1168
+ 88 14.2076 1422 6 0 17.5916 104.75 -26.232
+ 88 37.4974 765 5 1 -26.9131 51.6653 -54.4503
+ 88 102.626 766 5 1 -26.85 51.6052 -54.5383
+ 88 37.9004 1152 5 0 -26.302 50.512 -55.85
+ 88 128.535 1151 5 0 -26.2733 50.4497 -55.9551
+ 88 76.5305 800 4 1 -19.983 31.6882 -84.45
+ 88 95.7689 801 4 1 -19.85 31.7084 -84.6948
+ 88 159.985 1057 4 0 -18.5324 31.4527 -85.85
+ 88 9.38853 1056 4 0 -18.5195 31.45 -85.8602
+ 88 46.608 1058 4 0 -18.5294 31.65 -86.2058
+ 88 204.524 549 6 1 -70.2138 137.881 -24.45
+ 88 115.211 1490 0 0 20.2406 118.228 -205.85
+ 88 130.176 1491 0 0 20.2023 118.35 -206.175
+ 88 111.014 796 3 0 35.1034 -20.7087 -116.25
+ 88 6.67311 797 3 0 35.1136 -20.65 -116.121
+Number of digits in this event = 72
Using G4ParticleGun ...
-4.63626 LIN
+3.32705 LIN
e-
Event: 89
Number of tracker hits in this event = 77
- 89 127.513 420 10 1 -95.9757 27.2327 95.55
- 89 110.445 1035 10 0 -95.9746 27.2332 94.15
- 89 115.56 420 9 1 -95.9503 27.2509 65.55
- 89 143.019 1036 9 0 -95.9497 27.2518 64.15
- 89 103 420 8 1 -95.9506 27.2703 35.55
- 89 108.018 1036 8 0 -95.9523 27.2717 34.15
- 89 105.659 420 7 1 -95.9864 27.307 5.55
- 89 92.9503 1036 7 0 -95.988 27.3082 4.15
- 89 138.375 420 6 1 -96.0247 27.3269 -24.45
- 89 128.349 1036 6 0 -96.028 27.3281 -25.85
- 89 352.574 420 5 1 -96.1012 27.3445 -54.45
- 89 346.47 1036 5 0 -96.1051 27.3437 -55.85
- 89 111.698 419 4 1 -96.1826 27.3281 -84.45
- 89 121.941 1036 4 0 -96.1869 27.3272 -85.85
- 89 137.997 419 3 1 -96.2698 27.3071 -114.45
- 89 108.142 1036 3 0 -96.2721 27.3076 -115.85
- 89 109.43 419 2 1 -96.3134 27.3229 -144.45
- 89 104.173 1036 2 0 -96.3171 27.3245 -145.85
- 89 124.358 418 1 1 -96.3958 27.3497 -174.45
- 89 123.264 1036 1 0 -96.3991 27.3494 -175.85
- 89 121.513 418 0 1 -96.4612 27.3512 -204.45
- 89 345.134 1036 0 0 -96.466 27.3502 -205.85
- 89 21.5995 973 9 1 14.65 -101.352 65.2795
- 89 60.928 1037 0 0 -96.2639 27.4501 -206.09
- 89 31.1691 841 1 0 -87.7987 -11.794 -176.25
- 89 68.6798 840 1 0 -87.7934 -11.8505 -176.217
- 89 84.1389 839 1 0 -87.7465 -12.05 -176.046
- 89 3.38775 838 1 0 -87.6953 -12.2501 -175.863
- 89 351.17 461 1 1 -87.7537 -13.6465 -174.85
- 89 42.9293 462 1 1 -87.65 -14.2471 -174.45
- 89 198.666 463 1 1 -87.45 -14.2208 -174.465
- 89 153.909 621 4 0 -64.2245 -55.7561 -86.2496
- 89 166.677 620 4 0 -64.1777 -55.85 -86.0381
- 89 188.49 619 4 0 -64.158 -56.05 -86.1053
- 89 190.078 1107 2 0 -70.5479 41.5149 -146.25
- 89 202.099 578 14 0 74.9855 -64.3105 213.75
- 89 112.299 577 14 0 74.8618 -64.45 213.799
- 89 112.918 417 4 1 -96.721 25.4159 -84.45
- 89 6.01472 1026 4 0 -96.816 25.2523 -85.85
- 89 101.295 1025 4 0 -96.8174 25.25 -85.8707
- 89 435.2 407 3 1 -98.6224 21.2348 -114.45
- 89 102.034 1003 3 0 -98.9084 20.765 -115.85
- 89 19.2927 1002 3 0 -98.9783 20.65 -116.186
- 89 11.5548 375 2 1 -105.127 11.0686 -144.45
- 89 106.382 374 2 1 -105.15 11.0512 -144.489
- 89 14.7546 373 2 1 -105.35 10.901 -144.819
- 89 139.839 951 2 0 -105.979 10.4115 -145.85
- 89 23.5132 950 2 0 -106.19 10.25 -146.191
- 89 29.6388 279 1 1 -124.303 -3.86629 -174.45
- 89 118.536 278 1 1 -124.35 -3.89816 -174.487
- 89 126.869 277 1 1 -124.55 -4.0361 -174.647
- 89 22.0479 276 1 1 -124.75 -4.17851 -174.808
- 89 111.645 874 1 0 -126.015 -5.09021 -175.85
- 89 116.166 873 1 0 -126.233 -5.25 -176.027
- 89 25.8866 872 1 0 -126.498 -5.45004 -176.231
- 89 30.7285 84 0 1 -163.298 -32.4725 -204.45
- 89 100.37 83 0 1 -163.35 -32.5286 -204.508
- 89 83.9078 82 0 1 -163.55 -32.7387 -204.72
- 89 30.116 730 0 0 -164.832 -33.9959 -205.85
- 89 106.151 729 0 0 -164.88 -34.05 -205.903
- 89 70.3775 728 0 0 -165.053 -34.2502 -206.157
- 89 246 13 0 1 -177.387 63.6083 -204.85
- 89 5.70175 408 3 1 -98.55 21.0372 -114.835
- 89 143.717 1001 3 0 -97.3635 20.29 -115.85
- 89 29.3223 1000 3 0 -97.3199 20.2496 -115.9
- 89 22.5107 1019 3 0 -72.963 24.0408 -116.25
- 89 259.2 1020 3 0 -72.939 24.05 -116.207
- 89 87.2678 418 4 1 -96.5362 27.1521 -84.45
- 89 145.986 1035 4 0 -96.5603 27.1389 -85.85
- 89 109.462 415 3 1 -97.0492 26.832 -114.45
- 89 145.002 1033 3 0 -97.0569 26.8088 -115.85
- 89 219.722 414 2 1 -97.2419 26.3462 -144.45
- 89 238.964 1031 2 0 -97.2498 26.3219 -145.85
- 89 146.898 413 1 1 -97.4169 25.8243 -174.45
- 89 114.082 1028 1 0 -97.4345 25.8168 -175.85
- 89 128.86 411 0 1 -97.8992 25.5846 -204.45
- 89 181.987 1027 0 0 -97.9285 25.6054 -205.85
-Number of digits in this event = 35
+ 89 129.715 1606 8 1 141.477 18.5594 35.55
+ 89 97.046 992 8 0 141.476 18.5614 34.15
+ 89 147.126 1606 7 1 141.46 18.6026 5.55
+ 89 177.332 992 7 0 141.461 18.6078 4.15
+ 89 116.566 1606 6 1 141.467 18.7145 -24.45
+ 89 149.021 993 6 0 141.466 18.7177 -25.85
+ 89 373.593 1606 5 1 141.466 18.781 -54.45
+ 89 404.719 993 5 0 141.468 18.7814 -55.85
+ 89 111.283 1606 4 1 141.518 18.7762 -84.45
+ 89 143.237 993 4 0 141.515 18.7788 -85.85
+ 89 111.756 1606 3 1 141.469 18.841 -114.45
+ 89 119.377 993 3 0 141.457 18.8457 -115.85
+ 89 117.13 1605 2 1 141.236 18.9338 -144.45
+ 89 103.605 994 2 0 141.219 18.9305 -145.85
+ 89 138.569 1603 1 1 140.805 18.7476 -174.45
+ 89 135.693 993 1 0 140.789 18.7208 -175.85
+ 89 303.207 1601 0 1 140.513 18.1833 -204.45
+ 89 117.81 990 0 0 140.501 18.1423 -205.85
+ 89 45.7713 1012 1 0 143.682 22.45 -175.852
+ 89 127.323 995 5 0 141.16 19.1253 -55.85
+ 89 127.519 1580 4 1 136.156 28.1023 -84.4501
+ 89 11.6016 1042 4 0 136.376 28.6298 -85.8509
+ 89 112.231 1043 4 0 136.383 28.65 -85.9076
+ 89 130.887 1596 3 1 139.527 38.3522 -114.451
+ 89 127.553 1094 3 0 139.542 38.8895 -115.85
+ 89 178.808 1603 2 1 140.841 48.3335 -144.45
+ 89 76.8676 1145 2 0 141.015 49.0783 -145.85
+ 89 29.8152 1146 2 0 141.044 49.25 -146.146
+ 89 89.9987 1610 1 1 142.257 68.0294 -174.45
+ 89 30.8379 1611 1 1 142.35 68.1134 -174.782
+ 89 179.075 1241 1 0 142.646 68.3345 -175.85
+ 89 39.2667 1648 0 1 149.91 76.165 -204.45
+ 89 88.2733 1649 0 1 149.95 76.1856 -204.55
+ 89 0.658159 1281 0 0 150.523 76.4497 -205.85
+ 89 121.899 1282 0 0 150.523 76.45 -205.851
+ 89 126.404 1612 4 1 142.629 16.6196 -84.4501
+ 89 130.495 981 4 0 142.983 16.4384 -85.85
+ 89 94.6004 1650 3 1 150.214 13.6002 -114.45
+ 89 12.6887 1651 3 1 150.35 13.5976 -114.79
+ 89 384.341 967 3 0 150.793 13.6242 -115.85
+ 89 488.586 1715 2 1 163.301 15.0187 -144.45
+ 89 288.279 1714 2 1 163.15 13.4209 -144.733
+ 89 27.0039 930 2 0 162.489 6.13239 -145.85
+ 89 53.0608 929 2 0 162.482 6.05 -145.863
+ 89 52.0907 928 2 0 162.465 5.84954 -145.893
+ 89 84.0451 927 2 0 162.451 5.64957 -145.929
+ 89 53.3168 926 2 0 162.437 5.45 -145.969
+ 89 81.103 925 2 0 162.426 5.25 -146.014
+ 89 70.2037 924 2 0 162.424 5.04995 -146.065
+ 89 58.8653 923 2 0 162.422 4.84983 -146.113
+ 89 50.9492 922 2 0 162.421 4.65 -146.157
+ 89 215.416 921 2 0 162.425 4.4499 -146.207
+ 89 80.991 1721 1 1 164.546 -117.988 -174.45
+ 89 56.6888 1720 1 1 164.35 -118.04 -174.689
+ 89 12.8912 309 1 0 163.385 -118.341 -175.85
+ 89 181.94 308 1 0 163.356 -118.35 -175.885
+ 89 31.4241 1590 0 1 138.224 -126.718 -204.45
+ 89 162.625 1589 0 1 138.15 -126.718 -204.492
+ 89 58.4042 1588 0 1 137.95 -126.718 -204.607
+ 89 55.1332 1587 0 1 137.75 -126.718 -204.725
+ 89 3.96437 1586 0 1 137.55 -126.707 -204.839
+ 89 243.897 267 0 0 135.655 -126.574 -205.85
+ 89 84.344 268 0 0 135.169 -126.55 -206.106
+ 89 219.322 430 9 0 -130.86 -93.97 63.75
+ 89 41.2696 431 9 0 -130.513 -93.95 64.1081
+ 89 358.806 250 9 1 -130.076 -93.3627 65.15
+ 89 117.199 249 9 1 -130.15 -93.1906 65.2566
+ 89 41.1796 1577 0 1 135.696 -127.282 -204.85
+ 89 7.70368 261 0 0 135.499 -127.939 -205.85
+ 89 126.868 1575 0 1 135.167 -127.949 -204.85
+ 89 32.3993 976 4 0 141.949 15.4495 -85.85
+ 89 0.773126 1597 4 1 139.551 14.5635 -84.85
+ 89 78.5447 1596 4 1 139.55 14.5632 -84.8497
+ 89 77.7347 1595 4 1 139.35 14.5494 -84.7717
+ 89 177.657 971 4 0 139.494 14.3916 -85.85
+ 89 6.48187 972 4 0 139.578 14.4501 -85.8988
+ 89 58.1622 993 7 0 141.487 18.6502 3.78091
+Number of digits in this event = 34
Using G4ParticleGun ...
-1.55065 LIN
+6.95246 LIN
e-
Event: 90
-Number of tracker hits in this event = 25
- 90 144.965 1195 11 1 59.2365 36.5895 125.55
- 90 186.114 1082 11 0 59.235 36.5903 124.15
- 90 105.248 1195 10 1 59.2034 36.6345 95.55
- 90 228.021 1082 10 0 59.2028 36.6202 94.15
- 90 147.275 1195 9 1 59.2059 36.3172 65.55
- 90 140.784 1081 9 0 59.1958 36.271 64.15
- 90 152.373 1194 8 1 58.9685 35.2804 35.55
- 90 112.858 1075 8 0 58.9862 35.2477 34.15
- 90 101.997 1196 7 1 59.3816 34.5131 5.55
- 90 113.441 1072 7 0 59.405 34.4727 4.15
- 90 127.117 1199 6 1 59.9838 33.6603 -24.45
- 90 168.901 1067 6 0 60.0076 33.607 -25.85
- 90 122.265 1202 5 1 60.5834 32.418 -54.45
- 90 135.668 1061 5 0 60.6127 32.3242 -55.85
- 90 120.064 1206 4 1 61.3461 30.2779 -84.45
- 90 145.195 1050 4 0 61.416 30.1799 -85.85
- 90 156.063 1214 3 1 62.9156 28.1658 -114.45
- 90 126.497 1040 3 0 63.0016 28.0795 -115.85
- 90 114.078 1224 2 1 64.852 26.3934 -144.45
- 90 110.796 1031 2 0 64.9108 26.3741 -145.85
- 90 115.035 1231 1 1 66.2796 25.9726 -174.45
- 90 124.609 1030 1 0 66.4621 26.1397 -175.85
- 90 101.371 1250 0 1 70.185 30.0193 -204.45
- 90 109.467 1050 0 0 70.362 30.2094 -205.85
- 90 37.8745 1051 0 0 70.3984 30.25 -206.15
-Number of digits in this event = 17
-Using G4ParticleGun ...
-4.66206 LIN
+Number of tracker hits in this event = 79
+ 90 116.771 1121 11 1 44.397 19.9086 125.55
+ 90 133.831 999 11 0 44.3962 19.9084 124.15
+ 90 303.595 1121 10 1 44.38 19.9044 95.55
+ 90 265.976 999 10 0 44.3809 19.9041 94.15
+ 90 122.152 1121 9 1 44.4039 19.9007 65.55
+ 90 155.125 999 9 0 44.4039 19.9011 64.15
+ 90 187.034 1121 8 1 44.4125 19.9071 35.55
+ 90 111.583 999 8 0 44.4122 19.9084 34.15
+ 90 121.947 1121 7 1 44.4079 19.9374 5.55
+ 90 110.948 999 7 0 44.4076 19.9373 4.15
+ 90 258.395 1121 6 1 44.4023 19.9299 -24.45
+ 90 145.788 999 6 0 44.4016 19.9296 -25.85
+ 90 133.362 1121 5 1 44.3896 19.9209 -54.45
+ 90 116.752 999 5 0 44.3899 19.9216 -55.85
+ 90 110.568 1121 4 1 44.4034 19.9313 -84.45
+ 90 142.148 999 4 0 44.4058 19.9294 -85.85
+ 90 167.851 1122 3 1 44.4552 19.8979 -114.45
+ 90 103.826 999 3 0 44.4568 19.8965 -115.85
+ 90 114.083 1122 2 1 44.4848 19.8824 -144.45
+ 90 123.102 999 2 0 44.4865 19.8817 -145.85
+ 90 352.738 1122 1 1 44.5101 19.8686 -174.45
+ 90 345.384 999 1 0 44.5149 19.8697 -175.85
+ 90 255.245 1122 0 1 44.6067 19.8898 -204.45
+ 90 350.855 999 0 0 44.6112 19.8888 -205.85
+ 90 97.9276 1120 6 1 44.25 20.0377 -24.7102
+ 90 115.922 1002 6 0 43.5707 20.5372 -25.85
+ 90 50.37 1003 6 0 43.4174 20.65 -26.1154
+ 90 175.511 1045 5 1 29.241 31.6854 -54.4501
+ 90 33.4275 1044 5 1 29.0499 31.834 -54.7882
+ 90 60.775 1061 5 0 28.3729 32.3547 -55.85
+ 90 72.743 1062 5 0 28.2434 32.45 -56.0515
+ 90 99.6248 945 4 1 9.2345 45.711 -84.45
+ 90 115.357 944 4 1 9.05 45.889 -84.6012
+ 90 19.762 943 4 1 8.85 46.1114 -84.8035
+ 90 52.9654 1134 4 0 7.95685 46.9869 -85.85
+ 90 121.054 1135 4 0 7.88989 47.0501 -85.9268
+ 90 23.0371 1136 4 0 7.68077 47.25 -86.1826
+ 90 57.5079 816 3 1 -16.7048 67.3526 -114.45
+ 90 100.261 815 3 1 -16.85 67.4268 -114.538
+ 90 67.9391 814 3 1 -17.05 67.5474 -114.663
+ 90 56.9775 813 3 1 -17.25 67.6861 -114.784
+ 90 228.206 1244 3 0 -18.9477 68.9164 -115.85
+ 90 135.522 1245 3 0 -19.1281 69.05 -115.972
+ 90 45.1448 1246 3 0 -19.4354 69.25 -116.162
+ 90 1.21446 533 2 1 -73.4459 92.7984 -144.45
+ 90 111.455 532 2 1 -73.45 92.8035 -144.452
+ 90 96.6042 531 2 1 -73.65 93.1241 -144.531
+ 90 89.2228 530 2 1 -73.8504 93.4829 -144.629
+ 90 135.269 529 2 1 -74.05 93.807 -144.635
+ 90 109.006 528 2 1 -74.25 94.1477 -144.644
+ 90 87.6932 527 2 1 -74.4501 94.419 -144.624
+ 90 102.219 526 2 1 -74.65 94.6281 -144.597
+ 90 99.3926 525 2 1 -74.8505 94.8274 -144.555
+ 90 74.4579 524 2 1 -75.05 95.0483 -144.546
+ 90 73.0184 523 2 1 -75.25 95.269 -144.583
+ 90 79.5733 522 2 1 -75.45 95.5096 -144.607
+ 90 91.955 521 2 1 -75.6503 95.7494 -144.613
+ 90 147.097 520 2 1 -75.85 95.9379 -144.642
+ 90 172.157 519 2 1 -76.05 96.2635 -144.767
+ 90 34.1089 1394 2 0 -77.6331 99.0392 -145.85
+ 90 59.0165 1395 2 0 -77.6977 99.15 -145.881
+ 90 62.436 1396 2 0 -77.7925 99.35 -145.956
+ 90 89.3446 1397 2 0 -77.8773 99.55 -146.059
+ 90 179.657 1398 2 0 -77.957 99.75 -146.135
+ 90 39.7252 1528 2 0 -116.936 125.81 -146.25
+ 90 57.9571 1527 2 0 -116.931 125.75 -146.086
+ 90 60.4925 318 2 1 -116.409 125.189 -144.85
+ 90 111.205 319 2 1 -116.35 125.11 -144.71
+ 90 69.9442 1399 2 0 -77.9302 99.95 -146.163
+ 90 367.743 518 2 1 -76.2502 96.2674 -144.622
+ 90 466.555 517 2 1 -76.45 96.4564 -144.734
+ 90 80.37 1383 2 0 -76.9874 96.8844 -145.85
+ 90 89.4132 1382 2 0 -77.1406 96.75 -146.046
+ 90 329.462 1381 2 0 -77.3272 96.5498 -146.05
+ 90 249.79 1380 2 0 -77.8084 96.35 -146.11
+ 90 256.18 1379 2 0 -78.0119 96.15 -146.036
+ 90 116.331 1119 0 1 43.8965 20.2007 -204.45
+ 90 309.163 1000 0 0 43.8667 20.2334 -205.85
+ 90 8.53711 998 10 0 44.3637 19.85 93.9746
+Number of digits in this event = 33
+Using G4ParticleGun ...
+8.48879 LIN
e-
Event: 91
-Number of tracker hits in this event = 97
- 91 113.389 1277 11 1 75.602 -6.38499 125.55
- 91 149.161 868 11 0 75.6026 -6.3845 124.15
- 91 112.604 1277 10 1 75.6072 -6.37879 95.55
- 91 171.772 868 10 0 75.6088 -6.3803 94.15
- 91 104.956 1277 9 1 75.6355 -6.39692 65.55
- 91 370.149 868 9 0 75.6334 -6.40034 64.15
- 91 213.863 1277 8 1 75.5708 -6.48847 35.55
- 91 443.542 867 8 0 75.568 -6.4939 34.15
- 91 168.684 1277 7 1 75.5209 -6.60617 5.55
- 91 398.767 867 7 0 75.5181 -6.61269 4.15
- 91 214.702 1277 6 1 75.4605 -6.76371 -24.45
- 91 238.443 866 6 0 75.46 -6.76732 -25.85
- 91 131.382 1276 5 1 75.4347 -6.85313 -54.45
- 91 104.515 865 5 0 75.4378 -6.85881 -55.85
- 91 147.569 1277 4 1 75.4969 -6.96261 -84.45
- 91 258.843 865 4 0 75.4981 -6.96854 -85.85
- 91 328.584 1277 3 1 75.5253 -7.1142 -114.45
- 91 214.036 864 3 0 75.5278 -7.12527 -115.85
- 91 190.101 1277 2 1 75.5723 -7.37096 -144.45
- 91 164.986 863 2 0 75.5817 -7.38862 -145.85
- 91 174.672 1278 1 1 75.7823 -7.74483 -174.45
- 91 101.119 861 1 0 75.8021 -7.75904 -175.85
- 91 98.6209 1280 0 1 76.2148 -8.02724 -204.45
- 91 135.314 860 0 0 76.2365 -8.04436 -205.85
- 91 171.105 674 1 0 27.3645 -45.05 -176.135
- 91 182.218 868 8 0 75.5637 -6.45 34.0191
- 91 181.03 869 8 0 75.3346 -6.25 33.8914
- 91 249.543 1278 9 1 75.6605 -6.41937 65.55
- 91 120.49 1278 8 1 75.7787 -6.46443 35.55
- 91 119.011 1279 7 1 76.0298 -6.48729 5.55
- 91 143.662 1281 6 1 76.3422 -6.60634 -24.45
- 91 108.534 867 6 0 76.3544 -6.61206 -25.85
- 91 135.968 1282 5 1 76.5848 -6.74771 -54.45
- 91 113.43 866 5 0 76.5962 -6.75253 -55.85
- 91 117.747 1284 4 1 76.8728 -6.8523 -84.45
- 91 142.609 1283 3 1 76.7602 -7.13387 -114.45
- 91 127.85 1284 2 1 76.8858 -7.55114 -144.45
- 91 127.103 862 2 0 76.897 -7.56779 -145.85
- 91 111.985 1285 1 1 77.1277 -7.91934 -174.45
- 91 123.407 860 1 0 77.1534 -7.92796 -175.85
- 91 197.512 1288 0 1 77.668 -8.11714 -204.45
- 91 123.648 859 0 0 77.7086 -8.13975 -205.85
- 91 99.2706 1282 1 1 76.6427 -7.84805 -174.45
- 91 125.407 859 1 0 76.4977 -8.11749 -175.85
- 91 79.2037 1263 0 1 72.83 -14.2429 -204.45
- 91 265.12 1264 0 1 72.85 -14.3748 -204.491
- 91 276.518 1265 0 1 73.05 -15.2161 -204.632
- 91 35.4328 802 0 0 73.2728 -19.4931 -205.85
- 91 73.8596 801 0 0 73.2846 -19.65 -205.894
- 91 78.7983 800 0 0 73.2862 -19.8502 -205.955
- 91 51.6005 799 0 0 73.2802 -20.0501 -206.014
- 91 78.1385 798 0 0 73.2724 -20.25 -206.064
- 91 55.0403 797 0 0 73.2517 -20.4501 -206.136
- 91 26.5731 796 0 0 73.2147 -20.65 -206.217
- 91 46.6285 1199 0 1 60.0424 -102.72 -204.85
- 91 11.3129 392 0 0 59.3756 -101.574 -205.85
- 91 168.926 1283 1 1 76.6671 -7.80619 -174.45
- 91 95.8957 862 1 0 76.7584 -7.56495 -175.85
- 91 126.032 1300 0 1 80.0834 -4.52589 -204.45
- 91 149.87 877 0 0 80.0096 -4.57239 -205.85
- 91 261.125 969 0 1 14.0193 2.46227 -204.45
- 91 98.8047 1278 7 1 75.6558 -6.63173 5.55
- 91 104.151 1278 6 1 75.7013 -6.80672 -24.45
- 91 198.078 1278 5 1 75.8306 -7.08121 -54.45
- 91 112.132 864 5 0 75.8314 -7.10191 -55.85
- 91 303.371 1278 4 1 75.8404 -7.53874 -84.45
- 91 139.694 862 4 0 75.8358 -7.55522 -85.85
- 91 130.993 1278 3 1 75.6878 -7.87653 -114.45
- 91 154.869 860 3 0 75.6781 -7.88982 -115.85
- 91 109.673 1276 2 1 75.4385 -8.14445 -144.45
- 91 152.59 859 2 0 75.4281 -8.15587 -145.85
- 91 157.803 1275 1 1 75.2062 -8.40485 -174.45
- 91 105.717 858 1 0 75.2015 -8.41953 -175.85
- 91 235.773 1275 0 1 75.1426 -8.70669 -204.45
- 91 303.395 856 0 0 75.1453 -8.72173 -205.85
- 91 30.0721 1450 3 1 110.294 -61.2371 -114.45
- 91 189.62 604 4 0 119.832 -59.1195 -86.2496
- 91 137.058 603 4 0 119.962 -59.2501 -86.039
- 91 41.3248 1276 0 1 75.25 -8.66256 -204.784
- 91 41.2165 855 0 0 75.9361 -8.85 -206.173
- 91 107.333 1279 4 1 75.85 -6.35523 -84.5544
- 91 100.193 1280 4 1 76.05 -6.22056 -84.6162
- 91 77.9627 1281 4 1 76.2501 -6.00664 -84.6835
- 91 307.411 879 4 0 77.0599 -4.2497 -85.85
- 91 10.2984 1292 4 1 78.6239 -3.63504 -84.8498
- 91 97.7881 1293 4 1 78.65 -3.60983 -84.8181
- 91 73.9315 1294 4 1 78.85 -3.50201 -84.6279
- 91 297.805 1295 4 1 79.0507 -3.60682 -84.5271
- 91 11.0614 1296 4 1 79.2503 -3.61736 -84.4516
- 91 40.5914 869 4 0 76.0518 -6.09324 -85.85
- 91 89.5516 870 4 0 76.0884 -6.0499 -86.0131
- 91 137.272 645 4 0 83.9752 -50.9746 -86.25
- 91 36.3979 644 4 0 83.9155 -51.05 -86.1534
- 91 146.669 646 4 0 83.6684 -50.8499 -86.0761
- 91 93.1469 647 4 0 83.7296 -50.65 -86.0026
- 91 80.2014 1319 4 1 84.0253 -50.5136 -84.8499
- 91 185.978 1320 4 1 84.05 -50.5769 -84.7611
-Number of digits in this event = 56
+Number of tracker hits in this event = 64
+ 91 120.397 698 11 1 -40.3826 36.7181 125.55
+ 91 137.962 1083 11 0 -40.3829 36.7194 124.15
+ 91 119.188 698 10 1 -40.3864 36.7434 95.55
+ 91 105.124 1083 10 0 -40.3868 36.7439 94.15
+ 91 259.987 698 9 1 -40.3914 36.7584 65.55
+ 91 122.095 1083 9 0 -40.3908 36.7598 64.15
+ 91 93.8586 698 8 1 -40.3764 36.7875 35.55
+ 91 181.7 1083 8 0 -40.3758 36.7891 34.15
+ 91 117.727 698 7 1 -40.368 36.809 5.55
+ 91 157.298 1083 7 0 -40.3687 36.811 4.15
+ 91 111.069 698 6 1 -40.3735 36.8541 -24.45
+ 91 92.5083 1084 6 0 -40.3715 36.8568 -25.85
+ 91 123.347 698 5 1 -40.3376 36.9022 -54.45
+ 91 121.113 1084 5 0 -40.3369 36.9034 -55.85
+ 91 129.104 698 4 1 -40.3153 36.9294 -84.45
+ 91 180.866 1084 4 0 -40.3142 36.9299 -85.85
+ 91 112.502 698 3 1 -40.2968 36.9326 -114.45
+ 91 92.5525 1084 3 0 -40.2941 36.9326 -115.85
+ 91 143.814 699 2 1 -40.2363 36.9294 -144.45
+ 91 112.021 1084 2 0 -40.2329 36.9297 -145.85
+ 91 159.272 699 1 1 -40.1609 36.9324 -174.45
+ 91 429.23 1084 1 0 -40.1605 36.9357 -175.85
+ 91 119.672 699 0 1 -40.1383 36.9991 -204.45
+ 91 262.156 1084 0 0 -40.1411 36.992 -205.85
+ 91 58.0878 1084 8 0 -40.3697 36.85 33.9559
+ 91 311.261 703 7 1 -39.4446 46.4044 5.54984
+ 91 162.069 702 7 1 -39.45 46.4241 5.52965
+ 91 39.1362 1140 7 0 -39.4894 48.1193 4.15
+ 91 95.0963 1141 7 0 -39.4957 48.25 4.04389
+ 91 35.592 1142 7 0 -39.5109 48.45 3.82401
+ 91 161.358 1207 7 0 -33.4817 61.6246 3.75
+ 91 2.46864 1206 7 0 -33.4528 61.45 4.14112
+ 91 59.5884 734 7 1 -33.2415 60.5677 5.15003
+ 91 90.1024 733 7 1 -33.25 60.4619 5.31961
+ 91 311.2 732 7 1 -33.5257 60.4275 5.55
+ 91 129.582 731 7 1 -33.65 60.2877 5.43951
+ 91 35.32 687 0 1 -42.6072 -68.9622 -204.85
+ 91 294.778 95 7 1 -160.956 -84.453 5.15
+ 91 66.3729 94 7 1 -161.15 -84.5699 5.47978
+ 91 53.9674 912 5 1 2.51728 89.3311 -54.45
+ 91 155.77 913 5 1 2.65 89.3157 -54.5681
+ 91 0.333885 914 5 1 2.85 89.2319 -54.8489
+ 91 33.0197 1343 5 0 3.59763 88.6929 -55.85
+ 91 133.373 1342 5 0 3.66348 88.65 -55.9622
+ 91 51.9153 1333 5 0 1.4001 86.7955 -56.2498
+ 91 84.347 1334 5 0 1.35968 86.85 -56.0561
+ 91 39.868 902 5 1 0.545777 87.0463 -54.8496
+ 91 72.5121 901 5 1 0.45 87.0586 -54.7392
+ 91 142.741 900 5 1 0.249936 87.1412 -54.5056
+ 91 376.156 1331 5 0 0.430219 86.3182 -55.85
+ 91 69.6608 697 10 1 -40.4506 36.7665 95.5106
+ 91 70.5776 696 10 1 -40.6505 36.748 95.3953
+ 91 63.665 695 10 1 -40.85 36.7527 95.271
+ 91 155.668 1085 10 0 -42.3944 37.0544 94.15
+ 91 118.246 1044 10 0 -67.1089 28.9982 93.7503
+ 91 56.8774 1045 10 0 -67.2859 29.05 94.0552
+ 91 23.2096 559 10 1 -68.1992 29.2789 95.15
+ 91 125.365 558 10 1 -68.2502 29.2847 95.1983
+ 91 303.524 698 1 1 -40.355 36.9447 -174.45
+ 91 112.546 693 0 1 -41.4365 36.6896 -204.45
+ 91 33.9883 692 0 1 -41.45 36.6853 -204.748
+ 91 155.058 1083 0 0 -41.4979 36.6665 -205.85
+ 91 116.609 685 1 1 -42.85 38.7306 -174.831
+ 91 175.404 698 0 1 -40.4199 37.0411 -204.45
+Number of digits in this event = 31
Using G4ParticleGun ...
-9.35557 LIN
+8.74223 LIN
e-
Event: 92
-Number of tracker hits in this event = 17
- 92 265.076 937 7 1 7.53634 147.348 5.55
- 92 114.725 1635 7 0 7.53665 147.348 4.15
- 92 106.762 937 6 1 7.54367 147.355 -24.45
- 92 114.305 1636 6 0 7.54356 147.355 -25.85
- 92 104.433 937 5 1 7.54194 147.352 -54.45
- 92 117.391 1636 5 0 7.541 147.352 -55.85
- 92 101.19 937 4 1 7.51867 147.344 -84.45
- 92 113.672 1635 4 0 7.51724 147.344 -85.85
- 92 121.226 937 3 1 7.48644 147.343 -114.45
- 92 187.613 1635 3 0 7.48532 147.344 -115.85
- 92 127.224 937 2 1 7.46221 147.351 -144.45
- 92 121.021 1635 2 0 7.46054 147.349 -145.85
- 92 145.257 936 1 1 7.42258 147.308 -174.45
- 92 121.691 1635 1 0 7.4186 147.309 -175.85
- 92 108.507 936 0 1 7.33477 147.32 -204.45
- 92 140.144 1635 0 0 7.33385 147.327 -205.85
- 92 102.907 1716 1 0 31.0176 163.521 -176.25
-Number of digits in this event = 11
+Number of tracker hits in this event = 60
+ 92 111.922 1586 8 1 137.499 16.2281 35.55
+ 92 140.973 980 8 0 137.499 16.2289 34.15
+ 92 167.902 1586 7 1 137.494 16.2423 5.55
+ 92 111.916 980 7 0 137.494 16.241 4.15
+ 92 119.152 1586 6 1 137.491 16.2161 -24.45
+ 92 188.697 980 6 0 137.491 16.2145 -25.85
+ 92 203.495 1586 5 1 137.495 16.1845 -54.45
+ 92 102.649 980 5 0 137.495 16.1829 -55.85
+ 92 121.731 1586 4 1 137.509 16.1523 -84.45
+ 92 121.14 980 4 0 137.508 16.1512 -85.85
+ 92 296.018 1586 3 1 137.502 16.1236 -114.45
+ 92 242.723 980 3 0 137.502 16.1224 -115.85
+ 92 137.62 1586 2 1 137.506 16.0976 -144.45
+ 92 276.097 980 2 0 137.506 16.0957 -145.85
+ 92 225.996 1586 1 1 137.511 16.0567 -174.45
+ 92 139.113 980 1 0 137.511 16.0561 -175.85
+ 92 119.385 1586 0 1 137.514 16.0436 -204.45
+ 92 230.012 979 0 0 137.515 16.0444 -205.85
+ 92 222.584 636 3 1 -52.6869 140.61 -114.45
+ 92 210.131 1627 1 1 145.676 -153.783 -174.85
+ 92 132.664 1009 2 0 150.566 21.8947 -146.25
+ 92 104.469 1654 2 1 151.096 21.987 -144.85
+ 92 63.1121 1655 2 1 151.15 22.0062 -144.669
+ 92 82.2402 938 3 0 170.809 7.78543 -116.25
+ 92 53.365 937 3 0 171.003 7.64953 -115.998
+ 92 36.0129 1758 3 1 171.868 6.96669 -114.849
+ 92 266.148 1759 3 1 171.95 6.90061 -114.743
+ 92 185.265 1760 3 1 172.15 6.70448 -114.458
+ 92 111.214 979 1 0 137.47 16.0038 -175.85
+ 92 145.026 1581 0 1 136.377 15.9397 -204.45
+ 92 8.51755 1580 0 1 136.35 15.9308 -204.809
+ 92 152.944 675 3 0 51.7574 -44.8914 -116.25
+ 92 187.784 676 3 0 52.0988 -44.85 -116.009
+ 92 149.272 677 3 0 52.285 -44.65 -115.97
+ 92 40.0792 721 3 0 53.0244 -35.8236 -116.25
+ 92 11.466 781 3 0 85.5503 -23.7754 -116.25
+ 92 220.691 1584 2 1 137.081 16.1927 -144.45
+ 92 110.216 1588 1 1 137.94 15.6796 -174.45
+ 92 235.392 977 1 0 137.965 15.6339 -175.85
+ 92 106.743 1591 0 1 138.518 14.8643 -204.45
+ 92 112.133 973 0 0 138.559 14.8047 -205.85
+ 92 135.874 1516 2 1 123.423 117.581 -144.85
+ 92 149.86 1587 3 1 137.55 16.1726 -114.503
+ 92 165.259 981 3 0 137.825 16.3423 -115.85
+ 92 168.267 1615 2 1 143.297 20.2066 -144.45
+ 92 169.673 1616 2 1 143.35 20.1906 -144.598
+ 92 114.238 1000 2 0 143.828 20.1256 -145.85
+ 92 88.5511 1675 1 1 155.299 18.2739 -174.45
+ 92 108.183 1676 1 1 155.35 18.2561 -174.576
+ 92 98.1381 990 1 0 155.885 18.0909 -175.851
+ 92 44.2788 989 1 0 156.004 18.0499 -176.126
+ 92 2.96058 1740 0 1 168.344 13.514 -204.45
+ 92 131.415 1741 0 1 168.35 13.5094 -204.461
+ 92 34.7365 964 0 0 169.046 12.8836 -205.85
+ 92 128.54 963 0 0 169.082 12.85 -205.922
+ 92 35.2242 984 2 0 144.743 16.9406 -145.85
+ 92 102.769 983 2 0 144.76 16.85 -145.873
+ 92 8.46071 982 2 0 144.787 16.65 -145.868
+ 92 236.603 1634 2 1 147.053 12.3972 -144.85
+ 92 282.636 1635 2 1 147.15 12.1229 -144.476
+Number of digits in this event = 35
Using G4ParticleGun ...
-4.86034 LIN
+8.06584 LIN
e-
Event: 93
-Number of tracker hits in this event = 32
- 93 114.797 570 11 1 -65.9249 -24.5295 125.55
- 93 127.658 777 11 0 -65.9256 -24.5296 124.15
- 93 131.919 570 10 1 -65.9415 -24.5317 95.55
- 93 114.328 777 10 0 -65.9429 -24.5287 94.15
- 93 113.368 570 9 1 -65.965 -24.4577 65.55
- 93 117.022 777 9 0 -65.9663 -24.4545 64.15
- 93 120.026 570 8 1 -65.9894 -24.3819 35.55
- 93 84.0887 778 8 0 -65.9891 -24.3771 34.15
- 93 190.375 570 7 1 -65.982 -24.2793 5.55
- 93 132.627 778 7 0 -65.9822 -24.2758 4.15
- 93 153.587 570 6 1 -65.9953 -24.2127 -24.45
- 93 117.454 779 6 0 -65.9995 -24.2065 -25.85
- 93 99.5131 569 5 1 -66.0839 -24.0846 -54.45
- 93 106.826 779 5 0 -66.0905 -24.0799 -55.85
- 93 100.464 569 4 1 -66.2135 -23.9643 -84.45
- 93 133.256 780 4 0 -66.22 -23.9617 -85.85
- 93 113.322 568 3 1 -66.3418 -23.891 -114.45
- 93 117.595 780 3 0 -66.3476 -23.8894 -115.85
- 93 115.363 567 2 1 -66.4684 -23.8462 -144.45
- 93 184.794 781 2 0 -66.4726 -23.8427 -145.85
- 93 199.102 567 1 1 -66.5643 -23.774 -174.45
- 93 168.562 781 1 0 -66.5686 -23.7728 -175.85
- 93 124.012 567 0 1 -66.6462 -23.772 -204.45
- 93 108.579 781 0 0 -66.6455 -23.7684 -205.85
- 93 8.62525 366 0 1 -106.75 -21.1629 -204.642
- 93 149.24 109 2 1 -158.181 -106.891 -144.85
- 93 116.67 571 6 1 -65.85 -24.1689 -24.528
- 93 67.1018 572 6 1 -65.65 -24.4401 -24.7544
- 93 52.0709 771 6 0 -65.5687 -25.7162 -25.85
- 93 126.836 770 6 0 -65.5563 -25.8507 -25.9906
- 93 29.0945 769 6 0 -65.6712 -26.05 -26.1981
- 93 148.813 788 6 0 -32.1532 -22.2946 -26.25
-Number of digits in this event = 17
+Number of tracker hits in this event = 126
+ 93 164.168 1107 11 1 41.5165 43.5363 125.55
+ 93 229.568 1117 11 0 41.5172 43.5377 124.15
+ 93 114.239 1107 10 1 41.5333 43.5682 95.55
+ 93 124.204 1117 10 0 41.5348 43.5687 94.15
+ 93 173.414 1107 9 1 41.5634 43.58 65.55
+ 93 179.76 1117 9 0 41.5656 43.5807 64.15
+ 93 128.234 1107 8 1 41.6042 43.6014 35.55
+ 93 121.521 1117 8 0 41.6061 43.6038 34.15
+ 93 168.756 1107 7 1 41.6495 43.6616 5.55
+ 93 107.686 1118 7 0 41.6508 43.6657 4.15
+ 93 178.491 1108 6 1 41.6728 43.7464 -24.45
+ 93 198.923 1118 6 0 41.6739 43.7513 -25.85
+ 93 133.316 1108 5 1 41.6917 43.85 -54.45
+ 93 124.225 1119 5 0 41.6932 43.8547 -55.85
+ 93 381.36 1108 4 1 41.7258 43.9465 -84.45
+ 93 110.809 1119 4 0 41.7282 43.9506 -85.85
+ 93 782.306 1108 3 1 41.7828 44.0334 -114.45
+ 93 413.756 1119 3 0 41.7836 44.037 -115.85
+ 93 335.262 1108 2 1 41.7962 44.1121 -144.45
+ 93 96.2437 1120 2 0 41.7971 44.1156 -145.85
+ 93 160.194 1108 1 1 41.8189 44.1835 -174.45
+ 93 438.221 1120 1 0 41.8211 44.1898 -175.85
+ 93 457.973 1109 0 1 41.8705 44.326 -204.45
+ 93 386.597 1121 0 0 41.8723 44.3352 -205.85
+ 93 29.1518 191 7 1 -141.95 132.221 5.24407
+ 93 1.7895 282 7 0 -131.695 -123.706 3.75011
+ 93 17.0271 780 7 0 -114.661 -23.9708 3.75
+ 93 451.381 1108 0 1 41.8085 44.2626 -204.45
+ 93 379.381 1117 0 0 41.915 43.5993 -205.85
+ 93 521.031 1107 0 1 41.6499 44.3075 -204.592
+ 93 1.33668 1106 0 1 41.45 44.2456 -204.452
+ 93 345.68 1109 1 1 41.8538 44.1862 -174.45
+ 93 104.824 1120 0 0 41.992 44.2429 -205.85
+ 93 100.6 1085 10 0 -24.9046 37.2129 93.75
+ 93 4.12561 1297 1 0 -16.268 79.524 -176.25
+ 93 115.252 1123 0 0 41.9015 44.7142 -205.85
+ 93 87.3816 1089 0 0 47.6824 37.9031 -206.25
+ 93 126.713 1088 0 0 47.7034 37.85 -206.193
+ 93 100.506 1087 0 0 47.7672 37.65 -205.972
+ 93 163.283 1118 0 1 43.8181 35.988 -204.85
+ 93 281.118 1119 0 1 43.85 35.8949 -204.656
+ 93 28.9195 1120 0 1 44.05 35.6364 -204.759
+ 93 71.7473 1077 0 0 43.3556 35.537 -205.85
+ 93 78.2684 1119 1 0 41.8745 44.0499 -176.08
+ 93 430.551 744 1 0 24.1581 -31.0958 -176.25
+ 93 51.0057 1116 0 1 43.2912 45.1884 -204.85
+ 93 245.943 1118 4 0 41.6538 43.696 -85.8503
+ 93 108.876 1124 3 0 41.8115 44.9714 -115.85
+ 93 451.951 1112 2 1 42.5583 45.1765 -144.45
+ 93 28.5125 1125 2 0 42.6193 45.2461 -145.851
+ 93 208.526 1126 2 0 42.6228 45.25 -145.932
+ 93 161.336 1131 1 0 41.9969 46.4111 -175.85
+ 93 108.494 1113 0 1 42.7976 42.4917 -204.45
+ 93 16.0889 1112 0 0 42.6885 42.4515 -205.85
+ 93 96.0272 1111 0 0 42.6833 42.45 -205.919
+ 93 115.311 1109 2 1 42.0343 41.1371 -144.45
+ 93 121.213 1110 2 1 42.05 41.1096 -144.79
+ 93 128.92 1104 2 0 42.105 41.0287 -145.85
+ 93 136.263 1117 1 1 43.565 38.5488 -174.45
+ 93 124.436 1090 1 0 43.6669 38.2448 -175.85
+ 93 106.24 1129 0 1 45.9499 31.7876 -204.45
+ 93 106.466 1057 0 0 46.043 31.5796 -205.85
+ 93 96.5627 1109 3 1 41.9794 43.9664 -114.45
+ 93 23.7116 1110 3 1 42.05 43.8835 -114.758
+ 93 559.302 1117 3 0 42.2909 43.621 -115.85
+ 93 30.3921 1141 2 1 48.4112 37.0895 -144.45
+ 93 153.919 1142 2 1 48.45 37.0299 -144.53
+ 93 71.6045 1080 2 0 48.9705 36.1329 -145.85
+ 93 164.004 1079 2 0 49.0241 36.05 -145.984
+ 93 100.909 1212 1 1 62.5796 15.7992 -174.45
+ 93 26.8105 1211 1 1 62.4499 15.8055 -174.774
+ 93 121.197 979 1 0 61.8885 15.9369 -175.85
+ 93 46.6394 1078 2 0 48.9618 35.8497 -145.951
+ 93 100.25 1077 2 0 48.9341 35.65 -145.985
+ 93 104.341 1076 2 0 48.7402 35.4497 -146.06
+ 93 89.3566 1135 2 1 47.1926 35.3538 -144.85
+ 93 52.3078 1134 2 1 47.05 35.3964 -144.733
+ 93 66.4236 1133 2 1 46.8499 35.4666 -144.659
+ 93 64.7453 1132 2 1 46.65 35.4939 -144.656
+ 93 65.7022 1131 2 1 46.45 35.5057 -144.604
+ 93 87.9514 1130 2 1 46.2499 35.5362 -144.646
+ 93 61.6887 1129 2 1 46.05 35.5502 -144.787
+ 93 100.082 1075 2 0 43.4385 35.1084 -145.85
+ 93 138.601 1111 2 1 42.3663 35.4694 -144.85
+ 93 342.09 1132 0 0 41.7309 46.466 -205.85
+ 93 36.1637 1131 0 0 41.7372 46.45 -206.138
+ 93 61.0742 1133 0 0 41.6591 46.8055 -205.85
+ 93 99.2645 1134 0 0 41.6542 46.8501 -206.09
+ 93 100.539 1107 2 1 41.6303 43.7455 -144.451
+ 93 202.817 1118 2 0 41.8352 43.7398 -145.85
+ 93 133.156 1117 2 0 41.8572 43.65 -146.171
+ 93 101.096 1115 1 1 43.1822 24.3713 -174.45
+ 93 29.7693 1116 1 1 43.25 24.316 -174.671
+ 93 90.2424 1019 1 0 43.1103 23.9302 -175.85
+ 93 30.4424 1018 1 0 43.1 23.85 -176.147
+ 93 54.078 1099 1 0 46.8461 39.9674 -176.25
+ 93 137.136 1100 1 0 46.833 40.05 -176.156
+ 93 201.087 1101 1 0 46.7755 40.2501 -176.009
+ 93 37.8495 1102 1 0 46.6989 40.4508 -175.906
+ 93 129.31 1130 1 1 46.2276 42.3412 -174.85
+ 93 123.593 1129 1 1 46.05 42.6831 -174.645
+ 93 2.04466 1128 1 1 45.85 42.8834 -174.451
+ 93 246.863 1105 2 1 41.096 45.2409 -144.45
+ 93 3.73585 1104 2 1 41.05 45.2544 -144.833
+ 93 79.949 1092 1 1 38.4607 46.8059 -174.45
+ 93 31.288 1091 1 1 38.45 46.8083 -174.752
+ 93 154.254 1133 1 0 38.4082 46.8089 -175.85
+ 93 104.991 1084 0 1 36.9115 46.9324 -204.451
+ 93 88.1182 1135 0 0 37.0929 47.05 -205.931
+ 93 118.709 1117 4 0 41.665 43.6392 -85.85
+ 93 81.197 1107 1 1 41.6436 43.5658 -174.451
+ 93 107.802 1117 1 0 41.6762 43.5965 -175.85
+ 93 120.172 1111 0 1 42.3816 44.1216 -204.45
+ 93 74.6603 1234 0 0 21.7381 66.85 -206.032
+ 93 200.315 1116 11 0 41.5047 43.4497 123.81
+ 93 4.92924 1115 11 0 41.4432 43.25 123.783
+ 93 245.589 1107 3 1 41.601 43.6627 -114.45
+ 93 110.109 1111 2 0 42.0953 42.4197 -145.85
+ 93 105.774 1097 1 1 39.5559 40.5663 -174.45
+ 93 141.032 1095 0 1 39.2272 36.4267 -204.45
+ 93 133.021 1079 0 0 39.1572 36.0406 -205.85
+ 93 177.129 1118 3 0 41.608 43.6604 -115.85
+ 93 22.9644 1113 1 1 42.8457 45.3183 -174.45
+ 93 78.0934 1114 1 1 42.85 45.3218 -174.545
+ 93 126.496 1126 1 0 42.9358 45.351 -175.85
+ 93 99.2055 1123 0 1 44.8257 46.3188 -204.45
+Number of digits in this event = 59
Using G4ParticleGun ...
-9.80723 LIN
+3.66676 LIN
e-
Event: 94
-Number of tracker hits in this event = 166
- 94 113.149 1064 11 1 32.8619 37.3202 125.55
- 94 120.468 1086 11 0 32.8617 37.3207 124.15
- 94 420.256 1064 10 1 32.8552 37.3276 95.55
- 94 574.189 1086 10 0 32.8547 37.3272 94.15
- 94 138.507 1063 9 1 32.8451 37.3152 65.55
- 94 365.059 1086 9 0 32.8439 37.3148 64.15
- 94 335.676 1063 8 1 32.8217 37.3044 35.55
- 94 404.865 1086 8 0 32.8201 37.3041 34.15
- 94 234.961 1063 7 1 32.7844 37.2978 5.55
- 94 241.202 1086 7 0 32.7823 37.2964 4.15
- 94 326.357 1063 6 1 32.7419 37.2714 -24.45
- 94 97.4867 1086 6 0 32.7414 37.2702 -25.85
- 94 365.885 1063 5 1 32.7309 37.2468 -54.45
- 94 338.199 1085 5 0 32.7296 37.2437 -55.85
- 94 128.546 1063 4 1 32.7017 37.1741 -84.45
- 94 243.349 1085 4 0 32.6999 37.1701 -85.85
- 94 124.166 1063 3 1 32.6641 37.0957 -114.45
- 94 111.945 1085 3 0 32.6631 37.0912 -115.85
- 94 228.257 1062 2 1 32.6392 36.9979 -144.45
- 94 175.638 1084 2 0 32.6378 36.9934 -145.85
- 94 99.3617 1062 1 1 32.6091 36.9002 -174.45
- 94 159.829 1084 1 0 32.6072 36.8959 -175.85
- 94 247.177 1062 0 1 32.5686 36.8054 -204.45
- 94 144.325 1083 0 0 32.5666 36.8006 -205.85
- 94 91.2002 459 2 1 -88.0656 165.311 -144.85
- 94 273.951 886 2 1 -2.68737 -142.552 -144.45
- 94 141.356 1466 8 0 -48.6703 113.507 33.75
- 94 84.9994 1061 0 1 32.45 37.0844 -204.499
- 94 242.148 1060 0 1 32.25 37.0073 -204.634
- 94 88.1722 1059 0 1 32.0498 36.8197 -204.735
- 94 99.7306 1058 0 1 31.85 36.6405 -204.803
- 94 60.3841 1057 0 1 31.65 36.4765 -204.83
- 94 153.492 1057 0 0 24.1883 31.5588 -205.85
- 94 99.4383 1056 0 0 24.0424 31.45 -205.858
- 94 35.4568 1055 0 0 23.9727 31.25 -206.17
- 94 10.2336 234 7 1 -133.15 97.6515 5.21447
- 94 76.6361 1397 8 0 -56.0858 99.6076 33.75
- 94 0.840509 627 8 1 -54.6238 100.72 35.15
- 94 110.458 628 8 1 -54.45 100.921 35.3726
- 94 6.001 1557 8 0 -153.09 131.735 33.75
- 94 112.687 1558 8 0 -153.098 131.75 33.7638
- 94 54.5311 1559 8 0 -153.165 131.95 34.069
- 94 412.022 133 8 1 -153.457 134.062 35.1504
- 94 101.834 134 8 1 -153.35 134.659 35.2443
- 94 52.6891 132 8 1 -153.55 135.094 35.2851
- 94 292.715 131 8 1 -153.75 135.187 35.2758
- 94 294.436 130 8 1 -153.95 135.273 35.2872
- 94 152.622 1086 5 0 32.6398 37.3045 -55.8502
- 94 124.297 1041 4 1 28.409 38.6077 -84.45
- 94 41.0665 1096 4 0 27.9731 39.3644 -85.85
- 94 96.4344 1097 4 0 27.9255 39.45 -85.9834
- 94 6.3799 1098 4 0 27.8308 39.65 -86.2283
- 94 33.5512 996 3 1 19.3464 64.6957 -114.45
- 94 70.7824 997 3 1 19.45 64.7624 -114.495
- 94 90.0734 998 3 1 19.65 64.8909 -114.561
- 94 73.2442 999 3 1 19.8502 65.0086 -114.601
- 94 97.4436 1000 3 1 20.05 65.103 -114.597
- 94 101.12 1001 3 1 20.2501 65.2075 -114.588
- 94 179.484 1002 3 1 20.4504 65.3512 -114.547
- 94 63.29 1003 3 1 20.65 65.4948 -114.549
- 94 67.1504 1004 3 1 20.85 65.638 -114.549
- 94 121.711 1005 3 1 21.05 65.7923 -114.525
- 94 28.8493 1006 3 1 21.25 65.9677 -114.457
- 94 140.454 1067 4 1 33.4914 36.6551 -84.4504
- 94 124.684 1082 4 0 33.5692 36.6472 -85.85
- 94 108.711 1084 3 1 36.9659 28.9143 -114.45
- 94 167.077 1042 3 0 37.1252 28.5806 -115.85
- 94 106.438 1104 2 1 40.9545 22.2444 -144.45
- 94 37.8189 1105 2 1 41.05 22.1475 -144.742
- 94 71.1411 1008 2 0 41.4549 21.7367 -145.85
- 94 83.5002 1007 2 0 41.5429 21.65 -146.091
- 94 122.327 1157 1 1 51.5595 12.0808 -174.451
- 94 19.2543 956 1 0 51.5831 11.2814 -175.85
- 94 112.229 955 1 0 51.5843 11.25 -175.906
- 94 197.279 1161 0 1 52.3368 -5.18778 -204.45
- 94 0.278963 870 0 0 52.4226 -6.04954 -205.85
- 94 97.2034 869 0 0 52.4226 -6.05 -205.851
- 94 26.0308 868 0 0 52.4315 -6.25 -206.167
- 94 244.542 1064 9 1 32.8597 37.3941 65.55
- 94 255.826 1085 8 0 32.7238 37.0978 34.15
- 94 108.139 1064 7 1 32.9528 36.6138 5.55
- 94 155.563 1082 7 0 32.95 36.594 4.15
- 94 127.214 1064 6 1 32.896 36.1619 -24.45
- 94 132.248 1080 6 0 32.8833 36.124 -25.85
- 94 141.083 1062 5 1 32.6101 35.3256 -54.45
- 94 105.802 1076 5 0 32.5838 35.2919 -55.85
- 94 280.954 1059 4 1 32.0192 34.6704 -84.45
- 94 138.209 1072 4 0 31.9417 34.6098 -85.85
- 94 121.051 1051 3 1 30.2929 33.2873 -114.45
- 94 120.359 1065 3 0 30.2306 33.2047 -115.85
- 94 120.638 1044 2 1 28.9255 31.5191 -144.45
- 94 139.274 1057 2 0 28.9767 31.4949 -145.85
- 94 78.8904 1049 1 1 30.0356 31.0922 -174.45
- 94 145.928 1050 1 1 30.05 31.0977 -174.669
- 94 104.568 1055 1 0 30.1248 31.1272 -175.85
- 94 232.427 1064 4 1 33.0157 35.0102 -84.4502
- 94 287.511 1074 4 0 32.9725 34.9674 -85.8501
- 94 143.537 1058 3 1 31.7045 33.9912 -114.45
- 94 135.773 1069 3 0 31.6605 33.9614 -115.85
- 94 126.668 1051 2 1 30.4456 34.0754 -144.45
- 94 146.296 1069 2 0 30.3559 34.0488 -145.85
- 94 105.518 1042 1 1 28.4751 33.1794 -174.45
- 94 32.9172 1041 1 1 28.45 33.1468 -174.729
- 94 122.025 1064 1 0 28.3398 33.0437 -175.85
- 94 118.833 1024 0 1 24.919 30.6072 -204.45
- 94 12.3983 1023 0 1 24.8499 30.5739 -204.812
- 94 52.8166 1052 0 0 24.6581 30.4661 -205.85
- 94 133.133 1051 0 0 24.6297 30.45 -206.008
- 94 112.987 1065 3 1 33.2427 34.228 -114.45
- 94 148.307 1070 3 0 33.2618 34.2286 -115.85
- 94 116.58 1066 2 1 33.3973 33.8798 -144.45
- 94 161.679 1068 2 0 33.4686 33.8492 -145.85
- 94 348.489 1073 1 1 34.7237 33.372 -174.45
- 94 209.194 1066 1 0 34.772 33.3811 -175.85
- 94 118.364 1076 0 1 35.4157 33.3193 -204.45
- 94 183.642 1065 0 0 35.4284 33.2355 -205.85
- 94 3.34645 1070 0 0 29.9136 34.25 -206.249
- 94 1.62545 1055 0 1 31.05 33.8385 -204.615
- 94 151.369 1072 1 1 34.6499 33.4707 -174.797
- 94 71.7793 1072 1 0 31.4057 34.569 -175.85
- 94 57.8309 1073 1 0 31.3234 34.65 -175.881
- 94 44.5789 1066 1 1 33.3467 35.7625 -174.85
- 94 65.4988 1067 1 1 33.45 35.7403 -174.818
- 94 279.288 1077 1 0 33.6463 35.6028 -175.85
- 94 26.4837 1387 0 1 97.55 -31.7679 -204.741
- 94 55.1783 910 2 0 41.3052 2.13361 -146.25
- 94 80.8185 909 2 0 41.276 2.05 -146.097
- 94 69.7769 1109 2 1 41.9682 1.02895 -144.85
- 94 114.565 1110 2 1 42.05 0.89835 -144.701
- 94 84.5022 1111 2 1 42.2501 0.766057 -144.464
- 94 84.6081 1112 2 1 42.45 0.683897 -144.627
- 94 116.098 1113 2 1 42.6501 0.618866 -144.697
- 94 20.1803 1114 2 1 42.8505 0.641262 -144.455
- 94 141.612 1064 8 1 32.9104 37.3345 35.55
- 94 126.576 1087 6 0 32.6622 37.5889 -25.85
- 94 116.474 1061 5 1 32.4306 37.6442 -54.45
- 94 119.633 1088 5 0 32.41 37.6525 -55.85
- 94 199.257 1088 4 0 31.9531 37.8177 -85.85
- 94 120.421 1056 3 1 31.3438 37.8723 -114.45
- 94 107.419 1089 3 0 31.3159 37.8605 -115.85
- 94 204.364 1053 2 1 30.7354 37.6068 -144.45
- 94 176.468 1087 2 0 30.7204 37.5827 -145.85
- 94 121.872 1051 1 1 30.3603 37.0946 -174.45
- 94 114.334 1085 1 0 30.3557 37.0581 -175.85
- 94 114.613 1051 0 1 30.2792 36.3415 -204.45
- 94 107.759 1081 0 0 30.2595 36.3171 -205.85
- 94 108.062 1129 1 1 45.8871 25.4858 -174.45
- 94 337.033 1061 2 1 32.4346 38.3107 -144.45
- 94 119.162 1090 2 0 32.3951 38.1961 -145.85
- 94 124.917 1058 1 1 31.7961 35.6891 -174.45
- 94 118.25 1052 0 1 30.5365 34.666 -204.45
- 94 124.59 1073 0 0 30.3728 34.6544 -205.85
- 94 101.367 1091 2 0 32.4286 38.3079 -145.85
- 94 131.677 1061 1 1 32.2815 38.1725 -174.45
- 94 212.024 1090 1 0 32.2905 38.1708 -175.85
- 94 98.9832 1089 0 0 32.6646 37.9569 -205.85
- 94 309.169 1084 8 0 32.6417 37.05 33.8541
- 94 406.199 1083 8 0 32.1277 36.85 33.9479
- 94 32.4507 1062 8 1 32.6497 37.0133 35.2525
- 94 241.144 1136 8 0 -54.5377 47.364 33.7502
- 94 193.281 1137 8 0 -54.7858 47.4501 34.0224
- 94 291.082 1138 8 0 -55.3829 47.65 34.1042
- 94 139.804 1088 8 0 -89.2195 37.8086 33.75
- 94 75.0068 1087 8 0 -89.0588 37.6494 34.0132
- 94 168.271 999 8 0 -98.2333 19.959 33.7501
- 94 36.5246 1000 8 0 -98.2944 20.05 33.7664
-Number of digits in this event = 86
-Using G4ParticleGun ...
-5.33873 LIN
+Number of tracker hits in this event = 37
+ 94 157.865 1295 11 1 79.2282 2.92323 125.55
+ 94 115.453 914 11 0 79.2299 2.92578 124.15
+ 94 135.025 1296 10 1 79.2604 2.97661 95.55
+ 94 126.825 914 10 0 79.2607 2.97921 94.15
+ 94 155.474 1296 9 1 79.2721 3.03928 65.55
+ 94 130.796 914 9 0 79.2753 3.04198 64.15
+ 94 213.705 1296 8 1 79.3542 3.09464 35.55
+ 94 140.97 915 8 0 79.3582 3.09945 34.15
+ 94 143.031 1297 7 1 79.4633 3.20523 5.55
+ 94 101.609 915 7 0 79.4687 3.21029 4.15
+ 94 243.697 1297 6 1 79.5877 3.30954 -24.45
+ 94 129.332 916 6 0 79.592 3.31726 -25.85
+ 94 160.591 1298 5 1 79.6771 3.50598 -54.45
+ 94 146.93 917 5 0 79.6873 3.51379 -55.85
+ 94 104.178 1299 4 1 79.9124 3.66355 -84.45
+ 94 140.559 918 4 0 79.9264 3.66205 -85.85
+ 94 106.251 1300 3 1 80.1826 3.63223 -114.45
+ 94 126.755 917 3 0 80.1916 3.62767 -115.85
+ 94 114.335 1301 2 1 80.3751 3.55582 -144.45
+ 94 123.167 917 2 0 80.3925 3.55117 -145.85
+ 94 394.496 1303 1 1 80.7862 3.46985 -174.45
+ 94 105.601 917 1 0 80.7937 3.47353 -175.85
+ 94 332.573 1303 0 1 80.732 3.75099 -204.45
+ 94 466.67 918 0 0 80.8757 3.76872 -205.85
+ 94 99.7044 428 2 0 12.5411 -94.5465 -146.25
+ 94 0.875118 427 2 0 12.5334 -94.55 -146.244
+ 94 217.512 1048 4 0 78.0647 29.8077 -86.25
+ 94 182.647 1047 4 0 77.7073 29.65 -86.1483
+ 94 98.6634 918 1 0 80.7067 3.8129 -175.85
+ 94 165.685 916 0 0 80.7081 3.41091 -205.85
+ 94 26.4976 1525 2 0 51.8975 125.298 -146.25
+ 94 121.573 1526 2 0 51.879 125.35 -146.218
+ 94 102.473 1527 2 0 51.9114 125.55 -146.19
+ 94 246.794 1299 0 1 80.0068 3.79155 -204.45
+ 94 20.8529 1295 6 1 79.2237 3.05583 -24.45
+ 94 158.865 1296 6 1 79.2504 3.08947 -24.7166
+ 94 133.106 921 6 0 78.0377 4.35533 -25.85
+Number of digits in this event = 27
+Using G4ParticleGun ...
+4.66321 LIN
e-
Event: 95
-Number of tracker hits in this event = 95
- 95 174.919 1423 10 0 -50.4577 104.836 94.15
- 95 134.982 647 9 1 -50.4605 104.843 65.55
- 95 118.348 1423 9 0 -50.4598 104.844 64.15
- 95 124.243 648 8 1 -50.449 104.866 35.55
- 95 137.041 1423 8 0 -50.4472 104.869 34.15
- 95 148.691 648 7 1 -50.4096 104.932 5.55
- 95 126.472 1423 7 0 -50.4067 104.935 4.15
- 95 257.866 648 6 1 -50.3443 105.006 -24.45
- 95 126.06 1424 6 0 -50.3426 105.009 -25.85
- 95 103.952 648 5 1 -50.3105 105.079 -54.45
- 95 114.137 1424 5 0 -50.3078 105.082 -55.85
- 95 152.403 648 4 1 -50.2618 105.13 -84.45
- 95 134.688 1424 4 0 -50.2615 105.13 -85.85
- 95 157.656 648 3 1 -50.2621 105.143 -114.45
- 95 104.354 1424 3 0 -50.2619 105.141 -115.85
- 95 116.873 648 2 1 -50.2585 105.093 -144.45
- 95 96.0085 1424 2 0 -50.2535 105.092 -145.85
- 95 192.211 649 1 1 -50.1312 105.09 -174.45
- 95 130.142 1424 1 0 -50.1163 105.101 -175.85
- 95 127.592 651 0 1 -49.7982 105.322 -204.45
- 95 131.038 1425 0 0 -49.7797 105.333 -205.85
- 95 113.382 649 0 1 -50.1863 105.03 -204.45
- 95 133.129 1424 0 0 -50.1248 105.004 -205.85
- 95 252.685 649 2 1 -50.1594 105.173 -144.451
- 95 279.722 1425 2 0 -50.1581 105.205 -145.85
- 95 235.216 650 1 1 -49.9975 106.162 -174.45
- 95 419.975 1429 1 0 -50.0518 106.124 -175.85
- 95 112.501 645 0 1 -50.8756 104.888 -204.45
- 95 13.3225 646 0 1 -50.85 104.814 -204.81
- 95 64.8648 1422 0 0 -50.7734 104.598 -205.85
- 95 41.6791 1421 0 0 -50.7568 104.55 -206.081
- 95 342.211 1427 1 0 -50.4944 105.615 -175.85
- 95 133.755 650 0 1 -49.9476 106.611 -204.45
- 95 113.927 1432 0 0 -49.8606 106.654 -205.85
- 95 86.6426 1351 0 0 -44.3657 90.4394 -206.25
- 95 106.126 646 6 1 -50.7074 104.574 -24.45
- 95 135.458 1421 6 0 -50.8327 104.395 -25.85
- 95 17.0436 1420 6 0 -50.8645 104.35 -26.1849
- 95 128.215 633 5 1 -53.2517 99.9604 -54.4501
- 95 79.1428 1395 5 0 -53.3297 99.285 -55.85
- 95 121.679 1394 5 0 -53.3416 99.15 -56.1303
- 95 225.399 628 4 1 -54.3628 85.0538 -84.45
- 95 147.043 1320 4 0 -54.3768 84.158 -85.8504
- 95 59.0175 1319 4 0 -54.3879 84.05 -86.0376
- 95 128.091 631 3 1 -53.8281 68.3665 -114.45
- 95 5.72604 632 3 1 -53.65 68.0702 -114.834
- 95 39.1656 1236 3 0 -53.109 67.3094 -115.85
- 95 97.5536 1235 3 0 -53.0663 67.2499 -115.926
- 95 32.769 1234 3 0 -52.9235 67.0496 -116.15
- 95 201.747 728 2 1 -34.4029 41.2115 -144.45
- 95 23.3715 729 2 1 -34.25 40.7759 -144.783
- 95 42.7323 1097 2 0 -33.9175 39.5661 -145.851
- 95 79.7362 1096 2 0 -33.884 39.4494 -145.954
- 95 81.1124 1095 2 0 -33.8296 39.2498 -146.124
- 95 91.3539 783 1 1 -23.3061 7.62394 -174.45
- 95 87.009 784 1 1 -23.25 7.56141 -174.587
- 95 147.125 935 1 0 -22.4384 7.18349 -175.85
- 95 21.6181 871 0 1 -5.67979 2.00869 -204.45
- 95 122.102 872 0 1 -5.65 1.96892 -204.477
- 95 461.148 873 0 1 -5.45 1.70094 -204.659
- 95 222.767 874 0 1 -5.24975 1.48381 -204.816
- 95 46.3097 899 0 0 -3.80207 -0.219676 -205.85
- 95 73.1882 898 0 0 -3.77805 -0.25 -205.868
- 95 99.409 897 0 0 -3.62492 -0.45 -205.972
- 95 64.1353 896 0 0 -3.50886 -0.65 -206.044
- 95 86.4714 895 0 0 -3.39294 -0.85 -206.104
- 95 151.97 894 0 0 -3.27415 -1.05 -206.132
- 95 73.4122 893 0 0 -3.14673 -1.25 -206.143
- 95 75.2753 892 0 0 -3.01207 -1.45 -206.175
- 95 59.1271 891 0 0 -2.87113 -1.65 -206.212
- 95 18.6287 890 0 0 -2.76584 -1.85031 -206.24
- 95 137.208 422 0 0 34.7667 -95.7158 -206.249
- 95 330.358 1066 0 1 33.3972 -95.4795 -204.85
- 95 174.664 1065 0 1 33.2499 -95.4003 -204.697
- 95 125.471 429 0 0 33.0254 -94.3083 -205.85
- 95 217.461 430 0 0 33.0011 -94.15 -206.119
- 95 199.605 431 0 0 33.1001 -93.9498 -206.042
- 95 102.598 1423 6 0 -50.3955 104.935 -25.85
- 95 120.959 649 5 1 -50.0903 104.926 -54.45
- 95 126.799 1423 5 0 -50.0774 104.879 -55.85
- 95 118.692 651 4 1 -49.8 103.877 -84.45
- 95 134.013 1418 4 0 -49.8002 103.852 -85.85
- 95 105.372 650 3 1 -49.8819 102.971 -114.45
- 95 98.3714 1413 3 0 -50.0158 102.879 -115.85
- 95 143.297 636 2 1 -52.7639 100.647 -144.45
- 95 124.995 1401 2 0 -52.9001 100.49 -145.85
- 95 136.343 621 1 1 -55.7717 97.3057 -174.45
- 95 20.0545 1385 1 0 -55.9203 97.3485 -175.85
- 95 111.244 1386 1 0 -55.9256 97.35 -175.9
- 95 297.454 604 0 1 -59.0857 98.1551 -204.45
- 95 113.951 1390 0 0 -59.2501 98.1936 -205.85
- 95 135.718 605 0 1 -58.89 96.9749 -204.45
- 95 49.1603 1394 0 0 -59.9129 99.022 -205.85
- 95 357.744 1395 0 0 -59.9043 99.15 -205.887
- 95 12.9685 1396 0 0 -59.754 99.35 -206.197
-Number of digits in this event = 51
+Number of tracker hits in this event = 33
+ 95 162.902 987 9 1 17.5768 -133.215 65.55
+ 95 114.304 234 9 0 17.577 -133.215 64.15
+ 95 103.188 987 8 1 17.5865 -133.204 35.55
+ 95 134.553 234 8 0 17.5853 -133.199 34.15
+ 95 137.471 987 7 1 17.5637 -133.115 5.55
+ 95 157.068 235 7 0 17.5669 -133.11 4.15
+ 95 122.312 987 6 1 17.6106 -133.013 -24.45
+ 95 112.05 235 6 0 17.617 -133.002 -25.85
+ 95 146.611 988 5 1 17.7588 -132.751 -54.45
+ 95 122.679 237 5 0 17.7685 -132.733 -55.85
+ 95 111.888 989 4 1 17.9705 -132.369 -84.45
+ 95 157.111 239 4 0 17.9822 -132.349 -85.85
+ 95 133.943 990 3 1 18.2237 -131.941 -114.45
+ 95 123.965 241 3 0 18.2357 -131.919 -115.85
+ 95 116.022 991 2 1 18.4232 -131.535 -144.45
+ 95 117.111 243 2 0 18.4337 -131.52 -145.85
+ 95 365.848 993 1 1 18.6758 -131.194 -174.45
+ 95 136.158 245 1 0 18.7197 -131.083 -175.85
+ 95 136.036 1000 0 1 20.1106 -128.884 -204.45
+ 95 114.874 256 0 0 20.3379 -128.844 -205.85
+ 95 294.353 244 1 0 18.6913 -131.221 -175.85
+ 95 116.841 995 0 1 19.0717 -131.451 -204.45
+ 95 115.86 243 0 0 19.0935 -131.468 -205.85
+ 95 318.23 994 0 1 18.8808 -131.299 -204.45
+ 95 135.487 244 0 0 18.8981 -131.31 -205.85
+ 95 155.377 238 4 0 18.057 -132.35 -86.0274
+ 95 205.358 989 1 1 18.0386 -132.228 -174.45
+ 95 52.4516 990 1 1 18.05 -132.227 -174.694
+ 95 205.418 239 1 0 18.1001 -132.232 -175.85
+ 95 119.272 239 0 0 19.0012 -132.309 -205.85
+ 95 170.489 991 0 1 18.2825 -132.047 -204.45
+ 95 105.315 240 0 0 18.2965 -132.044 -205.85
+ 95 39.4612 414 9 0 62.7893 -97.2437 63.75
+Number of digits in this event = 22
Using G4ParticleGun ...
-9.94107 LIN
+8.59259 LIN
e-
Event: 96
-Number of tracker hits in this event = 182
- 96 111.692 689 11 1 -42.1924 63.7996 125.55
- 96 277.915 1218 11 0 -42.1925 63.7996 124.15
- 96 246.84 689 10 1 -42.1954 63.8002 95.55
- 96 137.806 1218 10 0 -42.1948 63.7993 94.15
- 96 97.5345 689 9 1 -42.1824 63.7789 65.55
- 96 165.265 1218 9 0 -42.1803 63.7772 64.15
- 96 113.73 689 8 1 -42.1327 63.7467 35.55
- 96 112.788 1218 8 0 -42.132 63.7429 34.15
- 96 99.5335 689 7 1 -42.1074 63.667 5.55
- 96 130.29 1218 7 0 -42.1081 63.6607 4.15
- 96 188.235 689 6 1 -42.1508 63.5099 -24.45
- 96 99.4709 1217 6 0 -42.1579 63.5037 -25.85
- 96 269.924 688 5 1 -42.3357 63.4281 -54.45
- 96 206.152 1216 5 0 -42.3467 63.4263 -55.85
- 96 251.732 687 4 1 -42.5337 63.4186 -84.45
- 96 509.704 1216 4 0 -42.5403 63.4144 -85.85
- 96 333.965 686 3 1 -42.7029 63.3006 -114.45
- 96 503.685 1216 3 0 -42.7017 63.3018 -115.85
- 96 104.367 686 2 1 -42.6989 63.3492 -144.45
- 96 212.512 1216 2 0 -42.7036 63.3549 -145.85
- 96 129.545 686 1 1 -42.7881 63.4595 -174.45
- 96 142.793 1217 1 0 -42.7894 63.4559 -175.85
- 96 216.832 686 0 1 -42.8446 63.3943 -204.45
- 96 178.385 1216 0 0 -42.8434 63.3937 -205.85
- 96 412.988 1311 3 0 60.9363 82.359 -116.25
- 96 98.1472 1205 5 0 -127.388 61.1206 -56.25
- 96 161.242 1204 5 0 -127.658 61.05 -56.0548
- 96 103.941 257 5 1 -128.646 61.424 -54.85
- 96 165.847 256 5 1 -128.75 61.4502 -54.7145
- 96 862.588 689 5 1 -42.2238 63.3479 -54.45
- 96 448.645 1217 5 0 -42.1709 63.5006 -55.85
- 96 135.892 699 4 1 -40.1557 68.9325 -84.4506
- 96 121.23 1245 4 0 -40.0888 69.0687 -85.85
- 96 43.5403 710 3 1 -38.0262 70.8362 -114.45
- 96 71.2023 709 3 1 -38.05 70.8674 -114.617
- 96 55.3694 1254 3 0 -38.2493 71.0252 -115.85
- 96 69.1821 1255 3 0 -38.2803 71.05 -116.019
- 96 184.465 683 2 1 -43.3491 75.6733 -144.45
- 96 71.6329 682 2 1 -43.45 75.7175 -144.614
- 96 43.97 1279 2 0 -44.2011 76.02 -145.85
- 96 211.876 1280 2 0 -44.2757 76.0501 -145.974
- 96 5.50125 598 1 1 -60.444 82.9804 -174.45
- 96 134.24 597 1 1 -60.45 82.9835 -174.458
- 96 49.8001 596 1 1 -60.65 83.0788 -174.721
- 96 2.39891 1316 1 0 -61.5856 83.4462 -175.85
- 96 181.135 1317 1 0 -61.595 83.45 -175.861
- 96 87.7588 479 0 1 -84.099 95.727 -204.45
- 96 102.57 478 0 1 -84.25 95.8614 -204.639
- 96 97.1943 1382 0 0 -85.0923 96.6134 -205.85
- 96 64.9382 1383 0 0 -85.2483 96.75 -206.077
- 96 241.451 1215 5 0 -42.1476 63.2498 -55.9888
- 96 45.7363 1214 5 0 -42.0928 63.05 -55.9695
- 96 82.2669 691 5 1 -41.7889 62.8021 -54.85
- 96 133.962 692 5 1 -41.65 62.8516 -54.6709
- 96 95.9935 700 5 1 -39.9981 62.0793 -54.85
- 96 220.277 1213 5 0 -40.7514 62.8032 -55.8501
- 96 166.257 1201 4 0 -42.5327 60.4314 -85.8502
- 96 61.2495 681 3 1 -43.8006 54.7371 -114.45
- 96 75.817 680 3 1 -43.85 54.6918 -114.656
- 96 108.535 1171 3 0 -44.1219 54.4361 -115.85
- 96 180.487 646 2 1 -50.6537 48.7291 -144.45
- 96 68.5353 1139 2 0 -50.988 47.959 -145.85
- 96 64.2333 1138 2 0 -51.0289 47.85 -146.039
- 96 68.2855 620 1 1 -56.0214 32.0812 -174.45
- 96 70.4769 619 1 1 -56.0502 31.915 -174.634
- 96 79.667 1053 1 0 -56.3819 30.7381 -175.85
- 96 83.1166 1052 1 0 -56.4087 30.65 -175.94
- 96 55.1756 1051 1 0 -56.4761 30.45 -176.138
- 96 137.877 559 0 1 -68.1216 1.71328 -204.45
- 96 118.544 902 0 0 -68.4219 0.631679 -205.85
- 96 88.1907 901 0 0 -68.4828 0.45 -206.082
- 96 113.425 670 1 1 -45.8591 41.5141 -174.451
- 96 96.2619 1106 1 0 -45.9041 41.2965 -175.851
- 96 36.7405 1105 1 0 -45.9134 41.25 -176.121
- 96 131.133 669 0 1 -46.0927 36.144 -204.45
- 96 98.6344 1079 0 0 -46.0421 36.0333 -205.85
- 96 169.567 804 6 1 -19.1577 36.5404 -24.45
- 96 92.0465 720 3 1 -35.9148 68.2086 -114.45
- 96 120.846 1242 3 0 -36.3621 68.5641 -115.85
- 96 38.7695 963 0 0 -5.25702 12.85 -206.068
- 96 195.907 688 3 1 -42.3017 62.9313 -114.45
- 96 461.831 689 3 1 -42.25 62.9304 -114.547
- 96 188.409 1214 3 0 -41.5721 62.9547 -115.85
- 96 100.218 789 2 1 -22.1098 65.5372 -144.45
- 96 110.433 1228 2 0 -22.094 65.7421 -145.85
- 96 55.7274 774 1 1 -25.1058 72.4877 -174.45
- 96 50.6905 775 1 1 -25.05 72.4312 -174.649
- 96 193.918 1260 1 0 -24.4884 72.1789 -175.85
- 96 233.348 1523 1 0 24.2979 124.794 -176.25
- 96 131.387 1025 1 1 25.193 125.459 -174.85
- 96 78.5317 1026 1 1 25.25 125.502 -174.731
- 96 136.498 1213 3 0 -41.9033 62.8082 -115.85
- 96 72.3146 733 2 1 -33.2846 62.684 -144.45
- 96 107.161 734 2 1 -33.25 62.5749 -144.575
- 96 21.4264 1206 2 0 -32.9373 61.297 -145.85
- 96 89.375 1205 2 0 -32.9262 61.25 -145.896
- 96 63.7197 1204 2 0 -32.8847 61.05 -146.091
- 96 127.776 972 2 0 2.61898 14.6319 -146.25
- 96 62.7539 971 2 0 2.91455 14.45 -145.931
- 96 23.5503 923 2 1 4.81088 13.663 -144.85
- 96 63.5732 924 2 1 4.85 13.6473 -144.829
- 96 76.4923 925 2 1 5.05026 13.5643 -144.719
- 96 337.09 926 2 1 5.25 13.398 -144.597
- 96 106.147 927 2 1 5.45012 13.1288 -144.548
- 96 70.7864 959 2 0 5.97608 11.9616 -145.85
- 96 80.7042 958 2 0 6.00849 11.85 -145.967
- 96 41.3209 957 2 0 6.07988 11.65 -146.183
- 96 41.1948 1099 2 1 39.85 -22.654 -144.482
- 96 34.8254 500 0 0 -21.911 -79.9595 -206.25
- 96 67.1092 499 0 0 -21.8983 -80.05 -206.17
- 96 132.131 498 0 0 -21.9078 -80.25 -206.034
- 96 68.3416 497 0 0 -22.1719 -80.45 -205.995
- 96 2.4349 496 0 0 -22.2366 -80.65 -205.856
- 96 151.248 786 0 1 -22.8212 -81.789 -204.85
- 96 294.302 785 0 1 -22.85 -81.8884 -204.755
- 96 471.677 690 4 1 -42.0023 63.3564 -84.45
- 96 200.114 690 2 1 -42.0091 63.7325 -144.45
- 96 206.719 1218 2 0 -42.0159 63.7344 -145.85
- 96 260.443 689 1 1 -42.1482 63.7606 -174.45
- 96 246.074 1218 1 0 -42.1699 63.7558 -175.85
- 96 133.404 687 0 1 -42.5123 63.6675 -204.45
- 96 125.19 1218 0 0 -42.5444 63.6685 -205.85
- 96 129.882 958 2 1 11.65 -72.1445 -144.528
- 96 386.084 690 3 1 -41.9193 63.2851 -114.45
- 96 231.306 691 2 1 -41.7063 63.1914 -144.45
- 96 172.288 1215 2 0 -41.7009 63.1865 -145.85
- 96 235.298 692 1 1 -41.5883 63.0933 -174.45
- 96 114.846 1215 1 0 -41.5875 63.0858 -175.85
- 96 129.883 692 0 1 -41.5921 62.9717 -204.45
- 96 431.464 1214 0 0 -41.5907 62.9705 -205.85
- 96 100.157 1378 1 0 -71.3872 95.8601 -176.25
- 96 350.965 690 5 1 -42.05 63.4854 -54.6001
- 96 157.71 695 4 1 -40.9974 63.4031 -84.45
- 96 116.84 692 3 1 -41.5652 61.2158 -114.45
- 96 193.625 1204 3 0 -41.6017 61.0329 -115.85
- 96 154.192 688 2 1 -42.3108 57.0176 -144.45
- 96 13.5942 1184 2 0 -42.2984 56.8552 -145.85
- 96 106.598 1183 2 0 -42.298 56.85 -145.895
- 96 6.22748 1158 1 0 -42.0593 51.6535 -175.85
- 96 104.431 1157 1 0 -42.0561 51.65 -175.882
- 96 46.6117 704 0 1 -39.2425 48.3708 -204.45
- 96 78.6103 703 0 1 -39.25 48.3362 -204.601
- 96 303.658 1139 0 0 -39.3243 48.0346 -205.85
- 96 24.7118 1277 3 0 -47.1002 75.5913 -116.25
- 96 73.1083 1278 3 0 -47.1197 75.65 -116.165
- 96 63.8297 1279 3 0 -47.1382 75.85 -116.005
- 96 83.0492 1280 3 0 -47.2491 76.0501 -116.013
- 96 70.7383 1281 3 0 -47.294 76.2501 -116.134
- 96 134.871 1282 3 0 -47.3751 76.4503 -116.15
- 96 4.75788 1283 3 0 -47.4509 76.6501 -116.244
- 96 40.3675 1537 3 0 -31.0876 127.721 -116.25
- 96 122.287 1538 3 0 -31.0721 127.75 -116.243
- 96 95.2294 688 4 1 -42.313 63.5078 -84.45
- 96 329.684 1217 4 0 -42.3269 63.5134 -85.85
- 96 120.571 1215 3 0 -42.7216 63.2359 -115.85
- 96 13.0969 1200 2 0 -43.4538 60.056 -145.85
- 96 99.4731 1199 2 0 -43.4567 60.0499 -145.898
- 96 506.581 672 1 1 -45.5499 56.6037 -174.45
- 96 313.879 1181 1 0 -45.6598 56.3881 -175.85
- 96 104.995 661 0 1 -47.7973 52.0252 -204.45
- 96 126.078 1158 0 0 -47.9339 51.837 -205.85
- 96 170.769 866 3 0 108.416 -6.65 -116.209
- 96 413.812 671 1 1 -45.6501 56.5373 -174.643
- 96 331.522 1218 5 0 -42.0297 63.7046 -55.85
- 96 415.514 1218 4 0 -41.995 63.6823 -85.85
- 96 153.698 1217 3 0 -41.8981 63.5313 -115.85
- 96 262.377 693 1 1 -41.3877 63.056 -174.45
- 96 106.678 1214 1 0 -41.3631 63.0498 -175.85
- 96 118.562 696 0 1 -40.8361 62.9212 -204.45
- 96 349.353 1216 1 0 -41.6698 63.2991 -175.85
- 96 25.9516 451 7 1 -89.7388 -77.5278 5.15
- 96 190.343 1218 3 0 -42.0365 63.7301 -115.85
- 96 122.844 689 2 1 -42.175 63.8109 -144.45
- 96 175.056 688 1 1 -42.3758 64.0175 -174.45
- 96 185.747 1219 1 0 -42.391 64.0246 -175.85
- 96 126.076 1220 0 0 -42.7546 64.1676 -205.85
- 96 41.8107 698 0 1 -40.3033 57.3678 -204.45
- 96 73.166 699 0 1 -40.25 57.3686 -204.583
- 96 34.331 1186 0 0 -39.7503 57.4427 -205.85
- 96 97.302 1187 0 0 -39.698 57.45 -205.982
- 96 121.277 711 0 1 -37.786 63.0511 -204.45
- 96 195.78 690 10 1 -42.05 63.7861 95.4424
-Number of digits in this event = 92
-Using G4ParticleGun ...
-4.61474 LIN
+Number of tracker hits in this event = 43
+ 96 106.196 699 10 1 -40.1464 85.0126 95.55
+ 96 115.071 1325 10 0 -40.0159 85.099 94.15
+ 96 49.914 712 9 1 -37.4921 87.4856 65.55
+ 96 59.1335 713 9 1 -37.45 87.5427 65.3627
+ 96 137.487 1339 9 0 -37.2331 87.9558 64.1495
+ 96 33.2683 1340 9 0 -37.1883 88.05 63.8694
+ 96 114.266 740 8 1 -32.0454 97.4004 35.5499
+ 96 156.623 1388 8 0 -31.509 97.7907 34.15
+ 96 143.022 791 7 1 -21.8345 105.611 5.55
+ 96 113.466 1431 7 0 -21.5111 106.375 4.15
+ 96 24.6188 1432 7 0 -21.4372 106.55 3.84514
+ 96 102.403 827 6 1 -14.5577 123.961 -24.45
+ 96 96.0573 828 6 1 -14.45 124.044 -24.5847
+ 96 23.35 829 6 1 -14.25 124.188 -24.8171
+ 96 65.6173 1523 6 0 -13.2964 124.847 -25.85
+ 96 148.614 1524 6 0 -13.1505 124.95 -26.0115
+ 96 15.3908 982 5 1 16.5934 147.608 -54.45
+ 96 69.851 983 5 1 16.6501 147.644 -54.4888
+ 96 65.3107 984 5 1 16.85 147.756 -54.6228
+ 96 81.5661 985 5 1 17.05 147.874 -54.7354
+ 96 18.9366 986 5 1 17.25 148.016 -54.8231
+ 96 95.9957 1648 5 0 19.6039 149.769 -55.85
+ 96 112.343 1649 5 0 19.8749 149.95 -55.9536
+ 96 181.171 1650 5 0 20.2092 150.15 -56.0674
+ 96 10.8532 1235 4 1 67.2177 172.718 -84.45
+ 96 64.3783 1236 4 1 67.25 172.702 -84.4629
+ 96 49.3638 1237 4 1 67.45 172.618 -84.5556
+ 96 85.8641 1238 4 1 67.65 172.564 -84.6542
+ 96 169.54 1239 4 1 67.85 172.51 -84.7568
+ 96 186.515 1759 4 0 69.2102 172.135 -85.85
+ 96 4.58155 1658 1 0 155.583 151.831 -175.85
+ 96 84.8823 1240 4 1 68.0509 172.411 -84.695
+ 96 87.8236 1241 4 1 68.25 172.45 -84.7487
+ 96 84.0278 1242 4 1 68.45 172.478 -84.7835
+ 96 94.8365 1243 4 1 68.65 172.536 -84.7988
+ 96 161.071 1244 4 1 68.85 172.566 -84.8009
+ 96 38.236 1762 4 0 68.3467 172.559 -85.85
+ 96 171.485 1761 4 0 68.3391 172.55 -85.9196
+ 96 69.3849 1714 5 0 70.559 163.071 -56.25
+ 96 315.615 1713 5 0 70.5215 162.95 -56.0876
+ 96 37.2193 1352 4 1 90.55 20.6449 -84.6803
+ 96 90.9743 1353 4 1 90.75 20.6229 -84.5102
+ 96 209.57 1354 4 1 90.9501 20.6316 -84.5028
+Number of digits in this event = 13
+Using G4ParticleGun ...
+6.18782 LIN
e-
Event: 97
-Number of tracker hits in this event = 24
- 97 227.202 571 9 1 -65.7991 -97.1897 65.55
- 97 110.185 414 9 0 -65.7987 -97.1889 64.15
- 97 110.528 571 8 1 -65.7853 -97.1685 35.55
- 97 108.19 414 8 0 -65.7866 -97.1671 34.15
- 97 108.375 571 7 1 -65.8099 -97.1352 5.55
- 97 121.547 415 7 0 -65.811 -97.135 4.15
- 97 115.292 571 6 1 -65.8311 -97.1285 -24.45
- 97 137.493 415 6 0 -65.8379 -97.124 -25.85
- 97 196.387 570 5 1 -65.9802 -97.031 -54.45
- 97 119.947 415 5 0 -65.9798 -97.033 -55.85
- 97 199.235 570 4 1 -65.9791 -97.0686 -84.45
- 97 123.345 415 4 0 -65.9755 -97.0686 -85.85
- 97 103.369 570 3 1 -65.8985 -97.0512 -114.45
- 97 130.306 415 3 0 -65.8892 -97.057 -115.85
- 97 160.02 571 2 1 -65.7018 -97.1707 -144.45
- 97 119.791 414 2 0 -65.6916 -97.1757 -145.85
- 97 94.3999 572 1 1 -65.4944 -97.2779 -174.45
- 97 122.198 414 1 0 -65.4815 -97.2882 -175.85
- 97 239.644 574 0 1 -65.1717 -97.4851 -204.45
- 97 661.208 413 0 0 -65.1542 -97.4967 -205.85
- 97 354.37 573 0 1 -65.2704 -97.3805 -204.45
- 97 245.744 626 9 0 136.81 -54.7949 63.75
- 97 75.8768 1588 9 1 137.866 -55.309 65.15
- 97 26.0843 623 9 0 137.789 -55.3613 64.15
-Number of digits in this event = 15
+Number of tracker hits in this event = 39
+ 97 200.806 1268 9 1 73.6942 -108.883 65.55
+ 97 114.578 356 9 0 73.6935 -108.881 64.15
+ 97 45.9798 1268 8 1 73.6832 -108.848 35.55
+ 97 59.8142 1267 8 1 73.65 -108.839 35.3701
+ 97 87.1726 356 8 0 73.4095 -108.772 34.1498
+ 97 64.7626 357 8 0 73.3536 -108.75 33.8761
+ 97 105.861 1242 7 1 68.5844 -106.375 5.55
+ 97 25.0213 1241 7 1 68.4499 -106.423 5.21098
+ 97 123.701 368 7 0 68.1001 -106.507 4.15
+ 97 17.0262 1210 6 1 62.2146 -109.205 -24.4502
+ 97 112.197 1211 6 1 62.2501 -109.244 -24.5181
+ 97 6.98943 351 6 0 62.9941 -109.935 -25.85
+ 97 133.948 350 6 0 63.0093 -109.95 -25.8787
+ 97 4.48026 349 6 0 63.1958 -110.15 -26.2344
+ 97 47.2434 1284 5 1 77.0017 -126.33 -54.45
+ 97 292.733 1285 5 1 77.05 -126.524 -54.523
+ 97 30.3432 1286 5 1 77.25 -127.443 -54.809
+ 97 31.587 248 5 0 77.8164 -130.447 -55.85
+ 97 56.2843 247 5 0 77.8344 -130.55 -55.885
+ 97 52.3881 246 5 0 77.8678 -130.75 -55.9388
+ 97 228.325 245 5 0 77.9112 -130.95 -55.9776
+ 97 60.0192 244 5 0 77.9584 -131.15 -55.9961
+ 97 51.7429 243 5 0 78.0065 -131.35 -56.0178
+ 97 51.7209 242 5 0 78.0565 -131.55 -56.0477
+ 97 57.6249 241 5 0 78.0981 -131.75 -56.0819
+ 97 60.7615 240 5 0 78.1217 -131.95 -56.1224
+ 97 97.0162 239 5 0 78.1472 -132.15 -56.1728
+ 97 23.9451 238 5 0 78.1801 -132.35 -56.2252
+ 97 189.033 209 5 0 93.9714 -138.264 -56.2499
+ 97 148.727 797 6 0 132.795 -20.5875 -26.25
+ 97 34.3242 798 6 0 132.864 -20.45 -26.0779
+ 97 170.978 579 4 0 37.3138 -64.25 -86.1725
+ 97 236.414 360 0 0 30.1189 -108.061 -206.25
+ 97 58.8709 359 0 0 30.1409 -108.15 -206.174
+ 97 49.7833 97 1 0 3.49275 -160.75 -175.867
+ 97 91.8692 1267 9 1 73.6498 -108.933 65.2425
+ 97 3.32777 384 9 0 77.8461 -103.332 64.15
+ 97 38.6236 1302 9 1 80.4937 -96.0048 65.15
+ 97 75.5338 422 9 0 80.048 -95.7188 64.1499
+Number of digits in this event = 12
Using G4ParticleGun ...
-9.37162 LIN
+4.44183 LIN
e-
Event: 98
-Number of tracker hits in this event = 72
- 98 107.446 643 11 1 -51.4174 -17.4925 125.55
- 98 129.213 812 11 0 -51.4169 -17.4922 124.15
- 98 105.083 643 10 1 -51.4092 -17.4881 95.55
- 98 137.149 812 10 0 -51.4072 -17.4866 94.15
- 98 117.342 643 9 1 -51.3611 -17.4482 65.55
- 98 127.523 813 9 0 -51.3571 -17.4485 64.15
- 98 110.5 643 8 1 -51.2784 -17.4637 35.55
- 98 135.739 812 8 0 -51.2743 -17.465 34.15
- 98 172.843 644 7 1 -51.1922 -17.4955 5.55
- 98 112.692 812 7 0 -51.1899 -17.4949 4.15
- 98 359.638 644 6 1 -51.1555 -17.4776 -24.45
- 98 114.389 812 6 0 -51.1532 -17.4755 -25.85
- 98 193.548 644 5 1 -51.1041 -17.4359 -54.45
- 98 120.79 813 5 0 -51.0995 -17.4316 -55.85
- 98 104.918 645 4 1 -51.0194 -17.3455 -84.45
- 98 134.351 813 4 0 -51.0158 -17.3485 -85.85
- 98 133.548 645 3 1 -51.0189 -17.3782 -114.45
- 98 122.182 813 3 0 -51.0069 -17.4047 -115.85
- 98 132.06 647 2 1 -50.634 -17.8954 -144.45
- 98 110.894 810 2 0 -50.5987 -17.9073 -145.85
- 98 239.301 651 1 1 -49.8322 -18.1318 -174.45
- 98 176.066 809 1 0 -49.7855 -18.1479 -175.85
- 98 177.785 656 0 1 -48.7868 -18.4529 -204.45
- 98 121.648 807 0 0 -48.7465 -18.4545 -205.85
- 98 68.1003 1184 8 1 57.0034 166.538 35.55
- 98 169.221 1185 8 1 57.05 166.523 35.5006
- 98 42.8745 1725 8 0 57.2343 165.217 34.15
- 98 266.87 1724 8 0 57.2261 165.15 34.078
- 98 215.602 645 1 1 -50.9221 -17.1928 -174.45
- 98 90.4898 814 1 0 -50.9061 -17.1725 -175.85
- 98 185.982 645 0 1 -50.912 -17.2794 -204.451
- 98 117.587 813 0 0 -50.8336 -17.3615 -205.851
- 98 23.0303 1307 0 0 -168.695 81.45 -205.991
- 98 217.578 53 0 1 -169.438 82.3094 -204.85
- 98 397.674 52 0 1 -169.55 82.431 -204.769
- 98 595.985 51 0 1 -169.75 82.9988 -204.619
- 98 70.777 54 0 1 -169.35 83.8558 -204.536
- 98 188.965 813 1 0 -51.2994 -17.2761 -175.85
- 98 120.075 627 0 1 -54.4531 -17.271 -204.45
- 98 121.355 809 0 0 -54.5507 -18.0745 -205.85
- 98 29.5198 808 0 0 -54.5628 -18.25 -206.165
- 98 246.715 813 6 0 -51.0938 -17.3593 -25.85
- 98 138.349 648 5 1 -50.4032 -17.0905 -54.45
- 98 127.976 814 5 0 -50.3505 -17.1846 -55.85
- 98 117.558 654 4 1 -49.1548 -19.2469 -84.45
- 98 122.597 803 4 0 -48.9957 -19.3289 -85.85
- 98 105.816 670 3 1 -45.8734 -20.8867 -114.45
- 98 54.4194 671 3 1 -45.85 -20.8946 -114.645
- 98 111.787 795 3 0 -45.7053 -20.9238 -115.85
- 98 208.9 687 2 1 -42.525 -21.8042 -144.45
- 98 119.486 790 2 0 -42.4016 -21.9555 -145.85
- 98 44.7531 700 1 1 -39.874 -24.5315 -174.45
- 98 65.1964 701 1 1 -39.85 -24.5472 -174.601
- 98 96.7435 776 1 0 -39.6571 -24.6753 -175.85
- 98 111.118 726 0 1 -34.726 -27.7012 -204.45
- 98 206.743 760 0 0 -34.4977 -27.8704 -205.85
- 98 99.1198 647 5 1 -50.4754 -16.8017 -54.45
- 98 98.9348 816 5 0 -50.4527 -16.7877 -55.85
- 98 120.026 650 4 1 -50.0274 -16.5339 -84.45
- 98 133.935 817 4 0 -49.9616 -16.4908 -85.85
- 98 113.679 657 3 1 -48.5209 -15.4184 -114.45
- 98 108.233 823 3 0 -48.4723 -15.367 -115.85
- 98 151.126 662 2 1 -47.5047 -14.3151 -144.45
- 98 253.589 828 2 0 -47.4682 -14.2846 -145.85
- 98 43.7185 665 1 1 -46.8601 -13.5762 -174.45
- 98 91.6539 666 1 1 -46.85 -13.5734 -174.581
- 98 110.48 832 1 0 -46.7523 -13.5431 -175.85
- 98 102.44 678 0 1 -44.4462 -12.8334 -204.45
- 98 114.455 836 0 0 -44.3352 -12.7931 -205.85
- 98 72.8811 643 6 1 -51.25 -17.3364 -24.5278
- 98 34.9853 642 6 1 -51.45 -17.3777 -24.716
- 98 137.555 815 6 0 -51.9218 -17.0329 -25.85
-Number of digits in this event = 38
+Number of tracker hits in this event = 83
+ 98 116.987 182 7 1 -143.564 30.0873 5.55
+ 98 106.388 1050 7 0 -143.564 30.0864 4.15
+ 98 334.057 182 6 1 -143.556 30.0699 -24.45
+ 98 109.44 1050 6 0 -143.555 30.0697 -25.85
+ 98 132.517 183 5 1 -143.523 30.0695 -54.45
+ 98 114.303 1050 5 0 -143.523 30.0689 -55.85
+ 98 294.378 183 4 1 -143.531 30.0583 -84.45
+ 98 127.902 1050 4 0 -143.531 30.0569 -85.85
+ 98 123.06 183 3 1 -143.537 30.0359 -114.45
+ 98 121.399 1049 3 0 -143.538 30.0351 -115.85
+ 98 114.923 182 2 1 -143.564 30.0112 -144.45
+ 98 111.716 1049 2 0 -143.566 30.0109 -145.85
+ 98 108.137 182 1 1 -143.595 30.0074 -174.45
+ 98 129.109 1049 1 0 -143.597 30.0065 -175.85
+ 98 104.555 182 0 1 -143.623 29.9888 -204.45
+ 98 132.976 1049 0 0 -143.627 29.989 -205.85
+ 98 281.943 912 2 0 -174.752 2.53935 -146.25
+ 98 205.567 1146 1 0 -38.0353 49.3971 -176.25
+ 98 96.89 1145 1 0 -37.4127 49.25 -176.061
+ 98 25.3439 869 2 0 -108.52 -6.05 -146.135
+ 98 122.927 359 2 1 -108.308 -7.18603 -144.85
+ 98 148.549 358 2 1 -108.35 -7.2731 -144.825
+ 98 192.499 1049 4 0 -143.539 30.05 -85.9929
+ 98 5.52595 152 4 1 -149.643 27.7248 -84.85
+ 98 0.231024 1024 4 0 -155.601 24.8504 -85.85
+ 98 42.8982 1023 4 0 -155.602 24.85 -85.8501
+ 98 5.82753 100 4 1 -160.05 26.1763 -84.85
+ 98 0.410278 1042 4 0 -165.95 28.5703 -85.85
+ 98 54.4977 67 4 1 -166.671 30.5124 -84.85
+ 98 7.18841 1061 4 0 -167.715 32.4342 -85.8501
+ 98 261.602 1062 4 0 -167.722 32.45 -85.8576
+ 98 41.1843 941 5 0 -128.708 8.35439 -56.25
+ 98 144.076 940 5 0 -128.655 8.25 -56.1515
+ 98 62.8455 939 5 0 -128.698 8.05 -55.9194
+ 98 101.691 250 5 1 -129.982 3.83714 -54.85
+ 98 56.5188 249 5 1 -130.15 3.63149 -54.783
+ 98 12.3242 917 5 0 -130.412 3.63313 -55.8505
+ 98 154.066 918 5 0 -130.41 3.65 -55.9013
+ 98 230.089 1049 6 0 -143.645 29.9224 -25.85
+ 98 126.653 168 5 1 -146.437 26.7122 -54.4501
+ 98 132.26 1033 5 0 -146.637 26.6675 -55.85
+ 98 144.958 144 4 1 -151.256 25.2569 -84.4506
+ 98 39.3449 1028 4 0 -151.437 25.7908 -85.85
+ 98 66.5212 1029 4 0 -151.454 25.85 -86.0047
+ 98 70.1359 127 3 1 -154.622 37.1627 -114.45
+ 98 64.3789 126 3 1 -154.75 37.2714 -114.676
+ 98 31.0767 1088 3 0 -155.388 37.8006 -115.85
+ 98 197.589 1089 3 0 -155.447 37.85 -115.959
+ 98 53.9918 34 2 1 -173.263 52.2746 -144.45
+ 98 106.785 33 2 1 -173.35 52.3438 -144.598
+ 98 114.872 1164 2 0 -174.094 52.9315 -145.85
+ 98 63.8826 1165 2 0 -174.247 53.05 -146.12
+ 98 22.1939 1032 5 0 -145.541 26.5468 -55.85
+ 98 24.4124 1016 5 0 -157.628 23.45 -56.187
+ 98 107.18 181 5 1 -143.752 27.5223 -54.45
+ 98 119.941 1038 5 0 -143.804 27.6645 -55.85
+ 98 110.419 177 4 1 -144.63 31.0975 -84.45
+ 98 209.765 1056 4 0 -144.659 31.2764 -85.85
+ 98 136.838 173 3 1 -145.465 35.4217 -114.45
+ 98 127.101 1077 3 0 -145.526 35.4974 -115.85
+ 98 128.923 166 2 1 -146.854 36.9293 -144.45
+ 98 70.6296 1084 2 0 -146.777 37.0286 -145.85
+ 98 32.5815 1085 2 0 -146.76 37.05 -146.129
+ 98 217.464 175 1 1 -144.989 39.6945 -174.45
+ 98 113.807 1097 1 0 -144.859 39.6438 -175.85
+ 98 500.702 190 0 1 -142.107 38.6669 -204.45
+ 98 211.384 1092 0 0 -141.972 38.5751 -205.85
+ 98 11.1884 932 0 0 -165.323 6.49582 -206.25
+ 98 132.012 931 0 0 -165.353 6.45 -206.217
+ 98 111.438 930 0 0 -165.485 6.25 -206.062
+ 98 23.7253 929 0 0 -165.625 6.05 -205.898
+ 98 173.581 67 0 1 -166.569 4.67278 -204.85
+ 98 79.2841 66 0 1 -166.75 4.39613 -204.634
+ 98 41.8477 1014 0 0 -154.351 23.0098 -206.25
+ 98 77.9834 1013 0 0 -154.402 22.85 -206.109
+ 98 105.384 1012 0 0 -154.384 22.65 -206.008
+ 98 71.0079 127 0 1 -154.718 21.9817 -204.85
+ 98 309.39 126 0 1 -154.75 21.9234 -204.731
+ 98 159.527 1094 0 0 -142.212 38.9792 -205.85
+ 98 17.0077 1053 0 0 -147.661 30.683 -206.25
+ 98 371.373 1052 0 0 -147.662 30.65 -206.2
+ 98 25.9768 176 1 1 -144.95 39.6825 -174.65
+ 98 82.1949 1055 4 0 -144.639 31.25 -85.9396
+Number of digits in this event = 36
Using G4ParticleGun ...
-1.4119 LIN
+7.88849 LIN
e-
Event: 99
-Number of tracker hits in this event = 33
- 99 239.443 1396 10 1 99.4472 -1.05125 95.55
- 99 133.707 894 10 0 99.4452 -1.05647 94.15
- 99 119.733 1396 9 1 99.3814 -1.13945 65.55
- 99 261.726 894 9 0 99.3688 -1.13724 64.15
- 99 103.228 1394 8 1 99.1181 -1.09624 35.55
- 99 178.77 894 8 0 99.1099 -1.10355 34.15
- 99 144.465 1394 7 1 98.9917 -1.23564 5.55
- 99 118.74 894 7 0 98.9856 -1.24323 4.15
- 99 108.864 1393 6 1 98.8877 -1.39765 -24.45
- 99 173.749 893 6 0 98.8764 -1.41214 -25.85
- 99 111.195 1392 5 1 98.6423 -1.72014 -54.45
- 99 174.958 891 5 0 98.6375 -1.73009 -55.85
- 99 97.9815 1391 4 1 98.5447 -1.92897 -84.45
- 99 124.053 890 4 0 98.5354 -1.92857 -85.85
- 99 128.973 1390 3 1 98.3306 -1.92909 -114.45
- 99 160.299 890 3 0 98.3276 -1.91817 -115.85
- 99 104.836 1390 2 1 98.2638 -1.70394 -144.45
- 99 130.767 891 2 0 98.2701 -1.70195 -145.85
- 99 106.936 1391 1 1 98.4086 -1.63831 -174.45
- 99 149.278 892 1 0 98.4261 -1.62728 -175.85
- 99 96.9966 1393 0 1 98.8114 -1.38826 -204.45
- 99 344.485 893 0 0 98.8395 -1.36898 -205.85
- 99 110.366 1656 10 0 13.2024 151.483 93.75
- 99 48.672 968 10 1 13.78 151.483 95.1501
- 99 79.5856 969 10 1 13.85 151.482 95.3022
- 99 184.275 970 10 1 14.1925 151.604 95.5497
- 99 47.9269 1662 10 0 14.1211 152.666 94.15
- 99 84.836 1663 10 0 14.1374 152.75 94.0599
- 99 2.43702 1664 10 0 14.0496 152.95 93.7635
- 99 148.936 1392 0 1 98.6035 -1.57197 -204.45
- 99 122.776 890 0 0 98.6448 -1.9164 -205.85
- 99 81.8959 1391 0 1 98.55 -1.51864 -204.544
- 99 2.4016 893 7 0 98.9787 -1.25 3.75059
-Number of digits in this event = 18
+Number of tracker hits in this event = 90
+ 99 155.575 1438 10 1 107.878 4.42018 95.55
+ 99 107.982 921 10 0 107.873 4.42438 94.15
+ 99 133.627 1438 9 1 107.778 4.51324 65.55
+ 99 116.947 922 9 0 107.774 4.51736 64.15
+ 99 103.668 1437 8 1 107.716 4.60266 35.55
+ 99 450.525 922 8 0 107.713 4.60622 34.15
+ 99 99.2351 1437 7 1 107.663 4.68269 5.55
+ 99 110.954 923 7 0 107.658 4.68854 4.15
+ 99 365.507 1437 6 1 107.557 4.8092 -24.45
+ 99 416.074 923 6 0 107.552 4.81603 -25.85
+ 99 292.14 1436 5 1 107.435 4.95801 -54.45
+ 99 272.017 924 5 0 107.427 4.96415 -55.85
+ 99 188.489 1435 4 1 107.269 5.09725 -84.45
+ 99 120.111 925 4 0 107.262 5.10425 -85.85
+ 99 202.962 1434 3 1 107.111 5.25094 -114.45
+ 99 226.175 926 3 0 107.104 5.25738 -115.85
+ 99 107.773 1434 2 1 106.969 5.39123 -144.45
+ 99 108.202 926 2 0 106.961 5.40056 -145.85
+ 99 145.071 1433 1 1 106.788 5.58802 -174.45
+ 99 117.118 927 1 0 106.779 5.59761 -175.85
+ 99 108.963 1432 0 1 106.58 5.79453 -204.45
+ 99 106.213 928 0 0 106.57 5.80587 -205.85
+ 99 90.8953 918 3 0 105.73 3.78843 -115.85
+ 99 204.183 848 5 0 47.2282 -10.3184 -56.25
+ 99 56.3736 849 5 0 46.8129 -10.25 -55.9848
+ 99 0.218251 1132 5 1 46.4503 -9.4271 -54.8498
+ 99 18.8137 1131 5 1 46.45 -9.42648 -54.8491
+ 99 250.154 866 5 0 44.3453 -6.76629 -55.85
+ 99 282.884 926 5 0 107.149 5.39359 -55.85
+ 99 117.667 1450 5 1 110.18 7.01498 -54.45
+ 99 118.151 935 5 0 110.437 7.19213 -55.8507
+ 99 107.497 1479 4 1 116.062 10.7901 -84.45
+ 99 23.484 1480 4 1 116.15 10.8124 -84.7691
+ 99 93.3912 954 4 0 116.459 10.8873 -85.85
+ 99 100.636 1526 3 1 125.391 12.8434 -114.45
+ 99 14.4923 1527 3 1 125.55 12.8854 -114.797
+ 99 134.507 964 3 0 126.042 13.0175 -115.851
+ 99 31.3121 965 3 0 126.178 13.0501 -116.137
+ 99 117.42 1599 2 1 139.985 16.1422 -144.45
+ 99 17.0558 1600 2 1 140.15 16.1648 -144.788
+ 99 116.833 980 2 0 140.646 16.2304 -145.85
+ 99 24.9158 981 2 0 140.785 16.25 -146.147
+ 99 41.27 1668 1 1 153.922 18.1422 -174.45
+ 99 118.908 1669 1 1 153.95 18.1481 -174.497
+ 99 15.7773 1670 1 1 154.15 18.1828 -174.812
+ 99 323.717 991 1 0 154.853 18.2827 -175.85
+ 99 32.0092 1774 0 1 175.082 20.0891 -204.45
+ 99 319.952 1775 0 1 175.15 20.1211 -204.575
+ 99 104.546 1001 0 0 175.822 20.3966 -205.85
+ 99 41.5165 1002 0 0 175.963 20.45 -206.129
+ 99 91.0445 1667 1 1 153.75 18.136 -174.522
+ 99 180.171 1437 5 1 107.588 4.88135 -54.45
+ 99 111.748 1441 4 1 108.473 6.06956 -84.45
+ 99 140.652 931 4 0 108.522 6.26837 -85.85
+ 99 108.6 1446 3 1 109.506 10.451 -114.45
+ 99 7.57753 952 3 0 109.549 10.6449 -115.85
+ 99 100.28 953 3 0 109.55 10.65 -115.887
+ 99 364.838 1451 2 1 110.498 14.5673 -144.45
+ 99 115.993 973 2 0 110.595 14.7698 -145.85
+ 99 176.466 1461 1 1 112.447 18.8729 -174.45
+ 99 122.47 995 1 0 112.567 19.0596 -175.85
+ 99 118.532 1474 0 1 115.06 22.9328 -204.45
+ 99 128.142 1015 0 0 115.193 23.1262 -205.85
+ 99 119.864 971 2 0 110.367 14.3234 -145.851
+ 99 244.689 1445 1 1 109.17 5.54381 -174.451
+ 99 135.483 920 1 0 109.366 4.24605 -175.85
+ 99 85.7415 919 1 0 109.409 4.05 -176.04
+ 99 556.924 975 2 0 110.17 15.1418 -145.85
+ 99 17.2219 976 2 0 110.168 15.25 -146.181
+ 99 82.1324 950 2 0 153.074 10.2316 -146.25
+ 99 87.3545 949 2 0 152.967 10.05 -146.162
+ 99 109.991 948 2 0 152.839 9.84993 -146.045
+ 99 422.613 1660 2 1 152.162 9.21476 -144.85
+ 99 64.2956 1659 2 1 152.15 9.20292 -144.83
+ 99 102.604 1661 2 1 152.35 8.7843 -144.531
+ 99 18.8568 923 8 0 105.826 4.65001 34.045
+ 99 27.8392 840 9 0 51.8786 -12.0023 63.7503
+ 99 40.829 839 9 0 51.8663 -12.05 63.8125
+ 99 272.533 1084 9 0 13.2011 36.8641 63.75
+ 99 638.349 1435 1 1 107.166 5.32266 -174.45
+ 99 244.372 926 1 0 107.164 5.31962 -175.85
+ 99 139.647 1436 0 1 107.371 5.33709 -204.45
+ 99 151.401 926 0 0 107.487 5.25374 -205.85
+ 99 99.0053 925 0 0 107.492 5.25 -205.913
+ 99 113.32 1434 0 1 107.098 5.43146 -204.45
+ 99 9.40221 1437 10 1 107.75 4.36885 95.1625
+ 99 6.04212 918 10 0 105.891 3.66393 94.15
+ 99 127.491 917 10 0 105.874 3.65 94.1408
+ 99 295.811 916 10 0 105.694 3.4499 94.0812
+ 99 211.982 915 10 0 105.663 3.24904 93.9563
+Number of digits in this event = 38
Run terminated.
Run Summary
Number of events processed : 100
- User=57.510000s Real=58.287711s Sys=0.020000s
+ User=51.510000s Real=51.925315s Sys=0.040000s
End of Run 2
Graphics systems deleted.
Visualization Manager deleting...
G4 kernel has come to Quit state.
================== Deleting memory pools ===================
Number of memory pools allocated: 19 of which, static: 0
-Dynamic pools deleted: 19 / Total memory freed: 0.2 MB
+Dynamic pools deleted: 19 / Total memory freed: 0.19 MB
============================================================
RunManagerKernel is deleted. Good bye :)
diff --git a/examples/advanced/gammaray_telescope/include/GammaRayTelAnticoincidenceHit.hh b/examples/advanced/gammaray_telescope/include/GammaRayTelAnticoincidenceHit.hh
index b86965a5e1b..5f55e01248d 100644
--- a/examples/advanced/gammaray_telescope/include/GammaRayTelAnticoincidenceHit.hh
+++ b/examples/advanced/gammaray_telescope/include/GammaRayTelAnticoincidenceHit.hh
@@ -55,7 +55,7 @@ public:
GammaRayTelAnticoincidenceHit(const GammaRayTelAnticoincidenceHit&);
const GammaRayTelAnticoincidenceHit& operator=(const
GammaRayTelAnticoincidenceHit&);
- int operator==(const GammaRayTelAnticoincidenceHit&) const;
+ G4bool operator==(const GammaRayTelAnticoincidenceHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
diff --git a/examples/advanced/gammaray_telescope/include/GammaRayTelCalorimeterHit.hh b/examples/advanced/gammaray_telescope/include/GammaRayTelCalorimeterHit.hh
index e87b39469d9..0a8ec3b31ba 100644
--- a/examples/advanced/gammaray_telescope/include/GammaRayTelCalorimeterHit.hh
+++ b/examples/advanced/gammaray_telescope/include/GammaRayTelCalorimeterHit.hh
@@ -55,7 +55,7 @@ public:
GammaRayTelCalorimeterHit(const GammaRayTelCalorimeterHit&);
const GammaRayTelCalorimeterHit& operator=(const
GammaRayTelCalorimeterHit&);
- int operator==(const GammaRayTelCalorimeterHit&) const;
+ G4bool operator==(const GammaRayTelCalorimeterHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
diff --git a/examples/advanced/gammaray_telescope/include/GammaRayTelDigi.hh b/examples/advanced/gammaray_telescope/include/GammaRayTelDigi.hh
index eae0f939644..1ac770b31ba 100644
--- a/examples/advanced/gammaray_telescope/include/GammaRayTelDigi.hh
+++ b/examples/advanced/gammaray_telescope/include/GammaRayTelDigi.hh
@@ -55,7 +55,7 @@ public:
~GammaRayTelDigi();
GammaRayTelDigi(const GammaRayTelDigi&);
const GammaRayTelDigi& operator=(const GammaRayTelDigi&);
- int operator==(const GammaRayTelDigi&) const;
+ G4bool operator==(const GammaRayTelDigi&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
diff --git a/examples/advanced/gammaray_telescope/include/GammaRayTelTrackerHit.hh b/examples/advanced/gammaray_telescope/include/GammaRayTelTrackerHit.hh
index 4fb76073a1d..074aac28013 100644
--- a/examples/advanced/gammaray_telescope/include/GammaRayTelTrackerHit.hh
+++ b/examples/advanced/gammaray_telescope/include/GammaRayTelTrackerHit.hh
@@ -54,7 +54,7 @@ public:
~GammaRayTelTrackerHit();
GammaRayTelTrackerHit(const GammaRayTelTrackerHit&);
const GammaRayTelTrackerHit& operator=(const GammaRayTelTrackerHit&);
- int operator==(const GammaRayTelTrackerHit&) const;
+ G4bool operator==(const GammaRayTelTrackerHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
diff --git a/examples/advanced/gammaray_telescope/src/GammaRayTelAnticoincidenceHit.cc b/examples/advanced/gammaray_telescope/src/GammaRayTelAnticoincidenceHit.cc
index 428e2307ac6..4d4b77cd6a7 100644
--- a/examples/advanced/gammaray_telescope/src/GammaRayTelAnticoincidenceHit.cc
+++ b/examples/advanced/gammaray_telescope/src/GammaRayTelAnticoincidenceHit.cc
@@ -79,7 +79,7 @@ const GammaRayTelAnticoincidenceHit& GammaRayTelAnticoincidenceHit::operator=(co
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
-int GammaRayTelAnticoincidenceHit::operator==(const GammaRayTelAnticoincidenceHit& right) const
+G4bool GammaRayTelAnticoincidenceHit::operator==(const GammaRayTelAnticoincidenceHit& right) const
{
return((EdepACD==right.EdepACD)&&(ACDTileNumber==right.ACDTileNumber)&&(IsACDPlane==right.IsACDPlane)&& (pos==right.pos));
}
diff --git a/examples/advanced/gammaray_telescope/src/GammaRayTelCalorimeterHit.cc b/examples/advanced/gammaray_telescope/src/GammaRayTelCalorimeterHit.cc
index 05bf91ee212..6db85436900 100644
--- a/examples/advanced/gammaray_telescope/src/GammaRayTelCalorimeterHit.cc
+++ b/examples/advanced/gammaray_telescope/src/GammaRayTelCalorimeterHit.cc
@@ -82,7 +82,7 @@ const GammaRayTelCalorimeterHit& GammaRayTelCalorimeterHit::operator=(const Gamm
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
-int GammaRayTelCalorimeterHit::operator==(const GammaRayTelCalorimeterHit& right) const
+G4bool GammaRayTelCalorimeterHit::operator==(const GammaRayTelCalorimeterHit& right) const
{
return((EdepCAL==right.EdepCAL)&&(CALBarNumber==right.CALBarNumber)&&(CALPlaneNumber==right.CALPlaneNumber)&&(IsCALPlane==right.IsCALPlane)&& (pos==right.pos));
}
diff --git a/examples/advanced/gammaray_telescope/src/GammaRayTelDigi.cc b/examples/advanced/gammaray_telescope/src/GammaRayTelDigi.cc
index 237045bcc99..74103d39661 100644
--- a/examples/advanced/gammaray_telescope/src/GammaRayTelDigi.cc
+++ b/examples/advanced/gammaray_telescope/src/GammaRayTelDigi.cc
@@ -81,7 +81,7 @@ const GammaRayTelDigi& GammaRayTelDigi::operator=(const GammaRayTelDigi& right)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
-int GammaRayTelDigi::operator==(const GammaRayTelDigi& right) const
+G4bool GammaRayTelDigi::operator==(const GammaRayTelDigi& right) const
{
return ((PlaneType==right.PlaneType)&&(PlaneNumber==right.PlaneNumber)&&(StripNumber==right.StripNumber)&&(DigiType==right.DigiType)&&(Energy==right.Energy));
}
diff --git a/examples/advanced/gammaray_telescope/src/GammaRayTelTrackerHit.cc b/examples/advanced/gammaray_telescope/src/GammaRayTelTrackerHit.cc
index eb6d9740526..d351bd0cc40 100644
--- a/examples/advanced/gammaray_telescope/src/GammaRayTelTrackerHit.cc
+++ b/examples/advanced/gammaray_telescope/src/GammaRayTelTrackerHit.cc
@@ -78,7 +78,7 @@ const GammaRayTelTrackerHit& GammaRayTelTrackerHit::operator=(const GammaRayTelT
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
-int GammaRayTelTrackerHit::operator==(const GammaRayTelTrackerHit& right) const
+G4bool GammaRayTelTrackerHit::operator==(const GammaRayTelTrackerHit& right) const
{
return((EdepSil==right.EdepSil)&&(NStrip==right.NStrip)&&(IsXPlane==right.IsXPlane)&& (pos==right.pos));
}
diff --git a/examples/advanced/hadrontherapy/History b/examples/advanced/hadrontherapy/History
index fc337c6f7dd..87c51a4f6e1 100644
--- a/examples/advanced/hadrontherapy/History
+++ b/examples/advanced/hadrontherapy/History
@@ -8,6 +8,9 @@ https://twiki.cern.ch/twiki/bin/view/Geant4/AdvancedExamplesHadrontherapy
History file of the Hadrontherapy application
====================================================
+31.01.2019, I.Hrivnacova Tag: hadrontherapy-V10-04-10
+ - Merged GitHub PR #4: all Boolean operators now return G4bool.
+
09.11.2018 G.Cosmo; Tag: hadrontherapy-V10-04-09
- HadrontherapyDetectorConstruction: fixed typos in printout.
diff --git a/examples/advanced/hadrontherapy/hadrontherapy.out b/examples/advanced/hadrontherapy/hadrontherapy.out
index 348147cefa1..090bc9f1e0f 100644
--- a/examples/advanced/hadrontherapy/hadrontherapy.out
+++ b/examples/advanced/hadrontherapy/hadrontherapy.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -30,12 +26,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -118,395 +112,395 @@ The number of Voxels along (X,Y,Z) is: (40,1,1)
DetectorLog 1 0 0
### === Ignore cuts flag: 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEPComptonModel : Emin= 0 eV Emax= 20 MeV FluoActive
- KleinNishina : Emin= 20 MeV Emax= 100 TeV FluoActive
+ LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo
+ KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PenConversion : Emin= 0 eV Emax= 20 MeV
- BetheHeitler : Emin= 20 MeV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ PenConversion : Emin= 0 eV Emax= 20 MeV
+ BetheHeitler : Emin= 20 MeV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
- MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
+ LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
+ MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PenIoni : Emin= 0 eV Emax= 100 keV
- MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
+ PenIoni : Emin= 0 eV Emax= 100 keV
+ MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -588,17 +582,17 @@ Run 0 starts ...
Run terminated.
Run Summary
Number of events processed : 500
- User=5.090000s Real=5.282071s Sys=0.040000s
+ User=5.370000s Real=8.881610s Sys=0.040000s
... write Csv file : Hadrontherapy_h1_Ekin.csv - done
... write Csv file : Hadrontherapy_h1_Edep.csv - done
... write Csv files : - done
Graphics systems deleted.
Visualization Manager deleting...
-The simulation took: 9.91325 s to run (real time)
+The simulation took: 13.4309 s to run (real time)
Dose is being written to Dose.out
G4 kernel has come to Quit state.
================== Deleting memory pools ===================
Number of memory pools allocated: 12 of which, static: 0
-Dynamic pools deleted: 12 / Total memory freed: 0.25 MB
+Dynamic pools deleted: 12 / Total memory freed: 0.26 MB
============================================================
RunManagerKernel is deleted. Good bye :)
diff --git a/examples/advanced/hadrontherapy/include/HadrontherapyDetectorHit.hh b/examples/advanced/hadrontherapy/include/HadrontherapyDetectorHit.hh
index 8ebba3575c7..213ac7a63e7 100644
--- a/examples/advanced/hadrontherapy/include/HadrontherapyDetectorHit.hh
+++ b/examples/advanced/hadrontherapy/include/HadrontherapyDetectorHit.hh
@@ -45,7 +45,7 @@ public:
const HadrontherapyDetectorHit& operator=(const HadrontherapyDetectorHit&);
- G4int operator==(const HadrontherapyDetectorHit&) const;
+ G4bool operator==(const HadrontherapyDetectorHit&) const;
//******************************MT
inline void* operator new(size_t);
diff --git a/examples/advanced/hadrontherapy/include/HadrontherapyLet.hh b/examples/advanced/hadrontherapy/include/HadrontherapyLet.hh
index d9c44fb1947..579dd3dfe81 100644
--- a/examples/advanced/hadrontherapy/include/HadrontherapyLet.hh
+++ b/examples/advanced/hadrontherapy/include/HadrontherapyLet.hh
@@ -47,7 +47,7 @@ struct ionLet
G4int Z; // atomic number
G4int A; // mass number
G4double *letDN , *letDD, *letTN , *letTD; // Track averaged LET and Dose averaged LET
- //friend bool operator<(const ionLet& a, const ionLet& b) {return (a.Z == b.Z) ? b.A < a.A : b.Z < a.Z ;}
+ //friend G4bool operator<(const ionLet& a, const ionLet& b) {return (a.Z == b.Z) ? b.A < a.A : b.Z < a.Z ;}
G4bool operator<(const ionLet& a) const{return (this->Z == a.Z) ? this-> A < a.A : this->Z < a.Z ;}
// For isotopes sort by the mass number, else sort by the atomic one.
};
diff --git a/examples/advanced/hadrontherapy/include/HadrontherapyMatrix.hh b/examples/advanced/hadrontherapy/include/HadrontherapyMatrix.hh
index cc89ac46e12..ad336acf34e 100644
--- a/examples/advanced/hadrontherapy/include/HadrontherapyMatrix.hh
+++ b/examples/advanced/hadrontherapy/include/HadrontherapyMatrix.hh
@@ -90,7 +90,7 @@ struct ion
G4int A; // mass number
G4double *dose; // pointer to dose matrix
unsigned int *fluence; // pointer to fluence matrix
- //friend bool operator<(const ion& a, const ion& b) {return (a.Z == b.Z) ? b.A < a.A : b.Z < a.Z ;}
+ //friend G4bool operator<(const ion& a, const ion& b) {return (a.Z == b.Z) ? b.A < a.A : b.Z < a.Z ;}
G4bool operator<(const ion& a) const{return (this->Z == a.Z) ? this-> A < a.A : this->Z < a.Z ;}
};
diff --git a/examples/advanced/hadrontherapy/src/HadrontherapyDetectorHit.cc b/examples/advanced/hadrontherapy/src/HadrontherapyDetectorHit.cc
index 7bec310aebf..e1438a3a506 100644
--- a/examples/advanced/hadrontherapy/src/HadrontherapyDetectorHit.cc
+++ b/examples/advanced/hadrontherapy/src/HadrontherapyDetectorHit.cc
@@ -61,7 +61,7 @@ const HadrontherapyDetectorHit& HadrontherapyDetectorHit::operator=(const Hadron
return *this;
}
-G4int HadrontherapyDetectorHit::operator==(const HadrontherapyDetectorHit& right) const
+G4bool HadrontherapyDetectorHit::operator==(const HadrontherapyDetectorHit& right) const
{
return((xHitID==right.xHitID)&&(zHitID==right.zHitID)&&(yHitID==right.yHitID));
}
diff --git a/examples/advanced/human_phantom/History b/examples/advanced/human_phantom/History
index 4c40b806585..c9da06d61f3 100644
--- a/examples/advanced/human_phantom/History
+++ b/examples/advanced/human_phantom/History
@@ -16,6 +16,10 @@ committal in the CVS repository !
----------------------------------------------------------
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+
+Jan 31, 2019, I.Hrivnacova tag human_phantom-V10-04-01
+- Merged GitHub PR #4: all Boolean operators now return G4bool.
+
Oct 19, 2018. S. Guatelli tag human_phantom-V10-04-00
- G4VIS_USE and G4UI_USE deleted
- authorship of the example updated
diff --git a/examples/advanced/human_phantom/human_phantom.out b/examples/advanced/human_phantom/human_phantom.out
index edb29e04edf..23db12395a3 100644
--- a/examples/advanced/human_phantom/human_phantom.out
+++ b/examples/advanced/human_phantom/human_phantom.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -26,12 +22,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -91,10 +85,10 @@ sensitivity : 0
Construct Skull with mother volume physicalHead
Checking overlaps for volume physicalSkull ... OK!
Skull created !!!!!!
-Volume of Skull = 845.976 cm^3
+Volume of Skull = 842.441 cm^3
Material of Skull = skeleton
Density of Material = 1.4862 g/cm^3
-Mass of Skull = 1257.29 g
+Mass of Skull = 1252.04 g
Construct Brain with mother physicalHead
Checking overlaps for volume physicalBrain ... OK!
Volume of Brain = 1470.27 cm^3
@@ -169,28 +163,28 @@ sensitivity : 0
Construct UpperSpine with mother volume physicalHead
Checking overlaps for volume physicalUpperSpine ... OK!
UpperSpine created !!!!!!
-Volume of UpperSpine = 126.356 cm^3
+Volume of UpperSpine = 126.355 cm^3
Material of UpperSpine = skeleton
Density of Material = 1.4862 g/cm^3
-Mass of UpperSpine = 187.79 g
+Mass of UpperSpine = 187.789 g
MotherVolume: physicalTrunk
sensitivity : 0
Construct LeftScapula with mother volume physicalTrunk
Checking overlaps for volume physicalLeftScapula ... OK!
LeftScapula created !!!!!!
-Volume of LeftScapula = 100.467 cm^3
+Volume of LeftScapula = 100.406 cm^3
Material of LeftScapula = skeleton
Density of Material = 1.4862 g/cm^3
-Mass of LeftScapula = 149.315 g
+Mass of LeftScapula = 149.224 g
MotherVolume: physicalTrunk
sensitivity : 0
Construct RightScapula with mother volume physicalTrunk
Checking overlaps for volume physicalRightScapula ... OK!
RightScapula created !!!!!!
-Volume of RightScapula = 102.532 cm^3
+Volume of RightScapula = 103.045 cm^3
Material of RightScapula = skeleton
Density of Material = 1.4862 g/cm^3
-Mass of RightScapula = 152.383 g
+Mass of RightScapula = 153.145 g
Construct LeftAdrenal with mother physicalTrunk
Checking overlaps for volume physicalLeftAdrenal ... OK!
Left LeftAdrenal created !!!!!!
@@ -233,10 +227,10 @@ Mass of RightClavicle = 20.3099 g
Construct SmallIntestine with mother volume physicalTrunk
Checking overlaps for volume physicalSmallIntestine ... OK!
SmallIntestine created !!!!!!
-Volume of SmallIntestine = 1019.45 cm^3
+Volume of SmallIntestine = 1019.54 cm^3
Material of SmallIntestine = soft_tissue
Density of Material = 0.9869 g/cm^3
-Mass of SmallIntestine = 1006.1 g
+Mass of SmallIntestine = 1006.19 g
Construct RibCage with mother volume physicalTrunk
Checking overlaps for volume physicalRibCage ... OK!
Checking overlaps for volume physicalRib ... OK!
@@ -252,10 +246,10 @@ Checking overlaps for volume physicalRib ... OK!
Checking overlaps for volume physicalRib ... OK!
Checking overlaps for volume physicalRib ... OK!
RibCage created !!!!!!
-Volume of RibCage = 691.602 cm^3
+Volume of RibCage = 691.222 cm^3
Material of RibCage = skeleton
Density of Material = 1.4862 g/cm^3
-Mass of RibCage = 1027.86 g
+Mass of RibCage = 1027.29 g
MotherVolume: physicalTrunk
sensitivity : 0
Construct MiddleLowerSpine with mother volume physicalTrunk
@@ -268,10 +262,10 @@ Mass of MiddleLowerSpine = 1120.57 g
Construct Pelvis with mother volume physicalTrunk
Checking overlaps for volume physicalPelvis ... OK!
Pelvis created !!!!!!
-Volume of Pelvis = 606.54 cm^3
+Volume of Pelvis = 608.226 cm^3
Material of Pelvis = skeleton
Density of Material = 1.4862 g/cm^3
-Mass of Pelvis = 901.44 g
+Mass of Pelvis = 903.945 g
Construct Stomach with mother volume physicalTrunk
Checking overlaps for volume physicalStomach ... OK!
Stomach created !!!!!!
@@ -282,17 +276,17 @@ Mass of Stomach = 396.856 g
Construct UpperLargeIntestine with mother volume physicalTrunk
Checking overlaps for volume physicalUpperLargeIntestine ... OK!
UpperLargeIntestine created !!!!!!
-Volume of UpperLargeIntestine = 435.096 cm^3
+Volume of UpperLargeIntestine = 434.826 cm^3
Material of UpperLargeIntestine = soft_tissue
Density of Material = 0.9869 g/cm^3
-Mass of UpperLargeIntestine = 429.396 g
+Mass of UpperLargeIntestine = 429.129 g
Construct LowerLargeIntestine with mother volume physicalTrunk
Checking overlaps for volume physicalLowerLargeIntestine ... OK!
LowerLargeIntestine created !!!!!!
-Volume of LowerLargeIntestine = 344.619 cm^3
+Volume of LowerLargeIntestine = 343.591 cm^3
Material of LowerLargeIntestine = soft_tissue
Density of Material = 0.9869 g/cm^3
-Mass of LowerLargeIntestine = 340.105 g
+Mass of LowerLargeIntestine = 339.09 g
Construct Spleen with mother volume physicalTrunk
Checking overlaps for volume physicalSpleen ... OK!
Spleen created !!!!!!
@@ -303,40 +297,40 @@ Mass of Spleen = 173.625 g
Construct Pancreas with mother volume physicalTrunk
Checking overlaps for volume physicalPancreas ... OK!
Pancreas created !!!!!!
-Volume of Pancreas = 60.9555 cm^3
+Volume of Pancreas = 61.0423 cm^3
Material of Pancreas = soft_tissue
Density of Material = 0.9869 g/cm^3
-Mass of Pancreas = 60.157 g
+Mass of Pancreas = 60.2426 g
Construct LeftKidney with mother volume physicalTrunk
Checking overlaps for volume physicalLeftKidney ... OK!
Left LeftKidney created !!!!!!
-Volume of LeftKidney = 143.954 cm^3
+Volume of LeftKidney = 143.931 cm^3
Material of LeftKidney = soft_tissue
Density of Material = 0.9869 g/cm^3
-Mass of LeftKidney = 142.068 g
+Mass of LeftKidney = 142.045 g
Construct RightKidney with mother volume physicalTrunk
Checking overlaps for volume physicalRightKidney ... OK!
RightKidney created !!!!!!
-Volume of RightKidney = 144.228 cm^3
+Volume of RightKidney = 144.296 cm^3
Material of RightKidney = soft_tissue
Density of Material = 0.9869 g/cm^3
-Mass of RightKidney = 142.338 g
+Mass of RightKidney = 142.406 g
Construct UrinaryBladder with mother volume physicalTrunk
Checking overlaps for volume physicalUrinaryBladder ... OK!
UrinaryBladder created !!!!!!
-Volume of UrinaryBladder = 45.6899 cm^3
+Volume of UrinaryBladder = 45.6809 cm^3
Material of UrinaryBladder = soft_tissue
Density of Material = 0.9869 g/cm^3
-Mass of UrinaryBladder = 45.0914 g
+Mass of UrinaryBladder = 45.0825 g
MotherVolume: physicalWorld
sensitivity : 0
Construct MaleGenitalia with mother volume physicalWorld
Checking overlaps for volume physicalMaleGenitalia ... OK!
MaleGenitalia created !!!!!!
-Volume of MaleGenitalia = 229.9 cm^3
+Volume of MaleGenitalia = 229.68 cm^3
Material of MaleGenitalia = soft_tissue
Density of Material = 0.9869 g/cm^3
-Mass of MaleGenitalia = 226.889 g
+Mass of MaleGenitalia = 226.671 g
MotherVolume: physicalWorld
sensitivity : 0
Construct LeftTeste with mother volume physicalMaleGenitalia
@@ -386,403 +380,403 @@ Mass of RightTeste = 18.5406 g
DefaultRegionForTheWorld 1 0 0
### === Ignore cuts flag: 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEPComptonModel : Emin= 0 eV Emax= 20 MeV FluoActive
- KleinNishina : Emin= 20 MeV Emax= 100 TeV FluoActive
+ LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo
+ KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PenConversion : Emin= 0 eV Emax= 20 MeV
- BetheHeitler : Emin= 20 MeV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ PenConversion : Emin= 0 eV Emax= 20 MeV
+ BetheHeitler : Emin= 20 MeV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
- MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
+ LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
+ MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PenIoni : Emin= 0 eV Emax= 100 keV
- MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
+ PenIoni : Emin= 0 eV Emax= 100 keV
+ MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -812,47 +806,47 @@ Index : 2 used in the geometry : Yes
### Run 0 start.
Number of events = 100
Energy Total in Run:logicalBrain, ID: 0, Energy Deposition (MeV): 0
-Energy Total in Run:logicalHead, ID: 1, Energy Deposition (MeV): 2.40878
+Energy Total in Run:logicalHead, ID: 1, Energy Deposition (MeV): 3.83714
Energy Total in Run:logicalHeart, ID: 2, Energy Deposition (MeV): 0
Energy Total in Run:logicalLeftAdrenal, ID: 3, Energy Deposition (MeV): 0
Energy Total in Run:logicalLeftArmBone, ID: 4, Energy Deposition (MeV): 0
Energy Total in Run:logicalLeftBreast, ID: 5, Energy Deposition (MeV): 0
Energy Total in Run:logicalLeftClavicle, ID: 6, Energy Deposition (MeV): 0
Energy Total in Run:logicalLeftKidney, ID: 7, Energy Deposition (MeV): 0
-Energy Total in Run:logicalLeftLeg, ID: 8, Energy Deposition (MeV): 8.08675
+Energy Total in Run:logicalLeftLeg, ID: 8, Energy Deposition (MeV): 11.3155
Energy Total in Run:logicalLeftLegBone, ID: 9, Energy Deposition (MeV): 0
Energy Total in Run:logicalLeftLung, ID: 10, Energy Deposition (MeV): 0
Energy Total in Run:logicalLeftOvary, ID: 11, Energy Deposition (MeV): 0
Energy Total in Run:logicalLeftScapula, ID: 12, Energy Deposition (MeV): 0
Energy Total in Run:logicalLeftTeste, ID: 13, Energy Deposition (MeV): 0
Energy Total in Run:logicalLowerLargeIntestine, ID: 14, Energy Deposition (MeV): 0
-Energy Total in Run:logicalMaleGenitalia, ID: 15, Energy Deposition (MeV): 2.78532
+Energy Total in Run:logicalMaleGenitalia, ID: 15, Energy Deposition (MeV): 1.92391
Energy Total in Run:logicalMiddleLowerSpine, ID: 16, Energy Deposition (MeV): 0
Energy Total in Run:logicalPancreas, ID: 17, Energy Deposition (MeV): 0
Energy Total in Run:logicalPelvis, ID: 18, Energy Deposition (MeV): 0
-Energy Total in Run:logicalRibCage, ID: 19, Energy Deposition (MeV): 0
+Energy Total in Run:logicalRibCage, ID: 19, Energy Deposition (MeV): 0.507668
Energy Total in Run:logicalRightAdrenal, ID: 20, Energy Deposition (MeV): 0
Energy Total in Run:logicalRightArmBone, ID: 21, Energy Deposition (MeV): 0
Energy Total in Run:logicalRightBreast, ID: 22, Energy Deposition (MeV): 0
Energy Total in Run:logicalRightClavicle, ID: 23, Energy Deposition (MeV): 0
Energy Total in Run:logicalRightKidney, ID: 24, Energy Deposition (MeV): 0
-Energy Total in Run:logicalRightLeg, ID: 25, Energy Deposition (MeV): 7.82135
+Energy Total in Run:logicalRightLeg, ID: 25, Energy Deposition (MeV): 8.62089
Energy Total in Run:logicalRightLegBone, ID: 26, Energy Deposition (MeV): 0
Energy Total in Run:logicalRightLung, ID: 27, Energy Deposition (MeV): 0
Energy Total in Run:logicalRightOvary, ID: 28, Energy Deposition (MeV): 0
Energy Total in Run:logicalRightScapula, ID: 29, Energy Deposition (MeV): 0
Energy Total in Run:logicalRightTeste, ID: 30, Energy Deposition (MeV): 0
-Energy Total in Run:logicalSkull, ID: 31, Energy Deposition (MeV): 0.416987
+Energy Total in Run:logicalSkull, ID: 31, Energy Deposition (MeV): 0
Energy Total in Run:logicalSmallIntestine, ID: 32, Energy Deposition (MeV): 0
Energy Total in Run:logicalSpleen, ID: 33, Energy Deposition (MeV): 0
Energy Total in Run:logicalStomach, ID: 34, Energy Deposition (MeV): 0
Energy Total in Run:logicalThymus, ID: 35, Energy Deposition (MeV): 0
Energy Total in Run:logicalThyroid, ID: 36, Energy Deposition (MeV): 0
-Energy Total in Run:logicalTrunk, ID: 37, Energy Deposition (MeV): 34.4854
+Energy Total in Run:logicalTrunk, ID: 37, Energy Deposition (MeV): 26.2638
Energy Total in Run:logicalUpperLargeIntestine, ID: 38, Energy Deposition (MeV): 0
Energy Total in Run:logicalUpperSpine, ID: 39, Energy Deposition (MeV): 0
Energy Total in Run:logicalUrinaryBladder, ID: 40, Energy Deposition (MeV): 0
Energy Total in Run:logicalUterus, ID: 41, Energy Deposition (MeV): 0
-Total Energy deposit in the body is: 56.0046 MeV
+Total Energy deposit in the body is: 52.4689 MeV
Graphics systems deleted.
Visualization Manager deleting...
diff --git a/examples/advanced/human_phantom/include/G4HumanPhantomHit.hh b/examples/advanced/human_phantom/include/G4HumanPhantomHit.hh
index f90e4fd4323..38e2d239b2f 100644
--- a/examples/advanced/human_phantom/include/G4HumanPhantomHit.hh
+++ b/examples/advanced/human_phantom/include/G4HumanPhantomHit.hh
@@ -43,7 +43,7 @@ public:
~G4HumanPhantomHit();
G4HumanPhantomHit(const G4HumanPhantomHit&);
const G4HumanPhantomHit& operator=(const G4HumanPhantomHit&);
- G4int operator==(const G4HumanPhantomHit&) const;
+ G4bool operator==(const G4HumanPhantomHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
diff --git a/examples/advanced/human_phantom/src/G4HumanPhantomHit.cc b/examples/advanced/human_phantom/src/G4HumanPhantomHit.cc
index 9284980bfcf..df00245b88b 100644
--- a/examples/advanced/human_phantom/src/G4HumanPhantomHit.cc
+++ b/examples/advanced/human_phantom/src/G4HumanPhantomHit.cc
@@ -57,9 +57,9 @@ const G4HumanPhantomHit& G4HumanPhantomHit::operator=(const G4HumanPhantomHit& r
return *this;
}
-G4int G4HumanPhantomHit::operator==(const G4HumanPhantomHit& right) const
+G4bool G4HumanPhantomHit::operator==(const G4HumanPhantomHit& right) const
{
- return (this==&right) ? 1 : 0;
+ return (this==&right) ? true : false;
}
void G4HumanPhantomHit::Draw()
diff --git a/examples/advanced/iort_therapy/iort_therapy.out b/examples/advanced/iort_therapy/iort_therapy.out
index 8d3394d6e81..dbd57027fff 100644
--- a/examples/advanced/iort_therapy/iort_therapy.out
+++ b/examples/advanced/iort_therapy/iort_therapy.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -26,12 +22,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -107,337 +101,337 @@ G4ScoringBox : boxMesh_1 --- Shape: Box mesh
DetectorLog 1 0 0
### === Ignore cuts flag: 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 10 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 10 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- KleinNishina : Emin= 0 eV Emax= 100 TeV FluoActive
+ KleinNishina : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 10 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 10 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for proton SubType= 8 BuildTable= 0
+nuclearStopping: for proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for anti_proton SubType= 8 BuildTable= 0
+nuclearStopping: for anti_proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -501,7 +495,7 @@ Run 0 starts ...
Run terminated.
Run Summary
Number of events processed : 2000
- User=12.400000s Real=13.946527s Sys=0.180000s
+ User=11.560000s Real=17.094653s Sys=0.130000s
/score/dumpQuantityToFile boxMesh_1 dose dose.out
Graphics systems deleted.
Visualization Manager deleting...
diff --git a/examples/advanced/lAr_calorimeter/History b/examples/advanced/lAr_calorimeter/History
index 10e8910860d..85583878eca 100644
--- a/examples/advanced/lAr_calorimeter/History
+++ b/examples/advanced/lAr_calorimeter/History
@@ -8,6 +8,9 @@ Hi-------------------------------------------------------------------
Category History file
---------------------
+31.01.2019 - I.Hrivnacova (lAr_calorimeter-V10-04-03)
+ Merged GitHub PR #4: all Boolean operators now return G4bool.
+
09.11.2018 - G. Cosmo (lAr_calorimeter-V10-04-02)
FCALTBEventAction: fixed typo in printout.
diff --git a/examples/advanced/lAr_calorimeter/include/FCALCalorHit.hh b/examples/advanced/lAr_calorimeter/include/FCALCalorHit.hh
index 94d56d3bbb3..35e139a4f3a 100644
--- a/examples/advanced/lAr_calorimeter/include/FCALCalorHit.hh
+++ b/examples/advanced/lAr_calorimeter/include/FCALCalorHit.hh
@@ -46,7 +46,7 @@ class FCALCalorHit : public G4VHit
~FCALCalorHit();
FCALCalorHit(const FCALCalorHit&);
const FCALCalorHit& operator=(const FCALCalorHit&);
- int operator==(const FCALCalorHit&) const;
+ G4bool operator==(const FCALCalorHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
diff --git a/examples/advanced/lAr_calorimeter/lAr_calorimeter.out b/examples/advanced/lAr_calorimeter/lAr_calorimeter.out
index 85ab7023c0d..57af35da0fd 100644
--- a/examples/advanced/lAr_calorimeter/lAr_calorimeter.out
+++ b/examples/advanced/lAr_calorimeter/lAr_calorimeter.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -34,12 +30,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -82,371 +76,371 @@ TBSetupSD is not found in /FCALTB/
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -497,6 +491,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -602,6 +597,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -738,6 +734,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -865,8 +862,8 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Voxelisation: top CPU users:
Percent Total CPU System CPU Memory Volume
------- ---------- ---------- -------- ----------
- 55.17 0.16 0.00 152k EmModuleLogical
- 44.83 0.13 0.00 238k HadModuleLogical
+ 51.72 0.15 0.00 152k EmModuleLogical
+ 48.28 0.14 0.00 238k HadModuleLogical
0.00 0.00 0.00 4k Mother
0.00 0.00 0.00 0k CryostatLogical
0.00 0.00 0.00 0k LArgLogical
@@ -877,8 +874,8 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Voxelisation: top memory users:
Percent Memory Heads Nodes Pointers Total CPU Volume
------- -------- ------ ------ -------- ---------- ----------
- 60.17 238k 1385 2370 3792 0.13 HadModuleLogical
- 38.50 152k 1129 1152 2426 0.16 EmModuleLogical
+ 60.17 238k 1385 2370 3792 0.14 HadModuleLogical
+ 38.50 152k 1129 1152 2426 0.15 EmModuleLogical
0.93 3k 8 42 146 0.00 Mother
0.12 0k 1 7 8 0.00 SolidWLogical
0.12 0k 1 7 8 0.00 CuPlateLogical
@@ -951,295 +948,295 @@ HadEdep is=0 MeV
Edep in FCAL1 FCAl2 : 14706.1 0
**** Primary : 4
Vertex : (-8.66148,-8.80731,32740)
-Number of F1 Tiles with Positive energy : 41
+Number of F1 Tiles with Positive energy : 40
Number of F2 tiles with Positive energy : 0
Visisble Energy in S1 , S2 , S3 in (MeV)
1.92692 1.82955 1.6177
Visible Energy in Hole Counter (MeV)
0 0
Visible Energy in Upstream Dead Materials
-6.22009
+5.12738
Visible Energy in Tail Catcher Scintillator
0 0 0 0 0 0 0
Visible Energy in Tail Catcher Absorber
0 0 0 0 0 0
-N Tracks out of world 3
+N Tracks out of world 2
N Secondaries 245
-EmEdep is=19820.1 MeV
-HadEdep is=1.79955 MeV
-Edep in FCAL1 FCAl2 : 19820.1 1.79955
+EmEdep is=19674.4 MeV
+HadEdep is=4.8066 MeV
+Edep in FCAL1 FCAl2 : 19674.4 4.8066
**** Primary : 5
Vertex : (4.75859,7.01622,32740)
-Number of F1 Tiles with Positive energy : 50
-Number of F2 tiles with Positive energy : 0
+Number of F1 Tiles with Positive energy : 42
+Number of F2 tiles with Positive energy : 1
Visisble Energy in S1 , S2 , S3 in (MeV)
-1.77704 1.49707 1.69742
+1.68471 1.65527 1.52978
Visible Energy in Hole Counter (MeV)
0 0
Visible Energy in Upstream Dead Materials
-3.04148
+19.303
Visible Energy in Tail Catcher Scintillator
0 0 0 0 0 0 0
Visible Energy in Tail Catcher Absorber
0 0 0 0 0 0
-N Tracks out of world 0
-N Secondaries 271
-EmEdep is=19863.8 MeV
-HadEdep is=13.0266 MeV
-Edep in FCAL1 FCAl2 : 19863.8 13.0266
+N Tracks out of world 3
+N Secondaries 171
+EmEdep is=19760.1 MeV
+HadEdep is=30.937 MeV
+Edep in FCAL1 FCAl2 : 19760.1 30.937
**** Primary : 6
Vertex : (1.94335,14.9228,32740)
-Number of F1 Tiles with Positive energy : 58
+Number of F1 Tiles with Positive energy : 66
Number of F2 tiles with Positive energy : 0
Visisble Energy in S1 , S2 , S3 in (MeV)
-1.54965 1.73839 2.11461
+2.15515 1.69098 1.73732
Visible Energy in Hole Counter (MeV)
-0 162.307
+0 105.827
Visible Energy in Upstream Dead Materials
-1567.4
+1068.99
Visible Energy in Tail Catcher Scintillator
0 0 0 0 0 0 0
Visible Energy in Tail Catcher Absorber
0 0 0 0 0 0
-N Tracks out of world 57
-N Secondaries 155
-EmEdep is=17233.2 MeV
-HadEdep is=0 MeV
-Edep in FCAL1 FCAl2 : 17233.2 0
+N Tracks out of world 50
+N Secondaries 113
+EmEdep is=17555.9 MeV
+HadEdep is=8.19057 MeV
+Edep in FCAL1 FCAl2 : 17555.9 8.19057
**** Primary : 7
Vertex : (-10.9878,-6.7949,32740)
-Number of F1 Tiles with Positive energy : 69
+Number of F1 Tiles with Positive energy : 44
Number of F2 tiles with Positive energy : 0
Visisble Energy in S1 , S2 , S3 in (MeV)
-3.24719 1.62848 3.52293
+1.73196 1.67079 1.5438
Visible Energy in Hole Counter (MeV)
-0 44.7578
+0 0
Visible Energy in Upstream Dead Materials
-3765.55
+1.14322
Visible Energy in Tail Catcher Scintillator
0 0 0 0 0 0 0
Visible Energy in Tail Catcher Absorber
0 0 0 0 0 0
-N Tracks out of world 126
-N Secondaries 160
-EmEdep is=14086.4 MeV
-HadEdep is=1.08686 MeV
-Edep in FCAL1 FCAl2 : 14086.4 1.08686
+N Tracks out of world 1
+N Secondaries 115
+EmEdep is=19886.1 MeV
+HadEdep is=2.06297 MeV
+Edep in FCAL1 FCAl2 : 19886.1 2.06297
**** Primary : 8
Vertex : (10.9757,-1.49585,32740)
-Number of F1 Tiles with Positive energy : 43
+Number of F1 Tiles with Positive energy : 48
Number of F2 tiles with Positive energy : 0
Visisble Energy in S1 , S2 , S3 in (MeV)
-2.0622 2.33179 2.10492
+1.51951 1.68348 1.79117
Visible Energy in Hole Counter (MeV)
0 0
Visible Energy in Upstream Dead Materials
-7.71638
+6.72869
Visible Energy in Tail Catcher Scintillator
0 0 0 0 0 0 0
Visible Energy in Tail Catcher Absorber
0 0 0 0 0 0
-N Tracks out of world 2
-N Secondaries 160
-EmEdep is=19805 MeV
-HadEdep is=0 MeV
-Edep in FCAL1 FCAl2 : 19805 0
+N Tracks out of world 3
+N Secondaries 226
+EmEdep is=19814.6 MeV
+HadEdep is=4.48638 MeV
+Edep in FCAL1 FCAl2 : 19814.6 4.48638
**** Primary : 9
Vertex : (-27.7734,3.36444,32740)
-Number of F1 Tiles with Positive energy : 82
+Number of F1 Tiles with Positive energy : 67
Number of F2 tiles with Positive energy : 0
Visisble Energy in S1 , S2 , S3 in (MeV)
-1.81688 1.587 1.52423
+1.6082 1.86323 2.05237
Visible Energy in Hole Counter (MeV)
-0 122.146
+0 91.1644
Visible Energy in Upstream Dead Materials
-5175.6
+3857.34
Visible Energy in Tail Catcher Scintillator
0 0 0 0 0 0 0
Visible Energy in Tail Catcher Absorber
0 0 0 0 0 0
-N Tracks out of world 137
-N Secondaries 192
-EmEdep is=12353.6 MeV
-HadEdep is=10.4002 MeV
-Edep in FCAL1 FCAl2 : 12353.6 10.4002
+N Tracks out of world 103
+N Secondaries 118
+EmEdep is=14273.9 MeV
+HadEdep is=4.10008 MeV
+Edep in FCAL1 FCAl2 : 14273.9 4.10008
**** Primary : 10
Vertex : (-22.5474,4.1006,32740)
-Number of F1 Tiles with Positive energy : 56
+Number of F1 Tiles with Positive energy : 51
Number of F2 tiles with Positive energy : 0
Visisble Energy in S1 , S2 , S3 in (MeV)
-2.00878 1.70775 1.55204
+1.65348 1.80561 1.73355
Visible Energy in Hole Counter (MeV)
-0 27.3019
+0 17.2935
Visible Energy in Upstream Dead Materials
-4114.58
+737.009
Visible Energy in Tail Catcher Scintillator
0 0 0 0 0 0 0
Visible Energy in Tail Catcher Absorber
0 0 0 0 0 0
-N Tracks out of world 107
-N Secondaries 122
-EmEdep is=14497.8 MeV
+N Tracks out of world 30
+N Secondaries 125
+EmEdep is=18889.4 MeV
HadEdep is=0 MeV
-Edep in FCAL1 FCAl2 : 14497.8 0
+Edep in FCAL1 FCAl2 : 18889.4 0
---> Begin of event: 11
**** Primary : 11
Vertex : (-6.31939,21.5056,32740)
-Number of F1 Tiles with Positive energy : 54
+Number of F1 Tiles with Positive energy : 44
Number of F2 tiles with Positive energy : 0
Visisble Energy in S1 , S2 , S3 in (MeV)
-1.67486 2.36447 1.52198
+2.3509 2.05806 1.87792
Visible Energy in Hole Counter (MeV)
-0 76.0549
+0 0
Visible Energy in Upstream Dead Materials
-2382.66
+4.14422
Visible Energy in Tail Catcher Scintillator
0 0 0 0 0 0 0
Visible Energy in Tail Catcher Absorber
0 0 0 0 0 0
-N Tracks out of world 57
-N Secondaries 114
-EmEdep is=16683 MeV
-HadEdep is=4.35134 MeV
-Edep in FCAL1 FCAl2 : 16683 4.35134
+N Tracks out of world 6
+N Secondaries 140
+EmEdep is=19788 MeV
+HadEdep is=0.510999 MeV
+Edep in FCAL1 FCAl2 : 19788 0.510999
**** Primary : 12
Vertex : (17.1015,6.30557,32740)
-Number of F1 Tiles with Positive energy : 46
+Number of F1 Tiles with Positive energy : 50
Number of F2 tiles with Positive energy : 0
Visisble Energy in S1 , S2 , S3 in (MeV)
-1.52787 1.45708 1.63295
+2.23375 1.76977 4.79018
Visible Energy in Hole Counter (MeV)
0 0
Visible Energy in Upstream Dead Materials
-16.8269
+7.74559
Visible Energy in Tail Catcher Scintillator
-0 0 0 0 0 0 0
+0.00364232 0 0 0 0 0 0
Visible Energy in Tail Catcher Absorber
0 0 0 0 0 0
-N Tracks out of world 0
-N Secondaries 178
-EmEdep is=19848.5 MeV
-HadEdep is=0 MeV
-Edep in FCAL1 FCAl2 : 19848.5 0
+N Tracks out of world 3
+N Secondaries 143
+EmEdep is=19799.7 MeV
+HadEdep is=3.88798 MeV
+Edep in FCAL1 FCAl2 : 19799.7 3.88798
**** Primary : 13
Vertex : (-24.9484,11.8659,32740)
-Number of F1 Tiles with Positive energy : 18
+Number of F1 Tiles with Positive energy : 31
Number of F2 tiles with Positive energy : 0
Visisble Energy in S1 , S2 , S3 in (MeV)
-1.68234 2.90545 6.10795
+1.76285 2.862 2.04556
Visible Energy in Hole Counter (MeV)
-0 208.971
+0 57.4348
Visible Energy in Upstream Dead Materials
-18597.1
+18053
Visible Energy in Tail Catcher Scintillator
0 0 0 0 0 0 0
Visible Energy in Tail Catcher Absorber
-0 0 0 0 0 0
-N Tracks out of world 280
-N Secondaries 114
-EmEdep is=351.782 MeV
-HadEdep is=0 MeV
-Edep in FCAL1 FCAl2 : 351.782 0
+0.0400659 0 0 0 0 0
+N Tracks out of world 150
+N Secondaries 162
+EmEdep is=1207.72 MeV
+HadEdep is=0.308437 MeV
+Edep in FCAL1 FCAl2 : 1207.72 0.308437
**** Primary : 14
Vertex : (-0.133696,18.3151,32740)
-Number of F1 Tiles with Positive energy : 38
+Number of F1 Tiles with Positive energy : 41
Number of F2 tiles with Positive energy : 0
Visisble Energy in S1 , S2 , S3 in (MeV)
-2.18614 1.76696 1.6941
+1.58235 1.55779 1.72147
Visible Energy in Hole Counter (MeV)
-0 19.3127
+0 0
Visible Energy in Upstream Dead Materials
-376.988
+16.8618
Visible Energy in Tail Catcher Scintillator
-0 0 0 0 0 0 0
+0.0545823 0 0 0 0 0 0
Visible Energy in Tail Catcher Absorber
0 0 0 0 0 0
-N Tracks out of world 11
-N Secondaries 214
-EmEdep is=19407.4 MeV
-HadEdep is=2.23453 MeV
-Edep in FCAL1 FCAl2 : 19407.4 2.23453
+N Tracks out of world 1
+N Secondaries 187
+EmEdep is=19795.5 MeV
+HadEdep is=0.434886 MeV
+Edep in FCAL1 FCAl2 : 19795.5 0.434886
**** Primary : 15
Vertex : (17.3196,17.6617,32740)
-Number of F1 Tiles with Positive energy : 47
+Number of F1 Tiles with Positive energy : 43
Number of F2 tiles with Positive energy : 0
Visisble Energy in S1 , S2 , S3 in (MeV)
-1.78173 2.96844 5.34763
+1.51604 1.71743 1.77622
Visible Energy in Hole Counter (MeV)
0 0
Visible Energy in Upstream Dead Materials
-33.9267
+11.7379
Visible Energy in Tail Catcher Scintillator
0 0 0 0 0 0 0
Visible Energy in Tail Catcher Absorber
0 0 0 0 0 0
-N Tracks out of world 16
-N Secondaries 227
-EmEdep is=19623.9 MeV
-HadEdep is=0.375046 MeV
-Edep in FCAL1 FCAl2 : 19623.9 0.375046
+N Tracks out of world 2
+N Secondaries 193
+EmEdep is=19891.5 MeV
+HadEdep is=0 MeV
+Edep in FCAL1 FCAl2 : 19891.5 0
**** Primary : 16
Vertex : (-20.8489,10.8988,32740)
-Number of F1 Tiles with Positive energy : 63
+Number of F1 Tiles with Positive energy : 62
Number of F2 tiles with Positive energy : 0
Visisble Energy in S1 , S2 , S3 in (MeV)
-2.47511 3.27176 5.2022
+1.82243 1.61864 1.95095
Visible Energy in Hole Counter (MeV)
-0 183.211
+0 48.0242
Visible Energy in Upstream Dead Materials
-7737.76
+3350.37
Visible Energy in Tail Catcher Scintillator
0 0 0 0 0 0 0
Visible Energy in Tail Catcher Absorber
0 0 0 0 0 0
-N Tracks out of world 222
-N Secondaries 227
-EmEdep is=10239.5 MeV
-HadEdep is=0.318955 MeV
-Edep in FCAL1 FCAl2 : 10239.5 0.318955
+N Tracks out of world 86
+N Secondaries 216
+EmEdep is=14387.1 MeV
+HadEdep is=3.9842 MeV
+Edep in FCAL1 FCAl2 : 14387.1 3.9842
**** Primary : 17
Vertex : (-9.96316,-9.33478,32740)
Number of F1 Tiles with Positive energy : 45
-Number of F2 tiles with Positive energy : 0
+Number of F2 tiles with Positive energy : 1
Visisble Energy in S1 , S2 , S3 in (MeV)
-1.90101 1.60237 1.68748
+1.99192 3.71154 2.00636
Visible Energy in Hole Counter (MeV)
0 0
Visible Energy in Upstream Dead Materials
-5.74209
+4.01474
Visible Energy in Tail Catcher Scintillator
0 0 0 0 0 0 0
Visible Energy in Tail Catcher Absorber
0 0 0 0 0 0
-N Tracks out of world 8
-N Secondaries 313
-EmEdep is=19836 MeV
-HadEdep is=6.4238 MeV
-Edep in FCAL1 FCAl2 : 19836 6.4238
+N Tracks out of world 5
+N Secondaries 148
+EmEdep is=19783 MeV
+HadEdep is=28.7649 MeV
+Edep in FCAL1 FCAl2 : 19783 28.7649
**** Primary : 18
Vertex : (-9.96316,-9.33478,32740)
-Number of F1 Tiles with Positive energy : 44
+Number of F1 Tiles with Positive energy : 53
Number of F2 tiles with Positive energy : 0
Visisble Energy in S1 , S2 , S3 in (MeV)
-1.575 1.88948 1.6055
+1.88664 1.57291 1.82098
Visible Energy in Hole Counter (MeV)
-0 0
+0 35.0664
Visible Energy in Upstream Dead Materials
-3.24105
+1377.05
Visible Energy in Tail Catcher Scintillator
0 0 0 0 0 0 0
Visible Energy in Tail Catcher Absorber
0 0 0 0 0 0
-N Tracks out of world 3
-N Secondaries 212
-EmEdep is=19764 MeV
-HadEdep is=13.9496 MeV
-Edep in FCAL1 FCAl2 : 19764 13.9496
+N Tracks out of world 41
+N Secondaries 160
+EmEdep is=17956.1 MeV
+HadEdep is=0 MeV
+Edep in FCAL1 FCAl2 : 17956.1 0
Run terminated.
Run Summary
Number of events processed : 18
- User=9.140000s Real=9.300696s Sys=0.010000s
+ User=9.020000s Real=9.044356s Sys=0.000000s
Graphics systems deleted.
Visualization Manager deleting...
G4 kernel has come to Quit state.
@@ -1253,21 +1250,21 @@ G4SDManager deleted.
EventManager deleted.
Units table cleared.
TransportationManager deleted.
-Total navigation history collections cleaned: 44
+Total navigation history collections cleaned: 42
================== Deleting memory pools ===================
-Pool ID '20G4NavigationLevelRep', size : 0.0615 MB
+Pool ID '20G4NavigationLevelRep', size : 0.0606 MB
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
-Pool ID '17G4DynamicParticle', size : 0.108 MB
+Pool ID '17G4DynamicParticle', size : 0.0788 MB
Pool ID '7G4Event', size : 0.000961 MB
Pool ID '15G4PrimaryVertex', size : 0.000961 MB
Pool ID '17G4PrimaryParticle', size : 0.000961 MB
Pool ID '15G4HCofThisEvent', size : 0.000961 MB
-Pool ID '7G4Track', size : 0.215 MB
-Pool ID '18G4TouchableHistory', size : 0.00577 MB
+Pool ID '7G4Track', size : 0.158 MB
+Pool ID '18G4TouchableHistory', size : 0.00481 MB
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
Pool ID '10G4Fragment', size : 0.000961 MB
Number of memory pools allocated: 11 of which, static: 0
-Dynamic pools deleted: 11 / Total memory freed: 0.4 MB
+Dynamic pools deleted: 11 / Total memory freed: 0.31 MB
============================================================
G4Allocator objects are deleted.
UImanager deleted.
diff --git a/examples/advanced/lAr_calorimeter/src/FCALCalorHit.cc b/examples/advanced/lAr_calorimeter/src/FCALCalorHit.cc
index 401922c72be..b6da6bcb6f3 100644
--- a/examples/advanced/lAr_calorimeter/src/FCALCalorHit.cc
+++ b/examples/advanced/lAr_calorimeter/src/FCALCalorHit.cc
@@ -66,9 +66,9 @@ const FCALCalorHit& FCALCalorHit::operator=(const FCALCalorHit& right)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
-int FCALCalorHit::operator==(const FCALCalorHit& right) const
+G4bool FCALCalorHit::operator==(const FCALCalorHit& right) const
{
- return (this==&right) ? 1 : 0;
+ return (this==&right) ? true : false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
diff --git a/examples/advanced/medical_linac/medical_linac.out b/examples/advanced/medical_linac/medical_linac.out
index 2f580b0a439..b575b9b38e4 100644
--- a/examples/advanced/medical_linac/medical_linac.out
+++ b/examples/advanced/medical_linac/medical_linac.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -61,7 +57,7 @@ sigma0 sigma_b+ sigma_b- sigma_b0 sigma_c+ sigma_c++ sigma_c0 ss1_diquark su0_di
t_quark tau+ tau- triton u_quark ud0_diquark ud1_diquark uu1_diquark xi(1530)- xi(1530)0
xi(1690)- xi(1690)0 xi(1820)- xi(1820)0 xi(1950)- xi(1950)0 xi(2030)- xi(2030)0 xi- xi0
xi_b- xi_b0 xi_c+ xi_c0
-/control/execute /mnt/build/jenkins/workspace/g4-cc7/COMPILER/gcc63/LABEL/cc7/THREAD/Seq/release/RelWithDebInfo/10-04-ref-10_branch/build/examples/advanced/medical_linac/batch.mac
+/control/execute /mnt/build/jenkins/workspace/g4n-centos7/COMPILER/gcc63/LABEL/centos7/THREAD/Seq/build/examples/advanced/medical_linac/batch.mac
########### Launch parameters #########
###
### Visualization
@@ -249,401 +245,393 @@ Checking overlaps for volume fullWaterPhantomPV ... OK!
fullWaterPhantomR 1 0 0
### === Ignore cuts flag: 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 1 GeV FluoActive
- KleinNishina : Emin= 1 GeV Emax= 100 TeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 1 GeV Fluo
+ KleinNishina : Emin= 1 GeV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler5D : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler5D : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
- MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
+ LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
+ MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-
-nuclearStopping: for proton SubType= 8 BuildTable= 0
- ===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-
-nuclearStopping: for anti_proton SubType= 8 BuildTable= 0
- ===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
Region -- -- appears in world volume
This region is in the mass world.
@@ -889,10 +877,10 @@ Launched 50000 random primary particles
Run terminated.
Run Summary
Number of events processed : 50000
- User=19.910000s Real=20.563037s Sys=0.000000s
+ User=17.710000s Real=17.995628s Sys=0.030000s
PrimitiveScorer RUN PhantomSD,TotalDose
- Number of entries 151
-loop elapsed time [s] : 19.94
+ Number of entries 169
+loop elapsed time [s] : 17.74
Region -- -- appears in world volume
@@ -1116,10 +1104,10 @@ Launched 50000 random primary particles
Run terminated.
Run Summary
Number of events processed : 50000
- User=18.470000s Real=19.050270s Sys=0.000000s
+ User=17.460000s Real=17.570591s Sys=0.020000s
PrimitiveScorer RUN PhantomSD,TotalDose
- Number of entries 152
-loop elapsed time [s] : 18.5
+ Number of entries 126
+loop elapsed time [s] : 17.48
################ END NEW GEOMETRY ########################
/run/geometryModified
@@ -1413,10 +1401,10 @@ Launched 50000 random primary particles
Run terminated.
Run Summary
Number of events processed : 50000
- User=18.870000s Real=19.134363s Sys=0.000000s
+ User=17.780000s Real=17.852258s Sys=0.010000s
PrimitiveScorer RUN PhantomSD,TotalDose
- Number of entries 103
-loop elapsed time [s] : 18.9
+ Number of entries 73
+loop elapsed time [s] : 17.8
Region -- -- appears in world volume
@@ -1640,13 +1628,13 @@ Launched 50000 random primary particles
Run terminated.
Run Summary
Number of events processed : 50000
- User=19.120000s Real=20.125110s Sys=0.000000s
+ User=17.820000s Real=17.974260s Sys=0.010000s
PrimitiveScorer RUN PhantomSD,TotalDose
- Number of entries 83
-loop elapsed time [s] : 19.14
+ Number of entries 116
+loop elapsed time [s] : 17.84
################ END NEW GEOMETRY ########################
-loop elapsed time [s] : 80.66
+loop elapsed time [s] : 75.05
G4 kernel has come to Quit state.
UserDetectorConstruction deleted.
@@ -1658,9 +1646,9 @@ G4SDManager deleted.
EventManager deleted.
Units table cleared.
TransportationManager deleted.
-Total navigation history collections cleaned: 22
+Total navigation history collections cleaned: 21
================== Deleting memory pools ===================
-Pool ID '20G4NavigationLevelRep', size : 0.0327 MB
+Pool ID '20G4NavigationLevelRep', size : 0.0308 MB
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
Pool ID '16G4HitsCollection', size : 0 MB
Pool ID '7G4Event', size : 0.000961 MB
@@ -1672,10 +1660,10 @@ Pool ID '7G4Track', size : 0.00577 MB
Pool ID '18G4TouchableHistory', size : 0.00288 MB
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
Pool ID '12G4Trajectory', size : 0.00288 MB
-Pool ID '17G4TrajectoryPoint', size : 0.0298 MB
+Pool ID '17G4TrajectoryPoint', size : 0.0346 MB
Pool ID '21G4TrajectoryContainer', size : 0.000961 MB
Number of memory pools allocated: 14 of which, static: 0
-Dynamic pools deleted: 14 / Total memory freed: 0.084 MB
+Dynamic pools deleted: 14 / Total memory freed: 0.087 MB
============================================================
G4Allocator objects are deleted.
UImanager deleted.
diff --git a/examples/advanced/medical_linac/totDose.txt b/examples/advanced/medical_linac/totDose.txt
index 2077c6398d4..948fb62986f 100644
--- a/examples/advanced/medical_linac/totDose.txt
+++ b/examples/advanced/medical_linac/totDose.txt
@@ -1753,7 +1753,7 @@
12 28 1 0
13 28 1 0
14 28 1 0
-15 28 1 1.09935e-11
+15 28 1 0
16 28 1 0
17 28 1 0
18 28 1 0
@@ -2465,7 +2465,7 @@
4 22 2 0
5 22 2 0
6 22 2 0
-7 22 2 2.45228e-12
+7 22 2 0
8 22 2 0
9 22 2 0
10 22 2 0
@@ -3364,7 +3364,7 @@
3 22 3 0
4 22 3 0
5 22 3 0
-6 22 3 5.40685e-12
+6 22 3 0
7 22 3 0
8 22 3 0
9 22 3 0
@@ -3531,7 +3531,7 @@
20 27 3 0
21 27 3 0
22 27 3 0
-23 27 3 4.69978e-12
+23 27 3 0
24 27 3 0
25 27 3 0
26 27 3 0
@@ -3962,7 +3962,7 @@
1 12 4 0
2 12 4 0
3 12 4 0
-4 12 4 1.68968e-12
+4 12 4 0
5 12 4 0
6 12 4 0
7 12 4 0
@@ -4362,7 +4362,7 @@
11 25 4 0
12 25 4 0
13 25 4 0
-14 25 4 1.79996e-12
+14 25 4 0
15 25 4 0
16 25 4 0
17 25 4 0
@@ -4429,7 +4429,7 @@
18 27 4 0
19 27 4 0
20 27 4 0
-21 27 4 8.55599e-13
+21 27 4 0
22 27 4 0
23 27 4 0
24 27 4 0
@@ -4891,7 +4891,7 @@
0 13 5 0
1 13 5 0
2 13 5 0
-3 13 5 7.4101e-13
+3 13 5 0
4 13 5 0
5 13 5 0
6 13 5 0
@@ -4939,7 +4939,7 @@
18 14 5 0
19 14 5 0
20 14 5 0
-21 14 5 0
+21 14 5 9.54541e-13
22 14 5 0
23 14 5 0
24 14 5 0
@@ -5329,7 +5329,7 @@
18 27 5 0
19 27 5 0
20 27 5 0
-21 27 5 1.13144e-11
+21 27 5 0
22 27 5 0
23 27 5 0
24 27 5 0
@@ -5749,7 +5749,7 @@
18 11 6 0
19 11 6 0
20 11 6 0
-21 11 6 0
+21 11 6 7.61008e-12
22 11 6 0
23 11 6 0
24 11 6 0
@@ -6276,7 +6276,7 @@
5 29 6 0
6 29 6 0
7 29 6 0
-8 29 6 4.07247e-12
+8 29 6 0
9 29 6 0
10 29 6 0
11 29 6 0
@@ -6550,7 +6550,7 @@
9 8 7 0
10 8 7 0
11 8 7 0
-12 8 7 2.74233e-10
+12 8 7 0
13 8 7 0
14 8 7 0
15 8 7 0
@@ -6743,7 +6743,7 @@
22 14 7 0
23 14 7 0
24 14 7 0
-25 14 7 1.01549e-11
+25 14 7 0
26 14 7 0
27 14 7 0
28 14 7 0
@@ -7157,7 +7157,7 @@
16 28 7 0
17 28 7 0
18 28 7 0
-19 28 7 5.69387e-12
+19 28 7 0
20 28 7 0
21 28 7 0
22 28 7 0
@@ -7187,7 +7187,7 @@
16 29 7 0
17 29 7 0
18 29 7 0
-19 29 7 4.5404e-12
+19 29 7 0
20 29 7 0
21 29 7 0
22 29 7 0
@@ -7268,7 +7268,7 @@
7 2 8 0
8 2 8 0
9 2 8 0
-10 2 8 1.48232e-10
+10 2 8 0
11 2 8 0
12 2 8 0
13 2 8 0
@@ -7298,7 +7298,7 @@
7 3 8 0
8 3 8 0
9 3 8 0
-10 3 8 1.60713e-11
+10 3 8 0
11 3 8 0
12 3 8 0
13 3 8 0
@@ -7949,7 +7949,7 @@
28 24 8 0
29 24 8 0
0 25 8 0
-1 25 8 0
+1 25 8 6.61307e-11
2 25 8 0
3 25 8 0
4 25 8 0
@@ -7980,7 +7980,7 @@
29 25 8 0
0 26 8 0
1 26 8 0
-2 26 8 1.13236e-11
+2 26 8 0
3 26 8 0
4 26 8 0
5 26 8 0
@@ -8163,7 +8163,7 @@
2 2 9 0
3 2 9 0
4 2 9 0
-5 2 9 4.89942e-11
+5 2 9 0
6 2 9 0
7 2 9 0
8 2 9 0
@@ -9157,7 +9157,7 @@
6 5 10 0
7 5 10 0
8 5 10 0
-9 5 10 0
+9 5 10 1.28669e-11
10 5 10 0
11 5 10 0
12 5 10 0
@@ -9371,7 +9371,7 @@
10 12 10 0
11 12 10 0
12 12 10 0
-13 12 10 0
+13 12 10 1.49286e-12
14 12 10 0
15 12 10 0
16 12 10 0
@@ -10521,7 +10521,7 @@
20 20 11 0
21 20 11 0
22 20 11 0
-23 20 11 0
+23 20 11 2.85804e-11
24 20 11 0
25 20 11 0
26 20 11 0
@@ -10812,7 +10812,7 @@
11 0 12 0
12 0 12 0
13 0 12 0
-14 0 12 4.89269e-12
+14 0 12 0
15 0 12 0
16 0 12 0
17 0 12 0
@@ -10892,7 +10892,7 @@
1 3 12 0
2 3 12 0
3 3 12 0
-4 3 12 0
+4 3 12 1.84739e-11
5 3 12 0
6 3 12 0
7 3 12 0
@@ -11233,7 +11233,7 @@
12 14 12 0
13 14 12 0
14 14 12 0
-15 14 12 0
+15 14 12 8.78945e-13
16 14 12 0
17 14 12 0
18 14 12 0
@@ -11318,7 +11318,7 @@
7 17 12 0
8 17 12 0
9 17 12 0
-10 17 12 0
+10 17 12 2.4119e-12
11 17 12 0
12 17 12 0
13 17 12 0
@@ -11348,7 +11348,7 @@
7 18 12 0
8 18 12 0
9 18 12 0
-10 18 12 0
+10 18 12 2.90987e-12
11 18 12 0
12 18 12 0
13 18 12 0
@@ -11414,7 +11414,7 @@
13 20 12 0
14 20 12 0
15 20 12 0
-16 20 12 4.72286e-11
+16 20 12 0
17 20 12 0
18 20 12 0
19 20 12 0
@@ -11832,11 +11832,11 @@
11 4 13 0
12 4 13 0
13 4 13 0
-14 4 13 0
+14 4 13 1.89338e-12
15 4 13 0
16 4 13 0
17 4 13 0
-18 4 13 9.67451e-13
+18 4 13 0
19 4 13 0
20 4 13 0
21 4 13 0
@@ -12010,7 +12010,7 @@
9 10 13 0
10 10 13 0
11 10 13 0
-12 10 13 0
+12 10 13 3.07092e-14
13 10 13 0
14 10 13 0
15 10 13 0
@@ -12383,7 +12383,7 @@
22 22 13 0
23 22 13 0
24 22 13 0
-25 22 13 1.63953e-11
+25 22 13 0
26 22 13 0
27 22 13 0
28 22 13 0
@@ -12454,7 +12454,7 @@
3 25 13 0
4 25 13 0
5 25 13 0
-6 25 13 1.66142e-12
+6 25 13 0
7 25 13 0
8 25 13 0
9 25 13 0
@@ -12466,7 +12466,7 @@
15 25 13 0
16 25 13 0
17 25 13 0
-18 25 13 0
+18 25 13 2.91048e-11
19 25 13 0
20 25 13 0
21 25 13 0
@@ -12765,7 +12765,7 @@
14 5 14 0
15 5 14 0
16 5 14 0
-17 5 14 2.27541e-13
+17 5 14 0
18 5 14 0
19 5 14 0
20 5 14 0
@@ -12858,7 +12858,7 @@
17 8 14 0
18 8 14 0
19 8 14 0
-20 8 14 0
+20 8 14 1.1467e-10
21 8 14 0
22 8 14 0
23 8 14 0
@@ -12888,7 +12888,7 @@
17 9 14 0
18 9 14 0
19 9 14 0
-20 9 14 0
+20 9 14 1.19822e-10
21 9 14 0
22 9 14 0
23 9 14 0
@@ -13012,7 +13012,7 @@
21 13 14 0
22 13 14 0
23 13 14 0
-24 13 14 2.24869e-11
+24 13 14 0
25 13 14 0
26 13 14 0
27 13 14 0
@@ -13088,7 +13088,7 @@
7 16 14 0
8 16 14 0
9 16 14 0
-10 16 14 0
+10 16 14 7.42005e-12
11 16 14 0
12 16 14 0
13 16 14 0
@@ -13210,7 +13210,7 @@
9 20 14 0
10 20 14 0
11 20 14 0
-12 20 14 2.67129e-10
+12 20 14 0
13 20 14 0
14 20 14 0
15 20 14 0
@@ -13240,7 +13240,7 @@
9 21 14 0
10 21 14 0
11 21 14 0
-12 21 14 6.71687e-11
+12 21 14 0
13 21 14 0
14 21 14 0
15 21 14 0
@@ -13344,7 +13344,7 @@
23 24 14 0
24 24 14 0
25 24 14 0
-26 24 14 1.06313e-11
+26 24 14 0
27 24 14 0
28 24 14 0
29 24 14 0
@@ -13354,7 +13354,7 @@
3 25 14 0
4 25 14 0
5 25 14 0
-6 25 14 1.22135e-11
+6 25 14 0
7 25 14 0
8 25 14 0
9 25 14 0
@@ -13392,10 +13392,10 @@
11 26 14 0
12 26 14 0
13 26 14 0
-14 26 14 3.12292e-11
-15 26 14 7.35776e-11
+14 26 14 0
+15 26 14 0
16 26 14 0
-17 26 14 0
+17 26 14 6.34712e-11
18 26 14 0
19 26 14 0
20 26 14 0
@@ -13486,8 +13486,8 @@
15 29 14 0
16 29 14 0
17 29 14 0
-18 29 14 0
-19 29 14 0
+18 29 14 1.38628e-10
+19 29 14 2.92333e-11
20 29 14 0
21 29 14 0
22 29 14 0
@@ -13664,7 +13664,7 @@
13 5 15 0
14 5 15 0
15 5 15 0
-16 5 15 1.20303e-12
+16 5 15 0
17 5 15 0
18 5 15 0
19 5 15 0
@@ -13728,7 +13728,7 @@
17 7 15 0
18 7 15 0
19 7 15 0
-20 7 15 0
+20 7 15 1.82339e-10
21 7 15 0
22 7 15 0
23 7 15 0
@@ -13758,7 +13758,7 @@
17 8 15 0
18 8 15 0
19 8 15 0
-20 8 15 0
+20 8 15 2.47677e-10
21 8 15 0
22 8 15 0
23 8 15 0
@@ -13915,8 +13915,8 @@
24 13 15 0
25 13 15 0
26 13 15 0
-27 13 15 0
-28 13 15 0
+27 13 15 2.38974e-12
+28 13 15 2.72436e-11
29 13 15 0
0 14 15 0
1 14 15 0
@@ -13941,7 +13941,7 @@
20 14 15 0
21 14 15 0
22 14 15 0
-23 14 15 1.88791e-10
+23 14 15 0
24 14 15 0
25 14 15 0
26 14 15 0
@@ -14085,9 +14085,9 @@
14 19 15 0
15 19 15 0
16 19 15 0
-17 19 15 0
+17 19 15 2.10289e-13
18 19 15 0
-19 19 15 0
+19 19 15 1.57932e-12
20 19 15 0
21 19 15 0
22 19 15 0
@@ -14986,7 +14986,7 @@
15 19 16 0
16 19 16 0
17 19 16 0
-18 19 16 0
+18 19 16 1.87616e-12
19 19 16 0
20 19 16 0
21 19 16 0
@@ -15218,7 +15218,7 @@
7 27 16 0
8 27 16 0
9 27 16 0
-10 27 16 0
+10 27 16 1.00792e-10
11 27 16 0
12 27 16 0
13 27 16 0
@@ -15820,7 +15820,7 @@
9 17 17 0
10 17 17 0
11 17 17 0
-12 17 17 0
+12 17 17 3.77308e-13
13 17 17 0
14 17 17 0
15 17 17 0
@@ -15844,7 +15844,7 @@
3 18 17 0
4 18 17 0
5 18 17 0
-6 18 17 8.75076e-11
+6 18 17 0
7 18 17 0
8 18 17 0
9 18 17 0
@@ -15887,7 +15887,7 @@
16 19 17 0
17 19 17 0
18 19 17 0
-19 19 17 0
+19 19 17 3.11411e-12
20 19 17 0
21 19 17 0
22 19 17 0
@@ -15909,8 +15909,8 @@
8 20 17 0
9 20 17 0
10 20 17 0
-11 20 17 0
-12 20 17 0
+11 20 17 6.71892e-12
+12 20 17 2.02602e-12
13 20 17 0
14 20 17 0
15 20 17 0
@@ -15940,12 +15940,12 @@
9 21 17 0
10 21 17 0
11 21 17 0
-12 21 17 0
+12 21 17 4.63203e-12
13 21 17 0
14 21 17 0
15 21 17 0
16 21 17 0
-17 21 17 0
+17 21 17 7.67051e-13
18 21 17 0
19 21 17 0
20 21 17 0
@@ -15981,7 +15981,7 @@
20 22 17 0
21 22 17 0
22 22 17 0
-23 22 17 1.53243e-11
+23 22 17 0
24 22 17 0
25 22 17 0
26 22 17 0
@@ -15993,7 +15993,7 @@
2 23 17 0
3 23 17 0
4 23 17 0
-5 23 17 1.04009e-11
+5 23 17 0
6 23 17 0
7 23 17 0
8 23 17 0
@@ -16012,7 +16012,7 @@
21 23 17 0
22 23 17 0
23 23 17 0
-24 23 17 0
+24 23 17 1.61621e-11
25 23 17 0
26 23 17 0
27 23 17 0
@@ -16107,7 +16107,7 @@
26 26 17 0
27 26 17 0
28 26 17 0
-29 26 17 0
+29 26 17 2.13383e-12
0 27 17 0
1 27 17 0
2 27 17 0
@@ -16155,7 +16155,7 @@
14 28 17 0
15 28 17 0
16 28 17 0
-17 28 17 0
+17 28 17 1.71287e-10
18 28 17 0
19 28 17 0
20 28 17 0
@@ -16179,7 +16179,7 @@
8 29 17 0
9 29 17 0
10 29 17 0
-11 29 17 1.74182e-11
+11 29 17 0
12 29 17 0
13 29 17 0
14 29 17 0
@@ -16484,7 +16484,7 @@
13 9 18 0
14 9 18 0
15 9 18 0
-16 9 18 8.31732e-12
+16 9 18 0
17 9 18 0
18 9 18 0
19 9 18 0
@@ -16660,7 +16660,7 @@
9 15 18 0
10 15 18 0
11 15 18 0
-12 15 18 0
+12 15 18 3.02189e-12
13 15 18 0
14 15 18 0
15 15 18 0
@@ -16714,7 +16714,7 @@
3 17 18 0
4 17 18 0
5 17 18 0
-6 17 18 0
+6 17 18 4.9385e-11
7 17 18 0
8 17 18 0
9 17 18 0
@@ -16842,7 +16842,7 @@
11 21 18 0
12 21 18 0
13 21 18 0
-14 21 18 0
+14 21 18 6.6756e-11
15 21 18 0
16 21 18 0
17 21 18 0
@@ -16872,8 +16872,8 @@
11 22 18 0
12 22 18 0
13 22 18 0
-14 22 18 0
-15 22 18 0
+14 22 18 9.11915e-12
+15 22 18 1.60512e-11
16 22 18 0
17 22 18 0
18 22 18 0
@@ -16909,7 +16909,7 @@
18 23 18 0
19 23 18 0
20 23 18 0
-21 23 18 5.00008e-11
+21 23 18 0
22 23 18 0
23 23 18 0
24 23 18 0
@@ -17057,8 +17057,8 @@
16 28 18 0
17 28 18 0
18 28 18 0
-19 28 18 0
-20 28 18 0
+19 28 18 2.24732e-10
+20 28 18 2.79504e-11
21 28 18 0
22 28 18 0
23 28 18 0
@@ -17087,8 +17087,8 @@
16 29 18 0
17 29 18 0
18 29 18 0
-19 29 18 0
-20 29 18 0
+19 29 18 1.07466e-10
+20 29 18 3.66726e-11
21 29 18 0
22 29 18 0
23 29 18 0
@@ -17505,7 +17505,7 @@
14 13 19 0
15 13 19 0
16 13 19 0
-17 13 19 0
+17 13 19 9.69443e-12
18 13 19 0
19 13 19 0
20 13 19 0
@@ -17588,7 +17588,7 @@
7 16 19 0
8 16 19 0
9 16 19 0
-10 16 19 0
+10 16 19 5.20891e-12
11 16 19 0
12 16 19 0
13 16 19 0
@@ -17711,7 +17711,7 @@
10 20 19 0
11 20 19 0
12 20 19 0
-13 20 19 0
+13 20 19 1.46177e-12
14 20 19 0
15 20 19 0
16 20 19 0
@@ -17742,8 +17742,8 @@
11 21 19 0
12 21 19 0
13 21 19 0
-14 21 19 0
-15 21 19 0
+14 21 19 1.08166e-10
+15 21 19 2.42774e-11
16 21 19 0
17 21 19 0
18 21 19 0
@@ -17754,7 +17754,7 @@
23 21 19 0
24 21 19 0
25 21 19 0
-26 21 19 0
+26 21 19 2.83213e-12
27 21 19 0
28 21 19 0
29 21 19 0
@@ -17772,7 +17772,7 @@
11 22 19 0
12 22 19 0
13 22 19 0
-14 22 19 0
+14 22 19 3.4284e-11
15 22 19 0
16 22 19 0
17 22 19 0
@@ -17893,7 +17893,7 @@
12 26 19 0
13 26 19 0
14 26 19 0
-15 26 19 0
+15 26 19 1.25814e-10
16 26 19 0
17 26 19 0
18 26 19 0
@@ -18639,7 +18639,7 @@
8 21 20 0
9 21 20 0
10 21 20 0
-11 21 20 0
+11 21 20 4.08376e-12
12 21 20 0
13 21 20 0
14 21 20 0
@@ -18650,7 +18650,7 @@
19 21 20 0
20 21 20 0
21 21 20 0
-22 21 20 5.2333e-11
+22 21 20 0
23 21 20 0
24 21 20 0
25 21 20 0
@@ -18672,7 +18672,7 @@
11 22 20 0
12 22 20 0
13 22 20 0
-14 22 20 0
+14 22 20 4.2524e-12
15 22 20 0
16 22 20 0
17 22 20 0
@@ -18707,7 +18707,7 @@
16 23 20 0
17 23 20 0
18 23 20 0
-19 23 20 0
+19 23 20 9.3671e-12
20 23 20 0
21 23 20 0
22 23 20 0
@@ -18737,7 +18737,7 @@
16 24 20 0
17 24 20 0
18 24 20 0
-19 24 20 0
+19 24 20 3.66099e-11
20 24 20 0
21 24 20 0
22 24 20 0
@@ -18768,7 +18768,7 @@
17 25 20 0
18 25 20 0
19 25 20 0
-20 25 20 0
+20 25 20 1.92496e-11
21 25 20 0
22 25 20 0
23 25 20 0
@@ -18823,7 +18823,7 @@
12 27 20 0
13 27 20 0
14 27 20 0
-15 27 20 0
+15 27 20 1.30139e-11
16 27 20 0
17 27 20 0
18 27 20 0
@@ -19079,7 +19079,7 @@
28 5 21 0
29 5 21 0
0 6 21 0
-1 6 21 3.15614e-11
+1 6 21 0
2 6 21 0
3 6 21 0
4 6 21 0
@@ -19139,7 +19139,7 @@
28 7 21 0
29 7 21 0
0 8 21 0
-1 8 21 1.79772e-11
+1 8 21 0
2 8 21 0
3 8 21 0
4 8 21 0
@@ -19246,7 +19246,7 @@
15 11 21 0
16 11 21 0
17 11 21 0
-18 11 21 0
+18 11 21 5.69654e-11
19 11 21 0
20 11 21 0
21 11 21 0
@@ -19340,7 +19340,7 @@
19 14 21 0
20 14 21 0
21 14 21 0
-22 14 21 0
+22 14 21 5.31192e-12
23 14 21 0
24 14 21 0
25 14 21 0
@@ -19456,7 +19456,7 @@
15 18 21 0
16 18 21 0
17 18 21 0
-18 18 21 8.51126e-12
+18 18 21 0
19 18 21 0
20 18 21 0
21 18 21 0
@@ -19486,7 +19486,7 @@
15 19 21 0
16 19 21 0
17 19 21 0
-18 19 21 1.09258e-12
+18 19 21 0
19 19 21 0
20 19 21 0
21 19 21 0
@@ -19603,7 +19603,7 @@
12 23 21 0
13 23 21 0
14 23 21 0
-15 23 21 4.09471e-11
+15 23 21 0
16 23 21 0
17 23 21 0
18 23 21 0
@@ -19662,13 +19662,13 @@
11 25 21 0
12 25 21 0
13 25 21 0
-14 25 21 2.15377e-10
+14 25 21 0
15 25 21 0
16 25 21 0
17 25 21 0
18 25 21 0
19 25 21 0
-20 25 21 0
+20 25 21 2.59071e-10
21 25 21 0
22 25 21 0
23 25 21 0
@@ -19692,7 +19692,7 @@
11 26 21 0
12 26 21 0
13 26 21 0
-14 26 21 1.45975e-11
+14 26 21 0
15 26 21 0
16 26 21 0
17 26 21 0
@@ -19722,7 +19722,7 @@
11 27 21 0
12 27 21 0
13 27 21 0
-14 27 21 1.91874e-10
+14 27 21 0
15 27 21 0
16 27 21 0
17 27 21 0
@@ -20122,7 +20122,7 @@
21 10 22 0
22 10 22 0
23 10 22 0
-24 10 22 0
+24 10 22 1.54867e-12
25 10 22 0
26 10 22 0
27 10 22 0
@@ -20218,7 +20218,7 @@
27 13 22 0
28 13 22 0
29 13 22 0
-0 14 22 4.75087e-12
+0 14 22 0
1 14 22 0
2 14 22 0
3 14 22 0
@@ -20259,7 +20259,7 @@
8 15 22 0
9 15 22 0
10 15 22 0
-11 15 22 0
+11 15 22 7.13095e-11
12 15 22 0
13 15 22 0
14 15 22 0
@@ -20305,7 +20305,7 @@
24 16 22 0
25 16 22 0
26 16 22 0
-27 16 22 0
+27 16 22 9.0725e-11
28 16 22 0
29 16 22 0
0 17 22 0
@@ -20335,7 +20335,7 @@
24 17 22 0
25 17 22 0
26 17 22 0
-27 17 22 0
+27 17 22 8.01527e-11
28 17 22 0
29 17 22 0
0 18 22 0
@@ -20356,7 +20356,7 @@
15 18 22 0
16 18 22 0
17 18 22 0
-18 18 22 1.02476e-11
+18 18 22 0
19 18 22 0
20 18 22 0
21 18 22 0
@@ -20386,7 +20386,7 @@
15 19 22 0
16 19 22 0
17 19 22 0
-18 19 22 5.87892e-11
+18 19 22 0
19 19 22 0
20 19 22 0
21 19 22 0
@@ -20505,7 +20505,7 @@
14 23 22 0
15 23 22 0
16 23 22 0
-17 23 22 0
+17 23 22 6.18343e-13
18 23 22 0
19 23 22 0
20 23 22 0
@@ -20529,7 +20529,7 @@
8 24 22 0
9 24 22 0
10 24 22 0
-11 24 22 2.21016e-10
+11 24 22 0
12 24 22 0
13 24 22 0
14 24 22 0
@@ -20562,8 +20562,8 @@
11 25 22 0
12 25 22 0
13 25 22 0
-14 25 22 3.92178e-10
-15 25 22 2.39947e-11
+14 25 22 0
+15 25 22 0
16 25 22 0
17 25 22 0
18 25 22 0
@@ -21123,13 +21123,13 @@
2 14 23 0
3 14 23 0
4 14 23 0
-5 14 23 1.84606e-11
+5 14 23 0
6 14 23 0
7 14 23 0
8 14 23 0
9 14 23 0
10 14 23 0
-11 14 23 0
+11 14 23 1.64258e-10
12 14 23 0
13 14 23 0
14 14 23 0
@@ -21159,7 +21159,7 @@
8 15 23 0
9 15 23 0
10 15 23 0
-11 15 23 0
+11 15 23 2.71703e-10
12 15 23 0
13 15 23 0
14 15 23 0
@@ -21262,7 +21262,7 @@
21 18 23 0
22 18 23 0
23 18 23 0
-24 18 23 1.52999e-12
+24 18 23 0
25 18 23 0
26 18 23 0
27 18 23 0
@@ -21312,7 +21312,7 @@
11 20 23 0
12 20 23 0
13 20 23 0
-14 20 23 7.3237e-13
+14 20 23 0
15 20 23 0
16 20 23 0
17 20 23 0
@@ -21343,7 +21343,7 @@
12 21 23 0
13 21 23 0
14 21 23 0
-15 21 23 0
+15 21 23 3.92442e-12
16 21 23 0
17 21 23 0
18 21 23 0
@@ -21399,7 +21399,7 @@
8 23 23 0
9 23 23 0
10 23 23 0
-11 23 23 3.24679e-10
+11 23 23 0
12 23 23 0
13 23 23 0
14 23 23 0
@@ -21427,9 +21427,9 @@
6 24 23 0
7 24 23 0
8 24 23 0
-9 24 23 0
+9 24 23 6.61951e-13
10 24 23 0
-11 24 23 6.86943e-11
+11 24 23 0
12 24 23 0
13 24 23 0
14 24 23 0
@@ -21520,7 +21520,7 @@
9 27 23 0
10 27 23 0
11 27 23 0
-12 27 23 0
+12 27 23 1.60352e-11
13 27 23 0
14 27 23 0
15 27 23 0
@@ -21590,7 +21590,7 @@
19 29 23 0
20 29 23 0
21 29 23 0
-22 29 23 3.48359e-11
+22 29 23 0
23 29 23 0
24 29 23 0
25 29 23 0
@@ -21988,7 +21988,7 @@
27 12 24 0
28 12 24 0
29 12 24 0
-0 13 24 7.51593e-13
+0 13 24 0
1 13 24 0
2 13 24 0
3 13 24 0
@@ -22029,7 +22029,7 @@
8 14 24 0
9 14 24 0
10 14 24 0
-11 14 24 0
+11 14 24 2.77364e-11
12 14 24 0
13 14 24 0
14 14 24 0
@@ -22270,8 +22270,8 @@
9 22 24 0
10 22 24 0
11 22 24 0
-12 22 24 3.6794e-12
-13 22 24 1.06579e-12
+12 22 24 0
+13 22 24 0
14 22 24 0
15 22 24 0
16 22 24 0
@@ -22327,15 +22327,15 @@
6 24 24 0
7 24 24 0
8 24 24 0
-9 24 24 0
+9 24 24 4.07561e-11
10 24 24 0
11 24 24 0
12 24 24 0
13 24 24 0
14 24 24 0
15 24 24 0
-16 24 24 0
-17 24 24 0
+16 24 24 1.08398e-10
+17 24 24 3.87666e-11
18 24 24 0
19 24 24 0
20 24 24 0
@@ -22420,12 +22420,12 @@
9 27 24 0
10 27 24 0
11 27 24 0
-12 27 24 0
+12 27 24 1.94565e-11
13 27 24 0
14 27 24 0
15 27 24 0
16 27 24 0
-17 27 24 0
+17 27 24 9.80715e-11
18 27 24 0
19 27 24 0
20 27 24 0
@@ -23174,9 +23174,9 @@
13 22 25 0
14 22 25 0
15 22 25 0
-16 22 25 0
+16 22 25 1.16322e-11
17 22 25 0
-18 22 25 0
+18 22 25 1.95618e-10
19 22 25 0
20 22 25 0
21 22 25 0
@@ -23205,7 +23205,7 @@
14 23 25 0
15 23 25 0
16 23 25 0
-17 23 25 0
+17 23 25 1.18732e-10
18 23 25 0
19 23 25 0
20 23 25 0
@@ -23235,7 +23235,7 @@
14 24 25 0
15 24 25 0
16 24 25 0
-17 24 25 0
+17 24 25 6.8075e-12
18 24 25 0
19 24 25 0
20 24 25 0
@@ -23260,8 +23260,8 @@
9 25 25 0
10 25 25 0
11 25 25 0
-12 25 25 8.31011e-14
-13 25 25 3.64803e-13
+12 25 25 0
+13 25 25 0
14 25 25 0
15 25 25 0
16 25 25 0
@@ -23348,7 +23348,7 @@
7 28 25 0
8 28 25 0
9 28 25 0
-10 28 25 0
+10 28 25 6.04622e-11
11 28 25 0
12 28 25 0
13 28 25 0
@@ -23408,7 +23408,7 @@
7 0 26 0
8 0 26 0
9 0 26 0
-10 0 26 0
+10 0 26 2.40903e-12
11 0 26 0
12 0 26 0
13 0 26 0
@@ -23630,7 +23630,7 @@
19 7 26 0
20 7 26 0
21 7 26 0
-22 7 26 0
+22 7 26 1.69529e-10
23 7 26 0
24 7 26 0
25 7 26 0
@@ -23844,7 +23844,7 @@
23 14 26 0
24 14 26 0
25 14 26 0
-26 14 26 1.90176e-12
+26 14 26 0
27 14 26 0
28 14 26 0
29 14 26 0
@@ -23963,7 +23963,7 @@
22 18 26 0
23 18 26 0
24 18 26 0
-25 18 26 4.89476e-11
+25 18 26 0
26 18 26 0
27 18 26 0
28 18 26 0
@@ -24070,17 +24070,17 @@
9 22 26 0
10 22 26 0
11 22 26 0
-12 22 26 7.15404e-12
+12 22 26 0
13 22 26 0
-14 22 26 1.04671e-12
-15 22 26 1.84103e-12
+14 22 26 0
+15 22 26 0
16 22 26 0
17 22 26 0
18 22 26 0
19 22 26 0
-20 22 26 0
+20 22 26 4.37485e-12
21 22 26 0
-22 22 26 0
+22 22 26 5.24934e-11
23 22 26 0
24 22 26 0
25 22 26 0
@@ -24102,7 +24102,7 @@
11 23 26 0
12 23 26 0
13 23 26 0
-14 23 26 5.27956e-13
+14 23 26 0
15 23 26 0
16 23 26 0
17 23 26 0
@@ -24225,7 +24225,7 @@
14 27 26 0
15 27 26 0
16 27 26 0
-17 27 26 0
+17 27 26 2.21974e-11
18 27 26 0
19 27 26 0
20 27 26 0
@@ -24277,7 +24277,7 @@
6 29 26 0
7 29 26 0
8 29 26 0
-9 29 26 1.32291e-12
+9 29 26 0
10 29 26 0
11 29 26 0
12 29 26 0
@@ -24329,12 +24329,12 @@
28 0 27 0
29 0 27 0
0 1 27 0
-1 1 27 0
+1 1 27 5.49116e-11
2 1 27 0
3 1 27 0
4 1 27 0
5 1 27 0
-6 1 27 0
+6 1 27 5.12107e-11
7 1 27 0
8 1 27 0
9 1 27 0
@@ -24360,13 +24360,13 @@
29 1 27 0
0 2 27 0
1 2 27 0
-2 2 27 0
+2 2 27 4.58287e-12
3 2 27 0
4 2 27 0
5 2 27 0
6 2 27 0
-7 2 27 0
-8 2 27 0
+7 2 27 5.66925e-12
+8 2 27 3.09893e-11
9 2 27 0
10 2 27 0
11 2 27 0
@@ -24828,8 +24828,8 @@
17 17 27 0
18 17 27 0
19 17 27 0
-20 17 27 0
-21 17 27 0
+20 17 27 3.2037e-11
+21 17 27 4.70277e-12
22 17 27 0
23 17 27 0
24 17 27 0
@@ -24857,9 +24857,9 @@
16 18 27 0
17 18 27 0
18 18 27 0
-19 18 27 0
-20 18 27 0
-21 18 27 0
+19 18 27 1.33567e-11
+20 18 27 1.0464e-10
+21 18 27 1.84876e-10
22 18 27 0
23 18 27 0
24 18 27 0
@@ -24885,14 +24885,14 @@
14 19 27 0
15 19 27 0
16 19 27 0
-17 19 27 0
-18 19 27 0
-19 19 27 0
+17 19 27 7.18559e-11
+18 19 27 5.67541e-11
+19 19 27 9.32668e-11
20 19 27 0
21 19 27 0
22 19 27 0
23 19 27 0
-24 19 27 2.1902e-11
+24 19 27 0
25 19 27 0
26 19 27 0
27 19 27 0
@@ -24974,13 +24974,13 @@
13 22 27 0
14 22 27 0
15 22 27 0
-16 22 27 0
+16 22 27 5.10573e-11
17 22 27 0
18 22 27 0
19 22 27 0
20 22 27 0
-21 22 27 0
-22 22 27 0
+21 22 27 2.12456e-10
+22 22 27 1.00669e-10
23 22 27 0
24 22 27 0
25 22 27 0
@@ -25004,7 +25004,7 @@
13 23 27 0
14 23 27 0
15 23 27 0
-16 23 27 0
+16 23 27 1.86534e-11
17 23 27 0
18 23 27 0
19 23 27 0
@@ -25129,7 +25129,7 @@
18 27 27 0
19 27 27 0
20 27 27 0
-21 27 27 1.45968e-10
+21 27 27 0
22 27 27 0
23 27 27 0
24 27 27 0
@@ -25177,7 +25177,7 @@
6 29 27 0
7 29 27 0
8 29 27 0
-9 29 27 0
+9 29 27 7.73234e-11
10 29 27 0
11 29 27 0
12 29 27 0
@@ -25757,10 +25757,10 @@
16 18 28 0
17 18 28 0
18 18 28 0
-19 18 28 0
+19 18 28 2.7161e-10
20 18 28 0
-21 18 28 1.08583e-11
-22 18 28 3.56979e-12
+21 18 28 0
+22 18 28 0
23 18 28 0
24 18 28 0
25 18 28 0
@@ -25961,7 +25961,7 @@
10 25 28 0
11 25 28 0
12 25 28 0
-13 25 28 0
+13 25 28 6.7572e-11
14 25 28 0
15 25 28 0
16 25 28 0
@@ -25993,9 +25993,9 @@
12 26 28 0
13 26 28 0
14 26 28 0
-15 26 28 8.87922e-11
+15 26 28 0
16 26 28 0
-17 26 28 0
+17 26 28 8.64899e-12
18 26 28 0
19 26 28 0
20 26 28 0
@@ -26023,13 +26023,13 @@
12 27 28 0
13 27 28 0
14 27 28 0
-15 27 28 3.59038e-11
+15 27 28 0
16 27 28 0
17 27 28 0
18 27 28 0
19 27 28 0
20 27 28 0
-21 27 28 0
+21 27 28 3.61573e-11
22 27 28 0
23 27 28 0
24 27 28 0
@@ -26059,7 +26059,7 @@
18 28 28 0
19 28 28 0
20 28 28 0
-21 28 28 0
+21 28 28 5.25066e-12
22 28 28 0
23 28 28 0
24 28 28 0
@@ -26348,7 +26348,7 @@
7 8 29 0
8 8 29 0
9 8 29 0
-10 8 29 2.98434e-12
+10 8 29 0
11 8 29 0
12 8 29 0
13 8 29 0
@@ -26411,7 +26411,7 @@
10 10 29 0
11 10 29 0
12 10 29 0
-13 10 29 0
+13 10 29 4.07849e-11
14 10 29 0
15 10 29 0
16 10 29 0
@@ -26441,7 +26441,7 @@
10 11 29 0
11 11 29 0
12 11 29 0
-13 11 29 0
+13 11 29 1.10287e-10
14 11 29 0
15 11 29 0
16 11 29 0
@@ -26502,7 +26502,7 @@
11 13 29 0
12 13 29 0
13 13 29 0
-14 13 29 0
+14 13 29 5.33413e-12
15 13 29 0
16 13 29 0
17 13 29 0
@@ -26554,8 +26554,8 @@
3 15 29 0
4 15 29 0
5 15 29 0
-6 15 29 1.75985e-12
-7 15 29 8.88978e-12
+6 15 29 0
+7 15 29 0
8 15 29 0
9 15 29 0
10 15 29 0
@@ -26714,7 +26714,7 @@
13 20 29 0
14 20 29 0
15 20 29 0
-16 20 29 0
+16 20 29 8.99083e-12
17 20 29 0
18 20 29 0
19 20 29 0
@@ -26735,7 +26735,7 @@
4 21 29 0
5 21 29 0
6 21 29 0
-7 21 29 4.10318e-11
+7 21 29 0
8 21 29 0
9 21 29 0
10 21 29 0
@@ -26856,12 +26856,12 @@
5 25 29 0
6 25 29 0
7 25 29 0
-8 25 29 4.02422e-11
+8 25 29 0
9 25 29 0
10 25 29 0
11 25 29 0
12 25 29 0
-13 25 29 0
+13 25 29 1.95132e-11
14 25 29 0
15 25 29 0
16 25 29 0
diff --git a/examples/advanced/microbeam/microbeam.out b/examples/advanced/microbeam/microbeam.out
index 51940930b78..f3afc03bd71 100644
--- a/examples/advanced/microbeam/microbeam.out
+++ b/examples/advanced/microbeam/microbeam.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -333,12 +329,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -371,403 +365,395 @@ Some /vis commands (optionally) take a string to specify colour.
DefaultRegionForTheWorld 1 0 0
### === Ignore cuts flag: 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 1 GeV FluoActive
- KleinNishina : Emin= 1 GeV Emax= 100 TeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 1 GeV Fluo
+ KleinNishina : Emin= 1 GeV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler5D : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler5D : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
- MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
+ LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
+ MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
UserMaxStep: SubType= 401 Step limit(mm)= 1
-msc: for e+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-
-nuclearStopping: for proton SubType= 8 BuildTable= 0
- ===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-
-nuclearStopping: for anti_proton SubType= 8 BuildTable= 0
- ===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-##### Create analysis manager 0x24e4c10
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+##### Create analysis manager 0xdf3ea0
Using Root analysis manager
All Ntuples have been created
-> Event # 1 generated
@@ -784,39 +770,33 @@ All Ntuples have been created
-----> total absorbed dose within Cytoplasm is (Gy) = 0.040445595179846
-> Event # 4 generated
- ===> The incident alpha particle has reached the targeted cell :
- -----> total absorbed dose within Nucleus is (Gy) = 0.32695560638599
- -----> total absorbed dose within Cytoplasm is (Gy) = 0.020540824970027
+ ===> Sorry, the incident alpha particle has missed the targeted cell !
-> Event # 5 generated
===> The incident alpha particle has reached the targeted cell :
- -----> total absorbed dose within Nucleus is (Gy) = 0.30401818537386
- -----> total absorbed dose within Cytoplasm is (Gy) = 0.032305503184608
+ -----> total absorbed dose within Nucleus is (Gy) = 0.30051308302664
+ -----> total absorbed dose within Cytoplasm is (Gy) = 0.020664256535765
-> Event # 6 generated
- ===> Sorry, the incident alpha particle has missed the targeted cell !
+ ===> The incident alpha particle has reached the targeted cell :
+ -----> total absorbed dose within Nucleus is (Gy) = 0.31146622510197
+ -----> total absorbed dose within Cytoplasm is (Gy) = 0.047806526099121
-> Event # 7 generated
===> The incident alpha particle has reached the targeted cell :
- -----> total absorbed dose within Nucleus is (Gy) = 0.33379213319348
- -----> total absorbed dose within Cytoplasm is (Gy) = 0.041030536554798
+ -----> total absorbed dose within Nucleus is (Gy) = 0.35269013799571
+ -----> total absorbed dose within Cytoplasm is (Gy) = 0.039951247639529
-> Event # 8 generated
- ===> The incident alpha particle has reached the targeted cell :
- -----> total absorbed dose within Nucleus is (Gy) = 0.22434638824738
- -----> total absorbed dose within Cytoplasm is (Gy) = 0.032582954657893
+ ===> Sorry, the incident alpha particle has missed the targeted cell !
-> Event # 9 generated
- ===> The incident alpha particle has reached the targeted cell :
- -----> total absorbed dose within Nucleus is (Gy) = 0.32690860555838
- -----> total absorbed dose within Cytoplasm is (Gy) = 0.047558167429359
+ ===> Sorry, the incident alpha particle has missed the targeted cell !
-> Event # 10 generated
- ===> The incident alpha particle has reached the targeted cell :
- -----> total absorbed dose within Nucleus is (Gy) = 0.31993563391128
- -----> total absorbed dose within Cytoplasm is (Gy) = 0.021546217293899
+ ===> Sorry, the incident alpha particle has missed the targeted cell !
--> Total number of particles detected by the gas detector : 8
+-> Total number of particles detected by the gas detector : 5
Graphics systems deleted.
Visualization Manager deleting...
diff --git a/examples/advanced/microelectronics/microelectronics.out b/examples/advanced/microelectronics/microelectronics.out
index 64ef74d41f4..9ab3b6c5165 100644
--- a/examples/advanced/microelectronics/microelectronics.out
+++ b/examples/advanced/microelectronics/microelectronics.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -29,12 +25,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -73,80 +67,80 @@ Some /vis commands (optionally) take a string to specify colour.
### === PIXE model for hadrons: Empirical
### === PIXE model for e+-: Livermore
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
===== EM models for the G4Region Target ======
- UrbanMsc : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
- MollerBhabha : Emin= 100 MeV Emax= 10 TeV
+ MollerBhabha : Emin= 100 MeV Emax= 10 TeV
-e-_G4MicroElecElastic: for e- SubType= 51 BuildTable= 0
+e-_G4MicroElecElastic: for e- SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-MicroElecElasticModel : Emin= 0 eV Emax= 100 MeV
+MicroElecElasticModel : Emin= 0 eV Emax= 100 MeV
-e-_G4MicroElecInelastic: for e- SubType= 53 BuildTable= 0
+e-_G4MicroElecInelastic: for e- SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-MicroElecInelasticModel : Emin= 0 eV Emax= 100 MeV deltaVI FluoActive
+MicroElecInelasticModel : Emin= 0 eV Emax= 100 MeV deltaVI Fluo
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
===== EM models for the G4Region Target ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 10 GeV Emax= 10 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 10 GeV Emax= 10 TeV
-p_G4MicroElecInelastic: for proton SubType= 53 BuildTable= 0
+p_G4MicroElecInelastic: for proton SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-MicroElecInelasticModel : Emin= 50 keV Emax= 10 GeV deltaVI FluoActive
- DummyModel : Emin= 10 GeV Emax= 10 TeV
+MicroElecInelasticModel : Emin= 50 keV Emax= 10 GeV deltaVI Fluo
+ DummyModel : Emin= 10 GeV Emax= 10 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
===== EM models for the G4Region Target ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 10 GeV Emax= 10 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 10 GeV Emax= 10 TeV
-ion_G4MicroElecInelastic: for GenericIon SubType= 53 BuildTable= 0
+ion_G4MicroElecInelastic: for GenericIon SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-MicroElecInelasticModel : Emin= 50 keV Emax= 10 GeV deltaVI FluoActive
- DummyModel : Emin= 10 GeV Emax= 10 TeV
+MicroElecInelasticModel : Emin= 50 keV Emax= 10 GeV deltaVI Fluo
+ DummyModel : Emin= 10 GeV Emax= 10 TeV
Region -- -- appears in world volume
This region is in the mass world.
@@ -192,13 +186,13 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Total memory consumed for geometry optimisation: 0 kByte
Total CPU time elapsed for geometry optimisation: 0 seconds
### Run 0 starts.
-##### Create analysis manager 0xe79df0
+##### Create analysis manager 0x14f6a50
Using Root analysis manager
... open Root analysis file : microelectronics.root - done
Run terminated.
Run Summary
Number of events processed : 1
- User=0.000000s Real=0.002559s Sys=0.000000s
+ User=0.000000s Real=0.002574s Sys=0.000000s
... write Root file : microelectronics.root - done
... close Root file : microelectronics.root - done
Number and type of particles created outside region "Target" :
@@ -245,13 +239,13 @@ Index : 1 used in the geometry : Yes
====================================================================
### Run 1 starts.
-##### Create analysis manager 0xe79df0
+##### Create analysis manager 0x14f6a50
Using Root analysis manager
... open Root analysis file : microelectronics.root - done
Run terminated.
Run Summary
Number of events processed : 1
- User=0.000000s Real=0.000049s Sys=0.000000s
+ User=0.000000s Real=0.000047s Sys=0.000000s
... write Root file : microelectronics.root - done
... close Root file : microelectronics.root - done
Number and type of particles created outside region "Target" :
diff --git a/examples/advanced/purging_magnet/purging_magnet.out b/examples/advanced/purging_magnet/purging_magnet.out
index a05c6c8555d..4f38fa1c64e 100644
--- a/examples/advanced/purging_magnet/purging_magnet.out
+++ b/examples/advanced/purging_magnet/purging_magnet.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -26,12 +22,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -218,76 +212,76 @@ PurgMagPhysicsList::SetCuts:CutLength : 1 um
/run/initialize
/run/beamOn 5000
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PhotoElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila
+ PhotoElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
========= Table of registered couples ==============================
diff --git a/examples/advanced/radioprotection/History b/examples/advanced/radioprotection/History
index f5e0308cead..da723004033 100644
--- a/examples/advanced/radioprotection/History
+++ b/examples/advanced/radioprotection/History
@@ -8,6 +8,9 @@
Category History file
---------------------
+31.01.2019 - I.Hrivnacova tag radioprotection-V10-04-00
+ Merged GitHub PR #4: all Boolean operators now return G4bool.
+
19.11.2016 - A. Dotti tag radioprotection-V10-02-01
Explicit set of SD to manager
diff --git a/examples/advanced/radioprotection/include/SensitiveDetectorHit.hh b/examples/advanced/radioprotection/include/SensitiveDetectorHit.hh
index 92bb017261f..ca57e008499 100644
--- a/examples/advanced/radioprotection/include/SensitiveDetectorHit.hh
+++ b/examples/advanced/radioprotection/include/SensitiveDetectorHit.hh
@@ -46,7 +46,7 @@ class SensitiveDetectorHit : public G4VHit
// operators
const SensitiveDetectorHit& operator=(const SensitiveDetectorHit&);
- G4int operator==(const SensitiveDetectorHit&) const;
+ G4bool operator==(const SensitiveDetectorHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
diff --git a/examples/advanced/radioprotection/radioprotection.out b/examples/advanced/radioprotection/radioprotection.out
index 4f19b4e9e14..c3e3199f5cd 100644
--- a/examples/advanced/radioprotection/radioprotection.out
+++ b/examples/advanced/radioprotection/radioprotection.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -26,12 +22,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -100,157 +94,153 @@ PhysicsList::SetCuts:CutLength : 10 nm
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 1 GeV FluoActive
- KleinNishina : Emin= 1 GeV Emax= 100 TeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 1 GeV Fluo
+ KleinNishina : Emin= 1 GeV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler5D : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler5D : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
- MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
+ LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
+ MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
===== Limit on energy threshold has been applied
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-
-nuclearStopping: for proton SubType= 8 BuildTable= 0
- ===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
===== Limit on energy threshold has been applied
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
=======================================================================
====== Radioactive Decay Physics Parameters ========
=======================================================================
@@ -266,199 +256,195 @@ Check EM cuts disabled for atomic de-excitation 1
Use Bearden atomic level energies 0
=======================================================================
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
===== Limit on energy threshold has been applied
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
===== Limit on energy threshold has been applied
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-
-nuclearStopping: for anti_proton SubType= 8 BuildTable= 0
- ===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
===== Limit on energy threshold has been applied
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
===== Limit on energy threshold has been applied
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
===== Limit on energy threshold has been applied
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
===== Limit on energy threshold has been applied
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
@@ -486,73 +472,73 @@ NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
===== Limit on energy threshold has been applied
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
===== Limit on energy threshold has been applied
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -585,6 +571,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -680,6 +667,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -808,6 +796,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
diff --git a/examples/advanced/radioprotection/src/SensitiveDetectorHit.cc b/examples/advanced/radioprotection/src/SensitiveDetectorHit.cc
index 3629044f969..4c0cf5e07e9 100644
--- a/examples/advanced/radioprotection/src/SensitiveDetectorHit.cc
+++ b/examples/advanced/radioprotection/src/SensitiveDetectorHit.cc
@@ -60,9 +60,9 @@ const SensitiveDetectorHit& SensitiveDetectorHit::operator=(const SensitiveDetec
return *this;
}
-G4int SensitiveDetectorHit::operator==(const SensitiveDetectorHit& right) const
+G4bool SensitiveDetectorHit::operator==(const SensitiveDetectorHit& right) const
{
- return ( this == &right ) ? 1 : 0;
+ return ( this == &right ) ? true : false;
}
void SensitiveDetectorHit::Draw()
diff --git a/examples/advanced/underground_physics/History b/examples/advanced/underground_physics/History
index 72b92f361dd..d2858b097ab 100644
--- a/examples/advanced/underground_physics/History
+++ b/examples/advanced/underground_physics/History
@@ -8,6 +8,9 @@
Category History file
---------------------
+31.01.2019 - I.Hrivnacova (DMX-V10-04-02)
+ Merged GitHub PR #4: all Boolean operators now return G4bool.
+
09.08.2018 - A. Ribon (DMX-V10-04-01)
DMXPhysicsList : replaced the explicit high-energy limit of
hadronic physics with the one from G4HadronicParameters .
diff --git a/examples/advanced/underground_physics/include/DMXPmtHit.hh b/examples/advanced/underground_physics/include/DMXPmtHit.hh
index fe01211d758..c036a8f1491 100644
--- a/examples/advanced/underground_physics/include/DMXPmtHit.hh
+++ b/examples/advanced/underground_physics/include/DMXPmtHit.hh
@@ -57,7 +57,7 @@ class DMXPmtHit : public G4VHit
DMXPmtHit(const DMXPmtHit&);
const DMXPmtHit& operator=(const DMXPmtHit&);
- int operator==(const DMXPmtHit&) const;
+ G4bool operator==(const DMXPmtHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
diff --git a/examples/advanced/underground_physics/include/DMXScintHit.hh b/examples/advanced/underground_physics/include/DMXScintHit.hh
index bac2eb61a24..c7f0b38e592 100644
--- a/examples/advanced/underground_physics/include/DMXScintHit.hh
+++ b/examples/advanced/underground_physics/include/DMXScintHit.hh
@@ -57,7 +57,7 @@ class DMXScintHit : public G4VHit
~DMXScintHit();
DMXScintHit(const DMXScintHit&);
const DMXScintHit& operator=(const DMXScintHit&);
- int operator==(const DMXScintHit&) const;
+ G4bool operator==(const DMXScintHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
diff --git a/examples/advanced/underground_physics/src/DMXPmtHit.cc b/examples/advanced/underground_physics/src/DMXPmtHit.cc
index cef635647a2..f593fa94545 100644
--- a/examples/advanced/underground_physics/src/DMXPmtHit.cc
+++ b/examples/advanced/underground_physics/src/DMXPmtHit.cc
@@ -87,9 +87,9 @@ const DMXPmtHit& DMXPmtHit::operator=(const DMXPmtHit& right) {
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
-int DMXPmtHit::operator==(const DMXPmtHit& right) const {
+G4bool DMXPmtHit::operator==(const DMXPmtHit& right) const {
- return (this==&right) ? 1 : 0;
+ return (this==&right) ? true : false;
}
diff --git a/examples/advanced/underground_physics/src/DMXScintHit.cc b/examples/advanced/underground_physics/src/DMXScintHit.cc
index e987b0431d7..2533aedc0db 100644
--- a/examples/advanced/underground_physics/src/DMXScintHit.cc
+++ b/examples/advanced/underground_physics/src/DMXScintHit.cc
@@ -90,9 +90,9 @@ const DMXScintHit& DMXScintHit::operator=(const DMXScintHit& right)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
-int DMXScintHit::operator==(const DMXScintHit& right) const
+G4bool DMXScintHit::operator==(const DMXScintHit& right) const
{
- return (this==&right) ? 1 : 0;
+ return (this==&right) ? true : false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
diff --git a/examples/advanced/underground_physics/underground_physics.out b/examples/advanced/underground_physics/underground_physics.out
index cd607a9068d..d3504eaa98b 100644
--- a/examples/advanced/underground_physics/underground_physics.out
+++ b/examples/advanced/underground_physics/underground_physics.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -26,12 +22,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -94,105 +88,105 @@ Verbosity Set to: 0
### === PIXE model for hadrons: Empirical
### === PIXE model for e+-: Livermore
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 GeV in 120 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 GeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 GeV CullenGenerator
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 GeV in 114 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 GeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 GeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 GeV in 100 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 100 GeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 100 GeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 GeV, 24 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 GeV, 24 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreConversion : Emin= 0 eV Emax= 80 GeV
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 GeV AngularGenUrban
+ LivermoreConversion : Emin= 0 eV Emax= 80 GeV
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 GeV ModifiedTsai
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 GeV Table with 180 bins Emin= 100 eV Emax= 100 GeV
+ UrbanMsc : Emin= 0 eV Emax= 100 GeV Nbins=180 100 eV - 100 GeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 GeV in 180 bins
- Lambda tables from threshold to 100 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEnergyIoni : Emin= 0 eV Emax= 100 GeV deltaVI
+ LowEnergyIoni : Emin= 0 eV Emax= 100 GeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 GeV in 180 bins
- Lambda tables from threshold to 100 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 GeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEnBrem : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 GeV AngularGenUrban
+ LowEnBrem : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 GeV ModifiedTsai
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 GeV Table with 180 bins Emin= 100 eV Emax= 100 GeV
+ UrbanMsc : Emin= 0 eV Emax= 100 GeV Nbins=180 100 eV - 100 GeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 GeV in 180 bins
- Lambda tables from threshold to 100 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 GeV
+ MollerBhabha : Emin= 0 eV Emax= 100 GeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 GeV in 180 bins
- Lambda tables from threshold to 100 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 GeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 GeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 GeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 GeV
+ eplus2gg : Emin= 0 eV Emax= 100 GeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 GeV Table with 180 bins Emin= 100 eV Emax= 100 GeV
+ UrbanMsc : Emin= 0 eV Emax= 100 GeV Nbins=180 100 eV - 100 GeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 GeV in 180 bins
- Lambda tables from threshold to 100 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 GeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 GeV
===== Limit on energy threshold has been applied
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 GeV in 180 bins
- Lambda tables from threshold to 100 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 GeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 GeV
+ hBrem : Emin= 0 eV Emax= 100 GeV
===== Limit on energy threshold has been applied
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 GeV
+ UrbanMsc : Emin= 0 eV Emax= 100 GeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 GeV in 180 bins
- Lambda tables from threshold to 100 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 GeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 GeV deltaVI
===== Limit on energy threshold has been applied
=======================================================================
====== Radioactive Decay Physics Parameters ========
@@ -209,119 +203,119 @@ Check EM cuts disabled for atomic de-excitation 0
Use Bearden atomic level energies 0
=======================================================================
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 GeV Table with 180 bins Emin= 100 eV Emax= 100 GeV
+ UrbanMsc : Emin= 0 eV Emax= 100 GeV Nbins=180 100 eV - 100 GeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 GeV in 180 bins
- Lambda tables from threshold to 100 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 GeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 GeV
===== Limit on energy threshold has been applied
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 GeV Table with 180 bins Emin= 100 eV Emax= 100 GeV
+ UrbanMsc : Emin= 0 eV Emax= 100 GeV Nbins=180 100 eV - 100 GeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 GeV in 180 bins
- Lambda tables from threshold to 100 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 GeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 GeV
===== Limit on energy threshold has been applied
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 GeV Table with 180 bins Emin= 100 eV Emax= 100 GeV
+ UrbanMsc : Emin= 0 eV Emax= 100 GeV Nbins=180 100 eV - 100 GeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 GeV in 180 bins
- Lambda tables from threshold to 100 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 GeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 GeV
===== Limit on energy threshold has been applied
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 GeV Table with 180 bins Emin= 100 eV Emax= 100 GeV
+ UrbanMsc : Emin= 0 eV Emax= 100 GeV Nbins=180 100 eV - 100 GeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 GeV in 180 bins
- Lambda tables from threshold to 100 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 GeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 GeV
===== Limit on energy threshold has been applied
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 GeV Table with 180 bins Emin= 100 eV Emax= 100 GeV
+ UrbanMsc : Emin= 0 eV Emax= 100 GeV Nbins=180 100 eV - 100 GeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 GeV in 180 bins
- Lambda tables from threshold to 100 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 GeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 GeV
===== Limit on energy threshold has been applied
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 GeV in 180 bins
- Lambda tables from threshold to 100 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 GeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 GeV
+ MuBrem : Emin= 0 eV Emax= 100 GeV
===== Limit on energy threshold has been applied
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 GeV in 180 bins
- Lambda tables from threshold to 100 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 GeV, 20 bins/decade, spline: 1
Sampling table 9x1001 from 1 GeV to 0.1 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 GeV
+ muPairProd : Emin= 0 eV Emax= 100 GeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 GeV Table with 180 bins Emin= 100 eV Emax= 100 GeV
+ UrbanMsc : Emin= 0 eV Emax= 100 GeV Nbins=180 100 eV - 100 GeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 GeV in 180 bins
- Lambda tables from threshold to 100 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 GeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 GeV
===== Limit on energy threshold has been applied
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 GeV in 180 bins
- Lambda tables from threshold to 100 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 GeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 GeV
+ MuBrem : Emin= 0 eV Emax= 100 GeV
===== Limit on energy threshold has been applied
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 GeV in 180 bins
- Lambda tables from threshold to 100 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 GeV, 20 bins/decade, spline: 1
Sampling table 9x1001 from 1 GeV to 0.1 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 GeV
+ muPairProd : Emin= 0 eV Emax= 100 GeV
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Inelastic/CrossSection/8_17_Oxygen
@@ -339,46 +333,46 @@ NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 GeV Table with 180 bins Emin= 100 eV Emax= 100 GeV
+ UrbanMsc : Emin= 0 eV Emax= 100 GeV Nbins=180 100 eV - 100 GeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 GeV in 180 bins
- Lambda tables from threshold to 100 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 GeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 GeV
===== Limit on energy threshold has been applied
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 GeV in 180 bins
- Lambda tables from threshold to 100 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 GeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 GeV
+ hBrem : Emin= 0 eV Emax= 100 GeV
===== Limit on energy threshold has been applied
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 GeV Table with 180 bins Emin= 100 eV Emax= 100 GeV
+ UrbanMsc : Emin= 0 eV Emax= 100 GeV Nbins=180 100 eV - 100 GeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 GeV in 180 bins
- Lambda tables from threshold to 100 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 GeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 GeV
===== Limit on energy threshold has been applied
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 GeV in 180 bins
- Lambda tables from threshold to 100 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 GeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 GeV
+ hBrem : Emin= 0 eV Emax= 100 GeV
===== Limit on energy threshold has been applied
====================================================================
diff --git a/examples/advanced/xray_fluorescence/History b/examples/advanced/xray_fluorescence/History
index fdb03022942..a64f3f880ce 100644
--- a/examples/advanced/xray_fluorescence/History
+++ b/examples/advanced/xray_fluorescence/History
@@ -17,6 +17,9 @@ committal in the CVS repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+31.01.2019 Ivana Hrivnacova Tag: XrayFluo-V10-04-02
+- Merged GitHub PR #4: all Boolean operators now return G4bool.
+
09.11.2018 Gabiele Cosmo Tag: XrayFluo-V10-04-01
- XrayFluoMercuryDetectorMessenger: fixed typo in printout.
diff --git a/examples/advanced/xray_fluorescence/include/XrayFluoSensorHit.hh b/examples/advanced/xray_fluorescence/include/XrayFluoSensorHit.hh
index f65841e3b58..3f7e726c0c4 100644
--- a/examples/advanced/xray_fluorescence/include/XrayFluoSensorHit.hh
+++ b/examples/advanced/xray_fluorescence/include/XrayFluoSensorHit.hh
@@ -54,7 +54,7 @@ public:
~XrayFluoSensorHit();
XrayFluoSensorHit(const XrayFluoSensorHit&);
const XrayFluoSensorHit& operator=(const XrayFluoSensorHit&);
- int operator==(const XrayFluoSensorHit&) const;
+ G4bool operator==(const XrayFluoSensorHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
inline void AddEnergy(G4double de) {EdepTot += de;};
diff --git a/examples/advanced/xray_fluorescence/src/XrayFluoSensorHit.cc b/examples/advanced/xray_fluorescence/src/XrayFluoSensorHit.cc
index 30d17109cf1..0d91937c6a0 100644
--- a/examples/advanced/xray_fluorescence/src/XrayFluoSensorHit.cc
+++ b/examples/advanced/xray_fluorescence/src/XrayFluoSensorHit.cc
@@ -80,9 +80,9 @@ const XrayFluoSensorHit& XrayFluoSensorHit::operator=(const XrayFluoSensorHit& r
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
-int XrayFluoSensorHit::operator==(const XrayFluoSensorHit&) const
+G4bool XrayFluoSensorHit::operator==(const XrayFluoSensorHit&) const
{
- return 0;
+ return false;
}
diff --git a/examples/advanced/xray_fluorescence/xray_fluorescence.out b/examples/advanced/xray_fluorescence/xray_fluorescence.out
index a3730b84889..6ea6694bcfd 100644
--- a/examples/advanced/xray_fluorescence/xray_fluorescence.out
+++ b/examples/advanced/xray_fluorescence/xray_fluorescence.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -2307,12 +2303,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -2402,431 +2396,423 @@ PhysicsList::SetCuts:CutLength : 10 um
### === PIXE model for hadrons: ECPSSR_FormFactor
### === PIXE model for e+-: Livermore
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 1 GeV FluoActive
- KleinNishina : Emin= 1 GeV Emax= 100 TeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 1 GeV Fluo
+ KleinNishina : Emin= 1 GeV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler5D : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler5D : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
- MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
+ LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
+ MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
CSDA range table up to 1 GeV in 140 bins
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
CSDA range table up to 1 GeV in 140 bins
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
===== Limit on energy threshold has been applied
CSDA range table up to 1 GeV in 140 bins
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-
-nuclearStopping: for proton SubType= 8 BuildTable= 0
- ===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
===== Limit on energy threshold has been applied
CSDA range table up to 1 GeV in 140 bins
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
===== Limit on energy threshold has been applied
CSDA range table up to 1 GeV in 140 bins
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
===== Limit on energy threshold has been applied
CSDA range table up to 1 GeV in 140 bins
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-
-nuclearStopping: for anti_proton SubType= 8 BuildTable= 0
- ===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
===== Limit on energy threshold has been applied
CSDA range table up to 1 GeV in 140 bins
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
===== Limit on energy threshold has been applied
CSDA range table up to 1 GeV in 140 bins
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
===== Limit on energy threshold has been applied
CSDA range table up to 1 GeV in 140 bins
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
===== Limit on energy threshold has been applied
CSDA range table up to 1 GeV in 140 bins
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
===== Limit on energy threshold has been applied
CSDA range table up to 1 GeV in 140 bins
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
===== Limit on energy threshold has been applied
CSDA range table up to 1 GeV in 140 bins
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
Region -- -- appears in world volume
This region is in the mass world.
@@ -2918,7 +2904,7 @@ Created histos
Run terminated.
Run Summary
Number of events processed : 10
- User=0.710000s Real=0.721685s Sys=0.000000s
+ User=0.730000s Real=0.734524s Sys=0.000000s
Going to save histograms
... write Root file : xrayfluo.root - done
... close Root file : xrayfluo.root - done
@@ -2950,12 +2936,12 @@ Pool ID '15G4PrimaryVertex', size : 0.000961 MB
Pool ID '17G4PrimaryParticle', size : 0.000961 MB
Pool ID '15G4HCofThisEvent', size : 0.000961 MB
Pool ID '16G4HitsCollection', size : 0.000961 MB
-Pool ID '17G4DynamicParticle', size : 0.315 MB
-Pool ID '7G4Track', size : 0.631 MB
+Pool ID '17G4DynamicParticle', size : 0.318 MB
+Pool ID '7G4Track', size : 0.635 MB
Pool ID '18G4TouchableHistory', size : 0.000961 MB
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
Number of memory pools allocated: 11 of which, static: 0
-Dynamic pools deleted: 11 / Total memory freed: 0.96 MB
+Dynamic pools deleted: 11 / Total memory freed: 0.97 MB
============================================================
G4Allocator objects are deleted.
UImanager deleted.
diff --git a/examples/advanced/xray_telescope/xray_telescope.out b/examples/advanced/xray_telescope/xray_telescope.out
index bb7599bdccf..47a538d33f2 100644
--- a/examples/advanced/xray_telescope/xray_telescope.out
+++ b/examples/advanced/xray_telescope/xray_telescope.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -26,12 +22,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -60,264 +54,264 @@ End of Run User Vis Actions: none
Some /vis commands (optionally) take a string to specify colour.
"/vis/list" to see available colours.
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PhotoElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila
+ PhotoElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -380,7 +374,7 @@ Opening output file xraytel ... done
Run terminated.
Run Summary
Number of events processed : 1000
- User=0.010000s Real=0.026488s Sys=0.000000s
+ User=0.030000s Real=0.026532s Sys=0.000000s
##########################################
WARNING: command "/vis/viewer/update" could not be applied: no current viewer.
Graphics systems deleted.
diff --git a/examples/basic/B1/exampleB1.out b/examples/basic/B1/exampleB1.out
index 24b76dbd5c4..2f2d0cf7bf4 100644
--- a/examples/basic/B1/exampleB1.out
+++ b/examples/basic/B1/exampleB1.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -27,12 +23,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -65,371 +59,371 @@ Checking overlaps for volume Shape1 ... OK!
Checking overlaps for volume Shape2 ... OK!
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -485,6 +479,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -589,6 +584,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -723,6 +719,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -762,7 +759,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
--------------------End of Global Run-----------------------
The run consists of 1000 proton of 210 MeV
- Cumulated dose per run, in scoring volume : 5.04375 nanoGy rms = 145.273 picoGy
+ Cumulated dose per run, in scoring volume : 5.25356 nanoGy rms = 146.949 picoGy
------------------------------------------------------------
Graphics systems deleted.
diff --git a/examples/basic/B2/B2a/exampleB2a.out b/examples/basic/B2/B2a/exampleB2a.out
index e755c7396d5..5fd43e9dee4 100644
--- a/examples/basic/B2/B2a/exampleB2a.out
+++ b/examples/basic/B2/B2a/exampleB2a.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -28,12 +24,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -139,371 +133,371 @@ Checking overlaps for volume Chamber_PV ... OK!
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -554,6 +548,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -659,6 +654,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -795,6 +791,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
diff --git a/examples/basic/B2/B2a/include/B2TrackerHit.hh b/examples/basic/B2/B2a/include/B2TrackerHit.hh
index cc890adc4ac..d80c4352f28 100644
--- a/examples/basic/B2/B2a/include/B2TrackerHit.hh
+++ b/examples/basic/B2/B2a/include/B2TrackerHit.hh
@@ -51,7 +51,7 @@ class B2TrackerHit : public G4VHit
// operators
const B2TrackerHit& operator=(const B2TrackerHit&);
- G4int operator==(const B2TrackerHit&) const;
+ G4bool operator==(const B2TrackerHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
diff --git a/examples/basic/B2/B2a/src/B2TrackerHit.cc b/examples/basic/B2/B2a/src/B2TrackerHit.cc
index f721c187c85..f4a68ab4027 100644
--- a/examples/basic/B2/B2a/src/B2TrackerHit.cc
+++ b/examples/basic/B2/B2a/src/B2TrackerHit.cc
@@ -77,9 +77,9 @@ const B2TrackerHit& B2TrackerHit::operator=(const B2TrackerHit& right)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-G4int B2TrackerHit::operator==(const B2TrackerHit& right) const
+G4bool B2TrackerHit::operator==(const B2TrackerHit& right) const
{
- return ( this == &right ) ? 1 : 0;
+ return ( this == &right ) ? true : false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
diff --git a/examples/basic/B2/B2b/exampleB2b.out b/examples/basic/B2/B2b/exampleB2b.out
index 3d1fc5ac007..80594bae34f 100644
--- a/examples/basic/B2/B2b/exampleB2b.out
+++ b/examples/basic/B2/B2b/exampleB2b.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -28,12 +24,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -135,371 +129,371 @@ The distance between chamber is 80 cm
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -550,6 +544,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -655,6 +650,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -791,6 +787,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
diff --git a/examples/basic/B2/B2b/include/B2TrackerHit.hh b/examples/basic/B2/B2b/include/B2TrackerHit.hh
index cc890adc4ac..d80c4352f28 100644
--- a/examples/basic/B2/B2b/include/B2TrackerHit.hh
+++ b/examples/basic/B2/B2b/include/B2TrackerHit.hh
@@ -51,7 +51,7 @@ class B2TrackerHit : public G4VHit
// operators
const B2TrackerHit& operator=(const B2TrackerHit&);
- G4int operator==(const B2TrackerHit&) const;
+ G4bool operator==(const B2TrackerHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
diff --git a/examples/basic/B2/B2b/src/B2TrackerHit.cc b/examples/basic/B2/B2b/src/B2TrackerHit.cc
index f721c187c85..f4a68ab4027 100644
--- a/examples/basic/B2/B2b/src/B2TrackerHit.cc
+++ b/examples/basic/B2/B2b/src/B2TrackerHit.cc
@@ -77,9 +77,9 @@ const B2TrackerHit& B2TrackerHit::operator=(const B2TrackerHit& right)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-G4int B2TrackerHit::operator==(const B2TrackerHit& right) const
+G4bool B2TrackerHit::operator==(const B2TrackerHit& right) const
{
- return ( this == &right ) ? 1 : 0;
+ return ( this == &right ) ? true : false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
diff --git a/examples/basic/B3/B3a/exampleB3a.out b/examples/basic/B3/B3a/exampleB3a.out
index 307e28b825e..c16bc77540c 100644
--- a/examples/basic/B3/B3a/exampleB3a.out
+++ b/examples/basic/B3/B3a/exampleB3a.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -26,12 +22,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
diff --git a/examples/basic/B3/B3b/exampleB3b.out b/examples/basic/B3/B3b/exampleB3b.out
index 7a38f8a7a13..4cb34c8ad54 100644
--- a/examples/basic/B3/B3b/exampleB3b.out
+++ b/examples/basic/B3/B3b/exampleB3b.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -26,12 +22,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
diff --git a/examples/basic/B4/B4a/exampleB4a.out b/examples/basic/B4/B4a/exampleB4a.out
index 583ad520b5b..a065e60703c 100644
--- a/examples/basic/B4/B4a/exampleB4a.out
+++ b/examples/basic/B4/B4a/exampleB4a.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -29,12 +25,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -112,371 +106,371 @@ Checking overlaps for volume Gap ... OK!
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -527,6 +521,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -632,6 +627,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -768,6 +764,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -808,371 +805,371 @@ anti_protonInelastic,anti_neutronInelastic,anti_deuteronInelastic,anti_tritonIne
muMinusCaptureAtRest, dInelastic, tInelastic, He3Inelastic
alphaInelastic, ionInelastic, nKiller
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
### Run 1 starts.
... open Root analysis file : B4.root - done
--> Event 0 starts.
@@ -1189,371 +1186,371 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
... write Root file : B4.root - done
... close Root file : B4.root - done
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
### Run 2 starts.
... open Root analysis file : B4.root - done
--> Event 0 starts.
diff --git a/examples/basic/B4/B4a/include/B4Analysis.hh b/examples/basic/B4/B4a/include/B4Analysis.hh
index ddccfba308c..473be8e963f 100644
--- a/examples/basic/B4/B4a/include/B4Analysis.hh
+++ b/examples/basic/B4/B4a/include/B4Analysis.hh
@@ -31,7 +31,7 @@
#define B4Analysis_h 1
#include "g4root.hh"
-//#include "g4cvs.hh"
+//#include "g4csv.hh"
//#include "g4xml.hh"
#endif
diff --git a/examples/basic/B4/B4b/exampleB4b.out b/examples/basic/B4/B4b/exampleB4b.out
index d16e3a08774..cdf068ddbdb 100644
--- a/examples/basic/B4/B4b/exampleB4b.out
+++ b/examples/basic/B4/B4b/exampleB4b.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -29,12 +25,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -112,371 +106,371 @@ Checking overlaps for volume Gap ... OK!
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -527,6 +521,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -632,6 +627,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -768,6 +764,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -809,371 +806,371 @@ anti_protonInelastic,anti_neutronInelastic,anti_deuteronInelastic,anti_tritonIne
muMinusCaptureAtRest, dInelastic, tInelastic, He3Inelastic
alphaInelastic, ionInelastic, nKiller
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
### Run 1 starts.
### Run 1 start.
... open Root analysis file : B4.root - done
@@ -1191,371 +1188,371 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
... write Root file : B4.root - done
... close Root file : B4.root - done
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
### Run 2 starts.
### Run 2 start.
... open Root analysis file : B4.root - done
diff --git a/examples/basic/B4/B4b/include/B4Analysis.hh b/examples/basic/B4/B4b/include/B4Analysis.hh
index ddccfba308c..473be8e963f 100644
--- a/examples/basic/B4/B4b/include/B4Analysis.hh
+++ b/examples/basic/B4/B4b/include/B4Analysis.hh
@@ -31,7 +31,7 @@
#define B4Analysis_h 1
#include "g4root.hh"
-//#include "g4cvs.hh"
+//#include "g4csv.hh"
//#include "g4xml.hh"
#endif
diff --git a/examples/basic/B4/B4c/exampleB4c.out b/examples/basic/B4/B4c/exampleB4c.out
index 583ad520b5b..a065e60703c 100644
--- a/examples/basic/B4/B4c/exampleB4c.out
+++ b/examples/basic/B4/B4c/exampleB4c.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -29,12 +25,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -112,371 +106,371 @@ Checking overlaps for volume Gap ... OK!
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -527,6 +521,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -632,6 +627,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -768,6 +764,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -808,371 +805,371 @@ anti_protonInelastic,anti_neutronInelastic,anti_deuteronInelastic,anti_tritonIne
muMinusCaptureAtRest, dInelastic, tInelastic, He3Inelastic
alphaInelastic, ionInelastic, nKiller
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
### Run 1 starts.
... open Root analysis file : B4.root - done
--> Event 0 starts.
@@ -1189,371 +1186,371 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
... write Root file : B4.root - done
... close Root file : B4.root - done
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
### Run 2 starts.
... open Root analysis file : B4.root - done
--> Event 0 starts.
diff --git a/examples/basic/B4/B4c/include/B4Analysis.hh b/examples/basic/B4/B4c/include/B4Analysis.hh
index ddccfba308c..473be8e963f 100644
--- a/examples/basic/B4/B4c/include/B4Analysis.hh
+++ b/examples/basic/B4/B4c/include/B4Analysis.hh
@@ -31,7 +31,7 @@
#define B4Analysis_h 1
#include "g4root.hh"
-//#include "g4cvs.hh"
+//#include "g4csv.hh"
//#include "g4xml.hh"
#endif
diff --git a/examples/basic/B4/B4c/include/B4cCalorHit.hh b/examples/basic/B4/B4c/include/B4cCalorHit.hh
index c0aa50000ab..741a3ee526e 100644
--- a/examples/basic/B4/B4c/include/B4cCalorHit.hh
+++ b/examples/basic/B4/B4c/include/B4cCalorHit.hh
@@ -51,7 +51,7 @@ class B4cCalorHit : public G4VHit
// operators
const B4cCalorHit& operator=(const B4cCalorHit&);
- G4int operator==(const B4cCalorHit&) const;
+ G4bool operator==(const B4cCalorHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
diff --git a/examples/basic/B4/B4c/src/B4cCalorHit.cc b/examples/basic/B4/B4c/src/B4cCalorHit.cc
index db79d089513..3e7b8ad72f5 100644
--- a/examples/basic/B4/B4c/src/B4cCalorHit.cc
+++ b/examples/basic/B4/B4c/src/B4cCalorHit.cc
@@ -71,9 +71,9 @@ const B4cCalorHit& B4cCalorHit::operator=(const B4cCalorHit& right)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-G4int B4cCalorHit::operator==(const B4cCalorHit& right) const
+G4bool B4cCalorHit::operator==(const B4cCalorHit& right) const
{
- return ( this == &right ) ? 1 : 0;
+ return ( this == &right ) ? true : false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
diff --git a/examples/basic/B4/B4d/exampleB4d.out b/examples/basic/B4/B4d/exampleB4d.out
index ff94978ec75..808301039ae 100644
--- a/examples/basic/B4/B4d/exampleB4d.out
+++ b/examples/basic/B4/B4d/exampleB4d.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -29,12 +25,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -116,371 +110,371 @@ G4SDManager::AddNewCollection : the collection is registered a
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -531,6 +525,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -636,6 +631,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -772,6 +768,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -812,371 +809,371 @@ anti_protonInelastic,anti_neutronInelastic,anti_deuteronInelastic,anti_tritonIne
muMinusCaptureAtRest, dInelastic, tInelastic, He3Inelastic
alphaInelastic, ionInelastic, nKiller
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
### Run 1 starts.
... open Root analysis file : B4.root - done
--> Event 0 starts.
@@ -1193,371 +1190,371 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
... write Root file : B4.root - done
... close Root file : B4.root - done
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
### Run 2 starts.
... open Root analysis file : B4.root - done
--> Event 0 starts.
@@ -1575,3 +1572,4 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
... close Root file : B4.root - done
Graphics systems deleted.
Visualization Manager deleting...
+### deleting chargedFilter 0x12b50d0
diff --git a/examples/basic/B4/B4d/include/B4Analysis.hh b/examples/basic/B4/B4d/include/B4Analysis.hh
index ddccfba308c..473be8e963f 100644
--- a/examples/basic/B4/B4d/include/B4Analysis.hh
+++ b/examples/basic/B4/B4d/include/B4Analysis.hh
@@ -31,7 +31,7 @@
#define B4Analysis_h 1
#include "g4root.hh"
-//#include "g4cvs.hh"
+//#include "g4csv.hh"
//#include "g4xml.hh"
#endif
diff --git a/examples/basic/B4/History b/examples/basic/B4/History
index f710e841751..dbebe02d88b 100644
--- a/examples/basic/B4/History
+++ b/examples/basic/B4/History
@@ -14,6 +14,9 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+24/03/19 J. Allison (exampleB4-V10-04-04)
+- Corrected name of include file: csv.hh.
+
07/11/18 I. Hrivnacova (exampleB4-V10-04-03)
- Fixed CMake: added missing plotNtuple.C
diff --git a/examples/basic/B5/exampleB5.out b/examples/basic/B5/exampleB5.out
index a1afed411dc..1435a640973 100644
--- a/examples/basic/B5/exampleB5.out
+++ b/examples/basic/B5/exampleB5.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -29,12 +25,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -209,371 +203,371 @@ Checking overlaps for volume HadCalScintiPhysical ... OK!
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -624,6 +618,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -729,6 +724,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -865,6 +861,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -881,168 +878,150 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
>>> Event 0 >>> Simulation truth : proton (-0,0,100000)
Hodoscope 1 has 1 hits.
Hodoscope[7] 4.9870028525729 (nsec)
-Hodoscope 2 has 1 hits.
+Hodoscope 2 has 2 hits.
Hodoscope[9] 43.187480820039 (nsec)
+ Hodoscope[11] 149.22081616905 (nsec)
Drift Chamber 1 has 5 hits.
Layer[0] : time 6.6712421484922 (nsec) --- local (x,y) -0.012037746267256, -0.0085159382829135
Layer[1] : time 8.3391360843463 (nsec) --- local (x,y) -0.030315600792952, -0.024167566373776
Layer[2] : time 10.00703002044 (nsec) --- local (x,y) -0.048744041987221, -0.04030160498458
Layer[3] : time 11.67492395664 (nsec) --- local (x,y) -0.065891632886434, -0.057059376455903
Layer[4] : time 13.342817892365 (nsec) --- local (x,y) -0.081603481518327, -0.068553914366661
-Drift Chamber 2 has 7 hits.
+Drift Chamber 2 has 6 hits.
Layer[0] : time 34.849866313047 (nsec) --- local (x,y) -147.76317879983, -0.052147882737142
Layer[1] : time 36.520663250354 (nsec) --- local (x,y) -177.27617143717, -0.051739826089096
Layer[2] : time 38.191460957791 (nsec) --- local (x,y) -206.79308079188, -0.053740674093387
+ Layer[2] : time 38.608976761582 (nsec) --- local (x,y) -79.536760126181, -38.102967251888
Layer[3] : time 39.862259206319 (nsec) --- local (x,y) -236.31274007863, -0.052122312330761
- Layer[3] : time 65.636019207808 (nsec) --- local (x,y) -1492.6248187667, 230.20200379849
Layer[4] : time 41.533057299402 (nsec) --- local (x,y) -265.83160793433, -0.051501320280863
- Layer[4] : time 63.665508242949 (nsec) --- local (x,y) -1378.5454275487, 175.84401373591
-EM Calorimeter has 56 hits. Total Edep is 1067.7704413883 (MeV)
-Hadron Calorimeter has 15 hits. Total Edep is 3816.7774732123 (MeV)
-
--------- WWWW ------- G4Exception-START -------- WWWW -------
-*** G4Exception : GeomNav1002
- issued by : G4Navigator::ComputeStep()
-Track stuck or not moving.
- Track stuck, not moving for 10 steps
- in volume -worldPhysical- at point (-1.385701663088924,2.948548893190194,-999.9990399149896) (local point (-1.385701663088924,2.948548893190194,-999.9990399149896))
- direction: (0.2623641418882898,0.9132731428899921,0.311604273922964) (local direction: (0.2623641418882898,0.9132731428899921,0.311604273922964)).
- Potential geometry or navigation problem !
- Trying pushing it of 1e-07 mm ...Potential overlap in geometry!
-
-*** This is just a warning message. ***
--------- WWWW -------- G4Exception-END --------- WWWW -------
-
+EM Calorimeter has 48 hits. Total Edep is 435.11876171389 (MeV)
+Hadron Calorimeter has 16 hits. Total Edep is 3341.0100145414 (MeV)
... write Root file : B5.root - done
... close Root file : B5.root - done
### Run 1 starts.
... open Root analysis file : B5.root - done
--> Event 0 starts.
->>> Event 0 >>> Simulation truth : pi+ (0,0,100000)
-Hodoscope 1 has 2 hits.
- Hodoscope[7] 4.9867880839248 (nsec)
- Hodoscope[8] 2516.9306217609 (nsec)
-Hodoscope 2 has 2 hits.
- Hodoscope[10] 42.693203803123 (nsec)
- Hodoscope[3] 851.57901347535 (nsec)
+>>> Event 0 >>> Simulation truth : pi+ (-0,0,100000)
+Hodoscope 1 has 1 hits.
+ Hodoscope[7] 4.9867880839479 (nsec)
+Hodoscope 2 has 1 hits.
+ Hodoscope[10] 42.693971662561 (nsec)
Drift Chamber 1 has 5 hits.
- Layer[0] : time 6.6709548427884 (nsec) --- local (x,y) -0.011721396291159, -0.0032211173132409
- Layer[1] : time 8.3387769452816 (nsec) --- local (x,y) -0.02660757132368, -0.0048073220119415
- Layer[2] : time 10.006599048623 (nsec) --- local (x,y) -0.048246132578897, -0.0079981071521014
- Layer[3] : time 11.674421152298 (nsec) --- local (x,y) -0.07219184014517, -0.0096564207197405
- Layer[4] : time 13.342243255841 (nsec) --- local (x,y) -0.09499020587915, -0.013736869716644
+ Layer[0] : time 6.6709548423358 (nsec) --- local (x,y) -0.0002125382001035, 0.005531593667468
+ Layer[1] : time 8.3387769441667 (nsec) --- local (x,y) -0.0041737402936241, 0.0096939616529852
+ Layer[2] : time 10.006599045931 (nsec) --- local (x,y) -0.0054305397425549, 0.012711563814613
+ Layer[3] : time 11.674421147761 (nsec) --- local (x,y) -0.0051363975474152, 0.018234843107857
+ Layer[4] : time 13.342243249634 (nsec) --- local (x,y) -0.0040008333492096, 0.024574147756615
Drift Chamber 2 has 5 hits.
- Layer[0] : time 34.365914512656 (nsec) --- local (x,y) -82.733055087672, -0.068723588488052
- Layer[1] : time 36.034643371046 (nsec) --- local (x,y) -99.222818368628, -0.079827458689452
- Layer[2] : time 37.703372153415 (nsec) --- local (x,y) -115.71188850063, -0.093209915310031
- Layer[3] : time 39.372100483832 (nsec) --- local (x,y) -132.19684869728, -0.10475261365188
- Layer[4] : time 41.040828906157 (nsec) --- local (x,y) -148.68264427119, -0.11730991967966
-EM Calorimeter has 39 hits. Total Edep is 318.42885665078 (MeV)
-Hadron Calorimeter has 13 hits. Total Edep is 3653.0215212846 (MeV)
+ Layer[0] : time 34.366649944673 (nsec) --- local (x,y) -82.756230146442, 0.074199631353013
+ Layer[1] : time 36.035384605276 (nsec) --- local (x,y) -99.298682168188, 0.084309391291598
+ Layer[2] : time 37.704119682484 (nsec) --- local (x,y) -115.84490827638, 0.097888527873575
+ Layer[3] : time 39.372854823641 (nsec) --- local (x,y) -132.39171608046, 0.10863936755664
+ Layer[4] : time 41.041590031201 (nsec) --- local (x,y) -148.93912719874, 0.1167636723522
+EM Calorimeter has 9 hits. Total Edep is 187.4305562532 (MeV)
+Hadron Calorimeter has 8 hits. Total Edep is 350.84422970332 (MeV)
... write Root file : B5.root - done
... close Root file : B5.root - done
### Run 2 starts.
... open Root analysis file : B5.root - done
--> Event 0 starts.
->>> Event 0 >>> Simulation truth : e+ (-0,0,100000)
+>>> Event 0 >>> Simulation truth : e+ (0,0,100000)
Hodoscope 1 has 1 hits.
- Hodoscope[7] 4.9867832235438 (nsec)
-Hodoscope 2 has 2 hits.
- Hodoscope[9] 43.185893503052 (nsec)
- Hodoscope[2] 56.894007908415 (nsec)
+ Hodoscope[7] 4.9867832232738 (nsec)
+Hodoscope 2 has 1 hits.
+ Hodoscope[5] 43.255350923232 (nsec)
Drift Chamber 1 has 5 hits.
- Layer[0] : time 6.6709483406265 (nsec) --- local (x,y) 0.011518712795171, 0.019927655134724
- Layer[1] : time 8.3387688169307 (nsec) --- local (x,y) 0.011726160199585, 0.029570620080187
- Layer[2] : time 10.0065892931 (nsec) --- local (x,y) 0.011373565663712, 0.036838598586884
- Layer[3] : time 11.674409769237 (nsec) --- local (x,y) 0.010104498566192, 0.043285848164344
- Layer[4] : time 13.342230245413 (nsec) --- local (x,y) 0.0092948714212402, 0.050683290832353
+ Layer[0] : time 6.6709483400643 (nsec) --- local (x,y) 0.010131254385493, 0.0067386659245929
+ Layer[1] : time 8.3387688163792 (nsec) --- local (x,y) 0.017568890416369, 0.013123949024928
+ Layer[2] : time 10.006589292737 (nsec) --- local (x,y) 0.023986535464234, 0.021411866287831
+ Layer[3] : time 11.674409769202 (nsec) --- local (x,y) 0.030664428954467, 0.031288535369469
+ Layer[4] : time 13.342230245713 (nsec) --- local (x,y) 0.035515199511562, 0.042728686138825
Drift Chamber 2 has 5 hits.
- Layer[0] : time 34.84864269151 (nsec) --- local (x,y) -147.57493457599, 0.1601881647702
- Layer[1] : time 36.519366112171 (nsec) --- local (x,y) -177.08829061115, 0.17123477303526
- Layer[2] : time 38.190090580897 (nsec) --- local (x,y) -206.60697849418, 0.18208140721026
- Layer[3] : time 39.860814984918 (nsec) --- local (x,y) -236.12533685731, 0.1939871570058
- Layer[4] : time 41.53154059198 (nsec) --- local (x,y) -265.64981396805, 0.20676432474714
-EM Calorimeter has 41 hits. Total Edep is 93140.553430258 (MeV)
-Hadron Calorimeter has 10 hits. Total Edep is 29.132007427912 (MeV)
+ Layer[0] : time 34.857365537699 (nsec) --- local (x,y) -336.71818928653, 0.29005299359798
+ Layer[1] : time 36.540261759889 (nsec) --- local (x,y) -404.09786578764, 0.32075665202589
+ Layer[2] : time 38.223158131156 (nsec) --- local (x,y) -471.47787639294, 0.35260563772143
+ Layer[3] : time 39.906053745087 (nsec) --- local (x,y) -538.85618851411, 0.3809210241134
+ Layer[4] : time 41.588948454353 (nsec) --- local (x,y) -606.23246953006, 0.40992447540745
+EM Calorimeter has 36 hits. Total Edep is 79932.777314649 (MeV)
+Hadron Calorimeter has 4 hits. Total Edep is 49.323716774767 (MeV)
... write Root file : B5.root - done
... close Root file : B5.root - done
### Run 3 starts.
... open Root analysis file : B5.root - done
--> Event 0 starts.
->>> Event 0 >>> Simulation truth : proton (0,0,10000)
+>>> Event 0 >>> Simulation truth : proton (-0,0,10000)
Hodoscope 1 has 1 hits.
- Hodoscope[7] 5.0086958107673 (nsec)
-Hodoscope 2 has 1 hits.
- Hodoscope[9] 43.376563186629 (nsec)
+ Hodoscope[7] 5.0086956736507 (nsec)
+Hodoscope 2 has 2 hits.
+ Hodoscope[9] 43.373860746217 (nsec)
+ Hodoscope[23] 324.04910101522 (nsec)
Drift Chamber 1 has 5 hits.
- Layer[0] : time 6.7002638663023 (nsec) --- local (x,y) 0.082455385214541, 0.058714759359399
- Layer[1] : time 8.3754155772868 (nsec) --- local (x,y) 0.15105755025129, 0.11016502284565
- Layer[2] : time 10.050567380385 (nsec) --- local (x,y) 0.18517487163758, 0.17153344171893
- Layer[3] : time 11.725719312611 (nsec) --- local (x,y) 0.24221406186988, 0.19193140479473
- Layer[4] : time 13.40087136955 (nsec) --- local (x,y) 0.30027329445596, 0.22091909721966
+ Layer[0] : time 6.7002638769116 (nsec) --- local (x,y) -0.1147357067743, -0.16678419036195
+ Layer[1] : time 8.375415936616 (nsec) --- local (x,y) -0.20177315295081, -0.33613809878474
+ Layer[2] : time 10.050568506527 (nsec) --- local (x,y) -0.3066909962129, -0.51384165971814
+ Layer[3] : time 11.7257211936 (nsec) --- local (x,y) -0.4157745337047, -0.68662746852967
+ Layer[4] : time 13.400873999578 (nsec) --- local (x,y) -0.5339979256023, -0.86368877222108
Drift Chamber 2 has 5 hits.
- Layer[0] : time 35.002577031881 (nsec) --- local (x,y) -147.451986002, 0.65123299280219
- Layer[1] : time 36.680661067409 (nsec) --- local (x,y) -177.03387199888, 0.70398672388688
- Layer[2] : time 38.358749351376 (nsec) --- local (x,y) -206.6367276281, 0.75598929560243
- Layer[3] : time 40.036835593809 (nsec) --- local (x,y) -236.22861106542, 0.81074537495796
- Layer[4] : time 41.714922145411 (nsec) --- local (x,y) -265.82129328844, 0.86668645285434
-EM Calorimeter has 31 hits. Total Edep is 311.72988347603 (MeV)
-Hadron Calorimeter has 10 hits. Total Edep is 692.10836443486 (MeV)
+ Layer[0] : time 34.999813267362 (nsec) --- local (x,y) -149.36746195074, -3.7056399267325
+ Layer[1] : time 36.677914564541 (nsec) --- local (x,y) -179.03528819548, -3.9132960471256
+ Layer[2] : time 38.356016333967 (nsec) --- local (x,y) -208.70486410073, -4.1219270716594
+ Layer[3] : time 40.034116634119 (nsec) --- local (x,y) -238.36486642555, -4.352752125363
+ Layer[4] : time 41.712215021421 (nsec) --- local (x,y) -268.01312749945, -4.5802868724287
+EM Calorimeter has 32 hits. Total Edep is 241.69950462237 (MeV)
+Hadron Calorimeter has 10 hits. Total Edep is 548.02983942338 (MeV)
... write Root file : B5.root - done
... close Root file : B5.root - done
### Run 4 starts.
... open Root analysis file : B5.root - done
--> Event 0 starts.
->>> Event 0 >>> Simulation truth : pi+ (-0,0,10000)
+>>> Event 0 >>> Simulation truth : pi+ (0,0,10000)
Hodoscope 1 has 1 hits.
- Hodoscope[7] 4.9872691905518 (nsec)
+ Hodoscope[7] 4.9872692030156 (nsec)
Hodoscope 2 has 1 hits.
- Hodoscope[10] 42.693445412796 (nsec)
+ Hodoscope[10] 42.700527467111 (nsec)
Drift Chamber 1 has 5 hits.
- Layer[0] : time 6.6715985728688 (nsec) --- local (x,y) -0.20296644772288, -0.10004899878702
- Layer[1] : time 8.3395817203958 (nsec) --- local (x,y) -0.35393171616137, -0.12782388147997
- Layer[2] : time 10.007564878154 (nsec) --- local (x,y) -0.51374741779678, -0.13695351237944
- Layer[3] : time 11.675548028212 (nsec) --- local (x,y) -0.66267652775626, -0.14756553467869
- Layer[4] : time 13.343531191381 (nsec) --- local (x,y) -0.81952693268737, -0.17109133911465
+ Layer[0] : time 6.671598560223 (nsec) --- local (x,y) 0.08145223733764, -0.0071843336174283
+ Layer[1] : time 8.3395816952376 (nsec) --- local (x,y) 0.15249725546808, 0.0099146321620735
+ Layer[2] : time 10.007564833852 (nsec) --- local (x,y) 0.21498796086067, 0.052353944117723
+ Layer[3] : time 11.675547974207 (nsec) --- local (x,y) 0.27321568608509, 0.09084373134692
+ Layer[4] : time 13.343531108087 (nsec) --- local (x,y) 0.31571757717407, 0.10412274789755
Drift Chamber 2 has 5 hits.
- Layer[0] : time 34.365424649457 (nsec) --- local (x,y) -83.152405257989, -0.26074185229487
- Layer[1] : time 36.034299321024 (nsec) --- local (x,y) -99.502390254394, -0.29712903082493
- Layer[2] : time 37.703175463186 (nsec) --- local (x,y) -115.86583422481, -0.32472508914498
- Layer[3] : time 39.372051451303 (nsec) --- local (x,y) -132.22779864034, -0.35916164029967
- Layer[4] : time 41.040926459455 (nsec) --- local (x,y) -148.5807576829, -0.38772673650318
-EM Calorimeter has 31 hits. Total Edep is 352.59685542351 (MeV)
-Hadron Calorimeter has 12 hits. Total Edep is 422.94448130108 (MeV)
+ Layer[0] : time 34.372187972216 (nsec) --- local (x,y) -83.707938129973, 0.60966841094038
+ Layer[1] : time 36.041125335879 (nsec) --- local (x,y) -100.6226692878, 0.67331194700132
+ Layer[2] : time 37.710066242167 (nsec) --- local (x,y) -117.56873420584, 0.74168011114081
+ Layer[3] : time 39.379005740117 (nsec) --- local (x,y) -134.50226483146, 0.81808599115816
+ Layer[4] : time 41.047945373078 (nsec) --- local (x,y) -151.43703806243, 0.87652247039715
+EM Calorimeter has 3 hits. Total Edep is 337.739457325 (MeV)
+Hadron Calorimeter has 2 hits. Total Edep is 79.556341462739 (MeV)
... write Root file : B5.root - done
... close Root file : B5.root - done
### Run 5 starts.
... open Root analysis file : B5.root - done
--> Event 0 starts.
->>> Event 0 >>> Simulation truth : e+ (-0,0,10000)
+>>> Event 0 >>> Simulation truth : e+ (0,0,10000)
Hodoscope 1 has 1 hits.
- Hodoscope[7] 4.9867832337719 (nsec)
+ Hodoscope[7] 4.9867832463859 (nsec)
Hodoscope 2 has 1 hits.
- Hodoscope[8] 43.18810646647 (nsec)
+ Hodoscope[9] 43.191558993688 (nsec)
Drift Chamber 1 has 5 hits.
- Layer[0] : time 6.6709483754818 (nsec) --- local (x,y) 0.0084106336024069, -0.11576328819206
- Layer[1] : time 8.3387689135116 (nsec) --- local (x,y) -0.089948927643204, -0.20910610973506
- Layer[2] : time 10.006589460354 (nsec) --- local (x,y) -0.19754237515316, -0.30736292394648
- Layer[3] : time 11.674410002734 (nsec) --- local (x,y) -0.28961772718178, -0.41401316543171
- Layer[4] : time 13.342230552291 (nsec) --- local (x,y) -0.39477111366209, -0.51852574949128
-Drift Chamber 2 has 7 hits.
- Layer[0] : time 34.845031477611 (nsec) --- local (x,y) -176.47314471701, -1.571835000685
- Layer[1] : time 36.516920409651 (nsec) --- local (x,y) -211.41804783222, -1.7542696408997
- Layer[1] : time 36.675741676147 (nsec) --- local (x,y) -164.91950313401, 106.58007494391
- Layer[2] : time 38.188809347839 (nsec) --- local (x,y) -246.36281627379, -1.9664962309491
- Layer[2] : time 38.67995149836 (nsec) --- local (x,y) 13.784620332485, 295.96562755965
- Layer[3] : time 39.860697685874 (nsec) --- local (x,y) -281.30506732534, -2.1680243756327
- Layer[4] : time 41.532591691576 (nsec) --- local (x,y) -316.27169403114, -2.3670493641734
-EM Calorimeter has 22 hits. Total Edep is 9177.6087818588 (MeV)
-Hadron Calorimeter has 1 hits. Total Edep is 0.30108392729973 (MeV)
+ Layer[0] : time 6.6709485553751 (nsec) --- local (x,y) 0.30577281297871, -0.10174326083885
+ Layer[1] : time 8.338769265239 (nsec) --- local (x,y) 0.52724854855183, -0.24633495872556
+ Layer[2] : time 10.006589991544 (nsec) --- local (x,y) 0.75015442628807, -0.40550062096937
+ Layer[3] : time 11.674410717738 (nsec) --- local (x,y) 0.97470286855848, -0.56223046959022
+ Layer[4] : time 13.342231441215 (nsec) --- local (x,y) 1.2091950099251, -0.70060049778532
+Drift Chamber 2 has 5 hits.
+ Layer[0] : time 34.852973646032 (nsec) --- local (x,y) -151.50883328478, -2.6259275126922
+ Layer[1] : time 36.523967721952 (nsec) --- local (x,y) -182.36813997368, -2.7982260588476
+ Layer[2] : time 38.194957719353 (nsec) --- local (x,y) -213.20746269217, -2.9918886545017
+ Layer[3] : time 39.865950674657 (nsec) --- local (x,y) -244.06104133286, -3.207566895159
+ Layer[4] : time 41.536942641656 (nsec) --- local (x,y) -274.9098863149, -3.4120986607444
+EM Calorimeter has 22 hits. Total Edep is 9268.1577198952 (MeV)
+Hadron Calorimeter has 1 hits. Total Edep is 1.1458287991085 (MeV)
... write Root file : B5.root - done
... close Root file : B5.root - done
### Run 6 starts.
@@ -1051,26 +1030,22 @@ Hadron Calorimeter has 1 hits. Total Edep is 0.30108392729973 (MeV)
>>> Event 0 >>> Simulation truth : proton (-0,0,1000)
Hodoscope 1 has 1 hits.
- Hodoscope[7] 6.8391480691124 (nsec)
+ Hodoscope[7] 6.8393340964912 (nsec)
Hodoscope 2 has 1 hits.
- Hodoscope[9] 59.369221802288 (nsec)
+ Hodoscope[9] 59.387850715913 (nsec)
Drift Chamber 1 has 5 hits.
- Layer[0] : time 9.153983087066 (nsec) --- local (x,y) 0.19292040464016, 1.4526269720738
- Layer[1] : time 11.446643407232 (nsec) --- local (x,y) -0.99884184379901, 1.5979625773861
- Layer[2] : time 13.739530852706 (nsec) --- local (x,y) -2.186374920901, 1.7124221813472
- Layer[3] : time 16.032661714625 (nsec) --- local (x,y) -3.196820719733, 1.5099460281806
- Layer[4] : time 18.326040834944 (nsec) --- local (x,y) -4.1818370147575, 1.0208767048158
-Drift Chamber 2 has 9 hits.
- Layer[0] : time 47.882685142392 (nsec) --- local (x,y) -173.62905214936, -3.6335205129349
- Layer[1] : time 50.183639818118 (nsec) --- local (x,y) -205.45039023217, -3.6033976154236
- Layer[2] : time 52.485086086347 (nsec) --- local (x,y) -237.80323313529, -3.6668669743634
- Layer[3] : time 54.786841580036 (nsec) --- local (x,y) -270.3456626378, -3.7926810560845
- Layer[3] : time 55.126762488065 (nsec) --- local (x,y) -276.51904730287, -53.9394598475
- Layer[3] : time 55.176075056427 (nsec) --- local (x,y) -274.42759677835, -53.209200112287
- Layer[3] : time 55.198503435775 (nsec) --- local (x,y) -274.01623181337, -53.161530978423
- Layer[3] : time 55.200958484818 (nsec) --- local (x,y) -273.99306295066, -53.256516213846
- Layer[4] : time 57.088863429276 (nsec) --- local (x,y) -302.87115867153, -4.0564793225451
-EM Calorimeter has 2 hits. Total Edep is 298.97681580558 (MeV)
+ Layer[0] : time 9.1534165742401 (nsec) --- local (x,y) -0.45938040504108, 2.1632413475087
+ Layer[1] : time 11.445338132091 (nsec) --- local (x,y) -0.44795438204124, 4.726063056104
+ Layer[2] : time 13.737554704262 (nsec) --- local (x,y) -0.11344861336258, 7.333863346261
+ Layer[3] : time 16.029982053736 (nsec) --- local (x,y) 0.59178723219958, 10.018309566207
+ Layer[4] : time 18.322603688632 (nsec) --- local (x,y) 1.2697364131337, 12.396595061288
+Drift Chamber 2 has 5 hits.
+ Layer[0] : time 47.907144269158 (nsec) --- local (x,y) -160.987978702, 43.518111744192
+ Layer[1] : time 50.207587027184 (nsec) --- local (x,y) -192.82351092759, 47.18463126589
+ Layer[2] : time 52.508055956621 (nsec) --- local (x,y) -224.01557098297, 51.504928668363
+ Layer[3] : time 54.808675267586 (nsec) --- local (x,y) -255.06963585847, 55.918434942145
+ Layer[4] : time 57.109468806338 (nsec) --- local (x,y) -285.89741248924, 59.896114889997
+EM Calorimeter has 2 hits. Total Edep is 294.38857364539 (MeV)
Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
... write Root file : B5.root - done
... close Root file : B5.root - done
@@ -1079,54 +1054,54 @@ Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
--> Event 0 starts.
>>> Event 0 >>> Simulation truth : pi+ (0,0,1000)
-Hodoscope 1 has 2 hits.
- Hodoscope[7] 5.0351822482206 (nsec)
- Hodoscope[9] 6.6769730845536 (nsec)
-Hodoscope 2 has 0 hits.
+Hodoscope 1 has 1 hits.
+ Hodoscope[7] 5.0351744238433 (nsec)
+Hodoscope 2 has 1 hits.
+ Hodoscope[10] 43.144550223204 (nsec)
Drift Chamber 1 has 5 hits.
- Layer[0] : time 6.7358100558322 (nsec) --- local (x,y) -0.056540662276902, 1.816311446166
- Layer[1] : time 8.4199393897716 (nsec) --- local (x,y) -1.0483338965437, 2.6676066540469
- Layer[2] : time 10.104069954522 (nsec) --- local (x,y) -1.9339519580856, 3.2337300833197
- Layer[3] : time 11.788204200694 (nsec) --- local (x,y) -3.0110755774824, 3.781727479601
- Layer[4] : time 13.47234118198 (nsec) --- local (x,y) -4.0904654682469, 4.4161096300507
+ Layer[0] : time 6.7357432171959 (nsec) --- local (x,y) 1.9043200643828, 0.19589345751403
+ Layer[1] : time 8.4198133203744 (nsec) --- local (x,y) 2.7231285155215, 0.57954452710693
+ Layer[2] : time 10.103885535474 (nsec) --- local (x,y) 3.5021121467683, 0.931422314552
+ Layer[3] : time 11.787960751572 (nsec) --- local (x,y) 4.2477421410286, 1.200777409572
+ Layer[4] : time 13.472038771024 (nsec) --- local (x,y) 5.0517702528148, 1.3522708819271
Drift Chamber 2 has 5 hits.
- Layer[0] : time 34.91805304277 (nsec) --- local (x,y) -693.83611319385, 63.415686056131
- Layer[1] : time 36.696465237468 (nsec) --- local (x,y) -858.71922937368, 72.576920604483
- Layer[2] : time 38.474312485347 (nsec) --- local (x,y) -1023.0961254476, 81.101534386327
- Layer[3] : time 40.252999917651 (nsec) --- local (x,y) -1188.2715710316, 89.44438135281
- Layer[4] : time 42.031577531269 (nsec) --- local (x,y) -1353.3344320489, 97.856920407001
-EM Calorimeter has 0 hits. Total Edep is 0 (MeV)
-Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
+ Layer[0] : time 34.732228326382 (nsec) --- local (x,y) -93.965771228101, -1.9866989143033
+ Layer[1] : time 36.41800697543 (nsec) --- local (x,y) -116.17883174192, -2.7281125964423
+ Layer[2] : time 38.10376343832 (nsec) --- local (x,y) -138.22507628389, -3.5603569490857
+ Layer[3] : time 39.789530570444 (nsec) --- local (x,y) -160.32709512522, -4.3879622136804
+ Layer[4] : time 41.47529724449 (nsec) --- local (x,y) -182.39828502106, -5.4112094704739
+EM Calorimeter has 18 hits. Total Edep is 434.30555752461 (MeV)
+Hadron Calorimeter has 1 hits. Total Edep is 0.11257733547859 (MeV)
... write Root file : B5.root - done
... close Root file : B5.root - done
### Run 8 starts.
... open Root analysis file : B5.root - done
--> Event 0 starts.
->>> Event 0 >>> Simulation truth : e+ (0,0,1000)
+>>> Event 0 >>> Simulation truth : e+ (-0,0,1000)
Hodoscope 1 has 1 hits.
- Hodoscope[7] 4.9867839004467 (nsec)
+ Hodoscope[7] 4.9867840840488 (nsec)
Hodoscope 2 has 1 hits.
- Hodoscope[9] 43.186200970793 (nsec)
+ Hodoscope[9] 43.187084717772 (nsec)
Drift Chamber 1 has 5 hits.
- Layer[0] : time 6.6709493524812 (nsec) --- local (x,y) -0.36316609986363, -0.66438743457708
- Layer[1] : time 8.3387712644886 (nsec) --- local (x,y) -0.19928770315156, -1.2936891820099
- Layer[2] : time 10.006593700283 (nsec) --- local (x,y) 0.002291528639286, -2.0289438803524
- Layer[3] : time 11.674415953169 (nsec) --- local (x,y) 0.038919897102443, -2.753211369188
- Layer[4] : time 13.342238225209 (nsec) --- local (x,y) -0.018188476616439, -3.4825667531643
+ Layer[0] : time 6.6709516797019 (nsec) --- local (x,y) 0.82801873055063, -0.83121081657638
+ Layer[1] : time 8.3387746251765 (nsec) --- local (x,y) 1.3690656820231, -1.2889157530718
+ Layer[2] : time 10.006597004488 (nsec) --- local (x,y) 1.2481029985294, -2.031552412361
+ Layer[3] : time 11.674418994256 (nsec) --- local (x,y) 1.1961394393262, -2.6999843696025
+ Layer[4] : time 13.34224187306 (nsec) --- local (x,y) 0.88277352295414, -3.485825643485
Drift Chamber 2 has 5 hits.
- Layer[0] : time 34.847746470751 (nsec) --- local (x,y) -154.38456629632, -6.5529186342985
- Layer[1] : time 36.518706489858 (nsec) --- local (x,y) -185.07755064501, -6.4814282014904
- Layer[2] : time 38.18965583231 (nsec) --- local (x,y) -215.71835182985, -6.3042154010635
- Layer[3] : time 39.860613611183 (nsec) --- local (x,y) -246.40078789969, -6.2210329449393
- Layer[4] : time 41.531604551943 (nsec) --- local (x,y) -277.24359092467, -5.9109248903663
-EM Calorimeter has 9 hits. Total Edep is 977.03485685309 (MeV)
+ Layer[0] : time 34.847218042736 (nsec) --- local (x,y) -158.88920274515, -27.194019286165
+ Layer[1] : time 36.518495586595 (nsec) --- local (x,y) -190.97916271442, -29.969493211624
+ Layer[2] : time 38.189730318557 (nsec) --- local (x,y) -222.86367568175, -32.795990196258
+ Layer[3] : time 39.860953903829 (nsec) --- local (x,y) -254.69383899445, -35.643089383902
+ Layer[4] : time 41.532207115457 (nsec) --- local (x,y) -286.65890149978, -38.540707395291
+EM Calorimeter has 7 hits. Total Edep is 971.64801121449 (MeV)
Hadron Calorimeter has 0 hits. Total Edep is 0 (MeV)
... write Root file : B5.root - done
... close Root file : B5.root - done
Graphics systems deleted.
Visualization Manager deleting...
-G4Integration Driver Stats: #QuickAdvance 25873 - #AccurateAdvance 3858 #good steps 34194 #bad steps 1836
+G4Integration Driver Stats: #QuickAdvance 122118 - #AccurateAdvance 10768 #good steps 272062 #bad steps 5527
G4ChordFinder statistics report:
- No trials: 7294 No Calls: 6097 Max-trial: 10
+ No trials: 14392 No Calls: 13379 Max-trial: 9
Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98
diff --git a/examples/basic/B5/include/B5DriftChamberHit.hh b/examples/basic/B5/include/B5DriftChamberHit.hh
index 37161470425..327f2b250f8 100644
--- a/examples/basic/B5/include/B5DriftChamberHit.hh
+++ b/examples/basic/B5/include/B5DriftChamberHit.hh
@@ -57,7 +57,7 @@ class B5DriftChamberHit : public G4VHit
virtual ~B5DriftChamberHit();
const B5DriftChamberHit& operator=(const B5DriftChamberHit &right);
- int operator==(const B5DriftChamberHit &right) const;
+ G4bool operator==(const B5DriftChamberHit &right) const;
inline void *operator new(size_t);
inline void operator delete(void *aHit);
diff --git a/examples/basic/B5/include/B5EmCalorimeterHit.hh b/examples/basic/B5/include/B5EmCalorimeterHit.hh
index 5f03bd611d8..1cb47acdb9c 100644
--- a/examples/basic/B5/include/B5EmCalorimeterHit.hh
+++ b/examples/basic/B5/include/B5EmCalorimeterHit.hh
@@ -57,7 +57,7 @@ class B5EmCalorimeterHit : public G4VHit
virtual ~B5EmCalorimeterHit();
const B5EmCalorimeterHit& operator=(const B5EmCalorimeterHit &right);
- int operator==(const B5EmCalorimeterHit &right) const;
+ G4bool operator==(const B5EmCalorimeterHit &right) const;
inline void *operator new(size_t);
inline void operator delete(void *aHit);
diff --git a/examples/basic/B5/include/B5HadCalorimeterHit.hh b/examples/basic/B5/include/B5HadCalorimeterHit.hh
index 9de1127a11f..3c53092e1e1 100644
--- a/examples/basic/B5/include/B5HadCalorimeterHit.hh
+++ b/examples/basic/B5/include/B5HadCalorimeterHit.hh
@@ -57,7 +57,7 @@ class B5HadCalorimeterHit : public G4VHit
virtual ~B5HadCalorimeterHit();
const B5HadCalorimeterHit& operator=(const B5HadCalorimeterHit &right);
- int operator==(const B5HadCalorimeterHit &right) const;
+ G4bool operator==(const B5HadCalorimeterHit &right) const;
inline void *operator new(size_t);
inline void operator delete(void *aHit);
diff --git a/examples/basic/B5/include/B5HodoscopeHit.hh b/examples/basic/B5/include/B5HodoscopeHit.hh
index d41a56cea19..102ace18209 100644
--- a/examples/basic/B5/include/B5HodoscopeHit.hh
+++ b/examples/basic/B5/include/B5HodoscopeHit.hh
@@ -56,7 +56,7 @@ class B5HodoscopeHit : public G4VHit
virtual ~B5HodoscopeHit();
const B5HodoscopeHit& operator=(const B5HodoscopeHit &right);
- int operator==(const B5HodoscopeHit &right) const;
+ G4bool operator==(const B5HodoscopeHit &right) const;
inline void *operator new(size_t);
inline void operator delete(void*aHit);
diff --git a/examples/basic/B5/src/B5DriftChamberHit.cc b/examples/basic/B5/src/B5DriftChamberHit.cc
index 6cdbca7edfe..5a6c56bb094 100644
--- a/examples/basic/B5/src/B5DriftChamberHit.cc
+++ b/examples/basic/B5/src/B5DriftChamberHit.cc
@@ -87,9 +87,9 @@ const B5DriftChamberHit& B5DriftChamberHit::operator=(const B5DriftChamberHit &r
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-int B5DriftChamberHit::operator==(const B5DriftChamberHit &/*right*/) const
+G4bool B5DriftChamberHit::operator==(const B5DriftChamberHit &/*right*/) const
{
- return 0;
+ return false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
diff --git a/examples/basic/B5/src/B5EmCalorimeterHit.cc b/examples/basic/B5/src/B5EmCalorimeterHit.cc
index eca15450edd..7308144e3e7 100644
--- a/examples/basic/B5/src/B5EmCalorimeterHit.cc
+++ b/examples/basic/B5/src/B5EmCalorimeterHit.cc
@@ -89,7 +89,7 @@ const B5EmCalorimeterHit& B5EmCalorimeterHit::operator=(const B5EmCalorimeterHit
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-int B5EmCalorimeterHit::operator==(const B5EmCalorimeterHit &right) const
+G4bool B5EmCalorimeterHit::operator==(const B5EmCalorimeterHit &right) const
{
return (fCellID==right.fCellID);
}
diff --git a/examples/basic/B5/src/B5HadCalorimeterHit.cc b/examples/basic/B5/src/B5HadCalorimeterHit.cc
index 9fbfb1f1b56..8c8268559f1 100644
--- a/examples/basic/B5/src/B5HadCalorimeterHit.cc
+++ b/examples/basic/B5/src/B5HadCalorimeterHit.cc
@@ -91,7 +91,7 @@ const B5HadCalorimeterHit& B5HadCalorimeterHit::operator=(
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-int B5HadCalorimeterHit::operator==(const B5HadCalorimeterHit &right) const
+G4bool B5HadCalorimeterHit::operator==(const B5HadCalorimeterHit &right) const
{
return (fColumnID==right.fColumnID&&fRowID==right.fRowID);
}
diff --git a/examples/basic/B5/src/B5HodoscopeHit.cc b/examples/basic/B5/src/B5HodoscopeHit.cc
index 6372c3ad9c5..a8763b4485c 100644
--- a/examples/basic/B5/src/B5HodoscopeHit.cc
+++ b/examples/basic/B5/src/B5HodoscopeHit.cc
@@ -82,9 +82,9 @@ const B5HodoscopeHit& B5HodoscopeHit::operator=(const B5HodoscopeHit &right)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-int B5HodoscopeHit::operator==(const B5HodoscopeHit &/*right*/) const
+G4bool B5HodoscopeHit::operator==(const B5HodoscopeHit &/*right*/) const
{
- return 0;
+ return false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
diff --git a/examples/basic/History b/examples/basic/History
index 0669de5ce91..cc47491f433 100644
--- a/examples/basic/History
+++ b/examples/basic/History
@@ -15,6 +15,9 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+31/01/19, I.Hrivnacova (exbasic-V10-04-01)
+- Merged GitHub PR #4: all Boolean operators now return G4bool.
+
30/11/18 I. Hrivnacova (exbasic-V10-04-00)
- Updated README files:
Added info about usage of G4Accumulable and G4StatAnalysis
diff --git a/examples/extended/analysis/AnaEx01/AnaEx01.out b/examples/extended/analysis/AnaEx01/AnaEx01.out
index edf1ec56718..f424bca4891 100644
--- a/examples/extended/analysis/AnaEx01/AnaEx01.out
+++ b/examples/extended/analysis/AnaEx01/AnaEx01.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -36,7 +32,7 @@
Material: G4_lAr density: 1.396 g/cm3 RadL: 14.003 cm Nucl.Int.Length: 85.706 cm
- Imean: 188.000 eV temperature: 0.00 K pressure: 1.00 atm
+ Imean: 188.000 eV temperature: 293.15 K pressure: 1.00 atm
---> Element: Ar (Ar) Z = 18.0 N = 40 A = 39.948 g/mole
---> Isotope: Ar36 Z = 18 N = 36 A = 35.97 g/mole abundance: 0.337 %
@@ -62,12 +58,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -108,371 +102,371 @@ Some /vis commands (optionally) take a string to specify colour.
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -523,6 +517,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -628,6 +623,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -764,6 +760,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -837,371 +834,371 @@ LGap: mean = 11.9224 cm rms = 3.70988 cm
---> The calorimeter is 20 layers of: [ 20mm of G4_Al + 10mm of G4_lAr ]
------------------------------------------------------------
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
### Run 1 start.
... open Root analysis file : AnaEx01.root - done
diff --git a/examples/extended/analysis/AnaEx02/AnaEx02.out b/examples/extended/analysis/AnaEx02/AnaEx02.out
index 19c2a2b0bb7..9cf9912b20a 100644
--- a/examples/extended/analysis/AnaEx02/AnaEx02.out
+++ b/examples/extended/analysis/AnaEx02/AnaEx02.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -36,7 +32,7 @@
Material: G4_lAr density: 1.396 g/cm3 RadL: 14.003 cm Nucl.Int.Length: 85.706 cm
- Imean: 188.000 eV temperature: 0.00 K pressure: 1.00 atm
+ Imean: 188.000 eV temperature: 293.15 K pressure: 1.00 atm
---> Element: Ar (Ar) Z = 18.0 N = 40 A = 39.948 g/mole
---> Isotope: Ar36 Z = 18 N = 36 A = 35.97 g/mole abundance: 0.337 %
@@ -74,12 +70,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -108,371 +102,371 @@ End of Run User Vis Actions: none
Some /vis commands (optionally) take a string to specify colour.
"/vis/list" to see available colours.
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -523,6 +517,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -628,6 +623,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -764,6 +760,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -834,371 +831,371 @@ LGap: mean = 11.9224 cm rms = 3.70988 cm
---> The calorimeter is 20 layers of: [ 20mm of G4_Al + 10mm of G4_lAr ]
------------------------------------------------------------
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
### Run 1 start.
----> Output file is open in AnaEx02.root
diff --git a/examples/extended/analysis/B1Con/exampleB01Con.out b/examples/extended/analysis/B1Con/exampleB01Con.out
index c66c7e0cece..f20a29d5ad0 100644
--- a/examples/extended/analysis/B1Con/exampleB01Con.out
+++ b/examples/extended/analysis/B1Con/exampleB01Con.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -31,12 +27,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -65,371 +59,371 @@ End of Run User Vis Actions: none
Some /vis commands (optionally) take a string to specify colour.
"/vis/list" to see available colours.
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -485,6 +479,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -589,6 +584,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -723,6 +719,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -826,26 +823,26 @@ i/16 till_ith mean var sd r vov
---> Begin of event: 900
G4ConvergenceTester Output Result of DOSE_TALLY
- EFFICIENCY = 0.639
- MEAN = 5.04375e-12
- VAR = 2.11255e-23
- SD = 4.59625e-12
- R = 0.0288171
- SHIFT = 6.35761e-15
- VOV = 0.000170294
- FOM = 3541.78
-THE LARGEST SCORE = 1.07505e-11 and it happened at 649th event
- Affected Mean = 5.04945e-12 and its ratio to original is 1.00113
- Affected VAR = 2.11369e-23 and its ratio to original is 1.00054
- Affected R = 0.0287779 and its ratio to original is 0.998641
- Affected SHIFT = 2.19676e-15 and its ratio to original is 0.345532
- Affected FOM = 3541.78 and its ratio to original is 1
-MEAN distribution is not RANDOM
+ EFFICIENCY = 0.647
+ MEAN = 5.25356e-12
+ VAR = 2.16155e-23
+ SD = 4.64925e-12
+ R = 0.0279852
+ SHIFT = -1.47942e-13
+ VOV = 0.000167401
+ FOM = 4256.2
+THE LARGEST SCORE = 1.07398e-11 and it happened at 590th event
+ Affected Mean = 5.25904e-12 and its ratio to original is 1.00104
+ Affected VAR = 2.16239e-23 and its ratio to original is 1.00039
+ Affected R = 0.0279475 and its ratio to original is 0.998654
+ Affected SHIFT = -1.52135e-13 and its ratio to original is 1.02834
+ Affected FOM = 4256.2 and its ratio to original is 1
+MEAN distribution is RANDOM
r follows 1/std::sqrt(N)
r is monotonically decrease
-r is less than 0.1. r = 0.0288171
+r is less than 0.1. r = 0.0279852
VOV follows 1/std::sqrt(N)
-VOV is monotonically decrease
+VOV is NOT monotonically decrease
FOM distribution is not RANDOM
SLOPE is not large enough
This result passes 5 / 8 Convergence Test.
@@ -853,26 +850,26 @@ This result passes 5 / 8 Convergence Test.
G4ConvergenceTester Output History of DOSE_TALLY
i/16 till_ith mean var sd r vov fom shift e r2eff r2int
- 1 62 4.51889e-12 2.13578e-23 4.62145e-12 0.128847 0.0031592 177.162 4.89478e-13 0.619048 0.00976801 0.00657014
- 2 124 4.74949e-12 2.19901e-23 4.68936e-12 0.0883103 0.00115953 377.136 2.91003e-13 0.6 0.00533333 0.00240299
- 3 187 4.83946e-12 2.12184e-23 4.60635e-12 0.0694194 0.000911791 610.323 2.00291e-13 0.62234 0.00322786 0.00156555
- 4 249 4.75729e-12 2.10132e-23 4.58401e-12 0.0609419 0.000732779 791.933 2.73293e-13 0.616 0.00249351 0.00120556
- 5 312 5.02843e-12 2.14624e-23 4.63275e-12 0.0520756 0.000493071 1084.56 2.10241e-14 0.626198 0.00190715 0.000796046
- 6 374 5.12894e-12 2.14191e-23 4.62808e-12 0.046597 0.000414676 1354.58 -7.34503e-14 0.637333 0.00151743 0.000648054
- 7 437 4.99996e-12 2.12406e-23 4.60875e-12 0.0440433 0.000374352 1516.22 4.35283e-14 0.627854 0.00135326 0.000582123
- 8 499 4.92038e-12 2.11777e-23 4.60192e-12 0.0418269 0.00033175 1681.16 1.25029e-13 0.63 0.0011746 0.00057139
- 9 562 4.92855e-12 2.10481e-23 4.58782e-12 0.0392314 0.000297412 1910.97 1.11733e-13 0.634103 0.00102492 0.000511447
- 10 624 4.91299e-12 2.10445e-23 4.58743e-12 0.0373494 0.000271486 2108.41 1.28537e-13 0.6336 0.000925253 0.00046749
- 11 687 4.87476e-12 2.11012e-23 4.59361e-12 0.0359258 0.000244393 2278.81 1.56663e-13 0.625 0.000872093 0.000416695
- 12 749 4.92946e-12 2.113e-23 4.59674e-12 0.0340502 0.000223097 2536.78 1.04631e-13 0.628 0.000789809 0.000368061
- 13 812 4.91119e-12 2.11886e-23 4.6031e-12 0.0328714 0.000206339 2721.97 1.30997e-13 0.623616 0.000742374 0.000336828
- 14 874 4.99454e-12 2.11498e-23 4.59889e-12 0.0311281 0.000192324 3035.39 5.2357e-14 0.630857 0.000668737 0.000299116
- 15 937 5.02708e-12 2.11991e-23 4.60425e-12 0.0299049 0.000177874 3288.8 2.60703e-14 0.634328 0.000614574 0.000278773
- 16 999 5.04375e-12 2.11255e-23 4.59625e-12 0.0288171 0.000170294 3541.78 6.35761e-15 0.639 0.000564945 0.000264647
+ 1 62 5.81836e-12 2.17241e-23 4.66092e-12 0.100925 0.00374856 327.249 -6.81237e-13 0.698413 0.00685426 0.00316999
+ 2 124 5.89654e-12 2.234e-23 4.72652e-12 0.071695 0.00171091 648.487 -7.60215e-13 0.688 0.00362791 0.00147114
+ 3 187 5.52683e-12 2.24274e-23 4.73576e-12 0.0624935 0.000817526 853.512 -4.36905e-13 0.654255 0.00281093 0.00107373
+ 4 249 5.39296e-12 2.23626e-23 4.72891e-12 0.055458 0.00056888 1083.8 -3.11417e-13 0.648 0.00217284 0.000890445
+ 5 312 5.05903e-12 2.20336e-23 4.694e-12 0.052445 0.000457669 1211.91 1.41064e-14 0.626198 0.00190715 0.000834533
+ 6 374 5.16409e-12 2.18827e-23 4.6779e-12 0.046778 0.000399748 1523.33 -7.45259e-14 0.642667 0.00148271 0.000699636
+ 7 437 5.33813e-12 2.14811e-23 4.63477e-12 0.041486 0.000401016 1936.76 -2.37706e-13 0.6621 0.00116517 0.00055199
+ 8 499 5.33716e-12 2.16099e-23 4.64864e-12 0.0389521 0.000340607 2196.93 -2.33585e-13 0.656 0.00104878 0.000465452
+ 9 562 5.26931e-12 2.17432e-23 4.66297e-12 0.0372953 0.000282849 2396.46 -1.71618e-13 0.651865 0.000948597 0.000439871
+ 10 624 5.31806e-12 2.16179e-23 4.64951e-12 0.0349714 0.000268497 2725.53 -2.16965e-13 0.656 0.000839024 0.000382021
+ 11 687 5.23251e-12 2.17029e-23 4.65864e-12 0.0339434 0.000233884 2893.14 -1.35211e-13 0.646802 0.000793703 0.000356775
+ 12 749 5.14556e-12 2.18258e-23 4.67181e-12 0.0331529 0.00020801 3032.74 -5.33943e-14 0.634667 0.000767507 0.000330143
+ 13 812 5.14992e-12 2.15697e-23 4.64432e-12 0.0316283 0.000208123 3332.17 -5.24612e-14 0.639606 0.000693065 0.000306055
+ 14 874 5.19758e-12 2.15627e-23 4.64357e-12 0.0302028 0.000194248 3654.14 -9.73895e-14 0.643429 0.000633342 0.000277824
+ 15 937 5.20326e-12 2.15822e-23 4.64566e-12 0.0291521 0.000179291 3922.27 -1.0906e-13 0.641791 0.000595031 0.00025391
+ 16 999 5.25356e-12 2.16155e-23 4.64925e-12 0.0279852 0.000167401 4256.2 -1.47942e-13 0.647 0.000545595 0.000236793
--------------------End of Global Run-----------------------
The run consists of 1000 proton of 210 MeV
- Dose in scoring volume : 5.04375 nanoGy +- 145.273 picoGy
+ Dose in scoring volume : 5.25356 nanoGy +- 146.949 picoGy
------------------------------------------------------------
Graphics systems deleted.
diff --git a/examples/extended/biasing/B01/exampleB01.out b/examples/extended/biasing/B01/exampleB01.out
index 7cd0e631114..6118dcd2c6e 100644
--- a/examples/extended/biasing/B01/exampleB01.out
+++ b/examples/extended/biasing/B01/exampleB01.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -100,371 +96,371 @@ Going to assign importance: 32768, to volume: cell_16
Going to assign importance: 65536, to volume: cell_17
Going to assign importance: 131072, to volume: cell_18
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -515,6 +511,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -620,6 +617,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -756,6 +754,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -782,24 +781,24 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
=============================================================
=============================================================
Volume | Tr.Entering | Population | Collisions | Coll*WGT | NumWGTedE | FluxWGTedE | Av.Tr.WGT | SL | SLW | SLW_v | SLWE | SLWE_v |
- cell_00 | 43 | 132 | 43 | 43 | 0.0994738 | 4.00667 | 1 | 9146.92 | 9146.92 | 11768.1 | 36648.7 | 1170.62 |
- cell_01 | 153 | 181 | 557 | 557 | 0.0191238 | 4.73311 | 1 | 24422.4 | 24422.4 | 162254 | 115594 | 3102.9 |
- cell_02 | 197 | 287 | 1246 | 623 | 0.00945873 | 3.11719 | 0.5 | 45647.3 | 22823.7 | 223530 | 71145.6 | 2114.31 |
- cell_03 | 264 | 389 | 2035 | 508.75 | 0.00825817 | 2.25255 | 0.25 | 70121.5 | 17530.4 | 162891 | 39488.1 | 1345.18 |
- cell_04 | 279 | 442 | 2600 | 325 | 0.00483508 | 1.81351 | 0.125 | 81805.8 | 10225.7 | 136832 | 18544.5 | 661.595 |
- cell_05 | 315 | 466 | 2610 | 163.125 | 0.00565552 | 1.64726 | 0.0625 | 83076.9 | 5192.31 | 55855.4 | 8553.06 | 315.891 |
- cell_06 | 357 | 523 | 3455 | 107.969 | 0.00362209 | 1.35106 | 0.03125 | 97135.1 | 3035.47 | 43383.4 | 4101.1 | 157.139 |
- cell_07 | 352 | 541 | 3307 | 51.6719 | 0.00294205 | 1.24251 | 0.015625 | 100457 | 1569.65 | 26311.7 | 1950.3 | 77.4103 |
- cell_08 | 324 | 474 | 3116 | 24.3438 | 0.00264658 | 1.24567 | 0.0078125 | 89581.6 | 699.856 | 13228.4 | 871.787 | 35.01 |
- cell_09 | 281 | 415 | 2662 | 10.3984 | 0.00344608 | 1.22331 | 0.00390625 | 76941.3 | 300.552 | 4288.9 | 367.668 | 14.7799 |
- cell_10 | 255 | 373 | 2506 | 4.89453 | 0.00273696 | 1.04323 | 0.00195312 | 70570.6 | 137.833 | 2281.82 | 143.791 | 6.24526 |
- cell_11 | 230 | 333 | 2145 | 2.09473 | 0.00232656 | 1.00772 | 0.000976562 | 62404.8 | 60.9422 | 1142.82 | 61.4127 | 2.65883 |
- cell_12 | 223 | 317 | 2202 | 1.0752 | 0.00430934 | 1.0073 | 0.000488281 | 64493.7 | 31.4911 | 338.674 | 31.721 | 1.45946 |
- cell_13 | 223 | 328 | 2277 | 0.555908 | 0.00179585 | 0.877965 | 0.000244141 | 63556.7 | 15.5168 | 336.262 | 13.6232 | 0.603875 |
- cell_14 | 193 | 280 | 1769 | 0.215942 | 0.00267915 | 1.07942 | 0.00012207 | 49213.8 | 6.00755 | 100.202 | 6.48466 | 0.268456 |
- cell_15 | 172 | 261 | 1914 | 0.116821 | 0.00294863 | 1.02434 | 6.10352e-05 | 53301.2 | 3.25325 | 49.0021 | 3.33242 | 0.144489 |
- cell_16 | 156 | 224 | 1703 | 0.0519714 | 0.00266864 | 0.99028 | 3.05176e-05 | 45956.4 | 1.40248 | 22.1345 | 1.38885 | 0.0590691 |
- cell_17 | 111 | 176 | 1174 | 0.0179138 | 0.00315887 | 1.27718 | 1.52588e-05 | 35312.3 | 0.538823 | 8.71864 | 0.688176 | 0.0275411 |
- cell_18 | 67 | 129 | 677 | 0.0051651 | 0.00511252 | 1.85633 | 7.62939e-06 | 22892.9 | 0.174659 | 2.26621 | 0.324226 | 0.0115861 |
- cell_19 | 51 | 51 | 51 | 0.000389099 | 0.0318952 | 2.09446 | 7.62939e-06 | 8727.93 | 0.0665888 | 0.162615 | 0.139468 | 0.00518665 |
+ cell_00 | 35 | 129 | 35 | 35 | 0.0155897 | 2.62983 | 1 | 6193.92 | 6193.92 | 37160.5 | 16289 | 579.32 |
+ cell_01 | 149 | 175 | 497 | 497 | 0.0188688 | 4.51875 | 1 | 21945.8 | 21945.8 | 141137 | 99167.5 | 2663.09 |
+ cell_02 | 200 | 284 | 1359 | 679.5 | 0.00924091 | 2.66639 | 0.5 | 49501.7 | 24750.9 | 224504 | 65995.4 | 2074.62 |
+ cell_03 | 295 | 449 | 2528 | 632 | 0.00638027 | 1.92865 | 0.25 | 81588.5 | 20397.1 | 218239 | 39339 | 1392.42 |
+ cell_04 | 349 | 496 | 2894 | 361.75 | 0.00444105 | 1.64978 | 0.125 | 92173.8 | 11521.7 | 154576 | 19008.3 | 686.479 |
+ cell_05 | 390 | 550 | 3468 | 216.75 | 0.00312744 | 1.39716 | 0.0625 | 102854 | 6428.37 | 109476 | 8981.46 | 342.378 |
+ cell_06 | 360 | 523 | 3252 | 101.625 | 0.00308389 | 1.34062 | 0.03125 | 94757.1 | 2961.16 | 48865.4 | 3969.8 | 150.695 |
+ cell_07 | 334 | 514 | 3082 | 48.1562 | 0.00386281 | 1.49702 | 0.015625 | 93823.8 | 1466 | 21361.4 | 2194.63 | 82.5151 |
+ cell_08 | 297 | 446 | 2858 | 22.3281 | 0.00381525 | 1.31973 | 0.0078125 | 84864.8 | 663.006 | 9118.96 | 874.991 | 34.7911 |
+ cell_09 | 272 | 411 | 2514 | 9.82031 | 0.00269239 | 1.01579 | 0.00390625 | 73276.9 | 286.238 | 4509.84 | 290.759 | 12.1422 |
+ cell_10 | 254 | 390 | 2344 | 4.57812 | 0.00287907 | 1.09141 | 0.00195312 | 72294.9 | 141.201 | 2305.68 | 154.108 | 6.6382 |
+ cell_11 | 252 | 340 | 2219 | 2.16699 | 0.00255482 | 1.12982 | 0.000976562 | 66024.5 | 64.4771 | 1215.83 | 72.8474 | 3.10623 |
+ cell_12 | 243 | 347 | 2441 | 1.19189 | 0.00236057 | 0.893051 | 0.000488281 | 70962 | 34.6494 | 592.294 | 30.9437 | 1.39815 |
+ cell_13 | 202 | 320 | 2163 | 0.528076 | 0.00239099 | 1.04823 | 0.000244141 | 59907.3 | 14.6258 | 265.618 | 15.3312 | 0.635091 |
+ cell_14 | 172 | 263 | 1945 | 0.237427 | 0.00171936 | 0.804492 | 0.00012207 | 51556.4 | 6.29351 | 134.733 | 5.06308 | 0.231654 |
+ cell_15 | 149 | 211 | 1488 | 0.0908203 | 0.00162713 | 0.819761 | 6.10352e-05 | 40386.9 | 2.46502 | 57.1373 | 2.02073 | 0.0929697 |
+ cell_16 | 118 | 165 | 1274 | 0.0388794 | 0.00212628 | 0.899531 | 3.05176e-05 | 35318.6 | 1.07784 | 20.6002 | 0.969548 | 0.0438019 |
+ cell_17 | 95 | 141 | 810 | 0.0123596 | 0.00342718 | 1.26751 | 1.52588e-05 | 24405.4 | 0.372397 | 5.74955 | 0.472016 | 0.0197047 |
+ cell_18 | 63 | 118 | 550 | 0.00419617 | 0.00319346 | 1.28816 | 7.62939e-06 | 18023.1 | 0.137505 | 2.23348 | 0.17713 | 0.00713254 |
+ cell_19 | 41 | 41 | 41 | 0.000312805 | 0.0152833 | 2.11464 | 7.62939e-06 | 6161.48 | 0.0470084 | 0.234429 | 0.0994057 | 0.00358284 |
=============================================
diff --git a/examples/extended/biasing/B03/exampleB03.out b/examples/extended/biasing/B03/exampleB03.out
index 765f49e61da..7c0beeaf909 100644
--- a/examples/extended/biasing/B03/exampleB03.out
+++ b/examples/extended/biasing/B03/exampleB03.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -89,224 +85,224 @@ B03PhysicsList::SetCuts:CutLength : 1 (mm)
adding cell: 17 replica: 0 name: cell_17
adding cell: 18 replica: 0 name: cell_18
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PhotoElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila
+ PhotoElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-hIoni: for GenericIon SubType= 2
+hIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for alpha SubType= 2
+hIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
diff --git a/examples/extended/biasing/GB01/exampleGB01.out b/examples/extended/biasing/GB01/exampleGB01.out
index 7da3e5fcc63..66aee42b1c8 100644
--- a/examples/extended/biasing/GB01/exampleGB01.out
+++ b/examples/extended/biasing/GB01/exampleGB01.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -41,12 +37,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -75,371 +69,371 @@ End of Run User Vis Actions: none
Some /vis commands (optionally) take a string to specify colour.
"/vis/list" to see available colours.
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -490,6 +484,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -595,6 +590,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -731,6 +727,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
diff --git a/examples/extended/biasing/GB02/exampleGB02.out b/examples/extended/biasing/GB02/exampleGB02.out
index ca22b0cb0c4..33a2d4056f4 100644
--- a/examples/extended/biasing/GB02/exampleGB02.out
+++ b/examples/extended/biasing/GB02/exampleGB02.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -41,12 +37,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -75,371 +69,371 @@ End of Run User Vis Actions: none
Some /vis commands (optionally) take a string to specify colour.
"/vis/list" to see available colours.
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -490,6 +484,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -595,6 +590,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -731,6 +727,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
diff --git a/examples/extended/biasing/GB03/exampleGB03.out b/examples/extended/biasing/GB03/exampleGB03.out
index 7cd06de0de8..3b6a1d539c6 100644
--- a/examples/extended/biasing/GB03/exampleGB03.out
+++ b/examples/extended/biasing/GB03/exampleGB03.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -29,12 +25,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -81,371 +75,371 @@ G4SDManager::AddNewCollection : the collection is registere
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -496,6 +490,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -601,6 +596,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -737,6 +733,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -805,7 +802,7 @@ GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and prob
Run terminated.
Run Summary
Number of events processed : 10
- User=0.080000s Real=0.083265s Sys=0.000000s
+ User=0.100000s Real=0.101806s Sys=0.010000s
Region -- -- appears in world volume
This region is in the mass world.
@@ -865,7 +862,7 @@ GB03BOptrGeometryBasedBiasing : starting run with splitting factor = 2, and prob
Run terminated.
Run Summary
Number of events processed : 10
- User=0.410000s Real=0.440106s Sys=0.000000s
+ User=0.090000s Real=0.092224s Sys=0.000000s
Graphics systems deleted.
Visualization Manager deleting...
G4 kernel has come to Quit state.
@@ -888,12 +885,12 @@ Pool ID '15G4PrimaryVertex', size : 0.000961 MB
Pool ID '17G4PrimaryParticle', size : 0.000961 MB
Pool ID '15G4HCofThisEvent', size : 0.000961 MB
Pool ID '16G4HitsCollection', size : 0 MB
-Pool ID '7G4Track', size : 0.00961 MB
+Pool ID '7G4Track', size : 0.00865 MB
Pool ID '18G4TouchableHistory', size : 0.00192 MB
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
Pool ID '10G4Fragment', size : 0.000961 MB
Number of memory pools allocated: 12 of which, static: 0
-Dynamic pools deleted: 12 / Total memory freed: 0.041 MB
+Dynamic pools deleted: 12 / Total memory freed: 0.04 MB
============================================================
G4Allocator objects are deleted.
UImanager deleted.
diff --git a/examples/extended/biasing/GB04/exampleGB04.out b/examples/extended/biasing/GB04/exampleGB04.out
index ccdf1b09d18..9fe1272d852 100644
--- a/examples/extended/biasing/GB04/exampleGB04.out
+++ b/examples/extended/biasing/GB04/exampleGB04.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -41,12 +37,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -75,371 +69,371 @@ End of Run User Vis Actions: none
Some /vis commands (optionally) take a string to specify colour.
"/vis/list" to see available colours.
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -490,6 +484,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -595,6 +590,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -731,6 +727,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -1141,7 +1138,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.004767s Sys=0.010000s
+ User=0.010000s Real=0.003509s Sys=0.000000s
Region -- -- appears in world volume
This region is in the mass world.
@@ -2521,7 +2518,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.007964s Sys=0.000000s
+ User=0.000000s Real=0.005523s Sys=0.000000s
Region -- -- appears in world volume
This region is in the mass world.
@@ -5342,7 +5339,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
Run terminated.
Run Summary
Number of events processed : 10
- User=0.010000s Real=0.016118s Sys=0.000000s
+ User=0.010000s Real=0.010528s Sys=0.010000s
Graphics systems deleted.
Visualization Manager deleting...
G4 kernel has come to Quit state.
diff --git a/examples/extended/biasing/GB05/exampleGB05.out b/examples/extended/biasing/GB05/exampleGB05.out
index 964dd4c48ce..286075bef2d 100644
--- a/examples/extended/biasing/GB05/exampleGB05.out
+++ b/examples/extended/biasing/GB05/exampleGB05.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -43,12 +39,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -77,371 +71,371 @@ End of Run User Vis Actions: none
Some /vis commands (optionally) take a string to specify colour.
"/vis/list" to see available colours.
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -492,6 +486,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -597,6 +592,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -733,6 +729,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -887,2568 +884,1100 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
neutron, kinetic energy (MeV) = 98.3886, position (cm) = (155.839,92.5432,200), weight = 0.00012207
neutron, kinetic energy (MeV) = 98.3886, position (cm) = (155.839,92.5432,200), weight = 0.00012207
neutron, kinetic energy (MeV) = 98.3886, position (cm) = (155.839,92.5432,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 2.1238, position (cm) = (2.54513,-19.058,200), weight = 0.0078125
- neutron, kinetic energy (MeV) = 1.13035e-07, position (cm) = (-13.9326,-15.3107,200), weight = 0.0078125
- gamma, kinetic energy (MeV) = 1.20605, position (cm) = (7.01956,-28.5371,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 0.208546, position (cm) = (18.9184,-12.6112,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 50.3729, position (cm) = (2.39719,-17.0615,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 0.133282, position (cm) = (-10.5872,-24.063,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 0.202682, position (cm) = (-0.890068,-47.6536,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 57.0758, position (cm) = (5.36884,-32.6763,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 57.0758, position (cm) = (5.36884,-32.6763,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 87.5751, position (cm) = (3.04994,-32.6015,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 0.661189, position (cm) = (64.2142,39.9258,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.305795, position (cm) = (77.1795,43.6875,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 1.65193, position (cm) = (43.015,-5.75227,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 33.051, position (cm) = (66.2227,-9.24044,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 32.5177, position (cm) = (104.014,41.8089,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 8.4108, position (cm) = (84.8229,44.6392,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 9.5444e-07, position (cm) = (69.8589,-32.3522,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.0940594, position (cm) = (86.7401,-37.508,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.0868116, position (cm) = (116.415,-37.5562,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.124123, position (cm) = (126.008,-28.8529,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.440565, position (cm) = (138.136,-44.552,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 7.15201, position (cm) = (133.289,-51.5365,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 6.93475, position (cm) = (132.616,-51.0593,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 6.19085, position (cm) = (82.4015,-29.8682,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.481536, position (cm) = (127.94,-22.844,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.180548, position (cm) = (2.19996,-56.5996,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.352458, position (cm) = (8.72225,-47.6704,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.199778, position (cm) = (0.379437,-36.9748,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 3.10144, position (cm) = (-2.31286,-41.5151,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 3.10144, position (cm) = (-2.31286,-41.5151,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 1.90658e-05, position (cm) = (-14.4256,-5.24506,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 4.66913, position (cm) = (2.81923,-65.4146,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.360608, position (cm) = (5.85804,-49.9358,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 2.19846, position (cm) = (7.22868,-46.8742,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 4.68209, position (cm) = (8.94957,-22.0423,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 34.7591, position (cm) = (2.01054,2.38813,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 34.7591, position (cm) = (2.01054,2.38813,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 34.7591, position (cm) = (2.01054,2.38813,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 32.541, position (cm) = (-11.6547,-7.66051,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.0613586, position (cm) = (1.93083,-4.57176,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 2.36878, position (cm) = (-5.19855,-8.57431,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 4.17604, position (cm) = (-6.70054,-6.59019,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 25.5447, position (cm) = (-3.35884,-7.47337,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 33.826, position (cm) = (26.0489,-1.94937,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.811181, position (cm) = (26.4902,7.01006,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.513623, position (cm) = (37.4772,11.3224,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 33.8237, position (cm) = (22.1119,-3.26342,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.161283, position (cm) = (58.5796,-25.9004,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 1.97766, position (cm) = (54.3138,-21.8954,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 5.40001, position (cm) = (57.4188,-2.72573,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 12.4818, position (cm) = (79.4852,-2.8742,200), weight = 3.72529e-09
- neutron, kinetic energy (MeV) = 12.4818, position (cm) = (79.4852,-2.8742,200), weight = 3.72529e-09
- neutron, kinetic energy (MeV) = 12.4818, position (cm) = (79.4852,-2.8742,200), weight = 7.45058e-09
- gamma, kinetic energy (MeV) = 0.154305, position (cm) = (75.3615,-6.09947,200), weight = 1.49012e-08
- gamma, kinetic energy (MeV) = 1.36224, position (cm) = (73.2444,-1.30616,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 6.43247e-07, position (cm) = (92.5619,-2.95331,200), weight = 1.49012e-08
- gamma, kinetic energy (MeV) = 0.155643, position (cm) = (61.7216,-21.6319,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 0.78446, position (cm) = (67.6244,-5.29172,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.348312, position (cm) = (67.4696,5.59822,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 8.84223, position (cm) = (89.1852,-15.9412,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 2.48918, position (cm) = (27.6128,23.0827,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 5.45659, position (cm) = (69.5994,-11.6607,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 20.7946, position (cm) = (70.2351,-13.9648,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 4.2257, position (cm) = (60.7493,-13.8405,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.149878, position (cm) = (77.3817,-12.123,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 1.91581, position (cm) = (62.2619,-2.00424,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 1.61936, position (cm) = (33.9644,-37.2332,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 3.96562e-09, position (cm) = (15.7162,-13.5816,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.614093, position (cm) = (-3.70376,-1.80985,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 5.63706e-05, position (cm) = (9.08153,3.03343,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.250551, position (cm) = (22.9061,0.70133,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 11.339, position (cm) = (31.9895,-15.7467,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 11.339, position (cm) = (31.9895,-15.7467,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 32.9033, position (cm) = (-15.4558,-32.8087,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.160645, position (cm) = (-1.40256,-36.1095,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.702768, position (cm) = (-12.351,-30.9103,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.984977, position (cm) = (-12.0339,-37.2568,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 1.75455, position (cm) = (-14.3527,-29.8759,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.510999, position (cm) = (-15.4964,-22.7286,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.205504, position (cm) = (-10.8211,-28.7624,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 34.4413, position (cm) = (10.8449,-11.105,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 0.959767, position (cm) = (9.33031,-15.577,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.327625, position (cm) = (-22.6388,-49.0418,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 1.00402e-06, position (cm) = (5.1125,-2.23064,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.189633, position (cm) = (27.0044,-47.7095,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.633573, position (cm) = (35.8611,-49.1575,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 10.0843, position (cm) = (14.6007,-38.7916,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 10.0843, position (cm) = (14.6007,-38.7916,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.106342, position (cm) = (13.785,-37.94,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 8.00398, position (cm) = (15.5156,-39.5572,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 10.0843, position (cm) = (14.6007,-38.7916,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 10.0843, position (cm) = (14.6007,-38.7916,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.0708882, position (cm) = (2.42974,-26.0014,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 14.9936, position (cm) = (29.2466,2.70445,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.0511518, position (cm) = (30.4634,3.41506,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.260722, position (cm) = (26.611,3.20815,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 14.9936, position (cm) = (29.2466,2.70445,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 14.6064, position (cm) = (28.1087,2.89234,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 0.198625, position (cm) = (54.927,8.31512,200), weight = 0.0078125
- gamma, kinetic energy (MeV) = 0.0929594, position (cm) = (54.7969,2.75356,200), weight = 0.0078125
- neutron, kinetic energy (MeV) = 0.000350928, position (cm) = (49.3572,-5.86106,200), weight = 0.00390625
- gamma, kinetic energy (MeV) = 0.126415, position (cm) = (63.7709,10.3669,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 50.2843, position (cm) = (62.3454,4.07916,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 50.2843, position (cm) = (62.3454,4.07916,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 4.55915, position (cm) = (14.4697,3.75113,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 83.1911, position (cm) = (-58.2551,-11.6515,200), weight = 0.015625
- neutron, kinetic energy (MeV) = 83.1911, position (cm) = (-58.2551,-11.6515,200), weight = 0.015625
- gamma, kinetic energy (MeV) = 7.44798, position (cm) = (-67.9367,-52.8701,200), weight = 0.0078125
- neutron, kinetic energy (MeV) = 57.642, position (cm) = (-69.2733,-75.7974,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 2.07497, position (cm) = (-72.4941,-92.9491,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.0690822, position (cm) = (-60.2791,-94.5272,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 1.33968, position (cm) = (-57.9068,-95.2975,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 0.275369, position (cm) = (-68.4119,-81.747,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.913093, position (cm) = (-70.7462,-76.8995,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 58.6648, position (cm) = (-78.1166,-102.363,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 2.59592, position (cm) = (-48.4433,-7.15213,200), weight = 0.0078125
- gamma, kinetic energy (MeV) = 0.307916, position (cm) = (-63.8381,-1.83667,200), weight = 0.0078125
- gamma, kinetic energy (MeV) = 0.669712, position (cm) = (-49.4837,-18.4888,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 0.14235, position (cm) = (-70.4162,-16.8083,200), weight = 0.00390625
- gamma, kinetic energy (MeV) = 0.821759, position (cm) = (-64.7056,-20.4364,200), weight = 0.00390625
- gamma, kinetic energy (MeV) = 3.74593, position (cm) = (-61.5831,-27.89,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 54.1257, position (cm) = (-45.7927,-22.7029,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 83.2026, position (cm) = (-56.2491,-10.4207,200), weight = 0.0078125
- neutron, kinetic energy (MeV) = 2.4086, position (cm) = (0.370884,7.69992,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.209922, position (cm) = (17.9116,10.0915,200), weight = 0.00390625
- gamma, kinetic energy (MeV) = 2.53209, position (cm) = (-6.57877,23.5537,200), weight = 0.0078125
- gamma, kinetic energy (MeV) = 3.8274, position (cm) = (20.7476,-0.278901,200), weight = 0.0078125
- gamma, kinetic energy (MeV) = 0.147132, position (cm) = (9.10615,-86.0505,200), weight = 0.0625
- gamma, kinetic energy (MeV) = 2.59879, position (cm) = (15.7419,-87.632,200), weight = 0.0625
- neutron, kinetic energy (MeV) = 25.7355, position (cm) = (19.3203,-90.2719,200), weight = 0.03125
- neutron, kinetic energy (MeV) = 3.53664, position (cm) = (-46.0393,-17.7155,200), weight = 0.015625
- gamma, kinetic energy (MeV) = 0.400417, position (cm) = (-25.6058,-9.93993,200), weight = 0.0078125
- gamma, kinetic energy (MeV) = 1.02608, position (cm) = (-13.4659,-1.29333,200), weight = 0.0078125
- gamma, kinetic energy (MeV) = 0.346457, position (cm) = (-55.092,-4.3354,200), weight = 0.03125
- gamma, kinetic energy (MeV) = 0.122486, position (cm) = (-83.8938,18.9546,200), weight = 0.015625
- gamma, kinetic energy (MeV) = 0.0592546, position (cm) = (-75.1842,12.5085,200), weight = 0.015625
- neutron, kinetic energy (MeV) = 43.2981, position (cm) = (-83.7084,12.1009,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 0.080608, position (cm) = (-87.839,4.20379,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 0.666192, position (cm) = (-87.1616,8.18535,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 4.08421, position (cm) = (-87.5096,6.00708,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 0.357045, position (cm) = (-72.0724,19.7222,200), weight = 0.015625
- neutron, kinetic energy (MeV) = 14.4852, position (cm) = (-10.1874,12.6764,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 4.43565, position (cm) = (-8.08408,8.7888,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.510999, position (cm) = (-19.7638,5.87402,200), weight = 3.05176e-05
- e-, kinetic energy (MeV) = 1.3937, position (cm) = (-18.4059,4.51622,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 14.6825, position (cm) = (-13.7477,12.6063,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 0.242545, position (cm) = (-21.4538,5.62875,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.551095, position (cm) = (-25.9237,-52.0305,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.339369, position (cm) = (-89.5364,-71.186,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 17.6181, position (cm) = (-92.7395,-71.4358,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.223935, position (cm) = (-85.0382,-46.7847,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 16.3977, position (cm) = (-78.1969,-74.4958,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 2.03938, position (cm) = (-71.5962,-72.1023,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.0956603, position (cm) = (-82.892,-75.3865,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.300596, position (cm) = (-71.3771,-67.4372,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.0906584, position (cm) = (-79.4686,-81.249,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 0.185494, position (cm) = (-69.9333,-61.907,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 0.112095, position (cm) = (-84.2634,-79.5698,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 1.505, position (cm) = (-76.8865,-78.3656,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 2.06652, position (cm) = (-80.4328,-74.2352,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.463349, position (cm) = (-115.168,-76.5043,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.345279, position (cm) = (-82.7212,-48.1267,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 30.4926, position (cm) = (-87.9924,-56.5246,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.13228, position (cm) = (-51.038,-55.3361,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 3.19001, position (cm) = (-49.1222,-55.5873,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 5.17986, position (cm) = (-51.1167,-56.0991,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 65.4164, position (cm) = (-52.0526,-52.9335,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 63.2275, position (cm) = (-41.7751,-54.0688,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 63.0789, position (cm) = (-41.823,-54.1701,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 65.6012, position (cm) = (-51.0669,-58.3143,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 65.0679, position (cm) = (-52.5037,-55.365,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 4.12555e-07, position (cm) = (-198.287,12.3238,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 42.2993, position (cm) = (-215.872,-2.14784,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 3.29068, position (cm) = (-215.312,18.5251,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.0596908, position (cm) = (-213.085,11.6136,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.0993366, position (cm) = (-190.179,1.33971,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 6.58349, position (cm) = (-152.491,-13.4492,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 3.7085e-05, position (cm) = (-235.051,8.51326,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 39.7083, position (cm) = (-317.739,-39.6786,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.538371, position (cm) = (-311.407,-44.269,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 5.47261, position (cm) = (-303.3,-36.0994,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 5.98941, position (cm) = (-281.576,-56.3679,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.0255502, position (cm) = (-190.235,36.5977,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 1.90205, position (cm) = (-208.538,10.6434,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.18491, position (cm) = (-228.418,25.6912,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 0.449504, position (cm) = (-95.9387,-7.5471,200), weight = 3.05176e-05
- e-, kinetic energy (MeV) = 6.01416, position (cm) = (-124.923,43.8901,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.0592122, position (cm) = (-124.925,43.9013,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 2.09465, position (cm) = (-82.106,-36.0538,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 2.70209, position (cm) = (-89.5431,-44.1462,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 44.7382, position (cm) = (-115.637,-36.8327,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 44.4431, position (cm) = (-114.412,-39.9996,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 44.5389, position (cm) = (-113.022,-31.8685,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 2.18428, position (cm) = (-113.468,-24.6802,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.667331, position (cm) = (-25.5616,-20.4827,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 1.50766, position (cm) = (-50.5605,12.5219,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.119864, position (cm) = (-47.315,6.16718,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 5.25541, position (cm) = (-56.4935,8.5022,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 9.68653, position (cm) = (-59.7413,3.42271,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 9.68653, position (cm) = (-59.7413,3.42271,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.159983, position (cm) = (-70.3344,14.9038,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 58.4877, position (cm) = (-55.2146,14.1584,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 3.20466, position (cm) = (-33.4618,22.3383,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 37.3517, position (cm) = (-24.4389,-2.39859,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.151443, position (cm) = (-28.1415,0.627296,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.138711, position (cm) = (-35.2741,-6.99312,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 4.2523e-05, position (cm) = (-45.9542,-4.65217,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 20.5551, position (cm) = (-50.7928,-28.6315,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.10411, position (cm) = (-41.5848,-30.1422,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 5.6637e-05, position (cm) = (-46.6902,-38.8867,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.3698, position (cm) = (-46.309,3.79956,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.210363, position (cm) = (-50.7416,-23.4644,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 1.35652, position (cm) = (-50.0733,-25.7106,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 20.5551, position (cm) = (-50.7928,-28.6315,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.784357, position (cm) = (-46.9682,-31.5494,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.246343, position (cm) = (-40.412,26.7781,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.563414, position (cm) = (-48.8801,-32.1026,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 1.37977, position (cm) = (-47.1216,-30.6369,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 5.85373, position (cm) = (-62.6077,-42.468,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.28839, position (cm) = (-50.8981,-19.5244,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.399589, position (cm) = (29.8043,-13.2686,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 68.1265, position (cm) = (24.2496,-10.3741,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 68.1753, position (cm) = (24.6314,-10.1987,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 68.0975, position (cm) = (24.189,-8.95489,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 6.68949, position (cm) = (21.9522,-21.6467,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 67.5101, position (cm) = (11.2265,2.09874,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 10.5504, position (cm) = (16.1779,-3.74407,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 40.6471, position (cm) = (13.6067,-1.46801,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 40.6471, position (cm) = (13.6067,-1.46801,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 5.20652, position (cm) = (45.2479,-29.1068,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 0.264086, position (cm) = (-2.82873,-4.45296,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.318908, position (cm) = (-27.986,-42.3389,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.148956, position (cm) = (-16.7793,-46.8766,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 0.729153, position (cm) = (-20.6433,-41.1359,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 3.93353, position (cm) = (-22.6833,-28.1819,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 1.89381, position (cm) = (-43.3828,-49.9839,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 69.1592, position (cm) = (-43.5662,-25.3885,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.395183, position (cm) = (-14.9353,-29.6432,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 47.9686, position (cm) = (-39.3273,-26.6585,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 92.6357, position (cm) = (-34.1421,-47.0108,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.289058, position (cm) = (-38.6332,-62.528,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 2.49928, position (cm) = (-39.9234,-60.0088,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 7.26016, position (cm) = (-28.4972,-54.8976,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 2.53373, position (cm) = (-28.1775,-58.6428,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.201988, position (cm) = (-43.0346,-44.0394,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.512471, position (cm) = (-66.9562,-55.7048,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 5.58302, position (cm) = (-101.11,-13.3599,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.2346, position (cm) = (11.3086,-86.7777,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 32.4798, position (cm) = (21.8736,-99.9042,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.328862, position (cm) = (-21.3415,-24.0098,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.210573, position (cm) = (-22.2269,-3.38855,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.510999, position (cm) = (-22.1295,-22.7357,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.282531, position (cm) = (19.2394,-10.842,200), weight = 0.000488281
- e-, kinetic energy (MeV) = 2.80734, position (cm) = (18.6164,-11.2153,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 1.63676, position (cm) = (-35.1356,-28.4997,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.148916, position (cm) = (40.9447,5.64986,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.247904, position (cm) = (25.8314,3.44635,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 67.5388, position (cm) = (29.1126,5.88879,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 99.4687, position (cm) = (28.2171,9.89364,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 99.6234, position (cm) = (28.4242,8.82317,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.519033, position (cm) = (-1.86653,-24.3231,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 5.10671, position (cm) = (11.338,0.237496,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 11.0966, position (cm) = (10.8256,-0.0708517,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.215997, position (cm) = (18.6609,-13.7502,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 3.63514, position (cm) = (-16.1388,-33.864,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 42.8083, position (cm) = (29.0883,2.24076,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 42.804, position (cm) = (29.4718,1.82975,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 42.699, position (cm) = (26.3374,4.51842,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 41.8351, position (cm) = (27.2778,4.78229,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 21.1756, position (cm) = (39.8959,-4.48452,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 54.7781, position (cm) = (80.9659,12.1944,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 54.3889, position (cm) = (78.6717,10.6463,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 50.8792, position (cm) = (35.0056,32.7041,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 53.321, position (cm) = (51.8788,31.3711,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.264866, position (cm) = (46.674,35.8527,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 3.20263, position (cm) = (48.66,26.1449,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.0778802, position (cm) = (68.3325,50.7,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.07253, position (cm) = (84.7835,-3.16794,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 0.80246, position (cm) = (74.6683,18.3598,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 99.7601, position (cm) = (33.2712,12.0174,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 98.6267, position (cm) = (36.8643,10.6623,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 98.7555, position (cm) = (37.5041,10.8916,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 98.7555, position (cm) = (37.5041,10.8916,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 99.7601, position (cm) = (33.2712,12.0174,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 99.7601, position (cm) = (33.2712,12.0174,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 0.21219, position (cm) = (50.7307,14.6306,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 11.9467, position (cm) = (41.6625,15.4438,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 99.7601, position (cm) = (33.2712,12.0174,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 98.3854, position (cm) = (49.5629,21.9268,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.448438, position (cm) = (3.15367,-76.1891,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 12.9604, position (cm) = (14.1346,5.9762,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 99.1207, position (cm) = (25.7418,17.0368,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 99.4094, position (cm) = (25.7875,16.6266,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 23.7237, position (cm) = (8.5287,16.087,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 38.5015, position (cm) = (-9.53556,18.8651,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 4.1006e-05, position (cm) = (-10.1335,5.21125,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 9.30816, position (cm) = (9.01412,4.01664,200), weight = 0.00390625
- gamma, kinetic energy (MeV) = 0.12722, position (cm) = (-24.048,-28.3102,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 49.7407, position (cm) = (-24.7433,-22.6669,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 0.0861054, position (cm) = (-6.14185,-0.660079,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 0.777742, position (cm) = (-15.0976,-14.6645,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 2.2552, position (cm) = (-9.09364,-22.1431,200), weight = 0.00195312
- e-, kinetic energy (MeV) = 0.348636, position (cm) = (-8.81171,-22.4502,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 5.45853, position (cm) = (3.46347,-12.8267,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 57.1716, position (cm) = (4.3578,-7.71027,200), weight = 0.00390625
- gamma, kinetic energy (MeV) = 0.765638, position (cm) = (46.7139,-44.8945,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 6.54622e-07, position (cm) = (-8.45038,-50.3036,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 1.33813, position (cm) = (-12.7025,-89.9486,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 1.29268, position (cm) = (-2.93161,-75.3297,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 13.7876, position (cm) = (0.0311395,-68.1976,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.079307, position (cm) = (-9.74407,-70.3682,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.171665, position (cm) = (-9.9266,-65.8986,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 1.37789, position (cm) = (1.37427,-66.0761,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 6.97448, position (cm) = (-18.9017,-65.9511,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.922186, position (cm) = (-26.3296,-55.6654,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 1.65016e-05, position (cm) = (-23.8006,-68.8307,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.644513, position (cm) = (3.88797,-58.1349,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 5.90021e-06, position (cm) = (15.1818,-63.8099,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 0.814941, position (cm) = (11.6517,-92.3269,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.0921962, position (cm) = (8.79954,-67.4778,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 1.04522, position (cm) = (32.4186,-50.6122,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 2.96839, position (cm) = (17.0797,-62.8397,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 5.28431, position (cm) = (5.14717,-69.7545,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 4.76322, position (cm) = (-81.5219,-33.9715,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 2.22344, position (cm) = (16.8332,41.6402,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 2.34977, position (cm) = (17.1149,41.4126,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 6.08485, position (cm) = (19.5038,40.2035,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.357028, position (cm) = (7.64039,36.3028,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 19.6851, position (cm) = (9.58229,42.9703,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 4.54981, position (cm) = (4.45298,31.7732,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.140136, position (cm) = (-0.457907,40.2844,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 0.0387909, position (cm) = (-9.84058,42.0546,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 8.6504, position (cm) = (27.741,35.0479,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.0861553, position (cm) = (-10.6111,33.4708,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 1.58113, position (cm) = (28.9658,26.3051,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.17073, position (cm) = (-7.82727,21.9569,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 57.1919, position (cm) = (-25.1217,10.4243,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 56.8928, position (cm) = (-25.3757,10.3434,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 3.94787, position (cm) = (-8.58571,-40.5085,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 48.7016, position (cm) = (-10.8818,-31.3058,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.265875, position (cm) = (-2.71088,-13.9111,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 10.0188, position (cm) = (-5.88706,-15.0234,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 8.70584, position (cm) = (9.83784,-24.0745,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 1.74631, position (cm) = (6.5685,-19.8048,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 5.99688, position (cm) = (20.2806,-15.0987,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.410059, position (cm) = (-2.61615,-9.53346,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 4.88608, position (cm) = (-3.24246,-8.87663,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.114744, position (cm) = (25.976,-18.5575,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.393161, position (cm) = (25.3139,-17.1496,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.914863, position (cm) = (25.6693,-15.9917,200), weight = 9.53674e-07
- e-, kinetic energy (MeV) = 1.44465, position (cm) = (25.9582,-15.3121,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 0.165975, position (cm) = (23.7754,-14.1855,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.377858, position (cm) = (28.4955,-15.0235,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 42.3866, position (cm) = (27.0248,-16.5572,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 43.7141, position (cm) = (-2.90861,-11.5387,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 42.8853, position (cm) = (-3.49795,-11.6998,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 9.64254e-06, position (cm) = (-37.7429,-20.7266,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 51.3518, position (cm) = (-32.4521,-66.7443,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 55.9902, position (cm) = (-42.0607,-64.2551,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 2.91686e-07, position (cm) = (-36.3918,-49.6863,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.18132, position (cm) = (-39.3204,-23.5245,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.338939, position (cm) = (-64.8875,-27.2259,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 54.5309, position (cm) = (-24.0003,-16.2504,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 5.5774, position (cm) = (-19.0643,-11.1157,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 2.693, position (cm) = (-56.448,-23.3173,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 2.693, position (cm) = (-56.448,-23.3173,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 4.22143, position (cm) = (-53.6024,-35.7479,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.117631, position (cm) = (-46.9291,-23.6915,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 0.734195, position (cm) = (-45.2274,-14.7613,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 13.1706, position (cm) = (-48.2967,-11.5687,200), weight = 1.49012e-08
- gamma, kinetic energy (MeV) = 2.22306, position (cm) = (-53.8256,-32.0004,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 4.23105, position (cm) = (-51.5576,-23.9563,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 2.22611, position (cm) = (-56.4473,-20.1447,200), weight = 1.19209e-07
- e-, kinetic energy (MeV) = 2.42274, position (cm) = (-56.2601,-20.7144,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.752185, position (cm) = (-53.4633,-67.029,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.765217, position (cm) = (-43.1539,-64.0614,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.0968035, position (cm) = (-33.4747,-0.308533,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 1.4015, position (cm) = (-53.7703,-59.7508,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 0.150934, position (cm) = (-45.5888,-48.2055,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 3.92866, position (cm) = (-55.6126,-57.9032,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 22.1597, position (cm) = (-55.1659,-63.1182,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 22.1597, position (cm) = (-55.1659,-63.1182,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 22.1597, position (cm) = (-55.1659,-63.1182,200), weight = 1.49012e-08
- gamma, kinetic energy (MeV) = 0.0545892, position (cm) = (-54.4115,-56.2468,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 2.97299, position (cm) = (-52.5021,-65.7283,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 2.97299, position (cm) = (-52.5021,-65.7283,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 1.70762, position (cm) = (-53.4674,-50.4628,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.220451, position (cm) = (-31.1179,-60.1715,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.602523, position (cm) = (-47.4632,-55.3912,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 5.67571, position (cm) = (-42.1083,-55.2696,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 4.98885, position (cm) = (-50.8443,-54.6015,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.0573132, position (cm) = (-52.7276,-54.3159,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.171517, position (cm) = (-51.8187,-38.1765,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.739194, position (cm) = (-40.0099,-57.0406,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 0.219413, position (cm) = (-36.4088,-54.1916,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 1.43729, position (cm) = (-104.064,89.4739,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 2.55823, position (cm) = (-107.888,37.4013,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 5.74631, position (cm) = (63.2295,-0.744649,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 4.35583, position (cm) = (45.6089,1.90843,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.254424, position (cm) = (-2.58102,-10.5746,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.111517, position (cm) = (9.28843,-7.11798,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 0.467767, position (cm) = (5.66058,0.797142,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.510999, position (cm) = (3.32612,-2.46482,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 2.25617, position (cm) = (-8.15997,-7.33367,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 4.62759, position (cm) = (-5.39566,-9.42125,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 3.01294, position (cm) = (-22.0578,1.29316,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 0.055873, position (cm) = (-4.88938,4.40635,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.0033703, position (cm) = (-1.37468,36.8741,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 4.39434, position (cm) = (-16.9357,-14.6644,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 14.1504, position (cm) = (3.61436,15.3221,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 14.1504, position (cm) = (3.61436,15.3221,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.706534, position (cm) = (6.59454,5.50893,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.0817767, position (cm) = (-43.9451,17.7661,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 1.26183, position (cm) = (11.8662,2.7636,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 2.78195, position (cm) = (6.42894,7.34154,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.517767, position (cm) = (-35.1141,9.88688,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.573671, position (cm) = (3.58434,137.437,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 5.08205, position (cm) = (4.25933,130.48,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 5.08205, position (cm) = (4.25933,130.48,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 97.8457, position (cm) = (-32.6521,160.211,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 6.95864, position (cm) = (-25.8973,171.601,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 15.8421, position (cm) = (-29.7206,174.927,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 82.0436, position (cm) = (-29.0417,178.48,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 2.37385, position (cm) = (17.7025,115.182,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 17.9196, position (cm) = (-198.557,12.4092,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 0.00245427, position (cm) = (-205.792,17.9215,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 7.13362e-06, position (cm) = (-196.556,5.10871,200), weight = 1.49012e-08
- gamma, kinetic energy (MeV) = 0.089303, position (cm) = (-192.802,-0.625904,200), weight = 7.45058e-09
- gamma, kinetic energy (MeV) = 0.208956, position (cm) = (-209.668,11.0526,200), weight = 3.72529e-09
- neutron, kinetic energy (MeV) = 0.114084, position (cm) = (-206.119,-7.64277,200), weight = 3.72529e-09
- gamma, kinetic energy (MeV) = 0.250543, position (cm) = (-208.094,8.65601,200), weight = 3.72529e-09
- gamma, kinetic energy (MeV) = 7.51263, position (cm) = (-208.785,12.5889,200), weight = 3.72529e-09
- neutron, kinetic energy (MeV) = 10.9677, position (cm) = (-211.162,9.68988,200), weight = 3.72529e-09
- neutron, kinetic energy (MeV) = 1.49979, position (cm) = (-210.879,-22.7079,200), weight = 7.45058e-09
- neutron, kinetic energy (MeV) = 1.6027, position (cm) = (-204.343,2.48762,200), weight = 7.45058e-09
- neutron, kinetic energy (MeV) = 4.00797e-05, position (cm) = (-200.528,-14.8581,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 0.535968, position (cm) = (-171.748,-33.6337,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 0.0685326, position (cm) = (-196.224,24.1007,200), weight = 1.49012e-08
- gamma, kinetic energy (MeV) = 6.97838, position (cm) = (-195.965,22.873,200), weight = 7.45058e-09
- neutron, kinetic energy (MeV) = 8.22062, position (cm) = (-201.235,26.6173,200), weight = 7.45058e-09
- neutron, kinetic energy (MeV) = 2.14652, position (cm) = (-184.08,7.7755,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 2.14652, position (cm) = (-184.08,7.7755,200), weight = 1.49012e-08
- gamma, kinetic energy (MeV) = 2.88867, position (cm) = (-196.96,51.36,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 1.17867e-05, position (cm) = (-177.768,-21.3362,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 17.4676, position (cm) = (-185.795,-3.7748,200), weight = 7.45058e-09
- gamma, kinetic energy (MeV) = 6.92194, position (cm) = (-184.762,4.72067,200), weight = 7.45058e-09
- neutron, kinetic energy (MeV) = 17.7789, position (cm) = (-192.587,-6.52232,200), weight = 7.45058e-09
- gamma, kinetic energy (MeV) = 0.220924, position (cm) = (-197.92,-15.8976,200), weight = 7.45058e-09
- neutron, kinetic energy (MeV) = 1.48785, position (cm) = (-195.149,-1.49164,200), weight = 7.45058e-09
- gamma, kinetic energy (MeV) = 0.331954, position (cm) = (-188.754,-2.90206,200), weight = 1.49012e-08
- gamma, kinetic energy (MeV) = 0.181609, position (cm) = (-189.428,-2.74653,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 1.55504, position (cm) = (-185.016,-31.8073,200), weight = 1.49012e-08
- gamma, kinetic energy (MeV) = 1.0089, position (cm) = (-212.84,-26.7787,200), weight = 1.49012e-08
- gamma, kinetic energy (MeV) = 0.10959, position (cm) = (-150.959,-20.5451,200), weight = 1.86265e-09
- neutron, kinetic energy (MeV) = 1.70377, position (cm) = (-151.576,-21.141,200), weight = 1.86265e-09
- gamma, kinetic energy (MeV) = 4.36852, position (cm) = (-152.084,-20.7161,200), weight = 1.86265e-09
- gamma, kinetic energy (MeV) = 0.0946329, position (cm) = (-137.026,-4.2044,200), weight = 1.86265e-09
- gamma, kinetic energy (MeV) = 4.54362, position (cm) = (-155.098,-21.2819,200), weight = 1.86265e-09
- neutron, kinetic energy (MeV) = 2.62494, position (cm) = (-183.184,-22.8986,200), weight = 1.86265e-09
- gamma, kinetic energy (MeV) = 0.161529, position (cm) = (-127.691,-28.4985,200), weight = 4.65661e-10
- neutron, kinetic energy (MeV) = 0.865251, position (cm) = (-127.738,-29.7184,200), weight = 4.65661e-10
- gamma, kinetic energy (MeV) = 0.592166, position (cm) = (-128.172,-28.5735,200), weight = 2.32831e-10
- gamma, kinetic energy (MeV) = 3.67518, position (cm) = (-125.077,-26.8811,200), weight = 2.32831e-10
- neutron, kinetic energy (MeV) = 4.74052, position (cm) = (-130.269,-28.2988,200), weight = 2.32831e-10
- neutron, kinetic energy (MeV) = 0.0504821, position (cm) = (-151.187,-32.2775,200), weight = 9.31323e-10
- neutron, kinetic energy (MeV) = 6.95965, position (cm) = (-127.416,-29.5337,200), weight = 9.31323e-10
- neutron, kinetic energy (MeV) = 1.63359, position (cm) = (-195.956,-0.158824,200), weight = 1.86265e-09
- gamma, kinetic energy (MeV) = 2.42949, position (cm) = (-201.115,-8.04853,200), weight = 4.65661e-10
- gamma, kinetic energy (MeV) = 4.93982, position (cm) = (-212.618,-5.51975,200), weight = 1.16415e-10
- neutron, kinetic energy (MeV) = 3.31409, position (cm) = (-217.712,-6.91102,200), weight = 1.16415e-10
- neutron, kinetic energy (MeV) = 8.30613, position (cm) = (-202.2,-49.6374,200), weight = 2.91038e-11
- neutron, kinetic energy (MeV) = 8.30613, position (cm) = (-202.2,-49.6374,200), weight = 2.91038e-11
- neutron, kinetic energy (MeV) = 0.588057, position (cm) = (-205.536,-22.9332,200), weight = 1.81899e-12
- gamma, kinetic energy (MeV) = 0.539635, position (cm) = (-211.109,-41.193,200), weight = 1.81899e-12
- gamma, kinetic energy (MeV) = 3.61089, position (cm) = (-209.244,-33.8118,200), weight = 1.81899e-12
- gamma, kinetic energy (MeV) = 0.327197, position (cm) = (-199.459,-32.4379,200), weight = 1.81899e-12
- neutron, kinetic energy (MeV) = 0.670499, position (cm) = (-179.371,15.3175,200), weight = 1.81899e-12
- gamma, kinetic energy (MeV) = 0.807073, position (cm) = (-202.19,-49.256,200), weight = 4.54747e-13
- neutron, kinetic energy (MeV) = 5.62758, position (cm) = (-202.613,-48.0461,200), weight = 4.54747e-13
- neutron, kinetic energy (MeV) = 8.30613, position (cm) = (-202.2,-49.6374,200), weight = 4.54747e-13
- gamma, kinetic energy (MeV) = 3.4192, position (cm) = (-206.13,-53.3307,200), weight = 9.09495e-13
- gamma, kinetic energy (MeV) = 0.894598, position (cm) = (-195.861,-46.5543,200), weight = 1.81899e-12
- neutron, kinetic energy (MeV) = 0.24771, position (cm) = (-204.846,-40.8553,200), weight = 3.63798e-12
- neutron, kinetic energy (MeV) = 7.52056, position (cm) = (-205.556,-43.9269,200), weight = 3.63798e-12
- gamma, kinetic energy (MeV) = 0.15389, position (cm) = (-207.248,-6.3026,200), weight = 9.31323e-10
- neutron, kinetic energy (MeV) = 5.58921, position (cm) = (-203.795,-5.36152,200), weight = 9.31323e-10
- gamma, kinetic energy (MeV) = 2.90949, position (cm) = (-211.314,-0.530773,200), weight = 9.31323e-10
- gamma, kinetic energy (MeV) = 0.2041, position (cm) = (-209.03,-0.218023,200), weight = 9.31323e-10
- gamma, kinetic energy (MeV) = 0.459573, position (cm) = (-206.716,0.825708,200), weight = 9.31323e-10
- neutron, kinetic energy (MeV) = 1.1697, position (cm) = (-209.14,-14.1483,200), weight = 9.31323e-10
- gamma, kinetic energy (MeV) = 5.1571, position (cm) = (-204.239,-20.2118,200), weight = 9.31323e-10
- gamma, kinetic energy (MeV) = 0.404067, position (cm) = (-206.024,-15.6299,200), weight = 9.31323e-10
- neutron, kinetic energy (MeV) = 1.64951, position (cm) = (-208.292,-13.8586,200), weight = 9.31323e-10
- gamma, kinetic energy (MeV) = 0.60546, position (cm) = (-245.942,-22.3483,200), weight = 9.31323e-10
- neutron, kinetic energy (MeV) = 1.83648, position (cm) = (-196.562,-20.8044,200), weight = 7.45058e-09
- gamma, kinetic energy (MeV) = 0.212894, position (cm) = (-191.446,-0.629188,200), weight = 3.72529e-09
- gamma, kinetic energy (MeV) = 0.744209, position (cm) = (-201.213,-12.7366,200), weight = 3.72529e-09
- neutron, kinetic energy (MeV) = 1.07246e-06, position (cm) = (-190.635,5.867,200), weight = 1.86265e-09
- neutron, kinetic energy (MeV) = 0.828058, position (cm) = (-194.221,-11.1376,200), weight = 7.45058e-09
- gamma, kinetic energy (MeV) = 0.23202, position (cm) = (-203.382,1.86983,200), weight = 1.49012e-08
- gamma, kinetic energy (MeV) = 0.293506, position (cm) = (-191.453,-23.4933,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 4.55888, position (cm) = (-206.171,-8.58868,200), weight = 7.45058e-09
- neutron, kinetic energy (MeV) = 4.55888, position (cm) = (-206.171,-8.58868,200), weight = 7.45058e-09
- neutron, kinetic energy (MeV) = 16.9196, position (cm) = (-205.079,-7.2784,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 3.23166, position (cm) = (-163.958,-42.4248,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.0932373, position (cm) = (-164.911,-40.3294,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 1.50791, position (cm) = (-167.631,-38.9354,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.0705357, position (cm) = (-179.289,-49.4651,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 14.5778, position (cm) = (-138.512,-39.2061,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 6.75189, position (cm) = (-150.264,-15.8267,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.11506, position (cm) = (23.6123,135.974,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 0.033848, position (cm) = (32.9235,146.934,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.0927146, position (cm) = (-0.212712,97.2431,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 0.356756, position (cm) = (10.4528,127.287,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 14.2479, position (cm) = (4.96875,137.742,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 14.2479, position (cm) = (4.96875,137.742,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 10.4984, position (cm) = (4.96737,137.528,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 0.10037, position (cm) = (-8.75895,111.103,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 1.69007, position (cm) = (2.47697,114.267,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.100731, position (cm) = (-1.34069,113.696,200), weight = 2.38419e-07
- e-, kinetic energy (MeV) = 2.39921, position (cm) = (-179.435,30.278,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 3.1988, position (cm) = (-217.884,158.356,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.426165, position (cm) = (-171.78,127.648,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.503621, position (cm) = (-114.318,139.54,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 1.58889, position (cm) = (-96.9464,126.307,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.218245, position (cm) = (-97.4974,134.025,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.246701, position (cm) = (-105.947,116.606,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 1.58828, position (cm) = (-101.462,125.37,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 2.60249, position (cm) = (-102.055,126.393,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.221365, position (cm) = (-96.2993,162.238,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.500756, position (cm) = (-96.9122,132.436,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 1.10991e-07, position (cm) = (-82.3919,85.856,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 0.797709, position (cm) = (-73.5388,94.1335,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 5.75315, position (cm) = (-87.4783,119.462,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 0.0331182, position (cm) = (-88.9642,126.857,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 1.47983, position (cm) = (-90.0373,129.942,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 25.8215, position (cm) = (-171.431,128.029,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 25.8215, position (cm) = (-171.431,128.029,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.270575, position (cm) = (-144.012,167.45,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 0.770559, position (cm) = (-140.397,177.353,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 1.06551, position (cm) = (-181.349,171.623,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 6.254, position (cm) = (-183.192,172.791,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 8.4988, position (cm) = (-190.297,171.699,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 2.84694, position (cm) = (-185.285,167.846,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 3.1459, position (cm) = (-193.163,176.148,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 3.08848, position (cm) = (-194.349,174.613,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 0.105575, position (cm) = (-172.056,150.816,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 2.83461, position (cm) = (-184.564,154.721,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.220504, position (cm) = (-171.943,123.567,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 1.32679, position (cm) = (-171.956,124.466,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 1.11682, position (cm) = (-173.044,117.182,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 5.17778, position (cm) = (-171.862,124.713,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 5.17778, position (cm) = (-171.862,124.713,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 37.3841, position (cm) = (-158.9,108.141,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 1.09772, position (cm) = (-18.5214,197.204,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 0.133366, position (cm) = (-19.8641,191.819,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 3.81227, position (cm) = (-26.6014,176.96,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 83.0432, position (cm) = (-17.3556,216.201,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.137706, position (cm) = (-17.622,216.472,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.153165, position (cm) = (-32.0807,224.447,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.435944, position (cm) = (55.0162,148.534,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 64.5536, position (cm) = (-1.32841,192.764,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 0.748997, position (cm) = (-7.06507,135.345,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 28.7415, position (cm) = (45.8261,157.025,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 0.000477351, position (cm) = (38.1735,118.771,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.626395, position (cm) = (39.6,131.13,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.256347, position (cm) = (56.6934,115.979,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 1.653, position (cm) = (40.4061,131.154,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 2.06261, position (cm) = (50.1282,161.165,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 1.20416, position (cm) = (46.9189,145.564,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 7.83648e-05, position (cm) = (44.6508,158.976,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.997054, position (cm) = (47.5455,159.909,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.207624, position (cm) = (34.6697,152.32,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.136574, position (cm) = (46.3401,167.001,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.103643, position (cm) = (-16.4602,59.487,200), weight = 0.015625
- gamma, kinetic energy (MeV) = 5.68758, position (cm) = (-5.346,42.875,200), weight = 0.015625
- neutron, kinetic energy (MeV) = 0.00013141, position (cm) = (-67.8314,-12.5262,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 1.08135, position (cm) = (-66.8315,0.896827,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 6.58693, position (cm) = (-52.5289,-21.6814,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 4.28687, position (cm) = (-69.3052,-22.3506,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.336806, position (cm) = (-54.1191,20.5202,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 15.4932, position (cm) = (-71.5236,1.74288,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 28.4746, position (cm) = (-74.3261,-0.413864,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 28.4746, position (cm) = (-74.3261,-0.413864,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 28.921, position (cm) = (-70.781,1.52329,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 28.921, position (cm) = (-70.781,1.52329,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.338597, position (cm) = (-71.8709,0.932872,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 4.41586, position (cm) = (-67.403,2.14984,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 23.7911, position (cm) = (-72.2445,1.78002,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 28.2853, position (cm) = (-76.5357,4.94436,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 28.2853, position (cm) = (-76.5357,4.94436,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 28.2853, position (cm) = (-76.5357,4.94436,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 28.1475, position (cm) = (-76.7671,4.08146,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 28.3325, position (cm) = (-76.0831,6.35785,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 28.3325, position (cm) = (-76.0831,6.35785,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.512988, position (cm) = (-53.3293,-5.12609,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.286163, position (cm) = (-63.0954,8.90532,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 1.50631, position (cm) = (-57.8322,2.83634,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 26.2819, position (cm) = (-60.9218,24.9833,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.79457, position (cm) = (7.10486,0.0179056,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 30.8334, position (cm) = (12.5966,-4.36158,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 30.5262, position (cm) = (10.9075,-4.49778,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.0833432, position (cm) = (14.9557,-4.41328,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 15.8884, position (cm) = (12.3644,-3.35426,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 42.3861, position (cm) = (16.6811,2.45374,200), weight = 0.0078125
- neutron, kinetic energy (MeV) = 57.8646, position (cm) = (3.29801,11.2445,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 57.4967, position (cm) = (4.6289,11.6188,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.0720244, position (cm) = (2.06174,11.624,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 0.91581, position (cm) = (1.41397,13.9278,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 2.99353, position (cm) = (3.91264,10.2952,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 57.4604, position (cm) = (9.11288,12.0127,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 5.5188, position (cm) = (-4.62572,4.10714,200), weight = 0.0078125
- gamma, kinetic energy (MeV) = 0.970424, position (cm) = (-62.1688,30.6299,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 41.6056, position (cm) = (-61.4259,17.3869,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 41.6056, position (cm) = (-61.4259,17.3869,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 0.723891, position (cm) = (7.35777,-7.90069,200), weight = 0.00390625
- gamma, kinetic energy (MeV) = 0.119807, position (cm) = (-19.205,3.31972,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 24.7016, position (cm) = (-22.9882,-67.7949,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 0.680411, position (cm) = (-23.938,-66.5414,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 1.06999, position (cm) = (-24.0741,-66.387,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 3.46596, position (cm) = (-24.1306,-66.011,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 6.79352, position (cm) = (-23.6218,-65.9289,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 10.8288, position (cm) = (-35.206,-60.8362,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 4.95316, position (cm) = (-24.7383,-36.1084,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 1.31015, position (cm) = (-48.8591,-19.375,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 20.3159, position (cm) = (-38.5802,-12.4207,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 20.3159, position (cm) = (-38.5802,-12.4207,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 18.5935, position (cm) = (-26.2063,-19.6534,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 4.52636, position (cm) = (-26.6756,-18.8582,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 12.7753, position (cm) = (-27.7208,-19.2693,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 18.5935, position (cm) = (-26.2063,-19.6534,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.260078, position (cm) = (-33.9253,-19.679,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.0632454, position (cm) = (-27.0952,-27.4405,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 8.81932, position (cm) = (-34.14,-19.7591,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 38.8321, position (cm) = (43.1363,-6.08436,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.0511673, position (cm) = (56.4838,-4.81536,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 18.6005, position (cm) = (55.3059,-3.80952,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 37.9217, position (cm) = (55.6386,-4.39332,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 37.2153, position (cm) = (48.549,-11.1959,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 0.0445576, position (cm) = (-14.6104,117.879,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 2.88058, position (cm) = (-46.5945,95.5969,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.107485, position (cm) = (-60.4167,103.055,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.354523, position (cm) = (-82.794,125.899,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 1.23807e-06, position (cm) = (-72.8243,96.8416,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 0.290416, position (cm) = (-75.3343,82.1346,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 34.342, position (cm) = (-66.234,131.334,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.232372, position (cm) = (-81.3717,139.004,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.090842, position (cm) = (-87.2904,144.019,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 8.01886, position (cm) = (-89.3778,151.947,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 8.01886, position (cm) = (-89.3778,151.947,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.0798996, position (cm) = (-87.8326,144.999,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 7.56897, position (cm) = (-82.5002,159.121,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 7.21096, position (cm) = (-82.4135,157.824,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 8.67558, position (cm) = (-85.9464,146.527,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 1.47578, position (cm) = (-68.1966,99.3256,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.837314, position (cm) = (-67.4357,90.0499,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 0.00110452, position (cm) = (-60.9869,121.195,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 9.53049, position (cm) = (-66.4703,77.3187,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 0.573596, position (cm) = (-90.1207,101.786,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 9.64946, position (cm) = (-85.7446,113.827,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.560275, position (cm) = (-89.2051,93.369,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 2.696, position (cm) = (-89.4065,92.9797,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 32.3079, position (cm) = (-89.4523,93.0035,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 6.09486, position (cm) = (-91.4405,98.8441,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 6.09486, position (cm) = (-91.4405,98.8441,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 0.605625, position (cm) = (-129.203,65.1809,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.530328, position (cm) = (-103.69,92.4438,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.26901, position (cm) = (-101.345,83.1595,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 1.53433, position (cm) = (-101.362,100.541,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.586513, position (cm) = (-85.3318,83.0864,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 32.7913, position (cm) = (-73.43,102.84,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 42.5566, position (cm) = (-78.9316,103.041,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 28.546, position (cm) = (-85.9844,90.1607,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 37.1108, position (cm) = (-86.6241,131.777,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 14.8939, position (cm) = (-30.3196,99.1078,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 14.8939, position (cm) = (-30.3196,99.1078,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 2.92936e-05, position (cm) = (-26.7239,117.087,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 2.94503, position (cm) = (-8.95316,104.939,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.0114754, position (cm) = (2.102,95.9925,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.571561, position (cm) = (-36.6595,90.5288,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 2.10356, position (cm) = (66.0823,-35.0394,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 69.7124, position (cm) = (70.2267,-30.1036,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 1.54946, position (cm) = (49.2612,-19.3938,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.24516, position (cm) = (47.4363,-20.5831,200), weight = 0.00390625
- gamma, kinetic energy (MeV) = 0.303667, position (cm) = (45.8032,-27.4344,200), weight = 0.00390625
- gamma, kinetic energy (MeV) = 1.21662, position (cm) = (49.4532,-31.7839,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 0.00024878, position (cm) = (31.7047,-27.6726,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 39.7068, position (cm) = (85.1221,-29.6148,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 30.4094, position (cm) = (133.387,-85.3543,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 30.4094, position (cm) = (133.387,-85.3543,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 29.8722, position (cm) = (133.486,-85.144,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 4.20059, position (cm) = (73.7801,-106.624,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 4.20059, position (cm) = (73.7801,-106.624,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 1.77603, position (cm) = (113.36,-93.5063,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.316687, position (cm) = (104.144,-38.1467,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.832259, position (cm) = (193.917,-43.7285,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.630215, position (cm) = (196.516,-49.7485,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 0.730838, position (cm) = (193.145,-47.8887,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 1.81091, position (cm) = (188.348,-45.322,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.36207, position (cm) = (216.722,-26.3593,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 59.0574, position (cm) = (175.307,-39.9175,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 58.9718, position (cm) = (175.694,-39.916,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 1.32248, position (cm) = (173.615,-50.1245,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.0897419, position (cm) = (192.225,-49.933,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 1.04884e-05, position (cm) = (183.654,-45.7437,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 2.6774, position (cm) = (184.082,-48.9505,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.165626, position (cm) = (173.324,-80.8947,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 24.8057, position (cm) = (190.194,-42.0144,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 24.8057, position (cm) = (190.194,-42.0144,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 24.2026, position (cm) = (190.297,-42.1309,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 19.2666, position (cm) = (236.36,2.98335,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 2.59496, position (cm) = (240.957,-5.6286,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 4.66011, position (cm) = (235.107,3.10519,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 19.4385, position (cm) = (241.951,-4.46981,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 2.35697, position (cm) = (239.046,-5.4553,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 19.4385, position (cm) = (241.951,-4.46981,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 0.095301, position (cm) = (245.488,-3.57708,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 0.863403, position (cm) = (238.777,-1.95572,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 19.4385, position (cm) = (241.951,-4.46981,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 19.4385, position (cm) = (241.951,-4.46981,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 19.4385, position (cm) = (241.951,-4.46981,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 0.952153, position (cm) = (167.309,-73.6499,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 1.2331, position (cm) = (199.454,-33.6599,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 31.4086, position (cm) = (173.34,-40.756,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.786391, position (cm) = (173.82,-43.8998,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 2.88743, position (cm) = (183.036,-58.7619,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 57.7088, position (cm) = (162.352,-104.713,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 5.32423, position (cm) = (161.925,-85.1305,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 8.01421, position (cm) = (182.844,-98.0309,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.343362, position (cm) = (160.519,-76.0988,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 2.67701, position (cm) = (155.822,-103.729,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.597193, position (cm) = (152.246,-66.4006,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 5.68108, position (cm) = (126.272,-76.8794,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.705492, position (cm) = (90.0141,-19.2714,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.128521, position (cm) = (76.4204,-29.64,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.0534385, position (cm) = (103.067,-32.0773,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 31.2809, position (cm) = (128.203,-61.9169,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 17.4569, position (cm) = (114.919,-68.7365,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 29.1591, position (cm) = (130.479,-77.1493,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 74.0593, position (cm) = (130.978,-72.7822,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 74.0593, position (cm) = (130.978,-72.7822,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.586283, position (cm) = (66.195,-38.0404,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.214332, position (cm) = (45.453,-36.2257,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.182722, position (cm) = (48.7837,-38.0152,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.510999, position (cm) = (96.1731,-24.414,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 5.19122, position (cm) = (84.8839,-36.9701,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 20.5294, position (cm) = (74.6468,-47.2944,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 20.5294, position (cm) = (74.6468,-47.2944,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.0158575, position (cm) = (180.315,-139.602,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.938289, position (cm) = (170.374,-134.571,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.90415, position (cm) = (165.829,-138.266,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.377284, position (cm) = (183.872,-130.535,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 2.35957, position (cm) = (173.382,-135.602,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 2.35957, position (cm) = (173.382,-135.602,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 8.10046, position (cm) = (177.365,-127.657,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 5.97819, position (cm) = (153.175,-109.245,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 4.59913, position (cm) = (153.397,-109.796,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.428007, position (cm) = (148.267,-106.02,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 2.0845, position (cm) = (145.624,-102.818,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 1.31776, position (cm) = (151.855,-111.792,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 9.96494, position (cm) = (22.2402,-47.8564,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 30.4785, position (cm) = (19.6039,-43.9778,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 5.69384, position (cm) = (23.6689,-35.7572,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 96.4141, position (cm) = (65.3525,-30.4679,200), weight = 0.00390625
- gamma, kinetic energy (MeV) = 0.310867, position (cm) = (77.3733,-53.6371,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 94.4661, position (cm) = (72.1705,-58.1431,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 96.2999, position (cm) = (59.9395,-64.8458,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.366186, position (cm) = (59.0905,-61.1152,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.221191, position (cm) = (52.4991,-66.3426,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 38.6058, position (cm) = (58.6741,-60.7452,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 74.842, position (cm) = (48.7041,-44.4187,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 74.842, position (cm) = (48.7041,-44.4187,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.277492, position (cm) = (30.288,-40.7864,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 2.68422, position (cm) = (51.3451,-71.6309,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 1.7946, position (cm) = (64.8877,-64.11,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 95.0321, position (cm) = (24.3708,-113.271,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 95.4906, position (cm) = (24.1989,-113.299,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 64.4197, position (cm) = (66.6749,-21.3761,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 1.65145, position (cm) = (74.9339,24.6795,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 42.4075, position (cm) = (94.0804,40.1469,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 9.85419, position (cm) = (81.5789,17.7794,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.457632, position (cm) = (37.2824,-12.4243,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 0.00562976, position (cm) = (39.1936,-0.487649,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 1.55395, position (cm) = (61.7983,-8.91259,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 0.847313, position (cm) = (67.6321,-11.0714,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 1.4027, position (cm) = (51.3333,-11.0552,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 1.51335, position (cm) = (47.5904,-38.166,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.309763, position (cm) = (31.8339,-52.6877,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 0.0942596, position (cm) = (22.2779,-47.8195,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 1.33555, position (cm) = (16.5377,-67.1987,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 32.6615, position (cm) = (27.2923,-73.6044,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 32.6615, position (cm) = (27.2923,-73.6044,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.161019, position (cm) = (25.3879,-69.5663,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 30.5158, position (cm) = (27.9671,-77.6361,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 30.5158, position (cm) = (27.9671,-77.6361,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 30.5158, position (cm) = (27.9671,-77.6361,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 30.5158, position (cm) = (27.9671,-77.6361,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 30.5158, position (cm) = (27.9671,-77.6361,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.635774, position (cm) = (42.9285,-50.7238,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.0979193, position (cm) = (29.5674,-48.0258,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 2.5537, position (cm) = (33.6325,-47.2335,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 0.000218865, position (cm) = (46.4849,-74.2135,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.590381, position (cm) = (79.6214,-85.1303,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.244508, position (cm) = (84.789,-77.4701,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 22.1858, position (cm) = (77.9759,-15.705,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 22.1858, position (cm) = (77.9759,-15.705,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 22.1858, position (cm) = (77.9759,-15.705,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 37.1256, position (cm) = (86.5331,-12.7025,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 36.6726, position (cm) = (84.8026,-17.3283,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 1.09849, position (cm) = (9.95598,11.7684,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 69.3231, position (cm) = (-6.53868,-10.8224,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 68.7831, position (cm) = (-1.7804,-6.08372,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 6.39156, position (cm) = (-3.31458,-6.36297,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 28.751, position (cm) = (-7.77955,-1.05798,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 69.203, position (cm) = (6.40271,-9.95836,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 69.0211, position (cm) = (1.92285,-6.27493,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 69.0211, position (cm) = (1.92285,-6.27493,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 69.5372, position (cm) = (4.40763,-7.29212,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 4.80497, position (cm) = (6.38779,18.5446,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 4.07558, position (cm) = (-12.5829,40.5103,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 4.07558, position (cm) = (-12.5829,40.5103,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.307784, position (cm) = (-42.6737,-8.56214,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.174494, position (cm) = (-26.1342,-0.154832,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 0.0888503, position (cm) = (-14.9312,20.1382,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 1.00121, position (cm) = (-50.9869,4.16836,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.114819, position (cm) = (-43.1641,-6.24826,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 4.97864, position (cm) = (-49.825,-6.51233,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.104688, position (cm) = (-33.8586,-9.5205,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 2.0081, position (cm) = (-55.607,21.7788,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 4.04855, position (cm) = (-58.2192,5.03405,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 70.3489, position (cm) = (16.7537,-4.91478,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 58.4773, position (cm) = (37.8773,22.3783,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 0.0167314, position (cm) = (27.112,43.549,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 3.80977, position (cm) = (33.196,31.4708,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 2.44588, position (cm) = (34.7003,42.2587,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 58.455, position (cm) = (37.4578,21.8781,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 58.3713, position (cm) = (36.234,20.6877,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 0.288979, position (cm) = (118.41,-66.2347,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.44993, position (cm) = (118.657,-60.1574,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 2.02232, position (cm) = (107.795,-68.8504,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.545542, position (cm) = (85.8605,-34.6677,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 22.187, position (cm) = (108.033,-75.6012,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.0190175, position (cm) = (16.888,0.728001,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 4.04935, position (cm) = (74.4789,34.7042,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.32271, position (cm) = (70.0575,-2.86834,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.0775075, position (cm) = (49.812,-40.6263,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.661364, position (cm) = (46.8987,-1.82541,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 3.69521e-05, position (cm) = (56.5465,3.37836,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.114958, position (cm) = (56.3701,4.5005,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.510999, position (cm) = (50.752,-3.65499,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 1.03199, position (cm) = (64.7956,1.68349,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 4.31445, position (cm) = (41.8602,13.8905,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 0.912987, position (cm) = (68.5207,-53.4046,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 29.4827, position (cm) = (42.842,18.1505,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 29.4827, position (cm) = (42.842,18.1505,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 29.7132, position (cm) = (42.6464,18.3835,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 0.00169605, position (cm) = (34.8,10.8343,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 1.36016, position (cm) = (37.2142,25.5755,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 11.1748, position (cm) = (34.6251,34.928,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.204113, position (cm) = (40.3242,30.3184,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 5.28685, position (cm) = (44.5264,35.9151,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 1.44866, position (cm) = (46.5954,14.5739,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.0945863, position (cm) = (55.8885,18.9957,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.18231, position (cm) = (39.5363,15.3406,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 49.7259, position (cm) = (50.598,25.921,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 49.4257, position (cm) = (50.651,26.2273,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 50.0263, position (cm) = (50.2894,21.6993,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 1.43174, position (cm) = (50.3429,23.8946,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 38.1616, position (cm) = (36.6589,-7.27014,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 2.08064, position (cm) = (35.5582,26.282,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 59.7167, position (cm) = (28.7151,21.3906,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 2.86313, position (cm) = (35.4447,14.9348,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 0.63485, position (cm) = (27.9469,1.39482,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.110598, position (cm) = (48.1535,-11.0148,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 7.11562, position (cm) = (32.0826,5.68014,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 23.5652, position (cm) = (41.6681,3.57138,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 23.5652, position (cm) = (41.6681,3.57138,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 2.47646, position (cm) = (20.0153,17.7791,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 0.000646417, position (cm) = (6.82722,44.0394,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 1.84943, position (cm) = (3.62031,41.5331,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 69.9018, position (cm) = (11.5601,31.5928,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 0.878788, position (cm) = (11.4944,27.2891,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 5.25417, position (cm) = (12.279,28.4051,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 8.90786, position (cm) = (4.73946,9.37429,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 8.90786, position (cm) = (4.73946,9.37429,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 8.90786, position (cm) = (4.73946,9.37429,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 7.19969, position (cm) = (5.664,12.435,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 69.4681, position (cm) = (5.56193,19.2798,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 69.4681, position (cm) = (5.56193,19.2798,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 69.4681, position (cm) = (5.56193,19.2798,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 68.918, position (cm) = (24.1048,23.7512,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 56.6103, position (cm) = (-25.535,-84.7621,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 56.6103, position (cm) = (-25.535,-84.7621,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 0.000713056, position (cm) = (-25.9845,-66.3108,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 56.4008, position (cm) = (-40.0735,-91.1765,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 37.809, position (cm) = (66.8922,-93.2959,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 37.5256, position (cm) = (65.7266,-92.9356,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 37.8618, position (cm) = (65.7851,-91.5024,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.081811, position (cm) = (81.2354,-81.2174,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 37.253, position (cm) = (75.9009,-87.7751,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 0.764775, position (cm) = (61.0415,-87.5212,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 3.16163, position (cm) = (68.6243,-81.3546,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 3.97998, position (cm) = (60.8607,-98.9726,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 6.11889, position (cm) = (60.9078,-83.634,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 4.31836, position (cm) = (69.9367,-60.7321,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 10.3203, position (cm) = (68.6831,-89.7113,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 0.0040292, position (cm) = (84.2456,-94.134,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 0.0342141, position (cm) = (61.1211,-91.5292,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.105167, position (cm) = (43.8034,-84.3459,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 1.16808, position (cm) = (39.2325,-78.4832,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.310962, position (cm) = (65.5837,-95.0914,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 0.0230546, position (cm) = (62.254,-95.5542,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 3.36481, position (cm) = (67.0142,-90.8134,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 4.52175, position (cm) = (124.303,-124.728,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.410749, position (cm) = (113.79,-119.872,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 7.06963, position (cm) = (97.9587,-104.656,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.1167, position (cm) = (137.844,-133.068,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 4.53928, position (cm) = (113.054,-131.978,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 6.48709, position (cm) = (110.081,-114.363,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 6.3871, position (cm) = (117.863,-117.024,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.49491, position (cm) = (48.0417,-127.061,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 1.97784, position (cm) = (86.5835,-128.758,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 4.28089, position (cm) = (100.769,-123.497,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 0.0881126, position (cm) = (90.7635,-113.901,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 1.28199, position (cm) = (96.7168,-115.493,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 1.84874, position (cm) = (55.0785,-150.964,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 2.65682, position (cm) = (65.9348,-155.486,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 7.5376, position (cm) = (67.9355,-157.294,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.209133, position (cm) = (56.7144,-152.058,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.0894897, position (cm) = (65.0163,-148.918,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 0.000154346, position (cm) = (64.4109,-145.055,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 1.39683, position (cm) = (61.9355,-149.007,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.199562, position (cm) = (79.3272,-121.982,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.458135, position (cm) = (92.734,-155.26,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 2.10824, position (cm) = (30.1687,-117.251,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 2.34602, position (cm) = (40.6804,-115.663,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 2.34003, position (cm) = (43.5282,-119.239,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 3.58038e-05, position (cm) = (6.88244,-158.019,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 7.06145, position (cm) = (53.4239,-121.862,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 1.68094, position (cm) = (105.341,-161.123,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.0978614, position (cm) = (69.7189,-135.634,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.33315, position (cm) = (47.6419,-129.551,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 4.6266, position (cm) = (69.5429,-145.076,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 11.6038, position (cm) = (72.2358,-147.238,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 4.04541, position (cm) = (58.987,-114.064,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.0821307, position (cm) = (57.802,-183.144,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.448184, position (cm) = (38.0847,-177.94,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 7.35228, position (cm) = (69.2254,-158.727,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.00836975, position (cm) = (45.5897,-143.867,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 1.83303, position (cm) = (95.299,-144.567,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.493252, position (cm) = (122.513,-135.597,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 13.2664, position (cm) = (87.713,-109.546,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 13.2664, position (cm) = (87.713,-109.546,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 12.7904, position (cm) = (90.7496,-109.896,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 3.92327, position (cm) = (80.2403,-88.8219,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 0.000926149, position (cm) = (109.002,-88.9154,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 9.69981e-06, position (cm) = (91.931,-92.0464,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 9.69981e-06, position (cm) = (91.931,-92.0464,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 3.8542e-08, position (cm) = (152.677,-130.532,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 1.68902, position (cm) = (139.491,-108.225,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 51.2737, position (cm) = (160.826,-134.378,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 51.2737, position (cm) = (160.826,-134.378,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 51.2124, position (cm) = (170.142,-142.197,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.431513, position (cm) = (165.33,-137.877,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 1.95927, position (cm) = (159.568,-145.436,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 15.8321, position (cm) = (169.064,-134.099,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 50.559, position (cm) = (162.074,-133.418,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 51.2124, position (cm) = (170.142,-142.197,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.538727, position (cm) = (184.836,-146.354,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 2.38045, position (cm) = (194.242,-143.917,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 57.3306, position (cm) = (163.329,-139.549,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.062827, position (cm) = (118.953,-98.4793,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 1.69863, position (cm) = (115.858,-102.869,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 29.8009, position (cm) = (126.048,-95.2573,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.100569, position (cm) = (126.956,-87.0762,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.122452, position (cm) = (67.0388,-72.6125,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 4.78882, position (cm) = (101.381,-77.2973,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 0.262249, position (cm) = (44.2006,-9.6323,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.146818, position (cm) = (31.9619,-0.463694,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 5.38454, position (cm) = (117.078,-84.3293,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 7.10186, position (cm) = (50.3883,-76.8368,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 2.24167, position (cm) = (38.3659,-63.4048,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 14.593, position (cm) = (62.034,-80.2793,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 1.26048, position (cm) = (63.0967,-56.7186,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.242022, position (cm) = (86.8314,-83.0986,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 3.44284, position (cm) = (86.8801,-91.7646,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 59.7337, position (cm) = (95.5868,-85.1023,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 59.5893, position (cm) = (98.868,-84.5455,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 1.79752, position (cm) = (34.0997,-126.696,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 0.338637, position (cm) = (50.5044,-115.272,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 1.10506, position (cm) = (44.5955,-116.055,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 0.0220277, position (cm) = (43.6564,-117.292,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 6.6852e-07, position (cm) = (55.493,-116.432,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 0.437229, position (cm) = (38.4656,-126.749,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 3.0323, position (cm) = (42.0532,-132.618,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 72.0556, position (cm) = (56.9231,-128.007,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 72.0556, position (cm) = (56.9231,-128.007,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 72.0556, position (cm) = (56.9231,-128.007,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 43.8443, position (cm) = (81.5854,-127.706,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.0976592, position (cm) = (64.0104,-18.9826,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.614409, position (cm) = (45.329,-54.0801,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.222041, position (cm) = (127.877,-133.223,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.623879, position (cm) = (128.341,-132.585,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 3.86236, position (cm) = (127.586,-133.501,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 81.4649, position (cm) = (80.6992,-70.1683,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 2.20943, position (cm) = (78.4124,-46.6651,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 49.8395, position (cm) = (89.7732,-35.1828,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 48.5952, position (cm) = (100.91,-47.1723,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 48.3466, position (cm) = (100.811,-46.0687,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 0.574315, position (cm) = (86.4525,-91.5534,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 69.7484, position (cm) = (30.3539,-79.4963,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 69.7484, position (cm) = (30.3539,-79.4963,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.751275, position (cm) = (16.052,-94.4626,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 44.8314, position (cm) = (27.5634,-112.522,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 2.43626, position (cm) = (29.245,-87.1543,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.00529636, position (cm) = (24.404,-92.3485,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.57362, position (cm) = (39.7457,-78.5946,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 4.96427, position (cm) = (80.601,-87.5386,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 23.2601, position (cm) = (24.0861,-120.072,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 23.8992, position (cm) = (22.2267,-124.537,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 1.84772, position (cm) = (56.2143,-77.0853,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.000855433, position (cm) = (-1.5604,-120.447,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 2.40341, position (cm) = (64.0232,-93.6098,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 34.5049, position (cm) = (45.6784,-116.835,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.202161, position (cm) = (38.713,-118.231,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 2.16338, position (cm) = (38.4179,-115.552,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 20.674, position (cm) = (39.6784,-118.577,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 64.4526, position (cm) = (29.9221,-124.304,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 16.394, position (cm) = (21.4887,-124.214,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 64.8987, position (cm) = (30.4357,-127.233,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.17592, position (cm) = (38.9471,-81.6955,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 2.8385, position (cm) = (17.912,-91.2732,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.201908, position (cm) = (41.9526,-28.1972,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 4.49387, position (cm) = (37.4118,-31.4356,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 17.691, position (cm) = (34.1133,-17.1752,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 17.691, position (cm) = (34.1133,-17.1752,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.10729, position (cm) = (34.0396,-21.1088,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.697917, position (cm) = (34.6317,-18.2242,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 0.00660732, position (cm) = (48.0034,-7.24108,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 1.62285, position (cm) = (35.6471,-18.2663,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.881322, position (cm) = (30.8058,-73.3874,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.492013, position (cm) = (40.5972,-26.4689,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 2.94114, position (cm) = (33.9161,-25.3975,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 18.2083, position (cm) = (48.679,-32.6394,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.10355, position (cm) = (22.7558,-30.2846,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 7.63293e-06, position (cm) = (42.3362,-34.3147,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 2.1709, position (cm) = (43.0396,-39.5077,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 3.49802, position (cm) = (44.6027,-37.3786,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 11.0509, position (cm) = (47.0408,-39.8517,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 6.69027, position (cm) = (27.654,-44.0027,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 17.6227, position (cm) = (33.2927,-42.9391,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 3.9081, position (cm) = (5.82971,-56.9624,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.217326, position (cm) = (117.176,-62.0427,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 41.1789, position (cm) = (67.2267,-106.516,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 41.7022, position (cm) = (57.0265,-102.076,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 2.26596, position (cm) = (63.3842,-151.466,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.202164, position (cm) = (72.4563,-88.3813,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 48.6404, position (cm) = (66.5491,-86.7915,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 38.2614, position (cm) = (70.2894,-101.58,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 38.153, position (cm) = (68.2557,-102.071,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 2.58751, position (cm) = (66.9174,-84.1388,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.237282, position (cm) = (45.5375,-87.6465,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 98.7758, position (cm) = (63.6856,-104.148,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 6.68454, position (cm) = (106.031,-47.3253,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.673126, position (cm) = (85.8849,-91.4439,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.122748, position (cm) = (83.3373,-89.6823,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.592966, position (cm) = (84.1637,-98.4989,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 12.6026, position (cm) = (81.6009,-95.4415,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 12.6026, position (cm) = (81.6009,-95.4415,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.307684, position (cm) = (97.5057,-70.2495,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 1.11452, position (cm) = (89.2707,-68.2651,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.568814, position (cm) = (111.354,-58.952,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.123453, position (cm) = (111.971,-55.5599,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 44.4724, position (cm) = (134.118,-89.1023,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.585742, position (cm) = (148.291,-104.599,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 21.5135, position (cm) = (147.655,-105.721,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 21.5135, position (cm) = (147.655,-105.721,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 44.6151, position (cm) = (140.863,-100.557,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.446576, position (cm) = (175.268,-115.276,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.17823, position (cm) = (203.138,-129.471,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 35.9871, position (cm) = (182.69,-124.949,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 35.9871, position (cm) = (182.69,-124.949,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 41.1843, position (cm) = (165.656,-117.551,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 1.84817, position (cm) = (139.384,-94.9911,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 7.00084, position (cm) = (156.728,-110.547,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 45.001, position (cm) = (175.254,-120.897,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.696417, position (cm) = (114.865,-93.6672,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.510999, position (cm) = (154.043,-35.2634,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.191363, position (cm) = (112.066,-55.1792,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 2.5699e-07, position (cm) = (29.4179,-29.1743,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.165265, position (cm) = (-100.782,47.2853,200), weight = 0.0625
- gamma, kinetic energy (MeV) = 9.49027, position (cm) = (-80.6656,80.0773,200), weight = 0.0625
- gamma, kinetic energy (MeV) = 1.80244, position (cm) = (68.9208,-1.70501,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 2.04213, position (cm) = (73.2508,82.5129,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 2.05983, position (cm) = (57.4661,85.6687,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 3.53019, position (cm) = (56.9862,78.2114,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 9.31182e-06, position (cm) = (74.8079,81.055,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 0.874308, position (cm) = (56.4888,87.1429,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 2.52957, position (cm) = (57.3992,75.7424,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 6.92784, position (cm) = (56.3656,93.7177,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 6.92784, position (cm) = (56.3656,93.7177,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 68.824, position (cm) = (68.4237,91.0893,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 2.28694, position (cm) = (125.572,29.4794,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.467751, position (cm) = (117.386,23.6858,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 0.0239923, position (cm) = (124.955,46.0714,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.872712, position (cm) = (109.18,20.6746,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 21.8352, position (cm) = (123.355,28.8232,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.188643, position (cm) = (101.009,47.5795,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 0.00148618, position (cm) = (-47.796,-31.4939,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 2.47226, position (cm) = (48.095,-72.7705,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 2.14782, position (cm) = (60.2537,-74.1093,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 0.00391194, position (cm) = (61.4215,-77.2405,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 0.530074, position (cm) = (-40.5562,-70.1705,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 2.74552, position (cm) = (-37.1931,-71.7721,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 0.00340246, position (cm) = (-10.8054,-41.9038,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 5.50851, position (cm) = (-14.5136,-38.8214,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 5.40278, position (cm) = (-58.746,-36.7762,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 2.60579, position (cm) = (-114.729,-68.067,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 2.69027, position (cm) = (-119.439,-64.6045,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 3.4741, position (cm) = (-117.344,-64.8734,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.162873, position (cm) = (-87.963,-20.2287,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.127329, position (cm) = (-88.1652,-45.2101,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 3.1233, position (cm) = (-93.4323,-44.2755,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 2.17979e-06, position (cm) = (-92.9413,-23.9404,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.338453, position (cm) = (-93.6208,-25.2835,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 0.304865, position (cm) = (-163.666,57.6537,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 2.6215, position (cm) = (-175.517,77.9138,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 19.8251, position (cm) = (-157.334,77.1234,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 5.43344, position (cm) = (-185.054,54.6804,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 81.4133, position (cm) = (41.5266,-45.1357,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 0.414982, position (cm) = (42.4465,-37.7711,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.41452, position (cm) = (45.6823,-21.1985,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 5.94414, position (cm) = (62.1866,-67.1185,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.105509, position (cm) = (96.6311,-103.883,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.510999, position (cm) = (99.2529,-105.624,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 29.9983, position (cm) = (97.3899,-108.07,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 2.45571, position (cm) = (90.8494,-84.0327,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 3.66277, position (cm) = (78.954,-89.161,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.133961, position (cm) = (86.0002,-89.3178,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.895143, position (cm) = (68.7994,-68.2051,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 0.308253, position (cm) = (82.9896,-107.125,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.458553, position (cm) = (93.2636,-95.7496,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 2.07956, position (cm) = (89.8221,-96.0964,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 8.1808, position (cm) = (85.497,-93.2322,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 6.60627, position (cm) = (81.212,-82.0698,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 1.00439, position (cm) = (90.6353,-83.1278,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.143414, position (cm) = (68.4998,-57.6054,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.770441, position (cm) = (69.1434,-63.6553,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 33.1214, position (cm) = (74.6847,-71.9472,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 33.0019, position (cm) = (72.7663,-71.9155,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 2.39486, position (cm) = (79.0224,-63.8029,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.106264, position (cm) = (77.0432,-62.0546,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 2.09036, position (cm) = (85.1046,-73.9406,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 67.6856, position (cm) = (40.0391,-50.1508,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 67.6856, position (cm) = (40.0391,-50.1508,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.182146, position (cm) = (48.2845,-38.6376,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.429326, position (cm) = (38.794,-9.82753,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 10.9088, position (cm) = (48.689,-33.2004,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 34.9795, position (cm) = (51.824,-37.7933,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 34.9795, position (cm) = (51.824,-37.7933,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.188338, position (cm) = (43.2665,-50.8987,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 1.08466, position (cm) = (39.2937,-46.997,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 52.7782, position (cm) = (40.0704,-49.4156,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 81.1388, position (cm) = (47.5257,-45.3492,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.105433, position (cm) = (-15.7236,-23.2469,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 2.0281, position (cm) = (-11.7416,-15.6079,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 2.05169, position (cm) = (-14.2218,-16.0441,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 2.22423, position (cm) = (23.0833,-52.0309,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 2.07128, position (cm) = (38.9046,-50.4541,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 50.5865, position (cm) = (17.0619,-61.3518,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 49.7455, position (cm) = (15.6465,-61.7625,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 50.61, position (cm) = (13.9301,-66.8787,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 50.61, position (cm) = (13.9301,-66.8787,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 3.09308, position (cm) = (16.7923,-63.7312,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 50.8068, position (cm) = (13.7772,-68.7452,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 50.8068, position (cm) = (13.7772,-68.7452,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 50.8889, position (cm) = (12.5386,-70.439,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.362112, position (cm) = (46.9125,-33.3324,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 58.8584, position (cm) = (37.8659,-25.8198,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 58.8584, position (cm) = (37.8659,-25.8198,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 58.3389, position (cm) = (36.2025,-25.9772,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 1.75854e-06, position (cm) = (3.56897,-57.3231,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 2.75581, position (cm) = (0.0884809,-78.7642,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 0.369546, position (cm) = (20.7272,-63.9482,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 81.7811, position (cm) = (9.20759,-69.125,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 81.7811, position (cm) = (9.20759,-69.125,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 0.00353816, position (cm) = (23.5052,-37.5478,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 5.81927, position (cm) = (90.1998,-12.8317,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 0.00201755, position (cm) = (-37.7532,-32.5832,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 1.45708, position (cm) = (-24.8304,-23.551,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 1.41602, position (cm) = (32.2011,-97.7457,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.200971, position (cm) = (74.613,-58.7895,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.0604828, position (cm) = (82.0973,-59.1791,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.290427, position (cm) = (86.0252,-45.6788,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 7.91675, position (cm) = (90.7412,-37.5148,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.218797, position (cm) = (85.8014,-53.9638,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 4.23124, position (cm) = (89.4816,-49.3572,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 5.33174, position (cm) = (89.247,-49.1153,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 0.0886408, position (cm) = (91.9858,-49.5918,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 0.526382, position (cm) = (90.4262,-49.116,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 1.3728, position (cm) = (88.2792,-49.3789,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 3.89953, position (cm) = (85.7875,-50.2073,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 0.090421, position (cm) = (98.0081,-42.5411,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 12.912, position (cm) = (65.2771,-77.5196,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 12.912, position (cm) = (65.2771,-77.5196,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 12.912, position (cm) = (65.2771,-77.5196,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 0.119719, position (cm) = (50.5337,-72.7798,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 2.18495, position (cm) = (48.6828,-65.2648,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 0.000159648, position (cm) = (14.1936,-84.8773,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 20.9806, position (cm) = (39.8178,-107.787,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.186513, position (cm) = (38.7463,-106.61,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 2.18365, position (cm) = (44.1511,-88.0152,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.175838, position (cm) = (55.6064,-78.7499,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 16.9848, position (cm) = (48.0017,-87.9286,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 16.8279, position (cm) = (48.687,-89.4785,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 10.894, position (cm) = (71.65,-51.3143,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 6.14785, position (cm) = (50.5837,-65.5202,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 0.776303, position (cm) = (58.871,-102.819,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.474465, position (cm) = (49.5538,-94.2449,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.00017173, position (cm) = (50.6431,-93.9062,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.104029, position (cm) = (54.2951,-103.668,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 22.4116, position (cm) = (48.3528,-98.2732,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 4.98939, position (cm) = (36.4138,-109.002,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 0.927579, position (cm) = (34.8925,-100.474,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 5.86927, position (cm) = (24.7789,-109.728,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 7.86302, position (cm) = (52.3802,-73.7727,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 3.00359, position (cm) = (-20.5675,21.6067,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.228842, position (cm) = (31.0152,-8.81235,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.218806, position (cm) = (29.7043,-11.634,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 5.32155, position (cm) = (20.4807,29.8646,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.534966, position (cm) = (135.356,49.5407,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 0.0317922, position (cm) = (143.33,64.9567,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.086293, position (cm) = (135.432,64.6585,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 24.3012, position (cm) = (127.323,99.3505,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 8.13577, position (cm) = (117.239,78.7492,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.258035, position (cm) = (144.598,115.479,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 28.8272, position (cm) = (134.61,111.178,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 4.84065e-07, position (cm) = (154.938,147.004,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 2.50874, position (cm) = (156.953,135.798,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.949364, position (cm) = (160.768,136.092,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 0.0191591, position (cm) = (141.749,93.8529,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 0.529579, position (cm) = (82.0303,-9.17863,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 4.20451, position (cm) = (86.9057,25.4545,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 52.0913, position (cm) = (-6.97724,51.2181,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 51.9841, position (cm) = (-6.20103,58.1059,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 51.248, position (cm) = (-5.69976,68.8207,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 51.2206, position (cm) = (-8.68387,67.5949,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 1.04747, position (cm) = (-4.37693,59.7487,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 6.85763, position (cm) = (-7.93245,62.1716,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 51.8478, position (cm) = (-6.31634,58.0876,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 1.41566, position (cm) = (8.29784,31.3551,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.245086, position (cm) = (19.0233,44.3508,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 51.109, position (cm) = (92.6721,70.6938,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 1.44719, position (cm) = (-26.5723,27.3704,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.101087, position (cm) = (-38.0636,64.0461,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 4.11768, position (cm) = (-28.8904,47.9695,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 4.11768, position (cm) = (-28.8904,47.9695,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 21.483, position (cm) = (-20.8026,43.2721,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 21.483, position (cm) = (-20.8026,43.2721,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 21.3018, position (cm) = (-21.4262,42.8052,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 1.37039, position (cm) = (-15.1818,55.6381,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.968717, position (cm) = (-32.2342,41.0036,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.125847, position (cm) = (-30.0309,27.3173,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.085906, position (cm) = (-17.371,73.4371,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.0711665, position (cm) = (-20.8043,75.8351,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 1.37883, position (cm) = (-26.0678,74.3316,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 3.13959, position (cm) = (-20.004,76.316,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 17.2138, position (cm) = (-17.5935,78.2685,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 2.45008, position (cm) = (-16.8914,72.3943,200), weight = 7.45058e-09
- neutron, kinetic energy (MeV) = 17.1732, position (cm) = (-17.0377,76.2952,200), weight = 3.72529e-09
- neutron, kinetic energy (MeV) = 17.1732, position (cm) = (-17.0377,76.2952,200), weight = 3.72529e-09
- neutron, kinetic energy (MeV) = 7.65875e-06, position (cm) = (-30.3966,56.1507,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 0.010403, position (cm) = (-30.3514,72.8359,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 2.56549, position (cm) = (-31.1533,54.6055,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.0983433, position (cm) = (-41.2925,50.0713,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 1.73857, position (cm) = (-36.5157,44.3127,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 3.09611, position (cm) = (-35.1006,44.9663,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 1.11478, position (cm) = (-14.8969,37.2905,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 2.00218, position (cm) = (-18.4083,37.4444,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.128121, position (cm) = (-19.9692,31.8662,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.31563, position (cm) = (-2.86109,39.5494,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 1.08214, position (cm) = (-16.9027,41.1849,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.668392, position (cm) = (-24.5477,47.8724,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 0.253221, position (cm) = (4.72621,-4.21849,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 52.1338, position (cm) = (-40.4831,82.463,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 52.1338, position (cm) = (-40.4831,82.463,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.0751379, position (cm) = (-22.9812,-43.5948,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 6.64648, position (cm) = (-6.26001,-46.3056,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 8.24466, position (cm) = (-0.949794,-49.9179,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 58.7815, position (cm) = (-8.0298,-43.7752,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.915924, position (cm) = (-16.4404,-42.4594,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 8.49912, position (cm) = (-24.6737,-50.2586,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.28336, position (cm) = (-19.9401,-46.3944,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.0062404, position (cm) = (-33.3819,-28.4566,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 24.6966, position (cm) = (-4.30733,-38.2935,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.101576, position (cm) = (-14.4873,-52.5016,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 11.3933, position (cm) = (-32.0616,-40.2159,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 11.3933, position (cm) = (-32.0616,-40.2159,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 55.8647, position (cm) = (-31.1326,-43.8417,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 55.8647, position (cm) = (-31.1326,-43.8417,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 53.853, position (cm) = (-0.466852,-54.6429,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 1.63999, position (cm) = (-51.137,-7.9737,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 2.40153, position (cm) = (-61.4515,4.29061,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.840725, position (cm) = (-50.7148,-32.8078,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.324268, position (cm) = (-91.405,-85.4634,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 1.59118, position (cm) = (-91.8919,-84.2388,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 2.3498, position (cm) = (-91.654,-85.3737,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 9.38311, position (cm) = (-93.9127,-85.6569,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 63.5702, position (cm) = (-89.4088,-90.5458,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 1.2584, position (cm) = (-65.4996,-83.594,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 19.7051, position (cm) = (-87.4751,-88.0228,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 20.8188, position (cm) = (-86.2505,-89.8486,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.236089, position (cm) = (-83.7155,-86.1493,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 62.8736, position (cm) = (-84.5794,-88.9183,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 63.8746, position (cm) = (-97.7737,-99.5711,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 2.30428, position (cm) = (-65.2328,-75.1812,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 22.8707, position (cm) = (-37.7247,-73.9104,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 22.8707, position (cm) = (-37.7247,-73.9104,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 22.4138, position (cm) = (-41.6528,-69.9055,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 22.261, position (cm) = (-41.5879,-70.117,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 2.4146, position (cm) = (-50.8178,-71.7599,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 86.8994, position (cm) = (-7.70263,-43.3356,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 0.125203, position (cm) = (-39.1463,-38.6839,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 50.6054, position (cm) = (-30.9077,-7.3153,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 50.6054, position (cm) = (-30.9077,-7.3153,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 50.6054, position (cm) = (-30.9077,-7.3153,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 50.6574, position (cm) = (-33.0713,-7.83796,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.464395, position (cm) = (-36.9176,7.28559,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 21.8969, position (cm) = (-37.78,2.71093,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 21.8969, position (cm) = (-37.78,2.71093,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 50.865, position (cm) = (-49.1556,8.2832,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 50.9438, position (cm) = (-47.0859,9.5714,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 1.93969e-06, position (cm) = (12.0062,-19.0263,200), weight = 0.0078125
- neutron, kinetic energy (MeV) = 4.22801, position (cm) = (-37.7749,7.8996,200), weight = 0.0078125
- gamma, kinetic energy (MeV) = 0.374142, position (cm) = (-84.672,87.8276,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 12.549, position (cm) = (-75.1844,87.4274,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 6.20081, position (cm) = (-52.4463,36.4243,200), weight = 0.0078125
- neutron, kinetic energy (MeV) = 28.6918, position (cm) = (-45.2833,-11.2239,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 4.60328e-05, position (cm) = (-50.7246,-28.1051,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 28.7761, position (cm) = (-46.6212,-12.4824,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 0.000155315, position (cm) = (-49.297,1.38693,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 0.524613, position (cm) = (-46.242,-3.82172,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 7.2255, position (cm) = (-51.1168,-4.54853,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 2.29412, position (cm) = (-85.7325,-19.7956,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.369966, position (cm) = (-46.7044,-3.30985,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 27.8426, position (cm) = (-54.9302,-15.3103,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 1.86418e-06, position (cm) = (-24.5817,-14.9497,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 0.0115055, position (cm) = (-0.312668,4.46527,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 6.42594, position (cm) = (-2.29325,30.2189,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.398773, position (cm) = (-30.159,31.1662,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.399479, position (cm) = (-38.9316,50.3212,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 0.623785, position (cm) = (-2.65805,7.1499,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 3.56147, position (cm) = (-4.18503,16.1716,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 1.46972, position (cm) = (-46.8365,39.1529,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.221237, position (cm) = (-54.9805,27.5709,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 1.53088, position (cm) = (-72.875,29.5173,200), weight = 0.03125
- neutron, kinetic energy (MeV) = 29.0349, position (cm) = (88.2883,78.2589,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 27.5947, position (cm) = (106.263,86.1072,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 27.5947, position (cm) = (106.263,86.1072,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 27.8742, position (cm) = (105.947,86.3246,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 27.8742, position (cm) = (105.947,86.3246,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.121984, position (cm) = (104.712,80.0543,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 3.03329, position (cm) = (106.284,77.698,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 16.6955, position (cm) = (109.454,78.779,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 16.6955, position (cm) = (109.454,78.779,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 27.4077, position (cm) = (109.721,78.7035,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 2.54453, position (cm) = (142.065,117.45,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 6.2396, position (cm) = (147.556,109.895,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 1.37045, position (cm) = (137.427,116.212,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.254117, position (cm) = (112.515,79.7941,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 3.35199, position (cm) = (123.946,73.867,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 1.12101e-06, position (cm) = (129.861,87.1407,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 0.41288, position (cm) = (107.748,79.0562,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 0.103336, position (cm) = (134.858,78.3316,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 3.21641, position (cm) = (125.759,89.5837,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.766408, position (cm) = (62.1635,92.9243,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.178976, position (cm) = (105.704,116.236,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.298934, position (cm) = (136.766,129.829,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 1.95433, position (cm) = (132.54,115.376,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 4.46856e-06, position (cm) = (115.787,102.774,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 1.48154, position (cm) = (107.23,107.633,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 12.5056, position (cm) = (91.4011,110.356,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 12.5056, position (cm) = (91.4011,110.356,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 14.3512, position (cm) = (56.8651,88.8231,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 14.6713, position (cm) = (52.5702,89.6343,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.219563, position (cm) = (62.1122,90.167,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 6.42464, position (cm) = (62.1562,89.6988,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 2.60167e-08, position (cm) = (52.1259,90.7552,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 0.544768, position (cm) = (72.2048,91.5515,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.401854, position (cm) = (87.596,108.714,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 24.9373, position (cm) = (88.1254,107.605,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 33.3941, position (cm) = (87.544,109.608,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.0862007, position (cm) = (85.7223,105.852,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.261723, position (cm) = (64.9334,111.318,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 32.8638, position (cm) = (65.6738,120.387,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 31.8436, position (cm) = (64.3721,118.612,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 2.73678e-06, position (cm) = (28.5289,73.3077,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 45.0469, position (cm) = (37.0291,8.83066,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 45.7113, position (cm) = (33.1554,7.50903,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.718525, position (cm) = (5.33555,24.4956,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 2.39041, position (cm) = (65.2284,61.1802,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 0.310568, position (cm) = (77.3501,58.2187,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.156579, position (cm) = (45.4412,61.6592,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 2.58054, position (cm) = (23.4723,54.6131,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 0.0917239, position (cm) = (45.9685,59.3222,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 0.302, position (cm) = (160.196,-39.5182,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 27.7709, position (cm) = (79.9674,-68.8141,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 27.4109, position (cm) = (80.4603,-68.7305,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 1.16746, position (cm) = (78.5351,-61.9852,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.166392, position (cm) = (69.0385,-66.2923,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.305569, position (cm) = (86.92,-61.2079,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.941326, position (cm) = (76.2217,-60.9762,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.151204, position (cm) = (85.1523,-65.5999,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 19.9183, position (cm) = (73.6712,-77.2854,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 19.9183, position (cm) = (73.6712,-77.2854,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.125311, position (cm) = (61.7795,-56.3247,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.337534, position (cm) = (65.7564,-85.4055,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 6.65175, position (cm) = (67.4801,-88.7445,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 0.121619, position (cm) = (76.9827,-71.3277,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 4.36993, position (cm) = (99.7517,-88.0682,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 4.01952, position (cm) = (65.7427,-75.8713,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.206733, position (cm) = (100.487,-64.954,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 24.0708, position (cm) = (109.357,-55.5831,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 2.33543, position (cm) = (81.379,-40.3937,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 3.09312, position (cm) = (65.555,-41.2933,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 26.5113, position (cm) = (89.0171,-38.2471,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 0.0458947, position (cm) = (90.7652,-50.5935,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 85.4961, position (cm) = (117.655,-80.206,200), weight = 0.0078125
- gamma, kinetic energy (MeV) = 0.218291, position (cm) = (110.554,16.0783,200), weight = 0.00390625
- gamma, kinetic energy (MeV) = 0.0598689, position (cm) = (112.435,19.2233,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 3.47324, position (cm) = (122.44,13.9179,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 53.5653, position (cm) = (103.82,18.6124,200), weight = 0.00390625
- gamma, kinetic energy (MeV) = 1.27946, position (cm) = (105.292,23.1842,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 40.0606, position (cm) = (17.1373,-174.502,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.0979176, position (cm) = (22.3466,-182.606,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 40.9836, position (cm) = (20.6326,-185.394,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.1236, position (cm) = (22.4859,-180.229,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 3.08712, position (cm) = (22.7488,-184.248,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 3.06848, position (cm) = (8.81984,-185.843,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 40.6735, position (cm) = (18.0744,-186.454,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 39.7988, position (cm) = (8.49621,-187.25,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 39.7988, position (cm) = (8.49621,-187.25,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 39.7851, position (cm) = (8.36116,-187.369,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 0.835309, position (cm) = (-4.95155,-205.02,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 11.077, position (cm) = (63.5029,-234.213,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.0451873, position (cm) = (52.2911,-214.031,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 8.29742e-06, position (cm) = (51.3398,-181.525,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.305115, position (cm) = (36.3443,-193.847,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 13.8852, position (cm) = (40.7622,-184.558,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 13.8852, position (cm) = (40.7622,-184.558,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.27921, position (cm) = (39.1751,-130.149,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.199123, position (cm) = (35.7689,-169.803,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.729585, position (cm) = (16.7694,-167.577,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.386187, position (cm) = (10.8575,-168.967,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 2.40539, position (cm) = (17.8996,-159.854,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 6.59665, position (cm) = (16.8492,-167.671,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 13.443, position (cm) = (16.7461,-167.594,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 4.27945, position (cm) = (26.2883,-149.255,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 1.63905, position (cm) = (25.5231,-162.266,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 1.08011, position (cm) = (26.1159,-146.061,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.392702, position (cm) = (16.7421,-168.452,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.406317, position (cm) = (11.3191,-166.668,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 2.72609, position (cm) = (14.962,-170.064,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.256907, position (cm) = (8.43918,-166.485,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 13.6516, position (cm) = (10.8779,-165.313,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 13.6516, position (cm) = (10.8779,-165.313,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 13.6516, position (cm) = (10.8779,-165.313,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 13.2615, position (cm) = (19.364,-171.708,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 0.123645, position (cm) = (20.0341,-173.159,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 3.29639, position (cm) = (49.2332,-189.1,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 6.07273, position (cm) = (38.3878,-174.59,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.914114, position (cm) = (34.9918,-176.803,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 0.536506, position (cm) = (39.581,-181.187,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 22.2268, position (cm) = (33.4059,-178.994,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 22.5174, position (cm) = (39.2763,-178.167,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 4.49718, position (cm) = (-2.56157,-115.405,200), weight = 0.0078125
- neutron, kinetic energy (MeV) = 56.277, position (cm) = (24.7587,-90.4476,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 56.1847, position (cm) = (22.6267,-87.0074,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 56.1847, position (cm) = (22.6267,-87.0074,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 0.120497, position (cm) = (-12.1297,-97.8662,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 51.3678, position (cm) = (-11.6872,-111.212,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 2.53014, position (cm) = (-11.6473,-150.247,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 0.113494, position (cm) = (26.2333,-112.839,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 0.00011618, position (cm) = (58.2078,-108.695,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 2.71356, position (cm) = (56.3695,-114.721,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 24.4758, position (cm) = (52.6412,-106.334,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.179849, position (cm) = (52.8191,-116.901,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 2.7503, position (cm) = (52.2381,-109.697,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 21.7968, position (cm) = (53.7579,-115.177,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 86.0657, position (cm) = (61.5505,-113.122,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.504527, position (cm) = (39.2194,-106.333,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.118993, position (cm) = (58.6575,-105.253,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 1.42597, position (cm) = (56.777,-107.753,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 7.75968, position (cm) = (37.4029,-106.267,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 10.1927, position (cm) = (50.1111,-94.2674,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.0963934, position (cm) = (50.3878,-76.9895,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 51.0132, position (cm) = (84.0511,-71.8966,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 51.1133, position (cm) = (84.6475,-71.8548,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 51.1133, position (cm) = (84.6475,-71.8548,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 1.2595, position (cm) = (66.4588,-72.8971,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.790469, position (cm) = (46.8945,-60.2154,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 38.1257, position (cm) = (68.6974,-70.6105,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 38.1257, position (cm) = (68.6974,-70.6105,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.483505, position (cm) = (64.0457,-75.723,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 4.5058, position (cm) = (64.5604,-74.2999,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 0.0508488, position (cm) = (61.8296,-71.4215,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 68.1863, position (cm) = (64.5358,-86.604,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.0946251, position (cm) = (42.3004,-85.7094,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 85.3656, position (cm) = (43.9835,-101.733,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 85.3656, position (cm) = (43.9835,-101.733,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 85.4105, position (cm) = (42.0407,-91.2974,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 86.3061, position (cm) = (43.0053,-98.6061,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 86.162, position (cm) = (42.4821,-98.7329,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 2.6176, position (cm) = (49.2404,-101.682,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 48.4143, position (cm) = (48.8093,-94.5408,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 46.1031, position (cm) = (-31.9914,54.3575,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 23.2441, position (cm) = (-35.0691,61.8327,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 23.2441, position (cm) = (-35.0691,61.8327,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 36.5347, position (cm) = (17.9028,11.1779,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 36.7969, position (cm) = (17.7774,12.2687,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 36.7969, position (cm) = (17.7774,12.2687,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.185591, position (cm) = (4.62935,16.8035,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.121016, position (cm) = (-7.11151,-3.45191,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.715033, position (cm) = (8.65003,-28.124,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 4.14879, position (cm) = (3.91431,24.0109,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 0.261577, position (cm) = (-0.943163,-183.818,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.433924, position (cm) = (10.467,-241.859,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 1.10507, position (cm) = (-11.1787,-280.866,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.562237, position (cm) = (41.1821,-72.489,200), weight = 0.0078125
- neutron, kinetic energy (MeV) = 0.0148236, position (cm) = (-140.959,109.088,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.548326, position (cm) = (-118.192,102.754,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.310951, position (cm) = (-69.1399,62.8435,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.245239, position (cm) = (-164.813,159.098,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 51.9962, position (cm) = (-174.701,187.451,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.152297, position (cm) = (-148.932,237,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 4.9198, position (cm) = (-149.743,230.344,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.127564, position (cm) = (-156.154,225.993,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 6.36012, position (cm) = (-156.62,226.304,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 12.7787, position (cm) = (-156.218,226.28,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.451289, position (cm) = (-182.686,177.156,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.423449, position (cm) = (-182.795,203.24,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 30.1688, position (cm) = (-176.07,177.585,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.361235, position (cm) = (-109.288,139.255,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.845077, position (cm) = (-125.949,146.057,200), weight = 3.72529e-09
- neutron, kinetic energy (MeV) = 0.0341998, position (cm) = (-128.205,148.261,200), weight = 3.72529e-09
- neutron, kinetic energy (MeV) = 22.0638, position (cm) = (-131.54,152.735,200), weight = 3.72529e-09
- gamma, kinetic energy (MeV) = 0.892056, position (cm) = (-141.944,152.088,200), weight = 9.31323e-10
- neutron, kinetic energy (MeV) = 2.8921, position (cm) = (-152.915,148.921,200), weight = 4.65661e-10
- neutron, kinetic energy (MeV) = 10.109, position (cm) = (-145.079,147.058,200), weight = 9.31323e-10
- gamma, kinetic energy (MeV) = 0.544545, position (cm) = (-123.759,142.613,200), weight = 3.72529e-09
- gamma, kinetic energy (MeV) = 1.0466, position (cm) = (-138.54,123.594,200), weight = 3.72529e-09
- gamma, kinetic energy (MeV) = 0.803383, position (cm) = (-134.266,155.654,200), weight = 3.72529e-09
- neutron, kinetic energy (MeV) = 1.79292, position (cm) = (-144.869,138.91,200), weight = 3.72529e-09
- gamma, kinetic energy (MeV) = 1.22519, position (cm) = (-139.544,130.578,200), weight = 3.72529e-09
- gamma, kinetic energy (MeV) = 0.220921, position (cm) = (-96.306,139.92,200), weight = 1.86265e-09
- neutron, kinetic energy (MeV) = 0.000227281, position (cm) = (-118.05,127.037,200), weight = 1.86265e-09
- neutron, kinetic energy (MeV) = 2.61052, position (cm) = (-110.484,135.578,200), weight = 1.86265e-09
- gamma, kinetic energy (MeV) = 0.57053, position (cm) = (-123.776,143.84,200), weight = 7.45058e-09
- neutron, kinetic energy (MeV) = 3.39034e-05, position (cm) = (-162.068,177.603,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 19.1767, position (cm) = (-103.166,123.621,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.0923419, position (cm) = (-114.695,134.847,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 21.3543, position (cm) = (-97.1259,165.645,200), weight = 1.49012e-08
- gamma, kinetic energy (MeV) = 0.153738, position (cm) = (-90.4286,143.466,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 0.185299, position (cm) = (-95.2443,138.209,200), weight = 1.49012e-08
- gamma, kinetic energy (MeV) = 3.35393, position (cm) = (-93.726,137.413,200), weight = 1.49012e-08
- gamma, kinetic energy (MeV) = 2.73857, position (cm) = (-84.0476,133.636,200), weight = 1.49012e-08
- gamma, kinetic energy (MeV) = 7.33833, position (cm) = (-117.493,119.969,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.776665, position (cm) = (-132.534,123.429,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 6.24286, position (cm) = (-132.355,138.397,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 21.6577, position (cm) = (-126.22,131.427,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.0629686, position (cm) = (-125.7,125.206,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 21.3543, position (cm) = (-135.498,132.972,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 20.498, position (cm) = (-122.862,113.662,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 21.4149, position (cm) = (-129.197,122.973,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 2.55189, position (cm) = (-100.792,143.576,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 8.93903, position (cm) = (-108.821,171.886,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 51.6854, position (cm) = (-121.458,178.331,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 52.1129, position (cm) = (-122.817,178.985,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 47.1571, position (cm) = (-55.0569,134.694,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 47.1571, position (cm) = (-55.0569,134.694,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.112864, position (cm) = (-109.104,53.7459,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 0.00526045, position (cm) = (-69.7918,55.4386,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 0.500237, position (cm) = (-76.9897,53.9493,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 2.15832, position (cm) = (-79.7102,88.132,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 3.12428, position (cm) = (-81.1016,95.7563,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 1.83675, position (cm) = (-80.3139,92.6782,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 65.5711, position (cm) = (-71.4677,96.5055,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 0.00638688, position (cm) = (-47.203,72.7198,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.404096, position (cm) = (-61.5948,68.4432,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 5.29932, position (cm) = (-10.1635,-3.15451,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 0.428612, position (cm) = (-15.8979,-15.0301,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 5.29932, position (cm) = (-10.1635,-3.15451,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 1.90302, position (cm) = (24.2366,-2.9813,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 1.77269, position (cm) = (-18.6337,-5.04959,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.00678968, position (cm) = (-2.92392,-2.47937,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 7.58919, position (cm) = (-55.8077,-55.3652,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.167409, position (cm) = (-57.0673,-51.0522,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.696436, position (cm) = (-54.3413,-51.8114,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.843053, position (cm) = (-56.0889,-47.5034,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 7.81102, position (cm) = (-57.8605,-50.8793,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 7.81102, position (cm) = (-57.8605,-50.8793,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.0992064, position (cm) = (9.74376,-10.5761,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 22.7262, position (cm) = (-0.128363,-8.61897,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 12.4935, position (cm) = (-41.48,-28.2932,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 25.7553, position (cm) = (-44.6681,-30.555,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 1.29398, position (cm) = (-49.3159,-21.4503,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 5.94244, position (cm) = (-46.1912,-19.3844,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.116733, position (cm) = (-42.1573,-27.0497,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 2.06065, position (cm) = (-49.7849,-27.142,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.159421, position (cm) = (-53.2575,-27.0891,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 1.84317, position (cm) = (-18.6237,23.8971,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.139491, position (cm) = (-62.6877,-47.8776,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 20.149, position (cm) = (37.4607,-79.6225,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 4.61404e-05, position (cm) = (42.6026,-77.965,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 0.00141217, position (cm) = (47.251,-75.6243,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 1.03202, position (cm) = (45.4738,-46.8066,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.0766951, position (cm) = (59.8229,-86.5022,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 1.79225e-06, position (cm) = (48.8566,-113.865,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 3.20865, position (cm) = (88.0372,-119.221,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 4.20916, position (cm) = (63.9022,-61.1081,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.107134, position (cm) = (53.9743,-92.6628,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 1.75658, position (cm) = (79.4048,-79.372,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.189102, position (cm) = (1.43311,-86.251,200), weight = 1.86265e-09
- gamma, kinetic energy (MeV) = 0.304838, position (cm) = (-14.9192,-68.165,200), weight = 1.86265e-09
- gamma, kinetic energy (MeV) = 0.104724, position (cm) = (4.3298,-74.4943,200), weight = 4.65661e-10
- gamma, kinetic energy (MeV) = 0.102327, position (cm) = (-2.96151,-75.5684,200), weight = 2.32831e-10
- gamma, kinetic energy (MeV) = 0.080431, position (cm) = (4.20255,-83.7768,200), weight = 2.32831e-10
- neutron, kinetic energy (MeV) = 1.58851, position (cm) = (2.04655,-68.4239,200), weight = 1.16415e-10
- gamma, kinetic energy (MeV) = 6.48919, position (cm) = (17.4579,-60.568,200), weight = 1.16415e-10
- neutron, kinetic energy (MeV) = 0.0918167, position (cm) = (8.50008,-73.0538,200), weight = 1.16415e-10
- gamma, kinetic energy (MeV) = 1.3354, position (cm) = (8.07438,-91.0537,200), weight = 1.16415e-10
- neutron, kinetic energy (MeV) = 4.76348, position (cm) = (10.9821,-75.9407,200), weight = 1.16415e-10
- neutron, kinetic energy (MeV) = 22.3707, position (cm) = (-0.593,-77.4998,200), weight = 1.16415e-10
- neutron, kinetic energy (MeV) = 22.3271, position (cm) = (-6.3637,-76.0406,200), weight = 2.32831e-10
- gamma, kinetic energy (MeV) = 0.109354, position (cm) = (9.8659,-87.9146,200), weight = 4.65661e-10
- neutron, kinetic energy (MeV) = 11.007, position (cm) = (7.10592,-80.9606,200), weight = 2.32831e-10
- gamma, kinetic energy (MeV) = 0.0967857, position (cm) = (10.1365,-75.2785,200), weight = 7.45058e-09
- gamma, kinetic energy (MeV) = 0.271102, position (cm) = (10.1482,-83.8457,200), weight = 7.45058e-09
- gamma, kinetic energy (MeV) = 1.49756, position (cm) = (-7.64201,-93.7986,200), weight = 7.45058e-09
- gamma, kinetic energy (MeV) = 0.283541, position (cm) = (11.5477,-83.2889,200), weight = 7.45058e-09
- gamma, kinetic energy (MeV) = 0.3128, position (cm) = (11.746,-83.7437,200), weight = 7.45058e-09
- neutron, kinetic energy (MeV) = 2.90083, position (cm) = (14.8911,-82.044,200), weight = 7.45058e-09
- gamma, kinetic energy (MeV) = 0.10262, position (cm) = (62.4085,-88.5669,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 2.47475, position (cm) = (55.7205,-78.7402,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.153075, position (cm) = (55.4123,-78.078,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 3.10055, position (cm) = (41.6826,-73.1895,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 27.1182, position (cm) = (59.9537,-79.6248,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 24.9886, position (cm) = (60.0621,-78.1158,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 1.04701, position (cm) = (-12.111,20.2441,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 1.07841, position (cm) = (75.4412,-13.4859,200), weight = 9.53674e-07
- e+, kinetic energy (MeV) = 2.56378, position (cm) = (41.9342,-98.9516,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.191304, position (cm) = (28.6342,-109.789,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 0.000382873, position (cm) = (1.88204,-72.4706,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 3.2318, position (cm) = (27.7801,-45.1033,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 2.33884, position (cm) = (10.8574,-45.116,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 48.0645, position (cm) = (35.4654,-47.8613,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 51.5708, position (cm) = (38.9997,-42.8556,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 51.5708, position (cm) = (38.9997,-42.8556,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 51.0944, position (cm) = (39.3519,-44.9198,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 53.0197, position (cm) = (66.8439,-52.7997,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 52.7448, position (cm) = (66.708,-53.8588,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 53.1042, position (cm) = (64.8422,-51.8776,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 23.3315, position (cm) = (58.5596,-47.2448,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 1.00491, position (cm) = (15.5454,-84.3961,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 0.857168, position (cm) = (4.33418,-78.4458,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 13.9319, position (cm) = (34.0412,-83.224,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 54.2091, position (cm) = (28.9876,-54.3294,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 54.5514, position (cm) = (29.948,-50.919,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 54.5514, position (cm) = (29.948,-50.919,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.0979501, position (cm) = (28.267,-11.0049,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.629775, position (cm) = (28.0389,-12.1589,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 1.4498, position (cm) = (17.8669,-70.571,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.0866846, position (cm) = (38.2197,-64.5323,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 1.20572, position (cm) = (18.2882,-38.9299,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 0.320143, position (cm) = (15.0687,-58.657,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.228574, position (cm) = (6.85102,-57.2973,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 3.8392, position (cm) = (7.3837,-56.1268,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 3.62794, position (cm) = (-0.547147,-45.1699,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.756137, position (cm) = (8.85882,-65.3139,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.0824466, position (cm) = (16.6371,-51.8486,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 5.49281, position (cm) = (-9.15723,-68.0364,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 5.49281, position (cm) = (-9.15723,-68.0364,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 9.40035, position (cm) = (16.1584,-48.6144,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.142308, position (cm) = (16.4262,-50.6873,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 35.6326, position (cm) = (20.5198,-52.6518,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 54.8043, position (cm) = (14.8625,-53.2916,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.315815, position (cm) = (36.2514,-5.93109,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 2.97543, position (cm) = (24.9481,-4.22841,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 2.89429, position (cm) = (27.0728,9.13312,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 19.3587, position (cm) = (36.2327,-5.99338,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 52.8692, position (cm) = (36.3172,-5.99584,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 52.8639, position (cm) = (-9.0851,-16.6377,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 53.2297, position (cm) = (-6.1932,-15.0179,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 53.2297, position (cm) = (-6.1932,-15.0179,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 53.4629, position (cm) = (-5.43678,-16.5023,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.131906, position (cm) = (7.77222,-15.1951,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.766926, position (cm) = (2.67946,-1.16638,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.0686953, position (cm) = (2.60082,-14.7775,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.776697, position (cm) = (6.99416,18.541,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 53.8859, position (cm) = (-3.54392,-21.0164,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.412259, position (cm) = (-71.7119,-120.784,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 52.4966, position (cm) = (-73.311,-102.669,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 51.81, position (cm) = (-72.4691,-96.7319,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 5.74357, position (cm) = (-8.4467,-83.3055,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 5.74357, position (cm) = (-8.4467,-83.3055,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 0.796114, position (cm) = (-54.2851,-8.32668,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 1.37179, position (cm) = (-17.8922,-50.2362,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 31.0343, position (cm) = (-28.4887,-109.876,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.57446, position (cm) = (-20.4146,-72.3542,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.137915, position (cm) = (-9.75569,-95.8046,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 7.39517, position (cm) = (-13.8143,-93.0344,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 4.16585e-06, position (cm) = (-16.2579,-52.0082,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 2.83859, position (cm) = (-17.518,-69.1858,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 2.78429, position (cm) = (-7.90121,-76.4238,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.325613, position (cm) = (-16.5265,-75.7579,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 38.0687, position (cm) = (-15.4935,-85.867,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 38.0687, position (cm) = (-15.4935,-85.867,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.600158, position (cm) = (-9.0603,-20.3682,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 1.83289, position (cm) = (-20.8929,-66.4765,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.413354, position (cm) = (3.84304,-81.1694,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 2.25696, position (cm) = (-6.96478,-96.7336,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.978423, position (cm) = (-83.7958,-32.0392,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 20.5192, position (cm) = (-55.2856,-24.5256,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 19.2856, position (cm) = (-55.5198,-24.6287,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.121624, position (cm) = (-49.0728,-52.1765,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 2.72263, position (cm) = (-56.3827,-30.0761,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 70.2163, position (cm) = (-34.1297,-18.5285,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.118235, position (cm) = (-46.7133,-38.5634,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.825522, position (cm) = (-31.8307,3.68665,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 14.4103, position (cm) = (-41.8468,12.0768,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 0.0540575, position (cm) = (-147.472,-93.7148,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.000772736, position (cm) = (-65.1846,-113.059,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 3.00834, position (cm) = (-48.3581,-112.361,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.245086, position (cm) = (-31.6888,-96.6643,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 0.656305, position (cm) = (-34.8233,-117.433,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.0721557, position (cm) = (-41.0781,-129.553,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.0956989, position (cm) = (-40.5889,-127.543,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 1.2617, position (cm) = (-41.2157,-129.589,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 2.38806, position (cm) = (-41.1516,-129.933,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.804589, position (cm) = (-17.7784,-97.1578,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.534735, position (cm) = (-44.2733,-97.6449,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.28058, position (cm) = (-31.3008,-114.702,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 1.2304, position (cm) = (-38.9404,-114.573,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.17331, position (cm) = (-40.5723,-118.418,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 8.41377, position (cm) = (28.5107,-84.5922,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 30.5786, position (cm) = (-31.0921,-112.54,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 1.65389, position (cm) = (-35.4708,-114.026,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 2.57873e-07, position (cm) = (-49.2781,-90.274,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.534942, position (cm) = (-30.6661,-119.975,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 2.94307, position (cm) = (-28.4182,-115.872,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 31.2458, position (cm) = (-40.3742,-115.246,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 31.2458, position (cm) = (-40.3742,-115.246,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 31.2458, position (cm) = (-40.3742,-115.246,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 31.2458, position (cm) = (-40.3742,-115.246,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.573034, position (cm) = (22.1448,-138.994,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.173096, position (cm) = (-35.2384,-144.142,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 7.52892, position (cm) = (-35.484,-144.892,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 30.754, position (cm) = (-33.2907,-150.373,200), weight = 1.49012e-08
- gamma, kinetic energy (MeV) = 0.0726786, position (cm) = (-23.2031,-146.124,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 0.512637, position (cm) = (-26.8608,-143.955,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 10.017, position (cm) = (-29.0269,-154.434,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 0.146282, position (cm) = (-34.2836,-146.713,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 3.72504, position (cm) = (-34.3009,-146.802,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 9.44352, position (cm) = (-43.8164,-158.455,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 0.252005, position (cm) = (-41.1912,-131.538,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 1.7013, position (cm) = (-37.2717,-124.341,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 0.076958, position (cm) = (-44.3131,-126.771,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 30.8584, position (cm) = (-38.8774,-154.22,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.122161, position (cm) = (-40.7001,-125.583,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 4.23733, position (cm) = (-39.2006,-113.216,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.165948, position (cm) = (-18.7433,-29.2868,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 1.87889, position (cm) = (28.0153,-61.1303,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.202844, position (cm) = (-39.8721,-35.8596,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.187826, position (cm) = (-61.1288,4.01192,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 7.12943, position (cm) = (-66.9642,-6.93055,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 1.34766, position (cm) = (-78.411,-20.5684,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 25.2268, position (cm) = (-67.793,-24.394,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 23.0315, position (cm) = (-5.13664,10.4076,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 0.00536315, position (cm) = (4.32312,7.92666,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 5.70587, position (cm) = (-9.9217,10.39,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 3.28624, position (cm) = (-33.7594,2.46922,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 1.77708, position (cm) = (-9.97498,-2.90089,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 3.58422, position (cm) = (-33.0117,7.86594,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 2.17072, position (cm) = (-33.0088,7.74753,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 2.96004, position (cm) = (-35.7382,14.3491,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 1.51889, position (cm) = (-17.7551,-1.27611,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.184588, position (cm) = (9.18972,25.7775,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 24.297, position (cm) = (-17.1447,22.0615,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 0.044899, position (cm) = (-22.1645,13.9604,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 24.1487, position (cm) = (-16.8348,28.7577,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 24.1487, position (cm) = (-16.8348,28.7577,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 5.51439, position (cm) = (-22.4465,-9.21948,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.122176, position (cm) = (-25.9047,-8.58214,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 0.276781, position (cm) = (-25.5511,-8.12534,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.224937, position (cm) = (-25.2794,-11.1196,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 15.9212, position (cm) = (-28.43,-8.39313,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 15.9212, position (cm) = (-28.43,-8.39313,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 0.0501857, position (cm) = (-37.1034,-6.37548,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 0.000399822, position (cm) = (-46.3643,-16.6001,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.354999, position (cm) = (-32.6353,-5.8217,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.105396, position (cm) = (-64.1245,-45.8526,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 5.79641, position (cm) = (-211.585,22.2847,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 9.81185, position (cm) = (-228.725,59.9469,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.227861, position (cm) = (-196.597,92.1045,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 1.43829, position (cm) = (-208.446,83.2375,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 0.636057, position (cm) = (-226.068,65.0574,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 0.0447544, position (cm) = (-217.598,43.3593,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 0.062956, position (cm) = (-244.354,62.8952,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 5.1255, position (cm) = (-250.157,63.311,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 14.9675, position (cm) = (-246.904,58.5554,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 1.06546, position (cm) = (-237.888,48.2313,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.623625, position (cm) = (-232.781,83.0342,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 0.000935705, position (cm) = (-232.615,66.7263,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 2.66476, position (cm) = (-248.634,63.1855,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.193987, position (cm) = (-232.295,74.5297,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.72341, position (cm) = (-233.905,32.3839,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 2.4719, position (cm) = (-228.089,52.2884,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.82594, position (cm) = (-201.032,60.3835,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 48.7183, position (cm) = (-217.369,66.2016,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 48.6729, position (cm) = (-222.599,66.1629,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 48.3945, position (cm) = (-221.222,63.1688,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 27.6785, position (cm) = (-220.519,61.7725,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 27.6785, position (cm) = (-220.519,61.7725,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 27.6785, position (cm) = (-220.519,61.7725,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 28.4025, position (cm) = (-222.444,63.6144,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.334554, position (cm) = (-221.919,85.086,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 3.0092, position (cm) = (-218.323,63.7927,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 9.89428e-05, position (cm) = (-217.67,62.2334,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 1.23169, position (cm) = (-195.039,56.7961,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 2.12866, position (cm) = (-195.187,58.8473,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 1.35001, position (cm) = (-275.18,113.515,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 21.8325, position (cm) = (-287.484,119.277,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 8.11807e-07, position (cm) = (-277.996,135.171,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.00131732, position (cm) = (-238.847,140.617,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 0.0718198, position (cm) = (-278.094,75.6167,200), weight = 4.65661e-10
- neutron, kinetic energy (MeV) = 2.83505e-05, position (cm) = (-283.181,97.2566,200), weight = 9.31323e-10
- gamma, kinetic energy (MeV) = 0.591883, position (cm) = (-270.528,118.757,200), weight = 9.31323e-10
- gamma, kinetic energy (MeV) = 0.167796, position (cm) = (-278.672,109.459,200), weight = 9.31323e-10
- gamma, kinetic energy (MeV) = 0.180725, position (cm) = (-283.492,101.054,200), weight = 9.31323e-10
- neutron, kinetic energy (MeV) = 0.139663, position (cm) = (-281.771,123.966,200), weight = 9.31323e-10
- gamma, kinetic energy (MeV) = 1.03322, position (cm) = (-287.639,103.117,200), weight = 9.31323e-10
- gamma, kinetic energy (MeV) = 0.11135, position (cm) = (-276.522,112.022,200), weight = 2.32831e-10
- gamma, kinetic energy (MeV) = 0.227349, position (cm) = (-268.609,113.382,200), weight = 2.32831e-10
- neutron, kinetic energy (MeV) = 6.26172, position (cm) = (-275.236,108.621,200), weight = 5.82077e-11
- neutron, kinetic energy (MeV) = 6.26172, position (cm) = (-275.236,108.621,200), weight = 5.82077e-11
- neutron, kinetic energy (MeV) = 8.99848e-08, position (cm) = (-286.108,126.754,200), weight = 1.16415e-10
- gamma, kinetic energy (MeV) = 3.08262, position (cm) = (-274.776,114.84,200), weight = 1.16415e-10
- neutron, kinetic energy (MeV) = 2.54752, position (cm) = (-279.333,118.937,200), weight = 2.32831e-10
- neutron, kinetic energy (MeV) = 0.00742673, position (cm) = (-279.624,100.339,200), weight = 3.72529e-09
- gamma, kinetic energy (MeV) = 0.200051, position (cm) = (-276.808,106.806,200), weight = 3.72529e-09
- neutron, kinetic energy (MeV) = 27.2902, position (cm) = (-295.799,108.937,200), weight = 3.72529e-09
- gamma, kinetic energy (MeV) = 0.327099, position (cm) = (-292.995,100.074,200), weight = 3.72529e-09
- gamma, kinetic energy (MeV) = 0.105406, position (cm) = (-245.623,123.566,200), weight = 1.86265e-09
- neutron, kinetic energy (MeV) = 5.99225, position (cm) = (-243.369,122.074,200), weight = 4.65661e-10
- gamma, kinetic energy (MeV) = 0.419464, position (cm) = (-261.632,122.877,200), weight = 4.65661e-10
- neutron, kinetic energy (MeV) = 2.37244, position (cm) = (-249.283,116.022,200), weight = 4.65661e-10
- gamma, kinetic energy (MeV) = 2.55022, position (cm) = (-245.172,115.65,200), weight = 4.65661e-10
- neutron, kinetic energy (MeV) = 1.41169, position (cm) = (-269.218,99.6252,200), weight = 1.86265e-09
- gamma, kinetic energy (MeV) = 1.30961, position (cm) = (-261.281,99.9659,200), weight = 1.86265e-09
- gamma, kinetic energy (MeV) = 3.15207, position (cm) = (-269.99,97.2532,200), weight = 1.86265e-09
- gamma, kinetic energy (MeV) = 0.506986, position (cm) = (-265.097,92.9143,200), weight = 9.31323e-10
- neutron, kinetic energy (MeV) = 2.47423, position (cm) = (-263.011,98.3769,200), weight = 9.31323e-10
- neutron, kinetic energy (MeV) = 0.00252111, position (cm) = (-271.178,107.182,200), weight = 9.31323e-10
- neutron, kinetic energy (MeV) = 1.79225, position (cm) = (-275.97,101.604,200), weight = 1.86265e-09
- gamma, kinetic energy (MeV) = 4.15051, position (cm) = (-210.84,96.1832,200), weight = 1.86265e-09
- gamma, kinetic energy (MeV) = 0.282781, position (cm) = (-250.024,141.596,200), weight = 1.86265e-09
- neutron, kinetic energy (MeV) = 2.53348, position (cm) = (-241.23,136.372,200), weight = 9.31323e-10
- neutron, kinetic energy (MeV) = 31.9271, position (cm) = (-274.843,110.976,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 6.33644e-07, position (cm) = (-231.004,123.782,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 2.49222e-06, position (cm) = (-318.506,100.143,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 4.82601, position (cm) = (-295.557,117.036,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.0886104, position (cm) = (-294.194,120.616,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 1.67601, position (cm) = (-284.958,116.919,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 0.172066, position (cm) = (-291.762,111.489,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.116686, position (cm) = (-284.954,97.1432,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 1.89202, position (cm) = (-296.718,112.589,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 4.32688, position (cm) = (-324.833,114.45,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.449836, position (cm) = (-285.956,110.726,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 3.63839, position (cm) = (-296.398,99.7849,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 68.3225, position (cm) = (-322.246,137.947,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.49029, position (cm) = (-320.643,137.848,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 1.14528, position (cm) = (-322.057,137.879,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 4.90389, position (cm) = (-322.073,138.191,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.128433, position (cm) = (-314.454,132.556,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.510999, position (cm) = (-331.729,131.773,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 40.4244, position (cm) = (-349.612,155.158,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 40.4244, position (cm) = (-349.612,155.158,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 39.7375, position (cm) = (-348.605,154.125,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 4.9135, position (cm) = (-251.55,131.664,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 0.569103, position (cm) = (-258.962,121.91,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 1.63951, position (cm) = (-240.224,97.7758,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 4.0177, position (cm) = (-209.635,81.5217,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 20.5731, position (cm) = (-292.595,124.468,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 20.9316, position (cm) = (-293.367,124.574,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 20.9316, position (cm) = (-293.367,124.574,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 20.9316, position (cm) = (-293.367,124.574,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.130551, position (cm) = (-277.315,126.51,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.0645301, position (cm) = (-254.607,120.34,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 70.1786, position (cm) = (-255.041,105.745,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 1.66993, position (cm) = (-247.028,95.2036,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 4.6703e-05, position (cm) = (-255.111,96.693,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.130168, position (cm) = (-254.97,98.8014,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 1.96775, position (cm) = (-253.877,108.005,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 68.0919, position (cm) = (-247.872,90.2609,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 0.120071, position (cm) = (-249.217,82.208,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 55.277, position (cm) = (-246.086,85.6832,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 34.0211, position (cm) = (-230.898,95.03,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 34.1345, position (cm) = (-230.557,94.4411,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 68.4243, position (cm) = (-242.698,92.2962,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 69.0452, position (cm) = (-244.619,92.5047,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 69.2351, position (cm) = (-244.567,92.5548,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 1.2538, position (cm) = (-243.397,115.927,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 3.11653, position (cm) = (-243.391,115.906,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 48.773, position (cm) = (-260.321,176.483,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 49.0914, position (cm) = (-261.174,177.623,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 49.0533, position (cm) = (-260.168,180.053,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 4.84325, position (cm) = (-261.83,168.247,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.217453, position (cm) = (-260.929,166.55,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 3.52792, position (cm) = (-267.493,171.891,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.166514, position (cm) = (-254.789,186.28,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 33.2086, position (cm) = (-266.941,175.138,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 25.262, position (cm) = (-272.649,187.674,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.12567, position (cm) = (-242.652,116.384,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 27.1975, position (cm) = (-243.774,116.344,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 26.4345, position (cm) = (-238.26,115.893,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.189297, position (cm) = (-244.59,104.529,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 0.00352101, position (cm) = (-239.873,109.971,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 7.23564, position (cm) = (-238.58,115.739,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 0.261222, position (cm) = (-227.517,118.896,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 16.5518, position (cm) = (-255.681,118.599,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.375137, position (cm) = (-241.714,90.7633,200), weight = 9.53674e-07
- proton, kinetic energy (MeV) = 32.7407, position (cm) = (-242.634,90.8514,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 70.4192, position (cm) = (-242.495,90.4496,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 47.3564, position (cm) = (-236.615,108.848,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 47.038, position (cm) = (-232.656,107.16,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 70.0141, position (cm) = (-262.546,142.576,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 59.82, position (cm) = (-258.827,112.001,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 6.24017e-07, position (cm) = (-260.834,133.853,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 1.80351, position (cm) = (-191.393,60.6082,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 0.0651225, position (cm) = (-239.661,149.864,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.133718, position (cm) = (-232.628,143.179,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.0640793, position (cm) = (-231.32,148.254,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.080403, position (cm) = (-239.744,169.732,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.16904, position (cm) = (-243.544,168.844,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 6.35653, position (cm) = (-181.797,68.963,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 6.34873, position (cm) = (-236.425,88.1169,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 5.98402, position (cm) = (-236.747,90.0299,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 0.892876, position (cm) = (-235.78,82.4031,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 95.6259, position (cm) = (-194.985,129.791,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 93.3145, position (cm) = (-156.557,104.814,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 93.3145, position (cm) = (-156.557,104.814,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 93.2197, position (cm) = (-160.157,106.484,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 93.0515, position (cm) = (-160.748,108.084,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 97.116, position (cm) = (-173.509,26.8354,200), weight = 0.0078125
- neutron, kinetic energy (MeV) = 97.0995, position (cm) = (-186.032,30.0115,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 97.3059, position (cm) = (-187.042,28.7305,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 96.6824, position (cm) = (-185.28,29.5318,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 97.1893, position (cm) = (-185.324,28.8451,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 1.82697, position (cm) = (-185.271,27.6587,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 3.6924, position (cm) = (-186.077,28.7033,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 3.10264, position (cm) = (-184.91,28.9052,200), weight = 3.05176e-05
- proton, kinetic energy (MeV) = 17.3346, position (cm) = (-184.831,29.0028,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 48.6847, position (cm) = (-185.298,28.6031,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 64.6714, position (cm) = (-193.339,33.6371,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 97.3059, position (cm) = (-187.042,28.7305,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 97.3059, position (cm) = (-187.042,28.7305,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 1.87569, position (cm) = (-168.649,25.6359,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 5.77339, position (cm) = (-167.552,24.2752,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 59.4931, position (cm) = (-169.103,17.749,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 41.5355, position (cm) = (-155.184,-6.23478,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 41.2743, position (cm) = (-155.258,-4.85045,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 41.5097, position (cm) = (-152.884,-9.41689,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 41.5097, position (cm) = (-152.884,-9.41689,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 41.2248, position (cm) = (-154.556,-10.8937,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 1.85089, position (cm) = (-187.234,20.267,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.083841, position (cm) = (-168.448,-2.23697,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.500978, position (cm) = (-171.278,-7.23598,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.394451, position (cm) = (-187.314,28.6335,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 9.96369, position (cm) = (-170.364,-6.53351,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.150303, position (cm) = (-180.517,-25.0962,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.312074, position (cm) = (-165.423,-3.15375,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 2.86248, position (cm) = (-158.461,0.461933,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 0.000184022, position (cm) = (-159.908,-16.6354,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.220511, position (cm) = (-162.413,-0.688876,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 2.3217, position (cm) = (-161.103,0.272462,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 5.40862, position (cm) = (-159.508,0.760232,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 22.9923, position (cm) = (-165.284,14.4938,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.106499, position (cm) = (-159.027,15.4821,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.768214, position (cm) = (-160.529,19.013,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.731043, position (cm) = (-86.6038,-20.5516,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.620218, position (cm) = (-101.074,41.6884,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.726747, position (cm) = (-101.815,-10.3719,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.462868, position (cm) = (-84.7727,7.02516,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.400335, position (cm) = (-169.286,42.2057,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.192566, position (cm) = (-171.78,60.9374,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 5.06219, position (cm) = (-169.536,48.1435,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.336776, position (cm) = (-167.142,44.9946,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 0.000930617, position (cm) = (-178.55,39.075,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.101409, position (cm) = (-177.028,51.591,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 1.68935, position (cm) = (-176.72,51.6897,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 0.000179453, position (cm) = (-178.06,70.7025,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 35.3773, position (cm) = (-177.626,51.6357,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 35.3773, position (cm) = (-177.626,51.6357,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 35.3773, position (cm) = (-177.626,51.6357,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 33.9395, position (cm) = (-176.175,69.3805,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.216266, position (cm) = (-174.555,53.4161,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 0.0652663, position (cm) = (12.2703,-12.6599,200), weight = 0.015625
- neutron, kinetic energy (MeV) = 10.5595, position (cm) = (20.1571,0.0318309,200), weight = 0.015625
- neutron, kinetic energy (MeV) = 3.52572, position (cm) = (-15.6622,-33.5473,200), weight = 0.00390625
- gamma, kinetic energy (MeV) = 0.0714672, position (cm) = (-43.3802,-32.002,200), weight = 0.00390625
- gamma, kinetic energy (MeV) = 0.0959824, position (cm) = (-9.75405,-12.2378,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 0.20017, position (cm) = (-21.106,-19.2869,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 50.6975, position (cm) = (21.9635,-9.82669,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 50.759, position (cm) = (27.5191,-17.5217,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 50.759, position (cm) = (27.5191,-17.5217,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 50.759, position (cm) = (27.5191,-17.5217,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 50.6158, position (cm) = (28.7701,-18.0991,200), weight = 0.00390625
- gamma, kinetic energy (MeV) = 2.72026, position (cm) = (1.25496,32.5557,200), weight = 0.00390625
- gamma, kinetic energy (MeV) = 0.410649, position (cm) = (31.8863,-8.37085,200), weight = 0.00390625
- gamma, kinetic energy (MeV) = 0.700201, position (cm) = (26.2975,-13.6633,200), weight = 0.00390625
- gamma, kinetic energy (MeV) = 0.156406, position (cm) = (43.0335,-1.01638,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 1.27941, position (cm) = (23.9217,-1.16933,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 17.7386, position (cm) = (33.0321,-2.10924,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 17.7386, position (cm) = (33.0321,-2.10924,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 17.7386, position (cm) = (33.0321,-2.10924,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.0669208, position (cm) = (-6.34649,-34.6074,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 5.89113, position (cm) = (21.9081,8.45229,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 0.001163, position (cm) = (26.2861,7.21624,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 46.5665, position (cm) = (30.1109,-11.3395,200), weight = 0.00390625
- gamma, kinetic energy (MeV) = 2.47075, position (cm) = (30.0163,-7.99288,200), weight = 0.00390625
- gamma, kinetic energy (MeV) = 2.5711, position (cm) = (31.0769,-27.0562,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 6.68272, position (cm) = (15.5276,23.9447,200), weight = 0.00390625
- gamma, kinetic energy (MeV) = 0.334638, position (cm) = (27.5256,36.6136,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.435849, position (cm) = (17.0878,43.3081,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 1.56196, position (cm) = (19.5567,40.4041,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.512692, position (cm) = (24.8092,40.4558,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.0980799, position (cm) = (23.2331,36.8255,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 8.79638, position (cm) = (245.262,5.24676,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.193781, position (cm) = (244.462,18.1608,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 0.000316585, position (cm) = (225.188,10.4887,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 1.42205, position (cm) = (247.327,17.3166,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 0.000384487, position (cm) = (236.394,31.1037,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 9.67822, position (cm) = (233.428,11.6699,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.211951, position (cm) = (245.977,-11.38,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.2571, position (cm) = (245.44,8.55737,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 16.4682, position (cm) = (250.489,6.37675,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 16.4682, position (cm) = (250.489,6.37675,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.971862, position (cm) = (273.204,60.6477,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 5.56109e-06, position (cm) = (290.681,96.216,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 34.779, position (cm) = (259.361,85.562,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 4.30189, position (cm) = (262.857,81.7565,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 1.09507, position (cm) = (201.467,8.38689,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.382967, position (cm) = (283.804,36.8958,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 1.53556, position (cm) = (260.83,52.5193,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 18.1286, position (cm) = (252.174,54.8811,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 18.2783, position (cm) = (251.84,54.959,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 3.29063e-06, position (cm) = (262.559,43.9316,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 1.46094, position (cm) = (239.379,15.5233,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 48.5293, position (cm) = (245.366,34.0227,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 56.8672, position (cm) = (288.099,50.0185,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 56.8417, position (cm) = (286.709,47.7678,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 56.8417, position (cm) = (286.709,47.7678,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 2.0566, position (cm) = (284.066,54.9031,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 2.44424, position (cm) = (250.541,-78.6426,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 1.59022, position (cm) = (236.979,-42.9283,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 5.04308, position (cm) = (234.733,-62.3842,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 2.7262, position (cm) = (240.195,-50.1876,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 52.981, position (cm) = (128.074,95.6638,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 1.33291, position (cm) = (125.485,64.487,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 2.13806, position (cm) = (113.673,54.3089,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.110156, position (cm) = (136.853,98.114,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 2.52477, position (cm) = (129.588,92.8292,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.155682, position (cm) = (15.1065,-93.4958,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 2.16464, position (cm) = (89.4862,-170.849,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 2.82252, position (cm) = (96.8357,-130.213,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 6.65164, position (cm) = (105.341,-156.279,200), weight = 1.49012e-08
- gamma, kinetic energy (MeV) = 8.58682, position (cm) = (93.5173,-146.632,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 11.0654, position (cm) = (108.886,-183.749,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 11.2867, position (cm) = (108.328,-184.277,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 2.99208, position (cm) = (104.519,-179.875,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 2.58869, position (cm) = (97.244,-172.503,200), weight = 1.86265e-09
- neutron, kinetic energy (MeV) = 1.3267, position (cm) = (112.921,-155.729,200), weight = 3.72529e-09
- neutron, kinetic energy (MeV) = 0.156581, position (cm) = (98.4694,-181.274,200), weight = 7.45058e-09
- gamma, kinetic energy (MeV) = 0.605821, position (cm) = (103.407,-183.926,200), weight = 7.45058e-09
- neutron, kinetic energy (MeV) = 5.26258, position (cm) = (75.3699,-154.015,200), weight = 3.72529e-09
- neutron, kinetic energy (MeV) = 8.02549, position (cm) = (84.4821,-151.091,200), weight = 1.86265e-09
- gamma, kinetic energy (MeV) = 1.47745, position (cm) = (92.3705,-118.167,200), weight = 7.45058e-09
- neutron, kinetic energy (MeV) = 0.728708, position (cm) = (98.3674,-170.587,200), weight = 1.49012e-08
- gamma, kinetic energy (MeV) = 1.43244, position (cm) = (58.9131,-174.13,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 45.4985, position (cm) = (82.2563,-267.114,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 15.7523, position (cm) = (54.4453,-245.245,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.809408, position (cm) = (71.3864,-248.771,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 7.34011, position (cm) = (57.5027,-247.606,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.0747059, position (cm) = (37.582,-215.51,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.119835, position (cm) = (30.6781,-193.404,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.00229461, position (cm) = (-3.64642,-201.47,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.306308, position (cm) = (45.5761,-201.587,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 3.05995e-08, position (cm) = (36.7739,-193.899,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 59.7319, position (cm) = (84.3699,-193.783,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 2.14592, position (cm) = (79.5459,-191.151,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 20.5401, position (cm) = (77.6251,-193.471,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 20.9005, position (cm) = (77.2087,-194.147,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 20.5445, position (cm) = (76.6132,-194.77,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.139851, position (cm) = (87.3037,-193.028,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 3.2142, position (cm) = (80.0578,-196.89,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.317979, position (cm) = (41.786,-187.179,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 4.17077, position (cm) = (-22.7588,-39.8717,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 71.4374, position (cm) = (-28.569,-62.971,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.245518, position (cm) = (103.621,-89.5965,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 1.298, position (cm) = (-38.632,-34.4992,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 33.0477, position (cm) = (-6.02227,-40.0642,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.692353, position (cm) = (-6.15093,-74.985,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 2.52488, position (cm) = (-8.76986,-73.0143,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 55.6454, position (cm) = (-45.9827,-28.4628,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 55.6454, position (cm) = (-45.9827,-28.4628,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 97.5939, position (cm) = (-79.6294,-56.5648,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 28.8104, position (cm) = (-76.5619,-50.6238,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 6.73452, position (cm) = (-64.4604,-30.426,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.292765, position (cm) = (-64.6314,-32.3339,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.118704, position (cm) = (-63.7732,-35.5778,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.281291, position (cm) = (-63.567,-38.9699,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.250203, position (cm) = (-32.856,-15.0583,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 10.886, position (cm) = (-34.305,-28.2843,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 2.43725, position (cm) = (-76.4008,-67.6367,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 4.38757, position (cm) = (-91.3461,-79.2188,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 17.3971, position (cm) = (-88.6629,-77.6849,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 26.2153, position (cm) = (-85.7298,-80.5368,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.128291, position (cm) = (-113.6,-54.6416,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 2.70086, position (cm) = (-111.496,-50.6074,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 25.3691, position (cm) = (-109.607,-49.6913,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 0.122421, position (cm) = (-119.631,-52.1863,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 3.70844, position (cm) = (-84.234,-48.2068,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 2.07879, position (cm) = (42.0042,-52.1893,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 4.22211, position (cm) = (43.1677,-6.3726,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 12.2853, position (cm) = (33.3513,-3.99574,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 49.243, position (cm) = (49.7166,-22.0685,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 67.3523, position (cm) = (80.6365,-50.6467,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 3.82912, position (cm) = (5.77432,-23.109,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 4.042, position (cm) = (19.3855,33.8901,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 1.029, position (cm) = (14.5038,-10.9908,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 1.30592, position (cm) = (28.9428,-24.3485,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 97.8933, position (cm) = (1.55338,23.7816,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 98.145, position (cm) = (3.45291,26.1895,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 98.145, position (cm) = (3.45291,26.1895,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 98.145, position (cm) = (3.45291,26.1895,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 2.40236, position (cm) = (2.88353,25.5524,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 5.99986, position (cm) = (4.24815,25.929,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 98.145, position (cm) = (3.45291,26.1895,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 96.8726, position (cm) = (5.93947,28.3506,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 98.145, position (cm) = (3.45291,26.1895,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 98.145, position (cm) = (3.45291,26.1895,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 0.000541306, position (cm) = (64.0592,29.3893,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 1.84556, position (cm) = (14.0455,39.4362,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 7.02535, position (cm) = (8.14651,39.8473,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.1169, position (cm) = (22.0317,25.441,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.191914, position (cm) = (13.6831,32.9492,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 0.0144185, position (cm) = (9.54816,46.8209,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.382903, position (cm) = (6.65006,44.4368,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 1.12473, position (cm) = (14.713,34.6837,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 83.036, position (cm) = (23.0272,24.9631,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 83.036, position (cm) = (23.0272,24.9631,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 98.6218, position (cm) = (-6.97196,-70.174,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 98.5546, position (cm) = (-7.49687,-69.2108,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 98.6218, position (cm) = (-6.97196,-70.174,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 98.6218, position (cm) = (-6.97196,-70.174,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 98.6218, position (cm) = (-6.97196,-70.174,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 98.267, position (cm) = (-11.1206,-71.6195,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 6.87604, position (cm) = (-23.9851,-62.9663,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 4.24969, position (cm) = (-28.7988,-50.7662,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.114639, position (cm) = (-13.0541,-30.6154,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.360654, position (cm) = (5.00795,-158.335,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 2.57194, position (cm) = (-21.2527,-137.109,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 30.3765, position (cm) = (4.74223,-183.699,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 30.3765, position (cm) = (4.74223,-183.699,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 30.3765, position (cm) = (4.74223,-183.699,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.00169526, position (cm) = (10.4493,-96.9035,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 1.18438, position (cm) = (-57.0251,-179.42,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.225472, position (cm) = (-35.6423,-252.103,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.150533, position (cm) = (-49.806,-272.247,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 26.6624, position (cm) = (-33.8687,-174.689,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 3.09317, position (cm) = (-23.4189,-171.641,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 3.80992, position (cm) = (-62.1672,-198.835,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 1.30245, position (cm) = (-59.5909,-189.738,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 26.4923, position (cm) = (-50.0265,-172.436,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 4.98999, position (cm) = (-46.5743,-185.85,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 5.7532, position (cm) = (-57.0662,-179.297,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 27.7753, position (cm) = (-44.9541,-188.957,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 2.12989, position (cm) = (-45.148,-179.425,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.956547, position (cm) = (-39.5484,-163.974,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.18804, position (cm) = (-49.8332,-171.734,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.334903, position (cm) = (-41.7803,-194.514,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 16.9602, position (cm) = (-41.1961,-185.254,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 16.9602, position (cm) = (-41.1961,-185.254,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 27.9088, position (cm) = (-42.0893,-172.707,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 25.9612, position (cm) = (-52.0822,-188.601,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 29.3344, position (cm) = (-38.8857,-161.806,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 29.3344, position (cm) = (-38.8857,-161.806,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.00121503, position (cm) = (5.88173,-93.6365,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 1.36231, position (cm) = (-3.54133,-99.2801,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 99.1285, position (cm) = (26.4247,-34.4083,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 86.0692, position (cm) = (16.4878,-39.4065,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 86.393, position (cm) = (16.3846,-38.7258,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 86.5791, position (cm) = (11.4969,-40.4668,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 0.000116461, position (cm) = (17.0156,-97.6921,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 14.403, position (cm) = (22.0666,-130.264,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 1.35803, position (cm) = (59.7582,-142.347,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 0.000295808, position (cm) = (0.797978,-114.487,200), weight = 7.45058e-09
- gamma, kinetic energy (MeV) = 1.28501, position (cm) = (33.5989,-135.713,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 27.1347, position (cm) = (34.2715,-129.432,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 1.38469, position (cm) = (19.9263,-49.3333,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 6.26402, position (cm) = (22.4112,-123.042,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.284, position (cm) = (-4.13537,-102.988,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 2.48589, position (cm) = (-3.77595,-98.8608,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.869171, position (cm) = (-13.1652,-100.406,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 3.04057, position (cm) = (-6.50457,-103.744,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 25.5751, position (cm) = (-12.3673,-104.877,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 25.8267, position (cm) = (-11.4718,-101.927,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 0.25883, position (cm) = (1.65216,-108.18,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.218754, position (cm) = (-1.73103,-95.2912,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 0.495682, position (cm) = (-4.87211,-107.816,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.462561, position (cm) = (-8.47716,-109.304,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 5.31096, position (cm) = (-10.0494,-107.428,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.624345, position (cm) = (56.5374,-175.996,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 5.27571, position (cm) = (24.3335,-158.428,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 2.46382, position (cm) = (13.3441,-97.7353,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 2.17715e-05, position (cm) = (10.7512,-114.363,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 26.2779, position (cm) = (7.03523,-132.487,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.14842, position (cm) = (5.33294,-122.703,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 3.23003, position (cm) = (6.25097,-127.624,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 0.496332, position (cm) = (24.4279,-134.982,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.0833328, position (cm) = (8.59653,-141.524,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 4.98523, position (cm) = (1.79741,-127.452,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 3.43691, position (cm) = (3.51672,-134.063,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 1.15408, position (cm) = (11.0983,-153.34,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.69332, position (cm) = (-38.3764,-110.264,200), weight = 1.90735e-06
- e-, kinetic energy (MeV) = 0.879102, position (cm) = (-34.9061,-108.394,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 5.35729, position (cm) = (-41.2237,-107.493,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 5.71279, position (cm) = (-41.0818,-107.687,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 3.36213, position (cm) = (-36.5024,-121.535,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.0990962, position (cm) = (-43.7279,-126.859,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 9.83902, position (cm) = (-43.2753,-124.802,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 8.74346, position (cm) = (-29.428,-117.698,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.155845, position (cm) = (1.30679,-102.94,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.510999, position (cm) = (-2.10922,-94.5054,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.135101, position (cm) = (-14.0298,-103.826,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 7.38548, position (cm) = (-21.4599,-76.3334,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 37.7923, position (cm) = (53.9832,-88.4354,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 37.7923, position (cm) = (53.9832,-88.4354,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 36.6834, position (cm) = (77.5753,-108.768,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 37.8904, position (cm) = (64.5041,-104.162,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 37.865, position (cm) = (70.3191,-104.606,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 37.5924, position (cm) = (69.6984,-104.856,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.379107, position (cm) = (45.5879,-84.005,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 3.09207, position (cm) = (47.4154,-83.2632,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 2.15668, position (cm) = (39.8175,-92.3949,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 2.31771, position (cm) = (41.7833,-80.9098,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 2.2717, position (cm) = (27.1463,-99.3612,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.220469, position (cm) = (57.3105,-97.7525,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 0.801545, position (cm) = (51.1648,-93.9658,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.420072, position (cm) = (76.3591,-177.885,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 0.473801, position (cm) = (108.442,-177.925,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 6.6876, position (cm) = (108.977,-174.852,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 2.24023e-05, position (cm) = (73.0015,-70.3506,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 8.75351, position (cm) = (77.6061,-76.4122,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 8.75351, position (cm) = (77.6061,-76.4122,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.143703, position (cm) = (34.1079,-113.024,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 4.19718, position (cm) = (29.5031,-111.168,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 1.35156e-07, position (cm) = (44.846,-119.193,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 8.33228, position (cm) = (26.1503,-117.289,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 52.0151, position (cm) = (100.674,-68.0585,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 5.43187, position (cm) = (80.2797,-50.0688,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 5.43187, position (cm) = (80.2797,-50.0688,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 1.03183, position (cm) = (73.3855,-29.5235,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.082582, position (cm) = (65.3567,-74.0632,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 3.91469, position (cm) = (73.4512,-58.2185,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 0.0278564, position (cm) = (101.121,-35.997,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.125375, position (cm) = (43.2208,-83.3141,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 1.30563, position (cm) = (44.563,-77.6053,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.199375, position (cm) = (59.0155,-58.1129,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.106876, position (cm) = (46.1221,-64.92,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 2.12541, position (cm) = (53.8689,-93.0318,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 8.62287, position (cm) = (45.0854,-92.709,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 1.02724, position (cm) = (88.9122,-64.4616,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 0.000889894, position (cm) = (55.2954,-73.5316,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 0.86775, position (cm) = (50.6587,-12.7055,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 0.000165829, position (cm) = (59.6548,-21.5203,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 3.35103, position (cm) = (53.3172,-34.0343,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.0912884, position (cm) = (59.0118,-43.3614,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 2.01343, position (cm) = (61.7533,-34.3823,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.359009, position (cm) = (66.2005,-41.2668,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 99.392, position (cm) = (-43.7765,-12.1466,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 99.392, position (cm) = (-43.7765,-12.1466,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.317974, position (cm) = (-36.2219,-22.7635,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 0.0018082, position (cm) = (-29.027,-9.62521,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 78.6375, position (cm) = (-43.3625,-10.3727,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 69.8604, position (cm) = (-23.0981,-15.8273,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 99.8048, position (cm) = (-27.7996,-13.6655,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 4.45124, position (cm) = (-24.7147,-13.1404,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.000550644, position (cm) = (-27.7466,-23.767,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.137908, position (cm) = (-36.4364,-27.0899,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.72485, position (cm) = (-54.5397,17.3088,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 99.2305, position (cm) = (-11.3586,-20.789,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 99.2305, position (cm) = (-11.3586,-20.789,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 99.2305, position (cm) = (-11.3586,-20.789,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 76.8446, position (cm) = (-46.8693,47.6502,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 76.8446, position (cm) = (-46.8693,47.6502,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 9.65436e-07, position (cm) = (-39.2659,15.1726,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 2.67875, position (cm) = (-29.3176,-9.29129,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 0.0256791, position (cm) = (-23.3198,20.105,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 3.9816, position (cm) = (-33.306,17.1853,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 6.99697, position (cm) = (63.719,57.1634,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 4.65506, position (cm) = (57.4426,52.0758,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 1.46318, position (cm) = (62.9063,53.0505,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 1.15788, position (cm) = (57.2842,55.3799,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 41.0601, position (cm) = (58.9553,50.6881,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.168471, position (cm) = (55.1349,36.7897,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.336932, position (cm) = (53.4752,28.5902,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.176603, position (cm) = (47.0457,35.445,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 1.03351, position (cm) = (55.75,9.35976,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.70741, position (cm) = (37.6496,53.501,200), weight = 0.00195312
- e-, kinetic energy (MeV) = 2.54686, position (cm) = (37.4339,53.9086,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 0.169911, position (cm) = (37.3076,54.5598,200), weight = 0.00195312
- gamma, kinetic energy (MeV) = 0.285467, position (cm) = (10.7712,0.329906,200), weight = 0.00195312
- neutron, kinetic energy (MeV) = 2.52116e-07, position (cm) = (45.8499,-57.4387,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 1.28551, position (cm) = (39.2554,5.64569,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.905216, position (cm) = (-83.6503,-5.05728,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 7.67262, position (cm) = (66.6233,-8.71857,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 9.23772, position (cm) = (52.8652,13.9194,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 8.5638, position (cm) = (57.1418,13.6061,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 8.46089, position (cm) = (58.7549,13.1593,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.00444524, position (cm) = (49.9714,-12.8146,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.975837, position (cm) = (37.8387,-25.9373,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.430859, position (cm) = (36.0334,-25.8961,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 51.378, position (cm) = (42.0017,-18.513,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 37.2696, position (cm) = (13.7576,-52.7079,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 51.125, position (cm) = (42.2243,-34.0294,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 6.79219, position (cm) = (56.3288,-28.5243,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.154578, position (cm) = (54.5028,-28.35,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 20.3453, position (cm) = (26.2264,-27.2101,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.133572, position (cm) = (41.0796,-19.975,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 4.03723, position (cm) = (47.4705,-15.4191,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.574785, position (cm) = (69.9795,28.8595,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 50.2352, position (cm) = (47.2725,-6.51794,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 2.65966, position (cm) = (61.7521,-1.18026,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 49.6915, position (cm) = (47.1779,-0.930695,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 49.8225, position (cm) = (49.0459,-0.564259,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 2.67046, position (cm) = (40.691,-4.9956,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 31.0327, position (cm) = (41.0149,-1.81662,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.316544, position (cm) = (141.821,18.0053,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 4.98919, position (cm) = (167.984,-0.585297,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 1.50846, position (cm) = (166.119,0.0674069,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.0973201, position (cm) = (251.916,-20.1274,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 16.5909, position (cm) = (256.75,4.27727,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 1.23837, position (cm) = (258.724,1.83533,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 12.0094, position (cm) = (254.43,1.72584,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 12.0094, position (cm) = (254.43,1.72584,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 16.5909, position (cm) = (256.75,4.27727,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 2.76577, position (cm) = (258.496,2.27078,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 11.4641, position (cm) = (260.848,0.940588,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.446344, position (cm) = (447.81,68.6546,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.767971, position (cm) = (448.344,77.8047,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 77.188, position (cm) = (452.581,72.6939,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 19.4409, position (cm) = (368.015,41.6288,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 88.1005, position (cm) = (398.511,46.3814,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.0925498, position (cm) = (310.664,4.2786,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 76.6375, position (cm) = (346.884,16.8042,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 1.52556, position (cm) = (297.816,-22.8588,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.115361, position (cm) = (299.741,-14.8479,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 2.63046, position (cm) = (298.638,0.644865,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 2.22447, position (cm) = (245.872,22.107,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 1.97072e-05, position (cm) = (252.018,26.8219,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.392029, position (cm) = (261.785,56.5661,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 0.00011302, position (cm) = (255.102,50.6056,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.212317, position (cm) = (257.892,35.1365,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 2.00482, position (cm) = (271.975,63.7041,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.0933423, position (cm) = (283.119,77.0754,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.66765, position (cm) = (262.002,59.2947,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 1.29069, position (cm) = (259.269,56.7935,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 6.69324, position (cm) = (169.302,73.8664,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 14.1458, position (cm) = (125.796,29.4431,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 5.55017, position (cm) = (89.295,29.8035,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.0793424, position (cm) = (92.3919,53.206,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 1.70372, position (cm) = (92.2786,45.0676,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.413499, position (cm) = (101.928,38.7839,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.0251215, position (cm) = (76.3689,12.6132,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 2.79787, position (cm) = (93.0777,19.8306,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.454588, position (cm) = (151.227,-42.0942,200), weight = 0.00390625
- neutron, kinetic energy (MeV) = 2.27078e-05, position (cm) = (242.203,-46.9513,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 2.43143, position (cm) = (263.152,-51.3117,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 0.211079, position (cm) = (264.028,-49.2127,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 3.42625, position (cm) = (251.937,-37.9752,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 63.8223, position (cm) = (268.583,-43.5554,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 95.521, position (cm) = (273.965,-47.6588,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 1.26669, position (cm) = (267.298,-45.7807,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 64.082, position (cm) = (269.817,-35.2074,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 63.9253, position (cm) = (269.898,-36.2089,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 1.14114, position (cm) = (249.858,-4.41175,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.11231, position (cm) = (235.661,-35.2873,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 3.94015, position (cm) = (260.594,-30.5792,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.359619, position (cm) = (263.005,-53.7441,200), weight = 1.52588e-05
- gamma, kinetic energy (MeV) = 0.416984, position (cm) = (259.289,-66.2666,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 24.0832, position (cm) = (262.337,-55.3681,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 2.58733, position (cm) = (262.612,-55.0731,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 4.99238, position (cm) = (262.374,-55.1433,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 2.26567, position (cm) = (159.766,-70.7846,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 4.80478, position (cm) = (305.593,-56.3204,200), weight = 0.000488281
- neutron, kinetic energy (MeV) = 8.02664, position (cm) = (241.204,-58.2049,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 8.02664, position (cm) = (241.204,-58.2049,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 6.11307, position (cm) = (236.843,-58.2791,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 6.48493, position (cm) = (257.388,-61.0436,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 7.71396, position (cm) = (264.717,-71.6463,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.265385, position (cm) = (258.374,-65.17,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 2.40438, position (cm) = (259.312,-70.7677,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 1.93834, position (cm) = (250.41,-59.9443,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 7.66581, position (cm) = (254.258,-65.4429,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 3.08321e-06, position (cm) = (251.092,-67.0502,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 5.12645, position (cm) = (255.907,-66.196,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.293316, position (cm) = (241.108,-80.3696,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 2.97619, position (cm) = (261.106,-71.5877,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 3.57039, position (cm) = (258.225,-65.1561,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 9.81192e-05, position (cm) = (228.098,-18.7883,200), weight = 6.10352e-05
- gamma, kinetic energy (MeV) = 0.356236, position (cm) = (198.103,-77.9432,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 1.41887, position (cm) = (242.717,-22.855,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 1.73982, position (cm) = (225.302,-25.5702,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.1849, position (cm) = (246.004,17.4424,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.185091, position (cm) = (263.94,-14.9672,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.132919, position (cm) = (280.298,4.28604,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.263873, position (cm) = (273.811,2.06188,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 0.120833, position (cm) = (232.914,11.9723,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 7.82113, position (cm) = (244.577,9.07238,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 2.21855, position (cm) = (242.273,-2.64424,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 0.0560498, position (cm) = (238.557,-19.5198,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 23.5264, position (cm) = (258.889,-21.3815,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 23.5264, position (cm) = (258.889,-21.3815,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 1.75275, position (cm) = (265.527,-13.7906,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 0.0497984, position (cm) = (259.011,-17.0835,200), weight = 1.49012e-08
- neutron, kinetic energy (MeV) = 23.2031, position (cm) = (262.808,-18.3327,200), weight = 1.49012e-08
- gamma, kinetic energy (MeV) = 0.250331, position (cm) = (260.146,-14.3987,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.134518, position (cm) = (260.566,-12.23,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 4.76706, position (cm) = (259.171,-29.4128,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 0.000726471, position (cm) = (240.47,-26.5907,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 5.15629, position (cm) = (254.822,-15.6233,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 7.30614e-05, position (cm) = (255.751,-3.52396,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 0.477316, position (cm) = (268.484,-1.98174,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 0.471692, position (cm) = (245.913,-10.7703,200), weight = 4.76837e-07
- gamma, kinetic energy (MeV) = 4.66229, position (cm) = (262.38,-7.06128,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 1.53626e-06, position (cm) = (252.626,0.41868,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.431578, position (cm) = (233.853,-22.1534,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 0.011048, position (cm) = (221.928,-18.3489,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.511205, position (cm) = (234.708,-31.3099,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 1.71723, position (cm) = (253.318,-7.14751,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 7.27613, position (cm) = (250.177,-8.38994,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 7.27613, position (cm) = (250.177,-8.38994,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 1.16627, position (cm) = (253.632,-11.3448,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.09693, position (cm) = (247.914,-12.0755,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 4.60657, position (cm) = (242.677,-7.09368,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 18.8187, position (cm) = (250.656,-17.2353,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 18.8187, position (cm) = (250.656,-17.2353,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 0.00916796, position (cm) = (261.966,-4.24187,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 2.93011, position (cm) = (239.694,43.2322,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.293399, position (cm) = (214.218,39.5418,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 1.47866e-05, position (cm) = (269.854,51.5957,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 1.3262, position (cm) = (216.942,15.1142,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.0505438, position (cm) = (220.07,-7.30421,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.132896, position (cm) = (229.994,36.3967,200), weight = 0.000488281
- gamma, kinetic energy (MeV) = 0.10457, position (cm) = (24.8018,-27.6651,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 0.187106, position (cm) = (44.4092,-25.0716,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 17.3719, position (cm) = (30.1407,-28.8244,200), weight = 0.000976562
- gamma, kinetic energy (MeV) = 9.94965, position (cm) = (-1.65399,-26.4464,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.0526117, position (cm) = (-3.67761,-17.0498,200), weight = 0.000244141
- neutron, kinetic energy (MeV) = 1.19366, position (cm) = (-4.76666,-21.8173,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 0.667263, position (cm) = (5.16869,-20.3321,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.626386, position (cm) = (15.5989,-13.8688,200), weight = 0.00012207
- neutron, kinetic energy (MeV) = 0.00140815, position (cm) = (-30.885,-7.83835,200), weight = 0.00012207
- gamma, kinetic energy (MeV) = 0.610475, position (cm) = (99.245,-18.7406,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.000140696, position (cm) = (124.399,-18.3512,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 2.56864e-05, position (cm) = (59.9503,-7.22587,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 3.52459, position (cm) = (102.001,-10.5713,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 3.39257, position (cm) = (96.7011,-3.74515,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.0175827, position (cm) = (100.592,-5.7766,200), weight = 3.05176e-05
- gamma, kinetic energy (MeV) = 0.793891, position (cm) = (77.3021,-4.25915,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 48.3572, position (cm) = (94.3396,1.93979,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 48.0136, position (cm) = (94.5667,2.18773,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 41.7212, position (cm) = (94.5133,2.1663,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.796857, position (cm) = (123.156,10.4212,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 0.00434699, position (cm) = (78.4816,23.4974,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 31.0193, position (cm) = (122.804,6.35647,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 32.3738, position (cm) = (122.559,7.40393,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 32.4963, position (cm) = (124.471,10.494,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 32.4963, position (cm) = (124.471,10.494,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.132871, position (cm) = (111.113,6.6189,200), weight = 6.10352e-05
- neutron, kinetic energy (MeV) = 21.2588, position (cm) = (100.984,4.37888,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 21.5048, position (cm) = (102.135,8.47503,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.297317, position (cm) = (80.8383,-40.2323,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.207775, position (cm) = (95.4281,20.0929,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 1.57885, position (cm) = (100.456,7.32087,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 21.5048, position (cm) = (102.135,8.47503,200), weight = 4.76837e-07
- neutron, kinetic energy (MeV) = 8.8312, position (cm) = (84.4158,12.5891,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 9.21113, position (cm) = (81.9918,13.1807,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 1.26603, position (cm) = (96.4504,9.53826,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.174735, position (cm) = (96.2731,9.92242,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.108408, position (cm) = (102.39,17.3836,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 1.22856, position (cm) = (102.647,10.2724,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 6.15955, position (cm) = (103.139,9.79927,200), weight = 9.53674e-07
- gamma, kinetic energy (MeV) = 0.469596, position (cm) = (103.178,42.5659,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.269887, position (cm) = (86.0139,82.0585,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 23.4714, position (cm) = (103.178,42.8773,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.000360548, position (cm) = (122.585,13.0926,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 22.8343, position (cm) = (117.572,36.2248,200), weight = 9.53674e-07
- neutron, kinetic energy (MeV) = 6.63188, position (cm) = (117.909,33.1241,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 0.662309, position (cm) = (112.21,26.6849,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 19.4131, position (cm) = (131.32,34.3386,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 19.4131, position (cm) = (131.32,34.3386,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 5.16949, position (cm) = (129.75,38.0744,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 4.36582, position (cm) = (130.3,35.9581,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 3.19065e-07, position (cm) = (125.977,34.6193,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.792175, position (cm) = (127.059,33.8564,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 1.10278, position (cm) = (128.132,33.672,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 23.1109, position (cm) = (120.344,30.8813,200), weight = 2.38419e-07
- neutron, kinetic energy (MeV) = 0.00240737, position (cm) = (98.6628,21.0561,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 3.79061, position (cm) = (105.041,21.0852,200), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.114636, position (cm) = (155.433,27.9029,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.541578, position (cm) = (165.382,35.7123,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.149445, position (cm) = (153.383,30.3675,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.104475, position (cm) = (148.993,24.3579,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.220685, position (cm) = (151.371,19.2241,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 2.98353, position (cm) = (153.87,23.4536,200), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 5.71059, position (cm) = (149.193,23.5373,200), weight = 7.62939e-06
- gamma, kinetic energy (MeV) = 0.176378, position (cm) = (148.011,20.8175,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 1.52986e-05, position (cm) = (160.776,25.9743,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 1.1915, position (cm) = (158.608,34.9386,200), weight = 1.90735e-06
- e-, kinetic energy (MeV) = 1.85649, position (cm) = (174.776,27.5716,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.852664, position (cm) = (159.671,36.4324,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.7951, position (cm) = (148.788,21.9674,200), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.946115, position (cm) = (154.146,23.5353,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 47.119, position (cm) = (149.099,20.858,200), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 47.6222, position (cm) = (144.928,21.316,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 47.0314, position (cm) = (144.935,21.265,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 47.8468, position (cm) = (144.859,21.9717,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 47.8468, position (cm) = (144.859,21.9717,200), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 47.82, position (cm) = (156.992,34.3709,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 1.98781, position (cm) = (151.179,18.692,200), weight = 1.52588e-05
- neutron, kinetic energy (MeV) = 48.433, position (cm) = (139.971,22.1012,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 46.7906, position (cm) = (137.256,20.8047,200), weight = 3.05176e-05
- neutron, kinetic energy (MeV) = 7.7771, position (cm) = (120.34,-2.89763,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 7.7771, position (cm) = (120.34,-2.89763,200), weight = 5.96046e-08
- neutron, kinetic energy (MeV) = 7.7771, position (cm) = (120.34,-2.89763,200), weight = 5.96046e-08
- gamma, kinetic energy (MeV) = 0.326349, position (cm) = (110.2,-34.9032,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 2.48938, position (cm) = (107.922,-37.7399,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 4.19889, position (cm) = (110.443,-39.8311,200), weight = 1.19209e-07
- gamma, kinetic energy (MeV) = 5.58336, position (cm) = (109.802,-39.9856,200), weight = 1.19209e-07
- neutron, kinetic energy (MeV) = 8.59587, position (cm) = (109.944,-34.6818,200), weight = 2.38419e-07
- gamma, kinetic energy (MeV) = 4.3586, position (cm) = (101.927,-21.3978,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 6.1769, position (cm) = (106.988,-14.907,200), weight = 1.86265e-09
- gamma, kinetic energy (MeV) = 0.26805, position (cm) = (113.141,-20.9786,200), weight = 3.72529e-09
- gamma, kinetic energy (MeV) = 0.365799, position (cm) = (111.003,-21.7422,200), weight = 2.98023e-08
- gamma, kinetic energy (MeV) = 2.2293, position (cm) = (108.732,-21.2334,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 3.02049, position (cm) = (114.056,-26.849,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 7.18354, position (cm) = (112.223,-23.5454,200), weight = 2.98023e-08
- neutron, kinetic energy (MeV) = 0.000158797, position (cm) = (46.4902,-12.3563,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 49.6526, position (cm) = (41.0475,-2.36602,200), weight = 0.000976562
- neutron, kinetic energy (MeV) = 7.96519, position (cm) = (50.5544,-65.2235,200), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.229837, position (cm) = (49.4086,-45.1037,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 57.9672, position (cm) = (64.9981,72.1007,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 56.782, position (cm) = (69.3676,71.0222,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 0.494776, position (cm) = (66.3107,67.4642,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 0.152403, position (cm) = (63.6646,69.6284,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 2.97757, position (cm) = (65.5535,67.175,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 55.5764, position (cm) = (73.8902,78.3071,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 57.3035, position (cm) = (76.4047,56.0906,200), weight = 0.000976562
+ gamma, kinetic energy (MeV) = 2.11026, position (cm) = (82.9712,57.4807,200), weight = 0.000976562
+ gamma, kinetic energy (MeV) = 5.62171, position (cm) = (79.0715,42.4575,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 2.42711, position (cm) = (82.7851,63.276,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 0.355468, position (cm) = (113.233,-7.14821,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 0.338749, position (cm) = (189.901,71.0049,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 12.0878, position (cm) = (195.395,158.495,200), weight = 9.53674e-07
+ neutron, kinetic energy (MeV) = 31.9927, position (cm) = (164.239,141.466,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 31.9927, position (cm) = (164.239,141.466,200), weight = 4.76837e-07
+ gamma, kinetic energy (MeV) = 1.41845, position (cm) = (155.312,138.442,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 9.95155, position (cm) = (158.3,138.286,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 32.2743, position (cm) = (159.43,143.86,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 0.0104774, position (cm) = (151.432,131.399,200), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 3.9376, position (cm) = (157.275,166.166,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 32.1434, position (cm) = (158.369,143.032,200), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 2.16324, position (cm) = (153.931,135.497,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 3.33335, position (cm) = (142.042,119.588,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 0.794948, position (cm) = (183.732,126.372,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 4.81986, position (cm) = (183.932,126.752,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 0.126649, position (cm) = (189.944,124.373,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 3.67513, position (cm) = (186.363,126.943,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 1.21771, position (cm) = (149.908,107.375,200), weight = 0.000244141
+ anti_nu_e, kinetic energy (MeV) = 0.598082, position (cm) = (181.42,16.9784,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 68.2624, position (cm) = (-42.5622,102.618,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 0.198996, position (cm) = (-50.5745,113.091,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 67.6266, position (cm) = (-31.1789,102.393,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 0.387965, position (cm) = (-66.3373,59.1065,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 0.0827913, position (cm) = (-83.2881,42.1645,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 0.629198, position (cm) = (-75.9956,46.208,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 5.64127, position (cm) = (-24.5488,88.6267,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 0.00878873, position (cm) = (-23.1724,103.644,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 2.19619, position (cm) = (-30.9947,124.646,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 36.0881, position (cm) = (-30.7761,88.6891,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 36.0881, position (cm) = (-30.7761,88.6891,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 35.4853, position (cm) = (-29.8684,89.2871,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 0.340261, position (cm) = (-32.3267,91.03,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 1.5557, position (cm) = (-32.2058,90.8295,200), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 1.88061, position (cm) = (-32.258,91.0138,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 36.0881, position (cm) = (-30.7761,88.6891,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 31.1673, position (cm) = (-27.3719,85.5242,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 31.1673, position (cm) = (-27.3719,85.5242,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 0.093422, position (cm) = (-19.8046,90.468,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 8.97257, position (cm) = (-12.1632,99.2258,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 2.97772, position (cm) = (-19.7128,89.0695,200), weight = 6.10352e-05
+ e-, kinetic energy (MeV) = 4.00246, position (cm) = (-19.8418,89.3918,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 0.0881377, position (cm) = (-19.8742,89.4064,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 5.08807, position (cm) = (-38.93,80.2718,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 0.193384, position (cm) = (-63.4304,82.1709,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 0.14242, position (cm) = (-55.7781,78.2332,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.350914, position (cm) = (-58.9326,68.0166,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.210521, position (cm) = (-64.7717,72.3306,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 0.124138, position (cm) = (-66.3491,69.3353,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 68.5396, position (cm) = (-12.886,97.9386,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 31.5723, position (cm) = (-39.7712,108.87,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 31.5723, position (cm) = (-39.7712,108.87,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.263067, position (cm) = (-49.2886,116.644,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.104069, position (cm) = (-42.2407,108.497,200), weight = 0.00012207
+ e-, kinetic energy (MeV) = 1.58527, position (cm) = (-42.6422,118.12,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 3.38669, position (cm) = (-48.1256,121.659,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 30.5759, position (cm) = (-51.7393,122.874,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.411674, position (cm) = (-187.992,26.7323,200), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 3.05688, position (cm) = (-8.34894,-1.70601,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.0860329, position (cm) = (-12.1046,-6.05118,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.711719, position (cm) = (0.25936,-2.09967,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 1.69409, position (cm) = (-22.771,1.48049,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.366817, position (cm) = (-26.0549,-13.5014,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.191689, position (cm) = (-80.0048,40.2222,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 8.59454, position (cm) = (-76.1912,38.3759,200), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.171345, position (cm) = (-76.4959,36.5517,200), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.0655166, position (cm) = (-71.976,39.657,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 0.845898, position (cm) = (-74.5722,40.3873,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 0.00728051, position (cm) = (-93.7241,29.7306,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 28.2973, position (cm) = (-75.7405,37.9458,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 5.08869, position (cm) = (-65.3333,20.4025,200), weight = 9.53674e-07
+ neutron, kinetic energy (MeV) = 5.08869, position (cm) = (-65.3333,20.4025,200), weight = 9.53674e-07
+ neutron, kinetic energy (MeV) = 27.8595, position (cm) = (-60.2113,32.6447,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 0.00693508, position (cm) = (-69.639,26.2572,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 1.03641, position (cm) = (-34.0365,5.58254,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 20.3844, position (cm) = (-43.6537,29.6211,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 27.3419, position (cm) = (-41.272,30.8868,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 3.76131e-05, position (cm) = (-112.573,17.7616,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 4.73262, position (cm) = (-74.7255,4.8456,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.394146, position (cm) = (-80.6596,18.368,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 4.60838, position (cm) = (-71.242,0.123149,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 0.071578, position (cm) = (-84.4536,-0.619429,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 5.15925, position (cm) = (-80.9106,-0.611038,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 21.8555, position (cm) = (-82.8272,-1.58279,200), weight = 2.38419e-07
+ neutron, kinetic energy (MeV) = 21.4498, position (cm) = (-82.6969,-1.25235,200), weight = 2.38419e-07
+ gamma, kinetic energy (MeV) = 0.14198, position (cm) = (-81.0656,6.03624,200), weight = 4.76837e-07
+ gamma, kinetic energy (MeV) = 1.37442, position (cm) = (-87.4714,-0.968892,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 21.8028, position (cm) = (-85.1272,-2.04673,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 21.8028, position (cm) = (-85.1272,-2.04673,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 5.31483e-07, position (cm) = (-20.9909,17.0263,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 0.00652588, position (cm) = (-69.4643,62.7499,200), weight = 5.96046e-08
+ neutron, kinetic energy (MeV) = 0.0286206, position (cm) = (-74.3991,10.4847,200), weight = 5.96046e-08
+ gamma, kinetic energy (MeV) = 4.2461, position (cm) = (-87.6119,26.7378,200), weight = 2.38419e-07
+ gamma, kinetic energy (MeV) = 0.368353, position (cm) = (-80.8688,27.5771,200), weight = 2.98023e-08
+ neutron, kinetic energy (MeV) = 2.47063, position (cm) = (-101.476,37.7007,200), weight = 5.96046e-08
+ gamma, kinetic energy (MeV) = 7.13385, position (cm) = (-84.6109,16.2551,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.697937, position (cm) = (-43.1276,3.94251,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.116589, position (cm) = (-42.3092,22.4487,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 1.18525, position (cm) = (-52.2944,7.4084,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.10656, position (cm) = (-58.3023,21.1755,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.125398, position (cm) = (-57.3108,13.4427,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.16222, position (cm) = (-55.0696,7.3425,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 4.22466, position (cm) = (-63.0307,8.97662,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 4.22466, position (cm) = (-63.0307,8.97662,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 1.48326, position (cm) = (-85.8069,0.690615,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 1.66947, position (cm) = (-62.4911,0.627637,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 3.34977, position (cm) = (-57.4685,4.53512,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 27.7726, position (cm) = (-60.1431,4.57847,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 35.1807, position (cm) = (22.7646,-54.7429,200), weight = 0.03125
+ neutron, kinetic energy (MeV) = 0.000851995, position (cm) = (122.329,-273.679,200), weight = 0.00195312
+ gamma, kinetic energy (MeV) = 9.62205, position (cm) = (124.712,-286.89,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 96.0402, position (cm) = (22.7502,-69.6138,200), weight = 0.0625
+ neutron, kinetic energy (MeV) = 95.9814, position (cm) = (21.7291,-68.1077,200), weight = 0.015625
+ neutron, kinetic energy (MeV) = 95.9814, position (cm) = (21.7291,-68.1077,200), weight = 0.015625
+ neutron, kinetic energy (MeV) = 95.9814, position (cm) = (21.7291,-68.1077,200), weight = 0.03125
+ gamma, kinetic energy (MeV) = 0.127211, position (cm) = (-27.0642,5.89683,200), weight = 0.25
+ neutron, kinetic energy (MeV) = 1.2298, position (cm) = (11.8698,-29.1346,200), weight = 0.00390625
+ gamma, kinetic energy (MeV) = 1.02227, position (cm) = (35.9848,-17.857,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 0.528803, position (cm) = (32.614,-27.3364,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 0.000571988, position (cm) = (2.81217,2.03769,200), weight = 0.25
+ neutron, kinetic energy (MeV) = 1.19606, position (cm) = (-94.4181,10.5775,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 2.08149, position (cm) = (-73.7213,-12.3536,200), weight = 0.0078125
+ gamma, kinetic energy (MeV) = 0.344308, position (cm) = (-85.6246,8.4778,200), weight = 0.0078125
+ gamma, kinetic energy (MeV) = 0.898066, position (cm) = (-100.777,12.8514,200), weight = 0.0078125
+ neutron, kinetic energy (MeV) = 98.8348, position (cm) = (-57.4798,-26.4269,200), weight = 0.25
+ gamma, kinetic energy (MeV) = 0.17965, position (cm) = (-62.5129,-58.5672,200), weight = 0.25
+ neutron, kinetic energy (MeV) = 55.1138, position (cm) = (-80.7875,58.5722,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 55.2898, position (cm) = (-80.3767,58.9171,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 1.60477, position (cm) = (-85.856,61.2816,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 74.3618, position (cm) = (-109.082,70.3866,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 74.3895, position (cm) = (-116.558,56.236,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 74.3895, position (cm) = (-116.558,56.236,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 0.129225, position (cm) = (-100.591,42.4147,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 1.4534, position (cm) = (-119.929,45.73,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 1.8888, position (cm) = (-109.707,46.4457,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 72.8283, position (cm) = (-125.202,82.0739,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 0.118848, position (cm) = (-24.1713,71.8931,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.120113, position (cm) = (-16.594,64.0742,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 2.11656, position (cm) = (-38.0182,65.4639,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 29.5847, position (cm) = (-67.4404,75.0319,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 28.661, position (cm) = (-72.4002,74.0096,200), weight = 9.53674e-07
+ neutron, kinetic energy (MeV) = 28.661, position (cm) = (-72.4002,74.0096,200), weight = 9.53674e-07
+ gamma, kinetic energy (MeV) = 8.47665, position (cm) = (-75.2761,75.8715,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 30.7233, position (cm) = (-53.5877,61.9172,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 44.9533, position (cm) = (-83.9463,60.7201,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 0.323248, position (cm) = (-111.159,54.8105,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 1.56335, position (cm) = (-96.7043,45.8793,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 6.56557, position (cm) = (-97.1757,50.627,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 2.21934, position (cm) = (-75.1279,38.3492,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.757156, position (cm) = (-68.7805,58.2276,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 74.0707, position (cm) = (-101.267,77.3072,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 74.1666, position (cm) = (-92.459,80.803,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 74.1666, position (cm) = (-92.459,80.803,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 7.82316, position (cm) = (5.44011,95.793,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 1.70779, position (cm) = (36.0474,69.9606,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 55.1617, position (cm) = (41.3797,137.274,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 55.1617, position (cm) = (41.3797,137.274,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 54.8093, position (cm) = (40.8468,137.146,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 41.4921, position (cm) = (41.4843,137.245,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 63.0632, position (cm) = (79.6616,185.844,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 2.8534, position (cm) = (80.4084,149.008,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 61.7829, position (cm) = (99.404,167.974,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 61.7829, position (cm) = (99.404,167.974,200), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.96972, position (cm) = (59.7508,147.9,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 9.43893e-06, position (cm) = (61.8062,143.282,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.0755082, position (cm) = (92.1237,225.863,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 3.2149, position (cm) = (82.4609,214.158,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 0.116405, position (cm) = (80.4442,168.437,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 4.1324, position (cm) = (77.4924,171.226,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 6.84426, position (cm) = (74.8254,162.397,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 4.83115, position (cm) = (5.41087,98.8026,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.261059, position (cm) = (42.0713,-5.07709,200), weight = 0.00195312
+ gamma, kinetic energy (MeV) = 2.82303, position (cm) = (46.6991,-6.07562,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 83.1636, position (cm) = (40.9669,20.2097,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 0.100775, position (cm) = (47.1222,20.4139,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 0.70891, position (cm) = (13.651,31.9235,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 0.400081, position (cm) = (49.0904,47.1434,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 0.0428026, position (cm) = (27.8649,27.8175,200), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.1206, position (cm) = (30.7271,31.0361,200), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.510999, position (cm) = (28.6634,25.6978,200), weight = 1.90735e-06
+ e-, kinetic energy (MeV) = 0.665098, position (cm) = (28.9974,25.8948,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 6.67478, position (cm) = (29.7787,26.343,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 0.108667, position (cm) = (28.7287,9.4254,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 0.158873, position (cm) = (47.7996,22.0928,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.200431, position (cm) = (50.5408,-1.22415,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 2.52311, position (cm) = (19.9085,37.0307,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 0.0914027, position (cm) = (23.2748,24.7158,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 11.7881, position (cm) = (-12.4603,5.92534,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 42.7489, position (cm) = (-15.3812,13.9923,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 82.5127, position (cm) = (58.6234,16.014,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 53.9391, position (cm) = (43.3698,10.5264,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 53.9391, position (cm) = (43.3698,10.5264,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 0.0894476, position (cm) = (29.1746,4.55747,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 2.55447, position (cm) = (26.3687,20.7728,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 57.1704, position (cm) = (45.8857,9.1206,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 81.7249, position (cm) = (37.4773,14.053,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 2.54467, position (cm) = (43.8502,39.7986,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 1.02472e-06, position (cm) = (48.8496,69.4606,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 0.124801, position (cm) = (36.3559,52.7059,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 0.108561, position (cm) = (47.2193,34.1283,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 60.323, position (cm) = (45.0423,47.9314,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 0.0804644, position (cm) = (27.9841,-20.8146,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 15.6879, position (cm) = (47.7745,-19.0555,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 15.6879, position (cm) = (47.7745,-19.0555,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 15.7176, position (cm) = (47.1161,-17.1153,200), weight = 9.53674e-07
+ neutron, kinetic energy (MeV) = 8.5551e-07, position (cm) = (38.3786,-2.48492,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 0.28717, position (cm) = (58.5666,-7.51223,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 1.12146, position (cm) = (46.0582,-4.22595,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 0.190762, position (cm) = (41.0409,-14.5172,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 2.53713, position (cm) = (42.9173,-18.9663,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 0.0745464, position (cm) = (13.8262,-0.710129,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 2.5363, position (cm) = (51.8811,-17.0746,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 3.89367, position (cm) = (26.5934,-10.7454,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 10.868, position (cm) = (28.4626,-2.72924,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 0.000274192, position (cm) = (48.2206,-13.2288,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 0.647743, position (cm) = (30.9264,-22.618,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 0.00103943, position (cm) = (-40.4447,9.06861,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 46.9981, position (cm) = (20.684,-14.1924,200), weight = 0.00390625
+ gamma, kinetic energy (MeV) = 5.51506, position (cm) = (-6.90596,-17.7473,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 0.000913655, position (cm) = (2.0595,-20.6688,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 95.7885, position (cm) = (-5.48358,36.4519,200), weight = 0.000976562
+ gamma, kinetic energy (MeV) = 2.59963, position (cm) = (18.087,23.6867,200), weight = 0.00195312
+ gamma, kinetic energy (MeV) = 1.02521, position (cm) = (26.4721,20.1154,200), weight = 0.00195312
+ gamma, kinetic energy (MeV) = 0.0681553, position (cm) = (19.8425,27.5912,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 0.131304, position (cm) = (22.5017,34.9388,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 3.88751, position (cm) = (21.7345,29.1245,200), weight = 0.00195312
+ gamma, kinetic energy (MeV) = 0.868296, position (cm) = (31.3866,25.7274,200), weight = 0.00390625
+ gamma, kinetic energy (MeV) = 0.334309, position (cm) = (21.2898,24.8504,200), weight = 0.00390625
+ e-, kinetic energy (MeV) = 0.553007, position (cm) = (20.9777,25.1961,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 5.56315, position (cm) = (24.5436,28.0455,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 44.043, position (cm) = (26.1982,22.4169,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 44.043, position (cm) = (26.1982,22.4169,200), weight = 0.00195312
+ gamma, kinetic energy (MeV) = 0.323884, position (cm) = (8.59223,62.1141,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 4.30741e-07, position (cm) = (14.7272,53.0901,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.125035, position (cm) = (32.2781,66.6099,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 7.36711, position (cm) = (-59.9816,34.7701,200), weight = 0.0078125
+ neutron, kinetic energy (MeV) = 11.1288, position (cm) = (-61.6454,36.7473,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 10.9097, position (cm) = (-62.6838,37.7045,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 11.1288, position (cm) = (-61.6454,36.7473,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 1.61677, position (cm) = (-36.3809,-36.8437,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 0.168446, position (cm) = (-34.424,-12.8499,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 0.219542, position (cm) = (-61.9879,29.3687,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.264779, position (cm) = (-61.3944,24.3724,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 0.480634, position (cm) = (-59.8117,30.3907,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 7.82491, position (cm) = (-64.5173,28.4092,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 0.0358182, position (cm) = (-87.8091,-2.66558,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.308241, position (cm) = (-65.5,14.7783,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 0.591076, position (cm) = (-88.088,4.32767,200), weight = 6.10352e-05
+ e-, kinetic energy (MeV) = 5.53939, position (cm) = (-69.1212,11.2559,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.374897, position (cm) = (-69.0938,11.2313,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 32.8426, position (cm) = (-70.1857,8.18647,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 67.9906, position (cm) = (-51.2576,7.32876,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 67.9906, position (cm) = (-51.2576,7.32876,200), weight = 0.000976562
+ gamma, kinetic energy (MeV) = 0.144025, position (cm) = (-58.4114,15.8251,200), weight = 0.00195312
+ gamma, kinetic energy (MeV) = 0.874687, position (cm) = (-50.2625,8.03857,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 80.6301, position (cm) = (-55.9243,8.58227,200), weight = 0.00195312
+ gamma, kinetic energy (MeV) = 0.161908, position (cm) = (-25.9917,45.1157,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 0.00792887, position (cm) = (33.5288,49.5403,200), weight = 0.0078125
+ neutron, kinetic energy (MeV) = 65.0986, position (cm) = (-2.00823,64.4569,200), weight = 0.0078125
+ gamma, kinetic energy (MeV) = 0.268799, position (cm) = (103.613,7.6941,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 0.176007, position (cm) = (105.417,6.15123,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 8.3872, position (cm) = (105.638,6.79602,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 24.2545, position (cm) = (121.992,-12.3582,200), weight = 0.000976562
+ gamma, kinetic energy (MeV) = 0.735471, position (cm) = (88.998,-30.094,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 1.48984, position (cm) = (117.521,-58.3603,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 0.606869, position (cm) = (121.594,-31.2134,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 53.2995, position (cm) = (121.275,-50.7145,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 1.42712, position (cm) = (138.93,-78.8335,200), weight = 0.000976562
+ gamma, kinetic energy (MeV) = 0.294521, position (cm) = (139.743,-81.191,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 22.8684, position (cm) = (120.372,-48.7635,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 78.4833, position (cm) = (123.184,-77.2231,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 77.5335, position (cm) = (113.458,-77.5556,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 1.92178, position (cm) = (138.664,-57.9339,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 1.25181, position (cm) = (135.777,-56.4015,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 3.02188, position (cm) = (129.545,-55.6275,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 32.4702, position (cm) = (239.846,-38.5271,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 0.0920341, position (cm) = (239.477,-51.3924,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 0.216363, position (cm) = (238.937,-56.6199,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 2.02359, position (cm) = (216.64,-54.3531,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 2.02359, position (cm) = (216.64,-54.3531,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 33.2967, position (cm) = (237.246,-57.5637,200), weight = 9.53674e-07
+ gamma, kinetic energy (MeV) = 0.214079, position (cm) = (230.01,-57.7926,200), weight = 9.53674e-07
+ gamma, kinetic energy (MeV) = 0.105706, position (cm) = (227.045,-53.4663,200), weight = 9.53674e-07
+ neutron, kinetic energy (MeV) = 32.9699, position (cm) = (218.389,-57.0696,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 0.157482, position (cm) = (152.811,-56.2437,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.563566, position (cm) = (157.374,-46.433,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 2.313, position (cm) = (166.584,-53.7792,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 0.642977, position (cm) = (164.636,-50.8168,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 1.10785, position (cm) = (179.175,-44.2273,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 0.158432, position (cm) = (158.937,-49.5074,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 1.68183, position (cm) = (157.794,-40.5337,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.510999, position (cm) = (132.173,8.22796,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.276844, position (cm) = (192.242,-63.2829,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 3.70385, position (cm) = (188.505,-62.762,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 45.2277, position (cm) = (191.396,-63.6738,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 45.104, position (cm) = (191.221,-63.5035,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 45.2277, position (cm) = (191.396,-63.6738,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 59.5316, position (cm) = (161.737,-36.4021,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.093511, position (cm) = (162.48,-51.4525,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 1.67549, position (cm) = (151.783,-45.5427,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 49.0473, position (cm) = (166.142,-32.0399,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 49.0473, position (cm) = (166.142,-32.0399,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 0.692438, position (cm) = (151.797,-64.4164,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 2.43964, position (cm) = (160.158,-60.3003,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 0.00163138, position (cm) = (110.8,-60.87,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 9.96247, position (cm) = (117.299,-77.0032,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 94.0571, position (cm) = (121.565,-86.7634,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 66.498, position (cm) = (92.5472,-57.6632,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 0.000472111, position (cm) = (101.466,-46.0376,200), weight = 0.000976562
+ gamma, kinetic energy (MeV) = 0.228378, position (cm) = (92.7358,-58.6989,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 1.64556e-06, position (cm) = (100.495,-56.9377,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 39.0065, position (cm) = (186.096,20.1019,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 39.0065, position (cm) = (186.096,20.1019,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 0.249905, position (cm) = (166.931,-33.8181,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.208519, position (cm) = (165.691,-28.1395,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 38.5365, position (cm) = (189.587,6.12434,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.291247, position (cm) = (193.475,-6.7308,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 0.0163557, position (cm) = (210.971,5.85653,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 3.86853, position (cm) = (213.36,-13.0377,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 4.30736, position (cm) = (225.061,8.70402,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 4.65158, position (cm) = (210.634,-1.34264,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 0.179342, position (cm) = (98.0521,-5.24553,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 98.4827, position (cm) = (0.49018,-0.922808,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 100, position (cm) = (0,0,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 50.8403, position (cm) = (17.208,-2.36653,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 23.7165, position (cm) = (3.70295,-4.88404,200), weight = 0.00195312
+ gamma, kinetic energy (MeV) = 0.0772011, position (cm) = (7.38725,-4.44452,200), weight = 0.00195312
+ gamma, kinetic energy (MeV) = 4.18449, position (cm) = (5.96196,-4.14904,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 17.9325, position (cm) = (4.4345,-4.54713,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 17.9325, position (cm) = (4.4345,-4.54713,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 17.9325, position (cm) = (4.4345,-4.54713,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 99.8693, position (cm) = (6.12615,-1.0551,200), weight = 0.00195312
+ gamma, kinetic energy (MeV) = 0.156326, position (cm) = (29.2536,-97.7402,200), weight = 0.015625
+ neutron, kinetic energy (MeV) = 71.1258, position (cm) = (32.4956,-59.2294,200), weight = 0.03125
+ neutron, kinetic energy (MeV) = 71.3083, position (cm) = (30.7276,-61.4797,200), weight = 0.03125
+ neutron, kinetic energy (MeV) = 3.398, position (cm) = (-14.3147,-133.967,200), weight = 0.00195312
+ gamma, kinetic energy (MeV) = 2.68135, position (cm) = (-14.8499,-189.47,200), weight = 0.00195312
+ gamma, kinetic energy (MeV) = 0.580833, position (cm) = (18.0778,-89.3997,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 9.09464, position (cm) = (16.1073,-89.5148,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 53.8359, position (cm) = (16.241,-89.8684,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 0.207573, position (cm) = (20.613,-84.8561,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 0.24107, position (cm) = (24.0705,-81.5734,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 1.03483, position (cm) = (19.3419,-83.3616,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 33.1638, position (cm) = (20.8974,-83.4093,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 64.631, position (cm) = (20.4634,-89.9061,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 64.631, position (cm) = (20.4634,-89.9061,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 63.4849, position (cm) = (20.715,-95.6511,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 0.337702, position (cm) = (12.7068,-121.815,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 10.006, position (cm) = (13.8253,-119.844,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 0.064349, position (cm) = (3.68198,-151.855,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 0.806164, position (cm) = (12.6903,-122.013,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 15.8944, position (cm) = (14.6192,-122.181,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 0.123242, position (cm) = (22.7334,-104.235,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 0.529851, position (cm) = (10.1463,-128.505,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 2.84237, position (cm) = (-3.42188,-71.121,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 69.1641, position (cm) = (9.28583,-95.6289,200), weight = 0.0078125
+ gamma, kinetic energy (MeV) = 0.609729, position (cm) = (44.3496,-89.2905,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 10.8514, position (cm) = (79.7495,10.4035,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 0.916107, position (cm) = (56.103,-3.32332,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 3.24492, position (cm) = (68.8772,-2.66848,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 0.657929, position (cm) = (44.3406,-21.6005,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 10.9524, position (cm) = (84.083,15.3224,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 2.04886e-06, position (cm) = (54.4024,4.00598,200), weight = 0.000976562
+ gamma, kinetic energy (MeV) = 0.559567, position (cm) = (32.2647,-14.4867,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 41.8862, position (cm) = (39.053,-20.8313,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 42.6565, position (cm) = (41.119,-23.4087,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 42.6296, position (cm) = (40.989,-23.2238,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 56.5775, position (cm) = (26.9482,45.1973,200), weight = 0.015625
+ neutron, kinetic energy (MeV) = 3.1046, position (cm) = (19.4215,47.9276,200), weight = 0.015625
+ gamma, kinetic energy (MeV) = 8.70172, position (cm) = (40.4675,57.7889,200), weight = 0.015625
+ gamma, kinetic energy (MeV) = 7.94131, position (cm) = (24.9804,58.7573,200), weight = 0.0078125
+ gamma, kinetic energy (MeV) = 0.307895, position (cm) = (-66.5244,42.547,200), weight = 0.0078125
+ gamma, kinetic energy (MeV) = 0.880924, position (cm) = (-24.7761,54.8575,200), weight = 0.03125
+ neutron, kinetic energy (MeV) = 53.8197, position (cm) = (-0.0779305,89.6284,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 53.8197, position (cm) = (-0.0779305,89.6284,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.0997661, position (cm) = (2.44464,81.4451,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 53.5325, position (cm) = (2.49028,87.9416,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 53.5325, position (cm) = (2.49028,87.9416,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.0959851, position (cm) = (-2.52463,87.7217,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 2.85921, position (cm) = (-0.639123,82.059,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 2.09096, position (cm) = (-14.8989,81.3851,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 7.91439, position (cm) = (1.1169,79.8105,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 7.91439, position (cm) = (1.1169,79.8105,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 53.4838, position (cm) = (4.79079,84.8075,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 52.1301, position (cm) = (-15.9936,85.2098,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.318538, position (cm) = (27.8469,170.914,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 1.74962, position (cm) = (-1.86924,64.3096,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 3.31261, position (cm) = (-1.8183,66.3354,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 13.5935, position (cm) = (0.977891,68.3245,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.528405, position (cm) = (-5.90949,62.3326,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 1.00478, position (cm) = (150.679,30.8226,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 2.5695, position (cm) = (174.821,-4.92997,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 1.48406, position (cm) = (162.273,17.5019,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 17.3374, position (cm) = (172.384,-8.61932,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 5.22879, position (cm) = (154.169,63.3448,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 1.02881e-05, position (cm) = (141.658,19.9845,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 28.7318, position (cm) = (147.66,16.6985,200), weight = 1.19209e-07
+ neutron, kinetic energy (MeV) = 29.9663, position (cm) = (147.337,18.0117,200), weight = 5.96046e-08
+ gamma, kinetic energy (MeV) = 0.658354, position (cm) = (146.771,18.7024,200), weight = 5.96046e-08
+ gamma, kinetic energy (MeV) = 0.29266, position (cm) = (148.99,18.3149,200), weight = 5.96046e-08
+ neutron, kinetic energy (MeV) = 14.1243, position (cm) = (147.847,16.858,200), weight = 5.96046e-08
+ neutron, kinetic energy (MeV) = 29.8664, position (cm) = (145.805,16.0902,200), weight = 2.98023e-08
+ gamma, kinetic energy (MeV) = 1.08581, position (cm) = (162.219,1.26892,200), weight = 2.98023e-08
+ neutron, kinetic energy (MeV) = 23.0727, position (cm) = (146.239,15.1124,200), weight = 2.98023e-08
+ gamma, kinetic energy (MeV) = 4.17082, position (cm) = (153.162,25.3117,200), weight = 1.49012e-08
+ gamma, kinetic energy (MeV) = 0.780846, position (cm) = (136.249,44.3121,200), weight = 2.98023e-08
+ neutron, kinetic energy (MeV) = 1.3804, position (cm) = (132.641,21.1256,200), weight = 2.98023e-08
+ neutron, kinetic energy (MeV) = 29.9663, position (cm) = (147.337,18.0117,200), weight = 3.72529e-09
+ neutron, kinetic energy (MeV) = 29.9663, position (cm) = (147.337,18.0117,200), weight = 1.86265e-09
+ neutron, kinetic energy (MeV) = 29.9663, position (cm) = (147.337,18.0117,200), weight = 1.86265e-09
+ neutron, kinetic energy (MeV) = 28.9736, position (cm) = (137.34,20.9445,200), weight = 7.45058e-09
+ neutron, kinetic energy (MeV) = 29.9663, position (cm) = (147.337,18.0117,200), weight = 2.98023e-08
+ neutron, kinetic energy (MeV) = 5.63294, position (cm) = (166.787,23.7835,200), weight = 5.96046e-08
+ neutron, kinetic energy (MeV) = 0.578274, position (cm) = (174.551,22.7754,200), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 2.35123, position (cm) = (147.881,15.2693,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 13.749, position (cm) = (151.421,13.7721,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 10.8429, position (cm) = (206.771,7.44246,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 9.76604e-05, position (cm) = (194.684,16.3786,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 2.07884, position (cm) = (201.847,8.78427,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 0.152637, position (cm) = (197.887,7.04773,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 2.36051, position (cm) = (122.751,-7.29669,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.114176, position (cm) = (135.917,3.35926,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 0.059469, position (cm) = (138.84,15.799,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 2.57752, position (cm) = (128.04,2.84039,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 30.9038, position (cm) = (137.631,5.53491,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 0.310948, position (cm) = (129.232,14.2366,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 41.8395, position (cm) = (148.219,-1.73248,200), weight = 9.53674e-07
+ neutron, kinetic energy (MeV) = 41.8395, position (cm) = (148.219,-1.73248,200), weight = 9.53674e-07
+ neutron, kinetic energy (MeV) = 41.7702, position (cm) = (148.322,-1.00862,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 41.8395, position (cm) = (148.219,-1.73248,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 41.9894, position (cm) = (138.08,-3.35704,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 24.651, position (cm) = (120.829,-5.97393,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 0.281405, position (cm) = (116.568,-0.194279,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 0.692838, position (cm) = (117.548,1.51803,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 0.0024045, position (cm) = (133.423,16.6809,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 45.642, position (cm) = (119.913,-50.726,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 5.35186, position (cm) = (114.215,-32.2362,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 0.00253927, position (cm) = (99.4457,-32.8963,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 0.478947, position (cm) = (118.171,-59.1908,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 18.8317, position (cm) = (119.384,-50.3654,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 0.521378, position (cm) = (123.41,-44.695,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 3.08523, position (cm) = (115.882,-33.1506,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 0.474989, position (cm) = (119.407,-41.9314,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 3.33643, position (cm) = (98.0018,70.7381,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 1.13689, position (cm) = (169.864,-2.3,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 0.000112536, position (cm) = (174.851,4.95793,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 2.05276, position (cm) = (189.186,-11.5895,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 3.33659, position (cm) = (129.087,27.8553,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 0.0520791, position (cm) = (205.161,9.63888,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 0.229921, position (cm) = (219.056,5.6929,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 0.0783919, position (cm) = (217.512,24.8625,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 2.82238, position (cm) = (265.782,31.5502,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 0.111995, position (cm) = (275.349,30.1333,200), weight = 2.38419e-07
+ gamma, kinetic energy (MeV) = 1.35595, position (cm) = (275.697,32.3608,200), weight = 2.38419e-07
+ gamma, kinetic energy (MeV) = 3.98909, position (cm) = (276.53,29.5279,200), weight = 2.38419e-07
+ gamma, kinetic energy (MeV) = 0.510999, position (cm) = (271.251,28.0322,200), weight = 2.38419e-07
+ neutron, kinetic energy (MeV) = 31.9996, position (cm) = (277.874,31.6068,200), weight = 2.38419e-07
+ gamma, kinetic energy (MeV) = 0.118467, position (cm) = (262.59,26.6647,200), weight = 2.38419e-07
+ gamma, kinetic energy (MeV) = 0.153428, position (cm) = (274.553,15.8799,200), weight = 2.38419e-07
+ gamma, kinetic energy (MeV) = 0.510999, position (cm) = (281.514,19.7634,200), weight = 2.38419e-07
+ neutron, kinetic energy (MeV) = 1.93559e-06, position (cm) = (265.813,26.1763,200), weight = 4.76837e-07
+ gamma, kinetic energy (MeV) = 0.807539, position (cm) = (231.191,35.1918,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 43.3547, position (cm) = (268.974,32.9491,200), weight = 9.53674e-07
+ neutron, kinetic energy (MeV) = 42.9446, position (cm) = (265.534,27.7261,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 2.11028, position (cm) = (229.266,41.0722,200), weight = 9.53674e-07
+ gamma, kinetic energy (MeV) = 2.25321, position (cm) = (217.75,12.2063,200), weight = 9.53674e-07
+ gamma, kinetic energy (MeV) = 2.06427, position (cm) = (211.565,46.9462,200), weight = 9.53674e-07
+ gamma, kinetic energy (MeV) = 0.126488, position (cm) = (190.058,20.5193,200), weight = 9.53674e-07
+ gamma, kinetic energy (MeV) = 1.34548, position (cm) = (231.17,40.6778,200), weight = 9.53674e-07
+ gamma, kinetic energy (MeV) = 0.20301, position (cm) = (220.745,20.3009,200), weight = 2.38419e-07
+ e-, kinetic energy (MeV) = 2.5847, position (cm) = (222.847,12.2534,200), weight = 2.38419e-07
+ neutron, kinetic energy (MeV) = 0.000259014, position (cm) = (174.244,16.9619,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 0.0047375, position (cm) = (179.579,6.80311,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.229096, position (cm) = (185.457,11.1244,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.119103, position (cm) = (239.774,-24.7137,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 0.835016, position (cm) = (239.576,-22.7087,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 2.29738, position (cm) = (231.732,-18.4672,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 1.22268, position (cm) = (235.363,-18.4475,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 80.3871, position (cm) = (238.623,-24.7936,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 2.06069, position (cm) = (189.949,14.8484,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 2.38995, position (cm) = (29.2091,22.4097,200), weight = 0.015625
+ gamma, kinetic energy (MeV) = 4.30762, position (cm) = (30.9957,16.9839,200), weight = 0.015625
+ neutron, kinetic energy (MeV) = 89.0442, position (cm) = (36.2744,16.6696,200), weight = 0.015625
+ neutron, kinetic energy (MeV) = 7.57121, position (cm) = (70.4278,-11.7219,200), weight = 0.0078125
+ gamma, kinetic energy (MeV) = 0.510999, position (cm) = (44.0285,18.6157,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 23.4179, position (cm) = (65.6548,9.85666,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 23.4179, position (cm) = (65.6548,9.85666,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 51.5009, position (cm) = (64.3105,0.694956,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 51.5009, position (cm) = (64.3105,0.694956,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 51.5009, position (cm) = (64.3105,0.694956,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 51.5253, position (cm) = (68.5112,-4.35054,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 51.2273, position (cm) = (68.9356,-4.62279,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 51.7693, position (cm) = (67.0661,-4.33843,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 0.118422, position (cm) = (54.5021,8.37519,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 1.81974, position (cm) = (70.9194,6.706,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 0.349039, position (cm) = (89.3595,-27.9654,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 2.63102, position (cm) = (89.6663,-28.7692,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 0.36114, position (cm) = (90.6911,-9.63462,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.106057, position (cm) = (91.1426,-6.92684,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.196935, position (cm) = (106.789,-15.0874,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.313607, position (cm) = (84.2021,-8.70735,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 0.168248, position (cm) = (90.5442,-7.29855,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 0.279052, position (cm) = (115.142,-19.8964,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 3.26968, position (cm) = (88.1858,-2.13635,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 21.4957, position (cm) = (65.113,-6.79175,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 50.7865, position (cm) = (82.6585,-28.4415,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 51.7411, position (cm) = (84.7707,-15.2177,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 0.00689709, position (cm) = (-27.9088,-135.325,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 0.000532589, position (cm) = (-22.9097,-126.355,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 4.17534, position (cm) = (-20.7176,-95.8873,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 1.90904, position (cm) = (-46.4022,-129.929,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 65.9547, position (cm) = (18.3364,-77.4417,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 66.6159, position (cm) = (13.1626,-71.6159,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 2.92381, position (cm) = (-11.4692,-76.7224,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 54.6519, position (cm) = (28.5148,-91.4618,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 54.6464, position (cm) = (28.6484,-90.7899,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 1.74999, position (cm) = (-23.4185,-21.2165,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 8.40098, position (cm) = (-12.5122,-30.3893,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 5.4334, position (cm) = (-4.42622,-19.9435,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 8.29083, position (cm) = (-16.622,-33.1574,200), weight = 9.53674e-07
+ gamma, kinetic energy (MeV) = 0.253123, position (cm) = (-13.6659,-39.1489,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 0.945223, position (cm) = (-6.23042,-33.8112,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 8.29083, position (cm) = (-16.622,-33.1574,200), weight = 2.38419e-07
+ neutron, kinetic energy (MeV) = 8.29083, position (cm) = (-16.622,-33.1574,200), weight = 1.19209e-07
+ neutron, kinetic energy (MeV) = 8.29083, position (cm) = (-16.622,-33.1574,200), weight = 1.19209e-07
+ gamma, kinetic energy (MeV) = 2.8498, position (cm) = (-10.6047,-20.6489,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 0.000188704, position (cm) = (19.9107,-38.1615,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 0.0158455, position (cm) = (-13.9904,-12.6839,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 1.25855, position (cm) = (12.956,-37.4635,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 1.22757, position (cm) = (-4.23219,-39.201,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 2.49668e-06, position (cm) = (-26.0356,-47.2645,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 83.8658, position (cm) = (1.58811,-13.0157,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 0.0889921, position (cm) = (16.2115,-13.7854,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 4.29597, position (cm) = (-0.705925,-18.2912,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 4.49459, position (cm) = (-0.332418,-19.9949,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 0.347395, position (cm) = (3.73365,-16.0623,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 83.2814, position (cm) = (9.07055,-3.87418,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 24.7908, position (cm) = (46.9118,-25.7759,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 4.61534e-05, position (cm) = (34.5119,-32.9634,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 4.74003, position (cm) = (7.00736,-18.5497,200), weight = 0.000976562
+ gamma, kinetic energy (MeV) = 7.71228, position (cm) = (28.6036,-31.2367,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 0.653239, position (cm) = (9.02385,-26.0857,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 0.000142345, position (cm) = (-6.68887,-25.3461,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 98.8015, position (cm) = (45.7535,-19.6904,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 4.23448, position (cm) = (44.5247,-21.3014,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 98.5557, position (cm) = (45.9404,-19.9721,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 7.61945, position (cm) = (-0.880415,-15.8375,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 69.1581, position (cm) = (-10.9084,-15.9372,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 79.5759, position (cm) = (-26.0997,-20.693,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 79.5759, position (cm) = (-26.0997,-20.693,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 79.5759, position (cm) = (-26.0997,-20.693,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 0.141352, position (cm) = (-46.9313,-29.866,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 11.3288, position (cm) = (14.1677,-2.90095,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 0.274773, position (cm) = (-14.3846,-4.64452,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 99.3831, position (cm) = (-14.8808,-8.94779,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 99.951, position (cm) = (-10.9863,-10.445,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.394805, position (cm) = (-11.3172,-10.5068,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 3.49631, position (cm) = (-12.166,-9.59287,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 95.3326, position (cm) = (-10.9915,-10.5135,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 99.951, position (cm) = (-10.9863,-10.445,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 99.951, position (cm) = (-10.9863,-10.445,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 99.951, position (cm) = (-10.9863,-10.445,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 99.951, position (cm) = (-10.9863,-10.445,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.238233, position (cm) = (-25.3819,-17.106,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 82.9354, position (cm) = (-12.781,-13.1378,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.133436, position (cm) = (-8.59649,-6.6435,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 57.4579, position (cm) = (-10.5379,-10.0014,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 99.6635, position (cm) = (-13.2014,-6.73786,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 99.6635, position (cm) = (-13.2014,-6.73786,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 99.6635, position (cm) = (-13.2014,-6.73786,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 99.6635, position (cm) = (-13.2014,-6.73786,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 25.4331, position (cm) = (-10.0287,3.70861,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 0.131936, position (cm) = (-4.43174,6.20104,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 0.158999, position (cm) = (-4.24554,1.04556,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 17.7093, position (cm) = (-7.46188,3.09392,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 0.276795, position (cm) = (4.12957,-6.70764,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 5.18115, position (cm) = (1.07968,-1.6965,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 98.2608, position (cm) = (-2.71136,-1.54372,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 98.1495, position (cm) = (-2.32909,-0.415128,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 97.9142, position (cm) = (4.10674,19.3568,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 68.9395, position (cm) = (-21.7433,-1.98991,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 0.751768, position (cm) = (-23.8855,5.69886,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 0.00164565, position (cm) = (-40.6993,-16.2852,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 74.7006, position (cm) = (-22.0922,9.6643,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 74.3295, position (cm) = (-23.6701,4.48793,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.930589, position (cm) = (-19.1801,30.6575,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 16.2839, position (cm) = (-26.5021,2.53095,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 16.5844, position (cm) = (-25.7993,-0.116558,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 16.2449, position (cm) = (-27.4815,2.96137,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 16.2449, position (cm) = (-27.4815,2.96137,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 16.1829, position (cm) = (-27.2703,3.59874,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 16.1829, position (cm) = (-27.2703,3.59874,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 18.1742, position (cm) = (-40.1689,6.59437,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 18.2628, position (cm) = (-40.6065,6.62864,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 6.73935, position (cm) = (-46.1785,13.1633,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 18.297, position (cm) = (-44.5357,7.51355,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 3.21029, position (cm) = (-38.1942,11.3075,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 4.8688, position (cm) = (-33.9419,4.00224,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 6.22437, position (cm) = (-33.1053,7.9268,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 0.0865533, position (cm) = (-39.2028,12.287,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 0.211394, position (cm) = (-31.3139,-7.06845,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 0.0584609, position (cm) = (-34.0146,6.23977,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 0.005417, position (cm) = (-35.0606,1.99753,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 0.0861562, position (cm) = (-41.188,1.30164,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 0.332784, position (cm) = (-38.7579,-1.53979,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 2.58145, position (cm) = (18.3939,48.6011,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 0.393273, position (cm) = (12.2104,38.8521,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 1.97838, position (cm) = (34.9326,62.6437,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 6.92839, position (cm) = (29.6803,55.0479,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 29.0785, position (cm) = (5.67864,36.0866,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 29.0785, position (cm) = (5.67864,36.0866,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 29.0785, position (cm) = (5.67864,36.0866,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 40.3414, position (cm) = (30.1069,25.1779,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 41.8948, position (cm) = (21.6455,29.9998,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 0.884101, position (cm) = (23.6456,32.548,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 16.338, position (cm) = (23.9112,32.2657,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 2.35763, position (cm) = (29.4174,38.7941,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 1.30215, position (cm) = (29.15,38.4745,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 7.57739e-05, position (cm) = (51.7984,-62.541,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.0476198, position (cm) = (26.3798,-43.1586,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 1.15661, position (cm) = (1.04008,-41.4533,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 0.0656166, position (cm) = (15.0038,-63.6699,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 0.177065, position (cm) = (8.83864,-74.377,200), weight = 1.19209e-07
+ neutron, kinetic energy (MeV) = 24.9676, position (cm) = (18.9072,-61.2547,200), weight = 1.49012e-08
+ neutron, kinetic energy (MeV) = 25.3316, position (cm) = (20.0125,-62.885,200), weight = 7.45058e-09
+ gamma, kinetic energy (MeV) = 0.272101, position (cm) = (18.041,-63.5862,200), weight = 7.45058e-09
+ gamma, kinetic energy (MeV) = 1.58035, position (cm) = (18.5277,-63.3574,200), weight = 7.45058e-09
+ neutron, kinetic energy (MeV) = 1.48012, position (cm) = (26.0408,-21.3328,200), weight = 1.49012e-08
+ neutron, kinetic energy (MeV) = 20.5682, position (cm) = (14.4513,-78.0781,200), weight = 7.45058e-09
+ neutron, kinetic energy (MeV) = 24.703, position (cm) = (14.417,-80.1419,200), weight = 3.72529e-09
+ neutron, kinetic energy (MeV) = 25.1956, position (cm) = (14.0998,-80.42,200), weight = 3.72529e-09
+ neutron, kinetic energy (MeV) = 24.8986, position (cm) = (10.7619,-83.1503,200), weight = 7.45058e-09
+ neutron, kinetic energy (MeV) = 2.66267, position (cm) = (10.928,-80.6872,200), weight = 7.45058e-09
+ neutron, kinetic energy (MeV) = 25.3708, position (cm) = (15.1491,-93.62,200), weight = 1.49012e-08
+ neutron, kinetic energy (MeV) = 25.3708, position (cm) = (15.1491,-93.62,200), weight = 7.45058e-09
+ neutron, kinetic energy (MeV) = 25.3708, position (cm) = (15.1491,-93.62,200), weight = 7.45058e-09
+ neutron, kinetic energy (MeV) = 0.617506, position (cm) = (8.47781,-79.0859,200), weight = 1.19209e-07
+ gamma, kinetic energy (MeV) = 1.02281, position (cm) = (17.4582,-65.1092,200), weight = 1.19209e-07
+ gamma, kinetic energy (MeV) = 1.21411, position (cm) = (16.9505,-62.0435,200), weight = 1.19209e-07
+ neutron, kinetic energy (MeV) = 26.2371, position (cm) = (22.0616,-61.4637,200), weight = 2.98023e-08
+ neutron, kinetic energy (MeV) = 26.2371, position (cm) = (22.0616,-61.4637,200), weight = 2.98023e-08
+ neutron, kinetic energy (MeV) = 26.3503, position (cm) = (20.6294,-62.0089,200), weight = 5.96046e-08
+ gamma, kinetic energy (MeV) = 0.101401, position (cm) = (14.8772,-75.1437,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 27.3341, position (cm) = (23.8361,-62.2949,200), weight = 9.53674e-07
+ neutron, kinetic energy (MeV) = 14.3215, position (cm) = (23.5844,-59.9873,200), weight = 9.53674e-07
+ gamma, kinetic energy (MeV) = 0.0592303, position (cm) = (22.9335,-66.1808,200), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.0709684, position (cm) = (18.9136,-69.8958,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 26.6537, position (cm) = (21.745,-45.3859,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 26.9793, position (cm) = (24.9535,-47.3148,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 27.2106, position (cm) = (2.1143,-65.4833,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 27.4486, position (cm) = (4.02735,-60.6298,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 4.57441, position (cm) = (-10.55,-60.0813,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 25.8904, position (cm) = (32.6594,-91.5718,200), weight = 9.53674e-07
+ neutron, kinetic energy (MeV) = 1.87039e-05, position (cm) = (45.5904,-95.4063,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 0.0233124, position (cm) = (58.7634,-146.55,200), weight = 3.72529e-09
+ neutron, kinetic energy (MeV) = 7.71499, position (cm) = (22.6815,-155.174,200), weight = 3.72529e-09
+ gamma, kinetic energy (MeV) = 3.04171, position (cm) = (107.593,-144.997,200), weight = 3.72529e-09
+ neutron, kinetic energy (MeV) = 24.1904, position (cm) = (45.654,-131.834,200), weight = 3.72529e-09
+ gamma, kinetic energy (MeV) = 7.11965, position (cm) = (25.2711,-106.414,200), weight = 7.45058e-09
+ neutron, kinetic energy (MeV) = 13.6793, position (cm) = (48.516,-154.696,200), weight = 3.72529e-09
+ gamma, kinetic energy (MeV) = 0.0930182, position (cm) = (22.2472,-130.886,200), weight = 7.45058e-09
+ gamma, kinetic energy (MeV) = 0.976645, position (cm) = (14.3353,-155.379,200), weight = 7.45058e-09
+ gamma, kinetic energy (MeV) = 0.775514, position (cm) = (37.6769,-123.7,200), weight = 7.45058e-09
+ gamma, kinetic energy (MeV) = 4.79204, position (cm) = (22.534,-138.842,200), weight = 7.45058e-09
+ neutron, kinetic energy (MeV) = 0.133621, position (cm) = (53.0694,-87.6028,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.169244, position (cm) = (47.925,-95.0136,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 3.89785, position (cm) = (77.9894,-96.7208,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 23.5385, position (cm) = (77.6906,-96.4244,200), weight = 4.76837e-07
+ gamma, kinetic energy (MeV) = 0.154836, position (cm) = (62.7238,-95.27,200), weight = 9.53674e-07
+ neutron, kinetic energy (MeV) = 0.0629818, position (cm) = (64.932,-99.8559,200), weight = 9.53674e-07
+ gamma, kinetic energy (MeV) = 0.62658, position (cm) = (63.2506,-104.364,200), weight = 9.53674e-07
+ neutron, kinetic energy (MeV) = 1.60023, position (cm) = (67.9398,-115.206,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 5.54791e-06, position (cm) = (64.6828,-144.689,200), weight = 4.76837e-07
+ gamma, kinetic energy (MeV) = 4.99842, position (cm) = (54.673,-114.262,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 17.7955, position (cm) = (16.2832,-63.5858,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 0.272478, position (cm) = (-17.1176,7.8341,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 75.7112, position (cm) = (-24.9804,14.5781,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 99.1054, position (cm) = (-20.2746,15.7082,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 0.198706, position (cm) = (-14.6483,19.2362,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 88.8767, position (cm) = (-21.7785,16.8344,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 99.1054, position (cm) = (-20.2746,15.7082,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 99.1054, position (cm) = (-20.2746,15.7082,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 99.1054, position (cm) = (-20.2746,15.7082,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 95.1195, position (cm) = (-21.4243,4.85897,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 95.0394, position (cm) = (-21.3794,5.0669,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 3.54752, position (cm) = (-29.794,14.0273,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 1.33199, position (cm) = (-29.6811,18.3776,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 37.4712, position (cm) = (-26.7778,14.5723,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 82.1885, position (cm) = (-4.71934,14.0029,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 82.3469, position (cm) = (-3.01948,12.855,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 7.26739, position (cm) = (-2.71395,10.568,200), weight = 3.8147e-06
+ proton, kinetic energy (MeV) = 54.7962, position (cm) = (-3.05934,13.1505,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 82.3469, position (cm) = (-3.01948,12.855,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.19294, position (cm) = (-12.2324,28.1096,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 0.880047, position (cm) = (-34.9339,25.6394,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.256528, position (cm) = (1.55998,23.1921,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 4.33483, position (cm) = (18.9639,42.7613,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 4.33483, position (cm) = (18.9639,42.7613,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 6.26711, position (cm) = (18.1556,42.2093,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 0.0235159, position (cm) = (-18.1009,42.9937,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.0850175, position (cm) = (-18.0539,29.5743,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 64.8912, position (cm) = (-17.172,46.1475,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 98.9174, position (cm) = (-34.2621,1.54282,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.0954669, position (cm) = (-77.5778,2.52747,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 56.0856, position (cm) = (-79.8553,19.8021,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 8.48453e-06, position (cm) = (-76.7057,16.5672,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 45.0416, position (cm) = (-56.9709,-6.27609,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 77.858, position (cm) = (-61.7241,9.51322,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 77.6732, position (cm) = (-62.1856,7.7855,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 61.3433, position (cm) = (-68.0301,-2.13328,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 3.8059e-06, position (cm) = (-84.5176,41.0211,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 1.10785, position (cm) = (-75.3688,52.7307,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.0862834, position (cm) = (-65.9394,93.2998,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 77.7092, position (cm) = (-108.552,38.9865,200), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.116157, position (cm) = (-84.0687,67.5516,200), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 3.87925, position (cm) = (-84.218,70.4165,200), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 3.93709, position (cm) = (-84.2543,67.0182,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 36.0138, position (cm) = (-84.1088,69.3831,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 66.4318, position (cm) = (-84.1794,69.3473,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 69.9326, position (cm) = (-22.8738,2.93979,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 0.184808, position (cm) = (-22.5634,0.838762,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 54.1803, position (cm) = (-19.7587,13.3423,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 54.1803, position (cm) = (-19.7587,13.3423,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 54.1803, position (cm) = (-19.7587,13.3423,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 19.7965, position (cm) = (7.88432,27.4406,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 0.000350666, position (cm) = (7.4613,33.5984,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 0.00447043, position (cm) = (0.776147,34.2642,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 3.28167, position (cm) = (20.9837,37.3181,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 0.135877, position (cm) = (23.5934,40.1039,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 0.000116912, position (cm) = (3.47772,44.5243,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 5.55718, position (cm) = (23.7542,40.8891,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 46.0553, position (cm) = (24.4579,40.4161,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 4.15117e-05, position (cm) = (24.2871,31.0899,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 1.1238, position (cm) = (22.263,44.4775,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.427934, position (cm) = (18.5793,42.3655,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.202816, position (cm) = (26.3887,42.3015,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 2.4949, position (cm) = (17.073,39.7422,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 6.0266, position (cm) = (19.4874,58.0948,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 0.0532904, position (cm) = (19.5996,49.4536,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 98.1818, position (cm) = (-12.5868,15.1971,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 1.17824, position (cm) = (-4.06826,-44.0225,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 2.23461, position (cm) = (-11.1141,-27.9176,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 0.64428, position (cm) = (2.29795,-16.8813,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 5.65454, position (cm) = (5.14948,-9.14048,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 9.60205, position (cm) = (12.5695,-5.24525,200), weight = 5.96046e-08
+ gamma, kinetic energy (MeV) = 0.0949416, position (cm) = (35.876,19.2275,200), weight = 5.96046e-08
+ gamma, kinetic energy (MeV) = 1.84421, position (cm) = (20.8915,15.0846,200), weight = 5.96046e-08
+ gamma, kinetic energy (MeV) = 8.76119, position (cm) = (-2.82291,-3.18545,200), weight = 5.96046e-08
+ neutron, kinetic energy (MeV) = 12.9079, position (cm) = (4.97706,-21.2468,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 11.3926, position (cm) = (-12.9786,-12.9961,200), weight = 9.53674e-07
+ neutron, kinetic energy (MeV) = 8.36737, position (cm) = (-27.2294,-32.2374,200), weight = 4.76837e-07
+ gamma, kinetic energy (MeV) = 0.0971458, position (cm) = (-25.1641,-34.7329,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 0.903311, position (cm) = (-26.4583,-31.8858,200), weight = 4.76837e-07
+ gamma, kinetic energy (MeV) = 1.706, position (cm) = (-26.3397,-31.1883,200), weight = 4.76837e-07
+ gamma, kinetic energy (MeV) = 0.37641, position (cm) = (-20.8314,-21.7305,200), weight = 9.53674e-07
+ gamma, kinetic energy (MeV) = 0.510999, position (cm) = (-19.2464,-25.0969,200), weight = 9.53674e-07
+ gamma, kinetic energy (MeV) = 0.170985, position (cm) = (-21.4866,-28.1068,200), weight = 9.53674e-07
+ gamma, kinetic energy (MeV) = 0.376656, position (cm) = (-21.2811,-6.99009,200), weight = 9.53674e-07
+ gamma, kinetic energy (MeV) = 1.5184, position (cm) = (18.5306,-13.9095,200), weight = 2.38419e-07
+ gamma, kinetic energy (MeV) = 0.172883, position (cm) = (26.2194,4.12838,200), weight = 5.96046e-08
+ gamma, kinetic energy (MeV) = 0.144015, position (cm) = (44.2877,6.70626,200), weight = 5.96046e-08
+ neutron, kinetic energy (MeV) = 6.70714, position (cm) = (30.7869,8.85803,200), weight = 2.98023e-08
+ neutron, kinetic energy (MeV) = 6.70714, position (cm) = (30.7869,8.85803,200), weight = 1.49012e-08
+ neutron, kinetic energy (MeV) = 5.85491, position (cm) = (30.6736,9.92078,200), weight = 1.49012e-08
+ gamma, kinetic energy (MeV) = 0.51072, position (cm) = (20.3315,6.02499,200), weight = 2.38419e-07
+ neutron, kinetic energy (MeV) = 10.0809, position (cm) = (28.909,4.12147,200), weight = 2.38419e-07
+ neutron, kinetic energy (MeV) = 0.747736, position (cm) = (4.32179,-4.09266,200), weight = 2.38419e-07
+ neutron, kinetic energy (MeV) = 0.0467467, position (cm) = (21.1928,23.7497,200), weight = 4.76837e-07
+ gamma, kinetic energy (MeV) = 2.08758, position (cm) = (-2.86326,1.33603,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 1.7592, position (cm) = (0.72474,-5.13186,200), weight = 2.38419e-07
+ neutron, kinetic energy (MeV) = 12.0987, position (cm) = (-8.48675,-7.39388,200), weight = 2.38419e-07
+ neutron, kinetic energy (MeV) = 98.8742, position (cm) = (-22.5309,24.9296,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 98.0191, position (cm) = (-20.8059,25.6082,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 2.70795, position (cm) = (-14.0727,7.49671,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 71.4711, position (cm) = (2.51645,2.73341,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 0.0665573, position (cm) = (14.9551,27.4039,200), weight = 4.76837e-07
+ gamma, kinetic energy (MeV) = 2.86985, position (cm) = (-19.4685,3.74611,200), weight = 9.53674e-07
+ neutron, kinetic energy (MeV) = 10.0887, position (cm) = (57.4168,14.2148,200), weight = 1.19209e-07
+ neutron, kinetic energy (MeV) = 10.0887, position (cm) = (57.4168,14.2148,200), weight = 1.19209e-07
+ gamma, kinetic energy (MeV) = 6.32318, position (cm) = (41.0232,1.27255,200), weight = 2.98023e-08
+ gamma, kinetic energy (MeV) = 8.10525, position (cm) = (99.5173,31.118,200), weight = 7.45058e-09
+ neutron, kinetic energy (MeV) = 6.51311, position (cm) = (70.1903,50.8243,200), weight = 9.31323e-10
+ neutron, kinetic energy (MeV) = 6.51311, position (cm) = (70.1903,50.8243,200), weight = 9.31323e-10
+ neutron, kinetic energy (MeV) = 7.71409, position (cm) = (70.318,50.7099,200), weight = 9.31323e-10
+ neutron, kinetic energy (MeV) = 7.71409, position (cm) = (70.318,50.7099,200), weight = 9.31323e-10
+ gamma, kinetic energy (MeV) = 2.73608, position (cm) = (33.0402,14.083,200), weight = 5.96046e-08
+ gamma, kinetic energy (MeV) = 0.115072, position (cm) = (65.0799,38.1611,200), weight = 1.49012e-08
+ gamma, kinetic energy (MeV) = 0.206512, position (cm) = (44.9108,19.4315,200), weight = 7.45058e-09
+ gamma, kinetic energy (MeV) = 0.130562, position (cm) = (71.1403,44.9806,200), weight = 7.45058e-09
+ neutron, kinetic energy (MeV) = 0.819165, position (cm) = (68.3286,42.0365,200), weight = 7.45058e-09
+ neutron, kinetic energy (MeV) = 11.9461, position (cm) = (90.2277,46.3774,200), weight = 7.45058e-09
+ neutron, kinetic energy (MeV) = 1.66704, position (cm) = (49.971,44.9584,200), weight = 2.38419e-07
+ neutron, kinetic energy (MeV) = 0.506519, position (cm) = (-38.2313,-21.8389,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 3.99068e-05, position (cm) = (-11.9081,-51.9455,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 1.16079, position (cm) = (-46.2076,-13.0028,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 1.45492, position (cm) = (-44.131,-15.0903,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 2.25875, position (cm) = (9.17502,-47.1248,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 0.755148, position (cm) = (-9.6274,-44.3546,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 13.0337, position (cm) = (-32.2146,-28.5978,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 13.0337, position (cm) = (-32.2146,-28.5978,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.0738254, position (cm) = (-33.7843,-21.9557,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 13.7698, position (cm) = (3.68054,-80.7141,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 0.0150218, position (cm) = (-1.81055,-74.9411,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 0.537005, position (cm) = (-0.604827,-74.6101,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 11.5216, position (cm) = (2.45176,-82.2136,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 0.177477, position (cm) = (-1.92165,-79,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 0.915906, position (cm) = (1.85648,-79.1922,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 2.22058, position (cm) = (3.21556,-82.8538,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 0.416649, position (cm) = (0.43866,-91.3939,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 0.0605834, position (cm) = (3.10577,-82.6918,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 1.01355, position (cm) = (-16.8157,-42.1543,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 0.00233101, position (cm) = (-1.96837,-53.7219,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 1.99888, position (cm) = (-18.9897,-47.5778,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 2.02411, position (cm) = (-15.694,-52.2015,200), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.134639, position (cm) = (-16.5428,-57.1547,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 15.6242, position (cm) = (-11.2103,-36.2005,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 15.6242, position (cm) = (-11.2103,-36.2005,200), weight = 9.53674e-07
+ neutron, kinetic energy (MeV) = 15.6242, position (cm) = (-11.2103,-36.2005,200), weight = 9.53674e-07
+ neutron, kinetic energy (MeV) = 2.0359, position (cm) = (-17.4668,-10.866,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 0.000411921, position (cm) = (42.4698,-93.54,200), weight = 2.38419e-07
+ gamma, kinetic energy (MeV) = 0.0759924, position (cm) = (14.422,-215.717,200), weight = 3.72529e-09
+ gamma, kinetic energy (MeV) = 0.441321, position (cm) = (-95.58,-173.991,200), weight = 9.31323e-10
+ neutron, kinetic energy (MeV) = 7.4714, position (cm) = (-107.023,-174.151,200), weight = 1.16415e-10
+ neutron, kinetic energy (MeV) = 7.4714, position (cm) = (-107.023,-174.151,200), weight = 1.16415e-10
+ neutron, kinetic energy (MeV) = 0.000603853, position (cm) = (-85.7114,-168.507,200), weight = 9.31323e-10
+ neutron, kinetic energy (MeV) = 1.30091, position (cm) = (-116.015,-164.457,200), weight = 9.31323e-10
+ gamma, kinetic energy (MeV) = 1.65417, position (cm) = (-113.981,-165.258,200), weight = 9.31323e-10
+ neutron, kinetic energy (MeV) = 2.78326, position (cm) = (-114.581,-166.88,200), weight = 9.31323e-10
+ gamma, kinetic energy (MeV) = 0.517579, position (cm) = (-87.6198,-160.878,200), weight = 4.65661e-10
+ neutron, kinetic energy (MeV) = 27.0766, position (cm) = (-96.7134,-167.4,200), weight = 2.32831e-10
+ neutron, kinetic energy (MeV) = 27.1797, position (cm) = (-98.5325,-170.683,200), weight = 1.16415e-10
+ neutron, kinetic energy (MeV) = 27.3217, position (cm) = (-98.6854,-168.648,200), weight = 1.16415e-10
+ gamma, kinetic energy (MeV) = 0.114459, position (cm) = (-95.7932,-169.925,200), weight = 4.65661e-10
+ neutron, kinetic energy (MeV) = 1.28242, position (cm) = (-94.775,-170.204,200), weight = 4.65661e-10
+ neutron, kinetic energy (MeV) = 3.4271, position (cm) = (-104.243,-166.839,200), weight = 2.32831e-10
+ neutron, kinetic energy (MeV) = 3.4271, position (cm) = (-104.243,-166.839,200), weight = 2.32831e-10
+ gamma, kinetic energy (MeV) = 3.61993, position (cm) = (-103.324,-166.817,200), weight = 4.65661e-10
+ gamma, kinetic energy (MeV) = 3.16638, position (cm) = (-114.143,-170.842,200), weight = 1.86265e-09
+ gamma, kinetic energy (MeV) = 1.29045, position (cm) = (-89.9591,-115.016,200), weight = 3.72529e-09
+ neutron, kinetic energy (MeV) = 5.85225e-05, position (cm) = (-91.5991,-182.765,200), weight = 1.49012e-08
+ gamma, kinetic energy (MeV) = 0.161433, position (cm) = (-86.2302,-178.606,200), weight = 1.49012e-08
+ neutron, kinetic energy (MeV) = 5.81851, position (cm) = (-121.448,-123.749,200), weight = 4.65661e-10
+ gamma, kinetic energy (MeV) = 0.623067, position (cm) = (18.2123,11.2854,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 0.0078323, position (cm) = (-6.27318,15.297,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.334235, position (cm) = (-3.68229,-3.95435,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 1.40824, position (cm) = (-10.608,26.2493,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 2.21472, position (cm) = (15.8323,32.1474,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 4.79333, position (cm) = (-7.62018,-17.5578,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 8.67203, position (cm) = (-20.0352,-14.504,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 0.362111, position (cm) = (-11.74,-11.276,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 0.218935, position (cm) = (-12.3169,-11.6174,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 3.08495, position (cm) = (-10.1169,-14.6867,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 3.08193, position (cm) = (-20.5582,-9.27761,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 59.645, position (cm) = (-26.5907,-3.53478,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 1.8868e-05, position (cm) = (-33.6795,2.56625,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 59.8655, position (cm) = (-22.6605,3.43899,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 59.8655, position (cm) = (-22.6605,3.43899,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 0.165464, position (cm) = (-17.7239,8.37555,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 1.65776, position (cm) = (-25.5741,4.48301,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 30.1735, position (cm) = (-21.2818,3.97729,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 30.2593, position (cm) = (-21.2745,3.84248,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 14.9878, position (cm) = (-9.16838,12.4743,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 14.9878, position (cm) = (-9.16838,12.4743,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 14.9878, position (cm) = (-9.16838,12.4743,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 1.09049, position (cm) = (-18.6902,3.61369,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 1.81042, position (cm) = (-16.4783,0.260102,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 60.0068, position (cm) = (-14.0737,6.55418,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 99.9061, position (cm) = (2.13256,-4.04366,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 5.41836e-05, position (cm) = (27.9522,27.7254,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 99.0543, position (cm) = (7.32341,-0.951439,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 99.0543, position (cm) = (7.32341,-0.951439,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 99.0543, position (cm) = (7.32341,-0.951439,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 99.0543, position (cm) = (7.32341,-0.951439,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 67.0336, position (cm) = (14.3243,0.0776082,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 8.79136, position (cm) = (-20.29,4.95237,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.257683, position (cm) = (-11.9573,15.2809,200), weight = 1.52588e-05
+ e-, kinetic energy (MeV) = 5.91415, position (cm) = (-7.52723,15.4292,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 3.49972, position (cm) = (-3.81025,2.17077,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.111299, position (cm) = (0.306284,-7.01365,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 2.10104, position (cm) = (-8.436,-25.3624,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 0.268168, position (cm) = (1.68462,-14.8037,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 0.000202788, position (cm) = (21.0179,-38.9741,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 21.8233, position (cm) = (-24.2782,-8.76173,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 1.81863, position (cm) = (-27.209,-1.92986,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 1.99499, position (cm) = (-26.4948,-2.20993,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 37.2177, position (cm) = (0.94018,-9.88214,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 2.14937, position (cm) = (-43.4917,-60.4795,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 9.08724, position (cm) = (-39.4674,-35.239,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 46.7284, position (cm) = (-47.4017,-47.9963,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 4.86821, position (cm) = (-4.99161,-9.28909,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 0.000748293, position (cm) = (-23.1454,-17.9855,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 14.0223, position (cm) = (-28.6248,14.6494,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 14.0223, position (cm) = (-28.6248,14.6494,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 1.31762e-06, position (cm) = (6.81683,-53.8222,200), weight = 0.000976562
+ gamma, kinetic energy (MeV) = 1.14776, position (cm) = (9.54246,-48.3594,200), weight = 0.000976562
+ gamma, kinetic energy (MeV) = 5.41728, position (cm) = (-1.26962,2.32395,200), weight = 0.0078125
+ gamma, kinetic energy (MeV) = 0.712096, position (cm) = (-0.128615,-4.69172,200), weight = 0.0078125
+ neutron, kinetic energy (MeV) = 0.00274246, position (cm) = (-0.784744,-12.7258,200), weight = 0.00390625
+ gamma, kinetic energy (MeV) = 5.5339, position (cm) = (-0.445407,-17.1042,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 39.2563, position (cm) = (2.35569,-24.1859,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 56.594, position (cm) = (5.57617,2.50032,200), weight = 0.00195312
+ gamma, kinetic energy (MeV) = 0.531329, position (cm) = (2.91906,3.82563,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 53.0826, position (cm) = (6.99596,3.53219,200), weight = 0.00195312
+ gamma, kinetic energy (MeV) = 0.0509903, position (cm) = (-7.80589,-70.8422,200), weight = 0.00195312
+ gamma, kinetic energy (MeV) = 2.90755, position (cm) = (-10.643,-23.7665,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 76.8369, position (cm) = (3.87812,21.1751,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 22.3096, position (cm) = (6.86201,8.15127,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 32.2281, position (cm) = (-2.44184,1.57761,200), weight = 0.00195312
+ gamma, kinetic energy (MeV) = 0.144676, position (cm) = (11.2866,17.4726,200), weight = 0.00195312
+ gamma, kinetic energy (MeV) = 0.123187, position (cm) = (-4.18474,-2.15966,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 34.4158, position (cm) = (9.23259,-4.02827,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 70.3129, position (cm) = (19.7799,16.1111,200), weight = 0.0078125
+ gamma, kinetic energy (MeV) = 0.0511136, position (cm) = (20.0257,19.6216,200), weight = 0.0078125
+ neutron, kinetic energy (MeV) = 2.919, position (cm) = (-14.7275,-10.9397,200), weight = 0.015625
+ neutron, kinetic energy (MeV) = 1.22433, position (cm) = (25.7637,41.9105,200), weight = 0.015625
+ neutron, kinetic energy (MeV) = 0.256968, position (cm) = (17.3729,-7.98528,200), weight = 0.015625
+ gamma, kinetic energy (MeV) = 0.871276, position (cm) = (35.6007,-0.0631059,200), weight = 0.015625
+ neutron, kinetic energy (MeV) = 73.2744, position (cm) = (11.3019,59.3046,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 73.2744, position (cm) = (11.3019,59.3046,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.600611, position (cm) = (12.129,58.2807,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 42.5077, position (cm) = (7.77391,57.6007,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 73.2744, position (cm) = (11.3019,59.3046,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 72.976, position (cm) = (11.9633,59.8031,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 73.2744, position (cm) = (11.3019,59.3046,200), weight = 0.000976562
+ neutron, kinetic energy (MeV) = 52.5593, position (cm) = (11.1746,30.2297,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 73.5525, position (cm) = (-2.93839,65.8914,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 73.5525, position (cm) = (-2.93839,65.8914,200), weight = 0.000976562
+ gamma, kinetic energy (MeV) = 0.202926, position (cm) = (2.03689,70.1252,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 4.82816, position (cm) = (-2.54734,65.7301,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 73.5525, position (cm) = (-2.93839,65.8914,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 2.31313, position (cm) = (23.5119,25.414,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 69.1387, position (cm) = (40.0717,68.4867,200), weight = 0.0078125
+ neutron, kinetic energy (MeV) = 69.3086, position (cm) = (39.4971,66.4058,200), weight = 0.0078125
+ gamma, kinetic energy (MeV) = 0.367636, position (cm) = (-11.3218,-147.382,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 31.4919, position (cm) = (-11.4681,-158.621,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 3.40382, position (cm) = (-10.1499,-134.519,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 1.0354, position (cm) = (-20.8115,-135.517,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 1.19822, position (cm) = (-120.513,-197.875,200), weight = 2.38419e-07
+ gamma, kinetic energy (MeV) = 5.6009, position (cm) = (-107.533,-186.547,200), weight = 2.38419e-07
+ gamma, kinetic energy (MeV) = 0.0758144, position (cm) = (-108.642,-182.64,200), weight = 5.96046e-08
+ neutron, kinetic energy (MeV) = 0.390776, position (cm) = (-89.9256,-186.179,200), weight = 1.19209e-07
+ gamma, kinetic energy (MeV) = 1.96892, position (cm) = (-99.7124,-167.147,200), weight = 1.19209e-07
+ gamma, kinetic energy (MeV) = 3.62382, position (cm) = (-30.4343,-156.02,200), weight = 9.53674e-07
+ gamma, kinetic energy (MeV) = 0.141245, position (cm) = (-33.0282,-161.664,200), weight = 4.76837e-07
+ gamma, kinetic energy (MeV) = 0.815376, position (cm) = (-31.7408,-160.075,200), weight = 4.76837e-07
+ gamma, kinetic energy (MeV) = 2.6155, position (cm) = (-31.8384,-160.164,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 3.23117, position (cm) = (-31.3398,-160.016,200), weight = 4.76837e-07
+ gamma, kinetic energy (MeV) = 4.94548, position (cm) = (-31.7104,-159.624,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 27.2215, position (cm) = (-31.4529,-159.779,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 2.84722, position (cm) = (-26.9877,-150.98,200), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 4.66585, position (cm) = (-27.6359,-154.459,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 4.87964, position (cm) = (-31.5523,-149.113,200), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 4.66929, position (cm) = (-22.3286,-130.674,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 0.816653, position (cm) = (-2.26393,-106.859,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 6.27311, position (cm) = (8.42725,-90.7093,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 1.07261, position (cm) = (-5.61963,-94.1596,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 0.108982, position (cm) = (-6.03246,-98.8223,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.0597, position (cm) = (21.6898,-132.598,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 10.745, position (cm) = (-29.2434,-141.685,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 9.22246, position (cm) = (-1.58808,-106.82,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 18.5469, position (cm) = (-19.9408,-108.081,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 0.0072044, position (cm) = (-48.2055,10.9656,200), weight = 1.52588e-05
+ e+, kinetic energy (MeV) = 1.8458, position (cm) = (-62.5538,6.81888,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 0.699628, position (cm) = (-93.4624,7.0228,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.473916, position (cm) = (-53.6885,18.8253,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 0.0862259, position (cm) = (-65.3334,113.377,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 17.1376, position (cm) = (-65.4625,130.367,200), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.261999, position (cm) = (-68.8632,65.2406,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 14.4763, position (cm) = (-86.4515,87.7362,200), weight = 9.53674e-07
+ gamma, kinetic energy (MeV) = 4.39376, position (cm) = (-106.199,107.158,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 5.38715, position (cm) = (-91.8268,112.923,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 2.74858e-05, position (cm) = (-109.626,129.273,200), weight = 4.76837e-07
+ neutron, kinetic energy (MeV) = 0.0940037, position (cm) = (-66.5896,118.568,200), weight = 9.53674e-07
+ gamma, kinetic energy (MeV) = 2.1486, position (cm) = (-115.369,115.07,200), weight = 1.52588e-05
+ e-, kinetic energy (MeV) = 2.477, position (cm) = (-115.597,115.238,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.50459, position (cm) = (-118.176,89.0005,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 0.0922066, position (cm) = (-128.27,74.3212,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 2.47716, position (cm) = (-102.3,129.106,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 0.000410691, position (cm) = (-82.8392,78.4749,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 0.0783116, position (cm) = (-115.821,33.3639,200), weight = 0.00390625
+ gamma, kinetic energy (MeV) = 0.244793, position (cm) = (-129.805,-10.8873,200), weight = 0.00390625
+ gamma, kinetic energy (MeV) = 0.373895, position (cm) = (18.0352,-80.4832,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 0.900646, position (cm) = (69.2529,-120.645,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 0.133829, position (cm) = (44.3493,-138.361,200), weight = 5.96046e-08
+ neutron, kinetic energy (MeV) = 0.79097, position (cm) = (29.8435,-136.329,200), weight = 2.98023e-08
+ gamma, kinetic energy (MeV) = 0.414827, position (cm) = (27.3051,-143.72,200), weight = 2.98023e-08
+ gamma, kinetic energy (MeV) = 0.175742, position (cm) = (25.1362,-143.209,200), weight = 2.98023e-08
+ neutron, kinetic energy (MeV) = 1.93168, position (cm) = (34.4544,-134.924,200), weight = 5.96046e-08
+ neutron, kinetic energy (MeV) = 4.8666, position (cm) = (36.1056,-134.463,200), weight = 5.96046e-08
+ neutron, kinetic energy (MeV) = 0.138482, position (cm) = (26.0865,-112.181,200), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.269501, position (cm) = (26.106,-117.428,200), weight = 9.53674e-07
+ gamma, kinetic energy (MeV) = 0.326932, position (cm) = (40.0025,-108.664,200), weight = 9.53674e-07
+ neutron, kinetic energy (MeV) = 2.5868, position (cm) = (32.2376,-95.5651,200), weight = 9.53674e-07
+ neutron, kinetic energy (MeV) = 11.2833, position (cm) = (-31.1667,-79.6047,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 11.0914, position (cm) = (-35.2155,-79.4761,200), weight = 0.00012207
+ neutron, kinetic energy (MeV) = 39.7412, position (cm) = (9.17536,-8.5756,200), weight = 0.000976562
+ gamma, kinetic energy (MeV) = 0.183694, position (cm) = (6.89106,-33.2439,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.0871654, position (cm) = (17.2663,-36.3452,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.18317, position (cm) = (14.4152,-19.8245,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 2.84103, position (cm) = (19.3869,-20.9881,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 0.278378, position (cm) = (20.1268,-26.5323,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 8.56481, position (cm) = (15.9618,-19.4111,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 0.642244, position (cm) = (0.0942183,-26.092,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 3.21049, position (cm) = (10.5758,-31.3618,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 0.141444, position (cm) = (10.4778,-34.1932,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 9.66317, position (cm) = (10.7822,-34.4734,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 25.6295, position (cm) = (11.1733,-35.6717,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 0.143659, position (cm) = (-6.41462,-21.9741,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 0.112936, position (cm) = (-0.513572,-26.5058,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 40.2124, position (cm) = (12.3789,-11.5484,200), weight = 0.00195312
+ neutron, kinetic energy (MeV) = 99.1608, position (cm) = (-71.4137,25.8728,200), weight = 0.03125
+ neutron, kinetic energy (MeV) = 98.8732, position (cm) = (-74.0364,17.1408,200), weight = 0.03125
+ gamma, kinetic energy (MeV) = 0.100437, position (cm) = (-52.0415,8.70196,200), weight = 0.03125
+ gamma, kinetic energy (MeV) = 0.182878, position (cm) = (-46.9069,4.84003,200), weight = 0.03125
+ neutron, kinetic energy (MeV) = 0.208644, position (cm) = (-45.2101,0.655081,200), weight = 0.03125
+ gamma, kinetic energy (MeV) = 1.06726, position (cm) = (-45.0374,4.74822,200), weight = 0.03125
+ gamma, kinetic energy (MeV) = 0.341996, position (cm) = (-49.2206,-33.9345,200), weight = 0.015625
+ neutron, kinetic energy (MeV) = 20.8867, position (cm) = (-31.1786,-11.4384,200), weight = 0.03125
+ gamma, kinetic energy (MeV) = 4.93529, position (cm) = (-36.7954,-52.1188,200), weight = 0.0078125
+ neutron, kinetic energy (MeV) = 52.6353, position (cm) = (-22.1404,-61.2325,200), weight = 0.00390625
+ gamma, kinetic energy (MeV) = 0.154855, position (cm) = (-17.5434,-56.4653,200), weight = 0.00390625
+ gamma, kinetic energy (MeV) = 0.174489, position (cm) = (-19.5556,-47.651,200), weight = 0.00390625
+ gamma, kinetic energy (MeV) = 0.460501, position (cm) = (-17.4727,-42.9135,200), weight = 0.00390625
+ gamma, kinetic energy (MeV) = 0.383, position (cm) = (-35.2004,-66.5137,200), weight = 0.00390625
+ gamma, kinetic energy (MeV) = 4.33096, position (cm) = (-10.8045,-53.9714,200), weight = 0.00390625
+ neutron, kinetic energy (MeV) = 0.687312, position (cm) = (-18.4319,-56.915,200), weight = 0.0078125
+ neutron, kinetic energy (MeV) = 98.4408, position (cm) = (-16.7551,21.2225,200), weight = 0.03125
+ neutron, kinetic energy (MeV) = 18.788, position (cm) = (-0.258903,24.5332,200), weight = 0.25
+ neutron, kinetic energy (MeV) = 17.7697, position (cm) = (3.00686,24.1162,200), weight = 0.25
+ neutron, kinetic energy (MeV) = 13.2732, position (cm) = (8.99592,25.5797,200), weight = 0.125
+ neutron, kinetic energy (MeV) = 13.2732, position (cm) = (8.99592,25.5797,200), weight = 0.125
+ neutron, kinetic energy (MeV) = 18.7758, position (cm) = (3.1603,17.8822,200), weight = 0.25
+ gamma, kinetic energy (MeV) = 0.997959, position (cm) = (-54.3914,-4.49767,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 3.74701, position (cm) = (-60.6272,5.06196,200), weight = 0.000488281
+ gamma, kinetic energy (MeV) = 6.94266, position (cm) = (-54.8946,-3.77826,200), weight = 0.000488281
+ neutron, kinetic energy (MeV) = 1.2138e-06, position (cm) = (-56.8926,-0.316852,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 0.0368978, position (cm) = (-73.3729,-16.536,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 69.3899, position (cm) = (-70.6188,0.804417,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 69.2551, position (cm) = (-69.2367,0.703475,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 1.01392e-06, position (cm) = (-76.7004,9.2391,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 3.92268, position (cm) = (-75.5939,-9.40673,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 1.60149, position (cm) = (-73.6783,-20.2246,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 2.97079, position (cm) = (-61.8732,-24.4843,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 6.20023, position (cm) = (-80.6804,-25.2031,200), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 8.98679e-07, position (cm) = (-68.3656,-26.9076,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 1.37534, position (cm) = (-64.2025,-17.5808,200), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 2.04958, position (cm) = (-71.0043,-24.5007,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 68.8247, position (cm) = (-77.5365,-2.58115,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 69.3463, position (cm) = (-67.954,-5.34641,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 69.3463, position (cm) = (-67.954,-5.34641,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 51.9441, position (cm) = (-37.5904,-0.413733,200), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 52.1361, position (cm) = (-27.7805,-1.9722,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 0.230693, position (cm) = (-31.4539,8.56013,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 0.619481, position (cm) = (-31.4334,8.62852,200), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 0.879993, position (cm) = (-31.4074,8.59589,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 11.3803, position (cm) = (-31.4173,8.59785,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 52.123, position (cm) = (-38.5873,3.03182,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 0.49488, position (cm) = (-69.4573,37.5625,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 2.54927, position (cm) = (-77.7024,47.0122,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 14.1413, position (cm) = (-21.598,-10.5098,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 12.3899, position (cm) = (-21.8585,-10.2994,200), weight = 3.05176e-05
+ gamma, kinetic energy (MeV) = 3.40891, position (cm) = (-33.575,-12.0577,200), weight = 1.52588e-05
+ neutron, kinetic energy (MeV) = 1.7363, position (cm) = (-38.6508,1.8912,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 2.42282, position (cm) = (-46.0719,1.06043,200), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 1.1996, position (cm) = (-35.3903,-19.8607,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 72.7497, position (cm) = (-78.0055,-9.38744,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 72.7497, position (cm) = (-78.0055,-9.38744,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 2.04897, position (cm) = (-66.7045,-26.3214,200), weight = 6.10352e-05
+ gamma, kinetic energy (MeV) = 1.0579, position (cm) = (-68.2343,-13.618,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 22.9425, position (cm) = (-65.9938,-23.6857,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 72.3216, position (cm) = (-70.7206,-16.2852,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 72.496, position (cm) = (-70.8499,-16.1054,200), weight = 3.05176e-05
+ neutron, kinetic energy (MeV) = 72.4547, position (cm) = (-83.2641,-12.9551,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 72.4547, position (cm) = (-83.2641,-12.9551,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 72.457, position (cm) = (-82.8446,-12.9068,200), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 2.8069e-06, position (cm) = (-81.7466,-23.5524,200), weight = 9.53674e-07
+ gamma, kinetic energy (MeV) = 5.23698, position (cm) = (-65.8272,11.7735,200), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 5.03317, position (cm) = (-90.6606,-4.15973,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.123991, position (cm) = (-118.21,-3.3701,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 62.9541, position (cm) = (-91.7336,6.18313,200), weight = 6.10352e-05
+ neutron, kinetic energy (MeV) = 63.2433, position (cm) = (-83.4242,8.67208,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 9.42481, position (cm) = (-21.2454,-26.2163,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 3.5628, position (cm) = (-70.1715,-58.074,200), weight = 0.000244141
+ gamma, kinetic energy (MeV) = 0.0930743, position (cm) = (-82.7656,-65.8063,200), weight = 0.000244141
+ neutron, kinetic energy (MeV) = 1.77362, position (cm) = (-58.3781,-62.9082,200), weight = 0.00012207
+ gamma, kinetic energy (MeV) = 0.0760503, position (cm) = (-24.0828,-7.48437,200), weight = 3.8147e-06
Graphics systems deleted.
Visualization Manager deleting...
diff --git a/examples/extended/biasing/GB06/exampleGB06.out b/examples/extended/biasing/GB06/exampleGB06.out
index 1595290a42d..5c5e7d11c19 100644
--- a/examples/extended/biasing/GB06/exampleGB06.out
+++ b/examples/extended/biasing/GB06/exampleGB06.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -43,12 +39,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -77,371 +71,371 @@ End of Run User Vis Actions: none
Some /vis commands (optionally) take a string to specify colour.
"/vis/list" to see available colours.
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -492,6 +486,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -597,6 +592,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -733,6 +729,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -742,187 +739,253 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Cr_sctns: GheishaInelastic: 0 eV ---> 100 TeV
================================================================
- gamma, kinetic energy (MeV) = 1.30153, position (cm) = (42.7763,-141.076,500), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 4.59053, position (cm) = (44.369,-140.184,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.123543, position (cm) = (35.2773,-38.4569,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 1.39244, position (cm) = (29.4997,-35.4128,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.839333, position (cm) = (24.6437,-34.2729,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.108613, position (cm) = (33.1729,-26.3274,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.367653, position (cm) = (44.5304,-32.0584,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 1.02779, position (cm) = (29.9509,-1.78642,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.0311888, position (cm) = (-3.5246,-21.5016,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 54.0585, position (cm) = (27.2403,-5.46697,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 1.49966, position (cm) = (43.4601,-18.5844,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 5.8596, position (cm) = (59.9034,-39.7343,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.0982102, position (cm) = (-92.8659,48.9581,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 6.13355, position (cm) = (-128.273,55.8424,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 59.6494, position (cm) = (-105.579,57.4694,500), weight = 1.90735e-06
- anti_nu_e, kinetic energy (MeV) = 0.643271, position (cm) = (-113.712,74.614,500), weight = 7.62939e-06
- anti_nu_e, kinetic energy (MeV) = 0.66522, position (cm) = (51.3462,51.6368,500), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.296321, position (cm) = (-93.9718,142.445,500), weight = 3.8147e-06
- neutron, kinetic energy (MeV) = 2.10408, position (cm) = (-122.02,133.151,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 2.68271, position (cm) = (-28.8759,92.0413,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 4.94869, position (cm) = (-17.2898,93.8317,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.491931, position (cm) = (-37.8543,87.7856,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 1.22499, position (cm) = (-27.7745,79.7579,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.928305, position (cm) = (-28.8141,72.684,500), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.0903671, position (cm) = (-41.1368,-3.57349,500), weight = 1.90735e-06
- e-, kinetic energy (MeV) = 0.692854, position (cm) = (-44.147,-5.03339,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.411854, position (cm) = (-72.1329,69.0881,500), weight = 1.90735e-06
- anti_nu_e, kinetic energy (MeV) = 0.393953, position (cm) = (18.7761,149.061,500), weight = 0.000976562
- neutron, kinetic energy (MeV) = 3.70686e-06, position (cm) = (33.1297,78.8143,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 2.36107, position (cm) = (109.451,50.2999,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.231026, position (cm) = (108.913,48.7944,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 11.7778, position (cm) = (11.5703,79.0234,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.068934, position (cm) = (12.192,79.8453,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.0901085, position (cm) = (9.25143,75.885,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 2.14784, position (cm) = (-22.8292,63.8559,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 1.31142, position (cm) = (42.3767,36.4318,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.155868, position (cm) = (19.2573,77.7069,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 77.3501, position (cm) = (16.4776,60.8813,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 77.6819, position (cm) = (14.2185,63.9241,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 2.80872, position (cm) = (5.40794,55.9395,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 78.5638, position (cm) = (11.8493,60.6563,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 2.59175, position (cm) = (50.4114,132.634,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 5.58201, position (cm) = (46.0006,102.977,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 17.5993, position (cm) = (34.4748,117.609,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.414578, position (cm) = (33.3405,110.311,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 1.41168, position (cm) = (36.2731,107.043,500), weight = 1.90735e-06
- e-, kinetic energy (MeV) = 3.88897, position (cm) = (36.4122,106.902,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.0134462, position (cm) = (36.4139,106.902,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 56.2446, position (cm) = (58.5122,129.032,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 1.15654, position (cm) = (15.4192,105.203,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.510999, position (cm) = (12.5411,98.1194,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 25.2312, position (cm) = (13.7501,106.84,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 37.717, position (cm) = (16.9892,105.263,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 89.1769, position (cm) = (16.0433,105.068,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 6.18357, position (cm) = (43.6678,70.6576,500), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.607609, position (cm) = (42.4925,83.9822,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.114029, position (cm) = (-13.284,133.676,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.572515, position (cm) = (3.9879,135.414,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.0503231, position (cm) = (10.1813,122.216,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.114947, position (cm) = (8.55656,119.485,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 2.73888, position (cm) = (18.0342,119.075,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 91.2525, position (cm) = (9.84029,118.944,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 27.9414, position (cm) = (7.39229,127.952,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 2.98585, position (cm) = (9.98023,122.796,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.0990749, position (cm) = (17.9881,123.737,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 5.78679, position (cm) = (13.7246,124.343,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.0995397, position (cm) = (11.172,116.268,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 2.4319, position (cm) = (-30.2533,52.1331,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.270287, position (cm) = (7.9903,80.5246,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.219137, position (cm) = (-76.6952,79.2507,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 81.022, position (cm) = (-18.4351,48.2906,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 80.5359, position (cm) = (-12.7907,55.0905,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 3.46553, position (cm) = (25.4362,25.1098,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 23.6733, position (cm) = (5.79618,66.0279,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 80.5985, position (cm) = (3.16351,69.5719,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.275635, position (cm) = (35.3212,55.9828,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 1.43058, position (cm) = (2.39267,47.4645,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 1.47803, position (cm) = (8.46056,84.4091,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 79.299, position (cm) = (106.975,148.136,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 79.299, position (cm) = (106.975,148.136,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 1.16036, position (cm) = (74.1165,71.9693,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.170491, position (cm) = (7.1601,114.658,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 20.5429, position (cm) = (11.2655,117.011,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.0338394, position (cm) = (-48.1403,62.8081,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.206721, position (cm) = (4.94452,122.061,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 39.3027, position (cm) = (1.78094,129.934,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.0870015, position (cm) = (-41.7384,64.4648,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.882553, position (cm) = (-24.4973,92.6759,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 31.2196, position (cm) = (-19.1944,86.8223,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 1.79422, position (cm) = (-10.0981,47.0907,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.191601, position (cm) = (-14.6929,49.0214,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 78.3517, position (cm) = (-13.2657,65.2873,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 9.07756e-06, position (cm) = (109.131,-66.1804,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 7.63113, position (cm) = (109.28,-61.0269,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 5.33811, position (cm) = (125.816,-81.5052,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 2.80678, position (cm) = (112.654,-70.7484,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 12.4101, position (cm) = (126.94,-88.9897,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.449543, position (cm) = (129.09,-81.2261,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 72.5377, position (cm) = (129.587,-84.7288,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.24346, position (cm) = (145.376,-75.5784,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.111518, position (cm) = (145.038,-42.3021,500), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 0.550998, position (cm) = (-76.413,-75.6072,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 3.29537, position (cm) = (-83.7784,-82.8905,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 5.95802, position (cm) = (-82.0927,-88.719,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 10.0866, position (cm) = (-83.3937,-82.0628,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 76.2486, position (cm) = (-80.0325,-81.9097,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.118641, position (cm) = (-72.4291,-76.1851,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 4.70511, position (cm) = (-93.0407,-75.4208,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 29.6003, position (cm) = (-93.7742,-73.3726,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 69.0438, position (cm) = (-88.9357,-62.0947,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 2.82127, position (cm) = (-99.7416,-120.583,500), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 4.77099, position (cm) = (-82.4461,-92.6472,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 74.9564, position (cm) = (-101.949,-97.9155,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 76.6956, position (cm) = (-101.959,-140.255,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 10.195, position (cm) = (-102.841,-140.627,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 6.18089, position (cm) = (-96.1957,-146.721,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.300278, position (cm) = (-109.595,84.9487,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 26.0689, position (cm) = (-134.547,74.5441,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 52.7863, position (cm) = (30.4415,-31.7274,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 2.70682, position (cm) = (39.9195,-49.1964,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 60.2628, position (cm) = (43.8855,-40.9224,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.00541233, position (cm) = (69.5273,-18.187,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 1.27335, position (cm) = (52.3834,2.04184,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 2.22306, position (cm) = (41.3716,-6.59314,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 2.88776, position (cm) = (146.766,-77.8263,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 4.89086, position (cm) = (136.584,-76.2728,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.338988, position (cm) = (131.549,-85.3742,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.697255, position (cm) = (121.057,-39.3251,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.10421, position (cm) = (59.231,-71.8187,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 4.44564, position (cm) = (52.0437,-89.3953,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 45.6591, position (cm) = (125.251,-36.23,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 88.362, position (cm) = (37.7142,5.2436,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 87.81, position (cm) = (42.3477,6.78566,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.610869, position (cm) = (39.8823,3.15368,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 5.33416, position (cm) = (24.7793,-13.9285,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.875304, position (cm) = (28.495,-7.84153,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 3.73358, position (cm) = (2.12994,7.81122,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 29.0447, position (cm) = (27.8767,5.80917,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 8.68249, position (cm) = (75.4005,2.03324,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 68.2912, position (cm) = (50.2127,-3.95406,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 87.9202, position (cm) = (40.7488,-22.4258,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 87.4721, position (cm) = (44.3771,-20.5909,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 87.6316, position (cm) = (40.1504,-20.9622,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.135862, position (cm) = (27.5893,-21.3301,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 72.8319, position (cm) = (38.8709,-16.922,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 4.95902e-10, position (cm) = (64.5198,22.5013,500), weight = 1.90735e-06
- anti_nu_e, kinetic energy (MeV) = 0.506557, position (cm) = (71.7723,-59.0125,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 3.33043, position (cm) = (60.3965,-12.6851,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 49.4794, position (cm) = (47.9445,-12.9989,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.267618, position (cm) = (38.1597,-18.2239,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.000209276, position (cm) = (34.8842,-21.9607,500), weight = 1.90735e-06
- anti_nu_e, kinetic energy (MeV) = 0.442928, position (cm) = (38.8284,-121.08,500), weight = 7.62939e-06
- neutron, kinetic energy (MeV) = 12.1794, position (cm) = (87.7643,33.8378,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 4.53797, position (cm) = (99.4671,30.2747,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.114575, position (cm) = (105.985,36.2829,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 5.32832, position (cm) = (89.5741,32.8736,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 1.24185, position (cm) = (115.361,35.0852,500), weight = 3.8147e-06
- gamma, kinetic energy (MeV) = 6.57908, position (cm) = (67.7619,3.41391,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.00347843, position (cm) = (59.489,7.7252,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 37.0107, position (cm) = (66.7378,3.91017,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 63.159, position (cm) = (68.9078,4.39659,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 5.38007, position (cm) = (16.405,74.5684,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 1.80249e-06, position (cm) = (49.7641,109.33,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.510999, position (cm) = (38.4615,81.7197,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.256003, position (cm) = (53.9757,78.8762,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.214291, position (cm) = (54.0543,86.6164,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 8.25301, position (cm) = (52.9154,84.9536,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 60.6157, position (cm) = (93.7194,1.93725,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 6.65032, position (cm) = (125.134,16.2604,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 73.1616, position (cm) = (117.589,9.45502,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.00207547, position (cm) = (95.7692,13.2977,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 1.94272, position (cm) = (107.096,-1.8848,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.358437, position (cm) = (97.3586,-0.167262,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 2.88052, position (cm) = (110.432,-4.66075,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 3.63931, position (cm) = (85.645,-37.989,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.177683, position (cm) = (79.087,-14.7922,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 1.68949, position (cm) = (67.2659,-28.4406,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 0.413933, position (cm) = (84.0853,-22.7778,500), weight = 1.90735e-06
- neutron, kinetic energy (MeV) = 0.00183119, position (cm) = (74.8696,-15.6955,500), weight = 1.90735e-06
- gamma, kinetic energy (MeV) = 2.13507, position (cm) = (79.6363,-16.1529,500), weight = 1.90735e-06
- anti_nu_e, kinetic energy (MeV) = 0.703492, position (cm) = (21.0064,-16.2521,500), weight = 0.000244141
- gamma, kinetic energy (MeV) = 0.0875858, position (cm) = (84.6851,69.3556,500), weight = 3.8147e-06
+ anti_nu_e, kinetic energy (MeV) = 0.61946, position (cm) = (39.6044,76.0296,500), weight = 0.0625
+ neutron, kinetic energy (MeV) = 68.9257, position (cm) = (57.8422,-129.531,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.617449, position (cm) = (52.2777,-138.547,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 7.63287, position (cm) = (56.7221,-113.896,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 57.7957, position (cm) = (48.2088,-132.054,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 2.59777, position (cm) = (9.62625,-133.98,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.52829, position (cm) = (-15.3029,-62.9984,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 78.9626, position (cm) = (-12.2138,-68.2605,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 1.50009, position (cm) = (-32.2763,-60.4376,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.591169, position (cm) = (-32.5927,-60.4947,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 1.80273, position (cm) = (2.71837,-36.2861,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 0.224478, position (cm) = (-8.51635,-65.9545,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 7.6833, position (cm) = (-12.2021,-66.3735,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 20.3956, position (cm) = (-12.8754,-63.3568,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 22.1038, position (cm) = (-13.9278,-63.9783,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 4.60071, position (cm) = (-23.8439,-72.0369,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 72.7188, position (cm) = (-18.4112,-73.5382,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 79.2175, position (cm) = (-28.1332,-70.5027,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 76.5023, position (cm) = (-21.2079,-72.9572,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 49.9327, position (cm) = (8.89053,-74.6929,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 1.22872, position (cm) = (8.48604,-72.4526,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 1.0342, position (cm) = (32.849,-55.7064,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.0853831, position (cm) = (12.7111,-58.8529,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.434479, position (cm) = (-17.2232,-47.2298,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 1.86804e-07, position (cm) = (-19.6535,-43.8492,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 3.73226, position (cm) = (-19.8548,-0.19126,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.214183, position (cm) = (11.9778,7.00533,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 3.25286, position (cm) = (-10.9164,8.05397,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 5.12823, position (cm) = (13.5565,7.96045,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.367291, position (cm) = (-12.9372,28.5297,500), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 2.91828, position (cm) = (9.2893,43.5099,500), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 0.000700777, position (cm) = (62.2304,46.2287,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 16.1699, position (cm) = (1.11841,16.5082,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.135546, position (cm) = (24.2053,37.9508,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 59.8054, position (cm) = (25.4238,38.7879,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 76.3884, position (cm) = (53.9259,48.4117,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 1.27337, position (cm) = (-18.732,5.90137,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.690467, position (cm) = (22.425,0.743351,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 2.31614, position (cm) = (-73.109,46.8368,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.240787, position (cm) = (-76.2072,-42.7088,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 5.23839, position (cm) = (-70.4483,-45.5426,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 5.75306, position (cm) = (-95.2547,-47.154,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.57826, position (cm) = (-88.9763,-43.7036,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.0899508, position (cm) = (-66.9639,-49.0642,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.631095, position (cm) = (-74.0286,-52.9402,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.106015, position (cm) = (19.022,49.3539,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 96.6908, position (cm) = (-20.7044,102.768,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 96.7937, position (cm) = (-18.6872,104.46,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 74.2545, position (cm) = (-11.2012,103.906,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 96.7937, position (cm) = (-18.6872,104.46,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 3.57456e-05, position (cm) = (46.9651,111.937,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.751217, position (cm) = (-25.0264,60.1806,500), weight = 7.62939e-06
+ neutron, kinetic energy (MeV) = 9.79379, position (cm) = (-52.9662,86.7093,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.128284, position (cm) = (-58.4579,119.65,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 2.6345, position (cm) = (-67.9475,133.827,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 0.304365, position (cm) = (-79.9067,44.0294,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.0744978, position (cm) = (-111.989,105.799,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.117266, position (cm) = (-121.801,105.297,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 3.24307, position (cm) = (-104.253,96.0058,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 95.3094, position (cm) = (-122.54,107.969,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 1.54535e-06, position (cm) = (-68.6748,45.268,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 95.1972, position (cm) = (-54.5949,138.799,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 94.0681, position (cm) = (-60.2337,137.301,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.0781208, position (cm) = (-28.1238,114.416,500), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 96.3259, position (cm) = (-18.409,147.784,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.426154, position (cm) = (-27.6877,142.431,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 94.9533, position (cm) = (-7.01734,141.364,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 95.3236, position (cm) = (-7.10305,141.292,500), weight = 1.90735e-06
+ anti_nu_e, kinetic energy (MeV) = 0.432595, position (cm) = (-148.197,-83.8732,500), weight = 0.000976562
+ gamma, kinetic energy (MeV) = 2.56015, position (cm) = (-4.12404,-69.0366,500), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 2.35631e-08, position (cm) = (-97.8117,7.65026,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 9.7739, position (cm) = (-97.5803,11.252,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 2.22306, position (cm) = (-146.324,-2.23146,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 19.7303, position (cm) = (-130.261,-86.4172,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 2.25971, position (cm) = (-103.58,-111.741,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 51.406, position (cm) = (-107.879,-116.624,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 2.02804, position (cm) = (-125.187,-120.491,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 1.69352, position (cm) = (-108.995,-110.353,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 4.7272, position (cm) = (-75.5438,-48.9963,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 2.82127, position (cm) = (86.8878,9.39806,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.869183, position (cm) = (66.3093,12.7222,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.490576, position (cm) = (84.8786,29.3341,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.198929, position (cm) = (66.9264,-32.0335,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 0.000402351, position (cm) = (44.2152,29.0027,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.0968037, position (cm) = (36.7925,43.9957,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.188975, position (cm) = (44.9744,35.6245,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.400183, position (cm) = (29.2994,60.7096,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 1.44928, position (cm) = (28.7374,60.9166,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.351705, position (cm) = (33.08,59.7821,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 3.66797, position (cm) = (29.5345,61.7571,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.194976, position (cm) = (58.2515,66.6091,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 96.8454, position (cm) = (54.8706,25.3286,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 0.0293597, position (cm) = (39.71,-1.43802,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 74.9501, position (cm) = (22.4243,79.9272,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 4.08095, position (cm) = (46.693,61.954,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 1.03068e-09, position (cm) = (46.1298,-6.77042,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 3.39237, position (cm) = (48.0149,-6.72446,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.376101, position (cm) = (45.6951,-6.55449,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.109797, position (cm) = (67.5075,39.3063,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.188072, position (cm) = (65.589,28.0654,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 1.23308, position (cm) = (80.1931,25.6051,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 35.0218, position (cm) = (85.251,62.563,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 34.494, position (cm) = (74.5696,58.2651,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 4.39513e-09, position (cm) = (-14.1918,58.5999,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 1.57397, position (cm) = (23.3847,53.9492,500), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 0.17876, position (cm) = (30.7603,67.9735,500), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 96.8321, position (cm) = (42.2645,77.7735,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 50.5822, position (cm) = (37.0867,88.9083,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 46.8003, position (cm) = (52.6127,64.425,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 0.820944, position (cm) = (58.5057,50.1553,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 2.67941, position (cm) = (36.5343,73.9529,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 89.7403, position (cm) = (95.6309,115.663,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.558125, position (cm) = (76.1903,116.958,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.122265, position (cm) = (79.0007,120.805,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 74.862, position (cm) = (92.1817,120.609,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 92.3735, position (cm) = (104.452,99.9616,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 92.8442, position (cm) = (111.089,107.12,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 3.73226, position (cm) = (55.0555,71.4618,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 0.193935, position (cm) = (60.3646,77.874,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 2.71411, position (cm) = (84.0923,46.9777,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.476692, position (cm) = (21.58,59.1033,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 82.3478, position (cm) = (55.3596,90.4548,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.120084, position (cm) = (78.6013,91.7583,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 3.85248, position (cm) = (43.0739,110.487,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 0.00231724, position (cm) = (31.6777,127.822,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 5.70242, position (cm) = (43.1024,108.606,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 75.6382, position (cm) = (43.1911,106.165,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 1.7265, position (cm) = (58.2324,80.7272,500), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 1.04301, position (cm) = (49.3855,35.2553,500), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 3.49903, position (cm) = (125.051,63.2881,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 4.39336, position (cm) = (77.9763,-2.86356,500), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 2.36474, position (cm) = (117.402,63.5465,500), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 0.798604, position (cm) = (88.5491,81.8979,500), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 0.28249, position (cm) = (135.626,105.497,500), weight = 3.8147e-06
+ e-, kinetic energy (MeV) = 1.99026, position (cm) = (136.3,105.737,500), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 2.56827, position (cm) = (123.046,111.399,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 81.2495, position (cm) = (87.7658,101.585,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.377883, position (cm) = (100.454,81.2301,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 0.344485, position (cm) = (78.7879,99.3961,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 2.47535, position (cm) = (89.7731,95.7199,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.169607, position (cm) = (85.0806,94.9638,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 3.18187e-09, position (cm) = (71.6101,122.399,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 1.14768, position (cm) = (87.0811,117.455,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 3.33091, position (cm) = (80.5035,111.045,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 13.782, position (cm) = (86.8123,107.053,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 81.2516, position (cm) = (85.4726,114.196,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.303309, position (cm) = (69.9409,89.6213,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 0.895112, position (cm) = (73.5043,94.3457,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.191993, position (cm) = (90.2211,87.45,500), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 6.22544, position (cm) = (90.1765,60.0232,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 20.234, position (cm) = (71.1644,64.2778,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 2.45002, position (cm) = (63.6056,52.9343,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.113663, position (cm) = (100.01,101.379,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 0.10881, position (cm) = (98.1314,104.505,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.11119, position (cm) = (102.58,94.9459,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.513405, position (cm) = (115.489,113.64,500), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 0.0662852, position (cm) = (100.844,126.47,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 57.5354, position (cm) = (101.429,129.776,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 96.6674, position (cm) = (100.075,130.174,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 30.9348, position (cm) = (126.68,138.314,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 31.0394, position (cm) = (131.969,132.406,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 6.41112e-07, position (cm) = (135.199,103.751,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 44.7794, position (cm) = (133.541,109.886,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 2.67123, position (cm) = (129.905,108.687,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 2.94074, position (cm) = (47.6155,58.0433,500), weight = 1.52588e-05
+ gamma, kinetic energy (MeV) = 2.02813, position (cm) = (7.42466,24.1059,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 1.5954, position (cm) = (5.34767,26.0472,500), weight = 1.90735e-06
+ e-, kinetic energy (MeV) = 0.658561, position (cm) = (-12.2212,1.44607,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 8.47403, position (cm) = (16.2398,17.3538,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.355048, position (cm) = (52.4338,-25.5422,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 43.2766, position (cm) = (61.8,-16.0184,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 2.53412, position (cm) = (71.2015,-5.96802,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 78.7166, position (cm) = (48.3049,-13.0356,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 79.1308, position (cm) = (50.5367,-13.3478,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.126973, position (cm) = (62.9713,-22.4898,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.125744, position (cm) = (57.85,-15.3308,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 1.58396, position (cm) = (50.7836,-22.3187,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 22.2626, position (cm) = (21.8778,100.914,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 0.0823793, position (cm) = (18.4853,56.0231,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 1.95913, position (cm) = (116.76,57.3109,500), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 0.116115, position (cm) = (75.5951,7.27469,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.735393, position (cm) = (116.173,43.6086,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 0.21861, position (cm) = (134.708,37.0141,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 59.9049, position (cm) = (125.707,46.6038,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 0.0574854, position (cm) = (139.862,54.3803,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 4.9943, position (cm) = (127.014,63.1453,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 7.10982, position (cm) = (118.216,-16.9352,500), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 52.7833, position (cm) = (72.6178,-48.9876,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 49.903, position (cm) = (73.5629,-32.2667,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 30.5024, position (cm) = (74.5279,-21.2826,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 1.11752, position (cm) = (51.7418,-38.7466,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 6.78977, position (cm) = (24.3193,-27.3586,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.133584, position (cm) = (38.9437,-36.954,500), weight = 1.90735e-06
+ e-, kinetic energy (MeV) = 0.458753, position (cm) = (45.7606,-38.171,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 14.7252, position (cm) = (26.8398,-52.9566,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 30.8386, position (cm) = (42.8588,-46.0282,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.502963, position (cm) = (53.975,-49.2779,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.430671, position (cm) = (37.2699,-18.1061,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 0.0296987, position (cm) = (50.5981,4.20125,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.410893, position (cm) = (30.98,-6.65394,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 85.3288, position (cm) = (108.641,-37.4223,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 2.14113, position (cm) = (98.0941,-34.7091,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 13.7955, position (cm) = (107.579,-29.6162,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.464026, position (cm) = (114.415,-7.27673,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.269747, position (cm) = (115.167,-5.4595,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 84.3356, position (cm) = (101.616,-32.2378,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 7.1453, position (cm) = (-108.966,116.549,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.756478, position (cm) = (-102.346,101.075,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 4.55174, position (cm) = (-3.21144,143.216,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 42.4152, position (cm) = (4.10149,124.668,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 43.2106, position (cm) = (7.47048,123.33,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.0532963, position (cm) = (53.0237,94.0927,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.169969, position (cm) = (55.7007,111.517,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.0898803, position (cm) = (53.6988,90.7676,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 1.82979e-06, position (cm) = (40.0394,82.4133,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 52.6684, position (cm) = (43.7447,108.512,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 1.03898, position (cm) = (48.7676,102.398,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 73.5156, position (cm) = (-53.214,142.826,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 9.90212e-11, position (cm) = (-38.7748,123.58,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 73.969, position (cm) = (-55.0984,136.959,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 74.1496, position (cm) = (-55.115,137.044,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.068947, position (cm) = (-66.0491,72.8319,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 13.2157, position (cm) = (-60.9703,64.4654,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 1.88966, position (cm) = (-53.4467,77.8233,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.283392, position (cm) = (-48.2358,115.47,500), weight = 1.90735e-06
+ anti_nu_e, kinetic energy (MeV) = 0.165897, position (cm) = (-73.9524,125.181,500), weight = 3.8147e-06
+ gamma, kinetic energy (MeV) = 0.211489, position (cm) = (50.0854,-58.2477,500), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 0.0562215, position (cm) = (35.8519,-21.6229,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.0951188, position (cm) = (62.6087,111.981,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.0901884, position (cm) = (75.295,64.8729,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.196267, position (cm) = (62.5517,60.27,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 12.4694, position (cm) = (70.1575,56.9592,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.462952, position (cm) = (30.7272,52.8832,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.562893, position (cm) = (53.8212,41.1245,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 3.52716, position (cm) = (46.2474,47.0325,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.0864977, position (cm) = (21.924,60.9043,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 1.72779, position (cm) = (23.6953,41.2432,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 1.40631e-10, position (cm) = (78.6046,13.5456,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.95064, position (cm) = (52.2213,25.6753,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 1.51645, position (cm) = (89.462,39.9864,500), weight = 3.8147e-06
+ neutron, kinetic energy (MeV) = 0.644377, position (cm) = (114.695,51.788,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 0.0685533, position (cm) = (109.133,-2.18767,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 8.85944e-08, position (cm) = (139.413,13.8057,500), weight = 1.90735e-06
+ neutron, kinetic energy (MeV) = 1.91043e-07, position (cm) = (3.43714,99.2819,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 0.37906, position (cm) = (-19.6292,86.3119,500), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 3.46904, position (cm) = (-15.977,106.282,500), weight = 1.90735e-06
+ gamma, kinetic energy (MeV) = 1.52598, position (cm) = (52.5575,119.975,500), weight = 7.62939e-06
+ gamma, kinetic energy (MeV) = 0.357773, position (cm) = (-87.5794,-8.32542,500), weight = 3.8147e-06
Graphics systems deleted.
Visualization Manager deleting...
diff --git a/examples/extended/biasing/History b/examples/extended/biasing/History
index 08d4591a22f..f697ea0c488 100644
--- a/examples/extended/biasing/History
+++ b/examples/extended/biasing/History
@@ -16,6 +16,9 @@ committal in the CVS repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+Jan 31, 2019, I.Hrivnacova - exbiasing-V10-04-00
+- Merged GitHub PR #4: all Boolean operators now return G4bool.
+
Nov 8, 2016, M. Verderi - exbiasing-V10-02-02
- revert ReverseMC to ReverseMC01-V10-02-00
diff --git a/examples/extended/biasing/ReverseMC01/include/RMC01DoubleWithWeightHit.hh b/examples/extended/biasing/ReverseMC01/include/RMC01DoubleWithWeightHit.hh
index 7c5ce162c05..39d5b612b36 100644
--- a/examples/extended/biasing/ReverseMC01/include/RMC01DoubleWithWeightHit.hh
+++ b/examples/extended/biasing/ReverseMC01/include/RMC01DoubleWithWeightHit.hh
@@ -63,7 +63,7 @@ public:
const RMC01DoubleWithWeightHit& operator = (const RMC01DoubleWithWeightHit &right);
- int operator == (const RMC01DoubleWithWeightHit &right) const;
+ G4bool operator == (const RMC01DoubleWithWeightHit &right) const;
inline void *operator new(size_t);
inline void operator delete(void *aHit);
diff --git a/examples/extended/biasing/ReverseMC01/run_adjoint_simulation_electron.out b/examples/extended/biasing/ReverseMC01/run_adjoint_simulation_electron.out
index 93077dbf70e..e094021c1d8 100644
--- a/examples/extended/biasing/ReverseMC01/run_adjoint_simulation_electron.out
+++ b/examples/extended/biasing/ReverseMC01/run_adjoint_simulation_electron.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -26,12 +22,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -78,36 +72,36 @@ G4AdjointPhysicsList::SetCuts:CutLength : 10 um
*** Sponsored by: ESA/ESTEC contract contract 21435/08/NL/AT ***
****************************************************************
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PhotoElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila
+ PhotoElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
========== Computation of cross section matrices for adjoint models ==========
Build adjoint cross section matrices for Inv_eIon_model
Build adjoint cross section matrices for AdjointeBremModel
@@ -322,7 +316,7 @@ nb event 175000
Run terminated.
Run Summary
Run Aborted after 175814 events processed.
- User=78.020000s Real=79.058161s Sys=0.070000s
+ User=77.900000s Real=78.495986s Sys=0.110000s
Results of reverse/adjoint simulation!
normalised edep [MeV] = 0.0016228
error[MeV] = 1.62274e-05
diff --git a/examples/extended/biasing/ReverseMC01/src/RMC01DoubleWithWeightHit.cc b/examples/extended/biasing/ReverseMC01/src/RMC01DoubleWithWeightHit.cc
index 815b5bc6ba4..ec4befae678 100644
--- a/examples/extended/biasing/ReverseMC01/src/RMC01DoubleWithWeightHit.cc
+++ b/examples/extended/biasing/ReverseMC01/src/RMC01DoubleWithWeightHit.cc
@@ -78,7 +78,7 @@ const RMC01DoubleWithWeightHit& RMC01DoubleWithWeightHit::operator=(
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-int RMC01DoubleWithWeightHit::operator==
+G4bool RMC01DoubleWithWeightHit::operator==
(const RMC01DoubleWithWeightHit &right) const
{
return(fValue == right.fValue && fWeight == right.fWeight);
diff --git a/examples/extended/electromagnetic/TestEm0/TestEm0.out b/examples/extended/electromagnetic/TestEm0/TestEm0.out
index e80ee75d0ba..f76b083f0b9 100644
--- a/examples/extended/electromagnetic/TestEm0/TestEm0.out
+++ b/examples/extended/electromagnetic/TestEm0/TestEm0.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
diff --git a/examples/extended/electromagnetic/TestEm1/TestEm1.out b/examples/extended/electromagnetic/TestEm1/TestEm1.out
index d0080c70641..e9ec491fc9f 100644
--- a/examples/extended/electromagnetic/TestEm1/TestEm1.out
+++ b/examples/extended/electromagnetic/TestEm1/TestEm1.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -352,7 +348,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 2000
- User=1.410000s Real=1.480957s Sys=0.000000s
+ User=1.400000s Real=1.403614s Sys=0.000000s
======================== run summary ======================
diff --git a/examples/extended/electromagnetic/TestEm10/TestEm10.out b/examples/extended/electromagnetic/TestEm10/TestEm10.out
index ccb7eea1628..9360472012b 100644
--- a/examples/extended/electromagnetic/TestEm10/TestEm10.out
+++ b/examples/extended/electromagnetic/TestEm10/TestEm10.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -36,55 +32,55 @@ plate plasma energy = 24.5068 eV
gas plasma energy = 0.731967 eV
Regular transparent X-ray TR radiator EM process is called
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
Lorentz Factor XTR photon number
@@ -139,44 +135,44 @@ Lorentz Factor XTR photon number
8.085e+04 3.156
9.283e+04 3.157
-total time for build X-ray TR energy loss tables = 0.14 s
+total time for build X-ray TR energy loss tables = 0.13 s
Build angle for energy distribution according the current radiator
Lorentz Factor XTR photon number
-total time for build XTR angle for given energy tables = 0.12 s
+total time for build XTR angle for given energy tables = 0.11 s
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
Lorentz Factor XTR photon number
@@ -237,292 +233,292 @@ Build angle for energy distribution according the current radiator
Lorentz Factor XTR photon number
-total time for build XTR angle for given energy tables = 0.13 s
+total time for build XTR angle for given energy tables = 0.11 s
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -561,7 +557,7 @@ Index : 2 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1000
- User=0.270000s Real=0.274490s Sys=0.000000s
+ User=0.260000s Real=0.264153s Sys=0.000000s
================== run summary =====================
End of Run TotNbofEvents = 1000
Mean energy deposit in absorber = 0.0483531 +-0.0185219 MeV
diff --git a/examples/extended/electromagnetic/TestEm11/TestEm11.out b/examples/extended/electromagnetic/TestEm11/TestEm11.out
index d2e8d2578ce..72868610afd 100644
--- a/examples/extended/electromagnetic/TestEm11/TestEm11.out
+++ b/examples/extended/electromagnetic/TestEm11/TestEm11.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -57,136 +53,136 @@ physicsList->setCut() start.
DefaultRegionForTheWorld 1 0 0
### === Ignore cuts flag: 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 10 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 10 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- KleinNishina : Emin= 0 eV Emax= 100 TeV FluoActive
+ KleinNishina : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 10 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 10 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
CSDA range table up to 1 GeV in 160 bins
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
CSDA range table up to 1 GeV in 160 bins
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
CSDA range table up to 1 GeV in 160 bins
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for proton SubType= 8 BuildTable= 0
+nuclearStopping: for proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
CSDA range table up to 1 GeV in 160 bins
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
=======================================================================
====== Radioactive Decay Physics Parameters ========
=======================================================================
@@ -202,218 +198,218 @@ Check EM cuts disabled for atomic de-excitation 0
Use Bearden atomic level energies 0
=======================================================================
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
CSDA range table up to 1 GeV in 160 bins
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
CSDA range table up to 1 GeV in 160 bins
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for anti_proton SubType= 8 BuildTable= 0
+nuclearStopping: for anti_proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
CSDA range table up to 1 GeV in 160 bins
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
CSDA range table up to 1 GeV in 160 bins
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
CSDA range table up to 1 GeV in 160 bins
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
CSDA range table up to 1 GeV in 160 bins
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
CSDA range table up to 1 GeV in 160 bins
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
CSDA range table up to 1 GeV in 160 bins
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
Region -- -- appears in world volume
This region is in the mass world.
@@ -472,7 +468,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 20000
- User=1.990000s Real=1.993612s Sys=0.000000s
+ User=1.440000s Real=1.443240s Sys=0.000000s
======================== run summary =====================
diff --git a/examples/extended/electromagnetic/TestEm12/TestEm12.out b/examples/extended/electromagnetic/TestEm12/TestEm12.out
index f3f0e10adc7..6d40e6a31ea 100644
--- a/examples/extended/electromagnetic/TestEm12/TestEm12.out
+++ b/examples/extended/electromagnetic/TestEm12/TestEm12.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -191,7 +187,7 @@ Use DNA e- solvation model type 3
Run terminated.
Run Summary
Number of events processed : 10000
- User=0.980000s Real=0.993164s Sys=0.000000s
+ User=0.940000s Real=0.942422s Sys=0.000000s
======================== run summary =====================
diff --git a/examples/extended/electromagnetic/TestEm13/TestEm13.out b/examples/extended/electromagnetic/TestEm13/TestEm13.out
index 28efe9d8b09..97ac6c9fb8c 100644
--- a/examples/extended/electromagnetic/TestEm13/TestEm13.out
+++ b/examples/extended/electromagnetic/TestEm13/TestEm13.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -342,7 +338,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 1000000
- User=2.720000s Real=2.892390s Sys=0.000000s
+ User=2.150000s Real=2.152335s Sys=0.000000s
======================== run summary ======================
@@ -409,7 +405,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1000000
- User=3.750000s Real=3.837973s Sys=0.000000s
+ User=3.320000s Real=3.320199s Sys=0.000000s
======================== run summary ======================
diff --git a/examples/extended/electromagnetic/TestEm14/TestEm14.out b/examples/extended/electromagnetic/TestEm14/TestEm14.out
index 2c4d20af3f9..8597bd48430 100644
--- a/examples/extended/electromagnetic/TestEm14/TestEm14.out
+++ b/examples/extended/electromagnetic/TestEm14/TestEm14.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -378,7 +374,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 1000000
- User=3.620000s Real=3.627291s Sys=0.000000s
+ User=3.380000s Real=3.384677s Sys=0.000000s
======================== run summary ======================
@@ -448,7 +444,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1000000
- User=4.370000s Real=4.475914s Sys=0.010000s
+ User=4.300000s Real=4.315217s Sys=0.000000s
======================== run summary ======================
diff --git a/examples/extended/electromagnetic/TestEm15/TestEm15.out b/examples/extended/electromagnetic/TestEm15/TestEm15.out
index 2757711a7b5..660d293b9e3 100644
--- a/examples/extended/electromagnetic/TestEm15/TestEm15.out
+++ b/examples/extended/electromagnetic/TestEm15/TestEm15.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -225,225 +221,225 @@ physicsList->setCut() start.
/gun/energy 5 MeV
/run/beamOn 10000
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PhotoElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila
+ PhotoElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 1, integral: 0, fluct: 0, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(1, 1 mm), integ: 0, fluct: 0, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 1, integral: 0, fluct: 0, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(1, 1 mm), integ: 0, fluct: 0, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 0, fluct: 0, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 0, fluct: 0, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 0, fluct: 0, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 0, fluct: 0, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for alpha SubType= 2
+hIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 0, fluct: 0, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 0, fluct: 0, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 0, fluct: 0, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 0, fluct: 0, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 0, fluct: 0, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 0, fluct: 0, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 0, fluct: 0, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 0, fluct: 0, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 0, fluct: 0, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 0, fluct: 0, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 0, fluct: 0, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 0, fluct: 0, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 0, fluct: 0, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 0, fluct: 0, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 0, fluct: 0, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 0, fluct: 0, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
Region -- -- appears in world volume
This region is in the mass world.
@@ -491,7 +487,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
Run terminated.
Run Summary
Number of events processed : 10000
- User=0.040000s Real=0.046973s Sys=0.000000s
+ User=0.060000s Real=0.060719s Sys=0.000000s
The run consists of 10000 e- of 5 MeV through 100 m of Water (density: 1 g/cm3 )
@@ -563,7 +559,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
Run terminated.
Run Summary
Number of events processed : 10000
- User=0.060000s Real=0.066399s Sys=0.000000s
+ User=0.090000s Real=0.090034s Sys=0.000000s
The run consists of 10000 e- of 100 keV through 100 m of Water (density: 1 g/cm3 )
diff --git a/examples/extended/electromagnetic/TestEm16/TestEm16.out b/examples/extended/electromagnetic/TestEm16/TestEm16.out
index 91d1024f038..b02e1d20c03 100644
--- a/examples/extended/electromagnetic/TestEm16/TestEm16.out
+++ b/examples/extended/electromagnetic/TestEm16/TestEm16.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -94,155 +90,155 @@ Command is ignored.
#
/run/beamOn 100
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PhotoElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila
+ PhotoElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
SynRad: Incoherent Synchrotron Radiation
good description for long magnets at all energies
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -270,7 +266,7 @@ G4SynchrotronRadiation::GetRandomEnergySR :
Run terminated.
Run Summary
Number of events processed : 100
- User=0.200000s Real=0.199960s Sys=0.000000s
+ User=0.190000s Real=0.189323s Sys=0.000000s
Summary for synchrotron radiation :
Number of photons = 64554
Emean = 20.24 +/- 0.1449 keV
diff --git a/examples/extended/electromagnetic/TestEm17/TestEm17.out b/examples/extended/electromagnetic/TestEm17/TestEm17.out
index abff146ce64..3538cc40aa1 100644
--- a/examples/extended/electromagnetic/TestEm17/TestEm17.out
+++ b/examples/extended/electromagnetic/TestEm17/TestEm17.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -188,7 +184,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 10000
- User=1.560000s Real=1.588169s Sys=0.000000s
+ User=1.570000s Real=1.577240s Sys=0.000000s
The run consists of 10000 mu+ of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 )
@@ -249,7 +245,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10000
- User=1.490000s Real=1.511584s Sys=0.000000s
+ User=1.470000s Real=1.470375s Sys=0.000000s
The run consists of 10000 pi+ of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 )
@@ -309,7 +305,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10000
- User=1.380000s Real=1.451838s Sys=0.000000s
+ User=1.340000s Real=1.343370s Sys=0.000000s
The run consists of 10000 proton of 10 TeV through 1 m of Iron (density: 7.9 g/cm3 )
diff --git a/examples/extended/electromagnetic/TestEm18/TestEm18.out b/examples/extended/electromagnetic/TestEm18/TestEm18.out
index 0dc2fc63774..1f7ee728f18 100644
--- a/examples/extended/electromagnetic/TestEm18/TestEm18.out
+++ b/examples/extended/electromagnetic/TestEm18/TestEm18.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -172,7 +168,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 100000
- User=0.650000s Real=0.692007s Sys=0.000000s
+ User=0.570000s Real=0.573669s Sys=0.000000s
======================== run summary ======================
diff --git a/examples/extended/electromagnetic/TestEm2/TestEm2.out b/examples/extended/electromagnetic/TestEm2/TestEm2.out
index ad649954074..4a4a7ea83b0 100644
--- a/examples/extended/electromagnetic/TestEm2/TestEm2.out
+++ b/examples/extended/electromagnetic/TestEm2/TestEm2.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -147,371 +143,371 @@ Absorber is 17.8491 cm of G4_PbWO4 R= 4.46227 cm
/run/printProgress 20
/run/beamOn 100
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -541,7 +537,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
Run terminated.
Run Summary
Number of events processed : 100
- User=2.850000s Real=2.942669s Sys=0.000000s
+ User=2.950000s Real=2.969098s Sys=0.000000s
===== SUMMARY =====
diff --git a/examples/extended/electromagnetic/TestEm3/TestEm3.out b/examples/extended/electromagnetic/TestEm3/TestEm3.out
index 058e9fdee35..0a43dfa817d 100644
--- a/examples/extended/electromagnetic/TestEm3/TestEm3.out
+++ b/examples/extended/electromagnetic/TestEm3/TestEm3.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -52,7 +48,7 @@ userDetector->Construct() start.
Material: G4_lAr density: 1.396 g/cm3 RadL: 14.003 cm Nucl.Int.Length: 85.706 cm
- Imean: 188.000 eV temperature: 0.00 K pressure: 1.00 atm
+ Imean: 188.000 eV temperature: 293.15 K pressure: 1.00 atm
---> Element: Ar (Ar) Z = 18.0 N = 40 A = 39.948 g/mole
---> Isotope: Ar36 Z = 18 N = 36 A = 35.97 g/mole abundance: 0.337 %
@@ -82,371 +78,371 @@ physicsList->setCut() start.
#
/run/beamOn 100
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
Region -- -- appears in world volume
This region is in the mass world.
@@ -509,7 +505,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 100
- User=2.260000s Real=2.284254s Sys=0.000000s
+ User=1.770000s Real=1.779174s Sys=0.000000s
------------------------------------------------------------
material Edep RMS sqrt(E0(GeV))*rmsE/Emean total tracklen
@@ -550,371 +546,371 @@ Run Summary
Secondary biasing is activated for e- and eBrem inside G4Regions:
DefaultRegionForTheWorld BiasingWeight= 5
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
Region -- -- appears in world volume
This region is in the mass world.
@@ -960,13 +956,13 @@ Index : 2 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 100
- User=1.880000s Real=1.888763s Sys=0.000000s
+ User=1.430000s Real=1.433584s Sys=0.000000s
------------------------------------------------------------
material Edep RMS sqrt(E0(GeV))*rmsE/Emean total tracklen
- G4_Pb: 775.83 MeV : 18.29 MeV 2.358 +- 0.2358 % 52.3 cm +- 1.24 cm
- G4_lAr: 214.1 MeV : 16.48 MeV 7.696 +- 0.7696 % 1.01 m +- 7.74 cm
+ G4_Pb: 776.64 MeV : 18.57 MeV 2.391 +- 0.2391 % 52.3 cm +- 1.24 cm
+ G4_lAr: 214.14 MeV : 16.49 MeV 7.7 +- 0.77 % 1.01 m +- 7.74 cm
------------------------------------------------------------
Beam particle e- E = 1 GeV
diff --git a/examples/extended/electromagnetic/TestEm4/TestEm4.out b/examples/extended/electromagnetic/TestEm4/TestEm4.out
index a4ffc9682fb..be773b27de4 100644
--- a/examples/extended/electromagnetic/TestEm4/TestEm4.out
+++ b/examples/extended/electromagnetic/TestEm4/TestEm4.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -32,66 +28,66 @@ PhysicsList::SetCuts:CutLength : 1 (mm)
#
/run/beamOn 100000
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PhotoElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila
+ PhotoElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
Region -- -- appears in world volume
This region is in the mass world.
@@ -142,7 +138,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 100000
- User=0.750000s Real=0.755786s Sys=0.000000s
+ User=0.760000s Real=0.766202s Sys=0.000000s
--------- Ranecu engine status ---------
Initial seed (index) = 0
diff --git a/examples/extended/electromagnetic/TestEm5/TestEm5.out b/examples/extended/electromagnetic/TestEm5/TestEm5.out
index ca55de2f4d4..f479f3de61c 100644
--- a/examples/extended/electromagnetic/TestEm5/TestEm5.out
+++ b/examples/extended/electromagnetic/TestEm5/TestEm5.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -69,337 +65,337 @@ PhysicsList::AddPhysicsList:
DefaultRegionForTheWorld 1 0 0
### === Ignore cuts flag: 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 10 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 10 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- KleinNishina : Emin= 0 eV Emax= 100 TeV FluoActive
+ KleinNishina : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 10 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 10 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for proton SubType= 8 BuildTable= 0
+nuclearStopping: for proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for anti_proton SubType= 8 BuildTable= 0
+nuclearStopping: for anti_proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -439,7 +435,7 @@ N=17 V[N]={906770732717044781, 629165745432651234, 1235682547346241386, 68420008
Run terminated.
Run Summary
Number of events processed : 100000
- User=0.970000s Real=0.978332s Sys=0.000000s
+ User=0.980000s Real=0.976771s Sys=0.000000s
======================== run summary ======================
@@ -495,337 +491,337 @@ N=17 V[N]={483849190633692820, 2214262232225022066, 1716859259940406902, 8032317
DefaultRegionForTheWorld 1 0 0
### === Ignore cuts flag: 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 10 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 10 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- KleinNishina : Emin= 0 eV Emax= 100 TeV FluoActive
+ KleinNishina : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 10 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 10 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for proton SubType= 8 BuildTable= 0
+nuclearStopping: for proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for anti_proton SubType= 8 BuildTable= 0
+nuclearStopping: for anti_proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -865,7 +861,7 @@ N=17 V[N]={483849190633692820, 2214262232225022066, 1716859259940406902, 8032317
Run terminated.
Run Summary
Number of events processed : 50000
- User=1.000000s Real=1.009443s Sys=0.000000s
+ User=0.970000s Real=0.968212s Sys=0.000000s
======================== run summary ======================
@@ -921,337 +917,337 @@ N=17 V[N]={34849641897438192, 799716655272905987, 1130755326122812133, 106199026
DefaultRegionForTheWorld 1 0 0
### === Ignore cuts flag: 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 10 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 10 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- KleinNishina : Emin= 0 eV Emax= 100 TeV FluoActive
+ KleinNishina : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 10 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 10 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for proton SubType= 8 BuildTable= 0
+nuclearStopping: for proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for anti_proton SubType= 8 BuildTable= 0
+nuclearStopping: for anti_proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -1296,7 +1292,7 @@ N=17 V[N]={34849641897438192, 799716655272905987, 1130755326122812133, 106199026
Run terminated.
Run Summary
Number of events processed : 50000
- User=2.290000s Real=2.302373s Sys=0.000000s
+ User=2.180000s Real=2.186187s Sys=0.000000s
======================== run summary ======================
@@ -1353,337 +1349,337 @@ N=17 V[N]={1600183840515144486, 1074423919165859021, 1615772444899580430, 136281
DefaultRegionForTheWorld 1 0 0
### === Ignore cuts flag: 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 10 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 10 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- KleinNishina : Emin= 0 eV Emax= 100 TeV FluoActive
+ KleinNishina : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 10 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 10 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for proton SubType= 8 BuildTable= 0
+nuclearStopping: for proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for anti_proton SubType= 8 BuildTable= 0
+nuclearStopping: for anti_proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -1733,7 +1729,7 @@ N=17 V[N]={1600183840515144486, 1074423919165859021, 1615772444899580430, 136281
Run terminated.
Run Summary
Number of events processed : 50000
- User=0.520000s Real=0.514710s Sys=0.000000s
+ User=0.500000s Real=0.512501s Sys=0.000000s
======================== run summary ======================
@@ -1786,337 +1782,337 @@ N=17 V[N]={766692364099059826, 871277206702195277, 2008501355328577136, 99020182
DefaultRegionForTheWorld 1 0 0
### === Ignore cuts flag: 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 10 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 10 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- KleinNishina : Emin= 0 eV Emax= 100 TeV FluoActive
+ KleinNishina : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 10 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 10 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for proton SubType= 8 BuildTable= 0
+nuclearStopping: for proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for anti_proton SubType= 8 BuildTable= 0
+nuclearStopping: for anti_proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -2171,7 +2167,7 @@ N=17 V[N]={766692364099059826, 871277206702195277, 2008501355328577136, 99020182
Run terminated.
Run Summary
Number of events processed : 50000
- User=8.330000s Real=8.403797s Sys=0.010000s
+ User=7.850000s Real=8.025554s Sys=0.150000s
======================== run summary ======================
diff --git a/examples/extended/electromagnetic/TestEm6/TestEm6.out b/examples/extended/electromagnetic/TestEm6/TestEm6.out
index ad947ee1a4b..794aff509f5 100644
--- a/examples/extended/electromagnetic/TestEm6/TestEm6.out
+++ b/examples/extended/electromagnetic/TestEm6/TestEm6.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -90,15 +86,15 @@ G4eeToHadronsModel::Initialise:
CM System: emin(MeV)= 1019.46 epeak(MeV)= 1019.46 emax(MeV)= 4521
GammaToMuPair: gamma->mu+mu- Bethe Heitler process, SubType= 15
- good cross section parametrization from 422.633 MeV to 1e+12 GeV for all Z.
+ good cross section parametrization from 211.317 MeV to 1e+12 GeV for all Z.
AnnihiToMuPair: e+e->mu+mu- annihilation, atomic e- at rest, SubType=.6
threshold at 43.6931 GeV good description up to 1000 TeV for all Z.
-ee2hadr: for e+, integral: 1 SubType= 7 BuildTable= 0
+ee2hadr: for e+, integral:1 SubType=7 BuildTable=0
e+ annihilation into hadrons active from 76.2411 GeV to 19999.5 GeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eeToHadrons : Emin= 0 eV Emax= 100 TeV
+ eeToHadrons : Emin= 0 eV Emax= 100 TeV
Region -- -- appears in world volume
This region is in the mass world.
@@ -194,7 +190,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng
Run terminated.
Run Summary
Number of events processed : 5
- User=0.000000s Real=0.001746s Sys=0.000000s
+ User=0.000000s Real=0.001630s Sys=0.000000s
Number of process calls ---> GammaToMuPair : 5... write Root file : testem6_0.root - done
... close Root file : testem6_0.root - done
@@ -300,7 +296,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng
Run terminated.
Run Summary
Number of events processed : 5
- User=0.010000s Real=0.004579s Sys=0.000000s
+ User=0.000000s Real=0.000482s Sys=0.000000s
Number of process calls ---> ee2hadr : 5 AnnihiToMuPair : 1... write Root file : testem6_1.root - done
... close Root file : testem6_1.root - done
diff --git a/examples/extended/electromagnetic/TestEm7/TestEm7.out b/examples/extended/electromagnetic/TestEm7/TestEm7.out
index d129a338082..e3a3960999d 100644
--- a/examples/extended/electromagnetic/TestEm7/TestEm7.out
+++ b/examples/extended/electromagnetic/TestEm7/TestEm7.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -139,337 +135,337 @@ fTally 3: G4_WATER, mass = 8 mg size = 2 2 2 mm position = 5 0 0 cm
DefaultRegionForTheWorld 1 0 0
### === Ignore cuts flag: 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 10 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 10 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- KleinNishina : Emin= 0 eV Emax= 100 TeV FluoActive
+ KleinNishina : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 10 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 10 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for proton SubType= 8 BuildTable= 0
+nuclearStopping: for proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for anti_proton SubType= 8 BuildTable= 0
+nuclearStopping: for anti_proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -509,7 +505,7 @@ Index : 1 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10000
- User=5.740000s Real=5.783727s Sys=0.000000s
+ User=5.540000s Real=5.599099s Sys=0.010000s
The run consists of 10000 proton of 160 MeV through 20 cm of G4_WATER (density: 1 g/cm3 )
@@ -567,7 +563,7 @@ Index : 1 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1000
- User=2.310000s Real=2.325645s Sys=0.000000s
+ User=2.260000s Real=2.315351s Sys=0.020000s
The run consists of 1000 C12 of 3.5 GeV through 20 cm of G4_WATER (density: 1 g/cm3 )
@@ -600,337 +596,337 @@ Run Summary
DefaultRegionForTheWorld 1 0 0
### === Ignore cuts flag: 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 10 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 10 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- KleinNishina : Emin= 0 eV Emax= 100 TeV FluoActive
+ KleinNishina : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 10 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 10 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for proton SubType= 8 BuildTable= 0
+nuclearStopping: for proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for anti_proton SubType= 8 BuildTable= 0
+nuclearStopping: for anti_proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -968,7 +964,7 @@ Index : 2 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1000
- User=1.170000s Real=1.174351s Sys=0.000000s
+ User=1.220000s Real=1.266171s Sys=0.010000s
The run consists of 1000 kaon+ of 100 MeV through 20 cm of G4_Cu (density: 8.96 g/cm3 )
@@ -990,337 +986,337 @@ Run Summary
DefaultRegionForTheWorld 1 0 0
### === Ignore cuts flag: 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 10 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 10 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- KleinNishina : Emin= 0 eV Emax= 100 TeV FluoActive
+ KleinNishina : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 10 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 10 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for proton SubType= 8 BuildTable= 0
+nuclearStopping: for proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for anti_proton SubType= 8 BuildTable= 0
+nuclearStopping: for anti_proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -1363,7 +1359,7 @@ Index : 3 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 100
- User=0.000000s Real=0.000443s Sys=0.000000s
+ User=0.000000s Real=0.000432s Sys=0.000000s
The run consists of 100 alpha of 265 eV through 20 cm of TechVacuum (density: 0.01 kg/m3 )
@@ -1385,337 +1381,337 @@ Run Summary
DefaultRegionForTheWorld 1 0 0
### === Ignore cuts flag: 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 10 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 10 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- KleinNishina : Emin= 0 eV Emax= 100 TeV FluoActive
+ KleinNishina : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 10 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 10 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for proton SubType= 8 BuildTable= 0
+nuclearStopping: for proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for anti_proton SubType= 8 BuildTable= 0
+nuclearStopping: for anti_proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -1756,7 +1752,7 @@ Index : 3 used in the geometry : No
Run terminated.
Run Summary
Number of events processed : 100
- User=0.010000s Real=0.011027s Sys=0.000000s
+ User=0.010000s Real=0.010453s Sys=0.000000s
The run consists of 100 alpha of 100 MeV through 20 cm of G4_WATER (density: 1 g/cm3 )
@@ -1780,337 +1776,337 @@ Run Summary
DefaultRegionForTheWorld 1 0 0
### === Ignore cuts flag: 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 10 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 10 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- KleinNishina : Emin= 0 eV Emax= 100 TeV FluoActive
+ KleinNishina : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 10 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 10 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for proton SubType= 8 BuildTable= 0
+nuclearStopping: for proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for anti_proton SubType= 8 BuildTable= 0
+nuclearStopping: for anti_proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -2158,7 +2154,7 @@ Index : 4 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10
- User=5.040000s Real=5.502021s Sys=0.050000s
+ User=5.180000s Real=5.222586s Sys=0.030000s
The run consists of 10 Xe131 of 1.217 GeV through 20 cm of G4_Si (density: 2.33 g/cm3 )
@@ -2183,337 +2179,337 @@ Run Summary
DefaultRegionForTheWorld 1 0 0
### === Ignore cuts flag: 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 10 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 10 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- KleinNishina : Emin= 0 eV Emax= 100 TeV FluoActive
+ KleinNishina : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 10 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 10 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for proton SubType= 8 BuildTable= 0
+nuclearStopping: for proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-nuclearStopping: for anti_proton SubType= 8 BuildTable= 0
+nuclearStopping: for anti_proton SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 10 eV to 100 TeV in 260 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -2566,7 +2562,7 @@ Index : 5 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1000
- User=0.550000s Real=0.714949s Sys=0.000000s
+ User=0.550000s Real=0.551037s Sys=0.000000s
The run consists of 1000 proton of 160 MeV through 20 cm of Water_1.05 (density: 1.05 g/cm3 )
diff --git a/examples/extended/electromagnetic/TestEm8/History b/examples/extended/electromagnetic/TestEm8/History
index dca7ebafb05..b840346d96e 100644
--- a/examples/extended/electromagnetic/TestEm8/History
+++ b/examples/extended/electromagnetic/TestEm8/History
@@ -14,6 +14,11 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+13-02-19 V.Ivantchenko (testem8-V10-04-06)
+- DetectorConstruction - added alternative materials in order to test
+ all methods to construct new material by G4NistMaterialBuilder
+ (problem reports #2133, #2134)
+
16-05-18 J.Allison (testem8-V10-04-05)
- RunAction.cc: Removed vis commands.
diff --git a/examples/extended/electromagnetic/TestEm8/TestEm8.out b/examples/extended/electromagnetic/TestEm8/TestEm8.out
index 9cc7ac32e5f..e45e2a7cc7d 100644
--- a/examples/extended/electromagnetic/TestEm8/TestEm8.out
+++ b/examples/extended/electromagnetic/TestEm8/TestEm8.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -13,7 +9,7 @@
**************************************************************
-***** Table : Nb of materials = 21 *****
+***** Table : Nb of materials = 25 *****
Material: G4_Ar density: 1.662 mg/cm3 RadL: 117.621 m Nucl.Int.Length: 719.888 m
Imean: 188.000 eV temperature: 293.15 K pressure: 1.00 atm
@@ -117,6 +113,20 @@
ElmMassFraction: 18.29 % ElmAbundance 72.73 %
+ Material: Propane10 density: 18.794 mg/cm3 RadL: 24.143 m Nucl.Int.Length: 34.508 m
+ Imean: 47.100 eV temperature: 293.15 K pressure: 10.00 atm
+
+ ---> Element: C (C) Z = 6.0 N = 12 A = 12.011 g/mole
+ ---> Isotope: C12 Z = 6 N = 12 A = 12.00 g/mole abundance: 98.930 %
+ ---> Isotope: C13 Z = 6 N = 13 A = 13.00 g/mole abundance: 1.070 %
+ ElmMassFraction: 81.71 % ElmAbundance 27.27 %
+
+ ---> Element: H (H) Z = 1.0 N = 1 A = 1.008 g/mole
+ ---> Isotope: H1 Z = 1 N = 1 A = 1.01 g/mole abundance: 99.989 %
+ ---> Isotope: H2 Z = 1 N = 2 A = 2.01 g/mole abundance: 0.011 %
+ ElmMassFraction: 18.29 % ElmAbundance 72.73 %
+
+
Material: G4_Galactic density: 0.000 kg/m3 RadL: 204310101.835 pc Nucl.Int.Length: 113427275.267 pc
Imean: 21.800 eV temperature: 2.73 K pressure: 0.00 atm
@@ -180,6 +190,21 @@
ElmMassFraction: 72.71 % ElmAbundance 66.67 %
+ Material: TRT_CO2p density: 1.842 mg/cm3 RadL: 196.499 m Nucl.Int.Length: 466.034 m
+ Imean: 90.958 eV temperature: 293.15 K pressure: 1.00 atm
+
+ ---> Element: C (C) Z = 6.0 N = 12 A = 12.011 g/mole
+ ---> Isotope: C12 Z = 6 N = 12 A = 12.00 g/mole abundance: 98.930 %
+ ---> Isotope: C13 Z = 6 N = 13 A = 13.00 g/mole abundance: 1.070 %
+ ElmMassFraction: 27.29 % ElmAbundance 33.33 %
+
+ ---> Element: O (O) Z = 8.0 N = 16 A = 15.999 g/mole
+ ---> Isotope: O16 Z = 8 N = 16 A = 15.99 g/mole abundance: 99.757 %
+ ---> Isotope: O17 Z = 8 N = 17 A = 17.00 g/mole abundance: 0.038 %
+ ---> Isotope: O18 Z = 8 N = 18 A = 18.00 g/mole abundance: 0.205 %
+ ElmMassFraction: 72.71 % ElmAbundance 66.67 %
+
+
Material: TRT_CF4 density: 3.900 mg/cm3 RadL: 87.158 m Nucl.Int.Length: 234.187 m
Imean: 109.384 eV temperature: 293.15 K pressure: 1.00 atm
@@ -238,6 +263,20 @@
ElmMassFraction: 18.29 % ElmAbundance 72.73 %
+ Material: C3H8p density: 3.415 mg/cm3 RadL: 132.867 m Nucl.Int.Length: 189.905 m
+ Imean: 52.014 eV temperature: 293.15 K pressure: 2.00 atm
+
+ ---> Element: C (C) Z = 6.0 N = 12 A = 12.011 g/mole
+ ---> Isotope: C12 Z = 6 N = 12 A = 12.00 g/mole abundance: 98.930 %
+ ---> Isotope: C13 Z = 6 N = 13 A = 13.00 g/mole abundance: 1.070 %
+ ElmMassFraction: 81.71 % ElmAbundance 27.27 %
+
+ ---> Element: H (H) Z = 1.0 N = 1 A = 1.008 g/mole
+ ---> Isotope: H1 Z = 1 N = 1 A = 1.01 g/mole abundance: 99.989 %
+ ---> Isotope: H2 Z = 1 N = 2 A = 2.01 g/mole abundance: 0.011 %
+ ElmMassFraction: 18.29 % ElmAbundance 72.73 %
+
+
Material: XeCH4C3H8 density: 4.920 mg/cm3 RadL: 17.657 m Nucl.Int.Length: 343.553 m
Imean: 438.262 eV temperature: 293.15 K pressure: 1.00 atm
@@ -377,6 +416,27 @@
ElmMassFraction: 5.35 % ElmAbundance 8.37 %
+ Material: TPC_Ne-CO2-2p density: 0.939 kg/m3 RadL: 320.749 m Nucl.Int.Length: 993.343 m
+ Imean: 126.350 eV temperature: 293.15 K pressure: 1.00 atm
+
+ ---> Element: Ne (Ne) Z = 10.0 N = 20 A = 20.180 g/mole
+ ---> Isotope: Ne20 Z = 10 N = 20 A = 19.99 g/mole abundance: 90.480 %
+ ---> Isotope: Ne21 Z = 10 N = 21 A = 20.99 g/mole abundance: 0.270 %
+ ---> Isotope: Ne22 Z = 10 N = 22 A = 21.99 g/mole abundance: 9.250 %
+ ElmMassFraction: 80.38 % ElmAbundance 74.86 %
+
+ ---> Element: O (O) Z = 8.0 N = 16 A = 15.999 g/mole
+ ---> Isotope: O16 Z = 8 N = 16 A = 15.99 g/mole abundance: 99.757 %
+ ---> Isotope: O17 Z = 8 N = 17 A = 17.00 g/mole abundance: 0.038 %
+ ---> Isotope: O18 Z = 8 N = 18 A = 18.00 g/mole abundance: 0.205 %
+ ElmMassFraction: 14.26 % ElmAbundance 16.75 %
+
+ ---> Element: C (C) Z = 6.0 N = 12 A = 12.011 g/mole
+ ---> Isotope: C12 Z = 6 N = 12 A = 12.00 g/mole abundance: 98.930 %
+ ---> Isotope: C13 Z = 6 N = 13 A = 13.00 g/mole abundance: 1.070 %
+ ElmMassFraction: 5.36 % ElmAbundance 8.39 %
+
+
Material: Xe15CO2 density: 4.939 mg/cm3 RadL: 17.942 m Nucl.Int.Length: 339.776 m
Imean: 430.867 eV temperature: 293.15 K pressure: 1.00 atm
@@ -482,7 +542,7 @@ Index : 2 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1000
- User=0.080000s Real=0.074090s Sys=0.000000s
+ User=0.060000s Real=0.066873s Sys=0.010000s
RunAction: End of run actions are started 1 Nevt= 1000 Edep= 0.0160892
====================================================
Beam Particle: proton
diff --git a/examples/extended/electromagnetic/TestEm8/src/DetectorConstruction.cc b/examples/extended/electromagnetic/TestEm8/src/DetectorConstruction.cc
index 6e104363576..320a2dd59e5 100644
--- a/examples/extended/electromagnetic/TestEm8/src/DetectorConstruction.cc
+++ b/examples/extended/electromagnetic/TestEm8/src/DetectorConstruction.cc
@@ -70,6 +70,8 @@
#include "TestParameters.hh"
#include "G4PionPlus.hh"
+#include
+
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
DetectorConstruction::DetectorConstruction()
@@ -139,6 +141,11 @@ void DetectorConstruction::DefineMaterials()
G4Material* Mylar = manager->FindOrBuildMaterial("G4_MYLAR");
G4Material* Methane= manager->FindOrBuildMaterial("G4_METHANE");
G4Material* Propane= manager->FindOrBuildMaterial("G4_PROPANE");
+
+ // propane at 10 atmospheres
+ manager->ConstructNewGasMaterial("Propane10","G4_PROPANE",
+ NTP_Temperature,10.*atmosphere);
+
G4Material* empty = manager->FindOrBuildMaterial("G4_Galactic");
// 93% Kr + 7% CH4, STP
@@ -162,6 +169,12 @@ void DetectorConstruction::DefineMaterials()
TRT_CO2->AddElement(elC,1);
TRT_CO2->AddElement(elO,2);
+ // check alternative constructor
+ std::vector trtatom = {"C","O"};
+ std::vector trtnum = {1, 2};
+ manager->ConstructNewMaterial("TRT_CO2p",trtatom,trtnum,TRT_CO2_density,
+ true,kStateGas,NTP_Temperature,atmosphere);
+
G4double TRT_CF4_density = 3.9*mg/cm3;
G4Material* TRT_CF4 =
new G4Material(name="TRT_CF4", TRT_CF4_density, nel=2,
@@ -180,22 +193,27 @@ void DetectorConstruction::DefineMaterials()
XeCO2CF4->AddMaterial(TRT_CF4,0.154);
// C3H8,20 C, 2 atm
- density = 3.758*mg/cm3 ;
- G4Material* C3H8 =
- new G4Material(name="C3H8",density,nel=2,
- kStateGas,293.15*kelvin,2.*atmosphere);
- C3H8->AddElement(elC,3) ;
- C3H8->AddElement(elH,8) ;
-
- // 87.5% Xe + 7.5% CH4 + 5% C3H8, 20 C, 1 atm
+ density = 3.758*mg/cm3;
+ G4Material* C3H8 = new G4Material(name="C3H8",density,nel=2,
+ kStateGas,293.15*kelvin,2.*atmosphere);
+ C3H8->AddElement(elC,3);
+ C3H8->AddElement(elH,8);
+
+ // The same material via different constructor
+ std::vector elmname = {"C","H"};
+ std::vector atomnum = {3, 8};
+ manager->ConstructNewIdealGasMaterial("C3H8p",elmname,atomnum,true,
+ 293.15*kelvin,2.*atmosphere);
+
+ // 87.5% Xe + 7.5% CH4 + 5% C3H8, 20 C, 1. atm
density = 4.9196*mg/cm3 ;
G4Material* XeCH4C3H8 =
new G4Material(name="XeCH4C3H8" ,
density, ncomponents=3,
kStateGas,NTP_Temperature,1.*atmosphere);
- XeCH4C3H8->AddMaterial( Xe, fractionmass = 0.971 ) ;
- XeCH4C3H8->AddMaterial( Methane, fractionmass = 0.010 ) ;
- XeCH4C3H8->AddMaterial( Propane, fractionmass = 0.019 ) ;
+ XeCH4C3H8->AddMaterial( Xe, fractionmass = 0.971);
+ XeCH4C3H8->AddMaterial( Methane, fractionmass = 0.010);
+ XeCH4C3H8->AddMaterial( Propane, fractionmass = 0.019);
// 93% Ar + 7% CH4, STP
density = 1.709*mg/cm3 ;
@@ -238,11 +256,17 @@ void DetectorConstruction::DefineMaterials()
NeCO2->AddElement( elO, fractionmass = 0.1426 ) ;
NeCO2->AddElement( elC, fractionmass = 0.0535 ) ;
+ // check alternative constructor
+ std::vector neatom = {"Ne","O","C"};
+ std::vector nefr = {0.8039, 0.1426, 0.0536};
+ manager->ConstructNewMaterial("TPC_Ne-CO2-2p",neatom,nefr,density,true,
+ kStateGas,NTP_Temperature,atmosphere);
+
// ALICE TRD mixure 85% Xe + 15% CO2 NTP
density = 4.9389*mg/cm3 ;
G4Material* Xe15CO2 =
new G4Material(name="Xe15CO2", density, ncomponents=2,
- kStateGas,NTP_Temperature,1.*atmosphere);
+ kStateGas,NTP_Temperature,atmosphere);
Xe15CO2->AddMaterial( Xe, fractionmass = 0.944 );
Xe15CO2->AddMaterial( CarbonDioxide, fractionmass = 0.056 );
diff --git a/examples/extended/electromagnetic/TestEm9/TestEm9.out b/examples/extended/electromagnetic/TestEm9/TestEm9.out
index 9fe4394c215..25511b361f2 100644
--- a/examples/extended/electromagnetic/TestEm9/TestEm9.out
+++ b/examples/extended/electromagnetic/TestEm9/TestEm9.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -48,396 +44,396 @@ Vertex is 3 cm of 3 layers of Si of 100 um npads= 601
MuonDetector 0 0 0
### === Ignore cuts flag: 0
-phot: for gamma, applyCuts: 1 SubType= 12 BuildTable= 0
- LambdaPrime table from 200 keV to 100 TeV in 61 bins
+phot: for gamma applyCuts:1 SubType=12 BuildTable=0
+ LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma, applyCuts: 1 SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
- LambdaPrime table from 1 MeV to 100 TeV in 56 bins
+compt: for gamma applyCuts:1 SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1
+ LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region VertexDetector ======
- LowEPComptonModel : Emin= 0 eV Emax= 20 MeV FluoActive
- KleinNishina : Emin= 20 MeV Emax= 100 TeV FluoActive
+ LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo
+ KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo
-conv: for gamma, applyCuts: 1 SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma applyCuts:1 SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma, applyCuts: 1 SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
- LambdaPrime table from 100 keV to 100 TeV in 63 bins
+Rayl: for gamma applyCuts:1 SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0
+ LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region VertexDetector ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
===== EM models for the G4Region VertexDetector ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
===== EM models for the G4Region MuonDetector ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.8, integral: 1, fluct: 1, linLossLimit= 0.01
+eIoni: for e- SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.8, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+eBrem: for e- SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
===== EM models for the G4Region VertexDetector ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
===== EM models for the G4Region MuonDetector ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
===== EM models for the G4Region VertexDetector ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
===== EM models for the G4Region MuonDetector ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.8, integral: 1, fluct: 1, linLossLimit= 0.01
+eIoni: for e+ SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.8, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+eBrem: for e+ SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 , applyCuts: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 applyCuts:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
===== EM models for the G4Region VertexDetector ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
===== EM models for the G4Region MuonDetector ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+hIoni: for proton SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hBrems: for proton SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hPairProd: for proton SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ionIoni: for GenericIon SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ionIoni: for alpha SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+hIoni: for anti_proton SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hBrems: for anti_proton SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hPairProd: for anti_proton SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+hIoni: for kaon+ SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hBrems: for kaon+ SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hPairProd: for kaon+ SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+hIoni: for kaon- SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hBrems: for kaon- SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hPairProd: for kaon- SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 applyCuts:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+muIoni: for mu+ SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+muBrems: for mu+ SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+muPairProd: for mu+ SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+muIoni: for mu- SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+muBrems: for mu- SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+muPairProd: for mu- SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 applyCuts:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+hIoni: for pi+ SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hBrems: for pi+ SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hPairProd: for pi+ SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+hIoni: for pi- SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hBrems: for pi- SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hPairProd: for pi- SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 applyCuts:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -507,39 +503,39 @@ Index : 7 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 100
- User=1.050000s Real=1.104160s Sys=0.000000s
+ User=0.790000s Real=0.805170s Sys=0.000000s
RunAction: End of run actions are started
HistoManager: End of run actions are started RunID# 0
=================================================================
Number of events 100
-Average number of e- 402.4
-Average number of gamma 636.6
-Average number of e+ 47.41
-Average number of steps 2944
-Edep 1x1 = 0.838 +- 0.003096 res= 3.694 % 100
-Edep 3x3 = 0.9576 +- 0.001421 res= 1.484 % 100
-Edep 5x5 = 0.9784 +- 0.001162 res= 1.188 % 100
+Average number of e- 401.9
+Average number of gamma 636.1
+Average number of e+ 48.21
+Average number of steps 2941
+Edep 1x1 = 0.8328 +- 0.002996 res= 3.598 % 100
+Edep 3x3 = 0.9591 +- 0.001399 res= 1.459 % 100
+Edep 5x5 = 0.98 +- 0.001188 res= 1.212 % 100
=========== Ratios without trancating ===========================
- E1/E9 = 0.8752 +- 0.003046
- E1/E25 = 0.8566 +- 0.003193
- E9/E25 = 0.9787 +- 0.0009427
+ E1/E9 = 0.8683 +- 0.00273
+ E1/E25 = 0.8498 +- 0.002842
+ E9/E25 = 0.9787 +- 0.0008171
Beam Energy 1 GeV
==================================================================
<<<<>>>> 100 events for Crystal Calorimeter
-Edep1x1: 0.838 delEdep1x1= -0.162 nrms= -1.62
-Erms1x1: 0.03096 delErms1x1= -0.969 nrms= -9.69
-Edep3x3: 0.9576 delEdep3x3= -0.04244 nrms= -0.4244
-Erms3x3: 0.01421 delErms3x3= -0.9858 nrms= -9.858
-Edep5x5: 0.9784 delEdep5x5= -0.02157 nrms= -0.2157
-Erms5x5: 0.01162 delErms5x5= -0.9884 nrms= -9.884
+Edep1x1: 0.8328 delEdep1x1= -0.1672 nrms= -1.672
+Erms1x1: 0.02996 delErms1x1= -0.97 nrms= -9.7
+Edep3x3: 0.9591 delEdep3x3= -0.0409 nrms= -0.409
+Erms3x3: 0.01399 delErms3x3= -0.986 nrms= -9.86
+Edep5x5: 0.98 delEdep5x5= -0.01999 nrms= -0.1999
+Erms5x5: 0.01188 delErms5x5= -0.9881 nrms= -9.881
<<<<>>>> IS ACCEPTED
Z bremsstrahlung photoeffect compton conversion
- 13 0 0 155 0
- 53 261 42 0 45
- 55 280 48 0 47
+ 13 0 0 156 0
+ 53 262 42 0 46
+ 55 276 48 0 47
#
/testem/det/acceptance1 0.0136 0.0001 500
/testem/det/acceptance9 0.0139 0.0001 500
@@ -617,22 +613,22 @@ Index : 7 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1000
- User=1.340000s Real=1.344611s Sys=0.000000s
+ User=1.240000s Real=1.254059s Sys=0.000000s
RunAction: End of run actions are started
HistoManager: End of run actions are started RunID# 1
=================================================================
Number of events 1000
-Average number of e- 72.77
-Average number of gamma 66.34
-Average number of e+ 3.733
-Average number of steps 435.1
-Edep 1x1 = 0.01452 +- 0.0003015
-Edep 3x3 = 0.0149 +- 0.0003381
-Edep 5x5 = 0.01496 +- 0.0003436
+Average number of e- 73.73
+Average number of gamma 67.25
+Average number of e+ 3.75
+Average number of steps 438.8
+Edep 1x1 = 0.01453 +- 0.0004223
+Edep 3x3 = 0.01496 +- 0.0004807
+Edep 5x5 = 0.01503 +- 0.0004892
=========== Ratios without trancating ===========================
- E1/E9 = 0.9839 +- 0.0007107
- E1/E25 = 0.9811 +- 0.0008015
- E9/E25 = 0.9971 +- 0.0001754
+ E1/E9 = 0.9822 +- 0.0007824
+ E1/E25 = 0.9793 +- 0.0008855
+ E9/E25 = 0.997 +- 0.0001855
Beam Energy 20 GeV
==================================================================
@@ -672,396 +668,396 @@ Beam Energy 20 GeV
Secondary biasing is activated for gamma and conv inside G4Regions:
DefaultRegionForTheWorld BiasingWeight= 0
-phot: for gamma, applyCuts: 1 SubType= 12 BuildTable= 0
- LambdaPrime table from 200 keV to 100 TeV in 61 bins
+phot: for gamma applyCuts:1 SubType=12 BuildTable=0
+ LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma, applyCuts: 1 SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
- LambdaPrime table from 1 MeV to 100 TeV in 56 bins
+compt: for gamma applyCuts:1 SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1
+ LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region VertexDetector ======
- LowEPComptonModel : Emin= 0 eV Emax= 20 MeV FluoActive
- KleinNishina : Emin= 20 MeV Emax= 100 TeV FluoActive
+ LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo
+ KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo
-conv: for gamma, applyCuts: 1 SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma applyCuts:1 SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma, applyCuts: 1 SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
- LambdaPrime table from 100 keV to 100 TeV in 63 bins
+Rayl: for gamma applyCuts:1 SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0
+ LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region VertexDetector ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
===== EM models for the G4Region VertexDetector ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
===== EM models for the G4Region MuonDetector ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.8, integral: 1, fluct: 1, linLossLimit= 0.01
+eIoni: for e- SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.8, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+eBrem: for e- SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
===== EM models for the G4Region VertexDetector ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
===== EM models for the G4Region MuonDetector ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
===== EM models for the G4Region VertexDetector ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
===== EM models for the G4Region MuonDetector ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.8, integral: 1, fluct: 1, linLossLimit= 0.01
+eIoni: for e+ SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.8, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+eBrem: for e+ SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 , applyCuts: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 applyCuts:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
===== EM models for the G4Region VertexDetector ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
===== EM models for the G4Region MuonDetector ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+hIoni: for proton SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hBrems: for proton SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hPairProd: for proton SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ionIoni: for GenericIon SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ionIoni: for alpha SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+hIoni: for anti_proton SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hBrems: for anti_proton SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hPairProd: for anti_proton SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+hIoni: for kaon+ SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hBrems: for kaon+ SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hPairProd: for kaon+ SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+hIoni: for kaon- SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hBrems: for kaon- SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hPairProd: for kaon- SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 applyCuts:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+muIoni: for mu+ SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+muBrems: for mu+ SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+muPairProd: for mu+ SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+muIoni: for mu- SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+muBrems: for mu- SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+muPairProd: for mu- SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 applyCuts:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+hIoni: for pi+ SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hBrems: for pi+ SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hPairProd: for pi+ SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+hIoni: for pi- SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hBrems: for pi- SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hPairProd: for pi- SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 applyCuts:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -1131,22 +1127,22 @@ Index : 7 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 100
- User=0.580000s Real=0.583484s Sys=0.000000s
+ User=0.540000s Real=0.544909s Sys=0.000000s
RunAction: End of run actions are started
HistoManager: End of run actions are started RunID# 2
=================================================================
Number of events 100
-Average number of e- 170.6
-Average number of gamma 220.3
-Average number of e+ 46.73
-Average number of steps 1822
-Edep 1x1 = 0.815 +- 0.0033 res= 4.049 % 100
-Edep 3x3 = 0.9222 +- 0.002188 res= 2.372 % 100
-Edep 5x5 = 0.9401 +- 0.001994 res= 2.121 % 100
+Average number of e- 171
+Average number of gamma 221.5
+Average number of e+ 47.87
+Average number of steps 1830
+Edep 1x1 = 0.8319 +- 0.003909 res= 4.699 % 100
+Edep 3x3 = 0.9612 +- 0.003906 res= 4.064 % 100
+Edep 5x5 = 0.9812 +- 0.00392 res= 3.995 % 100
=========== Ratios without trancating ===========================
- E1/E9 = 0.8837 +- 0.002636
- E1/E25 = 0.8669 +- 0.002856
- E9/E25 = 0.9809 +- 0.0008849
+ E1/E9 = 0.8658 +- 0.003311
+ E1/E25 = 0.8482 +- 0.003404
+ E9/E25 = 0.9797 +- 0.001089
Beam Energy 1 GeV
==================================================================
@@ -1186,396 +1182,396 @@ Beam Energy 1 GeV
Secondary biasing is activated for gamma and conv inside G4Regions:
DefaultRegionForTheWorld BiasingWeight= 0
-phot: for gamma, applyCuts: 1 SubType= 12 BuildTable= 0
- LambdaPrime table from 200 keV to 100 TeV in 61 bins
+phot: for gamma applyCuts:1 SubType=12 BuildTable=0
+ LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma, applyCuts: 1 SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
- LambdaPrime table from 1 MeV to 100 TeV in 56 bins
+compt: for gamma applyCuts:1 SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1
+ LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region VertexDetector ======
- LowEPComptonModel : Emin= 0 eV Emax= 20 MeV FluoActive
- KleinNishina : Emin= 20 MeV Emax= 100 TeV FluoActive
+ LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo
+ KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo
-conv: for gamma, applyCuts: 1 SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma applyCuts:1 SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma, applyCuts: 1 SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
- LambdaPrime table from 100 keV to 100 TeV in 63 bins
+Rayl: for gamma applyCuts:1 SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0
+ LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region VertexDetector ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
===== EM models for the G4Region VertexDetector ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
===== EM models for the G4Region MuonDetector ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.8, integral: 1, fluct: 1, linLossLimit= 0.01
+eIoni: for e- SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.8, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+eBrem: for e- SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
===== EM models for the G4Region VertexDetector ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
===== EM models for the G4Region MuonDetector ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
===== EM models for the G4Region VertexDetector ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
===== EM models for the G4Region MuonDetector ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.8, integral: 1, fluct: 1, linLossLimit= 0.01
+eIoni: for e+ SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.8, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+eBrem: for e+ SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 , applyCuts: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 applyCuts:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
===== EM models for the G4Region VertexDetector ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
===== EM models for the G4Region MuonDetector ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+hIoni: for proton SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hBrems: for proton SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hPairProd: for proton SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ionIoni: for GenericIon SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ionIoni: for alpha SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+hIoni: for anti_proton SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hBrems: for anti_proton SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hPairProd: for anti_proton SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+hIoni: for kaon+ SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hBrems: for kaon+ SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hPairProd: for kaon+ SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+hIoni: for kaon- SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hBrems: for kaon- SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hPairProd: for kaon- SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 applyCuts:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+muIoni: for mu+ SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+muBrems: for mu+ SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+muPairProd: for mu+ SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+muIoni: for mu- SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+muBrems: for mu- SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+muPairProd: for mu- SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 applyCuts:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+hIoni: for pi+ SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hBrems: for pi+ SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hPairProd: for pi+ SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+hIoni: for pi- SubType=2
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hBrems: for pi- SubType=3
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
- dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+hPairProd: for pi- SubType=4
+ dE/dx and range tables from 100 eV to 100 TeV in 240 bins
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 applyCuts:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -1645,22 +1641,22 @@ Index : 7 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 100
- User=1.100000s Real=1.117357s Sys=0.000000s
+ User=0.840000s Real=0.835355s Sys=0.000000s
RunAction: End of run actions are started
HistoManager: End of run actions are started RunID# 3
=================================================================
Number of events 100
-Average number of e- 172.1
-Average number of gamma 363.7
-Average number of e+ 47.78
-Average number of steps 1977
-Edep 1x1 = 0.8082 +- 0.002887 res= 3.572 % 100
-Edep 3x3 = 0.9197 +- 0.002283 res= 2.483 % 100
-Edep 5x5 = 0.9379 +- 0.002094 res= 2.233 % 100
+Average number of e- 173
+Average number of gamma 362.4
+Average number of e+ 47.56
+Average number of steps 1996
+Edep 1x1 = 0.8275 +- 0.00411 res= 4.967 % 100
+Edep 3x3 = 0.9514 +- 0.00347 res= 3.647 % 100
+Edep 5x5 = 0.9726 +- 0.003564 res= 3.665 % 100
=========== Ratios without trancating ===========================
- E1/E9 = 0.8789 +- 0.002666
- E1/E25 = 0.8617 +- 0.002704
- E9/E25 = 0.9805 +- 0.0009535
+ E1/E9 = 0.8698 +- 0.003048
+ E1/E25 = 0.851 +- 0.003139
+ E9/E25 = 0.9783 +- 0.001008
Beam Energy 1 GeV
==================================================================
@@ -1668,6 +1664,6 @@ Beam Energy 1 GeV
G4 kernel has come to Quit state.
================== Deleting memory pools ===================
Number of memory pools allocated: 9 of which, static: 0
-Dynamic pools deleted: 9 / Total memory freed: 0.08 MB
+Dynamic pools deleted: 9 / Total memory freed: 0.085 MB
============================================================
RunManagerKernel is deleted. Good bye :)
diff --git a/examples/extended/errorpropagation/errorprop.out b/examples/extended/errorpropagation/errorprop.out
index f93128066e1..5280d5e6ddb 100644
--- a/examples/extended/errorpropagation/errorprop.out
+++ b/examples/extended/errorpropagation/errorprop.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -12,7 +8,7 @@
WWW : http://geant4.org/
**************************************************************
- creating G4RunManagerKernel 0x24c7010
+ creating G4RunManagerKernel 0x266ead0
The materials defined are :
@@ -87,34 +83,34 @@ G4Transportation: Current values for thresholds related to the killing of loop
Important Energy = 250 ( above this tracks are given multiple chances )
Extra Trials = 10 'important' tracks, i.e. those above 'important' energy
G4Transportation constructor> set fShortStepOptimisation to false
-0x26d5f90G4ErrorPhysicsList:: particle process manager e+ = 0x26d86b0
-0x26d5e40G4ErrorPhysicsList:: particle process manager e- = 0x26da140
-0x26d5cf0G4ErrorPhysicsList:: particle process manager gamma = 0x26da370
-0x26d73e0G4ErrorPhysicsList:: particle process manager geantino = 0x26da5c0
-0x26d6170G4ErrorPhysicsList:: particle process manager mu+ = 0x26da810
-0x26d6520G4ErrorPhysicsList:: particle process manager mu- = 0x26daa60
-0x26d6940G4ErrorPhysicsList:: particle process manager pi+ = 0x26dacb0
-0x26d6d90G4ErrorPhysicsList:: particle process manager pi- = 0x26daf00
-0x26d71b0G4ErrorPhysicsList:: particle process manager proton = 0x26db150
+0x287df00G4ErrorPhysicsList:: particle process manager e+ = 0x28805e0
+0x287ddb0G4ErrorPhysicsList:: particle process manager e- = 0x2882070
+0x287d840G4ErrorPhysicsList:: particle process manager gamma = 0x28822a0
+0x287f310G4ErrorPhysicsList:: particle process manager geantino = 0x28824f0
+0x287e0a0G4ErrorPhysicsList:: particle process manager mu+ = 0x2882740
+0x287e450G4ErrorPhysicsList:: particle process manager mu- = 0x2882990
+0x287e870G4ErrorPhysicsList:: particle process manager pi+ = 0x2882be0
+0x287ecc0G4ErrorPhysicsList:: particle process manager pi- = 0x2882e30
+0x287f0e0G4ErrorPhysicsList:: particle process manager proton = 0x2883080
physicsList->CheckParticleList() start.
physicsList->setCut() start.
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PhotoElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila
+ PhotoElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila
Region -- -- appears in world volume
This region is in the mass world.
diff --git a/examples/extended/eventgenerator/HepMC/HepMCEx01/include/ExN04CalorimeterHit.hh b/examples/extended/eventgenerator/HepMC/HepMCEx01/include/ExN04CalorimeterHit.hh
index 93fb080d460..cad46fcecb1 100644
--- a/examples/extended/eventgenerator/HepMC/HepMCEx01/include/ExN04CalorimeterHit.hh
+++ b/examples/extended/eventgenerator/HepMC/HepMCEx01/include/ExN04CalorimeterHit.hh
@@ -48,7 +48,7 @@ public:
virtual ~ExN04CalorimeterHit();
const ExN04CalorimeterHit& operator=(const ExN04CalorimeterHit& right);
- G4int operator==(const ExN04CalorimeterHit& right) const;
+ G4bool operator==(const ExN04CalorimeterHit& right) const;
inline void* operator new(size_t);
inline void operator delete(void* aHit);
diff --git a/examples/extended/eventgenerator/HepMC/HepMCEx01/include/ExN04MuonHit.hh b/examples/extended/eventgenerator/HepMC/HepMCEx01/include/ExN04MuonHit.hh
index e6098a5226b..05a9eddf968 100644
--- a/examples/extended/eventgenerator/HepMC/HepMCEx01/include/ExN04MuonHit.hh
+++ b/examples/extended/eventgenerator/HepMC/HepMCEx01/include/ExN04MuonHit.hh
@@ -42,7 +42,7 @@ public:
~ExN04MuonHit();
ExN04MuonHit(const ExN04MuonHit& right);
const ExN04MuonHit& operator=(const ExN04MuonHit &right);
- G4int operator==(const ExN04MuonHit &right) const;
+ G4bool operator==(const ExN04MuonHit &right) const;
inline void *operator new(size_t);
inline void operator delete(void *aHit);
diff --git a/examples/extended/eventgenerator/HepMC/HepMCEx01/include/ExN04TrackerHit.hh b/examples/extended/eventgenerator/HepMC/HepMCEx01/include/ExN04TrackerHit.hh
index a89529570de..2bca775d11c 100644
--- a/examples/extended/eventgenerator/HepMC/HepMCEx01/include/ExN04TrackerHit.hh
+++ b/examples/extended/eventgenerator/HepMC/HepMCEx01/include/ExN04TrackerHit.hh
@@ -43,7 +43,7 @@ public:
~ExN04TrackerHit();
ExN04TrackerHit(const ExN04TrackerHit &right);
const ExN04TrackerHit& operator=(const ExN04TrackerHit &right);
- G4int operator==(const ExN04TrackerHit &right) const;
+ G4bool operator==(const ExN04TrackerHit &right) const;
inline void *operator new(size_t);
inline void operator delete(void *aHit);
diff --git a/examples/extended/eventgenerator/HepMC/HepMCEx01/src/ExN04CalorimeterHit.cc b/examples/extended/eventgenerator/HepMC/HepMCEx01/src/ExN04CalorimeterHit.cc
index e56a7f1f137..46a39a65a35 100644
--- a/examples/extended/eventgenerator/HepMC/HepMCEx01/src/ExN04CalorimeterHit.cc
+++ b/examples/extended/eventgenerator/HepMC/HepMCEx01/src/ExN04CalorimeterHit.cc
@@ -81,7 +81,7 @@ const ExN04CalorimeterHit& ExN04CalorimeterHit::operator=
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-G4int ExN04CalorimeterHit::operator==(const ExN04CalorimeterHit &right) const
+G4bool ExN04CalorimeterHit::operator==(const ExN04CalorimeterHit &right) const
{
return ( (fZCellID == right.fZCellID) &&
(fPhiCellID == right.fPhiCellID) );
diff --git a/examples/extended/eventgenerator/HepMC/HepMCEx01/src/ExN04MuonHit.cc b/examples/extended/eventgenerator/HepMC/HepMCEx01/src/ExN04MuonHit.cc
index d37487b50b4..a6abcb1ef65 100644
--- a/examples/extended/eventgenerator/HepMC/HepMCEx01/src/ExN04MuonHit.cc
+++ b/examples/extended/eventgenerator/HepMC/HepMCEx01/src/ExN04MuonHit.cc
@@ -65,9 +65,9 @@ const ExN04MuonHit& ExN04MuonHit::operator=(const ExN04MuonHit &right)
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-G4int ExN04MuonHit::operator==(const ExN04MuonHit &right) const
+G4bool ExN04MuonHit::operator==(const ExN04MuonHit &right) const
{
- return (this==&right) ? 1 : 0;
+ return (this==&right) ? true : false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
diff --git a/examples/extended/eventgenerator/HepMC/HepMCEx01/src/ExN04TrackerHit.cc b/examples/extended/eventgenerator/HepMC/HepMCEx01/src/ExN04TrackerHit.cc
index 25e560373a8..191434c6b44 100644
--- a/examples/extended/eventgenerator/HepMC/HepMCEx01/src/ExN04TrackerHit.cc
+++ b/examples/extended/eventgenerator/HepMC/HepMCEx01/src/ExN04TrackerHit.cc
@@ -65,9 +65,9 @@ const ExN04TrackerHit& ExN04TrackerHit::operator=(const ExN04TrackerHit &right)
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-G4int ExN04TrackerHit::operator==(const ExN04TrackerHit &right) const
+G4bool ExN04TrackerHit::operator==(const ExN04TrackerHit &right) const
{
- return (this==&right) ? 1 : 0;
+ return (this==&right) ? true : false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
diff --git a/examples/extended/eventgenerator/HepMC/HepMCEx02/include/H02MuonHit.hh b/examples/extended/eventgenerator/HepMC/HepMCEx02/include/H02MuonHit.hh
index 6462c4be043..754c5eb83f4 100644
--- a/examples/extended/eventgenerator/HepMC/HepMCEx02/include/H02MuonHit.hh
+++ b/examples/extended/eventgenerator/HepMC/HepMCEx02/include/H02MuonHit.hh
@@ -44,7 +44,7 @@ public:
H02MuonHit(const H02MuonHit& right);
const H02MuonHit& operator=(const H02MuonHit& right);
- G4int operator==(const H02MuonHit& right) const;
+ G4bool operator==(const H02MuonHit& right) const;
void* operator new(size_t);
void operator delete(void* aHit);
diff --git a/examples/extended/eventgenerator/HepMC/HepMCEx02/src/H02MuonHit.cc b/examples/extended/eventgenerator/HepMC/HepMCEx02/src/H02MuonHit.cc
index c9fec866dbc..8e229e5e4d9 100644
--- a/examples/extended/eventgenerator/HepMC/HepMCEx02/src/H02MuonHit.cc
+++ b/examples/extended/eventgenerator/HepMC/HepMCEx02/src/H02MuonHit.cc
@@ -78,9 +78,9 @@ const H02MuonHit& H02MuonHit::operator=(const H02MuonHit& right)
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-G4int H02MuonHit::operator==(const H02MuonHit& right) const
+G4bool H02MuonHit::operator==(const H02MuonHit& right) const
{
- return (this==&right) ? 1 : 0;
+ return (this==&right) ? true : false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
diff --git a/examples/extended/eventgenerator/History b/examples/extended/eventgenerator/History
index ad15771f000..153581f5749 100644
--- a/examples/extended/eventgenerator/History
+++ b/examples/extended/eventgenerator/History
@@ -14,6 +14,9 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+31st January, 2019, I. Hrivnacova (exEventgenerator-V10-04-00)
+- Merged GitHub PR #4: all Boolean operators now return G4bool.
+
4th November, 2015 I. Hrivnacova (exEventgenerator-V10-01-00)
- Renaming basicPrimary example to userPrimaryGenerator
diff --git a/examples/extended/eventgenerator/exgps/exgps_batch.out b/examples/extended/eventgenerator/exgps/exgps_batch.out
index 2085e52b418..4628a9a3065 100644
--- a/examples/extended/eventgenerator/exgps/exgps_batch.out
+++ b/examples/extended/eventgenerator/exgps/exgps_batch.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
diff --git a/examples/extended/eventgenerator/particleGun/particleGun_run1.out b/examples/extended/eventgenerator/particleGun/particleGun_run1.out
index 751b9abea90..2ce1a1289ef 100644
--- a/examples/extended/eventgenerator/particleGun/particleGun_run1.out
+++ b/examples/extended/eventgenerator/particleGun/particleGun_run1.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -60,7 +56,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng
Run terminated.
Run Summary
Number of events processed : 1
- User=0.010000s Real=0.001087s Sys=0.000000s
+ User=0.000000s Real=0.000947s Sys=0.000000s
#
/tracking/verbose 0
/run/beamOn 5
diff --git a/examples/extended/eventgenerator/particleGun/particleGun_run2.out b/examples/extended/eventgenerator/particleGun/particleGun_run2.out
index 4308d58c6bf..ab23198702a 100644
--- a/examples/extended/eventgenerator/particleGun/particleGun_run2.out
+++ b/examples/extended/eventgenerator/particleGun/particleGun_run2.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -40,7 +36,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 100000
- User=0.210000s Real=0.212536s Sys=0.000000s
+ User=0.230000s Real=0.237869s Sys=0.000000s
... write Root file : run2.root - done
... close Root file : run2.root - done
G4 kernel has come to Quit state.
diff --git a/examples/extended/eventgenerator/particleGun/particleGun_run3.out b/examples/extended/eventgenerator/particleGun/particleGun_run3.out
index ea7891193cc..18c7aa9737f 100644
--- a/examples/extended/eventgenerator/particleGun/particleGun_run3.out
+++ b/examples/extended/eventgenerator/particleGun/particleGun_run3.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -41,7 +37,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 100000
- User=0.230000s Real=0.237040s Sys=0.000000s
+ User=0.220000s Real=0.225061s Sys=0.000000s
... write Root file : run3.root - done
... close Root file : run3.root - done
G4 kernel has come to Quit state.
diff --git a/examples/extended/eventgenerator/particleGun/particleGun_run4.out b/examples/extended/eventgenerator/particleGun/particleGun_run4.out
index f1cedf9a1c8..d2f448f21d9 100644
--- a/examples/extended/eventgenerator/particleGun/particleGun_run4.out
+++ b/examples/extended/eventgenerator/particleGun/particleGun_run4.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -56,7 +52,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1000000
- User=3.060000s Real=3.067100s Sys=0.000000s
+ User=2.820000s Real=2.837449s Sys=0.010000s
... write Root file : run4.root - done
... close Root file : run4.root - done
G4 kernel has come to Quit state.
diff --git a/examples/extended/eventgenerator/userPrimaryGenerator/userPrimaryGenerator.out b/examples/extended/eventgenerator/userPrimaryGenerator/userPrimaryGenerator.out
index b78b4c1ab27..836f163049d 100644
--- a/examples/extended/eventgenerator/userPrimaryGenerator/userPrimaryGenerator.out
+++ b/examples/extended/eventgenerator/userPrimaryGenerator/userPrimaryGenerator.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -44,7 +40,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 100000
- User=0.460000s Real=0.457248s Sys=0.000000s
+ User=0.400000s Real=0.409148s Sys=0.000000s
G4 kernel has come to Quit state.
================== Deleting memory pools ===================
Number of memory pools allocated: 9 of which, static: 0
diff --git a/examples/extended/exoticphysics/History b/examples/extended/exoticphysics/History
index 3037271aa05..0c38cd4d812 100644
--- a/examples/extended/exoticphysics/History
+++ b/examples/extended/exoticphysics/History
@@ -15,6 +15,9 @@ track of all tags.
----------------------------------------------------------
+31 January 2019: I. Hrivnacova (exExoticphysics-V10-04-01)
+- Merged GitHub PR #4: all Boolean operators now return G4bool.
+
9 November 2018: I. Hrivnacova (exExoticphysics-V10-04-00)
- Added new dmparticle example in CMake and README's
diff --git a/examples/extended/exoticphysics/channeling/channeling.out b/examples/extended/exoticphysics/channeling/channeling.out
index 0eb4c43619e..fbccf088585 100644
--- a/examples/extended/exoticphysics/channeling/channeling.out
+++ b/examples/extended/exoticphysics/channeling/channeling.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -30,12 +26,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -101,334 +95,334 @@ The built-in model procedure for atomic de-excitation is disabled.
/process/em/pixe false
======================================================================
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 10 TeV in 154 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 10 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 10 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 10 TeV in 140 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEPComptonModel : Emin= 0 eV Emax= 20 MeV FluoActive
- KleinNishina : Emin= 20 MeV Emax= 10 TeV FluoActive
+ LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo
+ KleinNishina : Emin= 20 MeV Emax= 10 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 10 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 10 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PenConversion : Emin= 0 eV Emax= 1 GeV
- BetheHeitlerLPM : Emin= 1 GeV Emax= 10 TeV AngularGenUrban
+ PenConversion : Emin= 0 eV Emax= 1 GeV
+ BetheHeitlerLPM : Emin= 1 GeV Emax= 10 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 10 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 10 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 10 TeV CullenGenerator
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PenIoni : Emin= 0 eV Emax= 1 MeV
- MollerBhabha : Emin= 1 MeV Emax= 10 TeV deltaVI
+ PenIoni : Emin= 0 eV Emax= 1 MeV
+ MollerBhabha : Emin= 1 MeV Emax= 10 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 10 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 10 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 0.1 GeV to 10 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 10 TeV
+ ePairProd : Emin= 0 eV Emax= 10 TeV
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 eV to 10 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 eV to 10 TeV, 20 bins/decade, spline: 1
0 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 10 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 10 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PenIoni : Emin= 0 eV Emax= 1 MeV
- MollerBhabha : Emin= 1 MeV Emax= 10 TeV deltaVI
+ PenIoni : Emin= 0 eV Emax= 1 MeV
+ MollerBhabha : Emin= 1 MeV Emax= 10 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 10 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 10 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 0.1 GeV to 10 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 10 TeV
+ ePairProd : Emin= 0 eV Emax= 10 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 10 TeV
+ eplus2gg : Emin= 0 eV Emax= 10 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 eV to 10 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 eV to 10 TeV, 20 bins/decade, spline: 1
0 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 10 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 10 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 10 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 10 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 10 TeV
+ hBrem : Emin= 0 eV Emax= 10 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
Sampling table 13x1001 from 7.50618 GeV to 10 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 10 TeV
+ hPairProd : Emin= 0 eV Emax= 10 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
Used Lambda table of anti_proton
0 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 10 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 10 TeV
-CoulombScat: for GenericIon, integral: 1 SubType= 1 BuildTable= 0
+CoulombScat: for GenericIon, integral:1 SubType=1 BuildTable=0
0 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
-IonCoulombScattering : Emin= 0 eV Emax= 10 TeV
+IonCoulombScattering : Emin= 0 eV Emax= 10 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 10 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 10 TeV deltaVI
-CoulombScat: for alpha, integral: 1 SubType= 1 BuildTable= 0
+CoulombScat: for alpha, integral:1 SubType=1 BuildTable=0
0 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
-IonCoulombScattering : Emin= 0 eV Emax= 10 TeV
+IonCoulombScattering : Emin= 0 eV Emax= 10 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 10 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 10 TeV deltaVI
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 10 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 10 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 10 TeV
+ hBrem : Emin= 0 eV Emax= 10 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
Sampling table 13x1001 from 7.50618 GeV to 10 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 10 TeV
+ hPairProd : Emin= 0 eV Emax= 10 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 eV to 10 TeV, 20 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 eV to 10 TeV, 20 bins/decade, spline: 1
0 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 10 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 10 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 10 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 10 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 10 TeV
+ hBrem : Emin= 0 eV Emax= 10 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
Sampling table 14x1001 from 3.94942 GeV to 10 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 10 TeV
+ hPairProd : Emin= 0 eV Emax= 10 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 eV to 10 TeV, 20 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 eV to 10 TeV, 20 bins/decade, spline: 1
0 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 10 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 10 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 10 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 10 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 10 TeV
+ hBrem : Emin= 0 eV Emax= 10 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
Sampling table 14x1001 from 3.94942 GeV to 10 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 10 TeV
+ hPairProd : Emin= 0 eV Emax= 10 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
0 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 10 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 10 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 10 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 10 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 10 TeV
+ MuBrem : Emin= 0 eV Emax= 10 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 1 GeV to 10 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 10 TeV
+ muPairProd : Emin= 0 eV Emax= 10 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 eV to 10 TeV, 20 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 eV to 10 TeV, 20 bins/decade, spline: 1
0 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 10 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 10 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 10 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 10 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 10 TeV
+ MuBrem : Emin= 0 eV Emax= 10 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 1 GeV to 10 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 10 TeV
+ muPairProd : Emin= 0 eV Emax= 10 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
0 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 10 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 10 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 10 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 10 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 10 TeV
+ hBrem : Emin= 0 eV Emax= 10 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
Sampling table 16x1001 from 1.11656 GeV to 10 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 10 TeV
+ hPairProd : Emin= 0 eV Emax= 10 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 eV to 10 TeV, 20 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 eV to 10 TeV, 20 bins/decade, spline: 1
0 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 10 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 10 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 10 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 10 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 10 TeV
+ hBrem : Emin= 0 eV Emax= 10 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 10 TeV in 220 bins
- Lambda tables from threshold to 10 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 10 TeV, 20 bins/decade, spline: 1
Sampling table 16x1001 from 1.11656 GeV to 10 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 10 TeV
+ hPairProd : Emin= 0 eV Emax= 10 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
0 < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 10 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 10 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -479,6 +473,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -584,6 +579,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -720,6 +716,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
diff --git a/examples/extended/exoticphysics/channeling/include/SensitiveDetectorHit.hh b/examples/extended/exoticphysics/channeling/include/SensitiveDetectorHit.hh
index 4f77dd1e85c..dbc19fcc2fb 100644
--- a/examples/extended/exoticphysics/channeling/include/SensitiveDetectorHit.hh
+++ b/examples/extended/exoticphysics/channeling/include/SensitiveDetectorHit.hh
@@ -49,7 +49,7 @@ public:
const SensitiveDetectorHit &right);
const SensitiveDetectorHit& operator=(
const SensitiveDetectorHit &right);
- int operator==(const SensitiveDetectorHit &right) const;
+ G4bool operator==(const SensitiveDetectorHit &right) const;
inline void *operator new(size_t);
inline void operator delete(void *aHit);
diff --git a/examples/extended/exoticphysics/channeling/src/SensitiveDetectorHit.cc b/examples/extended/exoticphysics/channeling/src/SensitiveDetectorHit.cc
index fb7a5c5bbdc..81aa833111f 100644
--- a/examples/extended/exoticphysics/channeling/src/SensitiveDetectorHit.cc
+++ b/examples/extended/exoticphysics/channeling/src/SensitiveDetectorHit.cc
@@ -83,9 +83,9 @@ SensitiveDetectorHit::operator=(
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
-int SensitiveDetectorHit::operator==
+G4bool SensitiveDetectorHit::operator==
(const SensitiveDetectorHit &/*right*/) const{
- return 0;
+ return false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
diff --git a/examples/extended/exoticphysics/dmparticle/dmparticle.out b/examples/extended/exoticphysics/dmparticle/dmparticle.out
index 91417ff2e10..54b9f97062e 100644
--- a/examples/extended/exoticphysics/dmparticle/dmparticle.out
+++ b/examples/extended/exoticphysics/dmparticle/dmparticle.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -27,12 +23,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -79,386 +73,386 @@ Some /vis commands (optionally) take a string to specify colour.
/gun/particle proton
/run/beamOn 100
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-ldmBrems: for proton SubType= 3
+ldmBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ldmBrem : Emin= 0 eV Emax= 100 TeV
+ ldmBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -1027,7 +1021,7 @@ Event = 0 z0 = -779.999 Primary direction = (0,0,1)
Run terminated.
Run Summary
Number of events processed : 100
- User=0.570000s Real=0.585893s Sys=0.010000s
+ User=0.580000s Real=0.586674s Sys=0.010000s
RunAction: End of run actions are started 1 Nevt= 100 Edep= 3688.19
====================================================
Beam Particle: proton
diff --git a/examples/extended/exoticphysics/monopole/History b/examples/extended/exoticphysics/monopole/History
index f5ec35cc822..302f2c4bd44 100644
--- a/examples/extended/exoticphysics/monopole/History
+++ b/examples/extended/exoticphysics/monopole/History
@@ -14,6 +14,13 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+01 March 2019: V.Ivantchenko (monopole-V10-04-07)
+- G4MonopolePhysics - minor code clean-up, replaced G4cerr by G4Exception
+- monopole.cc - do not instantiate VisManager in the batch mode, default
+ number of threads is now 1
+- Run, RunAction - extend histograms and printouts to restricted dEdx and
+ delta-electron cross section (needed to fix problem #2126)
+
23 October 2018: I.Hrivnacova (monopole-V10-04-06)
- Define the field setup data (fMonFieldSetup) in the DetectorConstruction class
thread-local using G4Cache utility.
diff --git a/examples/extended/exoticphysics/monopole/monopole.in b/examples/extended/exoticphysics/monopole/monopole.in
index b5427cc5464..0cf79f9c1e2 100644
--- a/examples/extended/exoticphysics/monopole/monopole.in
+++ b/examples/extended/exoticphysics/monopole/monopole.in
@@ -2,7 +2,6 @@
# Macro file for "monopole.cc"
# (can be run in batch, without graphic)
#
-#
/control/verbose 1
/control/cout/ignoreThreadsExcept 0
/run/verbose 0
@@ -16,13 +15,16 @@
/testex/run/binSize 0.2 mm
#
/process/em/verbose 1
+#
+/run/setCut 0.7 mm
+#
/run/initialize
+#
/particle/select monopole
/particle/process/dump
#
/run/printProgress 10
#
-#
/testex/fld/setField 0.2 tesla
#
/gun/particle monopole
diff --git a/examples/extended/exoticphysics/monopole/monopole.out b/examples/extended/exoticphysics/monopole/monopole.out
index 38cb18c7ed2..8a21b06fe46 100644
--- a/examples/extended/exoticphysics/monopole/monopole.out
+++ b/examples/extended/exoticphysics/monopole/monopole.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -32,12 +28,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -75,6 +69,7 @@ Some /vis commands (optionally) take a string to specify colour.
/testex/run/binSize 0.2 mm
/process/em/verbose 1
/run/physicsModified
+/run/setCut 0.7 mm
/run/initialize
---------------------------------------------------------
@@ -119,371 +114,371 @@ G4MonopoleEquation::G4MonopoleEquation
/run/beamOn 100
### Monopole ionisation model with d-electron production, Gmag= 68.518
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -534,6 +529,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -639,6 +635,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -775,6 +772,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -817,121 +815,126 @@ Index : 1 used in the geometry : Yes
--> Event 80 starts.
--> Event 90 starts.
- The run consists of 100 monopole of 100 GeV through 10 cm of G4_Si (density: 2.33 g/cm3 )
- Projected Range= 7.7514 cm rms= 99.391 um
-
-### Stopping Powers
- E(MeV)= 0.001 dedxp(MeV/mm)= 24.465 dedxmp(MeV/mm)= -8.0876e-16
- E(MeV)= 0.0012589 dedxp(MeV/mm)= 27.276 dedxmp(MeV/mm)= -9.0745e-16
- E(MeV)= 0.0015849 dedxp(MeV/mm)= 30.767 dedxmp(MeV/mm)= -1.0182e-15
- E(MeV)= 0.0019953 dedxp(MeV/mm)= 34.558 dedxmp(MeV/mm)= -1.1424e-15
- E(MeV)= 0.0025119 dedxp(MeV/mm)= 38.769 dedxmp(MeV/mm)= -1.2818e-15
- E(MeV)= 0.0031623 dedxp(MeV/mm)= 43.491 dedxmp(MeV/mm)= -1.4382e-15
- E(MeV)= 0.0039811 dedxp(MeV/mm)= 48.814 dedxmp(MeV/mm)= -1.6137e-15
- E(MeV)= 0.0050119 dedxp(MeV/mm)= 54.773 dedxmp(MeV/mm)= -1.8106e-15
- E(MeV)= 0.0063096 dedxp(MeV/mm)= 61.455 dedxmp(MeV/mm)= -2.0315e-15
- E(MeV)= 0.0079433 dedxp(MeV/mm)= 68.933 dedxmp(MeV/mm)= -2.2794e-15
- E(MeV)= 0.01 dedxp(MeV/mm)= 77.356 dedxmp(MeV/mm)= -2.5575e-15
- E(MeV)= 0.012589 dedxp(MeV/mm)= 85.192 dedxmp(MeV/mm)= -2.8696e-15
- E(MeV)= 0.015849 dedxp(MeV/mm)= 93.469 dedxmp(MeV/mm)= -3.2197e-15
- E(MeV)= 0.019953 dedxp(MeV/mm)= 101.92 dedxmp(MeV/mm)= -3.6126e-15
- E(MeV)= 0.025119 dedxp(MeV/mm)= 110.26 dedxmp(MeV/mm)= -4.0534e-15
- E(MeV)= 0.031623 dedxp(MeV/mm)= 117.88 dedxmp(MeV/mm)= -4.548e-15
- E(MeV)= 0.039811 dedxp(MeV/mm)= 123.92 dedxmp(MeV/mm)= -5.103e-15
- E(MeV)= 0.050119 dedxp(MeV/mm)= 127.47 dedxmp(MeV/mm)= -5.7256e-15
- E(MeV)= 0.063096 dedxp(MeV/mm)= 127.65 dedxmp(MeV/mm)= -6.4242e-15
- E(MeV)= 0.079433 dedxp(MeV/mm)= 124.16 dedxmp(MeV/mm)= -7.2081e-15
- E(MeV)= 0.1 dedxp(MeV/mm)= 117.53 dedxmp(MeV/mm)= -8.0876e-15
- E(MeV)= 0.12589 dedxp(MeV/mm)= 108.93 dedxmp(MeV/mm)= -9.0745e-15
- E(MeV)= 0.15849 dedxp(MeV/mm)= 99.664 dedxmp(MeV/mm)= -1.0182e-14
- E(MeV)= 0.19953 dedxp(MeV/mm)= 90.588 dedxmp(MeV/mm)= -1.1424e-14
- E(MeV)= 0.25119 dedxp(MeV/mm)= 82.081 dedxmp(MeV/mm)= -1.2818e-14
- E(MeV)= 0.31623 dedxp(MeV/mm)= 74.169 dedxmp(MeV/mm)= -1.4382e-14
- E(MeV)= 0.39811 dedxp(MeV/mm)= 66.763 dedxmp(MeV/mm)= -1.6137e-14
- E(MeV)= 0.50119 dedxp(MeV/mm)= 59.742 dedxmp(MeV/mm)= -1.8106e-14
- E(MeV)= 0.63096 dedxp(MeV/mm)= 53.434 dedxmp(MeV/mm)= -2.0315e-14
- E(MeV)= 0.79433 dedxp(MeV/mm)= 47.062 dedxmp(MeV/mm)= -2.2794e-14
- E(MeV)= 1 dedxp(MeV/mm)= 40.845 dedxmp(MeV/mm)= -2.5575e-14
- E(MeV)= 1.2589 dedxp(MeV/mm)= 35.325 dedxmp(MeV/mm)= -2.8696e-14
- E(MeV)= 1.5849 dedxp(MeV/mm)= 30.422 dedxmp(MeV/mm)= -3.2197e-14
- E(MeV)= 1.9953 dedxp(MeV/mm)= 26.068 dedxmp(MeV/mm)= -3.6126e-14
- E(MeV)= 2.5119 dedxp(MeV/mm)= 22.267 dedxmp(MeV/mm)= -4.0533e-14
- E(MeV)= 3.1623 dedxp(MeV/mm)= 18.934 dedxmp(MeV/mm)= -4.5479e-14
- E(MeV)= 3.9811 dedxp(MeV/mm)= 16.043 dedxmp(MeV/mm)= -5.1028e-14
- E(MeV)= 5.0119 dedxp(MeV/mm)= 13.589 dedxmp(MeV/mm)= 0.026437
- E(MeV)= 6.3096 dedxp(MeV/mm)= 11.42 dedxmp(MeV/mm)= 3.1012
- E(MeV)= 7.9433 dedxp(MeV/mm)= 9.608 dedxmp(MeV/mm)= 7.106
- E(MeV)= 10 dedxp(MeV/mm)= 8.0524 dedxmp(MeV/mm)= 12.19
- E(MeV)= 12.589 dedxp(MeV/mm)= 6.6936 dedxmp(MeV/mm)= 18.525
- E(MeV)= 15.849 dedxp(MeV/mm)= 5.5755 dedxmp(MeV/mm)= 26.308
- E(MeV)= 19.953 dedxp(MeV/mm)= 4.6616 dedxmp(MeV/mm)= 35.767
- E(MeV)= 25.119 dedxp(MeV/mm)= 3.9107 dedxmp(MeV/mm)= 47.162
- E(MeV)= 31.623 dedxp(MeV/mm)= 3.2703 dedxmp(MeV/mm)= 60.794
- E(MeV)= 39.811 dedxp(MeV/mm)= 2.7356 dedxmp(MeV/mm)= 77.004
- E(MeV)= 50.119 dedxp(MeV/mm)= 2.2882 dedxmp(MeV/mm)= 96.188
- E(MeV)= 63.096 dedxp(MeV/mm)= 1.9184 dedxmp(MeV/mm)= 118.8
- E(MeV)= 79.433 dedxp(MeV/mm)= 1.6121 dedxmp(MeV/mm)= 145.34
- E(MeV)= 100 dedxp(MeV/mm)= 1.3599 dedxmp(MeV/mm)= 176.42
- E(MeV)= 125.89 dedxp(MeV/mm)= 1.153 dedxmp(MeV/mm)= 212.71
- E(MeV)= 158.49 dedxp(MeV/mm)= 0.98406 dedxmp(MeV/mm)= 254.96
- E(MeV)= 199.53 dedxp(MeV/mm)= 0.84666 dedxmp(MeV/mm)= 304.07
- E(MeV)= 251.19 dedxp(MeV/mm)= 0.73555 dedxmp(MeV/mm)= 361.04
- E(MeV)= 316.23 dedxp(MeV/mm)= 0.64633 dedxmp(MeV/mm)= 426.99
- E(MeV)= 398.11 dedxp(MeV/mm)= 0.57535 dedxmp(MeV/mm)= 503.21
- E(MeV)= 501.19 dedxp(MeV/mm)= 0.51956 dedxmp(MeV/mm)= 591.16
- E(MeV)= 630.96 dedxp(MeV/mm)= 0.47644 dedxmp(MeV/mm)= 631.06
- E(MeV)= 794.33 dedxp(MeV/mm)= 0.44387 dedxmp(MeV/mm)= 669.72
- E(MeV)= 1000 dedxp(MeV/mm)= 0.42068 dedxmp(MeV/mm)= 708.41
- E(MeV)= 1258.9 dedxp(MeV/mm)= 0.40476 dedxmp(MeV/mm)= 747.13
- E(MeV)= 1584.9 dedxp(MeV/mm)= 0.39477 dedxmp(MeV/mm)= 785.89
- E(MeV)= 1995.3 dedxp(MeV/mm)= 0.38966 dedxmp(MeV/mm)= 824.71
- E(MeV)= 2511.9 dedxp(MeV/mm)= 0.3885 dedxmp(MeV/mm)= 863.59
- E(MeV)= 3162.3 dedxp(MeV/mm)= 0.39046 dedxmp(MeV/mm)= 902.56
- E(MeV)= 3981.1 dedxp(MeV/mm)= 0.39483 dedxmp(MeV/mm)= 941.63
- E(MeV)= 5011.9 dedxp(MeV/mm)= 0.40101 dedxmp(MeV/mm)= 980.83
- E(MeV)= 6309.6 dedxp(MeV/mm)= 0.4085 dedxmp(MeV/mm)= 1020.2
- E(MeV)= 7943.3 dedxp(MeV/mm)= 0.41692 dedxmp(MeV/mm)= 1059.7
- E(MeV)= 10000 dedxp(MeV/mm)= 0.42591 dedxmp(MeV/mm)= 1099.5
- E(MeV)= 12589 dedxp(MeV/mm)= 0.43526 dedxmp(MeV/mm)= 1139.6
- E(MeV)= 15849 dedxp(MeV/mm)= 0.44479 dedxmp(MeV/mm)= 1180
- E(MeV)= 19953 dedxp(MeV/mm)= 0.45437 dedxmp(MeV/mm)= 1220.8
- E(MeV)= 25119 dedxp(MeV/mm)= 0.45693 dedxmp(MeV/mm)= 1262.1
- E(MeV)= 31623 dedxp(MeV/mm)= 0.45858 dedxmp(MeV/mm)= 1303.9
- E(MeV)= 39811 dedxp(MeV/mm)= 0.46012 dedxmp(MeV/mm)= 1346.2
- E(MeV)= 50119 dedxp(MeV/mm)= 0.46157 dedxmp(MeV/mm)= 1389
- E(MeV)= 63096 dedxp(MeV/mm)= 0.46295 dedxmp(MeV/mm)= 1432.3
- E(MeV)= 79433 dedxp(MeV/mm)= 0.46431 dedxmp(MeV/mm)= 1475.7
- E(MeV)= 1e+05 dedxp(MeV/mm)= 0.46574 dedxmp(MeV/mm)= 1521.9
- E(MeV)= 1.2589e+05 dedxp(MeV/mm)= 0.4673 dedxmp(MeV/mm)= 1569.5
- E(MeV)= 1.5849e+05 dedxp(MeV/mm)= 0.46913 dedxmp(MeV/mm)= 1616.1
- E(MeV)= 1.9953e+05 dedxp(MeV/mm)= 0.47135 dedxmp(MeV/mm)= 1661.5
- E(MeV)= 2.5119e+05 dedxp(MeV/mm)= 0.47415 dedxmp(MeV/mm)= 1705.5
- E(MeV)= 3.1623e+05 dedxp(MeV/mm)= 0.47776 dedxmp(MeV/mm)= 1747.9
- E(MeV)= 3.9811e+05 dedxp(MeV/mm)= 0.48246 dedxmp(MeV/mm)= 1788.3
- E(MeV)= 5.0119e+05 dedxp(MeV/mm)= 0.48861 dedxmp(MeV/mm)= 1826.5
- E(MeV)= 6.3096e+05 dedxp(MeV/mm)= 0.49667 dedxmp(MeV/mm)= 1862.4
- E(MeV)= 7.9433e+05 dedxp(MeV/mm)= 0.5072 dedxmp(MeV/mm)= 1895.6
- E(MeV)= 1e+06 dedxp(MeV/mm)= 0.52093 dedxmp(MeV/mm)= 1926.2
- E(MeV)= 1.2589e+06 dedxp(MeV/mm)= 0.53874 dedxmp(MeV/mm)= 1954
- E(MeV)= 1.5849e+06 dedxp(MeV/mm)= 0.56178 dedxmp(MeV/mm)= 1979
- E(MeV)= 1.9953e+06 dedxp(MeV/mm)= 0.59149 dedxmp(MeV/mm)= 2001.2
- E(MeV)= 2.5119e+06 dedxp(MeV/mm)= 0.62968 dedxmp(MeV/mm)= 2020.8
- E(MeV)= 3.1623e+06 dedxp(MeV/mm)= 0.67868 dedxmp(MeV/mm)= 2037.7
- E(MeV)= 3.9811e+06 dedxp(MeV/mm)= 0.74137 dedxmp(MeV/mm)= 2052.3
- E(MeV)= 5.0119e+06 dedxp(MeV/mm)= 0.82142 dedxmp(MeV/mm)= 2064.6
- E(MeV)= 6.3096e+06 dedxp(MeV/mm)= 0.92346 dedxmp(MeV/mm)= 2074.8
- E(MeV)= 7.9433e+06 dedxp(MeV/mm)= 1.0533 dedxmp(MeV/mm)= 2083.1
-### End of stopping power table
-Range table for G4_Si
+ The run consists of 100 monopole of 100 GeV
+ through 10 cm of G4_Si (density: 2.33 g/cm3 )
+ Projected Range= 7.7521 cm rms= 104.2 um
+
+##################################################################
+### Stopping Powers and Cross Sections
+##################################################################
+# N E(MeV) p_dEdx(MeV/mm) mpl_dEdx(MeV/mm) xs(1/mm)
+ restr tot restr tot p mpl
+##################################################################
+ 0. 0.001 24.5 24.5 1.27-8.09e-16 0 0
+ 1. 0.00126 27.4 27.3 1.42-9.07e-16 0 0
+ 2. 0.00158 30.7 30.8 1.59-1.02e-15 0 0
+ 3. 0.002 34.6 34.6 1.79-1.14e-15 0 0
+ 4. 0.00251 38.8 38.8 2.01-1.28e-15 0 0
+ 5. 0.00316 43.5 43.5 2.25-1.44e-15 0 0
+ 6. 0.00398 48.8 48.8 2.53-1.61e-15 0 0
+ 7. 0.00501 54.8 54.8 2.83-1.81e-15 0 0
+ 8. 0.00631 61.4 61.5 3.18-2.03e-15 0 0
+ 9. 0.00794 69 68.9 3.57-2.28e-15 0 0
+10. 0.01 77.4 77.4 4-2.56e-15 0 0
+11. 0.0126 85.3 85.2 4.49-2.87e-15 0 0
+12. 0.0158 93.3 93.5 5.04-3.22e-15 0 0
+13. 0.02 102 102 5.65-3.61e-15 0 0
+14. 0.0251 110 110 6.34-4.05e-15 0 0
+15. 0.0316 118 118 7.12-4.55e-15 0 0
+16. 0.0398 124 124 7.99 -5.1e-15 0 0
+17. 0.0501 127 127 8.96-5.73e-15 0 0
+18. 0.0631 128 128 10.1-6.42e-15 0 0
+19. 0.0794 124 124 11.3-7.21e-15 0 0
+20. 0.1 118 118 12.7-8.09e-15 0 0
+21. 0.126 109 109 14.2-9.07e-15 0 0
+22. 0.158 99.7 99.7 15.9-1.02e-14 0 0
+23. 0.2 90.6 90.6 17.9-1.14e-14 0 0
+24. 0.251 82.1 82.1 20.1-1.28e-14 0 0
+25. 0.316 74.2 74.2 22.5-1.44e-14 0 0
+26. 0.398 66.8 66.8 25.3-1.61e-14 0 0
+27. 0.501 59.8 59.7 28.3-1.81e-14 0 0
+28. 0.631 53.3 53.4 31.8-2.03e-14 0 0
+29. 0.794 47.2 47.1 35.7-2.28e-14 0 0
+30. 1 40.8 40.8 40-2.56e-14 0 0
+31. 1.26 35.3 35.3 44.9-2.87e-14 0 0
+32. 1.58 30.4 30.4 50.4-3.22e-14 0 0
+33. 2 26.1 26.1 56.5-3.61e-14 0 0
+34. 2.51 22.2 22.3 63.4-4.05e-14 0 0
+35. 3.16 18.9 18.9 71.2-4.55e-14 0 0
+36. 3.98 16.1 16 79.9 -5.1e-14 0 0
+37. 5.01 13.6 13.6 88.8 0.0264 0 0
+38. 6.31 11.4 11.4 92.6 3.1 0 0
+39. 7.94 9.59 9.61 93.5 7.11 0 0
+40. 10 8.05 8.05 97.6 12.2 0 0
+41. 12.6 6.7 6.69 102 18.5 0 0
+42. 15.8 5.57 5.58 108 26.3 0 0
+43. 20 4.66 4.66 115 35.8 0 0
+44. 25.1 3.91 3.91 124 47.2 0 0
+45. 31.6 3.27 3.27 135 60.8 0 0
+46. 39.8 2.74 2.74 148 77 0 0
+47. 50.1 2.29 2.29 164 96.2 0 0
+48. 63.1 1.92 1.92 183 119 0 0
+49. 79.4 1.61 1.61 205 145 0 0
+50. 100 1.36 1.36 231 176 0 0
+51. 126 1.15 1.15 262 213 0 0
+52. 158 0.983 0.984 298 255 0 0
+53. 200 0.842 0.847 341 304 0.00775 0
+54. 251 0.724 0.736 390 361 0.024 0
+55. 316 0.628 0.646 447 427 0.0302 0
+56. 398 0.554 0.575 515 503 0.0338 0
+57. 501 0.495 0.52 589 591 0.0353 0
+58. 631 0.449 0.476 637 631 0.036 0
+59. 794 0.414 0.444 667 670 0.0364 0
+60. 1e+03 0.388 0.421 708 708 0.0368 0
+61. 1.26e+03 0.369 0.405 748 747 0.0373 0
+62. 1.58e+03 0.355 0.395 785 786 0.0379 0
+63. 2e+03 0.346 0.39 825 825 0.0385 0
+64. 2.51e+03 0.34 0.388 864 864 0.0391 0
+65. 3.16e+03 0.337 0.39 902 903 0.0396 0
+66. 3.98e+03 0.336 0.395 942 942 0.0401 0
+67. 5.01e+03 0.336 0.401 981 981 0.0406 0
+68. 6.31e+03 0.337 0.409 1.02e+03 1.02e+03 0.0409 0
+69. 7.94e+03 0.338 0.417 1.06e+03 1.06e+03 0.0412 0
+70. 1e+04 0.34 0.426 1.1e+03 1.1e+03 0.0414 0
+71. 1.26e+04 0.342 0.435 1.14e+03 1.14e+03 0.0416 0
+72. 1.58e+04 0.344 0.445 1.18e+03 1.18e+03 0.0417 0
+73. 2e+04 0.346 0.454 1.22e+03 1.22e+03 0.0418 8.23
+74. 2.51e+04 0.348 0.457 1.24e+03 1.26e+03 0.0418 50.2
+75. 3.16e+04 0.349 0.459 1.25e+03 1.3e+03 0.0417 83.6
+76. 3.98e+04 0.351 0.46 1.28e+03 1.35e+03 0.0417 111
+77. 5.01e+04 0.352 0.462 1.3e+03 1.39e+03 0.0417 132
+78. 6.31e+04 0.353 0.463 1.32e+03 1.43e+03 0.0417 148
+79. 7.94e+04 0.354 0.464 1.34e+03 1.48e+03 0.0417 160
+80. 1e+05 0.354 0.466 1.36e+03 1.52e+03 0.0417 170
+81. 1.26e+05 0.355 0.467 1.38e+03 1.57e+03 0.0417 177
+82. 1.58e+05 0.355 0.469 1.4e+03 1.62e+03 0.0417 183
+83. 2e+05 0.355 0.471 1.41e+03 1.66e+03 0.0417 187
+84. 2.51e+05 0.355 0.474 1.43e+03 1.71e+03 0.0417 190
+85. 3.16e+05 0.356 0.478 1.44e+03 1.75e+03 0.0417 192
+86. 3.98e+05 0.356 0.482 1.45e+03 1.79e+03 0.0417 194
+87. 5.01e+05 0.356 0.489 1.46e+03 1.83e+03 0.0417 195
+88. 6.31e+05 0.356 0.497 1.46e+03 1.86e+03 0.0417 196
+89. 7.94e+05 0.356 0.507 1.46e+03 1.9e+03 0.0417 196
+90. 1e+06 0.356 0.521 1.45e+03 1.93e+03 0.0417 196
+91. 1.26e+06 0.356 0.539 1.44e+03 1.95e+03 0.0417 197
+92. 1.58e+06 0.356 0.562 1.43e+03 1.98e+03 0.0417 197
+93. 2e+06 0.356 0.591 1.42e+03 2e+03 0.0417 197
+94. 2.51e+06 0.356 0.63 1.4e+03 2.02e+03 0.0417 197
+95. 3.16e+06 0.356 0.679 1.38e+03 2.04e+03 0.0417 197
+96. 3.98e+06 0.356 0.741 1.36e+03 2.05e+03 0.0417 197
+97. 5.01e+06 0.356 0.821 1.33e+03 2.06e+03 0.0417 197
+98. 6.31e+06 0.356 0.923 1.3e+03 2.07e+03 0.0417 197
+99. 7.94e+06 0.356 1.05 1.27e+03 2.08e+03 0.0417 197
+##################################################################
... write Root file : monopole.root - done
... close Root file : monopole.root - done
Graphics systems deleted.
Visualization Manager deleting...
-G4Integration Driver Stats: #QuickAdvance 1518074 - #AccurateAdvance 8563 #good steps 14225 #bad steps 2
+G4Integration Driver Stats: #QuickAdvance 1517333 - #AccurateAdvance 8380 #good steps 13828 #bad steps 1
G4ChordFinder statistics report:
- No trials: 1517124 No Calls: 1516624 Max-trial: 3
+ No trials: 1516398 No Calls: 1515881 Max-trial: 2
Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98
-G4Integration Driver Stats: #QuickAdvance 1715737 - #AccurateAdvance 601 #good steps 5666 #bad steps 0
+G4Integration Driver Stats: #QuickAdvance 1713628 - #AccurateAdvance 600 #good steps 5662 #bad steps 0
G4ChordFinder statistics report:
- No trials: 1715185 No Calls: 1715084 Max-trial: 3
+ No trials: 1713076 No Calls: 1712975 Max-trial: 3
Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98
diff --git a/examples/extended/exoticphysics/monopole/src/G4MonopolePhysics.cc b/examples/extended/exoticphysics/monopole/src/G4MonopolePhysics.cc
index 4f49e853b0b..a54d598d8df 100644
--- a/examples/extended/exoticphysics/monopole/src/G4MonopolePhysics.cc
+++ b/examples/extended/exoticphysics/monopole/src/G4MonopolePhysics.cc
@@ -105,12 +105,10 @@ void G4MonopolePhysics::ConstructProcess()
G4ProcessManager* pmanager = fMpl->GetProcessManager();
// defined monopole parameters and binning
-
G4double magn = fMpl->MagneticCharge();
- G4double emin = fMonopoleMass/20000.;
- if(emin < keV) { emin = keV; }
+ G4double emin = std::min(fMonopoleMass/20000., CLHEP::keV);
G4double emax = std::max(10.*TeV, fMonopoleMass*100);
- G4int nbin = G4lrint(10*std::log10(emax/emin));
+ G4int nbin = G4lrint(10*std::log10(emax/emin));
// dedicated trasporation
if(magn != 0.0) {
@@ -141,10 +139,11 @@ void G4MonopolePhysics::ConstructProcess()
void G4MonopolePhysics::SetMagneticCharge(G4double val)
{
if ( fMpl ) {
- G4cerr << "Cannot set value. Monopole particle was already constructed." << G4endl;
+ G4Exception("G4MonopolePhysics", "01", JustWarning,
+ "Cannot set value when monopole is already constructed.");
+ } else {
+ fMagCharge = val;
}
-
- fMagCharge = val;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -152,10 +151,11 @@ void G4MonopolePhysics::SetMagneticCharge(G4double val)
void G4MonopolePhysics::SetElectricCharge(G4double val)
{
if ( fMpl ) {
- G4cerr << "Cannot set value. Monopole particle was already constructed." << G4endl;
+ G4Exception("G4MonopolePhysics", "01", JustWarning,
+ "Cannot set value when monopole is already constructed.");
+ } else {
+ fElCharge = val;
}
-
- fElCharge = val;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -163,10 +163,11 @@ void G4MonopolePhysics::SetElectricCharge(G4double val)
void G4MonopolePhysics::SetMonopoleMass(G4double mass)
{
if ( fMpl ) {
- G4cerr << "Cannot set value. Monopole particle was already constructed." << G4endl;
+ G4Exception("G4MonopolePhysics", "01", JustWarning,
+ "Cannot set value when monopole is already constructed.");
+ } else {
+ fMonopoleMass = mass;
}
-
- fMonopoleMass = mass;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
diff --git a/examples/extended/exoticphysics/monopole/src/Run.cc b/examples/extended/exoticphysics/monopole/src/Run.cc
index 9785e114deb..98a549a9ff8 100644
--- a/examples/extended/exoticphysics/monopole/src/Run.cc
+++ b/examples/extended/exoticphysics/monopole/src/Run.cc
@@ -34,6 +34,7 @@
#include "PrimaryGeneratorAction.hh"
#include "DetectorConstruction.hh"
#include "G4EmCalculator.hh"
+#include "G4Proton.hh"
#include "G4SystemOfUnits.hh"
#include "G4UnitsTable.hh"
#include
@@ -88,14 +89,17 @@ void Run::EndOfRun(double binLength)
const G4Material* material = fDetector->GetAbsorMaterial();
G4double density = material->GetDensity();
G4String matName = material->GetName();
+
const G4ParticleDefinition* part =
fPrimary->GetParticleGun()->GetParticleDefinition();
G4String particle = part->GetParticleName();
+ const G4ParticleDefinition* proton = G4Proton::Proton();
+
G4double energy = fPrimary->GetParticleGun()->GetParticleEnergy();
if(GetVerbose() > 0){
G4cout << "\n The run consists of " << nEvents << " "<< particle << " of "
- << G4BestUnit(energy,"Energy") << " through "
+ << G4BestUnit(energy,"Energy") << "\n through "
<< G4BestUnit(fDetector->GetAbsorSizeX(),"Length") << " of "
<< matName << " (density: "
<< G4BestUnit(density,"Volumic Mass") << ")" << G4endl;
@@ -103,7 +107,6 @@ void Run::EndOfRun(double binLength)
};
//compute projected range and straggling
-
fProjRange /= nEvents; fProjRange2 /= nEvents;
G4double rms = fProjRange2 - fProjRange*fProjRange;
if (rms>0.) { rms = std::sqrt(rms); }
@@ -116,44 +119,68 @@ void Run::EndOfRun(double binLength)
<< "\n" << G4endl;
};
- G4double ekin[100], dedxproton[100], dedxmp[100];
+ G4double ekin[100], dedxp[100], dedxmp[100], tdedxp[100], tdedxmp[100],
+ xsp[100], xsmp[100];
G4EmCalculator calc;
//calc.SetVerbose(2);
G4int i;
for(i = 0; i < 100; ++i) {
- ekin[i] = std::pow(10., 0.1*G4double(i)) * keV;
- dedxproton[i] =
- calc.ComputeElectronicDEDX(ekin[i], "proton", matName);
- dedxmp[i] =
- calc.ComputeElectronicDEDX(ekin[i], "monopole", matName);
+ ekin[i] = std::pow(10., 0.1*G4double(i)) * keV;
+ dedxp[i] = calc.GetDEDX(ekin[i], proton, material);
+ xsp[i] = calc.GetCrossSectionPerVolume(ekin[i], proton, "hIoni",
+ material);
+ tdedxp[i] = calc.ComputeElectronicDEDX(ekin[i], proton, material);
+ dedxmp[i] = calc.GetDEDX(ekin[i], part, material);
+ xsmp[i] = calc.GetCrossSectionPerVolume(ekin[i], part, "mplIoni",
+ material);
+ tdedxmp[i] = calc.ComputeElectronicDEDX(ekin[i], part, material);
}
if(GetVerbose() > 0){
- G4cout << "### Stopping Powers" << G4endl;
+ G4int prec = G4cout.precision(3);
+ G4cout<<"##################################################################"
+ << G4endl;
+ G4cout<< "### Stopping Powers and Cross Sections" << G4endl;
+ G4cout<<"##################################################################"
+ << G4endl;
+
+ G4cout<<"# N E(MeV) p_dEdx(MeV/mm) mpl_dEdx(MeV/mm) xs(1/mm)"
+ << G4endl;
+ G4cout<<" restr tot restr tot p mpl"
+ << G4endl;
+ G4cout<<"##################################################################"
+ << G4endl;
for(i=0; i<100; ++i) {
- G4cout << " E(MeV)= " << ekin[i] << " dedxp(MeV/mm)= " << dedxproton[i]
- << " dedxmp(MeV/mm)= " << dedxmp[i]
+ G4cout << std::setw(2) << i << "." << std::setw(9) << ekin[i]
+ << std::setw(8) << dedxp[i]
+ << std::setw(8) << tdedxp[i]
+ << std::setw(9) << dedxmp[i]
+ << std::setw(9) << tdedxmp[i]
+ << std::setw(10) << xsp[i]
+ << std::setw(10) << xsmp[i]
<< G4endl;
}
+ G4cout.precision(prec);
+ G4cout<<"##################################################################"
+ << G4endl;
}
- G4cout << "### End of stopping power table" << G4endl;
// normalize histogram
G4double fac = (mm/MeV) / (nEvents * binLength);
fAnalysisManager->ScaleH1(1,fac);
- if(GetVerbose() > 0){
- G4cout << "Range table for " << matName << G4endl;
- }
-
for(i=0; i<100; ++i) {
G4double e = std::log10(ekin[i] / MeV) + 0.05;
- fAnalysisManager->FillH1(2, e, dedxproton[i]);
- fAnalysisManager->FillH1(3, e, dedxmp[i]);
+ fAnalysisManager->FillH1(2, e, tdedxp[i]);
+ fAnalysisManager->FillH1(3, e, tdedxmp[i]);
fAnalysisManager->FillH1(4, e,
std::log10(calc.GetRange(ekin[i],"proton",matName)/mm));
fAnalysisManager->FillH1(5, e,
std::log10(calc.GetRange(ekin[i],"monopole",matName)/mm));
+ fAnalysisManager->FillH1(6, e, dedxp[i]);
+ fAnalysisManager->FillH1(7, e, dedxmp[i]);
+ fAnalysisManager->FillH1(8, e, xsp[i]);
+ fAnalysisManager->FillH1(9, e, xsmp[i]);
}
}
diff --git a/examples/extended/exoticphysics/monopole/src/RunAction.cc b/examples/extended/exoticphysics/monopole/src/RunAction.cc
index afb510a6a2c..0a76580a398 100644
--- a/examples/extended/exoticphysics/monopole/src/RunAction.cc
+++ b/examples/extended/exoticphysics/monopole/src/RunAction.cc
@@ -50,7 +50,7 @@ RunAction::RunAction(DetectorConstruction* det, PrimaryGeneratorAction* kin)
:fDetector(det),fKinematic(kin)
{
fMessenger = new RunActionMessenger(this);
- fBinLength = 5 * CLHEP::mm;
+ fBinLength = 5 * CLHEP::mm;
G4AnalysisManager* analysisManager = G4AnalysisManager::Instance();
analysisManager->SetFileName("monopole");
analysisManager->SetVerboseLevel(1);
@@ -127,10 +127,18 @@ void RunAction::Book()
// Create histograms
analysisManager->CreateH1("h1","Edep (MeV/mm) along absorber (mm)",
nbBins, 0, length);
- analysisManager->CreateH1("h2","DEDX (MeV/mm) of proton", 100, -3., 7.);
- analysisManager->CreateH1("h3","DEDX (MeV/mm) of monopole", 100, -3., 7.);
+ analysisManager->CreateH1("h2","Total DEDX (MeV/mm) of proton",100,-3.,7.);
+ analysisManager->CreateH1("h3","Total DEDX (MeV/mm) of monopole",100,-3., 7.);
analysisManager->CreateH1("h4","Range(mm) of proton", 100, -3., 7., "mm");
analysisManager->CreateH1("h5","Range(mm) of monopole", 100, -3., 7., "mm");
+ analysisManager->CreateH1("h6","Restricted DEDX (MeV/mm) of proton",
+ 100,-3.,7.);
+ analysisManager->CreateH1("h7","Restricted DEDX (MeV/mm) of monopole",
+ 100,-3., 7.);
+ analysisManager->CreateH1("h8","Delta-electron x-section (1/mm) of proton",
+ 100, -3., 7., "mm");
+ analysisManager->CreateH1("h9","Delta-electron x-section (1/mm) of monopole",
+ 100, -3., 7., "mm");
analysisManager->OpenFile();
}
diff --git a/examples/extended/exoticphysics/phonon/include/XAluminumElectrodeHit.hh b/examples/extended/exoticphysics/phonon/include/XAluminumElectrodeHit.hh
index c0bf520ef38..8aea52bd3aa 100644
--- a/examples/extended/exoticphysics/phonon/include/XAluminumElectrodeHit.hh
+++ b/examples/extended/exoticphysics/phonon/include/XAluminumElectrodeHit.hh
@@ -53,7 +53,7 @@ public:
virtual ~XAluminumElectrodeHit();
XAluminumElectrodeHit(const XAluminumElectrodeHit &right);
const XAluminumElectrodeHit& operator=(const XAluminumElectrodeHit &right);
- int operator==(const XAluminumElectrodeHit &right) const;
+ G4bool operator==(const XAluminumElectrodeHit &right) const;
inline void *operator new(size_t);
inline void operator delete(void *aHit);
diff --git a/examples/extended/exoticphysics/phonon/src/XAluminumElectrodeHit.cc b/examples/extended/exoticphysics/phonon/src/XAluminumElectrodeHit.cc
index 9f72d18bdd2..0db9429fd07 100644
--- a/examples/extended/exoticphysics/phonon/src/XAluminumElectrodeHit.cc
+++ b/examples/extended/exoticphysics/phonon/src/XAluminumElectrodeHit.cc
@@ -81,9 +81,9 @@ const XAluminumElectrodeHit& XAluminumElectrodeHit::operator=(const XAluminumEle
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
-int XAluminumElectrodeHit::operator==(const XAluminumElectrodeHit &/*right*/) const
+G4bool XAluminumElectrodeHit::operator==(const XAluminumElectrodeHit &/*right*/) const
{
- return 0;
+ return false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
diff --git a/examples/extended/exoticphysics/ucn/ExUCN.out b/examples/extended/exoticphysics/ucn/ExUCN.out
index d7ad10941e8..480924a2a29 100644
--- a/examples/extended/exoticphysics/ucn/ExUCN.out
+++ b/examples/extended/exoticphysics/ucn/ExUCN.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -51,12 +47,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -1479,7 +1473,7 @@ Terminate current event processing.
Run terminated.
Run Summary
Number of events processed : 1
- User=0.030000s Real=0.035384s Sys=0.010000s
+ User=0.030000s Real=0.032072s Sys=0.000000s
Sum NoMT: 0
Sum NoMRT: 0
Sum NoMRCondition: 0
diff --git a/examples/extended/field/History b/examples/extended/field/History
index f2aab1f28d5..a8df4abf3a6 100644
--- a/examples/extended/field/History
+++ b/examples/extended/field/History
@@ -14,6 +14,9 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+31st Jan 2019 Ivana Hrivnacova (fieldex-V10-04-00)
+- Merged GitHub PR #4: all Boolean operators now return G4bool.
+
02nd Dec 2013 Ivana Hrivnacova (fieldex-V09-06-02)
- Fixed gui.mac macros in field01-06
diff --git a/examples/extended/field/field01/field01.out b/examples/extended/field/field01/field01.out
index c9ecddfb415..58531f2c12d 100644
--- a/examples/extended/field/field01/field01.out
+++ b/examples/extended/field/field01/field01.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -232,12 +228,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -313,7 +307,7 @@ Step# X Y Z Direction x dir y dir
Run terminated.
Run Summary
Number of events processed : 1
- User=0.000000s Real=0.001923s Sys=0.000000s
+ User=0.010000s Real=0.001530s Sys=0.000000s
G4Transportation: Statistics for looping particles
No looping tracks found or killed.
@@ -344,7 +338,7 @@ Step# X Y Z Direction x dir y dir
Run terminated.
Run Summary
Number of events processed : 1
- User=0.000000s Real=0.000205s Sys=0.000000s
+ User=0.000000s Real=0.000154s Sys=0.000000s
G4Transportation: Statistics for looping particles
No looping tracks found or killed.
@@ -375,7 +369,7 @@ Step# X Y Z Direction x dir y dir
Run terminated.
Run Summary
Number of events processed : 1
- User=0.000000s Real=0.000185s Sys=0.000000s
+ User=0.000000s Real=0.000196s Sys=0.000000s
G4Transportation: Statistics for looping particles
No looping tracks found or killed.
@@ -406,7 +400,7 @@ Step# X Y Z Direction x dir y dir
Run terminated.
Run Summary
Number of events processed : 1
- User=0.000000s Real=0.000239s Sys=0.000000s
+ User=0.000000s Real=0.000216s Sys=0.000000s
G4Transportation: Statistics for looping particles
No looping tracks found or killed.
@@ -437,7 +431,7 @@ Step# X Y Z Direction x dir y dir
Run terminated.
Run Summary
Number of events processed : 1
- User=0.000000s Real=0.000159s Sys=0.000000s
+ User=0.000000s Real=0.000131s Sys=0.000000s
G4Transportation: Statistics for looping particles
No looping tracks found or killed.
G4Integration Driver Stats: #QuickAdvance 186 - #AccurateAdvance 30 #good steps 30 #bad steps 0
@@ -479,7 +473,7 @@ Step# X Y Z Direction x dir y dir
Run terminated.
Run Summary
Number of events processed : 1
- User=0.000000s Real=0.000188s Sys=0.000000s
+ User=0.000000s Real=0.000165s Sys=0.000000s
G4Transportation: Statistics for looping particles
No looping tracks found or killed.
@@ -510,7 +504,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 100
- User=0.010000s Real=0.010011s Sys=0.000000s
+ User=0.000000s Real=0.009189s Sys=0.000000s
G4Transportation: Statistics for looping particles
No looping tracks found or killed.
#
@@ -577,7 +571,7 @@ Index : 2 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1
- User=0.020000s Real=0.033845s Sys=0.000000s
+ User=0.020000s Real=0.021797s Sys=0.000000s
G4Transportation: Statistics for looping particles
No looping tracks found or killed.
Graphics systems deleted.
diff --git a/examples/extended/field/field01/include/F01CalorHit.hh b/examples/extended/field/field01/include/F01CalorHit.hh
index a8e9fae5eab..dcc55c5caa8 100644
--- a/examples/extended/field/field01/include/F01CalorHit.hh
+++ b/examples/extended/field/field01/include/F01CalorHit.hh
@@ -50,7 +50,7 @@ class F01CalorHit : public G4VHit
virtual ~F01CalorHit();
const F01CalorHit& operator=(const F01CalorHit&);
- G4int operator==(const F01CalorHit&) const;
+ G4bool operator==(const F01CalorHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
diff --git a/examples/extended/field/field01/src/F01CalorHit.cc b/examples/extended/field/field01/src/F01CalorHit.cc
index b6deb075e61..625166ecf37 100644
--- a/examples/extended/field/field01/src/F01CalorHit.cc
+++ b/examples/extended/field/field01/src/F01CalorHit.cc
@@ -72,9 +72,9 @@ const F01CalorHit& F01CalorHit::operator=(const F01CalorHit& right)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-G4int F01CalorHit::operator==(const F01CalorHit& right) const
+G4bool F01CalorHit::operator==(const F01CalorHit& right) const
{
- return (this==&right) ? 1 : 0;
+ return (this==&right) ? true : false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
diff --git a/examples/extended/field/field02/field02.out b/examples/extended/field/field02/field02.out
index bf88c6cc051..35d159b314a 100644
--- a/examples/extended/field/field02/field02.out
+++ b/examples/extended/field/field02/field02.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -226,12 +222,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -263,371 +257,371 @@ G4ClassicalRK4 is called
F02ElectricFieldSetup: The minimal step is equal to 10 mm
G4ClassicalRK4 is called
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -678,6 +672,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -783,6 +778,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -919,6 +915,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -5512,7 +5509,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Ne
Run terminated.
Run Summary
Number of events processed : 100
- User=0.040000s Real=0.055883s Sys=0.010000s
+ User=0.040000s Real=0.040047s Sys=0.010000s
#
/calor/setAbsMat Air
/calor/setWorldMat Xe20CO2
@@ -5547,371 +5544,371 @@ has been modified since last Run.
Z position of the (middle of the) absorber 400 mm.
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -6202,7 +6199,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng Ne
Run terminated.
Run Summary
Number of events processed : 1
- User=0.000000s Real=0.006105s Sys=0.010000s
+ User=0.000000s Real=0.002520s Sys=0.000000s
Graphics systems deleted.
Visualization Manager deleting...
G4 kernel has come to Quit state.
diff --git a/examples/extended/field/field02/include/F02CalorHit.hh b/examples/extended/field/field02/include/F02CalorHit.hh
index 3eb6c42f543..4c3a8a0401e 100644
--- a/examples/extended/field/field02/include/F02CalorHit.hh
+++ b/examples/extended/field/field02/include/F02CalorHit.hh
@@ -48,7 +48,7 @@ class F02CalorHit : public G4VHit
virtual ~F02CalorHit();
const F02CalorHit& operator=(const F02CalorHit&);
- G4int operator==(const F02CalorHit&) const;
+ G4bool operator==(const F02CalorHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
diff --git a/examples/extended/field/field02/src/F02CalorHit.cc b/examples/extended/field/field02/src/F02CalorHit.cc
index 1b571603e02..9689511e1a2 100644
--- a/examples/extended/field/field02/src/F02CalorHit.cc
+++ b/examples/extended/field/field02/src/F02CalorHit.cc
@@ -72,9 +72,9 @@ const F02CalorHit& F02CalorHit::operator=(const F02CalorHit& right)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-G4int F02CalorHit::operator==(const F02CalorHit& right) const
+G4bool F02CalorHit::operator==(const F02CalorHit& right) const
{
- return (this==&right) ? 1 : 0;
+ return (this==&right) ? true : false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
diff --git a/examples/extended/field/field03/field03.out b/examples/extended/field/field03/field03.out
index 277569c5097..5d69a5e58f9 100644
--- a/examples/extended/field/field03/field03.out
+++ b/examples/extended/field/field03/field03.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -237,12 +233,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -282,371 +276,371 @@ F03FieldSetup::UpdateField> The minimal step is equal to 10 mm
Stepper Type chosen = 4
G4ClassicalRK4 (default) is called
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -697,6 +691,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -802,6 +797,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -938,6 +934,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -983,7 +980,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng
Run terminated.
Run Summary
Number of events processed : 1
- User=0.000000s Real=0.002003s Sys=0.000000s
+ User=0.000000s Real=0.001854s Sys=0.000000s
========= Table of registered couples ==============================
@@ -1002,7 +999,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 100
- User=0.010000s Real=0.011115s Sys=0.000000s
+ User=0.020000s Real=0.010805s Sys=0.000000s
Set global field value to (0,0,1000) Gauss
========= Table of registered couples ==============================
@@ -1021,7 +1018,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.001622s Sys=0.000000s
+ User=0.000000s Real=0.001440s Sys=0.000000s
Set global field value to (33000,0,0) Gauss
G4Integration Driver Stats: #QuickAdvance 4741 - #AccurateAdvance 636 #good steps 636 #bad steps 0
G4ChordFinder statistics report:
@@ -1072,7 +1069,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng
Run terminated.
Run Summary
Number of events processed : 1
- User=0.000000s Real=0.000375s Sys=0.000000s
+ User=0.000000s Real=0.000299s Sys=0.000000s
/tracking/verbose 0
#
/calor/setAbsMat Xe20CO2
@@ -1115,371 +1112,371 @@ Checking overlaps for volume Radiator ... OK!
Checking overlaps for volume Absorber ... OK!
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -1511,7 +1508,7 @@ Index : 2 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1
- User=0.220000s Real=0.221988s Sys=0.000000s
+ User=0.210000s Real=0.215215s Sys=0.000000s
Graphics systems deleted.
Visualization Manager deleting...
G4 kernel has come to Quit state.
diff --git a/examples/extended/field/field03/include/F03CalorHit.hh b/examples/extended/field/field03/include/F03CalorHit.hh
index ea1597c0eb9..8af1e41011a 100644
--- a/examples/extended/field/field03/include/F03CalorHit.hh
+++ b/examples/extended/field/field03/include/F03CalorHit.hh
@@ -50,7 +50,7 @@ class F03CalorHit : public G4VHit
virtual ~F03CalorHit();
const F03CalorHit& operator=(const F03CalorHit&);
- G4int operator==(const F03CalorHit&) const;
+ G4bool operator==(const F03CalorHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
diff --git a/examples/extended/field/field03/src/F03CalorHit.cc b/examples/extended/field/field03/src/F03CalorHit.cc
index bdfcca42281..6b280e3fb46 100644
--- a/examples/extended/field/field03/src/F03CalorHit.cc
+++ b/examples/extended/field/field03/src/F03CalorHit.cc
@@ -72,9 +72,9 @@ const F03CalorHit& F03CalorHit::operator=(const F03CalorHit& right)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-G4int F03CalorHit::operator==(const F03CalorHit& right) const
+G4bool F03CalorHit::operator==(const F03CalorHit& right) const
{
- return (this==&right) ? 1 : 0;
+ return (this==&right) ? true : false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
diff --git a/examples/extended/field/field04/field04.out b/examples/extended/field/field04/field04.out
index 20f0e6cc908..c1d0ee413f8 100644
--- a/examples/extended/field/field04/field04.out
+++ b/examples/extended/field/field04/field04.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -36,12 +32,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -255,371 +249,371 @@ G4NistMaterialBuilder::FindOrBuildMaterial G4_AIR
G4NistMaterialBuilder::FindOrBuildMaterial G4_Pb
G4NistMaterialBuilder::FindOrBuildMaterial G4_W
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -671,6 +665,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -776,6 +771,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -917,6 +913,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
diff --git a/examples/extended/field/field04/include/F04TrajectoryPoint.hh b/examples/extended/field/field04/include/F04TrajectoryPoint.hh
index adae07c9108..b4d9d952891 100644
--- a/examples/extended/field/field04/include/F04TrajectoryPoint.hh
+++ b/examples/extended/field/field04/include/F04TrajectoryPoint.hh
@@ -61,7 +61,7 @@ class F04TrajectoryPoint : public G4TrajectoryPoint {
inline void *operator new(size_t);
inline void operator delete(void *aTrajectoryPoint);
- inline int operator==(const F04TrajectoryPoint& right) const
+ inline G4bool operator==(const F04TrajectoryPoint& right) const
{ return (this==&right); };
// Get/Set functions
diff --git a/examples/extended/field/field05/field05.out b/examples/extended/field/field05/field05.out
index bc83e8b7c4d..915279b4f66 100644
--- a/examples/extended/field/field05/field05.out
+++ b/examples/extended/field/field05/field05.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -39,12 +35,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
diff --git a/examples/extended/field/field06/field06.out b/examples/extended/field/field06/field06.out
index 74ccceaaedd..ae7e23e88d3 100644
--- a/examples/extended/field/field06/field06.out
+++ b/examples/extended/field/field06/field06.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -51,12 +47,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -2305,7 +2299,7 @@ Terminate current event processing.
Run terminated.
Run Summary
Number of events processed : 1
- User=0.020000s Real=0.022236s Sys=0.000000s
+ User=0.020000s Real=0.018434s Sys=0.000000s
Graphics systems deleted.
Visualization Manager deleting...
G4 kernel has come to Quit state.
diff --git a/examples/extended/g3tog4/clGeometry/clGeometry.out b/examples/extended/g3tog4/clGeometry/clGeometry.out
index 485945612d5..05cb6180730 100644
--- a/examples/extended/g3tog4/clGeometry/clGeometry.out
+++ b/examples/extended/g3tog4/clGeometry/clGeometry.out
@@ -1,13 +1,9 @@
argc 4
-Geometry data file: /mnt/build/jenkins/workspace/g4-cc7/COMPILER/gcc63/LABEL/cc7/THREAD/Seq/release/RelWithDebInfo/10-04-ref-10_branch/g4tags-dev/examples/extended/g3tog4/clGeometry/data/testmodel.dat
+Geometry data file: /mnt/build/jenkins/workspace/g4n-centos7/COMPILER/gcc63/LABEL/centos7/THREAD/Seq/geant4/examples/extended/g3tog4/clGeometry/data/testmodel.dat
evaluating -m
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -15,7 +11,7 @@ evaluating -m
WWW : http://geant4.org/
**************************************************************
-Instantiated G3toG4DetectorConstruction using call list file "/mnt/build/jenkins/workspace/g4-cc7/COMPILER/gcc63/LABEL/cc7/THREAD/Seq/release/RelWithDebInfo/10-04-ref-10_branch/g4tags-dev/examples/extended/g3tog4/clGeometry/data/testmodel.dat"
+Instantiated G3toG4DetectorConstruction using call list file "/mnt/build/jenkins/workspace/g4n-centos7/COMPILER/gcc63/LABEL/centos7/THREAD/Seq/geant4/examples/extended/g3tog4/clGeometry/data/testmodel.dat"
<<< Geant4 Physics List simulation engine: FTFP_BERT 2.0
Visualization Manager instantiating with verbosity "warnings (3)"...
@@ -32,12 +28,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -67,7 +61,7 @@ Some /vis commands (optionally) take a string to specify colour.
"/vis/list" to see available colours.
userDetector->Construct() start.
Instantiated unit rotation matrix irot=0
-Reading the call List file /mnt/build/jenkins/workspace/g4-cc7/COMPILER/gcc63/LABEL/cc7/THREAD/Seq/release/RelWithDebInfo/10-04-ref-10_branch/g4tags-dev/examples/extended/g3tog4/clGeometry/data/testmodel.dat...
+Reading the call List file /mnt/build/jenkins/workspace/g4n-centos7/COMPILER/gcc63/LABEL/centos7/THREAD/Seq/geant4/examples/extended/g3tog4/clGeometry/data/testmodel.dat...
G4ggclos: setting top-level VolTableEntry
Dump of VTD - 26 entries:
Instantiated 26 volume table entries
@@ -125,371 +119,371 @@ physicsList->Construct() start.
physicsList->CheckParticleList() start.
physicsList->setCut() start.
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -540,6 +534,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -645,6 +640,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -781,6 +777,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -846,7 +843,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 1
- User=0.000000s Real=0.001592s Sys=0.000000s
+ User=0.000000s Real=0.000927s Sys=0.000000s
Region -- -- appears in world volume
This region is in the mass world.
@@ -876,7 +873,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1
- User=0.000000s Real=0.000067s Sys=0.000000s
+ User=0.000000s Real=0.000061s Sys=0.000000s
Region -- -- appears in world volume
This region is in the mass world.
@@ -906,7 +903,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1
- User=0.000000s Real=0.000072s Sys=0.000000s
+ User=0.000000s Real=0.000062s Sys=0.000000s
Region -- -- appears in world volume
This region is in the mass world.
@@ -936,7 +933,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1
- User=0.000000s Real=0.000033s Sys=0.000000s
+ User=0.000000s Real=0.000035s Sys=0.000000s
Region -- -- appears in world volume
This region is in the mass world.
@@ -966,7 +963,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1
- User=0.000000s Real=0.000127s Sys=0.000000s
+ User=0.000000s Real=0.000122s Sys=0.000000s
Region -- -- appears in world volume
This region is in the mass world.
@@ -996,7 +993,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1
- User=0.000000s Real=0.000051s Sys=0.000000s
+ User=0.000000s Real=0.000060s Sys=0.000000s
Region -- -- appears in world volume
This region is in the mass world.
@@ -1026,7 +1023,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1
- User=0.000000s Real=0.000047s Sys=0.000000s
+ User=0.000000s Real=0.000045s Sys=0.000000s
Region -- -- appears in world volume
This region is in the mass world.
@@ -1056,7 +1053,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1
- User=0.000000s Real=0.000064s Sys=0.000000s
+ User=0.000000s Real=0.000043s Sys=0.000000s
Graphics systems deleted.
Visualization Manager deleting...
G4 kernel has come to Quit state.
diff --git a/examples/extended/geometry/transforms/batch.out b/examples/extended/geometry/transforms/batch.out
index 7bd62c22549..2b2185ee5ca 100644
--- a/examples/extended/geometry/transforms/batch.out
+++ b/examples/extended/geometry/transforms/batch.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -31,12 +27,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -138,7 +132,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng
Run terminated.
Run Summary
Number of events processed : 1
- User=0.000000s Real=0.001045s Sys=0.000000s
+ User=0.000000s Real=0.000884s Sys=0.000000s
Graphics systems deleted.
Visualization Manager deleting...
G4 kernel has come to Quit state.
diff --git a/examples/extended/hadronic/FissionFragment/FissionFragment.out b/examples/extended/hadronic/FissionFragment/FissionFragment.out
index 6e7ba57948b..e9547b37e9c 100644
--- a/examples/extended/hadronic/FissionFragment/FissionFragment.out
+++ b/examples/extended/hadronic/FissionFragment/FissionFragment.out
@@ -1,12 +1,8 @@
-#### Starting: /mnt/build/jenkins/workspace/g4-cc7/COMPILER/gcc63/LABEL/cc7/THREAD/Seq/release/RelWithDebInfo/10-04-ref-10_branch/build/examples/extended/hadronic/FissionFragment/FissionFragment ####
+#### Starting: /mnt/build/jenkins/workspace/g4n-centos7/COMPILER/gcc63/LABEL/centos7/THREAD/Seq/build/examples/extended/hadronic/FissionFragment/FissionFragment ####
MT RNG Seed: 62737819
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -364,12 +360,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -403,152 +397,152 @@ Some /vis commands (optionally) take a string to specify colour.
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEPComptonModel : Emin= 0 eV Emax= 20 MeV FluoActive
- KleinNishina : Emin= 20 MeV Emax= 100 TeV FluoActive
+ LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo
+ KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PenConversion : Emin= 0 eV Emax= 20 MeV
- BetheHeitler : Emin= 20 MeV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ PenConversion : Emin= 0 eV Emax= 20 MeV
+ BetheHeitler : Emin= 20 MeV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
- MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
+ LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
+ MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PenIoni : Emin= 0 eV Emax= 100 keV
- MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
+ PenIoni : Emin= 0 eV Emax= 100 keV
+ MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
=======================================================================
====== Radioactive Decay Physics Parameters ========
=======================================================================
@@ -564,184 +558,184 @@ Check EM cuts disabled for atomic de-excitation 1
Use Bearden atomic level energies 0
=======================================================================
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
@@ -763,69 +757,69 @@ As currently modeled this option precludes production of delayed neutrons from f
Fission fragment production is now activated in HP package for Z = 92, A = 238
As currently modeled this option precludes production of delayed neutrons from fission fragments.
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -863,6 +857,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -968,6 +963,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -1138,6 +1134,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -1151,151 +1148,151 @@ Shooting event 1
Emission Location: r: (4.45494,0,466.79)
Emission Direction: r: (-0.97197,-0.108229,-0.208711)
Shooting event 2
-Emission Location: r: (0.345354,0,480.798)
-Emission Direction: r: (-0.745202,-0.160225,-0.647303)
+Emission Location: r: (0.637224,0,446.028)
+Emission Direction: r: (0.631013,0.41776,-0.653681)
Shooting event 3
-Emission Location: r: (2.04755,0,469.357)
-Emission Direction: r: (-0.305494,0.949088,0.0768419)
+Emission Location: r: (0.518884,0,449.059)
+Emission Direction: r: (-0.587141,0.433578,0.683576)
Shooting event 4
-Emission Location: r: (3.7215,0,437.215)
-Emission Direction: r: (-0.068405,-0.540572,0.838512)
+Emission Location: r: (0.91259,0,480.294)
+Emission Direction: r: (-0.983611,-0.143099,0.109694)
Shooting event 5
-Emission Location: r: (0.196164,0,461.172)
-Emission Direction: r: (-0.945236,-0.167966,0.279849)
+Emission Location: r: (1.63886,0,459.5)
+Emission Direction: r: (0.533898,-0.563151,-0.630724)
Shooting event 6
-Emission Location: r: (3.55146,0,440.938)
-Emission Direction: r: (-0.600009,0.778734,-0.183203)
+Emission Location: r: (1.10497,0,472.565)
+Emission Direction: r: (-0.66178,0.536777,-0.523372)
Shooting event 7
-Emission Location: r: (2.93963,0,457.072)
-Emission Direction: r: (-0.910604,-0.102467,0.400375)
+Emission Location: r: (3.96054,0,479.622)
+Emission Direction: r: (-0.794837,0.0650544,-0.603326)
Shooting event 8
-Emission Location: r: (0.371725,0,463.642)
-Emission Direction: r: (0.14043,0.426445,-0.893546)
+Emission Location: r: (1.20933,0,480.038)
+Emission Direction: r: (0.245911,0.302768,-0.920793)
Shooting event 9
-Emission Location: r: (1.28625,0,478.163)
-Emission Direction: r: (0.869186,0.456321,0.190489)
+Emission Location: r: (0.0324269,0,447.133)
+Emission Direction: r: (-0.294596,-0.677653,-0.673795)
Shooting event 10
-Emission Location: r: (3.71149,0,453.835)
-Emission Direction: r: (-0.929535,0.16737,-0.328561)
+Emission Location: r: (0.437435,0,468.428)
+Emission Direction: r: (-0.487633,-0.561535,0.6685)
Shooting event 11
-Emission Location: r: (2.27663,0,478.85)
-Emission Direction: r: (0.265533,0.210251,-0.940897)
+Emission Location: r: (3.41991,0,449.275)
+Emission Direction: r: (0.942135,-0.0758268,0.326546)
Shooting event 12
-Emission Location: r: (4.46096,0,468.998)
-Emission Direction: r: (0.335358,-0.20335,0.919883)
+Emission Location: r: (3.30725,0,467.374)
+Emission Direction: r: (0.655236,0.427016,0.623155)
Shooting event 13
-Emission Location: r: (0.110508,0,450.091)
-Emission Direction: r: (0.830654,0.350169,-0.432892)
+Emission Location: r: (1.64567,0,459.11)
+Emission Direction: r: (0.470621,-0.708998,-0.525203)
Shooting event 14
-Emission Location: r: (0.547048,0,441.373)
-Emission Direction: r: (0.158849,-0.0424152,-0.986391)
+Emission Location: r: (0.0329393,0,482.779)
+Emission Direction: r: (0.686375,-0.714629,0.134888)
Shooting event 15
-Emission Location: r: (0.591714,0,460.137)
-Emission Direction: r: (0.13528,-0.808461,0.572792)
+Emission Location: r: (1.79768,0,476.636)
+Emission Direction: r: (0.172309,-0.0830145,-0.981539)
Shooting event 16
-Emission Location: r: (3.47323,0,469.683)
-Emission Direction: r: (-0.198354,0.0241378,0.979833)
+Emission Location: r: (2.219,0,441.176)
+Emission Direction: r: (0.568283,-0.315986,-0.759741)
Shooting event 17
-Emission Location: r: (2.84746,0,473.23)
-Emission Direction: r: (0.344017,-0.591197,-0.729478)
+Emission Location: r: (0.62822,0,456.767)
+Emission Direction: r: (-0.358149,0.624622,-0.693957)
Shooting event 18
-Emission Location: r: (1.86006,0,479.993)
-Emission Direction: r: (0.628033,0.511489,0.586476)
+Emission Location: r: (4.20444,0,440.848)
+Emission Direction: r: (0.681178,-0.732063,0.00893369)
Shooting event 19
-Emission Location: r: (3.33054,0,440.861)
-Emission Direction: r: (0.166312,-0.108794,0.980053)
+Emission Location: r: (0.708969,0,470.716)
+Emission Direction: r: (0.609739,-0.621073,-0.492429)
Shooting event 20
-Emission Location: r: (3.36576,0,464.333)
-Emission Direction: r: (0.00214654,0.267355,0.963596)
+Emission Location: r: (1.14088,0,467.321)
+Emission Direction: r: (0.854191,-0.0860795,0.512785)
Shooting event 21
-Emission Location: r: (1.62494,0,441.209)
-Emission Direction: r: (0.368091,0.280218,0.886559)
+Emission Location: r: (4.34892,0,457.566)
+Emission Direction: r: (0.813123,0.531701,0.236907)
Shooting event 22
-Emission Location: r: (3.85957,0,483.518)
-Emission Direction: r: (0.432284,-0.608795,-0.665206)
+Emission Location: r: (1.19905,0,448.979)
+Emission Direction: r: (-0.215864,0.212391,0.953044)
Shooting event 23
-Emission Location: r: (3.34761,0,474.888)
-Emission Direction: r: (0.878674,-0.477298,-0.0108793)
+Emission Location: r: (0.844888,0,458.193)
+Emission Direction: r: (0.140824,-0.9898,0.0215402)
Shooting event 24
-Emission Location: r: (0.0342354,0,481.504)
-Emission Direction: r: (0.717923,0.557765,-0.416515)
+Emission Location: r: (4.1378,0,447.908)
+Emission Direction: r: (0.0223716,-0.416798,0.908724)
Shooting event 25
-Emission Location: r: (0.734583,0,483.199)
-Emission Direction: r: (-0.401751,-0.104872,-0.909724)
+Emission Location: r: (3.50663,0,455.469)
+Emission Direction: r: (0.237716,-0.789913,0.565269)
Shooting event 26
-Emission Location: r: (3.64533,0,462.143)
-Emission Direction: r: (0.0606065,-0.526139,-0.848236)
+Emission Location: r: (1.24326,0,467.132)
+Emission Direction: r: (-0.351002,0.920337,-0.17256)
Shooting event 27
-Emission Location: r: (1.92772,0,443.462)
-Emission Direction: r: (-0.38843,-0.185695,-0.902574)
+Emission Location: r: (1.16164,0,454.063)
+Emission Direction: r: (-0.933291,-0.34627,-0.0952121)
Shooting event 28
-Emission Location: r: (3.71167,0,473.943)
-Emission Direction: r: (0.347103,0.342897,-0.872892)
+Emission Location: r: (0.332827,0,445.304)
+Emission Direction: r: (-0.618896,0.772789,0.140588)
Shooting event 29
-Emission Location: r: (4.91444,0,457.431)
-Emission Direction: r: (0.43185,-0.095879,-0.896835)
+Emission Location: r: (1.27976,0,445.623)
+Emission Direction: r: (-0.992464,-0.0979906,0.0735723)
Shooting event 30
-Emission Location: r: (0.685904,0,444.029)
-Emission Direction: r: (0.410118,-0.269943,-0.871168)
+Emission Location: r: (3.26962,0,436.383)
+Emission Direction: r: (0.118538,-0.983725,0.135031)
Shooting event 31
-Emission Location: r: (0.257057,0,469.699)
-Emission Direction: r: (-0.366708,-0.539391,-0.758012)
+Emission Location: r: (3.3862,0,441.837)
+Emission Direction: r: (-0.292582,-0.791929,0.535951)
Shooting event 32
-Emission Location: r: (1.57399,0,437.055)
-Emission Direction: r: (0.27968,-0.365674,0.887728)
+Emission Location: r: (2.4319,0,442.558)
+Emission Direction: r: (-0.87775,0.335468,-0.342077)
Shooting event 33
-Emission Location: r: (0.111412,0,455.594)
-Emission Direction: r: (-0.292604,0.680034,0.672262)
+Emission Location: r: (0.123587,0,446.879)
+Emission Direction: r: (0.768866,-0.368913,-0.522254)
Shooting event 34
-Emission Location: r: (0.687422,0,479.733)
-Emission Direction: r: (-0.396088,-0.385378,0.833426)
+Emission Location: r: (3.25778,0,459.139)
+Emission Direction: r: (-0.162852,0.802947,-0.573372)
Shooting event 35
-Emission Location: r: (2.03523,0,461.895)
-Emission Direction: r: (0.680562,0.243193,-0.691153)
+Emission Location: r: (1.83751,0,449.101)
+Emission Direction: r: (0.0758102,-0.693193,-0.716754)
Shooting event 36
-Emission Location: r: (0.262485,0,446.563)
-Emission Direction: r: (0.00361065,0.983872,-0.178838)
+Emission Location: r: (0.958636,0,478.552)
+Emission Direction: r: (0.39995,-0.832285,0.383852)
Shooting event 37
-Emission Location: r: (2.08749,0,445.446)
-Emission Direction: r: (0.254152,-0.289371,-0.92286)
+Emission Location: r: (2.24958,0,452.032)
+Emission Direction: r: (0.33597,0.819402,0.46444)
Shooting event 38
-Emission Location: r: (0.608227,0,437.143)
-Emission Direction: r: (0.00601177,0.981411,-0.191825)
+Emission Location: r: (1.15704,0,459.309)
+Emission Direction: r: (-0.560316,0.825855,-0.0633207)
Shooting event 39
-Emission Location: r: (2.95675,0,447.118)
-Emission Direction: r: (0.0866549,-0.240135,-0.966864)
+Emission Location: r: (3.19201,0,485.075)
+Emission Direction: r: (-0.8374,-0.24608,-0.488064)
Shooting event 40
-Emission Location: r: (1.54207,0,465.747)
-Emission Direction: r: (-0.238173,0.788087,-0.56762)
+Emission Location: r: (0.367653,0,467.887)
+Emission Direction: r: (-0.607914,0.498661,-0.617881)
Shooting event 41
-Emission Location: r: (1.42181,0,478.864)
-Emission Direction: r: (-0.14289,0.538231,-0.830596)
+Emission Location: r: (0.80817,0,455.041)
+Emission Direction: r: (-0.278493,0.951864,0.128046)
Shooting event 42
-Emission Location: r: (0.985976,0,476.562)
-Emission Direction: r: (0.654554,0.614868,-0.439883)
+Emission Location: r: (1.2698,0,477.151)
+Emission Direction: r: (0.560906,0.0639898,0.825403)
Shooting event 43
-Emission Location: r: (1.53423,0,449.067)
-Emission Direction: r: (-0.228751,0.970766,0.0727041)
+Emission Location: r: (2.97055,0,479.585)
+Emission Direction: r: (-0.353393,-0.76013,0.545267)
Shooting event 44
-Emission Location: r: (2.58977,0,460.511)
-Emission Direction: r: (-0.805929,0.405708,-0.431138)
+Emission Location: r: (1.7153,0,475.557)
+Emission Direction: r: (-0.105203,0.437448,-0.893069)
Shooting event 45
-Emission Location: r: (0.988468,0,452.891)
-Emission Direction: r: (-0.540339,0.175999,0.822835)
+Emission Location: r: (0.215926,0,476.915)
+Emission Direction: r: (-0.684762,-0.336403,0.646478)
Shooting event 46
-Emission Location: r: (1.9779,0,445.692)
-Emission Direction: r: (0.10825,-0.937285,0.331329)
+Emission Location: r: (2.89802,0,470.167)
+Emission Direction: r: (-0.912579,-0.387752,-0.129804)
Shooting event 47
-Emission Location: r: (2.21777,0,447.486)
-Emission Direction: r: (-0.559198,-0.577395,0.594905)
+Emission Location: r: (0.530895,0,471.984)
+Emission Direction: r: (0.951206,-0.207415,-0.228442)
Shooting event 48
-Emission Location: r: (0.277081,0,456.663)
-Emission Direction: r: (-0.278223,0.740168,0.612162)
+Emission Location: r: (3.37936,0,441.959)
+Emission Direction: r: (-0.0253043,-0.52921,-0.848113)
Shooting event 49
-Emission Location: r: (3.65936,0,442.259)
-Emission Direction: r: (0.0776312,-0.649774,0.756153)
+Emission Location: r: (3.12412,0,461.338)
+Emission Direction: r: (-0.0673868,0.882062,-0.46629)
Shooting event 50
-Emission Location: r: (1.56893,0,464.061)
-Emission Direction: r: (0.216597,-0.873428,0.43613)
+Emission Location: r: (1.86158,0,445.54)
+Emission Direction: r: (0.820213,0.540135,-0.188426)
Graphics systems deleted.
Visualization Manager deleting...
diff --git a/examples/extended/hadronic/Hadr00/hadr00.out b/examples/extended/hadronic/Hadr00/hadr00.out
index 4945bf77c94..32f5904812c 100644
--- a/examples/extended/hadronic/Hadr00/hadr00.out
+++ b/examples/extended/hadronic/Hadr00/hadr00.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -69,132 +65,132 @@ G4PhysListFactory::GetReferencePhysList EMoption= 0
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
=======================================================================
====== Radioactive Decay Physics Parameters ========
=======================================================================
@@ -210,244 +206,244 @@ Check EM cuts disabled for atomic de-excitation 1
Use Bearden atomic level energies 0
=======================================================================
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -498,6 +494,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -603,6 +600,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -739,6 +737,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -774,7 +773,7 @@ EventAction: Event # 0 started
Run terminated.
Run Summary
Number of events processed : 10
- User=0.020000s Real=0.038238s Sys=0.000000s
+ User=0.010000s Real=0.035297s Sys=0.000000s
RunAction: End of run actions are started
HistoManager: End of run actions are started
### Fill Cross Sections for proton off Al
diff --git a/examples/extended/hadronic/Hadr01/hadr01.out b/examples/extended/hadronic/Hadr01/hadr01.out
index 84696724457..a1e35bff522 100644
--- a/examples/extended/hadronic/Hadr01/hadr01.out
+++ b/examples/extended/hadronic/Hadr01/hadr01.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -60,371 +56,371 @@ physicsList->setCut() start.
/gun/energy 3. GeV
/run/beamOn 100
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -480,6 +476,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -584,6 +581,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -718,6 +716,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -775,8 +774,8 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
100.00 10k 1 197 200 0.00 Check
### Run 0 starts.
### Run 0 start
-RunAction::BeginOfRunAction: User=0.860000s Real=1.030032s Sys=0.010000s
-NuclearData: User=0.000000s Real=0.000010s Sys=0.000000s
+RunAction::BeginOfRunAction: User=0.860000s Real=0.950844s Sys=0.010000s
+NuclearData: User=0.000000s Real=0.000006s Sys=0.000000s
EventAction: Event # 0 started
EventAction: Event # 10 started
EventAction: Event # 20 started
@@ -790,32 +789,32 @@ EventAction: Event # 90 started
Run terminated.
Run Summary
Number of events processed : 100
- User=0.090000s Real=0.137860s Sys=0.000000s
+ User=0.090000s Real=0.100393s Sys=0.010000s
RunAction: End of run actions are started
HistoManager: End of run actions are started
========================================================
Beam particle proton
Beam Energy(MeV) 3000
Number of events 100
-Average energy deposit (MeV) 63.67 RMS(MeV) 53.73
-Average number of steps 200.2
-Average number of gamma 1.19
-Average number of e- 3.71
-Average number of e+ 0.03
-Average number of neutrons 0.75
-Average number of protons 0.89
+Average energy deposit (MeV) 68.61 RMS(MeV) 65
+Average number of steps 205.5
+Average number of gamma 1.76
+Average number of e- 3.93
+Average number of e+ 0.07
+Average number of neutrons 0.84
+Average number of protons 0.94
Average number of antiprotons 0
-Average number of pi+ & pi- 0.25
-Average number of pi0 0.09
+Average number of pi+ & pi- 0.28
+Average number of pi0 0.2
Average number of kaons 0
Average number of muons 0.01
-Average number of deuterons+tritons 0.1
-Average number of He3+alpha 0.19
-Average number of ions 0.41
-Average number of forward neutrons 0.07
-Average number of reflected neutrons 0.61
-Average number of leaked neutrons 0.04
-Average number of proton leak 0.42
+Average number of deuterons+tritons 0.26
+Average number of He3+alpha 0.15
+Average number of ions 0.4
+Average number of forward neutrons 0.12
+Average number of reflected neutrons 0.67
+Average number of leaked neutrons 0.03
+Average number of proton leak 0.45
Average number of pion leak 0.24
========================================================
@@ -830,16 +829,16 @@ G4SDManager deleted.
EventManager deleted.
Units table cleared.
TransportationManager deleted.
-Total navigation history collections cleaned: 15
+Total navigation history collections cleaned: 14
================== Deleting memory pools ===================
-Pool ID '20G4NavigationLevelRep', size : 0.0211 MB
+Pool ID '20G4NavigationLevelRep', size : 0.0202 MB
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
Pool ID '17G4DynamicParticle', size : 0.00481 MB
Pool ID '7G4Event', size : 0.000961 MB
Pool ID '15G4PrimaryVertex', size : 0.000961 MB
Pool ID '17G4PrimaryParticle', size : 0.000961 MB
Pool ID '15G4HCofThisEvent', size : 0.000961 MB
-Pool ID '7G4Track', size : 0.00865 MB
+Pool ID '7G4Track', size : 0.00961 MB
Pool ID '18G4TouchableHistory', size : 0.00192 MB
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
Pool ID '10G4Fragment', size : 0.00192 MB
diff --git a/examples/extended/hadronic/Hadr01/p_w.in b/examples/extended/hadronic/Hadr01/p_w.in
new file mode 100644
index 00000000000..17cd925cfa0
--- /dev/null
+++ b/examples/extended/hadronic/Hadr01/p_w.in
@@ -0,0 +1,26 @@
+#================================================
+# Macro file for Hadr01
+# 17.12.2018 V.Ivanchneko
+#================================================
+/control/verbose 2
+/run/verbose 1
+/tracking/verbose 0
+#
+/testhadr/TargetMat G4_W
+/testhadr/TargetRadius 20 cm
+/testhadr/TargetLength 50 cm
+/testhadr/NumberDivZ 1000
+/testhadr/NumberOfBinsE 1000
+/testhadr/PrintModulo 1000
+#
+/run/setCut 2 mm
+#/testhadr/Physics PHYSLIST
+#
+/run/initialize
+/testhadr/HistoName p_w_8gev
+/testhadr/MaxEdep 8 GeV
+#
+/gun/particle proton
+/gun/energy 8. GeV
+/run/beamOn 1000
+#
diff --git a/examples/extended/hadronic/Hadr02/History b/examples/extended/hadronic/Hadr02/History
index 91bc3e6acac..7bfdf35cce9 100644
--- a/examples/extended/hadronic/Hadr02/History
+++ b/examples/extended/hadronic/Hadr02/History
@@ -14,6 +14,10 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+17-01-19 A. Ribon (exhadr02-V10-04-04)
+- Fixed bug in the energe range of the transition between FTFP and BERT
+ for the recently created CRMC_FTFP_BERT physics list.
+
24-10-18 A. Ribon (exhadr02-V10-04-03)
- Introduced CRMC (Cosmic Ray Monte Carlo) interface and created a
physics list which uses this interface for very high energy
diff --git a/examples/extended/hadronic/Hadr02/hadr02.out b/examples/extended/hadronic/Hadr02/hadr02.out
index 2b715a6bda8..f41ec83abb4 100644
--- a/examples/extended/hadronic/Hadr02/hadr02.out
+++ b/examples/extended/hadronic/Hadr02/hadr02.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -30,12 +26,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -104,371 +98,371 @@ Some /vis commands (optionally) take a string to specify colour.
/testhadr/histo/fileName s32_al_ftf
/run/beamOn 100
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -524,6 +518,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -628,6 +623,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -762,6 +758,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -805,28 +802,28 @@ Index : 1 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 100
- User=0.120000s Real=0.184568s Sys=0.010000s
+ User=0.110000s Real=0.127591s Sys=0.000000s
RunAction: End of run action is starting
HistoManager: End of run actions are started
========================================================
Beam particle S32
Beam Energy(GeV) 200
Number of events 100
-Average energy deposit (GeV) 6.192 RMS(GeV) 4.472
-Average number of steps 53.4
-Average number of gamma 0.79
+Average energy deposit (GeV) 6.578 RMS(GeV) 4.309
+Average number of steps 56.51
+Average number of gamma 0.52
Average number of e- 0
Average number of e+ 0
-Average number of neutrons 13.03
-Average number of protons 13.01
+Average number of neutrons 13.39
+Average number of protons 12.98
Average number of antiprotons 0
-Average number of pi+ & pi- 8.56
-Average number of pi0 4.43
-Average number of kaons 0.08
+Average number of pi+ & pi- 7.7
+Average number of pi0 4.16
+Average number of kaons 0.13
Average number of muons 0
-Average number of deuterons+tritons 2.14
-Average number of He3+alpha 1.35
-Average number of ions 0.64
+Average number of deuterons+tritons 2.25
+Average number of He3+alpha 1.17
+Average number of ions 0.4
========================================================
Graphics systems deleted.
diff --git a/examples/extended/hadronic/Hadr02/include/G4CRMCModel.hh b/examples/extended/hadronic/Hadr02/include/G4CRMCModel.hh
index daaf553ee85..e8de8e3f25e 100755
--- a/examples/extended/hadronic/Hadr02/include/G4CRMCModel.hh
+++ b/examples/extended/hadronic/Hadr02/include/G4CRMCModel.hh
@@ -83,8 +83,8 @@ class G4CRMCModel : public G4HadronicInteraction {
G4HadFinalState* ApplyYourself( const G4HadProjectile &theProjectile, G4Nucleus &theNucleus );
G4ParticleDefinition* GetParticleDefinition( long particle_id );
private:
- G4int operator==( G4CRMCModel& right );
- G4int operator!=( G4CRMCModel& right );
+ G4bool operator==( G4CRMCModel& right );
+ G4bool operator!=( G4CRMCModel& right );
void WelcomeMessage () const;
G4int CurrentEvent;
G4int verbose;
diff --git a/examples/extended/hadronic/Hadr02/include/G4HIJING_Model.hh b/examples/extended/hadronic/Hadr02/include/G4HIJING_Model.hh
index cbe5d8f4762..01d043d2019 100644
--- a/examples/extended/hadronic/Hadr02/include/G4HIJING_Model.hh
+++ b/examples/extended/hadronic/Hadr02/include/G4HIJING_Model.hh
@@ -88,11 +88,11 @@ public:
private:
- G4int operator==(G4HIJING_Model& right) {
+ G4bool operator==(G4HIJING_Model& right) {
return (this == &right);
}
- G4int operator!=(G4HIJING_Model& right) {
+ G4bool operator!=(G4HIJING_Model& right) {
return (this != &right);
}
diff --git a/examples/extended/hadronic/Hadr02/include/G4UrQMD1_3Model.hh b/examples/extended/hadronic/Hadr02/include/G4UrQMD1_3Model.hh
index 64b73ad59ee..7439953d1bb 100755
--- a/examples/extended/hadronic/Hadr02/include/G4UrQMD1_3Model.hh
+++ b/examples/extended/hadronic/Hadr02/include/G4UrQMD1_3Model.hh
@@ -90,8 +90,8 @@ public:
private:
- G4int operator==(G4UrQMD1_3Model& right);
- G4int operator!=(G4UrQMD1_3Model& right);
+ G4bool operator==(G4UrQMD1_3Model& right);
+ G4bool operator!=(G4UrQMD1_3Model& right);
void InitialiseDataTables();
diff --git a/examples/extended/hadronic/Hadr02/src/HadronPhysicsCRMC_FTFP_BERT.cc b/examples/extended/hadronic/Hadr02/src/HadronPhysicsCRMC_FTFP_BERT.cc
index 327ad67b799..c74eee00191 100644
--- a/examples/extended/hadronic/Hadr02/src/HadronPhysicsCRMC_FTFP_BERT.cc
+++ b/examples/extended/hadronic/Hadr02/src/HadronPhysicsCRMC_FTFP_BERT.cc
@@ -87,8 +87,8 @@ HadronPhysicsCRMC_FTFP_BERT::HadronPhysicsCRMC_FTFP_BERT( const G4String& name )
G4VPhysicsConstructor( name ) {
minCRMC = 100.0*GeV;
maxFTFP = 110.0*GeV;
- minFTFP = 12.0*GeV;
- maxBERT = 3.0*GeV;
+ minFTFP = 3.0*GeV;
+ maxBERT = 12.0*GeV;
minBERT = 0.0*GeV;
}
diff --git a/examples/extended/hadronic/Hadr03/hadr03.out b/examples/extended/hadronic/Hadr03/hadr03.out
index 32d4e964460..77e8139e08b 100644
--- a/examples/extended/hadronic/Hadr03/hadr03.out
+++ b/examples/extended/hadronic/Hadr03/hadr03.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -114,6 +110,7 @@ NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -208,6 +205,7 @@ NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -342,6 +340,7 @@ NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -381,17 +380,17 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10000
- User=0.160000s Real=0.180046s Sys=0.000000s
+ User=0.150000s Real=0.181131s Sys=0.000000s
The run is 10000 proton of 10 MeV through 10 m of Molybdenum98 (density: 10.28 g/cm3 )
Process calls frequency:
- hadElastic= 7500 protonInelastic= 2500
+ hadElastic= 7555 protonInelastic= 2445
- MeanFreePath: 5.3372 cm +- 5.3863 cm massic: 54.866 g/cm2
- CrossSection: 0.18736 cm^-1 massic: 1.8226 mm2/g
- crossSection per atom: 2.9631 barn
+ MeanFreePath: 5.3564 cm +- 5.3244 cm massic: 55.064 g/cm2
+ CrossSection: 0.18669 cm^-1 massic: 1.8161 mm2/g
+ crossSection per atom: 2.9525 barn
Verification: crossSections from G4HadronicProcessStore:
hadElastic= 1.366 mm2/g 2.2207 barn
@@ -400,30 +399,35 @@ Run Summary
List of nuclear reactions:
- proton + Mo98 --> N gamma or e- + alpha + Nb95: 14 Q = 3.5405 MeV
- proton + Mo98 --> N gamma or e- + alpha + Nb95[235.690]: 4 Q = 3.3048 MeV
- proton + Mo98 --> N gamma or e- + neutron + Tc98: 2466 Q = -2.4725 MeV
- proton + Mo98 --> N gamma or e- + proton + Mo98: 16 Q = -4.9191e-06 eV
- proton + Mo98 --> proton + Mo98: 7500 Q = 2.1865e-06 eV
+ proton + Mo98 --> N gamma or e- + Tc99[142.683]: 1 Q = 6.3518 MeV
+ proton + Mo98 --> N gamma or e- + alpha + Nb95: 18 Q = 3.5405 MeV
+ proton + Mo98 --> N gamma or e- + neutron + Tc98: 2412 Q = -2.4725 MeV
+ proton + Mo98 --> N gamma or e- + proton + Mo98: 12 Q = 0.026235 eV
+ proton + Mo98 --> proton + Mo98: 7555 Q = 2.085e-06 eV
+ proton + Mo98 --> proton + Mo98[132.572]: 1 Q = -132.57 keV
+ proton + Mo98 --> proton + Mo98[249.800]: 1 Q = -249.8 keV
number of gamma or e- (ic): N = 1 --> 10
List of generated particles:
- Mo98: 7516 Emean = 31.651 keV ( 1.1542 eV --> 404.68 keV)
- Nb95: 14 Emean = 414.57 keV ( 240.1 keV --> 651.67 keV)
- Nb95[235.690]: 4 Emean = 639.62 keV ( 412.49 keV --> 865.21 keV)
- Tc98: 2466 Emean = 120.26 keV ( 12.311 keV --> 294.56 keV)
- alpha: 18 Emean = 8.9744 MeV ( 7.7547 MeV --> 10.253 MeV)
- gamma: 16670 Emean = 857.2 keV ( 7.8619 keV --> 6.7209 MeV)
- neutron: 2466 Emean = 1.6564 MeV ( 17.366 keV --> 6.8875 MeV)
- proton: 16 Emean = 7.7045 MeV ( 6.3869 MeV --> 9.8142 MeV)
+ Mo98: 7567 Emean = 32.204 keV ( 1.9446 eV --> 401.83 keV)
+ Mo98[132.572]: 1 Emean = 53.223 keV ( 53.223 keV --> 53.223 keV)
+ Mo98[249.800]: 1 Emean = 6.0138 keV ( 6.0138 keV --> 6.0138 keV)
+ Nb95: 18 Emean = 469.55 keV ( 147.04 keV --> 860.83 keV)
+ Tc98: 2412 Emean = 118.81 keV ( 16.382 keV --> 281.05 keV)
+ Tc99[142.683]: 1 Emean = 112.39 keV ( 112.39 keV --> 112.39 keV)
+ alpha: 18 Emean = 8.7586 MeV ( 7.8597 MeV --> 10.94 MeV)
+ e-: 660 Emean = 141.77 keV ( 21.509 keV --> 3.4907 MeV)
+ gamma: 16321 Emean = 851.31 keV ( 21.774 keV --> 12.205 MeV)
+ neutron: 2412 Emean = 1.6584 MeV ( 27.022 keV --> 6.3366 MeV)
+ proton: 14 Emean = 8.1192 MeV ( 6.3869 MeV --> 9.8142 MeV)
- Momentum balance: Pmean = 0.0096763 eV ( 1.3198e-07 eV --> 1.0298 eV )
+ Momentum balance: Pmean = 53.446 eV ( 1.1044e-06 eV --> 2.2441 keV)
--------- Ranecu engine status ---------
Initial seed (index) = 0
- Current couple of seeds = 2051416086, 1483958570
+ Current couple of seeds = 1669577790, 1284520743
----------------------------------------
G4 kernel has come to Quit state.
================== Deleting memory pools ===================
diff --git a/examples/extended/hadronic/Hadr04/hadr04.out b/examples/extended/hadronic/Hadr04/hadr04.out
index 105cf3afabf..6c88a2f30ca 100644
--- a/examples/extended/hadronic/Hadr04/hadr04.out
+++ b/examples/extended/hadronic/Hadr04/hadr04.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -169,7 +165,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 1000
- User=14.780000s Real=15.115797s Sys=0.000000s
+ User=13.410000s Real=13.476268s Sys=0.010000s
The run is 1000 neutron of 2 MeV through 50 cm of Water_ts (density: 1 g/cm3 )
diff --git a/examples/extended/hadronic/Hadr06/hadr06.out b/examples/extended/hadronic/Hadr06/hadr06.out
index 5229a36eb6d..dc831dcf407 100644
--- a/examples/extended/hadronic/Hadr06/hadr06.out
+++ b/examples/extended/hadronic/Hadr06/hadr06.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -128,6 +124,7 @@ NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /
Process: hadElastic
Model: hElasticLHEP: 0 meV/n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 meV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 meV ---> 100 TeV
Process: alphaInelastic
@@ -232,6 +229,7 @@ NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /
Process: hadElastic
Model: hElasticLHEP: 0 meV/n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 meV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 meV ---> 100 TeV
Process: dInelastic
@@ -375,6 +373,7 @@ NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /
Process: hadElastic
Model: hElasticLHEP: 0 meV/n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 meV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 meV ---> 100 TeV
Process: tInelastic
@@ -421,48 +420,47 @@ Index : 1 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10000
- User=8.330000s Real=8.855039s Sys=0.000000s
+ User=7.810000s Real=7.898977s Sys=0.000000s
The run is 10000 neutron of 14.1 MeV through 30 cm of Li7 (density: 1.85 g/cm3 )
Process calls frequency :
- RadioactiveDecay= 197037 Transportation= 72751 annihil= 189
- compt= 394681 conv= 189 dInelastic= 1
- eIoni= 404406 hIoni= 434 hadElastic= 180715
- ionIoni= 197368 msc= 179 nCapture= 27
- neutronInelastic= 16441 phot= 20615
+ RadioactiveDecay= 197161 Transportation= 72738 annihil= 196
+ compt= 397429 conv= 196 dInelastic= 1
+ eIoni= 407109 hIoni= 417 hadElastic= 180889
+ ionIoni= 197474 msc= 160 nCapture= 28
+ neutronInelastic= 16368 phot= 20580
List of generated particles:
- Be8[3030.000]: 27 Emean = 7.3283 keV ( 717.91 eV --> 12.121 keV)
- He6: 130 Emean = 2.3179 MeV ( 123.86 keV --> 4.9118 MeV)
- Li6: 682 Emean = 1.5846 MeV ( 34.84 eV --> 7.9411 MeV)
- Li7: 196171 Emean = 331.08 keV ( 0.82127 meV --> 6.2253 MeV)
- Li8: 27 Emean = 879.22 eV ( 35.244 eV --> 11.817 keV)
- alpha: 358 Emean = 1.2077 MeV ( 103.11 keV --> 3.4994 MeV)
- anti_nu_e: 157 Emean = 2.6568 MeV ( 564.24 keV --> 9.9247 MeV)
- deuteron: 433 Emean = 4.6875 MeV ( 133.23 keV --> 21.974 MeV)
- e+: 189 Emean = 1.6216 MeV ( 45.406 keV --> 3.9626 MeV)
- e-: 404371 Emean = 87.423 keV ( 100 eV --> 10.74 MeV)
- gamma: 46172 Emean = 1.1982 MeV ( 1 keV --> 5.8828 MeV)
- neutron: 17169 Emean = 3.414 MeV ( 4.4319 keV --> 13.636 MeV)
- proton: 2 Emean = 2.6881 MeV ( 1.0116 MeV --> 4.3645 MeV)
-
- Mean energy deposit per event = 10.425 MeV rms = 3.4695 MeV
- Mean energy flow per event = 3.1342 MeV rms = 3.2695 MeV
+ Be8[3030.000]: 28 Emean = 7.489 keV ( 717.91 eV --> 11.111 keV)
+ He6: 132 Emean = 2.3745 MeV ( 61.939 keV --> 4.9118 MeV)
+ Li6: 684 Emean = 1.6347 MeV ( 19.902 eV --> 7.9411 MeV)
+ Li7: 196289 Emean = 330.63 keV ( 1.6453 meV --> 6.2253 MeV)
+ Li8: 28 Emean = 955.12 eV ( 35.244 eV --> 12.464 keV)
+ alpha: 341 Emean = 1.209 MeV ( 109.43 keV --> 3.6798 MeV)
+ anti_nu_e: 160 Emean = 2.7636 MeV ( 564.24 keV --> 10.925 MeV)
+ deuteron: 418 Emean = 4.6096 MeV ( 46.759 keV --> 23.194 MeV)
+ e+: 196 Emean = 1.4826 MeV ( 45.406 keV --> 3.9394 MeV)
+ e-: 407058 Emean = 87.278 keV ( 100 eV --> 10.74 MeV)
+ gamma: 46170 Emean = 1.2038 MeV ( 1 keV --> 5.883 MeV)
+ neutron: 17073 Emean = 3.392 MeV ( 4.914 keV --> 13.636 MeV)
+
+ Mean energy deposit per event = 10.429 MeV rms = 3.4625 MeV
+ Mean energy flow per event = 3.1397 MeV rms = 3.2861 MeV
List of particles emerging from the absorber :
- anti_nu_e: 157 Emean = 2.6568 MeV ( 564.24 keV --> 9.9247 MeV) Eflow/event = 41.711 keV
- e-: 144 Emean = 1.3442 MeV ( 50.397 keV --> 5.4777 MeV) Eflow/event = 19.356 keV
- gamma: 25368 Emean = 782.8 keV ( 4.2563 keV --> 5.8828 MeV) Eflow/event = 1.9858 MeV
- neutron: 10701 Emean = 1.0161 MeV ( 1.7324 meV --> 14.1 MeV) Eflow/event = 1.0873 MeV
+ anti_nu_e: 160 Emean = 2.7636 MeV ( 564.24 keV --> 10.925 MeV) Eflow/event = 44.217 keV
+ e-: 135 Emean = 1.4007 MeV ( 31.114 keV --> 5.4777 MeV) Eflow/event = 18.91 keV
+ gamma: 25394 Emean = 785.36 keV ( 3.5118 keV --> 5.88 MeV) Eflow/event = 1.9943 MeV
+ neutron: 10677 Emean = 1.0136 MeV ( 15.299 meV --> 14.1 MeV) Eflow/event = 1.0822 MeV
--------- Ranecu engine status ---------
Initial seed (index) = 0
- Current couple of seeds = 100410245, 1107236359
+ Current couple of seeds = 223169845, 1111537642
----------------------------------------
G4 kernel has come to Quit state.
================== Deleting memory pools ===================
Number of memory pools allocated: 11 of which, static: 0
-Dynamic pools deleted: 11 / Total memory freed: 0.064 MB
+Dynamic pools deleted: 11 / Total memory freed: 0.066 MB
============================================================
RunManagerKernel is deleted. Good bye :)
diff --git a/examples/extended/hadronic/Hadr07/hadr07.out b/examples/extended/hadronic/Hadr07/hadr07.out
index a69914b03cb..3b743cf2b2a 100644
--- a/examples/extended/hadronic/Hadr07/hadr07.out
+++ b/examples/extended/hadronic/Hadr07/hadr07.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -143,6 +139,7 @@ NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /
Process: hadElastic
Model: hElasticLHEP: 0 meV/n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 meV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 meV ---> 100 TeV
Process: alphaInelastic
@@ -237,6 +234,7 @@ NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /
Process: hadElastic
Model: hElasticLHEP: 0 meV/n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 meV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 meV ---> 100 TeV
Process: dInelastic
@@ -365,6 +363,7 @@ NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /
Process: hadElastic
Model: hElasticLHEP: 0 meV/n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 meV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 meV ---> 100 TeV
Process: tInelastic
@@ -411,7 +410,7 @@ Index : 1 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10000
- User=5.200000s Real=5.521184s Sys=0.000000s
+ User=4.820000s Real=4.841042s Sys=0.000000s
======================== run summary =====================
@@ -419,45 +418,44 @@ Run Summary
1 30 cm of Li7 (density: 1.85 g/cm3 )
Process calls frequency :
- RadioactiveDecay= 99911 Transportation= 89481 annihil= 125
- compt= 127998 conv= 126 dInelastic= 2
- eBrem= 1044 eIoni= 139819 hIoni= 451
- hadElastic= 85944 ionIoni= 100204 msc= 410
- nCapture= 1 neutronInelastic= 14093 phot= 12727
-
+ Decay= 1 RadioactiveDecay= 100080 Transportation= 89870
+ annihil= 145 compt= 130598 conv= 146
+ dInelastic= 2 eBrem= 1076 eIoni= 142600
+ hIoni= 442 hadElastic= 86107 ionIoni= 100375
+ msc= 378 neutronInelastic= 14115 phot= 12877
+ photonNuclear= 1
- Edep in absorber 1 = 8.04 MeV (16.3 keV-->37.5 MeV)
+ Edep in absorber 1 = 8.07 MeV (16.3 keV-->37.5 MeV)
List of generated particles in absorber 1:
- Be8[3030.000]: 1 Emean = 6.06 keV ( 6.06 keV --> 6.06 keV)
- He6: 162 Emean = 2.29 MeV ( 93.8 keV --> 4.84 MeV)
- Li6: 730 Emean = 1.52 MeV ( 37 eV --> 7.16 MeV)
- Li7: 99017 Emean = 559 keV ( 115 meV --> 6.22 MeV)
- Li8: 1 Emean = 12.1 keV ( 12.1 keV --> 12.1 keV)
- alpha: 294 Emean = 1.23 MeV ( 47 keV --> 6.34 MeV)
- anti_nu_e: 163 Emean = 1.93 MeV ( 353 keV --> 9.86 MeV)
- deuteron: 452 Emean = 4.61 MeV ( 30.9 keV --> 31.2 MeV)
- e+: 126 Emean = 1.36 MeV ( 102 keV --> 4.25 MeV)
- e-: 139243 Emean = 155 keV ( 100 eV --> 5.62 MeV)
- gamma: 41519 Emean = 1.24 MeV ( 1 keV --> 5.88 MeV)
- neutron: 14790 Emean = 3.61 MeV ( 2.5 keV --> 13.6 MeV)
+ He6: 150 Emean = 2.31 MeV ( 93.8 keV --> 4.83 MeV)
+ Li6: 697 Emean = 1.55 MeV ( 37 eV --> 8.21 MeV)
+ Li7: 99233 Emean = 559 keV ( 115 meV --> 6.21 MeV)
+ alpha: 295 Emean = 1.23 MeV ( 47 keV --> 6.34 MeV)
+ anti_nu_e: 150 Emean = 1.86 MeV ( 298 keV --> 3.27 MeV)
+ deuteron: 442 Emean = 4.79 MeV ( 30.9 keV --> 31.2 MeV)
+ e+: 146 Emean = 1.39 MeV ( 102 keV --> 4.25 MeV)
+ e-: 141964 Emean = 153 keV ( 100 eV --> 5.45 MeV)
+ gamma: 41919 Emean = 1.24 MeV ( 1 keV --> 5.88 MeV)
+ neutron: 14805 Emean = 3.61 MeV ( 2.5 keV --> 13.6 MeV)
+ triton: 1 Emean = 1.81 MeV ( 1.81 MeV --> 1.81 MeV)
List of particles emerging from absorbers :
- anti_nu_e: 163 Emean = 1.93 MeV ( 353 keV --> 9.86 MeV)
+ anti_nu_e: 150 Emean = 1.86 MeV ( 298 keV --> 3.27 MeV)
e+: 1 Emean = 3.44 MeV ( 3.44 MeV --> 3.44 MeV)
- e-: 200 Emean = 1.31 MeV ( 19.1 keV --> 4.76 MeV)
- gamma: 28666 Emean = 1.05 MeV ( 2.13 keV --> 5.88 MeV)
- neutron: 10696 Emean = 2.25 MeV ( 13.2 eV --> 14.1 MeV)
+ e-: 188 Emean = 1.39 MeV ( 19.1 keV --> 4.76 MeV)
+ gamma: 28895 Emean = 1.05 MeV ( 2.13 keV --> 5.88 MeV)
+ neutron: 10690 Emean = 2.21 MeV ( 13.2 eV --> 14.1 MeV)
- Nb of events with primary absorbed = 87 %, transmit = 6.8 %, reflected = 6.6 %
+ Nb of events with primary absorbed = 87 %, transmit = 6.6 %, reflected = 6.4 %
--------- Ranecu engine status ---------
Initial seed (index) = 0
- Current couple of seeds = 336367018, 1864199277
+ Current couple of seeds = 1941603550, 1778528672
----------------------------------------
G4 kernel has come to Quit state.
================== Deleting memory pools ===================
Number of memory pools allocated: 11 of which, static: 0
-Dynamic pools deleted: 11 / Total memory freed: 0.041 MB
+Dynamic pools deleted: 11 / Total memory freed: 0.043 MB
============================================================
RunManagerKernel is deleted. Good bye :)
diff --git a/examples/extended/hadronic/History b/examples/extended/hadronic/History
index 320e425644b..c92a579824d 100644
--- a/examples/extended/hadronic/History
+++ b/examples/extended/hadronic/History
@@ -14,6 +14,9 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+31-01-19 I. Hrivnacova (exHadronic-V10-04-00)
+- Merged GitHub PR #4: all Boolean operators now return G4bool.
+
29-11-17 I. Hrivnacova (exHadronic-V10-03-00)
- Removed Hadr05 (replaced with physicslists/genericPL)
diff --git a/examples/extended/hadronic/NeutronSource/NeutronSource.out b/examples/extended/hadronic/NeutronSource/NeutronSource.out
index 2d2863647a1..11f9143fed9 100644
--- a/examples/extended/hadronic/NeutronSource/NeutronSource.out
+++ b/examples/extended/hadronic/NeutronSource/NeutronSource.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -159,6 +155,7 @@ NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /
Process: hadElastic
Model: hElasticLHEP: 0 meV/n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 meV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 meV ---> 100 TeV
Process: alphaInelastic
@@ -253,6 +250,7 @@ NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /
Process: hadElastic
Model: hElasticLHEP: 0 meV/n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 meV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 meV ---> 100 TeV
Process: dInelastic
@@ -387,6 +385,7 @@ NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /
Process: hadElastic
Model: hElasticLHEP: 0 meV/n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 meV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 meV ---> 100 TeV
Process: tInelastic
@@ -440,200 +439,201 @@ Index : 2 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10000
- User=3.580000s Real=4.234010s Sys=0.010000s
+ User=7.510000s Real=8.031589s Sys=0.020000s
The run is 10000 Am241 of 0 meV within BeO (D = 3 cm L = 6 cm )
Process calls frequency :
- RadioactiveDecay= 222724 Transportation= 248575 alphaInelastic= 23
- compt= 73264 eIoni= 180796 ionIoni= 198984
- msc= 15434 phot= 68840
+ RadioactiveDecay= 235316 Transportation= 188791 alphaInelastic= 24
+ compt= 34575 eIoni= 616626 ionIoni= 198699
+ msc= 15139 phot= 49246
List of generated particles:
- Ac225: 9997 Emean = 140.67 meV ( 2.1246 meV --> 1.1421 eV )
- Ac225[155.650]: 1 Emean = 451.66 meV ( 451.66 meV --> 451.66 meV)
- Ac225[29.940]: 1 Emean = 37.719 meV ( 37.719 meV --> 37.719 meV)
- Ac225[40.090]: 6966 Emean = 377.68 meV ( 0.087311 meV --> 981.32 meV)
- At217: 9989 Emean = 116.36 keV ( 106.18 keV --> 117.05 keV)
- At217[100.250]: 154 Emean = 114.63 keV ( 109.43 keV --> 115.23 keV)
- At217[218.120]: 1551 Emean = 112.97 keV ( 106.26 keV --> 113.09 keV)
- At217[272.070]: 23 Emean = 111.66 keV ( 110.29 keV --> 112.11 keV)
- At217[310.300]: 1 Emean = 111.42 keV ( 111.42 keV --> 111.42 keV)
- At217[368.230]: 57 Emean = 110.3 keV ( 106.43 keV --> 110.37 keV)
- At217[382.340]: 4 Emean = 110.11 keV ( 110.11 keV --> 110.11 keV)
- At217[410.640]: 21 Emean = 109.6 keV ( 109.6 keV --> 109.6 keV)
- At217[424.350]: 2 Emean = 109.35 keV ( 109.35 keV --> 109.35 keV)
- At217[577.000]: 8 Emean = 106.58 keV ( 106.58 keV --> 106.58 keV)
- Be9: 4 Emean = 778.42 keV ( 23.82 keV --> 2.0179 MeV)
- Bi209: 10000 Emean = 1.2333 eV ( 0.81491 meV --> 2.7343 eV )
- Bi213: 9989 Emean = 132.94 keV ( 122.17 keV --> 132.95 keV)
- Bi213[257.870]: 5 Emean = 125.79 keV ( 122.09 keV --> 128.18 keV)
- Bi213[593.180]: 4 Emean = 121.99 keV ( 121.99 keV --> 121.99 keV)
- C12: 4 Emean = 745.8 keV ( 98.779 keV --> 1.2711 MeV)
- Fr221: 10000 Emean = 104.85 keV ( 28.551 meV --> 105.65 keV)
- Fr221[100.890]: 149 Emean = 103.21 keV ( 98.785 keV --> 103.85 keV)
- Fr221[108.410]: 487 Emean = 102.45 keV ( 84.285 meV --> 103.72 keV)
- Fr221[145.910]: 5 Emean = 99.849 keV ( 95.54 keV --> 103.05 keV)
- Fr221[150.070]: 128 Emean = 102.82 keV ( 98.726 keV --> 102.97 keV)
- Fr221[195.770]: 415 Emean = 102.09 keV ( 94.191 keV --> 102.16 keV)
- Fr221[224.640]: 98 Emean = 101.55 keV ( 98.613 keV --> 101.65 keV)
- Fr221[234.510]: 5 Emean = 101.47 keV ( 101.47 keV --> 101.47 keV)
- Fr221[253.560]: 137 Emean = 101.13 keV ( 101.13 keV --> 101.13 keV)
- Fr221[26.000]: 113 Emean = 103.29 keV ( 95.368 keV --> 105.18 keV)
- Fr221[279.210]: 11 Emean = 100.67 keV ( 100.67 keV --> 100.67 keV)
- Fr221[288.080]: 3 Emean = 100.52 keV ( 100.52 keV --> 100.52 keV)
- Fr221[294.660]: 5 Emean = 40.161 keV ( 964.15 meV --> 100.4 keV)
- Fr221[36.640]: 2318 Emean = 104.55 keV ( 94.47 keV --> 105 keV)
- Fr221[38.540]: 1062 Emean = 104.37 keV ( 98.271 keV --> 104.96 keV)
+ Ac225: 9999 Emean = 168.91 meV ( 2.3574 meV --> 1.1498 eV )
+ Ac225[120.800]: 3 Emean = 302.21 meV ( 140.4 meV --> 388.13 meV)
+ Ac225[40.090]: 6891 Emean = 375.94 meV ( 1.688 meV --> 992.24 meV)
+ At217: 9990 Emean = 116.36 keV ( 106.33 keV --> 117.05 keV)
+ At217[100.250]: 139 Emean = 114.42 keV ( 106.68 keV --> 115.23 keV)
+ At217[218.120]: 1555 Emean = 112.96 keV ( 106.23 keV --> 113.09 keV)
+ At217[272.070]: 25 Emean = 110.98 keV ( 106.55 keV --> 112.11 keV)
+ At217[368.230]: 65 Emean = 110.19 keV ( 106.4 keV --> 110.37 keV)
+ At217[382.340]: 13 Emean = 110.11 keV ( 110.11 keV --> 110.11 keV)
+ At217[410.640]: 17 Emean = 109.6 keV ( 109.6 keV --> 109.6 keV)
+ At217[424.350]: 3 Emean = 109.35 keV ( 109.35 keV --> 109.35 keV)
+ At217[537.500]: 2 Emean = 107.3 keV ( 107.3 keV --> 107.3 keV)
+ At217[568.500]: 1 Emean = 106.73 keV ( 106.73 keV --> 106.73 keV)
+ At217[577.000]: 6 Emean = 106.58 keV ( 106.58 keV --> 106.58 keV)
+ Be9: 6 Emean = 1.4568 MeV ( 110.82 keV --> 3.9837 MeV)
+ Bi209: 10000 Emean = 1.2239 eV ( 3.1723 meV --> 2.7291 eV )
+ Bi213: 9990 Emean = 132.94 keV ( 114.04 keV --> 132.95 keV)
+ Bi213[1050.000]: 1 Emean = 113.55 keV ( 113.55 keV --> 113.55 keV)
+ Bi213[257.870]: 4 Emean = 126.67 keV ( 122.14 keV --> 128.18 keV)
+ Bi213[593.180]: 3 Emean = 121.99 keV ( 121.99 keV --> 121.99 keV)
+ Bi213[758.900]: 2 Emean = 116.09 keV ( 113.26 keV --> 118.92 keV)
+ C12: 6 Emean = 1.4507 MeV ( 696.6 keV --> 3.9777 MeV)
+ Fr221: 10000 Emean = 104.86 keV ( 47.352 meV --> 105.65 keV)
+ Fr221[100.890]: 178 Emean = 102.87 keV ( 94.47 keV --> 103.85 keV)
+ Fr221[108.410]: 432 Emean = 103.06 keV ( 98.506 keV --> 103.72 keV)
+ Fr221[145.910]: 8 Emean = 101.66 keV ( 98.789 keV --> 103.05 keV)
+ Fr221[150.070]: 140 Emean = 102.75 keV ( 98.517 keV --> 102.97 keV)
+ Fr221[195.770]: 433 Emean = 102.13 keV ( 98.472 keV --> 102.16 keV)
+ Fr221[224.640]: 117 Emean = 101.5 keV ( 98.505 keV --> 101.65 keV)
+ Fr221[234.510]: 3 Emean = 101.47 keV ( 101.47 keV --> 101.47 keV)
+ Fr221[253.560]: 134 Emean = 100.36 keV ( 662.34 meV --> 101.13 keV)
+ Fr221[26.000]: 296 Emean = 102.82 keV ( 95.476 keV --> 105.18 keV)
+ Fr221[272.600]: 5 Emean = 100.79 keV ( 100.79 keV --> 100.79 keV)
+ Fr221[279.210]: 14 Emean = 100.53 keV ( 98.651 keV --> 100.67 keV)
+ Fr221[288.080]: 6 Emean = 98.83 keV ( 98.444 keV --> 100.52 keV)
+ Fr221[294.660]: 2 Emean = 100.4 keV ( 100.4 keV --> 100.4 keV)
+ Fr221[36.640]: 2573 Emean = 104.37 keV ( 9.6334 meV --> 105 keV)
+ Fr221[38.540]: 1085 Emean = 104.47 keV ( 98.24 keV --> 104.96 keV)
Fr221[393.350]: 15 Emean = 98.641 keV ( 98.641 keV --> 98.641 keV)
- Fr221[400.750]: 5 Emean = 98.509 keV ( 98.509 keV --> 98.509 keV)
- Fr221[517.810]: 7 Emean = 96.424 keV ( 96.424 keV --> 96.424 keV)
- Fr221[552.050]: 24 Emean = 95.814 keV ( 95.814 keV --> 95.814 keV)
- Fr221[570.810]: 1 Emean = 95.48 keV ( 95.48 keV --> 95.48 keV)
+ Fr221[400.750]: 6 Emean = 98.509 keV ( 98.509 keV --> 98.509 keV)
+ Fr221[517.810]: 4 Emean = 96.424 keV ( 96.424 keV --> 96.424 keV)
+ Fr221[552.050]: 33 Emean = 95.814 keV ( 95.814 keV --> 95.814 keV)
Fr221[602.200]: 2 Emean = 94.921 keV ( 94.921 keV --> 94.921 keV)
- Fr221[630.710]: 1 Emean = 94.413 keV ( 94.413 keV --> 94.413 keV)
- Fr221[824.200]: 1 Emean = 90.967 keV ( 90.967 keV --> 90.967 keV)
- Fr221[99.620]: 892 Emean = 103.63 keV ( 95.46 keV --> 103.87 keV)
- Fr221[99.850]: 144 Emean = 103.75 keV ( 98.669 keV --> 103.87 keV)
- Ne20: 4 Emean = 976.49 keV ( 521.64 keV --> 1.39 MeV)
- Np237: 10000 Emean = 92.567 keV ( 89.865 keV --> 93.678 keV)
- Np237[102.959]: 1375 Emean = 91.911 keV ( 89.889 keV --> 91.966 keV)
- Np237[129.990]: 1 Emean = 91.516 keV ( 91.516 keV --> 91.516 keV)
- Np237[158.497]: 194 Emean = 91.042 keV ( 91.042 keV --> 91.042 keV)
- Np237[225.957]: 1 Emean = 89.92 keV ( 89.92 keV --> 89.92 keV)
- Np237[33.196]: 724 Emean = 92.512 keV ( 90.951 keV --> 93.126 keV)
- Np237[59.541]: 9591 Emean = 92.586 keV ( 89.855 keV --> 92.688 keV)
- Np237[75.899]: 1 Emean = 92.416 keV ( 92.416 keV --> 92.416 keV)
- Pa233: 10000 Emean = 81.95 keV ( 77.609 keV --> 83.776 keV)
- Pa233[103.635]: 3314 Emean = 81.889 keV ( 77.577 keV --> 82.024 keV)
- Pa233[109.070]: 944 Emean = 81.882 keV ( 77.579 keV --> 81.932 keV)
+ Fr221[630.710]: 2 Emean = 94.413 keV ( 94.413 keV --> 94.413 keV)
+ Fr221[637.720]: 2 Emean = 93.638 keV ( 92.988 keV --> 94.288 keV)
+ Fr221[712.000]: 1 Emean = 92.965 keV ( 92.965 keV --> 92.965 keV)
+ Fr221[99.620]: 893 Emean = 103.39 keV ( 57.567 meV --> 103.87 keV)
+ Fr221[99.850]: 163 Emean = 103.55 keV ( 96.609 keV --> 103.87 keV)
+ Ne20: 2 Emean = 880.22 keV ( 719.18 keV --> 1.0413 MeV)
+ Np237: 10000 Emean = 92.567 keV ( 90.702 keV --> 93.678 keV)
+ Np237[102.959]: 1479 Emean = 91.886 keV ( 90.832 keV --> 91.966 keV)
+ Np237[129.990]: 2 Emean = 91.516 keV ( 91.516 keV --> 91.516 keV)
+ Np237[158.497]: 165 Emean = 91.042 keV ( 91.042 keV --> 91.042 keV)
+ Np237[33.196]: 2236 Emean = 92.568 keV ( 90.774 keV --> 93.126 keV)
+ Np237[59.541]: 9936 Emean = 92.562 keV ( 90.759 keV --> 92.688 keV)
+ Np237[75.899]: 3 Emean = 92.416 keV ( 92.416 keV --> 92.416 keV)
+ Pa233: 10000 Emean = 81.959 keV ( 77.778 keV --> 83.776 keV)
+ Pa233[103.635]: 3343 Emean = 81.894 keV ( 77.709 keV --> 82.024 keV)
+ Pa233[109.070]: 934 Emean = 81.871 keV ( 77.669 keV --> 81.932 keV)
Pa233[133.200]: 1 Emean = 81.524 keV ( 81.524 keV --> 81.524 keV)
- Pa233[163.510]: 113 Emean = 81.011 keV ( 81.011 keV --> 81.011 keV)
- Pa233[169.166]: 112 Emean = 80.916 keV ( 80.916 keV --> 80.916 keV)
- Pa233[179.000]: 58 Emean = 80.749 keV ( 80.749 keV --> 80.749 keV)
- Pa233[201.634]: 2 Emean = 79.74 keV ( 79.726 keV --> 79.755 keV)
- Pa233[212.341]: 349 Emean = 80.186 keV ( 80.186 keV --> 80.186 keV)
- Pa233[218.000]: 66 Emean = 80.09 keV ( 80.09 keV --> 80.09 keV)
- Pa233[237.890]: 642 Emean = 79.75 keV ( 78.655 keV --> 79.754 keV)
- Pa233[257.183]: 1 Emean = 79.428 keV ( 79.428 keV --> 79.428 keV)
- Pa233[279.720]: 39 Emean = 79.047 keV ( 79.047 keV --> 79.047 keV)
- Pa233[283.000]: 9 Emean = 78.991 keV ( 78.991 keV --> 78.991 keV)
- Pa233[300.500]: 30 Emean = 78.695 keV ( 78.695 keV --> 78.695 keV)
+ Pa233[163.510]: 119 Emean = 81.011 keV ( 81.011 keV --> 81.011 keV)
+ Pa233[169.166]: 116 Emean = 80.916 keV ( 80.916 keV --> 80.916 keV)
+ Pa233[179.000]: 69 Emean = 80.749 keV ( 80.749 keV --> 80.749 keV)
+ Pa233[201.634]: 119 Emean = 79.712 keV ( 78.594 keV --> 79.915 keV)
+ Pa233[212.341]: 326 Emean = 80.186 keV ( 80.186 keV --> 80.186 keV)
+ Pa233[218.000]: 52 Emean = 80.09 keV ( 80.09 keV --> 80.09 keV)
+ Pa233[237.890]: 646 Emean = 79.721 keV ( 78.524 keV --> 79.754 keV)
+ Pa233[257.183]: 2 Emean = 79.428 keV ( 79.428 keV --> 79.428 keV)
+ Pa233[279.720]: 43 Emean = 79.047 keV ( 79.047 keV --> 79.047 keV)
+ Pa233[283.000]: 8 Emean = 78.991 keV ( 78.991 keV --> 78.991 keV)
+ Pa233[300.500]: 34 Emean = 78.695 keV ( 78.695 keV --> 78.695 keV)
Pa233[303.590]: 3 Emean = 78.643 keV ( 78.643 keV --> 78.643 keV)
Pa233[365.840]: 1 Emean = 77.591 keV ( 77.591 keV --> 77.591 keV)
- Pa233[57.100]: 6486 Emean = 81.996 keV ( 77.593 keV --> 82.81 keV)
- Pa233[6.671]: 304 Emean = 81.565 keV ( 78.569 keV --> 83.663 keV)
- Pa233[70.544]: 273 Emean = 82.086 keV ( 78.556 keV --> 82.583 keV)
- Pa233[86.468]: 4979 Emean = 82.165 keV ( 78.542 keV --> 82.314 keV)
- Pa233[94.646]: 474 Emean = 79.873 keV ( 78.681 keV --> 80.976 keV)
- Pb209: 10000 Emean = 157.13 keV ( 5.2021 eV --> 160.59 keV)
- Pb209[1423.000]: 2 Emean = 6.3014 eV ( 5.6348 eV --> 6.9681 eV )
- Pb209[1567.090]: 213 Emean = 555.82 meV ( 555.82 meV --> 555.82 meV)
- Pb209[2032.220]: 213 Emean = 35.303 meV ( 35.303 meV --> 35.303 meV)
- Pb209[2149.430]: 213 Emean = 7.3528 eV ( 399.77 meV --> 12.841 eV )
- Pb209[2904.000]: 1 Emean = 3.5845 eV ( 3.5845 eV --> 3.5845 eV )
- Pb209[3069.920]: 1 Emean = 3.7361 eV ( 3.7361 eV --> 3.7361 eV )
- Po213: 9785 Emean = 166.94 eV ( 62.777 meV --> 145.62 keV)
- Po213[1003.553]: 10 Emean = 574.03 meV ( 84.372 meV --> 1.1899 eV )
- Po213[1045.670]: 1 Emean = 333.97 meV ( 333.97 meV --> 333.97 meV)
- Po213[1100.167]: 49 Emean = 396.89 meV ( 16.269 meV --> 919.42 meV)
- Po213[1119.291]: 12 Emean = 353.52 meV ( 41.415 meV --> 921.43 meV)
- Po213[292.800]: 51 Emean = 2.512 eV ( 159.43 meV --> 5.7939 eV )
- Po213[440.450]: 3108 Emean = 2.4175 eV ( 10.681 meV --> 4.9061 eV )
- Po213[600.730]: 2 Emean = 2.3325 eV ( 1.5247 eV --> 3.1402 eV )
- Ra221: 11 Emean = 446.78 meV ( 164.99 meV --> 732.49 meV)
- Ra225: 10000 Emean = 95.659 keV ( 1.5425 meV --> 343.7 keV)
- Ra225[100.500]: 1415 Emean = 96.14 keV ( 1.5004 keV --> 335.02 keV)
- Ra225[111.600]: 1827 Emean = 95.376 keV ( 1.5006 keV --> 338.76 keV)
- Ra225[120.360]: 211 Emean = 91.337 keV ( 32.524 keV --> 335.53 keV)
- Ra225[149.960]: 1313 Emean = 94.952 keV ( 1.1511 keV --> 335.19 keV)
- Ra225[179.750]: 1171 Emean = 95.849 keV ( 7.5961 meV --> 337.7 keV)
- Ra225[203.500]: 5 Emean = 86.805 keV ( 86.805 keV --> 86.805 keV)
- Ra225[215.800]: 5 Emean = 88.719 keV ( 86.59 keV --> 97.234 keV)
- Ra225[220.550]: 50 Emean = 93.413 keV ( 82.501 keV --> 265.36 keV)
- Ra225[225.200]: 5 Emean = 83.692 keV ( 79.871 keV --> 84.707 keV)
- Ra225[226.900]: 20 Emean = 87.754 keV ( 6.3084 keV --> 221.01 keV)
- Ra225[236.250]: 5606 Emean = 95.352 keV ( 539.33 eV --> 335.24 keV)
- Ra225[243.560]: 503 Emean = 95.997 keV ( 17.016 keV --> 336.24 keV)
- Ra225[248.500]: 27 Emean = 89.779 keV ( 86.018 keV --> 126.52 keV)
- Ra225[25.410]: 7254 Emean = 95.71 keV ( 56.84 meV --> 343.74 keV)
- Ra225[260.200]: 2 Emean = 83.425 keV ( 83.417 keV --> 83.434 keV)
- Ra225[267.920]: 902 Emean = 95.914 keV ( 1.5086 keV --> 335.64 keV)
- Ra225[272.150]: 24 Emean = 97.42 keV ( 83.432 keV --> 281.25 keV)
- Ra225[284.490]: 134 Emean = 90.918 keV ( 9.8237 keV --> 301 keV)
- Ra225[293.000]: 7 Emean = 72.199 keV ( 6.3093 keV --> 83.486 keV)
- Ra225[31.560]: 788 Emean = 93.766 keV ( 52.387 meV --> 337.71 keV)
- Ra225[321.760]: 97 Emean = 91.707 keV ( 9.3618 keV --> 306.02 keV)
- Ra225[328.000]: 5 Emean = 83.658 keV ( 79.781 keV --> 84.627 keV)
- Ra225[335.000]: 1 Emean = 84.504 keV ( 84.504 keV --> 84.504 keV)
- Ra225[390.000]: 8 Emean = 94.973 keV ( 83.542 keV --> 144.61 keV)
- Ra225[394.720]: 24 Emean = 84.059 keV ( 6.3188 keV --> 243.96 keV)
- Ra225[42.770]: 3273 Emean = 96.392 keV ( 1.2857 keV --> 335.41 keV)
- Ra225[478.400]: 4 Emean = 99.871 keV ( 81.995 keV --> 153.5 keV)
- Ra225[487.000]: 3 Emean = 81.845 keV ( 81.845 keV --> 81.845 keV)
- Ra225[55.160]: 235 Emean = 93.144 keV ( 14.488 keV --> 333.52 keV)
- Ra225[603.000]: 6 Emean = 79.815 keV ( 79.815 keV --> 79.815 keV)
- Ra225[609.000]: 1 Emean = 79.71 keV ( 79.71 keV --> 79.71 keV)
- Ra225[69.360]: 1196 Emean = 94.794 keV ( 1.5731 keV --> 336.43 keV)
- Rn217: 11 Emean = 122.45 keV ( 121.4 keV --> 124.71 keV)
- Rn217[149.180]: 5 Emean = 122.01 keV ( 122.01 keV --> 122.01 keV)
+ Pa233[57.100]: 7372 Emean = 81.937 keV ( 77.658 keV --> 82.81 keV)
+ Pa233[6.671]: 369 Emean = 81.763 keV ( 78.754 keV --> 83.663 keV)
+ Pa233[70.544]: 292 Emean = 81.873 keV ( 78.869 keV --> 82.583 keV)
+ Pa233[86.468]: 5532 Emean = 81.949 keV ( 78.232 keV --> 82.314 keV)
+ Pa233[94.646]: 686 Emean = 80.018 keV ( 78.272 keV --> 81.138 keV)
+ Pb209: 10000 Emean = 157.15 keV ( 6.309 eV --> 160.59 keV)
+ Pb209[1567.090]: 214 Emean = 599.04 meV ( 555.82 meV --> 2.3569 eV )
+ Pb209[2032.220]: 212 Emean = 62.921 meV ( 35.303 meV --> 331.58 meV)
+ Pb209[2149.430]: 210 Emean = 7.1033 eV ( 428.9 meV --> 12.983 eV )
+ Pb209[2315.900]: 2 Emean = 5.1222 eV ( 1.5778 eV --> 8.6667 eV )
+ Pb209[2460.900]: 1 Emean = 5.016 eV ( 5.016 eV --> 5.016 eV )
+ Pb209[2524.920]: 1 Emean = 354.92 meV ( 354.92 meV --> 354.92 meV)
+ Po213: 9786 Emean = 152.06 eV ( 9.0804 meV --> 145.62 keV)
+ Po213[1003.553]: 5 Emean = 747.89 meV ( 564.24 meV --> 964.7 meV)
+ Po213[1045.670]: 3 Emean = 490.09 meV ( 56.199 meV --> 750.68 meV)
+ Po213[1100.167]: 53 Emean = 422.68 meV ( 83.033 meV --> 925.73 meV)
+ Po213[1119.291]: 6 Emean = 379.19 meV ( 64.407 meV --> 650.91 meV)
+ Po213[292.800]: 49 Emean = 2.1856 eV ( 54.948 meV --> 5.3675 eV )
+ Po213[440.450]: 3137 Emean = 2.4142 eV ( 5.5879 meV --> 4.9372 eV )
+ Ra221: 10 Emean = 505.07 meV ( 160.19 meV --> 867.32 meV)
+ Ra225: 10000 Emean = 96.972 keV ( 16.997 meV --> 342.88 keV)
+ Ra225[100.500]: 2889 Emean = 96.303 keV ( 24.331 meV --> 338.43 keV)
+ Ra225[111.600]: 2270 Emean = 96.319 keV ( 51.572 meV --> 338.41 keV)
+ Ra225[120.360]: 30 Emean = 88.69 keV ( 12.528 keV --> 297.65 keV)
+ Ra225[149.960]: 2381 Emean = 97.431 keV ( 17.753 meV --> 335.08 keV)
+ Ra225[179.750]: 1681 Emean = 97.579 keV ( 94.18 meV --> 336.27 keV)
+ Ra225[203.500]: 7 Emean = 86.805 keV ( 86.805 keV --> 86.805 keV)
+ Ra225[215.800]: 2 Emean = 86.59 keV ( 86.59 keV --> 86.59 keV)
+ Ra225[220.550]: 69 Emean = 96.021 keV ( 77.664 keV --> 333.01 keV)
+ Ra225[225.200]: 3 Emean = 83.67 keV ( 81.815 keV --> 84.661 keV)
+ Ra225[226.900]: 24 Emean = 88.861 keV ( 52.996 keV --> 167.58 keV)
+ Ra225[236.250]: 5980 Emean = 96.704 keV ( 30.705 meV --> 336.33 keV)
+ Ra225[243.560]: 536 Emean = 96.341 keV ( 4.6644 keV --> 333.74 keV)
+ Ra225[248.500]: 19 Emean = 90.344 keV ( 20.408 keV --> 280.62 keV)
+ Ra225[25.410]: 8066 Emean = 96.761 keV ( 30.937 meV --> 342.74 keV)
+ Ra225[260.200]: 1 Emean = 83.362 keV ( 83.362 keV --> 83.362 keV)
+ Ra225[267.920]: 962 Emean = 95.26 keV ( 903.09 eV --> 333.35 keV)
+ Ra225[272.150]: 60 Emean = 92.193 keV ( 58.072 keV --> 320.19 keV)
+ Ra225[284.490]: 155 Emean = 92.917 keV ( 4.1478 keV --> 330.78 keV)
+ Ra225[293.000]: 3 Emean = 82.947 keV ( 81.941 keV --> 83.53 keV)
+ Ra225[31.560]: 546 Emean = 99.344 keV ( 55.705 meV --> 341.95 keV)
+ Ra225[321.760]: 101 Emean = 92.31 keV ( 47.478 keV --> 320.11 keV)
+ Ra225[328.000]: 2 Emean = 84.627 keV ( 84.627 keV --> 84.627 keV)
+ Ra225[335.000]: 3 Emean = 160.76 keV ( 84.504 keV --> 313.27 keV)
+ Ra225[349.430]: 1 Emean = 313.27 keV ( 313.27 keV --> 313.27 keV)
+ Ra225[390.000]: 12 Emean = 90.41 keV ( 82.058 keV --> 167.44 keV)
+ Ra225[394.720]: 18 Emean = 91.567 keV ( 9.5923 keV --> 249.87 keV)
+ Ra225[42.770]: 3869 Emean = 97.199 keV ( 7.9744 meV --> 336.29 keV)
+ Ra225[478.400]: 4 Emean = 81.995 keV ( 81.995 keV --> 81.995 keV)
+ Ra225[487.000]: 2 Emean = 166.2 keV ( 81.845 keV --> 250.55 keV)
+ Ra225[55.160]: 62 Emean = 94.206 keV ( 84.526 keV --> 328.61 keV)
+ Ra225[603.000]: 5 Emean = 83.957 keV ( 79.815 keV --> 100.52 keV)
+ Ra225[69.360]: 414 Emean = 97.456 keV ( 29.075 meV --> 342.04 keV)
+ Rn217: 10 Emean = 122.91 keV ( 121.76 keV --> 124.71 keV)
+ Rn217[149.180]: 4 Emean = 122.01 keV ( 122.01 keV --> 122.01 keV)
Rn217[174.300]: 1 Emean = 121.55 keV ( 121.55 keV --> 121.55 keV)
- Rn217[184.000]: 1 Emean = 121.37 keV ( 121.37 keV --> 121.37 keV)
- Rn217[93.020]: 3 Emean = 123.03 keV ( 123.03 keV --> 123.03 keV)
- Rn221: 3 Emean = 90.531 keV ( 90.166 keV --> 90.714 keV)
- Rn221[30.000]: 1 Emean = 90.179 keV ( 90.179 keV --> 90.179 keV)
- Th229: 8970 Emean = 84.306 keV ( 75.374 keV --> 84.358 keV)
- Th229[0.008]: 1030 Emean = 83.554 keV ( 78.203 keV --> 83.882 keV)
- Th229[125.439]: 3 Emean = 82.201 keV ( 82.201 keV --> 82.201 keV)
- Th229[173.484]: 1 Emean = 81.375 keV ( 81.375 keV --> 81.375 keV)
- Th229[189.990]: 1 Emean = 81.091 keV ( 81.091 keV --> 81.091 keV)
- Th229[212.382]: 2 Emean = 80.706 keV ( 80.706 keV --> 80.706 keV)
- Th229[255.957]: 1 Emean = 78.348 keV ( 78.348 keV --> 78.348 keV)
- Th229[29.193]: 1355 Emean = 83.571 keV ( 81.122 keV --> 83.856 keV)
- Th229[347.800]: 1 Emean = 78.377 keV ( 78.377 keV --> 78.377 keV)
- Th229[42.435]: 1392 Emean = 83.578 keV ( 81.129 keV --> 83.628 keV)
- Th229[526.516]: 1 Emean = 75.304 keV ( 75.304 keV --> 75.304 keV)
+ Rn217[93.020]: 2 Emean = 123.03 keV ( 123.03 keV --> 123.03 keV)
+ Rn221: 1 Emean = 90.714 keV ( 90.714 keV --> 90.714 keV)
+ Th229: 8688 Emean = 84.32 keV ( 78.309 keV --> 84.358 keV)
+ Th229[0.008]: 1312 Emean = 83.523 keV ( 78.838 keV --> 83.991 keV)
+ Th229[125.439]: 8 Emean = 81.843 keV ( 81.081 keV --> 82.201 keV)
+ Th229[146.357]: 4 Emean = 81.616 keV ( 81.378 keV --> 81.841 keV)
+ Th229[148.173]: 2 Emean = 79.713 keV ( 79.106 keV --> 80.32 keV)
+ Th229[163.254]: 6 Emean = 81.551 keV ( 81.551 keV --> 81.551 keV)
+ Th229[173.484]: 2 Emean = 81.375 keV ( 81.375 keV --> 81.375 keV)
+ Th229[195.719]: 2 Emean = 80.992 keV ( 80.992 keV --> 80.992 keV)
+ Th229[217.160]: 2 Emean = 80.624 keV ( 80.624 keV --> 80.624 keV)
+ Th229[237.366]: 1 Emean = 80.276 keV ( 80.276 keV --> 80.276 keV)
+ Th229[287.895]: 1 Emean = 79.407 keV ( 79.407 keV --> 79.407 keV)
+ Th229[29.193]: 1607 Emean = 83.536 keV ( 79.265 keV --> 83.856 keV)
+ Th229[317.173]: 2 Emean = 78.904 keV ( 78.904 keV --> 78.904 keV)
+ Th229[320.548]: 1 Emean = 78.846 keV ( 78.846 keV --> 78.846 keV)
+ Th229[42.435]: 1566 Emean = 83.573 keV ( 81.303 keV --> 83.628 keV)
Th229[67.800]: 2 Emean = 83.192 keV ( 83.192 keV --> 83.192 keV)
- Th229[71.826]: 29 Emean = 82.85 keV ( 81.416 keV --> 83.123 keV)
- Th229[75.100]: 1 Emean = 83.067 keV ( 83.067 keV --> 83.067 keV)
- Th229[97.136]: 158 Emean = 82.678 keV ( 81.168 keV --> 82.688 keV)
- Tl209: 215 Emean = 111.91 keV ( 106.07 keV --> 112.51 keV)
- Tl209[323.810]: 21 Emean = 106.41 keV ( 106.41 keV --> 106.41 keV)
- U233: 10000 Emean = 247.01 meV ( 3.7544 meV --> 1.9847 eV )
- U233[155.230]: 85 Emean = 90.833 meV ( 90.833 meV --> 90.833 meV)
- U233[298.810]: 36 Emean = 51.704 meV ( 2.2992 meV --> 521.72 meV)
- U233[301.940]: 73 Emean = 3.1564 meV ( 0.7858 meV --> 6.1991 meV)
- U233[311.904]: 3633 Emean = 185.19 meV ( 0.7858 meV --> 739.85 meV)
- U233[320.830]: 130 Emean = 17.545 meV ( 0.90222 meV --> 20.751 meV)
- U233[330.420]: 7 Emean = 16.793 meV ( 16.793 meV --> 16.793 meV)
- U233[340.477]: 3066 Emean = 195.03 meV ( 2.3574 meV --> 638.97 meV)
- U233[353.790]: 687 Emean = 8.8476 meV ( 8.8476 meV --> 8.8476 meV)
- U233[398.496]: 1589 Emean = 154.17 meV ( 0.69849 meV --> 440.49 meV)
- U233[40.350]: 2582 Emean = 215.55 meV ( 6.17 meV --> 324.68 meV)
- U233[415.758]: 2591 Emean = 134.27 meV ( 0.7858 meV --> 392.99 meV)
- U233[92.160]: 343 Emean = 118.18 meV ( 9.1677 meV --> 157.68 meV)
- alpha: 80019 Emean = 5.9259 MeV ( 51.712 keV --> 8.3755 MeV)
- anti_nu_e: 40000 Emean = 422.68 keV ( 9.8823 keV --> 1.823 MeV)
- e-: 180838 Emean = 68.96 keV ( 3.2854 eV --> 1.7187 MeV)
- gamma: 92722 Emean = 111.02 keV ( 5.4303 keV --> 8.3852 MeV)
- neutron: 9 Emean = 2.9888 MeV ( 33.656 keV --> 8.4685 MeV)
-
- Mean energy deposit per event = 49.556 MeV rms = 486.64 keV
- Mean energy flow per event = 2.2423 MeV rms = 531.12 keV
+ Th229[71.826]: 59 Emean = 82.654 keV ( 80.705 keV --> 83.123 keV)
+ Th229[97.136]: 144 Emean = 82.679 keV ( 81.387 keV --> 82.688 keV)
+ Tl209: 214 Emean = 111.79 keV ( 106.09 keV --> 112.51 keV)
+ Tl209[323.810]: 25 Emean = 106.41 keV ( 106.41 keV --> 106.41 keV)
+ U233: 10000 Emean = 358.82 meV ( 3.7544 meV --> 1.9546 eV )
+ U233[155.230]: 52 Emean = 104.72 meV ( 90.833 meV --> 211.18 meV)
+ U233[298.810]: 2260 Emean = 97.659 meV ( 6.9558 meV --> 467.73 meV)
+ U233[301.940]: 24 Emean = 3.9436 meV ( 0.7858 meV --> 6.1991 meV)
+ U233[311.904]: 5241 Emean = 177.66 meV ( 0.87311 meV --> 712.35 meV)
+ U233[320.830]: 34 Emean = 63.832 meV ( 0.90222 meV --> 232.28 meV)
+ U233[340.477]: 2589 Emean = 224.49 meV ( 0.7567 meV --> 634.58 meV)
+ U233[353.790]: 2607 Emean = 117.07 meV ( 8.8476 meV --> 150.93 meV)
+ U233[398.496]: 1555 Emean = 154.67 meV ( 0.52387 meV --> 449.54 meV)
+ U233[40.350]: 1480 Emean = 284.07 meV ( 6.17 meV --> 908.77 meV)
+ U233[415.758]: 2623 Emean = 130.87 meV ( 0.7567 meV --> 401.11 meV)
+ U233[92.160]: 161 Emean = 157.57 meV ( 101.22 meV --> 755.3 meV)
+ alpha: 80015 Emean = 5.9261 MeV ( 476.12 keV --> 8.3755 MeV)
+ anti_nu_e: 40000 Emean = 423.74 keV ( 6.4682 keV --> 1.8209 MeV)
+ e-: 616656 Emean = 23.538 keV ( 423.46 meV --> 2.1802 MeV)
+ gamma: 64246 Emean = 96.344 keV ( 141.02 eV --> 7.8198 MeV)
+ neutron: 9 Emean = 3.7299 MeV ( 118.96 keV --> 7.9022 MeV)
+
+ Mean energy deposit per event = 49.738 MeV rms = 486.35 keV
+ Mean energy flow per event = 2.0614 MeV rms = 525.24 keV
List of particles emerging from the container :
- anti_nu_e: 40000 Emean = 422.68 keV ( 9.8823 keV --> 1.823 MeV) Eflow/event = 1.6907 MeV
- e-: 25 Emean = 101.78 keV ( 8.7835 keV --> 273.91 keV) Eflow/event = 254.45 eV
- gamma: 23882 Emean = 229.72 keV ( 40.35 keV --> 8.3852 MeV) Eflow/event = 548.62 keV
- neutron: 9 Emean = 2.9888 MeV ( 33.656 keV --> 8.4685 MeV) Eflow/event = 2.69 keV
+ anti_nu_e: 40000 Emean = 423.74 keV ( 6.4682 keV --> 1.8209 MeV) Eflow/event = 1.695 MeV
+ e-: 14 Emean = 154.91 keV ( 22.622 keV --> 624.93 keV) Eflow/event = 216.87 eV
+ gamma: 15000 Emean = 241.88 keV ( 38.696 keV --> 7.8198 MeV) Eflow/event = 362.82 keV
+ neutron: 9 Emean = 3.7299 MeV ( 118.96 keV --> 7.9022 MeV) Eflow/event = 3.3569 keV
--------- Ranecu engine status ---------
Initial seed (index) = 0
- Current couple of seeds = 775026872, 57038374
+ Current couple of seeds = 1892327101, 1853405454
----------------------------------------
G4 kernel has come to Quit state.
================== Deleting memory pools ===================
Number of memory pools allocated: 11 of which, static: 0
-Dynamic pools deleted: 11 / Total memory freed: 0.034 MB
+Dynamic pools deleted: 11 / Total memory freed: 0.038 MB
============================================================
RunManagerKernel is deleted. Good bye :)
diff --git a/examples/extended/medical/DICOM/run.out b/examples/extended/medical/DICOM/run.out
index 40e2c9979ca..9f946a367c0 100644
--- a/examples/extended/medical/DICOM/run.out
+++ b/examples/extended/medical/DICOM/run.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -81,12 +77,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -128,132 +122,132 @@ G4RunManagerKernel -- G4ScoreSplittingProcess is appended to all particles.
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
=======================================================================
====== Radioactive Decay Physics Parameters ========
=======================================================================
@@ -269,180 +263,180 @@ Check EM cuts disabled for atomic de-excitation 1
Use Bearden atomic level energies 0
=======================================================================
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
@@ -460,69 +454,69 @@ NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -562,6 +556,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -668,6 +663,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -834,6 +830,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -849,64 +846,64 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Index : 0 used in the geometry : Yes
Material : Air
- Range cuts : gamma 700 um e- 700 um e+ 700 um proton 700 um
- Energy thresholds : gamma 990 eV e- 990 eV e+ 990 eV proton 70 keV
+ Range cuts : gamma 700 um e- 700 um e+ 700 um proton 0 fm
+ Energy thresholds : gamma 990 eV e- 990 eV e+ 990 eV proton 0 eV
Region(s) which use this couple :
DefaultRegionForTheWorld
Index : 1 used in the geometry : Yes
Material : LungInhale
- Range cuts : gamma 700 um e- 700 um e+ 700 um proton 700 um
- Energy thresholds : gamma 1.31284 keV e- 107.83 keV e+ 106.748 keV proton 70 keV
+ Range cuts : gamma 700 um e- 700 um e+ 700 um proton 0 fm
+ Energy thresholds : gamma 1.31284 keV e- 107.83 keV e+ 106.748 keV proton 0 eV
Region(s) which use this couple :
DefaultRegionForTheWorld
Index : 2 used in the geometry : Yes
Material : LungExhale
- Range cuts : gamma 700 um e- 700 um e+ 700 um proton 700 um
- Energy thresholds : gamma 1.87453 keV e- 179.698 keV e+ 177.299 keV proton 70 keV
+ Range cuts : gamma 700 um e- 700 um e+ 700 um proton 0 fm
+ Energy thresholds : gamma 1.87453 keV e- 179.698 keV e+ 177.299 keV proton 0 eV
Region(s) which use this couple :
DefaultRegionForTheWorld
Index : 3 used in the geometry : Yes
Material : AdiposeTissue
- Range cuts : gamma 700 um e- 700 um e+ 700 um proton 700 um
- Energy thresholds : gamma 2.18784 keV e- 276.265 keV e+ 268.938 keV proton 70 keV
+ Range cuts : gamma 700 um e- 700 um e+ 700 um proton 0 fm
+ Energy thresholds : gamma 2.18784 keV e- 276.265 keV e+ 268.938 keV proton 0 eV
Region(s) which use this couple :
DefaultRegionForTheWorld
Index : 4 used in the geometry : Yes
Material : Breast
- Range cuts : gamma 700 um e- 700 um e+ 700 um proton 700 um
- Energy thresholds : gamma 2.24745 keV e- 276.265 keV e+ 272.577 keV proton 70 keV
+ Range cuts : gamma 700 um e- 700 um e+ 700 um proton 0 fm
+ Energy thresholds : gamma 2.24745 keV e- 276.265 keV e+ 272.577 keV proton 0 eV
Region(s) which use this couple :
DefaultRegionForTheWorld
Index : 5 used in the geometry : Yes
Material : Water
- Range cuts : gamma 700 um e- 700 um e+ 700 um proton 700 um
- Energy thresholds : gamma 2.51944 keV e- 276.265 keV e+ 270.751 keV proton 70 keV
+ Range cuts : gamma 700 um e- 700 um e+ 700 um proton 0 fm
+ Energy thresholds : gamma 2.51944 keV e- 276.265 keV e+ 270.751 keV proton 0 eV
Region(s) which use this couple :
DefaultRegionForTheWorld
Index : 6 used in the geometry : Yes
Material : Muscle
- Range cuts : gamma 700 um e- 700 um e+ 700 um proton 700 um
- Energy thresholds : gamma 2.53643 keV e- 287.632 keV e+ 278.128 keV proton 70 keV
+ Range cuts : gamma 700 um e- 700 um e+ 700 um proton 0 fm
+ Energy thresholds : gamma 2.53643 keV e- 287.632 keV e+ 278.128 keV proton 0 eV
Region(s) which use this couple :
DefaultRegionForTheWorld
Index : 7 used in the geometry : Yes
Material : TrabecularBone
- Range cuts : gamma 700 um e- 700 um e+ 700 um proton 700 um
- Energy thresholds : gamma 2.71274 keV e- 299.466 keV e+ 291.524 keV proton 70 keV
+ Range cuts : gamma 700 um e- 700 um e+ 700 um proton 0 fm
+ Energy thresholds : gamma 2.71274 keV e- 299.466 keV e+ 291.524 keV proton 0 eV
Region(s) which use this couple :
DefaultRegionForTheWorld
Index : 8 used in the geometry : Yes
Material : Liver
- Range cuts : gamma 700 um e- 700 um e+ 700 um proton 700 um
- Energy thresholds : gamma 2.55353 keV e- 287.632 keV e+ 281.891 keV proton 70 keV
+ Range cuts : gamma 700 um e- 700 um e+ 700 um proton 0 fm
+ Energy thresholds : gamma 2.55353 keV e- 287.632 keV e+ 281.891 keV proton 0 eV
Region(s) which use this couple :
DefaultRegionForTheWorld
@@ -1018,7 +1015,7 @@ Index : 8 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 100
- User=0.030000s Real=0.071654s Sys=0.010000s
+ User=0.020000s Real=0.029555s Sys=0.010000s
--------------------End of Global Run-----------------------
The run was 100 events
LOCAL TOTAL DOSE : 0 Gy
diff --git a/examples/extended/medical/GammaTherapy/GammaTherapy.out b/examples/extended/medical/GammaTherapy/GammaTherapy.out
index 9d3e52c3675..3776babae80 100644
--- a/examples/extended/medical/GammaTherapy/GammaTherapy.out
+++ b/examples/extended/medical/GammaTherapy/GammaTherapy.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -159,370 +155,370 @@ Absorber R= 200 dz= 2.5 posZ= -77.5
/gun/energy 50.0 MeV
/run/beamOn 10000
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 10 GeV in 47 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 10 GeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 10 GeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 10 eV to 1 MeV, 10 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 10 eV to 1 MeV, 10 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 10 GeV in 40 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 10 GeV
+ Klein-Nishina : Emin= 0 eV Emax= 10 GeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 10 GeV, 25 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 10 GeV, 25 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 10 GeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 10 GeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 10 eV to 100 keV, 10 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 10 eV to 100 keV, 10 bins/decade, spline: 0
LambdaPrime table from 100 keV to 10 GeV in 50 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 10 GeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 10 GeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 60 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 10 GeV Table with 20 bins Emin= 100 MeV Emax= 10 GeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=60 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 10 GeV Nbins=20 100 MeV - 10 GeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 10 GeV
+ MollerBhabha : Emin= 0 eV Emax= 10 GeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 10 GeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 10 GeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 10 GeV, 10 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 10 GeV, 10 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 10 GeV
+ eCoulombScattering : Emin= 100 MeV Emax= 10 GeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 60 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 10 GeV Table with 20 bins Emin= 100 MeV Emax= 10 GeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=60 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 10 GeV Nbins=20 100 MeV - 10 GeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 10 GeV
+ MollerBhabha : Emin= 0 eV Emax= 10 GeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 10 GeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 10 GeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 10 GeV
+ eplus2gg : Emin= 0 eV Emax= 10 GeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 10 GeV, 10 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 10 GeV, 10 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 10 GeV
+ eCoulombScattering : Emin= 100 MeV Emax= 10 GeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 10 GeV Table with 80 bins Emin= 100 eV Emax= 10 GeV
+ WentzelVIUni : Emin= 0 eV Emax= 10 GeV Nbins=80 100 eV - 10 GeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 10 GeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 10 GeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 10 GeV
+ hBrem : Emin= 0 eV Emax= 10 GeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
Sampling table 4x1001 from 7.50618 GeV to 0.0150124 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 10 GeV
+ hPairProd : Emin= 0 eV Emax= 10 GeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 10 GeV, 10 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 10 GeV, 10 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 10 GeV
+ eCoulombScattering : Emin= 0 eV Emax= 10 GeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 10 GeV
+ UrbanMsc : Emin= 0 eV Emax= 10 GeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 10 GeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 10 GeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 10 GeV Table with 80 bins Emin= 100 eV Emax= 10 GeV
+ UrbanMsc : Emin= 0 eV Emax= 10 GeV Nbins=80 100 eV - 10 GeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 10 GeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 10 GeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 10 GeV Table with 80 bins Emin= 100 eV Emax= 10 GeV
+ WentzelVIUni : Emin= 0 eV Emax= 10 GeV Nbins=80 100 eV - 10 GeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 10 GeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 10 GeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 10 GeV
+ hBrem : Emin= 0 eV Emax= 10 GeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
Sampling table 4x1001 from 7.50618 GeV to 0.0150124 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 10 GeV
+ hPairProd : Emin= 0 eV Emax= 10 GeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 10 GeV, 10 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 10 GeV, 10 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 10 GeV
+ eCoulombScattering : Emin= 0 eV Emax= 10 GeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 10 GeV Table with 80 bins Emin= 100 eV Emax= 10 GeV
+ WentzelVIUni : Emin= 0 eV Emax= 10 GeV Nbins=80 100 eV - 10 GeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 10 GeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 10 GeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 10 GeV
+ hBrem : Emin= 0 eV Emax= 10 GeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
Sampling table 4x1001 from 3.94942 GeV to 0.01 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 10 GeV
+ hPairProd : Emin= 0 eV Emax= 10 GeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 10 GeV, 10 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 10 GeV, 10 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 10 GeV
+ eCoulombScattering : Emin= 0 eV Emax= 10 GeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 10 GeV Table with 80 bins Emin= 100 eV Emax= 10 GeV
+ WentzelVIUni : Emin= 0 eV Emax= 10 GeV Nbins=80 100 eV - 10 GeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 10 GeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 10 GeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 10 GeV
+ hBrem : Emin= 0 eV Emax= 10 GeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
Sampling table 4x1001 from 3.94942 GeV to 0.01 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 10 GeV
+ hPairProd : Emin= 0 eV Emax= 10 GeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 10 GeV
+ eCoulombScattering : Emin= 0 eV Emax= 10 GeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 10 GeV Table with 80 bins Emin= 100 eV Emax= 10 GeV
+ WentzelVIUni : Emin= 0 eV Emax= 10 GeV Nbins=80 100 eV - 10 GeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 10 GeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 10 GeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 10 GeV
+ MuBrem : Emin= 0 eV Emax= 10 GeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
Sampling table 5x1001 from 1 GeV to 0.01 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 10 GeV
+ muPairProd : Emin= 0 eV Emax= 10 GeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 10 GeV, 10 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 10 GeV, 10 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 10 GeV
+ eCoulombScattering : Emin= 0 eV Emax= 10 GeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 10 GeV Table with 80 bins Emin= 100 eV Emax= 10 GeV
+ WentzelVIUni : Emin= 0 eV Emax= 10 GeV Nbins=80 100 eV - 10 GeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 10 GeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 10 GeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 10 GeV
+ MuBrem : Emin= 0 eV Emax= 10 GeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
Sampling table 5x1001 from 1 GeV to 0.01 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 10 GeV
+ muPairProd : Emin= 0 eV Emax= 10 GeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 10 GeV
+ eCoulombScattering : Emin= 0 eV Emax= 10 GeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 10 GeV Table with 80 bins Emin= 100 eV Emax= 10 GeV
+ WentzelVIUni : Emin= 0 eV Emax= 10 GeV Nbins=80 100 eV - 10 GeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 10 GeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 10 GeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 10 GeV
+ hBrem : Emin= 0 eV Emax= 10 GeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
Sampling table 4x1001 from 1.11656 GeV to 0.01 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 10 GeV
+ hPairProd : Emin= 0 eV Emax= 10 GeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 10 GeV, 10 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 10 GeV, 10 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 10 GeV
+ eCoulombScattering : Emin= 0 eV Emax= 10 GeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 10 GeV Table with 80 bins Emin= 100 eV Emax= 10 GeV
+ WentzelVIUni : Emin= 0 eV Emax= 10 GeV Nbins=80 100 eV - 10 GeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 10 GeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 10 GeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 10 GeV
+ hBrem : Emin= 0 eV Emax= 10 GeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 10 eV to 10 GeV in 90 bins
- Lambda tables from threshold to 10 GeV, 10 bins per decade, spline: 1
+ Lambda tables from threshold to 10 GeV, 10 bins/decade, spline: 1
Sampling table 4x1001 from 1.11656 GeV to 0.01 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 10 GeV
+ hPairProd : Emin= 0 eV Emax= 10 GeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 10 GeV
+ eCoulombScattering : Emin= 0 eV Emax= 10 GeV
========= Table of registered couples ==============================
@@ -583,7 +579,7 @@ Index : 5 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10000
- User=4.070000s Real=4.266298s Sys=0.000000s
+ User=3.860000s Real=3.913954s Sys=0.010000s
Histo: End of run actions are started
========================================================
Number of events 10000
diff --git a/examples/extended/medical/dna/chem1/.settings/.svn/dir-prop-revert b/examples/extended/medical/dna/chem1/.settings/.svn/dir-prop-revert
deleted file mode 100644
index dce2c1d5187..00000000000
--- a/examples/extended/medical/dna/chem1/.settings/.svn/dir-prop-revert
+++ /dev/null
@@ -1 +0,0 @@
-END
diff --git a/examples/extended/medical/dna/chem1/.settings/.svn/entries b/examples/extended/medical/dna/chem1/.settings/.svn/entries
deleted file mode 100644
index 8ec7886731a..00000000000
--- a/examples/extended/medical/dna/chem1/.settings/.svn/entries
+++ /dev/null
@@ -1,28 +0,0 @@
-10
-
-dir
-113734
-svn+ssh://svn.cern.ch/reps/geant4/branches/geant4/_symbols/geant4-10-05_branch/examples/extended/medical/dna/chem1/.settings
-svn+ssh://svn.cern.ch/reps/geant4
-
-
-
-2018-11-19T15:22:09.775946Z
-113406
-gcosmo
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-82ad68bf-922b-4865-b672-c5fc3b8c97f6
-
diff --git a/examples/extended/medical/dna/chem1/.settings/.svn/tmp/tempfile.tmp b/examples/extended/medical/dna/chem1/.settings/.svn/tmp/tempfile.tmp
deleted file mode 100644
index e69de29bb2d..00000000000
diff --git a/examples/extended/medical/dna/chem1/History b/examples/extended/medical/dna/chem1/History
index 57eecb80887..4d6f23a966d 100644
--- a/examples/extended/medical/dna/chem1/History
+++ b/examples/extended/medical/dna/chem1/History
@@ -14,6 +14,10 @@ committal in the CVS repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+08 Feb 2019 - VI, WGS, SI tag chem1-V10-04-03
+-----------------------------------------------------
+- Fixed PhysicsList
+
28.11.2018 V. Ivanchenko tag chem1-V10-04-02
-----------------------------------------------------
- Fixed nightly problem by change initial parameters in beam.in and
diff --git a/examples/extended/medical/dna/chem1/chem1.out b/examples/extended/medical/dna/chem1/chem1.out
index b75d4771a6d..466bb964ac1 100644
--- a/examples/extended/medical/dna/chem1/chem1.out
+++ b/examples/extended/medical/dna/chem1/chem1.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -25,166 +21,166 @@ physicsList->setCut() start.
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 100 TeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreConversion : Emin= 0 eV Emax= 80 GeV
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ LivermoreConversion : Emin= 0 eV Emax= 80 GeV
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-e-_G4DNAElectronSolvation: for e- SubType= 58 BuildTable= 0
+e-_G4DNAElectronSolvation: for e- SubType=58 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAOneStepThermalizationModel_Meesungnoen2002 : Emin= 0 eV Emax= 7.4 eV
+DNAOneStepThermalizationModel_Meesungnoen2002 : Emin= 0 eV Emax= 7.4 eV
-e-_G4DNAElastic: for e- SubType= 51 BuildTable= 0
+e-_G4DNAElastic: for e- SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
+DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAExcitation: for e- SubType= 52 BuildTable= 0
+e-_G4DNAExcitation: for e- SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
+DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAIonisation: for e- SubType= 53 BuildTable= 0
+e-_G4DNAIonisation: for e- SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornIonisationModel : Emin= 0 eV Emax= 1 MeV deltaBorn FluoActive
+DNABornIonisationModel : Emin= 0 eV Emax= 1 MeV deltaBorn Fluo
-e-_G4DNAVibExcitation: for e- SubType= 54 BuildTable= 0
+e-_G4DNAVibExcitation: for e- SubType=54 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
+DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
-e-_G4DNAAttachment: for e- SubType= 55 BuildTable= 0
+e-_G4DNAAttachment: for e- SubType=55 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
+DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-proton_G4DNAElastic: for proton SubType= 51 BuildTable= 0
+proton_G4DNAElastic: for proton SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-proton_G4DNAExcitation: for proton SubType= 52 BuildTable= 0
+proton_G4DNAExcitation: for proton SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
-proton_G4DNAIonisation: for proton SubType= 53 BuildTable= 0
+proton_G4DNAIonisation: for proton SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd FluoActive
-DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd Fluo
+DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn Fluo
-proton_G4DNAChargeDecrease: for proton SubType= 56 BuildTable= 0
+proton_G4DNAChargeDecrease: for proton SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
-GenericIon_G4DNAIonisation: for GenericIon SubType= 53 BuildTable= 0
+GenericIon_G4DNAIonisation: for GenericIon SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd Fluo
-alpha_G4DNAElastic: for alpha SubType= 51 BuildTable= 0
+alpha_G4DNAElastic: for alpha SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha_G4DNAExcitation: for alpha SubType= 52 BuildTable= 0
+alpha_G4DNAExcitation: for alpha SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha_G4DNAIonisation: for alpha SubType= 53 BuildTable= 0
+alpha_G4DNAIonisation: for alpha SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-alpha_G4DNAChargeDecrease: for alpha SubType= 56 BuildTable= 0
+alpha_G4DNAChargeDecrease: for alpha SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAElastic: for alpha+ SubType= 51 BuildTable= 0
+alpha+_G4DNAElastic: for alpha+ SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha+_G4DNAExcitation: for alpha+ SubType= 52 BuildTable= 0
+alpha+_G4DNAExcitation: for alpha+ SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAIonisation: for alpha+ SubType= 53 BuildTable= 0
+alpha+_G4DNAIonisation: for alpha+ SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-alpha+_G4DNAChargeDecrease: for alpha+ SubType= 56 BuildTable= 0
+alpha+_G4DNAChargeDecrease: for alpha+ SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAChargeIncrease: for alpha+ SubType= 57 BuildTable= 0
+alpha+_G4DNAChargeIncrease: for alpha+ SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAElastic: for helium SubType= 51 BuildTable= 0
+helium_G4DNAElastic: for helium SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-helium_G4DNAExcitation: for helium SubType= 52 BuildTable= 0
+helium_G4DNAExcitation: for helium SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAIonisation: for helium SubType= 53 BuildTable= 0
+helium_G4DNAIonisation: for helium SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-helium_G4DNAChargeIncrease: for helium SubType= 57 BuildTable= 0
+helium_G4DNAChargeIncrease: for helium SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-hydrogen_G4DNAElastic: for hydrogen SubType= 51 BuildTable= 0
+hydrogen_G4DNAElastic: for hydrogen SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-hydrogen_G4DNAExcitation: for hydrogen SubType= 52 BuildTable= 0
+hydrogen_G4DNAExcitation: for hydrogen SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-hydrogen_G4DNAIonisation: for hydrogen SubType= 53 BuildTable= 0
+hydrogen_G4DNAIonisation: for hydrogen SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd Fluo
-hydrogen_G4DNAChargeIncrease: for hydrogen SubType= 57 BuildTable= 0
+hydrogen_G4DNAChargeIncrease: for hydrogen SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
Region -- -- appears in world volume
This region is in the mass world.
@@ -240,395 +236,251 @@ H^0 + H^0 -> H_2^0 1.2e+10 0.2265
------------------------------------------------------------------------------------------------------------------------------
DNAMolecularStepByStepModel will be used
*** G4Scheduler starts processing
-At time : 1 ps Reaction : OH^0 (-1113) + OH^0 (-636) -> H2O2^0 (-1115)
-At time : 1 ps Reaction : OH^0 (-1112) + OH^0 (-1063) -> H2O2^0 (-1116)
-At time : 1 ps Reaction : OH^0 (-1109) + OH^0 (-638) -> H2O2^0 (-1117)
-At time : 1 ps Reaction : OH^0 (-1107) + OH^0 (-640) -> H2O2^0 (-1118)
-At time : 1 ps Reaction : OH^0 (-1105) + OH^0 (-642) -> H2O2^0 (-1119)
-At time : 1 ps Reaction : OH^0 (-1103) + OH^0 (-1088) -> H2O2^0 (-1120)
-At time : 1 ps Reaction : OH^0 (-1098) + OH^0 (-644) -> H2O2^0 (-1121)
-At time : 1 ps Reaction : H3O^1 (-1096) + OH^-1 (-565) -> No product
-At time : 1 ps Reaction : OH^0 (-1094) + OH^0 (-646) -> H2O2^0 (-1122)
-At time : 1 ps Reaction : OH^0 (-1092) + OH^0 (-648) -> H2O2^0 (-1123)
-At time : 1 ps Reaction : OH^0 (-1090) + OH^0 (-650) -> H2O2^0 (-1124)
-At time : 1 ps Reaction : OH^0 (-1086) + OH^0 (-652) -> H2O2^0 (-1125)
-At time : 1 ps Reaction : H^0 (-1085) + OH^0 (-810) -> No product
-At time : 1 ps Reaction : OH^0 (-654) + OH^0 (-1084) -> H2O2^0 (-1126)
-At time : 1 ps Reaction : OH^0 (-656) + OH^0 (-1082) -> H2O2^0 (-1127)
-At time : 1 ps Reaction : OH^0 (-1080) + OH^0 (-660) -> H2O2^0 (-1128)
-At time : 1 ps Reaction : OH^0 (-662) + OH^0 (-1078) -> H2O2^0 (-1129)
-At time : 1 ps Reaction : OH^0 (-664) + OH^0 (-1072) -> H2O2^0 (-1130)
-At time : 1 ps Reaction : OH^0 (-666) + OH^0 (-1066) -> H2O2^0 (-1131)
-At time : 1 ps Reaction : OH^0 (-658) + OH^0 (-1064) -> H2O2^0 (-1132)
-At time : 1 ps Reaction : OH^0 (-668) + OH^0 (-1040) -> H2O2^0 (-1133)
-At time : 1 ps Reaction : OH^0 (-691) + OH^0 (-1033) -> H2O2^0 (-1134)
-At time : 1 ps Reaction : OH^0 (-632) + OH^0 (-1028) -> H2O2^0 (-1135)
-At time : 1 ps Reaction : H^0 (-730) + OH^0 (-1019) -> No product
-At time : 1 ps Reaction : OH^0 (-896) + OH^0 (-1017) -> H2O2^0 (-1136)
-At time : 1 ps Reaction : OH^0 (-775) + OH^0 (-1010) -> H2O2^0 (-1137)
-At time : 1 ps Reaction : OH^0 (-949) + OH^0 (-997) -> H2O2^0 (-1138)
-At time : 1 ps Reaction : OH^0 (-672) + OH^0 (-982) -> H2O2^0 (-1139)
-At time : 1 ps Reaction : OH^0 (-683) + OH^0 (-978) -> H2O2^0 (-1140)
-At time : 1 ps Reaction : OH^0 (-687) + OH^0 (-968) -> H2O2^0 (-1141)
-At time : 1 ps Reaction : OH^0 (-689) + OH^0 (-964) -> H2O2^0 (-1142)
-At time : 1 ps Reaction : OH^0 (-705) + OH^0 (-962) -> H2O2^0 (-1143)
-At time : 1 ps Reaction : OH^0 (-716) + OH^0 (-960) -> H2O2^0 (-1144)
-At time : 1 ps Reaction : OH^0 (-731) + OH^0 (-930) -> H2O2^0 (-1145)
-At time : 1 ps Reaction : OH^0 (-729) + OH^0 (-916) -> H2O2^0 (-1146)
-At time : 1 ps Reaction : H^0 (-637) + OH^0 (-913) -> No product
-At time : 1 ps Reaction : OH^0 (-822) + OH^0 (-898) -> H2O2^0 (-1147)
-At time : 1 ps Reaction : OH^0 (-745) + OH^0 (-872) -> H2O2^0 (-1148)
-At time : 1 ps Reaction : OH^0 (-743) + OH^0 (-858) -> H2O2^0 (-1149)
-At time : 1 ps Reaction : OH^0 (-747) + OH^0 (-852) -> H2O2^0 (-1150)
-At time : 1 ps Reaction : OH^0 (-761) + OH^0 (-842) -> H2O2^0 (-1151)
-At time : 1 ps Reaction : OH^0 (-798) + OH^0 (-841) -> H2O2^0 (-1152)
-At time : 1 ps Reaction : OH^0 (-757) + OH^0 (-834) -> H2O2^0 (-1153)
-At time : 1 ps Reaction : H^0 (-692) + OH^0 (-814) -> No product
-At time : 1 ps Reaction : OH^0 (-756) + OH^0 (-808) -> H2O2^0 (-1154)
-At time : 1 ps Reaction : OH^0 (-613) + OH^0 (-797) -> H2O2^0 (-1155)
-At time : 1 ps Reaction : H^0 (-661) + OH^0 (-633) -> No product
-At time : 1 ps Reaction : OH^0 (-606) + OH^0 (-631) -> H2O2^0 (-1156)
-At time : 2 ps Reaction : OH^0 (-698) + OH^0 (-820) -> H2O2^0 (-1157)
-At time : 2 ps Reaction : H^0 (-746) + OH^0 (-573) -> No product
-At time : 2 ps Reaction : OH^0 (-947) + OH^0 (-1053) -> H2O2^0 (-1158)
-At time : 2 ps Reaction : OH^0 (-780) + OH^0 (-1012) -> H2O2^0 (-1159)
-At time : 2 ps Reaction : OH^0 (-750) + OH^0 (-993) -> H2O2^0 (-1160)
-At time : 2 ps Reaction : OH^0 (-770) + OH^0 (-985) -> H2O2^0 (-1161)
-At time : 2 ps Reaction : OH^0 (-890) + OH^0 (-967) -> H2O2^0 (-1162)
-At time : 2 ps Reaction : OH^0 (-818) + OH^0 (-959) -> H2O2^0 (-1163)
-At time : 2 ps Reaction : OH^0 (-812) + OH^0 (-892) -> H2O2^0 (-1164)
-At time : 2 ps Reaction : H^0 (-653) + OH^0 (-869) -> No product
-At time : 2 ps Reaction : OH^0 (-783) + OH^0 (-865) -> H2O2^0 (-1165)
-At time : 2 ps Reaction : OH^0 (-825) + H^0 (-859) -> No product
-At time : 3 ps Reaction : OH^0 (-686) + OH^0 (-1057) -> H2O2^0 (-1166)
-At time : 3 ps Reaction : OH^0 (-826) + OH^0 (-1009) -> H2O2^0 (-1167)
-At time : 3 ps Reaction : OH^0 (-678) + OH^0 (-886) -> H2O2^0 (-1168)
-At time : 3 ps Reaction : H^0 (-748) + OH^0 (-800) -> No product
-At time : 3 ps Reaction : e_aq^-1 (-273) + e_aq^-1 (-426) -> OH^-1 (-1169) + OH^-1 (-1170) + H_2^0 (-1171)
-At time : 3 ps Reaction : H^0 (-1083) + OH^0 (-1005) -> No product
-At time : 3 ps Reaction : OH^0 (-704) + OH^0 (-1055) -> H2O2^0 (-1172)
-At time : 4 ps Reaction : OH^0 (-720) + OH^0 (-1061) -> H2O2^0 (-1173)
-At time : 4 ps Reaction : H^0 (-673) + H^0 (-961) -> H_2^0 (-1174)
-At time : 4 ps Reaction : OH^0 (-566) + OH^0 (-588) -> H2O2^0 (-1175)
-At time : 4 ps Reaction : OH^0 (-1024) + OH^0 (-1030) -> H2O2^0 (-1176)
-At time : 4 ps Reaction : OH^0 (-579) + OH^0 (-981) -> H2O2^0 (-1177)
-At time : 4 ps Reaction : H^0 (-655) + H^0 (-706) -> H_2^0 (-1178)
-At time : 5 ps Reaction : H^0 (-1065) + OH^0 (-1071) -> No product
-At time : 5 ps Reaction : OH^0 (-728) + OH^0 (-923) -> H2O2^0 (-1179)
-At time : 5 ps Reaction : H^0 (-1093) + OH^0 (-951) -> No product
-At time : 5 ps Reaction : OH^0 (-726) + OH^0 (-855) -> H2O2^0 (-1180)
-At time : 6 ps Reaction : OH^0 (-857) + OH^0 (-1039) -> H2O2^0 (-1181)
-At time : 6 ps Reaction : OH^0 (-824) + OH^0 (-1038) -> H2O2^0 (-1182)
-At time : 6 ps Reaction : OH^0 (-943) + OH^0 (-1007) -> H2O2^0 (-1183)
-At time : 6 ps Reaction : OH^0 (-987) + OH^0 (-991) -> H2O2^0 (-1184)
-At time : 6 ps Reaction : OH^0 (-802) + H^0 (-983) -> No product
-At time : 6 ps Reaction : H^0 (-665) + OH^0 (-718) -> No product
-At time : 7 ps Reaction : H^0 (-758) + OH^0 (-989) -> No product
-At time : 7 ps Reaction : H^0 (-663) + OH^0 (-1026) -> No product
-At time : 8 ps Reaction : OH^0 (-1016) + H^0 (-1067) -> No product
-At time : 8 ps Reaction : H^0 (-732) + OH^0 (-977) -> No product
-At time : 9 ps Reaction : OH^0 (-888) + H^0 (-979) -> No product
-At time : 9 ps Reaction : OH^0 (-594) + OH^0 (-829) -> H2O2^0 (-1185)
-At time : 10 ps Reaction : H^0 (-1087) + OH^0 (-921) -> No product
-At time : 10 ps Reaction : OH^0 (-624) + OH^0 (-881) -> H2O2^0 (-1186)
-At time : 10 ps Reaction : OH^0 (-712) + OH^0 (-713) -> H2O2^0 (-1187)
-At time : 10 ps Reaction : OH^0 (-604) + OH^0 (-605) -> H2O2^0 (-1188)
-At time : 11 ps Reaction : OH^0 (-1097) + OH^0 (-847) -> H2O2^0 (-1189)
-At time : 11 ps Reaction : OH^0 (-833) + OH^0 (-909) -> H2O2^0 (-1190)
-At time : 11 ps Reaction : OH^0 (-609) + OH^0 (-894) -> H2O2^0 (-1191)
-At time : 12 ps Reaction : OH^0 (-867) + OH^0 (-955) -> H2O2^0 (-1192)
-At time : 12 ps Reaction : OH^0 (-772) + OH^0 (-806) -> H2O2^0 (-1193)
-At time : 13 ps Reaction : OH^0 (-736) + OH^0 (-582) -> H2O2^0 (-1194)
-At time : 15 ps Reaction : OH^0 (-791) + OH^0 (-877) -> H2O2^0 (-1195)
-At time : 15 ps Reaction : OH^0 (-614) + OH^0 (-935) -> H2O2^0 (-1196)
-At time : 16 ps Reaction : OH^0 (-906) + OH^0 (-919) -> H2O2^0 (-1197)
-At time : 16 ps Reaction : H^0 (-667) + H^0 (-917) -> H_2^0 (-1198)
-At time : 17 ps Reaction : H^0 (-688) + OH^0 (-933) -> No product
-At time : 20 ps Reaction : H^0 (-931) + OH^0 (-1003) -> No product
-At time : 20 ps Reaction : OH^0 (-929) + OH^0 (-941) -> H2O2^0 (-1199)
-At time : 21 ps Reaction : H^0 (-647) + H^0 (-651) -> H_2^0 (-1200)
-At time : 22 ps Reaction : OH^0 (-871) + OH^0 (-882) -> H2O2^0 (-1201)
-At time : 22 ps Reaction : H^0 (-657) + H^0 (-639) -> H_2^0 (-1202)
-At time : 23 ps Reaction : OH^0 (-795) + OH^0 (-1075) -> H2O2^0 (-1203)
-At time : 24 ps Reaction : OH^0 (-975) + OH^0 (-995) -> H2O2^0 (-1204)
-At time : 25 ps Reaction : OH^0 (-700) + OH^0 (-925) -> H2O2^0 (-1205)
-At time : 29 ps Reaction : OH^0 (-734) + OH^0 (-793) -> H2O2^0 (-1206)
-At time : 30 ps Reaction : H^0 (-744) + H^0 (-684) -> H_2^0 (-1207)
-At time : 31 ps Reaction : H^0 (-1106) + OH^0 (-1045) -> No product
-At time : 31 ps Reaction : OH^0 (-816) + OH^0 (-1023) -> H2O2^0 (-1208)
-At time : 31 ps Reaction : OH^0 (-621) + OH^0 (-957) -> H2O2^0 (-1209)
-At time : 31 ps Reaction : OH^0 (-753) + OH^0 (-781) -> H2O2^0 (-1210)
-At time : 39 ps Reaction : OH^0 (-591) + OH^0 (-845) -> H2O2^0 (-1211)
-At time : 40 ps Reaction : OH^0 (-764) + OH^0 (-1059) -> H2O2^0 (-1212)
-At time : 44 ps Reaction : OH^0 (-671) + OH^0 (-1021) -> H2O2^0 (-1213)
-At time : 46 ps Reaction : OH^0 (-702) + OH^0 (-904) -> H2O2^0 (-1214)
-At time : 50 ps Reaction : OH^0 (-875) + H^0 (-1041) -> No product
-At time : 52 ps Reaction : OH^0 (-839) + OH^0 (-1069) -> H2O2^0 (-1215)
-At time : 53 ps Reaction : OH^0 (-627) + OH^0 (-789) -> H2O2^0 (-1216)
-At time : 56 ps Reaction : H^0 (-641) + OH^0 (-911) -> No product
-At time : 58 ps Reaction : H^0 (-835) + H^0 (-873) -> H_2^0 (-1217)
-At time : 59 ps Reaction : OH^-1 (-1169) + H3O^1 (-970) -> No product
-At time : 63 ps Reaction : OH^0 (-768) + H^0 (-754) -> No product
-At time : 72 ps Reaction : H^0 (-1108) + OH^0 (-766) -> No product
-At time : 72 ps Reaction : OH^0 (-1036) + OH^0 (-1051) -> H2O2^0 (-1218)
-At time : 73 ps Reaction : OH^0 (-742) + OH^0 (-900) -> H2O2^0 (-1219)
-At time : 76 ps Reaction : OH^0 (-831) + H^0 (-1073) -> No product
-At time : 78 ps Reaction : OH^0 (-677) + OH^0 (-1047) -> H2O2^0 (-1220)
-At time : 81 ps Reaction : OH^0 (-1104) + OH^0 (-953) -> H2O2^0 (-1221)
-At time : 84 ps Reaction : OH^0 (-999) + OH^0 (-1077) -> H2O2^0 (-1222)
-At time : 97 ps Reaction : H^0 (-1034) + OH^0 (-1049) -> No product
-At time : 99 ps Reaction : H^0 (-843) + H^0 (-853) -> H_2^0 (-1223)
-At time : 103 ps Reaction : OH^0 (-680) + OH^0 (-861) -> H2O2^0 (-1224)
-At time : 123.02 ps Reaction : H^0 (-1079) + OH^0 (-945) -> No product
-At time : 125.02 ps Reaction : H^0 (-1110) + OH^0 (-752) -> No product
-At time : 129.02 ps Reaction : H3O^1 (-809) + OH^-1 (-1170) -> No product
-At time : 130.02 ps Reaction : e_aq^-1 (-82) + H3O^1 (-848) -> H^0 (-1225)
-At time : 131.02 ps Reaction : H^0 (-1095) + OH^0 (-1001) -> No product
-At time : 142.02 ps Reaction : OH^0 (-785) + OH^0 (-879) -> H2O2^0 (-1226)
-At time : 157.62 ps Reaction : OH^0 (-738) + OH^0 (-576) -> H2O2^0 (-1227)
-At time : 163.62 ps Reaction : OH^0 (-724) + OH^0 (-939) -> H2O2^0 (-1228)
-At time : 164.62 ps Reaction : OH^0 (-715) + OH^0 (-708) -> H2O2^0 (-1229)
-At time : 187.7 ps Reaction : OH^0 (-722) + OH^0 (-927) -> H2O2^0 (-1230)
-At time : 197.7 ps Reaction : H^0 (-1114) + OH^0 (-851) -> No product
-At time : 217.01 ps Reaction : H3O^1 (-721) + e_aq^-1 (-283) -> H^0 (-1231)
-At time : 221.01 ps Reaction : OH^0 (-884) + OH^0 (-937) -> H2O2^0 (-1232)
-At time : 228.55 ps Reaction : OH^0 (-675) + H^0 (-827) -> No product
-At time : 248.21 ps Reaction : e_aq^-1 (-378) + e_aq^-1 (-484) -> OH^-1 (-1233) + OH^-1 (-1234) + H_2^0 (-1235)
-At time : 277.06 ps Reaction : OH^0 (-740) + OH^0 (-1043) -> H2O2^0 (-1236)
-At time : 280.06 ps Reaction : OH^-1 (-1233) + H3O^1 (-866) -> No product
-At time : 286.12 ps Reaction : OH^0 (-694) + OH^0 (-804) -> H2O2^0 (-1237)
-At time : 295.3 ps Reaction : H^0 (-643) + OH^0 (-902) -> No product
-At time : 342.22 ps Reaction : OH^0 (-907) + H^0 (-969) -> No product
-At time : 351.81 ps Reaction : OH^-1 (-1234) + H3O^1 (-891) -> No product
-At time : 379.93 ps Reaction : e_aq^-1 (-412) + e_aq^-1 (-483) -> OH^-1 (-1238) + OH^-1 (-1239) + H_2^0 (-1240)
-At time : 379.93 ps Reaction : OH^-1 (-1239) + H3O^1 (-681) -> No product
-At time : 379.93 ps Reaction : OH^-1 (-1238) + H3O^1 (-1013) -> No product
-At time : 385.18 ps Reaction : OH^0 (-696) + OH^0 (-971) -> H2O2^0 (-1241)
-At time : 426.65 ps Reaction : e_aq^-1 (-423) + H3O^1 (-901) -> H^0 (-1242)
-At time : 435.69 ps Reaction : e_aq^-1 (-188) + H3O^1 (-836) -> H^0 (-1243)
-At time : 500 ps Reaction : e_aq^-1 (-463) + H3O^1 (-954) -> H^0 (-1244)
-At time : 523.79 ps Reaction : OH^0 (-778) + e_aq^-1 (-558) -> OH^-1 (-1245)
-At time : 523.79 ps Reaction : OH^-1 (-1245) + H3O^1 (-974) -> No product
-At time : 537.79 ps Reaction : OH^0 (-774) + H^0 (-1089) -> No product
-At time : 590.53 ps Reaction : e_aq^-1 (-440) + H3O^1 (-592) -> H^0 (-1246)
-At time : 618.59 ps Reaction : OH^0 (-837) + OH^0 (-863) -> H2O2^0 (-1247)
-At time : 676.12 ps Reaction : e_aq^-1 (-152) + OH^0 (-567) -> OH^-1 (-1248)
-At time : 678.12 ps Reaction : OH^-1 (-1248) + H3O^1 (-864) -> No product
-At time : 689.38 ps Reaction : H^0 (-690) + H^0 (-649) -> H_2^0 (-1249)
-At time : 734.15 ps Reaction : e_aq^-1 (-119) + H^0 (-1225) -> OH^-1 (-1250) + H_2^0 (-1251)
-At time : 735.15 ps Reaction : OH^-1 (-1250) + H3O^1 (-817) -> No product
-At time : 741.15 ps Reaction : e_aq^-1 (-326) + H3O^1 (-799) -> H^0 (-1252)
-At time : 815.56 ps Reaction : H^0 (-1246) + OH^0 (-618) -> No product
-At time : 931.6 ps Reaction : e_aq^-1 (-190) + H3O^1 (-899) -> H^0 (-1253)
-At time : 940.85 ps Reaction : H3O^1 (-765) + e_aq^-1 (-427) -> H^0 (-1254)
-At time : 948.28 ps Reaction : e_aq^-1 (-274) + H^0 (-1253) -> OH^-1 (-1255) + H_2^0 (-1256)
-At time : 948.28 ps Reaction : OH^-1 (-1255) + H3O^1 (-1068) -> No product
-At time : 953.28 ps Reaction : OH^0 (-760) + e_aq^-1 (-425) -> OH^-1 (-1257)
-At time : 1.1176 ns Reaction : H3O^1 (-695) + e_aq^-1 (-480) -> H^0 (-1258)
-At time : 1.1402 ns Reaction : OH^0 (-615) + H^0 (-963) -> No product
-At time : 1.1928 ns Reaction : e_aq^-1 (-207) + e_aq^-1 (-303) -> OH^-1 (-1259) + OH^-1 (-1260) + H_2^0 (-1261)
-At time : 1.1992 ns Reaction : e_aq^-1 (-93) + H3O^1 (-856) -> H^0 (-1262)
-At time : 1.234 ns Reaction : e_aq^-1 (-340) + H3O^1 (-988) -> H^0 (-1263)
-At time : 1.2443 ns Reaction : H3O^1 (-782) + e_aq^-1 (-281) -> H^0 (-1264)
-At time : 1.2701 ns Reaction : H3O^1 (-868) + OH^-1 (-1257) -> No product
-At time : 1.2771 ns Reaction : e_aq^-1 (-492) + H3O^1 (-1006) -> H^0 (-1265)
-At time : 1.3626 ns Reaction : OH^-1 (-1260) + H3O^1 (-885) -> No product
-At time : 1.3929 ns Reaction : e_aq^-1 (-91) + OH^0 (-915) -> OH^-1 (-1266)
-At time : 1.4337 ns Reaction : H^0 (-1081) + H^0 (-762) -> H_2^0 (-1267)
-At time : 1.4585 ns Reaction : H3O^1 (-719) + OH^-1 (-1266) -> No product
-At time : 1.471 ns Reaction : H^0 (-776) + e_aq^-1 (-372) -> OH^-1 (-1268) + H_2^0 (-1269)
-At time : 1.5051 ns Reaction : e_aq^-1 (-505) + H3O^1 (-870) -> H^0 (-1270)
-At time : 1.5518 ns Reaction : e_aq^-1 (-317) + H3O^1 (-628) -> H^0 (-1271)
-At time : 1.635 ns Reaction : H3O^1 (-903) + OH^-1 (-1259) -> No product
-At time : 1.78 ns Reaction : H^0 (-1099) + OH^0 (-682) -> No product
-At time : 1.9305 ns Reaction : e_aq^-1 (-406) + H3O^1 (-580) -> H^0 (-1272)
-At time : 1.9495 ns Reaction : e_aq^-1 (-436) + e_aq^-1 (-262) -> OH^-1 (-1273) + OH^-1 (-1274) + H_2^0 (-1275)
-At time : 1.9774 ns Reaction : e_aq^-1 (-422) + H3O^1 (-883) -> H^0 (-1276)
-At time : 2.2038 ns Reaction : e_aq^-1 (-535) + e_aq^-1 (-471) -> OH^-1 (-1277) + OH^-1 (-1278) + H_2^0 (-1279)
-At time : 2.2218 ns Reaction : H3O^1 (-586) + OH^-1 (-1268) -> No product
-At time : 2.236 ns Reaction : e_aq^-1 (-528) + H3O^1 (-607) -> H^0 (-1280)
-At time : 2.3999 ns Reaction : OH^-1 (-1273) + H3O^1 (-893) -> No product
-At time : 2.3999 ns Reaction : H^0 (-659) + H^0 (-1254) -> H_2^0 (-1281)
-At time : 2.4066 ns Reaction : e_aq^-1 (-347) + OH^0 (-600) -> OH^-1 (-1282)
-At time : 2.4289 ns Reaction : H3O^1 (-838) + OH^-1 (-1277) -> No product
-At time : 2.4967 ns Reaction : H^0 (-1270) + e_aq^-1 (-209) -> OH^-1 (-1283) + H_2^0 (-1284)
-At time : 2.5443 ns Reaction : H3O^1 (-610) + OH^-1 (-1282) -> No product
-At time : 2.5992 ns Reaction : e_aq^-1 (-196) + H3O^1 (-622) -> H^0 (-1285)
-At time : 2.6062 ns Reaction : e_aq^-1 (-392) + H3O^1 (-1044) -> H^0 (-1286)
-At time : 2.635 ns Reaction : e_aq^-1 (-479) + H2O2^0 (-1221) -> OH^-1 (-1287) + OH^0 (-1288)
-At time : 2.6811 ns Reaction : H3O^1 (-777) + e_aq^-1 (-554) -> H^0 (-1289)
-At time : 2.723 ns Reaction : e_aq^-1 (-337) + H^0 (-1091) -> OH^-1 (-1290) + H_2^0 (-1291)
-At time : 2.8193 ns Reaction : OH^-1 (-1283) + H3O^1 (-976) -> No product
-At time : 2.927 ns Reaction : H3O^1 (-815) + OH^-1 (-1287) -> No product
-At time : 3.0616 ns Reaction : OH^-1 (-1290) + H3O^1 (-1020) -> No product
-At time : 3.1304 ns Reaction : e_aq^-1 (-461) + H2O2^0 (-1219) -> OH^-1 (-1292) + OH^0 (-1293)
-At time : 3.1853 ns Reaction : e_aq^-1 (-128) + H3O^1 (-934) -> H^0 (-1294)
-At time : 3.2029 ns Reaction : e_aq^-1 (-543) + H3O^1 (-1029) -> H^0 (-1295)
-At time : 3.311 ns Reaction : H3O^1 (-897) + OH^-1 (-1292) -> No product
-At time : 3.3576 ns Reaction : H3O^1 (-709) + e_aq^-1 (-442) -> H^0 (-1296)
-At time : 3.4292 ns Reaction : e_aq^-1 (-511) + H3O^1 (-994) -> H^0 (-1297)
-At time : 3.7108 ns Reaction : e_aq^-1 (-116) + H3O^1 (-840) -> H^0 (-1298)
-At time : 3.9522 ns Reaction : e_aq^-1 (-107) + e_aq^-1 (-169) -> OH^-1 (-1299) + OH^-1 (-1300) + H_2^0 (-1301)
-At time : 4.2382 ns Reaction : e_aq^-1 (-123) + e_aq^-1 (-390) -> OH^-1 (-1302) + OH^-1 (-1303) + H_2^0 (-1304)
-At time : 4.3527 ns Reaction : e_aq^-1 (-544) + H3O^1 (-727) -> H^0 (-1305)
-At time : 4.4017 ns Reaction : OH^-1 (-1300) + H3O^1 (-1076) -> No product
-At time : 4.4037 ns Reaction : OH^-1 (-1303) + H3O^1 (-936) -> No product
-At time : 4.5177 ns Reaction : OH^-1 (-1299) + H3O^1 (-1062) -> No product
-At time : 4.5437 ns Reaction : e_aq^-1 (-250) + e_aq^-1 (-578) -> OH^-1 (-1306) + OH^-1 (-1307) + H_2^0 (-1308)
-At time : 4.5741 ns Reaction : H3O^1 (-1027) + OH^-1 (-1306) -> No product
-At time : 4.8945 ns Reaction : H^0 (-669) + H^0 (-1286) -> H_2^0 (-1309)
-At time : 4.9146 ns Reaction : H3O^1 (-1100) + OH^-1 (-1274) -> No product
-At time : 5.2115 ns Reaction : H^0 (-1231) + H^0 (-1295) -> H_2^0 (-1310)
-At time : 5.259 ns Reaction : OH^-1 (-1302) + H3O^1 (-990) -> No product
-At time : 5.2643 ns Reaction : OH^0 (-1014) + OH^0 (-1032) -> H2O2^0 (-1311)
-At time : 5.4517 ns Reaction : OH^-1 (-1278) + H3O^1 (-1054) -> No product
-At time : 5.8309 ns Reaction : H^0 (-1297) + OH^0 (-585) -> No product
-At time : 5.9099 ns Reaction : e_aq^-1 (-546) + H3O^1 (-583) -> H^0 (-1312)
-At time : 6.2991 ns Reaction : OH^-1 (-1307) + H3O^1 (-846) -> No product
-At time : 6.42 ns Reaction : e_aq^-1 (-467) + H3O^1 (-790) -> H^0 (-1313)
-At time : 6.5234 ns Reaction : e_aq^-1 (-381) + OH^0 (-570) -> OH^-1 (-1314)
-At time : 6.6595 ns Reaction : OH^0 (-1288) + H^0 (-965) -> No product
-At time : 6.6756 ns Reaction : e_aq^-1 (-151) + e_aq^-1 (-386) -> OH^-1 (-1315) + OH^-1 (-1316) + H_2^0 (-1317)
-At time : 6.8775 ns Reaction : e_aq^-1 (-192) + H^0 (-1262) -> OH^-1 (-1318) + H_2^0 (-1319)
-At time : 6.9744 ns Reaction : OH^-1 (-1314) + H3O^1 (-972) -> No product
-At time : 7.0579 ns Reaction : e_aq^-1 (-388) + H3O^1 (-850) -> H^0 (-1320)
-At time : 7.3177 ns Reaction : e_aq^-1 (-108) + H3O^1 (-914) -> H^0 (-1321)
-At time : 7.6866 ns Reaction : e_aq^-1 (-536) + H3O^1 (-577) -> H^0 (-1322)
-At time : 8.2431 ns Reaction : e_aq^-1 (-306) + H3O^1 (-619) -> H^0 (-1323)
-At time : 8.4691 ns Reaction : H2O2^0 (-1131) + e_aq^-1 (-501) -> OH^-1 (-1324) + OH^0 (-1325)
-At time : 8.644 ns Reaction : OH^-1 (-1318) + H3O^1 (-733) -> No product
-At time : 8.8492 ns Reaction : OH^-1 (-1324) + H3O^1 (-821) -> No product
-At time : 8.9005 ns Reaction : e_aq^-1 (-516) + H2O2^0 (-1172) -> OH^-1 (-1326) + OH^0 (-1327)
-At time : 9.2227 ns Reaction : H3O^1 (-751) + e_aq^-1 (-611) -> H^0 (-1328)
-At time : 9.2458 ns Reaction : H3O^1 (-723) + OH^-1 (-1326) -> No product
-At time : 9.2505 ns Reaction : H^0 (-1313) + H^0 (-1264) -> H_2^0 (-1329)
-At time : 9.4966 ns Reaction : H3O^1 (-741) + e_aq^-1 (-550) -> H^0 (-1330)
-At time : 9.9709 ns Reaction : e_aq^-1 (-464) + H3O^1 (-1060) -> H^0 (-1331)
-At time : 10.165 ns Reaction : H3O^1 (-759) + e_aq^-1 (-334) -> H^0 (-1332)
-At time : 10.168 ns Reaction : e_aq^-1 (-150) + e_aq^-1 (-487) -> OH^-1 (-1333) + OH^-1 (-1334) + H_2^0 (-1335)
-At time : 10.385 ns Reaction : H2O2^0 (-1127) + e_aq^-1 (-335) -> OH^-1 (-1336) + OH^0 (-1337)
-At time : 10.433 ns Reaction : e_aq^-1 (-131) + H2O2^0 (-1126) -> OH^-1 (-1338) + OH^0 (-1339)
-At time : 10.924 ns Reaction : e_aq^-1 (-396) + H3O^1 (-940) -> H^0 (-1340)
-At time : 10.942 ns Reaction : e_aq^-1 (-526) + H2O2^0 (-1143) -> OH^-1 (-1341) + OH^0 (-1342)
-At time : 10.953 ns Reaction : H3O^1 (-701) + OH^-1 (-1338) -> No product
-At time : 10.982 ns Reaction : e_aq^-1 (-165) + H^0 (-1294) -> OH^-1 (-1343) + H_2^0 (-1344)
-At time : 11.236 ns Reaction : e_aq^-1 (-344) + H3O^1 (-1035) -> H^0 (-1345)
-At time : 11.377 ns Reaction : e_aq^-1 (-507) + H3O^1 (-878) -> H^0 (-1346)
-At time : 11.404 ns Reaction : H3O^1 (-670) + OH^-1 (-1336) -> No product
-At time : 11.563 ns Reaction : H2O2^0 (-1147) + e_aq^-1 (-617) -> OH^-1 (-1347) + OH^0 (-1348)
-At time : 11.652 ns Reaction : H3O^1 (-771) + OH^-1 (-1341) -> No product
-At time : 11.812 ns Reaction : OH^-1 (-1334) + H3O^1 (-942) -> No product
-At time : 11.847 ns Reaction : e_aq^-1 (-200) + H3O^1 (-828) -> H^0 (-1349)
-At time : 12.483 ns Reaction : H^0 (-1320) + H^0 (-1332) -> H_2^0 (-1350)
-At time : 12.51 ns Reaction : e_aq^-1 (-329) + H2O2^0 (-1157) -> OH^-1 (-1351) + OH^0 (-1352)
-At time : 12.613 ns Reaction : OH^-1 (-1347) + H3O^1 (-794) -> No product
-At time : 12.682 ns Reaction : e_aq^-1 (-411) + H3O^1 (-1048) -> H^0 (-1353)
-At time : 12.722 ns Reaction : e_aq^-1 (-629) + H2O2^0 (-1206) -> OH^-1 (-1354) + OH^0 (-1355)
-At time : 12.726 ns Reaction : e_aq^-1 (-413) + H2O2^0 (-1211) -> OH^-1 (-1356) + OH^0 (-1357)
-At time : 13.15 ns Reaction : e_aq^-1 (-374) + H3O^1 (-1050) -> H^0 (-1358)
-At time : 13.298 ns Reaction : e_aq^-1 (-117) + H3O^1 (-928) -> H^0 (-1359)
-At time : 13.422 ns Reaction : e_aq^-1 (-88) + H^0 (-1349) -> OH^-1 (-1360) + H_2^0 (-1361)
-At time : 14.026 ns Reaction : OH^-1 (-1316) + H3O^1 (-589) -> No product
-At time : 14.063 ns Reaction : H2O2^0 (-1155) + e_aq^-1 (-305) -> OH^-1 (-1362) + OH^0 (-1363)
-At time : 14.135 ns Reaction : H^0 (-1272) + e_aq^-1 (-584) -> OH^-1 (-1364) + H_2^0 (-1365)
-At time : 14.321 ns Reaction : H2O2^0 (-1152) + e_aq^-1 (-352) -> OH^-1 (-1366) + OH^0 (-1367)
-At time : 14.49 ns Reaction : e_aq^-1 (-520) + OH^0 (-849) -> OH^-1 (-1368)
-At time : 15.731 ns Reaction : e_aq^-1 (-164) + H2O2^0 (-1128) -> OH^-1 (-1369) + OH^0 (-1370)
-At time : 15.774 ns Reaction : OH^-1 (-1333) + H3O^1 (-717) -> No product
-At time : 15.927 ns Reaction : H3O^1 (-832) + OH^-1 (-1351) -> No product
-At time : 16.054 ns Reaction : H3O^1 (-952) + OH^-1 (-1315) -> No product
-At time : 16.902 ns Reaction : H^0 (-1353) + H^0 (-1252) -> H_2^0 (-1371)
-At time : 17.045 ns Reaction : e_aq^-1 (-534) + H2O2^0 (-1201) -> OH^-1 (-1372) + OH^0 (-1373)
-At time : 17.173 ns Reaction : OH^-1 (-1369) + H3O^1 (-986) -> No product
-At time : 17.289 ns Reaction : e_aq^-1 (-466) + OH^0 (-1293) -> OH^-1 (-1374)
-At time : 17.292 ns Reaction : OH^0 (-1325) + e_aq^-1 (-298) -> OH^-1 (-1375)
-At time : 17.518 ns Reaction : H3O^1 (-784) + OH^-1 (-1372) -> No product
-At time : 17.711 ns Reaction : OH^-1 (-1360) + H3O^1 (-956) -> No product
-At time : 19.284 ns Reaction : H3O^1 (-574) + OH^-1 (-1374) -> No product
-At time : 20.379 ns Reaction : H3O^1 (-755) + e_aq^-1 (-379) -> H^0 (-1376)
-At time : 21.556 ns Reaction : H3O^1 (-739) + e_aq^-1 (-203) -> H^0 (-1377)
-At time : 22.089 ns Reaction : OH^-1 (-1368) + H3O^1 (-926) -> No product
-At time : 22.194 ns Reaction : H2O2^0 (-1123) + e_aq^-1 (-474) -> OH^-1 (-1378) + OH^0 (-1379)
-At time : 24.165 ns Reaction : H3O^1 (-634) + OH^-1 (-1356) -> No product
-At time : 24.608 ns Reaction : e_aq^-1 (-394) + H2O2^0 (-1203) -> OH^-1 (-1380) + OH^0 (-1381)
-At time : 24.947 ns Reaction : e_aq^-1 (-143) + e_aq^-1 (-596) -> OH^-1 (-1382) + OH^-1 (-1383) + H_2^0 (-1384)
-At time : 25.118 ns Reaction : e_aq^-1 (-358) + H3O^1 (-996) -> H^0 (-1385)
-At time : 25.265 ns Reaction : OH^-1 (-1378) + H3O^1 (-938) -> No product
-At time : 25.685 ns Reaction : e_aq^-1 (-404) + H2O2^0 (-1175) -> OH^-1 (-1386) + OH^0 (-1387)
-At time : 26.039 ns Reaction : e_aq^-1 (-275) + H2O2^0 (-1129) -> OH^-1 (-1388) + OH^0 (-1389)
-At time : 26.328 ns Reaction : H^0 (-1305) + e_aq^-1 (-599) -> OH^-1 (-1390) + H_2^0 (-1391)
-At time : 29.221 ns Reaction : H3O^1 (-932) + OH^-1 (-1388) -> No product
-At time : 29.306 ns Reaction : OH^-1 (-1386) + H3O^1 (-950) -> No product
-At time : 30.027 ns Reaction : H3O^1 (-735) + e_aq^-1 (-435) -> H^0 (-1392)
-At time : 31.656 ns Reaction : OH^0 (-1339) + e_aq^-1 (-593) -> OH^-1 (-1393)
-At time : 31.737 ns Reaction : OH^-1 (-1383) + H3O^1 (-1004) -> No product
-At time : 32.074 ns Reaction : OH^-1 (-1390) + H3O^1 (-924) -> No product
-At time : 32.168 ns Reaction : OH^-1 (-1366) + H3O^1 (-992) -> No product
-At time : 33.619 ns Reaction : e_aq^-1 (-475) + H^0 (-1289) -> OH^-1 (-1394) + H_2^0 (-1395)
-At time : 34.474 ns Reaction : e_aq^-1 (-174) + H2O2^0 (-1311) -> OH^-1 (-1396) + OH^0 (-1397)
-At time : 36.425 ns Reaction : e_aq^-1 (-105) + H2O2^0 (-1159) -> OH^-1 (-1398) + OH^0 (-1399)
-At time : 37.57 ns Reaction : e_aq^-1 (-409) + H3O^1 (-944) -> H^0 (-1400)
-At time : 38.236 ns Reaction : H3O^1 (-616) + OH^-1 (-1380) -> No product
-At time : 39.118 ns Reaction : H2O2^0 (-1119) + e_aq^-1 (-590) -> OH^-1 (-1401) + OH^0 (-1402)
-At time : 39.222 ns Reaction : H3O^1 (-674) + e_aq^-1 (-171) -> H^0 (-1403)
-At time : 39.366 ns Reaction : H3O^1 (-807) + OH^-1 (-1401) -> No product
-At time : 47.368 ns Reaction : e_aq^-1 (-199) + H3O^1 (-912) -> H^0 (-1404)
-At time : 48.353 ns Reaction : H3O^1 (-980) + OH^-1 (-1354) -> No product
-At time : 51.064 ns Reaction : e_aq^-1 (-140) + H^0 (-1258) -> OH^-1 (-1405) + H_2^0 (-1406)
-At time : 54.056 ns Reaction : e_aq^-1 (-173) + H2O2^0 (-1193) -> OH^-1 (-1407) + OH^0 (-1408)
-At time : 54.232 ns Reaction : e_aq^-1 (-563) + OH^0 (-1387) -> OH^-1 (-1409)
-At time : 55.609 ns Reaction : e_aq^-1 (-208) + H3O^1 (-601) -> H^0 (-1410)
-At time : 55.982 ns Reaction : OH^-1 (-1364) + H3O^1 (-773) -> No product
-At time : 56.181 ns Reaction : e_aq^-1 (-575) + OH^0 (-1402) -> OH^-1 (-1411)
-At time : 56.31 ns Reaction : OH^0 (-1370) + OH^0 (-597) -> H2O2^0 (-1412)
-At time : 57.677 ns Reaction : e_aq^-1 (-626) + H3O^1 (-860) -> H^0 (-1413)
-At time : 60.901 ns Reaction : e_aq^-1 (-503) + H3O^1 (-1074) -> H^0 (-1414)
-At time : 61.688 ns Reaction : H3O^1 (-813) + OH^-1 (-1405) -> No product
-At time : 64.071 ns Reaction : H2O2^0 (-1156) + e_aq^-1 (-393) -> OH^-1 (-1415) + OH^0 (-1416)
-At time : 64.639 ns Reaction : OH^0 (-1363) + OH^0 (-1416) -> H2O2^0 (-1417)
-At time : 68.293 ns Reaction : e_aq^-1 (-459) + H2O2^0 (-1183) -> OH^-1 (-1418) + OH^0 (-1419)
-At time : 72.377 ns Reaction : e_aq^-1 (-330) + H3O^1 (-1056) -> H^0 (-1420)
-At time : 73.661 ns Reaction : e_aq^-1 (-247) + H2O2^0 (-1227) -> OH^-1 (-1421) + OH^0 (-1422)
-At time : 76.809 ns Reaction : H3O^1 (-595) + OH^-1 (-1415) -> No product
-At time : 77.051 ns Reaction : OH^-1 (-1382) + H3O^1 (-874) -> No product
-At time : 79.223 ns Reaction : OH^-1 (-1418) + H3O^1 (-1046) -> No product
-At time : 80.867 ns Reaction : H^0 (-1321) + H^0 (-1242) -> H_2^0 (-1423)
-At time : 89.897 ns Reaction : H2O2^0 (-1146) + e_aq^-1 (-587) -> OH^-1 (-1424) + OH^0 (-1425)
-At time : 90.905 ns Reaction : OH^-1 (-1409) + H3O^1 (-895) -> No product
-At time : 92.987 ns Reaction : H2O2^0 (-1149) + e_aq^-1 (-623) -> OH^-1 (-1426) + OH^0 (-1427)
-At time : 95.574 ns Reaction : H2O2^0 (-1137) + e_aq^-1 (-186) -> OH^-1 (-1428) + OH^0 (-1429)
-At time : 100.88 ns Reaction : OH^-1 (-1362) + H3O^1 (-876) -> No product
-At time : 101.54 ns Reaction : OH^-1 (-1411) + H3O^1 (-1002) -> No product
-At time : 101.63 ns Reaction : e_aq^-1 (-635) + H2O2^0 (-1224) -> OH^-1 (-1430) + OH^0 (-1431)
-At time : 106.06 ns Reaction : e_aq^-1 (-291) + H3O^1 (-1042) -> H^0 (-1432)
-At time : 112.87 ns Reaction : e_aq^-1 (-156) + H2O2^0 (-1133) -> OH^-1 (-1433) + OH^0 (-1434)
-At time : 113.52 ns Reaction : e_aq^-1 (-297) + H2O2^0 (-1213) -> OH^-1 (-1435) + OH^0 (-1436)
-At time : 113.98 ns Reaction : OH^-1 (-1407) + H3O^1 (-1052) -> No product
-At time : 123.75 ns Reaction : e_aq^-1 (-384) + H2O2^0 (-1181) -> OH^-1 (-1437) + OH^0 (-1438)
-At time : 124.97 ns Reaction : OH^0 (-1436) + H^0 (-1243) -> No product
-At time : 150.04 ns Reaction : e_aq^-1 (-416) + H2O2^0 (-1162) -> OH^-1 (-1439) + OH^0 (-1440)
-At time : 152.1 ns Reaction : e_aq^-1 (-147) + H^0 (-1312) -> OH^-1 (-1441) + H_2^0 (-1442)
-At time : 158.66 ns Reaction : OH^0 (-1399) + OH^0 (-1342) -> H2O2^0 (-1443)
-At time : 161.06 ns Reaction : e_aq^-1 (-608) + H2O2^0 (-1204) -> OH^-1 (-1444) + OH^0 (-1445)
-At time : 163.04 ns Reaction : H3O^1 (-769) + OH^-1 (-1437) -> No product
-At time : 182.25 ns Reaction : e_aq^-1 (-148) + H2O2^0 (-1192) -> OH^-1 (-1446) + OH^0 (-1447)
-At time : 188.32 ns Reaction : OH^0 (-1445) + e_aq^-1 (-270) -> OH^-1 (-1448)
-At time : 204.34 ns Reaction : e_aq^-1 (-602) + H^0 (-1346) -> OH^-1 (-1449) + H_2^0 (-1450)
-At time : 247.3 ns Reaction : OH^0 (-1434) + e_aq^-1 (-510) -> OH^-1 (-1451)
-At time : 260.24 ns Reaction : OH^0 (-1447) + OH^0 (-1408) -> H2O2^0 (-1452)
-At time : 275.89 ns Reaction : OH^-1 (-1428) + H3O^1 (-889) -> No product
-At time : 288.21 ns Reaction : H3O^1 (-966) + OH^-1 (-1451) -> No product
-At time : 293 ns Reaction : H3O^1 (-685) + OH^-1 (-1424) -> No product
-At time : 497.06 ns Reaction : OH^-1 (-1393) + H3O^1 (-910) -> No product
-At time : 513.68 ns Reaction : H3O^1 (-707) + OH^-1 (-1426) -> No product
-At time : 823.23 ns Reaction : OH^0 (-1422) + OH^0 (-1352) -> H2O2^0 (-1453)
-At time : 865.8 ns Reaction : H2O2^0 (-1191) + e_aq^-1 (-581) -> OH^-1 (-1454) + OH^0 (-1455)
+At time : 1 ps Reaction : OH^0 (-975) + OH^0 (-1107) -> H2O2^0 (-1116)
+At time : 1 ps Reaction : OH^0 (-1054) + OH^0 (-1056) -> H2O2^0 (-1117)
+At time : 1 ps Reaction : OH^0 (-1039) + OH^0 (-963) -> H2O2^0 (-1118)
+At time : 2 ps Reaction : H^0 (-1108) + OH^0 (-1016) -> No product
+At time : 2 ps Reaction : OH^0 (-1088) + OH^0 (-1089) -> H2O2^0 (-1119)
+At time : 5 ps Reaction : H^0 (-990) + OH^0 (-734) -> No product
+At time : 9 ps Reaction : H^0 (-1047) + OH^0 (-722) -> No product
+At time : 10 ps Reaction : H^0 (-998) + OH^0 (-1005) -> No product
+At time : 18 ps Reaction : OH^0 (-1022) + e_aq^-1 (-518) -> OH^-1 (-1120)
+At time : 18 ps Reaction : OH^-1 (-1120) + H3O^1 (-1021) -> No product
+At time : 20 ps Reaction : OH^0 (-730) + OH^0 (-738) -> H2O2^0 (-1121)
+At time : 24 ps Reaction : H^0 (-1091) + OH^0 (-848) -> No product
+At time : 25 ps Reaction : OH^0 (-1003) + OH^0 (-1002) -> H2O2^0 (-1122)
+At time : 35 ps Reaction : H^0 (-1069) + OH^0 (-1075) -> No product
+At time : 37 ps Reaction : OH^0 (-1034) + OH^0 (-622) -> H2O2^0 (-1123)
+At time : 43 ps Reaction : OH^0 (-1078) + H^0 (-1079) -> No product
+At time : 64.095 ps Reaction : H^0 (-1065) + OH^0 (-1064) -> No product
+At time : 67.095 ps Reaction : e_aq^-1 (-527) + OH^0 (-896) -> OH^-1 (-1124)
+At time : 68.095 ps Reaction : e_aq^-1 (-103) + OH^0 (-850) -> OH^-1 (-1125)
+At time : 68.095 ps Reaction : e_aq^-1 (-284) + H3O^1 (-789) -> H^0 (-1126)
+At time : 68.095 ps Reaction : H3O^1 (-849) + OH^-1 (-1125) -> No product
+At time : 77.103 ps Reaction : OH^0 (-670) + OH^0 (-726) -> H2O2^0 (-1127)
+At time : 92.103 ps Reaction : OH^0 (-1042) + OH^0 (-1043) -> H2O2^0 (-1128)
+At time : 102.1 ps Reaction : OH^0 (-790) + OH^0 (-792) -> H2O2^0 (-1129)
+At time : 106.1 ps Reaction : OH^0 (-616) + OH^0 (-698) -> H2O2^0 (-1130)
+At time : 108.1 ps Reaction : OH^-1 (-1124) + H3O^1 (-895) -> No product
+At time : 163.57 ps Reaction : e_aq^-1 (-257) + OH^0 (-778) -> OH^-1 (-1131)
+At time : 172.57 ps Reaction : OH^0 (-992) + OH^0 (-754) -> H2O2^0 (-1132)
+At time : 177.78 ps Reaction : OH^0 (-1114) + OH^0 (-1076) -> H2O2^0 (-1133)
+At time : 189.78 ps Reaction : OH^0 (-971) + OH^0 (-858) -> H2O2^0 (-1134)
+At time : 192.78 ps Reaction : H^0 (-1007) + OH^0 (-1006) -> No product
+At time : 211.95 ps Reaction : H^0 (-1081) + OH^0 (-832) -> No product
+At time : 248.81 ps Reaction : e_aq^-1 (-326) + OH^0 (-590) -> OH^-1 (-1135)
+At time : 248.81 ps Reaction : H3O^1 (-665) + OH^-1 (-1135) -> No product
+At time : 262.22 ps Reaction : H^0 (-1032) + OH^0 (-704) -> No product
+At time : 283.52 ps Reaction : e_aq^-1 (-351) + OH^0 (-748) -> OH^-1 (-1136)
+At time : 289.52 ps Reaction : OH^0 (-1097) + OH^0 (-574) -> H2O2^0 (-1137)
+At time : 290.52 ps Reaction : OH^-1 (-565) + H3O^1 (-803) -> No product
+At time : 301.67 ps Reaction : e_aq^-1 (-559) + OH^0 (-614) -> OH^-1 (-1138)
+At time : 303.67 ps Reaction : e_aq^-1 (-378) + OH^0 (-596) -> OH^-1 (-1139)
+At time : 320.88 ps Reaction : OH^0 (-686) + OH^0 (-904) -> H2O2^0 (-1140)
+At time : 372.85 ps Reaction : OH^0 (-624) + OH^0 (-708) -> H2O2^0 (-1141)
+At time : 455.28 ps Reaction : e_aq^-1 (-520) + OH^0 (-959) -> OH^-1 (-1142)
+At time : 459.28 ps Reaction : e_aq^-1 (-423) + H3O^1 (-942) -> H^0 (-1143)
+At time : 537.27 ps Reaction : OH^0 (-999) + OH^0 (-920) -> H2O2^0 (-1144)
+At time : 551.38 ps Reaction : H^0 (-1040) + OH^0 (-718) -> No product
+At time : 567.39 ps Reaction : OH^0 (-836) + OH^0 (-838) -> H2O2^0 (-1145)
+At time : 579.45 ps Reaction : H3O^1 (-639) + OH^-1 (-1131) -> No product
+At time : 580.45 ps Reaction : e_aq^-1 (-273) + OH^0 (-772) -> OH^-1 (-1146)
+At time : 620.94 ps Reaction : H^0 (-1011) + OH^0 (-824) -> No product
+At time : 654.74 ps Reaction : e_aq^-1 (-484) + OH^0 (-886) -> OH^-1 (-1147)
+At time : 664.42 ps Reaction : H3O^1 (-569) + OH^-1 (-1147) -> No product
+At time : 664.42 ps Reaction : OH^0 (-1083) + OH^0 (-1084) -> H2O2^0 (-1148)
+At time : 666.42 ps Reaction : H^0 (-1009) + OH^0 (-756) -> No product
+At time : 691.87 ps Reaction : H3O^1 (-785) + OH^-1 (-1146) -> No product
+At time : 711.85 ps Reaction : H3O^1 (-589) + OH^-1 (-1136) -> No product
+At time : 746.69 ps Reaction : OH^0 (-632) + OH^0 (-944) -> H2O2^0 (-1149)
+At time : 768.43 ps Reaction : e_aq^-1 (-205) + OH^0 (-808) -> OH^-1 (-1150)
+At time : 777.03 ps Reaction : OH^0 (-1071) + OH^0 (-1068) -> H2O2^0 (-1151)
+At time : 796.39 ps Reaction : OH^0 (-961) + H^0 (-962) -> No product
+At time : 810.97 ps Reaction : OH^0 (-846) + OH^0 (-854) -> H2O2^0 (-1152)
+At time : 828.67 ps Reaction : H^0 (-978) + OH^0 (-626) -> No product
+At time : 830.67 ps Reaction : e_aq^-1 (-306) + H3O^1 (-799) -> H^0 (-1153)
+At time : 848.17 ps Reaction : OH^0 (-1008) + H^0 (-1057) -> No product
+At time : 861.08 ps Reaction : H^0 (-1086) + e_aq^-1 (-162) -> OH^-1 (-1154) + H_2^0 (-1155)
+At time : 927.57 ps Reaction : H3O^1 (-1029) + e_aq^-1 (-472) -> H^0 (-1156)
+At time : 972.75 ps Reaction : e_aq^-1 (-114) + H2O2^0 (-1119) -> OH^-1 (-1157) + OH^0 (-1158)
+At time : 989.36 ps Reaction : e_aq^-1 (-440) + OH^0 (-716) -> OH^-1 (-1159)
+At time : 990.36 ps Reaction : OH^-1 (-1139) + H3O^1 (-729) -> No product
+At time : 1.0099 ns Reaction : OH^0 (-989) + OH^0 (-965) -> H2O2^0 (-1160)
+At time : 1.0883 ns Reaction : e_aq^-1 (-187) + OH^0 (-810) -> OH^-1 (-1161)
+At time : 1.0988 ns Reaction : H3O^1 (-867) + OH^-1 (-1150) -> No product
+At time : 1.1433 ns Reaction : OH^0 (-664) + OH^0 (-932) -> H2O2^0 (-1162)
+At time : 1.2308 ns Reaction : OH^0 (-1035) + OH^0 (-1037) -> H2O2^0 (-1163)
+At time : 1.255 ns Reaction : OH^0 (-586) + OH^0 (-782) -> H2O2^0 (-1164)
+At time : 1.3715 ns Reaction : OH^0 (-1019) + OH^0 (-610) -> H2O2^0 (-1165)
+At time : 1.3785 ns Reaction : e_aq^-1 (-176) + H3O^1 (-819) -> H^0 (-1166)
+At time : 1.3895 ns Reaction : H^0 (-1026) + OH^0 (-1028) -> No product
+At time : 1.3995 ns Reaction : OH^0 (-1109) + e_aq^-1 (-245) -> OH^-1 (-1167)
+At time : 1.4144 ns Reaction : e_aq^-1 (-487) + OH^0 (-1030) -> OH^-1 (-1168)
+At time : 1.5507 ns Reaction : H3O^1 (-619) + OH^-1 (-1159) -> No product
+At time : 1.7336 ns Reaction : e_aq^-1 (-152) + H3O^1 (-659) -> H^0 (-1169)
+At time : 1.7957 ns Reaction : OH^-1 (-1168) + H3O^1 (-583) -> No product
+At time : 1.8845 ns Reaction : e_aq^-1 (-467) + H3O^1 (-615) -> H^0 (-1170)
+At time : 1.9697 ns Reaction : OH^0 (-987) + OH^0 (-568) -> H2O2^0 (-1171)
+At time : 2.0472 ns Reaction : e_aq^-1 (-344) + OH^0 (-750) -> OH^-1 (-1172)
+At time : 2.1694 ns Reaction : e_aq^-1 (-327) + OH^0 (-760) -> OH^-1 (-1173)
+At time : 2.2046 ns Reaction : H^0 (-1036) + e_aq^-1 (-486) -> OH^-1 (-1174) + H_2^0 (-1175)
+At time : 2.2702 ns Reaction : H^0 (-1100) + e_aq^-1 (-131) -> OH^-1 (-1176) + H_2^0 (-1177)
+At time : 2.3 ns Reaction : e_aq^-1 (-480) + H3O^1 (-715) -> H^0 (-1178)
+At time : 2.452 ns Reaction : e_aq^-1 (-304) + OH^0 (-766) -> OH^-1 (-1179)
+At time : 2.454 ns Reaction : e_aq^-1 (-357) + H3O^1 (-627) -> H^0 (-1180)
+At time : 2.5228 ns Reaction : OH^0 (-640) + OH^0 (-914) -> H2O2^0 (-1181)
+At time : 2.5282 ns Reaction : e_aq^-1 (-169) + H3O^1 (-809) -> H^0 (-1182)
+At time : 2.5838 ns Reaction : e_aq^-1 (-300) + OH^0 (-636) -> OH^-1 (-1183)
+At time : 2.589 ns Reaction : OH^0 (-1080) + OH^0 (-660) -> H2O2^0 (-1184)
+At time : 2.8422 ns Reaction : e_aq^-1 (-330) + OH^0 (-566) -> OH^-1 (-1185)
+At time : 2.9711 ns Reaction : e_aq^-1 (-83) + H3O^1 (-651) -> H^0 (-1186)
+At time : 3.1429 ns Reaction : e_aq^-1 (-372) + H3O^1 (-741) -> H^0 (-1187)
+At time : 3.1449 ns Reaction : H^0 (-972) + e_aq^-1 (-82) -> OH^-1 (-1188) + H_2^0 (-1189)
+At time : 3.3891 ns Reaction : e_aq^-1 (-290) + OH^0 (-794) -> OH^-1 (-1190)
+At time : 3.4279 ns Reaction : OH^0 (-1092) + e_aq^-1 (-86) -> OH^-1 (-1191)
+At time : 3.4359 ns Reaction : e_aq^-1 (-192) + OH^0 (-953) -> OH^-1 (-1192)
+At time : 3.4579 ns Reaction : H3O^1 (-653) + OH^-1 (-1191) -> No product
+At time : 3.4694 ns Reaction : OH^-1 (-1188) + H3O^1 (-851) -> No product
+At time : 3.5227 ns Reaction : e_aq^-1 (-510) + OH^0 (-938) -> OH^-1 (-1193)
+At time : 3.7407 ns Reaction : e_aq^-1 (-340) + H^0 (-1153) -> OH^-1 (-1194) + H_2^0 (-1195)
+At time : 3.7911 ns Reaction : H3O^1 (-765) + OH^-1 (-1183) -> No product
+At time : 3.8177 ns Reaction : e_aq^-1 (-97) + OH^0 (-650) -> OH^-1 (-1196)
+At time : 3.8879 ns Reaction : e_aq^-1 (-270) + H3O^1 (-793) -> H^0 (-1197)
+At time : 4.1094 ns Reaction : OH^-1 (-1172) + H3O^1 (-948) -> No product
+At time : 4.5465 ns Reaction : OH^0 (-1158) + OH^0 (-856) -> H2O2^0 (-1198)
+At time : 4.6319 ns Reaction : H^0 (-1115) + e_aq^-1 (-174) -> OH^-1 (-1199) + H_2^0 (-1200)
+At time : 4.7438 ns Reaction : e_aq^-1 (-158) + H3O^1 (-863) -> H^0 (-1201)
+At time : 4.7873 ns Reaction : H3O^1 (-633) + OH^-1 (-1185) -> No product
+At time : 4.8982 ns Reaction : e_aq^-1 (-292) + H^0 (-1000) -> OH^-1 (-1202) + H_2^0 (-1203)
+At time : 5.0689 ns Reaction : OH^0 (-780) + OH^0 (-786) -> H2O2^0 (-1204)
+At time : 5.1042 ns Reaction : OH^0 (-1113) + e_aq^-1 (-262) -> OH^-1 (-1205)
+At time : 5.2587 ns Reaction : OH^0 (-662) + OH^0 (-820) -> H2O2^0 (-1206)
+At time : 5.5001 ns Reaction : OH^0 (-728) + OH^0 (-740) -> H2O2^0 (-1207)
+At time : 5.6407 ns Reaction : OH^-1 (-1196) + H3O^1 (-930) -> No product
+At time : 5.7767 ns Reaction : e_aq^-1 (-476) + H3O^1 (-705) -> H^0 (-1208)
+At time : 5.8808 ns Reaction : OH^0 (-816) + OH^0 (-844) -> H2O2^0 (-1209)
+At time : 6.4635 ns Reaction : e_aq^-1 (-560) + OH^0 (-906) -> OH^-1 (-1210)
+At time : 6.5352 ns Reaction : e_aq^-1 (-281) + H2O2^0 (-1181) -> OH^-1 (-1211) + OH^0 (-1212)
+At time : 6.8848 ns Reaction : OH^-1 (-1154) + H3O^1 (-815) -> No product
+At time : 6.8848 ns Reaction : OH^0 (-714) + OH^0 (-882) -> H2O2^0 (-1213)
+At time : 6.9969 ns Reaction : H3O^1 (-753) + OH^-1 (-1194) -> No product
+At time : 8.0702 ns Reaction : OH^-1 (-1190) + H3O^1 (-587) -> No product
+At time : 8.1596 ns Reaction : OH^0 (-980) + OH^0 (-977) -> H2O2^0 (-1214)
+At time : 8.3354 ns Reaction : e_aq^-1 (-165) + H3O^1 (-593) -> H^0 (-1215)
+At time : 8.554 ns Reaction : OH^0 (-973) + e_aq^-1 (-150) -> OH^-1 (-1216)
+At time : 8.8029 ns Reaction : OH^0 (-994) + OH^0 (-634) -> H2O2^0 (-1217)
+At time : 8.9709 ns Reaction : e_aq^-1 (-459) + OH^0 (-700) -> OH^-1 (-1218)
+At time : 9.0633 ns Reaction : H^0 (-982) + e_aq^-1 (-247) -> OH^-1 (-1219) + H_2^0 (-1220)
+At time : 9.4968 ns Reaction : OH^0 (-1051) + OH^0 (-742) -> H2O2^0 (-1221)
+At time : 9.5847 ns Reaction : OH^0 (-800) + OH^0 (-802) -> H2O2^0 (-1222)
+At time : 9.6827 ns Reaction : e_aq^-1 (-390) + OH^0 (-744) -> OH^-1 (-1223)
+At time : 9.7477 ns Reaction : H3O^1 (-745) + OH^-1 (-1223) -> No product
+At time : 10.662 ns Reaction : OH^0 (-712) + OH^0 (-884) -> H2O2^0 (-1224)
+At time : 10.722 ns Reaction : e_aq^-1 (-250) + OH^0 (-774) -> OH^-1 (-1225)
+At time : 11.044 ns Reaction : OH^-1 (-1202) + H3O^1 (-767) -> No product
+At time : 11.053 ns Reaction : e_aq^-1 (-119) + OH^0 (-658) -> OH^-1 (-1226)
+At time : 11.832 ns Reaction : OH^0 (-983) + OH^0 (-822) -> H2O2^0 (-1227)
+At time : 11.963 ns Reaction : e_aq^-1 (-338) + OH^0 (-1067) -> OH^-1 (-1228)
+At time : 12.059 ns Reaction : H3O^1 (-641) + OH^-1 (-1228) -> No product
+At time : 12.611 ns Reaction : H3O^1 (-1072) + OH^-1 (-1161) -> No product
+At time : 14.409 ns Reaction : e_aq^-1 (-461) + OH^0 (-696) -> OH^-1 (-1229)
+At time : 15.271 ns Reaction : H^0 (-1178) + e_aq^-1 (-483) -> OH^-1 (-1230) + H_2^0 (-1231)
+At time : 15.406 ns Reaction : H^0 (-1059) + OH^0 (-995) -> No product
+At time : 15.727 ns Reaction : OH^-1 (-1192) + H3O^1 (-577) -> No product
+At time : 15.91 ns Reaction : H^0 (-1166) + OH^0 (-868) -> No product
+At time : 16.643 ns Reaction : H^0 (-984) + e_aq^-1 (-186) -> OH^-1 (-1232) + H_2^0 (-1233)
+At time : 17.465 ns Reaction : OH^-1 (-1179) + H3O^1 (-763) -> No product
+At time : 17.939 ns Reaction : H3O^1 (-875) + e_aq^-1 (-919) -> H^0 (-1234)
+At time : 18.906 ns Reaction : e_aq^-1 (-151) + OH^0 (-1013) -> OH^-1 (-1235)
+At time : 21.227 ns Reaction : e_aq^-1 (-196) + OH^0 (-798) -> OH^-1 (-1236)
+At time : 21.622 ns Reaction : OH^0 (-648) + OH^0 (-840) -> H2O2^0 (-1237)
+At time : 21.88 ns Reaction : H3O^1 (-749) + OH^-1 (-1211) -> No product
+At time : 22.013 ns Reaction : e_aq^-1 (-409) + OH^0 (-668) -> OH^-1 (-1238)
+At time : 22.604 ns Reaction : e_aq^-1 (-161) + OH^0 (-592) -> OH^-1 (-1239)
+At time : 22.85 ns Reaction : OH^-1 (-1218) + H3O^1 (-697) -> No product
+At time : 23.555 ns Reaction : OH^-1 (-1176) + H3O^1 (-853) -> No product
+At time : 23.936 ns Reaction : OH^-1 (-1199) + H3O^1 (-915) -> No product
+At time : 28.116 ns Reaction : OH^0 (-1101) + OH^0 (-746) -> H2O2^0 (-1240)
+At time : 28.915 ns Reaction : e_aq^-1 (-318) + OH^0 (-874) -> OH^-1 (-1241)
+At time : 29.802 ns Reaction : e_aq^-1 (-145) + H3O^1 (-829) -> H^0 (-1242)
+At time : 31.385 ns Reaction : e_aq^-1 (-374) + OH^0 (-732) -> OH^-1 (-1243)
+At time : 32.481 ns Reaction : H3O^1 (-599) + OH^-1 (-1229) -> No product
+At time : 34.512 ns Reaction : e_aq^-1 (-88) + H2O2^0 (-1198) -> OH^-1 (-1244) + OH^0 (-1245)
+At time : 34.848 ns Reaction : H3O^1 (-859) + OH^-1 (-1235) -> No product
+At time : 37.71 ns Reaction : e_aq^-1 (-188) + OH^0 (-818) -> OH^-1 (-1246)
+At time : 38.423 ns Reaction : OH^-1 (-1241) + H3O^1 (-791) -> No product
+At time : 38.608 ns Reaction : OH^0 (-1104) + OH^0 (-894) -> H2O2^0 (-1247)
+At time : 38.971 ns Reaction : H3O^1 (-667) + OH^-1 (-1243) -> No product
+At time : 41.311 ns Reaction : H3O^1 (-787) + OH^-1 (-1225) -> No product
+At time : 41.77 ns Reaction : OH^-1 (-1219) + H3O^1 (-865) -> No product
+At time : 50.275 ns Reaction : e_aq^-1 (-120) + OH^0 (-862) -> OH^-1 (-1248)
+At time : 50.592 ns Reaction : H3O^1 (-681) + OH^-1 (-1210) -> No product
+At time : 51.184 ns Reaction : e_aq^-1 (-200) + H2O2^0 (-1237) -> OH^-1 (-1249) + OH^0 (-1250)
+At time : 54.062 ns Reaction : OH^0 (-576) + OH^0 (-866) -> H2O2^0 (-1251)
+At time : 54.618 ns Reaction : OH^-1 (-1236) + H3O^1 (-921) -> No product
+At time : 56.223 ns Reaction : e_aq^-1 (-443) + OH^0 (-602) -> OH^-1 (-1252)
+At time : 56.245 ns Reaction : OH^-1 (-1246) + H3O^1 (-933) -> No product
+At time : 57.124 ns Reaction : e_aq^-1 (-471) + OH^0 (-702) -> OH^-1 (-1253)
+At time : 58.402 ns Reaction : H3O^1 (-1062) + OH^-1 (-1205) -> No product
+At time : 58.616 ns Reaction : e_aq^-1 (-283) + OH^0 (-812) -> OH^-1 (-1254)
+At time : 58.836 ns Reaction : H3O^1 (-991) + OH^-1 (-1249) -> No product
+At time : 59.962 ns Reaction : OH^0 (-1085) + e_aq^-1 (-156) -> OH^-1 (-1255)
+At time : 61.385 ns Reaction : e_aq^-1 (-376) + OH^0 (-666) -> OH^-1 (-1256)
+At time : 70.718 ns Reaction : H2O2^0 (-1144) + e_aq^-1 (-955) -> OH^-1 (-1257) + OH^0 (-1258)
+At time : 74.56 ns Reaction : e_aq^-1 (-246) + OH^0 (-762) -> OH^-1 (-1259)
+At time : 74.839 ns Reaction : e_aq^-1 (-203) + OH^0 (-642) -> OH^-1 (-1260)
+At time : 75.177 ns Reaction : H3O^1 (-725) + e_aq^-1 (-943) -> H^0 (-1261)
+At time : 79.718 ns Reaction : e_aq^-1 (-422) + OH^0 (-598) -> OH^-1 (-1262)
+At time : 80.889 ns Reaction : OH^0 (-1058) + OH^0 (-1052) -> H2O2^0 (-1263)
+At time : 90.835 ns Reaction : e_aq^-1 (-197) + OH^0 (-804) -> OH^-1 (-1264)
+At time : 92.553 ns Reaction : H3O^1 (-1033) + OH^-1 (-1253) -> No product
+At time : 94.783 ns Reaction : e_aq^-1 (-171) + OH^0 (-1014) -> OH^-1 (-1265)
+At time : 96.541 ns Reaction : e_aq^-1 (-387) + OH^0 (-706) -> OH^-1 (-1266)
+At time : 99.427 ns Reaction : OH^-1 (-1173) + H3O^1 (-761) -> No product
+At time : 100.41 ns Reaction : e_aq^-1 (-297) + H3O^1 (-847) -> H^0 (-1267)
+At time : 114.03 ns Reaction : e_aq^-1 (-130) + H3O^1 (-661) -> H^0 (-1268)
+At time : 127.33 ns Reaction : e_aq^-1 (-913) + OH^0 (-947) -> OH^-1 (-1269)
+At time : 127.64 ns Reaction : OH^-1 (-1256) + H3O^1 (-945) -> No product
+At time : 133.56 ns Reaction : OH^-1 (-1216) + H3O^1 (-954) -> No product
+At time : 136.58 ns Reaction : e_aq^-1 (-397) + H3O^1 (-709) -> H^0 (-1270)
+At time : 141.34 ns Reaction : e_aq^-1 (-111) + OH^0 (-594) -> OH^-1 (-1271)
+At time : 148.15 ns Reaction : e_aq^-1 (-337) + H3O^1 (-841) -> H^0 (-1272)
+At time : 152.11 ns Reaction : e_aq^-1 (-385) + OH^0 (-1258) -> OH^-1 (-1273)
+At time : 154.88 ns Reaction : e_aq^-1 (-352) + OH^0 (-752) -> OH^-1 (-1274)
+At time : 155.34 ns Reaction : H3O^1 (-871) + OH^-1 (-1259) -> No product
+At time : 161.33 ns Reaction : H3O^1 (-759) + OH^-1 (-1232) -> No product
+At time : 161.55 ns Reaction : OH^0 (-1044) + OH^0 (-582) -> H2O2^0 (-1275)
+At time : 165.04 ns Reaction : e_aq^-1 (-442) + OH^0 (-692) -> OH^-1 (-1276)
+At time : 173.43 ns Reaction : OH^-1 (-1254) + H3O^1 (-843) -> No product
+At time : 212.02 ns Reaction : H3O^1 (-621) + OH^-1 (-1238) -> No product
+At time : 235.09 ns Reaction : e_aq^-1 (-460) + OH^0 (-1046) -> OH^-1 (-1277)
+At time : 235.95 ns Reaction : OH^0 (-600) + H^0 (-1261) -> No product
+At time : 282.02 ns Reaction : e_aq^-1 (-425) + H^0 (-966) -> OH^-1 (-1278) + H_2^0 (-1279)
+At time : 300.35 ns Reaction : e_aq^-1 (-427) + H2O2^0 (-1213) -> OH^-1 (-1280) + OH^0 (-1281)
+At time : 399.38 ns Reaction : e_aq^-1 (-147) + OH^0 (-646) -> OH^-1 (-1282)
+At time : 399.9 ns Reaction : e_aq^-1 (-303) + OH^0 (-572) -> OH^-1 (-1283)
+At time : 431.8 ns Reaction : e_aq^-1 (-388) + H2O2^0 (-1128) -> OH^-1 (-1284) + OH^0 (-1285)
+At time : 491.96 ns Reaction : e_aq^-1 (-143) + H3O^1 (-797) -> H^0 (-1286)
+At time : 500.07 ns Reaction : OH^-1 (-1282) + H3O^1 (-855) -> No product
+At time : 535.82 ns Reaction : OH^0 (-981) + e_aq^-1 (-307) -> OH^-1 (-1287)
+At time : 568.57 ns Reaction : e_aq^-1 (-277) + H3O^1 (-769) -> H^0 (-1288)
+At time : 591.05 ns Reaction : H3O^1 (-891) + OH^-1 (-1277) -> No product
+At time : 596.71 ns Reaction : H3O^1 (-617) + OH^-1 (-1269) -> No product
+At time : 665.26 ns Reaction : e_aq^-1 (-116) + OH^0 (-806) -> OH^-1 (-1289)
+At time : 687.27 ns Reaction : OH^-1 (-1283) + H3O^1 (-831) -> No product
+At time : 731.12 ns Reaction : e_aq^-1 (-431) + H2O2^0 (-1130) -> OH^-1 (-1290) + OH^0 (-1291)
+At time : 775.62 ns Reaction : e_aq^-1 (-305) + e_aq^-1 (-928) -> OH^-1 (-1292) + OH^-1 (-1293) + H_2^0 (-1294)
+At time : 787.32 ns Reaction : e_aq^-1 (-91) + H3O^1 (-739) -> H^0 (-1295)
+At time : 860.56 ns Reaction : OH^-1 (-1262) + H3O^1 (-957) -> No product
+At time : 881.71 ns Reaction : e_aq^-1 (-526) + OH^0 (-678) -> OH^-1 (-1296)
+At time : 899.62 ns Reaction : e_aq^-1 (-358) + H2O2^0 (-1160) -> OH^-1 (-1297) + OH^0 (-1298)
+At time : 926.04 ns Reaction : e_aq^-1 (-105) + OH^0 (-878) -> OH^-1 (-1299)
*** G4Scheduler ends at time : 1 us
___________________________________
Run terminated.
Run Summary
Number of events processed : 1
- User=47.820000s Real=48.699182s Sys=0.010000s
+ User=121.050000s Real=121.806572s Sys=0.050000s
G4 kernel has come to Quit state.
UserDetectorConstruction deleted.
UserPhysicsList deleted.
@@ -638,7 +490,7 @@ RunManager is deleting RunManagerKernel.
EventManager deleted.
Units table cleared.
TransportationManager deleted.
-Total navigation history collections cleaned: 1417
+Total navigation history collections cleaned: 1489
================== Deleting memory pools ===================
Pool ID '20G4NavigationLevelRep', size : 1.09 MB
Pool ID '19G4ElectronOccupancy', size : 0.000961 MB
@@ -646,15 +498,15 @@ Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
Pool ID '7G4Event', size : 0.000961 MB
Pool ID '15G4PrimaryVertex', size : 0.000961 MB
Pool ID '17G4PrimaryParticle', size : 0.000961 MB
-Pool ID '17G4DynamicParticle', size : 0.152 MB
-Pool ID '7G4Track', size : 0.303 MB
-Pool ID '18G4TouchableHistory', size : 0.0856 MB
-Pool ID '15G4CountedObjectIvE', size : 0.0279 MB
-Pool ID '10G4Molecule', size : 0.0913 MB
+Pool ID '17G4DynamicParticle', size : 0.156 MB
+Pool ID '7G4Track', size : 0.311 MB
+Pool ID '18G4TouchableHistory', size : 0.0894 MB
+Pool ID '15G4CountedObjectIvE', size : 0.0288 MB
+Pool ID '10G4Molecule', size : 0.0932 MB
Pool ID '8G4KDTree', size : 0.000961 MB
-Pool ID '8G4KDNodeI4G4ITE', size : 0.0644 MB
+Pool ID '8G4KDNodeI4G4ITE', size : 0.0625 MB
Pool ID '14G4KDTreeResult', size : 0.000961 MB
-Pool ID '8G4KDNodeI10G4MoleculeE', size : 0.00288 MB
+Pool ID '8G4KDNodeI10G4MoleculeE', size : 0.000961 MB
Number of memory pools allocated: 15 of which, static: 0
Dynamic pools deleted: 15 / Total memory freed: 1.8 MB
============================================================
diff --git a/examples/extended/medical/dna/chem1/src/PhysicsList.cc b/examples/extended/medical/dna/chem1/src/PhysicsList.cc
index f11a0d059fb..40f0a519abe 100644
--- a/examples/extended/medical/dna/chem1/src/PhysicsList.cc
+++ b/examples/extended/medical/dna/chem1/src/PhysicsList.cc
@@ -98,6 +98,7 @@ void PhysicsList::ConstructParticle()
void PhysicsList::ConstructProcess()
{
+ AddTransportation();
if(fEmDNAPhysicsList) { fEmDNAPhysicsList->ConstructProcess(); }
if(fEmDNAChemistryList) { fEmDNAChemistryList->ConstructProcess(); }
if(fEmDNAChemistryList1) { fEmDNAChemistryList1->ConstructProcess(); }
diff --git a/examples/extended/medical/dna/chem2/History b/examples/extended/medical/dna/chem2/History
index aa31a7c14ca..d0bd4ee07e6 100644
--- a/examples/extended/medical/dna/chem2/History
+++ b/examples/extended/medical/dna/chem2/History
@@ -14,6 +14,10 @@ committal in the CVS repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+08 Feb 2019 - VI, WGS, SI tag chem2-V10-04-03
+-----------------------------------------------------
+- Fixed PhysicsList
+
28.11.2018 V. Ivanchenko tag chem2-V10-04-02
-----------------------------------------------------
- Fixed nightly problem by change initial parameters in beam.in and
diff --git a/examples/extended/medical/dna/chem2/chem2.out b/examples/extended/medical/dna/chem2/chem2.out
index 51489a8e046..829f8398895 100644
--- a/examples/extended/medical/dna/chem2/chem2.out
+++ b/examples/extended/medical/dna/chem2/chem2.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -20,166 +16,166 @@ PhysicsList::RegisterConstructor:
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 100 TeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreConversion : Emin= 0 eV Emax= 80 GeV
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ LivermoreConversion : Emin= 0 eV Emax= 80 GeV
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-e-_G4DNAElectronSolvation: for e- SubType= 58 BuildTable= 0
+e-_G4DNAElectronSolvation: for e- SubType=58 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAOneStepThermalizationModel_Meesungnoen2002 : Emin= 0 eV Emax= 7.4 eV
+DNAOneStepThermalizationModel_Meesungnoen2002 : Emin= 0 eV Emax= 7.4 eV
-e-_G4DNAElastic: for e- SubType= 51 BuildTable= 0
+e-_G4DNAElastic: for e- SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
+DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAExcitation: for e- SubType= 52 BuildTable= 0
+e-_G4DNAExcitation: for e- SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
+DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAIonisation: for e- SubType= 53 BuildTable= 0
+e-_G4DNAIonisation: for e- SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornIonisationModel : Emin= 0 eV Emax= 1 MeV deltaBorn FluoActive
+DNABornIonisationModel : Emin= 0 eV Emax= 1 MeV deltaBorn Fluo
-e-_G4DNAVibExcitation: for e- SubType= 54 BuildTable= 0
+e-_G4DNAVibExcitation: for e- SubType=54 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
+DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
-e-_G4DNAAttachment: for e- SubType= 55 BuildTable= 0
+e-_G4DNAAttachment: for e- SubType=55 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
+DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-proton_G4DNAElastic: for proton SubType= 51 BuildTable= 0
+proton_G4DNAElastic: for proton SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-proton_G4DNAExcitation: for proton SubType= 52 BuildTable= 0
+proton_G4DNAExcitation: for proton SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
-proton_G4DNAIonisation: for proton SubType= 53 BuildTable= 0
+proton_G4DNAIonisation: for proton SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd FluoActive
-DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd Fluo
+DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn Fluo
-proton_G4DNAChargeDecrease: for proton SubType= 56 BuildTable= 0
+proton_G4DNAChargeDecrease: for proton SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
-GenericIon_G4DNAIonisation: for GenericIon SubType= 53 BuildTable= 0
+GenericIon_G4DNAIonisation: for GenericIon SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd Fluo
-alpha_G4DNAElastic: for alpha SubType= 51 BuildTable= 0
+alpha_G4DNAElastic: for alpha SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha_G4DNAExcitation: for alpha SubType= 52 BuildTable= 0
+alpha_G4DNAExcitation: for alpha SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha_G4DNAIonisation: for alpha SubType= 53 BuildTable= 0
+alpha_G4DNAIonisation: for alpha SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-alpha_G4DNAChargeDecrease: for alpha SubType= 56 BuildTable= 0
+alpha_G4DNAChargeDecrease: for alpha SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAElastic: for alpha+ SubType= 51 BuildTable= 0
+alpha+_G4DNAElastic: for alpha+ SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha+_G4DNAExcitation: for alpha+ SubType= 52 BuildTable= 0
+alpha+_G4DNAExcitation: for alpha+ SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAIonisation: for alpha+ SubType= 53 BuildTable= 0
+alpha+_G4DNAIonisation: for alpha+ SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-alpha+_G4DNAChargeDecrease: for alpha+ SubType= 56 BuildTable= 0
+alpha+_G4DNAChargeDecrease: for alpha+ SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAChargeIncrease: for alpha+ SubType= 57 BuildTable= 0
+alpha+_G4DNAChargeIncrease: for alpha+ SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAElastic: for helium SubType= 51 BuildTable= 0
+helium_G4DNAElastic: for helium SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-helium_G4DNAExcitation: for helium SubType= 52 BuildTable= 0
+helium_G4DNAExcitation: for helium SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAIonisation: for helium SubType= 53 BuildTable= 0
+helium_G4DNAIonisation: for helium SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-helium_G4DNAChargeIncrease: for helium SubType= 57 BuildTable= 0
+helium_G4DNAChargeIncrease: for helium SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-hydrogen_G4DNAElastic: for hydrogen SubType= 51 BuildTable= 0
+hydrogen_G4DNAElastic: for hydrogen SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-hydrogen_G4DNAExcitation: for hydrogen SubType= 52 BuildTable= 0
+hydrogen_G4DNAExcitation: for hydrogen SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-hydrogen_G4DNAIonisation: for hydrogen SubType= 53 BuildTable= 0
+hydrogen_G4DNAIonisation: for hydrogen SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd Fluo
-hydrogen_G4DNAChargeIncrease: for hydrogen SubType= 57 BuildTable= 0
+hydrogen_G4DNAChargeIncrease: for hydrogen SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
Physics stage ends
Number of chemical species involved in reactions = 6
Reaction Reaction Rate [dm3/(mol*s)] Interaction Range for chosen reaction model [nm]
@@ -204,4241 +200,4082 @@ H^0 + H^0 -> H_2^0 1.2e+10 0.2265
------------------------------------------------------------------------------------------------------------------------------
DNAMolecularStepByStepModel will be used
*** G4Scheduler starts processing
-At time : 1 ps Reaction : H^0 (-11310) + OH^0 (-5911) -> No product
-At time : 1 ps Reaction : OH^0 (-11309) + OH^0 (-5808) -> H2O2^0 (-11311)
-At time : 1 ps Reaction : OH^0 (-11308) + OH^0 (-8490) -> H2O2^0 (-11312)
-At time : 1 ps Reaction : OH^0 (-11304) + OH^0 (-5751) -> H2O2^0 (-11313)
-At time : 1 ps Reaction : OH^0 (-11303) + OH^0 (-10743) -> H2O2^0 (-11314)
-At time : 1 ps Reaction : OH^0 (-11302) + OH^0 (-7927) -> H2O2^0 (-11315)
-At time : 1 ps Reaction : H3O^1 (-11299) + OH^-1 (-5768) -> No product
-At time : 1 ps Reaction : OH^0 (-11298) + H^0 (-9241) -> No product
-At time : 1 ps Reaction : H3O^1 (-11297) + OH^-1 (-5720) -> No product
-At time : 1 ps Reaction : H^0 (-11296) + OH^0 (-9230) -> No product
-At time : 1 ps Reaction : OH^0 (-11295) + OH^0 (-6466) -> H2O2^0 (-11316)
-At time : 1 ps Reaction : OH^0 (-11292) + OH^0 (-6210) -> H2O2^0 (-11317)
-At time : 1 ps Reaction : OH^0 (-11291) + OH^0 (-5860) -> H2O2^0 (-11318)
-At time : 1 ps Reaction : OH^0 (-11288) + OH^0 (-6468) -> H2O2^0 (-11319)
-At time : 1 ps Reaction : H^0 (-11287) + OH^0 (-9316) -> No product
-At time : 1 ps Reaction : OH^0 (-11286) + OH^0 (-6161) -> H2O2^0 (-11320)
-At time : 1 ps Reaction : OH^0 (-11285) + OH^0 (-8008) -> H2O2^0 (-11321)
-At time : 1 ps Reaction : OH^0 (-11284) + OH^0 (-6461) -> H2O2^0 (-11322)
-At time : 1 ps Reaction : OH^0 (-11282) + OH^0 (-8437) -> H2O2^0 (-11323)
-At time : 1 ps Reaction : H3O^1 (-11281) + OH^-1 (-5717) -> No product
-At time : 1 ps Reaction : OH^0 (-11280) + OH^0 (-8891) -> H2O2^0 (-11324)
-At time : 1 ps Reaction : H3O^1 (-11279) + OH^-1 (-5747) -> No product
-At time : 1 ps Reaction : OH^0 (-11277) + OH^0 (-5772) -> H2O2^0 (-11325)
-At time : 1 ps Reaction : OH^0 (-11276) + OH^0 (-5875) -> H2O2^0 (-11326)
-At time : 1 ps Reaction : H3O^1 (-11275) + OH^-1 (-5729) -> No product
-At time : 1 ps Reaction : H^0 (-11274) + OH^0 (-6148) -> No product
-At time : 1 ps Reaction : OH^0 (-11273) + OH^0 (-5887) -> H2O2^0 (-11327)
-At time : 1 ps Reaction : OH^0 (-11272) + OH^0 (-10796) -> H2O2^0 (-11328)
-At time : 1 ps Reaction : H3O^1 (-11271) + OH^-1 (-5732) -> No product
-At time : 1 ps Reaction : H^0 (-11270) + OH^0 (-6158) -> No product
-At time : 1 ps Reaction : OH^0 (-11269) + OH^0 (-6470) -> H2O2^0 (-11329)
-At time : 1 ps Reaction : OH^0 (-11268) + OH^0 (-8717) -> H2O2^0 (-11330)
-At time : 1 ps Reaction : H3O^1 (-11267) + OH^-1 (-5735) -> No product
-At time : 1 ps Reaction : OH^0 (-11266) + OH^0 (-6173) -> H2O2^0 (-11331)
-At time : 1 ps Reaction : H3O^1 (-11265) + OH^-1 (-5723) -> No product
-At time : 1 ps Reaction : OH^0 (-11263) + OH^0 (-6472) -> H2O2^0 (-11332)
-At time : 1 ps Reaction : H^0 (-11262) + OH^0 (-10582) -> No product
-At time : 1 ps Reaction : OH^0 (-11261) + OH^0 (-6363) -> H2O2^0 (-11333)
-At time : 1 ps Reaction : H3O^1 (-11259) + OH^-1 (-5744) -> No product
-At time : 1 ps Reaction : OH^0 (-11257) + OH^0 (-6476) -> H2O2^0 (-11334)
-At time : 1 ps Reaction : OH^0 (-7477) + OH^0 (-11256) -> H2O2^0 (-11335)
-At time : 1 ps Reaction : OH^0 (-11255) + OH^0 (-6268) -> H2O2^0 (-11336)
-At time : 1 ps Reaction : OH^0 (-11253) + OH^0 (-6943) -> H2O2^0 (-11337)
-At time : 1 ps Reaction : OH^0 (-11252) + OH^0 (-6869) -> H2O2^0 (-11338)
-At time : 1 ps Reaction : OH^0 (-11249) + OH^0 (-6474) -> H2O2^0 (-11339)
-At time : 1 ps Reaction : OH^0 (-11246) + OH^0 (-7809) -> H2O2^0 (-11340)
-At time : 1 ps Reaction : OH^0 (-11245) + OH^0 (-5986) -> H2O2^0 (-11341)
-At time : 1 ps Reaction : H^0 (-11241) + OH^0 (-5890) -> No product
-At time : 1 ps Reaction : OH^0 (-11240) + OH^0 (-6478) -> H2O2^0 (-11342)
-At time : 1 ps Reaction : OH^0 (-11238) + OH^0 (-6261) -> H2O2^0 (-11343)
-At time : 1 ps Reaction : OH^0 (-11237) + OH^0 (-6787) -> H2O2^0 (-11344)
-At time : 1 ps Reaction : H3O^1 (-11236) + OH^-1 (-5738) -> No product
-At time : 1 ps Reaction : H^0 (-11235) + OH^0 (-6016) -> No product
-At time : 1 ps Reaction : OH^0 (-11234) + OH^0 (-6480) -> H2O2^0 (-11345)
-At time : 1 ps Reaction : OH^0 (-11232) + OH^0 (-6277) -> H2O2^0 (-11346)
-At time : 1 ps Reaction : H^0 (-11229) + OH^0 (-7232) -> No product
-At time : 1 ps Reaction : OH^0 (-11228) + OH^0 (-6482) -> H2O2^0 (-11347)
-At time : 1 ps Reaction : OH^0 (-11227) + OH^0 (-7057) -> H2O2^0 (-11348)
-At time : 1 ps Reaction : H3O^1 (-11226) + OH^-1 (-5756) -> No product
-At time : 1 ps Reaction : OH^0 (-11224) + OH^0 (-6484) -> H2O2^0 (-11349)
-At time : 1 ps Reaction : OH^0 (-11223) + OH^0 (-5842) -> H2O2^0 (-11350)
-At time : 1 ps Reaction : H3O^1 (-11222) + OH^-1 (-5726) -> No product
-At time : 1 ps Reaction : OH^0 (-11221) + OH^0 (-7439) -> H2O2^0 (-11351)
-At time : 1 ps Reaction : OH^0 (-11220) + OH^0 (-6287) -> H2O2^0 (-11352)
-At time : 1 ps Reaction : H^0 (-11218) + OH^0 (-8011) -> No product
-At time : 1 ps Reaction : OH^0 (-11217) + OH^0 (-6486) -> H2O2^0 (-11353)
-At time : 1 ps Reaction : H^0 (-11216) + OH^0 (-9290) -> No product
-At time : 1 ps Reaction : OH^0 (-11215) + OH^0 (-6488) -> H2O2^0 (-11354)
-At time : 1 ps Reaction : OH^0 (-11214) + OH^0 (-5781) -> H2O2^0 (-11355)
-At time : 1 ps Reaction : OH^0 (-11213) + OH^0 (-6159) -> H2O2^0 (-11356)
-At time : 1 ps Reaction : H^0 (-11211) + OH^0 (-8995) -> No product
-At time : 1 ps Reaction : OH^0 (-11210) + OH^0 (-6498) -> H2O2^0 (-11357)
-At time : 1 ps Reaction : OH^0 (-11209) + OH^0 (-6670) -> H2O2^0 (-11358)
-At time : 1 ps Reaction : OH^0 (-11208) + OH^0 (-6672) -> H2O2^0 (-11359)
-At time : 1 ps Reaction : OH^0 (-11205) + OH^0 (-6500) -> H2O2^0 (-11360)
-At time : 1 ps Reaction : OH^0 (-11204) + OH^0 (-6825) -> H2O2^0 (-11361)
-At time : 1 ps Reaction : OH^0 (-11203) + OH^0 (-6580) -> H2O2^0 (-11362)
-At time : 1 ps Reaction : OH^0 (-11201) + OH^0 (-7254) -> H2O2^0 (-11363)
-At time : 1 ps Reaction : OH^0 (-11200) + OH^0 (-6155) -> H2O2^0 (-11364)
-At time : 1 ps Reaction : OH^0 (-11197) + OH^0 (-6444) -> H2O2^0 (-11365)
-At time : 1 ps Reaction : OH^0 (-11196) + OH^0 (-7168) -> H2O2^0 (-11366)
-At time : 1 ps Reaction : OH^0 (-11195) + OH^0 (-5799) -> H2O2^0 (-11367)
-At time : 1 ps Reaction : OH^0 (-11192) + OH^0 (-6490) -> H2O2^0 (-11368)
-At time : 1 ps Reaction : OH^0 (-11190) + OH^0 (-6502) -> H2O2^0 (-11369)
-At time : 1 ps Reaction : OH^0 (-11189) + OH^0 (-9224) -> H2O2^0 (-11370)
-At time : 1 ps Reaction : OH^0 (-11188) + OH^0 (-6315) -> H2O2^0 (-11371)
-At time : 1 ps Reaction : OH^0 (-11185) + OH^0 (-5742) -> H2O2^0 (-11372)
-At time : 1 ps Reaction : H^0 (-11184) + OH^0 (-10463) -> No product
-At time : 1 ps Reaction : OH^0 (-11183) + OH^0 (-6492) -> H2O2^0 (-11373)
-At time : 1 ps Reaction : OH^0 (-11182) + OH^0 (-6516) -> H2O2^0 (-11374)
-At time : 1 ps Reaction : OH^0 (-11181) + OH^0 (-6235) -> H2O2^0 (-11375)
-At time : 1 ps Reaction : H^0 (-11179) + OH^0 (-9096) -> No product
-At time : 1 ps Reaction : OH^0 (-11178) + OH^0 (-6496) -> H2O2^0 (-11376)
-At time : 1 ps Reaction : OH^0 (-11177) + OH^0 (-6223) -> H2O2^0 (-11377)
-At time : 1 ps Reaction : H3O^1 (-11176) + OH^-1 (-5759) -> No product
-At time : 1 ps Reaction : OH^0 (-11174) + OH^0 (-6494) -> H2O2^0 (-11378)
-At time : 1 ps Reaction : H3O^1 (-11172) + OH^-1 (-5714) -> No product
-At time : 1 ps Reaction : H^0 (-11171) + OH^0 (-6953) -> No product
-At time : 1 ps Reaction : OH^0 (-11170) + OH^0 (-6504) -> H2O2^0 (-11379)
-At time : 1 ps Reaction : OH^0 (-11166) + OH^0 (-6512) -> H2O2^0 (-11380)
-At time : 1 ps Reaction : OH^0 (-11165) + OH^0 (-8581) -> H2O2^0 (-11381)
-At time : 1 ps Reaction : H3O^1 (-11164) + OH^-1 (-5741) -> No product
-At time : 1 ps Reaction : H^0 (-11163) + OH^0 (-8760) -> No product
-At time : 1 ps Reaction : OH^0 (-11162) + OH^0 (-6506) -> H2O2^0 (-11382)
-At time : 1 ps Reaction : H^0 (-11159) + OH^0 (-7080) -> No product
-At time : 1 ps Reaction : OH^0 (-11158) + OH^0 (-6508) -> H2O2^0 (-11383)
-At time : 1 ps Reaction : OH^0 (-11157) + OH^0 (-6388) -> H2O2^0 (-11384)
-At time : 1 ps Reaction : OH^0 (-11156) + OH^0 (-6290) -> H2O2^0 (-11385)
-At time : 1 ps Reaction : OH^0 (-11153) + OH^0 (-6510) -> H2O2^0 (-11386)
-At time : 1 ps Reaction : OH^0 (-11151) + OH^0 (-6514) -> H2O2^0 (-11387)
-At time : 1 ps Reaction : OH^0 (-11149) + OH^0 (-6518) -> H2O2^0 (-11388)
-At time : 1 ps Reaction : OH^0 (-11147) + OH^0 (-6526) -> H2O2^0 (-11389)
-At time : 1 ps Reaction : OH^0 (-11146) + OH^0 (-6118) -> H2O2^0 (-11390)
-At time : 1 ps Reaction : OH^0 (-11145) + OH^0 (-7161) -> H2O2^0 (-11391)
-At time : 1 ps Reaction : H^0 (-11143) + OH^0 (-7548) -> No product
-At time : 1 ps Reaction : OH^0 (-11142) + OH^0 (-6522) -> H2O2^0 (-11392)
-At time : 1 ps Reaction : OH^0 (-11141) + H^0 (-8179) -> No product
-At time : 1 ps Reaction : H3O^1 (-11140) + OH^-1 (-5753) -> No product
-At time : 1 ps Reaction : H^0 (-11139) + H^0 (-6735) -> H_2^0 (-11393)
-At time : 1 ps Reaction : OH^0 (-11138) + OH^0 (-6524) -> H2O2^0 (-11394)
-At time : 1 ps Reaction : H^0 (-11137) + OH^0 (-7582) -> No product
-At time : 1 ps Reaction : OH^0 (-11136) + OH^0 (-6520) -> H2O2^0 (-11395)
-At time : 1 ps Reaction : OH^0 (-11135) + OH^0 (-7083) -> H2O2^0 (-11396)
-At time : 1 ps Reaction : OH^0 (-11132) + OH^0 (-6528) -> H2O2^0 (-11397)
-At time : 1 ps Reaction : H^0 (-11129) + OH^0 (-10692) -> No product
-At time : 1 ps Reaction : OH^0 (-11128) + OH^0 (-6530) -> H2O2^0 (-11398)
-At time : 1 ps Reaction : H3O^1 (-11126) + OH^-1 (-5750) -> No product
-At time : 1 ps Reaction : OH^0 (-11124) + OH^0 (-6538) -> H2O2^0 (-11399)
-At time : 1 ps Reaction : H^0 (-11123) + OH^0 (-9523) -> No product
-At time : 1 ps Reaction : OH^0 (-11122) + OH^0 (-6532) -> H2O2^0 (-11400)
-At time : 1 ps Reaction : H^0 (-6684) + OH^0 (-11121) -> No product
-At time : 1 ps Reaction : OH^0 (-11120) + OH^0 (-9186) -> H2O2^0 (-11401)
-At time : 1 ps Reaction : H^0 (-11118) + OH^0 (-9853) -> No product
-At time : 1 ps Reaction : OH^0 (-11117) + OH^0 (-6534) -> H2O2^0 (-11402)
-At time : 1 ps Reaction : OH^0 (-11115) + OH^0 (-6536) -> H2O2^0 (-11403)
-At time : 1 ps Reaction : OH^0 (-11113) + OH^0 (-5754) -> H2O2^0 (-11404)
-At time : 1 ps Reaction : OH^0 (-11111) + OH^0 (-6540) -> H2O2^0 (-11405)
-At time : 1 ps Reaction : OH^0 (-11110) + OH^0 (-7106) -> H2O2^0 (-11406)
-At time : 1 ps Reaction : OH^0 (-11109) + OH^0 (-5790) -> H2O2^0 (-11407)
-At time : 1 ps Reaction : H^0 (-11107) + OH^0 (-10562) -> No product
-At time : 1 ps Reaction : OH^0 (-11106) + OH^0 (-6542) -> H2O2^0 (-11408)
-At time : 1 ps Reaction : OH^0 (-6778) + OH^0 (-11105) -> H2O2^0 (-11409)
-At time : 1 ps Reaction : OH^0 (-11104) + OH^0 (-5724) -> H2O2^0 (-11410)
-At time : 1 ps Reaction : OH^0 (-6711) + H^0 (-11102) -> No product
-At time : 1 ps Reaction : OH^0 (-11101) + OH^0 (-6544) -> H2O2^0 (-11411)
-At time : 1 ps Reaction : OH^0 (-11099) + OH^0 (-6546) -> H2O2^0 (-11412)
-At time : 1 ps Reaction : OH^0 (-11098) + OH^0 (-6163) -> H2O2^0 (-11413)
-At time : 1 ps Reaction : OH^0 (-11097) + OH^0 (-8847) -> H2O2^0 (-11414)
-At time : 1 ps Reaction : OH^0 (-11095) + OH^0 (-5944) -> H2O2^0 (-11415)
-At time : 1 ps Reaction : OH^0 (-11090) + OH^0 (-6548) -> H2O2^0 (-11416)
-At time : 1 ps Reaction : H3O^1 (-11088) + OH^-1 (-5771) -> No product
-At time : 1 ps Reaction : OH^0 (-11087) + OH^0 (-9881) -> H2O2^0 (-11417)
-At time : 1 ps Reaction : OH^0 (-10016) + OH^0 (-11086) -> H2O2^0 (-11418)
-At time : 1 ps Reaction : OH^0 (-11083) + OH^0 (-6552) -> H2O2^0 (-11419)
-At time : 1 ps Reaction : OH^0 (-11082) + OH^0 (-10944) -> H2O2^0 (-11420)
-At time : 1 ps Reaction : OH^0 (-11081) + OH^0 (-9018) -> H2O2^0 (-11421)
-At time : 1 ps Reaction : OH^0 (-11079) + OH^0 (-8073) -> H2O2^0 (-11422)
-At time : 1 ps Reaction : H^0 (-6962) + H^0 (-11077) -> H_2^0 (-11423)
-At time : 1 ps Reaction : OH^0 (-11076) + OH^0 (-6550) -> H2O2^0 (-11424)
-At time : 1 ps Reaction : OH^0 (-11075) + OH^0 (-6434) -> H2O2^0 (-11425)
-At time : 1 ps Reaction : H3O^1 (-11074) + OH^-1 (-5762) -> No product
-At time : 1 ps Reaction : OH^0 (-11073) + OH^0 (-9839) -> H2O2^0 (-11426)
-At time : 1 ps Reaction : OH^0 (-6714) + OH^0 (-11072) -> H2O2^0 (-11427)
-At time : 1 ps Reaction : H^0 (-11070) + OH^0 (-10698) -> No product
-At time : 1 ps Reaction : OH^0 (-11069) + OH^0 (-6554) -> H2O2^0 (-11428)
-At time : 1 ps Reaction : OH^0 (-11068) + OH^0 (-8844) -> H2O2^0 (-11429)
-At time : 1 ps Reaction : OH^0 (-11065) + OH^0 (-6556) -> H2O2^0 (-11430)
-At time : 1 ps Reaction : H^0 (-11062) + OH^0 (-10115) -> No product
-At time : 1 ps Reaction : OH^0 (-11061) + OH^0 (-6558) -> H2O2^0 (-11431)
-At time : 1 ps Reaction : OH^0 (-11060) + OH^0 (-5872) -> H2O2^0 (-11432)
-At time : 1 ps Reaction : OH^0 (-11059) + OH^0 (-8632) -> H2O2^0 (-11433)
-At time : 1 ps Reaction : H^0 (-7014) + H^0 (-11057) -> H_2^0 (-11434)
-At time : 1 ps Reaction : OH^0 (-11056) + OH^0 (-6560) -> H2O2^0 (-11435)
-At time : 1 ps Reaction : H^0 (-11055) + OH^0 (-8812) -> No product
-At time : 1 ps Reaction : OH^0 (-11054) + OH^0 (-6562) -> H2O2^0 (-11436)
-At time : 1 ps Reaction : H^0 (-11053) + OH^0 (-9312) -> No product
-At time : 1 ps Reaction : OH^0 (-11052) + OH^0 (-6564) -> H2O2^0 (-11437)
-At time : 1 ps Reaction : OH^0 (-11050) + OH^0 (-6566) -> H2O2^0 (-11438)
-At time : 1 ps Reaction : OH^0 (-11049) + OH^0 (-8065) -> H2O2^0 (-11439)
-At time : 1 ps Reaction : H3O^1 (-11048) + OH^-1 (-5777) -> No product
-At time : 1 ps Reaction : OH^0 (-11047) + OH^0 (-6430) -> H2O2^0 (-11440)
-At time : 1 ps Reaction : OH^0 (-7249) + OH^0 (-11046) -> H2O2^0 (-11441)
-At time : 1 ps Reaction : H^0 (-11044) + OH^0 (-5715) -> No product
-At time : 1 ps Reaction : OH^0 (-11043) + OH^0 (-6568) -> H2O2^0 (-11442)
-At time : 1 ps Reaction : OH^0 (-11041) + OH^0 (-6570) -> H2O2^0 (-11443)
-At time : 1 ps Reaction : OH^0 (-11038) + OH^0 (-6179) -> H2O2^0 (-11444)
-At time : 1 ps Reaction : H3O^1 (-11037) + OH^-1 (-5783) -> No product
-At time : 1 ps Reaction : OH^0 (-11035) + OH^0 (-6572) -> H2O2^0 (-11445)
-At time : 1 ps Reaction : OH^0 (-11033) + OH^0 (-6582) -> H2O2^0 (-11446)
-At time : 1 ps Reaction : OH^0 (-11031) + OH^0 (-6576) -> H2O2^0 (-11447)
-At time : 1 ps Reaction : H^0 (-6753) + H^0 (-11030) -> H_2^0 (-11448)
-At time : 1 ps Reaction : OH^0 (-11029) + OH^0 (-6574) -> H2O2^0 (-11449)
-At time : 1 ps Reaction : H^0 (-11028) + OH^0 (-7046) -> No product
-At time : 1 ps Reaction : OH^0 (-11027) + OH^0 (-6578) -> H2O2^0 (-11450)
-At time : 1 ps Reaction : OH^0 (-11026) + OH^0 (-7036) -> H2O2^0 (-11451)
-At time : 1 ps Reaction : H3O^1 (-11025) + OH^-1 (-5765) -> No product
-At time : 1 ps Reaction : H^0 (-11022) + OH^0 (-6457) -> No product
-At time : 1 ps Reaction : OH^0 (-11021) + OH^0 (-6584) -> H2O2^0 (-11452)
-At time : 1 ps Reaction : OH^0 (-11020) + OH^0 (-6340) -> H2O2^0 (-11453)
-At time : 1 ps Reaction : OH^0 (-11019) + OH^0 (-5763) -> H2O2^0 (-11454)
-At time : 1 ps Reaction : H^0 (-11017) + OH^0 (-10113) -> No product
-At time : 1 ps Reaction : OH^0 (-11016) + OH^0 (-6592) -> H2O2^0 (-11455)
-At time : 1 ps Reaction : H^0 (-11015) + OH^0 (-6968) -> No product
-At time : 1 ps Reaction : OH^0 (-11014) + OH^0 (-6586) -> H2O2^0 (-11456)
-At time : 1 ps Reaction : OH^0 (-11012) + OH^0 (-6588) -> H2O2^0 (-11457)
-At time : 1 ps Reaction : H^0 (-11011) + OH^0 (-10648) -> No product
-At time : 1 ps Reaction : OH^0 (-11010) + OH^0 (-6590) -> H2O2^0 (-11458)
-At time : 1 ps Reaction : H^0 (-11009) + OH^0 (-8310) -> No product
-At time : 1 ps Reaction : OH^0 (-11008) + OH^0 (-6596) -> H2O2^0 (-11459)
-At time : 1 ps Reaction : H^0 (-11007) + OH^0 (-10042) -> No product
-At time : 1 ps Reaction : OH^0 (-11006) + OH^0 (-6598) -> H2O2^0 (-11460)
-At time : 1 ps Reaction : OH^0 (-7839) + H^0 (-11005) -> No product
-At time : 1 ps Reaction : OH^0 (-11004) + OH^0 (-6594) -> H2O2^0 (-11461)
-At time : 1 ps Reaction : H^0 (-11003) + H^0 (-8195) -> H_2^0 (-11462)
-At time : 1 ps Reaction : OH^0 (-11002) + OH^0 (-6602) -> H2O2^0 (-11463)
-At time : 1 ps Reaction : OH^0 (-11000) + OH^0 (-6606) -> H2O2^0 (-11464)
-At time : 1 ps Reaction : H^0 (-7210) + H^0 (-10999) -> H_2^0 (-11465)
-At time : 1 ps Reaction : OH^0 (-10998) + OH^0 (-6604) -> H2O2^0 (-11466)
-At time : 1 ps Reaction : OH^0 (-10997) + OH^0 (-6917) -> H2O2^0 (-11467)
-At time : 1 ps Reaction : OH^0 (-10996) + OH^0 (-9181) -> H2O2^0 (-11468)
-At time : 1 ps Reaction : OH^0 (-10994) + OH^0 (-6608) -> H2O2^0 (-11469)
-At time : 1 ps Reaction : OH^0 (-10993) + OH^0 (-5766) -> H2O2^0 (-11470)
-At time : 1 ps Reaction : OH^0 (-10990) + OH^0 (-6600) -> H2O2^0 (-11471)
-At time : 1 ps Reaction : OH^0 (-10988) + OH^0 (-6610) -> H2O2^0 (-11472)
-At time : 1 ps Reaction : H^0 (-10987) + OH^0 (-8855) -> No product
-At time : 1 ps Reaction : OH^0 (-10986) + OH^0 (-6612) -> H2O2^0 (-11473)
-At time : 1 ps Reaction : OH^0 (-10984) + OH^0 (-6616) -> H2O2^0 (-11474)
-At time : 1 ps Reaction : H3O^1 (-10982) + OH^-1 (-5804) -> No product
-At time : 1 ps Reaction : OH^0 (-10980) + OH^0 (-6618) -> H2O2^0 (-11475)
-At time : 1 ps Reaction : OH^0 (-10978) + OH^0 (-6614) -> H2O2^0 (-11476)
-At time : 1 ps Reaction : OH^0 (-10976) + OH^0 (-6622) -> H2O2^0 (-11477)
-At time : 1 ps Reaction : OH^0 (-6649) + OH^0 (-10974) -> H2O2^0 (-11478)
-At time : 1 ps Reaction : OH^0 (-10972) + OH^0 (-6620) -> H2O2^0 (-11479)
-At time : 1 ps Reaction : OH^0 (-10971) + OH^0 (-8175) -> H2O2^0 (-11480)
-At time : 1 ps Reaction : OH^0 (-6635) + OH^0 (-10968) -> H2O2^0 (-11481)
-At time : 1 ps Reaction : OH^0 (-10966) + OH^0 (-6624) -> H2O2^0 (-11482)
-At time : 1 ps Reaction : OH^0 (-6777) + H^0 (-10965) -> No product
-At time : 1 ps Reaction : OH^0 (-10964) + OH^0 (-6628) -> H2O2^0 (-11483)
-At time : 1 ps Reaction : OH^0 (-6639) + OH^0 (-10962) -> H2O2^0 (-11484)
-At time : 1 ps Reaction : OH^0 (-10960) + OH^0 (-6626) -> H2O2^0 (-11485)
-At time : 1 ps Reaction : OH^0 (-10958) + OH^0 (-6630) -> H2O2^0 (-11486)
-At time : 1 ps Reaction : OH^0 (-6664) + OH^0 (-10956) -> H2O2^0 (-11487)
-At time : 1 ps Reaction : OH^0 (-10955) + OH^0 (-8514) -> H2O2^0 (-11488)
-At time : 1 ps Reaction : OH^0 (-10954) + OH^0 (-5802) -> H2O2^0 (-11489)
-At time : 1 ps Reaction : OH^0 (-6719) + H^0 (-10952) -> No product
-At time : 1 ps Reaction : OH^0 (-6637) + OH^0 (-10951) -> H2O2^0 (-11490)
-At time : 1 ps Reaction : OH^0 (-6651) + H^0 (-10950) -> No product
-At time : 1 ps Reaction : OH^0 (-6641) + OH^0 (-10949) -> H2O2^0 (-11491)
-At time : 1 ps Reaction : H^0 (-10948) + OH^0 (-6162) -> No product
-At time : 1 ps Reaction : OH^0 (-6645) + OH^0 (-10947) -> H2O2^0 (-11492)
-At time : 1 ps Reaction : H^0 (-10946) + H^0 (-7587) -> H_2^0 (-11493)
-At time : 1 ps Reaction : OH^0 (-6643) + OH^0 (-10945) -> H2O2^0 (-11494)
-At time : 1 ps Reaction : OH^0 (-10943) + OH^0 (-10232) -> H2O2^0 (-11495)
-At time : 1 ps Reaction : OH^0 (-10941) + OH^0 (-8705) -> H2O2^0 (-11496)
-At time : 1 ps Reaction : OH^0 (-10940) + OH^0 (-6238) -> H2O2^0 (-11497)
-At time : 1 ps Reaction : OH^0 (-6656) + OH^0 (-10937) -> H2O2^0 (-11498)
-At time : 1 ps Reaction : H^0 (-10936) + H^0 (-10520) -> H_2^0 (-11499)
-At time : 1 ps Reaction : OH^0 (-6647) + OH^0 (-10935) -> H2O2^0 (-11500)
-At time : 1 ps Reaction : H^0 (-10934) + H^0 (-7744) -> H_2^0 (-11501)
-At time : 1 ps Reaction : OH^0 (-6658) + OH^0 (-10933) -> H2O2^0 (-11502)
-At time : 1 ps Reaction : OH^0 (-6677) + OH^0 (-10931) -> H2O2^0 (-11503)
-At time : 1 ps Reaction : H^0 (-10930) + OH^0 (-7599) -> No product
-At time : 1 ps Reaction : OH^0 (-6660) + OH^0 (-10929) -> H2O2^0 (-11504)
-At time : 1 ps Reaction : OH^0 (-6662) + OH^0 (-10927) -> H2O2^0 (-11505)
-At time : 1 ps Reaction : OH^0 (-10926) + OH^0 (-7116) -> H2O2^0 (-11506)
-At time : 1 ps Reaction : H3O^1 (-10925) + OH^-1 (-5774) -> No product
-At time : 1 ps Reaction : OH^0 (-10924) + OH^0 (-7857) -> H2O2^0 (-11507)
-At time : 1 ps Reaction : OH^0 (-10923) + OH^0 (-6308) -> H2O2^0 (-11508)
-At time : 1 ps Reaction : OH^0 (-10920) + OH^0 (-6744) -> H2O2^0 (-11509)
-At time : 1 ps Reaction : OH^0 (-10918) + OH^0 (-6082) -> H2O2^0 (-11510)
-At time : 1 ps Reaction : H^0 (-10917) + OH^0 (-8786) -> No product
-At time : 1 ps Reaction : OH^0 (-6666) + OH^0 (-10916) -> H2O2^0 (-11511)
-At time : 1 ps Reaction : OH^0 (-10914) + OH^0 (-6679) -> H2O2^0 (-11512)
-At time : 1 ps Reaction : OH^0 (-10913) + OH^0 (-7866) -> H2O2^0 (-11513)
-At time : 1 ps Reaction : OH^0 (-10912) + OH^0 (-6692) -> H2O2^0 (-11514)
-At time : 1 ps Reaction : OH^0 (-7519) + H^0 (-10910) -> No product
-At time : 1 ps Reaction : OH^0 (-10909) + OH^0 (-6681) -> H2O2^0 (-11515)
-At time : 1 ps Reaction : H^0 (-10908) + H^0 (-8824) -> H_2^0 (-11516)
-At time : 1 ps Reaction : OH^0 (-10907) + OH^0 (-6683) -> H2O2^0 (-11517)
-At time : 1 ps Reaction : OH^0 (-10905) + OH^0 (-6696) -> H2O2^0 (-11518)
-At time : 1 ps Reaction : OH^0 (-10904) + OH^0 (-7059) -> H2O2^0 (-11519)
-At time : 1 ps Reaction : H^0 (-10901) + OH^0 (-9733) -> No product
-At time : 1 ps Reaction : OH^0 (-10900) + OH^0 (-6685) -> H2O2^0 (-11520)
-At time : 1 ps Reaction : OH^-1 (-5792) + H3O^1 (-10894) -> No product
-At time : 1 ps Reaction : OH^0 (-10012) + OH^0 (-10893) -> H2O2^0 (-11521)
-At time : 1 ps Reaction : OH^0 (-6031) + OH^0 (-10889) -> H2O2^0 (-11522)
-At time : 1 ps Reaction : OH^-1 (-5780) + H3O^1 (-10888) -> No product
-At time : 1 ps Reaction : OH^0 (-6294) + H^0 (-10887) -> No product
-At time : 1 ps Reaction : OH^0 (-6694) + OH^0 (-10886) -> H2O2^0 (-11523)
-At time : 1 ps Reaction : OH^0 (-5833) + OH^0 (-10885) -> H2O2^0 (-11524)
-At time : 1 ps Reaction : OH^0 (-9107) + OH^0 (-10881) -> H2O2^0 (-11525)
-At time : 1 ps Reaction : OH^-1 (-5786) + H3O^1 (-10880) -> No product
-At time : 1 ps Reaction : OH^0 (-8517) + OH^0 (-10879) -> H2O2^0 (-11526)
-At time : 1 ps Reaction : H^0 (-7351) + OH^0 (-10877) -> No product
-At time : 1 ps Reaction : H^0 (-10275) + OH^0 (-10875) -> No product
-At time : 1 ps Reaction : OH^0 (-6690) + OH^0 (-10872) -> H2O2^0 (-11527)
-At time : 1 ps Reaction : OH^0 (-8919) + OH^0 (-10871) -> H2O2^0 (-11528)
-At time : 1 ps Reaction : OH^0 (-6702) + OH^0 (-10868) -> H2O2^0 (-11529)
-At time : 1 ps Reaction : H^0 (-6549) + OH^0 (-10865) -> No product
-At time : 1 ps Reaction : OH^-1 (-5813) + H3O^1 (-10864) -> No product
-At time : 1 ps Reaction : OH^0 (-5805) + OH^0 (-10859) -> H2O2^0 (-11530)
-At time : 1 ps Reaction : OH^-1 (-5798) + H3O^1 (-10858) -> No product
-At time : 1 ps Reaction : OH^0 (-9928) + OH^0 (-10855) -> H2O2^0 (-11531)
-At time : 1 ps Reaction : OH^-1 (-5789) + H3O^1 (-10854) -> No product
-At time : 1 ps Reaction : H^0 (-6883) + H^0 (-10853) -> H_2^0 (-11532)
-At time : 1 ps Reaction : OH^0 (-6698) + OH^0 (-10852) -> H2O2^0 (-11533)
-At time : 1 ps Reaction : OH^0 (-7288) + OH^0 (-10851) -> H2O2^0 (-11534)
-At time : 1 ps Reaction : OH^-1 (-5807) + H3O^1 (-10850) -> No product
-At time : 1 ps Reaction : OH^0 (-9705) + OH^0 (-10849) -> H2O2^0 (-11535)
-At time : 1 ps Reaction : H^0 (-7428) + H^0 (-10847) -> H_2^0 (-11536)
-At time : 1 ps Reaction : OH^0 (-6703) + OH^0 (-10846) -> H2O2^0 (-11537)
-At time : 1 ps Reaction : OH^0 (-7834) + OH^0 (-10835) -> H2O2^0 (-11538)
-At time : 1 ps Reaction : OH^0 (-7245) + OH^0 (-10833) -> H2O2^0 (-11539)
-At time : 1 ps Reaction : OH^0 (-9092) + OH^0 (-10831) -> H2O2^0 (-11540)
-At time : 1 ps Reaction : OH^-1 (-5795) + H3O^1 (-10830) -> No product
-At time : 1 ps Reaction : OH^0 (-9028) + OH^0 (-10827) -> H2O2^0 (-11541)
-At time : 1 ps Reaction : H^0 (-9784) + OH^0 (-10826) -> No product
-At time : 1 ps Reaction : OH^0 (-6153) + OH^0 (-10824) -> H2O2^0 (-11542)
-At time : 1 ps Reaction : OH^0 (-7305) + OH^0 (-10823) -> H2O2^0 (-11543)
-At time : 1 ps Reaction : OH^-1 (-5810) + H3O^1 (-10820) -> No product
-At time : 1 ps Reaction : H^0 (-7613) + OH^0 (-10819) -> No product
-At time : 1 ps Reaction : OH^0 (-7830) + OH^0 (-10817) -> H2O2^0 (-11544)
-At time : 1 ps Reaction : OH^-1 (-5801) + H3O^1 (-10816) -> No product
-At time : 1 ps Reaction : OH^0 (-7042) + OH^0 (-10815) -> H2O2^0 (-11545)
-At time : 1 ps Reaction : OH^0 (-8642) + OH^0 (-10812) -> H2O2^0 (-11546)
-At time : 1 ps Reaction : OH^0 (-8063) + OH^0 (-10810) -> H2O2^0 (-11547)
-At time : 1 ps Reaction : OH^0 (-7318) + OH^0 (-10806) -> H2O2^0 (-11548)
-At time : 1 ps Reaction : OH^0 (-7513) + OH^0 (-10800) -> H2O2^0 (-11549)
-At time : 1 ps Reaction : OH^0 (-6013) + OH^0 (-10798) -> H2O2^0 (-11550)
-At time : 1 ps Reaction : OH^0 (-8422) + OH^0 (-10794) -> H2O2^0 (-11551)
-At time : 1 ps Reaction : OH^0 (-6707) + OH^0 (-10787) -> H2O2^0 (-11552)
-At time : 1 ps Reaction : OH^0 (-10261) + OH^0 (-10786) -> H2O2^0 (-11553)
-At time : 1 ps Reaction : OH^0 (-8289) + OH^0 (-10784) -> H2O2^0 (-11554)
-At time : 1 ps Reaction : OH^0 (-9764) + OH^0 (-10782) -> H2O2^0 (-11555)
-At time : 1 ps Reaction : OH^0 (-9643) + OH^0 (-10778) -> H2O2^0 (-11556)
-At time : 1 ps Reaction : OH^0 (-8563) + OH^0 (-10776) -> H2O2^0 (-11557)
-At time : 1 ps Reaction : OH^0 (-8770) + OH^0 (-10774) -> H2O2^0 (-11558)
-At time : 1 ps Reaction : OH^0 (-6091) + OH^0 (-10772) -> H2O2^0 (-11559)
-At time : 1 ps Reaction : OH^0 (-7748) + H^0 (-10766) -> No product
-At time : 1 ps Reaction : OH^0 (-6705) + OH^0 (-10765) -> H2O2^0 (-11560)
-At time : 1 ps Reaction : OH^0 (-9958) + OH^0 (-10764) -> H2O2^0 (-11561)
-At time : 1 ps Reaction : OH^0 (-6175) + OH^0 (-10762) -> H2O2^0 (-11562)
-At time : 1 ps Reaction : OH^0 (-6198) + OH^0 (-10761) -> H2O2^0 (-11563)
-At time : 1 ps Reaction : OH^0 (-6346) + OH^0 (-10759) -> H2O2^0 (-11564)
-At time : 1 ps Reaction : OH^0 (-6675) + OH^0 (-10757) -> H2O2^0 (-11565)
-At time : 1 ps Reaction : OH^0 (-5905) + OH^0 (-10755) -> H2O2^0 (-11566)
-At time : 1 ps Reaction : OH^0 (-8095) + OH^0 (-10751) -> H2O2^0 (-11567)
-At time : 1 ps Reaction : OH^0 (-9128) + OH^0 (-10749) -> H2O2^0 (-11568)
-At time : 1 ps Reaction : OH^0 (-7931) + OH^0 (-10747) -> H2O2^0 (-11569)
-At time : 1 ps Reaction : OH^0 (-9068) + OH^0 (-10745) -> H2O2^0 (-11570)
-At time : 1 ps Reaction : OH^0 (-7530) + OH^0 (-10739) -> H2O2^0 (-11571)
-At time : 1 ps Reaction : OH^0 (-8842) + OH^0 (-10737) -> H2O2^0 (-11572)
-At time : 1 ps Reaction : OH^0 (-6964) + OH^0 (-10733) -> H2O2^0 (-11573)
-At time : 1 ps Reaction : OH^0 (-6715) + OH^0 (-10730) -> H2O2^0 (-11574)
-At time : 1 ps Reaction : OH^0 (-9966) + OH^0 (-10729) -> H2O2^0 (-11575)
-At time : 1 ps Reaction : OH^0 (-6864) + OH^0 (-10725) -> H2O2^0 (-11576)
-At time : 1 ps Reaction : OH^0 (-8010) + OH^0 (-10718) -> H2O2^0 (-11577)
-At time : 1 ps Reaction : H^0 (-8510) + OH^0 (-10714) -> No product
-At time : 1 ps Reaction : OH^0 (-9788) + OH^0 (-10712) -> H2O2^0 (-11578)
-At time : 1 ps Reaction : OH^0 (-8069) + H^0 (-10710) -> No product
-At time : 1 ps Reaction : OH^0 (-6717) + OH^0 (-10709) -> H2O2^0 (-11579)
-At time : 1 ps Reaction : OH^0 (-6726) + OH^0 (-10705) -> H2O2^0 (-11580)
-At time : 1 ps Reaction : OH^0 (-9249) + OH^0 (-10704) -> H2O2^0 (-11581)
-At time : 1 ps Reaction : OH^0 (-6251) + OH^0 (-10700) -> H2O2^0 (-11582)
-At time : 1 ps Reaction : OH^0 (-8423) + OH^0 (-10690) -> H2O2^0 (-11583)
-At time : 1 ps Reaction : OH^0 (-8731) + OH^0 (-10688) -> H2O2^0 (-11584)
-At time : 1 ps Reaction : OH^0 (-8001) + OH^0 (-10686) -> H2O2^0 (-11585)
-At time : 1 ps Reaction : OH^0 (-10602) + OH^0 (-10680) -> H2O2^0 (-11586)
-At time : 1 ps Reaction : OH^0 (-10413) + OH^0 (-10676) -> H2O2^0 (-11587)
-At time : 1 ps Reaction : OH^0 (-7895) + OH^0 (-10674) -> H2O2^0 (-11588)
-At time : 1 ps Reaction : OH^0 (-6724) + OH^0 (-10667) -> H2O2^0 (-11589)
-At time : 1 ps Reaction : H^0 (-8433) + OH^0 (-10664) -> No product
-At time : 1 ps Reaction : OH^0 (-5995) + OH^0 (-10656) -> H2O2^0 (-11590)
-At time : 1 ps Reaction : OH^0 (-6774) + OH^0 (-10644) -> H2O2^0 (-11591)
-At time : 1 ps Reaction : OH^0 (-7579) + H^0 (-10642) -> No product
-At time : 1 ps Reaction : OH^0 (-6728) + OH^0 (-10641) -> H2O2^0 (-11592)
-At time : 1 ps Reaction : OH^0 (-6950) + H^0 (-10640) -> No product
-At time : 1 ps Reaction : OH^0 (-6730) + OH^0 (-10639) -> H2O2^0 (-11593)
-At time : 1 ps Reaction : OH^0 (-10329) + OH^0 (-10638) -> H2O2^0 (-11594)
-At time : 1 ps Reaction : OH^0 (-9685) + H^0 (-10628) -> No product
-At time : 1 ps Reaction : OH^0 (-6732) + OH^0 (-10627) -> H2O2^0 (-11595)
-At time : 1 ps Reaction : OH^0 (-6829) + H^0 (-10626) -> No product
-At time : 1 ps Reaction : OH^0 (-6734) + OH^0 (-10625) -> H2O2^0 (-11596)
-At time : 1 ps Reaction : OH^0 (-6352) + OH^0 (-10620) -> H2O2^0 (-11597)
-At time : 1 ps Reaction : OH^0 (-7066) + H^0 (-10618) -> No product
-At time : 1 ps Reaction : OH^0 (-6736) + OH^0 (-10617) -> H2O2^0 (-11598)
-At time : 1 ps Reaction : OH^0 (-7367) + OH^0 (-10614) -> H2O2^0 (-11599)
-At time : 1 ps Reaction : OH^0 (-8429) + OH^0 (-10610) -> H2O2^0 (-11600)
-At time : 1 ps Reaction : OH^0 (-8075) + OH^0 (-10608) -> H2O2^0 (-11601)
-At time : 1 ps Reaction : OH^0 (-8499) + OH^0 (-10604) -> H2O2^0 (-11602)
-At time : 1 ps Reaction : OH^0 (-7455) + OH^0 (-10600) -> H2O2^0 (-11603)
-At time : 1 ps Reaction : OH^0 (-6722) + OH^0 (-10596) -> H2O2^0 (-11604)
-At time : 1 ps Reaction : OH^0 (-6738) + OH^0 (-10593) -> H2O2^0 (-11605)
-At time : 1 ps Reaction : OH^0 (-5721) + OH^0 (-10588) -> H2O2^0 (-11606)
-At time : 1 ps Reaction : OH^0 (-5878) + OH^0 (-10584) -> H2O2^0 (-11607)
-At time : 1 ps Reaction : OH^0 (-9147) + OH^0 (-10580) -> H2O2^0 (-11608)
-At time : 1 ps Reaction : OH^0 (-7447) + OH^0 (-10578) -> H2O2^0 (-11609)
-At time : 1 ps Reaction : OH^0 (-9198) + OH^0 (-10576) -> H2O2^0 (-11610)
-At time : 1 ps Reaction : OH^0 (-9547) + H^0 (-10574) -> No product
-At time : 1 ps Reaction : OH^0 (-6740) + OH^0 (-10573) -> H2O2^0 (-11611)
-At time : 1 ps Reaction : OH^0 (-9456) + OH^0 (-10572) -> H2O2^0 (-11612)
-At time : 1 ps Reaction : H^0 (-6706) + OH^0 (-10566) -> No product
-At time : 1 ps Reaction : OH^0 (-7174) + OH^0 (-10564) -> H2O2^0 (-11613)
-At time : 1 ps Reaction : H^0 (-9924) + OH^0 (-10558) -> No product
-At time : 1 ps Reaction : OH^0 (-7775) + OH^0 (-10554) -> H2O2^0 (-11614)
-At time : 1 ps Reaction : OH^0 (-7872) + OH^0 (-10546) -> H2O2^0 (-11615)
-At time : 1 ps Reaction : OH^0 (-6421) + OH^0 (-10544) -> H2O2^0 (-11616)
-At time : 1 ps Reaction : OH^0 (-5757) + OH^0 (-10542) -> H2O2^0 (-11617)
-At time : 1 ps Reaction : OH^0 (-9721) + H^0 (-10538) -> No product
-At time : 1 ps Reaction : OH^0 (-6742) + OH^0 (-10537) -> H2O2^0 (-11618)
-At time : 1 ps Reaction : OH^0 (-6394) + OH^0 (-10536) -> H2O2^0 (-11619)
-At time : 1 ps Reaction : OH^0 (-8143) + OH^0 (-10534) -> H2O2^0 (-11620)
-At time : 1 ps Reaction : OH^0 (-9770) + OH^0 (-10532) -> H2O2^0 (-11621)
-At time : 1 ps Reaction : OH^0 (-6688) + OH^0 (-10526) -> H2O2^0 (-11622)
-At time : 1 ps Reaction : H^0 (-6661) + OH^0 (-10524) -> No product
-At time : 1 ps Reaction : OH^0 (-6748) + OH^0 (-10519) -> H2O2^0 (-11623)
-At time : 1 ps Reaction : OH^0 (-6746) + OH^0 (-10515) -> H2O2^0 (-11624)
-At time : 1 ps Reaction : OH^0 (-8306) + OH^0 (-10512) -> H2O2^0 (-11625)
-At time : 1 ps Reaction : OH^0 (-7162) + OH^0 (-10508) -> H2O2^0 (-11626)
-At time : 1 ps Reaction : OH^0 (-5811) + OH^0 (-10506) -> H2O2^0 (-11627)
-At time : 1 ps Reaction : OH^0 (-6634) + OH^0 (-10505) -> H2O2^0 (-11628)
-At time : 1 ps Reaction : OH^0 (-8109) + H^0 (-10503) -> No product
-At time : 1 ps Reaction : OH^0 (-6750) + OH^0 (-10502) -> H2O2^0 (-11629)
-At time : 1 ps Reaction : OH^0 (-9074) + OH^0 (-10499) -> H2O2^0 (-11630)
-At time : 1 ps Reaction : OH^0 (-8308) + OH^0 (-10491) -> H2O2^0 (-11631)
-At time : 1 ps Reaction : OH^0 (-6284) + OH^0 (-10489) -> H2O2^0 (-11632)
-At time : 1 ps Reaction : OH^0 (-8879) + OH^0 (-10485) -> H2O2^0 (-11633)
-At time : 1 ps Reaction : OH^0 (-9496) + OH^0 (-10483) -> H2O2^0 (-11634)
-At time : 1 ps Reaction : OH^0 (-10091) + OH^0 (-10477) -> H2O2^0 (-11635)
-At time : 1 ps Reaction : OH^0 (-8053) + OH^0 (-10475) -> H2O2^0 (-11636)
-At time : 1 ps Reaction : OH^0 (-6139) + OH^0 (-10473) -> H2O2^0 (-11637)
-At time : 1 ps Reaction : OH^0 (-9811) + OH^0 (-10469) -> H2O2^0 (-11638)
-At time : 1 ps Reaction : OH^0 (-9639) + OH^0 (-10467) -> H2O2^0 (-11639)
-At time : 1 ps Reaction : H^0 (-6680) + OH^0 (-10465) -> No product
-At time : 1 ps Reaction : OH^0 (-7686) + OH^0 (-10459) -> H2O2^0 (-11640)
-At time : 1 ps Reaction : OH^0 (-5935) + OH^0 (-10449) -> H2O2^0 (-11641)
-At time : 1 ps Reaction : OH^0 (-6185) + OH^0 (-10445) -> H2O2^0 (-11642)
-At time : 1 ps Reaction : OH^0 (-7188) + OH^0 (-10444) -> H2O2^0 (-11643)
-At time : 1 ps Reaction : OH^0 (-6186) + OH^0 (-10434) -> H2O2^0 (-11644)
-At time : 1 ps Reaction : OH^0 (-6197) + OH^0 (-10432) -> H2O2^0 (-11645)
-At time : 1 ps Reaction : OH^0 (-10165) + OH^0 (-10431) -> H2O2^0 (-11646)
-At time : 1 ps Reaction : OH^0 (-8840) + OH^0 (-10429) -> H2O2^0 (-11647)
-At time : 1 ps Reaction : H^0 (-7147) + OH^0 (-10427) -> No product
-At time : 1 ps Reaction : OH^0 (-7025) + OH^0 (-10415) -> H2O2^0 (-11648)
-At time : 1 ps Reaction : OH^0 (-5851) + OH^0 (-10411) -> H2O2^0 (-11649)
-At time : 1 ps Reaction : OH^0 (-7641) + OH^0 (-10407) -> H2O2^0 (-11650)
-At time : 1 ps Reaction : OH^0 (-6754) + OH^0 (-10398) -> H2O2^0 (-11651)
-At time : 1 ps Reaction : OH^0 (-6673) + OH^0 (-10395) -> H2O2^0 (-11652)
-At time : 1 ps Reaction : H^0 (-9452) + OH^0 (-10377) -> No product
-At time : 1 ps Reaction : OH^0 (-7651) + OH^0 (-10375) -> H2O2^0 (-11653)
-At time : 1 ps Reaction : OH^0 (-10137) + OH^0 (-10373) -> H2O2^0 (-11654)
-At time : 1 ps Reaction : H^0 (-7970) + H^0 (-10371) -> H_2^0 (-11655)
-At time : 1 ps Reaction : OH^0 (-6752) + OH^0 (-10370) -> H2O2^0 (-11656)
-At time : 1 ps Reaction : OH^0 (-7470) + OH^0 (-10369) -> H2O2^0 (-11657)
-At time : 1 ps Reaction : OH^0 (-6768) + OH^0 (-10366) -> H2O2^0 (-11658)
-At time : 1 ps Reaction : OH^0 (-6049) + OH^0 (-10365) -> H2O2^0 (-11659)
-At time : 1 ps Reaction : H^0 (-7781) + OH^0 (-10363) -> No product
-At time : 1 ps Reaction : OH^0 (-10309) + OH^0 (-10355) -> H2O2^0 (-11660)
-At time : 1 ps Reaction : OH^0 (-6337) + H^0 (-10349) -> No product
-At time : 1 ps Reaction : OH^0 (-6760) + OH^0 (-10348) -> H2O2^0 (-11661)
-At time : 1 ps Reaction : OH^0 (-8341) + OH^0 (-10347) -> H2O2^0 (-11662)
-At time : 1 ps Reaction : OH^0 (-8249) + OH^0 (-10345) -> H2O2^0 (-11663)
-At time : 1 ps Reaction : H^0 (-7180) + OH^0 (-10339) -> No product
-At time : 1 ps Reaction : OH^0 (-10129) + OH^0 (-10337) -> H2O2^0 (-11664)
-At time : 1 ps Reaction : OH^0 (-6775) + OH^0 (-10333) -> H2O2^0 (-11665)
-At time : 1 ps Reaction : OH^0 (-6405) + H^0 (-10331) -> No product
-At time : 1 ps Reaction : OH^0 (-6756) + OH^0 (-10330) -> H2O2^0 (-11666)
-At time : 1 ps Reaction : OH^0 (-7181) + OH^0 (-10325) -> H2O2^0 (-11667)
-At time : 1 ps Reaction : OH^0 (-9747) + OH^0 (-10324) -> H2O2^0 (-11668)
-At time : 1 ps Reaction : OH^0 (-9200) + H^0 (-10318) -> No product
-At time : 1 ps Reaction : OH^0 (-6762) + OH^0 (-10317) -> H2O2^0 (-11669)
-At time : 1 ps Reaction : OH^0 (-7569) + OH^0 (-10316) -> H2O2^0 (-11670)
-At time : 1 ps Reaction : OH^0 (-7026) + OH^0 (-10312) -> H2O2^0 (-11671)
-At time : 1 ps Reaction : OH^0 (-6355) + OH^0 (-10311) -> H2O2^0 (-11672)
-At time : 1 ps Reaction : OH^0 (-8365) + OH^0 (-10307) -> H2O2^0 (-11673)
-At time : 1 ps Reaction : OH^0 (-6443) + OH^0 (-10304) -> H2O2^0 (-11674)
-At time : 1 ps Reaction : OH^0 (-7982) + OH^0 (-10303) -> H2O2^0 (-11675)
-At time : 1 ps Reaction : OH^0 (-8987) + OH^0 (-10301) -> H2O2^0 (-11676)
-At time : 1 ps Reaction : OH^0 (-10164) + OH^0 (-10299) -> H2O2^0 (-11677)
-At time : 1 ps Reaction : OH^0 (-6764) + OH^0 (-10296) -> H2O2^0 (-11678)
-At time : 1 ps Reaction : OH^0 (-6435) + H^0 (-10291) -> No product
-At time : 1 ps Reaction : OH^0 (-6766) + OH^0 (-10290) -> H2O2^0 (-11679)
-At time : 1 ps Reaction : OH^0 (-10124) + OH^0 (-10289) -> H2O2^0 (-11680)
-At time : 1 ps Reaction : OH^0 (-6265) + OH^0 (-10287) -> H2O2^0 (-11681)
-At time : 1 ps Reaction : OH^0 (-7400) + OH^0 (-10283) -> H2O2^0 (-11682)
-At time : 1 ps Reaction : OH^0 (-6782) + OH^0 (-10278) -> H2O2^0 (-11683)
-At time : 1 ps Reaction : OH^0 (-8690) + OH^0 (-10277) -> H2O2^0 (-11684)
-At time : 1 ps Reaction : OH^0 (-6789) + OH^0 (-10274) -> H2O2^0 (-11685)
-At time : 1 ps Reaction : OH^0 (-6152) + OH^0 (-10273) -> H2O2^0 (-11686)
-At time : 1 ps Reaction : OH^0 (-7394) + OH^0 (-10271) -> H2O2^0 (-11687)
-At time : 1 ps Reaction : OH^0 (-7426) + OH^0 (-10269) -> H2O2^0 (-11688)
-At time : 1 ps Reaction : OH^0 (-7565) + OH^0 (-10267) -> H2O2^0 (-11689)
-At time : 1 ps Reaction : OH^0 (-9922) + OH^0 (-10265) -> H2O2^0 (-11690)
-At time : 1 ps Reaction : OH^0 (-8802) + OH^0 (-10259) -> H2O2^0 (-11691)
-At time : 1 ps Reaction : OH^0 (-6713) + OH^0 (-10256) -> H2O2^0 (-11692)
-At time : 1 ps Reaction : H^0 (-7355) + H^0 (-10254) -> H_2^0 (-11693)
-At time : 1 ps Reaction : OH^0 (-6758) + OH^0 (-10253) -> H2O2^0 (-11694)
-At time : 1 ps Reaction : OH^0 (-6791) + OH^0 (-10248) -> H2O2^0 (-11695)
-At time : 1 ps Reaction : H^0 (-9124) + OH^0 (-10246) -> No product
-At time : 1 ps Reaction : OH^0 (-8243) + OH^0 (-10242) -> H2O2^0 (-11696)
-At time : 1 ps Reaction : OH^0 (-10193) + H^0 (-10238) -> No product
-At time : 1 ps Reaction : OH^0 (-6784) + OH^0 (-10237) -> H2O2^0 (-11697)
-At time : 1 ps Reaction : OH^0 (-6793) + OH^0 (-10233) -> H2O2^0 (-11698)
-At time : 1 ps Reaction : OH^0 (-7918) + OH^0 (-10230) -> H2O2^0 (-11699)
-At time : 1 ps Reaction : OH^0 (-6811) + OH^0 (-10227) -> H2O2^0 (-11700)
-At time : 1 ps Reaction : OH^0 (-9297) + OH^0 (-10214) -> H2O2^0 (-11701)
-At time : 1 ps Reaction : OH^0 (-7274) + OH^0 (-10212) -> H2O2^0 (-11702)
-At time : 1 ps Reaction : OH^0 (-7359) + OH^0 (-10211) -> H2O2^0 (-11703)
-At time : 1 ps Reaction : OH^0 (-9494) + OH^0 (-10207) -> H2O2^0 (-11704)
-At time : 1 ps Reaction : OH^0 (-7200) + OH^0 (-10197) -> H2O2^0 (-11705)
-At time : 1 ps Reaction : OH^0 (-7999) + OH^0 (-10191) -> H2O2^0 (-11706)
-At time : 1 ps Reaction : OH^0 (-7657) + OH^0 (-10189) -> H2O2^0 (-11707)
-At time : 1 ps Reaction : OH^0 (-6959) + OH^0 (-10185) -> H2O2^0 (-11708)
-At time : 1 ps Reaction : OH^0 (-5736) + OH^0 (-10182) -> H2O2^0 (-11709)
-At time : 1 ps Reaction : OH^0 (-6878) + OH^0 (-10179) -> H2O2^0 (-11710)
-At time : 1 ps Reaction : OH^0 (-5733) + OH^0 (-10177) -> H2O2^0 (-11711)
-At time : 1 ps Reaction : OH^0 (-7432) + OH^0 (-10175) -> H2O2^0 (-11712)
-At time : 1 ps Reaction : OH^0 (-9611) + OH^0 (-10171) -> H2O2^0 (-11713)
-At time : 1 ps Reaction : OH^0 (-10160) + OH^0 (-10169) -> H2O2^0 (-11714)
-At time : 1 ps Reaction : OH^0 (-6795) + OH^0 (-10166) -> H2O2^0 (-11715)
-At time : 1 ps Reaction : OH^0 (-6781) + OH^0 (-10154) -> H2O2^0 (-11716)
-At time : 1 ps Reaction : OH^0 (-6800) + OH^0 (-10152) -> H2O2^0 (-11717)
-At time : 1 ps Reaction : OH^0 (-6365) + OH^0 (-10151) -> H2O2^0 (-11718)
-At time : 1 ps Reaction : OH^0 (-8603) + OH^0 (-10149) -> H2O2^0 (-11719)
-At time : 1 ps Reaction : H^0 (-6497) + OH^0 (-10147) -> No product
-At time : 1 ps Reaction : OH^0 (-6815) + OH^0 (-10142) -> H2O2^0 (-11720)
-At time : 1 ps Reaction : OH^0 (-6957) + OH^0 (-10141) -> H2O2^0 (-11721)
-At time : 1 ps Reaction : OH^0 (-8737) + H^0 (-10139) -> No product
-At time : 1 ps Reaction : OH^0 (-6802) + OH^0 (-10138) -> H2O2^0 (-11722)
-At time : 1 ps Reaction : OH^0 (-6207) + OH^0 (-10135) -> H2O2^0 (-11723)
-At time : 1 ps Reaction : OH^0 (-9097) + OH^0 (-10133) -> H2O2^0 (-11724)
-At time : 1 ps Reaction : OH^0 (-7617) + OH^0 (-10131) -> H2O2^0 (-11725)
-At time : 1 ps Reaction : H^0 (-6553) + OH^0 (-10125) -> No product
-At time : 1 ps Reaction : OH^0 (-8539) + OH^0 (-10122) -> H2O2^0 (-11726)
-At time : 1 ps Reaction : OH^0 (-9521) + OH^0 (-10121) -> H2O2^0 (-11727)
-At time : 1 ps Reaction : OH^0 (-7085) + OH^0 (-10117) -> H2O2^0 (-11728)
-At time : 1 ps Reaction : OH^0 (-7401) + OH^0 (-10111) -> H2O2^0 (-11729)
-At time : 1 ps Reaction : H^0 (-10109) + OH^0 (-8327) -> No product
-At time : 1 ps Reaction : OH^0 (-6804) + OH^0 (-10108) -> H2O2^0 (-11730)
-At time : 1 ps Reaction : OH^0 (-6073) + OH^0 (-10105) -> H2O2^0 (-11731)
-At time : 1 ps Reaction : OH^0 (-6806) + OH^0 (-10102) -> H2O2^0 (-11732)
-At time : 1 ps Reaction : OH^0 (-6817) + OH^0 (-10098) -> H2O2^0 (-11733)
-At time : 1 ps Reaction : OH^0 (-6819) + OH^0 (-10096) -> H2O2^0 (-11734)
-At time : 1 ps Reaction : H^0 (-10095) + OH^0 (-8751) -> No product
-At time : 1 ps Reaction : OH^0 (-6813) + OH^0 (-10094) -> H2O2^0 (-11735)
-At time : 1 ps Reaction : OH^0 (-6821) + OH^0 (-10092) -> H2O2^0 (-11736)
-At time : 1 ps Reaction : OH^0 (-6830) + OH^0 (-10088) -> H2O2^0 (-11737)
-At time : 1 ps Reaction : OH^0 (-6130) + OH^0 (-10081) -> H2O2^0 (-11738)
-At time : 1 ps Reaction : OH^0 (-6258) + OH^0 (-10073) -> H2O2^0 (-11739)
-At time : 1 ps Reaction : OH^0 (-6826) + OH^0 (-10070) -> H2O2^0 (-11740)
-At time : 1 ps Reaction : OH^0 (-6379) + OH^0 (-10067) -> H2O2^0 (-11741)
-At time : 1 ps Reaction : H^0 (-7111) + OH^0 (-10065) -> No product
-At time : 1 ps Reaction : OH^0 (-6852) + OH^0 (-10063) -> H2O2^0 (-11742)
-At time : 1 ps Reaction : OH^0 (-7482) + OH^0 (-10061) -> H2O2^0 (-11743)
-At time : 1 ps Reaction : OH^0 (-6832) + OH^0 (-10060) -> H2O2^0 (-11744)
-At time : 1 ps Reaction : OH^0 (-6836) + OH^0 (-10055) -> H2O2^0 (-11745)
-At time : 1 ps Reaction : H^0 (-7571) + H^0 (-10052) -> H_2^0 (-11746)
-At time : 1 ps Reaction : OH^0 (-6834) + OH^0 (-10051) -> H2O2^0 (-11747)
-At time : 1 ps Reaction : OH^0 (-10044) + OH^0 (-9552) -> H2O2^0 (-11748)
-At time : 1 ps Reaction : H^0 (-10040) + OH^0 (-7416) -> No product
-At time : 1 ps Reaction : OH^0 (-6840) + OH^0 (-10039) -> H2O2^0 (-11749)
-At time : 1 ps Reaction : H^0 (-6889) + H^0 (-10036) -> H_2^0 (-11750)
-At time : 1 ps Reaction : OH^0 (-6844) + OH^0 (-10035) -> H2O2^0 (-11751)
-At time : 1 ps Reaction : OH^0 (-7278) + OH^0 (-10034) -> H2O2^0 (-11752)
-At time : 1 ps Reaction : OH^0 (-7326) + OH^0 (-10030) -> H2O2^0 (-11753)
-At time : 1 ps Reaction : OH^0 (-10028) + OH^0 (-9527) -> H2O2^0 (-11754)
-At time : 1 ps Reaction : OH^0 (-10026) + OH^0 (-7300) -> H2O2^0 (-11755)
-At time : 1 ps Reaction : OH^0 (-10024) + H^0 (-7843) -> No product
-At time : 1 ps Reaction : OH^0 (-7697) + OH^0 (-10014) -> H2O2^0 (-11756)
-At time : 1 ps Reaction : OH^0 (-10006) + OH^0 (-6445) -> H2O2^0 (-11757)
-At time : 1 ps Reaction : OH^0 (-9492) + H^0 (-9990) -> No product
-At time : 1 ps Reaction : OH^0 (-6866) + OH^0 (-9989) -> H2O2^0 (-11758)
-At time : 1 ps Reaction : OH^0 (-9988) + OH^0 (-9863) -> H2O2^0 (-11759)
-At time : 1 ps Reaction : H^0 (-6905) + OH^0 (-9986) -> No product
-At time : 1 ps Reaction : OH^0 (-5827) + OH^0 (-9984) -> H2O2^0 (-11760)
-At time : 1 ps Reaction : OH^0 (-8624) + OH^0 (-9982) -> H2O2^0 (-11761)
-At time : 1 ps Reaction : OH^0 (-9980) + OH^0 (-8871) -> H2O2^0 (-11762)
-At time : 1 ps Reaction : OH^0 (-9976) + H^0 (-8276) -> No product
-At time : 1 ps Reaction : OH^0 (-6462) + OH^0 (-9970) -> H2O2^0 (-11763)
-At time : 1 ps Reaction : OH^0 (-8371) + OH^0 (-9964) -> H2O2^0 (-11764)
-At time : 1 ps Reaction : OH^0 (-6314) + OH^0 (-9962) -> H2O2^0 (-11765)
-At time : 1 ps Reaction : OH^0 (-6843) + OH^0 (-9956) -> H2O2^0 (-11766)
-At time : 1 ps Reaction : H^0 (-9595) + OH^0 (-9955) -> No product
-At time : 1 ps Reaction : H^0 (-8127) + H^0 (-9953) -> H_2^0 (-11767)
-At time : 1 ps Reaction : OH^0 (-6850) + OH^0 (-9952) -> H2O2^0 (-11768)
-At time : 1 ps Reaction : OH^0 (-9949) + OH^0 (-9020) -> H2O2^0 (-11769)
-At time : 1 ps Reaction : OH^0 (-8286) + OH^0 (-9947) -> H2O2^0 (-11770)
-At time : 1 ps Reaction : OH^0 (-6439) + OH^0 (-9946) -> H2O2^0 (-11771)
-At time : 1 ps Reaction : OH^0 (-6857) + OH^0 (-9941) -> H2O2^0 (-11772)
-At time : 1 ps Reaction : OH^0 (-6859) + OH^0 (-9939) -> H2O2^0 (-11773)
-At time : 1 ps Reaction : OH^0 (-7052) + OH^0 (-9938) -> H2O2^0 (-11774)
-At time : 1 ps Reaction : OH^0 (-6873) + OH^0 (-9935) -> H2O2^0 (-11775)
-At time : 1 ps Reaction : OH^0 (-6406) + H^0 (-9934) -> No product
-At time : 1 ps Reaction : OH^0 (-6871) + OH^0 (-9933) -> H2O2^0 (-11776)
-At time : 1 ps Reaction : OH^0 (-9932) + OH^0 (-9040) -> H2O2^0 (-11777)
-At time : 1 ps Reaction : OH^0 (-9930) + OH^0 (-8817) -> H2O2^0 (-11778)
-At time : 1 ps Reaction : OH^0 (-6875) + OH^0 (-9923) -> H2O2^0 (-11779)
-At time : 1 ps Reaction : OH^0 (-9519) + OH^0 (-9918) -> H2O2^0 (-11780)
-At time : 1 ps Reaction : H^0 (-8183) + OH^0 (-9916) -> No product
-At time : 1 ps Reaction : OH^0 (-6880) + OH^0 (-9914) -> H2O2^0 (-11781)
-At time : 1 ps Reaction : OH^0 (-6343) + OH^0 (-9913) -> H2O2^0 (-11782)
-At time : 1 ps Reaction : OH^0 (-6260) + H^0 (-9909) -> No product
-At time : 1 ps Reaction : OH^0 (-6882) + OH^0 (-9908) -> H2O2^0 (-11783)
-At time : 1 ps Reaction : OH^0 (-6952) + OH^0 (-9899) -> H2O2^0 (-11784)
-At time : 1 ps Reaction : OH^0 (-6888) + OH^0 (-9896) -> H2O2^0 (-11785)
-At time : 1 ps Reaction : OH^0 (-6391) + OH^0 (-9893) -> H2O2^0 (-11786)
-At time : 1 ps Reaction : OH^0 (-7853) + OH^0 (-9891) -> H2O2^0 (-11787)
-At time : 1 ps Reaction : OH^0 (-9889) + OH^0 (-8887) -> H2O2^0 (-11788)
-At time : 1 ps Reaction : OH^0 (-8357) + OH^0 (-9877) -> H2O2^0 (-11789)
-At time : 1 ps Reaction : OH^0 (-5839) + OH^0 (-9875) -> H2O2^0 (-11790)
-At time : 1 ps Reaction : H^0 (-6686) + OH^0 (-9873) -> No product
-At time : 1 ps Reaction : OH^0 (-7926) + OH^0 (-9871) -> H2O2^0 (-11791)
-At time : 1 ps Reaction : OH^0 (-6886) + OH^0 (-9850) -> H2O2^0 (-11792)
-At time : 1 ps Reaction : OH^0 (-7941) + OH^0 (-9845) -> H2O2^0 (-11793)
-At time : 1 ps Reaction : OH^0 (-7133) + OH^0 (-9838) -> H2O2^0 (-11794)
-At time : 1 ps Reaction : OH^0 (-9599) + OH^0 (-9836) -> H2O2^0 (-11795)
-At time : 1 ps Reaction : OH^0 (-6903) + OH^0 (-9834) -> H2O2^0 (-11796)
-At time : 1 ps Reaction : OH^0 (-9832) + OH^0 (-8388) -> H2O2^0 (-11797)
-At time : 1 ps Reaction : OH^0 (-6220) + OH^0 (-9828) -> H2O2^0 (-11798)
-At time : 1 ps Reaction : OH^0 (-6929) + OH^0 (-9822) -> H2O2^0 (-11799)
-At time : 1 ps Reaction : H^0 (-9818) + OH^0 (-8117) -> No product
-At time : 1 ps Reaction : OH^0 (-6890) + OH^0 (-9817) -> H2O2^0 (-11800)
-At time : 1 ps Reaction : OH^0 (-7422) + OH^0 (-9816) -> H2O2^0 (-11801)
-At time : 1 ps Reaction : OH^0 (-9815) + OH^0 (-9235) -> H2O2^0 (-11802)
-At time : 1 ps Reaction : H^0 (-8147) + OH^0 (-9813) -> No product
-At time : 1 ps Reaction : OH^0 (-6896) + OH^0 (-9808) -> H2O2^0 (-11803)
-At time : 1 ps Reaction : OH^0 (-6689) + OH^0 (-9807) -> H2O2^0 (-11804)
-At time : 1 ps Reaction : OH^0 (-6894) + OH^0 (-9802) -> H2O2^0 (-11805)
-At time : 1 ps Reaction : OH^0 (-8575) + H^0 (-9801) -> No product
-At time : 1 ps Reaction : OH^0 (-6892) + OH^0 (-9800) -> H2O2^0 (-11806)
-At time : 1 ps Reaction : OH^0 (-6870) + OH^0 (-9799) -> H2O2^0 (-11807)
-At time : 1 ps Reaction : OH^0 (-9798) + OH^0 (-8157) -> H2O2^0 (-11808)
-At time : 1 ps Reaction : OH^0 (-9790) + H^0 (-9036) -> No product
-At time : 1 ps Reaction : OH^0 (-6898) + OH^0 (-9783) -> H2O2^0 (-11809)
-At time : 1 ps Reaction : OH^0 (-7329) + OH^0 (-9776) -> H2O2^0 (-11810)
-At time : 1 ps Reaction : OH^0 (-9772) + OH^0 (-8991) -> H2O2^0 (-11811)
-At time : 1 ps Reaction : OH^0 (-7286) + OH^0 (-9766) -> H2O2^0 (-11812)
-At time : 1 ps Reaction : OH^0 (-7464) + OH^0 (-9760) -> H2O2^0 (-11813)
-At time : 1 ps Reaction : OH^0 (-6293) + OH^0 (-9759) -> H2O2^0 (-11814)
-At time : 1 ps Reaction : OH^0 (-6900) + OH^0 (-9750) -> H2O2^0 (-11815)
-At time : 1 ps Reaction : H^0 (-7129) + OH^0 (-9749) -> No product
-At time : 1 ps Reaction : OH^0 (-7767) + OH^0 (-9745) -> H2O2^0 (-11816)
-At time : 1 ps Reaction : OH^0 (-9743) + OH^0 (-8203) -> H2O2^0 (-11817)
-At time : 1 ps Reaction : OH^0 (-9631) + OH^0 (-9737) -> H2O2^0 (-11818)
-At time : 1 ps Reaction : OH^0 (-6923) + H^0 (-9735) -> No product
-At time : 1 ps Reaction : OH^0 (-6904) + OH^0 (-9734) -> H2O2^0 (-11819)
-At time : 1 ps Reaction : OH^0 (-6915) + H^0 (-9727) -> No product
-At time : 1 ps Reaction : OH^0 (-6906) + OH^0 (-9726) -> H2O2^0 (-11820)
-At time : 1 ps Reaction : H^0 (-6527) + OH^0 (-9725) -> No product
-At time : 1 ps Reaction : OH^0 (-9723) + OH^0 (-8815) -> H2O2^0 (-11821)
-At time : 1 ps Reaction : OH^0 (-7661) + OH^0 (-9719) -> H2O2^0 (-11822)
-At time : 1 ps Reaction : OH^0 (-7457) + OH^0 (-9707) -> H2O2^0 (-11823)
-At time : 1 ps Reaction : OH^0 (-6180) + OH^0 (-9699) -> H2O2^0 (-11824)
-At time : 1 ps Reaction : OH^0 (-7691) + OH^0 (-9679) -> H2O2^0 (-11825)
-At time : 1 ps Reaction : OH^0 (-6920) + OH^0 (-9676) -> H2O2^0 (-11826)
-At time : 1 ps Reaction : OH^0 (-7208) + OH^0 (-9675) -> H2O2^0 (-11827)
-At time : 1 ps Reaction : OH^0 (-6910) + OH^0 (-9672) -> H2O2^0 (-11828)
-At time : 1 ps Reaction : OH^0 (-9667) + OH^0 (-9311) -> H2O2^0 (-11829)
-At time : 1 ps Reaction : OH^0 (-8537) + OH^0 (-9661) -> H2O2^0 (-11830)
-At time : 1 ps Reaction : H^0 (-6517) + OH^0 (-9659) -> No product
-At time : 1 ps Reaction : OH^0 (-7535) + OH^0 (-9649) -> H2O2^0 (-11831)
-At time : 1 ps Reaction : OH^0 (-6924) + OH^0 (-9640) -> H2O2^0 (-11832)
-At time : 1 ps Reaction : OH^0 (-6701) + OH^0 (-9637) -> H2O2^0 (-11833)
-At time : 1 ps Reaction : OH^0 (-5778) + OH^0 (-9627) -> H2O2^0 (-11834)
-At time : 1 ps Reaction : OH^0 (-9625) + OH^0 (-9355) -> H2O2^0 (-11835)
-At time : 1 ps Reaction : OH^0 (-7104) + OH^0 (-9621) -> H2O2^0 (-11836)
-At time : 1 ps Reaction : OH^0 (-6780) + OH^0 (-9617) -> H2O2^0 (-11837)
-At time : 1 ps Reaction : H^0 (-7924) + OH^0 (-9613) -> No product
-At time : 1 ps Reaction : OH^0 (-7220) + OH^0 (-9607) -> H2O2^0 (-11838)
-At time : 1 ps Reaction : H^0 (-7882) + OH^0 (-9601) -> No product
-At time : 1 ps Reaction : OH^0 (-6166) + OH^0 (-9597) -> H2O2^0 (-11839)
-At time : 1 ps Reaction : OH^0 (-6926) + OH^0 (-9594) -> H2O2^0 (-11840)
-At time : 1 ps Reaction : OH^0 (-8515) + OH^0 (-9593) -> H2O2^0 (-11841)
-At time : 1 ps Reaction : OH^0 (-7968) + OH^0 (-9589) -> H2O2^0 (-11842)
-At time : 1 ps Reaction : H^0 (-9587) + H^0 (-8895) -> H_2^0 (-11843)
-At time : 1 ps Reaction : OH^0 (-6930) + OH^0 (-9586) -> H2O2^0 (-11844)
-At time : 1 ps Reaction : OH^0 (-9585) + OH^0 (-9122) -> H2O2^0 (-11845)
-At time : 1 ps Reaction : OH^0 (-8005) + OH^0 (-9584) -> H2O2^0 (-11846)
-At time : 1 ps Reaction : OH^0 (-6932) + OH^0 (-9577) -> H2O2^0 (-11847)
-At time : 1 ps Reaction : H^0 (-9574) + H^0 (-9239) -> H_2^0 (-11848)
-At time : 1 ps Reaction : OH^0 (-6934) + OH^0 (-9573) -> H2O2^0 (-11849)
-At time : 1 ps Reaction : OH^0 (-9572) + OH^0 (-9294) -> H2O2^0 (-11850)
-At time : 1 ps Reaction : H^0 (-7153) + OH^0 (-9570) -> No product
-At time : 1 ps Reaction : H^0 (-7746) + OH^0 (-9568) -> No product
-At time : 1 ps Reaction : OH^0 (-6977) + OH^0 (-9564) -> H2O2^0 (-11851)
-At time : 1 ps Reaction : OH^0 (-6936) + OH^0 (-9561) -> H2O2^0 (-11852)
-At time : 1 ps Reaction : OH^0 (-6938) + OH^0 (-9559) -> H2O2^0 (-11853)
-At time : 1 ps Reaction : OH^0 (-6954) + OH^0 (-9557) -> H2O2^0 (-11854)
-At time : 1 ps Reaction : OH^0 (-6947) + OH^0 (-9555) -> H2O2^0 (-11855)
-At time : 1 ps Reaction : OH^0 (-7270) + OH^0 (-9554) -> H2O2^0 (-11856)
-At time : 1 ps Reaction : OH^0 (-7476) + OH^0 (-9550) -> H2O2^0 (-11857)
-At time : 1 ps Reaction : OH^0 (-9549) + OH^0 (-8636) -> H2O2^0 (-11858)
-At time : 1 ps Reaction : OH^0 (-5814) + OH^0 (-9545) -> H2O2^0 (-11859)
-At time : 1 ps Reaction : OH^0 (-6961) + OH^0 (-9536) -> H2O2^0 (-11860)
-At time : 1 ps Reaction : OH^0 (-7501) + OH^0 (-9535) -> H2O2^0 (-11861)
-At time : 1 ps Reaction : OH^0 (-7385) + OH^0 (-9517) -> H2O2^0 (-11862)
-At time : 1 ps Reaction : OH^0 (-8707) + H^0 (-9515) -> No product
-At time : 1 ps Reaction : OH^0 (-6978) + OH^0 (-9514) -> H2O2^0 (-11863)
-At time : 1 ps Reaction : OH^0 (-9502) + OH^0 (-9513) -> H2O2^0 (-11864)
-At time : 1 ps Reaction : OH^0 (-9512) + OH^0 (-8071) -> H2O2^0 (-11865)
-At time : 1 ps Reaction : OH^0 (-9510) + OH^0 (-8851) -> H2O2^0 (-11866)
-At time : 1 ps Reaction : OH^0 (-9508) + OH^0 (-8814) -> H2O2^0 (-11867)
-At time : 1 ps Reaction : OH^0 (-6946) + OH^0 (-9500) -> H2O2^0 (-11868)
-At time : 1 ps Reaction : OH^0 (-9490) + OH^0 (-9090) -> H2O2^0 (-11869)
-At time : 1 ps Reaction : H^0 (-7800) + OH^0 (-9488) -> No product
-At time : 1 ps Reaction : OH^0 (-7453) + OH^0 (-9480) -> H2O2^0 (-11870)
-At time : 1 ps Reaction : OH^0 (-8556) + H^0 (-9476) -> No product
-At time : 1 ps Reaction : OH^0 (-6982) + OH^0 (-9475) -> H2O2^0 (-11871)
-At time : 1 ps Reaction : H^0 (-8280) + OH^0 (-9470) -> No product
-At time : 1 ps Reaction : OH^0 (-7756) + OH^0 (-9466) -> H2O2^0 (-11872)
-At time : 1 ps Reaction : OH^0 (-9458) + OH^0 (-8255) -> H2O2^0 (-11873)
-At time : 1 ps Reaction : OH^0 (-6972) + OH^0 (-9451) -> H2O2^0 (-11874)
-At time : 1 ps Reaction : OH^0 (-9446) + OH^0 (-8678) -> H2O2^0 (-11875)
-At time : 1 ps Reaction : OH^0 (-5745) + OH^0 (-9440) -> H2O2^0 (-11876)
-At time : 1 ps Reaction : H^0 (-9438) + H^0 (-7296) -> H_2^0 (-11877)
-At time : 1 ps Reaction : OH^0 (-9437) + OH^0 (-6984) -> H2O2^0 (-11878)
-At time : 1 ps Reaction : OH^0 (-9436) + OH^0 (-8123) -> H2O2^0 (-11879)
-At time : 1 ps Reaction : OH^0 (-6994) + OH^0 (-9427) -> H2O2^0 (-11880)
-At time : 1 ps Reaction : OH^0 (-7002) + OH^0 (-9425) -> H2O2^0 (-11881)
-At time : 1 ps Reaction : H^0 (-6646) + H^0 (-9424) -> H_2^0 (-11882)
-At time : 1 ps Reaction : OH^0 (-7004) + OH^0 (-9423) -> H2O2^0 (-11883)
-At time : 1 ps Reaction : OH^0 (-9422) + OH^0 (-8420) -> H2O2^0 (-11884)
-At time : 1 ps Reaction : OH^0 (-9420) + OH^0 (-6397) -> H2O2^0 (-11885)
-At time : 1 ps Reaction : OH^0 (-9418) + OH^0 (-5863) -> H2O2^0 (-11886)
-At time : 1 ps Reaction : OH^0 (-7870) + OH^0 (-9415) -> H2O2^0 (-11887)
-At time : 1 ps Reaction : H^0 (-9413) + OH^0 (-8711) -> No product
-At time : 1 ps Reaction : OH^0 (-6990) + OH^0 (-9412) -> H2O2^0 (-11888)
-At time : 1 ps Reaction : OH^0 (-9411) + OH^0 (-5908) -> H2O2^0 (-11889)
-At time : 1 ps Reaction : OH^0 (-9407) + OH^0 (-8512) -> H2O2^0 (-11890)
-At time : 1 ps Reaction : OH^0 (-9403) + OH^0 (-6064) -> H2O2^0 (-11891)
-At time : 1 ps Reaction : OH^0 (-9399) + OH^0 (-5893) -> H2O2^0 (-11892)
-At time : 1 ps Reaction : OH^0 (-7811) + OH^0 (-9395) -> H2O2^0 (-11893)
-At time : 1 ps Reaction : OH^0 (-6969) + OH^0 (-9391) -> H2O2^0 (-11894)
-At time : 1 ps Reaction : OH^0 (-7234) + OH^0 (-9389) -> H2O2^0 (-11895)
-At time : 1 ps Reaction : OH^0 (-8941) + OH^0 (-9387) -> H2O2^0 (-11896)
-At time : 1 ps Reaction : OH^0 (-7000) + OH^0 (-9382) -> H2O2^0 (-11897)
-At time : 1 ps Reaction : OH^0 (-6771) + OH^0 (-9381) -> H2O2^0 (-11898)
-At time : 1 ps Reaction : OH^0 (-7008) + OH^0 (-9378) -> H2O2^0 (-11899)
-At time : 1 ps Reaction : OH^0 (-8027) + OH^0 (-9373) -> H2O2^0 (-11900)
-At time : 1 ps Reaction : OH^0 (-8303) + H^0 (-9369) -> No product
-At time : 1 ps Reaction : OH^0 (-6940) + OH^0 (-9368) -> H2O2^0 (-11901)
-At time : 1 ps Reaction : OH^0 (-7013) + OH^0 (-9366) -> H2O2^0 (-11902)
-At time : 1 ps Reaction : OH^0 (-7466) + OH^0 (-9365) -> H2O2^0 (-11903)
-At time : 1 ps Reaction : OH^0 (-7580) + OH^0 (-9363) -> H2O2^0 (-11904)
-At time : 1 ps Reaction : OH^0 (-5748) + OH^0 (-9357) -> H2O2^0 (-11905)
-At time : 1 ps Reaction : OH^0 (-9132) + OH^0 (-9349) -> H2O2^0 (-11906)
-At time : 1 ps Reaction : OH^0 (-8618) + OH^0 (-9347) -> H2O2^0 (-11907)
-At time : 1 ps Reaction : OH^0 (-6257) + OH^0 (-9345) -> H2O2^0 (-11908)
-At time : 1 ps Reaction : OH^0 (-7022) + OH^0 (-9338) -> H2O2^0 (-11909)
-At time : 1 ps Reaction : OH^0 (-6366) + OH^0 (-9331) -> H2O2^0 (-11910)
-At time : 1 ps Reaction : OH^0 (-7020) + OH^0 (-9324) -> H2O2^0 (-11911)
-At time : 1 ps Reaction : OH^0 (-8762) + OH^0 (-9323) -> H2O2^0 (-11912)
-At time : 1 ps Reaction : OH^0 (-7198) + OH^0 (-9321) -> H2O2^0 (-11913)
-At time : 1 ps Reaction : OH^0 (-9320) + OH^0 (-9042) -> H2O2^0 (-11914)
-At time : 1 ps Reaction : OH^0 (-7031) + OH^0 (-9318) -> H2O2^0 (-11915)
-At time : 1 ps Reaction : OH^0 (-8319) + OH^0 (-9314) -> H2O2^0 (-11916)
-At time : 1 ps Reaction : OH^0 (-7029) + OH^0 (-9304) -> H2O2^0 (-11917)
-At time : 1 ps Reaction : OH^0 (-7033) + OH^0 (-9300) -> H2O2^0 (-11918)
-At time : 1 ps Reaction : H^0 (-7309) + OH^0 (-9295) -> No product
-At time : 1 ps Reaction : OH^0 (-7060) + OH^0 (-9292) -> H2O2^0 (-11919)
-At time : 1 ps Reaction : OH^0 (-7707) + OH^0 (-9288) -> H2O2^0 (-11920)
-At time : 1 ps Reaction : OH^0 (-7047) + OH^0 (-9286) -> H2O2^0 (-11921)
-At time : 1 ps Reaction : OH^0 (-8317) + OH^0 (-9285) -> H2O2^0 (-11922)
-At time : 1 ps Reaction : OH^0 (-7037) + OH^0 (-9280) -> H2O2^0 (-11923)
-At time : 1 ps Reaction : OH^0 (-6169) + OH^0 (-9279) -> H2O2^0 (-11924)
-At time : 1 ps Reaction : OH^0 (-7049) + OH^0 (-9274) -> H2O2^0 (-11925)
-At time : 1 ps Reaction : OH^0 (-6909) + OH^0 (-9271) -> H2O2^0 (-11926)
-At time : 1 ps Reaction : OH^0 (-7063) + OH^0 (-9268) -> H2O2^0 (-11927)
-At time : 1 ps Reaction : OH^0 (-5896) + OH^0 (-9267) -> H2O2^0 (-11928)
-At time : 1 ps Reaction : OH^0 (-7408) + OH^0 (-9265) -> H2O2^0 (-11929)
-At time : 1 ps Reaction : OH^0 (-8197) + H^0 (-9261) -> No product
-At time : 1 ps Reaction : OH^0 (-7054) + OH^0 (-9260) -> H2O2^0 (-11930)
-At time : 1 ps Reaction : OH^0 (-6112) + OH^0 (-9253) -> H2O2^0 (-11931)
-At time : 1 ps Reaction : H^0 (-6583) + OH^0 (-9251) -> No product
-At time : 1 ps Reaction : OH^0 (-7556) + H^0 (-9243) -> No product
-At time : 1 ps Reaction : OH^0 (-7061) + OH^0 (-9242) -> H2O2^0 (-11932)
-At time : 1 ps Reaction : OH^0 (-7067) + OH^0 (-9240) -> H2O2^0 (-11933)
-At time : 1 ps Reaction : OH^0 (-7069) + OH^0 (-9238) -> H2O2^0 (-11934)
-At time : 1 ps Reaction : OH^0 (-7836) + OH^0 (-9233) -> H2O2^0 (-11935)
-At time : 1 ps Reaction : OH^0 (-6387) + OH^0 (-9232) -> H2O2^0 (-11936)
-At time : 1 ps Reaction : OH^0 (-8701) + OH^0 (-9214) -> H2O2^0 (-11937)
-At time : 1 ps Reaction : OH^0 (-7019) + OH^0 (-9212) -> H2O2^0 (-11938)
-At time : 1 ps Reaction : OH^0 (-7073) + OH^0 (-9207) -> H2O2^0 (-11939)
-At time : 1 ps Reaction : OH^0 (-5884) + OH^0 (-9206) -> H2O2^0 (-11940)
-At time : 1 ps Reaction : OH^0 (-6362) + OH^0 (-9202) -> H2O2^0 (-11941)
-At time : 1 ps Reaction : H^0 (-7224) + OH^0 (-9196) -> No product
-At time : 1 ps Reaction : H^0 (-6841) + OH^0 (-9194) -> No product
-At time : 1 ps Reaction : OH^0 (-7018) + OH^0 (-9188) -> H2O2^0 (-11942)
-At time : 1 ps Reaction : OH^0 (-9139) + OH^0 (-9185) -> H2O2^0 (-11943)
-At time : 1 ps Reaction : OH^0 (-5824) + OH^0 (-9183) -> H2O2^0 (-11944)
-At time : 1 ps Reaction : OH^0 (-8963) + OH^0 (-9179) -> H2O2^0 (-11945)
-At time : 1 ps Reaction : H^0 (-8079) + OH^0 (-9173) -> No product
-At time : 1 ps Reaction : OH^0 (-8331) + OH^0 (-9169) -> H2O2^0 (-11946)
-At time : 1 ps Reaction : OH^0 (-8105) + OH^0 (-9165) -> H2O2^0 (-11947)
-At time : 1 ps Reaction : H^0 (-6925) + H^0 (-9161) -> H_2^0 (-11948)
-At time : 1 ps Reaction : OH^0 (-7071) + OH^0 (-9160) -> H2O2^0 (-11949)
-At time : 1 ps Reaction : OH^0 (-6944) + OH^0 (-9159) -> H2O2^0 (-11950)
-At time : 1 ps Reaction : OH^0 (-6436) + H^0 (-9151) -> No product
-At time : 1 ps Reaction : OH^0 (-7077) + OH^0 (-9150) -> H2O2^0 (-11951)
-At time : 1 ps Reaction : H^0 (-6559) + H^0 (-9149) -> H_2^0 (-11952)
-At time : 1 ps Reaction : OH^0 (-7075) + OH^0 (-9148) -> H2O2^0 (-11953)
-At time : 1 ps Reaction : OH^0 (-8725) + OH^0 (-9143) -> H2O2^0 (-11954)
-At time : 1 ps Reaction : H^0 (-7125) + OH^0 (-9141) -> No product
-At time : 1 ps Reaction : OH^0 (-7488) + OH^0 (-9137) -> H2O2^0 (-11955)
-At time : 1 ps Reaction : OH^0 (-7619) + H^0 (-9126) -> No product
-At time : 1 ps Reaction : OH^0 (-7086) + OH^0 (-9125) -> H2O2^0 (-11956)
-At time : 1 ps Reaction : OH^0 (-7088) + OH^0 (-9123) -> H2O2^0 (-11957)
-At time : 1 ps Reaction : OH^0 (-7092) + OH^0 (-9116) -> H2O2^0 (-11958)
-At time : 1 ps Reaction : OH^0 (-7653) + OH^0 (-9113) -> H2O2^0 (-11959)
-At time : 1 ps Reaction : H^0 (-6725) + H^0 (-9099) -> H_2^0 (-11960)
-At time : 1 ps Reaction : OH^0 (-7098) + OH^0 (-9098) -> H2O2^0 (-11961)
-At time : 1 ps Reaction : OH^0 (-7940) + OH^0 (-9084) -> H2O2^0 (-11962)
-At time : 1 ps Reaction : OH^0 (-7647) + OH^0 (-9082) -> H2O2^0 (-11963)
-At time : 1 ps Reaction : OH^0 (-7865) + OH^0 (-9066) -> H2O2^0 (-11964)
-At time : 1 ps Reaction : H^0 (-8560) + OH^0 (-9056) -> No product
-At time : 1 ps Reaction : H^0 (-8057) + OH^0 (-9052) -> No product
-At time : 1 ps Reaction : OH^0 (-7108) + OH^0 (-9049) -> H2O2^0 (-11965)
-At time : 1 ps Reaction : H^0 (-6851) + OH^0 (-9038) -> No product
-At time : 1 ps Reaction : OH^0 (-7107) + OH^0 (-9035) -> H2O2^0 (-11966)
-At time : 1 ps Reaction : H^0 (-6783) + OH^0 (-9030) -> No product
-At time : 1 ps Reaction : H^0 (-9026) + H^0 (-7487) -> H_2^0 (-11967)
-At time : 1 ps Reaction : OH^0 (-9025) + OH^0 (-7110) -> H2O2^0 (-11968)
-At time : 1 ps Reaction : H^0 (-8486) + OH^0 (-9024) -> No product
-At time : 1 ps Reaction : OH^0 (-7240) + OH^0 (-9014) -> H2O2^0 (-11969)
-At time : 1 ps Reaction : OH^0 (-7720) + OH^0 (-9010) -> H2O2^0 (-11970)
-At time : 1 ps Reaction : OH^0 (-7007) + OH^0 (-9006) -> H2O2^0 (-11971)
-At time : 1 ps Reaction : OH^0 (-8337) + OH^0 (-9004) -> H2O2^0 (-11972)
-At time : 1 ps Reaction : OH^0 (-6244) + H^0 (-9002) -> No product
-At time : 1 ps Reaction : OH^0 (-7124) + OH^0 (-9001) -> H2O2^0 (-11973)
-At time : 1 ps Reaction : OH^0 (-7126) + OH^0 (-8999) -> H2O2^0 (-11974)
-At time : 1 ps Reaction : OH^0 (-7011) + OH^0 (-8998) -> H2O2^0 (-11975)
-At time : 1 ps Reaction : OH^0 (-6654) + OH^0 (-8997) -> H2O2^0 (-11976)
-At time : 1 ps Reaction : OH^0 (-7145) + OH^0 (-8993) -> H2O2^0 (-11977)
-At time : 1 ps Reaction : OH^0 (-7128) + OH^0 (-8988) -> H2O2^0 (-11978)
-At time : 1 ps Reaction : OH^0 (-7638) + OH^0 (-8985) -> H2O2^0 (-11979)
-At time : 1 ps Reaction : OH^0 (-6865) + H^0 (-8981) -> No product
-At time : 1 ps Reaction : OH^0 (-7094) + OH^0 (-8980) -> H2O2^0 (-11980)
-At time : 1 ps Reaction : OH^0 (-7134) + OH^0 (-8972) -> H2O2^0 (-11981)
-At time : 1 ps Reaction : OH^0 (-7316) + OH^0 (-8965) -> H2O2^0 (-11982)
-At time : 1 ps Reaction : OH^0 (-8745) + OH^0 (-8961) -> H2O2^0 (-11983)
-At time : 1 ps Reaction : OH^0 (-6377) + OH^0 (-8959) -> H2O2^0 (-11984)
-At time : 1 ps Reaction : OH^0 (-7138) + OH^0 (-8952) -> H2O2^0 (-11985)
-At time : 1 ps Reaction : OH^0 (-7130) + OH^0 (-8948) -> H2O2^0 (-11986)
-At time : 1 ps Reaction : OH^0 (-8620) + OH^0 (-8939) -> H2O2^0 (-11987)
-At time : 1 ps Reaction : OH^0 (-7081) + OH^0 (-8931) -> H2O2^0 (-11988)
-At time : 1 ps Reaction : OH^0 (-7863) + H^0 (-8927) -> No product
-At time : 1 ps Reaction : OH^0 (-7140) + OH^0 (-8926) -> H2O2^0 (-11989)
-At time : 1 ps Reaction : H^0 (-6485) + OH^0 (-8925) -> No product
-At time : 1 ps Reaction : H^0 (-6731) + OH^0 (-8911) -> No product
-At time : 1 ps Reaction : H^0 (-6499) + OH^0 (-8905) -> No product
-At time : 1 ps Reaction : OH^0 (-6655) + OH^0 (-8899) -> H2O2^0 (-11990)
-At time : 1 ps Reaction : OH^0 (-7142) + OH^0 (-8896) -> H2O2^0 (-11991)
-At time : 1 ps Reaction : OH^0 (-7146) + OH^0 (-8894) -> H2O2^0 (-11992)
-At time : 1 ps Reaction : OH^0 (-6788) + OH^0 (-8889) -> H2O2^0 (-11993)
-At time : 1 ps Reaction : OH^0 (-7932) + H^0 (-8884) -> No product
-At time : 1 ps Reaction : OH^0 (-7148) + OH^0 (-8883) -> H2O2^0 (-11994)
-At time : 1 ps Reaction : OH^0 (-8351) + OH^0 (-8882) -> H2O2^0 (-11995)
-At time : 1 ps Reaction : OH^0 (-5974) + OH^0 (-8881) -> H2O2^0 (-11996)
-At time : 1 ps Reaction : OH^0 (-7152) + OH^0 (-8874) -> H2O2^0 (-11997)
-At time : 1 ps Reaction : H^0 (-6887) + OH^0 (-8869) -> No product
-At time : 1 ps Reaction : OH^0 (-7163) + OH^0 (-8864) -> H2O2^0 (-11998)
-At time : 1 ps Reaction : OH^0 (-6262) + OH^0 (-8863) -> H2O2^0 (-11999)
-At time : 1 ps Reaction : OH^0 (-7169) + OH^0 (-8858) -> H2O2^0 (-12000)
-At time : 1 ps Reaction : OH^0 (-7175) + OH^0 (-8852) -> H2O2^0 (-12001)
-At time : 1 ps Reaction : OH^0 (-7179) + OH^0 (-8848) -> H2O2^0 (-12002)
-At time : 1 ps Reaction : OH^0 (-7223) + OH^0 (-8846) -> H2O2^0 (-12003)
-At time : 1 ps Reaction : OH^0 (-7183) + OH^0 (-8837) -> H2O2^0 (-12004)
-At time : 1 ps Reaction : OH^0 (-7185) + OH^0 (-8835) -> H2O2^0 (-12005)
-At time : 1 ps Reaction : OH^0 (-7189) + OH^0 (-8823) -> H2O2^0 (-12006)
-At time : 1 ps Reaction : OH^0 (-8161) + OH^0 (-8822) -> H2O2^0 (-12007)
-At time : 1 ps Reaction : OH^0 (-8097) + OH^0 (-8818) -> H2O2^0 (-12008)
-At time : 1 ps Reaction : OH^0 (-7103) + OH^0 (-8798) -> H2O2^0 (-12009)
-At time : 1 ps Reaction : H^0 (-6757) + OH^0 (-8796) -> No product
-At time : 1 ps Reaction : OH^0 (-7826) + OH^0 (-8794) -> H2O2^0 (-12010)
-At time : 1 ps Reaction : OH^0 (-7601) + OH^0 (-8792) -> H2O2^0 (-12011)
-At time : 1 ps Reaction : OH^0 (-7203) + OH^0 (-8789) -> H2O2^0 (-12012)
-At time : 1 ps Reaction : OH^0 (-6319) + H^0 (-8780) -> No product
-At time : 1 ps Reaction : OH^0 (-7177) + OH^0 (-8779) -> H2O2^0 (-12013)
-At time : 1 ps Reaction : OH^0 (-7306) + OH^0 (-8778) -> H2O2^0 (-12014)
-At time : 1 ps Reaction : OH^0 (-6839) + OH^0 (-8777) -> H2O2^0 (-12015)
-At time : 1 ps Reaction : OH^0 (-7642) + OH^0 (-8774) -> H2O2^0 (-12016)
-At time : 1 ps Reaction : OH^0 (-7742) + H^0 (-8768) -> No product
-At time : 1 ps Reaction : OH^0 (-7209) + OH^0 (-8767) -> H2O2^0 (-12017)
-At time : 1 ps Reaction : OH^0 (-5769) + OH^0 (-8764) -> H2O2^0 (-12018)
-At time : 1 ps Reaction : OH^0 (-7217) + OH^0 (-8755) -> H2O2^0 (-12019)
-At time : 1 ps Reaction : OH^0 (-8752) + H^0 (-8525) -> No product
-At time : 1 ps Reaction : OH^0 (-7225) + OH^0 (-8748) -> H2O2^0 (-12020)
-At time : 1 ps Reaction : H^0 (-8676) + OH^0 (-8741) -> No product
-At time : 1 ps Reaction : OH^0 (-7215) + OH^0 (-8738) -> H2O2^0 (-12021)
-At time : 1 ps Reaction : H^0 (-6803) + OH^0 (-8735) -> No product
-At time : 1 ps Reaction : OH^0 (-8723) + H^0 (-8601) -> No product
-At time : 1 ps Reaction : OH^0 (-5938) + OH^0 (-8715) -> H2O2^0 (-12022)
-At time : 1 ps Reaction : OH^0 (-5929) + OH^0 (-8709) -> H2O2^0 (-12023)
-At time : 1 ps Reaction : OH^0 (-8003) + OH^0 (-8697) -> H2O2^0 (-12024)
-At time : 1 ps Reaction : OH^0 (-6856) + OH^0 (-8695) -> H2O2^0 (-12025)
-At time : 1 ps Reaction : OH^0 (-6989) + OH^0 (-8694) -> H2O2^0 (-12026)
-At time : 1 ps Reaction : H^0 (-7777) + OH^0 (-8686) -> No product
-At time : 1 ps Reaction : OH^0 (-8684) + OH^0 (-8373) -> H2O2^0 (-12027)
-At time : 1 ps Reaction : H^0 (-8682) + OH^0 (-8177) -> No product
-At time : 1 ps Reaction : OH^0 (-7255) + OH^0 (-8681) -> H2O2^0 (-12028)
-At time : 1 ps Reaction : OH^0 (-7257) + OH^0 (-8675) -> H2O2^0 (-12029)
-At time : 1 ps Reaction : OH^0 (-7463) + OH^0 (-8674) -> H2O2^0 (-12030)
-At time : 1 ps Reaction : OH^0 (-7289) + OH^0 (-8672) -> H2O2^0 (-12031)
-At time : 1 ps Reaction : OH^0 (-7471) + OH^0 (-8671) -> H2O2^0 (-12032)
-At time : 1 ps Reaction : OH^0 (-8031) + OH^0 (-8667) -> H2O2^0 (-12033)
-At time : 1 ps Reaction : OH^0 (-7250) + OH^0 (-8662) -> H2O2^0 (-12034)
-At time : 1 ps Reaction : H^0 (-8661) + H^0 (-8293) -> H_2^0 (-12035)
-At time : 1 ps Reaction : OH^0 (-7259) + OH^0 (-8660) -> H2O2^0 (-12036)
-At time : 1 ps Reaction : OH^0 (-7275) + OH^0 (-8656) -> H2O2^0 (-12037)
-At time : 1 ps Reaction : OH^0 (-8493) + OH^0 (-8655) -> H2O2^0 (-12038)
-At time : 1 ps Reaction : OH^0 (-6022) + OH^0 (-8654) -> H2O2^0 (-12039)
-At time : 1 ps Reaction : OH^0 (-7819) + OH^0 (-8650) -> H2O2^0 (-12040)
-At time : 1 ps Reaction : OH^0 (-7404) + OH^0 (-8643) -> H2O2^0 (-12041)
-At time : 1 ps Reaction : OH^0 (-7794) + H^0 (-8640) -> No product
-At time : 1 ps Reaction : OH^0 (-7267) + OH^0 (-8639) -> H2O2^0 (-12042)
-At time : 1 ps Reaction : H^0 (-6767) + H^0 (-8638) -> H_2^0 (-12043)
-At time : 1 ps Reaction : OH^0 (-7295) + OH^0 (-8637) -> H2O2^0 (-12044)
-At time : 1 ps Reaction : OH^0 (-7271) + OH^0 (-8629) -> H2O2^0 (-12045)
-At time : 1 ps Reaction : OH^0 (-7308) + OH^0 (-8627) -> H2O2^0 (-12046)
-At time : 1 ps Reaction : OH^0 (-7828) + OH^0 (-8616) -> H2O2^0 (-12047)
-At time : 1 ps Reaction : OH^0 (-8612) + H^0 (-8465) -> No product
-At time : 1 ps Reaction : OH^0 (-6055) + OH^0 (-8610) -> H2O2^0 (-12048)
-At time : 1 ps Reaction : OH^0 (-7323) + OH^0 (-8606) -> H2O2^0 (-12049)
-At time : 1 ps Reaction : OH^0 (-7310) + OH^0 (-8600) -> H2O2^0 (-12050)
-At time : 1 ps Reaction : OH^0 (-7338) + OH^0 (-8598) -> H2O2^0 (-12051)
-At time : 1 ps Reaction : H^0 (-7272) + H^0 (-8595) -> H_2^0 (-12052)
-At time : 1 ps Reaction : OH^0 (-7344) + OH^0 (-8594) -> H2O2^0 (-12053)
-At time : 1 ps Reaction : OH^0 (-6136) + OH^0 (-8593) -> H2O2^0 (-12054)
-At time : 1 ps Reaction : OH^0 (-5787) + OH^0 (-8591) -> H2O2^0 (-12055)
-At time : 1 ps Reaction : H^0 (-6937) + H^0 (-8589) -> H_2^0 (-12056)
-At time : 1 ps Reaction : OH^0 (-7342) + OH^0 (-8588) -> H2O2^0 (-12057)
-At time : 1 ps Reaction : OH^0 (-6124) + OH^0 (-8587) -> H2O2^0 (-12058)
-At time : 1 ps Reaction : OH^0 (-7354) + OH^0 (-8584) -> H2O2^0 (-12059)
-At time : 1 ps Reaction : OH^0 (-8583) + OH^0 (-8185) -> H2O2^0 (-12060)
-At time : 1 ps Reaction : H^0 (-6469) + H^0 (-8579) -> H_2^0 (-12061)
-At time : 1 ps Reaction : OH^0 (-7350) + OH^0 (-8578) -> H2O2^0 (-12062)
-At time : 1 ps Reaction : OH^0 (-8577) + OH^0 (-8394) -> H2O2^0 (-12063)
-At time : 1 ps Reaction : OH^0 (-7386) + OH^0 (-8572) -> H2O2^0 (-12064)
-At time : 1 ps Reaction : OH^0 (-8343) + OH^0 (-8567) -> H2O2^0 (-12065)
-At time : 1 ps Reaction : H^0 (-7023) + OH^0 (-8562) -> No product
-At time : 1 ps Reaction : OH^0 (-7346) + OH^0 (-8559) -> H2O2^0 (-12066)
-At time : 1 ps Reaction : OH^0 (-7370) + OH^0 (-8553) -> H2O2^0 (-12067)
-At time : 1 ps Reaction : OH^0 (-7349) + OH^0 (-8552) -> H2O2^0 (-12068)
-At time : 1 ps Reaction : OH^0 (-6710) + OH^0 (-8546) -> H2O2^0 (-12069)
-At time : 1 ps Reaction : OH^0 (-7243) + OH^0 (-8545) -> H2O2^0 (-12070)
-At time : 1 ps Reaction : OH^0 (-7445) + OH^0 (-8543) -> H2O2^0 (-12071)
-At time : 1 ps Reaction : OH^0 (-7936) + OH^0 (-8541) -> H2O2^0 (-12072)
-At time : 1 ps Reaction : OH^0 (-7376) + OH^0 (-8524) -> H2O2^0 (-12073)
-At time : 1 ps Reaction : OH^0 (-7380) + OH^0 (-8522) -> H2O2^0 (-12074)
-At time : 1 ps Reaction : OH^0 (-8060) + OH^0 (-8521) -> H2O2^0 (-12075)
-At time : 1 ps Reaction : OH^0 (-5739) + OH^0 (-8519) -> H2O2^0 (-12076)
-At time : 1 ps Reaction : OH^0 (-7388) + OH^0 (-8509) -> H2O2^0 (-12077)
-At time : 1 ps Reaction : OH^0 (-7395) + OH^0 (-8507) -> H2O2^0 (-12078)
-At time : 1 ps Reaction : OH^0 (-7752) + OH^0 (-8504) -> H2O2^0 (-12079)
-At time : 1 ps Reaction : OH^0 (-6070) + OH^0 (-8503) -> H2O2^0 (-12080)
-At time : 1 ps Reaction : OH^0 (-7591) + OH^0 (-8488) -> H2O2^0 (-12081)
-At time : 1 ps Reaction : OH^0 (-7407) + OH^0 (-8485) -> H2O2^0 (-12082)
-At time : 1 ps Reaction : OH^0 (-7484) + OH^0 (-8481) -> H2O2^0 (-12083)
-At time : 1 ps Reaction : OH^0 (-7121) + H^0 (-8478) -> No product
-At time : 1 ps Reaction : OH^0 (-7390) + OH^0 (-8477) -> H2O2^0 (-12084)
-At time : 1 ps Reaction : OH^0 (-7402) + OH^0 (-8475) -> H2O2^0 (-12085)
-At time : 1 ps Reaction : OH^0 (-7438) + OH^0 (-8472) -> H2O2^0 (-12086)
-At time : 1 ps Reaction : OH^0 (-7414) + OH^0 (-8464) -> H2O2^0 (-12087)
-At time : 1 ps Reaction : OH^0 (-7427) + OH^0 (-8462) -> H2O2^0 (-12088)
-At time : 1 ps Reaction : OH^0 (-7801) + OH^0 (-8459) -> H2O2^0 (-12089)
-At time : 1 ps Reaction : OH^0 (-7632) + OH^0 (-8449) -> H2O2^0 (-12090)
-At time : 1 ps Reaction : OH^0 (-7435) + OH^0 (-8444) -> H2O2^0 (-12091)
-At time : 1 ps Reaction : OH^0 (-8443) + OH^0 (-8270) -> H2O2^0 (-12092)
-At time : 1 ps Reaction : OH^0 (-7450) + OH^0 (-8432) -> H2O2^0 (-12093)
-At time : 1 ps Reaction : OH^0 (-7378) + OH^0 (-8413) -> H2O2^0 (-12094)
-At time : 1 ps Reaction : OH^0 (-7423) + OH^0 (-8399) -> H2O2^0 (-12095)
-At time : 1 ps Reaction : OH^0 (-6849) + OH^0 (-8398) -> H2O2^0 (-12096)
-At time : 1 ps Reaction : OH^0 (-7506) + OH^0 (-8389) -> H2O2^0 (-12097)
-At time : 1 ps Reaction : OH^0 (-7120) + OH^0 (-8384) -> H2O2^0 (-12098)
-At time : 1 ps Reaction : OH^0 (-7510) + OH^0 (-8383) -> H2O2^0 (-12099)
-At time : 1 ps Reaction : OH^0 (-7763) + OH^0 (-8369) -> H2O2^0 (-12100)
-At time : 1 ps Reaction : OH^0 (-6772) + OH^0 (-8353) -> H2O2^0 (-12101)
-At time : 1 ps Reaction : H^0 (-7861) + OH^0 (-8347) -> No product
-At time : 1 ps Reaction : OH^0 (-7486) + OH^0 (-8344) -> H2O2^0 (-12102)
-At time : 1 ps Reaction : OH^0 (-7508) + OH^0 (-8338) -> H2O2^0 (-12103)
-At time : 1 ps Reaction : OH^0 (-7115) + OH^0 (-8333) -> H2O2^0 (-12104)
-At time : 1 ps Reaction : OH^0 (-7522) + OH^0 (-8328) -> H2O2^0 (-12105)
-At time : 1 ps Reaction : H^0 (-7387) + H^0 (-8314) -> H_2^0 (-12106)
-At time : 1 ps Reaction : OH^0 (-7537) + OH^0 (-8313) -> H2O2^0 (-12107)
-At time : 1 ps Reaction : OH^0 (-7514) + OH^0 (-8300) -> H2O2^0 (-12108)
-At time : 1 ps Reaction : OH^0 (-7516) + OH^0 (-8296) -> H2O2^0 (-12109)
-At time : 1 ps Reaction : OH^0 (-6809) + OH^0 (-8295) -> H2O2^0 (-12110)
-At time : 1 ps Reaction : OH^0 (-7543) + OH^0 (-8292) -> H2O2^0 (-12111)
-At time : 1 ps Reaction : OH^0 (-6040) + OH^0 (-8291) -> H2O2^0 (-12112)
-At time : 1 ps Reaction : OH^0 (-6824) + OH^0 (-8287) -> H2O2^0 (-12113)
-At time : 1 ps Reaction : OH^0 (-7545) + OH^0 (-8283) -> H2O2^0 (-12114)
-At time : 1 ps Reaction : OH^0 (-6174) + OH^0 (-8282) -> H2O2^0 (-12115)
-At time : 1 ps Reaction : OH^0 (-7549) + OH^0 (-8279) -> H2O2^0 (-12116)
-At time : 1 ps Reaction : OH^0 (-6418) + H^0 (-8278) -> No product
-At time : 1 ps Reaction : OH^0 (-7570) + OH^0 (-8277) -> H2O2^0 (-12117)
-At time : 1 ps Reaction : OH^0 (-7572) + OH^0 (-8275) -> H2O2^0 (-12118)
-At time : 1 ps Reaction : OH^0 (-6304) + OH^0 (-8272) -> H2O2^0 (-12119)
-At time : 1 ps Reaction : OH^0 (-7594) + OH^0 (-8267) -> H2O2^0 (-12120)
-At time : 1 ps Reaction : OH^0 (-8212) + OH^0 (-8266) -> H2O2^0 (-12121)
-At time : 1 ps Reaction : H^0 (-7585) + OH^0 (-8265) -> No product
-At time : 1 ps Reaction : OH^0 (-7588) + OH^0 (-8258) -> H2O2^0 (-12122)
-At time : 1 ps Reaction : OH^0 (-8257) + OH^0 (-8214) -> H2O2^0 (-12123)
-At time : 1 ps Reaction : OH^0 (-7584) + OH^0 (-8246) -> H2O2^0 (-12124)
-At time : 1 ps Reaction : OH^0 (-7920) + OH^0 (-8242) -> H2O2^0 (-12125)
-At time : 1 ps Reaction : OH^0 (-7577) + OH^0 (-8239) -> H2O2^0 (-12126)
-At time : 1 ps Reaction : OH^0 (-7592) + OH^0 (-8235) -> H2O2^0 (-12127)
-At time : 1 ps Reaction : OH^0 (-7586) + OH^0 (-8231) -> H2O2^0 (-12128)
-At time : 1 ps Reaction : OH^0 (-7761) + H^0 (-8207) -> No product
-At time : 1 ps Reaction : OH^0 (-7612) + OH^0 (-8206) -> H2O2^0 (-12129)
-At time : 1 ps Reaction : OH^0 (-7614) + OH^0 (-8204) -> H2O2^0 (-12130)
-At time : 1 ps Reaction : OH^0 (-7959) + OH^0 (-8199) -> H2O2^0 (-12131)
-At time : 1 ps Reaction : OH^0 (-7627) + OH^0 (-8194) -> H2O2^0 (-12132)
-At time : 1 ps Reaction : OH^0 (-8083) + H^0 (-8189) -> No product
-At time : 1 ps Reaction : OH^0 (-7667) + OH^0 (-8188) -> H2O2^0 (-12133)
-At time : 1 ps Reaction : OH^0 (-7320) + H^0 (-8187) -> No product
-At time : 1 ps Reaction : OH^0 (-7644) + OH^0 (-8186) -> H2O2^0 (-12134)
-At time : 1 ps Reaction : OH^0 (-7671) + OH^0 (-8182) -> H2O2^0 (-12135)
-At time : 1 ps Reaction : OH^0 (-7700) + OH^0 (-8178) -> H2O2^0 (-12136)
-At time : 1 ps Reaction : OH^0 (-6019) + OH^0 (-8171) -> H2O2^0 (-12137)
-At time : 1 ps Reaction : OH^0 (-7702) + OH^0 (-8166) -> H2O2^0 (-12138)
-At time : 1 ps Reaction : H^0 (-6659) + OH^0 (-8155) -> No product
-At time : 1 ps Reaction : OH^0 (-7806) + OH^0 (-8153) -> H2O2^0 (-12139)
-At time : 1 ps Reaction : OH^0 (-7166) + OH^0 (-8151) -> H2O2^0 (-12140)
-At time : 1 ps Reaction : OH^0 (-7710) + OH^0 (-8146) -> H2O2^0 (-12141)
-At time : 1 ps Reaction : OH^0 (-7564) + OH^0 (-8145) -> H2O2^0 (-12142)
-At time : 1 ps Reaction : OH^0 (-7743) + OH^0 (-8138) -> H2O2^0 (-12143)
-At time : 1 ps Reaction : H^0 (-7615) + OH^0 (-8129) -> No product
-At time : 1 ps Reaction : OH^0 (-7745) + OH^0 (-8126) -> H2O2^0 (-12144)
-At time : 1 ps Reaction : OH^0 (-6378) + OH^0 (-8115) -> H2O2^0 (-12145)
-At time : 1 ps Reaction : OH^0 (-7776) + OH^0 (-8114) -> H2O2^0 (-12146)
-At time : 1 ps Reaction : OH^0 (-7814) + OH^0 (-8111) -> H2O2^0 (-12147)
-At time : 1 ps Reaction : OH^0 (-7789) + OH^0 (-8110) -> H2O2^0 (-12148)
-At time : 1 ps Reaction : OH^0 (-7753) + OH^0 (-8106) -> H2O2^0 (-12149)
-At time : 1 ps Reaction : H^0 (-7976) + OH^0 (-8101) -> No product
-At time : 1 ps Reaction : H^0 (-6891) + H^0 (-8089) -> H_2^0 (-12150)
-At time : 1 ps Reaction : OH^0 (-7635) + OH^0 (-8088) -> H2O2^0 (-12151)
-At time : 1 ps Reaction : OH^0 (-7757) + OH^0 (-8087) -> H2O2^0 (-12152)
-At time : 1 ps Reaction : OH^0 (-7780) + OH^0 (-8080) -> H2O2^0 (-12153)
-At time : 1 ps Reaction : OH^0 (-7778) + OH^0 (-8078) -> H2O2^0 (-12154)
-At time : 1 ps Reaction : OH^0 (-7623) + OH^0 (-8059) -> H2O2^0 (-12155)
-At time : 1 ps Reaction : OH^0 (-7677) + OH^0 (-8056) -> H2O2^0 (-12156)
-At time : 1 ps Reaction : OH^0 (-8055) + OH^0 (-7966) -> H2O2^0 (-12157)
-At time : 1 ps Reaction : OH^0 (-8046) + OH^0 (-7799) -> H2O2^0 (-12158)
-At time : 1 ps Reaction : OH^0 (-7683) + OH^0 (-8044) -> H2O2^0 (-12159)
-At time : 1 ps Reaction : OH^0 (-7842) + OH^0 (-8042) -> H2O2^0 (-12160)
-At time : 1 ps Reaction : OH^0 (-7860) + OH^0 (-8038) -> H2O2^0 (-12161)
-At time : 1 ps Reaction : OH^0 (-7831) + OH^0 (-8032) -> H2O2^0 (-12162)
-At time : 1 ps Reaction : OH^0 (-8028) + OH^0 (-7873) -> H2O2^0 (-12163)
-At time : 1 ps Reaction : OH^0 (-8023) + OH^0 (-7493) -> H2O2^0 (-12164)
-At time : 1 ps Reaction : OH^0 (-7808) + OH^0 (-8019) -> H2O2^0 (-12165)
-At time : 1 ps Reaction : OH^0 (-8015) + H^0 (-6535) -> No product
-At time : 1 ps Reaction : OH^0 (-6676) + OH^0 (-8007) -> H2O2^0 (-12166)
-At time : 1 ps Reaction : OH^0 (-7996) + OH^0 (-7875) -> H2O2^0 (-12167)
-At time : 1 ps Reaction : H^0 (-7993) + OH^0 (-5869) -> No product
-At time : 1 ps Reaction : OH^0 (-7992) + OH^0 (-7879) -> H2O2^0 (-12168)
-At time : 1 ps Reaction : OH^0 (-7991) + OH^0 (-7313) -> H2O2^0 (-12169)
-At time : 1 ps Reaction : OH^0 (-7441) + OH^0 (-7990) -> H2O2^0 (-12170)
-At time : 1 ps Reaction : OH^0 (-7978) + OH^0 (-6206) -> H2O2^0 (-12171)
-At time : 1 ps Reaction : OH^0 (-7975) + OH^0 (-7881) -> H2O2^0 (-12172)
-At time : 1 ps Reaction : OH^0 (-7974) + OH^0 (-7717) -> H2O2^0 (-12173)
-At time : 1 ps Reaction : OH^0 (-7850) + OH^0 (-7969) -> H2O2^0 (-12174)
-At time : 1 ps Reaction : OH^0 (-7965) + H^0 (-6593) -> No product
-At time : 1 ps Reaction : OH^0 (-7962) + OH^0 (-7898) -> H2O2^0 (-12175)
-At time : 1 ps Reaction : OH^0 (-7937) + OH^0 (-7891) -> H2O2^0 (-12176)
-At time : 1 ps Reaction : OH^0 (-7908) + OH^0 (-7923) -> H2O2^0 (-12177)
-At time : 1 ps Reaction : OH^0 (-7917) + OH^0 (-6088) -> H2O2^0 (-12178)
-At time : 1 ps Reaction : OH^0 (-7914) + OH^0 (-7883) -> H2O2^0 (-12179)
-At time : 1 ps Reaction : OH^0 (-7907) + OH^0 (-7123) -> H2O2^0 (-12180)
-At time : 1 ps Reaction : OH^0 (-7903) + OH^0 (-6993) -> H2O2^0 (-12181)
-At time : 1 ps Reaction : H^0 (-7876) + OH^0 (-6156) -> No product
-At time : 1 ps Reaction : H^0 (-6648) + H^0 (-7874) -> H_2^0 (-12182)
-At time : 1 ps Reaction : OH^0 (-7847) + H^0 (-7072) -> No product
-At time : 1 ps Reaction : OH^0 (-7837) + H^0 (-6531) -> No product
-At time : 1 ps Reaction : H^0 (-7164) + OH^0 (-7813) -> No product
-At time : 1 ps Reaction : OH^0 (-7760) + OH^0 (-7793) -> H2O2^0 (-12183)
-At time : 1 ps Reaction : OH^0 (-7785) + OH^0 (-6855) -> H2O2^0 (-12184)
-At time : 1 ps Reaction : H^0 (-7779) + H^0 (-7127) -> H_2^0 (-12185)
-At time : 1 ps Reaction : OH^0 (-7771) + OH^0 (-6199) -> H2O2^0 (-12186)
-At time : 1 ps Reaction : H^0 (-6741) + OH^0 (-7738) -> No product
-At time : 1 ps Reaction : OH^0 (-7730) + H^0 (-6541) -> No product
-At time : 1 ps Reaction : OH^0 (-7715) + H^0 (-7055) -> No product
-At time : 1 ps Reaction : OH^0 (-7695) + OH^0 (-6412) -> H2O2^0 (-12187)
-At time : 1 ps Reaction : OH^0 (-7693) + OH^0 (-5730) -> H2O2^0 (-12188)
-At time : 1 ps Reaction : OH^0 (-7689) + OH^0 (-7322) -> H2O2^0 (-12189)
-At time : 1 ps Reaction : OH^0 (-7680) + OH^0 (-7212) -> H2O2^0 (-12190)
-At time : 1 ps Reaction : OH^0 (-7649) + OH^0 (-7028) -> H2O2^0 (-12191)
-At time : 1 ps Reaction : H^0 (-6755) + OH^0 (-7630) -> No product
-At time : 1 ps Reaction : OH^0 (-7603) + H^0 (-6609) -> No product
-At time : 1 ps Reaction : OH^0 (-7298) + H^0 (-7595) -> No product
-At time : 1 ps Reaction : OH^0 (-7583) + OH^0 (-7281) -> H2O2^0 (-12192)
-At time : 1 ps Reaction : OH^0 (-7552) + OH^0 (-5727) -> H2O2^0 (-12193)
-At time : 1 ps Reaction : H^0 (-7550) + OH^0 (-6301) -> No product
-At time : 1 ps Reaction : H^0 (-7546) + H^0 (-7218) -> H_2^0 (-12194)
-At time : 1 ps Reaction : OH^0 (-7373) + OH^0 (-7540) -> H2O2^0 (-12195)
-At time : 1 ps Reaction : H^0 (-7538) + H^0 (-7109) -> H_2^0 (-12196)
-At time : 1 ps Reaction : OH^0 (-7536) + H^0 (-6525) -> No product
-At time : 1 ps Reaction : OH^0 (-7091) + OH^0 (-7526) -> H2O2^0 (-12197)
-At time : 1 ps Reaction : H^0 (-7511) + H^0 (-6611) -> H_2^0 (-12198)
-At time : 1 ps Reaction : OH^0 (-7505) + OH^0 (-7328) -> H2O2^0 (-12199)
-At time : 1 ps Reaction : OH^0 (-7410) + OH^0 (-7481) -> H2O2^0 (-12200)
-At time : 1 ps Reaction : H^0 (-7451) + H^0 (-6853) -> H_2^0 (-12201)
-At time : 1 ps Reaction : OH^0 (-7012) + OH^0 (-7393) -> H2O2^0 (-12202)
-At time : 1 ps Reaction : H^0 (-7371) + H^0 (-7377) -> H_2^0 (-12203)
-At time : 1 ps Reaction : OH^0 (-7337) + H^0 (-6605) -> No product
-At time : 1 ps Reaction : OH^0 (-7336) + H^0 (-6822) -> No product
-At time : 1 ps Reaction : OH^0 (-7334) + OH^0 (-6127) -> H2O2^0 (-12204)
-At time : 1 ps Reaction : H^0 (-7276) + H^0 (-7324) -> H_2^0 (-12205)
-At time : 1 ps Reaction : H^0 (-6716) + OH^0 (-7304) -> No product
-At time : 1 ps Reaction : OH^0 (-7266) + OH^0 (-6427) -> H2O2^0 (-12206)
-At time : 1 ps Reaction : OH^0 (-7262) + OH^0 (-6076) -> H2O2^0 (-12207)
-At time : 1 ps Reaction : OH^0 (-7253) + OH^0 (-6309) -> H2O2^0 (-12208)
-At time : 1 ps Reaction : OH^0 (-7247) + H^0 (-6547) -> No product
-At time : 1 ps Reaction : OH^0 (-7040) + OH^0 (-7236) -> H2O2^0 (-12209)
-At time : 1 ps Reaction : H^0 (-7139) + H^0 (-6599) -> H_2^0 (-12210)
-At time : 1 ps Reaction : OH^0 (-6847) + H^0 (-7087) -> No product
-At time : 1 ps Reaction : OH^0 (-7053) + OH^0 (-5775) -> H2O2^0 (-12211)
-At time : 1 ps Reaction : H^0 (-6805) + H^0 (-7034) -> H_2^0 (-12212)
-At time : 1 ps Reaction : H^0 (-6796) + H^0 (-7009) -> H_2^0 (-12213)
-At time : 1 ps Reaction : H^0 (-6995) + OH^0 (-5784) -> No product
-At time : 1 ps Reaction : H^0 (-6979) + H^0 (-6539) -> H_2^0 (-12214)
-At time : 1 ps Reaction : OH^0 (-6966) + OH^0 (-5760) -> H2O2^0 (-12215)
-At time : 1 ps Reaction : H^0 (-6733) + OH^0 (-6960) -> No product
-At time : 1 ps Reaction : H^0 (-6845) + H^0 (-6939) -> H_2^0 (-12216)
-At time : 1 ps Reaction : H^0 (-6697) + H^0 (-6533) -> H_2^0 (-12217)
-At time : 1 ps Reaction : OH^0 (-6669) + OH^0 (-6004) -> H2O2^0 (-12218)
-At time : 1 ps Reaction : OH^0 (-6404) + H^0 (-6523) -> No product
-At time : 1 ps Reaction : OH^0 (-6409) + H^0 (-6505) -> No product
-At time : 1 ps Reaction : OH^0 (-6288) + H^0 (-6479) -> No product
-At time : 1 ps Reaction : OH^0 (-5992) + OH^0 (-6285) -> H2O2^0 (-12219)
-At time : 1 ps Reaction : OH^0 (-6190) + OH^0 (-6274) -> H2O2^0 (-12220)
-At time : 1 ps Reaction : OH^0 (-6079) + OH^0 (-6145) -> H2O2^0 (-12221)
-At time : 1 ps Reaction : OH^0 (-6061) + OH^0 (-6109) -> H2O2^0 (-12222)
-At time : 1 ps Reaction : e_aq^-1 (-3811) + e_aq^-1 (-4235) -> OH^-1 (-12223) + OH^-1 (-12224) + H_2^0 (-12225)
-At time : 1.1 ps Reaction : OH^0 (-11294) + H^0 (-8630) -> No product
-At time : 1.1 ps Reaction : OH^0 (-10903) + OH^0 (-10405) -> H2O2^0 (-12226)
-At time : 1.1 ps Reaction : OH^0 (-6247) + OH^0 (-10821) -> H2O2^0 (-12227)
-At time : 1.1 ps Reaction : OH^0 (-6037) + OH^0 (-10792) -> H2O2^0 (-12228)
-At time : 1.1 ps Reaction : OH^0 (-7214) + H^0 (-10788) -> No product
-At time : 1.1 ps Reaction : OH^0 (-8893) + OH^0 (-10720) -> H2O2^0 (-12229)
-At time : 1.1 ps Reaction : H^0 (-7884) + H^0 (-10706) -> H_2^0 (-12230)
-At time : 1.1 ps Reaction : OH^0 (-7624) + OH^0 (-10672) -> H2O2^0 (-12231)
-At time : 1.1 ps Reaction : OH^0 (-10295) + OH^0 (-10654) -> H2O2^0 (-12232)
-At time : 1.1 ps Reaction : OH^0 (-8135) + OH^0 (-10530) -> H2O2^0 (-12233)
-At time : 1.1 ps Reaction : OH^0 (-8806) + OH^0 (-10493) -> H2O2^0 (-12234)
-At time : 1.1 ps Reaction : OH^0 (-6358) + OH^0 (-10461) -> H2O2^0 (-12235)
-At time : 1.1 ps Reaction : OH^0 (-5941) + OH^0 (-10391) -> H2O2^0 (-12236)
-At time : 1.1 ps Reaction : H^0 (-7668) + OH^0 (-10381) -> No product
-At time : 1.1 ps Reaction : OH^0 (-8253) + OH^0 (-10281) -> H2O2^0 (-12237)
-At time : 1.1 ps Reaction : OH^0 (-8457) + OH^0 (-10180) -> H2O2^0 (-12238)
-At time : 1.1 ps Reaction : H^0 (-6567) + H^0 (-10097) -> H_2^0 (-12239)
-At time : 1.1 ps Reaction : OH^0 (-9883) + H^0 (-8836) -> No product
-At time : 1.1 ps Reaction : OH^0 (-9709) + OH^0 (-9857) -> H2O2^0 (-12240)
-At time : 1.1 ps Reaction : OH^0 (-9657) + OH^0 (-8945) -> H2O2^0 (-12241)
-At time : 1.1 ps Reaction : H^0 (-6657) + OH^0 (-9647) -> No product
-At time : 1.1 ps Reaction : OH^0 (-7420) + H^0 (-9558) -> No product
-At time : 1.1 ps Reaction : OH^0 (-7562) + OH^0 (-9498) -> H2O2^0 (-12242)
-At time : 1.1 ps Reaction : OH^0 (-9462) + OH^0 (-9012) -> H2O2^0 (-12243)
-At time : 1.1 ps Reaction : OH^0 (-8646) + OH^0 (-9454) -> H2O2^0 (-12244)
-At time : 1.1 ps Reaction : OH^0 (-8699) + H^0 (-9367) -> No product
-At time : 1.1 ps Reaction : OH^0 (-7682) + OH^0 (-9237) -> H2O2^0 (-12245)
-At time : 1.1 ps Reaction : OH^0 (-7365) + OH^0 (-9133) -> H2O2^0 (-12246)
-At time : 1.1 ps Reaction : OH^0 (-6291) + OH^0 (-9094) -> H2O2^0 (-12247)
-At time : 1.1 ps Reaction : OH^0 (-6810) + OH^0 (-8861) -> H2O2^0 (-12248)
-At time : 1.1 ps Reaction : OH^0 (-6981) + OH^0 (-8810) -> H2O2^0 (-12249)
-At time : 1.1 ps Reaction : OH^0 (-6133) + OH^0 (-8772) -> H2O2^0 (-12250)
-At time : 1.1 ps Reaction : OH^0 (-7901) + OH^0 (-8381) -> H2O2^0 (-12251)
-At time : 1.1 ps Reaction : H^0 (-7389) + OH^0 (-8363) -> No product
-At time : 1.1 ps Reaction : H^0 (-7099) + OH^0 (-5971) -> No product
-At time : 1.1 ps Reaction : H^0 (-6911) + OH^0 (-5899) -> No product
-At time : 1.1 ps Reaction : OH^0 (-6280) + OH^0 (-6382) -> H2O2^0 (-12252)
-At time : 1.1 ps Reaction : H^0 (-11193) + H^0 (-6833) -> H_2^0 (-12253)
-At time : 1.1 ps Reaction : H^0 (-6650) + H^0 (-11175) -> H_2^0 (-12254)
-At time : 1.1 ps Reaction : H^0 (-11167) + OH^0 (-10839) -> No product
-At time : 1.1 ps Reaction : H^0 (-10973) + OH^0 (-9972) -> No product
-At time : 1.1 ps Reaction : H^0 (-7093) + OH^0 (-10592) -> No product
-At time : 1.1 ps Reaction : H^0 (-7311) + OH^0 (-10195) -> No product
-At time : 1.1 ps Reaction : OH^0 (-10032) + OH^0 (-9665) -> H2O2^0 (-12255)
-At time : 1.1 ps Reaction : H^0 (-7089) + OH^0 (-10010) -> No product
-At time : 1.1 ps Reaction : H^0 (-7062) + H^0 (-9560) -> H_2^0 (-12256)
-At time : 1.1 ps Reaction : H^0 (-6801) + OH^0 (-9450) -> No product
-At time : 1.1 ps Reaction : OH^0 (-7659) + OH^0 (-9327) -> H2O2^0 (-12257)
-At time : 1.1 ps Reaction : H^0 (-8301) + OH^0 (-9109) -> No product
-At time : 1.1 ps Reaction : H^0 (-6837) + OH^0 (-9044) -> No product
-At time : 1.1 ps Reaction : OH^0 (-8969) + H^0 (-8989) -> No product
-At time : 1.1 ps Reaction : OH^0 (-7886) + H^0 (-8865) -> No product
-At time : 1.1 ps Reaction : H^0 (-7064) + H^0 (-7892) -> H_2^0 (-12258)
-At time : 1.1 ps Reaction : OH^0 (-7841) + H^0 (-7070) -> No product
-At time : 1.1 ps Reaction : OH^0 (-7554) + OH^0 (-5959) -> H2O2^0 (-12259)
-At time : 1.1 ps Reaction : H^0 (-6640) + OH^0 (-7113) -> No product
-At time : 1.1 ps Reaction : OH^0 (-6862) + OH^0 (-5718) -> H2O2^0 (-12260)
-At time : 1.1 ps Reaction : H^0 (-6749) + OH^0 (-5848) -> No product
-At time : 1.2 ps Reaction : H^0 (-11225) + OH^0 (-7913) -> No product
-At time : 1.2 ps Reaction : H^0 (-11191) + OH^0 (-8531) -> No product
-At time : 1.2 ps Reaction : H^0 (-11036) + OH^0 (-10156) -> No product
-At time : 1.2 ps Reaction : H^0 (-11032) + OH^0 (-9711) -> No product
-At time : 1.2 ps Reaction : H^0 (-10959) + OH^0 (-9768) -> No product
-At time : 1.2 ps Reaction : OH^0 (-6043) + H^0 (-10594) -> No product
-At time : 1.2 ps Reaction : H^0 (-6893) + OH^0 (-10421) -> No product
-At time : 1.2 ps Reaction : H^0 (-6473) + OH^0 (-10263) -> No product
-At time : 1.2 ps Reaction : OH^0 (-10002) + OH^0 (-7787) -> H2O2^0 (-12261)
-At time : 1.2 ps Reaction : H^0 (-6763) + OH^0 (-9869) -> No product
-At time : 1.2 ps Reaction : OH^0 (-9867) + OH^0 (-8404) -> H2O2^0 (-12262)
-At time : 1.2 ps Reaction : H^0 (-6665) + OH^0 (-9796) -> No product
-At time : 1.2 ps Reaction : OH^0 (-8017) + OH^0 (-9671) -> H2O2^0 (-12263)
-At time : 1.2 ps Reaction : OH^0 (-7890) + OH^0 (-9591) -> H2O2^0 (-12264)
-At time : 1.2 ps Reaction : OH^0 (-9401) + OH^0 (-8975) -> H2O2^0 (-12265)
-At time : 1.2 ps Reaction : OH^0 (-7607) + OH^0 (-8913) -> H2O2^0 (-12266)
-At time : 1.2 ps Reaction : H^0 (-6501) + OH^0 (-8820) -> No product
-At time : 1.2 ps Reaction : OH^0 (-7621) + OH^0 (-8719) -> H2O2^0 (-12267)
-At time : 1.2 ps Reaction : OH^0 (-7664) + OH^0 (-8665) -> H2O2^0 (-12268)
-At time : 1.2 ps Reaction : H^0 (-6872) + OH^0 (-7773) -> No product
-At time : 1.2 ps Reaction : OH^0 (-6028) + H^0 (-6597) -> No product
-At time : 1.2 ps Reaction : H^0 (-11264) + H^0 (-6814) -> H_2^0 (-12269)
-At time : 1.2 ps Reaction : H^0 (-6642) + H^0 (-11152) -> H_2^0 (-12270)
-At time : 1.2 ps Reaction : H^0 (-10991) + OH^0 (-10495) -> No product
-At time : 1.2 ps Reaction : OH^0 (-9111) + OH^0 (-10804) -> H2O2^0 (-12271)
-At time : 1.2 ps Reaction : OH^0 (-7412) + OH^0 (-10487) -> H2O2^0 (-12272)
-At time : 1.2 ps Reaction : H^0 (-7345) + OH^0 (-9729) -> No product
-At time : 1.2 ps Reaction : H^0 (-6613) + OH^0 (-9121) -> No product
-At time : 1.2 ps Reaction : OH^0 (-7934) + OH^0 (-8077) -> H2O2^0 (-12273)
-At time : 1.2 ps Reaction : OH^0 (-7945) + OH^0 (-6052) -> H2O2^0 (-12274)
-At time : 1.2 ps Reaction : H^0 (-6899) + OH^0 (-7314) -> No product
-At time : 1.3 ps Reaction : OH^0 (-11127) + OH^0 (-8163) -> H2O2^0 (-12275)
-At time : 1.3 ps Reaction : H^0 (-8859) + OH^0 (-10895) -> No product
-At time : 1.3 ps Reaction : H^0 (-6577) + OH^0 (-10780) -> No product
-At time : 1.3 ps Reaction : OH^0 (-8692) + OH^0 (-10540) -> H2O2^0 (-12276)
-At time : 1.3 ps Reaction : OH^0 (-10361) + OH^0 (-10481) -> H2O2^0 (-12277)
-At time : 1.3 ps Reaction : OH^0 (-7474) + OH^0 (-10383) -> H2O2^0 (-12278)
-At time : 1.3 ps Reaction : OH^0 (-7533) + OH^0 (-10048) -> H2O2^0 (-12279)
-At time : 1.3 ps Reaction : OH^0 (-7157) + OH^0 (-9506) -> H2O2^0 (-12280)
-At time : 1.3 ps Reaction : H^0 (-7176) + H^0 (-9301) -> H_2^0 (-12281)
-At time : 1.3 ps Reaction : OH^0 (-8788) + OH^0 (-8834) -> H2O2^0 (-12282)
-At time : 1.3 ps Reaction : H^0 (-6625) + OH^0 (-8808) -> No product
-At time : 1.3 ps Reaction : OH^0 (-8733) + OH^0 (-8766) -> H2O2^0 (-12283)
-At time : 1.3 ps Reaction : OH^0 (-6879) + OH^0 (-8062) -> H2O2^0 (-12284)
-At time : 1.3 ps Reaction : H^0 (-6682) + H^0 (-7143) -> H_2^0 (-12285)
-At time : 1.3 ps Reaction : OH^0 (-6271) + OH^0 (-10497) -> H2O2^0 (-12286)
-At time : 1.3 ps Reaction : OH^0 (-8877) + OH^0 (-10183) -> H2O2^0 (-12287)
-At time : 1.3 ps Reaction : OH^0 (-9944) + OH^0 (-9167) -> H2O2^0 (-12288)
-At time : 1.3 ps Reaction : OH^0 (-9778) + OH^0 (-9070) -> H2O2^0 (-12289)
-At time : 1.3 ps Reaction : H^0 (-7436) + H^0 (-9673) -> H_2^0 (-12290)
-At time : 1.3 ps Reaction : OH^0 (-7845) + OH^0 (-9245) -> H2O2^0 (-12291)
-At time : 1.3 ps Reaction : OH^0 (-7430) + OH^0 (-9210) -> H2O2^0 (-12292)
-At time : 1.3 ps Reaction : OH^0 (-8608) + OH^0 (-9175) -> H2O2^0 (-12293)
-At time : 1.3 ps Reaction : OH^0 (-8226) + OH^0 (-9058) -> H2O2^0 (-12294)
-At time : 1.3 ps Reaction : OH^0 (-7929) + OH^0 (-5818) -> H2O2^0 (-12295)
-At time : 1.3 ps Reaction : OH^0 (-7639) + OH^0 (-6298) -> H2O2^0 (-12296)
-At time : 1.4 ps Reaction : H^0 (-6638) + OH^0 (-11260) -> No product
-At time : 1.4 ps Reaction : OH^0 (-11161) + OH^0 (-7461) -> H2O2^0 (-12297)
-At time : 1.4 ps Reaction : OH^0 (-10393) + OH^0 (-10479) -> H2O2^0 (-12298)
-At time : 1.4 ps Reaction : H^0 (-7997) + OH^0 (-10353) -> No product
-At time : 1.4 ps Reaction : OH^0 (-9968) + OH^0 (-9145) -> H2O2^0 (-12299)
-At time : 1.4 ps Reaction : OH^0 (-9741) + OH^0 (-9782) -> H2O2^0 (-12300)
-At time : 1.4 ps Reaction : H^0 (-9428) + OH^0 (-8467) -> No product
-At time : 1.4 ps Reaction : OH^0 (-5953) + OH^0 (-8917) -> H2O2^0 (-12301)
-At time : 1.4 ps Reaction : H^0 (-7131) + H^0 (-8508) -> H_2^0 (-12302)
-At time : 1.4 ps Reaction : OH^0 (-7732) + H^0 (-8345) -> No product
-At time : 1.4 ps Reaction : OH^0 (-7687) + OH^0 (-7995) -> H2O2^0 (-12303)
-At time : 1.4 ps Reaction : H^0 (-7038) + OH^0 (-7905) -> No product
-At time : 1.4 ps Reaction : OH^0 (-7497) + OH^0 (-7894) -> H2O2^0 (-12304)
-At time : 1.4 ps Reaction : OH^0 (-7222) + OH^0 (-5977) -> H2O2^0 (-12305)
-At time : 1.4 ps Reaction : H^0 (-10928) + OH^0 (-8274) -> No product
-At time : 1.4 ps Reaction : OH^0 (-10050) + OH^0 (-9539) -> H2O2^0 (-12306)
-At time : 1.4 ps Reaction : OH^0 (-9713) + OH^0 (-9859) -> H2O2^0 (-12307)
-At time : 1.4 ps Reaction : H^0 (-6881) + H^0 (-9562) -> H_2^0 (-12308)
-At time : 1.4 ps Reaction : H^0 (-7032) + H^0 (-9269) -> H_2^0 (-12309)
-At time : 1.4 ps Reaction : H^0 (-7754) + OH^0 (-8321) -> No product
-At time : 1.4 ps Reaction : OH^0 (-7662) + OH^0 (-6209) -> H2O2^0 (-12310)
-At time : 1.4 ps Reaction : H^0 (-6761) + H^0 (-6537) -> H_2^0 (-12311)
-At time : 1.5 ps Reaction : H^0 (-11278) + OH^0 (-8412) -> No product
-At time : 1.5 ps Reaction : OH^0 (-9847) + OH^0 (-10636) -> H2O2^0 (-12312)
-At time : 1.5 ps Reaction : OH^0 (-10022) + OH^0 (-10423) -> H2O2^0 (-12313)
-At time : 1.5 ps Reaction : H^0 (-9000) + OH^0 (-10218) -> No product
-At time : 1.5 ps Reaction : OH^0 (-8634) + OH^0 (-9337) -> H2O2^0 (-12314)
-At time : 1.5 ps Reaction : OH^0 (-8832) + OH^0 (-8955) -> H2O2^0 (-12315)
-At time : 1.5 ps Reaction : H^0 (-7170) + OH^0 (-8758) -> No product
-At time : 1.5 ps Reaction : H^0 (-6603) + OH^0 (-8605) -> No product
-At time : 1.5 ps Reaction : H^0 (-6931) + OH^0 (-8480) -> No product
-At time : 1.5 ps Reaction : OH^0 (-6001) + OH^0 (-8439) -> H2O2^0 (-12316)
-At time : 1.5 ps Reaction : OH^0 (-6211) + OH^0 (-8355) -> H2O2^0 (-12317)
-At time : 1.5 ps Reaction : H^0 (-6589) + H^0 (-8339) -> H_2^0 (-12318)
-At time : 1.5 ps Reaction : OH^0 (-7820) + H^0 (-6571) -> No product
-At time : 1.5 ps Reaction : OH^0 (-7332) + H^0 (-7021) -> No product
-At time : 1.5 ps Reaction : H^0 (-6907) + H^0 (-10071) -> H_2^0 (-12319)
-At time : 1.5 ps Reaction : H^0 (-7909) + OH^0 (-9105) -> No product
-At time : 1.5 ps Reaction : OH^0 (-7736) + H^0 (-9050) -> No product
-At time : 1.5 ps Reaction : H^0 (-7403) + H^0 (-6727) -> H_2^0 (-12320)
-At time : 1.6 ps Reaction : H^0 (-11206) + OH^0 (-10867) -> No product
-At time : 1.6 ps Reaction : H^0 (-11186) + OH^0 (-5962) -> No product
-At time : 1.6 ps Reaction : H^0 (-8043) + OH^0 (-10883) -> No product
-At time : 1.6 ps Reaction : OH^0 (-8491) + OH^0 (-10518) -> H2O2^0 (-12321)
-At time : 1.6 ps Reaction : H^0 (-8523) + OH^0 (-10451) -> No product
-At time : 1.6 ps Reaction : OH^0 (-6094) + OH^0 (-10203) -> H2O2^0 (-12322)
-At time : 1.6 ps Reaction : H^0 (-7343) + H^0 (-9897) -> H_2^0 (-12323)
-At time : 1.6 ps Reaction : H^0 (-6699) + OH^0 (-9843) -> No product
-At time : 1.6 ps Reaction : OH^0 (-6975) + OH^0 (-9060) -> H2O2^0 (-12324)
-At time : 1.6 ps Reaction : OH^0 (-5989) + H^0 (-8476) -> No product
-At time : 1.6 ps Reaction : H^0 (-6601) + OH^0 (-8453) -> No product
-At time : 1.6 ps Reaction : H^0 (-6737) + H^0 (-8400) -> H_2^0 (-12325)
-At time : 1.6 ps Reaction : OH^0 (-8037) + H^0 (-6491) -> No product
-At time : 1.6 ps Reaction : H^0 (-7701) + H^0 (-6933) -> H_2^0 (-12326)
-At time : 1.6 ps Reaction : H^0 (-8628) + OH^0 (-8461) -> No product
-At time : 1.6 ps Reaction : OH^0 (-7849) + H^0 (-6557) -> No product
-At time : 1.7 ps Reaction : H^0 (-11233) + OH^0 (-8873) -> No product
-At time : 1.7 ps Reaction : OH^0 (-11040) + OH^0 (-9048) -> H2O2^0 (-12327)
-At time : 1.7 ps Reaction : OH^0 (-6633) + OH^0 (-10813) -> H2O2^0 (-12328)
-At time : 1.7 ps Reaction : OH^0 (-7016) + OH^0 (-10397) -> H2O2^0 (-12329)
-At time : 1.7 ps Reaction : OH^0 (-10107) + OH^0 (-9693) -> H2O2^0 (-12330)
-At time : 1.7 ps Reaction : OH^0 (-8535) + OH^0 (-9905) -> H2O2^0 (-12331)
-At time : 1.7 ps Reaction : OH^0 (-8051) + OH^0 (-9901) -> H2O2^0 (-12332)
-At time : 1.7 ps Reaction : OH^0 (-7655) + OH^0 (-9887) -> H2O2^0 (-12333)
-At time : 1.7 ps Reaction : OH^0 (-7398) + OH^0 (-8361) -> H2O2^0 (-12334)
-At time : 1.7 ps Reaction : OH^0 (-7888) + H^0 (-8107) -> No product
-At time : 1.7 ps Reaction : OH^0 (-7542) + H^0 (-6807) -> No product
-At time : 1.8 ps Reaction : OH^0 (-11248) + OH^0 (-10514) -> H2O2^0 (-12335)
-At time : 1.8 ps Reaction : OH^0 (-10684) + OH^0 (-10708) -> H2O2^0 (-12336)
-At time : 1.8 ps Reaction : OH^0 (-10568) + OH^0 (-10650) -> H2O2^0 (-12337)
-At time : 1.8 ps Reaction : OH^0 (-8923) + OH^0 (-10624) -> H2O2^0 (-12338)
-At time : 1.8 ps Reaction : OH^0 (-10077) + H^0 (-10297) -> No product
-At time : 1.8 ps Reaction : H^0 (-6579) + OH^0 (-10069) -> No product
-At time : 1.8 ps Reaction : H^0 (-7186) + OH^0 (-9753) -> No product
-At time : 1.8 ps Reaction : H^0 (-6503) + H^0 (-9751) -> H_2^0 (-12339)
-At time : 1.8 ps Reaction : H^0 (-7424) + OH^0 (-9580) -> No product
-At time : 1.8 ps Reaction : OH^0 (-7499) + H^0 (-8953) -> No product
-At time : 1.8 ps Reaction : OH^0 (-6987) + H^0 (-8167) -> No product
-At time : 1.8 ps Reaction : OH^0 (-7558) + OH^0 (-6310) -> H2O2^0 (-12340)
-At time : 1.8 ps Reaction : H^0 (-6708) + OH^0 (-7238) -> No product
-At time : 1.8 ps Reaction : H^0 (-6652) + OH^0 (-10510) -> No product
-At time : 1.8 ps Reaction : H^0 (-9942) + OH^0 (-9177) -> No product
-At time : 1.9 ps Reaction : OH^0 (-9190) + OH^0 (-10560) -> H2O2^0 (-12341)
-At time : 1.9 ps Reaction : OH^0 (-8013) + OH^0 (-10240) -> H2O2^0 (-12342)
-At time : 1.9 ps Reaction : H^0 (-7593) + OH^0 (-10224) -> No product
-At time : 1.9 ps Reaction : H^0 (-6623) + OH^0 (-9307) -> No product
-At time : 1.9 ps Reaction : OH^0 (-7491) + OH^0 (-9277) -> H2O2^0 (-12343)
-At time : 1.9 ps Reaction : OH^0 (-5923) + OH^0 (-8921) -> H2O2^0 (-12344)
-At time : 1.9 ps Reaction : OH^0 (-7597) + H^0 (-8329) -> No product
-At time : 1.9 ps Reaction : OH^0 (-7980) + H^0 (-6927) -> No product
-At time : 1.9 ps Reaction : H^0 (-7758) + OH^0 (-7151) -> No product
-At time : 1.9 ps Reaction : OH^0 (-7634) + H^0 (-7509) -> No product
-At time : 1.9 ps Reaction : H^0 (-6785) + H^0 (-9537) -> H_2^0 (-12345)
-At time : 1.9 ps Reaction : OH^0 (-6370) + H^0 (-6569) -> No product
-At time : 2 ps Reaction : OH^0 (-11300) + OH^0 (-9377) -> H2O2^0 (-12346)
-At time : 2 ps Reaction : H^0 (-11289) + OH^0 (-8886) -> No product
-At time : 2 ps Reaction : H^0 (-11258) + OH^0 (-7528) -> No product
-At time : 2 ps Reaction : H^0 (-10979) + OH^0 (-6997) -> No product
-At time : 2 ps Reaction : H^0 (-6759) + OH^0 (-10666) -> No product
-At time : 2 ps Reaction : H^0 (-6617) + OH^0 (-9486) -> No product
-At time : 2 ps Reaction : H^0 (-7703) + OH^0 (-9016) -> No product
-At time : 2 ps Reaction : H^0 (-7290) + OH^0 (-8169) -> No product
-At time : 2 ps Reaction : H^0 (-7517) + H^0 (-6573) -> H_2^0 (-12347)
-At time : 2 ps Reaction : H^0 (-11133) + OH^0 (-7044) -> No product
-At time : 2 ps Reaction : OH^0 (-7285) + OH^0 (-8947) -> H2O2^0 (-12348)
-At time : 2 ps Reaction : OH^0 (-8680) + OH^0 (-8565) -> H2O2^0 (-12349)
-At time : 2.1 ps Reaction : H^0 (-6818) + OH^0 (-10552) -> No product
-At time : 2.1 ps Reaction : OH^0 (-9119) + OH^0 (-10351) -> H2O2^0 (-12350)
-At time : 2.1 ps Reaction : OH^0 (-8943) + OH^0 (-10145) -> H2O2^0 (-12351)
-At time : 2.1 ps Reaction : OH^0 (-9830) + OH^0 (-8800) -> H2O2^0 (-12352)
-At time : 2.1 ps Reaction : OH^0 (-8379) + H^0 (-9641) -> No product
-At time : 2.1 ps Reaction : OH^0 (-8469) + OH^0 (-9076) -> H2O2^0 (-12353)
-At time : 2.1 ps Reaction : H^0 (-6867) + H^0 (-8247) -> H_2^0 (-12354)
-At time : 2.1 ps Reaction : H^0 (-6765) + OH^0 (-8103) -> No product
-At time : 2.1 ps Reaction : H^0 (-7074) + H^0 (-6629) -> H_2^0 (-12355)
-At time : 2.1 ps Reaction : OH^0 (-5793) + OH^0 (-10409) -> H2O2^0 (-12356)
-At time : 2.1 ps Reaction : H^0 (-6678) + OH^0 (-10327) -> No product
-At time : 2.2 ps Reaction : OH^0 (-11173) + OH^0 (-10083) -> H2O2^0 (-12357)
-At time : 2.2 ps Reaction : OH^0 (-6115) + OH^0 (-10802) -> H2O2^0 (-12358)
-At time : 2.2 ps Reaction : H^0 (-10103) + OH^0 (-8125) -> No product
-At time : 2.2 ps Reaction : H^0 (-7135) + H^0 (-9305) -> H_2^0 (-12359)
-At time : 2.2 ps Reaction : OH^0 (-8775) + H^0 (-8205) -> No product
-At time : 2.2 ps Reaction : H^0 (-6487) + OH^0 (-8484) -> No product
-At time : 2.3 ps Reaction : OH^0 (-11307) + OH^0 (-7949) -> H2O2^0 (-12360)
-At time : 2.3 ps Reaction : H^0 (-8081) + OH^0 (-10891) -> No product
-At time : 2.3 ps Reaction : H^0 (-7226) + OH^0 (-10403) -> No product
-At time : 2.3 ps Reaction : H^0 (-6720) + H^0 (-10167) -> H_2^0 (-12361)
-At time : 2.3 ps Reaction : OH^0 (-8359) + OH^0 (-9849) -> H2O2^0 (-12362)
-At time : 2.3 ps Reaction : H^0 (-6483) + OH^0 (-9786) -> No product
-At time : 2.3 ps Reaction : OH^0 (-7951) + OH^0 (-9689) -> H2O2^0 (-12363)
-At time : 2.3 ps Reaction : OH^0 (-6295) + OH^0 (-8901) -> H2O2^0 (-12364)
-At time : 2.3 ps Reaction : OH^0 (-7159) + OH^0 (-5917) -> H2O2^0 (-12365)
-At time : 2.3 ps Reaction : H^0 (-6718) + OH^0 (-7137) -> No product
-At time : 2.4 ps Reaction : OH^0 (-7822) + OH^0 (-10837) -> H2O2^0 (-12366)
-At time : 2.4 ps Reaction : H^0 (-6991) + OH^0 (-6252) -> No product
-At time : 2.4 ps Reaction : OH^0 (-7868) + OH^0 (-7897) -> H2O2^0 (-12367)
-At time : 2.5 ps Reaction : H^0 (-11154) + OH^0 (-7670) -> No product
-At time : 2.5 ps Reaction : H^0 (-11112) + OH^0 (-7449) -> No product
-At time : 2.5 ps Reaction : OH^0 (-9432) + OH^0 (-10897) -> H2O2^0 (-12368)
-At time : 2.5 ps Reaction : OH^0 (-8035) + OH^0 (-10322) -> H2O2^0 (-12369)
-At time : 2.5 ps Reaction : H^0 (-7880) + OH^0 (-10314) -> No product
-At time : 2.5 ps Reaction : H^0 (-6529) + OH^0 (-9683) -> No product
-At time : 2.5 ps Reaction : H^0 (-6495) + H^0 (-9339) -> H_2^0 (-12370)
-At time : 2.5 ps Reaction : H^0 (-8047) + OH^0 (-6463) -> No product
-At time : 2.5 ps Reaction : OH^0 (-7531) + H^0 (-7256) -> No product
-At time : 2.6 ps Reaction : H^0 (-11100) + OH^0 (-8230) -> No product
-At time : 2.6 ps Reaction : OH^0 (-7192) + H^0 (-11042) -> No product
-At time : 2.6 ps Reaction : OH^0 (-7418) + OH^0 (-10455) -> H2O2^0 (-12371)
-At time : 2.6 ps Reaction : H^0 (-8853) + OH^0 (-10343) -> No product
-At time : 2.6 ps Reaction : OH^0 (-8251) + OH^0 (-9228) -> H2O2^0 (-12372)
-At time : 2.6 ps Reaction : OH^0 (-8418) + OH^0 (-8550) -> H2O2^0 (-12373)
-At time : 2.6 ps Reaction : OH^0 (-5968) + OH^0 (-8091) -> H2O2^0 (-12374)
-At time : 2.6 ps Reaction : H^0 (-11150) + H^0 (-6563) -> H_2^0 (-12375)
-At time : 2.6 ps Reaction : OH^0 (-9920) + OH^0 (-10753) -> H2O2^0 (-12376)
-At time : 2.7 ps Reaction : OH^0 (-6100) + OH^0 (-9259) -> H2O2^0 (-12377)
-At time : 2.7 ps Reaction : H^0 (-6561) + OH^0 (-9247) -> No product
-At time : 2.7 ps Reaction : H^0 (-6555) + OH^0 (-9218) -> No product
-At time : 2.7 ps Reaction : OH^0 (-7728) + H^0 (-7899) -> No product
-At time : 2.8 ps Reaction : OH^0 (-8455) + OH^0 (-10843) -> H2O2^0 (-12378)
-At time : 2.8 ps Reaction : H^0 (-8790) + OH^0 (-10722) -> No product
-At time : 2.8 ps Reaction : OH^0 (-8747) + OH^0 (-10590) -> H2O2^0 (-12379)
-At time : 2.8 ps Reaction : OH^0 (-10020) + H^0 (-6513) -> No product
-At time : 2.8 ps Reaction : OH^0 (-9531) + OH^0 (-8224) -> H2O2^0 (-12380)
-At time : 2.8 ps Reaction : OH^0 (-7479) + OH^0 (-9525) -> H2O2^0 (-12381)
-At time : 2.8 ps Reaction : OH^0 (-6331) + OH^0 (-9472) -> H2O2^0 (-12382)
-At time : 2.8 ps Reaction : H^0 (-6704) + OH^0 (-8228) -> No product
-At time : 2.8 ps Reaction : OH^0 (-11231) + OH^0 (-9371) -> H2O2^0 (-12383)
-At time : 2.9 ps Reaction : H^0 (-11091) + OH^0 (-10250) -> No product
-At time : 2.9 ps Reaction : H^0 (-9325) + OH^0 (-10829) -> No product
-At time : 2.9 ps Reaction : OH^0 (-9046) + OH^0 (-10320) -> H2O2^0 (-12384)
-At time : 2.9 ps Reaction : OH^0 (-5815) + OH^0 (-8263) -> H2O2^0 (-12385)
-At time : 2.9 ps Reaction : OH^0 (-8049) + OH^0 (-6454) -> H2O2^0 (-12386)
-At time : 3 ps Reaction : H^0 (-10961) + OH^0 (-9263) -> No product
-At time : 3 ps Reaction : OH^0 (-7242) + H^0 (-7184) -> No product
-At time : 3 ps Reaction : H^0 (-7048) + OH^0 (-6919) -> No product
-At time : 3.1 ps Reaction : OH^0 (-6187) + OH^0 (-10790) -> H2O2^0 (-12387)
-At time : 3.1 ps Reaction : OH^0 (-7740) + OH^0 (-10622) -> H2O2^0 (-12388)
-At time : 3.1 ps Reaction : OH^0 (-9780) + OH^0 (-10226) -> H2O2^0 (-12389)
-At time : 3.1 ps Reaction : OH^0 (-7922) + H^0 (-8599) -> No product
-At time : 3.1 ps Reaction : OH^0 (-8025) + OH^0 (-7383) -> H2O2^0 (-12390)
-At time : 3.1 ps Reaction : e_aq^-1 (-4263) + e_aq^-1 (-2950) -> OH^-1 (-12391) + OH^-1 (-12392) + H_2^0 (-12393)
-At time : 3.2 ps Reaction : OH^0 (-7302) + H^0 (-9383) -> No product
-At time : 3.2 ps Reaction : OH^0 (-8830) + H^0 (-8849) -> No product
-At time : 3.2 ps Reaction : OH^0 (-7194) + OH^0 (-8435) -> H2O2^0 (-12394)
-At time : 3.2 ps Reaction : OH^0 (-7988) + H^0 (-6790) -> No product
-At time : 3.2 ps Reaction : H^0 (-7391) + OH^0 (-7783) -> No product
-At time : 3.3 ps Reaction : OH^0 (-6226) + H^0 (-10279) -> No product
-At time : 3.3 ps Reaction : OH^0 (-7705) + H^0 (-6591) -> No product
-At time : 3.3 ps Reaction : OH^0 (-6799) + H^0 (-6948) -> No product
-At time : 3.4 ps Reaction : H^0 (-11116) + OH^0 (-7525) -> No product
-At time : 3.4 ps Reaction : H^0 (-7711) + OH^0 (-10085) -> No product
-At time : 3.5 ps Reaction : OH^0 (-5796) + OH^0 (-10694) -> H2O2^0 (-12395)
-At time : 3.5 ps Reaction : H^0 (-7643) + OH^0 (-8386) -> No product
-At time : 3.5 ps Reaction : OH^0 (-5920) + OH^0 (-8067) -> H2O2^0 (-12396)
-At time : 3.6 ps Reaction : H^0 (-11250) + OH^0 (-10632) -> No product
-At time : 3.6 ps Reaction : OH^0 (-10046) + OH^0 (-9687) -> H2O2^0 (-12397)
-At time : 3.6 ps Reaction : OH^0 (-7118) + OH^0 (-8727) -> H2O2^0 (-12398)
-At time : 3.6 ps Reaction : OH^0 (-6007) + OH^0 (-8137) -> H2O2^0 (-12399)
-At time : 3.7 ps Reaction : OH^0 (-7824) + H^0 (-7068) -> No product
-At time : 3.7 ps Reaction : H^0 (-7589) + OH^0 (-6367) -> No product
-At time : 3.8 ps Reaction : OH^0 (-10293) + OH^0 (-10630) -> H2O2^0 (-12400)
-At time : 3.9 ps Reaction : H^0 (-11066) + OH^0 (-9861) -> No product
-At time : 3.9 ps Reaction : H^0 (-8663) + OH^0 (-10528) -> No product
-At time : 3.9 ps Reaction : OH^0 (-8935) + OH^0 (-10522) -> H2O2^0 (-12401)
-At time : 4 ps Reaction : OH^0 (-9841) + OH^0 (-9153) -> H2O2^0 (-12402)
-At time : 4 ps Reaction : H^0 (-6481) + OH^0 (-9204) -> No product
-At time : 4 ps Reaction : OH^0 (-8729) + OH^0 (-8983) -> H2O2^0 (-12403)
-At time : 4 ps Reaction : OH^0 (-8093) + OH^0 (-9484) -> H2O2^0 (-12404)
-At time : 4.1 ps Reaction : OH^0 (-8165) + OH^0 (-10741) -> H2O2^0 (-12405)
-At time : 4.1 ps Reaction : H^0 (-7938) + OH^0 (-9605) -> No product
-At time : 4.2 ps Reaction : OH^0 (-7791) + OH^0 (-10863) -> H2O2^0 (-12406)
-At time : 4.2 ps Reaction : OH^0 (-9907) + OH^0 (-9375) -> H2O2^0 (-12407)
-At time : 4.2 ps Reaction : OH^0 (-8903) + OH^0 (-9257) -> H2O2^0 (-12408)
-At time : 4.2 ps Reaction : OH^0 (-7798) + OH^0 (-8304) -> H2O2^0 (-12409)
-At time : 4.2 ps Reaction : H^0 (-6691) + H^0 (-7802) -> H_2^0 (-12410)
-At time : 4.2 ps Reaction : H^0 (-6751) + OH^0 (-7206) -> No product
-At time : 4.3 ps Reaction : OH^0 (-10004) + OH^0 (-10401) -> H2O2^0 (-12411)
-At time : 4.4 ps Reaction : H^0 (-7078) + OH^0 (-9663) -> No product
-At time : 4.5 ps Reaction : OH^0 (-8979) + OH^0 (-10285) -> H2O2^0 (-12412)
-At time : 4.5 ps Reaction : H^0 (-6827) + OH^0 (-8826) -> No product
-At time : 4.5 ps Reaction : OH^0 (-8392) + H^0 (-8236) -> No product
-At time : 4.5 ps Reaction : H^0 (-7544) + H^0 (-6507) -> H_2^0 (-12413)
-At time : 4.6 ps Reaction : H^0 (-6467) + OH^0 (-10899) -> No product
-At time : 4.7 ps Reaction : OH^0 (-11064) + OH^0 (-9353) -> H2O2^0 (-12414)
-At time : 4.7 ps Reaction : H^0 (-10963) + OH^0 (-7283) -> No product
-At time : 4.7 ps Reaction : H^0 (-6565) + OH^0 (-8119) -> No product
-At time : 4.8 ps Reaction : OH^0 (-8211) + OH^0 (-10678) -> H2O2^0 (-12415)
-At time : 4.8 ps Reaction : OH^0 (-9468) + H^0 (-10234) -> No product
-At time : 4.8 ps Reaction : OH^0 (-9992) + H^0 (-8554) -> No product
-At time : 4.8 ps Reaction : H^0 (-7307) + OH^0 (-8626) -> No product
-At time : 4.8 ps Reaction : H^0 (-6955) + OH^0 (-7294) -> No product
-At time : 4.9 ps Reaction : OH^0 (-9824) + OH^0 (-10453) -> H2O2^0 (-12416)
-At time : 4.9 ps Reaction : OH^0 (-6229) + H^0 (-9809) -> No product
-At time : 4.9 ps Reaction : H^0 (-7003) + OH^0 (-6424) -> No product
-At time : 5 ps Reaction : H^0 (-6835) + OH^0 (-10646) -> No product
-At time : 5 ps Reaction : OH^0 (-8209) + OH^0 (-9062) -> H2O2^0 (-12417)
-At time : 5 ps Reaction : H^0 (-8414) + OH^0 (-8431) -> No product
-At time : 5 ps Reaction : OH^0 (-5866) + OH^0 (-8402) -> H2O2^0 (-12418)
-At time : 5.1 ps Reaction : H^0 (-10906) + H^0 (-7190) -> H_2^0 (-12419)
-At time : 5.1 ps Reaction : OH^0 (-8131) + OH^0 (-9691) -> H2O2^0 (-12420)
-At time : 5.1 ps Reaction : OH^0 (-7228) + H^0 (-8232) -> No product
-At time : 5.2 ps Reaction : OH^0 (-10201) + OH^0 (-10861) -> H2O2^0 (-12421)
-At time : 5.2 ps Reaction : OH^0 (-5965) + OH^0 (-10425) -> H2O2^0 (-12422)
-At time : 5.2 ps Reaction : H^0 (-6876) + OH^0 (-8569) -> No product
-At time : 5.2 ps Reaction : OH^0 (-7155) + H^0 (-6615) -> No product
-At time : 5.2 ps Reaction : OH^0 (-8149) + OH^0 (-9794) -> H2O2^0 (-12423)
-At time : 5.3 ps Reaction : OH^0 (-9416) + H^0 (-9275) -> No product
-At time : 5.3 ps Reaction : OH^0 (-6448) + H^0 (-8573) -> No product
-At time : 5.3 ps Reaction : OH^0 (-8441) + OH^0 (-8506) -> H2O2^0 (-12424)
-At time : 5.4 ps Reaction : H^0 (-7204) + H^0 (-10399) -> H_2^0 (-12425)
-At time : 5.5 ps Reaction : OH^0 (-9792) + OH^0 (-8713) -> H2O2^0 (-12426)
-At time : 5.5 ps Reaction : H^0 (-6729) + OH^0 (-8451) -> No product
-At time : 5.6 ps Reaction : H^0 (-7141) + H^0 (-8045) -> H_2^0 (-12427)
-At time : 5.6 ps Reaction : OH^0 (-7560) + OH^0 (-5857) -> H2O2^0 (-12428)
-At time : 5.6 ps Reaction : OH^0 (-8967) + OH^0 (-9341) -> H2O2^0 (-12429)
-At time : 5.6 ps Reaction : H^0 (-7095) + H^0 (-6985) -> H_2^0 (-12430)
-At time : 5.7 ps Reaction : H^0 (-6935) + OH^0 (-10501) -> No product
-At time : 5.7 ps Reaction : e_aq^-1 (-5351) + e_aq^-1 (-3773) -> OH^-1 (-12431) + OH^-1 (-12432) + H_2^0 (-12433)
-At time : 5.8 ps Reaction : H^0 (-7381) + H^0 (-8297) -> H_2^0 (-12434)
-At time : 5.8 ps Reaction : OH^0 (-7957) + H^0 (-6575) -> No product
-At time : 6 ps Reaction : OH^0 (-7196) + OH^0 (-8141) -> H2O2^0 (-12435)
-At time : 6.1 ps Reaction : OH^0 (-9762) + OH^0 (-10682) -> H2O2^0 (-12436)
-At time : 6.2 ps Reaction : H^0 (-7405) + OH^0 (-10616) -> No product
-At time : 6.2 ps Reaction : OH^0 (-5932) + H^0 (-8749) -> No product
-At time : 6.3 ps Reaction : H^0 (-8039) + OH^0 (-10841) -> No product
-At time : 6.4 ps Reaction : H^0 (-10985) + H^0 (-7485) -> H_2^0 (-12437)
-At time : 6.4 ps Reaction : H^0 (-10915) + OH^0 (-7911) -> No product
-At time : 6.4 ps Reaction : H^0 (-9936) + H^0 (-8463) -> H_2^0 (-12438)
-At time : 6.4 ps Reaction : OH^0 (-5836) + OH^0 (-9135) -> H2O2^0 (-12439)
-At time : 6.4 ps Reaction : H^0 (-7260) + H^0 (-8739) -> H_2^0 (-12440)
-At time : 6.5 ps Reaction : OH^0 (-7972) + OH^0 (-9163) -> H2O2^0 (-12441)
-At time : 6.6 ps Reaction : OH^0 (-6142) + H^0 (-10305) -> No product
-At time : 6.7 ps Reaction : OH^0 (-8659) + OH^0 (-9072) -> H2O2^0 (-12442)
-At time : 6.8 ps Reaction : OH^0 (-9879) + OH^0 (-9474) -> H2O2^0 (-12443)
-At time : 7 ps Reaction : e_aq^-1 (-1238) + e_aq^-1 (-5619) -> OH^-1 (-12444) + OH^-1 (-12445) + H_2^0 (-12446)
-At time : 7.1 ps Reaction : OH^0 (-6034) + OH^0 (-10162) -> H2O2^0 (-12447)
-At time : 7.1 ps Reaction : H^0 (-6631) + OH^0 (-9008) -> No product
-At time : 7.3 ps Reaction : OH^0 (-9885) + OH^0 (-10257) -> H2O2^0 (-12448)
-At time : 7.3 ps Reaction : H^0 (-7573) + OH^0 (-9080) -> No product
-At time : 7.3 ps Reaction : OH^0 (-7609) + H^0 (-6551) -> No product
-At time : 7.3 ps Reaction : e_aq^-1 (-1482) + e_aq^-1 (-1930) -> OH^-1 (-12449) + OH^-1 (-12450) + H_2^0 (-12451)
-At time : 7.4 ps Reaction : OH^0 (-8408) + OH^0 (-10808) -> H2O2^0 (-12452)
-At time : 7.4 ps Reaction : OH^0 (-8425) + OH^0 (-8933) -> H2O2^0 (-12453)
-At time : 7.5 ps Reaction : OH^0 (-6025) + OH^0 (-9343) -> H2O2^0 (-12454)
-At time : 7.6 ps Reaction : OH^0 (-6386) + OH^0 (-10457) -> H2O2^0 (-12455)
-At time : 7.7 ps Reaction : OH^0 (-6798) + H^0 (-7258) -> No product
-At time : 7.8 ps Reaction : OH^0 (-7674) + OH^0 (-9273) -> H2O2^0 (-12456)
-At time : 7.9 ps Reaction : OH^0 (-11169) + OH^0 (-10054) -> H2O2^0 (-12457)
-At time : 8 ps Reaction : OH^0 (-7765) + OH^0 (-9543) -> H2O2^0 (-12458)
-At time : 8 ps Reaction : OH^0 (-6121) + H^0 (-8445) -> No product
-At time : 8.1 ps Reaction : OH^0 (-10660) + OH^0 (-10670) -> H2O2^0 (-12459)
-At time : 8.1 ps Reaction : OH^0 (-8497) + H^0 (-8139) -> No product
-At time : 8.1 ps Reaction : H^0 (-7268) + H^0 (-7251) -> H_2^0 (-12460)
-At time : 8.2 ps Reaction : OH^0 (-9434) + OH^0 (-8410) -> H2O2^0 (-12461)
-At time : 8.2 ps Reaction : e_aq^-1 (-3608) + e_aq^-1 (-3799) -> OH^-1 (-12462) + OH^-1 (-12463) + H_2^0 (-12464)
-At time : 8.3 ps Reaction : OH^0 (-6085) + OH^0 (-9619) -> H2O2^0 (-12465)
-At time : 8.3 ps Reaction : H^0 (-6983) + OH^0 (-9533) -> No product
-At time : 8.3 ps Reaction : OH^0 (-7172) + H^0 (-6489) -> No product
-At time : 8.6 ps Reaction : OH^0 (-7719) + OH^0 (-8427) -> H2O2^0 (-12466)
-At time : 8.7 ps Reaction : H^0 (-6895) + OH^0 (-9826) -> No product
-At time : 8.7 ps Reaction : H^0 (-6743) + OH^0 (-9032) -> No product
-At time : 8.8 ps Reaction : OH^0 (-6415) + OH^0 (-9088) -> H2O2^0 (-12467)
-At time : 8.8 ps Reaction : H^0 (-7216) + OH^0 (-8501) -> No product
-At time : 8.8 ps Reaction : OH^0 (-7953) + H^0 (-6747) -> No product
-At time : 8.9 ps Reaction : H^0 (-7684) + OH^0 (-10252) -> No product
-At time : 8.9 ps Reaction : H^0 (-6901) + H^0 (-6475) -> H_2^0 (-12468)
-At time : 9.3 ps Reaction : OH^0 (-8474) + H^0 (-8838) -> No product
-At time : 9.3 ps Reaction : OH^0 (-5821) + OH^0 (-8533) -> H2O2^0 (-12469)
-At time : 9.4 ps Reaction : OH^0 (-10612) + OH^0 (-10634) -> H2O2^0 (-12470)
-At time : 9.4 ps Reaction : OH^0 (-7817) + OH^0 (-9529) -> H2O2^0 (-12471)
-At time : 9.5 ps Reaction : OH^0 (-8782) + OH^0 (-10244) -> H2O2^0 (-12472)
-At time : 9.7 ps Reaction : OH^0 (-9566) + OH^0 (-8622) -> H2O2^0 (-12473)
-At time : 9.8 ps Reaction : H^0 (-6874) + H^0 (-6585) -> H_2^0 (-12474)
-At time : 10.2 ps Reaction : H^0 (-10967) + H^0 (-9851) -> H_2^0 (-12475)
-At time : 10.3 ps Reaction : OH^0 (-9303) + OH^0 (-10335) -> H2O2^0 (-12476)
-At time : 10.6 ps Reaction : H^0 (-6663) + H^0 (-7178) -> H_2^0 (-12477)
-At time : 10.7 ps Reaction : OH^0 (-8721) + OH^0 (-10222) -> H2O2^0 (-12478)
-At time : 10.7 ps Reaction : H^0 (-6973) + OH^0 (-9155) -> No product
-At time : 10.8 ps Reaction : OH^0 (-7434) + OH^0 (-10735) -> H2O2^0 (-12479)
-At time : 12.1 ps Reaction : OH^0 (-6058) + OH^0 (-10440) -> H2O2^0 (-12480)
-At time : 12.1 ps Reaction : H^0 (-6519) + OH^0 (-9774) -> No product
-At time : 12.1 ps Reaction : OH^0 (-6202) + OH^0 (-9359) -> H2O2^0 (-12481)
-At time : 12.1 ps Reaction : OH^0 (-7097) + OH^0 (-8299) -> H2O2^0 (-12482)
-At time : 12.1 ps Reaction : OH^0 (-8909) + OH^0 (-10702) -> H2O2^0 (-12483)
-At time : 13.1 ps Reaction : H^0 (-11125) + OH^0 (-5854) -> No product
-At time : 13.1 ps Reaction : OH^0 (-6106) + OH^0 (-9978) -> H2O2^0 (-12484)
-At time : 13.1 ps Reaction : OH^0 (-9504) + OH^0 (-8957) -> H2O2^0 (-12485)
-At time : 13.1 ps Reaction : H^0 (-6477) + OH^0 (-8220) -> No product
-At time : 13.1 ps Reaction : OH^0 (-6999) + H^0 (-8240) -> No product
-At time : 14.1 ps Reaction : H^0 (-10989) + OH^0 (-9393) -> No product
-At time : 14.1 ps Reaction : OH^0 (-7341) + OH^0 (-10586) -> H2O2^0 (-12486)
-At time : 14.1 ps Reaction : OH^0 (-8857) + OH^0 (-9216) -> H2O2^0 (-12487)
-At time : 14.1 ps Reaction : H^0 (-7915) + OH^0 (-9615) -> No product
-At time : 14.1 ps Reaction : OH^0 (-7101) + OH^0 (-9309) -> H2O2^0 (-12488)
-At time : 14.1 ps Reaction : H^0 (-7339) + H^0 (-6816) -> H_2^0 (-12489)
-At time : 15.1 ps Reaction : H^0 (-11013) + OH^0 (-9034) -> No product
-At time : 15.1 ps Reaction : OH^0 (-10556) + OH^0 (-10845) -> H2O2^0 (-12490)
-At time : 15.1 ps Reaction : OH^0 (-9717) + OH^0 (-8929) -> H2O2^0 (-12491)
-At time : 16.1 ps Reaction : OH^0 (-7722) + H^0 (-8585) -> No product
-At time : 16.1 ps Reaction : OH^0 (-9130) + OH^0 (-10187) -> H2O2^0 (-12492)
-At time : 16.1 ps Reaction : OH^0 (-8471) + OH^0 (-8216) -> H2O2^0 (-12493)
-At time : 17.1 ps Reaction : H^0 (-11148) + OH^0 (-10570) -> No product
-At time : 17.1 ps Reaction : H^0 (-8973) + OH^0 (-10857) -> No product
-At time : 17.1 ps Reaction : OH^0 (-6010) + OH^0 (-9998) -> H2O2^0 (-12494)
-At time : 17.1 ps Reaction : OH^0 (-9715) + OH^0 (-9996) -> H2O2^0 (-12495)
-At time : 17.1 ps Reaction : OH^0 (-9361) + OH^0 (-9333) -> H2O2^0 (-12496)
-At time : 17.1 ps Reaction : OH^0 (-5902) + H^0 (-8259) -> No product
-At time : 17.1 ps Reaction : H^0 (-6587) + OH^0 (-9633) -> No product
-At time : 17.1 ps Reaction : OH^0 (-7676) + OH^0 (-6400) -> H2O2^0 (-12497)
-At time : 18.1 ps Reaction : H^0 (-11051) + OH^0 (-9582) -> No product
-At time : 18.1 ps Reaction : H^0 (-6619) + OH^0 (-10438) -> No product
-At time : 18.1 ps Reaction : OH^0 (-7855) + OH^0 (-10173) -> H2O2^0 (-12498)
-At time : 18.1 ps Reaction : H^0 (-6921) + OH^0 (-9629) -> No product
-At time : 18.1 ps Reaction : OH^0 (-8416) + OH^0 (-9460) -> H2O2^0 (-12499)
-At time : 18.1 ps Reaction : H^0 (-7050) + OH^0 (-9409) -> No product
-At time : 18.1 ps Reaction : H^0 (-6509) + H^0 (-8284) -> H_2^0 (-12500)
-At time : 19.1 ps Reaction : OH^0 (-11131) + H^0 (-7523) -> No product
-At time : 19.1 ps Reaction : OH^0 (-10038) + OH^0 (-9255) -> H2O2^0 (-12501)
-At time : 19.1 ps Reaction : H^0 (-6794) + OH^0 (-10018) -> No product
-At time : 19.1 ps Reaction : OH^0 (-6913) + OH^0 (-9701) -> H2O2^0 (-12502)
-At time : 19.1 ps Reaction : H^0 (-6769) + H^0 (-6521) -> H_2^0 (-12503)
-At time : 19.1 ps Reaction : H^0 (-7005) + H^0 (-9556) -> H_2^0 (-12504)
-At time : 20.1 ps Reaction : OH^0 (-11024) + OH^0 (-11093) -> H2O2^0 (-12505)
-At time : 20.1 ps Reaction : H^0 (-6739) + OH^0 (-10716) -> No product
-At time : 20.1 ps Reaction : OH^0 (-7575) + OH^0 (-9994) -> H2O2^0 (-12506)
-At time : 20.1 ps Reaction : OH^0 (-9926) + OH^0 (-9054) -> H2O2^0 (-12507)
-At time : 20.1 ps Reaction : H^0 (-7815) + OH^0 (-8977) -> No product
-At time : 21.1 ps Reaction : e_aq^-1 (-5057) + H3O^1 (-9079) -> H^0 (-12508)
-At time : 21.1 ps Reaction : e_aq^-1 (-3564) + e_aq^-1 (-5943) -> OH^-1 (-12509) + OH^-1 (-12510) + H_2^0 (-12511)
-At time : 22.1 ps Reaction : OH^0 (-7709) + OH^0 (-10662) -> H2O2^0 (-12512)
-At time : 22.1 ps Reaction : OH^0 (-7961) + OH^0 (-8915) -> H2O2^0 (-12513)
-At time : 23.1 ps Reaction : OH^0 (-8614) + OH^0 (-10598) -> H2O2^0 (-12514)
-At time : 23.1 ps Reaction : OH^0 (-7279) + H^0 (-9677) -> No product
-At time : 23.1 ps Reaction : OH^0 (-8558) + OH^0 (-8804) -> H2O2^0 (-12515)
-At time : 23.1 ps Reaction : H^0 (-6792) + OH^0 (-7605) -> No product
-At time : 23.1 ps Reaction : H^0 (-6695) + H^0 (-7396) -> H_2^0 (-12516)
-At time : 24.1 ps Reaction : OH^0 (-10216) + OH^0 (-10341) -> H2O2^0 (-12517)
-At time : 24.1 ps Reaction : OH^0 (-7666) + OH^0 (-10220) -> H2O2^0 (-12518)
-At time : 24.1 ps Reaction : H^0 (-6545) + OH^0 (-8971) -> No product
-At time : 24.1 ps Reaction : OH^0 (-7878) + OH^0 (-8703) -> H2O2^0 (-12519)
-At time : 24.1 ps Reaction : OH^0 (-7984) + H^0 (-7963) -> No product
-At time : 24.1 ps Reaction : e_aq^-1 (-999) + e_aq^-1 (-5371) -> OH^-1 (-12520) + OH^-1 (-12521) + H_2^0 (-12522)
-At time : 24.1 ps Reaction : H^0 (-8657) + OH^0 (-10127) -> No product
-At time : 25.1 ps Reaction : OH^0 (-7361) + H^0 (-10981) -> No product
-At time : 25.1 ps Reaction : OH^0 (-8133) + OH^0 (-8529) -> H2O2^0 (-12523)
-At time : 25.1 ps Reaction : H^0 (-7678) + OH^0 (-5926) -> No product
-At time : 26.1 ps Reaction : H^0 (-10093) + OH^0 (-10606) -> No product
-At time : 26.1 ps Reaction : OH^0 (-8527) + OH^0 (-10471) -> H2O2^0 (-12524)
-At time : 26.1 ps Reaction : OH^0 (-9623) + OH^0 (-9731) -> H2O2^0 (-12525)
-At time : 27.1 ps Reaction : H^0 (-11198) + OH^0 (-9903) -> No product
-At time : 27.1 ps Reaction : OH^0 (-8571) + OH^0 (-10548) -> H2O2^0 (-12526)
-At time : 27.1 ps Reaction : OH^0 (-10087) + OH^0 (-10417) -> H2O2^0 (-12527)
-At time : 27.1 ps Reaction : e_aq^-1 (-3044) + OH^0 (-9651) -> OH^-1 (-12528)
-At time : 27.1 ps Reaction : H3O^1 (-8417) + OH^-1 (-12528) -> No product
-At time : 27.1 ps Reaction : H^0 (-10938) + OH^0 (-9669) -> No product
-At time : 28.1 ps Reaction : H^0 (-6820) + H^0 (-7515) -> H_2^0 (-12529)
-At time : 28.1 ps Reaction : H^0 (-6636) + OH^0 (-9171) -> No product
-At time : 29.1 ps Reaction : H^0 (-6693) + OH^0 (-10442) -> No product
-At time : 29.1 ps Reaction : OH^0 (-5956) + OH^0 (-8121) -> H2O2^0 (-12530)
-At time : 29.1 ps Reaction : H^0 (-6860) + OH^0 (-8085) -> No product
-At time : 29.1 ps Reaction : e_aq^-1 (-4255) + e_aq^-1 (-5275) -> OH^-1 (-12531) + OH^-1 (-12532) + H_2^0 (-12533)
-At time : 29.1 ps Reaction : e_aq^-1 (-303) + e_aq^-1 (-4376) -> OH^-1 (-12534) + OH^-1 (-12535) + H_2^0 (-12536)
-At time : 29.1 ps Reaction : e_aq^-1 (-2893) + e_aq^-1 (-3563) -> OH^-1 (-12537) + OH^-1 (-12538) + H_2^0 (-12539)
-At time : 30.1 ps Reaction : H^0 (-11239) + OH^0 (-10199) -> No product
-At time : 30.1 ps Reaction : OH^0 (-9444) + OH^0 (-10419) -> H2O2^0 (-12540)
-At time : 30.1 ps Reaction : OH^0 (-9820) + OH^0 (-8784) -> H2O2^0 (-12541)
-At time : 30.1 ps Reaction : OH^0 (-8377) + OH^0 (-9645) -> H2O2^0 (-12542)
-At time : 30.1 ps Reaction : H^0 (-7645) + OH^0 (-9478) -> No product
-At time : 30.1 ps Reaction : OH^0 (-7264) + OH^0 (-9442) -> H2O2^0 (-12543)
-At time : 30.1 ps Reaction : OH^0 (-7363) + OH^0 (-8234) -> H2O2^0 (-12544)
-At time : 31.1 ps Reaction : H3O^1 (-7858) + e_aq^-1 (-3895) -> H^0 (-12545)
-At time : 32.1 ps Reaction : H^0 (-7851) + H^0 (-10089) -> H_2^0 (-12546)
-At time : 32.1 ps Reaction : H^0 (-6644) + H^0 (-6667) -> H_2^0 (-12547)
-At time : 33.1 ps Reaction : H^0 (-6897) + H^0 (-6515) -> H_2^0 (-12548)
-At time : 34.1 ps Reaction : H^0 (-7636) + OH^0 (-10389) -> No product
-At time : 34.1 ps Reaction : H^0 (-8029) + OH^0 (-9283) -> No product
-At time : 34.1 ps Reaction : OH^0 (-6181) + H^0 (-8875) -> No product
-At time : 34.1 ps Reaction : OH^0 (-7986) + OH^0 (-7947) -> H2O2^0 (-12549)
-At time : 34.1 ps Reaction : e_aq^-1 (-3034) + e_aq^-1 (-3603) -> OH^-1 (-12550) + OH^-1 (-12551) + H_2^0 (-12552)
-At time : 35.1 ps Reaction : OH^0 (-10447) + OH^0 (-10696) -> H2O2^0 (-12553)
-At time : 35.1 ps Reaction : H^0 (-6858) + OH^0 (-10075) -> No product
-At time : 35.1 ps Reaction : OH^0 (-6253) + OH^0 (-9541) -> H2O2^0 (-12554)
-At time : 36.1 ps Reaction : OH^0 (-11089) + H^0 (-10516) -> No product
-At time : 36.1 ps Reaction : OH^0 (-6349) + OH^0 (-9448) -> H2O2^0 (-12555)
-At time : 36.1 ps Reaction : OH^0 (-6325) + OH^0 (-9299) -> H2O2^0 (-12556)
-At time : 36.1 ps Reaction : H^0 (-6511) + OH^0 (-8238) -> No product
-At time : 37.1 ps Reaction : OH^0 (-7495) + OH^0 (-10379) -> H2O2^0 (-12557)
-At time : 37.1 ps Reaction : H^0 (-8756) + H^0 (-10869) -> H_2^0 (-12558)
-At time : 38.1 ps Reaction : OH^-1 (-12432) + H3O^1 (-8843) -> No product
-At time : 38.1 ps Reaction : H^0 (-11114) + OH^0 (-9329) -> No product
-At time : 38.1 ps Reaction : OH^0 (-9464) + H^0 (-10367) -> No product
-At time : 39.1 ps Reaction : e_aq^-1 (-27) + e_aq^-1 (-5184) -> OH^-1 (-12559) + OH^-1 (-12560) + H_2^0 (-12561)
-At time : 40.1 ps Reaction : OH^0 (-10058) + OH^0 (-8406) -> H2O2^0 (-12562)
-At time : 41.1 ps Reaction : H^0 (-6941) + H^0 (-11034) -> H_2^0 (-12563)
-At time : 41.1 ps Reaction : OH^0 (-9115) + OH^0 (-10357) -> H2O2^0 (-12564)
-At time : 41.1 ps Reaction : OH^0 (-5980) + OH^0 (-9855) -> H2O2^0 (-12565)
-At time : 41.1 ps Reaction : H^0 (-7030) + OH^0 (-5830) -> No product
-At time : 41.1 ps Reaction : e_aq^-1 (-4034) + e_aq^-1 (-2914) -> OH^-1 (-12566) + OH^-1 (-12567) + H_2^0 (-12568)
-At time : 43.1 ps Reaction : OH^0 (-7626) + H^0 (-9940) -> No product
-At time : 43.1 ps Reaction : OH^0 (-9576) + OH^0 (-8218) -> H2O2^0 (-12569)
-At time : 44.1 ps Reaction : H3O^1 (-11023) + OH^-1 (-12449) -> No product
-At time : 44.1 ps Reaction : H^0 (-7182) + OH^0 (-6103) -> No product
-At time : 44.1 ps Reaction : OH^0 (-8222) + OH^0 (-9865) -> H2O2^0 (-12570)
-At time : 44.1 ps Reaction : H^0 (-7330) + H^0 (-6471) -> H_2^0 (-12571)
-At time : 45.1 ps Reaction : H^0 (-6745) + OH^0 (-9078) -> No product
-At time : 46.1 ps Reaction : H^0 (-7628) + OH^0 (-7503) -> No product
-At time : 46.1 ps Reaction : e_aq^-1 (-4040) + e_aq^-1 (-4917) -> OH^-1 (-12572) + OH^-1 (-12573) + H_2^0 (-12574)
-At time : 47.1 ps Reaction : OH^0 (-9911) + OH^0 (-8548) -> H2O2^0 (-12575)
-At time : 47.1 ps Reaction : OH^0 (-8648) + OH^0 (-9805) -> H2O2^0 (-12576)
-At time : 47.1 ps Reaction : H^0 (-6581) + H^0 (-6627) -> H_2^0 (-12577)
-At time : 47.1 ps Reaction : OH^0 (-5845) + H^0 (-6607) -> No product
-At time : 48.1 ps Reaction : OH^0 (-6322) + OH^0 (-10101) -> H2O2^0 (-12578)
-At time : 48.1 ps Reaction : H^0 (-9803) + H^0 (-9117) -> H_2^0 (-12579)
-At time : 48.1 ps Reaction : OH^0 (-8325) + OH^0 (-8937) -> H2O2^0 (-12580)
-At time : 49.1 ps Reaction : H^0 (-10975) + OH^0 (-8951) -> No product
-At time : 49.1 ps Reaction : H^0 (-10056) + OH^0 (-9974) -> No product
-At time : 53.1 ps Reaction : OH^0 (-8828) + OH^0 (-10385) -> H2O2^0 (-12581)
-At time : 53.1 ps Reaction : H^0 (-7347) + OH^0 (-6232) -> No product
-At time : 53.1 ps Reaction : e_aq^-1 (-3908) + e_aq^-1 (-5426) -> OH^-1 (-12582) + OH^-1 (-12583) + H_2^0 (-12584)
-At time : 56.1 ps Reaction : OH^-1 (-12551) + H3O^1 (-8566) -> No product
-At time : 56.1 ps Reaction : H^0 (-10919) + OH^0 (-7943) -> No product
-At time : 56.1 ps Reaction : H^0 (-7472) + OH^0 (-7567) -> No product
-At time : 57.1 ps Reaction : OH^0 (-9681) + H^0 (-8897) -> No product
-At time : 57.1 ps Reaction : OH^0 (-6328) + OH^0 (-8652) -> H2O2^0 (-12585)
-At time : 57.1 ps Reaction : e_aq^-1 (-3686) + e_aq^-1 (-4841) -> OH^-1 (-12586) + OH^-1 (-12587) + H_2^0 (-12588)
-At time : 58.1 ps Reaction : H3O^1 (-7749) + e_aq^-1 (-5284) -> H^0 (-12589)
-At time : 58.1 ps Reaction : e_aq^-1 (-4137) + e_aq^-1 (-5022) -> OH^-1 (-12590) + OH^-1 (-12591) + H_2^0 (-12592)
-At time : 61.1 ps Reaction : OH^0 (-9222) + OH^0 (-9351) -> H2O2^0 (-12593)
-At time : 61.1 ps Reaction : OH^0 (-7734) + OH^0 (-9064) -> H2O2^0 (-12594)
-At time : 61.1 ps Reaction : e_aq^-1 (-4123) + e_aq^-1 (-5220) -> OH^-1 (-12595) + OH^-1 (-12596) + H_2^0 (-12597)
-At time : 65.1 ps Reaction : OH^0 (-8367) + OH^0 (-8688) -> H2O2^0 (-12598)
-At time : 67.1 ps Reaction : e_aq^-1 (-4717) + e_aq^-1 (-3682) -> OH^-1 (-12599) + OH^-1 (-12600) + H_2^0 (-12601)
-At time : 69.1 ps Reaction : e_aq^-1 (-1198) + e_aq^-1 (-3606) -> OH^-1 (-12602) + OH^-1 (-12603) + H_2^0 (-12604)
-At time : 69.1 ps Reaction : e_aq^-1 (-712) + e_aq^-1 (-1105) -> OH^-1 (-12605) + OH^-1 (-12606) + H_2^0 (-12607)
-At time : 70.1 ps Reaction : OH^-1 (-12550) + H3O^1 (-8647) -> No product
-At time : 71.1 ps Reaction : OH^0 (-11243) + OH^0 (-7804) -> H2O2^0 (-12608)
-At time : 72.1 ps Reaction : OH^0 (-6217) + OH^0 (-10550) -> H2O2^0 (-12609)
-At time : 73.1 ps Reaction : H^0 (-8033) + OH^0 (-6316) -> No product
-At time : 73.1 ps Reaction : e_aq^-1 (-1149) + e_aq^-1 (-2365) -> OH^-1 (-12610) + OH^-1 (-12611) + H_2^0 (-12612)
-At time : 74.1 ps Reaction : e_aq^-1 (-1080) + H3O^1 (-7205) -> H^0 (-12613)
-At time : 75.1 ps Reaction : H^0 (-10932) + OH^0 (-8021) -> No product
-At time : 75.1 ps Reaction : e_aq^-1 (-3526) + H3O^1 (-9862) -> H^0 (-12614)
-At time : 78.1 ps Reaction : e_aq^-1 (-4313) + H3O^1 (-10186) -> H^0 (-12615)
-At time : 78.1 ps Reaction : e_aq^-1 (-4396) + e_aq^-1 (-3679) -> OH^-1 (-12616) + OH^-1 (-12617) + H_2^0 (-12618)
-At time : 79.1 ps Reaction : e_aq^-1 (-5638) + H3O^1 (-6335) -> H^0 (-12619)
-At time : 79.1 ps Reaction : e_aq^-1 (-706) + e_aq^-1 (-5653) -> OH^-1 (-12620) + OH^-1 (-12621) + H_2^0 (-12622)
-At time : 80.1 ps Reaction : e_aq^-1 (-746) + H^0 (-7076) -> OH^-1 (-12623) + H_2^0 (-12624)
-At time : 80.1 ps Reaction : OH^-1 (-12623) + H3O^1 (-9997) -> No product
-At time : 81.1 ps Reaction : OH^0 (-9405) + OH^0 (-6214) -> H2O2^0 (-12625)
-At time : 84.1 ps Reaction : e_aq^-1 (-4176) + e_aq^-1 (-5826) -> OH^-1 (-12626) + OH^-1 (-12627) + H_2^0 (-12628)
-At time : 84.1 ps Reaction : e_aq^-1 (-4820) + e_aq^-1 (-1392) -> OH^-1 (-12629) + OH^-1 (-12630) + H_2^0 (-12631)
-At time : 85.1 ps Reaction : e_aq^-1 (-1471) + H3O^1 (-8366) -> H^0 (-12632)
-At time : 86.1 ps Reaction : e_aq^-1 (-4073) + H3O^1 (-6928) -> H^0 (-12633)
-At time : 86.1 ps Reaction : e_aq^-1 (-320) + e_aq^-1 (-4499) -> OH^-1 (-12634) + OH^-1 (-12635) + H_2^0 (-12636)
-At time : 86.1 ps Reaction : e_aq^-1 (-4308) + e_aq^-1 (-3837) -> OH^-1 (-12637) + OH^-1 (-12638) + H_2^0 (-12639)
-At time : 87.1 ps Reaction : e_aq^-1 (-2693) + e_aq^-1 (-5132) -> OH^-1 (-12640) + OH^-1 (-12641) + H_2^0 (-12642)
-At time : 87.1 ps Reaction : e_aq^-1 (-218) + e_aq^-1 (-4664) -> OH^-1 (-12643) + OH^-1 (-12644) + H_2^0 (-12645)
-At time : 88.1 ps Reaction : H3O^1 (-7356) + OH^-1 (-12583) -> No product
-At time : 90.1 ps Reaction : e_aq^-1 (-5062) + e_aq^-1 (-5420) -> OH^-1 (-12646) + OH^-1 (-12647) + H_2^0 (-12648)
-At time : 92.1 ps Reaction : e_aq^-1 (-4298) + H^0 (-6493) -> OH^-1 (-12649) + H_2^0 (-12650)
-At time : 92.1 ps Reaction : OH^-1 (-12649) + H3O^1 (-8324) -> No product
-At time : 93.1 ps Reaction : e_aq^-1 (-3111) + e_aq^-1 (-5081) -> OH^-1 (-12651) + OH^-1 (-12652) + H_2^0 (-12653)
-At time : 97.1 ps Reaction : OH^0 (-10079) + OH^0 (-9086) -> H2O2^0 (-12654)
-At time : 98.1 ps Reaction : OH^0 (-10983) + OH^0 (-9220) -> H2O2^0 (-12655)
-At time : 99.1 ps Reaction : OH^-1 (-12573) + H3O^1 (-8819) -> No product
-At time : 99.1 ps Reaction : e_aq^-1 (-458) + e_aq^-1 (-5931) -> OH^-1 (-12656) + OH^-1 (-12657) + H_2^0 (-12658)
-At time : 99.1 ps Reaction : e_aq^-1 (-4821) + e_aq^-1 (-1139) -> OH^-1 (-12659) + OH^-1 (-12660) + H_2^0 (-12661)
-At time : 100.1 ps Reaction : e_aq^-1 (-1188) + e_aq^-1 (-2772) -> OH^-1 (-12662) + OH^-1 (-12663) + H_2^0 (-12664)
-At time : 101.1 ps Reaction : H^0 (-9578) + H^0 (-8390) -> H_2^0 (-12665)
-At time : 111.1 ps Reaction : e_aq^-1 (-5537) + H3O^1 (-10543) -> H^0 (-12666)
-At time : 111.1 ps Reaction : e_aq^-1 (-3141) + H3O^1 (-9227) -> H^0 (-12667)
-At time : 111.1 ps Reaction : e_aq^-1 (-4989) + e_aq^-1 (-5158) -> OH^-1 (-12668) + OH^-1 (-12669) + H_2^0 (-12670)
-At time : 111.1 ps Reaction : e_aq^-1 (-2593) + e_aq^-1 (-5071) -> OH^-1 (-12671) + OH^-1 (-12672) + H_2^0 (-12673)
-At time : 111.1 ps Reaction : e_aq^-1 (-3119) + e_aq^-1 (-4761) -> OH^-1 (-12674) + OH^-1 (-12675) + H_2^0 (-12676)
-At time : 111.1 ps Reaction : e_aq^-1 (-2464) + e_aq^-1 (-4615) -> OH^-1 (-12677) + OH^-1 (-12678) + H_2^0 (-12679)
-At time : 111.1 ps Reaction : e_aq^-1 (-995) + e_aq^-1 (-4245) -> OH^-1 (-12680) + OH^-1 (-12681) + H_2^0 (-12682)
-At time : 121.1 ps Reaction : OH^-1 (-12659) + H3O^1 (-10511) -> No product
-At time : 121.1 ps Reaction : H3O^1 (-7827) + OH^-1 (-12510) -> No product
-At time : 121.1 ps Reaction : H3O^1 (-7015) + OH^-1 (-12450) -> No product
-At time : 121.1 ps Reaction : e_aq^-1 (-3613) + e_aq^-1 (-6234) -> OH^-1 (-12683) + OH^-1 (-12684) + H_2^0 (-12685)
-At time : 121.1 ps Reaction : e_aq^-1 (-3032) + e_aq^-1 (-4214) -> OH^-1 (-12686) + OH^-1 (-12687) + H_2^0 (-12688)
-At time : 121.1 ps Reaction : e_aq^-1 (-2882) + e_aq^-1 (-3552) -> OH^-1 (-12689) + OH^-1 (-12690) + H_2^0 (-12691)
-At time : 121.1 ps Reaction : e_aq^-1 (-656) + e_aq^-1 (-717) -> OH^-1 (-12692) + OH^-1 (-12693) + H_2^0 (-12694)
-At time : 121.1 ps Reaction : OH^-1 (-12675) + H3O^1 (-8720) -> No product
-At time : 121.1 ps Reaction : e_aq^-1 (-1246) + H2O2^0 (-12288) -> OH^-1 (-12695) + OH^0 (-12696)
-At time : 121.1 ps Reaction : e_aq^-1 (-2839) + OH^0 (-7796) -> OH^-1 (-12697)
-At time : 121.1 ps Reaction : OH^0 (-6067) + H^0 (-6621) -> No product
-At time : 121.1 ps Reaction : OH^-1 (-12697) + H3O^1 (-10136) -> No product
-At time : 121.1 ps Reaction : H3O^1 (-7823) + OH^-1 (-12695) -> No product
-At time : 131.1 ps Reaction : OH^-1 (-12652) + H3O^1 (-10446) -> No product
-At time : 131.1 ps Reaction : OH^0 (-6373) + OH^0 (-8191) -> H2O2^0 (-12698)
-At time : 131.1 ps Reaction : e_aq^-1 (-4972) + H^0 (-7489) -> OH^-1 (-12699) + H_2^0 (-12700)
-At time : 131.1 ps Reaction : e_aq^-1 (-3878) + e_aq^-1 (-4629) -> OH^-1 (-12701) + OH^-1 (-12702) + H_2^0 (-12703)
-At time : 131.1 ps Reaction : OH^-1 (-12680) + H3O^1 (-6230) -> No product
-At time : 131.1 ps Reaction : OH^-1 (-12626) + H3O^1 (-6338) -> No product
-At time : 141.1 ps Reaction : OH^0 (-9895) + H^0 (-10143) -> No product
-At time : 141.1 ps Reaction : OH^0 (-8349) + OH^0 (-10119) -> H2O2^0 (-12704)
-At time : 141.1 ps Reaction : OH^0 (-7750) + OH^0 (-9695) -> H2O2^0 (-12705)
-At time : 141.1 ps Reaction : e_aq^-1 (-4781) + e_aq^-1 (-3593) -> OH^-1 (-12706) + OH^-1 (-12707) + H_2^0 (-12708)
-At time : 141.1 ps Reaction : e_aq^-1 (-605) + e_aq^-1 (-4481) -> OH^-1 (-12709) + OH^-1 (-12710) + H_2^0 (-12711)
-At time : 141.1 ps Reaction : OH^-1 (-12663) + H3O^1 (-7374) -> No product
-At time : 141.1 ps Reaction : OH^-1 (-12660) + H3O^1 (-9195) -> No product
-At time : 141.1 ps Reaction : H3O^1 (-8446) + OH^-1 (-12572) -> No product
-At time : 151.1 ps Reaction : H3O^1 (-9756) + OH^-1 (-12591) -> No product
-At time : 151.1 ps Reaction : H^0 (-7483) + OH^0 (-9960) -> No product
-At time : 151.1 ps Reaction : e_aq^-1 (-399) + e_aq^-1 (-6126) -> OH^-1 (-12712) + OH^-1 (-12713) + H_2^0 (-12714)
-At time : 151.1 ps Reaction : e_aq^-1 (-1153) + e_aq^-1 (-4474) -> OH^-1 (-12715) + OH^-1 (-12716) + H_2^0 (-12717)
-At time : 151.1 ps Reaction : e_aq^-1 (-3948) + H3O^1 (-10685) -> H^0 (-12718)
-At time : 151.1 ps Reaction : OH^0 (-7357) + OH^0 (-8173) -> H2O2^0 (-12719)
-At time : 161.1 ps Reaction : e_aq^-1 (-3929) + H3O^1 (-10394) -> H^0 (-12720)
-At time : 161.1 ps Reaction : OH^0 (-5914) + OH^0 (-8335) -> H2O2^0 (-12721)
-At time : 161.1 ps Reaction : e_aq^-1 (-510) + e_aq^-1 (-4912) -> OH^-1 (-12722) + OH^-1 (-12723) + H_2^0 (-12724)
-At time : 161.1 ps Reaction : e_aq^-1 (-4091) + e_aq^-1 (-4797) -> OH^-1 (-12725) + OH^-1 (-12726) + H_2^0 (-12727)
-At time : 161.1 ps Reaction : e_aq^-1 (-3823) + e_aq^-1 (-3687) -> OH^-1 (-12728) + OH^-1 (-12729) + H_2^0 (-12730)
-At time : 161.1 ps Reaction : e_aq^-1 (-2664) + e_aq^-1 (-3689) -> OH^-1 (-12731) + OH^-1 (-12732) + H_2^0 (-12733)
-At time : 161.1 ps Reaction : e_aq^-1 (-2647) + e_aq^-1 (-3544) -> OH^-1 (-12734) + OH^-1 (-12735) + H_2^0 (-12736)
-At time : 161.1 ps Reaction : OH^-1 (-12674) + H3O^1 (-9306) -> No product
-At time : 171.1 ps Reaction : OH^-1 (-12699) + H3O^1 (-6945) -> No product
-At time : 171.1 ps Reaction : H3O^1 (-7325) + OH^-1 (-12646) -> No product
-At time : 171.1 ps Reaction : OH^-1 (-12603) + H3O^1 (-10110) -> No product
-At time : 171.1 ps Reaction : e_aq^-1 (-4095) + H3O^1 (-10769) -> H^0 (-12737)
-At time : 171.1 ps Reaction : e_aq^-1 (-1057) + e_aq^-1 (-4767) -> OH^-1 (-12738) + OH^-1 (-12739) + H_2^0 (-12740)
-At time : 171.1 ps Reaction : OH^0 (-8099) + H^0 (-10731) -> No product
-At time : 181.1 ps Reaction : OH^-1 (-12716) + H3O^1 (-10629) -> No product
-At time : 181.1 ps Reaction : OH^-1 (-12713) + H3O^1 (-10607) -> No product
-At time : 181.1 ps Reaction : H^0 (-12614) + e_aq^-1 (-2904) -> OH^-1 (-12741) + H_2^0 (-12742)
-At time : 181.1 ps Reaction : e_aq^-1 (-5490) + H3O^1 (-10882) -> H^0 (-12743)
-At time : 181.1 ps Reaction : e_aq^-1 (-4493) + e_aq^-1 (-3765) -> OH^-1 (-12744) + OH^-1 (-12745) + H_2^0 (-12746)
-At time : 181.1 ps Reaction : e_aq^-1 (-827) + e_aq^-1 (-2739) -> OH^-1 (-12747) + OH^-1 (-12748) + H_2^0 (-12749)
-At time : 191.1 ps Reaction : e_aq^-1 (-4417) + H^0 (-12720) -> OH^-1 (-12750) + H_2^0 (-12751)
-At time : 191.1 ps Reaction : OH^-1 (-12651) + H3O^1 (-10315) -> No product
-At time : 191.1 ps Reaction : OH^0 (-6723) + OH^0 (-9697) -> H2O2^0 (-12752)
-At time : 191.1 ps Reaction : OH^0 (-7699) + H^0 (-9281) -> No product
-At time : 191.1 ps Reaction : e_aq^-1 (-4793) + H3O^1 (-8698) -> H^0 (-12753)
-At time : 191.1 ps Reaction : e_aq^-1 (-4966) + e_aq^-1 (-5608) -> OH^-1 (-12754) + OH^-1 (-12755) + H_2^0 (-12756)
-At time : 191.1 ps Reaction : OH^-1 (-12750) + H3O^1 (-10015) -> No product
-At time : 201.1 ps Reaction : e_aq^-1 (-4878) + H^0 (-12753) -> OH^-1 (-12757) + H_2^0 (-12758)
-At time : 201.1 ps Reaction : OH^-1 (-12596) + H3O^1 (-6098) -> No product
-At time : 201.1 ps Reaction : e_aq^-1 (-4884) + e_aq^-1 (-5674) -> OH^-1 (-12759) + OH^-1 (-12760) + H_2^0 (-12761)
-At time : 201.1 ps Reaction : e_aq^-1 (-4284) + e_aq^-1 (-5549) -> OH^-1 (-12762) + OH^-1 (-12763) + H_2^0 (-12764)
-At time : 201.1 ps Reaction : e_aq^-1 (-4647) + e_aq^-1 (-4429) -> OH^-1 (-12765) + OH^-1 (-12766) + H_2^0 (-12767)
-At time : 211.1 ps Reaction : H3O^1 (-8397) + OH^-1 (-12765) -> No product
-At time : 211.1 ps Reaction : H3O^1 (-7448) + OH^-1 (-12760) -> No product
-At time : 211.1 ps Reaction : H3O^1 (-7574) + OH^-1 (-12741) -> No product
-At time : 211.1 ps Reaction : H3O^1 (-7973) + OH^-1 (-12715) -> No product
-At time : 211.1 ps Reaction : OH^-1 (-12681) + H3O^1 (-9804) -> No product
-At time : 211.1 ps Reaction : OH^0 (-9482) + OH^0 (-10209) -> H2O2^0 (-12768)
-At time : 211.1 ps Reaction : e_aq^-1 (-2837) + e_aq^-1 (-4790) -> OH^-1 (-12769) + OH^-1 (-12770) + H_2^0 (-12771)
-At time : 211.1 ps Reaction : H3O^1 (-10738) + OH^-1 (-12754) -> No product
-At time : 211.1 ps Reaction : OH^-1 (-12627) + H3O^1 (-10797) -> No product
-At time : 211.1 ps Reaction : OH^-1 (-12590) + H3O^1 (-9842) -> No product
-At time : 221.1 ps Reaction : OH^-1 (-12766) + H3O^1 (-9033) -> No product
-At time : 221.1 ps Reaction : OH^-1 (-12224) + H3O^1 (-10647) -> No product
-At time : 221.1 ps Reaction : OH^-1 (-12223) + H3O^1 (-7372) -> No product
-At time : 221.1 ps Reaction : H^0 (-11305) + e_aq^-1 (-3529) -> OH^-1 (-12772) + H_2^0 (-12773)
-At time : 221.1 ps Reaction : e_aq^-1 (-4994) + H3O^1 (-9848) -> H^0 (-12774)
-At time : 221.1 ps Reaction : e_aq^-1 (-4817) + e_aq^-1 (-6105) -> OH^-1 (-12775) + OH^-1 (-12776) + H_2^0 (-12777)
-At time : 221.1 ps Reaction : e_aq^-1 (-4072) + H3O^1 (-5846) -> H^0 (-12778)
-At time : 221.1 ps Reaction : e_aq^-1 (-4538) + e_aq^-1 (-5521) -> OH^-1 (-12779) + OH^-1 (-12780) + H_2^0 (-12781)
-At time : 221.1 ps Reaction : H3O^1 (-8254) + OH^-1 (-12772) -> No product
-At time : 221.1 ps Reaction : OH^-1 (-12701) + H3O^1 (-10771) -> No product
-At time : 221.1 ps Reaction : e_aq^-1 (-5654) + H3O^1 (-8142) -> H^0 (-12782)
-At time : 231.1 ps Reaction : OH^-1 (-12757) + H3O^1 (-10118) -> No product
-At time : 231.1 ps Reaction : OH^-1 (-12738) + H3O^1 (-5864) -> No product
-At time : 231.1 ps Reaction : H^0 (-12545) + OH^0 (-8312) -> No product
-At time : 231.1 ps Reaction : H^0 (-6831) + OH^0 (-10205) -> No product
-At time : 231.1 ps Reaction : e_aq^-1 (-1218) + e_aq^-1 (-6324) -> OH^-1 (-12783) + OH^-1 (-12784) + H_2^0 (-12785)
-At time : 231.1 ps Reaction : e_aq^-1 (-2677) + H3O^1 (-9973) -> H^0 (-12786)
-At time : 231.1 ps Reaction : OH^0 (-7611) + e_aq^-1 (-4485) -> OH^-1 (-12787)
-At time : 231.1 ps Reaction : OH^-1 (-12787) + H3O^1 (-7291) -> No product
-At time : 241.1 ps Reaction : OH^-1 (-12595) + H3O^1 (-8976) -> No product
-At time : 241.1 ps Reaction : e_aq^-1 (-2782) + e_aq^-1 (-5108) -> OH^-1 (-12788) + OH^-1 (-12789) + H_2^0 (-12790)
-At time : 241.1 ps Reaction : e_aq^-1 (-2473) + e_aq^-1 (-2842) -> OH^-1 (-12791) + OH^-1 (-12792) + H_2^0 (-12793)
-At time : 241.1 ps Reaction : H3O^1 (-7737) + OH^-1 (-12739) -> No product
-At time : 241.1 ps Reaction : H3O^1 (-7696) + OH^-1 (-12431) -> No product
-At time : 241.1 ps Reaction : H3O^1 (-8348) + OH^-1 (-12391) -> No product
-At time : 241.1 ps Reaction : e_aq^-1 (-3517) + H3O^1 (-7165) -> H^0 (-12794)
-At time : 241.1 ps Reaction : e_aq^-1 (-5255) + OH^0 (-6334) -> OH^-1 (-12795)
-At time : 241.1 ps Reaction : OH^-1 (-12795) + H3O^1 (-10470) -> No product
-At time : 251.1 ps Reaction : OH^-1 (-12582) + H3O^1 (-8944) -> No product
-At time : 251.1 ps Reaction : e_aq^-1 (-3630) + e_aq^-1 (-5380) -> OH^-1 (-12796) + OH^-1 (-12797) + H_2^0 (-12798)
-At time : 251.1 ps Reaction : e_aq^-1 (-3742) + e_aq^-1 (-5373) -> OH^-1 (-12799) + OH^-1 (-12800) + H_2^0 (-12801)
-At time : 251.1 ps Reaction : e_aq^-1 (-3992) + e_aq^-1 (-3644) -> OH^-1 (-12802) + OH^-1 (-12803) + H_2^0 (-12804)
-At time : 251.1 ps Reaction : e_aq^-1 (-2240) + e_aq^-1 (-2885) -> OH^-1 (-12805) + OH^-1 (-12806) + H_2^0 (-12807)
-At time : 261.1 ps Reaction : OH^-1 (-12755) + H3O^1 (-8992) -> No product
-At time : 261.1 ps Reaction : OH^-1 (-12687) + H3O^1 (-8722) -> No product
-At time : 261.1 ps Reaction : e_aq^-1 (-5055) + H3O^1 (-7333) -> H^0 (-12808)
-At time : 261.1 ps Reaction : e_aq^-1 (-4051) + e_aq^-1 (-5648) -> OH^-1 (-12809) + OH^-1 (-12810) + H_2^0 (-12811)
-At time : 261.1 ps Reaction : e_aq^-1 (-2294) + e_aq^-1 (-5156) -> OH^-1 (-12812) + OH^-1 (-12813) + H_2^0 (-12814)
-At time : 261.1 ps Reaction : e_aq^-1 (-3930) + e_aq^-1 (-3513) -> OH^-1 (-12815) + OH^-1 (-12816) + H_2^0 (-12817)
-At time : 271.1 ps Reaction : H3O^1 (-9720) + OH^-1 (-12816) -> No product
-At time : 271.1 ps Reaction : OH^0 (-8201) + H^0 (-8949) -> No product
-At time : 271.1 ps Reaction : e_aq^-1 (-241) + H3O^1 (-7559) -> H^0 (-12818)
-At time : 271.1 ps Reaction : OH^0 (-6971) + H^0 (-6595) -> No product
-At time : 271.1 ps Reaction : e_aq^-1 (-17) + e_aq^-1 (-6312) -> OH^-1 (-12819) + OH^-1 (-12820) + H_2^0 (-12821)
-At time : 271.1 ps Reaction : e_aq^-1 (-4834) + H^0 (-12782) -> OH^-1 (-12822) + H_2^0 (-12823)
-At time : 271.1 ps Reaction : OH^0 (-9430) + OH^0 (-9653) -> H2O2^0 (-12824)
-At time : 271.1 ps Reaction : H3O^1 (-5978) + OH^-1 (-12822) -> No product
-At time : 281.1 ps Reaction : H3O^1 (-9027) + OH^-1 (-12815) -> No product
-At time : 281.1 ps Reaction : H3O^1 (-7366) + OH^-1 (-12690) -> No product
-At time : 281.1 ps Reaction : OH^-1 (-12640) + H3O^1 (-10027) -> No product
-At time : 281.1 ps Reaction : OH^0 (-6885) + H^0 (-12508) -> No product
-At time : 281.1 ps Reaction : e_aq^-1 (-3866) + e_aq^-1 (-4819) -> OH^-1 (-12825) + OH^-1 (-12826) + H_2^0 (-12827)
-At time : 281.1 ps Reaction : e_aq^-1 (-208) + e_aq^-1 (-2713) -> OH^-1 (-12828) + OH^-1 (-12829) + H_2^0 (-12830)
-At time : 281.1 ps Reaction : OH^-1 (-12799) + H3O^1 (-8586) -> No product
-At time : 281.1 ps Reaction : H^0 (-12778) + e_aq^-1 (-5474) -> OH^-1 (-12831) + H_2^0 (-12832)
-At time : 281.1 ps Reaction : H^0 (-7832) + e_aq^-1 (-3969) -> OH^-1 (-12833) + H_2^0 (-12834)
-At time : 281.1 ps Reaction : OH^-1 (-12833) + H3O^1 (-8376) -> No product
-At time : 291.1 ps Reaction : H3O^1 (-7596) + OH^-1 (-12800) -> No product
-At time : 291.1 ps Reaction : H^0 (-12743) + OH^0 (-7726) -> No product
-At time : 291.1 ps Reaction : OH^-1 (-12689) + H3O^1 (-9614) -> No product
-At time : 291.1 ps Reaction : H^0 (-11084) + OH^0 (-6451) -> No product
-At time : 291.1 ps Reaction : e_aq^-1 (-2460) + e_aq^-1 (-6453) -> OH^-1 (-12835) + OH^-1 (-12836) + H_2^0 (-12837)
-At time : 291.1 ps Reaction : e_aq^-1 (-4031) + H3O^1 (-6341) -> H^0 (-12838)
-At time : 291.1 ps Reaction : e_aq^-1 (-2010) + e_aq^-1 (-5014) -> OH^-1 (-12839) + OH^-1 (-12840) + H_2^0 (-12841)
-At time : 291.1 ps Reaction : e_aq^-1 (-3635) + e_aq^-1 (-4292) -> OH^-1 (-12842) + OH^-1 (-12843) + H_2^0 (-12844)
-At time : 291.1 ps Reaction : OH^-1 (-12791) + H3O^1 (-9534) -> No product
-At time : 291.1 ps Reaction : H3O^1 (-9100) + OH^-1 (-12712) -> No product
-At time : 291.1 ps Reaction : OH^-1 (-12638) + H3O^1 (-9987) -> No product
-At time : 301.1 ps Reaction : OH^-1 (-12602) + H3O^1 (-9503) -> No product
-At time : 301.1 ps Reaction : H3O^1 (-9491) + OH^-1 (-12599) -> No product
-At time : 301.1 ps Reaction : e_aq^-1 (-2849) + H3O^1 (-10728) -> H^0 (-12845)
-At time : 301.1 ps Reaction : H^0 (-10969) + e_aq^-1 (-4232) -> OH^-1 (-12846) + H_2^0 (-12847)
-At time : 311.1 ps Reaction : H3O^1 (-10284) + OH^-1 (-12846) -> No product
-At time : 311.1 ps Reaction : OH^-1 (-12759) + H3O^1 (-9602) -> No product
-At time : 311.1 ps Reaction : H3O^1 (-5948) + OH^-1 (-12702) -> No product
-At time : 311.1 ps Reaction : e_aq^-1 (-944) + H3O^1 (-10153) -> H^0 (-12848)
-At time : 311.1 ps Reaction : e_aq^-1 (-5709) + e_aq^-1 (-5841) -> OH^-1 (-12849) + OH^-1 (-12850) + H_2^0 (-12851)
-At time : 311.1 ps Reaction : e_aq^-1 (-2735) + e_aq^-1 (-4675) -> OH^-1 (-12852) + OH^-1 (-12853) + H_2^0 (-12854)
-At time : 321.1 ps Reaction : H^0 (-11001) + OH^0 (-6046) -> No product
-At time : 321.1 ps Reaction : H^0 (-10957) + e_aq^-1 (-3537) -> OH^-1 (-12855) + H_2^0 (-12856)
-At time : 321.1 ps Reaction : OH^0 (-9655) + OH^0 (-10724) -> H2O2^0 (-12857)
-At time : 321.1 ps Reaction : e_aq^-1 (-4875) + e_aq^-1 (-6438) -> OH^-1 (-12858) + OH^-1 (-12859) + H_2^0 (-12860)
-At time : 321.1 ps Reaction : OH^-1 (-12855) + H3O^1 (-9372) -> No product
-At time : 331.1 ps Reaction : OH^-1 (-12831) + H3O^1 (-8130) -> No product
-At time : 331.1 ps Reaction : OH^-1 (-12769) + H3O^1 (-8505) -> No product
-At time : 331.1 ps Reaction : H3O^1 (-11293) + e_aq^-1 (-2984) -> H^0 (-12861)
-At time : 331.1 ps Reaction : e_aq^-1 (-4533) + H3O^1 (-10521) -> H^0 (-12862)
-At time : 331.1 ps Reaction : H3O^1 (-7747) + e_aq^-1 (-2941) -> H^0 (-12863)
-At time : 341.1 ps Reaction : OH^-1 (-12686) + H3O^1 (-8118) -> No product
-At time : 341.1 ps Reaction : H3O^1 (-7492) + OH^-1 (-12534) -> No product
-At time : 341.1 ps Reaction : OH^0 (-6241) + OH^0 (-9757) -> H2O2^0 (-12864)
-At time : 341.1 ps Reaction : e_aq^-1 (-4023) + H^0 (-9379) -> OH^-1 (-12865) + H_2^0 (-12866)
-At time : 341.1 ps Reaction : H^0 (-6812) + OH^0 (-8447) -> No product
-At time : 341.1 ps Reaction : e_aq^-1 (-551) + e_aq^-1 (-5330) -> OH^-1 (-12867) + OH^-1 (-12868) + H_2^0 (-12869)
-At time : 341.1 ps Reaction : OH^-1 (-12865) + H3O^1 (-9754) -> No product
-At time : 341.1 ps Reaction : OH^-1 (-12637) + H3O^1 (-9308) -> No product
-At time : 341.1 ps Reaction : e_aq^-1 (-16) + H3O^1 (-9342) -> H^0 (-12870)
-At time : 341.1 ps Reaction : e_aq^-1 (-566) + OH^0 (-5947) -> OH^-1 (-12871)
-At time : 341.1 ps Reaction : OH^-1 (-12871) + H3O^1 (-8154) -> No product
-At time : 351.1 ps Reaction : e_aq^-1 (-1031) + e_aq^-1 (-5656) -> OH^-1 (-12872) + OH^-1 (-12873) + H_2^0 (-12874)
-At time : 351.1 ps Reaction : OH^-1 (-12788) + H3O^1 (-10779) -> No product
-At time : 351.1 ps Reaction : e_aq^-1 (-5440) + H3O^1 (-9463) -> H^0 (-12875)
-At time : 361.1 ps Reaction : OH^-1 (-12669) + H3O^1 (-9191) -> No product
-At time : 361.1 ps Reaction : OH^-1 (-12668) + H3O^1 (-7065) -> No product
-At time : 361.1 ps Reaction : OH^-1 (-12635) + H3O^1 (-10970) -> No product
-At time : 361.1 ps Reaction : e_aq^-1 (-4813) + H3O^1 (-9650) -> H^0 (-12876)
-At time : 361.1 ps Reaction : e_aq^-1 (-5348) + H3O^1 (-8356) -> H^0 (-12877)
-At time : 361.1 ps Reaction : e_aq^-1 (-41) + e_aq^-1 (-4443) -> OH^-1 (-12878) + OH^-1 (-12879) + H_2^0 (-12880)
-At time : 361.1 ps Reaction : e_aq^-1 (-2790) + e_aq^-1 (-2834) -> OH^-1 (-12881) + OH^-1 (-12882) + H_2^0 (-12883)
-At time : 361.1 ps Reaction : e_aq^-1 (-766) + OH^0 (-5950) -> OH^-1 (-12884)
-At time : 361.1 ps Reaction : OH^-1 (-12884) + H3O^1 (-9465) -> No product
-At time : 371.1 ps Reaction : e_aq^-1 (-2741) + H^0 (-12818) -> OH^-1 (-12885) + H_2^0 (-12886)
-At time : 371.1 ps Reaction : OH^-1 (-12725) + H3O^1 (-8950) -> No product
-At time : 371.1 ps Reaction : e_aq^-1 (-4037) + H3O^1 (-10773) -> H^0 (-12887)
-At time : 371.1 ps Reaction : OH^0 (-7375) + OH^0 (-9755) -> H2O2^0 (-12888)
-At time : 371.1 ps Reaction : e_aq^-1 (-3628) + e_aq^-1 (-4452) -> OH^-1 (-12889) + OH^-1 (-12890) + H_2^0 (-12891)
-At time : 371.1 ps Reaction : e_aq^-1 (-3900) + OH^0 (-9603) -> OH^-1 (-12892)
-At time : 371.1 ps Reaction : e_aq^-1 (-4047) + H3O^1 (-9162) -> H^0 (-12893)
-At time : 371.1 ps Reaction : e_aq^-1 (-3585) + OH^0 (-8316) -> OH^-1 (-12894)
-At time : 371.1 ps Reaction : e_aq^-1 (-5140) + H3O^1 (-7803) -> H^0 (-12895)
-At time : 371.1 ps Reaction : e_aq^-1 (-4462) + H3O^1 (-5960) -> H^0 (-12896)
-At time : 371.1 ps Reaction : H3O^1 (-5837) + OH^-1 (-12894) -> No product
-At time : 371.1 ps Reaction : OH^-1 (-12892) + H3O^1 (-9948) -> No product
-At time : 381.1 ps Reaction : H^0 (-12613) + H^0 (-12893) -> H_2^0 (-12897)
-At time : 381.1 ps Reaction : OH^-1 (-12881) + H3O^1 (-8318) -> No product
-At time : 381.1 ps Reaction : H3O^1 (-9684) + OH^-1 (-12734) -> No product
-At time : 381.1 ps Reaction : OH^-1 (-12509) + H3O^1 (-8570) -> No product
-At time : 381.1 ps Reaction : e_aq^-1 (-4207) + H3O^1 (-10874) -> H^0 (-12898)
-At time : 381.1 ps Reaction : e_aq^-1 (-4460) + H3O^1 (-9567) -> H^0 (-12899)
-At time : 381.1 ps Reaction : e_aq^-1 (-4145) + e_aq^-1 (-5658) -> OH^-1 (-12900) + OH^-1 (-12901) + H_2^0 (-12902)
-At time : 381.1 ps Reaction : e_aq^-1 (-5058) + e_aq^-1 (-4450) -> OH^-1 (-12903) + OH^-1 (-12904) + H_2^0 (-12905)
-At time : 381.1 ps Reaction : e_aq^-1 (-2263) + H3O^1 (-10243) -> H^0 (-12906)
-At time : 391.1 ps Reaction : e_aq^-1 (-4397) + H3O^1 (-10758) -> H^0 (-12907)
-At time : 391.1 ps Reaction : e_aq^-1 (-5059) + H3O^1 (-8128) -> H^0 (-12908)
-At time : 391.1 ps Reaction : e_aq^-1 (-4826) + e_aq^-1 (-5617) -> OH^-1 (-12909) + OH^-1 (-12910) + H_2^0 (-12911)
-At time : 391.1 ps Reaction : e_aq^-1 (-2528) + e_aq^-1 (-5464) -> OH^-1 (-12912) + OH^-1 (-12913) + H_2^0 (-12914)
-At time : 391.1 ps Reaction : e_aq^-1 (-3048) + e_aq^-1 (-5297) -> OH^-1 (-12915) + OH^-1 (-12916) + H_2^0 (-12917)
-At time : 391.1 ps Reaction : OH^-1 (-12662) + H3O^1 (-7770) -> No product
-At time : 391.1 ps Reaction : e_aq^-1 (-4795) + H3O^1 (-9315) -> H^0 (-12918)
-At time : 401.1 ps Reaction : H^0 (-12632) + OH^0 (-8669) -> No product
-At time : 401.1 ps Reaction : OH^-1 (-12629) + H3O^1 (-8677) -> No product
-At time : 401.1 ps Reaction : OH^-1 (-12567) + H3O^1 (-7364) -> No product
-At time : 401.1 ps Reaction : e_aq^-1 (-201) + H3O^1 (-10114) -> H^0 (-12919)
-At time : 401.1 ps Reaction : e_aq^-1 (-4906) + e_aq^-1 (-6456) -> OH^-1 (-12920) + OH^-1 (-12921) + H_2^0 (-12922)
-At time : 411.1 ps Reaction : e_aq^-1 (-1497) + H^0 (-12896) -> OH^-1 (-12923) + H_2^0 (-12924)
-At time : 411.1 ps Reaction : OH^-1 (-12617) + H3O^1 (-10100) -> No product
-At time : 411.1 ps Reaction : OH^0 (-7459) + OH^0 (-10652) -> H2O2^0 (-12925)
-At time : 411.1 ps Reaction : e_aq^-1 (-5292) + H3O^1 (-10645) -> H^0 (-12926)
-At time : 411.1 ps Reaction : e_aq^-1 (-5666) + H3O^1 (-10478) -> H^0 (-12927)
-At time : 411.1 ps Reaction : e_aq^-1 (-2990) + e_aq^-1 (-6138) -> OH^-1 (-12928) + OH^-1 (-12929) + H_2^0 (-12930)
-At time : 411.1 ps Reaction : H3O^1 (-7460) + OH^-1 (-12923) -> No product
-At time : 421.1 ps Reaction : OH^-1 (-12920) + H3O^1 (-10569) -> No product
-At time : 421.1 ps Reaction : OH^-1 (-12621) + H3O^1 (-10336) -> No product
-At time : 421.1 ps Reaction : OH^-1 (-12586) + H3O^1 (-5831) -> No product
-At time : 421.1 ps Reaction : e_aq^-1 (-4501) + H3O^1 (-10192) -> H^0 (-12931)
-At time : 421.1 ps Reaction : e_aq^-1 (-5179) + H3O^1 (-5924) -> H^0 (-12932)
-At time : 421.1 ps Reaction : e_aq^-1 (-1046) + e_aq^-1 (-5002) -> OH^-1 (-12933) + OH^-1 (-12934) + H_2^0 (-12935)
-At time : 421.1 ps Reaction : e_aq^-1 (-4757) + e_aq^-1 (-4850) -> OH^-1 (-12936) + OH^-1 (-12937) + H_2^0 (-12938)
-At time : 431.1 ps Reaction : OH^-1 (-12921) + H3O^1 (-9429) -> No product
-At time : 431.1 ps Reaction : H^0 (-12875) + OH^0 (-8495) -> No product
-At time : 431.1 ps Reaction : H3O^1 (-7265) + OH^-1 (-12842) -> No product
-At time : 431.1 ps Reaction : OH^-1 (-12647) + H3O^1 (-11063) -> No product
-At time : 431.1 ps Reaction : e_aq^-1 (-606) + H3O^1 (-10045) -> H^0 (-12939)
-At time : 431.1 ps Reaction : e_aq^-1 (-5116) + H3O^1 (-8582) -> H^0 (-12940)
-At time : 441.1 ps Reaction : H3O^1 (-9497) + OH^-1 (-12885) -> No product
-At time : 441.1 ps Reaction : e_aq^-1 (-4891) + H^0 (-12737) -> OH^-1 (-12941) + H_2^0 (-12942)
-At time : 441.1 ps Reaction : H3O^1 (-7887) + OH^-1 (-12941) -> No product
-At time : 451.1 ps Reaction : H3O^1 (-10104) + OH^-1 (-12792) -> No product
-At time : 451.1 ps Reaction : e_aq^-1 (-5368) + H2O2^0 (-12346) -> OH^-1 (-12943) + OH^0 (-12944)
-At time : 451.1 ps Reaction : H3O^1 (-11247) + e_aq^-1 (-2823) -> H^0 (-12945)
-At time : 451.1 ps Reaction : e_aq^-1 (-2230) + H3O^1 (-10338) -> H^0 (-12946)
-At time : 451.1 ps Reaction : e_aq^-1 (-5652) + e_aq^-1 (-573) -> OH^-1 (-12947) + OH^-1 (-12948) + H_2^0 (-12949)
-At time : 451.1 ps Reaction : e_aq^-1 (-4413) + e_aq^-1 (-1890) -> OH^-1 (-12950) + OH^-1 (-12951) + H_2^0 (-12952)
-At time : 451.1 ps Reaction : e_aq^-1 (-1319) + e_aq^-1 (-3652) -> OH^-1 (-12953) + OH^-1 (-12954) + H_2^0 (-12955)
-At time : 451.1 ps Reaction : OH^-1 (-12943) + H3O^1 (-8970) -> No product
-At time : 451.1 ps Reaction : e_aq^-1 (-4257) + H3O^1 (-9360) -> H^0 (-12956)
-At time : 461.1 ps Reaction : OH^-1 (-12951) + H3O^1 (-10589) -> No product
-At time : 461.1 ps Reaction : OH^-1 (-12933) + H3O^1 (-10732) -> No product
-At time : 461.1 ps Reaction : H^0 (-12895) + e_aq^-1 (-3946) -> OH^-1 (-12957) + H_2^0 (-12958)
-At time : 461.1 ps Reaction : H3O^1 (-8405) + OH^-1 (-12535) -> No product
-At time : 461.1 ps Reaction : e_aq^-1 (-4183) + H3O^1 (-9866) -> H^0 (-12959)
-At time : 461.1 ps Reaction : e_aq^-1 (-5493) + e_aq^-1 (-3752) -> OH^-1 (-12960) + OH^-1 (-12961) + H_2^0 (-12962)
-At time : 461.1 ps Reaction : OH^-1 (-12748) + H3O^1 (-9636) -> No product
-At time : 471.1 ps Reaction : OH^-1 (-12879) + H3O^1 (-6233) -> No product
-At time : 471.1 ps Reaction : OH^-1 (-12620) + H3O^1 (-8372) -> No product
-At time : 471.1 ps Reaction : OH^-1 (-12605) + H3O^1 (-10799) -> No product
-At time : 471.1 ps Reaction : OH^0 (-7292) + OH^0 (-8907) -> H2O2^0 (-12963)
-At time : 471.1 ps Reaction : H3O^1 (-7631) + e_aq^-1 (-3543) -> H^0 (-12964)
-At time : 471.1 ps Reaction : e_aq^-1 (-4656) + e_aq^-1 (-5551) -> OH^-1 (-12965) + OH^-1 (-12966) + H_2^0 (-12967)
-At time : 471.1 ps Reaction : e_aq^-1 (-2582) + e_aq^-1 (-5446) -> OH^-1 (-12968) + OH^-1 (-12969) + H_2^0 (-12970)
-At time : 471.1 ps Reaction : e_aq^-1 (-290) + e_aq^-1 (-2479) -> OH^-1 (-12971) + OH^-1 (-12972) + H_2^0 (-12973)
-At time : 471.1 ps Reaction : H3O^1 (-6140) + OH^-1 (-12600) -> No product
-At time : 481.1 ps Reaction : e_aq^-1 (-4156) + H3O^1 (-9461) -> H^0 (-12974)
-At time : 481.1 ps Reaction : e_aq^-1 (-4036) + H3O^1 (-9459) -> H^0 (-12975)
-At time : 481.1 ps Reaction : H3O^1 (-8016) + e_aq^-1 (-3028) -> H^0 (-12976)
-At time : 481.1 ps Reaction : H3O^1 (-7658) + e_aq^-1 (-1867) -> H^0 (-12977)
-At time : 481.1 ps Reaction : e_aq^-1 (-503) + e_aq^-1 (-3730) -> OH^-1 (-12978) + OH^-1 (-12979) + H_2^0 (-12980)
-At time : 481.1 ps Reaction : e_aq^-1 (-3024) + H3O^1 (-8536) -> H^0 (-12981)
-At time : 491.1 ps Reaction : OH^-1 (-12641) + H3O^1 (-10280) -> No product
-At time : 491.1 ps Reaction : OH^-1 (-12616) + H3O^1 (-9886) -> No product
-At time : 491.1 ps Reaction : e_aq^-1 (-702) + H3O^1 (-10080) -> H^0 (-12982)
-At time : 491.1 ps Reaction : H3O^1 (-7043) + e_aq^-1 (-4551) -> H^0 (-12983)
-At time : 491.1 ps Reaction : e_aq^-1 (-5483) + e_aq^-1 (-359) -> OH^-1 (-12984) + OH^-1 (-12985) + H_2^0 (-12986)
-At time : 491.1 ps Reaction : e_aq^-1 (-4957) + e_aq^-1 (-1522) -> OH^-1 (-12987) + OH^-1 (-12988) + H_2^0 (-12989)
-At time : 491.1 ps Reaction : e_aq^-1 (-2943) + e_aq^-1 (-3562) -> OH^-1 (-12990) + OH^-1 (-12991) + H_2^0 (-12992)
-At time : 491.1 ps Reaction : e_aq^-1 (-4956) + H3O^1 (-10840) -> H^0 (-12993)
-At time : 491.1 ps Reaction : e_aq^-1 (-3502) + H3O^1 (-5915) -> H^0 (-12994)
-At time : 501.1 ps Reaction : OH^-1 (-12988) + H3O^1 (-8968) -> No product
-At time : 501.1 ps Reaction : H3O^1 (-7199) + OH^-1 (-12867) -> No product
-At time : 501.1 ps Reaction : H3O^1 (-7415) + OH^-1 (-12710) -> No product
-At time : 501.1 ps Reaction : H3O^1 (-9029) + OH^-1 (-12693) -> No product
-At time : 501.1 ps Reaction : OH^-1 (-12392) + H3O^1 (-9864) -> No product
-At time : 501.1 ps Reaction : e_aq^-1 (-4281) + H3O^1 (-8906) -> H^0 (-12995)
-At time : 501.1 ps Reaction : e_aq^-1 (-5141) + e_aq^-1 (-4880) -> OH^-1 (-12996) + OH^-1 (-12997) + H_2^0 (-12998)
-At time : 501.1 ps Reaction : e_aq^-1 (-4002) + e_aq^-1 (-4780) -> OH^-1 (-12999) + OH^-1 (-13000) + H_2^0 (-13001)
-At time : 501.1 ps Reaction : e_aq^-1 (-3643) + e_aq^-1 (-4507) -> OH^-1 (-13002) + OH^-1 (-13003) + H_2^0 (-13004)
-At time : 501.1 ps Reaction : e_aq^-1 (-1950) + e_aq^-1 (-3821) -> OH^-1 (-13005) + OH^-1 (-13006) + H_2^0 (-13007)
-At time : 501.1 ps Reaction : OH^-1 (-13003) + H3O^1 (-10637) -> No product
-At time : 511.1 ps Reaction : e_aq^-1 (-4542) + OH^0 (-10359) -> OH^-1 (-13008)
-At time : 511.1 ps Reaction : e_aq^-1 (-4601) + H3O^1 (-10215) -> H^0 (-13009)
-At time : 511.1 ps Reaction : e_aq^-1 (-3718) + H3O^1 (-10106) -> H^0 (-13010)
-At time : 511.1 ps Reaction : e_aq^-1 (-5627) + e_aq^-1 (-3576) -> OH^-1 (-13011) + OH^-1 (-13012) + H_2^0 (-13013)
-At time : 511.1 ps Reaction : OH^-1 (-12996) + H3O^1 (-8841) -> No product
-At time : 521.1 ps Reaction : H3O^1 (-7360) + OH^-1 (-13008) -> No product
-At time : 521.1 ps Reaction : H^0 (-12908) + e_aq^-1 (-3674) -> OH^-1 (-13014) + H_2^0 (-13015)
-At time : 521.1 ps Reaction : OH^-1 (-12882) + H3O^1 (-10663) -> No product
-At time : 521.1 ps Reaction : OH^-1 (-12744) + H3O^1 (-8140) -> No product
-At time : 521.1 ps Reaction : e_aq^-1 (-4457) + H3O^1 (-9904) -> H^0 (-13016)
-At time : 521.1 ps Reaction : e_aq^-1 (-3820) + H3O^1 (-8732) -> H^0 (-13017)
-At time : 521.1 ps Reaction : e_aq^-1 (-4138) + H3O^1 (-8726) -> H^0 (-13018)
-At time : 521.1 ps Reaction : e_aq^-1 (-1027) + e_aq^-1 (-3609) -> OH^-1 (-13019) + OH^-1 (-13020) + H_2^0 (-13021)
-At time : 521.1 ps Reaction : e_aq^-1 (-2601) + e_aq^-1 (-2657) -> OH^-1 (-13022) + OH^-1 (-13023) + H_2^0 (-13024)
-At time : 521.1 ps Reaction : OH^-1 (-13014) + H3O^1 (-10416) -> No product
-At time : 521.1 ps Reaction : OH^-1 (-12915) + H3O^1 (-6302) -> No product
-At time : 521.1 ps Reaction : e_aq^-1 (-1477) + OH^0 (-9739) -> OH^-1 (-13025)
-At time : 521.1 ps Reaction : e_aq^-1 (-4568) + H3O^1 (-8689) -> H^0 (-13026)
-At time : 521.1 ps Reaction : OH^-1 (-13025) + H3O^1 (-6464) -> No product
-At time : 531.1 ps Reaction : e_aq^-1 (-4438) + H^0 (-12981) -> OH^-1 (-13027) + H_2^0 (-13028)
-At time : 531.1 ps Reaction : OH^-1 (-12789) + H3O^1 (-7340) -> No product
-At time : 531.1 ps Reaction : OH^0 (-7769) + H^0 (-12633) -> No product
-At time : 531.1 ps Reaction : e_aq^-1 (-546) + H3O^1 (-9791) -> H^0 (-13029)
-At time : 531.1 ps Reaction : e_aq^-1 (-3763) + e_aq^-1 (-5961) -> OH^-1 (-13030) + OH^-1 (-13031) + H_2^0 (-13032)
-At time : 531.1 ps Reaction : e_aq^-1 (-5476) + e_aq^-1 (-5946) -> OH^-1 (-13033) + OH^-1 (-13034) + H_2^0 (-13035)
-At time : 531.1 ps Reaction : e_aq^-1 (-4671) + e_aq^-1 (-2691) -> OH^-1 (-13036) + OH^-1 (-13037) + H_2^0 (-13038)
-At time : 531.1 ps Reaction : OH^-1 (-13027) + H3O^1 (-8393) -> No product
-At time : 531.1 ps Reaction : e_aq^-1 (-2278) + H3O^1 (-10288) -> H^0 (-13039)
-At time : 541.1 ps Reaction : e_aq^-1 (-4402) + H^0 (-12615) -> OH^-1 (-13040) + H_2^0 (-13041)
-At time : 541.1 ps Reaction : e_aq^-1 (-5294) + H3O^1 (-10500) -> H^0 (-13042)
-At time : 541.1 ps Reaction : e_aq^-1 (-3594) + H3O^1 (-9738) -> H^0 (-13043)
-At time : 541.1 ps Reaction : e_aq^-1 (-2434) + H3O^1 (-8215) -> H^0 (-13044)
-At time : 541.1 ps Reaction : H^0 (-7379) + OH^0 (-5983) -> No product
-At time : 541.1 ps Reaction : H3O^1 (-7282) + OH^-1 (-13040) -> No product
-At time : 541.1 ps Reaction : e_aq^-1 (-4044) + H3O^1 (-9993) -> H^0 (-13045)
-At time : 551.1 ps Reaction : OH^-1 (-12984) + H3O^1 (-9023) -> No product
-At time : 551.1 ps Reaction : OH^-1 (-12868) + H3O^1 (-6164) -> No product
-At time : 551.1 ps Reaction : H3O^1 (-5855) + OH^-1 (-12722) -> No product
-At time : 551.1 ps Reaction : OH^-1 (-12928) + H3O^1 (-7244) -> No product
-At time : 551.1 ps Reaction : e_aq^-1 (-2612) + H3O^1 (-9015) -> H^0 (-13046)
-At time : 561.1 ps Reaction : H3O^1 (-8048) + OH^-1 (-12566) -> No product
-At time : 561.1 ps Reaction : OH^-1 (-12538) + H3O^1 (-10033) -> No product
-At time : 561.1 ps Reaction : e_aq^-1 (-1832) + H^0 (-9426) -> OH^-1 (-13047) + H_2^0 (-13048)
-At time : 561.1 ps Reaction : e_aq^-1 (-3530) + H3O^1 (-6101) -> H^0 (-13049)
-At time : 561.1 ps Reaction : e_aq^-1 (-87) + e_aq^-1 (-5414) -> OH^-1 (-13050) + OH^-1 (-13051) + H_2^0 (-13052)
-At time : 561.1 ps Reaction : e_aq^-1 (-2027) + e_aq^-1 (-2363) -> OH^-1 (-13053) + OH^-1 (-13054) + H_2^0 (-13055)
-At time : 571.1 ps Reaction : OH^-1 (-13051) + H3O^1 (-9518) -> No product
-At time : 571.1 ps Reaction : e_aq^-1 (-4261) + H3O^1 (-10561) -> H^0 (-13056)
-At time : 571.1 ps Reaction : e_aq^-1 (-2269) + H3O^1 (-6125) -> H^0 (-13057)
-At time : 581.1 ps Reaction : H3O^1 (-10188) + OH^-1 (-13020) -> No product
-At time : 581.1 ps Reaction : H^0 (-12983) + e_aq^-1 (-4157) -> OH^-1 (-13058) + H_2^0 (-13059)
-At time : 581.1 ps Reaction : H3O^1 (-9477) + OH^-1 (-12878) -> No product
-At time : 581.1 ps Reaction : H^0 (-12870) + OH^0 (-8261) -> No product
-At time : 581.1 ps Reaction : OH^-1 (-12634) + H3O^1 (-9846) -> No product
-At time : 581.1 ps Reaction : e_aq^-1 (-5082) + H3O^1 (-10736) -> H^0 (-13060)
-At time : 581.1 ps Reaction : e_aq^-1 (-5466) + H3O^1 (-8225) -> H^0 (-13061)
-At time : 581.1 ps Reaction : e_aq^-1 (-2661) + e_aq^-1 (-6399) -> OH^-1 (-13062) + OH^-1 (-13063) + H_2^0 (-13064)
-At time : 581.1 ps Reaction : e_aq^-1 (-3690) + e_aq^-1 (-4653) -> OH^-1 (-13065) + OH^-1 (-13066) + H_2^0 (-13067)
-At time : 581.1 ps Reaction : OH^-1 (-13058) + H3O^1 (-9610) -> No product
-At time : 581.1 ps Reaction : e_aq^-1 (-2867) + e_aq^-1 (-3015) -> OH^-1 (-13068) + OH^-1 (-13069) + H_2^0 (-13070)
-At time : 591.1 ps Reaction : OH^-1 (-13069) + H3O^1 (-9336) -> No product
-At time : 591.1 ps Reaction : H3O^1 (-8018) + OH^-1 (-13068) -> No product
-At time : 591.1 ps Reaction : e_aq^-1 (-3963) + H^0 (-12995) -> OH^-1 (-13071) + H_2^0 (-13072)
-At time : 591.1 ps Reaction : H3O^1 (-9215) + OH^-1 (-12780) -> No product
-At time : 591.1 ps Reaction : OH^-1 (-12747) + H3O^1 (-10047) -> No product
-At time : 591.1 ps Reaction : e_aq^-1 (-3692) + H3O^1 (-10198) -> H^0 (-13073)
-At time : 591.1 ps Reaction : e_aq^-1 (-4549) + H3O^1 (-10190) -> H^0 (-13074)
-At time : 591.1 ps Reaction : e_aq^-1 (-4512) + e_aq^-1 (-5443) -> OH^-1 (-13075) + OH^-1 (-13076) + H_2^0 (-13077)
-At time : 591.1 ps Reaction : e_aq^-1 (-670) + e_aq^-1 (-5123) -> OH^-1 (-13078) + OH^-1 (-13079) + H_2^0 (-13080)
-At time : 591.1 ps Reaction : e_aq^-1 (-4579) + e_aq^-1 (-4513) -> OH^-1 (-13081) + OH^-1 (-13082) + H_2^0 (-13083)
-At time : 591.1 ps Reaction : e_aq^-1 (-319) + e_aq^-1 (-4304) -> OH^-1 (-13084) + OH^-1 (-13085) + H_2^0 (-13086)
-At time : 591.1 ps Reaction : e_aq^-1 (-701) + e_aq^-1 (-2324) -> OH^-1 (-13087) + OH^-1 (-13088) + H_2^0 (-13089)
-At time : 591.1 ps Reaction : H3O^1 (-7733) + OH^-1 (-13071) -> No product
-At time : 591.1 ps Reaction : e_aq^-1 (-6075) + H^0 (-12919) -> OH^-1 (-13090) + H_2^0 (-13091)
-At time : 601.1 ps Reaction : OH^-1 (-13066) + H3O^1 (-9664) -> No product
-At time : 601.1 ps Reaction : H^0 (-13026) + OH^0 (-5998) -> No product
-At time : 601.1 ps Reaction : e_aq^-1 (-3958) + H^0 (-12959) -> OH^-1 (-13092) + H_2^0 (-13093)
-At time : 601.1 ps Reaction : e_aq^-1 (-3623) + H3O^1 (-6194) -> H^0 (-13094)
-At time : 601.1 ps Reaction : e_aq^-1 (-2316) + e_aq^-1 (-5886) -> OH^-1 (-13095) + OH^-1 (-13096) + H_2^0 (-13097)
-At time : 601.1 ps Reaction : H3O^1 (-5927) + OH^-1 (-13092) -> No product
-At time : 601.1 ps Reaction : OH^-1 (-12987) + H3O^1 (-6254) -> No product
-At time : 611.1 ps Reaction : OH^-1 (-13053) + H3O^1 (-9205) -> No product
-At time : 611.1 ps Reaction : OH^-1 (-13050) + H3O^1 (-10262) -> No product
-At time : 611.1 ps Reaction : OH^-1 (-13019) + H3O^1 (-10601) -> No product
-At time : 611.1 ps Reaction : e_aq^-1 (-240) + H^0 (-13016) -> OH^-1 (-13098) + H_2^0 (-13099)
-At time : 611.1 ps Reaction : H^0 (-12619) + e_aq^-1 (-5079) -> OH^-1 (-13100) + H_2^0 (-13101)
-At time : 611.1 ps Reaction : e_aq^-1 (-2930) + H2O2^0 (-12381) -> OH^-1 (-13102) + OH^0 (-13103)
-At time : 611.1 ps Reaction : e_aq^-1 (-5333) + H3O^1 (-10402) -> H^0 (-13104)
-At time : 611.1 ps Reaction : e_aq^-1 (-2820) + e_aq^-1 (-4830) -> OH^-1 (-13105) + OH^-1 (-13106) + H_2^0 (-13107)
-At time : 611.1 ps Reaction : OH^-1 (-13102) + H3O^1 (-9588) -> No product
-At time : 621.1 ps Reaction : H3O^1 (-8229) + OH^-1 (-13100) -> No product
-At time : 621.1 ps Reaction : e_aq^-1 (-4092) + H^0 (-12876) -> OH^-1 (-13108) + H_2^0 (-13109)
-At time : 621.1 ps Reaction : e_aq^-1 (-4718) + H3O^1 (-8664) -> H^0 (-13110)
-At time : 621.1 ps Reaction : e_aq^-1 (-2683) + e_aq^-1 (-4655) -> OH^-1 (-13111) + OH^-1 (-13112) + H_2^0 (-13113)
-At time : 621.1 ps Reaction : H3O^1 (-7846) + OH^-1 (-13108) -> No product
-At time : 621.1 ps Reaction : H3O^1 (-8196) + OH^-1 (-12957) -> No product
-At time : 621.1 ps Reaction : e_aq^-1 (-3524) + H3O^1 (-9608) -> H^0 (-13114)
-At time : 631.1 ps Reaction : e_aq^-1 (-2119) + H^0 (-13104) -> OH^-1 (-13115) + H_2^0 (-13116)
-At time : 631.1 ps Reaction : e_aq^-1 (-3671) + H^0 (-13074) -> OH^-1 (-13117) + H_2^0 (-13118)
-At time : 631.1 ps Reaction : OH^-1 (-12934) + H3O^1 (-10292) -> No product
-At time : 631.1 ps Reaction : OH^-1 (-12462) + H3O^1 (-10452) -> No product
-At time : 631.1 ps Reaction : e_aq^-1 (-2314) + H3O^1 (-9516) -> H^0 (-13119)
-At time : 631.1 ps Reaction : H3O^1 (-7889) + e_aq^-1 (-4436) -> H^0 (-13120)
-At time : 631.1 ps Reaction : H3O^1 (-7838) + e_aq^-1 (-5689) -> H^0 (-13121)
-At time : 631.1 ps Reaction : H3O^1 (-10003) + OH^-1 (-13115) -> No product
-At time : 641.1 ps Reaction : OH^-1 (-12999) + H3O^1 (-9073) -> No product
-At time : 641.1 ps Reaction : OH^-1 (-12929) + H3O^1 (-10448) -> No product
-At time : 641.1 ps Reaction : e_aq^-1 (-111) + e_aq^-1 (-4489) -> OH^-1 (-13122) + OH^-1 (-13123) + H_2^0 (-13124)
-At time : 651.1 ps Reaction : H3O^1 (-7193) + OH^-1 (-13117) -> No product
-At time : 651.1 ps Reaction : H3O^1 (-10266) + OH^-1 (-12745) -> No product
-At time : 651.1 ps Reaction : e_aq^-1 (-4528) + H3O^1 (-10571) -> H^0 (-13125)
-At time : 651.1 ps Reaction : e_aq^-1 (-5312) + H3O^1 (-10890) -> H^0 (-13126)
-At time : 651.1 ps Reaction : e_aq^-1 (-865) + H3O^1 (-6413) -> H^0 (-13127)
-At time : 661.1 ps Reaction : OH^-1 (-12803) + H3O^1 (-9441) -> No product
-At time : 661.1 ps Reaction : OH^-1 (-12770) + H3O^1 (-8156) -> No product
-At time : 661.1 ps Reaction : e_aq^-1 (-2763) + H3O^1 (-8592) -> H^0 (-13128)
-At time : 661.1 ps Reaction : e_aq^-1 (-1683) + e_aq^-1 (-5455) -> OH^-1 (-13129) + OH^-1 (-13130) + H_2^0 (-13131)
-At time : 661.1 ps Reaction : e_aq^-1 (-692) + e_aq^-1 (-821) -> OH^-1 (-13132) + OH^-1 (-13133) + H_2^0 (-13134)
-At time : 661.1 ps Reaction : OH^-1 (-13098) + H3O^1 (-9043) -> No product
-At time : 671.1 ps Reaction : e_aq^-1 (-104) + H^0 (-13127) -> OH^-1 (-13135) + H_2^0 (-13136)
-At time : 671.1 ps Reaction : e_aq^-1 (-3117) + H^0 (-12939) -> OH^-1 (-13137) + H_2^0 (-13138)
-At time : 671.1 ps Reaction : e_aq^-1 (-4660) + H3O^1 (-10649) -> H^0 (-13139)
-At time : 671.1 ps Reaction : H3O^1 (-8724) + OH^-1 (-13135) -> No product
-At time : 671.1 ps Reaction : e_aq^-1 (-3612) + H^0 (-9208) -> OH^-1 (-13140) + H_2^0 (-13141)
-At time : 671.1 ps Reaction : H3O^1 (-9252) + OH^-1 (-13140) -> No product
-At time : 681.1 ps Reaction : e_aq^-1 (-945) + H^0 (-13121) -> OH^-1 (-13142) + H_2^0 (-13143)
-At time : 681.1 ps Reaction : H3O^1 (-9761) + OH^-1 (-13054) -> No product
-At time : 681.1 ps Reaction : H3O^1 (-7421) + OH^-1 (-12950) -> No product
-At time : 681.1 ps Reaction : OH^0 (-7955) + H^0 (-10668) -> No product
-At time : 681.1 ps Reaction : e_aq^-1 (-4251) + H3O^1 (-8902) -> H^0 (-13144)
-At time : 681.1 ps Reaction : OH^-1 (-12779) + H3O^1 (-8878) -> No product
-At time : 681.1 ps Reaction : e_aq^-1 (-4022) + H3O^1 (-9400) -> H^0 (-13145)
-At time : 681.1 ps Reaction : e_aq^-1 (-5569) + H3O^1 (-8730) -> H^0 (-13146)
-At time : 681.1 ps Reaction : e_aq^-1 (-765) + H3O^1 (-8615) -> H^0 (-13147)
-At time : 691.1 ps Reaction : H^0 (-12794) + H^0 (-13145) -> H_2^0 (-13148)
-At time : 691.1 ps Reaction : OH^-1 (-12809) + H3O^1 (-8450) -> No product
-At time : 691.1 ps Reaction : H3O^1 (-7721) + OH^-1 (-12657) -> No product
-At time : 691.1 ps Reaction : e_aq^-1 (-424) + e_aq^-1 (-5491) -> OH^-1 (-13149) + OH^-1 (-13150) + H_2^0 (-13151)
-At time : 701.1 ps Reaction : OH^-1 (-12678) + H3O^1 (-10585) -> No product
-At time : 701.1 ps Reaction : OH^0 (-8181) + H^0 (-10873) -> No product
-At time : 701.1 ps Reaction : H3O^1 (-7725) + e_aq^-1 (-4068) -> H^0 (-13152)
-At time : 701.1 ps Reaction : e_aq^-1 (-5194) + e_aq^-1 (-5665) -> OH^-1 (-13153) + OH^-1 (-13154) + H_2^0 (-13155)
-At time : 701.1 ps Reaction : e_aq^-1 (-4134) + e_aq^-1 (-2749) -> OH^-1 (-13156) + OH^-1 (-13157) + H_2^0 (-13158)
-At time : 701.1 ps Reaction : e_aq^-1 (-4111) + e_aq^-1 (-2482) -> OH^-1 (-13159) + OH^-1 (-13160) + H_2^0 (-13161)
-At time : 711.1 ps Reaction : OH^-1 (-12520) + H3O^1 (-10072) -> No product
-At time : 711.1 ps Reaction : H^0 (-10921) + OH^0 (-8396) -> No product
-At time : 711.1 ps Reaction : e_aq^-1 (-2111) + H3O^1 (-8170) -> H^0 (-13162)
-At time : 711.1 ps Reaction : H3O^1 (-7504) + e_aq^-1 (-4900) -> H^0 (-13163)
-At time : 721.1 ps Reaction : H3O^1 (-6029) + OH^-1 (-13047) -> No product
-At time : 721.1 ps Reaction : OH^-1 (-12587) + H3O^1 (-10176) -> No product
-At time : 721.1 ps Reaction : e_aq^-1 (-4193) + H^0 (-7001) -> OH^-1 (-13164) + H_2^0 (-13165)
-At time : 721.1 ps Reaction : OH^-1 (-13090) + H3O^1 (-10878) -> No product
-At time : 721.1 ps Reaction : H3O^1 (-9499) + OH^-1 (-12997) -> No product
-At time : 731.1 ps Reaction : H^0 (-12994) + H^0 (-13114) -> H_2^0 (-13166)
-At time : 731.1 ps Reaction : OH^-1 (-12936) + H3O^1 (-9087) -> No product
-At time : 731.1 ps Reaction : e_aq^-1 (-3620) + H^0 (-12927) -> OH^-1 (-13167) + H_2^0 (-13168)
-At time : 731.1 ps Reaction : OH^-1 (-12726) + H3O^1 (-9262) -> No product
-At time : 731.1 ps Reaction : e_aq^-1 (-3548) + H3O^1 (-8728) -> H^0 (-13169)
-At time : 731.1 ps Reaction : e_aq^-1 (-1384) + H3O^1 (-10591) -> H^0 (-13170)
-At time : 741.1 ps Reaction : OH^-1 (-13137) + H3O^1 (-10464) -> No product
-At time : 741.1 ps Reaction : e_aq^-1 (-5603) + H^0 (-13056) -> OH^-1 (-13171) + H_2^0 (-13172)
-At time : 741.1 ps Reaction : OH^0 (-6097) + H^0 (-12774) -> No product
-At time : 741.1 ps Reaction : OH^-1 (-12692) + H3O^1 (-8364) -> No product
-At time : 741.1 ps Reaction : e_aq^-1 (-2221) + H3O^1 (-6017) -> H^0 (-13173)
-At time : 741.1 ps Reaction : e_aq^-1 (-4264) + e_aq^-1 (-1991) -> OH^-1 (-13174) + OH^-1 (-13175) + H_2^0 (-13176)
-At time : 751.1 ps Reaction : H3O^1 (-7706) + OH^-1 (-13171) -> No product
-At time : 751.1 ps Reaction : OH^0 (-7859) + H^0 (-13039) -> No product
-At time : 751.1 ps Reaction : OH^0 (-8323) + OH^0 (-10770) -> H2O2^0 (-13177)
-At time : 751.1 ps Reaction : e_aq^-1 (-3649) + H3O^1 (-10567) -> H^0 (-13178)
-At time : 751.1 ps Reaction : e_aq^-1 (-3701) + H3O^1 (-9917) -> H^0 (-13179)
-At time : 751.1 ps Reaction : e_aq^-1 (-5519) + H3O^1 (-8516) -> H^0 (-13180)
-At time : 751.1 ps Reaction : e_aq^-1 (-4812) + e_aq^-1 (-6243) -> OH^-1 (-13181) + OH^-1 (-13182) + H_2^0 (-13183)
-At time : 751.1 ps Reaction : H3O^1 (-7527) + OH^-1 (-12916) -> No product
-At time : 761.1 ps Reaction : e_aq^-1 (-4237) + H^0 (-13061) -> OH^-1 (-13184) + H_2^0 (-13185)
-At time : 761.1 ps Reaction : e_aq^-1 (-2382) + H3O^1 (-8765) -> H^0 (-13186)
-At time : 761.1 ps Reaction : e_aq^-1 (-5103) + e_aq^-1 (-4546) -> OH^-1 (-13187) + OH^-1 (-13188) + H_2^0 (-13189)
-At time : 761.1 ps Reaction : e_aq^-1 (-5020) + e_aq^-1 (-2421) -> OH^-1 (-13190) + OH^-1 (-13191) + H_2^0 (-13192)
-At time : 761.1 ps Reaction : OH^-1 (-13184) + H3O^1 (-8803) -> No product
-At time : 761.1 ps Reaction : OH^0 (-7713) + e_aq^-1 (-3504) -> OH^-1 (-13193)
-At time : 761.1 ps Reaction : OH^-1 (-13193) + H3O^1 (-10433) -> No product
-At time : 771.1 ps Reaction : e_aq^-1 (-4897) + e_aq^-1 (-3749) -> OH^-1 (-13194) + OH^-1 (-13195) + H_2^0 (-13196)
-At time : 771.1 ps Reaction : e_aq^-1 (-112) + H3O^1 (-8380) -> H^0 (-13197)
-At time : 781.1 ps Reaction : e_aq^-1 (-4691) + H3O^1 (-10898) -> H^0 (-13198)
-At time : 781.1 ps Reaction : e_aq^-1 (-4086) + e_aq^-1 (-5847) -> OH^-1 (-13199) + OH^-1 (-13200) + H_2^0 (-13201)
-At time : 791.1 ps Reaction : OH^-1 (-13167) + H3O^1 (-8942) -> No product
-At time : 791.1 ps Reaction : e_aq^-1 (-4388) + H3O^1 (-9985) -> H^0 (-13202)
-At time : 791.1 ps Reaction : e_aq^-1 (-4921) + e_aq^-1 (-2290) -> OH^-1 (-13203) + OH^-1 (-13204) + H_2^0 (-13205)
-At time : 791.1 ps Reaction : e_aq^-1 (-4041) + e_aq^-1 (-4178) -> OH^-1 (-13206) + OH^-1 (-13207) + H_2^0 (-13208)
-At time : 791.1 ps Reaction : e_aq^-1 (-4915) + H3O^1 (-5900) -> H^0 (-13209)
-At time : 801.1 ps Reaction : OH^-1 (-13164) + H3O^1 (-5951) -> No product
-At time : 801.1 ps Reaction : e_aq^-1 (-2977) + H^0 (-13163) -> OH^-1 (-13210) + H_2^0 (-13211)
-At time : 801.1 ps Reaction : e_aq^-1 (-5313) + H^0 (-13144) -> OH^-1 (-13212) + H_2^0 (-13213)
-At time : 801.1 ps Reaction : e_aq^-1 (-3002) + H3O^1 (-9209) -> H^0 (-13214)
-At time : 801.1 ps Reaction : e_aq^-1 (-3557) + H3O^1 (-5843) -> H^0 (-13215)
-At time : 801.1 ps Reaction : H3O^1 (-6828) + OH^-1 (-13212) -> No product
-At time : 801.1 ps Reaction : OH^-1 (-13210) + H3O^1 (-6374) -> No product
-At time : 811.1 ps Reaction : OH^-1 (-12709) + H3O^1 (-8290) -> No product
-At time : 821.1 ps Reaction : OH^-1 (-13150) + H3O^1 (-9376) -> No product
-At time : 821.1 ps Reaction : H3O^1 (-7590) + OH^-1 (-12872) -> No product
-At time : 821.1 ps Reaction : OH^-1 (-12672) + H3O^1 (-8473) -> No product
-At time : 821.1 ps Reaction : e_aq^-1 (-4326) + H3O^1 (-10076) -> H^0 (-13216)
-At time : 821.1 ps Reaction : e_aq^-1 (-2504) + e_aq^-1 (-5462) -> OH^-1 (-13217) + OH^-1 (-13218) + H_2^0 (-13219)
-At time : 831.1 ps Reaction : e_aq^-1 (-3947) + H^0 (-12956) -> OH^-1 (-13220) + H_2^0 (-13221)
-At time : 831.1 ps Reaction : H3O^1 (-7782) + OH^-1 (-12445) -> No product
-At time : 831.1 ps Reaction : OH^-1 (-13220) + H3O^1 (-8613) -> No product
-At time : 861.1 ps Reaction : H3O^1 (-9569) + OH^-1 (-13132) -> No product
-At time : 861.1 ps Reaction : e_aq^-1 (-4786) + H3O^1 (-9201) -> H^0 (-13222)
-At time : 871.1 ps Reaction : e_aq^-1 (-723) + H^0 (-13215) -> OH^-1 (-13223) + H_2^0 (-13224)
-At time : 871.1 ps Reaction : OH^-1 (-12985) + H3O^1 (-8124) -> No product
-At time : 871.1 ps Reaction : OH^-1 (-12463) + H3O^1 (-10126) -> No product
-At time : 871.1 ps Reaction : e_aq^-1 (-3654) + H3O^1 (-9479) -> H^0 (-13225)
-At time : 871.1 ps Reaction : H^0 (-8268) + OH^0 (-9103) -> No product
-At time : 871.1 ps Reaction : e_aq^-1 (-235) + H3O^1 (-5909) -> H^0 (-13226)
-At time : 871.1 ps Reaction : e_aq^-1 (-3780) + e_aq^-1 (-2747) -> OH^-1 (-13227) + OH^-1 (-13228) + H_2^0 (-13229)
-At time : 881.1 ps Reaction : H3O^1 (-8633) + OH^-1 (-13133) -> No product
-At time : 881.1 ps Reaction : e_aq^-1 (-487) + H^0 (-12898) -> OH^-1 (-13230) + H_2^0 (-13231)
-At time : 881.1 ps Reaction : e_aq^-1 (-6393) + H3O^1 (-10161) -> H^0 (-13232)
-At time : 881.1 ps Reaction : e_aq^-1 (-4674) + H3O^1 (-9197) -> H^0 (-13233)
-At time : 881.1 ps Reaction : H3O^1 (-7413) + e_aq^-1 (-2768) -> H^0 (-13234)
-At time : 891.1 ps Reaction : OH^-1 (-13230) + H3O^1 (-9083) -> No product
-At time : 891.1 ps Reaction : H3O^1 (-7998) + OH^-1 (-13078) -> No product
-At time : 891.1 ps Reaction : e_aq^-1 (-2424) + H3O^1 (-10037) -> H^0 (-13235)
-At time : 891.1 ps Reaction : e_aq^-1 (-3648) + e_aq^-1 (-5916) -> OH^-1 (-13236) + OH^-1 (-13237) + H_2^0 (-13238)
-At time : 891.1 ps Reaction : e_aq^-1 (-1161) + e_aq^-1 (-4722) -> OH^-1 (-13239) + OH^-1 (-13240) + H_2^0 (-13241)
-At time : 901.1 ps Reaction : OH^-1 (-13223) + H3O^1 (-10631) -> No product
-At time : 901.1 ps Reaction : H3O^1 (-11242) + e_aq^-1 (-4580) -> H^0 (-13242)
-At time : 901.1 ps Reaction : e_aq^-1 (-5553) + H3O^1 (-8862) -> H^0 (-13243)
-At time : 901.1 ps Reaction : e_aq^-1 (-5075) + H3O^1 (-8740) -> H^0 (-13244)
-At time : 901.1 ps Reaction : e_aq^-1 (-5356) + H3O^1 (-6275) -> H^0 (-13245)
-At time : 901.1 ps Reaction : e_aq^-1 (-1211) + H3O^1 (-10559) -> H^0 (-13246)
-At time : 911.1 ps Reaction : e_aq^-1 (-924) + H^0 (-13202) -> OH^-1 (-13247) + H_2^0 (-13248)
-At time : 911.1 ps Reaction : H^0 (-13139) + OH^0 (-9022) -> No product
-At time : 911.1 ps Reaction : e_aq^-1 (-761) + H3O^1 (-8649) -> H^0 (-13249)
-At time : 911.1 ps Reaction : e_aq^-1 (-5451) + H3O^1 (-7869) -> H^0 (-13250)
-At time : 911.1 ps Reaction : e_aq^-1 (-584) + H3O^1 (-8350) -> H^0 (-13251)
-At time : 921.1 ps Reaction : H^0 (-12918) + H^0 (-13246) -> H_2^0 (-13252)
-At time : 921.1 ps Reaction : OH^-1 (-13065) + H3O^1 (-9732) -> No product
-At time : 921.1 ps Reaction : e_aq^-1 (-1251) + H3O^1 (-10657) -> H^0 (-13253)
-At time : 921.1 ps Reaction : e_aq^-1 (-3566) + H3O^1 (-10579) -> H^0 (-13254)
-At time : 921.1 ps Reaction : H3O^1 (-7287) + e_aq^-1 (-5085) -> H^0 (-13255)
-At time : 931.1 ps Reaction : H3O^1 (-6848) + OH^-1 (-13247) -> No product
-At time : 931.1 ps Reaction : H^0 (-12977) + e_aq^-1 (-4227) -> OH^-1 (-13256) + H_2^0 (-13257)
-At time : 931.1 ps Reaction : H3O^1 (-7555) + OH^-1 (-12859) -> No product
-At time : 931.1 ps Reaction : e_aq^-1 (-3721) + H3O^1 (-9740) -> H^0 (-13258)
-At time : 941.1 ps Reaction : e_aq^-1 (-436) + e_aq^-1 (-3677) -> OH^-1 (-13259) + OH^-1 (-13260) + H_2^0 (-13261)
-At time : 941.1 ps Reaction : OH^-1 (-13236) + H3O^1 (-8683) -> No product
-At time : 951.1 ps Reaction : H^0 (-13251) + e_aq^-1 (-5226) -> OH^-1 (-13262) + H_2^0 (-13263)
-At time : 951.1 ps Reaction : OH^-1 (-13033) + H3O^1 (-8360) -> No product
-At time : 951.1 ps Reaction : e_aq^-1 (-5349) + H3O^1 (-10112) -> H^0 (-13264)
-At time : 951.1 ps Reaction : e_aq^-1 (-136) + e_aq^-1 (-2490) -> OH^-1 (-13265) + OH^-1 (-13266) + H_2^0 (-13267)
-At time : 951.1 ps Reaction : OH^-1 (-13262) + H3O^1 (-10611) -> No product
-At time : 961.1 ps Reaction : OH^-1 (-12873) + H3O^1 (-7896) -> No product
-At time : 961.1 ps Reaction : e_aq^-1 (-5086) + e_aq^-1 (-6144) -> OH^-1 (-13268) + OH^-1 (-13269) + H_2^0 (-13270)
-At time : 971.1 ps Reaction : e_aq^-1 (-4833) + H3O^1 (-10707) -> H^0 (-13271)
-At time : 971.1 ps Reaction : e_aq^-1 (-4907) + H3O^1 (-10057) -> H^0 (-13272)
-At time : 971.1 ps Reaction : e_aq^-1 (-3688) + e_aq^-1 (-4679) -> OH^-1 (-13273) + OH^-1 (-13274) + H_2^0 (-13275)
-At time : 971.1 ps Reaction : OH^-1 (-13012) + H3O^1 (-5996) -> No product
-At time : 981.1 ps Reaction : OH^-1 (-13256) + H3O^1 (-6020) -> No product
-At time : 981.1 ps Reaction : H^0 (-13060) + H^0 (-13255) -> H_2^0 (-13276)
-At time : 981.1 ps Reaction : e_aq^-1 (-1096) + H^0 (-13243) -> OH^-1 (-13277) + H_2^0 (-13278)
-At time : 981.1 ps Reaction : e_aq^-1 (-3786) + H^0 (-13146) -> OH^-1 (-13279) + H_2^0 (-13280)
-At time : 981.1 ps Reaction : OH^0 (-8041) + H^0 (-12931) -> No product
-At time : 981.1 ps Reaction : H3O^1 (-8050) + OH^-1 (-12537) -> No product
-At time : 981.1 ps Reaction : e_aq^-1 (-5264) + H3O^1 (-9129) -> H^0 (-13281)
-At time : 981.1 ps Reaction : e_aq^-1 (-3889) + H3O^1 (-5963) -> H^0 (-13282)
-At time : 981.1 ps Reaction : e_aq^-1 (-5273) + e_aq^-1 (-1138) -> OH^-1 (-13283) + OH^-1 (-13284) + H_2^0 (-13285)
-At time : 981.1 ps Reaction : e_aq^-1 (-528) + e_aq^-1 (-4657) -> OH^-1 (-13286) + OH^-1 (-13287) + H_2^0 (-13288)
-At time : 981.1 ps Reaction : OH^-1 (-13279) + H3O^1 (-10744) -> No product
-At time : 991.1 ps Reaction : H^0 (-12946) + OH^0 (-8597) -> No product
-At time : 991.1 ps Reaction : e_aq^-1 (-5106) + H3O^1 (-6446) -> H^0 (-13289)
-At time : 991.1 ps Reaction : e_aq^-1 (-5699) + e_aq^-1 (-2273) -> OH^-1 (-13290) + OH^-1 (-13291) + H_2^0 (-13292)
-At time : 991.1 ps Reaction : e_aq^-1 (-4258) + e_aq^-1 (-2179) -> OH^-1 (-13293) + OH^-1 (-13294) + H_2^0 (-13295)
-At time : 991.1 ps Reaction : e_aq^-1 (-859) + e_aq^-1 (-2319) -> OH^-1 (-13296) + OH^-1 (-13297) + H_2^0 (-13298)
-At time : 1.0011 ns Reaction : OH^-1 (-13291) + H3O^1 (-10691) -> No product
-At time : 1.0011 ns Reaction : H^0 (-12932) + e_aq^-1 (-1005) -> OH^-1 (-13299) + H_2^0 (-13300)
-At time : 1.0011 ns Reaction : e_aq^-1 (-5272) + H3O^1 (-10249) -> H^0 (-13301)
-At time : 1.0011 ns Reaction : e_aq^-1 (-4412) + H3O^1 (-8468) -> H^0 (-13302)
-At time : 1.0011 ns Reaction : OH^-1 (-13299) + H3O^1 (-6104) -> No product
-At time : 1.1011 ns Reaction : OH^-1 (-13290) + H3O^1 (-9694) -> No product
-At time : 1.1011 ns Reaction : OH^-1 (-13287) + H3O^1 (-8984) -> No product
-At time : 1.1011 ns Reaction : OH^-1 (-13277) + H3O^1 (-7652) -> No product
-At time : 1.1011 ns Reaction : OH^-1 (-13266) + H3O^1 (-6838) -> No product
-At time : 1.1011 ns Reaction : OH^0 (-7202) + H^0 (-13045) -> No product
-At time : 1.1011 ns Reaction : e_aq^-1 (-4342) + H3O^1 (-9724) -> H^0 (-13303)
-At time : 1.1011 ns Reaction : e_aq^-1 (-832) + e_aq^-1 (-5859) -> OH^-1 (-13304) + OH^-1 (-13305) + H_2^0 (-13306)
-At time : 1.1011 ns Reaction : H3O^1 (-7490) + OH^-1 (-13265) -> No product
-At time : 1.2011 ns Reaction : OH^-1 (-13149) + H3O^1 (-8781) -> No product
-At time : 1.2011 ns Reaction : OH^-1 (-13034) + H3O^1 (-10380) -> No product
-At time : 1.2011 ns Reaction : OH^-1 (-13011) + H3O^1 (-8922) -> No product
-At time : 1.2011 ns Reaction : e_aq^-1 (-4323) + e_aq^-1 (-5403) -> OH^-1 (-13307) + OH^-1 (-13308) + H_2^0 (-13309)
-At time : 1.2011 ns Reaction : e_aq^-1 (-4958) + e_aq^-1 (-4206) -> OH^-1 (-13310) + OH^-1 (-13311) + H_2^0 (-13312)
-At time : 1.2011 ns Reaction : e_aq^-1 (-1169) + e_aq^-1 (-4930) -> OH^-1 (-13313) + OH^-1 (-13314) + H_2^0 (-13315)
-At time : 1.2011 ns Reaction : e_aq^-1 (-4124) + e_aq^-1 (-2689) -> OH^-1 (-13316) + OH^-1 (-13317) + H_2^0 (-13318)
-At time : 1.2011 ns Reaction : e_aq^-1 (-964) + e_aq^-1 (-3610) -> OH^-1 (-13319) + OH^-1 (-13320) + H_2^0 (-13321)
-At time : 1.2011 ns Reaction : e_aq^-1 (-600) + e_aq^-1 (-870) -> OH^-1 (-13322) + OH^-1 (-13323) + H_2^0 (-13324)
-At time : 1.2011 ns Reaction : OH^-1 (-13023) + H3O^1 (-10472) -> No product
-At time : 1.2011 ns Reaction : H3O^1 (-8407) + OH^-1 (-12606) -> No product
-At time : 1.3011 ns Reaction : H3O^1 (-9402) + OH^-1 (-13284) -> No product
-At time : 1.3011 ns Reaction : H3O^1 (-7456) + OH^-1 (-13283) -> No product
-At time : 1.3011 ns Reaction : H3O^1 (-9156) + OH^-1 (-13142) -> No product
-At time : 1.3011 ns Reaction : H3O^1 (-9646) + OH^-1 (-13085) -> No product
-At time : 1.3011 ns Reaction : H3O^1 (-8456) + OH^-1 (-12937) -> No product
-At time : 1.3011 ns Reaction : OH^-1 (-12910) + H3O^1 (-8974) -> No product
-At time : 1.3011 ns Reaction : OH^-1 (-12762) + H3O^1 (-6068) -> No product
-At time : 1.3011 ns Reaction : OH^-1 (-12735) + H3O^1 (-6266) -> No product
-At time : 1.3011 ns Reaction : e_aq^-1 (-2800) + H3O^1 (-10360) -> H^0 (-13325)
-At time : 1.3011 ns Reaction : e_aq^-1 (-5060) + e_aq^-1 (-5856) -> OH^-1 (-13326) + OH^-1 (-13327) + H_2^0 (-13328)
-At time : 1.3011 ns Reaction : e_aq^-1 (-4847) + e_aq^-1 (-2337) -> OH^-1 (-13329) + OH^-1 (-13330) + H_2^0 (-13331)
-At time : 1.3011 ns Reaction : OH^-1 (-13304) + H3O^1 (-9505) -> No product
-At time : 1.3011 ns Reaction : H3O^1 (-6107) + OH^-1 (-13088) -> No product
-At time : 1.3011 ns Reaction : OH^-1 (-12901) + H3O^1 (-10726) -> No product
-At time : 1.3011 ns Reaction : OH^-1 (-12852) + H3O^1 (-9592) -> No product
-At time : 1.4011 ns Reaction : e_aq^-1 (-173) + H^0 (-13302) -> OH^-1 (-13332) + H_2^0 (-13333)
-At time : 1.4011 ns Reaction : OH^-1 (-13286) + H3O^1 (-8082) -> No product
-At time : 1.4011 ns Reaction : H3O^1 (-7648) + OH^-1 (-13005) -> No product
-At time : 1.4011 ns Reaction : e_aq^-1 (-1340) + e_aq^-1 (-5565) -> OH^-1 (-13334) + OH^-1 (-13335) + H_2^0 (-13336)
-At time : 1.4011 ns Reaction : e_aq^-1 (-994) + e_aq^-1 (-5540) -> OH^-1 (-13337) + OH^-1 (-13338) + H_2^0 (-13339)
-At time : 1.4011 ns Reaction : e_aq^-1 (-4805) + e_aq^-1 (-5357) -> OH^-1 (-13340) + OH^-1 (-13341) + H_2^0 (-13342)
-At time : 1.4011 ns Reaction : e_aq^-1 (-142) + e_aq^-1 (-5150) -> OH^-1 (-13343) + OH^-1 (-13344) + H_2^0 (-13345)
-At time : 1.4011 ns Reaction : H3O^1 (-6389) + OH^-1 (-13122) -> No product
-At time : 1.4011 ns Reaction : OH^-1 (-12948) + H3O^1 (-8673) -> No product
-At time : 1.4011 ns Reaction : OH^-1 (-12853) + H3O^1 (-8116) -> No product
-At time : 1.4011 ns Reaction : OH^-1 (-12643) + H3O^1 (-9467) -> No product
-At time : 1.4011 ns Reaction : H3O^1 (-6922) + OH^-1 (-12611) -> No product
-At time : 1.4011 ns Reaction : OH^0 (-10000) + e_aq^-1 (-4619) -> OH^-1 (-13346)
-At time : 1.4011 ns Reaction : e_aq^-1 (-5240) + H3O^1 (-6092) -> H^0 (-13347)
-At time : 1.4011 ns Reaction : OH^-1 (-13346) + H3O^1 (-10613) -> No product
-At time : 1.5011 ns Reaction : H3O^1 (-10041) + OH^-1 (-13332) -> No product
-At time : 1.5011 ns Reaction : OH^-1 (-13217) + H3O^1 (-8687) -> No product
-At time : 1.5011 ns Reaction : OH^-1 (-13031) + H3O^1 (-8262) -> No product
-At time : 1.5011 ns Reaction : OH^-1 (-12972) + H3O^1 (-10021) -> No product
-At time : 1.5011 ns Reaction : OH^-1 (-12909) + H3O^1 (-9746) -> No product
-At time : 1.5011 ns Reaction : H3O^1 (-9003) + OH^-1 (-12610) -> No product
-At time : 1.5011 ns Reaction : H3O^1 (-11168) + e_aq^-1 (-516) -> H^0 (-13348)
-At time : 1.5011 ns Reaction : e_aq^-1 (-4498) + H3O^1 (-10241) -> H^0 (-13349)
-At time : 1.5011 ns Reaction : e_aq^-1 (-5378) + e_aq^-1 (-6354) -> OH^-1 (-13350) + OH^-1 (-13351) + H_2^0 (-13352)
-At time : 1.5011 ns Reaction : e_aq^-1 (-5573) + e_aq^-1 (-2786) -> OH^-1 (-13353) + OH^-1 (-13354) + H_2^0 (-13355)
-At time : 1.5011 ns Reaction : e_aq^-1 (-2003) + e_aq^-1 (-5484) -> OH^-1 (-13356) + OH^-1 (-13357) + H_2^0 (-13358)
-At time : 1.5011 ns Reaction : e_aq^-1 (-5248) + e_aq^-1 (-4520) -> OH^-1 (-13359) + OH^-1 (-13360) + H_2^0 (-13361)
-At time : 1.5011 ns Reaction : e_aq^-1 (-4728) + e_aq^-1 (-4128) -> OH^-1 (-13362) + OH^-1 (-13363) + H_2^0 (-13364)
-At time : 1.5011 ns Reaction : OH^-1 (-13002) + H3O^1 (-8696) -> No product
-At time : 1.5011 ns Reaction : H3O^1 (-7352) + OH^-1 (-12825) -> No product
-At time : 1.5011 ns Reaction : H2O2^0 (-12517) + e_aq^-1 (-5233) -> OH^-1 (-13365) + OH^0 (-13366)
-At time : 1.5011 ns Reaction : OH^-1 (-13365) + H3O^1 (-6083) -> No product
-At time : 1.6011 ns Reaction : H3O^1 (-7039) + OH^-1 (-13320) -> No product
-At time : 1.6011 ns Reaction : H3O^1 (-7829) + OH^-1 (-13106) -> No product
-At time : 1.6011 ns Reaction : OH^-1 (-13087) + H3O^1 (-9483) -> No product
-At time : 1.6011 ns Reaction : OH^-1 (-13079) + H3O^1 (-9765) -> No product
-At time : 1.6011 ns Reaction : OH^-1 (-12812) + H3O^1 (-5930) -> No product
-At time : 1.6011 ns Reaction : OH^-1 (-12802) + H3O^1 (-10531) -> No product
-At time : 1.6011 ns Reaction : e_aq^-1 (-4802) + H2O2^0 (-12513) -> OH^-1 (-13367) + OH^0 (-13368)
-At time : 1.6011 ns Reaction : e_aq^-1 (-4809) + e_aq^-1 (-5686) -> OH^-1 (-13369) + OH^-1 (-13370) + H_2^0 (-13371)
-At time : 1.6011 ns Reaction : e_aq^-1 (-4566) + e_aq^-1 (-4898) -> OH^-1 (-13372) + OH^-1 (-13373) + H_2^0 (-13374)
-At time : 1.6011 ns Reaction : e_aq^-1 (-539) + e_aq^-1 (-3726) -> OH^-1 (-13375) + OH^-1 (-13376) + H_2^0 (-13377)
-At time : 1.6011 ns Reaction : OH^-1 (-13081) + H3O^1 (-9752) -> No product
-At time : 1.7011 ns Reaction : OH^-1 (-13367) + H3O^1 (-8066) -> No product
-At time : 1.7011 ns Reaction : OH^-1 (-13195) + H3O^1 (-10350) -> No product
-At time : 1.7011 ns Reaction : OH^-1 (-13156) + H3O^1 (-8192) -> No product
-At time : 1.7011 ns Reaction : e_aq^-1 (-4508) + H2O2^0 (-12250) -> OH^-1 (-13378) + OH^0 (-13379)
-At time : 1.7011 ns Reaction : OH^0 (-7521) + OH^0 (-9635) -> H2O2^0 (-13380)
-At time : 1.7011 ns Reaction : e_aq^-1 (-147) + e_aq^-1 (-273) -> OH^-1 (-13381) + OH^-1 (-13382) + H_2^0 (-13383)
-At time : 1.7011 ns Reaction : OH^-1 (-13378) + H3O^1 (-10805) -> No product
-At time : 1.7011 ns Reaction : OH^-1 (-13305) + H3O^1 (-10742) -> No product
-At time : 1.7011 ns Reaction : H3O^1 (-7681) + OH^-1 (-13096) -> No product
-At time : 1.7011 ns Reaction : OH^-1 (-12978) + H3O^1 (-10848) -> No product
-At time : 1.7011 ns Reaction : H3O^1 (-9626) + OH^-1 (-12783) -> No product
-At time : 1.7011 ns Reaction : e_aq^-1 (-5657) + H2O2^0 (-12086) -> OH^-1 (-13384) + OH^0 (-13385)
-At time : 1.7011 ns Reaction : OH^-1 (-13384) + H3O^1 (-6368) -> No product
-At time : 1.8011 ns Reaction : OH^-1 (-13182) + H3O^1 (-8736) -> No product
-At time : 1.8011 ns Reaction : H3O^1 (-7795) + OH^-1 (-13022) -> No product
-At time : 1.8011 ns Reaction : H^0 (-13017) + e_aq^-1 (-4644) -> OH^-1 (-13386) + H_2^0 (-13387)
-At time : 1.8011 ns Reaction : H3O^1 (-7520) + OH^-1 (-12810) -> No product
-At time : 1.8011 ns Reaction : H3O^1 (-7946) + OH^-1 (-12521) -> No product
-At time : 1.8011 ns Reaction : e_aq^-1 (-6201) + H3O^1 (-10842) -> H^0 (-13388)
-At time : 1.8011 ns Reaction : H^0 (-8482) + OH^0 (-10387) -> No product
-At time : 1.8011 ns Reaction : e_aq^-1 (-5472) + e_aq^-1 (-5964) -> OH^-1 (-13389) + OH^-1 (-13390) + H_2^0 (-13391)
-At time : 1.8011 ns Reaction : e_aq^-1 (-2305) + e_aq^-1 (-5318) -> OH^-1 (-13392) + OH^-1 (-13393) + H_2^0 (-13394)
-At time : 1.8011 ns Reaction : e_aq^-1 (-4074) + e_aq^-1 (-2770) -> OH^-1 (-13395) + OH^-1 (-13396) + H_2^0 (-13397)
-At time : 1.8011 ns Reaction : H3O^1 (-6128) + OH^-1 (-13386) -> No product
-At time : 1.8011 ns Reaction : e_aq^-1 (-811) + H^0 (-13209) -> OH^-1 (-13398) + H_2^0 (-13399)
-At time : 1.8011 ns Reaction : OH^-1 (-13006) + H3O^1 (-9182) -> No product
-At time : 1.8011 ns Reaction : OH^-1 (-12729) + H3O^1 (-10653) -> No product
-At time : 1.8011 ns Reaction : e_aq^-1 (-477) + H3O^1 (-6458) -> H^0 (-13400)
-At time : 1.8011 ns Reaction : OH^-1 (-13398) + H3O^1 (-6089) -> No product
-At time : 1.9011 ns Reaction : e_aq^-1 (-344) + OH^0 (-13368) -> OH^-1 (-13401)
-At time : 1.9011 ns Reaction : H3O^1 (-6359) + OH^-1 (-13190) -> No product
-At time : 1.9011 ns Reaction : H3O^1 (-11160) + OH^-1 (-13188) -> No product
-At time : 1.9011 ns Reaction : H3O^1 (-8307) + OH^-1 (-13181) -> No product
-At time : 1.9011 ns Reaction : H3O^1 (-8946) + OH^-1 (-13112) -> No product
-At time : 1.9011 ns Reaction : e_aq^-1 (-980) + H^0 (-13049) -> OH^-1 (-13402) + H_2^0 (-13403)
-At time : 1.9011 ns Reaction : H3O^1 (-6908) + OH^-1 (-12913) -> No product
-At time : 1.9011 ns Reaction : OH^-1 (-12630) + H3O^1 (-8791) -> No product
-At time : 1.9011 ns Reaction : e_aq^-1 (-3955) + H3O^1 (-10557) -> H^0 (-13404)
-At time : 1.9011 ns Reaction : e_aq^-1 (-5345) + e_aq^-1 (-6090) -> OH^-1 (-13405) + OH^-1 (-13406) + H_2^0 (-13407)
-At time : 1.9011 ns Reaction : e_aq^-1 (-2345) + e_aq^-1 (-3812) -> OH^-1 (-13408) + OH^-1 (-13409) + H_2^0 (-13410)
-At time : 1.9011 ns Reaction : OH^-1 (-13401) + H3O^1 (-8645) -> No product
-At time : 1.9011 ns Reaction : H3O^1 (-7144) + OH^-1 (-13175) -> No product
-At time : 1.9011 ns Reaction : OH^-1 (-12829) + H3O^1 (-9053) -> No product
-At time : 1.9011 ns Reaction : e_aq^-1 (-1715) + H2O2^0 (-12030) -> OH^-1 (-13411) + OH^0 (-13412)
-At time : 1.9011 ns Reaction : OH^-1 (-13411) + H3O^1 (-10168) -> No product
-At time : 2.0011 ns Reaction : OH^-1 (-13402) + H3O^1 (-9193) -> No product
-At time : 2.0011 ns Reaction : OH^-1 (-13308) + H3O^1 (-9882) -> No product
-At time : 2.0011 ns Reaction : OH^-1 (-13191) + H3O^1 (-10529) -> No product
-At time : 2.0011 ns Reaction : OH^-1 (-13187) + H3O^1 (-8870) -> No product
-At time : 2.0011 ns Reaction : H3O^1 (-8190) + OH^-1 (-13174) -> No product
-At time : 2.0011 ns Reaction : OH^-1 (-13095) + H3O^1 (-9983) -> No product
-At time : 2.0011 ns Reaction : e_aq^-1 (-3824) + H^0 (-13046) -> OH^-1 (-13413) + H_2^0 (-13414)
-At time : 2.0011 ns Reaction : OH^-1 (-13037) + H3O^1 (-8888) -> No product
-At time : 2.0011 ns Reaction : OH^-1 (-12819) + H3O^1 (-10356) -> No product
-At time : 2.0011 ns Reaction : OH^-1 (-12656) + H3O^1 (-10746) -> No product
-At time : 2.0011 ns Reaction : e_aq^-1 (-3629) + H2O2^0 (-12553) -> OH^-1 (-13415) + OH^0 (-13416)
-At time : 2.0011 ns Reaction : e_aq^-1 (-5210) + H3O^1 (-9396) -> H^0 (-13417)
-At time : 2.0011 ns Reaction : OH^-1 (-13415) + H3O^1 (-9449) -> No product
-At time : 2.0011 ns Reaction : OH^-1 (-13200) + H3O^1 (-7952) -> No product
-At time : 2.0011 ns Reaction : e_aq^-1 (-4706) + H2O2^0 (-12408) -> OH^-1 (-13418) + OH^0 (-13419)
-At time : 2.1011 ns Reaction : OH^-1 (-13418) + H3O^1 (-10326) -> No product
-At time : 2.1011 ns Reaction : e_aq^-1 (-394) + OH^0 (-13416) -> OH^-1 (-13420)
-At time : 2.1011 ns Reaction : H3O^1 (-9748) + OH^-1 (-13396) -> No product
-At time : 2.1011 ns Reaction : OH^-1 (-13239) + H3O^1 (-10803) -> No product
-At time : 2.1011 ns Reaction : H3O^1 (-8530) + OH^-1 (-13194) -> No product
-At time : 2.1011 ns Reaction : OH^-1 (-12900) + H3O^1 (-9598) -> No product
-At time : 2.1011 ns Reaction : OH^-1 (-12836) + H3O^1 (-10577) -> No product
-At time : 2.1011 ns Reaction : OH^-1 (-12775) + H3O^1 (-6431) -> No product
-At time : 2.1011 ns Reaction : OH^-1 (-12444) + H3O^1 (-10763) -> No product
-At time : 2.1011 ns Reaction : e_aq^-1 (-2385) + e_aq^-1 (-5874) -> OH^-1 (-13421) + OH^-1 (-13422) + H_2^0 (-13423)
-At time : 2.1011 ns Reaction : e_aq^-1 (-5109) + e_aq^-1 (-4973) -> OH^-1 (-13424) + OH^-1 (-13425) + H_2^0 (-13426)
-At time : 2.1011 ns Reaction : H3O^1 (-8712) + OH^-1 (-13420) -> No product
-At time : 2.1011 ns Reaction : H3O^1 (-9544) + OH^-1 (-13413) -> No product
-At time : 2.1011 ns Reaction : H3O^1 (-9507) + OH^-1 (-13362) -> No product
-At time : 2.1011 ns Reaction : OH^-1 (-13343) + H3O^1 (-10693) -> No product
-At time : 2.1011 ns Reaction : OH^-1 (-12813) + H3O^1 (-8174) -> No product
-At time : 2.1011 ns Reaction : e_aq^-1 (-3957) + H3O^1 (-6056) -> H^0 (-13427)
-At time : 2.2011 ns Reaction : OH^-1 (-13353) + H3O^1 (-8753) -> No product
-At time : 2.2011 ns Reaction : OH^-1 (-13341) + H3O^1 (-7598) -> No product
-At time : 2.2011 ns Reaction : e_aq^-1 (-842) + H^0 (-13245) -> OH^-1 (-13428) + H_2^0 (-13429)
-At time : 2.2011 ns Reaction : e_aq^-1 (-1701) + H^0 (-13234) -> OH^-1 (-13430) + H_2^0 (-13431)
-At time : 2.2011 ns Reaction : e_aq^-1 (-2579) + H3O^1 (-10801) -> H^0 (-13432)
-At time : 2.2011 ns Reaction : OH^0 (-8375) + OH^0 (-10236) -> H2O2^0 (-13433)
-At time : 2.2011 ns Reaction : e_aq^-1 (-3923) + H3O^1 (-8362) -> H^0 (-13434)
-At time : 2.2011 ns Reaction : e_aq^-1 (-2252) + H3O^1 (-8269) -> H^0 (-13435)
-At time : 2.2011 ns Reaction : e_aq^-1 (-2440) + e_aq^-1 (-4272) -> OH^-1 (-13436) + OH^-1 (-13437) + H_2^0 (-13438)
-At time : 2.2011 ns Reaction : OH^-1 (-13105) + H3O^1 (-7904) -> No product
-At time : 2.2011 ns Reaction : OH^-1 (-12968) + H3O^1 (-8354) -> No product
-At time : 2.2011 ns Reaction : e_aq^-1 (-4610) + H2O2^0 (-12314) -> OH^-1 (-13439) + OH^0 (-13440)
-At time : 2.2011 ns Reaction : e_aq^-1 (-4724) + H2O2^0 (-12207) -> OH^-1 (-13441) + OH^0 (-13442)
-At time : 2.2011 ns Reaction : H2O2^0 (-12101) + e_aq^-1 (-4870) -> OH^-1 (-13443) + OH^0 (-13444)
-At time : 2.2011 ns Reaction : H3O^1 (-7602) + OH^-1 (-13443) -> No product
-At time : 2.2011 ns Reaction : OH^-1 (-13439) + H3O^1 (-10752) -> No product
-At time : 2.3011 ns Reaction : H3O^1 (-8000) + OH^-1 (-13441) -> No product
-At time : 2.3011 ns Reaction : OH^-1 (-13372) + H3O^1 (-9322) -> No product
-At time : 2.3011 ns Reaction : OH^-1 (-13359) + H3O^1 (-6428) -> No product
-At time : 2.3011 ns Reaction : H^0 (-13347) + e_aq^-1 (-775) -> OH^-1 (-13445) + H_2^0 (-13446)
-At time : 2.3011 ns Reaction : OH^-1 (-13335) + H3O^1 (-6347) -> No product
-At time : 2.3011 ns Reaction : OH^-1 (-13203) + H3O^1 (-9963) -> No product
-At time : 2.3011 ns Reaction : OH^-1 (-12960) + H3O^1 (-10458) -> No product
-At time : 2.3011 ns Reaction : OH^-1 (-12843) + H3O^1 (-10258) -> No product
-At time : 2.3011 ns Reaction : H3O^1 (-7867) + OH^-1 (-12806) -> No product
-At time : 2.3011 ns Reaction : OH^-1 (-12532) + H3O^1 (-9317) -> No product
-At time : 2.3011 ns Reaction : e_aq^-1 (-2542) + H3O^1 (-10488) -> H^0 (-13447)
-At time : 2.3011 ns Reaction : e_aq^-1 (-5418) + e_aq^-1 (-4155) -> OH^-1 (-13448) + OH^-1 (-13449) + H_2^0 (-13450)
-At time : 2.4011 ns Reaction : H3O^1 (-6182) + OH^-1 (-13445) -> No product
-At time : 2.4011 ns Reaction : OH^-1 (-13389) + H3O^1 (-8424) -> No product
-At time : 2.4011 ns Reaction : OH^-1 (-13237) + H3O^1 (-9350) -> No product
-At time : 2.4011 ns Reaction : OH^-1 (-13199) + H3O^1 (-10809) -> No product
-At time : 2.4011 ns Reaction : OH^-1 (-12990) + H3O^1 (-8964) -> No product
-At time : 2.4011 ns Reaction : H3O^1 (-8002) + OH^-1 (-12965) -> No product
-At time : 2.4011 ns Reaction : OH^-1 (-12961) + H3O^1 (-10170) -> No product
-At time : 2.4011 ns Reaction : H2O2^0 (-12752) + e_aq^-1 (-5362) -> OH^-1 (-13451) + OH^0 (-13452)
-At time : 2.4011 ns Reaction : H2O2^0 (-12266) + e_aq^-1 (-5028) -> OH^-1 (-13453) + OH^0 (-13454)
-At time : 2.4011 ns Reaction : e_aq^-1 (-3840) + e_aq^-1 (-6219) -> OH^-1 (-13455) + OH^-1 (-13456) + H_2^0 (-13457)
-At time : 2.4011 ns Reaction : e_aq^-1 (-4896) + e_aq^-1 (-5102) -> OH^-1 (-13458) + OH^-1 (-13459) + H_2^0 (-13460)
-At time : 2.4011 ns Reaction : e_aq^-1 (-4928) + e_aq^-1 (-4524) -> OH^-1 (-13461) + OH^-1 (-13462) + H_2^0 (-13463)
-At time : 2.4011 ns Reaction : H2O2^0 (-11394) + e_aq^-1 (-4140) -> OH^-1 (-13464) + OH^0 (-13465)
-At time : 2.4011 ns Reaction : OH^-1 (-13464) + H3O^1 (-6296) -> No product
-At time : 2.5011 ns Reaction : H3O^1 (-6353) + OH^-1 (-13453) -> No product
-At time : 2.5011 ns Reaction : OH^-1 (-13451) + H3O^1 (-9890) -> No product
-At time : 2.5011 ns Reaction : OH^-1 (-13430) + H3O^1 (-9142) -> No product
-At time : 2.5011 ns Reaction : H^0 (-13404) + e_aq^-1 (-3584) -> OH^-1 (-13466) + H_2^0 (-13467)
-At time : 2.5011 ns Reaction : H3O^1 (-10017) + OH^-1 (-13334) -> No product
-At time : 2.5011 ns Reaction : H3O^1 (-7502) + OH^-1 (-13311) -> No product
-At time : 2.5011 ns Reaction : H^0 (-13272) + e_aq^-1 (-3774) -> OH^-1 (-13468) + H_2^0 (-13469)
-At time : 2.5011 ns Reaction : OH^-1 (-13157) + H3O^1 (-7618) -> No product
-At time : 2.5011 ns Reaction : OH^-1 (-12858) + H3O^1 (-9668) -> No product
-At time : 2.5011 ns Reaction : OH^-1 (-12840) + H3O^1 (-7928) -> No product
-At time : 2.5011 ns Reaction : e_aq^-1 (-5308) + H3O^1 (-10884) -> H^0 (-13470)
-At time : 2.5011 ns Reaction : e_aq^-1 (-12) + e_aq^-1 (-3876) -> OH^-1 (-13471) + OH^-1 (-13472) + H_2^0 (-13473)
-At time : 2.5011 ns Reaction : OH^-1 (-13428) + H3O^1 (-9254) -> No product
-At time : 2.5011 ns Reaction : H3O^1 (-6299) + OH^-1 (-12991) -> No product
-At time : 2.5011 ns Reaction : e_aq^-1 (-4099) + H2O2^0 (-11529) -> OH^-1 (-13474) + OH^0 (-13475)
-At time : 2.5011 ns Reaction : e_aq^-1 (-5393) + H3O^1 (-9823) -> H^0 (-13476)
-At time : 2.5011 ns Reaction : H3O^1 (-7547) + e_aq^-1 (-2049) -> H^0 (-13477)
-At time : 2.5011 ns Reaction : OH^-1 (-13474) + H3O^1 (-9106) -> No product
-At time : 2.6011 ns Reaction : OH^-1 (-13466) + H3O^1 (-8538) -> No product
-At time : 2.6011 ns Reaction : e_aq^-1 (-899) + OH^0 (-13454) -> OH^-1 (-13478)
-At time : 2.6011 ns Reaction : H3O^1 (-7173) + OH^-1 (-13160) -> No product
-At time : 2.6011 ns Reaction : H3O^1 (-8014) + OH^-1 (-13076) -> No product
-At time : 2.6011 ns Reaction : OH^-1 (-12954) + H3O^1 (-8330) -> No product
-At time : 2.6011 ns Reaction : e_aq^-1 (-4141) + H^0 (-12907) -> OH^-1 (-13479) + H_2^0 (-13480)
-At time : 2.6011 ns Reaction : OH^-1 (-12835) + H3O^1 (-10677) -> No product
-At time : 2.6011 ns Reaction : e_aq^-1 (-4455) + H2O2^0 (-12515) -> OH^-1 (-13481) + OH^0 (-13482)
-At time : 2.6011 ns Reaction : e_aq^-1 (-4578) + H3O^1 (-10482) -> H^0 (-13483)
-At time : 2.6011 ns Reaction : e_aq^-1 (-4920) + H3O^1 (-7227) -> H^0 (-13484)
-At time : 2.6011 ns Reaction : e_aq^-1 (-4175) + e_aq^-1 (-6030) -> OH^-1 (-13485) + OH^-1 (-13486) + H_2^0 (-13487)
-At time : 2.6011 ns Reaction : e_aq^-1 (-920) + e_aq^-1 (-4555) -> OH^-1 (-13488) + OH^-1 (-13489) + H_2^0 (-13490)
-At time : 2.6011 ns Reaction : OH^-1 (-13479) + H3O^1 (-9590) -> No product
-At time : 2.6011 ns Reaction : H3O^1 (-10007) + OH^-1 (-13478) -> No product
-At time : 2.6011 ns Reaction : OH^0 (-7369) + e_aq^-1 (-2034) -> OH^-1 (-13491)
-At time : 2.6011 ns Reaction : OH^-1 (-13491) + H3O^1 (-9658) -> No product
-At time : 2.7011 ns Reaction : OH^-1 (-13481) + H3O^1 (-9433) -> No product
-At time : 2.7011 ns Reaction : OH^-1 (-13337) + H3O^1 (-9469) -> No product
-At time : 2.7011 ns Reaction : OH^-1 (-13111) + H3O^1 (-8368) -> No product
-At time : 2.7011 ns Reaction : H3O^1 (-9170) + OH^-1 (-12796) -> No product
-At time : 2.7011 ns Reaction : e_aq^-1 (-2246) + H2O2^0 (-12406) -> OH^-1 (-13492) + OH^0 (-13493)
-At time : 2.7011 ns Reaction : e_aq^-1 (-2332) + H3O^1 (-9921) -> H^0 (-13494)
-At time : 2.7011 ns Reaction : H^0 (-7149) + OH^0 (-9703) -> No product
-At time : 2.7011 ns Reaction : H3O^1 (-7600) + e_aq^-1 (-4015) -> H^0 (-13495)
-At time : 2.7011 ns Reaction : e_aq^-1 (-5615) + e_aq^-1 (-6423) -> OH^-1 (-13496) + OH^-1 (-13497) + H_2^0 (-13498)
-At time : 2.7011 ns Reaction : OH^-1 (-13344) + H3O^1 (-10490) -> No product
-At time : 2.7011 ns Reaction : H2O2^0 (-11593) + e_aq^-1 (-1966) -> OH^-1 (-13499) + OH^0 (-13500)
-At time : 2.7011 ns Reaction : e_aq^-1 (-4192) + H3O^1 (-8658) -> H^0 (-13501)
-At time : 2.7011 ns Reaction : OH^-1 (-13499) + H3O^1 (-9118) -> No product
-At time : 2.8011 ns Reaction : OH^-1 (-13492) + H3O^1 (-9870) -> No product
-At time : 2.8011 ns Reaction : OH^-1 (-13485) + H3O^1 (-8580) -> No product
-At time : 2.8011 ns Reaction : H3O^1 (-5873) + OH^-1 (-13363) -> No product
-At time : 2.8011 ns Reaction : OH^-1 (-13330) + H3O^1 (-9057) -> No product
-At time : 2.8011 ns Reaction : H^0 (-13254) + e_aq^-1 (-498) -> OH^-1 (-13502) + H_2^0 (-13503)
-At time : 2.8011 ns Reaction : OH^-1 (-13206) + H3O^1 (-10509) -> No product
-At time : 2.8011 ns Reaction : OH^-1 (-13000) + H3O^1 (-7384) -> No product
-At time : 2.8011 ns Reaction : OH^-1 (-12839) + H3O^1 (-10547) -> No product
-At time : 2.8011 ns Reaction : e_aq^-1 (-471) + e_aq^-1 (-6168) -> OH^-1 (-13504) + OH^-1 (-13505) + H_2^0 (-13506)
-At time : 2.8011 ns Reaction : e_aq^-1 (-2635) + e_aq^-1 (-5433) -> OH^-1 (-13507) + OH^-1 (-13508) + H_2^0 (-13509)
-At time : 2.8011 ns Reaction : e_aq^-1 (-1009) + e_aq^-1 (-5167) -> OH^-1 (-13510) + OH^-1 (-13511) + H_2^0 (-13512)
-At time : 2.8011 ns Reaction : OH^0 (-10008) + e_aq^-1 (-4055) -> OH^-1 (-13513)
-At time : 2.8011 ns Reaction : OH^-1 (-13513) + H3O^1 (-9348) -> No product
-At time : 2.9011 ns Reaction : OH^-1 (-13240) + H3O^1 (-9356) -> No product
-At time : 2.9011 ns Reaction : OH^-1 (-12797) + H3O^1 (-9538) -> No product
-At time : 2.9011 ns Reaction : H3O^1 (-11130) + OH^-1 (-12531) -> No product
-At time : 2.9011 ns Reaction : e_aq^-1 (-2098) + H3O^1 (-8757) -> H^0 (-13514)
-At time : 2.9011 ns Reaction : e_aq^-1 (-2057) + H3O^1 (-6137) -> H^0 (-13515)
-At time : 2.9011 ns Reaction : e_aq^-1 (-5583) + e_aq^-1 (-6045) -> OH^-1 (-13516) + OH^-1 (-13517) + H_2^0 (-13518)
-At time : 2.9011 ns Reaction : e_aq^-1 (-1446) + e_aq^-1 (-3973) -> OH^-1 (-13519) + OH^-1 (-13520) + H_2^0 (-13521)
-At time : 2.9011 ns Reaction : H3O^1 (-8438) + OH^-1 (-13502) -> No product
-At time : 2.9011 ns Reaction : OH^-1 (-12904) + H3O^1 (-6326) -> No product
-At time : 2.9011 ns Reaction : e_aq^-1 (-545) + OH^0 (-7724) -> OH^-1 (-13522)
-At time : 3.0011 ns Reaction : OH^-1 (-13522) + H3O^1 (-10204) -> No product
-At time : 3.0011 ns Reaction : e_aq^-1 (-2223) + OH^0 (-13482) -> OH^-1 (-13523)
-At time : 3.0011 ns Reaction : H3O^1 (-7885) + OH^-1 (-13218) -> No product
-At time : 3.0011 ns Reaction : e_aq^-1 (-4792) + H3O^1 (-9840) -> H^0 (-13524)
-At time : 3.0011 ns Reaction : e_aq^-1 (-4158) + H3O^1 (-8498) -> H^0 (-13525)
-At time : 3.0011 ns Reaction : e_aq^-1 (-3640) + e_aq^-1 (-6132) -> OH^-1 (-13526) + OH^-1 (-13527) + H_2^0 (-13528)
-At time : 3.1011 ns Reaction : OH^-1 (-13310) + H3O^1 (-9821) -> No product
-At time : 3.1011 ns Reaction : OH^-1 (-13129) + H3O^1 (-8086) -> No product
-At time : 3.1011 ns Reaction : OH^-1 (-13123) + H3O^1 (-9874) -> No product
-At time : 3.1011 ns Reaction : OH^-1 (-13075) + H3O^1 (-9915) -> No product
-At time : 3.1011 ns Reaction : OH^-1 (-12890) + H3O^1 (-9878) -> No product
-At time : 3.1011 ns Reaction : e_aq^-1 (-4017) + H^0 (-12861) -> OH^-1 (-13529) + H_2^0 (-13530)
-At time : 3.1011 ns Reaction : OH^-1 (-12644) + H3O^1 (-9793) -> No product
-At time : 3.1011 ns Reaction : e_aq^-1 (-5409) + H3O^1 (-9394) -> H^0 (-13531)
-At time : 3.1011 ns Reaction : e_aq^-1 (-5979) + H3O^1 (-8385) -> H^0 (-13532)
-At time : 3.1011 ns Reaction : e_aq^-1 (-1712) + H3O^1 (-6356) -> H^0 (-13533)
-At time : 3.1011 ns Reaction : e_aq^-1 (-5162) + e_aq^-1 (-5068) -> OH^-1 (-13534) + OH^-1 (-13535) + H_2^0 (-13536)
-At time : 3.1011 ns Reaction : OH^-1 (-13529) + H3O^1 (-8982) -> No product
-At time : 3.1011 ns Reaction : H3O^1 (-7348) + OH^-1 (-13314) -> No product
-At time : 3.1011 ns Reaction : OH^-1 (-13228) + H3O^1 (-9164) -> No product
-At time : 3.1011 ns Reaction : e_aq^-1 (-105) + H2O2^0 (-11935) -> OH^-1 (-13537) + OH^0 (-13538)
-At time : 3.1011 ns Reaction : H2O2^0 (-11319) + e_aq^-1 (-3533) -> OH^-1 (-13539) + OH^0 (-13540)
-At time : 3.1011 ns Reaction : e_aq^-1 (-3781) + H3O^1 (-10721) -> H^0 (-13541)
-At time : 3.1011 ns Reaction : OH^-1 (-13539) + H3O^1 (-10272) -> No product
-At time : 3.2011 ns Reaction : OH^-1 (-13537) + H3O^1 (-8807) -> No product
-At time : 3.2011 ns Reaction : OH^-1 (-13535) + H3O^1 (-9007) -> No product
-At time : 3.2011 ns Reaction : e_aq^-1 (-5185) + OH^0 (-13493) -> OH^-1 (-13542)
-At time : 3.2011 ns Reaction : H3O^1 (-7433) + OH^-1 (-13488) -> No product
-At time : 3.2011 ns Reaction : OH^-1 (-13437) + H3O^1 (-10358) -> No product
-At time : 3.2011 ns Reaction : OH^-1 (-13296) + H3O^1 (-7640) -> No product
-At time : 3.2011 ns Reaction : e_aq^-1 (-3988) + H^0 (-13170) -> OH^-1 (-13543) + H_2^0 (-13544)
-At time : 3.2011 ns Reaction : e_aq^-1 (-3021) + H3O^1 (-10793) -> H^0 (-13545)
-At time : 3.2011 ns Reaction : e_aq^-1 (-5332) + H3O^1 (-9439) -> H^0 (-13546)
-At time : 3.2011 ns Reaction : e_aq^-1 (-5692) + e_aq^-1 (-3899) -> OH^-1 (-13547) + OH^-1 (-13548) + H_2^0 (-13549)
-At time : 3.2011 ns Reaction : OH^-1 (-13543) + H3O^1 (-9069) -> No product
-At time : 3.2011 ns Reaction : H3O^1 (-8821) + OH^-1 (-13542) -> No product
-At time : 3.2011 ns Reaction : OH^0 (-13419) + e_aq^-1 (-798) -> OH^-1 (-13550)
-At time : 3.2011 ns Reaction : OH^-1 (-12731) + H3O^1 (-7368) -> No product
-At time : 3.3011 ns Reaction : e_aq^-1 (-2590) + H^0 (-13514) -> OH^-1 (-13551) + H_2^0 (-13552)
-At time : 3.3011 ns Reaction : e_aq^-1 (-5591) + H^0 (-13432) -> OH^-1 (-13553) + H_2^0 (-13554)
-At time : 3.3011 ns Reaction : e_aq^-1 (-4060) + H^0 (-13152) -> OH^-1 (-13555) + H_2^0 (-13556)
-At time : 3.3011 ns Reaction : OH^-1 (-12820) + H3O^1 (-10734) -> No product
-At time : 3.3011 ns Reaction : e_aq^-1 (-3700) + H3O^1 (-10484) -> H^0 (-13557)
-At time : 3.3011 ns Reaction : e_aq^-1 (-2808) + H3O^1 (-10418) -> H^0 (-13558)
-At time : 3.3011 ns Reaction : e_aq^-1 (-5202) + H^0 (-10099) -> OH^-1 (-13559) + H_2^0 (-13560)
-At time : 3.3011 ns Reaction : e_aq^-1 (-1404) + H3O^1 (-9431) -> H^0 (-13561)
-At time : 3.3011 ns Reaction : H3O^1 (-7788) + e_aq^-1 (-2403) -> H^0 (-13562)
-At time : 3.3011 ns Reaction : e_aq^-1 (-364) + e_aq^-1 (-5503) -> OH^-1 (-13563) + OH^-1 (-13564) + H_2^0 (-13565)
-At time : 3.3011 ns Reaction : H3O^1 (-5984) + OH^-1 (-12763) -> No product
-At time : 3.3011 ns Reaction : e_aq^-1 (-5492) + e_aq^-1 (-6054) -> OH^-1 (-13566) + OH^-1 (-13567) + H_2^0 (-13568)
-At time : 3.4011 ns Reaction : OH^-1 (-13566) + H3O^1 (-10599) -> No product
-At time : 3.4011 ns Reaction : OH^-1 (-13550) + H3O^1 (-8132) -> No product
-At time : 3.4011 ns Reaction : H3O^1 (-10029) + OH^-1 (-13468) -> No product
-At time : 3.4011 ns Reaction : e_aq^-1 (-1914) + H^0 (-13042) -> OH^-1 (-13569) + H_2^0 (-13570)
-At time : 3.4011 ns Reaction : e_aq^-1 (-2077) + H3O^1 (-9524) -> H^0 (-13571)
-At time : 3.4011 ns Reaction : e_aq^-1 (-4705) + H3O^1 (-8994) -> H^0 (-13572)
-At time : 3.4011 ns Reaction : e_aq^-1 (-5074) + e_aq^-1 (-5865) -> OH^-1 (-13573) + OH^-1 (-13574) + H_2^0 (-13575)
-At time : 3.4011 ns Reaction : e_aq^-1 (-1283) + e_aq^-1 (-5579) -> OH^-1 (-13576) + OH^-1 (-13577) + H_2^0 (-13578)
-At time : 3.4011 ns Reaction : OH^-1 (-13409) + H3O^1 (-6212) -> No product
-At time : 3.4011 ns Reaction : H2O2^0 (-11795) + e_aq^-1 (-3808) -> OH^-1 (-13579) + OH^0 (-13580)
-At time : 3.4011 ns Reaction : H3O^1 (-7195) + OH^-1 (-13579) -> No product
-At time : 3.5011 ns Reaction : OH^-1 (-13567) + H3O^1 (-8785) -> No product
-At time : 3.5011 ns Reaction : H3O^1 (-6059) + OH^-1 (-13555) -> No product
-At time : 3.5011 ns Reaction : H3O^1 (-7673) + OH^-1 (-13523) -> No product
-At time : 3.5011 ns Reaction : OH^0 (-13440) + e_aq^-1 (-4269) -> OH^-1 (-13581)
-At time : 3.5011 ns Reaction : H^0 (-13427) + e_aq^-1 (-1047) -> OH^-1 (-13582) + H_2^0 (-13583)
-At time : 3.5011 ns Reaction : e_aq^-1 (-3802) + H3O^1 (-10420) -> H^0 (-13584)
-At time : 3.5011 ns Reaction : e_aq^-1 (-3651) + H3O^1 (-10172) -> H^0 (-13585)
-At time : 3.5011 ns Reaction : OH^0 (-7353) + OH^0 (-9385) -> H2O2^0 (-13586)
-At time : 3.5011 ns Reaction : e_aq^-1 (-4755) + H3O^1 (-8458) -> H^0 (-13587)
-At time : 3.5011 ns Reaction : OH^-1 (-13582) + H3O^1 (-8370) -> No product
-At time : 3.5011 ns Reaction : OH^-1 (-13581) + H3O^1 (-9248) -> No product
-At time : 3.5011 ns Reaction : OH^-1 (-13559) + H3O^1 (-9654) -> No product
-At time : 3.5011 ns Reaction : H2O2^0 (-12344) + e_aq^-1 (-4488) -> OH^-1 (-13588) + OH^0 (-13589)
-At time : 3.5011 ns Reaction : H2O2^0 (-12177) + e_aq^-1 (-2919) -> OH^-1 (-13590) + OH^0 (-13591)
-At time : 3.5011 ns Reaction : H3O^1 (-11039) + OH^-1 (-13588) -> No product
-At time : 3.6011 ns Reaction : H3O^1 (-7273) + OH^-1 (-13569) -> No product
-At time : 3.6011 ns Reaction : e_aq^-1 (-1705) + OH^0 (-13540) -> OH^-1 (-13592)
-At time : 3.6011 ns Reaction : H3O^1 (-7090) + OH^-1 (-13534) -> No product
-At time : 3.6011 ns Reaction : OH^-1 (-13316) + H3O^1 (-6902) -> No product
-At time : 3.6011 ns Reaction : e_aq^-1 (-2702) + H^0 (-13197) -> OH^-1 (-13593) + H_2^0 (-13594)
-At time : 3.6011 ns Reaction : H3O^1 (-10184) + OH^-1 (-13130) -> No product
-At time : 3.6011 ns Reaction : OH^-1 (-13030) + H3O^1 (-6095) -> No product
-At time : 3.6011 ns Reaction : e_aq^-1 (-2753) + H3O^1 (-10535) -> H^0 (-13595)
-At time : 3.6011 ns Reaction : e_aq^-1 (-6021) + H3O^1 (-9931) -> H^0 (-13596)
-At time : 3.6011 ns Reaction : e_aq^-1 (-1079) + H3O^1 (-9061) -> H^0 (-13597)
-At time : 3.6011 ns Reaction : e_aq^-1 (-1100) + H3O^1 (-8795) -> H^0 (-13598)
-At time : 3.6011 ns Reaction : e_aq^-1 (-3561) + H3O^1 (-8158) -> H^0 (-13599)
-At time : 3.6011 ns Reaction : e_aq^-1 (-3595) + e_aq^-1 (-5387) -> OH^-1 (-13600) + OH^-1 (-13601) + H_2^0 (-13602)
-At time : 3.6011 ns Reaction : H3O^1 (-7944) + OH^-1 (-13590) -> No product
-At time : 3.7011 ns Reaction : OH^-1 (-13574) + H3O^1 (-9481) -> No product
-At time : 3.7011 ns Reaction : OH^-1 (-13548) + H3O^1 (-9330) -> No product
-At time : 3.7011 ns Reaction : e_aq^-1 (-5465) + H^0 (-13400) -> OH^-1 (-13603) + H_2^0 (-13604)
-At time : 3.7011 ns Reaction : H3O^1 (-5921) + OH^-1 (-13268) -> No product
-At time : 3.7011 ns Reaction : e_aq^-1 (-2086) + H^0 (-13244) -> OH^-1 (-13605) + H_2^0 (-13606)
-At time : 3.7011 ns Reaction : H^0 (-13044) + e_aq^-1 (-2533) -> OH^-1 (-13607) + H_2^0 (-13608)
-At time : 3.7011 ns Reaction : OH^0 (-10727) + OH^0 (-10768) -> H2O2^0 (-13609)
-At time : 3.7011 ns Reaction : e_aq^-1 (-3598) + H3O^1 (-10687) -> H^0 (-13610)
-At time : 3.7011 ns Reaction : e_aq^-1 (-2604) + H3O^1 (-9787) -> H^0 (-13611)
-At time : 3.7011 ns Reaction : OH^-1 (-13605) + H3O^1 (-9630) -> No product
-At time : 3.7011 ns Reaction : OH^-1 (-13547) + H3O^1 (-8742) -> No product
-At time : 3.7011 ns Reaction : H2O2^0 (-11633) + e_aq^-1 (-4171) -> OH^-1 (-13612) + OH^0 (-13613)
-At time : 3.7011 ns Reaction : H3O^1 (-9632) + OH^-1 (-13612) -> No product
-At time : 3.8011 ns Reaction : OH^-1 (-13592) + H3O^1 (-8954) -> No product
-At time : 3.8011 ns Reaction : e_aq^-1 (-351) + H^0 (-13557) -> OH^-1 (-13614) + H_2^0 (-13615)
-At time : 3.8011 ns Reaction : H3O^1 (-7006) + OH^-1 (-13462) -> No product
-At time : 3.8011 ns Reaction : H3O^1 (-6281) + OH^-1 (-13084) -> No product
-At time : 3.8011 ns Reaction : e_aq^-1 (-4667) + H3O^1 (-10533) -> H^0 (-13616)
-At time : 3.8011 ns Reaction : e_aq^-1 (-5511) + H3O^1 (-10340) -> H^0 (-13617)
-At time : 3.8011 ns Reaction : e_aq^-1 (-5206) + H3O^1 (-5816) -> H^0 (-13618)
-At time : 3.8011 ns Reaction : H3O^1 (-9943) + OH^-1 (-13319) -> No product
-At time : 3.8011 ns Reaction : H^0 (-12862) + H^0 (-13232) -> H_2^0 (-13619)
-At time : 3.9011 ns Reaction : OH^-1 (-13517) + H3O^1 (-6062) -> No product
-At time : 3.9011 ns Reaction : OH^-1 (-13063) + H3O^1 (-9656) -> No product
-At time : 3.9011 ns Reaction : OH^-1 (-12732) + H3O^1 (-6116) -> No product
-At time : 3.9011 ns Reaction : OH^-1 (-12684) + H3O^1 (-10777) -> No product
-At time : 3.9011 ns Reaction : e_aq^-1 (-3696) + H3O^1 (-10130) -> H^0 (-13620)
-At time : 3.9011 ns Reaction : e_aq^-1 (-2522) + H3O^1 (-9686) -> H^0 (-13621)
-At time : 3.9011 ns Reaction : e_aq^-1 (-4536) + H3O^1 (-9642) -> H^0 (-13622)
-At time : 3.9011 ns Reaction : H3O^1 (-7790) + e_aq^-1 (-4693) -> H^0 (-13623)
-At time : 4.0011 ns Reaction : OH^-1 (-13370) + H3O^1 (-10492) -> No product
-At time : 4.0011 ns Reaction : OH^-1 (-13297) + H3O^1 (-10213) -> No product
-At time : 4.0011 ns Reaction : H^0 (-13169) + e_aq^-1 (-3013) -> OH^-1 (-13624) + H_2^0 (-13625)
-At time : 4.0011 ns Reaction : e_aq^-1 (-2328) + H^0 (-13128) -> OH^-1 (-13626) + H_2^0 (-13627)
-At time : 4.0011 ns Reaction : e_aq^-1 (-1880) + H^0 (-12940) -> OH^-1 (-13628) + H_2^0 (-13629)
-At time : 4.0011 ns Reaction : OH^-1 (-12912) + H3O^1 (-8956) -> No product
-At time : 4.0011 ns Reaction : H2O2^0 (-11705) + e_aq^-1 (-2044) -> OH^-1 (-13630) + OH^0 (-13631)
-At time : 4.0011 ns Reaction : e_aq^-1 (-4065) + H3O^1 (-9085) -> H^0 (-13632)
-At time : 4.0011 ns Reaction : e_aq^-1 (-4504) + H3O^1 (-7766) -> H^0 (-13633)
-At time : 4.0011 ns Reaction : e_aq^-1 (-2627) + e_aq^-1 (-6411) -> OH^-1 (-13634) + OH^-1 (-13635) + H_2^0 (-13636)
-At time : 4.0011 ns Reaction : e_aq^-1 (-1941) + e_aq^-1 (-5223) -> OH^-1 (-13637) + OH^-1 (-13638) + H_2^0 (-13639)
-At time : 4.0011 ns Reaction : OH^0 (-13442) + e_aq^-1 (-2948) -> OH^-1 (-13640)
-At time : 4.0011 ns Reaction : e_aq^-1 (-5262) + OH^0 (-13103) -> OH^-1 (-13641)
-At time : 4.0011 ns Reaction : e_aq^-1 (-2968) + H^0 (-12899) -> OH^-1 (-13642) + H_2^0 (-13643)
-At time : 4.0011 ns Reaction : H3O^1 (-6134) + OH^-1 (-13642) -> No product
-At time : 4.0011 ns Reaction : OH^-1 (-13641) + H3O^1 (-6963) -> No product
-At time : 4.0011 ns Reaction : OH^-1 (-13640) + H3O^1 (-10422) -> No product
-At time : 4.1011 ns Reaction : OH^-1 (-13638) + H3O^1 (-9967) -> No product
-At time : 4.1011 ns Reaction : OH^-1 (-13634) + H3O^1 (-6203) -> No product
-At time : 4.1011 ns Reaction : OH^-1 (-13630) + H3O^1 (-10669) -> No product
-At time : 4.1011 ns Reaction : H3O^1 (-6884) + OH^-1 (-13628) -> No product
-At time : 4.1011 ns Reaction : H3O^1 (-5939) + OH^-1 (-13607) -> No product
-At time : 4.1011 ns Reaction : H3O^1 (-11067) + OH^-1 (-13593) -> No product
-At time : 4.1011 ns Reaction : e_aq^-1 (-2080) + H^0 (-13434) -> OH^-1 (-13644) + H_2^0 (-13645)
-At time : 4.1011 ns Reaction : e_aq^-1 (-3760) + H^0 (-13242) -> OH^-1 (-13646) + H_2^0 (-13647)
-At time : 4.1011 ns Reaction : e_aq^-1 (-5389) + H3O^1 (-9489) -> H^0 (-13648)
-At time : 4.1011 ns Reaction : e_aq^-1 (-5213) + H3O^1 (-8892) -> H^0 (-13649)
-At time : 4.1011 ns Reaction : e_aq^-1 (-398) + H3O^1 (-7741) -> H^0 (-13650)
-At time : 4.1011 ns Reaction : H3O^1 (-7608) + e_aq^-1 (-4170) -> H^0 (-13651)
-At time : 4.1011 ns Reaction : H2O2^0 (-12428) + e_aq^-1 (-4650) -> OH^-1 (-13652) + OH^0 (-13653)
-At time : 4.1011 ns Reaction : e_aq^-1 (-4317) + H3O^1 (-8932) -> H^0 (-13654)
-At time : 4.2011 ns Reaction : OH^-1 (-13626) + H3O^1 (-8217) -> No product
-At time : 4.2011 ns Reaction : e_aq^-1 (-2052) + H2O2^0 (-13586) -> OH^-1 (-13655) + OH^0 (-13656)
-At time : 4.2011 ns Reaction : e_aq^-1 (-5139) + H^0 (-13545) -> OH^-1 (-13657) + H_2^0 (-13658)
-At time : 4.2011 ns Reaction : e_aq^-1 (-5214) + H3O^1 (-10715) -> H^0 (-13659)
-At time : 4.2011 ns Reaction : e_aq^-1 (-5541) + H3O^1 (-9925) -> H^0 (-13660)
-At time : 4.2011 ns Reaction : e_aq^-1 (-5073) + H3O^1 (-7971) -> H^0 (-13661)
-At time : 4.2011 ns Reaction : e_aq^-1 (-2349) + e_aq^-1 (-3826) -> OH^-1 (-13662) + OH^-1 (-13663) + H_2^0 (-13664)
-At time : 4.2011 ns Reaction : OH^-1 (-13652) + H3O^1 (-8227) -> No product
-At time : 4.2011 ns Reaction : H3O^1 (-7900) + OH^-1 (-13227) -> No product
-At time : 4.3011 ns Reaction : OH^-1 (-13655) + H3O^1 (-10480) -> No product
-At time : 4.3011 ns Reaction : OH^-1 (-13553) + H3O^1 (-5834) -> No product
-At time : 4.3011 ns Reaction : H3O^1 (-6236) + OH^-1 (-13424) -> No product
-At time : 4.3011 ns Reaction : OH^-1 (-13422) + H3O^1 (-7269) -> No product
-At time : 4.3011 ns Reaction : H^0 (-13173) + OH^0 (-8245) -> No product
-At time : 4.3011 ns Reaction : e_aq^-1 (-5077) + H2O2^0 (-12705) -> OH^-1 (-13665) + OH^0 (-13666)
-At time : 4.3011 ns Reaction : OH^-1 (-12671) + H3O^1 (-9888) -> No product
-At time : 4.3011 ns Reaction : e_aq^-1 (-5508) + e_aq^-1 (-4710) -> OH^-1 (-13667) + OH^-1 (-13668) + H_2^0 (-13669)
-At time : 4.3011 ns Reaction : OH^-1 (-13657) + H3O^1 (-8219) -> No product
-At time : 4.3011 ns Reaction : e_aq^-1 (-5607) + OH^0 (-9101) -> OH^-1 (-13670)
-At time : 4.4011 ns Reaction : H3O^1 (-7716) + OH^-1 (-13670) -> No product
-At time : 4.4011 ns Reaction : H3O^1 (-7219) + OH^-1 (-13665) -> No product
-At time : 4.4011 ns Reaction : OH^0 (-13656) + e_aq^-1 (-4366) -> OH^-1 (-13671)
-At time : 4.4011 ns Reaction : OH^-1 (-13510) + H3O^1 (-9710) -> No product
-At time : 4.4011 ns Reaction : OH^-1 (-13471) + H3O^1 (-8532) -> No product
-At time : 4.4011 ns Reaction : e_aq^-1 (-533) + H3O^1 (-10247) -> H^0 (-13672)
-At time : 4.4011 ns Reaction : e_aq^-1 (-3968) + H3O^1 (-9961) -> H^0 (-13673)
-At time : 4.4011 ns Reaction : e_aq^-1 (-2853) + H3O^1 (-8518) -> H^0 (-13674)
-At time : 4.4011 ns Reaction : e_aq^-1 (-5599) + e_aq^-1 (-6273) -> OH^-1 (-13675) + OH^-1 (-13676) + H_2^0 (-13677)
-At time : 4.4011 ns Reaction : H^0 (-13596) + e_aq^-1 (-6270) -> OH^-1 (-13678) + H_2^0 (-13679)
-At time : 4.4011 ns Reaction : OH^0 (-13465) + e_aq^-1 (-4375) -> OH^-1 (-13680)
-At time : 4.4011 ns Reaction : e_aq^-1 (-5904) + OH^0 (-8743) -> OH^-1 (-13681)
-At time : 4.5011 ns Reaction : OH^-1 (-13680) + H3O^1 (-9969) -> No product
-At time : 4.5011 ns Reaction : OH^-1 (-13678) + H3O^1 (-6410) -> No product
-At time : 4.5011 ns Reaction : OH^-1 (-13663) + H3O^1 (-9644) -> No product
-At time : 4.5011 ns Reaction : H3O^1 (-7096) + OH^-1 (-13472) -> No product
-At time : 4.5011 ns Reaction : H^0 (-13214) + e_aq^-1 (-5190) -> OH^-1 (-13682) + H_2^0 (-13683)
-At time : 4.5011 ns Reaction : OH^-1 (-12966) + H3O^1 (-8685) -> No product
-At time : 4.5011 ns Reaction : OH^-1 (-12707) + H3O^1 (-10523) -> No product
-At time : 4.5011 ns Reaction : H2O2^0 (-12108) + e_aq^-1 (-4389) -> OH^-1 (-13684) + OH^0 (-13685)
-At time : 4.5011 ns Reaction : e_aq^-1 (-2392) + H3O^1 (-10378) -> H^0 (-13686)
-At time : 4.5011 ns Reaction : e_aq^-1 (-5093) + e_aq^-1 (-1609) -> OH^-1 (-13687) + OH^-1 (-13688) + H_2^0 (-13689)
-At time : 4.5011 ns Reaction : OH^-1 (-13684) + H3O^1 (-8787) -> No product
-At time : 4.5011 ns Reaction : H3O^1 (-7712) + OH^-1 (-12776) -> No product
-At time : 4.5011 ns Reaction : e_aq^-1 (-4614) + H2O2^0 (-12454) -> OH^-1 (-13690) + OH^0 (-13691)
-At time : 4.5011 ns Reaction : e_aq^-1 (-3656) + H3O^1 (-10437) -> H^0 (-13692)
-At time : 4.5011 ns Reaction : OH^-1 (-13690) + H3O^1 (-9522) -> No product
-At time : 4.6011 ns Reaction : H3O^1 (-6053) + OH^-1 (-13682) -> No product
-At time : 4.6011 ns Reaction : OH^-1 (-13681) + H3O^1 (-10159) -> No product
-At time : 4.6011 ns Reaction : OH^-1 (-13646) + H3O^1 (-10699) -> No product
-At time : 4.6011 ns Reaction : H3O^1 (-7985) + OH^-1 (-13369) -> No product
-At time : 4.6011 ns Reaction : e_aq^-1 (-1988) + H^0 (-13094) -> OH^-1 (-13693) + H_2^0 (-13694)
-At time : 4.6011 ns Reaction : H2O2^0 (-12386) + e_aq^-1 (-1365) -> OH^-1 (-13695) + OH^0 (-13696)
-At time : 4.6011 ns Reaction : e_aq^-1 (-610) + H3O^1 (-9704) -> H^0 (-13697)
-At time : 4.6011 ns Reaction : e_aq^-1 (-2373) + H3O^1 (-9620) -> H^0 (-13698)
-At time : 4.6011 ns Reaction : OH^0 (-13385) + e_aq^-1 (-5095) -> OH^-1 (-13699)
-At time : 4.6011 ns Reaction : H2O2^0 (-12385) + e_aq^-1 (-5174) -> OH^-1 (-13700) + OH^0 (-13701)
-At time : 4.7011 ns Reaction : OH^-1 (-13699) + H3O^1 (-10319) -> No product
-At time : 4.7011 ns Reaction : H3O^1 (-5969) + OH^-1 (-13671) -> No product
-At time : 4.7011 ns Reaction : OH^-1 (-13635) + H3O^1 (-8440) -> No product
-At time : 4.7011 ns Reaction : H3O^1 (-8040) + OH^-1 (-13624) -> No product
-At time : 4.7011 ns Reaction : OH^-1 (-13360) + H3O^1 (-9223) -> No product
-At time : 4.7011 ns Reaction : e_aq^-1 (-561) + H^0 (-13301) -> OH^-1 (-13702) + H_2^0 (-13703)
-At time : 4.7011 ns Reaction : OH^-1 (-12850) + H3O^1 (-10498) -> No product
-At time : 4.7011 ns Reaction : H2O2^0 (-11617) + e_aq^-1 (-6177) -> OH^-1 (-13704) + OH^0 (-13705)
-At time : 4.7011 ns Reaction : e_aq^-1 (-2685) + H3O^1 (-10298) -> H^0 (-13706)
-At time : 4.7011 ns Reaction : H3O^1 (-7458) + e_aq^-1 (-5105) -> H^0 (-13707)
-At time : 4.7011 ns Reaction : e_aq^-1 (-5379) + e_aq^-1 (-3539) -> OH^-1 (-13708) + OH^-1 (-13709) + H_2^0 (-13710)
-At time : 4.7011 ns Reaction : H3O^1 (-8054) + OH^-1 (-13704) -> No product
-At time : 4.7011 ns Reaction : OH^-1 (-13489) + H3O^1 (-9530) -> No product
-At time : 4.7011 ns Reaction : e_aq^-1 (-2698) + H2O2^0 (-11426) -> OH^-1 (-13711) + OH^0 (-13712)
-At time : 4.7011 ns Reaction : OH^-1 (-13711) + H3O^1 (-10681) -> No product
-At time : 4.8011 ns Reaction : H3O^1 (-7960) + OH^-1 (-13700) -> No product
-At time : 4.8011 ns Reaction : H^0 (-13584) + e_aq^-1 (-6135) -> OH^-1 (-13713) + H_2^0 (-13714)
-At time : 4.8011 ns Reaction : H3O^1 (-6041) + OH^-1 (-13576) -> No product
-At time : 4.8011 ns Reaction : OH^-1 (-13486) + H3O^1 (-8908) -> No product
-At time : 4.8011 ns Reaction : H3O^1 (-8256) + OH^-1 (-13436) -> No product
-At time : 4.8011 ns Reaction : e_aq^-1 (-4322) + H2O2^0 (-12654) -> OH^-1 (-13715) + OH^0 (-13716)
-At time : 4.8011 ns Reaction : e_aq^-1 (-1232) + H3O^1 (-6401) -> H^0 (-13717)
-At time : 4.8011 ns Reaction : e_aq^-1 (-3507) + H3O^1 (-6242) -> H^0 (-13718)
-At time : 4.8011 ns Reaction : OH^-1 (-13715) + H3O^1 (-8415) -> No product
-At time : 4.8011 ns Reaction : H2O2^0 (-12016) + e_aq^-1 (-4858) -> OH^-1 (-13719) + OH^0 (-13720)
-At time : 4.9011 ns Reaction : OH^-1 (-13573) + H3O^1 (-7041) -> No product
-At time : 4.9011 ns Reaction : e_aq^-1 (-2784) + H^0 (-13561) -> OH^-1 (-13721) + H_2^0 (-13722)
-At time : 4.9011 ns Reaction : OH^-1 (-13293) + H3O^1 (-8134) -> No product
-At time : 4.9011 ns Reaction : e_aq^-1 (-3569) + H^0 (-13282) -> OH^-1 (-13723) + H_2^0 (-13724)
-At time : 4.9011 ns Reaction : e_aq^-1 (-502) + H^0 (-13147) -> OH^-1 (-13725) + H_2^0 (-13726)
-At time : 4.9011 ns Reaction : e_aq^-1 (-4942) + H^0 (-12863) -> OH^-1 (-13727) + H_2^0 (-13728)
-At time : 4.9011 ns Reaction : OH^-1 (-12805) + H3O^1 (-6215) -> No product
-At time : 4.9011 ns Reaction : e_aq^-1 (-5004) + H3O^1 (-9981) -> H^0 (-13729)
-At time : 4.9011 ns Reaction : H2O2^0 (-11987) + e_aq^-1 (-4411) -> OH^-1 (-13730) + OH^0 (-13731)
-At time : 5.0011 ns Reaction : H3O^1 (-7902) + OH^-1 (-13730) -> No product
-At time : 5.0011 ns Reaction : OH^-1 (-13727) + H3O^1 (-10456) -> No product
-At time : 5.0011 ns Reaction : H3O^1 (-9406) + OH^-1 (-13725) -> No product
-At time : 5.0011 ns Reaction : H3O^1 (-5876) + OH^-1 (-13693) -> No product
-At time : 5.0011 ns Reaction : H^0 (-13661) + e_aq^-1 (-1976) -> OH^-1 (-13732) + H_2^0 (-13733)
-At time : 5.0011 ns Reaction : OH^-1 (-13564) + H3O^1 (-9763) -> No product
-At time : 5.0011 ns Reaction : OH^-1 (-13516) + H3O^1 (-8260) -> No product
-At time : 5.0011 ns Reaction : H3O^1 (-7465) + OH^-1 (-13382) -> No product
-At time : 5.0011 ns Reaction : e_aq^-1 (-560) + H2O2^0 (-13177) -> OH^-1 (-13734) + OH^0 (-13735)
-At time : 5.0011 ns Reaction : e_aq^-1 (-3911) + H^0 (-12982) -> OH^-1 (-13736) + H_2^0 (-13737)
-At time : 5.0011 ns Reaction : OH^-1 (-12849) + H3O^1 (-9246) -> No product
-At time : 5.0011 ns Reaction : e_aq^-1 (-3966) + H3O^1 (-9854) -> H^0 (-13738)
-At time : 5.0011 ns Reaction : e_aq^-1 (-4940) + H3O^1 (-9581) -> H^0 (-13739)
-At time : 5.0011 ns Reaction : e_aq^-1 (-3678) + e_aq^-1 (-5527) -> OH^-1 (-13740) + OH^-1 (-13741) + H_2^0 (-13742)
-At time : 5.0011 ns Reaction : H3O^1 (-6038) + OH^-1 (-13736) -> No product
-At time : 5.0011 ns Reaction : H3O^1 (-7167) + OH^-1 (-13497) -> No product
-At time : 5.1011 ns Reaction : H3O^1 (-6918) + OH^-1 (-13734) -> No product
-At time : 5.1011 ns Reaction : H3O^1 (-7082) + OH^-1 (-13459) -> No product
-At time : 5.1011 ns Reaction : H2O2^0 (-13433) + e_aq^-1 (-3744) -> OH^-1 (-13743) + OH^0 (-13744)
-At time : 5.1011 ns Reaction : e_aq^-1 (-202) + H^0 (-13349) -> OH^-1 (-13745) + H_2^0 (-13746)
-At time : 5.1011 ns Reaction : e_aq^-1 (-4182) + H^0 (-13235) -> OH^-1 (-13747) + H_2^0 (-13748)
-At time : 5.1011 ns Reaction : OH^0 (-8159) + H^0 (-13216) -> No product
-At time : 5.1011 ns Reaction : e_aq^-1 (-1882) + H^0 (-12589) -> OH^-1 (-13749) + H_2^0 (-13750)
-At time : 5.1011 ns Reaction : e_aq^-1 (-5012) + H3O^1 (-8334) -> H^0 (-13751)
-At time : 5.1011 ns Reaction : H3O^1 (-5870) + OH^-1 (-13749) -> No product
-At time : 5.1011 ns Reaction : OH^-1 (-13743) + H3O^1 (-9005) -> No product
-At time : 5.1011 ns Reaction : H3O^1 (-7478) + OH^-1 (-13719) -> No product
-At time : 5.1011 ns Reaction : H3O^1 (-8172) + OH^-1 (-13695) -> No product
-At time : 5.2011 ns Reaction : OH^-1 (-13732) + H3O^1 (-9546) -> No product
-At time : 5.2011 ns Reaction : H3O^1 (-8920) + OH^-1 (-13713) -> No product
-At time : 5.2011 ns Reaction : OH^-1 (-13702) + H3O^1 (-9011) -> No product
-At time : 5.2011 ns Reaction : OH^-1 (-13326) + H3O^1 (-10750) -> No product
-At time : 5.2011 ns Reaction : OH^-1 (-13322) + H3O^1 (-9900) -> No product
-At time : 5.2011 ns Reaction : OH^-1 (-12723) + H3O^1 (-10563) -> No product
-At time : 5.2011 ns Reaction : e_aq^-1 (-4295) + H3O^1 (-10334) -> H^0 (-13752)
-At time : 5.2011 ns Reaction : e_aq^-1 (-688) + e_aq^-1 (-3797) -> OH^-1 (-13753) + OH^-1 (-13754) + H_2^0 (-13755)
-At time : 5.2011 ns Reaction : e_aq^-1 (-4931) + H3O^1 (-8102) -> H^0 (-13756)
-At time : 5.3011 ns Reaction : e_aq^-1 (-4586) + OH^0 (-13653) -> OH^-1 (-13757)
-At time : 5.3011 ns Reaction : H3O^1 (-6065) + OH^-1 (-13644) -> No product
-At time : 5.3011 ns Reaction : H3O^1 (-5933) + OH^-1 (-13461) -> No product
-At time : 5.3011 ns Reaction : OH^-1 (-13340) + H3O^1 (-9203) -> No product
-At time : 5.3011 ns Reaction : e_aq^-1 (-2426) + H^0 (-13043) -> OH^-1 (-13758) + H_2^0 (-13759)
-At time : 5.3011 ns Reaction : OH^-1 (-12784) + H3O^1 (-7606) -> No product
-At time : 5.3011 ns Reaction : e_aq^-1 (-5515) + H3O^1 (-10781) -> H^0 (-13760)
-At time : 5.3011 ns Reaction : e_aq^-1 (-2999) + H3O^1 (-10086) -> H^0 (-13761)
-At time : 5.3011 ns Reaction : e_aq^-1 (-4332) + H3O^1 (-9690) -> H^0 (-13762)
-At time : 5.3011 ns Reaction : e_aq^-1 (-3843) + e_aq^-1 (-3527) -> OH^-1 (-13763) + OH^-1 (-13764) + H_2^0 (-13765)
-At time : 5.3011 ns Reaction : OH^-1 (-13757) + H3O^1 (-10583) -> No product
-At time : 5.3011 ns Reaction : e_aq^-1 (-3927) + H3O^1 (-10235) -> H^0 (-13766)
-At time : 5.3011 ns Reaction : H3O^1 (-7454) + e_aq^-1 (-3062) -> H^0 (-13767)
-At time : 5.4011 ns Reaction : OH^-1 (-13747) + H3O^1 (-10836) -> No product
-At time : 5.4011 ns Reaction : e_aq^-1 (-283) + OH^0 (-13716) -> OH^-1 (-13768)
-At time : 5.4011 ns Reaction : H^0 (-12718) + e_aq^-1 (-4868) -> OH^-1 (-13769) + H_2^0 (-13770)
-At time : 5.4011 ns Reaction : H2O2^0 (-12173) + e_aq^-1 (-4848) -> OH^-1 (-13771) + OH^0 (-13772)
-At time : 5.5011 ns Reaction : OH^-1 (-13768) + H3O^1 (-10400) -> No product
-At time : 5.5011 ns Reaction : H3O^1 (-9417) + OH^-1 (-12683) -> No product
-At time : 5.5011 ns Reaction : e_aq^-1 (-912) + H3O^1 (-8534) -> H^0 (-13773)
-At time : 5.5011 ns Reaction : OH^-1 (-13769) + H3O^1 (-9272) -> No product
-At time : 5.6011 ns Reaction : e_aq^-1 (-1050) + H^0 (-13717) -> OH^-1 (-13774) + H_2^0 (-13775)
-At time : 5.6011 ns Reaction : H^0 (-13477) + e_aq^-1 (-6384) -> OH^-1 (-13776) + H_2^0 (-13777)
-At time : 5.6011 ns Reaction : H3O^1 (-9326) + OH^-1 (-13323) -> No product
-At time : 5.6011 ns Reaction : e_aq^-1 (-3902) + H3O^1 (-10791) -> H^0 (-13778)
-At time : 5.6011 ns Reaction : e_aq^-1 (-4999) + H3O^1 (-7810) -> H^0 (-13779)
-At time : 5.6011 ns Reaction : e_aq^-1 (-2728) + H3O^1 (-6050) -> H^0 (-13780)
-At time : 5.6011 ns Reaction : e_aq^-1 (-3861) + e_aq^-1 (-4659) -> OH^-1 (-13781) + OH^-1 (-13782) + H_2^0 (-13783)
-At time : 5.6011 ns Reaction : H3O^1 (-6143) + OH^-1 (-13723) -> No product
-At time : 5.6011 ns Reaction : e_aq^-1 (-5293) + OH^0 (-9335) -> OH^-1 (-13784)
-At time : 5.7011 ns Reaction : H3O^1 (-10396) + OH^-1 (-13740) -> No product
-At time : 5.7011 ns Reaction : OH^0 (-13691) + e_aq^-1 (-4851) -> OH^-1 (-13785)
-At time : 5.7011 ns Reaction : H3O^1 (-6974) + OH^-1 (-12826) -> No product
-At time : 5.7011 ns Reaction : e_aq^-1 (-2980) + H3O^1 (-10208) -> H^0 (-13786)
-At time : 5.7011 ns Reaction : e_aq^-1 (-5045) + H3O^1 (-9031) -> H^0 (-13787)
-At time : 5.7011 ns Reaction : e_aq^-1 (-3880) + e_aq^-1 (-2796) -> OH^-1 (-13788) + OH^-1 (-13789) + H_2^0 (-13790)
-At time : 5.8011 ns Reaction : OH^-1 (-13782) + H3O^1 (-7704) -> No product
-At time : 5.8011 ns Reaction : H3O^1 (-7035) + OH^-1 (-13771) -> No product
-At time : 5.8011 ns Reaction : e_aq^-1 (-2896) + H^0 (-13760) -> OH^-1 (-13791) + H_2^0 (-13792)
-At time : 5.8011 ns Reaction : OH^0 (-13705) + H^0 (-13610) -> No product
-At time : 5.8011 ns Reaction : e_aq^-1 (-2514) + H^0 (-13651) -> OH^-1 (-13793) + H_2^0 (-13794)
-At time : 5.8011 ns Reaction : e_aq^-1 (-3534) + H^0 (-13572) -> OH^-1 (-13795) + H_2^0 (-13796)
-At time : 5.8011 ns Reaction : H^0 (-12993) + H^0 (-13546) -> H_2^0 (-13797)
-At time : 5.8011 ns Reaction : OH^-1 (-13507) + H3O^1 (-9445) -> No product
-At time : 5.8011 ns Reaction : H3O^1 (-9795) + OH^-1 (-13406) -> No product
-At time : 5.8011 ns Reaction : OH^-1 (-13307) + H3O^1 (-5999) -> No product
-At time : 5.8011 ns Reaction : e_aq^-1 (-4070) + H^0 (-12887) -> OH^-1 (-13798) + H_2^0 (-13799)
-At time : 5.8011 ns Reaction : e_aq^-1 (-4502) + H2O2^0 (-11831) -> OH^-1 (-13800) + OH^0 (-13801)
-At time : 5.8011 ns Reaction : e_aq^-1 (-2129) + H3O^1 (-8872) -> H^0 (-13802)
-At time : 5.8011 ns Reaction : OH^-1 (-13798) + H3O^1 (-7444) -> No product
-At time : 5.8011 ns Reaction : H3O^1 (-7625) + OH^-1 (-13784) -> No product
-At time : 5.8011 ns Reaction : H2O2^0 (-12063) + e_aq^-1 (-2576) -> OH^-1 (-13803) + OH^0 (-13804)
-At time : 5.8011 ns Reaction : H3O^1 (-7948) + e_aq^-1 (-2093) -> H^0 (-13805)
-At time : 5.9011 ns Reaction : OH^-1 (-13800) + H3O^1 (-10651) -> No product
-At time : 5.9011 ns Reaction : H3O^1 (-6455) + OH^-1 (-13785) -> No product
-At time : 5.9011 ns Reaction : OH^-1 (-13781) + H3O^1 (-7650) -> No product
-At time : 5.9011 ns Reaction : OH^-1 (-13745) + H3O^1 (-9258) -> No product
-At time : 5.9011 ns Reaction : H^0 (-13597) + e_aq^-1 (-2390) -> OH^-1 (-13806) + H_2^0 (-13807)
-At time : 5.9011 ns Reaction : OH^-1 (-13551) + H3O^1 (-6305) -> No product
-At time : 5.9011 ns Reaction : OH^-1 (-13393) + H3O^1 (-9742) -> No product
-At time : 5.9011 ns Reaction : e_aq^-1 (-6396) + H3O^1 (-8934) -> H^0 (-13808)
-At time : 5.9011 ns Reaction : e_aq^-1 (-3917) + e_aq^-1 (-4814) -> OH^-1 (-13809) + OH^-1 (-13810) + H_2^0 (-13811)
-At time : 5.9011 ns Reaction : H3O^1 (-8387) + OH^-1 (-13803) -> No product
-At time : 5.9011 ns Reaction : H3O^1 (-7772) + OH^-1 (-13776) -> No product
-At time : 5.9011 ns Reaction : H2O2^0 (-11378) + e_aq^-1 (-4784) -> OH^-1 (-13812) + OH^0 (-13813)
-At time : 6.0011 ns Reaction : OH^-1 (-13812) + H3O^1 (-9680) -> No product
-At time : 6.0011 ns Reaction : H3O^1 (-8004) + OH^-1 (-13795) -> No product
-At time : 6.0011 ns Reaction : OH^-1 (-13758) + H3O^1 (-6146) -> No product
-At time : 6.0011 ns Reaction : OH^-1 (-13614) + H3O^1 (-9829) -> No product
-At time : 6.0011 ns Reaction : e_aq^-1 (-2260) + H2O2^0 (-12549) -> OH^-1 (-13814) + OH^0 (-13815)
-At time : 6.0011 ns Reaction : e_aq^-1 (-2177) + H3O^1 (-10276) -> H^0 (-13816)
-At time : 6.0011 ns Reaction : e_aq^-1 (-930) + e_aq^-1 (-6465) -> OH^-1 (-13817) + OH^-1 (-13818) + H_2^0 (-13819)
-At time : 6.0011 ns Reaction : e_aq^-1 (-1986) + e_aq^-1 (-5645) -> OH^-1 (-13820) + OH^-1 (-13821) + H_2^0 (-13822)
-At time : 6.0011 ns Reaction : H3O^1 (-8052) + OH^-1 (-13373) -> No product
-At time : 6.0011 ns Reaction : e_aq^-1 (-2127) + H2O2^0 (-11522) -> OH^-1 (-13823) + OH^0 (-13824)
-At time : 6.1011 ns Reaction : OH^-1 (-13806) + H3O^1 (-8160) -> No product
-At time : 6.1011 ns Reaction : H3O^1 (-5849) + OH^-1 (-13662) -> No product
-At time : 6.1011 ns Reaction : OH^-1 (-13563) + H3O^1 (-10268) -> No product
-At time : 6.1011 ns Reaction : OH^0 (-13366) + OH^0 (-10658) -> H2O2^0 (-13825)
-At time : 6.1011 ns Reaction : OH^-1 (-13036) + H3O^1 (-9093) -> No product
-At time : 6.1011 ns Reaction : e_aq^-1 (-2730) + H3O^1 (-10783) -> H^0 (-13826)
-At time : 6.1011 ns Reaction : e_aq^-1 (-4454) + H3O^1 (-9616) -> H^0 (-13827)
-At time : 6.1011 ns Reaction : e_aq^-1 (-2706) + e_aq^-1 (-5829) -> OH^-1 (-13828) + OH^-1 (-13829) + H_2^0 (-13830)
-At time : 6.1011 ns Reaction : e_aq^-1 (-3771) + e_aq^-1 (-4877) -> OH^-1 (-13831) + OH^-1 (-13832) + H_2^0 (-13833)
-At time : 6.1011 ns Reaction : OH^-1 (-13456) + H3O^1 (-9884) -> No product
-At time : 6.1011 ns Reaction : e_aq^-1 (-3720) + H3O^1 (-6861) -> H^0 (-13834)
-At time : 6.2011 ns Reaction : OH^-1 (-13832) + H3O^1 (-9858) -> No product
-At time : 6.2011 ns Reaction : H3O^1 (-7708) + OH^-1 (-13793) -> No product
-At time : 6.2011 ns Reaction : e_aq^-1 (-679) + H^0 (-13692) -> OH^-1 (-13835) + H_2^0 (-13836)
-At time : 6.2011 ns Reaction : H^0 (-13595) + e_aq^-1 (-5369) -> OH^-1 (-13837) + H_2^0 (-13838)
-At time : 6.2011 ns Reaction : e_aq^-1 (-1119) + H3O^1 (-10615) -> H^0 (-13839)
-At time : 6.2011 ns Reaction : OH^0 (-5881) + OH^0 (-8754) -> H2O2^0 (-13840)
-At time : 6.2011 ns Reaction : e_aq^-1 (-5410) + H3O^1 (-8479) -> H^0 (-13841)
-At time : 6.2011 ns Reaction : e_aq^-1 (-2757) + e_aq^-1 (-3558) -> OH^-1 (-13842) + OH^-1 (-13843) + H_2^0 (-13844)
-At time : 6.2011 ns Reaction : OH^-1 (-13814) + H3O^1 (-7821) -> No product
-At time : 6.2011 ns Reaction : OH^-1 (-12953) + H3O^1 (-7646) -> No product
-At time : 6.3011 ns Reaction : H3O^1 (-9872) + OH^-1 (-13837) -> No product
-At time : 6.3011 ns Reaction : OH^-1 (-13823) + H3O^1 (-9716) -> No product
-At time : 6.3011 ns Reaction : OH^0 (-13589) + H^0 (-13281) -> No product
-At time : 6.3011 ns Reaction : OH^0 (-13452) + e_aq^-1 (-4107) -> OH^-1 (-13845)
-At time : 6.3011 ns Reaction : e_aq^-1 (-1774) + H^0 (-13178) -> OH^-1 (-13846) + H_2^0 (-13847)
-At time : 6.3011 ns Reaction : H2O2^0 (-12336) + e_aq^-1 (-5630) -> OH^-1 (-13848) + OH^0 (-13849)
-At time : 6.3011 ns Reaction : e_aq^-1 (-5170) + H3O^1 (-10551) -> H^0 (-13850)
-At time : 6.3011 ns Reaction : H2O2^0 (-11680) + e_aq^-1 (-2068) -> OH^-1 (-13851) + OH^0 (-13852)
-At time : 6.4011 ns Reaction : OH^-1 (-13835) + H3O^1 (-9471) -> No product
-At time : 6.4011 ns Reaction : OH^-1 (-13687) + H3O^1 (-7084) -> No product
-At time : 6.4011 ns Reaction : H3O^1 (-9526) + OH^-1 (-13504) -> No product
-At time : 6.4011 ns Reaction : OH^0 (-13475) + e_aq^-1 (-4859) -> OH^-1 (-13853)
-At time : 6.4011 ns Reaction : OH^0 (-13379) + e_aq^-1 (-2815) -> OH^-1 (-13854)
-At time : 6.4011 ns Reaction : H^0 (-13180) + OH^0 (-10436) -> No product
-At time : 6.4011 ns Reaction : e_aq^-1 (-3515) + e_aq^-1 (-3925) -> OH^-1 (-13855) + OH^-1 (-13856) + H_2^0 (-13857)
-At time : 6.4011 ns Reaction : H3O^1 (-7784) + e_aq^-1 (-5988) -> H^0 (-13858)
-At time : 6.5011 ns Reaction : OH^-1 (-13853) + H3O^1 (-9154) -> No product
-At time : 6.5011 ns Reaction : OH^-1 (-13577) + H3O^1 (-10217) -> No product
-At time : 6.5011 ns Reaction : OH^-1 (-12947) + H3O^1 (-9565) -> No product
-At time : 6.5011 ns Reaction : e_aq^-1 (-5406) + H3O^1 (-7735) -> H^0 (-13859)
-At time : 6.5011 ns Reaction : OH^-1 (-13845) + H3O^1 (-10128) -> No product
-At time : 6.6011 ns Reaction : OH^-1 (-13854) + H3O^1 (-8237) -> No product
-At time : 6.6011 ns Reaction : H2O2^0 (-13840) + e_aq^-1 (-5838) -> OH^-1 (-13860) + OH^0 (-13861)
-At time : 6.6011 ns Reaction : e_aq^-1 (-5499) + OH^0 (-13720) -> OH^-1 (-13862)
-At time : 6.6011 ns Reaction : OH^-1 (-13709) + H3O^1 (-8162) -> No product
-At time : 6.6011 ns Reaction : e_aq^-1 (-2312) + OH^0 (-13701) -> OH^-1 (-13863)
-At time : 6.6011 ns Reaction : OH^-1 (-13688) + H3O^1 (-8928) -> No product
-At time : 6.6011 ns Reaction : e_aq^-1 (-2380) + H^0 (-13611) -> OH^-1 (-13864) + H_2^0 (-13865)
-At time : 6.6011 ns Reaction : OH^-1 (-13508) + H3O^1 (-10828) -> No product
-At time : 6.6011 ns Reaction : H^0 (-6543) + OH^0 (-9157) -> No product
-At time : 6.6011 ns Reaction : H3O^1 (-7327) + e_aq^-1 (-5448) -> H^0 (-13866)
-At time : 6.6011 ns Reaction : e_aq^-1 (-4611) + H2O2^0 (-12555) -> OH^-1 (-13867) + OH^0 (-13868)
-At time : 6.6011 ns Reaction : e_aq^-1 (-1604) + OH^0 (-10158) -> OH^-1 (-13869)
-At time : 6.6011 ns Reaction : OH^-1 (-13867) + H3O^1 (-5990) -> No product
-At time : 6.7011 ns Reaction : OH^-1 (-13862) + H3O^1 (-9520) -> No product
-At time : 6.7011 ns Reaction : H3O^1 (-6044) + OH^-1 (-13860) -> No product
-At time : 6.7011 ns Reaction : OH^-1 (-13851) + H3O^1 (-10856) -> No product
-At time : 6.7011 ns Reaction : e_aq^-1 (-2006) + H^0 (-13850) -> OH^-1 (-13870) + H_2^0 (-13871)
-At time : 6.7011 ns Reaction : e_aq^-1 (-2133) + OH^0 (-13500) -> OH^-1 (-13872)
-At time : 6.7011 ns Reaction : H3O^1 (-9771) + OH^-1 (-13455) -> No product
-At time : 6.7011 ns Reaction : H3O^1 (-8487) + OH^-1 (-13392) -> No product
-At time : 6.7011 ns Reaction : e_aq^-1 (-4602) + H^0 (-13126) -> OH^-1 (-13873) + H_2^0 (-13874)
-At time : 6.7011 ns Reaction : e_aq^-1 (-1306) + H3O^1 (-10549) -> H^0 (-13875)
-At time : 6.7011 ns Reaction : e_aq^-1 (-4804) + H3O^1 (-8710) -> H^0 (-13876)
-At time : 6.7011 ns Reaction : e_aq^-1 (-4077) + e_aq^-1 (-6390) -> OH^-1 (-13877) + OH^-1 (-13878) + H_2^0 (-13879)
-At time : 6.7011 ns Reaction : e_aq^-1 (-5327) + e_aq^-1 (-5036) -> OH^-1 (-13880) + OH^-1 (-13881) + H_2^0 (-13882)
-At time : 6.7011 ns Reaction : e_aq^-1 (-57) + e_aq^-1 (-1039) -> OH^-1 (-13883) + OH^-1 (-13884) + H_2^0 (-13885)
-At time : 6.7011 ns Reaction : OH^-1 (-13848) + H3O^1 (-9652) -> No product
-At time : 6.7011 ns Reaction : OH^-1 (-13637) + H3O^1 (-8708) -> No product
-At time : 6.8011 ns Reaction : H3O^1 (-7539) + OH^-1 (-13870) -> No product
-At time : 6.8011 ns Reaction : e_aq^-1 (-596) + H^0 (-13841) -> OH^-1 (-13886) + H_2^0 (-13887)
-At time : 6.8011 ns Reaction : e_aq^-1 (-3846) + H^0 (-13476) -> OH^-1 (-13888) + H_2^0 (-13889)
-At time : 6.8011 ns Reaction : OH^-1 (-13154) + H3O^1 (-8547) -> No product
-At time : 6.8011 ns Reaction : H^0 (-13010) + e_aq^-1 (-4965) -> OH^-1 (-13890) + H_2^0 (-13891)
-At time : 6.8011 ns Reaction : e_aq^-1 (-3977) + e_aq^-1 (-6408) -> OH^-1 (-13892) + OH^-1 (-13893) + H_2^0 (-13894)
-At time : 6.9011 ns Reaction : OH^-1 (-13884) + H3O^1 (-6949) -> No product
-At time : 6.9011 ns Reaction : H3O^1 (-9767) + OH^-1 (-13872) -> No product
-At time : 6.9011 ns Reaction : OH^0 (-13824) + e_aq^-1 (-5310) -> OH^-1 (-13895)
-At time : 6.9011 ns Reaction : OH^-1 (-13789) + H3O^1 (-7280) -> No product
-At time : 6.9011 ns Reaction : e_aq^-1 (-5026) + OH^0 (-13580) -> OH^-1 (-13896)
-At time : 6.9011 ns Reaction : H3O^1 (-8960) + OH^-1 (-12559) -> No product
-At time : 6.9011 ns Reaction : e_aq^-1 (-4534) + H3O^1 (-10605) -> H^0 (-13897)
-At time : 6.9011 ns Reaction : e_aq^-1 (-3568) + H3O^1 (-10225) -> H^0 (-13898)
-At time : 6.9011 ns Reaction : e_aq^-1 (-5157) + H3O^1 (-5888) -> H^0 (-13899)
-At time : 6.9011 ns Reaction : H3O^1 (-6221) + OH^-1 (-13895) -> No product
-At time : 7.0011 ns Reaction : H3O^1 (-6916) + OH^-1 (-13869) -> No product
-At time : 7.0011 ns Reaction : e_aq^-1 (-1466) + OH^0 (-13852) -> OH^-1 (-13900)
-At time : 7.0011 ns Reaction : H3O^1 (-7331) + OH^-1 (-13327) -> No product
-At time : 7.0011 ns Reaction : e_aq^-1 (-2520) + H^0 (-12845) -> OH^-1 (-13901) + H_2^0 (-13902)
-At time : 7.0011 ns Reaction : e_aq^-1 (-3951) + H2O2^0 (-12139) -> OH^-1 (-13903) + OH^0 (-13904)
-At time : 7.0011 ns Reaction : e_aq^-1 (-4116) + H3O^1 (-10527) -> H^0 (-13905)
-At time : 7.0011 ns Reaction : e_aq^-1 (-3486) + H3O^1 (-10221) -> H^0 (-13906)
-At time : 7.0011 ns Reaction : e_aq^-1 (-2937) + H3O^1 (-10146) -> H^0 (-13907)
-At time : 7.0011 ns Reaction : e_aq^-1 (-5561) + H3O^1 (-9622) -> H^0 (-13908)
-At time : 7.0011 ns Reaction : e_aq^-1 (-4441) + H3O^1 (-8666) -> H^0 (-13909)
-At time : 7.0011 ns Reaction : e_aq^-1 (-885) + e_aq^-1 (-5594) -> OH^-1 (-13910) + OH^-1 (-13911) + H_2^0 (-13912)
-At time : 7.0011 ns Reaction : OH^-1 (-13903) + H3O^1 (-6380) -> No product
-At time : 7.0011 ns Reaction : OH^-1 (-13900) + H3O^1 (-8940) -> No product
-At time : 7.1011 ns Reaction : OH^-1 (-13901) + H3O^1 (-9624) -> No product
-At time : 7.1011 ns Reaction : OH^-1 (-13708) + H3O^1 (-10575) -> No product
-At time : 7.1011 ns Reaction : OH^0 (-13696) + e_aq^-1 (-4220) -> OH^-1 (-13913)
-At time : 7.1011 ns Reaction : H3O^1 (-7862) + OH^-1 (-13676) -> No product
-At time : 7.1011 ns Reaction : H3O^1 (-6965) + OH^-1 (-13338) -> No product
-At time : 7.1011 ns Reaction : OH^-1 (-13313) + H3O^1 (-6449) -> No product
-At time : 7.1011 ns Reaction : e_aq^-1 (-2408) + H2O2^0 (-11969) -> OH^-1 (-13914) + OH^0 (-13915)
-At time : 7.1011 ns Reaction : H2O2^0 (-11708) + e_aq^-1 (-1812) -> OH^-1 (-13916) + OH^0 (-13917)
-At time : 7.1011 ns Reaction : e_aq^-1 (-1295) + H3O^1 (-9390) -> H^0 (-13918)
-At time : 7.1011 ns Reaction : OH^-1 (-13916) + H3O^1 (-8716) -> No product
-At time : 7.2011 ns Reaction : OH^0 (-12696) + OH^0 (-13815) -> H2O2^0 (-13919)
-At time : 7.2011 ns Reaction : e_aq^-1 (-6342) + H^0 (-13780) -> OH^-1 (-13920) + H_2^0 (-13921)
-At time : 7.2011 ns Reaction : e_aq^-1 (-3550) + H^0 (-13558) -> OH^-1 (-13922) + H_2^0 (-13923)
-At time : 7.2011 ns Reaction : e_aq^-1 (-4515) + H^0 (-12666) -> OH^-1 (-13924) + H_2^0 (-13925)
-At time : 7.2011 ns Reaction : e_aq^-1 (-2547) + H3O^1 (-9313) -> H^0 (-13926)
-At time : 7.2011 ns Reaction : e_aq^-1 (-3607) + e_aq^-1 (-6306) -> OH^-1 (-13927) + OH^-1 (-13928) + H_2^0 (-13929)
-At time : 7.2011 ns Reaction : OH^-1 (-13924) + H3O^1 (-8805) -> No product
-At time : 7.2011 ns Reaction : OH^-1 (-13873) + H3O^1 (-9542) -> No product
-At time : 7.2011 ns Reaction : OH^-1 (-12979) + H3O^1 (-9077) -> No product
-At time : 7.3011 ns Reaction : OH^-1 (-13896) + H3O^1 (-9370) -> No product
-At time : 7.3011 ns Reaction : e_aq^-1 (-1228) + OH^0 (-13801) -> OH^-1 (-13930)
-At time : 7.3011 ns Reaction : H^0 (-13751) + OH^0 (-9951) -> No product
-At time : 7.3011 ns Reaction : H3O^1 (-9606) + OH^-1 (-13204) -> No product
-At time : 7.3011 ns Reaction : e_aq^-1 (-4661) + e_aq^-1 (-3670) -> OH^-1 (-13931) + OH^-1 (-13932) + H_2^0 (-13933)
-At time : 7.4011 ns Reaction : H3O^1 (-8607) + OH^-1 (-13496) -> No product
-At time : 7.4011 ns Reaction : H3O^1 (-7935) + e_aq^-1 (-249) -> H^0 (-13934)
-At time : 7.4011 ns Reaction : e_aq^-1 (-1114) + e_aq^-1 (-4766) -> OH^-1 (-13935) + OH^-1 (-13936) + H_2^0 (-13937)
-At time : 7.5011 ns Reaction : OH^-1 (-13922) + H3O^1 (-9892) -> No product
-At time : 7.5011 ns Reaction : OH^-1 (-13913) + H3O^1 (-10392) -> No product
-At time : 7.5011 ns Reaction : OH^-1 (-13890) + H3O^1 (-10132) -> No product
-At time : 7.5011 ns Reaction : H3O^1 (-8706) + OH^-1 (-13878) -> No product
-At time : 7.5011 ns Reaction : OH^-1 (-13863) + H3O^1 (-5966) -> No product
-At time : 7.5011 ns Reaction : OH^-1 (-13788) + H3O^1 (-9628) -> No product
-At time : 7.5011 ns Reaction : OH^-1 (-13754) + H3O^1 (-8623) -> No product
-At time : 7.5011 ns Reaction : OH^-1 (-12903) + H3O^1 (-8326) -> No product
-At time : 7.5011 ns Reaction : e_aq^-1 (-5862) + H3O^1 (-10703) -> H^0 (-13938)
-At time : 7.5011 ns Reaction : e_aq^-1 (-2587) + H3O^1 (-7786) -> H^0 (-13939)
-At time : 7.5011 ns Reaction : e_aq^-1 (-595) + H3O^1 (-7409) -> H^0 (-13940)
-At time : 7.5011 ns Reaction : H3O^1 (-7297) + e_aq^-1 (-5192) -> H^0 (-13941)
-At time : 7.5011 ns Reaction : e_aq^-1 (-4608) + e_aq^-1 (-4094) -> OH^-1 (-13942) + OH^-1 (-13943) + H_2^0 (-13944)
-At time : 7.5011 ns Reaction : H3O^1 (-10005) + OH^-1 (-13354) -> No product
-At time : 7.5011 ns Reaction : e_aq^-1 (-2123) + H2O2^0 (-11962) -> OH^-1 (-13945) + OH^0 (-13946)
-At time : 7.6011 ns Reaction : H3O^1 (-7419) + OH^-1 (-13914) -> No product
-At time : 7.6011 ns Reaction : OH^-1 (-13893) + H3O^1 (-9453) -> No product
-At time : 7.6011 ns Reaction : H3O^1 (-7417) + OH^-1 (-13846) -> No product
-At time : 7.6011 ns Reaction : e_aq^-1 (-4252) + H^0 (-13501) -> OH^-1 (-13947) + H_2^0 (-13948)
-At time : 7.6011 ns Reaction : e_aq^-1 (-4990) + H3O^1 (-8619) -> H^0 (-13949)
-At time : 7.7011 ns Reaction : OH^-1 (-13945) + H3O^1 (-8072) -> No product
-At time : 7.7011 ns Reaction : H^0 (-13858) + e_aq^-1 (-4575) -> OH^-1 (-13950) + H_2^0 (-13951)
-At time : 7.7011 ns Reaction : OH^-1 (-13764) + H3O^1 (-10661) -> No product
-At time : 7.7011 ns Reaction : OH^-1 (-13753) + H3O^1 (-10785) -> No product
-At time : 7.7011 ns Reaction : OH^0 (-13744) + OH^0 (-13412) -> H2O2^0 (-13952)
-At time : 7.7011 ns Reaction : H3O^1 (-6149) + OH^-1 (-13667) -> No product
-At time : 7.7011 ns Reaction : e_aq^-1 (-4698) + H3O^1 (-10376) -> H^0 (-13953)
-At time : 7.7011 ns Reaction : e_aq^-1 (-848) + H^0 (-10228) -> OH^-1 (-13954) + H_2^0 (-13955)
-At time : 7.7011 ns Reaction : H3O^1 (-6122) + OH^-1 (-13942) -> No product
-At time : 7.8011 ns Reaction : OH^-1 (-13930) + H3O^1 (-10286) -> No product
-At time : 7.8011 ns Reaction : H3O^1 (-7983) + OH^-1 (-13260) -> No product
-At time : 7.8011 ns Reaction : e_aq^-1 (-2899) + H2O2^0 (-12527) -> OH^-1 (-13956) + OH^0 (-13957)
-At time : 7.8011 ns Reaction : H2O2^0 (-12499) + e_aq^-1 (-3599) -> OH^-1 (-13958) + OH^0 (-13959)
-At time : 7.8011 ns Reaction : H2O2^0 (-11724) + e_aq^-1 (-2704) -> OH^-1 (-13960) + OH^0 (-13961)
-At time : 7.8011 ns Reaction : e_aq^-1 (-4382) + H3O^1 (-9334) -> H^0 (-13962)
-At time : 7.9011 ns Reaction : H3O^1 (-7698) + OH^-1 (-13956) -> No product
-At time : 7.9011 ns Reaction : OH^-1 (-13947) + H3O^1 (-10294) -> No product
-At time : 7.9011 ns Reaction : e_aq^-1 (-929) + OH^0 (-13915) -> OH^-1 (-13963)
-At time : 7.9011 ns Reaction : e_aq^-1 (-6225) + H^0 (-13541) -> OH^-1 (-13964) + H_2^0 (-13965)
-At time : 7.9011 ns Reaction : e_aq^-1 (-6066) + H3O^1 (-10655) -> H^0 (-13966)
-At time : 7.9011 ns Reaction : e_aq^-1 (-2283) + H3O^1 (-8411) -> H^0 (-13967)
-At time : 7.9011 ns Reaction : e_aq^-1 (-3901) + e_aq^-1 (-6102) -> OH^-1 (-13968) + OH^-1 (-13969) + H_2^0 (-13970)
-At time : 7.9011 ns Reaction : e_aq^-1 (-2216) + e_aq^-1 (-5895) -> OH^-1 (-13971) + OH^-1 (-13972) + H_2^0 (-13973)
-At time : 7.9011 ns Reaction : e_aq^-1 (-484) + H2O2^0 (-11515) -> OH^-1 (-13974) + OH^0 (-13975)
-At time : 8.0011 ns Reaction : OH^-1 (-13974) + H3O^1 (-6383) -> No product
-At time : 8.0011 ns Reaction : H3O^1 (-8918) + OH^-1 (-13960) -> No product
-At time : 8.0011 ns Reaction : OH^-1 (-13958) + H3O^1 (-10454) -> No product
-At time : 8.0011 ns Reaction : H2O2^0 (-12525) + e_aq^-1 (-4548) -> OH^-1 (-13976) + OH^0 (-13977)
-At time : 8.0011 ns Reaction : e_aq^-1 (-2466) + e_aq^-1 (-4887) -> OH^-1 (-13978) + OH^-1 (-13979) + H_2^0 (-13980)
-At time : 8.0011 ns Reaction : OH^-1 (-13153) + H3O^1 (-9910) -> No product
-At time : 8.0011 ns Reaction : H2O2^0 (-12005) + e_aq^-1 (-4286) -> OH^-1 (-13981) + OH^0 (-13982)
-At time : 8.1011 ns Reaction : OH^-1 (-13981) + H3O^1 (-9744) -> No product
-At time : 8.1011 ns Reaction : OH^-1 (-13976) + H3O^1 (-9648) -> No product
-At time : 8.1011 ns Reaction : e_aq^-1 (-3699) + OH^0 (-13591) -> OH^-1 (-13983)
-At time : 8.1011 ns Reaction : e_aq^-1 (-2572) + H3O^1 (-7532) -> H^0 (-13984)
-At time : 8.2011 ns Reaction : H^0 (-13967) + e_aq^-1 (-4889) -> OH^-1 (-13985) + H_2^0 (-13986)
-At time : 8.2011 ns Reaction : OH^-1 (-13376) + H3O^1 (-8208) -> No product
-At time : 8.2011 ns Reaction : e_aq^-1 (-5404) + H2O2^0 (-12400) -> OH^-1 (-13987) + OH^0 (-13988)
-At time : 8.2011 ns Reaction : e_aq^-1 (-2559) + H3O^1 (-10689) -> H^0 (-13989)
-At time : 8.2011 ns Reaction : e_aq^-1 (-11) + e_aq^-1 (-4403) -> OH^-1 (-13990) + OH^-1 (-13991) + H_2^0 (-13992)
-At time : 8.2011 ns Reaction : OH^-1 (-13954) + H3O^1 (-9041) -> No product
-At time : 8.2011 ns Reaction : OH^-1 (-13809) + H3O^1 (-9219) -> No product
-At time : 8.2011 ns Reaction : H3O^1 (-9999) + OH^-1 (-13774) -> No product
-At time : 8.3011 ns Reaction : OH^-1 (-13985) + H3O^1 (-7541) -> No product
-At time : 8.3011 ns Reaction : e_aq^-1 (-619) + H^0 (-13766) -> OH^-1 (-13993) + H_2^0 (-13994)
-At time : 8.3011 ns Reaction : H3O^1 (-8022) + OH^-1 (-13527) -> No product
-At time : 8.3011 ns Reaction : OH^-1 (-13526) + H3O^1 (-8322) -> No product
-At time : 8.3011 ns Reaction : OH^-1 (-13425) + H3O^1 (-9055) -> No product
-At time : 8.3011 ns Reaction : e_aq^-1 (-4215) + H^0 (-13264) -> OH^-1 (-13995) + H_2^0 (-13996)
-At time : 8.3011 ns Reaction : H2O2^0 (-12544) + e_aq^-1 (-6009) -> OH^-1 (-13997) + OH^0 (-13998)
-At time : 8.3011 ns Reaction : H2O2^0 (-12068) + e_aq^-1 (-5651) -> OH^-1 (-13999) + OH^0 (-14000)
-At time : 8.3011 ns Reaction : H3O^1 (-7187) + e_aq^-1 (-3825) -> H^0 (-14001)
-At time : 8.3011 ns Reaction : e_aq^-1 (-5994) + e_aq^-1 (-6129) -> OH^-1 (-14002) + OH^-1 (-14003) + H_2^0 (-14004)
-At time : 8.3011 ns Reaction : OH^-1 (-13997) + H3O^1 (-10282) -> No product
-At time : 8.3011 ns Reaction : OH^-1 (-13983) + H3O^1 (-8409) -> No product
-At time : 8.3011 ns Reaction : H2O2^0 (-12315) + e_aq^-1 (-1416) -> OH^-1 (-14005) + OH^0 (-14006)
-At time : 8.4011 ns Reaction : OH^-1 (-13999) + H3O^1 (-9380) -> No product
-At time : 8.4011 ns Reaction : H3O^1 (-7912) + OH^-1 (-13993) -> No product
-At time : 8.4011 ns Reaction : H3O^1 (-7954) + OH^-1 (-13978) -> No product
-At time : 8.4011 ns Reaction : e_aq^-1 (-2891) + H^0 (-13827) -> OH^-1 (-14007) + H_2^0 (-14008)
-At time : 8.4011 ns Reaction : OH^-1 (-13817) + H3O^1 (-9528) -> No product
-At time : 8.4011 ns Reaction : OH^-1 (-13329) + H3O^1 (-6988) -> No product
-At time : 8.4011 ns Reaction : e_aq^-1 (-4496) + H3O^1 (-9296) -> H^0 (-14009)
-At time : 8.4011 ns Reaction : H3O^1 (-6002) + OH^-1 (-14005) -> No product
-At time : 8.4011 ns Reaction : H2O2^0 (-12074) + e_aq^-1 (-4808) -> OH^-1 (-14010) + OH^0 (-14011)
-At time : 8.5011 ns Reaction : H3O^1 (-8574) + OH^-1 (-14010) -> No product
-At time : 8.5011 ns Reaction : e_aq^-1 (-1242) + H^0 (-13907) -> OH^-1 (-14012) + H_2^0 (-14013)
-At time : 8.5011 ns Reaction : H3O^1 (-10066) + OH^-1 (-13831) -> No product
-At time : 8.5011 ns Reaction : e_aq^-1 (-5269) + H^0 (-13585) -> OH^-1 (-14014) + H_2^0 (-14015)
-At time : 8.5011 ns Reaction : H^0 (-13524) + e_aq^-1 (-1994) -> OH^-1 (-14016) + H_2^0 (-14017)
-At time : 8.5011 ns Reaction : e_aq^-1 (-4775) + H3O^1 (-9975) -> H^0 (-14018)
-At time : 8.5011 ns Reaction : e_aq^-1 (-6093) + H3O^1 (-8876) -> H^0 (-14019)
-At time : 8.5011 ns Reaction : H3O^1 (-7919) + e_aq^-1 (-3570) -> H^0 (-14020)
-At time : 8.5011 ns Reaction : e_aq^-1 (-1593) + e_aq^-1 (-3616) -> OH^-1 (-14021) + OH^-1 (-14022) + H_2^0 (-14023)
-At time : 8.5011 ns Reaction : OH^-1 (-14014) + H3O^1 (-9856) -> No product
-At time : 8.5011 ns Reaction : H2O2^0 (-12507) + e_aq^-1 (-3836) -> OH^-1 (-14024) + OH^0 (-14025)
-At time : 8.6011 ns Reaction : H3O^1 (-10049) + OH^-1 (-13963) -> No product
-At time : 8.6011 ns Reaction : H^0 (-13875) + e_aq^-1 (-5482) -> OH^-1 (-14026) + H_2^0 (-14027)
-At time : 8.6011 ns Reaction : OH^-1 (-13721) + H3O^1 (-9728) -> No product
-At time : 8.6011 ns Reaction : e_aq^-1 (-5229) + H^0 (-13622) -> OH^-1 (-14028) + H_2^0 (-14029)
-At time : 8.6011 ns Reaction : e_aq^-1 (-1457) + H^0 (-13484) -> OH^-1 (-14030) + H_2^0 (-14031)
-At time : 8.6011 ns Reaction : e_aq^-1 (-4954) + H3O^1 (-9979) -> H^0 (-14032)
-At time : 8.6011 ns Reaction : e_aq^-1 (-5151) + H3O^1 (-8771) -> H^0 (-14033)
-At time : 8.6011 ns Reaction : e_aq^-1 (-791) + H3O^1 (-8617) -> H^0 (-14034)
-At time : 8.6011 ns Reaction : H3O^1 (-11230) + OH^-1 (-13062) -> No product
-At time : 8.7011 ns Reaction : H3O^1 (-9579) + OH^-1 (-14028) -> No product
-At time : 8.7011 ns Reaction : H3O^1 (-7469) + OH^-1 (-14026) -> No product
-At time : 8.7011 ns Reaction : OH^-1 (-13990) + H3O^1 (-7158) -> No product
-At time : 8.7011 ns Reaction : OH^-1 (-13987) + H3O^1 (-10818) -> No product
-At time : 8.7011 ns Reaction : e_aq^-1 (-304) + H^0 (-13633) -> OH^-1 (-14035) + H_2^0 (-14036)
-At time : 8.7011 ns Reaction : e_aq^-1 (-291) + H^0 (-12974) -> OH^-1 (-14037) + H_2^0 (-14038)
-At time : 8.7011 ns Reaction : OH^-1 (-12706) + H3O^1 (-9712) -> No product
-At time : 8.7011 ns Reaction : e_aq^-1 (-4420) + H3O^1 (-9213) -> H^0 (-14039)
-At time : 8.7011 ns Reaction : e_aq^-1 (-5361) + H3O^1 (-6980) -> H^0 (-14040)
-At time : 8.7011 ns Reaction : e_aq^-1 (-5566) + H2O2^0 (-11533) -> OH^-1 (-14041) + OH^0 (-14042)
-At time : 8.8011 ns Reaction : OH^-1 (-14024) + H3O^1 (-8769) -> No product
-At time : 8.8011 ns Reaction : OH^-1 (-14007) + H3O^1 (-8904) -> No product
-At time : 8.8011 ns Reaction : OH^-1 (-13969) + H3O^1 (-10474) -> No product
-At time : 8.8011 ns Reaction : e_aq^-1 (-5228) + OH^0 (-13957) -> OH^-1 (-14043)
-At time : 8.8011 ns Reaction : e_aq^-1 (-467) + H^0 (-13897) -> OH^-1 (-14044) + H_2^0 (-14045)
-At time : 8.8011 ns Reaction : H3O^1 (-7844) + OH^-1 (-13886) -> No product
-At time : 8.8011 ns Reaction : OH^-1 (-13763) + H3O^1 (-8746) -> No product
-At time : 8.8011 ns Reaction : e_aq^-1 (-5457) + H3O^1 (-10412) -> H^0 (-14046)
-At time : 8.8011 ns Reaction : e_aq^-1 (-660) + e_aq^-1 (-5039) -> OH^-1 (-14047) + OH^-1 (-14048) + H_2^0 (-14049)
-At time : 8.8011 ns Reaction : OH^0 (-13868) + e_aq^-1 (-5438) -> OH^-1 (-14050)
-At time : 8.9011 ns Reaction : H3O^1 (-7987) + OH^-1 (-14041) -> No product
-At time : 8.9011 ns Reaction : e_aq^-1 (-3722) + H^0 (-13779) -> OH^-1 (-14051) + H_2^0 (-14052)
-At time : 8.9011 ns Reaction : OH^-1 (-13449) + H3O^1 (-10270) -> No product
-At time : 8.9011 ns Reaction : H3O^1 (-7848) + OH^-1 (-13259) -> No product
-At time : 8.9011 ns Reaction : e_aq^-1 (-2617) + H3O^1 (-8759) -> H^0 (-14053)
-At time : 8.9011 ns Reaction : e_aq^-1 (-384) + e_aq^-1 (-4832) -> OH^-1 (-14054) + OH^-1 (-14055) + H_2^0 (-14056)
-At time : 9.0011 ns Reaction : OH^-1 (-14044) + H3O^1 (-5918) -> No product
-At time : 9.0011 ns Reaction : OH^-1 (-14043) + H3O^1 (-9302) -> No product
-At time : 9.0011 ns Reaction : OH^-1 (-14012) + H3O^1 (-10595) -> No product
-At time : 9.0011 ns Reaction : OH^-1 (-13979) + H3O^1 (-7452) -> No product
-At time : 9.0011 ns Reaction : OH^-1 (-13971) + H3O^1 (-10866) -> No product
-At time : 9.0011 ns Reaction : OH^-1 (-12971) + H3O^1 (-6317) -> No product
-At time : 9.0011 ns Reaction : e_aq^-1 (-4617) + H3O^1 (-8542) -> H^0 (-14057)
-At time : 9.0011 ns Reaction : OH^-1 (-14055) + H3O^1 (-9362) -> No product
-At time : 9.1011 ns Reaction : H3O^1 (-9189) + OH^-1 (-14054) -> No product
-At time : 9.1011 ns Reaction : OH^-1 (-14050) + H3O^1 (-8528) -> No product
-At time : 9.1011 ns Reaction : OH^-1 (-14048) + H3O^1 (-9146) -> No product
-At time : 9.1011 ns Reaction : H^0 (-13120) + H^0 (-13752) -> H_2^0 (-14058)
-At time : 9.1011 ns Reaction : e_aq^-1 (-5388) + OH^0 (-13712) -> OH^-1 (-14059)
-At time : 9.1011 ns Reaction : H^0 (-13617) + e_aq^-1 (-4303) -> OH^-1 (-14060) + H_2^0 (-14061)
-At time : 9.1011 ns Reaction : OH^-1 (-13269) + H3O^1 (-9722) -> No product
-At time : 9.1011 ns Reaction : e_aq^-1 (-2565) + e_aq^-1 (-6051) -> OH^-1 (-14062) + OH^-1 (-14063) + H_2^0 (-14064)
-At time : 9.1011 ns Reaction : e_aq^-1 (-4885) + e_aq^-1 (-4372) -> OH^-1 (-14065) + OH^-1 (-14066) + H_2^0 (-14067)
-At time : 9.1011 ns Reaction : H2O2^0 (-12119) + e_aq^-1 (-3484) -> OH^-1 (-14068) + OH^0 (-14069)
-At time : 9.2011 ns Reaction : OH^-1 (-14068) + H3O^1 (-8958) -> No product
-At time : 9.2011 ns Reaction : OH^-1 (-14059) + H3O^1 (-9067) -> No product
-At time : 9.2011 ns Reaction : H3O^1 (-7248) + OH^-1 (-13932) -> No product
-At time : 9.2011 ns Reaction : e_aq^-1 (-2567) + OH^0 (-13813) -> OH^-1 (-14070)
-At time : 9.2011 ns Reaction : OH^-1 (-13810) + H3O^1 (-9495) -> No product
-At time : 9.2011 ns Reaction : e_aq^-1 (-4864) + H^0 (-13525) -> OH^-1 (-14071) + H_2^0 (-14072)
-At time : 9.2011 ns Reaction : e_aq^-1 (-4351) + H^0 (-13250) -> OH^-1 (-14073) + H_2^0 (-14074)
-At time : 9.2011 ns Reaction : e_aq^-1 (-5076) + H2O2^0 (-12093) -> OH^-1 (-14075) + OH^0 (-14076)
-At time : 9.2011 ns Reaction : e_aq^-1 (-5100) + H3O^1 (-8098) -> H^0 (-14077)
-At time : 9.2011 ns Reaction : e_aq^-1 (-4541) + H3O^1 (-8036) -> H^0 (-14078)
-At time : 9.2011 ns Reaction : e_aq^-1 (-4800) + e_aq^-1 (-3931) -> OH^-1 (-14079) + OH^-1 (-14080) + H_2^0 (-14081)
-At time : 9.2011 ns Reaction : OH^-1 (-14075) + H3O^1 (-9289) -> No product
-At time : 9.3011 ns Reaction : OH^-1 (-14070) + H3O^1 (-9344) -> No product
-At time : 9.3011 ns Reaction : OH^-1 (-13888) + H3O^1 (-8924) -> No product
-At time : 9.3011 ns Reaction : OH^-1 (-13791) + H3O^1 (-8551) -> No product
-At time : 9.3011 ns Reaction : e_aq^-1 (-4115) + H2O2^0 (-13609) -> OH^-1 (-14082) + OH^0 (-14083)
-At time : 9.3011 ns Reaction : e_aq^-1 (-2285) + H3O^1 (-8555) -> H^0 (-14084)
-At time : 9.3011 ns Reaction : e_aq^-1 (-2041) + H3O^1 (-8526) -> H^0 (-14085)
-At time : 9.3011 ns Reaction : e_aq^-1 (-3775) + H3O^1 (-8213) -> H^0 (-14086)
-At time : 9.3011 ns Reaction : e_aq^-1 (-5612) + H2O2^0 (-11419) -> OH^-1 (-14087) + OH^0 (-14088)
-At time : 9.3011 ns Reaction : OH^-1 (-14087) + H3O^1 (-9819) -> No product
-At time : 9.4011 ns Reaction : e_aq^-1 (-5574) + H^0 (-13756) -> OH^-1 (-14089) + H_2^0 (-14090)
-At time : 9.4011 ns Reaction : e_aq^-1 (-2863) + H3O^1 (-10844) -> H^0 (-14091)
-At time : 9.4011 ns Reaction : OH^0 (-7230) + OH^0 (-9397) -> H2O2^0 (-14092)
-At time : 9.4011 ns Reaction : H3O^1 (-7852) + e_aq^-1 (-2924) -> H^0 (-14093)
-At time : 9.5011 ns Reaction : OH^0 (-13538) + H^0 (-13249) -> No product
-At time : 9.5011 ns Reaction : e_aq^-1 (-4801) + H^0 (-12945) -> OH^-1 (-14094) + H_2^0 (-14095)
-At time : 9.5011 ns Reaction : e_aq^-1 (-5335) + H3O^1 (-10896) -> H^0 (-14096)
-At time : 9.5011 ns Reaction : e_aq^-1 (-5925) + H3O^1 (-10717) -> H^0 (-14097)
-At time : 9.5011 ns Reaction : e_aq^-1 (-72) + H3O^1 (-9700) -> H^0 (-14098)
-At time : 9.5011 ns Reaction : OH^-1 (-14082) + H3O^1 (-10239) -> No product
-At time : 9.5011 ns Reaction : OH^-1 (-14060) + H3O^1 (-9244) -> No product
-At time : 9.5011 ns Reaction : e_aq^-1 (-5649) + H2O2^0 (-11626) -> OH^-1 (-14099) + OH^0 (-14100)
-At time : 9.5011 ns Reaction : e_aq^-1 (-4346) + OH^0 (-7443) -> OH^-1 (-14101)
-At time : 9.6011 ns Reaction : H3O^1 (-7967) + OH^-1 (-14101) -> No product
-At time : 9.6011 ns Reaction : OH^-1 (-14073) + H3O^1 (-8611) -> No product
-At time : 9.6011 ns Reaction : OH^-1 (-13356) + H3O^1 (-8809) -> No product
-At time : 9.6011 ns Reaction : e_aq^-1 (-4935) + H3O^1 (-10565) -> H^0 (-14102)
-At time : 9.6011 ns Reaction : e_aq^-1 (-1132) + H3O^1 (-9298) -> H^0 (-14103)
-At time : 9.6011 ns Reaction : e_aq^-1 (-2096) + H3O^1 (-8866) -> H^0 (-14104)
-At time : 9.7011 ns Reaction : H3O^1 (-8096) + OH^-1 (-14099) -> No product
-At time : 9.7011 ns Reaction : e_aq^-1 (-3888) + H3O^1 (-10352) -> H^0 (-14105)
-At time : 9.7011 ns Reaction : OH^-1 (-13880) + H3O^1 (-10486) -> No product
-At time : 9.8011 ns Reaction : OH^-1 (-14094) + H3O^1 (-6113) -> No product
-At time : 9.8011 ns Reaction : H^0 (-13623) + H^0 (-13906) -> H_2^0 (-14106)
-At time : 9.8011 ns Reaction : H^0 (-13761) + H^0 (-13289) -> H_2^0 (-14107)
-At time : 9.8011 ns Reaction : H^0 (-13233) + e_aq^-1 (-6012) -> OH^-1 (-14108) + H_2^0 (-14109)
-At time : 9.8011 ns Reaction : e_aq^-1 (-6228) + H3O^1 (-10665) -> H^0 (-14110)
-At time : 9.8011 ns Reaction : e_aq^-1 (-6447) + H3O^1 (-9902) -> H^0 (-14111)
-At time : 9.8011 ns Reaction : e_aq^-1 (-4630) + H3O^1 (-8150) -> H^0 (-14112)
-At time : 9.8011 ns Reaction : e_aq^-1 (-4439) + e_aq^-1 (-2281) -> OH^-1 (-14113) + OH^-1 (-14114) + H_2^0 (-14115)
-At time : 9.9011 ns Reaction : OH^0 (-14088) + OH^0 (-9609) -> H2O2^0 (-14116)
-At time : 9.9011 ns Reaction : OH^-1 (-14030) + H3O^1 (-10807) -> No product
-At time : 9.9011 ns Reaction : H3O^1 (-8198) + OH^-1 (-13995) -> No product
-At time : 9.9011 ns Reaction : H3O^1 (-7056) + OH^-1 (-13855) -> No product
-At time : 9.9011 ns Reaction : e_aq^-1 (-4522) + OH^0 (-12944) -> OH^-1 (-14117)
-At time : 9.9011 ns Reaction : e_aq^-1 (-3719) + H3O^1 (-8430) -> H^0 (-14118)
-At time : 9.9011 ns Reaction : e_aq^-1 (-2637) + H2O2^0 (-12338) -> OH^-1 (-14119) + OH^0 (-14120)
-At time : 10.001 ns Reaction : H3O^1 (-7136) + OH^-1 (-13820) -> No product
-At time : 10.001 ns Reaction : e_aq^-1 (-266) + e_aq^-1 (-3672) -> OH^-1 (-14121) + OH^-1 (-14122) + H_2^0 (-14123)
-At time : 10.001 ns Reaction : OH^-1 (-14117) + H3O^1 (-10635) -> No product
-At time : 11.001 ns Reaction : OH^-1 (-14119) + H3O^1 (-8635) -> No product
-At time : 11.001 ns Reaction : H3O^1 (-6842) + OH^-1 (-14108) -> No product
-At time : 11.001 ns Reaction : H3O^1 (-9447) + OH^-1 (-14089) -> No product
-At time : 11.001 ns Reaction : e_aq^-1 (-1741) + H^0 (-14084) -> OH^-1 (-14124) + H_2^0 (-14125)
-At time : 11.001 ns Reaction : OH^-1 (-14066) + H3O^1 (-9178) -> No product
-At time : 11.001 ns Reaction : H3O^1 (-7669) + OH^-1 (-14065) -> No product
-At time : 11.001 ns Reaction : OH^0 (-14011) + e_aq^-1 (-2000) -> OH^-1 (-14126)
-At time : 11.001 ns Reaction : OH^-1 (-13964) + H3O^1 (-7739) -> No product
-At time : 11.001 ns Reaction : OH^-1 (-13883) + H3O^1 (-8136) -> No product
-At time : 11.001 ns Reaction : H3O^1 (-8557) + OH^-1 (-13877) -> No product
-At time : 11.001 ns Reaction : OH^-1 (-13828) + H3O^1 (-10597) -> No product
-At time : 11.001 ns Reaction : OH^-1 (-13821) + H3O^1 (-9256) -> No product
-At time : 11.001 ns Reaction : OH^-1 (-13601) + H3O^1 (-8679) -> No product
-At time : 11.001 ns Reaction : OH^-1 (-13511) + H3O^1 (-10860) -> No product
-At time : 11.001 ns Reaction : OH^-1 (-13505) + H3O^1 (-8839) -> No product
-At time : 11.001 ns Reaction : OH^-1 (-12889) + H3O^1 (-6416) -> No product
-At time : 11.001 ns Reaction : e_aq^-1 (-641) + H3O^1 (-10414) -> H^0 (-14127)
-At time : 11.001 ns Reaction : H3O^1 (-7191) + OH^-1 (-13991) -> No product
-At time : 11.001 ns Reaction : H3O^1 (-5942) + OH^-1 (-13881) -> No product
-At time : 12.001 ns Reaction : H3O^1 (-7201) + OH^-1 (-14047) -> No product
-At time : 12.001 ns Reaction : H3O^1 (-5981) + OH^-1 (-14037) -> No product
-At time : 12.001 ns Reaction : OH^-1 (-14035) + H3O^1 (-8761) -> No product
-At time : 12.001 ns Reaction : OH^-1 (-14016) + H3O^1 (-9059) -> No product
-At time : 12.001 ns Reaction : OH^-1 (-14003) + H3O^1 (-9666) -> No product
-At time : 12.001 ns Reaction : OH^-1 (-13927) + H3O^1 (-10372) -> No product
-At time : 12.001 ns Reaction : OH^-1 (-13675) + H3O^1 (-10408) -> No product
-At time : 12.001 ns Reaction : H3O^1 (-9501) + OH^-1 (-13603) -> No product
-At time : 12.001 ns Reaction : OH^-1 (-13421) + H3O^1 (-10673) -> No product
-At time : 12.001 ns Reaction : OH^-1 (-13159) + H3O^1 (-7440) -> No product
-At time : 12.001 ns Reaction : e_aq^-1 (-5221) + H2O2^0 (-12698) -> OH^-1 (-14128) + OH^0 (-14129)
-At time : 12.001 ns Reaction : H3O^1 (-7812) + e_aq^-1 (-2455) -> H^0 (-14130)
-At time : 12.001 ns Reaction : OH^-1 (-14126) + H3O^1 (-8332) -> No product
-At time : 12.001 ns Reaction : H3O^1 (-7654) + OH^-1 (-14022) -> No product
-At time : 13.001 ns Reaction : e_aq^-1 (-141) + H^0 (-14127) -> OH^-1 (-14131) + H_2^0 (-14132)
-At time : 13.001 ns Reaction : OH^-1 (-14062) + H3O^1 (-8090) -> No product
-At time : 13.001 ns Reaction : e_aq^-1 (-2496) + H^0 (-14032) -> OH^-1 (-14133) + H_2^0 (-14134)
-At time : 13.001 ns Reaction : H^0 (-13773) + e_aq^-1 (-2921) -> OH^-1 (-14135) + H_2^0 (-14136)
-At time : 13.001 ns Reaction : e_aq^-1 (-6096) + H3O^1 (-9919) -> H^0 (-14137)
-At time : 13.001 ns Reaction : e_aq^-1 (-4567) + H3O^1 (-9487) -> H^0 (-14138)
-At time : 13.001 ns Reaction : OH^-1 (-14114) + H3O^1 (-7261) -> No product
-At time : 14.001 ns Reaction : OH^-1 (-14135) + H3O^1 (-8176) -> No product
-At time : 14.001 ns Reaction : H3O^1 (-8564) + OH^-1 (-14080) -> No product
-At time : 14.001 ns Reaction : H3O^1 (-7382) + OH^-1 (-13928) -> No product
-At time : 14.001 ns Reaction : OH^-1 (-13843) + H3O^1 (-10814) -> No product
-At time : 14.001 ns Reaction : H^0 (-13808) + e_aq^-1 (-3571) -> OH^-1 (-14139) + H_2^0 (-14140)
-At time : 14.001 ns Reaction : OH^-1 (-13294) + H3O^1 (-8625) -> No product
-At time : 14.001 ns Reaction : e_aq^-1 (-5416) + H2O2^0 (-12578) -> OH^-1 (-14141) + OH^0 (-14142)
-At time : 14.001 ns Reaction : H2O2^0 (-11957) + e_aq^-1 (-4963) -> OH^-1 (-14143) + OH^0 (-14144)
-At time : 14.001 ns Reaction : e_aq^-1 (-5820) + H3O^1 (-9039) -> H^0 (-14145)
-At time : 14.001 ns Reaction : e_aq^-1 (-3833) + e_aq^-1 (-5937) -> OH^-1 (-14146) + OH^-1 (-14147) + H_2^0 (-14148)
-At time : 15.001 ns Reaction : OH^-1 (-14121) + H3O^1 (-10368) -> No product
-At time : 15.001 ns Reaction : OH^-1 (-14079) + H3O^1 (-5906) -> No product
-At time : 15.001 ns Reaction : OH^-1 (-14063) + H3O^1 (-9221) -> No product
-At time : 15.001 ns Reaction : H3O^1 (-7237) + OH^-1 (-14021) -> No product
-At time : 15.001 ns Reaction : H3O^1 (-5858) + OH^-1 (-13943) -> No product
-At time : 15.001 ns Reaction : OH^-1 (-13856) + H3O^1 (-8403) -> No product
-At time : 15.001 ns Reaction : OH^-1 (-13520) + H3O^1 (-10439) -> No product
-At time : 15.001 ns Reaction : OH^-1 (-13458) + H3O^1 (-9638) -> No product
-At time : 15.001 ns Reaction : e_aq^-1 (-5072) + H2O2^0 (-12570) -> OH^-1 (-14149) + OH^0 (-14150)
-At time : 15.001 ns Reaction : H2O2^0 (-12142) + e_aq^-1 (-5051) -> OH^-1 (-14151) + OH^0 (-14152)
-At time : 15.001 ns Reaction : e_aq^-1 (-4873) + H3O^1 (-10609) -> H^0 (-14153)
-At time : 15.001 ns Reaction : H3O^1 (-10043) + e_aq^-1 (-5401) -> H^0 (-14154)
-At time : 15.001 ns Reaction : e_aq^-1 (-1574) + H3O^1 (-8916) -> H^0 (-14155)
-At time : 16.001 ns Reaction : OH^-1 (-14151) + H3O^1 (-9332) -> No product
-At time : 16.001 ns Reaction : H3O^1 (-10078) + OH^-1 (-14128) -> No product
-At time : 16.001 ns Reaction : e_aq^-1 (-2354) + H^0 (-14057) -> OH^-1 (-14156) + H_2^0 (-14157)
-At time : 16.001 ns Reaction : OH^-1 (-13972) + H3O^1 (-7319) -> No product
-At time : 16.001 ns Reaction : H3O^1 (-10404) + OH^-1 (-13936) -> No product
-At time : 16.001 ns Reaction : OH^-1 (-13920) + H3O^1 (-7315) -> No product
-At time : 16.001 ns Reaction : H3O^1 (-8419) + OH^-1 (-13600) -> No product
-At time : 16.001 ns Reaction : OH^-1 (-13381) + H3O^1 (-10082) -> No product
-At time : 16.001 ns Reaction : OH^-1 (-13375) + H3O^1 (-5819) -> No product
-At time : 16.001 ns Reaction : e_aq^-1 (-4118) + H^0 (-13057) -> OH^-1 (-14158) + H_2^0 (-14159)
-At time : 16.001 ns Reaction : H3O^1 (-10134) + OH^-1 (-12969) -> No product
-At time : 16.001 ns Reaction : e_aq^-1 (-5164) + H2O2^0 (-12369) -> OH^-1 (-14160) + OH^0 (-14161)
-At time : 16.001 ns Reaction : e_aq^-1 (-4469) + H2O2^0 (-12102) -> OH^-1 (-14162) + OH^0 (-14163)
-At time : 16.001 ns Reaction : e_aq^-1 (-4594) + H3O^1 (-10675) -> H^0 (-14164)
-At time : 16.001 ns Reaction : e_aq^-1 (-6333) + H3O^1 (-10587) -> H^0 (-14165)
-At time : 16.001 ns Reaction : e_aq^-1 (-5176) + H3O^1 (-10555) -> H^0 (-14166)
-At time : 16.001 ns Reaction : e_aq^-1 (-3085) + H3O^1 (-9718) -> H^0 (-14167)
-At time : 16.001 ns Reaction : H3O^1 (-10025) + OH^-1 (-14143) -> No product
-At time : 17.001 ns Reaction : H3O^1 (-9781) + OH^-1 (-13818) -> No product
-At time : 17.001 ns Reaction : H2O2^0 (-12170) + e_aq^-1 (-5342) -> OH^-1 (-14168) + OH^0 (-14169)
-At time : 17.001 ns Reaction : e_aq^-1 (-5011) + H3O^1 (-10581) -> H^0 (-14170)
-At time : 17.001 ns Reaction : e_aq^-1 (-5236) + H3O^1 (-8702) -> H^0 (-14171)
-At time : 17.001 ns Reaction : OH^-1 (-14162) + H3O^1 (-10633) -> No product
-At time : 18.001 ns Reaction : H3O^1 (-8024) + OH^-1 (-14149) -> No product
-At time : 18.001 ns Reaction : H3O^1 (-7213) + OH^-1 (-14141) -> No product
-At time : 18.001 ns Reaction : OH^-1 (-14139) + H3O^1 (-9789) -> No product
-At time : 18.001 ns Reaction : H3O^1 (-5885) + OH^-1 (-14133) -> No product
-At time : 18.001 ns Reaction : H3O^1 (-7321) + OH^-1 (-13892) -> No product
-At time : 18.001 ns Reaction : e_aq^-1 (-2540) + H^0 (-13598) -> OH^-1 (-14172) + H_2^0 (-14173)
-At time : 18.001 ns Reaction : e_aq^-1 (-4234) + H3O^1 (-8827) -> H^0 (-14174)
-At time : 18.001 ns Reaction : H2O2^0 (-11844) + e_aq^-1 (-5710) -> OH^-1 (-14175) + OH^0 (-14176)
-At time : 19.001 ns Reaction : H3O^1 (-10019) + OH^-1 (-13519) -> No product
-At time : 19.001 ns Reaction : H3O^1 (-7299) + OH^-1 (-13207) -> No product
-At time : 19.001 ns Reaction : H^0 (-12838) + e_aq^-1 (-5390) -> OH^-1 (-14177) + H_2^0 (-14178)
-At time : 19.001 ns Reaction : e_aq^-1 (-6276) + H3O^1 (-9081) -> H^0 (-14179)
-At time : 19.001 ns Reaction : e_aq^-1 (-6114) + H3O^1 (-8511) -> H^0 (-14180)
-At time : 20.001 ns Reaction : OH^-1 (-14158) + H3O^1 (-10424) -> No product
-At time : 20.001 ns Reaction : OH^-1 (-14071) + H3O^1 (-8483) -> No product
-At time : 20.001 ns Reaction : H^0 (-13659) + e_aq^-1 (-2059) -> OH^-1 (-14181) + H_2^0 (-14182)
-At time : 20.001 ns Reaction : e_aq^-1 (-5098) + H3O^1 (-8340) -> H^0 (-14183)
-At time : 20.001 ns Reaction : e_aq^-1 (-5050) + H2O2^0 (-12156) -> OH^-1 (-14184) + OH^0 (-14185)
-At time : 21.001 ns Reaction : H3O^1 (-7566) + OH^-1 (-14181) -> No product
-At time : 21.001 ns Reaction : H3O^1 (-9443) + OH^-1 (-14160) -> No product
-At time : 21.001 ns Reaction : OH^-1 (-13950) + H3O^1 (-10756) -> No product
-At time : 21.001 ns Reaction : OH^-1 (-13931) + H3O^1 (-10695) -> No product
-At time : 21.001 ns Reaction : OH^-1 (-14184) + H3O^1 (-8568) -> No product
-At time : 21.001 ns Reaction : e_aq^-1 (-2113) + H2O2^0 (-11913) -> OH^-1 (-14186) + OH^0 (-14187)
-At time : 22.001 ns Reaction : H3O^1 (-8448) + OH^-1 (-14186) -> No product
-At time : 22.001 ns Reaction : H3O^1 (-8070) + OH^-1 (-14156) -> No product
-At time : 22.001 ns Reaction : e_aq^-1 (-4027) + OH^0 (-14152) -> OH^-1 (-14188)
-At time : 22.001 ns Reaction : e_aq^-1 (-45) + OH^0 (-14144) -> OH^-1 (-14189)
-At time : 22.001 ns Reaction : H^0 (-14104) + e_aq^-1 (-1996) -> OH^-1 (-14190) + H_2^0 (-14191)
-At time : 22.001 ns Reaction : e_aq^-1 (-441) + OH^0 (-13961) -> OH^-1 (-14192)
-At time : 22.001 ns Reaction : OH^-1 (-13910) + H3O^1 (-7633) -> No product
-At time : 22.001 ns Reaction : e_aq^-1 (-2432) + H^0 (-13620) -> OH^-1 (-14193) + H_2^0 (-14194)
-At time : 22.001 ns Reaction : H3O^1 (-9166) + OH^-1 (-13405) -> No product
-At time : 22.001 ns Reaction : OH^-1 (-12828) + H3O^1 (-5897) -> No product
-At time : 22.001 ns Reaction : H3O^1 (-9553) + OH^-1 (-14192) -> No product
-At time : 22.001 ns Reaction : H2O2^0 (-11557) + e_aq^-1 (-5567) -> OH^-1 (-14195) + OH^0 (-14196)
-At time : 23.001 ns Reaction : H3O^1 (-6245) + OH^-1 (-14172) -> No product
-At time : 23.001 ns Reaction : OH^-1 (-13968) + H3O^1 (-11094) -> No product
-At time : 23.001 ns Reaction : e_aq^-1 (-841) + H^0 (-13953) -> OH^-1 (-14197) + H_2^0 (-14198)
-At time : 23.001 ns Reaction : OH^-1 (-13351) + H3O^1 (-9618) -> No product
-At time : 23.001 ns Reaction : e_aq^-1 (-4391) + H2O2^0 (-12398) -> OH^-1 (-14199) + OH^0 (-14200)
-At time : 23.001 ns Reaction : e_aq^-1 (-5910) + H3O^1 (-8120) -> H^0 (-14201)
-At time : 23.001 ns Reaction : H3O^1 (-8026) + e_aq^-1 (-5883) -> H^0 (-14202)
-At time : 24.001 ns Reaction : H3O^1 (-9398) + OH^-1 (-14199) -> No product
-At time : 24.001 ns Reaction : OH^-1 (-14195) + H3O^1 (-10711) -> No product
-At time : 24.001 ns Reaction : OH^-1 (-14175) + H3O^1 (-8829) -> No product
-At time : 24.001 ns Reaction : H^0 (-13672) + e_aq^-1 (-4058) -> OH^-1 (-14203) + H_2^0 (-14204)
-At time : 24.001 ns Reaction : e_aq^-1 (-4329) + H2O2^0 (-12448) -> OH^-1 (-14205) + OH^0 (-14206)
-At time : 24.001 ns Reaction : e_aq^-1 (-5047) + H2O2^0 (-12289) -> OH^-1 (-14207) + OH^0 (-14208)
-At time : 24.001 ns Reaction : e_aq^-1 (-5626) + H3O^1 (-10450) -> H^0 (-14209)
-At time : 24.001 ns Reaction : e_aq^-1 (-5940) + H3O^1 (-9509) -> H^0 (-14210)
-At time : 24.001 ns Reaction : OH^0 (-6193) + OH^0 (-8193) -> H2O2^0 (-14211)
-At time : 24.001 ns Reaction : OH^-1 (-14207) + H3O^1 (-6263) -> No product
-At time : 25.001 ns Reaction : OH^-1 (-14205) + H3O^1 (-10659) -> No product
-At time : 25.001 ns Reaction : OH^-1 (-14197) + H3O^1 (-5861) -> No product
-At time : 25.001 ns Reaction : OH^-1 (-14051) + H3O^1 (-9091) -> No product
-At time : 25.001 ns Reaction : OH^-1 (-14002) + H3O^1 (-9835) -> No product
-At time : 25.001 ns Reaction : OH^-1 (-13911) + H3O^1 (-10870) -> No product
-At time : 25.001 ns Reaction : H^0 (-13767) + e_aq^-1 (-4472) -> OH^-1 (-14212) + H_2^0 (-14213)
-At time : 25.001 ns Reaction : e_aq^-1 (-3619) + H^0 (-13483) -> OH^-1 (-14214) + H_2^0 (-14215)
-At time : 25.001 ns Reaction : OH^-1 (-13390) + H3O^1 (-10196) -> No product
-At time : 25.001 ns Reaction : H^0 (-13253) + e_aq^-1 (-2511) -> OH^-1 (-14216) + H_2^0 (-14217)
-At time : 25.001 ns Reaction : H2O2^0 (-12110) + e_aq^-1 (-6108) -> OH^-1 (-14218) + OH^0 (-14219)
-At time : 25.001 ns Reaction : H2O2^0 (-12073) + e_aq^-1 (-4005) -> OH^-1 (-14220) + OH^0 (-14221)
-At time : 25.001 ns Reaction : H2O2^0 (-11635) + e_aq^-1 (-5307) -> OH^-1 (-14222) + OH^0 (-14223)
-At time : 25.001 ns Reaction : e_aq^-1 (-5877) + H^0 (-8644) -> OH^-1 (-14224) + H_2^0 (-14225)
-At time : 26.001 ns Reaction : H3O^1 (-8668) + OH^-1 (-14216) -> No product
-At time : 26.001 ns Reaction : OH^-1 (-14212) + H3O^1 (-9392) -> No product
-At time : 26.001 ns Reaction : H3O^1 (-7429) + OH^-1 (-14190) -> No product
-At time : 26.001 ns Reaction : e_aq^-1 (-2271) + H2O2^0 (-14116) -> OH^-1 (-14226) + OH^0 (-14227)
-At time : 26.001 ns Reaction : OH^-1 (-13448) + H3O^1 (-9457) -> No product
-At time : 26.001 ns Reaction : OH^-1 (-13357) + H3O^1 (-7797) -> No product
-At time : 26.001 ns Reaction : H3O^1 (-9612) + OH^-1 (-13082) -> No product
-At time : 26.001 ns Reaction : H2O2^0 (-11835) + e_aq^-1 (-5405) -> OH^-1 (-14228) + OH^0 (-14229)
-At time : 26.001 ns Reaction : e_aq^-1 (-5424) + H3O^1 (-10202) -> H^0 (-14230)
-At time : 26.001 ns Reaction : H3O^1 (-7446) + e_aq^-1 (-5832) -> H^0 (-14231)
-At time : 26.001 ns Reaction : H3O^1 (-7293) + e_aq^-1 (-6147) -> H^0 (-14232)
-At time : 27.001 ns Reaction : OH^-1 (-14226) + H3O^1 (-10308) -> No product
-At time : 27.001 ns Reaction : OH^-1 (-14220) + H3O^1 (-8590) -> No product
-At time : 27.001 ns Reaction : H3O^1 (-7494) + OH^-1 (-14214) -> No product
-At time : 27.001 ns Reaction : H3O^1 (-6086) + OH^-1 (-14124) -> No product
-At time : 27.001 ns Reaction : H^0 (-14053) + e_aq^-1 (-2276) -> OH^-1 (-14233) + H_2^0 (-14234)
-At time : 27.001 ns Reaction : e_aq^-1 (-2141) + H^0 (-13531) -> OH^-1 (-14235) + H_2^0 (-14236)
-At time : 27.001 ns Reaction : e_aq^-1 (-4325) + H^0 (-13470) -> OH^-1 (-14237) + H_2^0 (-14238)
-At time : 27.001 ns Reaction : e_aq^-1 (-4991) + H3O^1 (-10541) -> H^0 (-14239)
-At time : 27.001 ns Reaction : H3O^1 (-10013) + e_aq^-1 (-5639) -> H^0 (-14240)
-At time : 27.001 ns Reaction : e_aq^-1 (-3625) + H3O^1 (-9172) -> H^0 (-14241)
-At time : 28.001 ns Reaction : OH^-1 (-14233) + H3O^1 (-8252) -> No product
-At time : 28.001 ns Reaction : H3O^1 (-7825) + OH^-1 (-14224) -> No product
-At time : 28.001 ns Reaction : H3O^1 (-6970) + OH^-1 (-14222) -> No product
-At time : 28.001 ns Reaction : H3O^1 (-9937) + OH^-1 (-14218) -> No product
-At time : 28.001 ns Reaction : e_aq^-1 (-5298) + H2O2^0 (-13919) -> OH^-1 (-14242) + OH^0 (-14243)
-At time : 28.001 ns Reaction : e_aq^-1 (-2595) + H^0 (-13905) -> OH^-1 (-14244) + H_2^0 (-14245)
-At time : 28.001 ns Reaction : H^0 (-12808) + e_aq^-1 (-5934) -> OH^-1 (-14246) + H_2^0 (-14247)
-At time : 29.001 ns Reaction : OH^-1 (-14244) + H3O^1 (-9950) -> No product
-At time : 29.001 ns Reaction : H3O^1 (-9075) + OH^-1 (-14237) -> No product
-At time : 29.001 ns Reaction : H3O^1 (-7551) + e_aq^-1 (-6372) -> H^0 (-14248)
-At time : 30.001 ns Reaction : H3O^1 (-9229) + OH^-1 (-14246) -> No product
-At time : 30.001 ns Reaction : OH^-1 (-14242) + H3O^1 (-10539) -> No product
-At time : 30.001 ns Reaction : OH^-1 (-14228) + H3O^1 (-9702) -> No product
-At time : 30.001 ns Reaction : e_aq^-1 (-1533) + OH^0 (-14206) -> OH^-1 (-14249)
-At time : 30.001 ns Reaction : H^0 (-14138) + e_aq^-1 (-3794) -> OH^-1 (-14250) + H_2^0 (-14251)
-At time : 30.001 ns Reaction : H3O^1 (-7112) + OH^-1 (-14131) -> No product
-At time : 31.001 ns Reaction : OH^-1 (-13741) + H3O^1 (-8298) -> No product
-At time : 31.001 ns Reaction : H^0 (-13707) + e_aq^-1 (-4048) -> OH^-1 (-14252) + H_2^0 (-14253)
-At time : 31.001 ns Reaction : OH^-1 (-13668) + H3O^1 (-10090) -> No product
-At time : 31.001 ns Reaction : e_aq^-1 (-1934) + H^0 (-13303) -> OH^-1 (-14254) + H_2^0 (-14255)
-At time : 31.001 ns Reaction : OH^-1 (-13273) + H3O^1 (-9682) -> No product
-At time : 31.001 ns Reaction : OH^-1 (-12728) + H3O^1 (-10144) -> No product
-At time : 31.001 ns Reaction : e_aq^-1 (-5949) + H3O^1 (-8797) -> H^0 (-14256)
-At time : 31.001 ns Reaction : e_aq^-1 (-4053) + H3O^1 (-8454) -> H^0 (-14257)
-At time : 32.001 ns Reaction : OH^-1 (-14188) + H3O^1 (-9211) -> No product
-At time : 32.001 ns Reaction : OH^-1 (-14177) + H3O^1 (-9927) -> No product
-At time : 32.001 ns Reaction : H^0 (-14112) + e_aq^-1 (-4239) -> OH^-1 (-14258) + H_2^0 (-14259)
-At time : 32.001 ns Reaction : H3O^1 (-9419) + OH^-1 (-13842) -> No product
-At time : 32.001 ns Reaction : e_aq^-1 (-4600) + H^0 (-13673) -> OH^-1 (-14260) + H_2^0 (-14261)
-At time : 32.001 ns Reaction : e_aq^-1 (-5679) + H3O^1 (-8763) -> H^0 (-14262)
-At time : 32.001 ns Reaction : H2O2^0 (-12192) + e_aq^-1 (-6459) -> OH^-1 (-14263) + OH^0 (-14264)
-At time : 33.001 ns Reaction : H3O^1 (-8244) + OH^-1 (-14260) -> No product
-At time : 33.001 ns Reaction : OH^-1 (-14203) + H3O^1 (-6395) -> No product
-At time : 33.001 ns Reaction : OH^-1 (-14193) + H3O^1 (-10245) -> No product
-At time : 33.001 ns Reaction : OH^-1 (-14189) + H3O^1 (-8395) -> No product
-At time : 33.001 ns Reaction : OH^0 (-14069) + e_aq^-1 (-2151) -> OH^-1 (-14265)
-At time : 33.001 ns Reaction : e_aq^-1 (-655) + H^0 (-12975) -> OH^-1 (-14266) + H_2^0 (-14267)
-At time : 33.001 ns Reaction : e_aq^-1 (-2256) + H3O^1 (-10406) -> H^0 (-14268)
-At time : 34.001 ns Reaction : OH^-1 (-14252) + H3O^1 (-10834) -> No product
-At time : 34.001 ns Reaction : e_aq^-1 (-1984) + OH^0 (-14161) -> OH^-1 (-14269)
-At time : 34.001 ns Reaction : e_aq^-1 (-4510) + H2O2^0 (-12395) -> OH^-1 (-14270) + OH^0 (-14271)
-At time : 34.001 ns Reaction : H2O2^0 (-11561) + e_aq^-1 (-5065) -> OH^-1 (-14272) + OH^0 (-14273)
-At time : 34.001 ns Reaction : e_aq^-1 (-2639) + e_aq^-1 (-3523) -> OH^-1 (-14274) + OH^-1 (-14275) + H_2^0 (-14276)
-At time : 34.001 ns Reaction : H3O^1 (-6176) + OH^-1 (-14269) -> No product
-At time : 35.001 ns Reaction : H2O2^0 (-12554) + e_aq^-1 (-5054) -> OH^-1 (-14277) + OH^0 (-14278)
-At time : 35.001 ns Reaction : H2O2^0 (-12540) + e_aq^-1 (-5997) -> OH^-1 (-14279) + OH^0 (-14280)
-At time : 35.001 ns Reaction : e_aq^-1 (-5259) + H3O^1 (-10748) -> H^0 (-14281)
-At time : 35.001 ns Reaction : e_aq^-1 (-6195) + H3O^1 (-9168) -> H^0 (-14282)
-At time : 36.001 ns Reaction : H3O^1 (-7816) + OH^-1 (-14277) -> No product
-At time : 36.001 ns Reaction : OH^-1 (-14270) + H3O^1 (-9278) -> No product
-At time : 36.001 ns Reaction : OH^-1 (-14265) + H3O^1 (-9127) -> No product
-At time : 36.001 ns Reaction : H3O^1 (-6996) + OH^-1 (-14263) -> No product
-At time : 36.001 ns Reaction : e_aq^-1 (-1874) + OH^0 (-14176) -> OH^-1 (-14283)
-At time : 36.001 ns Reaction : e_aq^-1 (-5675) + H2O2^0 (-12380) -> OH^-1 (-14284) + OH^0 (-14285)
-At time : 36.001 ns Reaction : e_aq^-1 (-4296) + H3O^1 (-10767) -> H^0 (-14286)
-At time : 36.001 ns Reaction : H3O^1 (-10023) + e_aq^-1 (-4771) -> H^0 (-14287)
-At time : 36.001 ns Reaction : e_aq^-1 (-6327) + H3O^1 (-9551) -> H^0 (-14288)
-At time : 36.001 ns Reaction : e_aq^-1 (-5853) + H3O^1 (-9138) -> H^0 (-14289)
-At time : 37.001 ns Reaction : OH^-1 (-13274) + H3O^1 (-5993) -> No product
-At time : 37.001 ns Reaction : H2O2^0 (-12158) + e_aq^-1 (-6204) -> OH^-1 (-14290) + OH^0 (-14291)
-At time : 37.001 ns Reaction : H3O^1 (-11134) + e_aq^-1 (-6426) -> H^0 (-14292)
-At time : 37.001 ns Reaction : e_aq^-1 (-4683) + H3O^1 (-9995) -> H^0 (-14293)
-At time : 37.001 ns Reaction : e_aq^-1 (-3898) + H3O^1 (-9114) -> H^0 (-14294)
-At time : 38.001 ns Reaction : OH^-1 (-14122) + H3O^1 (-8122) -> No product
-At time : 38.001 ns Reaction : e_aq^-1 (-2488) + OH^0 (-13917) -> OH^-1 (-14295)
-At time : 38.001 ns Reaction : H2O2^0 (-11820) + e_aq^-1 (-5823) -> OH^-1 (-14296) + OH^0 (-14297)
-At time : 38.001 ns Reaction : H2O2^0 (-11616) + e_aq^-1 (-6072) -> OH^-1 (-14298) + OH^0 (-14299)
-At time : 39.001 ns Reaction : OH^-1 (-14290) + H3O^1 (-10713) -> No product
-At time : 39.001 ns Reaction : OH^-1 (-14266) + H3O^1 (-8436) -> No product
-At time : 39.001 ns Reaction : OH^0 (-14163) + e_aq^-1 (-4026) -> OH^-1 (-14300)
-At time : 39.001 ns Reaction : H3O^1 (-8273) + OH^-1 (-14147) -> No product
-At time : 39.001 ns Reaction : H^0 (-14096) + e_aq^-1 (-4361) -> OH^-1 (-14301) + H_2^0 (-14302)
-At time : 39.001 ns Reaction : H^0 (-14033) + H^0 (-14001) -> H_2^0 (-14303)
-At time : 39.001 ns Reaction : e_aq^-1 (-4120) + H3O^1 (-10251) -> H^0 (-14304)
-At time : 39.001 ns Reaction : e_aq^-1 (-5319) + H3O^1 (-10140) -> H^0 (-14305)
-At time : 39.001 ns Reaction : e_aq^-1 (-6450) + H3O^1 (-8966) -> H^0 (-14306)
-At time : 40.001 ns Reaction : OH^-1 (-14284) + H3O^1 (-9340) -> No product
-At time : 40.001 ns Reaction : OH^-1 (-14275) + H3O^1 (-8426) -> No product
-At time : 40.001 ns Reaction : e_aq^-1 (-2073) + OH^0 (-14076) -> OH^-1 (-14307)
-At time : 40.001 ns Reaction : OH^-1 (-13935) + H3O^1 (-8221) -> No product
-At time : 40.001 ns Reaction : e_aq^-1 (-195) + H^0 (-13787) -> OH^-1 (-14308) + H_2^0 (-14309)
-At time : 40.001 ns Reaction : e_aq^-1 (-4393) + H^0 (-13515) -> OH^-1 (-14310) + H_2^0 (-14311)
-At time : 40.001 ns Reaction : e_aq^-1 (-4558) + H^0 (-13225) -> OH^-1 (-14312) + H_2^0 (-14313)
-At time : 40.001 ns Reaction : e_aq^-1 (-497) + H3O^1 (-10740) -> H^0 (-14314)
-At time : 40.001 ns Reaction : e_aq^-1 (-4110) + H3O^1 (-7150) -> H^0 (-14315)
-At time : 41.001 ns Reaction : H3O^1 (-8831) + OH^-1 (-14283) -> No product
-At time : 41.001 ns Reaction : e_aq^-1 (-4378) + H^0 (-14170) -> OH^-1 (-14316) + H_2^0 (-14317)
-At time : 41.001 ns Reaction : H^0 (-13698) + e_aq^-1 (-4132) -> OH^-1 (-14318) + H_2^0 (-14319)
-At time : 41.001 ns Reaction : H^0 (-13654) + e_aq^-1 (-3816) -> OH^-1 (-14320) + H_2^0 (-14321)
-At time : 41.001 ns Reaction : e_aq^-1 (-5049) + H2O2^0 (-12486) -> OH^-1 (-14322) + OH^0 (-14323)
-At time : 41.001 ns Reaction : e_aq^-1 (-457) + H3O^1 (-10775) -> H^0 (-14324)
-At time : 42.001 ns Reaction : H3O^1 (-7723) + OH^-1 (-14318) -> No product
-At time : 42.001 ns Reaction : H3O^1 (-8452) + OH^-1 (-14295) -> No product
-At time : 42.001 ns Reaction : OH^-1 (-14274) + H3O^1 (-9158) -> No product
-At time : 42.001 ns Reaction : H3O^1 (-8248) + OH^-1 (-14258) -> No product
-At time : 42.001 ns Reaction : H^0 (-14137) + e_aq^-1 (-4882) -> OH^-1 (-14325) + H_2^0 (-14326)
-At time : 42.001 ns Reaction : OH^0 (-13731) + OH^0 (-13772) -> H2O2^0 (-14327)
-At time : 42.001 ns Reaction : H3O^1 (-7714) + OH^-1 (-12560) -> No product
-At time : 42.001 ns Reaction : OH^0 (-7468) + e_aq^-1 (-6024) -> OH^-1 (-14328)
-At time : 42.001 ns Reaction : e_aq^-1 (-1998) + e_aq^-1 (-6240) -> OH^-1 (-14329) + OH^-1 (-14330) + H_2^0 (-14331)
-At time : 43.001 ns Reaction : OH^-1 (-14279) + H3O^1 (-8651) -> No product
-At time : 43.001 ns Reaction : OH^0 (-14100) + e_aq^-1 (-4736) -> OH^-1 (-14332)
-At time : 43.001 ns Reaction : e_aq^-1 (-3807) + H^0 (-13778) -> OH^-1 (-14333) + H_2^0 (-14334)
-At time : 43.001 ns Reaction : e_aq^-1 (-284) + OH^0 (-13666) -> OH^-1 (-14335)
-At time : 43.001 ns Reaction : H2O2^0 (-12493) + e_aq^-1 (-6183) -> OH^-1 (-14336) + OH^0 (-14337)
-At time : 43.001 ns Reaction : e_aq^-1 (-3738) + H3O^1 (-7233) -> H^0 (-14338)
-At time : 44.001 ns Reaction : OH^-1 (-14322) + H3O^1 (-10116) -> No product
-At time : 44.001 ns Reaction : OH^-1 (-14310) + H3O^1 (-7561) -> No product
-At time : 44.001 ns Reaction : OH^-1 (-14249) + H3O^1 (-6425) -> No product
-At time : 45.001 ns Reaction : OH^-1 (-14312) + H3O^1 (-7656) -> No product
-At time : 45.001 ns Reaction : OH^-1 (-14298) + H3O^1 (-7774) -> No product
-At time : 45.001 ns Reaction : e_aq^-1 (-1423) + OH^0 (-14229) -> OH^-1 (-14339)
-At time : 45.001 ns Reaction : e_aq^-1 (-229) + H^0 (-14171) -> OH^-1 (-14340) + H_2^0 (-14341)
-At time : 45.001 ns Reaction : OH^-1 (-13864) + H3O^1 (-9894) -> No product
-At time : 45.001 ns Reaction : H^0 (-13706) + e_aq^-1 (-4737) -> OH^-1 (-14342) + H_2^0 (-14343)
-At time : 45.001 ns Reaction : e_aq^-1 (-2207) + H^0 (-13648) -> OH^-1 (-14344) + H_2^0 (-14345)
-At time : 45.001 ns Reaction : e_aq^-1 (-3934) + H3O^1 (-10460) -> H^0 (-14346)
-At time : 46.001 ns Reaction : OH^-1 (-14300) + H3O^1 (-8576) -> No product
-At time : 46.001 ns Reaction : e_aq^-1 (-2038) + H^0 (-14232) -> OH^-1 (-14347) + H_2^0 (-14348)
-At time : 46.001 ns Reaction : e_aq^-1 (-4418) + H^0 (-13899) -> OH^-1 (-14349) + H_2^0 (-14350)
-At time : 46.001 ns Reaction : OH^-1 (-13317) + H3O^1 (-9089) -> No product
-At time : 47.001 ns Reaction : e_aq^-1 (-3815) + H^0 (-14346) -> OH^-1 (-14351) + H_2^0 (-14352)
-At time : 47.001 ns Reaction : OH^-1 (-14339) + H3O^1 (-9358) -> No product
-At time : 47.001 ns Reaction : H3O^1 (-6846) + OH^-1 (-14332) -> No product
-At time : 47.001 ns Reaction : H3O^1 (-10462) + OH^-1 (-14325) -> No product
-At time : 47.001 ns Reaction : OH^-1 (-14235) + H3O^1 (-6248) -> No product
-At time : 47.001 ns Reaction : e_aq^-1 (-1110) + OH^0 (-14223) -> OH^-1 (-14353)
-At time : 47.001 ns Reaction : OH^0 (-13735) + e_aq^-1 (-5892) -> OH^-1 (-14354)
-At time : 47.001 ns Reaction : e_aq^-1 (-585) + H^0 (-13532) -> OH^-1 (-14355) + H_2^0 (-14356)
-At time : 47.001 ns Reaction : H2O2^0 (-12598) + e_aq^-1 (-5907) -> OH^-1 (-14357) + OH^0 (-14358)
-At time : 48.001 ns Reaction : H3O^1 (-8621) + OH^-1 (-14351) -> No product
-At time : 48.001 ns Reaction : OH^-1 (-14340) + H3O^1 (-9346) -> No product
-At time : 48.001 ns Reaction : H3O^1 (-10001) + OH^-1 (-14336) -> No product
-At time : 48.001 ns Reaction : OH^-1 (-14316) + H3O^1 (-7768) -> No product
-At time : 48.001 ns Reaction : OH^-1 (-14301) + H3O^1 (-9806) -> No product
-At time : 48.001 ns Reaction : H^0 (-13940) + e_aq^-1 (-5314) -> OH^-1 (-14359) + H_2^0 (-14360)
-At time : 48.001 ns Reaction : e_aq^-1 (-951) + H3O^1 (-10346) -> H^0 (-14361)
-At time : 49.001 ns Reaction : H^0 (-14286) + e_aq^-1 (-3676) -> OH^-1 (-14362) + H_2^0 (-14363)
-At time : 49.001 ns Reaction : e_aq^-1 (-4433) + H2O2^0 (-12490) -> OH^-1 (-14364) + OH^0 (-14365)
-At time : 49.001 ns Reaction : e_aq^-1 (-4076) + H3O^1 (-11078) -> H^0 (-14366)
-At time : 50.001 ns Reaction : H3O^1 (-8854) + OH^-1 (-14347) -> No product
-At time : 50.001 ns Reaction : OH^-1 (-14307) + H3O^1 (-10545) -> No product
-At time : 50.001 ns Reaction : e_aq^-1 (-6117) + H^0 (-14098) -> OH^-1 (-14367) + H_2^0 (-14368)
-At time : 50.001 ns Reaction : H^0 (-13739) + e_aq^-1 (-5504) -> OH^-1 (-14369) + H_2^0 (-14370)
-At time : 50.001 ns Reaction : OH^-1 (-12677) + H3O^1 (-8602) -> No product
-At time : 50.001 ns Reaction : H3O^1 (-7727) + e_aq^-1 (-3979) -> H^0 (-14371)
-At time : 51.001 ns Reaction : H^0 (-14371) + e_aq^-1 (-6069) -> OH^-1 (-14372) + H_2^0 (-14373)
-At time : 51.001 ns Reaction : OH^-1 (-14355) + H3O^1 (-6422) -> No product
-At time : 51.001 ns Reaction : OH^-1 (-14354) + H3O^1 (-5852) -> No product
-At time : 51.001 ns Reaction : e_aq^-1 (-4082) + H^0 (-14020) -> OH^-1 (-14374) + H_2^0 (-14375)
-At time : 51.001 ns Reaction : OH^-1 (-13829) + H3O^1 (-8783) -> No product
-At time : 51.001 ns Reaction : e_aq^-1 (-3586) + H3O^1 (-8890) -> H^0 (-14376)
-At time : 51.001 ns Reaction : e_aq^-1 (-3891) + H3O^1 (-6371) -> H^0 (-14377)
-At time : 52.001 ns Reaction : OH^-1 (-14254) + H3O^1 (-9959) -> No product
-At time : 52.001 ns Reaction : OH^-1 (-14250) + H3O^1 (-7197) -> No product
-At time : 52.001 ns Reaction : OH^-1 (-13395) + H3O^1 (-10643) -> No product
-At time : 52.001 ns Reaction : e_aq^-1 (-5958) + H2O2^0 (-12259) -> OH^-1 (-14378) + OH^0 (-14379)
-At time : 52.001 ns Reaction : H2O2^0 (-12154) + e_aq^-1 (-3755) -> OH^-1 (-14380) + OH^0 (-14381)
-At time : 52.001 ns Reaction : e_aq^-1 (-2700) + H3O^1 (-8233) -> H^0 (-14382)
-At time : 52.001 ns Reaction : e_aq^-1 (-4681) + e_aq^-1 (-6189) -> OH^-1 (-14383) + OH^-1 (-14384) + H_2^0 (-14385)
-At time : 53.001 ns Reaction : OH^-1 (-14369) + H3O^1 (-9965) -> No product
-At time : 53.001 ns Reaction : OH^-1 (-14168) + H3O^1 (-8092) -> No product
-At time : 53.001 ns Reaction : e_aq^-1 (-4223) + H2O2^0 (-12768) -> OH^-1 (-14386) + OH^0 (-14387)
-At time : 53.001 ns Reaction : e_aq^-1 (-4544) + H3O^1 (-9736) -> H^0 (-14388)
-At time : 54.001 ns Reaction : H3O^1 (-9706) + OH^-1 (-14353) -> No product
-At time : 54.001 ns Reaction : OH^-1 (-14344) + H3O^1 (-10494) -> No product
-At time : 54.001 ns Reaction : OH^0 (-14273) + e_aq^-1 (-3588) -> OH^-1 (-14389)
-At time : 54.001 ns Reaction : H2O2^0 (-11889) + e_aq^-1 (-6222) -> OH^-1 (-14390) + OH^0 (-14391)
-At time : 54.001 ns Reaction : e_aq^-1 (-4582) + H3O^1 (-8986) -> H^0 (-14392)
-At time : 54.001 ns Reaction : e_aq^-1 (-5991) + H3O^1 (-8076) -> H^0 (-14393)
-At time : 55.001 ns Reaction : OH^-1 (-14146) + H3O^1 (-9266) -> No product
-At time : 55.001 ns Reaction : e_aq^-1 (-4379) + OH^0 (-14129) -> OH^-1 (-14394)
-At time : 55.001 ns Reaction : H3O^1 (-7665) + OH^-1 (-14113) -> No product
-At time : 55.001 ns Reaction : H^0 (-14097) + e_aq^-1 (-3759) -> OH^-1 (-14395) + H_2^0 (-14396)
-At time : 55.001 ns Reaction : H2O2^0 (-11684) + e_aq^-1 (-4126) -> OH^-1 (-14397) + OH^0 (-14398)
-At time : 55.001 ns Reaction : e_aq^-1 (-4776) + H3O^1 (-10789) -> H^0 (-14399)
-At time : 55.001 ns Reaction : e_aq^-1 (-3893) + H3O^1 (-9225) -> H^0 (-14400)
-At time : 55.001 ns Reaction : e_aq^-1 (-5835) + e_aq^-1 (-6192) -> OH^-1 (-14401) + OH^-1 (-14402) + H_2^0 (-14403)
-At time : 56.001 ns Reaction : OH^-1 (-14389) + H3O^1 (-10388) -> No product
-At time : 56.001 ns Reaction : H^0 (-14377) + e_aq^-1 (-1311) -> OH^-1 (-14404) + H_2^0 (-14405)
-At time : 56.001 ns Reaction : OH^-1 (-14374) + H3O^1 (-9176) -> No product
-At time : 56.001 ns Reaction : H3O^1 (-8271) + OH^-1 (-14362) -> No product
-At time : 56.001 ns Reaction : e_aq^-1 (-3512) + H^0 (-13417) -> OH^-1 (-14406) + H_2^0 (-14407)
-At time : 56.001 ns Reaction : e_aq^-1 (-2556) + H3O^1 (-9236) -> H^0 (-14408)
-At time : 56.001 ns Reaction : e_aq^-1 (-5423) + H3O^1 (-9112) -> H^0 (-14409)
-At time : 56.001 ns Reaction : H3O^1 (-7764) + e_aq^-1 (-5889) -> H^0 (-14410)
-At time : 56.001 ns Reaction : e_aq^-1 (-5922) + e_aq^-1 (-6216) -> OH^-1 (-14411) + OH^-1 (-14412) + H_2^0 (-14413)
-At time : 57.001 ns Reaction : OH^-1 (-14359) + H3O^1 (-9180) -> No product
-At time : 57.001 ns Reaction : e_aq^-1 (-4623) + OH^0 (-14243) -> OH^-1 (-14414)
-At time : 57.001 ns Reaction : e_aq^-1 (-4818) + OH^0 (-13861) -> OH^-1 (-14415)
-At time : 57.001 ns Reaction : e_aq^-1 (-5442) + H3O^1 (-9674) -> H^0 (-14416)
-At time : 57.001 ns Reaction : e_aq^-1 (-5178) + H3O^1 (-9152) -> H^0 (-14417)
-At time : 57.001 ns Reaction : H2O2^0 (-11692) + e_aq^-1 (-4211) -> OH^-1 (-14418) + OH^0 (-14419)
-At time : 58.001 ns Reaction : e_aq^-1 (-5005) + OH^0 (-14398) -> OH^-1 (-14420)
-At time : 58.001 ns Reaction : OH^-1 (-14386) + H3O^1 (-9287) -> No product
-At time : 58.001 ns Reaction : H3O^1 (-9404) + OH^-1 (-14380) -> No product
-At time : 58.001 ns Reaction : H3O^1 (-7877) + OH^-1 (-14335) -> No product
-At time : 58.001 ns Reaction : OH^-1 (-14272) + H3O^1 (-8850) -> No product
-At time : 58.001 ns Reaction : e_aq^-1 (-4574) + H^0 (-13962) -> OH^-1 (-14421) + H_2^0 (-14422)
-At time : 58.001 ns Reaction : OH^-1 (-13408) + H3O^1 (-8801) -> No product
-At time : 58.001 ns Reaction : e_aq^-1 (-5092) + H3O^1 (-9102) -> H^0 (-14423)
-At time : 58.001 ns Reaction : e_aq^-1 (-2396) + H3O^1 (-8714) -> H^0 (-14424)
-At time : 59.001 ns Reaction : OH^-1 (-14421) + H3O^1 (-9276) -> No product
-At time : 59.001 ns Reaction : H^0 (-13984) + H^0 (-14289) -> H_2^0 (-14425)
-At time : 59.001 ns Reaction : e_aq^-1 (-230) + H^0 (-14164) -> OH^-1 (-14426) + H_2^0 (-14427)
-At time : 59.001 ns Reaction : H3O^1 (-7979) + e_aq^-1 (-578) -> H^0 (-14428)
-At time : 60.001 ns Reaction : H3O^1 (-8374) + OH^-1 (-14384) -> No product
-At time : 60.001 ns Reaction : H3O^1 (-7977) + OH^-1 (-14378) -> No product
-At time : 60.001 ns Reaction : H3O^1 (-7496) + OH^-1 (-14349) -> No product
-At time : 60.001 ns Reaction : e_aq^-1 (-4853) + OH^0 (-14006) -> OH^-1 (-14429)
-At time : 60.001 ns Reaction : H2O2^0 (-11682) + e_aq^-1 (-6369) -> OH^-1 (-14430) + OH^0 (-14431)
-At time : 61.001 ns Reaction : H3O^1 (-7171) + OH^-1 (-14426) -> No product
-At time : 61.001 ns Reaction : OH^-1 (-14342) + H3O^1 (-9575) -> No product
-At time : 61.001 ns Reaction : H3O^1 (-7805) + e_aq^-1 (-6414) -> H^0 (-14432)
-At time : 62.001 ns Reaction : e_aq^-1 (-1784) + H^0 (-13934) -> OH^-1 (-14433) + H_2^0 (-14434)
-At time : 62.001 ns Reaction : e_aq^-1 (-5126) + H^0 (-13179) -> OH^-1 (-14435) + H_2^0 (-14436)
-At time : 62.001 ns Reaction : e_aq^-1 (-5701) + H2O2^0 (-12492) -> OH^-1 (-14437) + OH^0 (-14438)
-At time : 63.001 ns Reaction : H3O^1 (-9435) + OH^-1 (-14435) -> No product
-At time : 63.001 ns Reaction : OH^-1 (-14420) + H3O^1 (-10621) -> No product
-At time : 63.001 ns Reaction : e_aq^-1 (-3531) + H^0 (-14408) -> OH^-1 (-14439) + H_2^0 (-14440)
-At time : 63.001 ns Reaction : OH^-1 (-14333) + H3O^1 (-8288) -> No product
-At time : 63.001 ns Reaction : OH^-1 (-14328) + H3O^1 (-6131) -> No product
-At time : 63.001 ns Reaction : e_aq^-1 (-4356) + OH^0 (-14196) -> OH^-1 (-14441)
-At time : 63.001 ns Reaction : OH^0 (-13977) + e_aq^-1 (-6060) -> OH^-1 (-14442)
-At time : 63.001 ns Reaction : e_aq^-1 (-5577) + H2O2^0 (-12473) -> OH^-1 (-14443) + OH^0 (-14444)
-At time : 63.001 ns Reaction : e_aq^-1 (-5602) + H3O^1 (-6110) -> H^0 (-14445)
-At time : 64.001 ns Reaction : OH^-1 (-14330) + H3O^1 (-6350) -> No product
-At time : 64.001 ns Reaction : OH^0 (-14042) + e_aq^-1 (-4723) -> OH^-1 (-14446)
-At time : 64.001 ns Reaction : H2O2^0 (-11949) + e_aq^-1 (-4560) -> OH^-1 (-14447) + OH^0 (-14448)
-At time : 64.001 ns Reaction : e_aq^-1 (-2599) + H3O^1 (-9775) -> H^0 (-14449)
-At time : 65.001 ns Reaction : OH^-1 (-14447) + H3O^1 (-9730) -> No product
-At time : 65.001 ns Reaction : OH^-1 (-14433) + H3O^1 (-10892) -> No product
-At time : 65.001 ns Reaction : e_aq^-1 (-2265) + H^0 (-14432) -> OH^-1 (-14450) + H_2^0 (-14451)
-At time : 65.001 ns Reaction : e_aq^-1 (-2091) + H^0 (-13908) -> OH^-1 (-14452) + H_2^0 (-14453)
-At time : 65.001 ns Reaction : e_aq^-1 (-4680) + H2O2^0 (-11841) -> OH^-1 (-14454) + OH^0 (-14455)
-At time : 66.001 ns Reaction : OH^-1 (-14454) + H3O^1 (-9571) -> No product
-At time : 66.001 ns Reaction : OH^-1 (-14397) + H3O^1 (-9187) -> No product
-At time : 66.001 ns Reaction : H3O^1 (-5882) + OH^-1 (-14394) -> No product
-At time : 66.001 ns Reaction : OH^-1 (-14296) + H3O^1 (-8868) -> No product
-At time : 66.001 ns Reaction : e_aq^-1 (-6297) + H3O^1 (-9388) -> H^0 (-14456)
-At time : 67.001 ns Reaction : OH^-1 (-14372) + H3O^1 (-8833) -> No product
-At time : 67.001 ns Reaction : e_aq^-1 (-5331) + H^0 (-14314) -> OH^-1 (-14457) + H_2^0 (-14458)
-At time : 67.001 ns Reaction : H^0 (-14287) + e_aq^-1 (-6123) -> OH^-1 (-14459) + H_2^0 (-14460)
-At time : 67.001 ns Reaction : e_aq^-1 (-4744) + H^0 (-14018) -> OH^-1 (-14461) + H_2^0 (-14462)
-At time : 67.001 ns Reaction : e_aq^-1 (-2107) + H3O^1 (-10328) -> H^0 (-14463)
-At time : 68.001 ns Reaction : H3O^1 (-6014) + OH^-1 (-14418) -> No product
-At time : 68.001 ns Reaction : OH^-1 (-14383) + H3O^1 (-9827) -> No product
-At time : 68.001 ns Reaction : OH^-1 (-14357) + H3O^1 (-10302) -> No product
-At time : 68.001 ns Reaction : e_aq^-1 (-3950) + H^0 (-14304) -> OH^-1 (-14464) + H_2^0 (-14465)
-At time : 68.001 ns Reaction : H^0 (-14165) + e_aq^-1 (-5973) -> OH^-1 (-14466) + H_2^0 (-14467)
-At time : 68.001 ns Reaction : H^0 (-14077) + e_aq^-1 (-2412) -> OH^-1 (-14468) + H_2^0 (-14469)
-At time : 68.001 ns Reaction : e_aq^-1 (-5231) + H2O2^0 (-12183) -> OH^-1 (-14470) + OH^0 (-14471)
-At time : 69.001 ns Reaction : H3O^1 (-7833) + OH^-1 (-14464) -> No product
-At time : 69.001 ns Reaction : OH^-1 (-14390) + H3O^1 (-8962) -> No product
-At time : 69.001 ns Reaction : e_aq^-1 (-4432) + H^0 (-13533) -> OH^-1 (-14472) + H_2^0 (-14473)
-At time : 69.001 ns Reaction : H2O2^0 (-11595) + e_aq^-1 (-3642) -> OH^-1 (-14474) + OH^0 (-14475)
-At time : 69.001 ns Reaction : e_aq^-1 (-6351) + H3O^1 (-10382) -> H^0 (-14476)
-At time : 69.001 ns Reaction : e_aq^-1 (-4085) + H3O^1 (-10174) -> H^0 (-14477)
-At time : 69.001 ns Reaction : e_aq^-1 (-2447) + H3O^1 (-8148) -> H^0 (-14478)
-At time : 70.001 ns Reaction : H2O2^0 (-11749) + e_aq^-1 (-4673) -> OH^-1 (-14479) + OH^0 (-14480)
-At time : 71.001 ns Reaction : H3O^1 (-7751) + OH^-1 (-14472) -> No product
-At time : 71.001 ns Reaction : OH^-1 (-14441) + H3O^1 (-8358) -> No product
-At time : 71.001 ns Reaction : OH^-1 (-14406) + H3O^1 (-10679) -> No product
-At time : 71.001 ns Reaction : OH^-1 (-14367) + H3O^1 (-6035) -> No product
-At time : 71.001 ns Reaction : H^0 (-13926) + H^0 (-13119) -> H_2^0 (-14481)
-At time : 71.001 ns Reaction : e_aq^-1 (-3665) + H^0 (-13435) -> OH^-1 (-14482) + H_2^0 (-14483)
-At time : 71.001 ns Reaction : e_aq^-1 (-2498) + H3O^1 (-10223) -> H^0 (-14484)
-At time : 72.001 ns Reaction : e_aq^-1 (-2157) + OH^0 (-14391) -> OH^-1 (-14485)
-At time : 72.001 ns Reaction : e_aq^-1 (-2013) + H2O2^0 (-12235) -> OH^-1 (-14486) + OH^0 (-14487)
-At time : 72.001 ns Reaction : e_aq^-1 (-2719) + H2O2^0 (-11928) -> OH^-1 (-14488) + OH^0 (-14489)
-At time : 73.001 ns Reaction : H3O^1 (-10009) + OH^-1 (-14450) -> No product
-At time : 73.001 ns Reaction : e_aq^-1 (-2606) + H^0 (-14179) -> OH^-1 (-14490) + H_2^0 (-14491)
-At time : 73.001 ns Reaction : e_aq^-1 (-6330) + H3O^1 (-9270) -> H^0 (-14492)
-At time : 74.001 ns Reaction : OH^-1 (-14482) + H3O^1 (-10496) -> No product
-At time : 74.001 ns Reaction : e_aq^-1 (-1755) + H^0 (-14424) -> OH^-1 (-14493) + H_2^0 (-14494)
-At time : 74.001 ns Reaction : H3O^1 (-9408) + OH^-1 (-14414) -> No product
-At time : 74.001 ns Reaction : H3O^1 (-7921) + OH^-1 (-14395) -> No product
-At time : 74.001 ns Reaction : H^0 (-14086) + e_aq^-1 (-6321) -> OH^-1 (-14495) + H_2^0 (-14496)
-At time : 74.001 ns Reaction : e_aq^-1 (-2416) + e_aq^-1 (-6231) -> OH^-1 (-14497) + OH^-1 (-14498) + H_2^0 (-14499)
-At time : 75.001 ns Reaction : OH^-1 (-14488) + H3O^1 (-5903) -> No product
-At time : 75.001 ns Reaction : OH^-1 (-14479) + H3O^1 (-8898) -> No product
-At time : 75.001 ns Reaction : H3O^1 (-7958) + OH^-1 (-14457) -> No product
-At time : 75.001 ns Reaction : H3O^1 (-7045) + OH^-1 (-14446) -> No product
-At time : 75.001 ns Reaction : OH^-1 (-14308) + H3O^1 (-9291) -> No product
-At time : 75.001 ns Reaction : e_aq^-1 (-5205) + H2O2^0 (-12655) -> OH^-1 (-14500) + OH^0 (-14501)
-At time : 75.001 ns Reaction : e_aq^-1 (-4919) + H3O^1 (-9779) -> H^0 (-14502)
-At time : 75.001 ns Reaction : e_aq^-1 (-2803) + H3O^1 (-8391) -> H^0 (-14503)
-At time : 75.001 ns Reaction : H3O^1 (-7246) + e_aq^-1 (-2199) -> H^0 (-14504)
-At time : 76.001 ns Reaction : OH^-1 (-14500) + H3O^1 (-10219) -> No product
-At time : 76.001 ns Reaction : H^0 (-14288) + H^0 (-14202) -> H_2^0 (-14505)
-At time : 76.001 ns Reaction : e_aq^-1 (-4133) + OH^0 (-14208) -> OH^-1 (-14506)
-At time : 76.001 ns Reaction : e_aq^-1 (-2518) + H^0 (-14174) -> OH^-1 (-14507) + H_2^0 (-14508)
-At time : 76.001 ns Reaction : e_aq^-1 (-6000) + H^0 (-14009) -> OH^-1 (-14509) + H_2^0 (-14510)
-At time : 77.001 ns Reaction : H3O^1 (-5822) + OH^-1 (-14402) -> No product
-At time : 78.001 ns Reaction : H^0 (-14231) + OH^0 (-13998) -> No product
-At time : 78.001 ns Reaction : e_aq^-1 (-5019) + H^0 (-13876) -> OH^-1 (-14511) + H_2^0 (-14512)
-At time : 78.001 ns Reaction : e_aq^-1 (-4943) + H2O2^0 (-12240) -> OH^-1 (-14513) + OH^0 (-14514)
-At time : 78.001 ns Reaction : e_aq^-1 (-5543) + H3O^1 (-9234) -> H^0 (-14515)
-At time : 78.001 ns Reaction : e_aq^-1 (-810) + e_aq^-1 (-2872) -> OH^-1 (-14516) + OH^-1 (-14517) + H_2^0 (-14518)
-At time : 79.001 ns Reaction : H3O^1 (-7512) + OH^-1 (-14485) -> No product
-At time : 79.001 ns Reaction : e_aq^-1 (-4932) + H2O2^0 (-12485) -> OH^-1 (-14519) + OH^0 (-14520)
-At time : 79.001 ns Reaction : H2O2^0 (-11845) + e_aq^-1 (-6267) -> OH^-1 (-14521) + OH^0 (-14522)
-At time : 79.001 ns Reaction : H3O^1 (-7694) + e_aq^-1 (-2430) -> H^0 (-14523)
-At time : 80.001 ns Reaction : OH^-1 (-14430) + H3O^1 (-10697) -> No product
-At time : 80.001 ns Reaction : H^0 (-14281) + e_aq^-1 (-6099) -> OH^-1 (-14524) + H_2^0 (-14525)
-At time : 80.001 ns Reaction : e_aq^-1 (-1068) + H^0 (-14039) -> OH^-1 (-14526) + H_2^0 (-14527)
-At time : 80.001 ns Reaction : e_aq^-1 (-1324) + H2O2^0 (-13952) -> OH^-1 (-14528) + OH^0 (-14529)
-At time : 80.001 ns Reaction : OH^-1 (-14513) + H3O^1 (-10525) -> No product
-At time : 81.001 ns Reaction : H3O^1 (-7755) + OH^-1 (-14519) -> No product
-At time : 81.001 ns Reaction : H3O^1 (-8492) + OH^-1 (-14461) -> No product
-At time : 81.001 ns Reaction : H^0 (-14154) + e_aq^-1 (-3510) -> OH^-1 (-14530) + H_2^0 (-14531)
-At time : 81.001 ns Reaction : e_aq^-1 (-6141) + H^0 (-14034) -> OH^-1 (-14532) + H_2^0 (-14533)
-At time : 81.001 ns Reaction : H^0 (-13599) + e_aq^-1 (-6441) -> OH^-1 (-14534) + H_2^0 (-14535)
-At time : 81.001 ns Reaction : H2O2^0 (-11545) + e_aq^-1 (-5844) -> OH^-1 (-14536) + OH^0 (-14537)
-At time : 81.001 ns Reaction : e_aq^-1 (-4704) + H3O^1 (-7122) -> H^0 (-14538)
-At time : 82.001 ns Reaction : H3O^1 (-8442) + OH^-1 (-14530) -> No product
-At time : 82.001 ns Reaction : e_aq^-1 (-3932) + OH^0 (-14529) -> OH^-1 (-14539)
-At time : 82.001 ns Reaction : e_aq^-1 (-1972) + H^0 (-14130) -> OH^-1 (-14540) + H_2^0 (-14541)
-At time : 82.001 ns Reaction : H2O2^0 (-12372) + e_aq^-1 (-6006) -> OH^-1 (-14542) + OH^0 (-14543)
-At time : 82.001 ns Reaction : e_aq^-1 (-6036) + H3O^1 (-9134) -> H^0 (-14544)
-At time : 83.001 ns Reaction : OH^-1 (-14443) + H3O^1 (-5912) -> No product
-At time : 83.001 ns Reaction : e_aq^-1 (-3803) + OH^0 (-14219) -> OH^-1 (-14545)
-At time : 83.001 ns Reaction : e_aq^-1 (-2137) + H^0 (-13198) -> OH^-1 (-14546) + H_2^0 (-14547)
-At time : 83.001 ns Reaction : H2O2^0 (-12888) + e_aq^-1 (-4874) -> OH^-1 (-14548) + OH^0 (-14549)
-At time : 83.001 ns Reaction : H2O2^0 (-12084) + e_aq^-1 (-6339) -> OH^-1 (-14550) + OH^0 (-14551)
-At time : 84.001 ns Reaction : e_aq^-1 (-2103) + H^0 (-14538) -> OH^-1 (-14552) + H_2^0 (-14553)
-At time : 84.001 ns Reaction : e_aq^-1 (-4743) + H2O2^0 (-12479) -> OH^-1 (-14554) + OH^0 (-14555)
-At time : 85.001 ns Reaction : OH^-1 (-14542) + H3O^1 (-9013) -> No product
-At time : 85.001 ns Reaction : e_aq^-1 (-5120) + H^0 (-13571) -> OH^-1 (-14556) + H_2^0 (-14557)
-At time : 85.001 ns Reaction : e_aq^-1 (-5582) + e_aq^-1 (-6375) -> OH^-1 (-14558) + OH^-1 (-14559) + H_2^0 (-14560)
-At time : 85.001 ns Reaction : e_aq^-1 (-4981) + H3O^1 (-6005) -> H^0 (-14561)
-At time : 86.001 ns Reaction : OH^-1 (-14548) + H3O^1 (-8700) -> No product
-At time : 86.001 ns Reaction : e_aq^-1 (-5580) + H^0 (-14338) -> OH^-1 (-14562) + H_2^0 (-14563)
-At time : 86.001 ns Reaction : OH^0 (-14323) + e_aq^-1 (-5212) -> OH^-1 (-14564)
-At time : 86.001 ns Reaction : e_aq^-1 (-3707) + OH^0 (-13904) -> OH^-1 (-14565)
-At time : 86.001 ns Reaction : e_aq^-1 (-5563) + H2O2^0 (-12360) -> OH^-1 (-14566) + OH^0 (-14567)
-At time : 86.001 ns Reaction : e_aq^-1 (-73) + H2O2^0 (-11816) -> OH^-1 (-14568) + OH^0 (-14569)
-At time : 88.001 ns Reaction : OH^-1 (-14470) + H3O^1 (-8428) -> No product
-At time : 88.001 ns Reaction : H3O^1 (-7317) + e_aq^-1 (-5571) -> H^0 (-14570)
-At time : 88.001 ns Reaction : e_aq^-1 (-5015) + H3O^1 (-6071) -> H^0 (-14571)
-At time : 89.001 ns Reaction : H3O^1 (-7688) + OH^-1 (-14509) -> No product
-At time : 89.001 ns Reaction : H3O^1 (-7480) + OH^-1 (-14439) -> No product
-At time : 89.001 ns Reaction : e_aq^-1 (-3575) + H2O2^0 (-12457) -> OH^-1 (-14572) + OH^0 (-14573)
-At time : 90.001 ns Reaction : H3O^1 (-8250) + OH^-1 (-14511) -> No product
-At time : 90.001 ns Reaction : H2O2^0 (-11762) + e_aq^-1 (-6150) -> OH^-1 (-14574) + OH^0 (-14575)
-At time : 91.001 ns Reaction : OH^-1 (-14415) + H3O^1 (-8068) -> No product
-At time : 91.001 ns Reaction : H3O^1 (-10306) + OH^-1 (-14320) -> No product
-At time : 91.001 ns Reaction : e_aq^-1 (-4754) + H3O^1 (-9104) -> H^0 (-14576)
-At time : 91.001 ns Reaction : e_aq^-1 (-3783) + OH^0 (-8867) -> OH^-1 (-14577)
-At time : 92.001 ns Reaction : H2O2^0 (-12407) + e_aq^-1 (-4349) -> OH^-1 (-14578) + OH^0 (-14579)
-At time : 92.001 ns Reaction : H2O2^0 (-12059) + e_aq^-1 (-6087) -> OH^-1 (-14580) + OH^0 (-14581)
-At time : 93.001 ns Reaction : H2O2^0 (-13380) + e_aq^-1 (-5613) -> OH^-1 (-14582) + OH^0 (-14583)
-At time : 93.001 ns Reaction : e_aq^-1 (-3822) + H3O^1 (-9957) -> H^0 (-14584)
-At time : 94.001 ns Reaction : OH^-1 (-14566) + H3O^1 (-10428) -> No product
-At time : 94.001 ns Reaction : OH^0 (-14555) + e_aq^-1 (-5441) -> OH^-1 (-14585)
-At time : 95.001 ns Reaction : OH^-1 (-14536) + H3O^1 (-8936) -> No product
-At time : 95.001 ns Reaction : OH^-1 (-14524) + H3O^1 (-6074) -> No product
-At time : 95.001 ns Reaction : e_aq^-1 (-4188) + H2O2^0 (-12397) -> OH^-1 (-14586) + OH^0 (-14587)
-At time : 96.001 ns Reaction : OH^-1 (-14565) + H3O^1 (-10362) -> No product
-At time : 96.001 ns Reaction : H^0 (-13621) + OH^0 (-14551) -> No product
-At time : 97.001 ns Reaction : OH^-1 (-14554) + H3O^1 (-6011) -> No product
-At time : 97.001 ns Reaction : e_aq^-1 (-733) + H^0 (-14085) -> OH^-1 (-14588) + H_2^0 (-14589)
-At time : 98.001 ns Reaction : OH^-1 (-14506) + H3O^1 (-6269) -> No product
-At time : 98.001 ns Reaction : H^0 (-14293) + e_aq^-1 (-6381) -> OH^-1 (-14590) + H_2^0 (-14591)
-At time : 98.001 ns Reaction : H^0 (-13839) + e_aq^-1 (-5850) -> OH^-1 (-14592) + H_2^0 (-14593)
-At time : 99.001 ns Reaction : OH^-1 (-14568) + H3O^1 (-10390) -> No product
-At time : 99.001 ns Reaction : OH^-1 (-14564) + H3O^1 (-10468) -> No product
-At time : 99.001 ns Reaction : OH^0 (-14537) + e_aq^-1 (-3685) -> OH^-1 (-14594)
-At time : 100 ns Reaction : OH^-1 (-14364) + H3O^1 (-7397) -> No product
-At time : 100 ns Reaction : e_aq^-1 (-967) + H3O^1 (-10466) -> H^0 (-14595)
-At time : 100 ns Reaction : e_aq^-1 (-3703) + H3O^1 (-9714) -> H^0 (-14596)
-At time : 100 ns Reaction : e_aq^-1 (-1865) + e_aq^-1 (-4745) -> OH^-1 (-14597) + OH^-1 (-14598) + H_2^0 (-14599)
-At time : 101 ns Reaction : OH^-1 (-14594) + H3O^1 (-6080) -> No product
-At time : 101 ns Reaction : OH^-1 (-14586) + H3O^1 (-8064) -> No product
-At time : 101 ns Reaction : H3O^1 (-6452) + OH^-1 (-14585) -> No product
-At time : 101 ns Reaction : OH^0 (-14120) + OH^0 (-14583) -> H2O2^0 (-14600)
-At time : 101 ns Reaction : e_aq^-1 (-5985) + H^0 (-14393) -> OH^-1 (-14601) + H_2^0 (-14602)
-At time : 101 ns Reaction : H^0 (-13918) + e_aq^-1 (-3818) -> OH^-1 (-14603) + H_2^0 (-14604)
-At time : 101 ns Reaction : e_aq^-1 (-2149) + H3O^1 (-6224) -> H^0 (-14605)
-At time : 101 ns Reaction : e_aq^-1 (-770) + H2O2^0 (-11468) -> OH^-1 (-14606) + OH^0 (-14607)
-At time : 102 ns Reaction : H^0 (-14102) + e_aq^-1 (-6039) -> OH^-1 (-14608) + H_2^0 (-14609)
-At time : 102 ns Reaction : OH^0 (-13444) + e_aq^-1 (-6084) -> OH^-1 (-14610)
-At time : 103 ns Reaction : e_aq^-1 (-5367) + H3O^1 (-5867) -> H^0 (-14611)
-At time : 103 ns Reaction : e_aq^-1 (-3691) + e_aq^-1 (-4198) -> OH^-1 (-14612) + OH^-1 (-14613) + H_2^0 (-14614)
-At time : 105 ns Reaction : OH^-1 (-14610) + H3O^1 (-7518) -> No product
-At time : 105 ns Reaction : H^0 (-14078) + H^0 (-14561) -> H_2^0 (-14615)
-At time : 105 ns Reaction : OH^-1 (-14534) + H3O^1 (-10862) -> No product
-At time : 105 ns Reaction : H3O^1 (-8342) + OH^-1 (-14528) -> No product
-At time : 105 ns Reaction : e_aq^-1 (-5919) + H2O2^0 (-12704) -> OH^-1 (-14616) + OH^0 (-14617)
-At time : 107 ns Reaction : e_aq^-1 (-4750) + OH^0 (-14549) -> OH^-1 (-14618)
-At time : 107 ns Reaction : e_aq^-1 (-5928) + H^0 (-14111) -> OH^-1 (-14619) + H_2^0 (-14620)
-At time : 107 ns Reaction : e_aq^-1 (-4616) + H2O2^0 (-12542) -> OH^-1 (-14621) + OH^0 (-14622)
-At time : 108 ns Reaction : OH^-1 (-14618) + H3O^1 (-10231) -> No product
-At time : 108 ns Reaction : H3O^1 (-5987) + OH^-1 (-14459) -> No product
-At time : 108 ns Reaction : H^0 (-14305) + e_aq^-1 (-3939) -> OH^-1 (-14623) + H_2^0 (-14624)
-At time : 108 ns Reaction : H^0 (-14040) + e_aq^-1 (-5193) -> OH^-1 (-14625) + H_2^0 (-14626)
-At time : 109 ns Reaction : H3O^1 (-7425) + OH^-1 (-14550) -> No product
-At time : 109 ns Reaction : OH^0 (-13613) + e_aq^-1 (-4161) -> OH^-1 (-14627)
-At time : 109 ns Reaction : H2O2^0 (-12172) + e_aq^-1 (-5967) -> OH^-1 (-14628) + OH^0 (-14629)
-At time : 110 ns Reaction : OH^0 (-14480) + H^0 (-14399) -> No product
-At time : 110 ns Reaction : OH^0 (-14431) + H^0 (-13618) -> No product
-At time : 110 ns Reaction : H^0 (-14376) + OH^0 (-14297) -> No product
-At time : 110 ns Reaction : OH^0 (-14280) + e_aq^-1 (-5246) -> OH^-1 (-14630)
-At time : 110 ns Reaction : e_aq^-1 (-2722) + H3O^1 (-8549) -> H^0 (-14631)
-At time : 112 ns Reaction : H3O^1 (-7871) + OH^-1 (-14442) -> No product
-At time : 112 ns Reaction : e_aq^-1 (-774) + H^0 (-13632) -> OH^-1 (-14632) + H_2^0 (-14633)
-At time : 112 ns Reaction : H2O2^0 (-12353) + e_aq^-1 (-4213) -> OH^-1 (-14634) + OH^0 (-14635)
-At time : 112 ns Reaction : e_aq^-1 (-3725) + H3O^1 (-5840) -> H^0 (-14636)
-At time : 113 ns Reaction : OH^-1 (-14625) + H3O^1 (-10264) -> No product
-At time : 113 ns Reaction : H3O^1 (-7557) + OH^-1 (-14612) -> No product
-At time : 113 ns Reaction : H^0 (-14571) + H^0 (-14306) -> H_2^0 (-14637)
-At time : 113 ns Reaction : e_aq^-1 (-5468) + OH^0 (-14475) -> OH^-1 (-14638)
-At time : 113 ns Reaction : e_aq^-1 (-3850) + OH^0 (-14358) -> OH^-1 (-14639)
-At time : 114 ns Reaction : H3O^1 (-7362) + OH^-1 (-14627) -> No product
-At time : 115 ns Reaction : OH^-1 (-14638) + H3O^1 (-10513) -> No product
-At time : 115 ns Reaction : H3O^1 (-6437) + OH^-1 (-14574) -> No product
-At time : 115 ns Reaction : H^0 (-13162) + OH^0 (-14448) -> No product
-At time : 115 ns Reaction : e_aq^-1 (-2186) + H3O^1 (-9217) -> H^0 (-14640)
-At time : 116 ns Reaction : OH^-1 (-14616) + H3O^1 (-9110) -> No product
-At time : 116 ns Reaction : OH^-1 (-14437) + H3O^1 (-10507) -> No product
-At time : 116 ns Reaction : e_aq^-1 (-5029) + H^0 (-13805) -> OH^-1 (-14641) + H_2^0 (-14642)
-At time : 116 ns Reaction : e_aq^-1 (-5898) + H3O^1 (-9108) -> H^0 (-14643)
-At time : 117 ns Reaction : e_aq^-1 (-3614) + H3O^1 (-9852) -> H^0 (-14644)
-At time : 117 ns Reaction : e_aq^-1 (-5159) + H2O2^0 (-12824) -> OH^-1 (-14645) + OH^0 (-14646)
-At time : 118 ns Reaction : H3O^1 (-7207) + OH^-1 (-14597) -> No product
-At time : 118 ns Reaction : OH^0 (-14501) + e_aq^-1 (-3591) -> OH^-1 (-14647)
-At time : 118 ns Reaction : e_aq^-1 (-3666) + H^0 (-13650) -> OH^-1 (-14648) + H_2^0 (-14649)
-At time : 119 ns Reaction : OH^-1 (-14598) + H3O^1 (-8200) -> No product
-At time : 120 ns Reaction : OH^0 (-14646) + e_aq^-1 (-3511) -> OH^-1 (-14650)
-At time : 120 ns Reaction : H3O^1 (-5954) + OH^-1 (-14632) -> No product
-At time : 120 ns Reaction : e_aq^-1 (-3921) + H^0 (-13226) -> OH^-1 (-14651) + H_2^0 (-14652)
-At time : 121 ns Reaction : OH^-1 (-14603) + H3O^1 (-6992) -> No product
-At time : 121 ns Reaction : e_aq^-1 (-2437) + e_aq^-1 (-5360) -> OH^-1 (-14653) + OH^-1 (-14654) + H_2^0 (-14655)
-At time : 122 ns Reaction : H3O^1 (-7154) + OH^-1 (-14621) -> No product
-At time : 122 ns Reaction : e_aq^-1 (-2105) + OH^0 (-14617) -> OH^-1 (-14656)
-At time : 122 ns Reaction : OH^-1 (-14613) + H3O^1 (-9906) -> No product
-At time : 122 ns Reaction : OH^0 (-14150) + H^0 (-14091) -> No product
-At time : 122 ns Reaction : e_aq^-1 (-4301) + H3O^1 (-10084) -> H^0 (-14657)
-At time : 122 ns Reaction : e_aq^-1 (-6003) + H3O^1 (-9047) -> H^0 (-14658)
-At time : 122 ns Reaction : e_aq^-1 (-2335) + H3O^1 (-5879) -> H^0 (-14659)
-At time : 123 ns Reaction : e_aq^-1 (-352) + H2O2^0 (-12458) -> OH^-1 (-14660) + OH^0 (-14661)
-At time : 124 ns Reaction : e_aq^-1 (-5305) + H^0 (-14515) -> OH^-1 (-14662) + H_2^0 (-14663)
-At time : 124 ns Reaction : e_aq^-1 (-4836) + H3O^1 (-9692) -> H^0 (-14664)
-At time : 125 ns Reaction : OH^-1 (-14592) + H3O^1 (-6077) -> No product
-At time : 125 ns Reaction : e_aq^-1 (-4105) + H2O2^0 (-12857) -> OH^-1 (-14665) + OH^0 (-14666)
-At time : 126 ns Reaction : H^0 (-14657) + e_aq^-1 (-3842) -> OH^-1 (-14667) + H_2^0 (-14668)
-At time : 126 ns Reaction : H^0 (-14409) + e_aq^-1 (-2400) -> OH^-1 (-14669) + H_2^0 (-14670)
-At time : 126 ns Reaction : e_aq^-1 (-4033) + H3O^1 (-9844) -> H^0 (-14671)
-At time : 127 ns Reaction : OH^-1 (-14662) + H3O^1 (-10876) -> No product
-At time : 127 ns Reaction : OH^0 (-14278) + H^0 (-14166) -> No product
-At time : 127 ns Reaction : H2O2^0 (-11917) + e_aq^-1 (-4686) -> OH^-1 (-14672) + OH^0 (-14673)
-At time : 129 ns Reaction : H3O^1 (-8020) + OH^-1 (-14665) -> No product
-At time : 129 ns Reaction : e_aq^-1 (-1623) + H3O^1 (-9140) -> H^0 (-14674)
-At time : 129 ns Reaction : e_aq^-1 (-1333) + H3O^1 (-7358) -> H^0 (-14675)
-At time : 130 ns Reaction : e_aq^-1 (-3549) + H^0 (-14423) -> OH^-1 (-14676) + H_2^0 (-14677)
-At time : 130 ns Reaction : H^0 (-14417) + H^0 (-14262) -> H_2^0 (-14678)
-At time : 131 ns Reaction : H^0 (-14445) + e_aq^-1 (-5523) -> OH^-1 (-14679) + H_2^0 (-14680)
-At time : 131 ns Reaction : H^0 (-14361) + e_aq^-1 (-3706) -> OH^-1 (-14681) + H_2^0 (-14682)
-At time : 132 ns Reaction : OH^0 (-14629) + e_aq^-1 (-4080) -> OH^-1 (-14683)
-At time : 132 ns Reaction : OH^-1 (-14497) + H3O^1 (-10838) -> No product
-At time : 132 ns Reaction : OH^-1 (-14490) + H3O^1 (-8180) -> No product
-At time : 133 ns Reaction : H2O2^0 (-12020) + e_aq^-1 (-5007) -> OH^-1 (-14684) + OH^0 (-14685)
-At time : 133 ns Reaction : e_aq^-1 (-5413) + H3O^1 (-9977) -> H^0 (-14686)
-At time : 133 ns Reaction : e_aq^-1 (-4409) + H3O^1 (-9604) -> H^0 (-14687)
-At time : 134 ns Reaction : e_aq^-1 (-6303) + H2O2^0 (-12480) -> OH^-1 (-14688) + OH^0 (-14689)
-At time : 135 ns Reaction : H3O^1 (-8281) + OH^-1 (-14679) -> No product
-At time : 135 ns Reaction : OH^0 (-13988) + e_aq^-1 (-6246) -> OH^-1 (-14690)
-At time : 135 ns Reaction : e_aq^-1 (-4006) + H3O^1 (-10200) -> H^0 (-14691)
-At time : 136 ns Reaction : OH^0 (-14661) + OH^0 (-9226) -> H2O2^0 (-14692)
-At time : 136 ns Reaction : OH^0 (-14387) + H^0 (-14183) -> No product
-At time : 136 ns Reaction : e_aq^-1 (-2117) + OH^0 (-14299) -> OH^-1 (-14693)
-At time : 136 ns Reaction : H^0 (-13674) + e_aq^-1 (-6048) -> OH^-1 (-14694) + H_2^0 (-14695)
-At time : 136 ns Reaction : e_aq^-1 (-6336) + H3O^1 (-9540) -> H^0 (-14696)
-At time : 136 ns Reaction : H3O^1 (-7950) + OH^-1 (-14546) -> No product
-At time : 137 ns Reaction : e_aq^-1 (-4946) + H3O^1 (-6188) -> H^0 (-14697)
-At time : 138 ns Reaction : OH^-1 (-14683) + H3O^1 (-8596) -> No product
-At time : 138 ns Reaction : H^0 (-14046) + e_aq^-1 (-5868) -> OH^-1 (-14698) + H_2^0 (-14699)
-At time : 138 ns Reaction : H2O2^0 (-12069) + e_aq^-1 (-4106) -> OH^-1 (-14700) + OH^0 (-14701)
-At time : 139 ns Reaction : OH^-1 (-14577) + H3O^1 (-9485) -> No product
-At time : 139 ns Reaction : H2O2^0 (-11891) + e_aq^-1 (-5256) -> OH^-1 (-14702) + OH^0 (-14703)
-At time : 141 ns Reaction : OH^-1 (-14702) + H3O^1 (-9065) -> No product
-At time : 141 ns Reaction : H^0 (-14596) + OH^0 (-14701) -> No product
-At time : 141 ns Reaction : e_aq^-1 (-5161) + OH^0 (-14522) -> OH^-1 (-14704)
-At time : 141 ns Reaction : e_aq^-1 (-3782) + OH^0 (-14489) -> OH^-1 (-14705)
-At time : 141 ns Reaction : OH^-1 (-14486) + H3O^1 (-7616) -> No product
-At time : 141 ns Reaction : OH^0 (-14444) + e_aq^-1 (-6018) -> OH^-1 (-14706)
-At time : 141 ns Reaction : e_aq^-1 (-615) + H^0 (-13834) -> OH^-1 (-14707) + H_2^0 (-14708)
-At time : 142 ns Reaction : OH^0 (-13631) + e_aq^-1 (-4950) -> OH^-1 (-14709)
-At time : 142 ns Reaction : e_aq^-1 (-5623) + H2O2^0 (-12478) -> OH^-1 (-14710) + OH^0 (-14711)
-At time : 142 ns Reaction : e_aq^-1 (-4246) + H2O2^0 (-12439) -> OH^-1 (-14712) + OH^0 (-14713)
-At time : 142 ns Reaction : e_aq^-1 (-1901) + H3O^1 (-9410) -> H^0 (-14714)
-At time : 142 ns Reaction : H3O^1 (-6912) + e_aq^-1 (-4344) -> H^0 (-14715)
-At time : 144 ns Reaction : OH^-1 (-14656) + H3O^1 (-8799) -> No product
-At time : 144 ns Reaction : OH^-1 (-14630) + H3O^1 (-10321) -> No product
-At time : 145 ns Reaction : e_aq^-1 (-5261) + H2O2^0 (-12219) -> OH^-1 (-14716) + OH^0 (-14717)
-At time : 146 ns Reaction : OH^-1 (-14650) + H3O^1 (-10229) -> No product
-At time : 146 ns Reaction : OH^0 (-14581) + H^0 (-13348) -> No product
-At time : 148 ns Reaction : e_aq^-1 (-4742) + H2O2^0 (-12557) -> OH^-1 (-14718) + OH^0 (-14719)
-At time : 148 ns Reaction : e_aq^-1 (-4824) + H2O2^0 (-12497) -> OH^-1 (-14720) + OH^0 (-14721)
-At time : 149 ns Reaction : e_aq^-1 (-5135) + H^0 (-14428) -> OH^-1 (-14722) + H_2^0 (-14723)
-At time : 150 ns Reaction : e_aq^-1 (-6078) + OH^0 (-14487) -> OH^-1 (-14724)
-At time : 151 ns Reaction : OH^0 (-14200) + H^0 (-14664) -> No product
-At time : 151 ns Reaction : e_aq^-1 (-6402) + H3O^1 (-10623) -> H^0 (-14725)
-At time : 152 ns Reaction : H^0 (-14155) + H^0 (-14366) -> H_2^0 (-14726)
-At time : 152 ns Reaction : e_aq^-1 (-4597) + H2O2^0 (-12556) -> OH^-1 (-14727) + OH^0 (-14728)
-At time : 153 ns Reaction : e_aq^-1 (-4927) + H^0 (-13826) -> OH^-1 (-14729) + H_2^0 (-14730)
-At time : 153 ns Reaction : e_aq^-1 (-4419) + H^0 (-13447) -> OH^-1 (-14731) + H_2^0 (-14732)
-At time : 154 ns Reaction : e_aq^-1 (-2725) + OH^0 (-14728) -> OH^-1 (-14733)
-At time : 155 ns Reaction : e_aq^-1 (-5034) + OH^0 (-14575) -> OH^-1 (-14734)
-At time : 156 ns Reaction : H3O^1 (-8691) + OH^-1 (-14734) -> No product
-At time : 156 ns Reaction : H3O^1 (-10354) + OH^-1 (-14718) -> No product
-At time : 156 ns Reaction : H3O^1 (-7663) + e_aq^-1 (-3716) -> H^0 (-14735)
-At time : 158 ns Reaction : H3O^1 (-8811) + OH^-1 (-14720) -> No product
-At time : 159 ns Reaction : OH^0 (-14711) + e_aq^-1 (-6033) -> OH^-1 (-14736)
-At time : 159 ns Reaction : H3O^1 (-7568) + OH^-1 (-14704) -> No product
-At time : 159 ns Reaction : OH^0 (-14579) + e_aq^-1 (-3667) -> OH^-1 (-14737)
-At time : 159 ns Reaction : e_aq^-1 (-6063) + H2O2^0 (-12530) -> OH^-1 (-14738) + OH^0 (-14739)
-At time : 160 ns Reaction : OH^-1 (-14737) + H3O^1 (-10795) -> No product
-At time : 160 ns Reaction : e_aq^-1 (-2164) + H^0 (-13009) -> OH^-1 (-14740) + H_2^0 (-14741)
-At time : 160 ns Reaction : H2O2^0 (-12565) + e_aq^-1 (-778) -> OH^-1 (-14742) + OH^0 (-14743)
-At time : 161 ns Reaction : e_aq^-1 (-6300) + H2O2^0 (-14692) -> OH^-1 (-14744) + OH^0 (-14745)
-At time : 161 ns Reaction : H^0 (-14449) + OH^0 (-14291) -> No product
-At time : 161 ns Reaction : e_aq^-1 (-5017) + OH^0 (-14083) -> OH^-1 (-14746)
-At time : 161 ns Reaction : OH^-1 (-13350) + H3O^1 (-10435) -> No product
-At time : 161 ns Reaction : e_aq^-1 (-5112) + H3O^1 (-10074) -> H^0 (-14747)
-At time : 161 ns Reaction : H3O^1 (-7933) + e_aq^-1 (-5302) -> H^0 (-14748)
-At time : 162 ns Reaction : OH^0 (-14185) + H^0 (-7507) -> No product
-At time : 162 ns Reaction : H^0 (-13786) + H^0 (-13495) -> H_2^0 (-14749)
-At time : 164 ns Reaction : H2O2^0 (-11753) + e_aq^-1 (-2524) -> OH^-1 (-14750) + OH^0 (-14751)
-At time : 166 ns Reaction : OH^-1 (-14693) + H3O^1 (-8144) -> No product
-At time : 167 ns Reaction : e_aq^-1 (-447) + H2O2^0 (-12191) -> OH^-1 (-14752) + OH^0 (-14753)
-At time : 168 ns Reaction : H^0 (-13110) + H^0 (-14686) -> H_2^0 (-14754)
-At time : 168 ns Reaction : OH^0 (-14673) + e_aq^-1 (-2359) -> OH^-1 (-14755)
-At time : 168 ns Reaction : e_aq^-1 (-1893) + H2O2^0 (-12340) -> OH^-1 (-14756) + OH^0 (-14757)
-At time : 169 ns Reaction : OH^0 (-14635) + H^0 (-14256) -> No product
-At time : 170 ns Reaction : OH^0 (-14745) + H^0 (-14605) -> No product
-At time : 170 ns Reaction : H2O2^0 (-11876) + e_aq^-1 (-5705) -> OH^-1 (-14758) + OH^0 (-14759)
-At time : 171 ns Reaction : H2O2^0 (-12487) + e_aq^-1 (-6213) -> OH^-1 (-14760) + OH^0 (-14761)
-At time : 172 ns Reaction : OH^-1 (-14710) + H3O^1 (-9063) -> No product
-At time : 172 ns Reaction : H^0 (-13718) + H^0 (-14644) -> H_2^0 (-14762)
-At time : 173 ns Reaction : H3O^1 (-10031) + OH^-1 (-14698) -> No product
-At time : 173 ns Reaction : e_aq^-1 (-722) + H^0 (-14230) -> OH^-1 (-14763) + H_2^0 (-14764)
-At time : 173 ns Reaction : e_aq^-1 (-5570) + H2O2^0 (-12193) -> OH^-1 (-14765) + OH^0 (-14766)
-At time : 174 ns Reaction : H3O^1 (-7231) + OH^-1 (-14588) -> No product
-At time : 174 ns Reaction : e_aq^-1 (-2876) + H2O2^0 (-12963) -> OH^-1 (-14767) + OH^0 (-14768)
-At time : 174 ns Reaction : H2O2^0 (-11546) + e_aq^-1 (-6237) -> OH^-1 (-14769) + OH^0 (-14770)
-At time : 174 ns Reaction : e_aq^-1 (-4333) + H3O^1 (-10206) -> H^0 (-14771)
-At time : 175 ns Reaction : H3O^1 (-8496) + OH^-1 (-14641) -> No product
-At time : 175 ns Reaction : e_aq^-1 (-4695) + H2O2^0 (-12581) -> OH^-1 (-14772) + OH^0 (-14773)
-At time : 176 ns Reaction : H3O^1 (-9773) + OH^-1 (-14645) -> No product
-At time : 176 ns Reaction : e_aq^-1 (-3604) + H2O2^0 (-12329) -> OH^-1 (-14774) + OH^0 (-14775)
-At time : 176 ns Reaction : H2O2^0 (-11535) + e_aq^-1 (-4467) -> OH^-1 (-14776) + OH^0 (-14777)
-At time : 177 ns Reaction : OH^-1 (-14623) + H3O^1 (-6272) -> No product
-At time : 178 ns Reaction : OH^-1 (-14712) + H3O^1 (-9199) -> No product
-At time : 178 ns Reaction : H2O2^0 (-11772) + e_aq^-1 (-4059) -> OH^-1 (-14778) + OH^0 (-14779)
-At time : 179 ns Reaction : H3O^1 (-7473) + OH^-1 (-14729) -> No product
-At time : 179 ns Reaction : e_aq^-1 (-3986) + H2O2^0 (-12160) -> OH^-1 (-14780) + OH^0 (-14781)
-At time : 180 ns Reaction : OH^0 (-14187) + H^0 (-13949) -> No product
-At time : 180 ns Reaction : H2O2^0 (-11747) + e_aq^-1 (-6165) -> OH^-1 (-14782) + OH^0 (-14783)
-At time : 180 ns Reaction : e_aq^-1 (-5288) + H3O^1 (-10194) -> H^0 (-14784)
-At time : 181 ns Reaction : H^0 (-13186) + OH^0 (-14622) -> No product
-At time : 181 ns Reaction : e_aq^-1 (-1026) + H^0 (-14153) -> OH^-1 (-14785) + H_2^0 (-14786)
-At time : 182 ns Reaction : OH^0 (-14751) + e_aq^-1 (-3790) -> OH^-1 (-14787)
-At time : 182 ns Reaction : OH^-1 (-14681) + H3O^1 (-8631) -> No product
-At time : 182 ns Reaction : e_aq^-1 (-4934) + H^0 (-14416) -> OH^-1 (-14788) + H_2^0 (-14789)
-At time : 184 ns Reaction : OH^0 (-14768) + H^0 (-12964) -> No product
-At time : 184 ns Reaction : H3O^1 (-6170) + OH^-1 (-14672) -> No product
-At time : 184 ns Reaction : e_aq^-1 (-4651) + H^0 (-13762) -> OH^-1 (-14790) + H_2^0 (-14791)
-At time : 185 ns Reaction : H3O^1 (-8466) + OH^-1 (-14690) -> No product
-At time : 187 ns Reaction : OH^-1 (-14709) + H3O^1 (-6332) -> No product
-At time : 187 ns Reaction : e_aq^-1 (-5321) + OH^0 (-9192) -> OH^-1 (-14792)
-At time : 187 ns Reaction : H3O^1 (-7692) + e_aq^-1 (-4719) -> H^0 (-14793)
-At time : 188 ns Reaction : OH^-1 (-14634) + H3O^1 (-6032) -> No product
-At time : 188 ns Reaction : e_aq^-1 (-6171) + H3O^1 (-9696) -> H^0 (-14794)
-At time : 190 ns Reaction : H2O2^0 (-12519) + e_aq^-1 (-3611) -> OH^-1 (-14795) + OH^0 (-14796)
-At time : 191 ns Reaction : H^0 (-12906) + e_aq^-1 (-6027) -> OH^-1 (-14797) + H_2^0 (-14798)
-At time : 191 ns Reaction : H2O2^0 (-12018) + e_aq^-1 (-5698) -> OH^-1 (-14799) + OH^0 (-14800)
-At time : 192 ns Reaction : OH^-1 (-14787) + H3O^1 (-6311) -> No product
-At time : 192 ns Reaction : OH^-1 (-14628) + H3O^1 (-8311) -> No product
-At time : 192 ns Reaction : e_aq^-1 (-5152) + e_aq^-1 (-6432) -> OH^-1 (-14801) + OH^-1 (-14802) + H_2^0 (-14803)
-At time : 193 ns Reaction : H3O^1 (-7211) + OH^-1 (-14782) -> No product
-At time : 194 ns Reaction : H3O^1 (-8930) + OH^-1 (-14740) -> No product
-At time : 194 ns Reaction : OH^0 (-14381) + H^0 (-14103) -> No product
-At time : 195 ns Reaction : OH^-1 (-14582) + H3O^1 (-9071) -> No product
-At time : 195 ns Reaction : OH^-1 (-14526) + H3O^1 (-8378) -> No product
-At time : 195 ns Reaction : H^0 (-14410) + H^0 (-13989) -> H_2^0 (-14804)
-At time : 196 ns Reaction : OH^-1 (-14760) + H3O^1 (-9009) -> No product
-At time : 196 ns Reaction : e_aq^-1 (-6429) + H^0 (-14241) -> OH^-1 (-14805) + H_2^0 (-14806)
-At time : 197 ns Reaction : OH^-1 (-14805) + H3O^1 (-8309) -> No product
-At time : 197 ns Reaction : OH^-1 (-14724) + H3O^1 (-8520) -> No product
-At time : 197 ns Reaction : H3O^1 (-6026) + OH^-1 (-14716) -> No product
-At time : 198 ns Reaction : e_aq^-1 (-4622) + OH^0 (-14800) -> OH^-1 (-14807)
-At time : 198 ns Reaction : H^0 (-14257) + e_aq^-1 (-2946) -> OH^-1 (-14808) + H_2^0 (-14809)
-At time : 198 ns Reaction : e_aq^-1 (-634) + e_aq^-1 (-4952) -> OH^-1 (-14810) + OH^-1 (-14811) + H_2^0 (-14812)
-At time : 199 ns Reaction : H2O2^0 (-12287) + e_aq^-1 (-4926) -> OH^-1 (-14813) + OH^0 (-14814)
-At time : 202 ns Reaction : H3O^1 (-8609) + OH^-1 (-14772) -> No product
-At time : 202 ns Reaction : e_aq^-1 (-5880) + H3O^1 (-9352) -> H^0 (-14815)
-At time : 203 ns Reaction : OH^-1 (-14694) + H3O^1 (-6392) -> No product
-At time : 203 ns Reaction : H3O^1 (-7629) + OH^-1 (-14619) -> No product
-At time : 203 ns Reaction : e_aq^-1 (-5631) + H^0 (-14576) -> OH^-1 (-14816) + H_2^0 (-14817)
-At time : 204 ns Reaction : H2O2^0 (-11625) + e_aq^-1 (-3922) -> OH^-1 (-14818) + OH^0 (-14819)
-At time : 205 ns Reaction : OH^0 (-14713) + e_aq^-1 (-5364) -> OH^-1 (-14820)
-At time : 205 ns Reaction : H^0 (-14595) + H^0 (-13562) -> H_2^0 (-14821)
-At time : 205 ns Reaction : H2O2^0 (-11720) + e_aq^-1 (-4007) -> OH^-1 (-14822) + OH^0 (-14823)
-At time : 207 ns Reaction : H2O2^0 (-12208) + e_aq^-1 (-4561) -> OH^-1 (-14824) + OH^0 (-14825)
-At time : 209 ns Reaction : H^0 (-13073) + OH^0 (-14721) -> No product
-At time : 209 ns Reaction : H2O2^0 (-12190) + e_aq^-1 (-5290) -> OH^-1 (-14826) + OH^0 (-14827)
-At time : 212 ns Reaction : OH^-1 (-14606) + H3O^1 (-9876) -> No product
-At time : 213 ns Reaction : e_aq^-1 (-630) + H2O2^0 (-12132) -> OH^-1 (-14828) + OH^0 (-14829)
-At time : 215 ns Reaction : OH^0 (-13685) + H^0 (-14019) -> No product
-At time : 216 ns Reaction : H^0 (-7672) + OH^0 (-14514) -> No product
-At time : 216 ns Reaction : e_aq^-1 (-665) + H3O^1 (-8168) -> H^0 (-14830)
-At time : 220 ns Reaction : e_aq^-1 (-1749) + H2O2^0 (-12471) -> OH^-1 (-14831) + OH^0 (-14832)
-At time : 221 ns Reaction : OH^0 (-13959) + H^0 (-13938) -> No product
-At time : 221 ns Reaction : H2O2^0 (-11943) + e_aq^-1 (-6282) -> OH^-1 (-14833) + OH^0 (-14834)
-At time : 221 ns Reaction : e_aq^-1 (-1982) + H3O^1 (-7132) -> H^0 (-14835)
-At time : 222 ns Reaction : OH^-1 (-14552) + H3O^1 (-9785) -> No product
-At time : 222 ns Reaction : H^0 (-13941) + e_aq^-1 (-2159) -> OH^-1 (-14836) + H_2^0 (-14837)
-At time : 222 ns Reaction : e_aq^-1 (-2623) + H3O^1 (-9708) -> H^0 (-14838)
-At time : 230 ns Reaction : OH^0 (-14827) + e_aq^-1 (-3841) -> OH^-1 (-14839)
-At time : 230 ns Reaction : H2O2^0 (-12092) + e_aq^-1 (-6081) -> OH^-1 (-14840) + OH^0 (-14841)
-At time : 231 ns Reaction : H3O^1 (-9493) + OH^-1 (-14828) -> No product
-At time : 232 ns Reaction : H3O^1 (-8910) + OH^-1 (-14785) -> No product
-At time : 234 ns Reaction : OH^0 (-14814) + H^0 (-14674) -> No product
-At time : 235 ns Reaction : H3O^1 (-11092) + OH^-1 (-14539) -> No product
-At time : 236 ns Reaction : OH^-1 (-14788) + H3O^1 (-6956) -> No product
-At time : 236 ns Reaction : H^0 (-13494) + OH^0 (-14783) -> No product
-At time : 236 ns Reaction : H3O^1 (-6323) + OH^-1 (-14722) -> No product
-At time : 238 ns Reaction : H2O2^0 (-11863) + e_aq^-1 (-3788) -> OH^-1 (-14842) + OH^0 (-14843)
-At time : 239 ns Reaction : OH^-1 (-14795) + H3O^1 (-10384) -> No product
-At time : 239 ns Reaction : OH^0 (-14221) + H^0 (-14239) -> No product
-At time : 239 ns Reaction : e_aq^-1 (-418) + H2O2^0 (-12231) -> OH^-1 (-14844) + OH^0 (-14845)
-At time : 239 ns Reaction : H2O2^0 (-12168) + e_aq^-1 (-5952) -> OH^-1 (-14846) + OH^0 (-14847)
-At time : 240 ns Reaction : e_aq^-1 (-683) + H2O2^0 (-12625) -> OH^-1 (-14848) + OH^0 (-14849)
-At time : 241 ns Reaction : e_aq^-1 (-815) + H^0 (-14492) -> OH^-1 (-14850) + H_2^0 (-14851)
-At time : 241 ns Reaction : e_aq^-1 (-3972) + H3O^1 (-10603) -> H^0 (-14852)
-At time : 244 ns Reaction : e_aq^-1 (-2717) + H^0 (-13587) -> OH^-1 (-14853) + H_2^0 (-14854)
-At time : 246 ns Reaction : e_aq^-1 (-4905) + H3O^1 (-8990) -> H^0 (-14855)
-At time : 246 ns Reaction : e_aq^-1 (-1193) + H3O^1 (-8223) -> H^0 (-14856)
-At time : 247 ns Reaction : H2O2^0 (-11554) + e_aq^-1 (-1579) -> OH^-1 (-14857) + OH^0 (-14858)
-At time : 248 ns Reaction : H2O2^0 (-11610) + e_aq^-1 (-6015) -> OH^-1 (-14859) + OH^0 (-14860)
-At time : 249 ns Reaction : e_aq^-1 (-4677) + OH^0 (-13975) -> OH^-1 (-14861)
-At time : 250 ns Reaction : e_aq^-1 (-3801) + H2O2^0 (-12382) -> OH^-1 (-14862) + OH^0 (-14863)
-At time : 253 ns Reaction : H2O2^0 (-11937) + e_aq^-1 (-3792) -> OH^-1 (-14864) + OH^0 (-14865)
-At time : 259 ns Reaction : OH^0 (-14567) + H^0 (-13816) -> No product
-At time : 261 ns Reaction : H3O^1 (-7981) + OH^-1 (-14572) -> No product
-At time : 262 ns Reaction : e_aq^-1 (-2181) + H3O^1 (-9898) -> H^0 (-14866)
-At time : 263 ns Reaction : OH^-1 (-14654) + H3O^1 (-6914) -> No product
-At time : 264 ns Reaction : OH^-1 (-14676) + H3O^1 (-9563) -> No product
-At time : 264 ns Reaction : OH^-1 (-14660) + H3O^1 (-6239) -> No product
-At time : 265 ns Reaction : e_aq^-1 (-4607) + H^0 (-14735) -> OH^-1 (-14867) + H_2^0 (-14868)
-At time : 265 ns Reaction : H2O2^0 (-12141) + e_aq^-1 (-5547) -> OH^-1 (-14869) + OH^0 (-14870)
-At time : 269 ns Reaction : OH^-1 (-14822) + H3O^1 (-6047) -> No product
-At time : 272 ns Reaction : e_aq^-1 (-5489) + H2O2^0 (-12159) -> OH^-1 (-14871) + OH^0 (-14872)
-At time : 275 ns Reaction : OH^-1 (-14850) + H3O^1 (-8860) -> No product
-At time : 275 ns Reaction : OH^0 (-14666) + e_aq^-1 (-5488) -> OH^-1 (-14873)
-At time : 277 ns Reaction : OH^-1 (-14404) + H3O^1 (-8320) -> No product
-At time : 277 ns Reaction : H2O2^0 (-11442) + e_aq^-1 (-2109) -> OH^-1 (-14874) + OH^0 (-14875)
-At time : 282 ns Reaction : OH^-1 (-14669) + H3O^1 (-9831) -> No product
-At time : 285 ns Reaction : H2O2^0 (-11838) + e_aq^-1 (-4852) -> OH^-1 (-14876) + OH^0 (-14877)
-At time : 290 ns Reaction : OH^-1 (-14871) + H3O^1 (-10754) -> No product
-At time : 290 ns Reaction : H3O^1 (-6986) + OH^-1 (-14776) -> No product
-At time : 290 ns Reaction : H3O^1 (-7117) + OH^-1 (-14746) -> No product
-At time : 291 ns Reaction : e_aq^-1 (-5207) + H2O2^0 (-12498) -> OH^-1 (-14878) + OH^0 (-14879)
-At time : 294 ns Reaction : e_aq^-1 (-408) + H2O2^0 (-11325) -> OH^-1 (-14880) + OH^0 (-14881)
-At time : 295 ns Reaction : OH^-1 (-14820) + H3O^1 (-10011) -> No product
-At time : 298 ns Reaction : H^0 (-14282) + OH^0 (-14025) -> No product
-At time : 299 ns Reaction : OH^-1 (-14700) + H3O^1 (-7956) -> No product
-At time : 300 ns Reaction : H2O2^0 (-11629) + e_aq^-1 (-3694) -> OH^-1 (-14882) + OH^0 (-14883)
-At time : 301 ns Reaction : OH^0 (-14000) + e_aq^-1 (-5315) -> OH^-1 (-14884)
-At time : 304 ns Reaction : OH^-1 (-14601) + H3O^1 (-9021) -> No product
-At time : 306 ns Reaction : e_aq^-1 (-5247) + H2O2^0 (-11416) -> OH^-1 (-14885) + OH^0 (-14886)
-At time : 308 ns Reaction : e_aq^-1 (-5901) + H^0 (-14382) -> OH^-1 (-14887) + H_2^0 (-14888)
-At time : 312 ns Reaction : H2O2^0 (-12097) + e_aq^-1 (-6345) -> OH^-1 (-14889) + OH^0 (-14890)
-At time : 315 ns Reaction : H2O2^0 (-11868) + e_aq^-1 (-3907) -> OH^-1 (-14891) + OH^0 (-14892)
-At time : 321 ns Reaction : e_aq^-1 (-2502) + H2O2^0 (-12447) -> OH^-1 (-14893) + OH^0 (-14894)
-At time : 322 ns Reaction : e_aq^-1 (-6249) + H2O2^0 (-12383) -> OH^-1 (-14895) + OH^0 (-14896)
-At time : 323 ns Reaction : OH^0 (-13946) + e_aq^-1 (-6264) -> OH^-1 (-14897)
-At time : 325 ns Reaction : OH^0 (-14875) + H^0 (-14748) -> No product
-At time : 331 ns Reaction : e_aq^-1 (-6348) + H2O2^0 (-12401) -> OH^-1 (-14898) + OH^0 (-14899)
-At time : 335 ns Reaction : H2O2^0 (-12082) + e_aq^-1 (-5517) -> OH^-1 (-14900) + OH^0 (-14901)
-At time : 335 ns Reaction : H2O2^0 (-11801) + e_aq^-1 (-5242) -> OH^-1 (-14902) + OH^0 (-14903)
-At time : 336 ns Reaction : OH^-1 (-14401) + H3O^1 (-10364) -> No product
-At time : 338 ns Reaction : e_aq^-1 (-6042) + OH^0 (-14877) -> OH^-1 (-14904)
-At time : 338 ns Reaction : H3O^1 (-7301) + OH^-1 (-14578) -> No product
-At time : 343 ns Reaction : OH^0 (-14271) + OH^0 (-14796) -> H2O2^0 (-14905)
-At time : 350 ns Reaction : H3O^1 (-9532) + OH^-1 (-14889) -> No product
-At time : 357 ns Reaction : e_aq^-1 (-4347) + OH^0 (-14890) -> OH^-1 (-14906)
-At time : 364 ns Reaction : H3O^1 (-7431) + OH^-1 (-14653) -> No product
-At time : 365 ns Reaction : OH^-1 (-14891) + H3O^1 (-10619) -> No product
-At time : 365 ns Reaction : OH^-1 (-14864) + H3O^1 (-10517) -> No product
-At time : 370 ns Reaction : H3O^1 (-7942) + OH^-1 (-14867) -> No product
-At time : 373 ns Reaction : OH^-1 (-14756) + H3O^1 (-10476) -> No product
-At time : 376 ns Reaction : H3O^1 (-6440) + OH^-1 (-14839) -> No product
-At time : 378 ns Reaction : H^0 (-14240) + H^0 (-14502) -> H_2^0 (-14907)
-At time : 379 ns Reaction : OH^0 (-14899) + H^0 (-14388) -> No product
-At time : 379 ns Reaction : OH^0 (-14739) + OH^0 (-14894) -> H2O2^0 (-14908)
-At time : 380 ns Reaction : e_aq^-1 (-5707) + H3O^1 (-10064) -> H^0 (-14909)
-At time : 384 ns Reaction : e_aq^-1 (-5976) + H^0 (-14793) -> OH^-1 (-14910) + H_2^0 (-14911)
-At time : 392 ns Reaction : OH^-1 (-14799) + H3O^1 (-8074) -> No product
-At time : 392 ns Reaction : OH^-1 (-14521) + H3O^1 (-9045) -> No product
-At time : 394 ns Reaction : H2O2^0 (-12046) + e_aq^-1 (-4904) -> OH^-1 (-14912) + OH^0 (-14913)
-At time : 402 ns Reaction : e_aq^-1 (-2856) + H2O2^0 (-12310) -> OH^-1 (-14914) + OH^0 (-14915)
-At time : 406 ns Reaction : OH^-1 (-14802) + H3O^1 (-9880) -> No product
-At time : 412 ns Reaction : OH^-1 (-14869) + H3O^1 (-9688) -> No product
-At time : 418 ns Reaction : OH^-1 (-14516) + H3O^1 (-9421) -> No product
-At time : 425 ns Reaction : e_aq^-1 (-6120) + H3O^1 (-8184) -> H^0 (-14916)
-At time : 428 ns Reaction : OH^-1 (-14738) + H3O^1 (-7027) -> No product
-At time : 430 ns Reaction : e_aq^-1 (-4581) + H3O^1 (-8305) -> H^0 (-14917)
-At time : 432 ns Reaction : OH^0 (-14849) + H^0 (-14210) -> No product
-At time : 432 ns Reaction : OH^-1 (-14846) + H3O^1 (-8460) -> No product
-At time : 432 ns Reaction : H3O^1 (-7731) + OH^-1 (-14752) -> No product
-At time : 443 ns Reaction : OH^-1 (-14842) + H3O^1 (-9386) -> No product
-At time : 444 ns Reaction : OH^-1 (-14914) + H3O^1 (-6227) -> No product
-At time : 445 ns Reaction : OH^-1 (-14844) + H3O^1 (-6200) -> No product
-At time : 449 ns Reaction : H3O^1 (-6998) + OH^-1 (-14639) -> No product
-At time : 450 ns Reaction : OH^-1 (-14727) + H3O^1 (-8100) -> No product
-At time : 460 ns Reaction : H3O^1 (-7906) + OH^-1 (-14758) -> No product
-At time : 460 ns Reaction : OH^-1 (-14684) + H3O^1 (-9264) -> No product
-At time : 487 ns Reaction : OH^0 (-13982) + H^0 (-14292) -> No product
-At time : 487 ns Reaction : H^0 (-13125) + H^0 (-13222) -> H_2^0 (-14918)
-At time : 496 ns Reaction : e_aq^-1 (-446) + H2O2^0 (-11643) -> OH^-1 (-14919) + OH^0 (-14920)
-At time : 513 ns Reaction : OH^-1 (-14861) + H3O^1 (-10701) -> No product
-At time : 518 ns Reaction : H^0 (-12976) + e_aq^-1 (-5111) -> OH^-1 (-14921) + H_2^0 (-14922)
-At time : 521 ns Reaction : H3O^1 (-6278) + OH^-1 (-14493) -> No product
-At time : 531 ns Reaction : H3O^1 (-7840) + OH^-1 (-14904) -> No product
-At time : 531 ns Reaction : e_aq^-1 (-3646) + H3O^1 (-10313) -> H^0 (-14923)
-At time : 533 ns Reaction : OH^-1 (-14769) + H3O^1 (-9698) -> No product
-At time : 536 ns Reaction : H^0 (-14917) + OH^0 (-14775) -> No product
-At time : 556 ns Reaction : OH^-1 (-14895) + H3O^1 (-10155) -> No product
-At time : 556 ns Reaction : e_aq^-1 (-2170) + OH^0 (-14872) -> OH^-1 (-14924)
-At time : 558 ns Reaction : OH^-1 (-14744) + H3O^1 (-9354) -> No product
-At time : 565 ns Reaction : OH^-1 (-14755) + H3O^1 (-8540) -> No product
-At time : 569 ns Reaction : OH^-1 (-14466) + H3O^1 (-9596) -> No product
-At time : 573 ns Reaction : OH^0 (-14819) + e_aq^-1 (-5970) -> OH^-1 (-14925)
-At time : 580 ns Reaction : OH^-1 (-14468) + H3O^1 (-10342) -> No product
-At time : 585 ns Reaction : e_aq^-1 (-2621) + H3O^1 (-7762) -> H^0 (-14926)
-At time : 587 ns Reaction : OH^-1 (-14902) + H3O^1 (-8912) -> No product
-At time : 593 ns Reaction : OH^0 (-14520) + H^0 (-14658) -> No product
-At time : 595 ns Reaction : H2O2^0 (-11458) + e_aq^-1 (-6057) -> OH^-1 (-14927) + OH^0 (-14928)
-At time : 606 ns Reaction : H3O^1 (-5891) + OH^-1 (-14651) -> No product
-At time : 609 ns Reaction : H2O2^0 (-11915) + e_aq^-1 (-5209) -> OH^-1 (-14929) + OH^0 (-14930)
-At time : 615 ns Reaction : e_aq^-1 (-2675) + H3O^1 (-9364) -> H^0 (-14931)
-At time : 627 ns Reaction : OH^-1 (-14887) + H3O^1 (-6119) -> No product
-At time : 628 ns Reaction : H3O^1 (-8034) + OH^-1 (-14474) -> No product
-At time : 629 ns Reaction : e_aq^-1 (-1289) + H2O2^0 (-11793) -> OH^-1 (-14932) + OH^0 (-14933)
-At time : 633 ns Reaction : e_aq^-1 (-2645) + OH^0 (-14264) -> OH^-1 (-14934)
-At time : 649 ns Reaction : H3O^1 (-7500) + OH^-1 (-14329) -> No product
-At time : 654 ns Reaction : H^0 (-14640) + OH^0 (-14881) -> No product
-At time : 654 ns Reaction : OH^-1 (-14774) + H3O^1 (-9777) -> No product
-At time : 662 ns Reaction : H3O^1 (-9174) + OH^-1 (-14900) -> No product
-At time : 672 ns Reaction : H3O^1 (-9929) + OH^-1 (-14736) -> No product
-At time : 686 ns Reaction : OH^0 (-14471) + OH^0 (-14892) -> H2O2^0 (-14935)
-At time : 693 ns Reaction : H2O2^0 (-11323) + e_aq^-1 (-6318) -> OH^-1 (-14936) + OH^0 (-14937)
-At time : 733 ns Reaction : e_aq^-1 (-81) + H^0 (-14570) -> OH^-1 (-14938) + H_2^0 (-14939)
-At time : 739 ns Reaction : e_aq^-1 (-4794) + H2O2^0 (-12090) -> OH^-1 (-14940) + OH^0 (-14941)
-At time : 749 ns Reaction : H3O^1 (-6976) + OH^-1 (-14790) -> No product
-At time : 775 ns Reaction : H^0 (-14584) + H^0 (-13029) -> H_2^0 (-14942)
-At time : 791 ns Reaction : OH^-1 (-14707) + H3O^1 (-7221) -> No product
-At time : 811 ns Reaction : OH^-1 (-14452) + H3O^1 (-9473) -> No product
-At time : 820 ns Reaction : e_aq^-1 (-591) + H2O2^0 (-12273) -> OH^-1 (-14943) + OH^0 (-14944)
-At time : 846 ns Reaction : OH^-1 (-14706) + H3O^1 (-9374) -> No product
-At time : 855 ns Reaction : OH^-1 (-14797) + H3O^1 (-6218) -> No product
-At time : 877 ns Reaction : e_aq^-1 (-236) + H3O^1 (-10260) -> H^0 (-14945)
-At time : 888 ns Reaction : OH^0 (-14761) + H^0 (-14180) -> No product
-At time : 897 ns Reaction : H^0 (-14852) + OH^0 (-14843) -> No product
-At time : 905 ns Reaction : e_aq^-1 (-2846) + H^0 (-14105) -> OH^-1 (-14946) + H_2^0 (-14947)
-At time : 920 ns Reaction : e_aq^-1 (-4100) + H2O2^0 (-11988) -> OH^-1 (-14948) + OH^0 (-14949)
-At time : 955 ns Reaction : OH^-1 (-14831) + H3O^1 (-9136) -> No product
-At time : 958 ns Reaction : e_aq^-1 (-2309) + H3O^1 (-8084) -> H^0 (-14950)
-At time : 965 ns Reaction : OH^-1 (-14705) + H3O^1 (-5825) -> No product
-At time : 974 ns Reaction : OH^-1 (-14767) + H3O^1 (-10671) -> No product
-At time : 988 ns Reaction : OH^-1 (-14540) + H3O^1 (-5972) -> No product
-At time : 991 ns Reaction : OH^0 (-14937) + OH^0 (-14832) -> H2O2^0 (-14951)
+At time : 1 ps Reaction : OH^0 (-11331) + OH^0 (-10106) -> H2O2^0 (-11348)
+At time : 1 ps Reaction : OH^0 (-11307) + OH^0 (-9642) -> H2O2^0 (-11349)
+At time : 1 ps Reaction : H^0 (-11286) + OH^0 (-6614) -> No product
+At time : 1 ps Reaction : OH^0 (-9743) + OH^0 (-11280) -> H2O2^0 (-11350)
+At time : 1 ps Reaction : OH^0 (-11241) + OH^0 (-6202) -> H2O2^0 (-11351)
+At time : 1 ps Reaction : OH^0 (-10785) + OH^0 (-11239) -> H2O2^0 (-11352)
+At time : 1 ps Reaction : OH^0 (-11235) + OH^0 (-9818) -> H2O2^0 (-11353)
+At time : 1 ps Reaction : OH^0 (-11212) + OH^0 (-9497) -> H2O2^0 (-11354)
+At time : 1 ps Reaction : OH^0 (-11055) + OH^0 (-11058) -> H2O2^0 (-11355)
+At time : 1 ps Reaction : OH^0 (-11047) + OH^0 (-9350) -> H2O2^0 (-11356)
+At time : 1 ps Reaction : OH^0 (-10964) + OH^0 (-10096) -> H2O2^0 (-11357)
+At time : 1 ps Reaction : OH^0 (-10040) + OH^0 (-10918) -> H2O2^0 (-11358)
+At time : 1 ps Reaction : OH^0 (-10875) + H^0 (-10876) -> No product
+At time : 1 ps Reaction : OH^0 (-9966) + OH^0 (-10863) -> H2O2^0 (-11359)
+At time : 1 ps Reaction : OH^0 (-9131) + OH^0 (-10859) -> H2O2^0 (-11360)
+At time : 1 ps Reaction : OH^0 (-10809) + OH^0 (-9063) -> H2O2^0 (-11361)
+At time : 1 ps Reaction : OH^0 (-9733) + OH^0 (-10720) -> H2O2^0 (-11362)
+At time : 1 ps Reaction : OH^0 (-10695) + OH^0 (-9033) -> H2O2^0 (-11363)
+At time : 1 ps Reaction : OH^0 (-10651) + OH^0 (-5781) -> H2O2^0 (-11364)
+At time : 1 ps Reaction : H3O^1 (-10650) + OH^-1 (-5780) -> No product
+At time : 1 ps Reaction : H^0 (-10147) + OH^0 (-7122) -> No product
+At time : 1 ps Reaction : OH^0 (-10076) + OH^0 (-10078) -> H2O2^0 (-11365)
+At time : 1 ps Reaction : OH^0 (-10053) + OH^0 (-9312) -> H2O2^0 (-11366)
+At time : 1 ps Reaction : OH^0 (-9954) + OH^0 (-9067) -> H2O2^0 (-11367)
+At time : 1 ps Reaction : OH^0 (-9874) + OH^0 (-9880) -> H2O2^0 (-11368)
+At time : 1 ps Reaction : OH^0 (-9273) + OH^0 (-9832) -> H2O2^0 (-11369)
+At time : 1 ps Reaction : OH^0 (-9760) + OH^0 (-9758) -> H2O2^0 (-11370)
+At time : 1 ps Reaction : OH^0 (-9744) + OH^0 (-9045) -> H2O2^0 (-11371)
+At time : 1 ps Reaction : OH^0 (-9671) + OH^0 (-9003) -> H2O2^0 (-11372)
+At time : 1 ps Reaction : OH^0 (-9217) + OH^0 (-9585) -> H2O2^0 (-11373)
+At time : 1 ps Reaction : OH^0 (-9393) + OH^0 (-8330) -> H2O2^0 (-11374)
+At time : 1 ps Reaction : OH^0 (-9334) + OH^0 (-9336) -> H2O2^0 (-11375)
+At time : 1 ps Reaction : OH^0 (-9135) + OH^0 (-9296) -> H2O2^0 (-11376)
+At time : 1 ps Reaction : OH^0 (-9259) + OH^0 (-7844) -> H2O2^0 (-11377)
+At time : 1 ps Reaction : OH^0 (-9236) + OH^0 (-9041) -> H2O2^0 (-11378)
+At time : 1 ps Reaction : OH^0 (-9125) + OH^0 (-9049) -> H2O2^0 (-11379)
+At time : 1 ps Reaction : OH^0 (-6146) + OH^0 (-8900) -> H2O2^0 (-11380)
+At time : 1 ps Reaction : OH^-1 (-5741) + H3O^1 (-8868) -> No product
+At time : 1 ps Reaction : e_aq^-1 (-1826) + OH^0 (-8830) -> OH^-1 (-11381)
+At time : 1 ps Reaction : OH^-1 (-5753) + H3O^1 (-8364) -> No product
+At time : 1 ps Reaction : OH^-1 (-5801) + H3O^1 (-8011) -> No product
+At time : 1 ps Reaction : e_aq^-1 (-4482) + OH^0 (-7952) -> OH^-1 (-11382)
+At time : 1 ps Reaction : OH^-1 (-5789) + H3O^1 (-7893) -> No product
+At time : 1 ps Reaction : OH^0 (-6040) + OH^0 (-7510) -> H2O2^0 (-11383)
+At time : 1 ps Reaction : OH^-1 (-5729) + H3O^1 (-7169) -> No product
+At time : 1 ps Reaction : OH^-1 (-5750) + H3O^1 (-6921) -> No product
+At time : 1 ps Reaction : OH^-1 (-5759) + H3O^1 (-6797) -> No product
+At time : 1 ps Reaction : OH^-1 (-5768) + H3O^1 (-6669) -> No product
+At time : 1 ps Reaction : OH^0 (-6390) + OH^0 (-6394) -> H2O2^0 (-11384)
+At time : 1 ps Reaction : e_aq^-1 (-792) + OH^0 (-6148) -> OH^-1 (-11385)
+At time : 1 ps Reaction : OH^-1 (-11385) + H3O^1 (-6147) -> No product
+At time : 1 ps Reaction : OH^-1 (-11382) + H3O^1 (-7951) -> No product
+At time : 1.1 ps Reaction : OH^0 (-11283) + OH^0 (-11284) -> H2O2^0 (-11386)
+At time : 1.1 ps Reaction : OH^0 (-10340) + OH^0 (-11259) -> H2O2^0 (-11387)
+At time : 1.1 ps Reaction : OH^0 (-10355) + H^0 (-11164) -> No product
+At time : 1.1 ps Reaction : OH^0 (-10199) + OH^0 (-9091) -> H2O2^0 (-11388)
+At time : 1.1 ps Reaction : H3O^1 (-9719) + OH^-1 (-5771) -> No product
+At time : 1.1 ps Reaction : OH^0 (-9480) + e_aq^-1 (-3314) -> OH^-1 (-11389)
+At time : 1.1 ps Reaction : e_aq^-1 (-3335) + OH^0 (-7684) -> OH^-1 (-11390)
+At time : 1.1 ps Reaction : OH^-1 (-11389) + H3O^1 (-5879) -> No product
+At time : 1.2 ps Reaction : OH^0 (-10258) + OH^0 (-11257) -> H2O2^0 (-11391)
+At time : 1.2 ps Reaction : OH^0 (-11248) + OH^0 (-11249) -> H2O2^0 (-11392)
+At time : 1.2 ps Reaction : OH^0 (-11243) + OH^0 (-10071) -> H2O2^0 (-11393)
+At time : 1.2 ps Reaction : OH^0 (-9805) + OH^0 (-7860) -> H2O2^0 (-11394)
+At time : 1.2 ps Reaction : OH^0 (-9227) + OH^0 (-9618) -> H2O2^0 (-11395)
+At time : 1.2 ps Reaction : OH^0 (-9589) + OH^0 (-6438) -> H2O2^0 (-11396)
+At time : 1.3 ps Reaction : OH^0 (-9221) + OH^0 (-11220) -> H2O2^0 (-11397)
+At time : 1.3 ps Reaction : OH^0 (-10451) + OH^0 (-10452) -> H2O2^0 (-11398)
+At time : 1.3 ps Reaction : H3O^1 (-10262) + OH^-1 (-5723) -> No product
+At time : 1.3 ps Reaction : OH^0 (-9526) + OH^0 (-9525) -> H2O2^0 (-11399)
+At time : 1.3 ps Reaction : OH^0 (-9138) + OH^0 (-7150) -> H2O2^0 (-11400)
+At time : 1.3 ps Reaction : OH^0 (-8244) + OH^0 (-8931) -> H2O2^0 (-11401)
+At time : 1.5 ps Reaction : OH^0 (-9782) + OH^0 (-10743) -> H2O2^0 (-11402)
+At time : 1.6 ps Reaction : OH^0 (-9155) + OH^0 (-10343) -> H2O2^0 (-11403)
+At time : 1.6 ps Reaction : OH^0 (-10317) + OH^0 (-9387) -> H2O2^0 (-11404)
+At time : 1.6 ps Reaction : OH^0 (-10092) + OH^0 (-10093) -> H2O2^0 (-11405)
+At time : 1.6 ps Reaction : OH^0 (-9769) + OH^0 (-9771) -> H2O2^0 (-11406)
+At time : 1.6 ps Reaction : OH^0 (-9640) + OH^0 (-6536) -> H2O2^0 (-11407)
+At time : 1.6 ps Reaction : e_aq^-1 (-1566) + OH^0 (-7948) -> OH^-1 (-11408)
+At time : 1.6 ps Reaction : OH^-1 (-11408) + H3O^1 (-7947) -> No product
+At time : 1.7 ps Reaction : H^0 (-11232) + OH^0 (-11231) -> No product
+At time : 1.7 ps Reaction : OH^0 (-11106) + H^0 (-11107) -> No product
+At time : 1.7 ps Reaction : OH^0 (-9974) + OH^0 (-9976) -> H2O2^0 (-11409)
+At time : 1.8 ps Reaction : OH^0 (-11013) + OH^0 (-8890) -> H2O2^0 (-11410)
+At time : 1.9 ps Reaction : OH^0 (-11068) + H^0 (-8968) -> No product
+At time : 1.9 ps Reaction : OH^0 (-10540) + OH^0 (-10816) -> H2O2^0 (-11411)
+At time : 1.9 ps Reaction : OH^0 (-6102) + OH^0 (-8942) -> H2O2^0 (-11412)
+At time : 2 ps Reaction : OH^0 (-9558) + OH^0 (-6380) -> H2O2^0 (-11413)
+At time : 2 ps Reaction : OH^0 (-9188) + OH^0 (-9492) -> H2O2^0 (-11414)
+At time : 2 ps Reaction : OH^0 (-9310) + OH^0 (-6984) -> H2O2^0 (-11415)
+At time : 2 ps Reaction : OH^0 (-8796) + OH^0 (-8797) -> H2O2^0 (-11416)
+At time : 2.3 ps Reaction : OH^0 (-9242) + OH^0 (-9704) -> H2O2^0 (-11417)
+At time : 2.4 ps Reaction : OH^0 (-9857) + OH^0 (-9855) -> H2O2^0 (-11418)
+At time : 2.4 ps Reaction : OH^0 (-9238) + OH^0 (-5938) -> H2O2^0 (-11419)
+At time : 2.4 ps Reaction : OH^-1 (-5774) + H3O^1 (-7807) -> No product
+At time : 2.5 ps Reaction : OH^0 (-10874) + e_aq^-1 (-4426) -> OH^-1 (-11420)
+At time : 2.5 ps Reaction : OH^0 (-9934) + OH^0 (-9933) -> H2O2^0 (-11421)
+At time : 2.5 ps Reaction : H3O^1 (-10873) + OH^-1 (-11420) -> No product
+At time : 2.6 ps Reaction : OH^0 (-10937) + OH^0 (-7984) -> H2O2^0 (-11422)
+At time : 2.6 ps Reaction : OH^0 (-10505) + OH^0 (-7998) -> H2O2^0 (-11423)
+At time : 2.7 ps Reaction : OH^0 (-10802) + OH^0 (-6842) -> H2O2^0 (-11424)
+At time : 2.7 ps Reaction : OH^0 (-10657) + OH^0 (-10660) -> H2O2^0 (-11425)
+At time : 2.7 ps Reaction : OH^0 (-10047) + OH^0 (-10046) -> H2O2^0 (-11426)
+At time : 2.7 ps Reaction : H^0 (-9216) + H^0 (-9578) -> H_2^0 (-11427)
+At time : 2.7 ps Reaction : OH^0 (-6768) + OH^0 (-8792) -> H2O2^0 (-11428)
+At time : 2.7 ps Reaction : e_aq^-1 (-4362) + H3O^1 (-5995) -> H^0 (-11429)
+At time : 2.8 ps Reaction : OH^0 (-11342) + OH^0 (-9415) -> H2O2^0 (-11430)
+At time : 2.8 ps Reaction : OH^0 (-11098) + OH^0 (-8917) -> H2O2^0 (-11431)
+At time : 2.9 ps Reaction : OH^0 (-10777) + OH^0 (-11237) -> H2O2^0 (-11432)
+At time : 2.9 ps Reaction : OH^0 (-10283) + OH^0 (-11155) -> H2O2^0 (-11433)
+At time : 3 ps Reaction : OH^0 (-10486) + OH^0 (-5864) -> H2O2^0 (-11434)
+At time : 3 ps Reaction : H^0 (-9938) + OH^0 (-8567) -> No product
+At time : 3.1 ps Reaction : OH^0 (-10855) + OH^0 (-7926) -> H2O2^0 (-11435)
+At time : 3.3 ps Reaction : OH^0 (-11318) + OH^0 (-9923) -> H2O2^0 (-11436)
+At time : 3.3 ps Reaction : OH^0 (-10978) + OH^0 (-10111) -> H2O2^0 (-11437)
+At time : 3.3 ps Reaction : OH^0 (-9790) + OH^0 (-9047) -> H2O2^0 (-11438)
+At time : 3.3 ps Reaction : OH^0 (-6132) + OH^0 (-7298) -> H2O2^0 (-11439)
+At time : 3.5 ps Reaction : OH^0 (-10476) + OH^0 (-10995) -> H2O2^0 (-11440)
+At time : 3.5 ps Reaction : OH^0 (-9123) + OH^0 (-9039) -> H2O2^0 (-11441)
+At time : 3.6 ps Reaction : OH^0 (-10289) + OH^0 (-9101) -> H2O2^0 (-11442)
+At time : 3.7 ps Reaction : e_aq^-1 (-4461) + OH^0 (-6188) -> OH^-1 (-11443)
+At time : 3.7 ps Reaction : H3O^1 (-8448) + OH^-1 (-11443) -> No product
+At time : 3.8 ps Reaction : OH^0 (-10243) + OH^0 (-9097) -> H2O2^0 (-11444)
+At time : 3.9 ps Reaction : OH^0 (-11194) + H^0 (-11264) -> No product
+At time : 4 ps Reaction : H^0 (-11099) + e_aq^-1 (-5214) -> OH^-1 (-11445) + H_2^0 (-11446)
+At time : 4 ps Reaction : OH^0 (-7286) + H^0 (-9100) -> No product
+At time : 4 ps Reaction : OH^-1 (-11445) + H3O^1 (-8499) -> No product
+At time : 4.3 ps Reaction : OH^0 (-9252) + OH^0 (-11233) -> H2O2^0 (-11447)
+At time : 4.3 ps Reaction : OH^0 (-10126) + e_aq^-1 (-4845) -> OH^-1 (-11448)
+At time : 4.3 ps Reaction : H3O^1 (-10125) + OH^-1 (-11448) -> No product
+At time : 4.5 ps Reaction : OH^0 (-9958) + OH^0 (-9956) -> H2O2^0 (-11449)
+At time : 4.5 ps Reaction : OH^0 (-9419) + OH^0 (-8973) -> H2O2^0 (-11450)
+At time : 4.5 ps Reaction : OH^0 (-6008) + OH^0 (-8372) -> H2O2^0 (-11451)
+At time : 4.8 ps Reaction : e_aq^-1 (-4320) + OH^0 (-6860) -> OH^-1 (-11452)
+At time : 4.8 ps Reaction : H3O^1 (-6859) + OH^-1 (-11452) -> No product
+At time : 4.9 ps Reaction : OH^0 (-8717) + OH^0 (-9065) -> H2O2^0 (-11453)
+At time : 5.1 ps Reaction : OH^0 (-10638) + OH^0 (-6300) -> H2O2^0 (-11454)
+At time : 5.1 ps Reaction : H^0 (-9505) + OH^0 (-9504) -> No product
+At time : 5.1 ps Reaction : OH^0 (-9332) + OH^0 (-6152) -> H2O2^0 (-11455)
+At time : 5.2 ps Reaction : OH^0 (-9499) + OH^0 (-6256) -> H2O2^0 (-11456)
+At time : 5.3 ps Reaction : H^0 (-11204) + OH^0 (-7134) -> No product
+At time : 5.3 ps Reaction : OH^0 (-10614) + e_aq^-1 (-3470) -> OH^-1 (-11457)
+At time : 5.3 ps Reaction : OH^0 (-9144) + OH^0 (-10257) -> H2O2^0 (-11458)
+At time : 5.3 ps Reaction : OH^0 (-9456) + e_aq^-1 (-3428) -> OH^-1 (-11459)
+At time : 5.3 ps Reaction : H3O^1 (-10613) + OH^-1 (-11457) -> No product
+At time : 5.4 ps Reaction : OH^0 (-10240) + OH^0 (-6086) -> H2O2^0 (-11460)
+At time : 5.4 ps Reaction : H^0 (-10155) + OH^0 (-10159) -> No product
+At time : 5.4 ps Reaction : OH^0 (-7214) + OH^0 (-7216) -> H2O2^0 (-11461)
+At time : 5.5 ps Reaction : OH^0 (-11179) + OH^0 (-10306) -> H2O2^0 (-11462)
+At time : 5.5 ps Reaction : OH^0 (-6278) + OH^0 (-9021) -> H2O2^0 (-11463)
+At time : 5.6 ps Reaction : OH^0 (-10011) + OH^0 (-10012) -> H2O2^0 (-11464)
+At time : 5.7 ps Reaction : OH^0 (-10161) + OH^0 (-10162) -> H2O2^0 (-11465)
+At time : 5.7 ps Reaction : OH^0 (-8300) + OH^0 (-8310) -> H2O2^0 (-11466)
+At time : 5.8 ps Reaction : OH^0 (-5836) + OH^0 (-7616) -> H2O2^0 (-11467)
+At time : 5.9 ps Reaction : OH^0 (-11274) + OH^0 (-5754) -> H2O2^0 (-11468)
+At time : 6 ps Reaction : OH^0 (-9007) + OH^0 (-9031) -> H2O2^0 (-11469)
+At time : 6.1 ps Reaction : OH^0 (-9230) + OH^0 (-9231) -> H2O2^0 (-11470)
+At time : 6.1 ps Reaction : e_aq^-1 (-3263) + OH^0 (-5882) -> OH^-1 (-11471)
+At time : 6.1 ps Reaction : H3O^1 (-5881) + OH^-1 (-11471) -> No product
+At time : 6.3 ps Reaction : OH^0 (-11346) + OH^0 (-8969) -> H2O2^0 (-11472)
+At time : 6.3 ps Reaction : OH^0 (-11126) + OH^0 (-7280) -> H2O2^0 (-11473)
+At time : 6.6 ps Reaction : e_aq^-1 (-5467) + H3O^1 (-7413) -> H^0 (-11474)
+At time : 6.7 ps Reaction : OH^0 (-7200) + OH^0 (-8903) -> H2O2^0 (-11475)
+At time : 6.8 ps Reaction : OH^0 (-8995) + H^0 (-8996) -> No product
+At time : 6.9 ps Reaction : OH^0 (-5769) + H^0 (-8998) -> No product
+At time : 6.9 ps Reaction : OH^0 (-6524) + OH^0 (-6532) -> H2O2^0 (-11476)
+At time : 7.1 ps Reaction : OH^0 (-5988) + H^0 (-9064) -> No product
+At time : 7.2 ps Reaction : H^0 (-9895) + OH^0 (-9904) -> No product
+At time : 7.3 ps Reaction : OH^0 (-10411) + OH^0 (-10217) -> H2O2^0 (-11477)
+At time : 7.3 ps Reaction : OH^0 (-9727) + OH^0 (-6646) -> H2O2^0 (-11478)
+At time : 7.7 ps Reaction : OH^0 (-9950) + H^0 (-9289) -> No product
+At time : 7.7 ps Reaction : H^0 (-9149) + OH^0 (-8284) -> No product
+At time : 7.9 ps Reaction : OH^0 (-9822) + H^0 (-9821) -> No product
+At time : 8.2 ps Reaction : OH^0 (-7890) + OH^0 (-8989) -> H2O2^0 (-11479)
+At time : 8.4 ps Reaction : OH^0 (-9345) + OH^0 (-7166) -> H2O2^0 (-11480)
+At time : 8.5 ps Reaction : OH^0 (-11202) + OH^0 (-9300) -> H2O2^0 (-11481)
+At time : 8.5 ps Reaction : OH^0 (-10716) + OH^0 (-10717) -> H2O2^0 (-11482)
+At time : 8.5 ps Reaction : OH^0 (-7934) + OH^0 (-8843) -> H2O2^0 (-11483)
+At time : 8.8 ps Reaction : OH^0 (-10462) + OH^0 (-10461) -> H2O2^0 (-11484)
+At time : 8.8 ps Reaction : OH^0 (-7924) + H^0 (-9068) -> No product
+At time : 8.9 ps Reaction : OH^0 (-10193) + OH^0 (-7190) -> H2O2^0 (-11485)
+At time : 8.9 ps Reaction : OH^0 (-6062) + OH^0 (-8126) -> H2O2^0 (-11486)
+At time : 9 ps Reaction : OH^0 (-10825) + OH^0 (-6864) -> H2O2^0 (-11487)
+At time : 9 ps Reaction : OH^0 (-9211) + OH^0 (-9212) -> H2O2^0 (-11488)
+At time : 9.1 ps Reaction : H^0 (-9243) + H^0 (-9711) -> H_2^0 (-11489)
+At time : 9.2 ps Reaction : OH^0 (-9266) + OH^0 (-10755) -> H2O2^0 (-11490)
+At time : 9.3 ps Reaction : OH^0 (-11175) + OH^0 (-6106) -> H2O2^0 (-11491)
+At time : 9.4 ps Reaction : H^0 (-11242) + OH^0 (-6200) -> No product
+At time : 9.5 ps Reaction : OH^0 (-9164) + OH^0 (-9166) -> H2O2^0 (-11492)
+At time : 9.6 ps Reaction : OH^0 (-9776) + OH^0 (-9258) -> H2O2^0 (-11493)
+At time : 9.8 ps Reaction : OH^0 (-10834) + H^0 (-10835) -> No product
+At time : 9.8 ps Reaction : H^0 (-9141) + OH^0 (-10231) -> No product
+At time : 9.9 ps Reaction : OH^-1 (-11390) + H3O^1 (-7683) -> No product
+At time : 10.2 ps Reaction : OH^0 (-11033) + OH^0 (-10163) -> H2O2^0 (-11494)
+At time : 10.3 ps Reaction : OH^0 (-9279) + OH^0 (-8987) -> H2O2^0 (-11495)
+At time : 10.3 ps Reaction : OH^0 (-7484) + OH^0 (-8102) -> H2O2^0 (-11496)
+At time : 10.6 ps Reaction : OH^0 (-7534) + OH^0 (-8020) -> H2O2^0 (-11497)
+At time : 10.7 ps Reaction : OH^0 (-11316) + H^0 (-9062) -> No product
+At time : 10.7 ps Reaction : H^0 (-10817) + OH^0 (-6854) -> No product
+At time : 10.7 ps Reaction : OH^0 (-9894) + OH^0 (-9898) -> H2O2^0 (-11498)
+At time : 10.8 ps Reaction : OH^0 (-5868) + OH^0 (-6942) -> H2O2^0 (-11499)
+At time : 11 ps Reaction : OH^0 (-11166) + OH^0 (-9381) -> H2O2^0 (-11500)
+At time : 12.1 ps Reaction : OH^0 (-11196) + OH^0 (-9502) -> H2O2^0 (-11501)
+At time : 12.1 ps Reaction : OH^0 (-10568) + OH^0 (-9053) -> H2O2^0 (-11502)
+At time : 12.1 ps Reaction : H^0 (-10259) + OH^0 (-8927) -> No product
+At time : 12.1 ps Reaction : OH^0 (-9157) + OH^0 (-8242) -> H2O2^0 (-11503)
+At time : 12.1 ps Reaction : OH^0 (-7310) + OH^0 (-8262) -> H2O2^0 (-11504)
+At time : 13.1 ps Reaction : OH^0 (-11189) + OH^0 (-9389) -> H2O2^0 (-11505)
+At time : 13.1 ps Reaction : H^0 (-10919) + H^0 (-9307) -> H_2^0 (-11506)
+At time : 13.1 ps Reaction : OH^0 (-10080) + OH^0 (-10082) -> H2O2^0 (-11507)
+At time : 13.1 ps Reaction : H^0 (-9459) + OH^0 (-9458) -> No product
+At time : 13.1 ps Reaction : H^0 (-9378) + OH^0 (-9375) -> No product
+At time : 13.1 ps Reaction : OH^0 (-6518) + H^0 (-9032) -> No product
+At time : 13.1 ps Reaction : OH^0 (-6098) + OH^0 (-8636) -> H2O2^0 (-11508)
+At time : 14.1 ps Reaction : OH^0 (-10136) + OH^0 (-10137) -> H2O2^0 (-11509)
+At time : 14.1 ps Reaction : OH^0 (-9919) + OH^0 (-6194) -> H2O2^0 (-11510)
+At time : 14.1 ps Reaction : OH^0 (-9841) + H^0 (-9840) -> No product
+At time : 14.1 ps Reaction : OH^0 (-9577) + OH^0 (-6416) -> H2O2^0 (-11511)
+At time : 14.1 ps Reaction : OH^0 (-9208) + OH^0 (-9565) -> H2O2^0 (-11512)
+At time : 14.1 ps Reaction : H^0 (-9412) + OH^0 (-9411) -> No product
+At time : 14.1 ps Reaction : OH^0 (-9176) + e_aq^-1 (-3460) -> OH^-1 (-11513)
+At time : 14.1 ps Reaction : OH^0 (-6058) + OH^0 (-8118) -> H2O2^0 (-11514)
+At time : 14.1 ps Reaction : e_aq^-1 (-5447) + OH^0 (-7418) -> OH^-1 (-11515)
+At time : 14.1 ps Reaction : e_aq^-1 (-3340) + OH^0 (-6228) -> OH^-1 (-11516)
+At time : 14.1 ps Reaction : OH^-1 (-5786) + H3O^1 (-6205) -> No product
+At time : 14.1 ps Reaction : OH^-1 (-11516) + H3O^1 (-6227) -> No product
+At time : 14.1 ps Reaction : OH^-1 (-11515) + H3O^1 (-8673) -> No product
+At time : 14.1 ps Reaction : OH^-1 (-11513) + H3O^1 (-6213) -> No product
+At time : 15.1 ps Reaction : OH^0 (-10250) + OH^0 (-11114) -> H2O2^0 (-11517)
+At time : 15.1 ps Reaction : OH^0 (-10942) + OH^0 (-10069) -> H2O2^0 (-11518)
+At time : 15.1 ps Reaction : H3O^1 (-10907) + OH^-1 (-5747) -> No product
+At time : 15.1 ps Reaction : OH^0 (-10421) + H^0 (-9418) -> No product
+At time : 15.1 ps Reaction : H^0 (-10026) + OH^0 (-9075) -> No product
+At time : 15.1 ps Reaction : H^0 (-9588) + OH^0 (-6430) -> No product
+At time : 15.1 ps Reaction : OH^0 (-6954) + OH^0 (-7566) -> H2O2^0 (-11519)
+At time : 15.1 ps Reaction : OH^0 (-10492) + H^0 (-11330) -> No product
+At time : 16.1 ps Reaction : OH^0 (-11276) + OH^0 (-9872) -> H2O2^0 (-11520)
+At time : 16.1 ps Reaction : OH^0 (-10944) + OH^0 (-10073) -> H2O2^0 (-11521)
+At time : 16.1 ps Reaction : OH^0 (-10697) + OH^0 (-6542) -> H2O2^0 (-11522)
+At time : 16.1 ps Reaction : OH^0 (-9720) + OH^0 (-5772) -> H2O2^0 (-11523)
+At time : 16.1 ps Reaction : H^0 (-9655) + OH^0 (-9650) -> No product
+At time : 16.1 ps Reaction : H^0 (-9388) + OH^0 (-7356) -> No product
+At time : 16.1 ps Reaction : OH^0 (-5862) + OH^0 (-8612) -> H2O2^0 (-11524)
+At time : 17.1 ps Reaction : H^0 (-10898) + OH^0 (-9073) -> No product
+At time : 17.1 ps Reaction : OH^0 (-10645) + OH^0 (-9535) -> H2O2^0 (-11525)
+At time : 17.1 ps Reaction : OH^0 (-10502) + OH^0 (-6028) -> H2O2^0 (-11526)
+At time : 17.1 ps Reaction : H^0 (-10030) + OH^0 (-7564) -> No product
+At time : 17.1 ps Reaction : OH^0 (-9942) + OH^0 (-6862) -> H2O2^0 (-11527)
+At time : 17.1 ps Reaction : e_aq^-1 (-5116) + OH^0 (-8501) -> OH^-1 (-11528)
+At time : 17.1 ps Reaction : e_aq^-1 (-4802) + e_aq^-1 (-4832) -> OH^-1 (-11529) + OH^-1 (-11530) + H_2^0 (-11531)
+At time : 18.1 ps Reaction : OH^0 (-11339) + H^0 (-10213) -> No product
+At time : 18.1 ps Reaction : H^0 (-10509) + H^0 (-9434) -> H_2^0 (-11532)
+At time : 18.1 ps Reaction : OH^0 (-10315) + OH^0 (-7354) -> H2O2^0 (-11533)
+At time : 18.1 ps Reaction : H^0 (-9856) + OH^0 (-8802) -> No product
+At time : 18.1 ps Reaction : e_aq^-1 (-1219) + OH^0 (-9431) -> OH^-1 (-11534)
+At time : 18.1 ps Reaction : H3O^1 (-7027) + OH^-1 (-11534) -> No product
+At time : 18.1 ps Reaction : OH^0 (-10175) + OH^0 (-7164) -> H2O2^0 (-11535)
+At time : 19.1 ps Reaction : OH^0 (-10254) + OH^0 (-11205) -> H2O2^0 (-11536)
+At time : 19.1 ps Reaction : OH^0 (-9829) + H^0 (-9050) -> No product
+At time : 19.1 ps Reaction : OH^0 (-7366) + OH^0 (-8324) -> H2O2^0 (-11537)
+At time : 20.1 ps Reaction : OH^0 (-10708) + H^0 (-9042) -> No product
+At time : 20.1 ps Reaction : OH^0 (-9890) + OH^0 (-9897) -> H2O2^0 (-11538)
+At time : 20.1 ps Reaction : H^0 (-9317) + OH^0 (-7004) -> No product
+At time : 20.1 ps Reaction : e_aq^-1 (-4279) + H3O^1 (-7603) -> H^0 (-11539)
+At time : 20.1 ps Reaction : e_aq^-1 (-1720) + OH^0 (-5994) -> OH^-1 (-11540)
+At time : 20.1 ps Reaction : OH^0 (-6980) + OH^0 (-9077) -> H2O2^0 (-11541)
+At time : 21.1 ps Reaction : OH^0 (-10211) + OH^0 (-10215) -> H2O2^0 (-11542)
+At time : 21.1 ps Reaction : OH^0 (-9770) + OH^0 (-9767) -> H2O2^0 (-11543)
+At time : 21.1 ps Reaction : OH^0 (-9302) + OH^0 (-6928) -> H2O2^0 (-11544)
+At time : 22.1 ps Reaction : H^0 (-11258) + OH^0 (-9369) -> No product
+At time : 22.1 ps Reaction : OH^0 (-10372) + OH^0 (-11143) -> H2O2^0 (-11545)
+At time : 22.1 ps Reaction : OH^0 (-10423) + OH^0 (-7230) -> H2O2^0 (-11546)
+At time : 22.1 ps Reaction : H^0 (-10358) + OH^0 (-9103) -> No product
+At time : 22.1 ps Reaction : OH^0 (-9629) + OH^0 (-9624) -> H2O2^0 (-11547)
+At time : 22.1 ps Reaction : OH^0 (-9538) + OH^0 (-6346) -> H2O2^0 (-11548)
+At time : 22.1 ps Reaction : OH^0 (-9423) + OH^0 (-7100) -> H2O2^0 (-11549)
+At time : 22.1 ps Reaction : e_aq^-1 (-1859) + OH^0 (-8822) -> OH^-1 (-11550)
+At time : 22.1 ps Reaction : OH^0 (-8784) + OH^0 (-8785) -> H2O2^0 (-11551)
+At time : 22.1 ps Reaction : OH^0 (-5832) + OH^0 (-7828) -> H2O2^0 (-11552)
+At time : 23.1 ps Reaction : H3O^1 (-10599) + OH^-1 (-11459) -> No product
+At time : 23.1 ps Reaction : OH^0 (-9304) + OH^0 (-9439) -> H2O2^0 (-11553)
+At time : 23.1 ps Reaction : OH^0 (-7196) + OH^0 (-8150) -> H2O2^0 (-11554)
+At time : 24.1 ps Reaction : H3O^1 (-10803) + OH^-1 (-11550) -> No product
+At time : 24.1 ps Reaction : H^0 (-11429) + OH^0 (-10842) -> No product
+At time : 24.1 ps Reaction : OH^0 (-11253) + H^0 (-9351) -> No product
+At time : 24.1 ps Reaction : OH^0 (-10471) + H^0 (-10134) -> No product
+At time : 24.1 ps Reaction : e_aq^-1 (-4429) + OH^0 (-8525) -> OH^-1 (-11555)
+At time : 24.1 ps Reaction : e_aq^-1 (-1910) + OH^0 (-6198) -> OH^-1 (-11556)
+At time : 24.1 ps Reaction : OH^-1 (-11556) + H3O^1 (-8814) -> No product
+At time : 24.1 ps Reaction : OH^-1 (-11555) + H3O^1 (-8526) -> No product
+At time : 25.1 ps Reaction : H^0 (-9774) + OH^0 (-9773) -> No product
+At time : 26.1 ps Reaction : H3O^1 (-8574) + OH^-1 (-11540) -> No product
+At time : 26.1 ps Reaction : H^0 (-9249) + OH^0 (-10729) -> No product
+At time : 27.1 ps Reaction : OH^0 (-10811) + OH^0 (-9936) -> H2O2^0 (-11557)
+At time : 27.1 ps Reaction : OH^0 (-6376) + OH^0 (-7736) -> H2O2^0 (-11558)
+At time : 28.1 ps Reaction : OH^0 (-11091) + OH^0 (-8174) -> H2O2^0 (-11559)
+At time : 28.1 ps Reaction : H^0 (-9705) + OH^0 (-9700) -> No product
+At time : 28.1 ps Reaction : OH^0 (-9358) + OH^0 (-8210) -> H2O2^0 (-11560)
+At time : 28.1 ps Reaction : OH^0 (-9282) + OH^0 (-7904) -> H2O2^0 (-11561)
+At time : 29.1 ps Reaction : OH^0 (-11305) + OH^0 (-9005) -> H2O2^0 (-11562)
+At time : 29.1 ps Reaction : OH^0 (-10895) + H^0 (-9072) -> No product
+At time : 29.1 ps Reaction : H^0 (-10244) + OH^0 (-7262) -> No product
+At time : 29.1 ps Reaction : OH^0 (-10237) + OH^0 (-7260) -> H2O2^0 (-11563)
+At time : 29.1 ps Reaction : OH^0 (-10087) + OH^0 (-9318) -> H2O2^0 (-11564)
+At time : 29.1 ps Reaction : e_aq^-1 (-3275) + OH^0 (-9491) -> OH^-1 (-11565)
+At time : 29.1 ps Reaction : H^0 (-9432) + OH^0 (-7038) -> No product
+At time : 29.1 ps Reaction : OH^-1 (-5735) + H3O^1 (-6033) -> No product
+At time : 29.1 ps Reaction : OH^-1 (-11565) + H3O^1 (-6247) -> No product
+At time : 29.1 ps Reaction : OH^0 (-10286) + OH^0 (-9377) -> H2O2^0 (-11566)
+At time : 29.1 ps Reaction : e_aq^-1 (-4465) + OH^0 (-7944) -> OH^-1 (-11567)
+At time : 29.1 ps Reaction : OH^-1 (-11567) + H3O^1 (-7943) -> No product
+At time : 30.1 ps Reaction : OH^0 (-11304) + H^0 (-9605) -> No product
+At time : 30.1 ps Reaction : OH^0 (-11052) + OH^0 (-11054) -> H2O2^0 (-11568)
+At time : 30.1 ps Reaction : OH^0 (-10670) + OH^0 (-6424) -> H2O2^0 (-11569)
+At time : 30.1 ps Reaction : OH^0 (-10299) + OH^0 (-7340) -> H2O2^0 (-11570)
+At time : 30.1 ps Reaction : H^0 (-9846) + OH^0 (-9847) -> No product
+At time : 30.1 ps Reaction : OH^0 (-7348) + OH^0 (-7398) -> H2O2^0 (-11571)
+At time : 31.1 ps Reaction : H^0 (-11275) + OH^0 (-9061) -> No product
+At time : 31.1 ps Reaction : e_aq^-1 (-1462) + OH^0 (-10915) -> OH^-1 (-11572)
+At time : 31.1 ps Reaction : OH^0 (-10680) + H^0 (-10681) -> No product
+At time : 31.1 ps Reaction : OH^0 (-9219) + H^0 (-10672) -> No product
+At time : 31.1 ps Reaction : OH^0 (-10552) + e_aq^-1 (-4238) -> OH^-1 (-11573)
+At time : 31.1 ps Reaction : H^0 (-9245) + OH^0 (-6644) -> No product
+At time : 31.1 ps Reaction : e_aq^-1 (-5474) + H3O^1 (-8267) -> H^0 (-11574)
+At time : 32.1 ps Reaction : OH^0 (-10035) + OH^0 (-10922) -> H2O2^0 (-11575)
+At time : 32.1 ps Reaction : H^0 (-10810) + OH^0 (-10804) -> No product
+At time : 32.1 ps Reaction : OH^0 (-10459) + H^0 (-10145) -> No product
+At time : 32.1 ps Reaction : OH^0 (-7342) + OH^0 (-9107) -> H2O2^0 (-11576)
+At time : 32.1 ps Reaction : OH^0 (-6988) + OH^0 (-8375) -> H2O2^0 (-11577)
+At time : 32.1 ps Reaction : e_aq^-1 (-1229) + OH^0 (-7026) -> OH^-1 (-11578)
+At time : 32.1 ps Reaction : OH^-1 (-11578) + H3O^1 (-8001) -> No product
+At time : 32.1 ps Reaction : OH^0 (-8552) + OH^0 (-8761) -> H2O2^0 (-11579)
+At time : 33.1 ps Reaction : OH^0 (-9900) + OH^0 (-6836) -> H2O2^0 (-11580)
+At time : 33.1 ps Reaction : H^0 (-9380) + OH^0 (-8278) -> No product
+At time : 33.1 ps Reaction : H^0 (-9293) + OH^0 (-7930) -> No product
+At time : 33.1 ps Reaction : OH^0 (-6586) + OH^0 (-6588) -> H2O2^0 (-11581)
+At time : 33.1 ps Reaction : OH^0 (-5846) + OH^0 (-6162) -> H2O2^0 (-11582)
+At time : 34.1 ps Reaction : OH^0 (-11108) + OH^0 (-8220) -> H2O2^0 (-11583)
+At time : 34.1 ps Reaction : OH^0 (-9783) + OH^0 (-9260) -> H2O2^0 (-11584)
+At time : 34.1 ps Reaction : H3O^1 (-9427) + OH^-1 (-5732) -> No product
+At time : 34.1 ps Reaction : OH^0 (-9183) + OH^0 (-9184) -> H2O2^0 (-11585)
+At time : 35.1 ps Reaction : OH^0 (-10847) + OH^0 (-6892) -> H2O2^0 (-11586)
+At time : 35.1 ps Reaction : OH^0 (-10837) + OH^0 (-9946) -> H2O2^0 (-11587)
+At time : 35.1 ps Reaction : OH^0 (-10403) + OH^0 (-6084) -> H2O2^0 (-11588)
+At time : 35.1 ps Reaction : OH^0 (-10154) + OH^0 (-9341) -> H2O2^0 (-11589)
+At time : 35.1 ps Reaction : H^0 (-9301) + H^0 (-9303) -> H_2^0 (-11590)
+At time : 35.1 ps Reaction : OH^0 (-9109) + H^0 (-9110) -> No product
+At time : 36.1 ps Reaction : OH^0 (-11186) + OH^0 (-10320) -> H2O2^0 (-11591)
+At time : 36.1 ps Reaction : OH^0 (-11018) + OH^0 (-11019) -> H2O2^0 (-11592)
+At time : 36.1 ps Reaction : OH^0 (-11010) + OH^0 (-5860) -> H2O2^0 (-11593)
+At time : 36.1 ps Reaction : H3O^1 (-10349) + OH^-1 (-5720) -> No product
+At time : 36.1 ps Reaction : OH^0 (-9148) + H^0 (-10294) -> No product
+At time : 36.1 ps Reaction : OH^0 (-9910) + OH^0 (-5982) -> H2O2^0 (-11594)
+At time : 36.1 ps Reaction : OH^0 (-9736) + OH^0 (-9737) -> H2O2^0 (-11595)
+At time : 37.1 ps Reaction : OH^0 (-10182) + H^0 (-11254) -> No product
+At time : 37.1 ps Reaction : H^0 (-11016) + H^0 (-10149) -> H_2^0 (-11596)
+At time : 37.1 ps Reaction : H^0 (-10521) + H^0 (-10890) -> H_2^0 (-11597)
+At time : 37.1 ps Reaction : OH^0 (-6812) + OH^0 (-8991) -> H2O2^0 (-11598)
+At time : 38.1 ps Reaction : OH^0 (-10354) + OH^0 (-10304) -> H2O2^0 (-11599)
+At time : 38.1 ps Reaction : H^0 (-9955) + OH^0 (-9069) -> No product
+At time : 38.1 ps Reaction : OH^0 (-9813) + OH^0 (-6730) -> H2O2^0 (-11600)
+At time : 38.1 ps Reaction : H^0 (-9203) + OH^0 (-9533) -> No product
+At time : 38.1 ps Reaction : H^0 (-9207) + e_aq^-1 (-2984) -> OH^-1 (-11601) + H_2^0 (-11602)
+At time : 39.1 ps Reaction : OH^0 (-9134) + H^0 (-10864) -> No product
+At time : 39.1 ps Reaction : OH^0 (-10191) + OH^0 (-8136) -> H2O2^0 (-11603)
+At time : 39.1 ps Reaction : H^0 (-9967) + OH^0 (-6900) -> No product
+At time : 40.1 ps Reaction : OH^0 (-10881) + OH^0 (-6914) -> H2O2^0 (-11604)
+At time : 40.1 ps Reaction : OH^0 (-9636) + OH^0 (-8345) -> H2O2^0 (-11605)
+At time : 40.1 ps Reaction : OH^0 (-6972) + OH^0 (-7556) -> H2O2^0 (-11606)
+At time : 40.1 ps Reaction : H^0 (-10812) + H^0 (-9924) -> H_2^0 (-11607)
+At time : 41.1 ps Reaction : OH^0 (-9460) + e_aq^-1 (-3448) -> OH^-1 (-11608)
+At time : 41.1 ps Reaction : H^0 (-9372) + OH^0 (-8256) -> No product
+At time : 41.1 ps Reaction : OH^0 (-8867) + H^0 (-8978) -> No product
+At time : 41.1 ps Reaction : OH^0 (-6000) + OH^0 (-6898) -> H2O2^0 (-11609)
+At time : 41.1 ps Reaction : e_aq^-1 (-3500) + OH^0 (-6232) -> OH^-1 (-11610)
+At time : 42.1 ps Reaction : OH^0 (-11003) + OH^0 (-10139) -> H2O2^0 (-11611)
+At time : 42.1 ps Reaction : e_aq^-1 (-1515) + H3O^1 (-6939) -> H^0 (-11612)
+At time : 43.1 ps Reaction : OH^0 (-11327) + OH^0 (-10038) -> H2O2^0 (-11613)
+At time : 43.1 ps Reaction : e_aq^-1 (-1432) + H3O^1 (-7967) -> H^0 (-11614)
+At time : 44.1 ps Reaction : OH^0 (-10775) + OH^0 (-7878) -> H2O2^0 (-11615)
+At time : 44.1 ps Reaction : OH^0 (-10523) + OH^0 (-9994) -> H2O2^0 (-11616)
+At time : 44.1 ps Reaction : H^0 (-10466) + OH^0 (-10133) -> No product
+At time : 44.1 ps Reaction : OH^0 (-10031) + OH^0 (-10033) -> H2O2^0 (-11617)
+At time : 44.1 ps Reaction : OH^0 (-5926) + H^0 (-9036) -> No product
+At time : 44.1 ps Reaction : OH^0 (-7114) + OH^0 (-8882) -> H2O2^0 (-11618)
+At time : 44.1 ps Reaction : OH^0 (-6998) + OH^0 (-8516) -> H2O2^0 (-11619)
+At time : 45.1 ps Reaction : OH^0 (-11185) + H^0 (-9114) -> No product
+At time : 45.1 ps Reaction : OH^0 (-10940) + OH^0 (-7992) -> H2O2^0 (-11620)
+At time : 45.1 ps Reaction : OH^0 (-10376) + OH^0 (-10378) -> H2O2^0 (-11621)
+At time : 45.1 ps Reaction : e_aq^-1 (-5081) + H3O^1 (-8117) -> H^0 (-11622)
+At time : 45.1 ps Reaction : OH^0 (-7020) + OH^0 (-7024) -> H2O2^0 (-11623)
+At time : 46.1 ps Reaction : OH^0 (-9749) + H^0 (-11234) -> No product
+At time : 46.1 ps Reaction : OH^0 (-11093) + H^0 (-9094) -> No product
+At time : 46.1 ps Reaction : OH^0 (-10512) + OH^0 (-8450) -> H2O2^0 (-11624)
+At time : 46.1 ps Reaction : H^0 (-9193) + H^0 (-9513) -> H_2^0 (-11625)
+At time : 47.1 ps Reaction : OH^-1 (-11610) + H3O^1 (-8745) -> No product
+At time : 47.1 ps Reaction : OH^-1 (-11528) + H3O^1 (-8502) -> No product
+At time : 47.1 ps Reaction : H^0 (-11273) + OH^0 (-5802) -> No product
+At time : 47.1 ps Reaction : H^0 (-10991) + OH^0 (-7512) -> No product
+At time : 47.1 ps Reaction : H^0 (-10271) + OH^0 (-8250) -> No product
+At time : 47.1 ps Reaction : H^0 (-9153) + H^0 (-9394) -> H_2^0 (-11626)
+At time : 47.1 ps Reaction : e_aq^-1 (-5712) + OH^0 (-8645) -> OH^-1 (-11627)
+At time : 47.1 ps Reaction : OH^-1 (-11627) + H3O^1 (-8646) -> No product
+At time : 48.1 ps Reaction : H3O^1 (-10551) + OH^-1 (-11573) -> No product
+At time : 48.1 ps Reaction : OH^0 (-11267) + OH^0 (-8292) -> H2O2^0 (-11628)
+At time : 48.1 ps Reaction : OH^0 (-11101) + OH^0 (-7446) -> H2O2^0 (-11629)
+At time : 48.1 ps Reaction : OH^0 (-9433) + OH^0 (-8866) -> H2O2^0 (-11630)
+At time : 48.1 ps Reaction : OH^0 (-7080) + OH^0 (-7082) -> H2O2^0 (-11631)
+At time : 49.1 ps Reaction : H^0 (-10081) + OH^0 (-10946) -> No product
+At time : 49.1 ps Reaction : e_aq^-1 (-1721) + OH^0 (-10846) -> OH^-1 (-11632)
+At time : 49.1 ps Reaction : OH^0 (-9852) + OH^0 (-6800) -> H2O2^0 (-11633)
+At time : 50.1 ps Reaction : H^0 (-10848) + OH^0 (-8573) -> No product
+At time : 50.1 ps Reaction : OH^0 (-10027) + OH^0 (-10029) -> H2O2^0 (-11634)
+At time : 50.1 ps Reaction : OH^0 (-9171) + e_aq^-1 (-3447) -> OH^-1 (-11635)
+At time : 50.1 ps Reaction : OH^0 (-7760) + H^0 (-9010) -> No product
+At time : 51.1 ps Reaction : OH^0 (-10943) + H^0 (-11244) -> No product
+At time : 51.1 ps Reaction : OH^0 (-9659) + OH^0 (-10699) -> H2O2^0 (-11636)
+At time : 51.1 ps Reaction : OH^0 (-10170) + OH^0 (-8108) -> H2O2^0 (-11637)
+At time : 52.1 ps Reaction : H3O^1 (-9746) + OH^-1 (-5765) -> No product
+At time : 52.1 ps Reaction : OH^0 (-9707) + OH^0 (-9703) -> H2O2^0 (-11638)
+At time : 52.1 ps Reaction : e_aq^-1 (-623) + H3O^1 (-7193) -> H^0 (-11639)
+At time : 53.1 ps Reaction : OH^0 (-11227) + H^0 (-9660) -> No product
+At time : 53.1 ps Reaction : H^0 (-10439) + OH^0 (-7156) -> No product
+At time : 53.1 ps Reaction : H^0 (-10132) + OH^0 (-7090) -> No product
+At time : 53.1 ps Reaction : H^0 (-9420) + OH^0 (-8630) -> No product
+At time : 53.1 ps Reaction : OH^-1 (-5738) + H3O^1 (-6161) -> No product
+At time : 54.1 ps Reaction : OH^0 (-9985) + OH^0 (-8852) -> H2O2^0 (-11640)
+At time : 54.1 ps Reaction : e_aq^-1 (-3592) + OH^0 (-6326) -> OH^-1 (-11641)
+At time : 55.1 ps Reaction : OH^0 (-10879) + e_aq^-1 (-1590) -> OH^-1 (-11642)
+At time : 55.1 ps Reaction : OH^0 (-9843) + H^0 (-9848) -> No product
+At time : 57.1 ps Reaction : H^0 (-11281) + OH^0 (-6666) -> No product
+At time : 57.1 ps Reaction : H^0 (-10447) + OH^0 (-10153) -> No product
+At time : 57.1 ps Reaction : OH^0 (-7314) + OH^0 (-7410) -> H2O2^0 (-11643)
+At time : 57.1 ps Reaction : OH^0 (-6142) + OH^0 (-7234) -> H2O2^0 (-11644)
+At time : 58.1 ps Reaction : OH^0 (-9996) + e_aq^-1 (-4495) -> OH^-1 (-11645)
+At time : 58.1 ps Reaction : OH^0 (-9364) + OH^0 (-8224) -> H2O2^0 (-11646)
+At time : 58.1 ps Reaction : H3O^1 (-9998) + OH^-1 (-11645) -> No product
+At time : 59.1 ps Reaction : OH^0 (-10745) + OH^0 (-8357) -> H2O2^0 (-11647)
+At time : 59.1 ps Reaction : H^0 (-10346) + OH^0 (-7396) -> No product
+At time : 59.1 ps Reaction : e_aq^-1 (-5227) + OH^0 (-10222) -> OH^-1 (-11648)
+At time : 59.1 ps Reaction : OH^0 (-10120) + OH^0 (-7068) -> H2O2^0 (-11649)
+At time : 59.1 ps Reaction : OH^0 (-8206) + OH^0 (-8919) -> H2O2^0 (-11650)
+At time : 59.1 ps Reaction : e_aq^-1 (-2269) + H3O^1 (-7633) -> H^0 (-11651)
+At time : 59.1 ps Reaction : OH^0 (-6004) + OH^0 (-6908) -> H2O2^0 (-11652)
+At time : 59.1 ps Reaction : OH^0 (-6632) + OH^0 (-6636) -> H2O2^0 (-11653)
+At time : 59.1 ps Reaction : OH^-1 (-11648) + H3O^1 (-9356) -> No product
+At time : 60.1 ps Reaction : OH^0 (-10902) + OH^0 (-10006) -> H2O2^0 (-11654)
+At time : 60.1 ps Reaction : OH^0 (-10713) + OH^0 (-6626) -> H2O2^0 (-11655)
+At time : 60.1 ps Reaction : OH^0 (-10282) + H^0 (-9376) -> No product
+At time : 60.1 ps Reaction : H^0 (-9842) + OH^0 (-6786) -> No product
+At time : 61.1 ps Reaction : H^0 (-9124) + OH^0 (-9674) -> No product
+At time : 61.1 ps Reaction : H^0 (-9327) + OH^0 (-9421) -> No product
+At time : 61.1 ps Reaction : OH^0 (-6032) + OH^0 (-6160) -> H2O2^0 (-11656)
+At time : 62.1 ps Reaction : OH^0 (-10013) + OH^0 (-10017) -> H2O2^0 (-11657)
+At time : 62.1 ps Reaction : H^0 (-9755) + OH^0 (-6684) -> No product
+At time : 62.1 ps Reaction : OH^0 (-6350) + OH^0 (-7730) -> H2O2^0 (-11658)
+At time : 62.1 ps Reaction : e_aq^-1 (-5057) + OH^0 (-7162) -> OH^-1 (-11659)
+At time : 62.1 ps Reaction : OH^-1 (-11659) + H3O^1 (-7165) -> No product
+At time : 63.1 ps Reaction : H^0 (-10641) + e_aq^-1 (-3589) -> OH^-1 (-11660) + H_2^0 (-11661)
+At time : 63.1 ps Reaction : H3O^1 (-6319) + OH^-1 (-11660) -> No product
+At time : 64.1 ps Reaction : OH^0 (-10501) + OH^0 (-8510) -> H2O2^0 (-11662)
+At time : 65.1 ps Reaction : OH^-1 (-11641) + H3O^1 (-8754) -> No product
+At time : 65.1 ps Reaction : H^0 (-11332) + H^0 (-10107) -> H_2^0 (-11663)
+At time : 65.1 ps Reaction : H^0 (-10269) + OH^0 (-7276) -> No product
+At time : 65.1 ps Reaction : H^0 (-9523) + OH^0 (-9522) -> No product
+At time : 65.1 ps Reaction : OH^0 (-9200) + OH^0 (-9202) -> H2O2^0 (-11664)
+At time : 65.1 ps Reaction : OH^0 (-5944) + OH^0 (-7802) -> H2O2^0 (-11665)
+At time : 66.1 ps Reaction : OH^0 (-11261) + OH^0 (-10334) -> H2O2^0 (-11666)
+At time : 66.1 ps Reaction : OH^0 (-10911) + e_aq^-1 (-1442) -> OH^-1 (-11667)
+At time : 66.1 ps Reaction : H^0 (-10556) + OH^0 (-7902) -> No product
+At time : 66.1 ps Reaction : H3O^1 (-10914) + OH^-1 (-11667) -> No product
+At time : 67.1 ps Reaction : OH^0 (-8810) + OH^0 (-9057) -> H2O2^0 (-11668)
+At time : 67.1 ps Reaction : e_aq^-1 (-96) + H3O^1 (-8299) -> H^0 (-11669)
+At time : 67.1 ps Reaction : OH^-1 (-5807) + H3O^1 (-7327) -> No product
+At time : 67.1 ps Reaction : OH^0 (-6700) + OH^0 (-6704) -> H2O2^0 (-11670)
+At time : 67.1 ps Reaction : H^0 (-10456) + OH^0 (-8080) -> No product
+At time : 68.1 ps Reaction : H^0 (-10375) + H^0 (-10379) -> H_2^0 (-11671)
+At time : 68.1 ps Reaction : OH^0 (-9316) + OH^0 (-6022) -> H2O2^0 (-11672)
+At time : 68.1 ps Reaction : OH^0 (-8298) + OH^0 (-8654) -> H2O2^0 (-11673)
+At time : 68.1 ps Reaction : OH^0 (-7088) + OH^0 (-8060) -> H2O2^0 (-11674)
+At time : 69.1 ps Reaction : H^0 (-9321) + H^0 (-9084) -> H_2^0 (-11675)
+At time : 70.1 ps Reaction : H^0 (-10888) + OH^0 (-10889) -> No product
+At time : 70.1 ps Reaction : H^0 (-10072) + OH^0 (-10068) -> No product
+At time : 70.1 ps Reaction : OH^0 (-9264) + OH^0 (-5956) -> H2O2^0 (-11676)
+At time : 70.1 ps Reaction : OH^0 (-6174) + OH^0 (-7544) -> H2O2^0 (-11677)
+At time : 70.1 ps Reaction : OH^0 (-8144) + OH^0 (-8148) -> H2O2^0 (-11678)
+At time : 71.1 ps Reaction : OH^0 (-11344) + OH^0 (-10295) -> H2O2^0 (-11679)
+At time : 71.1 ps Reaction : H^0 (-11075) + OH^0 (-8166) -> No product
+At time : 71.1 ps Reaction : OH^0 (-9250) + OH^0 (-7832) -> H2O2^0 (-11680)
+At time : 72.1 ps Reaction : H^0 (-9977) + e_aq^-1 (-4413) -> OH^-1 (-11681) + H_2^0 (-11682)
+At time : 72.1 ps Reaction : OH^0 (-9877) + H^0 (-9058) -> No product
+At time : 72.1 ps Reaction : OH^0 (-9395) + OH^0 (-7376) -> H2O2^0 (-11683)
+At time : 72.1 ps Reaction : OH^0 (-6718) + OH^0 (-8429) -> H2O2^0 (-11684)
+At time : 72.1 ps Reaction : OH^-1 (-11681) + H3O^1 (-8445) -> No product
+At time : 73.1 ps Reaction : OH^0 (-10157) + OH^0 (-10168) -> H2O2^0 (-11685)
+At time : 74.1 ps Reaction : OH^0 (-10935) + OH^0 (-11207) -> H2O2^0 (-11686)
+At time : 74.1 ps Reaction : OH^0 (-9850) + OH^0 (-9845) -> H2O2^0 (-11687)
+At time : 74.1 ps Reaction : OH^0 (-8066) + OH^0 (-8068) -> H2O2^0 (-11688)
+At time : 75.1 ps Reaction : OH^0 (-10412) + OH^0 (-10220) -> H2O2^0 (-11689)
+At time : 75.1 ps Reaction : e_aq^-1 (-4568) + OH^0 (-9079) -> OH^-1 (-11690)
+At time : 75.1 ps Reaction : H3O^1 (-6179) + OH^-1 (-11690) -> No product
+At time : 76.1 ps Reaction : H^0 (-10774) + OH^0 (-6754) -> No product
+At time : 76.1 ps Reaction : OH^0 (-10374) + OH^0 (-9099) -> H2O2^0 (-11691)
+At time : 76.1 ps Reaction : OH^0 (-9751) + OH^0 (-6690) -> H2O2^0 (-11692)
+At time : 76.1 ps Reaction : OH^0 (-6168) + OH^0 (-7034) -> H2O2^0 (-11693)
+At time : 77.1 ps Reaction : H^0 (-11347) + OH^0 (-7186) -> No product
+At time : 77.1 ps Reaction : OH^0 (-11203) + OH^0 (-7492) -> H2O2^0 (-11694)
+At time : 77.1 ps Reaction : e_aq^-1 (-26) + OH^0 (-10337) -> OH^-1 (-11695)
+At time : 77.1 ps Reaction : OH^0 (-9399) + OH^0 (-9113) -> H2O2^0 (-11696)
+At time : 77.1 ps Reaction : OH^0 (-7910) + OH^0 (-7912) -> H2O2^0 (-11697)
+At time : 77.1 ps Reaction : OH^0 (-7218) + OH^0 (-7220) -> H2O2^0 (-11698)
+At time : 78.1 ps Reaction : OH^0 (-10740) + H^0 (-11651) -> No product
+At time : 78.1 ps Reaction : OH^0 (-11222) + OH^0 (-6468) -> H2O2^0 (-11699)
+At time : 78.1 ps Reaction : OH^0 (-9807) + H^0 (-8994) -> No product
+At time : 78.1 ps Reaction : e_aq^-1 (-5397) + OH^0 (-7430) -> OH^-1 (-11700)
+At time : 79.1 ps Reaction : OH^-1 (-11700) + H3O^1 (-7429) -> No product
+At time : 79.1 ps Reaction : OH^0 (-11113) + OH^0 (-7268) -> H2O2^0 (-11701)
+At time : 80.1 ps Reaction : H3O^1 (-10952) + e_aq^-1 (-1247) -> H^0 (-11702)
+At time : 80.1 ps Reaction : H3O^1 (-10235) + OH^-1 (-5726) -> No product
+At time : 81.1 ps Reaction : e_aq^-1 (-3569) + OH^0 (-6302) -> OH^-1 (-11703)
+At time : 81.1 ps Reaction : OH^-1 (-11703) + H3O^1 (-6299) -> No product
+At time : 82.1 ps Reaction : H^0 (-10356) + OH^0 (-10357) -> No product
+At time : 83.1 ps Reaction : H^0 (-9918) + OH^0 (-7914) -> No product
+At time : 84.1 ps Reaction : OH^0 (-11103) + OH^0 (-7450) -> H2O2^0 (-11704)
+At time : 84.1 ps Reaction : H^0 (-9172) + OH^0 (-10609) -> No product
+At time : 84.1 ps Reaction : e_aq^-1 (-3107) + H3O^1 (-6315) -> H^0 (-11705)
+At time : 85.1 ps Reaction : OH^0 (-11084) + OH^0 (-7462) -> H2O2^0 (-11706)
+At time : 86.1 ps Reaction : OH^0 (-10130) + OH^0 (-7084) -> H2O2^0 (-11707)
+At time : 86.1 ps Reaction : H^0 (-9761) + OH^0 (-7842) -> No product
+At time : 88.1 ps Reaction : H^0 (-9965) + e_aq^-1 (-1640) -> OH^-1 (-11708) + H_2^0 (-11709)
+At time : 88.1 ps Reaction : H^0 (-9633) + OH^0 (-6510) -> No product
+At time : 88.1 ps Reaction : H^0 (-9382) + H^0 (-9106) -> H_2^0 (-11710)
+At time : 88.1 ps Reaction : OH^0 (-8945) + OH^0 (-9105) -> H2O2^0 (-11711)
+At time : 88.1 ps Reaction : OH^0 (-6872) + OH^0 (-8531) -> H2O2^0 (-11712)
+At time : 88.1 ps Reaction : OH^0 (-6534) + OH^0 (-8423) -> H2O2^0 (-11713)
+At time : 89.1 ps Reaction : OH^0 (-8807) + OH^0 (-9055) -> H2O2^0 (-11714)
+At time : 89.1 ps Reaction : e_aq^-1 (-2041) + e_aq^-1 (-4111) -> OH^-1 (-11715) + OH^-1 (-11716) + H_2^0 (-11717)
+At time : 90.1 ps Reaction : OH^0 (-9906) + H^0 (-9891) -> No product
+At time : 91.1 ps Reaction : OH^-1 (-11632) + H3O^1 (-8529) -> No product
+At time : 91.1 ps Reaction : H^0 (-9444) + OH^0 (-10854) -> No product
+At time : 92.1 ps Reaction : OH^0 (-9531) + OH^0 (-6328) -> H2O2^0 (-11718)
+At time : 93.1 ps Reaction : H3O^1 (-6001) + OH^-1 (-11708) -> No product
+At time : 93.1 ps Reaction : OH^0 (-7258) + OH^0 (-7444) -> H2O2^0 (-11719)
+At time : 94.1 ps Reaction : OH^-1 (-11608) + H3O^1 (-7671) -> No product
+At time : 95.1 ps Reaction : OH^0 (-9881) + H^0 (-9882) -> No product
+At time : 95.1 ps Reaction : OH^0 (-7478) + OH^0 (-8130) -> H2O2^0 (-11720)
+At time : 96.1 ps Reaction : OH^0 (-10077) + OH^0 (-5842) -> H2O2^0 (-11721)
+At time : 96.1 ps Reaction : H^0 (-9424) + OH^0 (-8618) -> No product
+At time : 96.1 ps Reaction : OH^0 (-6306) + OH^0 (-7724) -> H2O2^0 (-11722)
+At time : 97.1 ps Reaction : OH^0 (-11080) + H^0 (-11081) -> No product
+At time : 97.1 ps Reaction : H^0 (-9451) + OH^0 (-7788) -> No product
+At time : 97.1 ps Reaction : OH^0 (-9152) + OH^0 (-6114) -> H2O2^0 (-11723)
+At time : 97.1 ps Reaction : e_aq^-1 (-189) + H3O^1 (-8279) -> H^0 (-11724)
+At time : 98.1 ps Reaction : OH^0 (-9911) + H^0 (-9914) -> No product
+At time : 98.1 ps Reaction : OH^0 (-9569) + H^0 (-9570) -> No product
+At time : 98.1 ps Reaction : OH^0 (-6500) + OH^0 (-7772) -> H2O2^0 (-11725)
+At time : 99.1 ps Reaction : OH^0 (-10515) + OH^0 (-9071) -> H2O2^0 (-11726)
+At time : 100.1 ps Reaction : OH^0 (-10564) + OH^0 (-9860) -> H2O2^0 (-11727)
+At time : 100.1 ps Reaction : OH^0 (-9553) + OH^0 (-6372) -> H2O2^0 (-11728)
+At time : 100.1 ps Reaction : e_aq^-1 (-5607) + H3O^1 (-7387) -> H^0 (-11729)
+At time : 101.1 ps Reaction : OH^-1 (-11695) + H3O^1 (-8327) -> No product
+At time : 101.1 ps Reaction : OH^0 (-10656) + OH^0 (-10662) -> H2O2^0 (-11730)
+At time : 101.1 ps Reaction : H^0 (-9487) + OH^0 (-5880) -> No product
+At time : 101.1 ps Reaction : OH^0 (-8723) + H^0 (-8986) -> No product
+At time : 111.1 ps Reaction : OH^0 (-11328) + OH^0 (-10921) -> H2O2^0 (-11731)
+At time : 111.1 ps Reaction : OH^0 (-11314) + H^0 (-9060) -> No product
+At time : 111.1 ps Reaction : H^0 (-11294) + e_aq^-1 (-3342) -> OH^-1 (-11732) + H_2^0 (-11733)
+At time : 111.1 ps Reaction : OH^0 (-11183) + OH^0 (-5852) -> H2O2^0 (-11734)
+At time : 111.1 ps Reaction : OH^0 (-11031) + H^0 (-9339) -> No product
+At time : 111.1 ps Reaction : H^0 (-10827) + OH^0 (-6866) -> No product
+At time : 111.1 ps Reaction : OH^0 (-9990) + e_aq^-1 (-1561) -> OH^-1 (-11735)
+At time : 111.1 ps Reaction : H^0 (-9875) + H^0 (-8990) -> H_2^0 (-11736)
+At time : 111.1 ps Reaction : OH^0 (-6386) + OH^0 (-7742) -> H2O2^0 (-11737)
+At time : 111.1 ps Reaction : e_aq^-1 (-3544) + H3O^1 (-7705) -> H^0 (-11738)
+At time : 121.1 ps Reaction : OH^-1 (-11601) + H3O^1 (-6381) -> No product
+At time : 121.1 ps Reaction : OH^0 (-10950) + e_aq^-1 (-4717) -> OH^-1 (-11739)
+At time : 121.1 ps Reaction : OH^0 (-10796) + OH^0 (-9901) -> H2O2^0 (-11740)
+At time : 121.1 ps Reaction : H^0 (-10234) + OH^0 (-8208) -> No product
+At time : 121.1 ps Reaction : e_aq^-1 (-5293) + H^0 (-10224) -> OH^-1 (-11741) + H_2^0 (-11742)
+At time : 121.1 ps Reaction : H^0 (-9959) + OH^0 (-9292) -> No product
+At time : 121.1 ps Reaction : H^0 (-9355) + OH^0 (-8188) -> No product
+At time : 121.1 ps Reaction : OH^0 (-9256) + OH^0 (-7838) -> H2O2^0 (-11743)
+At time : 121.1 ps Reaction : OH^0 (-8438) + H^0 (-9056) -> No product
+At time : 121.1 ps Reaction : e_aq^-1 (-1450) + H3O^1 (-8451) -> H^0 (-11744)
+At time : 121.1 ps Reaction : OH^0 (-7244) + OH^0 (-8399) -> H2O2^0 (-11745)
+At time : 121.1 ps Reaction : OH^0 (-6960) + OH^0 (-7968) -> H2O2^0 (-11746)
+At time : 121.1 ps Reaction : e_aq^-1 (-5706) + H3O^1 (-7377) -> H^0 (-11747)
+At time : 121.1 ps Reaction : OH^0 (-6190) + OH^0 (-6924) -> H2O2^0 (-11748)
+At time : 121.1 ps Reaction : e_aq^-1 (-3101) + H3O^1 (-6325) -> H^0 (-11749)
+At time : 121.1 ps Reaction : H3O^1 (-7251) + OH^-1 (-11741) -> No product
+At time : 121.1 ps Reaction : OH^0 (-10691) + OH^0 (-10692) -> H2O2^0 (-11750)
+At time : 131.1 ps Reaction : H3O^1 (-6003) + OH^-1 (-11642) -> No product
+At time : 131.1 ps Reaction : H^0 (-11306) + OH^0 (-8351) -> No product
+At time : 131.1 ps Reaction : e_aq^-1 (-97) + H3O^1 (-10321) -> H^0 (-11751)
+At time : 131.1 ps Reaction : OH^0 (-10256) + OH^0 (-8230) -> H2O2^0 (-11752)
+At time : 131.1 ps Reaction : e_aq^-1 (-925) + OH^0 (-10148) -> OH^-1 (-11753)
+At time : 131.1 ps Reaction : OH^0 (-10025) + OH^0 (-6012) -> H2O2^0 (-11754)
+At time : 131.1 ps Reaction : H^0 (-9844) + OH^0 (-9839) -> No product
+At time : 131.1 ps Reaction : OH^0 (-9762) + OH^0 (-9255) -> H2O2^0 (-11755)
+At time : 131.1 ps Reaction : OH^0 (-9571) + OH^0 (-6412) -> H2O2^0 (-11756)
+At time : 131.1 ps Reaction : OH^0 (-9206) + H^0 (-9564) -> No product
+At time : 131.1 ps Reaction : H^0 (-9528) + OH^0 (-6308) -> No product
+At time : 131.1 ps Reaction : OH^0 (-7344) + OH^0 (-8948) -> H2O2^0 (-11757)
+At time : 131.1 ps Reaction : OH^0 (-7686) + OH^0 (-7688) -> H2O2^0 (-11758)
+At time : 131.1 ps Reaction : e_aq^-1 (-5498) + OH^0 (-7412) -> OH^-1 (-11759)
+At time : 131.1 ps Reaction : OH^0 (-6068) + OH^0 (-7180) -> H2O2^0 (-11760)
+At time : 131.1 ps Reaction : OH^0 (-6712) + OH^0 (-6714) -> H2O2^0 (-11761)
+At time : 131.1 ps Reaction : OH^-1 (-11759) + H3O^1 (-6129) -> No product
+At time : 131.1 ps Reaction : H3O^1 (-6049) + OH^-1 (-11753) -> No product
+At time : 141.1 ps Reaction : H3O^1 (-7019) + OH^-1 (-11739) -> No product
+At time : 141.1 ps Reaction : H^0 (-10786) + H^0 (-11240) -> H_2^0 (-11762)
+At time : 141.1 ps Reaction : H^0 (-10792) + OH^0 (-9059) -> No product
+At time : 141.1 ps Reaction : OH^0 (-10612) + OH^0 (-7680) -> H2O2^0 (-11763)
+At time : 141.1 ps Reaction : H^0 (-10479) + e_aq^-1 (-4856) -> OH^-1 (-11764) + H_2^0 (-11765)
+At time : 141.1 ps Reaction : OH^0 (-10312) + H^0 (-9408) -> No product
+At time : 141.1 ps Reaction : H^0 (-10101) + OH^0 (-8026) -> No product
+At time : 141.1 ps Reaction : OH^0 (-10060) + OH^0 (-7000) -> H2O2^0 (-11766)
+At time : 141.1 ps Reaction : OH^0 (-9785) + OH^0 (-7848) -> H2O2^0 (-11767)
+At time : 141.1 ps Reaction : OH^0 (-9683) + OH^0 (-9689) -> H2O2^0 (-11768)
+At time : 141.1 ps Reaction : OH^0 (-7470) + OH^0 (-8965) -> H2O2^0 (-11769)
+At time : 141.1 ps Reaction : OH^0 (-7996) + OH^0 (-8381) -> H2O2^0 (-11770)
+At time : 141.1 ps Reaction : OH^0 (-7226) + OH^0 (-7228) -> H2O2^0 (-11771)
+At time : 141.1 ps Reaction : e_aq^-1 (-4834) + H3O^1 (-7075) -> H^0 (-11772)
+At time : 141.1 ps Reaction : e_aq^-1 (-4748) + H3O^1 (-7041) -> H^0 (-11773)
+At time : 141.1 ps Reaction : OH^0 (-6824) + OH^0 (-6828) -> H2O2^0 (-11774)
+At time : 141.1 ps Reaction : OH^-1 (-5783) + H3O^1 (-6367) -> No product
+At time : 141.1 ps Reaction : e_aq^-1 (-3295) + OH^0 (-6238) -> OH^-1 (-11775)
+At time : 141.1 ps Reaction : OH^0 (-10172) + e_aq^-1 (-5056) -> OH^-1 (-11776)
+At time : 141.1 ps Reaction : OH^-1 (-11776) + H3O^1 (-8111) -> No product
+At time : 151.1 ps Reaction : H3O^1 (-9984) + OH^-1 (-11735) -> No product
+At time : 151.1 ps Reaction : OH^0 (-11251) + OH^0 (-7124) -> H2O2^0 (-11777)
+At time : 151.1 ps Reaction : OH^0 (-11105) + OH^0 (-8405) -> H2O2^0 (-11778)
+At time : 151.1 ps Reaction : OH^0 (-10929) + OH^0 (-8339) -> H2O2^0 (-11779)
+At time : 151.1 ps Reaction : OH^0 (-10416) + OH^0 (-6144) -> H2O2^0 (-11780)
+At time : 151.1 ps Reaction : H^0 (-10310) + OH^0 (-10308) -> No product
+At time : 151.1 ps Reaction : e_aq^-1 (-5258) + OH^0 (-10228) -> OH^-1 (-11781)
+At time : 151.1 ps Reaction : OH^0 (-9472) + OH^0 (-8735) -> H2O2^0 (-11782)
+At time : 151.1 ps Reaction : OH^0 (-9441) + OH^0 (-7574) -> H2O2^0 (-11783)
+At time : 151.1 ps Reaction : e_aq^-1 (-82) + H3O^1 (-8643) -> H^0 (-11784)
+At time : 151.1 ps Reaction : e_aq^-1 (-4045) + OH^0 (-7632) -> OH^-1 (-11785)
+At time : 151.1 ps Reaction : OH^0 (-6420) + OH^0 (-6426) -> H2O2^0 (-11786)
+At time : 151.1 ps Reaction : OH^-1 (-11781) + H3O^1 (-8913) -> No product
+At time : 151.1 ps Reaction : H^0 (-9975) + OH^0 (-8846) -> No product
+At time : 161.1 ps Reaction : OH^0 (-9146) + H^0 (-11343) -> No product
+At time : 161.1 ps Reaction : OH^0 (-11285) + OH^0 (-6610) -> H2O2^0 (-11787)
+At time : 161.1 ps Reaction : H^0 (-11160) + OH^0 (-8282) -> No product
+At time : 161.1 ps Reaction : OH^0 (-10618) + e_aq^-1 (-3489) -> OH^-1 (-11788)
+At time : 161.1 ps Reaction : OH^0 (-10324) + H^0 (-9116) -> No product
+At time : 161.1 ps Reaction : OH^0 (-10268) + OH^0 (-7274) -> H2O2^0 (-11789)
+At time : 161.1 ps Reaction : H^0 (-10036) + OH^0 (-6966) -> No product
+At time : 161.1 ps Reaction : OH^0 (-9963) + e_aq^-1 (-1623) -> OH^-1 (-11790)
+At time : 161.1 ps Reaction : OH^0 (-9647) + OH^0 (-6546) -> H2O2^0 (-11791)
+At time : 161.1 ps Reaction : OH^0 (-6608) + OH^0 (-9001) -> H2O2^0 (-11792)
+At time : 161.1 ps Reaction : OH^0 (-7050) + OH^0 (-8870) -> H2O2^0 (-11793)
+At time : 161.1 ps Reaction : e_aq^-1 (-5300) + H3O^1 (-8409) -> H^0 (-11794)
+At time : 161.1 ps Reaction : e_aq^-1 (-1170) + H3O^1 (-8023) -> H^0 (-11795)
+At time : 161.1 ps Reaction : e_aq^-1 (-3143) + H3O^1 (-6291) -> H^0 (-11796)
+At time : 161.1 ps Reaction : e_aq^-1 (-5564) + OH^0 (-5814) -> OH^-1 (-11797)
+At time : 161.1 ps Reaction : e_aq^-1 (-5611) + OH^0 (-5715) -> OH^-1 (-11798)
+At time : 161.1 ps Reaction : OH^-1 (-11790) + H3O^1 (-7583) -> No product
+At time : 161.1 ps Reaction : OH^0 (-11045) + OH^0 (-8132) -> H2O2^0 (-11799)
+At time : 171.1 ps Reaction : H3O^1 (-6105) + OH^-1 (-11797) -> No product
+At time : 171.1 ps Reaction : H^0 (-11784) + OH^0 (-8642) -> No product
+At time : 171.1 ps Reaction : OH^0 (-11121) + OH^0 (-8240) -> H2O2^0 (-11800)
+At time : 171.1 ps Reaction : OH^0 (-10798) + H^0 (-9908) -> No product
+At time : 171.1 ps Reaction : OH^0 (-10581) + H^0 (-9265) -> No product
+At time : 171.1 ps Reaction : OH^0 (-9836) + OH^0 (-6782) -> H2O2^0 (-11801)
+At time : 171.1 ps Reaction : OH^0 (-9718) + H^0 (-9716) -> No product
+At time : 171.1 ps Reaction : OH^0 (-6082) + OH^0 (-8212) -> H2O2^0 (-11802)
+At time : 171.1 ps Reaction : OH^0 (-8000) + OH^0 (-8006) -> H2O2^0 (-11803)
+At time : 171.1 ps Reaction : OH^0 (-6170) + OH^0 (-7018) -> H2O2^0 (-11804)
+At time : 171.1 ps Reaction : OH^0 (-6396) + OH^0 (-6404) -> H2O2^0 (-11805)
+At time : 181.1 ps Reaction : OH^0 (-11340) + OH^0 (-7448) -> H2O2^0 (-11806)
+At time : 181.1 ps Reaction : e_aq^-1 (-815) + H^0 (-11046) -> OH^-1 (-11807) + H_2^0 (-11808)
+At time : 181.1 ps Reaction : OH^0 (-10833) + OH^0 (-9286) -> H2O2^0 (-11809)
+At time : 181.1 ps Reaction : OH^0 (-9952) + e_aq^-1 (-4370) -> OH^-1 (-11810)
+At time : 181.1 ps Reaction : H^0 (-9280) + OH^0 (-6826) -> No product
+At time : 181.1 ps Reaction : H^0 (-9151) + OH^0 (-7402) -> No product
+At time : 181.1 ps Reaction : e_aq^-1 (-4368) + H^0 (-9070) -> OH^-1 (-11811) + H_2^0 (-11812)
+At time : 181.1 ps Reaction : OH^0 (-6276) + OH^0 (-9019) -> H2O2^0 (-11813)
+At time : 181.1 ps Reaction : OH^0 (-7494) + OH^0 (-8896) -> H2O2^0 (-11814)
+At time : 181.1 ps Reaction : e_aq^-1 (-4898) + OH^0 (-8084) -> OH^-1 (-11815)
+At time : 181.1 ps Reaction : e_aq^-1 (-1461) + OH^0 (-6952) -> OH^-1 (-11816)
+At time : 181.1 ps Reaction : e_aq^-1 (-5570) + OH^0 (-6122) -> OH^-1 (-11817)
+At time : 181.1 ps Reaction : OH^-1 (-11815) + H3O^1 (-7111) -> No product
+At time : 181.1 ps Reaction : H3O^1 (-7923) + OH^-1 (-11810) -> No product
+At time : 181.1 ps Reaction : H^0 (-9726) + H^0 (-10721) -> H_2^0 (-11818)
+At time : 181.1 ps Reaction : OH^0 (-9702) + OH^0 (-9697) -> H2O2^0 (-11819)
+At time : 191.1 ps Reaction : OH^-1 (-11817) + H3O^1 (-10307) -> No product
+At time : 191.1 ps Reaction : OH^0 (-10926) + H^0 (-9078) -> No product
+At time : 191.1 ps Reaction : OH^0 (-7250) + OH^0 (-8194) -> H2O2^0 (-11820)
+At time : 191.1 ps Reaction : OH^0 (-6408) + OH^0 (-7744) -> H2O2^0 (-11821)
+At time : 191.1 ps Reaction : OH^0 (-5900) + OH^0 (-7738) -> H2O2^0 (-11822)
+At time : 191.1 ps Reaction : e_aq^-1 (-5666) + e_aq^-1 (-87) -> OH^-1 (-11823) + OH^-1 (-11824) + H_2^0 (-11825)
+At time : 191.1 ps Reaction : H3O^1 (-6883) + OH^-1 (-11811) -> No product
+At time : 201.1 ps Reaction : H3O^1 (-10992) + OH^-1 (-11764) -> No product
+At time : 201.1 ps Reaction : e_aq^-1 (-1504) + H2O2^0 (-11553) -> OH^-1 (-11826) + OH^0 (-11827)
+At time : 201.1 ps Reaction : OH^0 (-11132) + OH^0 (-7292) -> H2O2^0 (-11828)
+At time : 201.1 ps Reaction : e_aq^-1 (-2464) + H3O^1 (-10718) -> H^0 (-11829)
+At time : 201.1 ps Reaction : OH^0 (-10406) + OH^0 (-7238) -> H2O2^0 (-11830)
+At time : 201.1 ps Reaction : OH^0 (-9442) + e_aq^-1 (-4477) -> OH^-1 (-11831)
+At time : 201.1 ps Reaction : H^0 (-9020) + H^0 (-9022) -> H_2^0 (-11832)
+At time : 201.1 ps Reaction : e_aq^-1 (-4376) + H3O^1 (-8523) -> H^0 (-11833)
+At time : 201.1 ps Reaction : e_aq^-1 (-1752) + OH^0 (-5799) -> OH^-1 (-11834)
+At time : 201.1 ps Reaction : OH^0 (-11154) + OH^0 (-7322) -> H2O2^0 (-11835)
+At time : 211.1 ps Reaction : H3O^1 (-5873) + OH^-1 (-11732) -> No product
+At time : 211.1 ps Reaction : H^0 (-11301) + OH^0 (-5904) -> No product
+At time : 211.1 ps Reaction : OH^0 (-10664) + OH^0 (-9011) -> H2O2^0 (-11836)
+At time : 211.1 ps Reaction : OH^0 (-9893) + OH^0 (-10554) -> H2O2^0 (-11837)
+At time : 211.1 ps Reaction : OH^0 (-10332) + OH^0 (-9391) -> H2O2^0 (-11838)
+At time : 211.1 ps Reaction : OH^0 (-10055) + OH^0 (-10058) -> H2O2^0 (-11839)
+At time : 211.1 ps Reaction : OH^0 (-9594) + OH^0 (-6450) -> H2O2^0 (-11840)
+At time : 211.1 ps Reaction : OH^0 (-5760) + OH^0 (-8798) -> H2O2^0 (-11841)
+At time : 211.1 ps Reaction : e_aq^-1 (-4545) + H3O^1 (-8454) -> H^0 (-11842)
+At time : 211.1 ps Reaction : OH^0 (-7072) + OH^0 (-8056) -> H2O2^0 (-11843)
+At time : 211.1 ps Reaction : OH^0 (-7650) + OH^0 (-7800) -> H2O2^0 (-11844)
+At time : 211.1 ps Reaction : e_aq^-1 (-5010) + OH^0 (-7496) -> OH^-1 (-11845)
+At time : 221.1 ps Reaction : OH^0 (-10677) + OH^0 (-9612) -> H2O2^0 (-11846)
+At time : 221.1 ps Reaction : OH^0 (-9617) + OH^0 (-6486) -> H2O2^0 (-11847)
+At time : 221.1 ps Reaction : OH^0 (-9374) + OH^0 (-6096) -> H2O2^0 (-11848)
+At time : 221.1 ps Reaction : e_aq^-1 (-4531) + OH^0 (-6956) -> OH^-1 (-11849)
+At time : 221.1 ps Reaction : e_aq^-1 (-3495) + H3O^1 (-5875) -> H^0 (-11850)
+At time : 221.1 ps Reaction : e_aq^-1 (-4853) + e_aq^-1 (-4859) -> OH^-1 (-11851) + OH^-1 (-11852) + H_2^0 (-11853)
+At time : 231.1 ps Reaction : H3O^1 (-11041) + OH^-1 (-11807) -> No product
+At time : 231.1 ps Reaction : OH^-1 (-11785) + H3O^1 (-7631) -> No product
+At time : 231.1 ps Reaction : OH^0 (-11197) + OH^0 (-9503) -> H2O2^0 (-11854)
+At time : 231.1 ps Reaction : OH^0 (-10955) + OH^0 (-8697) -> H2O2^0 (-11855)
+At time : 231.1 ps Reaction : OH^0 (-10904) + OH^0 (-10023) -> H2O2^0 (-11856)
+At time : 231.1 ps Reaction : OH^0 (-10841) + OH^0 (-8831) -> H2O2^0 (-11857)
+At time : 231.1 ps Reaction : H^0 (-9118) + OH^0 (-10621) -> No product
+At time : 231.1 ps Reaction : OH^0 (-10174) + OH^0 (-8122) -> H2O2^0 (-11858)
+At time : 231.1 ps Reaction : e_aq^-1 (-890) + OH^0 (-10151) -> OH^-1 (-11859)
+At time : 231.1 ps Reaction : OH^0 (-9973) + OH^0 (-7580) -> H2O2^0 (-11860)
+At time : 231.1 ps Reaction : OH^0 (-9593) + OH^0 (-6440) -> H2O2^0 (-11861)
+At time : 231.1 ps Reaction : H^0 (-9197) + e_aq^-1 (-3098) -> OH^-1 (-11862) + H_2^0 (-11863)
+At time : 231.1 ps Reaction : OH^0 (-9081) + H^0 (-9082) -> No product
+At time : 231.1 ps Reaction : OH^0 (-7990) + OH^0 (-8865) -> H2O2^0 (-11864)
+At time : 231.1 ps Reaction : e_aq^-1 (-5284) + H3O^1 (-8205) -> H^0 (-11865)
+At time : 231.1 ps Reaction : OH^-1 (-5744) + H3O^1 (-7551) -> No product
+At time : 231.1 ps Reaction : OH^0 (-6038) + OH^0 (-7078) -> H2O2^0 (-11866)
+At time : 231.1 ps Reaction : OH^0 (-9365) + OH^0 (-8961) -> H2O2^0 (-11867)
+At time : 241.1 ps Reaction : H^0 (-10344) + OH^0 (-7372) -> No product
+At time : 241.1 ps Reaction : H^0 (-9873) + OH^0 (-8804) -> No product
+At time : 241.1 ps Reaction : OH^0 (-9827) + OH^0 (-6746) -> H2O2^0 (-11868)
+At time : 241.1 ps Reaction : OH^0 (-9527) + OH^0 (-8426) -> H2O2^0 (-11869)
+At time : 241.1 ps Reaction : OH^0 (-9342) + OH^0 (-6150) -> H2O2^0 (-11870)
+At time : 241.1 ps Reaction : OH^0 (-9299) + OH^0 (-7936) -> H2O2^0 (-11871)
+At time : 241.1 ps Reaction : OH^0 (-6776) + OH^0 (-8342) -> H2O2^0 (-11872)
+At time : 241.1 ps Reaction : OH^0 (-6312) + OH^0 (-7722) -> H2O2^0 (-11873)
+At time : 241.1 ps Reaction : OH^-1 (-11816) + H3O^1 (-7567) -> No product
+At time : 251.1 ps Reaction : OH^-1 (-11859) + H3O^1 (-6053) -> No product
+At time : 251.1 ps Reaction : H^0 (-11317) + OH^0 (-7608) -> No product
+At time : 251.1 ps Reaction : OH^0 (-11311) + H^0 (-10776) -> No product
+At time : 251.1 ps Reaction : OH^0 (-10980) + OH^0 (-10113) -> H2O2^0 (-11874)
+At time : 251.1 ps Reaction : OH^0 (-10959) + e_aq^-1 (-4692) -> OH^-1 (-11875)
+At time : 251.1 ps Reaction : e_aq^-1 (-4381) + OH^0 (-6894) -> OH^-1 (-11876)
+At time : 261.1 ps Reaction : OH^0 (-10858) + e_aq^-1 (-4394) -> OH^-1 (-11877)
+At time : 261.1 ps Reaction : H^0 (-10756) + OH^0 (-7866) -> No product
+At time : 261.1 ps Reaction : OH^0 (-10352) + OH^0 (-8296) -> H2O2^0 (-11878)
+At time : 261.1 ps Reaction : H^0 (-10296) + OH^0 (-7338) -> No product
+At time : 261.1 ps Reaction : H^0 (-9311) + H^0 (-10042) -> H_2^0 (-11879)
+At time : 261.1 ps Reaction : H^0 (-9912) + OH^0 (-7606) -> No product
+At time : 261.1 ps Reaction : OH^0 (-9672) + OH^0 (-5936) -> H2O2^0 (-11880)
+At time : 261.1 ps Reaction : H3O^1 (-9602) + e_aq^-1 (-3712) -> H^0 (-11881)
+At time : 261.1 ps Reaction : OH^0 (-9272) + OH^0 (-6770) -> H2O2^0 (-11882)
+At time : 261.1 ps Reaction : OH^0 (-5751) + OH^0 (-8849) -> H2O2^0 (-11883)
+At time : 261.1 ps Reaction : OH^0 (-8266) + OH^0 (-8667) -> H2O2^0 (-11884)
+At time : 261.1 ps Reaction : e_aq^-1 (-4346) + H3O^1 (-7915) -> H^0 (-11885)
+At time : 261.1 ps Reaction : e_aq^-1 (-4149) + OH^0 (-6788) -> OH^-1 (-11886)
+At time : 261.1 ps Reaction : e_aq^-1 (-3220) + OH^0 (-6266) -> OH^-1 (-11887)
+At time : 271.1 ps Reaction : OH^-1 (-11877) + H3O^1 (-8718) -> No product
+At time : 271.1 ps Reaction : OH^-1 (-11876) + H3O^1 (-9290) -> No product
+At time : 271.1 ps Reaction : OH^-1 (-11875) + H3O^1 (-8007) -> No product
+At time : 271.1 ps Reaction : OH^-1 (-11831) + H3O^1 (-6929) -> No product
+At time : 271.1 ps Reaction : OH^0 (-11145) + OH^0 (-6100) -> H2O2^0 (-11888)
+At time : 271.1 ps Reaction : OH^0 (-10427) + OH^0 (-8967) -> H2O2^0 (-11889)
+At time : 271.1 ps Reaction : e_aq^-1 (-5516) + OH^0 (-10363) -> OH^-1 (-11890)
+At time : 271.1 ps Reaction : H3O^1 (-10311) + OH^-1 (-5717) -> No product
+At time : 271.1 ps Reaction : OH^0 (-9721) + OH^0 (-6640) -> H2O2^0 (-11891)
+At time : 271.1 ps Reaction : OH^0 (-8465) + OH^0 (-8880) -> H2O2^0 (-11892)
+At time : 271.1 ps Reaction : OH^0 (-6554) + OH^0 (-7782) -> H2O2^0 (-11893)
+At time : 281.1 ps Reaction : OH^0 (-10497) + OH^0 (-8694) -> H2O2^0 (-11894)
+At time : 281.1 ps Reaction : H^0 (-10377) + OH^0 (-7288) -> No product
+At time : 281.1 ps Reaction : OH^0 (-10176) + OH^0 (-8110) -> H2O2^0 (-11895)
+At time : 281.1 ps Reaction : OH^0 (-9658) + OH^0 (-9654) -> H2O2^0 (-11896)
+At time : 281.1 ps Reaction : OH^-1 (-5804) + H3O^1 (-8237) -> No product
+At time : 281.1 ps Reaction : OH^0 (-8034) + OH^0 (-8036) -> H2O2^0 (-11897)
+At time : 291.1 ps Reaction : H3O^1 (-11161) + OH^-1 (-11890) -> No product
+At time : 291.1 ps Reaction : H3O^1 (-7963) + OH^-1 (-11826) -> No product
+At time : 291.1 ps Reaction : H^0 (-10714) + OH^0 (-6624) -> No product
+At time : 291.1 ps Reaction : H^0 (-10582) + e_aq^-1 (-4033) -> OH^-1 (-11898) + H_2^0 (-11899)
+At time : 291.1 ps Reaction : H^0 (-9722) + H^0 (-9000) -> H_2^0 (-11900)
+At time : 291.1 ps Reaction : OH^0 (-9691) + OH^0 (-6606) -> H2O2^0 (-11901)
+At time : 291.1 ps Reaction : OH^0 (-9284) + OH^0 (-7918) -> H2O2^0 (-11902)
+At time : 291.1 ps Reaction : e_aq^-1 (-4156) + H3O^1 (-7617) -> H^0 (-11903)
+At time : 291.1 ps Reaction : e_aq^-1 (-601) + H3O^1 (-6069) -> H^0 (-11904)
+At time : 301.1 ps Reaction : H3O^1 (-10642) + OH^-1 (-11862) -> No product
+At time : 301.1 ps Reaction : H^0 (-11308) + H^0 (-9643) -> H_2^0 (-11905)
+At time : 301.1 ps Reaction : e_aq^-1 (-1832) + OH^0 (-10805) -> OH^-1 (-11906)
+At time : 301.1 ps Reaction : OH^0 (-10005) + e_aq^-1 (-4481) -> OH^-1 (-11907)
+At time : 301.1 ps Reaction : H^0 (-9353) + OH^0 (-7168) -> No product
+At time : 301.1 ps Reaction : H^0 (-9263) + e_aq^-1 (-4023) -> OH^-1 (-11908) + H_2^0 (-11909)
+At time : 301.1 ps Reaction : H^0 (-9239) + OH^0 (-7794) -> No product
+At time : 301.1 ps Reaction : OH^0 (-8094) + OH^0 (-8690) -> H2O2^0 (-11910)
+At time : 301.1 ps Reaction : OH^0 (-7898) + OH^0 (-7900) -> H2O2^0 (-11911)
+At time : 301.1 ps Reaction : e_aq^-1 (-4103) + OH^0 (-6762) -> OH^-1 (-11912)
+At time : 301.1 ps Reaction : e_aq^-1 (-3753) + OH^0 (-6506) -> OH^-1 (-11913)
+At time : 301.1 ps Reaction : e_aq^-1 (-484) + H3O^1 (-5855) -> H^0 (-11914)
+At time : 301.1 ps Reaction : H3O^1 (-6185) + OH^-1 (-11907) -> No product
+At time : 301.1 ps Reaction : OH^0 (-9926) + OH^0 (-9931) -> H2O2^0 (-11915)
+At time : 311.1 ps Reaction : H3O^1 (-11020) + e_aq^-1 (-4950) -> H^0 (-11916)
+At time : 311.1 ps Reaction : OH^0 (-10932) + OH^0 (-6178) -> H2O2^0 (-11917)
+At time : 311.1 ps Reaction : H^0 (-9971) + OH^0 (-10872) -> No product
+At time : 311.1 ps Reaction : H^0 (-9997) + OH^0 (-6932) -> No product
+At time : 311.1 ps Reaction : OH^0 (-9915) + OH^0 (-8360) -> H2O2^0 (-11918)
+At time : 311.1 ps Reaction : OH^0 (-9648) + OH^0 (-7658) -> H2O2^0 (-11919)
+At time : 311.1 ps Reaction : OH^0 (-9326) + H^0 (-9422) -> No product
+At time : 311.1 ps Reaction : OH^0 (-9370) + H^0 (-9367) -> No product
+At time : 311.1 ps Reaction : OH^0 (-7266) + OH^0 (-8963) -> H2O2^0 (-11920)
+At time : 311.1 ps Reaction : OH^0 (-6902) + OH^0 (-7932) -> H2O2^0 (-11921)
+At time : 311.1 ps Reaction : OH^0 (-7056) + OH^0 (-7520) -> H2O2^0 (-11922)
+At time : 311.1 ps Reaction : e_aq^-1 (-2685) + OH^0 (-6512) -> OH^-1 (-11923)
+At time : 311.1 ps Reaction : e_aq^-1 (-2887) + H3O^1 (-5823) -> H^0 (-11924)
+At time : 321.1 ps Reaction : H^0 (-11796) + e_aq^-1 (-3158) -> OH^-1 (-11925) + H_2^0 (-11926)
+At time : 321.1 ps Reaction : H^0 (-11146) + OH^0 (-8260) -> No product
+At time : 321.1 ps Reaction : H^0 (-9390) + OH^0 (-7390) -> No product
+At time : 321.1 ps Reaction : OH^0 (-7352) + OH^0 (-8957) -> H2O2^0 (-11927)
+At time : 321.1 ps Reaction : OH^0 (-10931) + e_aq^-1 (-4603) -> OH^-1 (-11928)
+At time : 321.1 ps Reaction : H^0 (-10924) + OH^0 (-10041) -> No product
+At time : 321.1 ps Reaction : OH^0 (-10473) + OH^0 (-6156) -> H2O2^0 (-11929)
+At time : 321.1 ps Reaction : H3O^1 (-10057) + OH^-1 (-11928) -> No product
+At time : 331.1 ps Reaction : H3O^1 (-6861) + OH^-1 (-11834) -> No product
+At time : 331.1 ps Reaction : H^0 (-11067) + e_aq^-1 (-5129) -> OH^-1 (-11930) + H_2^0 (-11931)
+At time : 331.1 ps Reaction : OH^0 (-9964) + H^0 (-10856) -> No product
+At time : 331.1 ps Reaction : OH^0 (-10527) + OH^0 (-7586) -> H2O2^0 (-11932)
+At time : 331.1 ps Reaction : H^0 (-10273) + OH^0 (-7300) -> No product
+At time : 331.1 ps Reaction : OH^0 (-9869) + OH^0 (-6810) -> H2O2^0 (-11933)
+At time : 331.1 ps Reaction : H3O^1 (-9694) + OH^-1 (-5777) -> No product
+At time : 331.1 ps Reaction : OH^0 (-7032) + OH^0 (-7536) -> H2O2^0 (-11934)
+At time : 341.1 ps Reaction : e_aq^-1 (-596) + OH^0 (-11271) -> OH^-1 (-11935)
+At time : 341.1 ps Reaction : OH^0 (-10815) + OH^0 (-6858) -> H2O2^0 (-11936)
+At time : 341.1 ps Reaction : OH^0 (-10279) + OH^0 (-8959) -> H2O2^0 (-11937)
+At time : 341.1 ps Reaction : H^0 (-10083) + OH^0 (-7010) -> No product
+At time : 341.1 ps Reaction : OH^0 (-6110) + OH^0 (-8956) -> H2O2^0 (-11938)
+At time : 341.1 ps Reaction : OH^0 (-7522) + OH^0 (-8695) -> H2O2^0 (-11939)
+At time : 341.1 ps Reaction : H3O^1 (-11270) + OH^-1 (-11935) -> No product
+At time : 341.1 ps Reaction : H3O^1 (-6497) + OH^-1 (-11923) -> No product
+At time : 341.1 ps Reaction : OH^-1 (-11912) + H3O^1 (-6761) -> No product
+At time : 341.1 ps Reaction : OH^0 (-9794) + OH^0 (-6716) -> H2O2^0 (-11940)
+At time : 351.1 ps Reaction : OH^-1 (-11886) + H3O^1 (-7621) -> No product
+At time : 351.1 ps Reaction : OH^-1 (-11798) + H3O^1 (-5851) -> No product
+At time : 351.1 ps Reaction : e_aq^-1 (-5350) + H2O2^0 (-11752) -> OH^-1 (-11941) + OH^0 (-11942)
+At time : 351.1 ps Reaction : OH^0 (-10488) + OH^0 (-8873) -> H2O2^0 (-11943)
+At time : 351.1 ps Reaction : OH^0 (-10418) + OH^0 (-10212) -> H2O2^0 (-11944)
+At time : 351.1 ps Reaction : OH^0 (-10098) + OH^0 (-8609) -> H2O2^0 (-11945)
+At time : 351.1 ps Reaction : OH^0 (-9129) + OH^0 (-7596) -> H2O2^0 (-11946)
+At time : 361.1 ps Reaction : OH^0 (-11942) + OH^0 (-5724) -> H2O2^0 (-11947)
+At time : 361.1 ps Reaction : e_aq^-1 (-4647) + H^0 (-11208) -> OH^-1 (-11948) + H_2^0 (-11949)
+At time : 361.1 ps Reaction : OH^0 (-11044) + OH^0 (-8468) -> H2O2^0 (-11950)
+At time : 361.1 ps Reaction : OH^0 (-10189) + OH^0 (-5730) -> H2O2^0 (-11951)
+At time : 361.1 ps Reaction : H^0 (-9547) + OH^0 (-6374) -> No product
+At time : 361.1 ps Reaction : OH^0 (-9262) + OH^0 (-7850) -> H2O2^0 (-11952)
+At time : 361.1 ps Reaction : OH^-1 (-5762) + H3O^1 (-8433) -> No product
+At time : 361.1 ps Reaction : e_aq^-1 (-4243) + OH^0 (-6196) -> OH^-1 (-11953)
+At time : 361.1 ps Reaction : e_aq^-1 (-4920) + e_aq^-1 (-1027) -> OH^-1 (-11954) + OH^-1 (-11955) + H_2^0 (-11956)
+At time : 361.1 ps Reaction : OH^-1 (-11941) + H3O^1 (-8925) -> No product
+At time : 371.1 ps Reaction : H^0 (-11829) + H^0 (-9728) -> H_2^0 (-11957)
+At time : 371.1 ps Reaction : H^0 (-11702) + OH^0 (-8008) -> No product
+At time : 371.1 ps Reaction : OH^0 (-9150) + OH^0 (-11177) -> H2O2^0 (-11958)
+At time : 371.1 ps Reaction : H^0 (-10900) + OH^0 (-7962) -> No product
+At time : 371.1 ps Reaction : OH^0 (-10574) + OH^0 (-10772) -> H2O2^0 (-11959)
+At time : 371.1 ps Reaction : OH^0 (-10635) + OH^0 (-10636) -> H2O2^0 (-11960)
+At time : 371.1 ps Reaction : OH^0 (-10507) + OH^0 (-8603) -> H2O2^0 (-11961)
+At time : 371.1 ps Reaction : OH^0 (-10448) + OH^0 (-7130) -> H2O2^0 (-11962)
+At time : 371.1 ps Reaction : OH^0 (-9922) + OH^0 (-5990) -> H2O2^0 (-11963)
+At time : 371.1 ps Reaction : e_aq^-1 (-2770) + H3O^1 (-9628) -> H^0 (-11964)
+At time : 371.1 ps Reaction : OH^0 (-9159) + OH^0 (-8016) -> H2O2^0 (-11965)
+At time : 371.1 ps Reaction : OH^0 (-9117) + e_aq^-1 (-8551) -> OH^-1 (-11966)
+At time : 371.1 ps Reaction : e_aq^-1 (-1242) + H3O^1 (-6175) -> H^0 (-11967)
+At time : 371.1 ps Reaction : e_aq^-1 (-4022) + e_aq^-1 (-4002) -> OH^-1 (-11968) + OH^-1 (-11969) + H_2^0 (-11970)
+At time : 381.1 ps Reaction : OH^-1 (-11966) + H3O^1 (-6241) -> No product
+At time : 381.1 ps Reaction : H^0 (-11916) + OH^0 (-6154) -> No product
+At time : 381.1 ps Reaction : OH^0 (-10277) + OH^0 (-11140) -> H2O2^0 (-11971)
+At time : 381.1 ps Reaction : H^0 (-9344) + OH^0 (-6060) -> No product
+At time : 381.1 ps Reaction : OH^0 (-7102) + OH^0 (-9085) -> H2O2^0 (-11972)
+At time : 381.1 ps Reaction : e_aq^-1 (-889) + OH^0 (-8396) -> OH^-1 (-11973)
+At time : 381.1 ps Reaction : e_aq^-1 (-5134) + H3O^1 (-8143) -> H^0 (-11974)
+At time : 381.1 ps Reaction : OH^0 (-7628) + OH^0 (-7876) -> H2O2^0 (-11975)
+At time : 381.1 ps Reaction : OH^-1 (-11969) + H3O^1 (-6707) -> No product
+At time : 391.1 ps Reaction : H^0 (-9625) + OH^0 (-11225) -> No product
+At time : 391.1 ps Reaction : OH^0 (-11131) + OH^0 (-8252) -> H2O2^0 (-11976)
+At time : 391.1 ps Reaction : H^0 (-10302) + OH^0 (-8286) -> No product
+At time : 391.1 ps Reaction : H^0 (-11048) + H^0 (-10190) -> H_2^0 (-11977)
+At time : 401.1 ps Reaction : H3O^1 (-9788) + OH^-1 (-11908) -> No product
+At time : 401.1 ps Reaction : H3O^1 (-6957) + OH^-1 (-11849) -> No product
+At time : 401.1 ps Reaction : OH^-1 (-11824) + H3O^1 (-8321) -> No product
+At time : 401.1 ps Reaction : e_aq^-1 (-5037) + H^0 (-10443) -> OH^-1 (-11978) + H_2^0 (-11979)
+At time : 401.1 ps Reaction : OH^0 (-10275) + e_aq^-1 (-5420) -> OH^-1 (-11980)
+At time : 401.1 ps Reaction : OH^0 (-9204) + OH^0 (-9552) -> H2O2^0 (-11981)
+At time : 401.1 ps Reaction : OH^0 (-9514) + OH^0 (-7714) -> H2O2^0 (-11982)
+At time : 401.1 ps Reaction : H^0 (-9160) + H^0 (-9319) -> H_2^0 (-11983)
+At time : 401.1 ps Reaction : OH^0 (-9309) + OH^0 (-6962) -> H2O2^0 (-11984)
+At time : 401.1 ps Reaction : OH^0 (-7504) + OH^0 (-8090) -> H2O2^0 (-11985)
+At time : 401.1 ps Reaction : OH^0 (-7002) + OH^0 (-7988) -> H2O2^0 (-11986)
+At time : 401.1 ps Reaction : e_aq^-1 (-5451) + H3O^1 (-7299) -> H^0 (-11987)
+At time : 401.1 ps Reaction : OH^-1 (-11925) + H3O^1 (-6287) -> No product
+At time : 411.1 ps Reaction : H^0 (-11964) + OH^0 (-6492) -> No product
+At time : 411.1 ps Reaction : OH^0 (-11172) + OH^0 (-10301) -> H2O2^0 (-11988)
+At time : 411.1 ps Reaction : OH^0 (-10780) + H^0 (-9054) -> No product
+At time : 411.1 ps Reaction : e_aq^-1 (-4072) + OH^0 (-10770) -> OH^-1 (-11989)
+At time : 411.1 ps Reaction : H^0 (-10511) + OH^0 (-6992) -> No product
+At time : 411.1 ps Reaction : OH^0 (-10465) + OH^0 (-8070) -> H2O2^0 (-11990)
+At time : 411.1 ps Reaction : OH^0 (-10144) + OH^0 (-8885) -> H2O2^0 (-11991)
+At time : 411.1 ps Reaction : e_aq^-1 (-4707) + OH^0 (-8010) -> OH^-1 (-11992)
+At time : 411.1 ps Reaction : OH^0 (-6974) + OH^0 (-7562) -> H2O2^0 (-11993)
+At time : 421.1 ps Reaction : OH^-1 (-11992) + H3O^1 (-8017) -> No product
+At time : 421.1 ps Reaction : OH^-1 (-11978) + H3O^1 (-8469) -> No product
+At time : 421.1 ps Reaction : OH^-1 (-11823) + H3O^1 (-8315) -> No product
+At time : 421.1 ps Reaction : OH^0 (-9969) + e_aq^-1 (-4401) -> OH^-1 (-11994)
+At time : 421.1 ps Reaction : OH^0 (-9739) + OH^0 (-6658) -> H2O2^0 (-11995)
+At time : 421.1 ps Reaction : OH^0 (-9406) + OH^0 (-8651) -> H2O2^0 (-11996)
+At time : 421.1 ps Reaction : e_aq^-1 (-4566) + OH^0 (-9315) -> OH^-1 (-11997)
+At time : 421.1 ps Reaction : OH^0 (-8414) + H^0 (-9108) -> No product
+At time : 421.1 ps Reaction : e_aq^-1 (-136) + H^0 (-8958) -> OH^-1 (-11998) + H_2^0 (-11999)
+At time : 421.1 ps Reaction : e_aq^-1 (-303) + OH^0 (-8672) -> OH^-1 (-12000)
+At time : 421.1 ps Reaction : OH^0 (-6620) + OH^0 (-7806) -> H2O2^0 (-12001)
+At time : 421.1 ps Reaction : OH^0 (-6134) + OH^0 (-7282) -> H2O2^0 (-12002)
+At time : 431.1 ps Reaction : H3O^1 (-7351) + OH^-1 (-11998) -> No product
+At time : 431.1 ps Reaction : OH^-1 (-11973) + H3O^1 (-7133) -> No product
+At time : 431.1 ps Reaction : H3O^1 (-6825) + OH^-1 (-11953) -> No product
+At time : 431.1 ps Reaction : OH^0 (-11162) + OH^0 (-7330) -> H2O2^0 (-12003)
+At time : 431.1 ps Reaction : H^0 (-9305) + H^0 (-10024) -> H_2^0 (-12004)
+At time : 431.1 ps Reaction : OH^0 (-6120) + OH^0 (-8308) -> H2O2^0 (-12005)
+At time : 431.1 ps Reaction : OH^0 (-7210) + OH^0 (-8164) -> H2O2^0 (-12006)
+At time : 431.1 ps Reaction : e_aq^-1 (-5184) + OH^0 (-7254) -> OH^-1 (-12007)
+At time : 431.1 ps Reaction : e_aq^-1 (-4363) + OH^0 (-10852) -> OH^-1 (-12008)
+At time : 441.1 ps Reaction : H3O^1 (-10853) + OH^-1 (-12008) -> No product
+At time : 441.1 ps Reaction : OH^-1 (-11989) + H3O^1 (-6735) -> No product
+At time : 441.1 ps Reaction : H3O^1 (-7847) + OH^-1 (-11898) -> No product
+At time : 441.1 ps Reaction : OH^0 (-11163) + OH^0 (-10293) -> H2O2^0 (-12009)
+At time : 441.1 ps Reaction : OH^0 (-10826) + OH^0 (-8369) -> H2O2^0 (-12010)
+At time : 441.1 ps Reaction : OH^0 (-10762) + H^0 (-9819) -> No product
+At time : 441.1 ps Reaction : OH^0 (-10590) + OH^0 (-6650) -> H2O2^0 (-12011)
+At time : 441.1 ps Reaction : OH^0 (-10405) + OH^0 (-10233) -> H2O2^0 (-12012)
+At time : 441.1 ps Reaction : H3O^1 (-9796) + e_aq^-1 (-4065) -> H^0 (-12013)
+At time : 441.1 ps Reaction : e_aq^-1 (-3062) + OH^0 (-6348) -> OH^-1 (-12014)
+At time : 441.1 ps Reaction : OH^0 (-9917) + e_aq^-1 (-4305) -> OH^-1 (-12015)
+At time : 451.1 ps Reaction : OH^-1 (-12015) + H3O^1 (-7917) -> No product
+At time : 451.1 ps Reaction : H3O^1 (-6505) + OH^-1 (-11913) -> No product
+At time : 451.1 ps Reaction : H3O^1 (-7129) + OH^-1 (-11845) -> No product
+At time : 451.1 ps Reaction : e_aq^-1 (-488) + H2O2^0 (-11806) -> OH^-1 (-12016) + OH^0 (-12017)
+At time : 451.1 ps Reaction : OH^0 (-11001) + OH^0 (-9328) -> H2O2^0 (-12018)
+At time : 451.1 ps Reaction : OH^0 (-10445) + OH^0 (-7482) -> H2O2^0 (-12019)
+At time : 451.1 ps Reaction : e_aq^-1 (-4933) + OH^0 (-10146) -> OH^-1 (-12020)
+At time : 451.1 ps Reaction : H^0 (-9732) + H^0 (-9734) -> H_2^0 (-12021)
+At time : 451.1 ps Reaction : OH^0 (-9366) + e_aq^-1 (-5342) -> OH^-1 (-12022)
+At time : 451.1 ps Reaction : OH^0 (-6930) + OH^0 (-7942) -> H2O2^0 (-12023)
+At time : 451.1 ps Reaction : e_aq^-1 (-4031) + H3O^1 (-5963) -> H^0 (-12024)
+At time : 451.1 ps Reaction : e_aq^-1 (-3742) + e_aq^-1 (-3738) -> OH^-1 (-12025) + OH^-1 (-12026) + H_2^0 (-12027)
+At time : 451.1 ps Reaction : OH^-1 (-12016) + H3O^1 (-8201) -> No product
+At time : 461.1 ps Reaction : H^0 (-11296) + OH^0 (-7690) -> No product
+At time : 461.1 ps Reaction : H^0 (-9392) + OH^0 (-11263) -> No product
+At time : 461.1 ps Reaction : OH^0 (-9725) + OH^0 (-6642) -> H2O2^0 (-12028)
+At time : 461.1 ps Reaction : OH^0 (-6064) + OH^0 (-8134) -> H2O2^0 (-12029)
+At time : 461.1 ps Reaction : OH^0 (-6634) + OH^0 (-7812) -> H2O2^0 (-12030)
+At time : 461.1 ps Reaction : e_aq^-1 (-2528) + H3O^1 (-6605) -> H^0 (-12031)
+At time : 461.1 ps Reaction : e_aq^-1 (-702) + e_aq^-1 (-5055) -> OH^-1 (-12032) + OH^-1 (-12033) + H_2^0 (-12034)
+At time : 471.1 ps Reaction : OH^0 (-12017) + OH^0 (-6136) -> H2O2^0 (-12035)
+At time : 471.1 ps Reaction : OH^-1 (-11572) + H3O^1 (-7569) -> No product
+At time : 471.1 ps Reaction : OH^0 (-11027) + OH^0 (-8098) -> H2O2^0 (-12036)
+At time : 471.1 ps Reaction : OH^0 (-8302) + OH^0 (-8306) -> H2O2^0 (-12037)
+At time : 471.1 ps Reaction : OH^0 (-7116) + OH^0 (-8074) -> H2O2^0 (-12038)
+At time : 471.1 ps Reaction : OH^0 (-6494) + OH^0 (-6496) -> H2O2^0 (-12039)
+At time : 471.1 ps Reaction : e_aq^-1 (-3864) + OH^0 (-5778) -> OH^-1 (-12040)
+At time : 481.1 ps Reaction : H^0 (-11230) + OH^0 (-6596) -> No product
+At time : 481.1 ps Reaction : OH^0 (-11201) + e_aq^-1 (-4473) -> OH^-1 (-12041)
+At time : 481.1 ps Reaction : OH^0 (-10204) + OH^0 (-7212) -> H2O2^0 (-12042)
+At time : 481.1 ps Reaction : OH^-1 (-12041) + H3O^1 (-8850) -> No product
+At time : 491.1 ps Reaction : H3O^1 (-6095) + OH^-1 (-12000) -> No product
+At time : 491.1 ps Reaction : H^0 (-10746) + OH^0 (-9787) -> No product
+At time : 491.1 ps Reaction : H^0 (-10539) + OH^0 (-9288) -> No product
+At time : 491.1 ps Reaction : e_aq^-1 (-5654) + H3O^1 (-10333) -> H^0 (-12043)
+At time : 491.1 ps Reaction : H^0 (-10018) + OH^0 (-6948) -> No product
+At time : 491.1 ps Reaction : e_aq^-1 (-4393) + OH^0 (-7588) -> OH^-1 (-12044)
+At time : 491.1 ps Reaction : OH^0 (-6448) + OH^0 (-6452) -> H2O2^0 (-12045)
+At time : 491.1 ps Reaction : OH^-1 (-12044) + H3O^1 (-6887) -> No product
+At time : 501.1 ps Reaction : OH^0 (-10128) + OH^0 (-7094) -> H2O2^0 (-12046)
+At time : 501.1 ps Reaction : OH^0 (-9635) + e_aq^-1 (-3783) -> OH^-1 (-12047)
+At time : 501.1 ps Reaction : OH^0 (-9140) + OH^0 (-5727) -> H2O2^0 (-12048)
+At time : 501.1 ps Reaction : OH^0 (-7302) + OH^0 (-8936) -> H2O2^0 (-12049)
+At time : 501.1 ps Reaction : OH^0 (-6434) + OH^0 (-8770) -> H2O2^0 (-12050)
+At time : 501.1 ps Reaction : OH^0 (-8204) + OH^0 (-8402) -> H2O2^0 (-12051)
+At time : 501.1 ps Reaction : e_aq^-1 (-483) + OH^0 (-8200) -> OH^-1 (-12052)
+At time : 511.1 ps Reaction : OH^0 (-10655) + H^0 (-10658) -> No product
+At time : 511.1 ps Reaction : e_aq^-1 (-2904) + H3O^1 (-9579) -> H^0 (-12053)
+At time : 511.1 ps Reaction : H^0 (-9416) + OH^0 (-8934) -> No product
+At time : 511.1 ps Reaction : OH^0 (-9357) + e_aq^-1 (-5192) -> OH^-1 (-12054)
+At time : 511.1 ps Reaction : OH^0 (-7062) + OH^0 (-8876) -> H2O2^0 (-12055)
+At time : 511.1 ps Reaction : OH^0 (-6128) + OH^0 (-8668) -> H2O2^0 (-12056)
+At time : 521.1 ps Reaction : OH^0 (-10765) + OH^0 (-11278) -> H2O2^0 (-12057)
+At time : 521.1 ps Reaction : H^0 (-10800) + OH^0 (-7602) -> No product
+At time : 521.1 ps Reaction : OH^0 (-8354) + OH^0 (-9043) -> H2O2^0 (-12058)
+At time : 521.1 ps Reaction : OH^0 (-8048) + OH^0 (-8387) -> H2O2^0 (-12059)
+At time : 521.1 ps Reaction : OH^0 (-7058) + OH^0 (-8038) -> H2O2^0 (-12060)
+At time : 521.1 ps Reaction : OH^0 (-6938) + OH^0 (-7958) -> H2O2^0 (-12061)
+At time : 521.1 ps Reaction : OH^0 (-6070) + OH^0 (-7472) -> H2O2^0 (-12062)
+At time : 531.1 ps Reaction : OH^-1 (-12054) + H3O^1 (-10221) -> No product
+At time : 531.1 ps Reaction : H3O^1 (-10693) + OH^-1 (-12047) -> No product
+At time : 531.1 ps Reaction : OH^0 (-11125) + OH^0 (-8246) -> H2O2^0 (-12063)
+At time : 531.1 ps Reaction : OH^0 (-10267) + OH^0 (-11117) -> H2O2^0 (-12064)
+At time : 531.1 ps Reaction : H^0 (-10896) + OH^0 (-8855) -> No product
+At time : 531.1 ps Reaction : OH^0 (-9995) + OH^0 (-7576) -> H2O2^0 (-12065)
+At time : 531.1 ps Reaction : H^0 (-9463) + OH^0 (-7672) -> No product
+At time : 531.1 ps Reaction : e_aq^-1 (-4358) + H3O^1 (-6875) -> H^0 (-12066)
+At time : 531.1 ps Reaction : e_aq^-1 (-5255) + H3O^1 (-6079) -> H^0 (-12067)
+At time : 541.1 ps Reaction : OH^-1 (-12032) + H3O^1 (-8133) -> No product
+At time : 541.1 ps Reaction : OH^-1 (-11994) + H3O^1 (-8844) -> No product
+At time : 541.1 ps Reaction : OH^0 (-11074) + OH^0 (-10209) -> H2O2^0 (-12068)
+At time : 541.1 ps Reaction : H^0 (-10364) + OH^0 (-8276) -> No product
+At time : 541.1 ps Reaction : H^0 (-9795) + OH^0 (-6720) -> No product
+At time : 541.1 ps Reaction : H^0 (-9759) + H^0 (-9772) -> H_2^0 (-12069)
+At time : 541.1 ps Reaction : H^0 (-9645) + H^0 (-9034) -> H_2^0 (-12070)
+At time : 541.1 ps Reaction : OH^0 (-7370) + OH^0 (-8326) -> H2O2^0 (-12071)
+At time : 541.1 ps Reaction : OH^0 (-7404) + OH^0 (-8290) -> H2O2^0 (-12072)
+At time : 541.1 ps Reaction : e_aq^-1 (-4121) + OH^0 (-6760) -> OH^-1 (-12073)
+At time : 551.1 ps Reaction : OH^0 (-10086) + H^0 (-10503) -> No product
+At time : 551.1 ps Reaction : OH^0 (-5996) + OH^0 (-7592) -> H2O2^0 (-12074)
+At time : 551.1 ps Reaction : OH^0 (-7350) + OH^0 (-7400) -> H2O2^0 (-12075)
+At time : 551.1 ps Reaction : e_aq^-1 (-4311) + OH^0 (-6852) -> OH^-1 (-12076)
+At time : 551.1 ps Reaction : e_aq^-1 (-1009) + H3O^1 (-6153) -> H^0 (-12077)
+At time : 561.1 ps Reaction : OH^0 (-10887) + OH^0 (-10520) -> H2O2^0 (-12078)
+At time : 561.1 ps Reaction : H^0 (-9945) + OH^0 (-10838) -> No product
+At time : 561.1 ps Reaction : H3O^1 (-10361) + e_aq^-1 (-5536) -> H^0 (-12079)
+At time : 561.1 ps Reaction : OH^0 (-7428) + OH^0 (-8238) -> H2O2^0 (-12080)
+At time : 561.1 ps Reaction : e_aq^-1 (-529) + H3O^1 (-8185) -> H^0 (-12081)
+At time : 561.1 ps Reaction : OH^0 (-5928) + OH^0 (-5932) -> H2O2^0 (-12082)
+At time : 561.1 ps Reaction : e_aq^-1 (-1295) + e_aq^-1 (-1340) -> OH^-1 (-12083) + OH^-1 (-12084) + H_2^0 (-12085)
+At time : 571.1 ps Reaction : e_aq^-1 (-4469) + H^0 (-11612) -> OH^-1 (-12086) + H_2^0 (-12087)
+At time : 571.1 ps Reaction : H^0 (-11144) + OH^0 (-7424) -> No product
+At time : 571.1 ps Reaction : H^0 (-11071) + e_aq^-1 (-5242) -> OH^-1 (-12088) + H_2^0 (-12089)
+At time : 571.1 ps Reaction : OH^0 (-10789) + e_aq^-1 (-8845) -> OH^-1 (-12090)
+At time : 571.1 ps Reaction : OH^0 (-8154) + H^0 (-9092) -> No product
+At time : 571.1 ps Reaction : e_aq^-1 (-4517) + OH^0 (-6946) -> OH^-1 (-12091)
+At time : 581.1 ps Reaction : H3O^1 (-9892) + OH^-1 (-12090) -> No product
+At time : 581.1 ps Reaction : OH^0 (-10821) + OH^0 (-8570) -> H2O2^0 (-12092)
+At time : 581.1 ps Reaction : H^0 (-9649) + OH^0 (-6550) -> No product
+At time : 581.1 ps Reaction : OH^0 (-6880) + OH^0 (-8528) -> H2O2^0 (-12093)
+At time : 581.1 ps Reaction : OH^0 (-5844) + OH^0 (-8028) -> H2O2^0 (-12094)
+At time : 581.1 ps Reaction : OH^0 (-10877) + e_aq^-1 (-4448) -> OH^-1 (-12095)
+At time : 581.1 ps Reaction : H3O^1 (-9982) + OH^-1 (-12095) -> No product
+At time : 591.1 ps Reaction : H3O^1 (-10832) + OH^-1 (-12076) -> No product
+At time : 591.1 ps Reaction : e_aq^-1 (-5082) + H2O2^0 (-11480) -> OH^-1 (-12096) + OH^0 (-12097)
+At time : 591.1 ps Reaction : H^0 (-10983) + e_aq^-1 (-967) -> OH^-1 (-12098) + H_2^0 (-12099)
+At time : 591.1 ps Reaction : H^0 (-10892) + OH^0 (-9438) -> No product
+At time : 591.1 ps Reaction : OH^0 (-10216) + OH^0 (-8172) -> H2O2^0 (-12100)
+At time : 591.1 ps Reaction : OH^0 (-10085) + OH^0 (-7036) -> H2O2^0 (-12101)
+At time : 591.1 ps Reaction : OH^0 (-7110) + OH^0 (-8621) -> H2O2^0 (-12102)
+At time : 591.1 ps Reaction : e_aq^-1 (-3467) + H3O^1 (-7677) -> H^0 (-12103)
+At time : 591.1 ps Reaction : e_aq^-1 (-3523) + OH^0 (-5886) -> OH^-1 (-12104)
+At time : 601.1 ps Reaction : OH^-1 (-11948) + H3O^1 (-6017) -> No product
+At time : 601.1 ps Reaction : OH^0 (-10360) + OH^0 (-8411) -> H2O2^0 (-12105)
+At time : 601.1 ps Reaction : OH^0 (-10342) + OH^0 (-9398) -> H2O2^0 (-12106)
+At time : 601.1 ps Reaction : H^0 (-9331) + OH^0 (-8895) -> No product
+At time : 601.1 ps Reaction : H^0 (-9174) + OH^0 (-6210) -> No product
+At time : 601.1 ps Reaction : e_aq^-1 (-3911) + H3O^1 (-7819) -> H^0 (-12107)
+At time : 601.1 ps Reaction : e_aq^-1 (-5150) + H3O^1 (-7479) -> H^0 (-12108)
+At time : 601.1 ps Reaction : OH^0 (-6444) + OH^0 (-6446) -> H2O2^0 (-12109)
+At time : 601.1 ps Reaction : e_aq^-1 (-4544) + OH^0 (-6016) -> OH^-1 (-12110)
+At time : 601.1 ps Reaction : H3O^1 (-6013) + OH^-1 (-12110) -> No product
+At time : 611.1 ps Reaction : OH^-1 (-12025) + H3O^1 (-6475) -> No product
+At time : 611.1 ps Reaction : H3O^1 (-11002) + OH^-1 (-12020) -> No product
+At time : 611.1 ps Reaction : OH^0 (-11298) + H^0 (-9205) -> No product
+At time : 611.1 ps Reaction : H^0 (-10997) + OH^0 (-10999) -> No product
+At time : 611.1 ps Reaction : OH^0 (-10884) + OH^0 (-7946) -> H2O2^0 (-12111)
+At time : 611.1 ps Reaction : OH^0 (-10290) + OH^0 (-6124) -> H2O2^0 (-12112)
+At time : 611.1 ps Reaction : H^0 (-10074) + OH^0 (-7006) -> No product
+At time : 611.1 ps Reaction : OH^0 (-5998) + H^0 (-9066) -> No product
+At time : 611.1 ps Reaction : e_aq^-1 (-4674) + OH^0 (-6024) -> OH^-1 (-12113)
+At time : 621.1 ps Reaction : H3O^1 (-10939) + OH^-1 (-12113) -> No product
+At time : 621.1 ps Reaction : OH^-1 (-12096) + H3O^1 (-8472) -> No product
+At time : 621.1 ps Reaction : OH^0 (-10996) + OH^0 (-7096) -> H2O2^0 (-12114)
+At time : 621.1 ps Reaction : OH^0 (-10758) + OH^0 (-8432) -> H2O2^0 (-12115)
+At time : 621.1 ps Reaction : OH^0 (-9447) + OH^0 (-9949) -> H2O2^0 (-12116)
+At time : 621.1 ps Reaction : e_aq^-1 (-3301) + OH^0 (-6234) -> OH^-1 (-12117)
+At time : 621.1 ps Reaction : e_aq^-1 (-1149) + OH^0 (-8700) -> OH^-1 (-12118)
+At time : 631.1 ps Reaction : OH^-1 (-12033) + H3O^1 (-7161) -> No product
+At time : 641.1 ps Reaction : H3O^1 (-10123) + OH^-1 (-12098) -> No product
+At time : 641.1 ps Reaction : OH^-1 (-11955) + H3O^1 (-8061) -> No product
+At time : 641.1 ps Reaction : e_aq^-1 (-5185) + H^0 (-11085) -> OH^-1 (-12119) + H_2^0 (-12120)
+At time : 641.1 ps Reaction : OH^0 (-10580) + OH^0 (-10742) -> H2O2^0 (-12121)
+At time : 641.1 ps Reaction : OH^0 (-8408) + H^0 (-9098) -> No product
+At time : 651.1 ps Reaction : H3O^1 (-6141) + OH^-1 (-12119) -> No product
+At time : 651.1 ps Reaction : H^0 (-10794) + OH^0 (-10793) -> No product
+At time : 651.1 ps Reaction : OH^0 (-10585) + OH^0 (-6668) -> H2O2^0 (-12122)
+At time : 651.1 ps Reaction : H^0 (-10014) + OH^0 (-6958) -> No product
+At time : 651.1 ps Reaction : e_aq^-1 (-5488) + H3O^1 (-8259) -> H^0 (-12123)
+At time : 651.1 ps Reaction : e_aq^-1 (-605) + OH^0 (-7460) -> OH^-1 (-12124)
+At time : 651.1 ps Reaction : OH^0 (-7202) + OH^0 (-7204) -> H2O2^0 (-12125)
+At time : 651.1 ps Reaction : e_aq^-1 (-3492) + OH^0 (-5876) -> OH^-1 (-12126)
+At time : 651.1 ps Reaction : H3O^1 (-6027) + OH^-1 (-12118) -> No product
+At time : 651.1 ps Reaction : OH^0 (-7974) + OH^0 (-8456) -> H2O2^0 (-12127)
+At time : 661.1 ps Reaction : H3O^1 (-11100) + OH^-1 (-12007) -> No product
+At time : 661.1 ps Reaction : H^0 (-11751) + OH^0 (-7346) -> No product
+At time : 661.1 ps Reaction : H^0 (-11474) + OH^0 (-8272) -> No product
+At time : 661.1 ps Reaction : H^0 (-9543) + OH^0 (-6370) -> No product
+At time : 661.1 ps Reaction : H^0 (-9139) + e_aq^-1 (-5033) -> OH^-1 (-12128) + H_2^0 (-12129)
+At time : 661.1 ps Reaction : H3O^1 (-6123) + e_aq^-1 (-8491) -> H^0 (-12130)
+At time : 661.1 ps Reaction : e_aq^-1 (-4355) + OH^0 (-6192) -> OH^-1 (-12131)
+At time : 661.1 ps Reaction : e_aq^-1 (-5142) + e_aq^-1 (-5139) -> OH^-1 (-12132) + OH^-1 (-12133) + H_2^0 (-12134)
+At time : 671.1 ps Reaction : H^0 (-10528) + H^0 (-10533) -> H_2^0 (-12135)
+At time : 671.1 ps Reaction : H3O^1 (-9831) + e_aq^-1 (-1994) -> H^0 (-12136)
+At time : 671.1 ps Reaction : e_aq^-1 (-4919) + e_aq^-1 (-4874) -> OH^-1 (-12137) + OH^-1 (-12138) + H_2^0 (-12139)
+At time : 671.1 ps Reaction : e_aq^-1 (-5058) + OH^0 (-8140) -> OH^-1 (-12140)
+At time : 681.1 ps Reaction : OH^0 (-11062) + OH^0 (-8138) -> H2O2^0 (-12141)
+At time : 681.1 ps Reaction : OH^0 (-10142) + OH^0 (-8082) -> H2O2^0 (-12142)
+At time : 681.1 ps Reaction : OH^0 (-9371) + OH^0 (-8248) -> H2O2^0 (-12143)
+At time : 681.1 ps Reaction : OH^0 (-9343) + OH^0 (-7154) -> H2O2^0 (-12144)
+At time : 681.1 ps Reaction : H^0 (-9333) + OH^0 (-8393) -> No product
+At time : 681.1 ps Reaction : e_aq^-1 (-741) + OH^0 (-8633) -> OH^-1 (-12145)
+At time : 691.1 ps Reaction : OH^-1 (-12140) + H3O^1 (-7189) -> No product
+At time : 691.1 ps Reaction : H^0 (-9120) + H^0 (-11213) -> H_2^0 (-12146)
+At time : 691.1 ps Reaction : OH^0 (-11039) + OH^0 (-10179) -> H2O2^0 (-12147)
+At time : 691.1 ps Reaction : H^0 (-10945) + OH^0 (-7012) -> No product
+At time : 691.1 ps Reaction : OH^0 (-10124) + H^0 (-9323) -> No product
+At time : 691.1 ps Reaction : OH^0 (-6502) + OH^0 (-7662) -> H2O2^0 (-12148)
+At time : 701.1 ps Reaction : OH^0 (-10993) + OH^0 (-8052) -> H2O2^0 (-12149)
+At time : 701.1 ps Reaction : H3O^1 (-10972) + e_aq^-1 (-4777) -> H^0 (-12150)
+At time : 701.1 ps Reaction : OH^0 (-10630) + OH^0 (-6268) -> H2O2^0 (-12151)
+At time : 701.1 ps Reaction : OH^0 (-7458) + OH^0 (-8909) -> H2O2^0 (-12152)
+At time : 701.1 ps Reaction : OH^0 (-10750) + OH^0 (-5872) -> H2O2^0 (-12153)
+At time : 711.1 ps Reaction : H2O2^0 (-11944) + e_aq^-1 (-5233) -> OH^-1 (-12154) + OH^0 (-12155)
+At time : 711.1 ps Reaction : OH^0 (-10491) + H^0 (-10097) -> No product
+At time : 711.1 ps Reaction : OH^-1 (-5714) + H3O^1 (-8305) -> No product
+At time : 711.1 ps Reaction : e_aq^-1 (-3583) + OH^0 (-6310) -> OH^-1 (-12156)
+At time : 721.1 ps Reaction : OH^0 (-10977) + H^0 (-10114) -> No product
+At time : 721.1 ps Reaction : OH^0 (-9352) + e_aq^-1 (-5095) -> OH^-1 (-12157)
+At time : 721.1 ps Reaction : e_aq^-1 (-4366) + H3O^1 (-6885) -> H^0 (-12158)
+At time : 731.1 ps Reaction : H^0 (-12024) + e_aq^-1 (-4040) -> OH^-1 (-12159) + H_2^0 (-12160)
+At time : 731.1 ps Reaction : OH^0 (-10989) + OH^0 (-8064) -> H2O2^0 (-12161)
+At time : 731.1 ps Reaction : OH^0 (-10408) + OH^0 (-7242) -> H2O2^0 (-12162)
+At time : 731.1 ps Reaction : e_aq^-1 (-5499) + OH^0 (-10287) -> OH^-1 (-12163)
+At time : 731.1 ps Reaction : OH^0 (-10280) + e_aq^-1 (-5482) -> OH^-1 (-12164)
+At time : 731.1 ps Reaction : H^0 (-9823) + H^0 (-9815) -> H_2^0 (-12165)
+At time : 731.1 ps Reaction : H^0 (-9189) + e_aq^-1 (-3283) -> OH^-1 (-12166) + H_2^0 (-12167)
+At time : 731.1 ps Reaction : e_aq^-1 (-4716) + H3O^1 (-8511) -> H^0 (-12168)
+At time : 731.1 ps Reaction : e_aq^-1 (-2959) + OH^0 (-6388) -> OH^-1 (-12169)
+At time : 731.1 ps Reaction : H3O^1 (-6721) + OH^-1 (-12159) -> No product
+At time : 741.1 ps Reaction : OH^-1 (-12145) + H3O^1 (-11043) -> No product
+At time : 741.1 ps Reaction : OH^-1 (-11954) + H3O^1 (-7089) -> No product
+At time : 741.1 ps Reaction : OH^0 (-10828) + e_aq^-1 (-4351) -> OH^-1 (-12170)
+At time : 741.1 ps Reaction : OH^0 (-10557) + e_aq^-1 (-4221) -> OH^-1 (-12171)
+At time : 741.1 ps Reaction : OH^0 (-9215) + e_aq^-1 (-3686) -> OH^-1 (-12172)
+At time : 741.1 ps Reaction : e_aq^-1 (-4489) + e_aq^-1 (-8707) -> OH^-1 (-12173) + OH^-1 (-12174) + H_2^0 (-12175)
+At time : 741.1 ps Reaction : e_aq^-1 (-1080) + H3O^1 (-8035) -> H^0 (-12176)
+At time : 741.1 ps Reaction : e_aq^-1 (-217) + H3O^1 (-7307) -> H^0 (-12177)
+At time : 741.1 ps Reaction : e_aq^-1 (-5076) + e_aq^-1 (-5140) -> OH^-1 (-12178) + OH^-1 (-12179) + H_2^0 (-12180)
+At time : 751.1 ps Reaction : OH^-1 (-12154) + H3O^1 (-8177) -> No product
+At time : 751.1 ps Reaction : OH^0 (-11338) + OH^0 (-7232) -> H2O2^0 (-12181)
+At time : 751.1 ps Reaction : OH^0 (-10400) + e_aq^-1 (-8671) -> OH^-1 (-12182)
+At time : 751.1 ps Reaction : e_aq^-1 (-5141) + H3O^1 (-8141) -> H^0 (-12183)
+At time : 761.1 ps Reaction : OH^-1 (-11529) + H3O^1 (-7047) -> No product
+At time : 761.1 ps Reaction : OH^0 (-10788) + OH^0 (-6818) -> H2O2^0 (-12184)
+At time : 761.1 ps Reaction : OH^0 (-10727) + OH^0 (-10731) -> H2O2^0 (-12185)
+At time : 761.1 ps Reaction : OH^0 (-9516) + e_aq^-1 (-3565) -> OH^-1 (-12186)
+At time : 761.1 ps Reaction : OH^0 (-7178) + OH^0 (-8124) -> H2O2^0 (-12187)
+At time : 761.1 ps Reaction : OH^0 (-6654) + OH^0 (-7646) -> H2O2^0 (-12188)
+At time : 761.1 ps Reaction : e_aq^-1 (-3082) + OH^0 (-6322) -> OH^-1 (-12189)
+At time : 771.1 ps Reaction : H3O^1 (-9706) + OH^-1 (-12040) -> No product
+At time : 771.1 ps Reaction : H^0 (-10229) + e_aq^-1 (-408) -> OH^-1 (-12190) + H_2^0 (-12191)
+At time : 771.1 ps Reaction : OH^0 (-10207) + OH^0 (-7466) -> H2O2^0 (-12192)
+At time : 771.1 ps Reaction : H^0 (-9953) + OH^0 (-6886) -> No product
+At time : 771.1 ps Reaction : e_aq^-1 (-3024) + OH^0 (-6368) -> OH^-1 (-12193)
+At time : 781.1 ps Reaction : OH^-1 (-11980) + H3O^1 (-6131) -> No product
+At time : 781.1 ps Reaction : OH^0 (-11335) + OH^0 (-8158) -> H2O2^0 (-12194)
+At time : 781.1 ps Reaction : OH^0 (-11096) + OH^0 (-6138) -> H2O2^0 (-12195)
+At time : 781.1 ps Reaction : OH^0 (-10891) + OH^0 (-9999) -> H2O2^0 (-12196)
+At time : 781.1 ps Reaction : OH^0 (-10584) + OH^0 (-6676) -> H2O2^0 (-12197)
+At time : 781.1 ps Reaction : e_aq^-1 (-5522) + OH^0 (-10362) -> OH^-1 (-12198)
+At time : 781.1 ps Reaction : OH^0 (-9621) + H^0 (-9619) -> No product
+At time : 781.1 ps Reaction : OH^0 (-8769) + OH^0 (-9009) -> H2O2^0 (-12199)
+At time : 781.1 ps Reaction : e_aq^-1 (-3475) + OH^0 (-8734) -> OH^-1 (-12200)
+At time : 781.1 ps Reaction : OH^0 (-7638) + OH^0 (-8543) -> H2O2^0 (-12201)
+At time : 781.1 ps Reaction : e_aq^-1 (-5108) + H3O^1 (-8475) -> H^0 (-12202)
+At time : 781.1 ps Reaction : e_aq^-1 (-2924) + OH^0 (-7750) -> OH^-1 (-12203)
+At time : 781.1 ps Reaction : e_aq^-1 (-5262) + OH^0 (-8216) -> OH^-1 (-12204)
+At time : 781.1 ps Reaction : OH^-1 (-12204) + H3O^1 (-8225) -> No product
+At time : 791.1 ps Reaction : H3O^1 (-10836) + e_aq^-1 (-1744) -> H^0 (-12205)
+At time : 791.1 ps Reaction : OH^0 (-10429) + OH^0 (-8906) -> H2O2^0 (-12206)
+At time : 791.1 ps Reaction : OH^0 (-10366) + OH^0 (-7320) -> H2O2^0 (-12207)
+At time : 791.1 ps Reaction : OH^0 (-10049) + OH^0 (-8591) -> H2O2^0 (-12208)
+At time : 791.1 ps Reaction : OH^0 (-6734) + OH^0 (-7630) -> H2O2^0 (-12209)
+At time : 791.1 ps Reaction : e_aq^-1 (-2784) + H3O^1 (-6465) -> H^0 (-12210)
+At time : 791.1 ps Reaction : e_aq^-1 (-5007) + H3O^1 (-6059) -> H^0 (-12211)
+At time : 791.1 ps Reaction : e_aq^-1 (-3998) + OH^0 (-7640) -> OH^-1 (-12212)
+At time : 801.1 ps Reaction : OH^0 (-10735) + e_aq^-1 (-3968) -> OH^-1 (-12213)
+At time : 801.1 ps Reaction : OH^0 (-10587) + OH^0 (-5952) -> H2O2^0 (-12214)
+At time : 801.1 ps Reaction : H^0 (-9137) + e_aq^-1 (-4784) -> OH^-1 (-12215) + H_2^0 (-12216)
+At time : 801.1 ps Reaction : e_aq^-1 (-3529) + H3O^1 (-7699) -> H^0 (-12217)
+At time : 811.1 ps Reaction : OH^-1 (-12124) + H3O^1 (-7209) -> No product
+At time : 811.1 ps Reaction : e_aq^-1 (-3364) + OH^0 (-6218) -> OH^-1 (-12218)
+At time : 811.1 ps Reaction : e_aq^-1 (-2593) + e_aq^-1 (-2599) -> OH^-1 (-12219) + OH^-1 (-12220) + H_2^0 (-12221)
+At time : 811.1 ps Reaction : e_aq^-1 (-4873) + OH^0 (-8078) -> OH^-1 (-12222)
+At time : 821.1 ps Reaction : H3O^1 (-10480) + OH^-1 (-11851) -> No product
+At time : 831.1 ps Reaction : OH^0 (-10899) + OH^0 (-10016) -> H2O2^0 (-12223)
+At time : 831.1 ps Reaction : OH^0 (-10546) + OH^0 (-8441) -> H2O2^0 (-12224)
+At time : 831.1 ps Reaction : OH^0 (-6950) + OH^0 (-8585) -> H2O2^0 (-12225)
+At time : 841.1 ps Reaction : H^0 (-9745) + OH^0 (-6674) -> No product
+At time : 841.1 ps Reaction : OH^0 (-7978) + OH^0 (-8588) -> H2O2^0 (-12226)
+At time : 841.1 ps Reaction : e_aq^-1 (-4534) + OH^0 (-6186) -> OH^-1 (-12227)
+At time : 841.1 ps Reaction : e_aq^-1 (-4567) + H3O^1 (-6015) -> H^0 (-12228)
+At time : 841.1 ps Reaction : H3O^1 (-10313) + OH^-1 (-5810) -> No product
+At time : 841.1 ps Reaction : OH^0 (-6990) + OH^0 (-7982) -> H2O2^0 (-12229)
+At time : 851.1 ps Reaction : OH^0 (-10956) + OH^0 (-10961) -> H2O2^0 (-12230)
+At time : 851.1 ps Reaction : e_aq^-1 (-3160) + H^0 (-9515) -> OH^-1 (-12231) + H_2^0 (-12232)
+At time : 851.1 ps Reaction : OH^0 (-7570) + e_aq^-1 (-8599) -> OH^-1 (-12233)
+At time : 851.1 ps Reaction : e_aq^-1 (-3929) + OH^0 (-5954) -> OH^-1 (-12234)
+At time : 861.1 ps Reaction : OH^-1 (-12171) + H3O^1 (-7609) -> No product
+At time : 861.1 ps Reaction : H3O^1 (-9567) + OH^-1 (-12169) -> No product
+At time : 861.1 ps Reaction : OH^0 (-9792) + H^0 (-9793) -> No product
+At time : 871.1 ps Reaction : OH^-1 (-12164) + H3O^1 (-7417) -> No product
+At time : 871.1 ps Reaction : e_aq^-1 (-3658) + H3O^1 (-6413) -> H^0 (-12235)
+At time : 881.1 ps Reaction : H3O^1 (-10583) + e_aq^-1 (-3946) -> H^0 (-12236)
+At time : 881.1 ps Reaction : H^0 (-10558) + OH^0 (-5790) -> No product
+At time : 881.1 ps Reaction : OH^0 (-9234) + OH^0 (-9669) -> H2O2^0 (-12237)
+At time : 881.1 ps Reaction : e_aq^-1 (-4942) + H3O^1 (-8394) -> H^0 (-12238)
+At time : 891.1 ps Reaction : OH^-1 (-12189) + H3O^1 (-6313) -> No product
+At time : 891.1 ps Reaction : OH^-1 (-12131) + H3O^1 (-8838) -> No product
+At time : 891.1 ps Reaction : e_aq^-1 (-31) + H2O2^0 (-11505) -> OH^-1 (-12239) + OH^0 (-12240)
+At time : 891.1 ps Reaction : OH^0 (-10570) + OH^0 (-9834) -> H2O2^0 (-12241)
+At time : 891.1 ps Reaction : OH^0 (-10483) + OH^0 (-6034) -> H2O2^0 (-12242)
+At time : 891.1 ps Reaction : OH^0 (-7380) + OH^0 (-9115) -> H2O2^0 (-12243)
+At time : 901.1 ps Reaction : H3O^1 (-6121) + OH^-1 (-12239) -> No product
+At time : 901.1 ps Reaction : H3O^1 (-6237) + OH^-1 (-12117) -> No product
+At time : 901.1 ps Reaction : OH^-1 (-12022) + H3O^1 (-11116) -> No product
+At time : 901.1 ps Reaction : OH^0 (-10530) + e_aq^-1 (-1675) -> OH^-1 (-12244)
+At time : 901.1 ps Reaction : OH^0 (-9653) + OH^0 (-7660) -> H2O2^0 (-12245)
+At time : 901.1 ps Reaction : e_aq^-1 (-1068) + H3O^1 (-6167) -> H^0 (-12246)
+At time : 911.1 ps Reaction : OH^-1 (-12212) + H3O^1 (-6681) -> No product
+At time : 911.1 ps Reaction : OH^-1 (-12091) + H3O^1 (-6935) -> No product
+At time : 911.1 ps Reaction : e_aq^-1 (-5111) + H3O^1 (-7475) -> H^0 (-12247)
+At time : 911.1 ps Reaction : H^0 (-10541) + OH^0 (-9943) -> No product
+At time : 921.1 ps Reaction : e_aq^-1 (-3358) + H3O^1 (-6219) -> H^0 (-12248)
+At time : 931.1 ps Reaction : H^0 (-11236) + OH^0 (-7874) -> No product
+At time : 931.1 ps Reaction : OH^0 (-10555) + OH^0 (-9283) -> H2O2^0 (-12249)
+At time : 931.1 ps Reaction : OH^0 (-9448) + OH^0 (-5984) -> H2O2^0 (-12250)
+At time : 931.1 ps Reaction : OH^0 (-8462) + OH^0 (-8975) -> H2O2^0 (-12251)
+At time : 941.1 ps Reaction : OH^0 (-11300) + OH^0 (-8765) -> H2O2^0 (-12252)
+At time : 941.1 ps Reaction : OH^0 (-8492) + OH^0 (-8935) -> H2O2^0 (-12253)
+At time : 951.1 ps Reaction : OH^-1 (-12215) + H3O^1 (-8610) -> No product
+At time : 951.1 ps Reaction : OH^-1 (-12213) + H3O^1 (-7831) -> No product
+At time : 951.1 ps Reaction : H^0 (-10292) + OH^0 (-8288) -> No product
+At time : 951.1 ps Reaction : OH^0 (-6794) + OH^0 (-8534) -> H2O2^0 (-12254)
+At time : 951.1 ps Reaction : e_aq^-1 (-5643) + H3O^1 (-8307) -> H^0 (-12255)
+At time : 951.1 ps Reaction : e_aq^-1 (-5623) + H3O^1 (-7349) -> H^0 (-12256)
+At time : 951.1 ps Reaction : e_aq^-1 (-3611) + H3O^1 (-6345) -> H^0 (-12257)
+At time : 951.1 ps Reaction : e_aq^-1 (-3548) + H3O^1 (-6279) -> H^0 (-12258)
+At time : 961.1 ps Reaction : OH^-1 (-11997) + H3O^1 (-8517) -> No product
+At time : 961.1 ps Reaction : OH^0 (-8540) + H^0 (-9048) -> No product
+At time : 961.1 ps Reaction : OH^-1 (-5813) + H3O^1 (-8293) -> No product
+At time : 971.1 ps Reaction : OH^0 (-11322) + e_aq^-1 (-4397) -> OH^-1 (-12259)
+At time : 971.1 ps Reaction : OH^0 (-11079) + OH^0 (-7224) -> H2O2^0 (-12260)
+At time : 971.1 ps Reaction : e_aq^-1 (-1205) + OH^0 (-8014) -> OH^-1 (-12261)
+At time : 981.1 ps Reaction : OH^-1 (-12234) + H3O^1 (-7825) -> No product
+At time : 981.1 ps Reaction : e_aq^-1 (-5179) + H2O2^0 (-11706) -> OH^-1 (-12262) + OH^0 (-12263)
+At time : 981.1 ps Reaction : OH^0 (-10468) + OH^0 (-8076) -> H2O2^0 (-12264)
+At time : 981.1 ps Reaction : OH^0 (-10398) + OH^0 (-8222) -> H2O2^0 (-12265)
+At time : 981.1 ps Reaction : OH^0 (-9186) + e_aq^-1 (-3272) -> OH^-1 (-12266)
+At time : 981.1 ps Reaction : e_aq^-1 (-4110) + H3O^1 (-6779) -> H^0 (-12267)
+At time : 991.1 ps Reaction : OH^-1 (-12262) + H3O^1 (-8165) -> No product
+At time : 991.1 ps Reaction : H^0 (-9920) + H^0 (-11319) -> H_2^0 (-12268)
+At time : 991.1 ps Reaction : H3O^1 (-11000) + e_aq^-1 (-4915) -> H^0 (-12269)
+At time : 991.1 ps Reaction : OH^0 (-10008) + OH^0 (-7964) -> H2O2^0 (-12270)
+At time : 1.0011 ns Reaction : H3O^1 (-10849) + OH^-1 (-12244) -> No product
+At time : 1.0011 ns Reaction : H3O^1 (-10622) + OH^-1 (-12166) -> No product
+At time : 1.0011 ns Reaction : OH^-1 (-12073) + H3O^1 (-6737) -> No product
+At time : 1.0011 ns Reaction : OH^0 (-10969) + H^0 (-10105) -> No product
+At time : 1.0011 ns Reaction : H^0 (-9537) + OH^0 (-5896) -> No product
+At time : 1.1011 ns Reaction : OH^-1 (-12266) + H3O^1 (-6243) -> No product
+At time : 1.1011 ns Reaction : e_aq^-1 (-4423) + H3O^1 (-10857) -> H^0 (-12271)
+At time : 1.1011 ns Reaction : OH^0 (-10689) + e_aq^-1 (-2693) -> OH^-1 (-12272)
+At time : 1.1011 ns Reaction : OH^0 (-10649) + H^0 (-9541) -> No product
+At time : 1.1011 ns Reaction : OH^0 (-10446) + OH^0 (-8096) -> H2O2^0 (-12273)
+At time : 1.1011 ns Reaction : OH^0 (-10328) + OH^0 (-7360) -> H2O2^0 (-12274)
+At time : 1.1011 ns Reaction : e_aq^-1 (-4215) + H3O^1 (-9885) -> H^0 (-12275)
+At time : 1.1011 ns Reaction : e_aq^-1 (-3673) + OH^0 (-9576) -> OH^-1 (-12276)
+At time : 1.1011 ns Reaction : H^0 (-9226) + OH^0 (-5910) -> No product
+At time : 1.1011 ns Reaction : OH^0 (-9192) + e_aq^-1 (-3176) -> OH^-1 (-12277)
+At time : 1.1011 ns Reaction : e_aq^-1 (-3594) + OH^0 (-9027) -> OH^-1 (-12278)
+At time : 1.1011 ns Reaction : e_aq^-1 (-3297) + H^0 (-9018) -> OH^-1 (-12279) + H_2^0 (-12280)
+At time : 1.1011 ns Reaction : e_aq^-1 (-4660) + H3O^1 (-8601) -> H^0 (-12281)
+At time : 1.1011 ns Reaction : e_aq^-1 (-4900) + H3O^1 (-8075) -> H^0 (-12282)
+At time : 1.1011 ns Reaction : OH^0 (-6686) + OH^0 (-7836) -> H2O2^0 (-12283)
+At time : 1.1011 ns Reaction : e_aq^-1 (-1344) + H3O^1 (-7559) -> H^0 (-12284)
+At time : 1.1011 ns Reaction : e_aq^-1 (-3299) + OH^0 (-6236) -> OH^-1 (-12285)
+At time : 1.1011 ns Reaction : OH^0 (-9657) + OH^0 (-10702) -> H2O2^0 (-12286)
+At time : 1.2011 ns Reaction : H3O^1 (-7037) + OH^-1 (-12261) -> No product
+At time : 1.2011 ns Reaction : e_aq^-1 (-3660) + H^0 (-12235) -> OH^-1 (-12287) + H_2^0 (-12288)
+At time : 1.2011 ns Reaction : e_aq^-1 (-3811) + H2O2^0 (-12082) -> OH^-1 (-12289) + OH^0 (-12290)
+At time : 1.2011 ns Reaction : OH^-1 (-12026) + H3O^1 (-7769) -> No product
+At time : 1.2011 ns Reaction : H3O^1 (-6349) + OH^-1 (-12014) -> No product
+At time : 1.2011 ns Reaction : OH^-1 (-11968) + H3O^1 (-6709) -> No product
+At time : 1.2011 ns Reaction : OH^0 (-11229) + OH^0 (-7798) -> H2O2^0 (-12291)
+At time : 1.2011 ns Reaction : OH^0 (-10938) + OH^0 (-10064) -> H2O2^0 (-12292)
+At time : 1.2011 ns Reaction : H^0 (-10880) + OH^0 (-6910) -> No product
+At time : 1.2011 ns Reaction : OH^0 (-10526) + e_aq^-1 (-1615) -> OH^-1 (-12293)
+At time : 1.2011 ns Reaction : OH^0 (-10166) + OH^0 (-8897) -> H2O2^0 (-12294)
+At time : 1.2011 ns Reaction : e_aq^-1 (-1246) + H^0 (-10070) -> OH^-1 (-12295) + H_2^0 (-12296)
+At time : 1.2011 ns Reaction : OH^0 (-9644) + OH^0 (-6552) -> H2O2^0 (-12297)
+At time : 1.2011 ns Reaction : e_aq^-1 (-3048) + OH^0 (-9536) -> OH^-1 (-12298)
+At time : 1.2011 ns Reaction : e_aq^-1 (-4528) + OH^0 (-9306) -> OH^-1 (-12299)
+At time : 1.2011 ns Reaction : OH^0 (-9156) + OH^0 (-7368) -> H2O2^0 (-12300)
+At time : 1.2011 ns Reaction : H^0 (-9086) + H^0 (-9088) -> H_2^0 (-12301)
+At time : 1.2011 ns Reaction : e_aq^-1 (-2876) + H3O^1 (-7745) -> H^0 (-12302)
+At time : 1.2011 ns Reaction : OH^0 (-7546) + OH^0 (-7548) -> H2O2^0 (-12303)
+At time : 1.3011 ns Reaction : OH^-1 (-12299) + H3O^1 (-7563) -> No product
+At time : 1.3011 ns Reaction : OH^-1 (-12233) + H3O^1 (-7957) -> No product
+At time : 1.3011 ns Reaction : H3O^1 (-6217) + OH^-1 (-12218) -> No product
+At time : 1.3011 ns Reaction : e_aq^-1 (-5297) + H^0 (-12067) -> OH^-1 (-12304) + H_2^0 (-12305)
+At time : 1.3011 ns Reaction : e_aq^-1 (-4767) + H^0 (-11773) -> OH^-1 (-12306) + H_2^0 (-12307)
+At time : 1.3011 ns Reaction : e_aq^-1 (-5648) + H^0 (-11747) -> OH^-1 (-12308) + H_2^0 (-12309)
+At time : 1.3011 ns Reaction : OH^0 (-10949) + OH^0 (-7008) -> H2O2^0 (-12310)
+At time : 1.3011 ns Reaction : OH^0 (-10261) + OH^0 (-7434) -> H2O2^0 (-12311)
+At time : 1.3011 ns Reaction : OH^0 (-10202) + OH^0 (-7474) -> H2O2^0 (-12312)
+At time : 1.3011 ns Reaction : OH^0 (-10102) + OH^0 (-8030) -> H2O2^0 (-12313)
+At time : 1.3011 ns Reaction : OH^0 (-9867) + OH^0 (-6816) -> H2O2^0 (-12314)
+At time : 1.3011 ns Reaction : OH^0 (-9809) + H^0 (-9267) -> No product
+At time : 1.3011 ns Reaction : OH^0 (-6562) + OH^0 (-9035) -> H2O2^0 (-12315)
+At time : 1.3011 ns Reaction : e_aq^-1 (-4158) + H^0 (-8992) -> OH^-1 (-12316) + H_2^0 (-12317)
+At time : 1.3011 ns Reaction : e_aq^-1 (-5072) + H3O^1 (-8129) -> H^0 (-12318)
+At time : 1.3011 ns Reaction : e_aq^-1 (-3136) + H3O^1 (-6305) -> H^0 (-12319)
+At time : 1.3011 ns Reaction : e_aq^-1 (-4406) + e_aq^-1 (-4441) -> OH^-1 (-12320) + OH^-1 (-12321) + H_2^0 (-12322)
+At time : 1.3011 ns Reaction : e_aq^-1 (-1047) + H3O^1 (-6031) -> H^0 (-12323)
+At time : 1.4011 ns Reaction : OH^-1 (-12321) + H3O^1 (-10867) -> No product
+At time : 1.4011 ns Reaction : H^0 (-12217) + e_aq^-1 (-3533) -> OH^-1 (-12324) + H_2^0 (-12325)
+At time : 1.4011 ns Reaction : H3O^1 (-6359) + OH^-1 (-12193) -> No product
+At time : 1.4011 ns Reaction : OH^-1 (-12133) + H3O^1 (-8907) -> No product
+At time : 1.4011 ns Reaction : H2O2^0 (-11535) + e_aq^-1 (-8893) -> OH^-1 (-12326) + OH^0 (-12327)
+At time : 1.4011 ns Reaction : e_aq^-1 (-624) + H^0 (-11256) -> OH^-1 (-12328) + H_2^0 (-12329)
+At time : 1.4011 ns Reaction : OH^0 (-11255) + OH^0 (-7194) -> H2O2^0 (-12330)
+At time : 1.4011 ns Reaction : OH^0 (-11187) + OH^0 (-8314) -> H2O2^0 (-12331)
+At time : 1.4011 ns Reaction : OH^0 (-10973) + e_aq^-1 (-4761) -> OH^-1 (-12332)
+At time : 1.4011 ns Reaction : H^0 (-10806) + OH^0 (-5757) -> No product
+At time : 1.4011 ns Reaction : OH^0 (-10782) + OH^0 (-7618) -> H2O2^0 (-12333)
+At time : 1.4011 ns Reaction : OH^0 (-10694) + e_aq^-1 (-3744) -> OH^-1 (-12334)
+At time : 1.4011 ns Reaction : H3O^1 (-10351) + e_aq^-1 (-95) -> H^0 (-12335)
+At time : 1.4011 ns Reaction : OH^0 (-9970) + OH^0 (-7938) -> H2O2^0 (-12336)
+At time : 1.4011 ns Reaction : OH^0 (-9485) + OH^0 (-8741) -> H2O2^0 (-12337)
+At time : 1.4011 ns Reaction : H^0 (-9191) + e_aq^-1 (-3535) -> OH^-1 (-12338) + H_2^0 (-12339)
+At time : 1.4011 ns Reaction : OH^0 (-7384) + OH^0 (-8322) -> H2O2^0 (-12340)
+At time : 1.4011 ns Reaction : e_aq^-1 (-4613) + H3O^1 (-7985) -> H^0 (-12341)
+At time : 1.4011 ns Reaction : e_aq^-1 (-3711) + OH^0 (-7764) -> OH^-1 (-12342)
+At time : 1.4011 ns Reaction : e_aq^-1 (-4214) + H3O^1 (-6831) -> H^0 (-12343)
+At time : 1.4011 ns Reaction : H3O^1 (-6517) + OH^-1 (-12334) -> No product
+At time : 1.4011 ns Reaction : OH^0 (-10181) + OH^0 (-10186) -> H2O2^0 (-12344)
+At time : 1.4011 ns Reaction : e_aq^-1 (-5476) + OH^0 (-8258) -> OH^-1 (-12345)
+At time : 1.4011 ns Reaction : e_aq^-1 (-5637) + OH^0 (-7362) -> OH^-1 (-12346)
+At time : 1.4011 ns Reaction : e_aq^-1 (-5248) + OH^0 (-6076) -> OH^-1 (-12347)
+At time : 1.4011 ns Reaction : e_aq^-1 (-4269) + OH^0 (-5992) -> OH^-1 (-12348)
+At time : 1.5011 ns Reaction : OH^0 (-5930) + OH^0 (-12290) -> H2O2^0 (-12349)
+At time : 1.5011 ns Reaction : H^0 (-11705) + e_aq^-1 (-3113) -> OH^-1 (-12350) + H_2^0 (-12351)
+At time : 1.5011 ns Reaction : e_aq^-1 (-4743) + H2O2^0 (-11582) -> OH^-1 (-12352) + OH^0 (-12353)
+At time : 1.5011 ns Reaction : OH^0 (-11287) + OH^0 (-10600) -> H2O2^0 (-12354)
+At time : 1.5011 ns Reaction : e_aq^-1 (-161) + H3O^1 (-11165) -> H^0 (-12355)
+At time : 1.5011 ns Reaction : e_aq^-1 (-458) + H3O^1 (-11110) -> H^0 (-12356)
+At time : 1.5011 ns Reaction : H3O^1 (-10545) + OH^-1 (-5792) -> No product
+At time : 1.5011 ns Reaction : OH^0 (-10525) + OH^0 (-9298) -> H2O2^0 (-12357)
+At time : 1.5011 ns Reaction : OH^0 (-10442) + e_aq^-1 (-5079) -> OH^-1 (-12358)
+At time : 1.5011 ns Reaction : OH^0 (-10381) + OH^0 (-7278) -> H2O2^0 (-12359)
+At time : 1.5011 ns Reaction : OH^0 (-10090) + e_aq^-1 (-4705) -> OH^-1 (-12360)
+At time : 1.5011 ns Reaction : e_aq^-1 (-1565) + OH^0 (-10001) -> OH^-1 (-12361)
+At time : 1.5011 ns Reaction : OH^0 (-9425) + OH^0 (-7508) -> H2O2^0 (-12362)
+At time : 1.5011 ns Reaction : OH^0 (-9324) + OH^0 (-6036) -> H2O2^0 (-12363)
+At time : 1.5011 ns Reaction : e_aq^-1 (-8878) + OH^0 (-8979) -> OH^-1 (-12364)
+At time : 1.5011 ns Reaction : OH^0 (-8495) + OH^0 (-8920) -> H2O2^0 (-12365)
+At time : 1.5011 ns Reaction : e_aq^-1 (-4601) + H3O^1 (-7975) -> H^0 (-12366)
+At time : 1.5011 ns Reaction : e_aq^-1 (-3486) + H3O^1 (-6221) -> H^0 (-12367)
+At time : 1.5011 ns Reaction : OH^-1 (-12361) + H3O^1 (-7571) -> No product
+At time : 1.5011 ns Reaction : H3O^1 (-6877) + OH^-1 (-12348) -> No product
+At time : 1.5011 ns Reaction : e_aq^-1 (-4630) + H3O^1 (-7013) -> H^0 (-12368)
+At time : 1.6011 ns Reaction : OH^-1 (-12342) + H3O^1 (-8778) -> No product
+At time : 1.6011 ns Reaction : OH^-1 (-12316) + H3O^1 (-7887) -> No product
+At time : 1.6011 ns Reaction : OH^-1 (-12293) + H3O^1 (-6919) -> No product
+At time : 1.6011 ns Reaction : OH^-1 (-12277) + H3O^1 (-6283) -> No product
+At time : 1.6011 ns Reaction : H3O^1 (-6193) + OH^-1 (-12170) -> No product
+At time : 1.6011 ns Reaction : OH^-1 (-12163) + H3O^1 (-6097) -> No product
+At time : 1.6011 ns Reaction : OH^-1 (-12052) + H3O^1 (-8203) -> No product
+At time : 1.6011 ns Reaction : H3O^1 (-10129) + OH^-1 (-11852) -> No product
+At time : 1.6011 ns Reaction : e_aq^-1 (-4653) + H2O2^0 (-11770) -> OH^-1 (-12369) + OH^0 (-12370)
+At time : 1.6011 ns Reaction : H^0 (-10696) + OH^0 (-5918) -> No product
+At time : 1.6011 ns Reaction : OH^0 (-9521) + OH^0 (-6290) -> H2O2^0 (-12371)
+At time : 1.6011 ns Reaction : H3O^1 (-9373) + e_aq^-1 (-5441) -> H^0 (-12372)
+At time : 1.6011 ns Reaction : e_aq^-1 (-921) + H3O^1 (-8883) -> H^0 (-12373)
+At time : 1.6011 ns Reaction : e_aq^-1 (-4027) + H3O^1 (-6693) -> H^0 (-12374)
+At time : 1.6011 ns Reaction : e_aq^-1 (-2319) + e_aq^-1 (-2332) -> OH^-1 (-12375) + OH^-1 (-12376) + H_2^0 (-12377)
+At time : 1.6011 ns Reaction : OH^-1 (-12369) + H3O^1 (-8604) -> No product
+At time : 1.6011 ns Reaction : e_aq^-1 (-1357) + OH^0 (-7560) -> OH^-1 (-12378)
+At time : 1.6011 ns Reaction : e_aq^-1 (-5651) + OH^0 (-6116) -> OH^-1 (-12379)
+At time : 1.7011 ns Reaction : H3O^1 (-10500) + OH^-1 (-12360) -> No product
+At time : 1.7011 ns Reaction : OH^-1 (-12352) + H3O^1 (-6159) -> No product
+At time : 1.7011 ns Reaction : H3O^1 (-11094) + OH^-1 (-12347) -> No product
+At time : 1.7011 ns Reaction : OH^-1 (-12278) + H3O^1 (-6331) -> No product
+At time : 1.7011 ns Reaction : OH^-1 (-12179) + H3O^1 (-10428) -> No product
+At time : 1.7011 ns Reaction : H^0 (-11974) + OH^0 (-7476) -> No product
+At time : 1.7011 ns Reaction : H2O2^0 (-11880) + e_aq^-1 (-3825) -> OH^-1 (-12380) + OH^0 (-12381)
+At time : 1.7011 ns Reaction : H2O2^0 (-11655) + e_aq^-1 (-2473) -> OH^-1 (-12382) + OH^0 (-12383)
+At time : 1.7011 ns Reaction : e_aq^-1 (-5566) + H3O^1 (-11182) -> H^0 (-12384)
+At time : 1.7011 ns Reaction : OH^0 (-10431) + OH^0 (-10198) -> H2O2^0 (-12385)
+At time : 1.7011 ns Reaction : e_aq^-1 (-5050) + H3O^1 (-10165) -> H^0 (-12386)
+At time : 1.7011 ns Reaction : H3O^1 (-10063) + e_aq^-1 (-4597) -> H^0 (-12387)
+At time : 1.7011 ns Reaction : OH^0 (-9295) + OH^0 (-7928) -> H2O2^0 (-12388)
+At time : 1.7011 ns Reaction : e_aq^-1 (-3491) + H^0 (-9016) -> OH^-1 (-12389) + H_2^0 (-12390)
+At time : 1.7011 ns Reaction : OH^0 (-7954) + OH^0 (-8981) -> H2O2^0 (-12391)
+At time : 1.7011 ns Reaction : OH^0 (-6792) + OH^0 (-7622) -> H2O2^0 (-12392)
+At time : 1.7011 ns Reaction : e_aq^-1 (-2621) + H3O^1 (-6567) -> H^0 (-12393)
+At time : 1.8011 ns Reaction : OH^-1 (-12350) + H3O^1 (-6303) -> No product
+At time : 1.8011 ns Reaction : OH^-1 (-12345) + H3O^1 (-7305) -> No product
+At time : 1.8011 ns Reaction : H3O^1 (-7523) + OH^-1 (-12306) -> No product
+At time : 1.8011 ns Reaction : OH^0 (-12263) + OH^0 (-8168) -> H2O2^0 (-12394)
+At time : 1.8011 ns Reaction : H^0 (-12236) + OH^0 (-6672) -> No product
+At time : 1.8011 ns Reaction : e_aq^-1 (-5466) + H2O2^0 (-12056) -> OH^-1 (-12395) + OH^0 (-12396)
+At time : 1.8011 ns Reaction : H^0 (-11865) + OH^0 (-5856) -> No product
+At time : 1.8011 ns Reaction : e_aq^-1 (-4107) + H2O2^0 (-11841) -> OH^-1 (-12397) + OH^0 (-12398)
+At time : 1.8011 ns Reaction : OH^0 (-10710) + OH^0 (-6616) -> H2O2^0 (-12399)
+At time : 1.8011 ns Reaction : e_aq^-1 (-811) + H3O^1 (-10187) -> H^0 (-12400)
+At time : 1.8011 ns Reaction : H^0 (-9858) + e_aq^-1 (-4141) -> OH^-1 (-12401) + H_2^0 (-12402)
+At time : 1.8011 ns Reaction : OH^0 (-8316) + OH^0 (-8955) -> H2O2^0 (-12403)
+At time : 1.8011 ns Reaction : e_aq^-1 (-3065) + H3O^1 (-8757) -> H^0 (-12404)
+At time : 1.8011 ns Reaction : H3O^1 (-7117) + e_aq^-1 (-8620) -> H^0 (-12405)
+At time : 1.8011 ns Reaction : e_aq^-1 (-3876) + e_aq^-1 (-3815) -> OH^-1 (-12406) + OH^-1 (-12407) + H_2^0 (-12408)
+At time : 1.8011 ns Reaction : e_aq^-1 (-4444) + OH^0 (-6920) -> OH^-1 (-12409)
+At time : 1.8011 ns Reaction : e_aq^-1 (-3213) + OH^0 (-6270) -> OH^-1 (-12410)
+At time : 1.8011 ns Reaction : e_aq^-1 (-1408) + OH^0 (-5748) -> OH^-1 (-12411)
+At time : 1.9011 ns Reaction : OH^-1 (-12409) + H3O^1 (-8580) -> No product
+At time : 1.9011 ns Reaction : OH^-1 (-12395) + H3O^1 (-7319) -> No product
+At time : 1.9011 ns Reaction : H3O^1 (-5945) + OH^-1 (-12382) -> No product
+At time : 1.9011 ns Reaction : OH^-1 (-12378) + H3O^1 (-6985) -> No product
+At time : 1.9011 ns Reaction : OH^-1 (-12346) + H3O^1 (-8952) -> No product
+At time : 1.9011 ns Reaction : OH^-1 (-12289) + H3O^1 (-6577) -> No product
+At time : 1.9011 ns Reaction : H3O^1 (-6905) + OH^-1 (-12259) -> No product
+At time : 1.9011 ns Reaction : e_aq^-1 (-1950) + H2O2^0 (-12184) -> OH^-1 (-12412) + OH^0 (-12413)
+At time : 1.9011 ns Reaction : H^0 (-12079) + e_aq^-1 (-5537) -> OH^-1 (-12414) + H_2^0 (-12415)
+At time : 1.9011 ns Reaction : H3O^1 (-11078) + e_aq^-1 (-8410) -> H^0 (-12416)
+At time : 1.9011 ns Reaction : e_aq^-1 (-4347) + H3O^1 (-10840) -> H^0 (-12417)
+At time : 1.9011 ns Reaction : OH^0 (-10674) + OH^0 (-6436) -> H2O2^0 (-12418)
+At time : 1.9011 ns Reaction : H^0 (-10578) + OH^0 (-8993) -> No product
+At time : 1.9011 ns Reaction : OH^0 (-10437) + e_aq^-1 (-5051) -> OH^-1 (-12419)
+At time : 1.9011 ns Reaction : OH^0 (-10188) + OH^0 (-7182) -> H2O2^0 (-12420)
+At time : 1.9011 ns Reaction : OH^0 (-10043) + OH^0 (-5745) -> H2O2^0 (-12421)
+At time : 1.9011 ns Reaction : OH^0 (-9765) + OH^0 (-6698) -> H2O2^0 (-12422)
+At time : 1.9011 ns Reaction : OH^0 (-9443) + OH^0 (-8837) -> H2O2^0 (-12423)
+At time : 1.9011 ns Reaction : OH^0 (-9405) + e_aq^-1 (-5594) -> OH^-1 (-12424)
+At time : 1.9011 ns Reaction : e_aq^-1 (-5074) + e_aq^-1 (-8632) -> OH^-1 (-12425) + OH^-1 (-12426) + H_2^0 (-12427)
+At time : 1.9011 ns Reaction : e_aq^-1 (-2230) + e_aq^-1 (-8431) -> OH^-1 (-12428) + OH^-1 (-12429) + H_2^0 (-12430)
+At time : 1.9011 ns Reaction : OH^0 (-6182) + OH^0 (-6996) -> H2O2^0 (-12431)
+At time : 1.9011 ns Reaction : e_aq^-1 (-1466) + H3O^1 (-6971) -> H^0 (-12432)
+At time : 1.9011 ns Reaction : OH^-1 (-5795) + H3O^1 (-5869) -> No product
+At time : 2.0011 ns Reaction : H3O^1 (-7859) + OH^-1 (-12429) -> No product
+At time : 2.0011 ns Reaction : OH^0 (-6798) + OH^0 (-12398) -> H2O2^0 (-12433)
+At time : 2.0011 ns Reaction : H2O2^0 (-12336) + e_aq^-1 (-4460) -> OH^-1 (-12434) + OH^0 (-12435)
+At time : 2.0011 ns Reaction : H3O^1 (-10678) + OH^-1 (-12272) -> No product
+At time : 2.0011 ns Reaction : OH^-1 (-12190) + H3O^1 (-7253) -> No product
+At time : 2.0011 ns Reaction : e_aq^-1 (-723) + H^0 (-12183) -> OH^-1 (-12436) + H_2^0 (-12437)
+At time : 2.0011 ns Reaction : H3O^1 (-10522) + OH^-1 (-12173) -> No product
+At time : 2.0011 ns Reaction : e_aq^-1 (-5515) + H^0 (-12123) -> OH^-1 (-12438) + H_2^0 (-12439)
+At time : 2.0011 ns Reaction : H^0 (-12081) + OH^0 (-7236) -> No product
+At time : 2.0011 ns Reaction : H2O2^0 (-11933) + e_aq^-1 (-4145) -> OH^-1 (-12440) + OH^0 (-12441)
+At time : 2.0011 ns Reaction : OH^0 (-10595) + H^0 (-10596) -> No product
+At time : 2.0011 ns Reaction : H^0 (-9791) + e_aq^-1 (-8434) -> OH^-1 (-12442) + H_2^0 (-12443)
+At time : 2.0011 ns Reaction : OH^0 (-7112) + OH^0 (-9089) -> H2O2^0 (-12444)
+At time : 2.0011 ns Reaction : OH^0 (-7028) + OH^0 (-8701) -> H2O2^0 (-12445)
+At time : 2.0011 ns Reaction : H3O^1 (-6101) + e_aq^-1 (-8659) -> H^0 (-12446)
+At time : 2.0011 ns Reaction : OH^0 (-7152) + OH^0 (-8106) -> H2O2^0 (-12447)
+At time : 2.0011 ns Reaction : e_aq^-1 (-2490) + H3O^1 (-7801) -> H^0 (-12448)
+At time : 2.0011 ns Reaction : e_aq^-1 (-3908) + H3O^1 (-6665) -> H^0 (-12449)
+At time : 2.1011 ns Reaction : H^0 (-12446) + e_aq^-1 (-8653) -> OH^-1 (-12450) + H_2^0 (-12451)
+At time : 2.1011 ns Reaction : H3O^1 (-6967) + OH^-1 (-12411) -> No product
+At time : 2.1011 ns Reaction : OH^-1 (-12338) + H3O^1 (-6261) -> No product
+At time : 2.1011 ns Reaction : OH^-1 (-12287) + H3O^1 (-6415) -> No product
+At time : 2.1011 ns Reaction : H3O^1 (-10397) + OH^-1 (-12182) -> No product
+At time : 2.1011 ns Reaction : OH^-1 (-11887) + H3O^1 (-7693) -> No product
+At time : 2.1011 ns Reaction : H2O2^0 (-11672) + e_aq^-1 (-4629) -> OH^-1 (-12452) + OH^0 (-12453)
+At time : 2.1011 ns Reaction : OH^0 (-10464) + OH^0 (-10143) -> H2O2^0 (-12454)
+At time : 2.1011 ns Reaction : e_aq^-1 (-5567) + H3O^1 (-10359) -> H^0 (-12455)
+At time : 2.1011 ns Reaction : OH^0 (-10095) + OH^0 (-8024) -> H2O2^0 (-12456)
+At time : 2.1011 ns Reaction : e_aq^-1 (-2990) + OH^0 (-9544) -> OH^-1 (-12457)
+At time : 2.1011 ns Reaction : H^0 (-9274) + e_aq^-1 (-2137) -> OH^-1 (-12458) + H_2^0 (-12459)
+At time : 2.1011 ns Reaction : e_aq^-1 (-2800) + OH^0 (-8774) -> OH^-1 (-12460)
+At time : 2.1011 ns Reaction : OH^0 (-7406) + OH^0 (-8662) -> H2O2^0 (-12461)
+At time : 2.1011 ns Reaction : e_aq^-1 (-5603) + H3O^1 (-8655) -> H^0 (-12462)
+At time : 2.1011 ns Reaction : OH^0 (-7208) + OH^0 (-8160) -> H2O2^0 (-12463)
+At time : 2.1011 ns Reaction : e_aq^-1 (-930) + H3O^1 (-8099) -> H^0 (-12464)
+At time : 2.1011 ns Reaction : e_aq^-1 (-4667) + H3O^1 (-7997) -> H^0 (-12465)
+At time : 2.1011 ns Reaction : e_aq^-1 (-4966) + H3O^1 (-7127) -> H^0 (-12466)
+At time : 2.1011 ns Reaction : e_aq^-1 (-4298) + H3O^1 (-6837) -> H^0 (-12467)
+At time : 2.1011 ns Reaction : e_aq^-1 (-3866) + H3O^1 (-6599) -> H^0 (-12468)
+At time : 2.2011 ns Reaction : H3O^1 (-6019) + OH^-1 (-12452) -> No product
+At time : 2.2011 ns Reaction : OH^-1 (-12450) + H3O^1 (-8490) -> No product
+At time : 2.2011 ns Reaction : H3O^1 (-11049) + OH^-1 (-12419) -> No product
+At time : 2.2011 ns Reaction : e_aq^-1 (-3671) + H^0 (-11924) -> OH^-1 (-12469) + H_2^0 (-12470)
+At time : 2.2011 ns Reaction : OH^-1 (-11906) + H3O^1 (-6855) -> No product
+At time : 2.2011 ns Reaction : e_aq^-1 (-5652) + H^0 (-11260) -> OH^-1 (-12471) + H_2^0 (-12472)
+At time : 2.2011 ns Reaction : OH^0 (-11029) + e_aq^-1 (-5015) -> OH^-1 (-12473)
+At time : 2.2011 ns Reaction : H3O^1 (-10998) + e_aq^-1 (-4830) -> H^0 (-12474)
+At time : 2.2011 ns Reaction : OH^0 (-10987) + e_aq^-1 (-1114) -> OH^-1 (-12475)
+At time : 2.2011 ns Reaction : H3O^1 (-10661) + e_aq^-1 (-2891) -> H^0 (-12476)
+At time : 2.2011 ns Reaction : H3O^1 (-10553) + e_aq^-1 (-4272) -> H^0 (-12477)
+At time : 2.2011 ns Reaction : e_aq^-1 (-4579) + H^0 (-10044) -> OH^-1 (-12478) + H_2^0 (-12479)
+At time : 2.2011 ns Reaction : e_aq^-1 (-4372) + H^0 (-9957) -> OH^-1 (-12480) + H_2^0 (-12481)
+At time : 2.2011 ns Reaction : OH^0 (-9907) + e_aq^-1 (-4227) -> OH^-1 (-12482)
+At time : 2.2011 ns Reaction : e_aq^-1 (-8386) + H3O^1 (-8460) -> H^0 (-12483)
+At time : 2.2011 ns Reaction : e_aq^-1 (-4619) + H3O^1 (-7009) -> H^0 (-12484)
+At time : 2.2011 ns Reaction : e_aq^-1 (-2974) + OH^0 (-6378) -> OH^-1 (-12485)
+At time : 2.2011 ns Reaction : e_aq^-1 (-4574) + H3O^1 (-5841) -> H^0 (-12486)
+At time : 2.2011 ns Reaction : e_aq^-1 (-4957) + e_aq^-1 (-4996) -> OH^-1 (-12487) + OH^-1 (-12488) + H_2^0 (-12489)
+At time : 2.2011 ns Reaction : e_aq^-1 (-2129) + e_aq^-1 (-4076) -> OH^-1 (-12490) + OH^-1 (-12491) + H_2^0 (-12492)
+At time : 2.2011 ns Reaction : OH^0 (-10538) + e_aq^-1 (-4303) -> OH^-1 (-12493)
+At time : 2.2011 ns Reaction : e_aq^-1 (-4887) + OH^0 (-8046) -> OH^-1 (-12494)
+At time : 2.3011 ns Reaction : H3O^1 (-10115) + OH^-1 (-12475) -> No product
+At time : 2.3011 ns Reaction : OH^-1 (-12364) + H3O^1 (-6173) -> No product
+At time : 2.3011 ns Reaction : H3O^1 (-10178) + OH^-1 (-12326) -> No product
+At time : 2.3011 ns Reaction : H^0 (-11345) + e_aq^-1 (-5547) -> OH^-1 (-12495) + H_2^0 (-12496)
+At time : 2.3011 ns Reaction : H^0 (-10088) + OH^0 (-8012) -> No product
+At time : 2.3011 ns Reaction : e_aq^-1 (-4234) + H^0 (-9916) -> OH^-1 (-12497) + H_2^0 (-12498)
+At time : 2.3011 ns Reaction : OH^0 (-9779) + OH^0 (-9757) -> H2O2^0 (-12499)
+At time : 2.3011 ns Reaction : OH^0 (-9510) + OH^0 (-6280) -> H2O2^0 (-12500)
+At time : 2.3011 ns Reaction : H2O2^0 (-11546) + e_aq^-1 (-5170) -> OH^-1 (-12501) + OH^0 (-12502)
+At time : 2.3011 ns Reaction : e_aq^-1 (-2677) + OH^0 (-5920) -> OH^-1 (-12503)
+At time : 2.3011 ns Reaction : OH^-1 (-12503) + H3O^1 (-7775) -> No product
+At time : 2.4011 ns Reaction : OH^-1 (-12471) + H3O^1 (-8329) -> No product
+At time : 2.4011 ns Reaction : OH^-1 (-12440) + H3O^1 (-8727) -> No product
+At time : 2.4011 ns Reaction : OH^-1 (-12434) + H3O^1 (-7573) -> No product
+At time : 2.4011 ns Reaction : OH^-1 (-12380) + H3O^1 (-6581) -> No product
+At time : 2.4011 ns Reaction : H3O^1 (-7929) + OH^-1 (-12320) -> No product
+At time : 2.4011 ns Reaction : H^0 (-9132) + OH^0 (-10850) -> No product
+At time : 2.4011 ns Reaction : H^0 (-10326) + OH^0 (-5718) -> No product
+At time : 2.4011 ns Reaction : H^0 (-9639) + OH^0 (-6544) -> No product
+At time : 2.4011 ns Reaction : H^0 (-9613) + OH^0 (-6478) -> No product
+At time : 2.4011 ns Reaction : H3O^1 (-9559) + e_aq^-1 (-2943) -> H^0 (-12504)
+At time : 2.4011 ns Reaction : H^0 (-9195) + OH^0 (-6292) -> No product
+At time : 2.4011 ns Reaction : OH^0 (-6806) + OH^0 (-6808) -> H2O2^0 (-12505)
+At time : 2.4011 ns Reaction : e_aq^-1 (-5410) + OH^0 (-7290) -> OH^-1 (-12506)
+At time : 2.5011 ns Reaction : OH^-1 (-12506) + H3O^1 (-7431) -> No product
+At time : 2.5011 ns Reaction : OH^-1 (-12494) + H3O^1 (-6037) -> No product
+At time : 2.5011 ns Reaction : OH^-1 (-12473) + H3O^1 (-7139) -> No product
+At time : 2.5011 ns Reaction : OH^-1 (-12412) + H3O^1 (-8808) -> No product
+At time : 2.5011 ns Reaction : e_aq^-1 (-1522) + H2O2^0 (-11856) -> OH^-1 (-12507) + OH^0 (-12508)
+At time : 2.5011 ns Reaction : e_aq^-1 (-5464) + H2O2^0 (-11566) -> OH^-1 (-12509) + OH^0 (-12510)
+At time : 2.5011 ns Reaction : e_aq^-1 (-240) + OH^0 (-11152) -> OH^-1 (-12511)
+At time : 2.5011 ns Reaction : e_aq^-1 (-384) + H^0 (-11134) -> OH^-1 (-12512) + H_2^0 (-12513)
+At time : 2.5011 ns Reaction : H3O^1 (-11037) + e_aq^-1 (-5026) -> H^0 (-12514)
+At time : 2.5011 ns Reaction : e_aq^-1 (-1586) + H3O^1 (-10871) -> H^0 (-12515)
+At time : 2.5011 ns Reaction : H3O^1 (-10597) + e_aq^-1 (-3855) -> H^0 (-12516)
+At time : 2.5011 ns Reaction : OH^0 (-9379) + OH^0 (-5721) -> H2O2^0 (-12517)
+At time : 2.5011 ns Reaction : OH^0 (-5964) + OH^0 (-8789) -> H2O2^0 (-12518)
+At time : 2.5011 ns Reaction : e_aq^-1 (-4805) + H3O^1 (-8029) -> H^0 (-12519)
+At time : 2.5011 ns Reaction : e_aq^-1 (-5657) + e_aq^-1 (-5599) -> OH^-1 (-12520) + OH^-1 (-12521) + H_2^0 (-12522)
+At time : 2.5011 ns Reaction : OH^-1 (-12501) + H3O^1 (-8169) -> No product
+At time : 2.6011 ns Reaction : OH^-1 (-12084) + H3O^1 (-7989) -> No product
+At time : 2.6011 ns Reaction : OH^0 (-11289) + e_aq^-1 (-3456) -> OH^-1 (-12523)
+At time : 2.6011 ns Reaction : H^0 (-10318) + OH^0 (-10345) -> No product
+At time : 2.6011 ns Reaction : OH^0 (-9803) + OH^0 (-5763) -> H2O2^0 (-12524)
+At time : 2.6011 ns Reaction : OH^0 (-7326) + OH^0 (-8941) -> H2O2^0 (-12525)
+At time : 2.6011 ns Reaction : e_aq^-1 (-2533) + H3O^1 (-7793) -> H^0 (-12526)
+At time : 2.6011 ns Reaction : e_aq^-1 (-2204) + H3O^1 (-6731) -> H^0 (-12527)
+At time : 2.6011 ns Reaction : OH^0 (-5940) + OH^0 (-6600) -> H2O2^0 (-12528)
+At time : 2.6011 ns Reaction : e_aq^-1 (-3696) + H3O^1 (-6441) -> H^0 (-12529)
+At time : 2.6011 ns Reaction : e_aq^-1 (-5327) + e_aq^-1 (-5448) -> OH^-1 (-12530) + OH^-1 (-12531) + H_2^0 (-12532)
+At time : 2.6011 ns Reaction : e_aq^-1 (-4030) + e_aq^-1 (-2240) -> OH^-1 (-12533) + OH^-1 (-12534) + H_2^0 (-12535)
+At time : 2.6011 ns Reaction : e_aq^-1 (-4498) + OH^0 (-8447) -> OH^-1 (-12536)
+At time : 2.6011 ns Reaction : e_aq^-1 (-4086) + OH^0 (-6784) -> OH^-1 (-12537)
+At time : 2.7011 ns Reaction : H3O^1 (-6421) + OH^-1 (-12469) -> No product
+At time : 2.7011 ns Reaction : H3O^1 (-5973) + OH^-1 (-12397) -> No product
+At time : 2.7011 ns Reaction : H3O^1 (-11157) + e_aq^-1 (-5478) -> H^0 (-12538)
+At time : 2.7011 ns Reaction : H3O^1 (-11104) + e_aq^-1 (-5390) -> H^0 (-12539)
+At time : 2.7011 ns Reaction : OH^0 (-10196) + e_aq^-1 (-5144) -> OH^-1 (-12540)
+At time : 2.7011 ns Reaction : e_aq^-1 (-733) + H3O^1 (-10180) -> H^0 (-12541)
+At time : 2.7011 ns Reaction : H^0 (-9507) + OH^0 (-6282) -> No product
+At time : 2.7011 ns Reaction : OH^0 (-9428) + e_aq^-1 (-4817) -> OH^-1 (-12542)
+At time : 2.7011 ns Reaction : OH^0 (-9178) + e_aq^-1 (-3455) -> OH^-1 (-12543)
+At time : 2.7011 ns Reaction : H3O^1 (-7199) + e_aq^-1 (-8905) -> H^0 (-12544)
+At time : 2.7011 ns Reaction : e_aq^-1 (-4926) + OH^0 (-8054) -> OH^-1 (-12545)
+At time : 2.7011 ns Reaction : H3O^1 (-7415) + OH^-1 (-12198) -> No product
+At time : 2.7011 ns Reaction : OH^0 (-6052) + OH^0 (-7128) -> H2O2^0 (-12546)
+At time : 2.8011 ns Reaction : H3O^1 (-6949) + OH^-1 (-12507) -> No product
+At time : 2.8011 ns Reaction : OH^-1 (-12295) + H3O^1 (-7993) -> No product
+At time : 2.8011 ns Reaction : e_aq^-1 (-5092) + H2O2^0 (-11858) -> OH^-1 (-12547) + OH^0 (-12548)
+At time : 2.8011 ns Reaction : H^0 (-10449) + OH^0 (-8624) -> No product
+At time : 2.8011 ns Reaction : H^0 (-9237) + OH^0 (-6572) -> No product
+At time : 2.8011 ns Reaction : OH^0 (-8819) + OH^0 (-8985) -> H2O2^0 (-12549)
+At time : 2.8011 ns Reaction : e_aq^-1 (-740) + H^0 (-8974) -> OH^-1 (-12550) + H_2^0 (-12551)
+At time : 2.8011 ns Reaction : OH^0 (-7174) + OH^0 (-8471) -> H2O2^0 (-12552)
+At time : 2.8011 ns Reaction : e_aq^-1 (-267) + H3O^1 (-8275) -> H^0 (-12553)
+At time : 2.8011 ns Reaction : e_aq^-1 (-3499) + H3O^1 (-7687) -> H^0 (-12554)
+At time : 2.8011 ns Reaction : e_aq^-1 (-5075) + H3O^1 (-7163) -> H^0 (-12555)
+At time : 2.8011 ns Reaction : e_aq^-1 (-3011) + H3O^1 (-6357) -> H^0 (-12556)
+At time : 2.9011 ns Reaction : OH^0 (-6130) + OH^0 (-12510) -> H2O2^0 (-12557)
+At time : 2.9011 ns Reaction : OH^-1 (-12495) + H3O^1 (-8412) -> No product
+At time : 2.9011 ns Reaction : OH^-1 (-12401) + H3O^1 (-6789) -> No product
+At time : 2.9011 ns Reaction : e_aq^-1 (-2091) + H2O2^0 (-12333) -> OH^-1 (-12558) + OH^0 (-12559)
+At time : 2.9011 ns Reaction : H^0 (-11914) + OH^0 (-8186) -> No product
+At time : 2.9011 ns Reaction : e_aq^-1 (-4171) + H2O2^0 (-11714) -> OH^-1 (-12560) + OH^0 (-12561)
+At time : 2.9011 ns Reaction : e_aq^-1 (-5157) + H^0 (-11639) -> OH^-1 (-12562) + H_2^0 (-12563)
+At time : 2.9011 ns Reaction : e_aq^-1 (-4538) + H2O2^0 (-11613) -> OH^-1 (-12564) + OH^0 (-12565)
+At time : 2.9011 ns Reaction : e_aq^-1 (-610) + H3O^1 (-11072) -> H^0 (-12566)
+At time : 2.9011 ns Reaction : e_aq^-1 (-4973) + H^0 (-9325) -> OH^-1 (-12567) + H_2^0 (-12568)
+At time : 2.9011 ns Reaction : H3O^1 (-9271) + e_aq^-1 (-4091) -> H^0 (-12569)
+At time : 2.9011 ns Reaction : OH^0 (-7118) + OH^0 (-8889) -> H2O2^0 (-12570)
+At time : 2.9011 ns Reaction : e_aq^-1 (-5453) + H3O^1 (-8670) -> H^0 (-12571)
+At time : 2.9011 ns Reaction : e_aq^-1 (-2582) + OH^0 (-8561) -> OH^-1 (-12572)
+At time : 2.9011 ns Reaction : e_aq^-1 (-5408) + H3O^1 (-7289) -> H^0 (-12573)
+At time : 2.9011 ns Reaction : H3O^1 (-10436) + OH^-1 (-12562) -> No product
+At time : 3.0011 ns Reaction : OH^-1 (-12560) + H3O^1 (-5977) -> No product
+At time : 3.0011 ns Reaction : H^0 (-12555) + e_aq^-1 (-5062) -> OH^-1 (-12574) + H_2^0 (-12575)
+At time : 3.0011 ns Reaction : e_aq^-1 (-4655) + H^0 (-12246) -> OH^-1 (-12576) + H_2^0 (-12577)
+At time : 3.0011 ns Reaction : e_aq^-1 (-4508) + H2O2^0 (-12061) -> OH^-1 (-12578) + OH^0 (-12579)
+At time : 3.0011 ns Reaction : H^0 (-11056) + OH^0 (-9349) -> No product
+At time : 3.0011 ns Reaction : OH^0 (-10679) + OH^0 (-6488) -> H2O2^0 (-12580)
+At time : 3.0011 ns Reaction : H3O^1 (-10591) + e_aq^-1 (-3932) -> H^0 (-12581)
+At time : 3.0011 ns Reaction : H3O^1 (-10571) + e_aq^-1 (-4138) -> H^0 (-12582)
+At time : 3.0011 ns Reaction : H^0 (-10519) + e_aq^-1 (-4503) -> OH^-1 (-12583) + H_2^0 (-12584)
+At time : 3.0011 ns Reaction : H^0 (-10066) + e_aq^-1 (-1238) -> OH^-1 (-12585) + H_2^0 (-12586)
+At time : 3.0011 ns Reaction : OH^0 (-9665) + e_aq^-1 (-2637) -> OH^-1 (-12587)
+At time : 3.0011 ns Reaction : e_aq^-1 (-4614) + e_aq^-1 (-8857) -> OH^-1 (-12588) + OH^-1 (-12589) + H_2^0 (-12590)
+At time : 3.0011 ns Reaction : e_aq^-1 (-266) + H3O^1 (-8241) -> H^0 (-12591)
+At time : 3.0011 ns Reaction : OH^0 (-7304) + OH^0 (-7422) -> H2O2^0 (-12592)
+At time : 3.0011 ns Reaction : OH^0 (-6026) + OH^0 (-7016) -> H2O2^0 (-12593)
+At time : 3.0011 ns Reaction : e_aq^-1 (-3822) + e_aq^-1 (-3802) -> OH^-1 (-12594) + OH^-1 (-12595) + H_2^0 (-12596)
+At time : 3.0011 ns Reaction : e_aq^-1 (-3895) + OH^0 (-7644) -> OH^-1 (-12597)
+At time : 3.1011 ns Reaction : OH^-1 (-12543) + H3O^1 (-5817) -> No product
+At time : 3.1011 ns Reaction : H3O^1 (-10380) + OH^-1 (-12512) -> No product
+At time : 3.1011 ns Reaction : e_aq^-1 (-202) + H^0 (-11156) -> OH^-1 (-12598) + H_2^0 (-12599)
+At time : 3.1011 ns Reaction : e_aq^-1 (-2265) + H3O^1 (-10747) -> H^0 (-12600)
+At time : 3.1011 ns Reaction : OH^0 (-10627) + OH^0 (-5820) -> H2O2^0 (-12601)
+At time : 3.1011 ns Reaction : OH^0 (-9870) + OH^0 (-7888) -> H2O2^0 (-12602)
+At time : 3.1011 ns Reaction : e_aq^-1 (-4134) + OH^0 (-9825) -> OH^-1 (-12603)
+At time : 3.1011 ns Reaction : OH^0 (-5834) + H^0 (-9046) -> No product
+At time : 3.1011 ns Reaction : e_aq^-1 (-4501) + H3O^1 (-8853) -> H^0 (-12604)
+At time : 3.1011 ns Reaction : e_aq^-1 (-2612) + H3O^1 (-6547) -> H^0 (-12605)
+At time : 3.1011 ns Reaction : H3O^1 (-7965) + OH^-1 (-12578) -> No product
+At time : 3.1011 ns Reaction : e_aq^-1 (-706) + OH^0 (-8681) -> OH^-1 (-12606)
+At time : 3.1011 ns Reaction : e_aq^-1 (-828) + OH^0 (-6066) -> OH^-1 (-12607)
+At time : 3.2011 ns Reaction : OH^0 (-10712) + H^0 (-12468) -> No product
+At time : 3.2011 ns Reaction : OH^-1 (-12442) + H3O^1 (-6729) -> No product
+At time : 3.2011 ns Reaction : OH^-1 (-12332) + H3O^1 (-7049) -> No product
+At time : 3.2011 ns Reaction : H^0 (-12302) + OH^0 (-6432) -> No product
+At time : 3.2011 ns Reaction : OH^-1 (-12126) + H3O^1 (-8742) -> No product
+At time : 3.2011 ns Reaction : e_aq^-1 (-424) + H2O2^0 (-11701) -> OH^-1 (-12608) + OH^0 (-12609)
+At time : 3.2011 ns Reaction : e_aq^-1 (-2263) + H2O2^0 (-11670) -> OH^-1 (-12610) + OH^0 (-12611)
+At time : 3.2011 ns Reaction : OH^0 (-5850) + H^0 (-11622) -> No product
+At time : 3.2011 ns Reaction : e_aq^-1 (-5550) + H3O^1 (-11169) -> H^0 (-12612)
+At time : 3.2011 ns Reaction : H3O^1 (-10195) + e_aq^-1 (-5193) -> H^0 (-12613)
+At time : 3.2011 ns Reaction : e_aq^-1 (-3878) + OH^0 (-9714) -> OH^-1 (-12614)
+At time : 3.2011 ns Reaction : e_aq^-1 (-2647) + H3O^1 (-9652) -> H^0 (-12615)
+At time : 3.2011 ns Reaction : OH^0 (-9223) + OH^0 (-6454) -> H2O2^0 (-12616)
+At time : 3.2011 ns Reaction : OH^0 (-7664) + OH^0 (-9029) -> H2O2^0 (-12617)
+At time : 3.2011 ns Reaction : OH^0 (-8983) + H^0 (-8984) -> No product
+At time : 3.2011 ns Reaction : e_aq^-1 (-4094) + H3O^1 (-6745) -> H^0 (-12618)
+At time : 3.3011 ns Reaction : OH^-1 (-12588) + H3O^1 (-6981) -> No product
+At time : 3.3011 ns Reaction : H3O^1 (-10000) + OH^-1 (-12536) -> No product
+At time : 3.3011 ns Reaction : e_aq^-1 (-4536) + H2O2^0 (-12225) -> OH^-1 (-12619) + OH^0 (-12620)
+At time : 3.3011 ns Reaction : OH^-1 (-12104) + H3O^1 (-8748) -> No product
+At time : 3.3011 ns Reaction : e_aq^-1 (-5164) + H2O2^0 (-11951) -> OH^-1 (-12621) + OH^0 (-12622)
+At time : 3.3011 ns Reaction : OH^-1 (-11715) + H3O^1 (-6771) -> No product
+At time : 3.3011 ns Reaction : H^0 (-11215) + e_aq^-1 (-3184) -> OH^-1 (-12623) + H_2^0 (-12624)
+At time : 3.3011 ns Reaction : OH^0 (-10368) + OH^0 (-7324) -> H2O2^0 (-12625)
+At time : 3.3011 ns Reaction : e_aq^-1 (-5627) + H3O^1 (-9383) -> H^0 (-12626)
+At time : 3.3011 ns Reaction : e_aq^-1 (-5591) + OH^0 (-9111) -> OH^-1 (-12627)
+At time : 3.3011 ns Reaction : e_aq^-1 (-574) + OH^0 (-9093) -> OH^-1 (-12628)
+At time : 3.3011 ns Reaction : OH^0 (-6054) + OH^0 (-8507) -> H2O2^0 (-12629)
+At time : 3.3011 ns Reaction : e_aq^-1 (-2856) + OH^0 (-7756) -> OH^-1 (-12630)
+At time : 3.3011 ns Reaction : OH^0 (-6112) + OH^0 (-7388) -> H2O2^0 (-12631)
+At time : 3.3011 ns Reaction : e_aq^-1 (-5504) + OH^0 (-7332) -> OH^-1 (-12632)
+At time : 3.3011 ns Reaction : e_aq^-1 (-3603) + H3O^1 (-6337) -> H^0 (-12633)
+At time : 3.4011 ns Reaction : OH^-1 (-12583) + H3O^1 (-7577) -> No product
+At time : 3.4011 ns Reaction : OH^-1 (-12547) + H3O^1 (-7143) -> No product
+At time : 3.4011 ns Reaction : OH^-1 (-12542) + H3O^1 (-8057) -> No product
+At time : 3.4011 ns Reaction : OH^-1 (-12178) + H3O^1 (-8155) -> No product
+At time : 3.4011 ns Reaction : OH^0 (-11129) + OH^0 (-10389) -> H2O2^0 (-12634)
+At time : 3.4011 ns Reaction : OH^0 (-10481) + OH^0 (-10982) -> H2O2^0 (-12635)
+At time : 3.4011 ns Reaction : OH^0 (-10392) + H^0 (-10246) -> No product
+At time : 3.4011 ns Reaction : e_aq^-1 (-4744) + H3O^1 (-8703) -> H^0 (-12636)
+At time : 3.4011 ns Reaction : e_aq^-1 (-5173) + H3O^1 (-8179) -> H^0 (-12637)
+At time : 3.4011 ns Reaction : e_aq^-1 (-2314) + H3O^1 (-7645) -> H^0 (-12638)
+At time : 3.4011 ns Reaction : e_aq^-1 (-2885) + H3O^1 (-6459) -> H^0 (-12639)
+At time : 3.5011 ns Reaction : OH^0 (-6918) + OH^0 (-12435) -> H2O2^0 (-12640)
+At time : 3.5011 ns Reaction : H3O^1 (-6323) + OH^-1 (-12156) -> No product
+At time : 3.5011 ns Reaction : OH^0 (-12155) + OH^0 (-6140) -> H2O2^0 (-12641)
+At time : 3.5011 ns Reaction : H3O^1 (-7187) + OH^-1 (-11930) -> No product
+At time : 3.5011 ns Reaction : e_aq^-1 (-4263) + H2O2^0 (-11902) -> OH^-1 (-12642) + OH^0 (-12643)
+At time : 3.5011 ns Reaction : H3O^1 (-10669) + e_aq^-1 (-2872) -> H^0 (-12644)
+At time : 3.5011 ns Reaction : H^0 (-10414) + OH^0 (-8176) -> No product
+At time : 3.5011 ns Reaction : H^0 (-10300) + e_aq^-1 (-5569) -> OH^-1 (-12645) + H_2^0 (-12646)
+At time : 3.5011 ns Reaction : H3O^1 (-9866) + e_aq^-1 (-2023) -> H^0 (-12647)
+At time : 3.5011 ns Reaction : e_aq^-1 (-2623) + OH^0 (-9664) -> OH^-1 (-12648)
+At time : 3.5011 ns Reaction : OH^0 (-9403) + OH^0 (-8420) -> H2O2^0 (-12649)
+At time : 3.5011 ns Reaction : e_aq^-1 (-8851) + H^0 (-9080) -> OH^-1 (-12650) + H_2^0 (-12651)
+At time : 3.5011 ns Reaction : OH^0 (-6384) + OH^0 (-7740) -> H2O2^0 (-12652)
+At time : 3.5011 ns Reaction : e_aq^-1 (-4884) + H3O^1 (-7507) -> H^0 (-12653)
+At time : 3.5011 ns Reaction : e_aq^-1 (-533) + e_aq^-1 (-5068) -> OH^-1 (-12654) + OH^-1 (-12655) + H_2^0 (-12656)
+At time : 3.5011 ns Reaction : e_aq^-1 (-4418) + e_aq^-1 (-4386) -> OH^-1 (-12657) + OH^-1 (-12658) + H_2^0 (-12659)
+At time : 3.5011 ns Reaction : H3O^1 (-10824) + OH^-1 (-12642) -> No product
+At time : 3.6011 ns Reaction : e_aq^-1 (-1046) + H^0 (-12653) -> OH^-1 (-12660) + H_2^0 (-12661)
+At time : 3.6011 ns Reaction : OH^-1 (-12650) + H3O^1 (-8457) -> No product
+At time : 3.6011 ns Reaction : e_aq^-1 (-791) + H^0 (-12613) -> OH^-1 (-12662) + H_2^0 (-12663)
+At time : 3.6011 ns Reaction : OH^0 (-12453) + H^0 (-12484) -> No product
+At time : 3.6011 ns Reaction : H^0 (-11881) + OH^0 (-5826) -> No product
+At time : 3.6011 ns Reaction : H3O^1 (-10818) + e_aq^-1 (-4313) -> H^0 (-12664)
+At time : 3.6011 ns Reaction : OH^0 (-9991) + e_aq^-1 (-1487) -> OH^-1 (-12665)
+At time : 3.6011 ns Reaction : e_aq^-1 (-2034) + OH^0 (-9865) -> OH^-1 (-12666)
+At time : 3.6011 ns Reaction : H3O^1 (-6841) + e_aq^-1 (-8527) -> H^0 (-12667)
+At time : 3.6011 ns Reaction : e_aq^-1 (-2661) + H3O^1 (-7661) -> H^0 (-12668)
+At time : 3.6011 ns Reaction : H^0 (-10513) + e_aq^-1 (-4533) -> OH^-1 (-12669) + H_2^0 (-12670)
+At time : 3.7011 ns Reaction : H3O^1 (-10912) + OH^-1 (-12619) -> No product
+At time : 3.7011 ns Reaction : H3O^1 (-9851) + OH^-1 (-12603) -> No product
+At time : 3.7011 ns Reaction : H3O^1 (-7183) + OH^-1 (-12540) -> No product
+At time : 3.7011 ns Reaction : OH^-1 (-12407) + H3O^1 (-5931) -> No product
+At time : 3.7011 ns Reaction : H3O^1 (-10730) + OH^-1 (-12375) -> No product
+At time : 3.7011 ns Reaction : H^0 (-12269) + OH^0 (-6044) -> No product
+At time : 3.7011 ns Reaction : e_aq^-1 (-3127) + H2O2^0 (-11873) -> OH^-1 (-12671) + OH^0 (-12672)
+At time : 3.7011 ns Reaction : H2O2^0 (-11712) + e_aq^-1 (-1593) -> OH^-1 (-12673) + OH^0 (-12674)
+At time : 3.7011 ns Reaction : e_aq^-1 (-2227) + H2O2^0 (-11676) -> OH^-1 (-12675) + OH^0 (-12676)
+At time : 3.7011 ns Reaction : H^0 (-11199) + e_aq^-1 (-3934) -> OH^-1 (-12677) + H_2^0 (-12678)
+At time : 3.7011 ns Reaction : H^0 (-10975) + e_aq^-1 (-1138) -> OH^-1 (-12679) + H_2^0 (-12680)
+At time : 3.7011 ns Reaction : e_aq^-1 (-4821) + OH^0 (-10122) -> OH^-1 (-12681)
+At time : 3.7011 ns Reaction : e_aq^-1 (-5491) + H3O^1 (-8415) -> H^0 (-12682)
+At time : 3.7011 ns Reaction : OH^0 (-6164) + OH^0 (-7530) -> H2O2^0 (-12683)
+At time : 3.7011 ns Reaction : e_aq^-1 (-5098) + H3O^1 (-7229) -> H^0 (-12684)
+At time : 3.7011 ns Reaction : OH^0 (-6570) + OH^0 (-6578) -> H2O2^0 (-12685)
+At time : 3.7011 ns Reaction : e_aq^-1 (-3623) + OH^0 (-6362) -> OH^-1 (-12686)
+At time : 3.7011 ns Reaction : e_aq^-1 (-3614) + e_aq^-1 (-3073) -> OH^-1 (-12687) + OH^-1 (-12688) + H_2^0 (-12689)
+At time : 3.7011 ns Reaction : OH^0 (-5866) + OH^0 (-6968) -> H2O2^0 (-12690)
+At time : 3.8011 ns Reaction : OH^-1 (-12677) + H3O^1 (-6679) -> No product
+At time : 3.8011 ns Reaction : OH^-1 (-12662) + H3O^1 (-8131) -> No product
+At time : 3.8011 ns Reaction : OH^-1 (-12521) + H3O^1 (-10319) -> No product
+At time : 3.8011 ns Reaction : e_aq^-1 (-5608) + H^0 (-12462) -> OH^-1 (-12691) + H_2^0 (-12692)
+At time : 3.8011 ns Reaction : OH^-1 (-12414) + H3O^1 (-8289) -> No product
+At time : 3.8011 ns Reaction : e_aq^-1 (-885) + H^0 (-12108) -> OH^-1 (-12693) + H_2^0 (-12694)
+At time : 3.8011 ns Reaction : e_aq^-1 (-3850) + H2O2^0 (-11844) -> OH^-1 (-12695) + OH^0 (-12696)
+At time : 3.8011 ns Reaction : OH^0 (-11073) + OH^0 (-7198) -> H2O2^0 (-12697)
+At time : 3.8011 ns Reaction : e_aq^-1 (-4316) + H^0 (-10839) -> OH^-1 (-12698) + H_2^0 (-12699)
+At time : 3.8011 ns Reaction : OH^0 (-10643) + OH^0 (-9530) -> H2O2^0 (-12700)
+At time : 3.8011 ns Reaction : OH^0 (-9248) + e_aq^-1 (-3977) -> OH^-1 (-12701)
+At time : 3.8011 ns Reaction : e_aq^-1 (-3561) + OH^0 (-9023) -> OH^-1 (-12702)
+At time : 3.8011 ns Reaction : e_aq^-1 (-5060) + e_aq^-1 (-5132) -> OH^-1 (-12703) + OH^-1 (-12704) + H_2^0 (-12705)
+At time : 3.8011 ns Reaction : e_aq^-1 (-545) + e_aq^-1 (-584) -> OH^-1 (-12706) + OH^-1 (-12707) + H_2^0 (-12708)
+At time : 3.9011 ns Reaction : H3O^1 (-10781) + OH^-1 (-12666) -> No product
+At time : 3.9011 ns Reaction : H3O^1 (-5999) + OH^-1 (-12658) -> No product
+At time : 3.9011 ns Reaction : OH^-1 (-12628) + H3O^1 (-6073) -> No product
+At time : 3.9011 ns Reaction : e_aq^-1 (-3992) + H^0 (-12600) -> OH^-1 (-12709) + H_2^0 (-12710)
+At time : 3.9011 ns Reaction : H3O^1 (-11035) + OH^-1 (-12574) -> No product
+At time : 3.9011 ns Reaction : e_aq^-1 (-1715) + H2O2^0 (-12074) -> OH^-1 (-12711) + OH^0 (-12712)
+At time : 3.9011 ns Reaction : e_aq^-1 (-1005) + H2O2^0 (-11929) -> OH^-1 (-12713) + OH^0 (-12714)
+At time : 3.9011 ns Reaction : H^0 (-11325) + e_aq^-1 (-4417) -> OH^-1 (-12715) + H_2^0 (-12716)
+At time : 3.9011 ns Reaction : e_aq^-1 (-4541) + H3O^1 (-10051) -> H^0 (-12717)
+At time : 3.9011 ns Reaction : OH^0 (-7770) + OH^0 (-8558) -> H2O2^0 (-12718)
+At time : 3.9011 ns Reaction : OH^0 (-5775) + OH^0 (-7804) -> H2O2^0 (-12719)
+At time : 3.9011 ns Reaction : OH^0 (-6680) + OH^0 (-7634) -> H2O2^0 (-12720)
+At time : 3.9011 ns Reaction : e_aq^-1 (-5484) + e_aq^-1 (-5545) -> OH^-1 (-12721) + OH^-1 (-12722) + H_2^0 (-12723)
+At time : 3.9011 ns Reaction : e_aq^-1 (-4235) + e_aq^-1 (-4237) -> OH^-1 (-12724) + OH^-1 (-12725) + H_2^0 (-12726)
+At time : 4.0011 ns Reaction : OH^-1 (-12675) + H3O^1 (-5961) -> No product
+At time : 4.0011 ns Reaction : e_aq^-1 (-2803) + H^0 (-12639) -> OH^-1 (-12727) + H_2^0 (-12728)
+At time : 4.0011 ns Reaction : e_aq^-1 (-344) + H^0 (-12573) -> OH^-1 (-12729) + H_2^0 (-12730)
+At time : 4.0011 ns Reaction : H3O^1 (-6903) + OH^-1 (-12480) -> No product
+At time : 4.0011 ns Reaction : H^0 (-12474) + OH^0 (-8072) -> No product
+At time : 4.0011 ns Reaction : OH^-1 (-12438) + H3O^1 (-7323) -> No product
+At time : 4.0011 ns Reaction : e_aq^-1 (-2363) + H2O2^0 (-12188) -> OH^-1 (-12731) + OH^0 (-12732)
+At time : 4.0011 ns Reaction : H3O^1 (-10684) + e_aq^-1 (-2782) -> H^0 (-12733)
+At time : 4.0011 ns Reaction : e_aq^-1 (-3627) + H3O^1 (-8763) -> H^0 (-12734)
+At time : 4.0011 ns Reaction : e_aq^-1 (-606) + H3O^1 (-8685) -> H^0 (-12735)
+At time : 4.0011 ns Reaction : OH^0 (-7126) + OH^0 (-7500) -> H2O2^0 (-12736)
+At time : 4.1011 ns Reaction : e_aq^-1 (-1741) + H^0 (-12667) -> OH^-1 (-12737) + H_2^0 (-12738)
+At time : 4.1011 ns Reaction : OH^-1 (-12595) + H3O^1 (-6569) -> No product
+At time : 4.1011 ns Reaction : OH^-1 (-12587) + H3O^1 (-6561) -> No product
+At time : 4.1011 ns Reaction : OH^-1 (-12558) + H3O^1 (-8811) -> No product
+At time : 4.1011 ns Reaction : H3O^1 (-9837) + OH^-1 (-12458) -> No product
+At time : 4.1011 ns Reaction : e_aq^-1 (-546) + H^0 (-12416) -> OH^-1 (-12739) + H_2^0 (-12740)
+At time : 4.1011 ns Reaction : OH^-1 (-12174) + H3O^1 (-8847) -> No product
+At time : 4.1011 ns Reaction : e_aq^-1 (-5561) + H^0 (-11669) -> OH^-1 (-12741) + H_2^0 (-12742)
+At time : 4.1011 ns Reaction : e_aq^-1 (-4192) + H2O2^0 (-11561) -> OH^-1 (-12743) + OH^0 (-12744)
+At time : 4.1011 ns Reaction : H^0 (-11217) + e_aq^-1 (-3584) -> OH^-1 (-12745) + H_2^0 (-12746)
+At time : 4.1011 ns Reaction : OH^0 (-9599) + H^0 (-9595) -> No product
+At time : 4.1011 ns Reaction : e_aq^-1 (-4186) + H3O^1 (-7613) -> H^0 (-12747)
+At time : 4.1011 ns Reaction : e_aq^-1 (-4391) + OH^0 (-7590) -> OH^-1 (-12748)
+At time : 4.1011 ns Reaction : e_aq^-1 (-4824) + H3O^1 (-7069) -> H^0 (-12749)
+At time : 4.1011 ns Reaction : e_aq^-1 (-4657) + H3O^1 (-7023) -> H^0 (-12750)
+At time : 4.1011 ns Reaction : OH^-1 (-12737) + H3O^1 (-8721) -> No product
+At time : 4.2011 ns Reaction : H3O^1 (-8616) + OH^-1 (-12713) -> No product
+At time : 4.2011 ns Reaction : H^0 (-12247) + OH^0 (-12622) -> No product
+At time : 4.2011 ns Reaction : OH^-1 (-12537) + H3O^1 (-6785) -> No product
+At time : 4.2011 ns Reaction : H3O^1 (-6125) + OH^-1 (-12509) -> No product
+At time : 4.2011 ns Reaction : OH^-1 (-12222) + H3O^1 (-6051) -> No product
+At time : 4.2011 ns Reaction : e_aq^-1 (-5368) + H^0 (-11206) -> OH^-1 (-12751) + H_2^0 (-12752)
+At time : 4.2011 ns Reaction : H^0 (-11097) + OH^0 (-6080) -> No product
+At time : 4.2011 ns Reaction : OH^0 (-10886) + OH^0 (-6926) -> H2O2^0 (-12753)
+At time : 4.2011 ns Reaction : OH^0 (-9886) + OH^0 (-7896) -> H2O2^0 (-12754)
+At time : 4.2011 ns Reaction : H3O^1 (-9429) + e_aq^-1 (-4946) -> H^0 (-12755)
+At time : 4.2011 ns Reaction : e_aq^-1 (-436) + H3O^1 (-7239) -> H^0 (-12756)
+At time : 4.2011 ns Reaction : OH^0 (-6564) + OH^0 (-6582) -> H2O2^0 (-12757)
+At time : 4.2011 ns Reaction : e_aq^-1 (-3620) + OH^0 (-6358) -> OH^-1 (-12758)
+At time : 4.2011 ns Reaction : e_aq^-1 (-1193) + OH^0 (-8459) -> OH^-1 (-12759)
+At time : 4.3011 ns Reaction : OH^-1 (-12729) + H3O^1 (-8239) -> No product
+At time : 4.3011 ns Reaction : e_aq^-1 (-2426) + H^0 (-12449) -> OH^-1 (-12760) + H_2^0 (-12761)
+At time : 4.3011 ns Reaction : OH^-1 (-12379) + H3O^1 (-7383) -> No product
+At time : 4.3011 ns Reaction : OH^0 (-10923) + H^0 (-12366) -> No product
+At time : 4.3011 ns Reaction : e_aq^-1 (-4059) + H^0 (-10766) -> OH^-1 (-12762) + H_2^0 (-12763)
+At time : 4.3011 ns Reaction : OH^0 (-9614) + OH^0 (-10685) -> H2O2^0 (-12764)
+At time : 4.3011 ns Reaction : OH^0 (-9889) + OH^0 (-7894) -> H2O2^0 (-12765)
+At time : 4.3011 ns Reaction : OH^0 (-9740) + OH^0 (-7818) -> H2O2^0 (-12766)
+At time : 4.3011 ns Reaction : e_aq^-1 (-4412) + e_aq^-1 (-8713) -> OH^-1 (-12767) + OH^-1 (-12768) + H_2^0 (-12769)
+At time : 4.3011 ns Reaction : e_aq^-1 (-585) + H3O^1 (-8145) -> H^0 (-12770)
+At time : 4.3011 ns Reaction : OH^0 (-5736) + OH^0 (-8042) -> H2O2^0 (-12771)
+At time : 4.3011 ns Reaction : e_aq^-1 (-5423) + H3O^1 (-7313) -> H^0 (-12772)
+At time : 4.3011 ns Reaction : e_aq^-1 (-3807) + H3O^1 (-6583) -> H^0 (-12773)
+At time : 4.3011 ns Reaction : e_aq^-1 (-3763) + OH^0 (-6530) -> OH^-1 (-12774)
+At time : 4.3011 ns Reaction : e_aq^-1 (-208) + e_aq^-1 (-5577) -> OH^-1 (-12775) + OH^-1 (-12776) + H_2^0 (-12777)
+At time : 4.3011 ns Reaction : OH^0 (-6906) + OH^0 (-8714) -> H2O2^0 (-12778)
+At time : 4.4011 ns Reaction : H3O^1 (-11059) + OH^-1 (-12621) -> No product
+At time : 4.4011 ns Reaction : e_aq^-1 (-4736) + H2O2^0 (-12060) -> OH^-1 (-12779) + OH^0 (-12780)
+At time : 4.4011 ns Reaction : H2O2^0 (-11616) + e_aq^-1 (-4474) -> OH^-1 (-12781) + OH^0 (-12782)
+At time : 4.4011 ns Reaction : H^0 (-11269) + OH^0 (-7256) -> No product
+At time : 4.4011 ns Reaction : H3O^1 (-11147) + e_aq^-1 (-5413) -> H^0 (-12783)
+At time : 4.4011 ns Reaction : OH^0 (-10454) + OH^0 (-11021) -> H2O2^0 (-12784)
+At time : 4.4011 ns Reaction : OH^0 (-9592) + e_aq^-1 (-2790) -> OH^-1 (-12785)
+At time : 4.4011 ns Reaction : H3O^1 (-7337) + e_aq^-1 (-8482) -> H^0 (-12786)
+At time : 4.4011 ns Reaction : e_aq^-1 (-3781) + H3O^1 (-7779) -> H^0 (-12787)
+At time : 4.4011 ns Reaction : e_aq^-1 (-5310) + H3O^1 (-7265) -> H^0 (-12788)
+At time : 4.5011 ns Reaction : H3O^1 (-10303) + OH^-1 (-12741) -> No product
+At time : 4.5011 ns Reaction : OH^-1 (-12722) + H3O^1 (-5853) -> No product
+At time : 4.5011 ns Reaction : H3O^1 (-7707) + OH^-1 (-12702) -> No product
+At time : 4.5011 ns Reaction : H3O^1 (-5993) + OH^-1 (-12673) -> No product
+At time : 4.5011 ns Reaction : e_aq^-1 (-2349) + H^0 (-12581) -> OH^-1 (-12789) + H_2^0 (-12790)
+At time : 4.5011 ns Reaction : H3O^1 (-9806) + OH^-1 (-12533) -> No product
+At time : 4.5011 ns Reaction : H2O2^0 (-12303) + e_aq^-1 (-1258) -> OH^-1 (-12791) + OH^0 (-12792)
+At time : 4.5011 ns Reaction : OH^0 (-11012) + e_aq^-1 (-944) -> OH^-1 (-12793)
+At time : 4.5011 ns Reaction : H^0 (-10979) + OH^0 (-8044) -> No product
+At time : 4.5011 ns Reaction : OH^0 (-6848) + OH^0 (-7920) -> H2O2^0 (-12794)
+At time : 4.5011 ns Reaction : e_aq^-1 (-2691) + OH^0 (-7784) -> OH^-1 (-12795)
+At time : 4.5011 ns Reaction : e_aq^-1 (-4205) + OH^0 (-6832) -> OH^-1 (-12796)
+At time : 4.5011 ns Reaction : e_aq^-1 (-2316) + OH^0 (-6678) -> OH^-1 (-12797)
+At time : 4.5011 ns Reaction : e_aq^-1 (-3703) + H3O^1 (-6435) -> H^0 (-12798)
+At time : 4.6011 ns Reaction : e_aq^-1 (-4551) + H2O2^0 (-12127) -> OH^-1 (-12799) + OH^0 (-12800)
+At time : 4.6011 ns Reaction : e_aq^-1 (-1232) + H3O^1 (-7527) -> H^0 (-12801)
+At time : 4.6011 ns Reaction : e_aq^-1 (-5416) + H3O^1 (-7269) -> H^0 (-12802)
+At time : 4.6011 ns Reaction : e_aq^-1 (-3797) + H3O^1 (-6493) -> H^0 (-12803)
+At time : 4.6011 ns Reaction : e_aq^-1 (-3649) + OH^0 (-6398) -> OH^-1 (-12804)
+At time : 4.6011 ns Reaction : H3O^1 (-10108) + OH^-1 (-12681) -> No product
+At time : 4.7011 ns Reaction : OH^-1 (-12781) + H3O^1 (-6907) -> No product
+At time : 4.7011 ns Reaction : OH^-1 (-12693) + H3O^1 (-10444) -> No product
+At time : 4.7011 ns Reaction : OH^-1 (-12688) + H3O^1 (-6341) -> No product
+At time : 4.7011 ns Reaction : OH^0 (-12676) + e_aq^-1 (-2252) -> OH^-1 (-12805)
+At time : 4.7011 ns Reaction : H3O^1 (-5833) + OH^-1 (-12610) -> No product
+At time : 4.7011 ns Reaction : H2O2^0 (-11654) + e_aq^-1 (-4546) -> OH^-1 (-12806) + OH^0 (-12807)
+At time : 4.7011 ns Reaction : e_aq^-1 (-1497) + OH^0 (-10910) -> OH^-1 (-12808)
+At time : 4.7011 ns Reaction : H^0 (-9126) + OH^0 (-10764) -> No product
+At time : 4.7011 ns Reaction : OH^0 (-10348) + OH^0 (-8320) -> H2O2^0 (-12809)
+At time : 4.7011 ns Reaction : e_aq^-1 (-5307) + e_aq^-1 (-8401) -> OH^-1 (-12810) + OH^-1 (-12811) + H_2^0 (-12812)
+At time : 4.7011 ns Reaction : OH^0 (-7498) + OH^0 (-8092) -> H2O2^0 (-12813)
+At time : 4.7011 ns Reaction : OH^0 (-5968) + OH^0 (-6740) -> H2O2^0 (-12814)
+At time : 4.7011 ns Reaction : OH^0 (-6508) + OH^0 (-6520) -> H2O2^0 (-12815)
+At time : 4.8011 ns Reaction : H^0 (-12282) + OH^0 (-7106) -> No product
+At time : 4.8011 ns Reaction : H2O2^0 (-11571) + e_aq^-1 (-5597) -> OH^-1 (-12816) + OH^0 (-12817)
+At time : 4.8011 ns Reaction : e_aq^-1 (-5583) + H2O2^0 (-11387) -> OH^-1 (-12818) + OH^0 (-12819)
+At time : 4.8011 ns Reaction : e_aq^-1 (-394) + H^0 (-10238) -> OH^-1 (-12820) + H_2^0 (-12821)
+At time : 4.8011 ns Reaction : H^0 (-10218) + OH^0 (-10227) -> No product
+At time : 4.8011 ns Reaction : e_aq^-1 (-2412) + H3O^1 (-8781) -> H^0 (-12822)
+At time : 4.8011 ns Reaction : e_aq^-1 (-3608) + OH^0 (-7734) -> OH^-1 (-12823)
+At time : 4.9011 ns Reaction : OH^-1 (-12805) + H3O^1 (-5871) -> No product
+At time : 4.9011 ns Reaction : OH^-1 (-12774) + H3O^1 (-6527) -> No product
+At time : 4.9011 ns Reaction : H3O^1 (-11176) + OH^-1 (-12691) -> No product
+At time : 4.9011 ns Reaction : H3O^1 (-6615) + OH^-1 (-12614) -> No product
+At time : 4.9011 ns Reaction : e_aq^-1 (-2086) + H^0 (-12569) -> OH^-1 (-12824) + H_2^0 (-12825)
+At time : 4.9011 ns Reaction : OH^0 (-12559) + OH^0 (-8803) -> H2O2^0 (-12826)
+At time : 4.9011 ns Reaction : H^0 (-10951) + e_aq^-1 (-4698) -> OH^-1 (-12827) + H_2^0 (-12828)
+At time : 4.9011 ns Reaction : H^0 (-10778) + OH^0 (-6780) -> No product
+At time : 4.9011 ns Reaction : OH^0 (-9270) + OH^0 (-6738) -> H2O2^0 (-12829)
+At time : 4.9011 ns Reaction : e_aq^-1 (-4304) + H3O^1 (-6863) -> H^0 (-12830)
+At time : 4.9011 ns Reaction : e_aq^-1 (-3782) + H3O^1 (-6501) -> H^0 (-12831)
+At time : 5.0011 ns Reaction : OH^-1 (-12808) + H3O^1 (-6955) -> No product
+At time : 5.0011 ns Reaction : OH^0 (-12712) + e_aq^-1 (-4433) -> OH^-1 (-12832)
+At time : 5.0011 ns Reaction : OH^-1 (-12711) + H3O^1 (-6893) -> No product
+At time : 5.0011 ns Reaction : OH^-1 (-12545) + H3O^1 (-7091) -> No product
+At time : 5.0011 ns Reaction : OH^-1 (-12424) + H3O^1 (-6107) -> No product
+At time : 5.0011 ns Reaction : OH^-1 (-12088) + H3O^1 (-6077) -> No product
+At time : 5.0011 ns Reaction : OH^0 (-11827) + OH^0 (-6934) -> H2O2^0 (-12833)
+At time : 5.0011 ns Reaction : OH^0 (-11070) + H^0 (-8970) -> No product
+At time : 5.0011 ns Reaction : OH^0 (-9937) + H^0 (-10829) -> No product
+At time : 5.0011 ns Reaction : OH^0 (-10469) + e_aq^-1 (-8614) -> OH^-1 (-12834)
+At time : 5.0011 ns Reaction : e_aq^-1 (-5492) + H3O^1 (-8263) -> H^0 (-12835)
+At time : 5.0011 ns Reaction : e_aq^-1 (-4931) + H3O^1 (-8085) -> H^0 (-12836)
+At time : 5.0011 ns Reaction : OH^0 (-7076) + OH^0 (-7516) -> H2O2^0 (-12837)
+At time : 5.0011 ns Reaction : e_aq^-1 (-3672) + H3O^1 (-6383) -> H^0 (-12838)
+At time : 5.0011 ns Reaction : e_aq^-1 (-4175) + e_aq^-1 (-1991) -> OH^-1 (-12839) + OH^-1 (-12840) + H_2^0 (-12841)
+At time : 5.1011 ns Reaction : H3O^1 (-10504) + OH^-1 (-12791) -> No product
+At time : 5.1011 ns Reaction : H^0 (-12158) + OH^0 (-6868) -> No product
+At time : 5.1011 ns Reaction : e_aq^-1 (-940) + H2O2^0 (-11990) -> OH^-1 (-12842) + OH^0 (-12843)
+At time : 5.1011 ns Reaction : e_aq^-1 (-4403) + H2O2^0 (-11453) -> OH^-1 (-12844) + OH^0 (-12845)
+At time : 5.1011 ns Reaction : H3O^1 (-10968) + e_aq^-1 (-4776) -> H^0 (-12846)
+At time : 5.1011 ns Reaction : e_aq^-1 (-2098) + OH^0 (-10768) -> OH^-1 (-12847)
+At time : 5.1011 ns Reaction : OH^0 (-10676) + e_aq^-1 (-2753) -> OH^-1 (-12848)
+At time : 5.1011 ns Reaction : OH^0 (-9170) + e_aq^-1 (-3443) -> OH^-1 (-12849)
+At time : 5.1011 ns Reaction : e_aq^-1 (-5517) + OH^0 (-8663) -> OH^-1 (-12850)
+At time : 5.1011 ns Reaction : e_aq^-1 (-5658) + OH^0 (-8648) -> OH^-1 (-12851)
+At time : 5.1011 ns Reaction : e_aq^-1 (-398) + H3O^1 (-6087) -> H^0 (-12852)
+At time : 5.2011 ns Reaction : H3O^1 (-7505) + OH^-1 (-12793) -> No product
+At time : 5.2011 ns Reaction : H3O^1 (-10634) + OH^-1 (-12623) -> No product
+At time : 5.2011 ns Reaction : OH^-1 (-12493) + H3O^1 (-7585) -> No product
+At time : 5.2011 ns Reaction : OH^0 (-6050) + H^0 (-12077) -> No product
+At time : 5.2011 ns Reaction : H^0 (-11744) + e_aq^-1 (-1362) -> OH^-1 (-12853) + H_2^0 (-12854)
+At time : 5.2011 ns Reaction : H2O2^0 (-11544) + e_aq^-1 (-4485) -> OH^-1 (-12855) + OH^0 (-12856)
+At time : 5.2011 ns Reaction : OH^0 (-10748) + e_aq^-1 (-4080) -> OH^-1 (-12857)
+At time : 5.2011 ns Reaction : H3O^1 (-6039) + e_aq^-1 (-8605) -> H^0 (-12858)
+At time : 5.2011 ns Reaction : e_aq^-1 (-3629) + OH^0 (-6356) -> OH^-1 (-12859)
+At time : 5.3011 ns Reaction : H3O^1 (-10514) + OH^-1 (-12806) -> No product
+At time : 5.3011 ns Reaction : H^0 (-10369) + H^0 (-12786) -> H_2^0 (-12860)
+At time : 5.3011 ns Reaction : H3O^1 (-6667) + OH^-1 (-12731) -> No product
+At time : 5.3011 ns Reaction : OH^-1 (-12627) + H3O^1 (-7367) -> No product
+At time : 5.3011 ns Reaction : OH^0 (-10052) + OH^0 (-12565) -> H2O2^0 (-12861)
+At time : 5.3011 ns Reaction : OH^0 (-12097) + H^0 (-10177) -> No product
+At time : 5.3011 ns Reaction : OH^0 (-10433) + OH^0 (-10435) -> H2O2^0 (-12862)
+At time : 5.3011 ns Reaction : e_aq^-1 (-4188) + OH^0 (-7906) -> OH^-1 (-12863)
+At time : 5.3011 ns Reaction : e_aq^-1 (-1283) + H3O^1 (-6975) -> H^0 (-12864)
+At time : 5.3011 ns Reaction : e_aq^-1 (-561) + H3O^1 (-6143) -> H^0 (-12865)
+At time : 5.3011 ns Reaction : e_aq^-1 (-3527) + H3O^1 (-5819) -> H^0 (-12866)
+At time : 5.4011 ns Reaction : OH^-1 (-12608) + H3O^1 (-8219) -> No product
+At time : 5.4011 ns Reaction : OH^0 (-9582) + H^0 (-12529) -> No product
+At time : 5.4011 ns Reaction : OH^-1 (-12497) + H3O^1 (-7903) -> No product
+At time : 5.4011 ns Reaction : H2O2^0 (-11746) + e_aq^-1 (-4580) -> OH^-1 (-12867) + OH^0 (-12868)
+At time : 5.4011 ns Reaction : OH^0 (-10990) + e_aq^-1 (-4809) -> OH^-1 (-12869)
+At time : 5.4011 ns Reaction : e_aq^-1 (-3984) + H3O^1 (-10739) -> H^0 (-12870)
+At time : 5.4011 ns Reaction : H^0 (-9276) + OH^0 (-9828) -> No product
+At time : 5.4011 ns Reaction : OH^0 (-9626) + OH^0 (-6498) -> H2O2^0 (-12871)
+At time : 5.4011 ns Reaction : OH^0 (-7550) + OH^0 (-7980) -> H2O2^0 (-12872)
+At time : 5.4011 ns Reaction : OH^-1 (-5756) + H3O^1 (-6857) -> No product
+At time : 5.4011 ns Reaction : OH^-1 (-12832) + H3O^1 (-7927) -> No product
+At time : 5.5011 ns Reaction : OH^-1 (-12867) + H3O^1 (-6987) -> No product
+At time : 5.5011 ns Reaction : H3O^1 (-6631) + OH^-1 (-12760) -> No product
+At time : 5.5011 ns Reaction : OH^-1 (-12671) + H3O^1 (-6317) -> No product
+At time : 5.5011 ns Reaction : OH^-1 (-12607) + H3O^1 (-8123) -> No product
+At time : 5.5011 ns Reaction : H^0 (-11188) + H^0 (-12255) -> H_2^0 (-12873)
+At time : 5.5011 ns Reaction : H2O2^0 (-11927) + e_aq^-1 (-8656) -> OH^-1 (-12874) + OH^0 (-12875)
+At time : 5.5011 ns Reaction : OH^0 (-10784) + e_aq^-1 (-4161) -> OH^-1 (-12876)
+At time : 5.5011 ns Reaction : OH^0 (-10485) + OH^0 (-7086) -> H2O2^0 (-12877)
+At time : 5.5011 ns Reaction : H3O^1 (-10347) + e_aq^-1 (-5710) -> H^0 (-12878)
+At time : 5.5011 ns Reaction : H^0 (-9902) + OH^0 (-8825) -> No product
+At time : 5.5011 ns Reaction : OH^0 (-5793) + OH^0 (-8720) -> H2O2^0 (-12879)
+At time : 5.5011 ns Reaction : e_aq^-1 (-320) + H3O^1 (-8334) -> H^0 (-12880)
+At time : 5.5011 ns Reaction : e_aq^-1 (-1096) + H3O^1 (-8065) -> H^0 (-12881)
+At time : 5.5011 ns Reaction : e_aq^-1 (-1004) + H3O^1 (-8059) -> H^0 (-12882)
+At time : 5.5011 ns Reaction : e_aq^-1 (-4155) + H3O^1 (-7889) -> H^0 (-12883)
+At time : 5.5011 ns Reaction : OH^0 (-6628) + OH^0 (-6656) -> H2O2^0 (-12884)
+At time : 5.6011 ns Reaction : H3O^1 (-10984) + OH^-1 (-12869) -> No product
+At time : 5.6011 ns Reaction : H3O^1 (-6727) + OH^-1 (-12847) -> No product
+At time : 5.6011 ns Reaction : H3O^1 (-11064) + OH^-1 (-12704) -> No product
+At time : 5.6011 ns Reaction : OH^-1 (-12701) + H3O^1 (-8547) -> No product
+At time : 5.6011 ns Reaction : e_aq^-1 (-51) + H^0 (-12626) -> OH^-1 (-12885) + H_2^0 (-12886)
+At time : 5.6011 ns Reaction : OH^-1 (-12564) + H3O^1 (-10037) -> No product
+At time : 5.6011 ns Reaction : H3O^1 (-10632) + OH^-1 (-12186) -> No product
+At time : 5.6011 ns Reaction : OH^-1 (-12157) + H3O^1 (-7219) -> No product
+At time : 5.6011 ns Reaction : e_aq^-1 (-2698) + H2O2^0 (-11750) -> OH^-1 (-12887) + OH^0 (-12888)
+At time : 5.6011 ns Reaction : OH^0 (-10575) + OH^0 (-10753) -> H2O2^0 (-12889)
+At time : 5.6011 ns Reaction : e_aq^-1 (-3921) + H3O^1 (-10728) -> H^0 (-12890)
+At time : 5.6011 ns Reaction : H^0 (-9590) + e_aq^-1 (-3690) -> OH^-1 (-12891) + H_2^0 (-12892)
+At time : 5.6011 ns Reaction : OH^0 (-9580) + OH^0 (-7748) -> H2O2^0 (-12893)
+At time : 5.6011 ns Reaction : e_aq^-1 (-5707) + e_aq^-1 (-8944) -> OH^-1 (-12894) + OH^-1 (-12895) + H_2^0 (-12896)
+At time : 5.6011 ns Reaction : e_aq^-1 (-3602) + OH^0 (-8753) -> OH^-1 (-12897)
+At time : 5.6011 ns Reaction : OH^0 (-7558) + OH^0 (-8453) -> H2O2^0 (-12898)
+At time : 5.6011 ns Reaction : e_aq^-1 (-3922) + H3O^1 (-6623) -> H^0 (-12899)
+At time : 5.6011 ns Reaction : e_aq^-1 (-2826) + e_aq^-1 (-2842) -> OH^-1 (-12900) + OH^-1 (-12901) + H_2^0 (-12902)
+At time : 5.7011 ns Reaction : H3O^1 (-6437) + OH^-1 (-12891) -> No product
+At time : 5.7011 ns Reaction : OH^-1 (-12834) + H3O^1 (-7083) -> No product
+At time : 5.7011 ns Reaction : H3O^1 (-10297) + OH^-1 (-12632) -> No product
+At time : 5.7011 ns Reaction : OH^-1 (-12482) + H3O^1 (-8817) -> No product
+At time : 5.7011 ns Reaction : e_aq^-1 (-3651) + H^0 (-12053) -> OH^-1 (-12903) + H_2^0 (-12904)
+At time : 5.7011 ns Reaction : OH^0 (-10367) + OH^0 (-11159) -> H2O2^0 (-12905)
+At time : 5.7011 ns Reaction : e_aq^-1 (-3502) + OH^0 (-8739) -> OH^-1 (-12906)
+At time : 5.7011 ns Reaction : e_aq^-1 (-517) + H3O^1 (-7241) -> H^0 (-12907)
+At time : 5.7011 ns Reaction : e_aq^-1 (-3860) + OH^0 (-5934) -> OH^-1 (-12908)
+At time : 5.8011 ns Reaction : OH^-1 (-12767) + H3O^1 (-7589) -> No product
+At time : 5.8011 ns Reaction : e_aq^-1 (-5206) + H^0 (-11069) -> OH^-1 (-12909) + H_2^0 (-12910)
+At time : 5.8011 ns Reaction : H^0 (-10586) + H^0 (-9261) -> H_2^0 (-12911)
+At time : 5.8011 ns Reaction : e_aq^-1 (-5226) + H3O^1 (-8400) -> H^0 (-12912)
+At time : 5.8011 ns Reaction : e_aq^-1 (-3034) + H3O^1 (-8349) -> H^0 (-12913)
+At time : 5.8011 ns Reaction : e_aq^-1 (-352) + H3O^1 (-8215) -> H^0 (-12914)
+At time : 5.8011 ns Reaction : e_aq^-1 (-692) + H3O^1 (-8147) -> H^0 (-12915)
+At time : 5.8011 ns Reaction : e_aq^-1 (-4801) + OH^0 (-5742) -> OH^-1 (-12916)
+At time : 5.8011 ns Reaction : e_aq^-1 (-283) + e_aq^-1 (-5378) -> OH^-1 (-12917) + OH^-1 (-12918) + H_2^0 (-12919)
+At time : 5.9011 ns Reaction : H3O^1 (-10353) + OH^-1 (-12885) -> No product
+At time : 5.9011 ns Reaction : H3O^1 (-10470) + OH^-1 (-12842) -> No product
+At time : 5.9011 ns Reaction : e_aq^-1 (-1471) + H2O2^0 (-11984) -> OH^-1 (-12920) + OH^0 (-12921)
+At time : 5.9011 ns Reaction : e_aq^-1 (-4703) + H2O2^0 (-11405) -> OH^-1 (-12922) + OH^0 (-12923)
+At time : 5.9011 ns Reaction : H3O^1 (-11006) + e_aq^-1 (-4956) -> H^0 (-12924)
+At time : 5.9011 ns Reaction : H^0 (-10007) + e_aq^-1 (-4492) -> OH^-1 (-12925) + H_2^0 (-12926)
+At time : 5.9011 ns Reaction : e_aq^-1 (-4255) + H3O^1 (-7605) -> H^0 (-12927)
+At time : 5.9011 ns Reaction : e_aq^-1 (-3543) + OH^0 (-6260) -> OH^-1 (-12928)
+At time : 6.0011 ns Reaction : OH^-1 (-12707) + H3O^1 (-7243) -> No product
+At time : 6.0011 ns Reaction : H^0 (-12647) + OH^0 (-8435) -> No product
+At time : 6.0011 ns Reaction : OH^-1 (-12585) + H3O^1 (-7539) -> No product
+At time : 6.0011 ns Reaction : H2O2^0 (-12517) + e_aq^-1 (-5521) -> OH^-1 (-12929) + OH^0 (-12930)
+At time : 6.0011 ns Reaction : e_aq^-1 (-5508) + H^0 (-12177) -> OH^-1 (-12931) + H_2^0 (-12932)
+At time : 6.0011 ns Reaction : OH^0 (-11303) + H^0 (-11221) -> No product
+At time : 6.0011 ns Reaction : H^0 (-11279) + OH^0 (-6742) -> No product
+At time : 6.0011 ns Reaction : H3O^1 (-10281) + e_aq^-1 (-8479) -> H^0 (-12933)
+At time : 6.0011 ns Reaction : H^0 (-9220) + OH^0 (-9603) -> No product
+At time : 6.0011 ns Reaction : e_aq^-1 (-8509) + H3O^1 (-8901) -> H^0 (-12934)
+At time : 6.0011 ns Reaction : OH^0 (-6744) + OH^0 (-6748) -> H2O2^0 (-12935)
+At time : 6.0011 ns Reaction : e_aq^-1 (-5679) + OH^0 (-8661) -> OH^-1 (-12936)
+At time : 6.1011 ns Reaction : OH^-1 (-12874) + H3O^1 (-8303) -> No product
+At time : 6.1011 ns Reaction : OH^-1 (-12799) + H3O^1 (-8859) -> No product
+At time : 6.1011 ns Reaction : e_aq^-1 (-4542) + OH^0 (-12782) -> OH^-1 (-12937)
+At time : 6.1011 ns Reaction : H2O2^0 (-11950) + e_aq^-1 (-722) -> OH^-1 (-12938) + OH^0 (-12939)
+At time : 6.1011 ns Reaction : e_aq^-1 (-1930) + H2O2^0 (-11918) -> OH^-1 (-12940) + OH^0 (-12941)
+At time : 6.1011 ns Reaction : OH^0 (-10185) + OH^0 (-8104) -> H2O2^0 (-12942)
+At time : 6.1011 ns Reaction : e_aq^-1 (-865) + H3O^1 (-10150) -> H^0 (-12943)
+At time : 6.1011 ns Reaction : e_aq^-1 (-5268) + H3O^1 (-7455) -> H^0 (-12944)
+At time : 6.1011 ns Reaction : e_aq^-1 (-5459) + OH^0 (-7416) -> OH^-1 (-12945)
+At time : 6.1011 ns Reaction : e_aq^-1 (-712) + H3O^1 (-7147) -> H^0 (-12946)
+At time : 6.2011 ns Reaction : H^0 (-12870) + OH^0 (-7636) -> No product
+At time : 6.2011 ns Reaction : OH^0 (-11181) + OH^0 (-9407) -> H2O2^0 (-12947)
+At time : 6.2011 ns Reaction : OH^0 (-11060) + OH^0 (-7480) -> H2O2^0 (-12948)
+At time : 6.2011 ns Reaction : OH^0 (-8146) + OH^0 (-8684) -> H2O2^0 (-12949)
+At time : 6.2011 ns Reaction : e_aq^-1 (-5210) + H3O^1 (-7463) -> H^0 (-12950)
+At time : 6.3011 ns Reaction : H3O^1 (-7851) + OH^-1 (-12857) -> No product
+At time : 6.3011 ns Reaction : H3O^1 (-6901) + OH^-1 (-12855) -> No product
+At time : 6.3011 ns Reaction : H3O^1 (-10386) + OH^-1 (-12751) -> No product
+At time : 6.3011 ns Reaction : H3O^1 (-9692) + OH^-1 (-12695) -> No product
+At time : 6.3011 ns Reaction : e_aq^-1 (-1516) + OH^0 (-12620) -> OH^-1 (-12951)
+At time : 6.3011 ns Reaction : OH^0 (-9410) + OH^0 (-10309) -> H2O2^0 (-12952)
+At time : 6.3011 ns Reaction : OH^0 (-9450) + OH^0 (-9037) -> H2O2^0 (-12953)
+At time : 6.3011 ns Reaction : e_aq^-1 (-4710) + H3O^1 (-8051) -> H^0 (-12954)
+At time : 6.3011 ns Reaction : e_aq^-1 (-573) + H3O^1 (-7197) -> H^0 (-12955)
+At time : 6.3011 ns Reaction : OH^0 (-6298) + OH^0 (-6316) -> H2O2^0 (-12956)
+At time : 6.3011 ns Reaction : e_aq^-1 (-3189) + OH^0 (-6288) -> OH^-1 (-12957)
+At time : 6.3011 ns Reaction : e_aq^-1 (-1683) + H3O^1 (-6189) -> H^0 (-12958)
+At time : 6.3011 ns Reaction : e_aq^-1 (-4795) + e_aq^-1 (-1218) -> OH^-1 (-12959) + OH^-1 (-12960) + H_2^0 (-12961)
+At time : 6.3011 ns Reaction : e_aq^-1 (-4742) + OH^0 (-7524) -> OH^-1 (-12962)
+At time : 6.4011 ns Reaction : H^0 (-12958) + e_aq^-1 (-4409) -> OH^-1 (-12963) + H_2^0 (-12964)
+At time : 6.4011 ns Reaction : OH^-1 (-12925) + H3O^1 (-6989) -> No product
+At time : 6.4011 ns Reaction : e_aq^-1 (-761) + H2O2^0 (-12029) -> OH^-1 (-12965) + OH^0 (-12966)
+At time : 6.4011 ns Reaction : e_aq^-1 (-3730) + H2O2^0 (-11395) -> OH^-1 (-12967) + OH^0 (-12968)
+At time : 6.4011 ns Reaction : OH^0 (-10395) + e_aq^-1 (-5264) -> OH^-1 (-12969)
+At time : 6.4011 ns Reaction : e_aq^-1 (-842) + H3O^1 (-10171) -> H^0 (-12970)
+At time : 6.4011 ns Reaction : e_aq^-1 (-1306) + OH^0 (-8702) -> OH^-1 (-12971)
+At time : 6.4011 ns Reaction : e_aq^-1 (-4693) + H3O^1 (-6999) -> H^0 (-12972)
+At time : 6.5011 ns Reaction : OH^-1 (-12969) + H3O^1 (-6135) -> No product
+At time : 6.5011 ns Reaction : H3O^1 (-10589) + OH^-1 (-12789) -> No product
+At time : 6.5011 ns Reaction : OH^-1 (-12487) + H3O^1 (-7489) -> No product
+At time : 6.5011 ns Reaction : OH^0 (-10752) + OH^0 (-6708) -> H2O2^0 (-12973)
+At time : 6.5011 ns Reaction : OH^0 (-10205) + e_aq^-1 (-5202) -> OH^-1 (-12974)
+At time : 6.5011 ns Reaction : OH^0 (-9630) + OH^0 (-6482) -> H2O2^0 (-12975)
+At time : 6.5011 ns Reaction : H^0 (-9329) + e_aq^-1 (-4875) -> OH^-1 (-12976) + H_2^0 (-12977)
+At time : 6.5011 ns Reaction : OH^0 (-8178) + OH^0 (-8190) -> H2O2^0 (-12978)
+At time : 6.5011 ns Reaction : e_aq^-1 (-1976) + H3O^1 (-7615) -> H^0 (-12979)
+At time : 6.5011 ns Reaction : e_aq^-1 (-634) + H3O^1 (-7217) -> H^0 (-12980)
+At time : 6.6011 ns Reaction : OH^-1 (-12971) + H3O^1 (-6995) -> No product
+At time : 6.6011 ns Reaction : OH^-1 (-12795) + H3O^1 (-9690) -> No product
+At time : 6.6011 ns Reaction : e_aq^-1 (-3947) + OH^0 (-10733) -> OH^-1 (-12981)
+At time : 6.6011 ns Reaction : OH^0 (-9680) + OH^0 (-9710) -> H2O2^0 (-12982)
+At time : 6.6011 ns Reaction : e_aq^-1 (-3606) + H3O^1 (-7727) -> H^0 (-12983)
+At time : 6.7011 ns Reaction : e_aq^-1 (-5234) + H2O2^0 (-12978) -> OH^-1 (-12984) + OH^0 (-12985)
+At time : 6.7011 ns Reaction : H3O^1 (-6333) + OH^-1 (-12298) -> No product
+At time : 6.7011 ns Reaction : e_aq^-1 (-5049) + H2O2^0 (-11472) -> OH^-1 (-12986) + OH^0 (-12987)
+At time : 6.7011 ns Reaction : H^0 (-10548) + OH^0 (-6838) -> No product
+At time : 6.7011 ns Reaction : e_aq^-1 (-3530) + OH^0 (-7698) -> OH^-1 (-12988)
+At time : 6.7011 ns Reaction : e_aq^-1 (-3973) + H3O^1 (-6683) -> H^0 (-12989)
+At time : 6.7011 ns Reaction : OH^-1 (-12648) + H3O^1 (-6539) -> No product
+At time : 6.8011 ns Reaction : OH^-1 (-12986) + H3O^1 (-7159) -> No product
+At time : 6.8011 ns Reaction : H3O^1 (-10928) + OH^-1 (-12920) -> No product
+At time : 6.8011 ns Reaction : OH^0 (-5848) + H^0 (-12836) -> No product
+At time : 6.8011 ns Reaction : OH^-1 (-12816) + H3O^1 (-7339) -> No product
+At time : 6.8011 ns Reaction : H^0 (-12717) + OH^0 (-7552) -> No product
+At time : 6.8011 ns Reaction : e_aq^-1 (-2576) + H2O2^0 (-12315) -> OH^-1 (-12990) + OH^0 (-12991)
+At time : 6.8011 ns Reaction : e_aq^-1 (-4153) + H2O2^0 (-11432) -> OH^-1 (-12992) + OH^0 (-12993)
+At time : 6.8011 ns Reaction : OH^0 (-9989) + OH^0 (-8711) -> H2O2^0 (-12994)
+At time : 6.8011 ns Reaction : H^0 (-9667) + e_aq^-1 (-2683) -> OH^-1 (-12995) + H_2^0 (-12996)
+At time : 6.8011 ns Reaction : H3O^1 (-6927) + e_aq^-1 (-8716) -> H^0 (-12997)
+At time : 6.9011 ns Reaction : e_aq^-1 (-5409) + H^0 (-12835) -> OH^-1 (-12998) + H_2^0 (-12999)
+At time : 6.9011 ns Reaction : H^0 (-12539) + e_aq^-1 (-8494) -> OH^-1 (-13000) + H_2^0 (-13001)
+At time : 6.9011 ns Reaction : OH^0 (-7604) + H^0 (-12205) -> No product
+At time : 6.9011 ns Reaction : OH^0 (-9481) + H^0 (-11850) -> No product
+At time : 6.9011 ns Reaction : OH^0 (-11321) + OH^0 (-6878) -> H2O2^0 (-13002)
+At time : 6.9011 ns Reaction : OH^0 (-5970) + OH^0 (-7858) -> H2O2^0 (-13003)
+At time : 7.0011 ns Reaction : H3O^1 (-11135) + OH^-1 (-12945) -> No product
+At time : 7.0011 ns Reaction : H3O^1 (-5989) + OH^-1 (-12863) -> No product
+At time : 7.0011 ns Reaction : H^0 (-12802) + OH^0 (-8226) -> No product
+At time : 7.0011 ns Reaction : e_aq^-1 (-2820) + H^0 (-12210) -> OH^-1 (-13004) + H_2^0 (-13005)
+At time : 7.0011 ns Reaction : e_aq^-1 (-551) + H2O2^0 (-12006) -> OH^-1 (-13006) + OH^0 (-13007)
+At time : 7.0011 ns Reaction : e_aq^-1 (-4060) + H3O^1 (-10771) -> H^0 (-13008)
+At time : 7.0011 ns Reaction : OH^0 (-10490) + e_aq^-1 (-1198) -> OH^-1 (-13009)
+At time : 7.0011 ns Reaction : e_aq^-1 (-1890) + OH^0 (-9930) -> OH^-1 (-13010)
+At time : 7.0011 ns Reaction : e_aq^-1 (-8644) + e_aq^-1 (-8953) -> OH^-1 (-13011) + OH^-1 (-13012) + H_2^0 (-13013)
+At time : 7.0011 ns Reaction : e_aq^-1 (-3726) + H3O^1 (-7663) -> H^0 (-13014)
+At time : 7.0011 ns Reaction : e_aq^-1 (-4757) + H3O^1 (-7061) -> H^0 (-13015)
+At time : 7.1011 ns Reaction : H3O^1 (-6201) + OH^-1 (-13010) -> No product
+At time : 7.1011 ns Reaction : H2O2^0 (-12754) + e_aq^-1 (-4264) -> OH^-1 (-13016) + OH^0 (-13017)
+At time : 7.1011 ns Reaction : OH^-1 (-12304) + H3O^1 (-8195) -> No product
+At time : 7.1011 ns Reaction : OH^0 (-10593) + OH^0 (-7810) -> H2O2^0 (-13018)
+At time : 7.1011 ns Reaction : H^0 (-9607) + OH^0 (-6470) -> No product
+At time : 7.1011 ns Reaction : e_aq^-1 (-2199) + OH^0 (-6726) -> OH^-1 (-13019)
+At time : 7.1011 ns Reaction : e_aq^-1 (-2309) + OH^0 (-6694) -> OH^-1 (-13020)
+At time : 7.1011 ns Reaction : OH^-1 (-12606) + H3O^1 (-7207) -> No product
+At time : 7.2011 ns Reaction : OH^-1 (-12909) + H3O^1 (-8171) -> No product
+At time : 7.2011 ns Reaction : OH^0 (-6982) + H^0 (-12483) -> No product
+At time : 7.2011 ns Reaction : e_aq^-1 (-4124) + H2O2^0 (-12392) -> OH^-1 (-13021) + OH^0 (-13022)
+At time : 7.2011 ns Reaction : OH^0 (-10971) + OH^0 (-7042) -> H2O2^0 (-13023)
+At time : 7.2011 ns Reaction : H3O^1 (-10579) + e_aq^-1 (-2157) -> H^0 (-13024)
+At time : 7.2011 ns Reaction : OH^0 (-8378) + OH^0 (-8594) -> H2O2^0 (-13025)
+At time : 7.2011 ns Reaction : e_aq^-1 (-1384) + H3O^1 (-7979) -> H^0 (-13026)
+At time : 7.2011 ns Reaction : e_aq^-1 (-4594) + H3O^1 (-6947) -> H^0 (-13027)
+At time : 7.2011 ns Reaction : e_aq^-1 (-4246) + H3O^1 (-5835) -> H^0 (-13028)
+At time : 7.3011 ns Reaction : OH^-1 (-12916) + H3O^1 (-8027) -> No product
+At time : 7.3011 ns Reaction : H3O^1 (-9862) + OH^-1 (-12876) -> No product
+At time : 7.3011 ns Reaction : H^0 (-12281) + H^0 (-8980) -> H_2^0 (-13029)
+At time : 7.3011 ns Reaction : H^0 (-10099) + e_aq^-1 (-4754) -> OH^-1 (-13030) + H_2^0 (-13031)
+At time : 7.3011 ns Reaction : OH^0 (-9638) + OH^0 (-6540) -> H2O2^0 (-13032)
+At time : 7.3011 ns Reaction : e_aq^-1 (-3002) + OH^0 (-9542) -> OH^-1 (-13033)
+At time : 7.3011 ns Reaction : OH^0 (-7394) + OH^0 (-8483) -> H2O2^0 (-13034)
+At time : 7.3011 ns Reaction : e_aq^-1 (-3599) + OH^0 (-6314) -> OH^-1 (-13035)
+At time : 7.4011 ns Reaction : OH^-1 (-13019) + H3O^1 (-6759) -> No product
+At time : 7.4011 ns Reaction : H3O^1 (-7291) + OH^-1 (-12998) -> No product
+At time : 7.4011 ns Reaction : e_aq^-1 (-2921) + H2O2^0 (-11488) -> OH^-1 (-13036) + OH^0 (-13037)
+At time : 7.4011 ns Reaction : H3O^1 (-9909) + e_aq^-1 (-1893) -> H^0 (-13038)
+At time : 7.4011 ns Reaction : H3O^1 (-9802) + e_aq^-1 (-2149) -> H^0 (-13039)
+At time : 7.4011 ns Reaction : e_aq^-1 (-821) + OH^0 (-8116) -> OH^-1 (-13040)
+At time : 7.4011 ns Reaction : e_aq^-1 (-1377) + OH^0 (-10927) -> OH^-1 (-13041)
+At time : 7.5011 ns Reaction : H3O^1 (-9409) + OH^-1 (-12929) -> No product
+At time : 7.5011 ns Reaction : H^0 (-12858) + OH^0 (-8977) -> No product
+At time : 7.5011 ns Reaction : OH^-1 (-12775) + H3O^1 (-8277) -> No product
+At time : 7.5011 ns Reaction : OH^-1 (-12655) + H3O^1 (-7195) -> No product
+At time : 7.5011 ns Reaction : OH^-1 (-12457) + H3O^1 (-7731) -> No product
+At time : 7.5011 ns Reaction : OH^0 (-9560) + e_aq^-1 (-2962) -> OH^-1 (-13042)
+At time : 7.5011 ns Reaction : e_aq^-1 (-477) + OH^0 (-9362) -> OH^-1 (-13043)
+At time : 7.5011 ns Reaction : e_aq^-1 (-5406) + e_aq^-1 (-8950) -> OH^-1 (-13044) + OH^-1 (-13045) + H_2^0 (-13046)
+At time : 7.6011 ns Reaction : e_aq^-1 (-1880) + OH^0 (-13017) -> OH^-1 (-13047)
+At time : 7.6011 ns Reaction : H3O^1 (-11090) + OH^-1 (-13006) -> No product
+At time : 7.6011 ns Reaction : OH^-1 (-12962) + H3O^1 (-8877) -> No product
+At time : 7.6011 ns Reaction : H3O^1 (-7659) + OH^-1 (-12594) -> No product
+At time : 7.6011 ns Reaction : H^0 (-11288) + H^0 (-9167) -> H_2^0 (-13048)
+At time : 7.6011 ns Reaction : e_aq^-1 (-4450) + H3O^1 (-10015) -> H^0 (-13049)
+At time : 7.6011 ns Reaction : e_aq^-1 (-467) + e_aq^-1 (-8908) -> OH^-1 (-13050) + OH^-1 (-13051) + H_2^0 (-13052)
+At time : 7.6011 ns Reaction : OH^0 (-6254) + OH^0 (-8747) -> H2O2^0 (-13053)
+At time : 7.6011 ns Reaction : OH^0 (-6484) + OH^0 (-8555) -> H2O2^0 (-13054)
+At time : 7.7011 ns Reaction : e_aq^-1 (-1986) + H^0 (-13028) -> OH^-1 (-13055) + H_2^0 (-13056)
+At time : 7.7011 ns Reaction : H3O^1 (-6757) + OH^-1 (-12824) -> No product
+At time : 7.7011 ns Reaction : OH^-1 (-12589) + H3O^1 (-10903) -> No product
+At time : 7.7011 ns Reaction : OH^0 (-12508) + OH^0 (-7966) -> H2O2^0 (-13057)
+At time : 7.7011 ns Reaction : e_aq^-1 (-5709) + H2O2^0 (-11988) -> OH^-1 (-13058) + OH^0 (-13059)
+At time : 7.7011 ns Reaction : e_aq^-1 (-3667) + H2O2^0 (-11737) -> OH^-1 (-13060) + OH^0 (-13061)
+At time : 7.7011 ns Reaction : e_aq^-1 (-2133) + OH^0 (-10759) -> OH^-1 (-13062)
+At time : 7.7011 ns Reaction : e_aq^-1 (-827) + H3O^1 (-7481) -> H^0 (-13063)
+At time : 7.8011 ns Reaction : OH^-1 (-13060) + H3O^1 (-7741) -> No product
+At time : 7.8011 ns Reaction : H3O^1 (-10206) + OH^-1 (-12820) -> No product
+At time : 7.8011 ns Reaction : H^0 (-12798) + OH^0 (-6458) -> No product
+At time : 7.8011 ns Reaction : H3O^1 (-10494) + OH^-1 (-12779) -> No product
+At time : 7.8011 ns Reaction : H^0 (-11315) + H^0 (-11277) -> H_2^0 (-13064)
+At time : 7.8011 ns Reaction : OH^0 (-11174) + e_aq^-1 (-8416) -> OH^-1 (-13065)
+At time : 7.8011 ns Reaction : H3O^1 (-11120) + e_aq^-1 (-5312) -> H^0 (-13066)
+At time : 7.8011 ns Reaction : H3O^1 (-7933) + e_aq^-1 (-8572) -> H^0 (-13067)
+At time : 7.8011 ns Reaction : e_aq^-1 (-4673) + H3O^1 (-7021) -> H^0 (-13068)
+At time : 7.8011 ns Reaction : OH^-1 (-12811) + H3O^1 (-7453) -> No product
+At time : 7.9011 ns Reaction : OH^-1 (-13062) + H3O^1 (-6767) -> No product
+At time : 7.9011 ns Reaction : H3O^1 (-6455) + OH^-1 (-12848) -> No product
+At time : 7.9011 ns Reaction : H^0 (-12783) + e_aq^-1 (-5442) -> OH^-1 (-13069) + H_2^0 (-13070)
+At time : 7.9011 ns Reaction : OH^0 (-11089) + H^0 (-12684) -> No product
+At time : 7.9011 ns Reaction : OH^0 (-10738) + OH^0 (-6670) -> H2O2^0 (-13071)
+At time : 7.9011 ns Reaction : OH^0 (-9715) + OH^0 (-6622) -> H2O2^0 (-13072)
+At time : 7.9011 ns Reaction : e_aq^-1 (-5207) + H3O^1 (-8181) -> H^0 (-13073)
+At time : 7.9011 ns Reaction : e_aq^-1 (-4099) + H3O^1 (-7619) -> H^0 (-13074)
+At time : 8.0011 ns Reaction : OH^-1 (-12967) + H3O^1 (-8556) -> No product
+At time : 8.0011 ns Reaction : OH^0 (-12921) + OH^0 (-8710) -> H2O2^0 (-13075)
+At time : 8.0011 ns Reaction : H^0 (-10407) + H^0 (-12756) -> H_2^0 (-13076)
+At time : 8.0011 ns Reaction : OH^-1 (-12478) + H3O^1 (-6991) -> No product
+At time : 8.0011 ns Reaction : OH^0 (-10517) + OH^0 (-9435) -> H2O2^0 (-13077)
+At time : 8.0011 ns Reaction : H^0 (-9651) + OH^0 (-6548) -> No product
+At time : 8.0011 ns Reaction : e_aq^-1 (-3853) + e_aq^-1 (-8782) -> OH^-1 (-13078) + OH^-1 (-13079) + H_2^0 (-13080)
+At time : 8.1011 ns Reaction : OH^0 (-12993) + OH^0 (-6790) -> H2O2^0 (-13081)
+At time : 8.1011 ns Reaction : e_aq^-1 (-528) + H2O2^0 (-12048) -> OH^-1 (-13082) + OH^0 (-13083)
+At time : 8.1011 ns Reaction : OH^0 (-9244) + OH^0 (-6618) -> H2O2^0 (-13084)
+At time : 8.1011 ns Reaction : e_aq^-1 (-4723) + OH^0 (-8597) -> OH^-1 (-13085)
+At time : 8.1011 ns Reaction : e_aq^-1 (-241) + H3O^1 (-7325) -> H^0 (-13086)
+At time : 8.1011 ns Reaction : e_aq^-1 (-3656) + OH^0 (-5824) -> OH^-1 (-13087)
+At time : 8.1011 ns Reaction : e_aq^-1 (-5017) + e_aq^-1 (-4954) -> OH^-1 (-13088) + OH^-1 (-13089) + H_2^0 (-13090)
+At time : 8.2011 ns Reaction : OH^-1 (-13085) + H3O^1 (-6177) -> No product
+At time : 8.2011 ns Reaction : OH^-1 (-12922) + H3O^1 (-7529) -> No product
+At time : 8.2011 ns Reaction : OH^-1 (-12436) + H3O^1 (-8149) -> No product
+At time : 8.2011 ns Reaction : OH^-1 (-12083) + H3O^1 (-7545) -> No product
+At time : 8.2011 ns Reaction : e_aq^-1 (-762) + H^0 (-11904) -> OH^-1 (-13091) + H_2^0 (-13092)
+At time : 8.2011 ns Reaction : e_aq^-1 (-4819) + H3O^1 (-8033) -> H^0 (-13093)
+At time : 8.2011 ns Reaction : OH^-1 (-12203) + H3O^1 (-6411) -> No product
+At time : 8.3011 ns Reaction : e_aq^-1 (-1701) + H3O^1 (-10861) -> H^0 (-13094)
+At time : 8.3011 ns Reaction : e_aq^-1 (-5261) + e_aq^-1 (-8407) -> OH^-1 (-13095) + OH^-1 (-13096) + H_2^0 (-13097)
+At time : 8.3011 ns Reaction : e_aq^-1 (-3765) + OH^0 (-7776) -> OH^-1 (-13098)
+At time : 8.3011 ns Reaction : e_aq^-1 (-4610) + H3O^1 (-6165) -> H^0 (-13099)
+At time : 8.3011 ns Reaction : e_aq^-1 (-3774) + H3O^1 (-5917) -> H^0 (-13100)
+At time : 8.4011 ns Reaction : OH^-1 (-13082) + H3O^1 (-8217) -> No product
+At time : 8.4011 ns Reaction : OH^-1 (-13065) + H3O^1 (-7403) -> No product
+At time : 8.4011 ns Reaction : H^0 (-12368) + OH^0 (-7046) -> No product
+At time : 8.4011 ns Reaction : OH^0 (-10868) + H^0 (-10882) -> No product
+At time : 8.4011 ns Reaction : OH^0 (-9213) + e_aq^-1 (-2919) -> OH^-1 (-13101)
+At time : 8.4011 ns Reaction : e_aq^-1 (-4963) + H3O^1 (-8508) -> H^0 (-13102)
+At time : 8.4011 ns Reaction : OH^0 (-8312) + OH^0 (-8332) -> H2O2^0 (-13103)
+At time : 8.4011 ns Reaction : e_aq^-1 (-2704) + H3O^1 (-6529) -> H^0 (-13104)
+At time : 8.5011 ns Reaction : e_aq^-1 (-4077) + H^0 (-13074) -> OH^-1 (-13105) + H_2^0 (-13106)
+At time : 8.5011 ns Reaction : H3O^1 (-6821) + OH^-1 (-13047) -> No product
+At time : 8.5011 ns Reaction : OH^-1 (-12900) + H3O^1 (-6439) -> No product
+At time : 8.5011 ns Reaction : H2O2^0 (-11603) + e_aq^-1 (-8902) -> OH^-1 (-13107) + OH^0 (-13108)
+At time : 8.5011 ns Reaction : e_aq^-1 (-5527) + H3O^1 (-8637) -> H^0 (-13109)
+At time : 8.5011 ns Reaction : OH^0 (-7092) + e_aq^-1 (-8626) -> OH^-1 (-13110)
+At time : 8.5011 ns Reaction : e_aq^-1 (-4373) + e_aq^-1 (-8581) -> OH^-1 (-13111) + OH^-1 (-13112) + H_2^0 (-13113)
+At time : 8.5011 ns Reaction : OH^-1 (-12511) + H3O^1 (-7301) -> No product
+At time : 8.6011 ns Reaction : H3O^1 (-6795) + OH^-1 (-13021) -> No product
+At time : 8.6011 ns Reaction : OH^0 (-10623) + OH^0 (-6246) -> H2O2^0 (-13114)
+At time : 8.6011 ns Reaction : OH^0 (-10518) + e_aq^-1 (-4457) -> OH^-1 (-13115)
+At time : 8.6011 ns Reaction : e_aq^-1 (-4755) + H3O^1 (-8041) -> H^0 (-13116)
+At time : 8.6011 ns Reaction : e_aq^-1 (-1319) + H3O^1 (-7981) -> H^0 (-13117)
+At time : 8.6011 ns Reaction : H3O^1 (-9786) + OH^-1 (-12376) -> No product
+At time : 8.7011 ns Reaction : H^0 (-13015) + OH^0 (-7054) -> No product
+At time : 8.7011 ns Reaction : H3O^1 (-10960) + OH^-1 (-13009) -> No product
+At time : 8.7011 ns Reaction : H^0 (-11987) + OH^0 (-8270) -> No product
+At time : 8.7011 ns Reaction : OH^0 (-9190) + OH^0 (-6274) -> H2O2^0 (-13118)
+At time : 8.7011 ns Reaction : OH^0 (-7808) + H^0 (-9002) -> No product
+At time : 8.7011 ns Reaction : e_aq^-1 (-497) + H3O^1 (-8229) -> H^0 (-13119)
+At time : 8.7011 ns Reaction : e_aq^-1 (-1972) + H3O^1 (-7895) -> H^0 (-13120)
+At time : 8.8011 ns Reaction : OH^-1 (-13069) + H3O^1 (-8478) -> No product
+At time : 8.8011 ns Reaction : H3O^1 (-9748) + OH^-1 (-12981) -> No product
+At time : 8.8011 ns Reaction : OH^-1 (-12534) + H3O^1 (-5959) -> No product
+At time : 8.8011 ns Reaction : OH^0 (-11324) + OH^0 (-6002) -> H2O2^0 (-13121)
+At time : 8.9011 ns Reaction : OH^0 (-8689) + H^0 (-12400) -> No product
+At time : 8.9011 ns Reaction : e_aq^-1 (-4607) + H2O2^0 (-11365) -> OH^-1 (-13122) + OH^0 (-13123)
+At time : 8.9011 ns Reaction : e_aq^-1 (-229) + OH^0 (-10291) -> OH^-1 (-13124)
+At time : 8.9011 ns Reaction : H3O^1 (-7629) + e_aq^-1 (-8542) -> H^0 (-13125)
+At time : 8.9011 ns Reaction : e_aq^-1 (-5571) + H3O^1 (-8309) -> H^0 (-13126)
+At time : 9.0011 ns Reaction : OH^0 (-12888) + H^0 (-13100) -> No product
+At time : 9.0011 ns Reaction : OH^-1 (-13050) + H3O^1 (-7443) -> No product
+At time : 9.0011 ns Reaction : H2O2^0 (-11593) + e_aq^-1 (-5022) -> OH^-1 (-13127) + OH^0 (-13128)
+At time : 9.0011 ns Reaction : e_aq^-1 (-665) + H3O^1 (-10210) -> H^0 (-13129)
+At time : 9.0011 ns Reaction : OH^0 (-9601) + e_aq^-1 (-8773) -> OH^-1 (-13130)
+At time : 9.1011 ns Reaction : H3O^1 (-10686) + e_aq^-1 (-3771) -> H^0 (-13131)
+At time : 9.1011 ns Reaction : H3O^1 (-5991) + e_aq^-1 (-8728) -> H^0 (-13132)
+At time : 9.1011 ns Reaction : e_aq^-1 (-3958) + e_aq^-1 (-8545) -> OH^-1 (-13133) + OH^-1 (-13134) + H_2^0 (-13135)
+At time : 9.1011 ns Reaction : OH^0 (-5840) + e_aq^-1 (-8449) -> OH^-1 (-13136)
+At time : 9.1011 ns Reaction : e_aq^-1 (-5483) + H3O^1 (-7421) -> H^0 (-13137)
+At time : 9.1011 ns Reaction : e_aq^-1 (-701) + e_aq^-1 (-5105) -> OH^-1 (-13138) + OH^-1 (-13139) + H_2^0 (-13140)
+At time : 9.2011 ns Reaction : H^0 (-12934) + OH^0 (-12939) -> No product
+At time : 9.2011 ns Reaction : H3O^1 (-9853) + OH^-1 (-12840) -> No product
+At time : 9.2011 ns Reaction : H^0 (-11885) + e_aq^-1 (-4257) -> OH^-1 (-13141) + H_2^0 (-13142)
+At time : 9.2011 ns Reaction : H3O^1 (-10487) + e_aq^-1 (-8461) -> H^0 (-13143)
+At time : 9.2011 ns Reaction : e_aq^-1 (-2937) + OH^0 (-6382) -> OH^-1 (-13144)
+At time : 9.3011 ns Reaction : H3O^1 (-7141) + OH^-1 (-13127) -> No product
+At time : 9.3011 ns Reaction : OH^-1 (-13091) + H3O^1 (-8157) -> No product
+At time : 9.3011 ns Reaction : H3O^1 (-9600) + OH^-1 (-12172) -> No product
+At time : 9.3011 ns Reaction : OH^0 (-9121) + OH^0 (-11226) -> H2O2^0 (-13145)
+At time : 9.3011 ns Reaction : OH^0 (-10330) + e_aq^-1 (-5645) -> OH^-1 (-13146)
+At time : 9.3011 ns Reaction : e_aq^-1 (-319) + OH^0 (-7306) -> OH^-1 (-13147)
+At time : 9.3011 ns Reaction : e_aq^-1 (-3103) + OH^0 (-6336) -> OH^-1 (-13148)
+At time : 9.3011 ns Reaction : e_aq^-1 (-3438) + OH^0 (-5818) -> OH^-1 (-13149)
+At time : 9.4011 ns Reaction : H^0 (-12950) + OH^0 (-7456) -> No product
+At time : 9.4011 ns Reaction : H^0 (-12803) + H^0 (-12605) -> H_2^0 (-13150)
+At time : 9.4011 ns Reaction : e_aq^-1 (-2722) + H3O^1 (-9620) -> H^0 (-13151)
+At time : 9.4011 ns Reaction : OH^0 (-6088) + OH^0 (-9095) -> H2O2^0 (-13152)
+At time : 9.4011 ns Reaction : H3O^1 (-6833) + e_aq^-1 (-8815) -> H^0 (-13153)
+At time : 9.4011 ns Reaction : e_aq^-1 (-498) + OH^0 (-7272) -> OH^-1 (-13154)
+At time : 9.4011 ns Reaction : e_aq^-1 (-3701) + H3O^1 (-6453) -> H^0 (-13155)
+At time : 9.5011 ns Reaction : e_aq^-1 (-4036) + H2O2^0 (-12889) -> OH^-1 (-13156) + OH^0 (-13157)
+At time : 9.5011 ns Reaction : H3O^1 (-9899) + OH^-1 (-12796) -> No product
+At time : 9.5011 ns Reaction : H3O^1 (-6401) + OH^-1 (-12485) -> No product
+At time : 9.5011 ns Reaction : H^0 (-12448) + OH^0 (-10725) -> No product
+At time : 9.6011 ns Reaction : OH^0 (-11136) + e_aq^-1 (-8938) -> OH^-1 (-13158)
+At time : 9.6011 ns Reaction : e_aq^-1 (-5086) + OH^0 (-11050) -> OH^-1 (-13159)
+At time : 9.6011 ns Reaction : e_aq^-1 (-5356) + OH^0 (-7420) -> OH^-1 (-13160)
+At time : 9.6011 ns Reaction : e_aq^-1 (-5071) + OH^0 (-7158) -> OH^-1 (-13161)
+At time : 9.6011 ns Reaction : e_aq^-1 (-3877) + H3O^1 (-5949) -> H^0 (-13162)
+At time : 9.7011 ns Reaction : OH^-1 (-13154) + H3O^1 (-8221) -> No product
+At time : 9.7011 ns Reaction : H^0 (-13129) + H^0 (-13073) -> H_2^0 (-13163)
+At time : 9.7011 ns Reaction : H3O^1 (-6617) + OH^-1 (-13079) -> No product
+At time : 9.7011 ns Reaction : H2O2^0 (-12884) + e_aq^-1 (-3957) -> OH^-1 (-13164) + OH^0 (-13165)
+At time : 9.7011 ns Reaction : H3O^1 (-9583) + OH^-1 (-12804) -> No product
+At time : 9.7011 ns Reaction : e_aq^-1 (-4488) + H2O2^0 (-11748) -> OH^-1 (-13166) + OH^0 (-13167)
+At time : 9.7011 ns Reaction : H^0 (-10550) + OH^0 (-8564) -> No product
+At time : 9.7011 ns Reaction : H^0 (-9509) + OH^0 (-9508) -> No product
+At time : 9.8011 ns Reaction : OH^-1 (-13164) + H3O^1 (-7797) -> No product
+At time : 9.8011 ns Reaction : OH^-1 (-12428) + H3O^1 (-6777) -> No product
+At time : 9.8011 ns Reaction : OH^-1 (-12358) + H3O^1 (-7467) -> No product
+At time : 9.8011 ns Reaction : H3O^1 (-10094) + e_aq^-1 (-4675) -> H^0 (-13168)
+At time : 9.8011 ns Reaction : e_aq^-1 (-5615) + OH^0 (-8318) -> OH^-1 (-13169)
+At time : 9.8011 ns Reaction : e_aq^-1 (-503) + H3O^1 (-8173) -> H^0 (-13170)
+At time : 9.8011 ns Reaction : e_aq^-1 (-1914) + H3O^1 (-7907) -> H^0 (-13171)
+At time : 9.8011 ns Reaction : e_aq^-1 (-2103) + H3O^1 (-6743) -> H^0 (-13172)
+At time : 9.9011 ns Reaction : OH^-1 (-13156) + H3O^1 (-6717) -> No product
+At time : 9.9011 ns Reaction : OH^-1 (-13122) + H3O^1 (-7011) -> No product
+At time : 9.9011 ns Reaction : H3O^1 (-10327) + OH^-1 (-13011) -> No product
+At time : 9.9011 ns Reaction : e_aq^-1 (-4737) + H^0 (-12750) -> OH^-1 (-13173) + H_2^0 (-13174)
+At time : 9.9011 ns Reaction : OH^0 (-9699) + OH^0 (-12696) -> H2O2^0 (-13175)
+At time : 9.9011 ns Reaction : e_aq^-1 (-1050) + H2O2^0 (-11383) -> OH^-1 (-13176) + OH^0 (-13177)
+At time : 9.9011 ns Reaction : OH^0 (-11042) + OH^0 (-7172) -> H2O2^0 (-13178)
+At time : 9.9011 ns Reaction : e_aq^-1 (-717) + e_aq^-1 (-746) -> OH^-1 (-13179) + OH^-1 (-13180) + H_2^0 (-13181)
+At time : 10.001 ns Reaction : H3O^1 (-9557) + OH^-1 (-13033) -> No product
+At time : 10.001 ns Reaction : H3O^1 (-6851) + OH^-1 (-12940) -> No product
+At time : 10.001 ns Reaction : OH^-1 (-12827) + H3O^1 (-6163) -> No product
+At time : 10.001 ns Reaction : H3O^1 (-10121) + OH^-1 (-11530) -> No product
+At time : 10.001 ns Reaction : e_aq^-1 (-5349) + H3O^1 (-11122) -> H^0 (-13182)
+At time : 10.001 ns Reaction : OH^0 (-10325) + OH^0 (-6108) -> H2O2^0 (-13183)
+At time : 10.001 ns Reaction : H3O^1 (-10276) + e_aq^-1 (-8680) -> H^0 (-13184)
+At time : 10.001 ns Reaction : e_aq^-1 (-3764) + H3O^1 (-8352) -> H^0 (-13185)
+At time : 10.001 ns Reaction : e_aq^-1 (-4585) + H3O^1 (-7553) -> H^0 (-13186)
+At time : 10.001 ns Reaction : e_aq^-1 (-4724) + H3O^1 (-7003) -> H^0 (-13187)
+At time : 11.001 ns Reaction : H3O^1 (-10197) + OH^-1 (-13180) -> No product
+At time : 11.001 ns Reaction : OH^-1 (-13176) + H3O^1 (-5847) -> No product
+At time : 11.001 ns Reaction : e_aq^-1 (-2524) + H2O2^0 (-13175) -> OH^-1 (-13188) + OH^0 (-13189)
+At time : 11.001 ns Reaction : H^0 (-13155) + e_aq^-1 (-3665) -> OH^-1 (-13190) + H_2^0 (-13191)
+At time : 11.001 ns Reaction : OH^-1 (-13136) + H3O^1 (-6191) -> No product
+At time : 11.001 ns Reaction : OH^0 (-13123) + e_aq^-1 (-1228) -> OH^-1 (-13192)
+At time : 11.001 ns Reaction : OH^-1 (-13110) + H3O^1 (-6155) -> No product
+At time : 11.001 ns Reaction : OH^-1 (-13089) + H3O^1 (-7131) -> No product
+At time : 11.001 ns Reaction : OH^-1 (-13041) + H3O^1 (-8598) -> No product
+At time : 11.001 ns Reaction : H3O^1 (-11024) + OH^-1 (-13040) -> No product
+At time : 11.001 ns Reaction : OH^-1 (-13000) + H3O^1 (-6133) -> No product
+At time : 11.001 ns Reaction : H3O^1 (-6915) + OH^-1 (-12963) -> No product
+At time : 11.001 ns Reaction : OH^-1 (-12938) + H3O^1 (-8119) -> No product
+At time : 11.001 ns Reaction : OH^-1 (-12918) + H3O^1 (-7441) -> No product
+At time : 11.001 ns Reaction : H3O^1 (-5939) + OH^-1 (-12908) -> No product
+At time : 11.001 ns Reaction : H3O^1 (-6311) + OH^-1 (-12687) -> No product
+At time : 11.001 ns Reaction : e_aq^-1 (-4813) + OH^0 (-12353) -> OH^-1 (-13193)
+At time : 11.001 ns Reaction : OH^-1 (-12227) + H3O^1 (-7941) -> No product
+At time : 11.001 ns Reaction : e_aq^-1 (-1105) + H2O2^0 (-11922) -> OH^-1 (-13194) + OH^0 (-13195)
+At time : 11.001 ns Reaction : e_aq^-1 (-4907) + H2O2^0 (-11484) -> OH^-1 (-13196) + OH^0 (-13197)
+At time : 11.001 ns Reaction : e_aq^-1 (-5151) + H^0 (-11087) -> OH^-1 (-13198) + H_2^0 (-13199)
+At time : 11.001 ns Reaction : OH^0 (-10561) + OH^0 (-6204) -> H2O2^0 (-13200)
+At time : 11.001 ns Reaction : OH^0 (-10547) + H^0 (-9287) -> No product
+At time : 11.001 ns Reaction : OH^0 (-10383) + OH^0 (-8336) -> H2O2^0 (-13201)
+At time : 11.001 ns Reaction : H^0 (-9637) + OH^0 (-6538) -> No product
+At time : 11.001 ns Reaction : OH^0 (-6462) + OH^0 (-6466) -> H2O2^0 (-13202)
+At time : 12.001 ns Reaction : e_aq^-1 (-5319) + H2O2^0 (-13201) -> OH^-1 (-13203) + OH^0 (-13204)
+At time : 12.001 ns Reaction : OH^-1 (-13179) + H3O^1 (-8505) -> No product
+At time : 12.001 ns Reaction : H3O^1 (-8493) + OH^-1 (-13160) -> No product
+At time : 12.001 ns Reaction : OH^-1 (-13146) + H3O^1 (-10329) -> No product
+At time : 12.001 ns Reaction : OH^-1 (-13133) + H3O^1 (-6687) -> No product
+At time : 12.001 ns Reaction : OH^-1 (-13115) + H3O^1 (-10865) -> No product
+At time : 12.001 ns Reaction : H3O^1 (-8135) + OH^-1 (-13107) -> No product
+At time : 12.001 ns Reaction : OH^-1 (-13088) + H3O^1 (-6157) -> No product
+At time : 12.001 ns Reaction : H3O^1 (-6847) + OH^-1 (-13055) -> No product
+At time : 12.001 ns Reaction : H3O^1 (-10266) + OH^-1 (-13051) -> No product
+At time : 12.001 ns Reaction : OH^-1 (-13044) + H3O^1 (-8664) -> No product
+At time : 12.001 ns Reaction : H3O^1 (-6817) + OH^-1 (-13016) -> No product
+At time : 12.001 ns Reaction : OH^-1 (-12951) + H3O^1 (-8586) -> No product
+At time : 12.001 ns Reaction : OH^0 (-12923) + e_aq^-1 (-4722) -> OH^-1 (-13205)
+At time : 12.001 ns Reaction : H3O^1 (-7719) + OH^-1 (-12897) -> No product
+At time : 12.001 ns Reaction : OH^-1 (-12844) + H3O^1 (-8835) -> No product
+At time : 12.001 ns Reaction : e_aq^-1 (-4706) + OH^0 (-12780) -> OH^-1 (-13206)
+At time : 12.001 ns Reaction : e_aq^-1 (-1446) + H^0 (-12432) -> OH^-1 (-13207) + H_2^0 (-13208)
+At time : 12.001 ns Reaction : H3O^1 (-7691) + OH^-1 (-12279) -> No product
+At time : 12.001 ns Reaction : OH^-1 (-12200) + H3O^1 (-10615) -> No product
+At time : 12.001 ns Reaction : OH^-1 (-12137) + H3O^1 (-8625) -> No product
+At time : 12.001 ns Reaction : e_aq^-1 (-5619) + H^0 (-11729) -> OH^-1 (-13209) + H_2^0 (-13210)
+At time : 12.001 ns Reaction : OH^0 (-11313) + OH^0 (-6764) -> H2O2^0 (-13211)
+At time : 12.001 ns Reaction : e_aq^-1 (-516) + H^0 (-11083) -> OH^-1 (-13212) + H_2^0 (-13213)
+At time : 12.001 ns Reaction : OH^0 (-11082) + OH^0 (-7176) -> H2O2^0 (-13214)
+At time : 12.001 ns Reaction : OH^0 (-9682) + e_aq^-1 (-3843) -> OH^-1 (-13215)
+At time : 12.001 ns Reaction : H^0 (-9473) + OH^0 (-6220) -> No product
+At time : 12.001 ns Reaction : H^0 (-9313) + OH^0 (-8861) -> No product
+At time : 12.001 ns Reaction : OH^0 (-9194) + e_aq^-1 (-8755) -> OH^-1 (-13216)
+At time : 12.001 ns Reaction : OH^0 (-9136) + OH^0 (-7048) -> H2O2^0 (-13217)
+At time : 12.001 ns Reaction : e_aq^-1 (-5100) + e_aq^-1 (-8683) -> OH^-1 (-13218) + OH^-1 (-13219) + H_2^0 (-13220)
+At time : 12.001 ns Reaction : OH^0 (-7870) + OH^0 (-8537) -> H2O2^0 (-13221)
+At time : 12.001 ns Reaction : e_aq^-1 (-4436) + H3O^1 (-8373) -> H^0 (-13222)
+At time : 12.001 ns Reaction : e_aq^-1 (-4389) + H3O^1 (-7593) -> H^0 (-13223)
+At time : 13.001 ns Reaction : H3O^1 (-6601) + OH^-1 (-13188) -> No product
+At time : 13.001 ns Reaction : OH^-1 (-13166) + H3O^1 (-7937) -> No product
+At time : 13.001 ns Reaction : OH^-1 (-13058) + H3O^1 (-7361) -> No product
+At time : 13.001 ns Reaction : H3O^1 (-10628) + OH^-1 (-12957) -> No product
+At time : 13.001 ns Reaction : e_aq^-1 (-5228) + H2O2^0 (-12949) -> OH^-1 (-13224) + OH^0 (-13225)
+At time : 13.001 ns Reaction : H3O^1 (-7297) + OH^-1 (-12931) -> No product
+At time : 13.001 ns Reaction : OH^-1 (-12797) + H3O^1 (-10741) -> No product
+At time : 13.001 ns Reaction : OH^-1 (-12785) + H3O^1 (-5825) -> No product
+At time : 13.001 ns Reaction : e_aq^-1 (-2460) + H^0 (-12773) -> OH^-1 (-13226) + H_2^0 (-13227)
+At time : 13.001 ns Reaction : OH^-1 (-12724) + H3O^1 (-8565) -> No product
+At time : 13.001 ns Reaction : H3O^1 (-6025) + OH^-1 (-12576) -> No product
+At time : 13.001 ns Reaction : OH^-1 (-12530) + H3O^1 (-6081) -> No product
+At time : 13.001 ns Reaction : H3O^1 (-10958) + e_aq^-1 (-4718) -> H^0 (-13228)
+At time : 13.001 ns Reaction : e_aq^-1 (-5077) + H3O^1 (-10430) -> H^0 (-13229)
+At time : 13.001 ns Reaction : H^0 (-10396) + OH^0 (-7246) -> No product
+At time : 13.001 ns Reaction : OH^0 (-9693) + e_aq^-1 (-3818) -> OH^-1 (-13230)
+At time : 13.001 ns Reaction : OH^0 (-9506) + OH^0 (-6262) -> H2O2^0 (-13231)
+At time : 13.001 ns Reaction : e_aq^-1 (-2385) + H^0 (-9044) -> OH^-1 (-13232) + H_2^0 (-13233)
+At time : 13.001 ns Reaction : e_aq^-1 (-8512) + H3O^1 (-8871) -> H^0 (-13234)
+At time : 13.001 ns Reaction : e_aq^-1 (-5701) + e_aq^-1 (-8650) -> OH^-1 (-13235) + OH^-1 (-13236) + H_2^0 (-13237)
+At time : 13.001 ns Reaction : e_aq^-1 (-5399) + H3O^1 (-8249) -> H^0 (-13238)
+At time : 13.001 ns Reaction : OH^0 (-6010) + OH^0 (-7956) -> H2O2^0 (-13239)
+At time : 14.001 ns Reaction : H3O^1 (-5925) + OH^-1 (-12990) -> No product
+At time : 14.001 ns Reaction : H3O^1 (-6485) + OH^-1 (-12887) -> No product
+At time : 14.001 ns Reaction : OH^-1 (-12849) + H3O^1 (-6207) -> No product
+At time : 14.001 ns Reaction : H2O2^0 (-12038) + e_aq^-1 (-5005) -> OH^-1 (-13240) + OH^0 (-13241)
+At time : 14.001 ns Reaction : OH^0 (-5739) + H^0 (-11772) -> No product
+At time : 14.001 ns Reaction : OH^0 (-11148) + OH^0 (-6094) -> H2O2^0 (-13242)
+At time : 14.001 ns Reaction : H^0 (-10981) + OH^0 (-7022) -> No product
+At time : 14.001 ns Reaction : OH^0 (-10118) + e_aq^-1 (-4814) -> OH^-1 (-13243)
+At time : 14.001 ns Reaction : H^0 (-9631) + OH^0 (-6474) -> No product
+At time : 14.001 ns Reaction : OH^0 (-9147) + OH^0 (-8232) -> H2O2^0 (-13244)
+At time : 14.001 ns Reaction : OH^0 (-8112) + OH^0 (-8891) -> H2O2^0 (-13245)
+At time : 14.001 ns Reaction : OH^-1 (-13158) + H3O^1 (-7271) -> No product
+At time : 14.001 ns Reaction : OH^-1 (-12597) + H3O^1 (-6673) -> No product
+At time : 15.001 ns Reaction : H3O^1 (-6023) + OH^-1 (-13194) -> No product
+At time : 15.001 ns Reaction : H^0 (-13185) + e_aq^-1 (-2574) -> OH^-1 (-13246) + H_2^0 (-13247)
+At time : 15.001 ns Reaction : H3O^1 (-5895) + OH^-1 (-13035) -> No product
+At time : 15.001 ns Reaction : H2O2^0 (-13034) + e_aq^-1 (-8488) -> OH^-1 (-13248) + OH^0 (-13249)
+At time : 15.001 ns Reaction : OH^-1 (-12894) + H3O^1 (-8652) -> No product
+At time : 15.001 ns Reaction : OH^-1 (-12759) + H3O^1 (-7555) -> No product
+At time : 15.001 ns Reaction : OH^-1 (-12743) + H3O^1 (-5837) -> No product
+At time : 15.001 ns Reaction : OH^-1 (-12706) + H3O^1 (-8197) -> No product
+At time : 15.001 ns Reaction : OH^0 (-11158) + OH^0 (-7328) -> H2O2^0 (-13250)
+At time : 15.001 ns Reaction : OH^0 (-10736) + OH^0 (-6660) -> H2O2^0 (-13251)
+At time : 15.001 ns Reaction : e_aq^-1 (-578) + H3O^1 (-10415) -> H^0 (-13252)
+At time : 15.001 ns Reaction : H^0 (-9940) + e_aq^-1 (-4251) -> OH^-1 (-13253) + H_2^0 (-13254)
+At time : 15.001 ns Reaction : OH^0 (-9470) + OH^0 (-6226) -> H2O2^0 (-13255)
+At time : 15.001 ns Reaction : OH^0 (-7334) + H^0 (-9102) -> No product
+At time : 15.001 ns Reaction : e_aq^-1 (-2027) + H3O^1 (-8538) -> H^0 (-13256)
+At time : 15.001 ns Reaction : OH^0 (-7442) + OH^0 (-8498) -> H2O2^0 (-13257)
+At time : 15.001 ns Reaction : OH^0 (-5980) + OH^0 (-7620) -> H2O2^0 (-13258)
+At time : 15.001 ns Reaction : e_aq^-1 (-2437) + H3O^1 (-6659) -> H^0 (-13259)
+At time : 15.001 ns Reaction : e_aq^-1 (-3716) + H3O^1 (-6379) -> H^0 (-13260)
+At time : 15.001 ns Reaction : e_aq^-1 (-3699) + OH^0 (-5914) -> OH^-1 (-13261)
+At time : 15.001 ns Reaction : e_aq^-1 (-2540) + e_aq^-1 (-3786) -> OH^-1 (-13262) + OH^-1 (-13263) + H_2^0 (-13264)
+At time : 16.001 ns Reaction : OH^-1 (-13243) + H3O^1 (-7121) -> No product
+At time : 16.001 ns Reaction : e_aq^-1 (-4037) + H2O2^0 (-13221) -> OH^-1 (-13265) + OH^0 (-13266)
+At time : 16.001 ns Reaction : e_aq^-1 (-2113) + H2O2^0 (-13211) -> OH^-1 (-13267) + OH^0 (-13268)
+At time : 16.001 ns Reaction : OH^-1 (-13196) + H3O^1 (-8087) -> No product
+At time : 16.001 ns Reaction : OH^-1 (-13148) + H3O^1 (-7721) -> No product
+At time : 16.001 ns Reaction : OH^-1 (-13130) + H3O^1 (-7759) -> No product
+At time : 16.001 ns Reaction : e_aq^-1 (-4651) + H^0 (-13116) -> OH^-1 (-13269) + H_2^0 (-13270)
+At time : 16.001 ns Reaction : OH^-1 (-13087) + H3O^1 (-7753) -> No product
+At time : 16.001 ns Reaction : H^0 (-12997) + e_aq^-1 (-4515) -> OH^-1 (-13271) + H_2^0 (-13272)
+At time : 16.001 ns Reaction : H3O^1 (-10323) + OH^-1 (-12936) -> No product
+At time : 16.001 ns Reaction : OH^-1 (-12906) + H3O^1 (-5877) -> No product
+At time : 16.001 ns Reaction : H3O^1 (-5865) + OH^-1 (-12853) -> No product
+At time : 16.001 ns Reaction : H^0 (-12633) + e_aq^-1 (-3044) -> OH^-1 (-13273) + H_2^0 (-13274)
+At time : 16.001 ns Reaction : e_aq^-1 (-409) + H^0 (-11115) -> OH^-1 (-13275) + H_2^0 (-13276)
+At time : 16.001 ns Reaction : H3O^1 (-10930) + e_aq^-1 (-4671) -> H^0 (-13277)
+At time : 16.001 ns Reaction : OH^0 (-10682) + OH^0 (-5828) -> H2O2^0 (-13278)
+At time : 16.001 ns Reaction : H3O^1 (-10482) + e_aq^-1 (-4745) -> H^0 (-13279)
+At time : 16.001 ns Reaction : e_aq^-1 (-3613) + H3O^1 (-7725) -> H^0 (-13280)
+At time : 16.001 ns Reaction : e_aq^-1 (-5403) + H3O^1 (-7283) -> H^0 (-13281)
+At time : 16.001 ns Reaction : e_aq^-1 (-591) + H3O^1 (-7235) -> H^0 (-13282)
+At time : 16.001 ns Reaction : e_aq^-1 (-3794) + H3O^1 (-6553) -> H^0 (-13283)
+At time : 17.001 ns Reaction : e_aq^-1 (-502) + H^0 (-13282) -> OH^-1 (-13284) + H_2^0 (-13285)
+At time : 17.001 ns Reaction : OH^-1 (-13193) + H3O^1 (-8385) -> No product
+At time : 17.001 ns Reaction : OH^-1 (-13173) + H3O^1 (-7031) -> No product
+At time : 17.001 ns Reaction : OH^-1 (-13144) + H3O^1 (-6371) -> No product
+At time : 17.001 ns Reaction : OH^-1 (-13138) + H3O^1 (-6145) -> No product
+At time : 17.001 ns Reaction : e_aq^-1 (-3759) + H^0 (-13104) -> OH^-1 (-13286) + H_2^0 (-13287)
+At time : 17.001 ns Reaction : H3O^1 (-7249) + OH^-1 (-13096) -> No product
+At time : 17.001 ns Reaction : OH^0 (-13037) + OH^0 (-5906) -> H2O2^0 (-13288)
+At time : 17.001 ns Reaction : e_aq^-1 (-173) + OH^0 (-12930) -> OH^-1 (-13289)
+At time : 17.001 ns Reaction : OH^-1 (-12839) + H3O^1 (-8439) -> No product
+At time : 17.001 ns Reaction : OH^-1 (-12762) + H3O^1 (-6769) -> No product
+At time : 17.001 ns Reaction : H3O^1 (-7105) + OH^-1 (-12660) -> No product
+At time : 17.001 ns Reaction : H^0 (-12393) + OH^0 (-5830) -> No product
+At time : 17.001 ns Reaction : e_aq^-1 (-4223) + H2O2^0 (-12249) -> OH^-1 (-13290) + OH^0 (-13291)
+At time : 17.001 ns Reaction : e_aq^-1 (-5028) + H2O2^0 (-11985) -> OH^-1 (-13292) + OH^0 (-13293)
+At time : 17.001 ns Reaction : H2O2^0 (-11921) + e_aq^-1 (-8374) -> OH^-1 (-13294) + OH^0 (-13295)
+At time : 17.001 ns Reaction : H^0 (-10754) + OH^0 (-6736) -> No product
+At time : 17.001 ns Reaction : OH^0 (-10336) + OH^0 (-7364) -> H2O2^0 (-13296)
+At time : 17.001 ns Reaction : e_aq^-1 (-4522) + H3O^1 (-10059) -> H^0 (-13297)
+At time : 17.001 ns Reaction : H3O^1 (-9824) + e_aq^-1 (-4105) -> H^0 (-13298)
+At time : 17.001 ns Reaction : H3O^1 (-9561) + e_aq^-1 (-3055) -> H^0 (-13299)
+At time : 17.001 ns Reaction : e_aq^-1 (-5156) + H3O^1 (-7233) -> H^0 (-13300)
+At time : 18.001 ns Reaction : H3O^1 (-6117) + OH^-1 (-13248) -> No product
+At time : 18.001 ns Reaction : OH^-1 (-13205) + H3O^1 (-6977) -> No product
+At time : 18.001 ns Reaction : H^0 (-13187) + e_aq^-1 (-4679) -> OH^-1 (-13301) + H_2^0 (-13302)
+At time : 18.001 ns Reaction : OH^0 (-7316) + H^0 (-13137) -> No product
+At time : 18.001 ns Reaction : OH^-1 (-13036) + H3O^1 (-6377) -> No product
+At time : 18.001 ns Reaction : OH^-1 (-12995) + H3O^1 (-5921) -> No product
+At time : 18.001 ns Reaction : H3O^1 (-7237) + OH^-1 (-12984) -> No product
+At time : 18.001 ns Reaction : OH^-1 (-12917) + H3O^1 (-8323) -> No product
+At time : 18.001 ns Reaction : H3O^1 (-7215) + OH^-1 (-12739) -> No product
+At time : 18.001 ns Reaction : e_aq^-1 (-5178) + H^0 (-12544) -> OH^-1 (-13303) + H_2^0 (-13304)
+At time : 18.001 ns Reaction : e_aq^-1 (-670) + H^0 (-12541) -> OH^-1 (-13305) + H_2^0 (-13306)
+At time : 18.001 ns Reaction : H^0 (-12267) + e_aq^-1 (-2151) -> OH^-1 (-13307) + H_2^0 (-13308)
+At time : 18.001 ns Reaction : e_aq^-1 (-5236) + H2O2^0 (-12042) -> OH^-1 (-13309) + OH^0 (-13310)
+At time : 18.001 ns Reaction : e_aq^-1 (-4494) + H2O2^0 (-11481) -> OH^-1 (-13311) + OH^0 (-13312)
+At time : 18.001 ns Reaction : e_aq^-1 (-3625) + OH^0 (-11218) -> OH^-1 (-13313)
+At time : 18.001 ns Reaction : OH^0 (-11009) + e_aq^-1 (-929) -> OH^-1 (-13314)
+At time : 18.001 ns Reaction : H^0 (-9436) + H^0 (-10034) -> H_2^0 (-13315)
+At time : 18.001 ns Reaction : H3O^1 (-9520) + e_aq^-1 (-3563) -> H^0 (-13316)
+At time : 18.001 ns Reaction : H^0 (-9285) + e_aq^-1 (-4277) -> OH^-1 (-13317) + H_2^0 (-13318)
+At time : 18.001 ns Reaction : OH^0 (-7108) + OH^0 (-8615) -> H2O2^0 (-13319)
+At time : 18.001 ns Reaction : e_aq^-1 (-5541) + H3O^1 (-8291) -> H^0 (-13320)
+At time : 18.001 ns Reaction : e_aq^-1 (-4934) + H3O^1 (-5845) -> H^0 (-13321)
+At time : 19.001 ns Reaction : OH^-1 (-13307) + H3O^1 (-7877) -> No product
+At time : 19.001 ns Reaction : H3O^1 (-7097) + OH^-1 (-13240) -> No product
+At time : 19.001 ns Reaction : H3O^1 (-9756) + OH^-1 (-13232) -> No product
+At time : 19.001 ns Reaction : H^0 (-13119) + OH^0 (-7270) -> No product
+At time : 19.001 ns Reaction : e_aq^-1 (-1917) + H2O2^0 (-12826) -> OH^-1 (-13322) + OH^0 (-13323)
+At time : 19.001 ns Reaction : H2O2^0 (-12720) + e_aq^-1 (-2359) -> OH^-1 (-13324) + OH^0 (-13325)
+At time : 19.001 ns Reaction : H3O^1 (-10703) + OH^-1 (-12220) -> No product
+At time : 19.001 ns Reaction : H2O2^0 (-11855) + e_aq^-1 (-4728) -> OH^-1 (-13326) + OH^0 (-13327)
+At time : 19.001 ns Reaction : OH^0 (-9196) + OH^0 (-11216) -> H2O2^0 (-13328)
+At time : 19.001 ns Reaction : H^0 (-11040) + e_aq^-1 (-4981) -> OH^-1 (-13329) + H_2^0 (-13330)
+At time : 19.001 ns Reaction : H^0 (-10933) + OH^0 (-7554) -> No product
+At time : 19.001 ns Reaction : e_aq^-1 (-3609) + H3O^1 (-9534) -> H^0 (-13331)
+At time : 19.001 ns Reaction : OH^0 (-6216) + OH^0 (-8733) -> H2O2^0 (-13332)
+At time : 19.001 ns Reaction : e_aq^-1 (-5302) + H3O^1 (-8211) -> H^0 (-13333)
+At time : 19.001 ns Reaction : e_aq^-1 (-3898) + OH^0 (-7822) -> OH^-1 (-13334)
+At time : 19.001 ns Reaction : e_aq^-1 (-5582) + H3O^1 (-7345) -> H^0 (-13335)
+At time : 20.001 ns Reaction : OH^-1 (-13334) + H3O^1 (-7823) -> No product
+At time : 20.001 ns Reaction : e_aq^-1 (-5318) + H^0 (-13281) -> OH^-1 (-13336) + H_2^0 (-13337)
+At time : 20.001 ns Reaction : H3O^1 (-9980) + OH^-1 (-13271) -> No product
+At time : 20.001 ns Reaction : OH^-1 (-13261) + H3O^1 (-7763) -> No product
+At time : 20.001 ns Reaction : H3O^1 (-11139) + OH^-1 (-13203) -> No product
+At time : 20.001 ns Reaction : e_aq^-1 (-2689) + H^0 (-13131) -> OH^-1 (-13338) + H_2^0 (-13339)
+At time : 20.001 ns Reaction : H3O^1 (-10966) + OH^-1 (-12959) -> No product
+At time : 20.001 ns Reaction : OH^-1 (-12703) + H3O^1 (-7473) -> No product
+At time : 20.001 ns Reaction : H3O^1 (-10004) + OH^-1 (-12657) -> No product
+At time : 20.001 ns Reaction : OH^0 (-10870) + e_aq^-1 (-8833) -> OH^-1 (-13340)
+At time : 20.001 ns Reaction : e_aq^-1 (-104) + OH^0 (-10314) -> OH^-1 (-13341)
+At time : 20.001 ns Reaction : e_aq^-1 (-2117) + H3O^1 (-9868) -> H^0 (-13342)
+At time : 20.001 ns Reaction : OH^0 (-9820) + OH^0 (-6778) -> H2O2^0 (-13343)
+At time : 20.001 ns Reaction : H^0 (-9662) + H^0 (-9004) -> H_2^0 (-13344)
+At time : 20.001 ns Reaction : OH^0 (-6728) + OH^0 (-7854) -> H2O2^0 (-13345)
+At time : 20.001 ns Reaction : e_aq^-1 (-3780) + H3O^1 (-6503) -> H^0 (-13346)
+At time : 21.001 ns Reaction : H3O^1 (-10061) + OH^-1 (-13207) -> No product
+At time : 21.001 ns Reaction : H3O^1 (-6055) + OH^-1 (-13139) -> No product
+At time : 21.001 ns Reaction : H3O^1 (-6677) + OH^-1 (-13020) -> No product
+At time : 21.001 ns Reaction : OH^-1 (-12976) + H3O^1 (-8874) -> No product
+At time : 21.001 ns Reaction : OH^0 (-5912) + OH^0 (-12968) -> H2O2^0 (-13347)
+At time : 21.001 ns Reaction : e_aq^-1 (-5626) + H^0 (-12878) -> OH^-1 (-13348) + H_2^0 (-13349)
+At time : 21.001 ns Reaction : OH^-1 (-12850) + H3O^1 (-8295) -> No product
+At time : 21.001 ns Reaction : OH^-1 (-12219) + H3O^1 (-6543) -> No product
+At time : 21.001 ns Reaction : e_aq^-1 (-441) + H3O^1 (-11088) -> H^0 (-13350)
+At time : 21.001 ns Reaction : H^0 (-9947) + OH^0 (-8840) -> No product
+At time : 21.001 ns Reaction : H^0 (-9830) + OH^0 (-7852) -> No product
+At time : 21.001 ns Reaction : OH^0 (-9611) + e_aq^-1 (-3666) -> OH^-1 (-13351)
+At time : 21.001 ns Reaction : OH^0 (-9187) + OH^0 (-7694) -> H2O2^0 (-13352)
+At time : 22.001 ns Reaction : OH^-1 (-13301) + H3O^1 (-7511) -> No product
+At time : 22.001 ns Reaction : OH^-1 (-13294) + H3O^1 (-6879) -> No product
+At time : 22.001 ns Reaction : OH^-1 (-13101) + H3O^1 (-6387) -> No product
+At time : 22.001 ns Reaction : OH^-1 (-13045) + H3O^1 (-7295) -> No product
+At time : 22.001 ns Reaction : e_aq^-1 (-1865) + OH^0 (-12845) -> OH^-1 (-13353)
+At time : 22.001 ns Reaction : e_aq^-1 (-5002) + H2O2^0 (-12813) -> OH^-1 (-13354) + OH^0 (-13355)
+At time : 22.001 ns Reaction : OH^-1 (-12721) + H3O^1 (-7285) -> No product
+At time : 22.001 ns Reaction : OH^0 (-10985) + e_aq^-1 (-4885) -> OH^-1 (-13356)
+At time : 22.001 ns Reaction : H3O^1 (-10822) + e_aq^-1 (-4317) -> H^0 (-13357)
+At time : 22.001 ns Reaction : e_aq^-1 (-4232) + H3O^1 (-9903) -> H^0 (-13358)
+At time : 22.001 ns Reaction : OH^0 (-9488) + OH^0 (-5888) -> H2O2^0 (-13359)
+At time : 22.001 ns Reaction : e_aq^-1 (-2617) + H3O^1 (-7655) -> H^0 (-13360)
+At time : 22.001 ns Reaction : e_aq^-1 (-5553) + e_aq^-1 (-5628) -> OH^-1 (-13361) + OH^-1 (-13362) + H_2^0 (-13363)
+At time : 23.001 ns Reaction : OH^-1 (-13354) + H3O^1 (-8691) -> No product
+At time : 23.001 ns Reaction : OH^-1 (-13292) + H3O^1 (-6151) -> No product
+At time : 23.001 ns Reaction : OH^-1 (-13095) + H3O^1 (-7225) -> No product
+At time : 23.001 ns Reaction : e_aq^-1 (-3720) + H2O2^0 (-12871) -> OH^-1 (-13364) + OH^0 (-13365)
+At time : 23.001 ns Reaction : OH^-1 (-12768) + H3O^1 (-6881) -> No product
+At time : 23.001 ns Reaction : OH^0 (-12240) + OH^0 (-8417) -> H2O2^0 (-13366)
+At time : 23.001 ns Reaction : H2O2^0 (-11952) + e_aq^-1 (-4041) -> OH^-1 (-13367) + OH^0 (-13368)
+At time : 23.001 ns Reaction : OH^-1 (-11381) + H3O^1 (-7587) -> No product
+At time : 23.001 ns Reaction : OH^0 (-11007) + e_aq^-1 (-4989) -> OH^-1 (-13369)
+At time : 23.001 ns Reaction : e_aq^-1 (-4669) + H3O^1 (-7017) -> H^0 (-13370)
+At time : 23.001 ns Reaction : e_aq^-1 (-2717) + H3O^1 (-6593) -> H^0 (-13371)
+At time : 23.001 ns Reaction : e_aq^-1 (-5019) + H3O^1 (-6067) -> H^0 (-13372)
+At time : 24.001 ns Reaction : H3O^1 (-10453) + OH^-1 (-13356) -> No product
+At time : 24.001 ns Reaction : OH^0 (-13325) + e_aq^-1 (-2337) -> OH^-1 (-13373)
+At time : 24.001 ns Reaction : OH^-1 (-13314) + H3O^1 (-7125) -> No product
+At time : 24.001 ns Reaction : OH^0 (-13291) + e_aq^-1 (-8722) -> OH^-1 (-13374)
+At time : 24.001 ns Reaction : H3O^1 (-10067) + OH^-1 (-13192) -> No product
+At time : 24.001 ns Reaction : H^0 (-13117) + e_aq^-1 (-4575) -> OH^-1 (-13375) + H_2^0 (-13376)
+At time : 24.001 ns Reaction : OH^-1 (-12903) + H3O^1 (-6385) -> No product
+At time : 24.001 ns Reaction : e_aq^-1 (-4455) + H2O2^0 (-12778) -> OH^-1 (-13377) + OH^0 (-13378)
+At time : 24.001 ns Reaction : OH^-1 (-12572) + H3O^1 (-6555) -> No product
+At time : 24.001 ns Reaction : H3O^1 (-7681) + OH^-1 (-12523) -> No product
+At time : 24.001 ns Reaction : OH^0 (-9127) + OH^0 (-10773) -> H2O2^0 (-13379)
+At time : 24.001 ns Reaction : H^0 (-9686) + e_aq^-1 (-2466) -> OH^-1 (-13380) + H_2^0 (-13381)
+At time : 24.001 ns Reaction : e_aq^-1 (-539) + H3O^1 (-8910) -> H^0 (-13382)
+At time : 24.001 ns Reaction : OH^0 (-5822) + OH^0 (-8756) -> H2O2^0 (-13383)
+At time : 24.001 ns Reaction : OH^0 (-6592) + OH^0 (-7792) -> H2O2^0 (-13384)
+At time : 24.001 ns Reaction : e_aq^-1 (-5528) + H3O^1 (-7399) -> H^0 (-13385)
+At time : 25.001 ns Reaction : H3O^1 (-10901) + OH^-1 (-13377) -> No product
+At time : 25.001 ns Reaction : OH^-1 (-13134) + H3O^1 (-6627) -> No product
+At time : 25.001 ns Reaction : e_aq^-1 (-112) + OH^0 (-13059) -> OH^-1 (-13386)
+At time : 25.001 ns Reaction : OH^-1 (-12960) + H3O^1 (-8069) -> No product
+At time : 25.001 ns Reaction : OH^-1 (-12937) + H3O^1 (-8841) -> No product
+At time : 25.001 ns Reaction : H^0 (-12933) + OH^0 (-7318) -> No product
+At time : 25.001 ns Reaction : e_aq^-1 (-4504) + H^0 (-12864) -> OH^-1 (-13387) + H_2^0 (-13388)
+At time : 25.001 ns Reaction : e_aq^-1 (-3473) + H^0 (-12248) -> OH^-1 (-13389) + H_2^0 (-13390)
+At time : 25.001 ns Reaction : e_aq^-1 (-3927) + H2O2^0 (-11653) -> OH^-1 (-13391) + OH^0 (-13392)
+At time : 25.001 ns Reaction : H3O^1 (-10954) + e_aq^-1 (-4695) -> H^0 (-13393)
+At time : 25.001 ns Reaction : H^0 (-10610) + OH^0 (-9464) -> No product
+At time : 25.001 ns Reaction : H^0 (-10588) + e_aq^-1 (-2271) -> OH^-1 (-13394) + H_2^0 (-13395)
+At time : 25.001 ns Reaction : H^0 (-10054) + OH^0 (-6014) -> No product
+At time : 25.001 ns Reaction : OH^0 (-9811) + OH^0 (-7626) -> H2O2^0 (-13396)
+At time : 25.001 ns Reaction : e_aq^-1 (-2930) + H3O^1 (-7733) -> H^0 (-13397)
+At time : 25.001 ns Reaction : e_aq^-1 (-5675) + e_aq^-1 (-27) -> OH^-1 (-13398) + OH^-1 (-13399) + H_2^0 (-13400)
+At time : 25.001 ns Reaction : e_aq^-1 (-3833) + OH^0 (-9666) -> OH^-1 (-13401)
+At time : 26.001 ns Reaction : OH^-1 (-13305) + H3O^1 (-8113) -> No product
+At time : 26.001 ns Reaction : OH^-1 (-13224) + H3O^1 (-8193) -> No product
+At time : 26.001 ns Reaction : H^0 (-13186) + e_aq^-1 (-8341) -> OH^-1 (-13402) + H_2^0 (-13403)
+At time : 26.001 ns Reaction : OH^0 (-6638) + OH^0 (-13165) -> H2O2^0 (-13404)
+At time : 26.001 ns Reaction : H3O^1 (-8255) + OH^-1 (-13147) -> No product
+At time : 26.001 ns Reaction : H^0 (-13099) + OH^0 (-7052) -> No product
+At time : 26.001 ns Reaction : OH^0 (-7452) + H^0 (-12955) -> No product
+At time : 26.001 ns Reaction : H2O2^0 (-12898) + e_aq^-1 (-4499) -> OH^-1 (-13405) + OH^0 (-13406)
+At time : 26.001 ns Reaction : OH^-1 (-12645) + H3O^1 (-7309) -> No product
+At time : 26.001 ns Reaction : e_aq^-1 (-41) + H^0 (-12384) -> OH^-1 (-13407) + H_2^0 (-13408)
+At time : 26.001 ns Reaction : H^0 (-12150) + OH^0 (-6986) -> No product
+At time : 26.001 ns Reaction : H^0 (-10947) + OH^0 (-7542) -> No product
+At time : 26.001 ns Reaction : OH^0 (-10245) + OH^0 (-10385) -> H2O2^0 (-13409)
+At time : 26.001 ns Reaction : OH^0 (-9512) + OH^0 (-5892) -> H2O2^0 (-13410)
+At time : 26.001 ns Reaction : OH^0 (-9232) + e_aq^-1 (-8347) -> OH^-1 (-13411)
+At time : 26.001 ns Reaction : e_aq^-1 (-4493) + e_aq^-1 (-8584) -> OH^-1 (-13412) + OH^-1 (-13413) + H_2^0 (-13414)
+At time : 26.001 ns Reaction : e_aq^-1 (-957) + OH^0 (-8390) -> OH^-1 (-13415)
+At time : 27.001 ns Reaction : H3O^1 (-11149) + OH^-1 (-13348) -> No product
+At time : 27.001 ns Reaction : OH^-1 (-13124) + H3O^1 (-8283) -> No product
+At time : 27.001 ns Reaction : e_aq^-1 (-2511) + H2O2^0 (-13018) -> OH^-1 (-13416) + OH^0 (-13417)
+At time : 27.001 ns Reaction : OH^-1 (-12992) + H3O^1 (-6823) -> No product
+At time : 27.001 ns Reaction : OH^-1 (-12895) + H3O^1 (-8937) -> No product
+At time : 27.001 ns Reaction : OH^0 (-12843) + e_aq^-1 (-4686) -> OH^-1 (-13418)
+At time : 27.001 ns Reaction : H2O2^0 (-12224) + e_aq^-1 (-1705) -> OH^-1 (-13419) + OH^0 (-13420)
+At time : 27.001 ns Reaction : OH^0 (-10298) + OH^0 (-5854) -> H2O2^0 (-13421)
+At time : 28.001 ns Reaction : H3O^1 (-5843) + OH^-1 (-13418) -> No product
+At time : 28.001 ns Reaction : OH^0 (-13417) + e_aq^-1 (-2514) -> OH^-1 (-13422)
+At time : 28.001 ns Reaction : H^0 (-13372) + e_aq^-1 (-4965) -> OH^-1 (-13423) + H_2^0 (-13424)
+At time : 28.001 ns Reaction : OH^-1 (-13322) + H3O^1 (-8535) -> No product
+At time : 28.001 ns Reaction : e_aq^-1 (-4126) + H^0 (-13172) -> OH^-1 (-13425) + H_2^0 (-13426)
+At time : 28.001 ns Reaction : e_aq^-1 (-5039) + H^0 (-12970) -> OH^-1 (-13427) + H_2^0 (-13428)
+At time : 28.001 ns Reaction : OH^0 (-11170) + H^0 (-12355) -> No product
+At time : 28.001 ns Reaction : e_aq^-1 (-994) + H2O2^0 (-12264) -> OH^-1 (-13429) + OH^0 (-13430)
+At time : 28.001 ns Reaction : e_aq^-1 (-3923) + H2O2^0 (-11523) -> OH^-1 (-13431) + OH^0 (-13432)
+At time : 28.001 ns Reaction : OH^0 (-11268) + OH^0 (-7440) -> H2O2^0 (-13433)
+At time : 28.001 ns Reaction : OH^0 (-10371) + OH^0 (-6126) -> H2O2^0 (-13434)
+At time : 28.001 ns Reaction : OH^0 (-10050) + OH^0 (-8709) -> H2O2^0 (-13435)
+At time : 28.001 ns Reaction : OH^0 (-9928) + OH^0 (-6840) -> H2O2^0 (-13436)
+At time : 28.001 ns Reaction : H^0 (-9251) + e_aq^-1 (-2479) -> OH^-1 (-13437) + H_2^0 (-13438)
+At time : 28.001 ns Reaction : OH^0 (-7732) + OH^0 (-8762) -> H2O2^0 (-13439)
+At time : 28.001 ns Reaction : e_aq^-1 (-4608) + H3O^1 (-8037) -> H^0 (-13440)
+At time : 28.001 ns Reaction : e_aq^-1 (-3826) + H3O^1 (-7765) -> H^0 (-13441)
+At time : 28.001 ns Reaction : e_aq^-1 (-4818) + H3O^1 (-7109) -> H^0 (-13442)
+At time : 29.001 ns Reaction : OH^-1 (-13437) + H3O^1 (-6565) -> No product
+At time : 29.001 ns Reaction : e_aq^-1 (-1984) + H2O2^0 (-13396) -> OH^-1 (-13443) + OH^0 (-13444)
+At time : 29.001 ns Reaction : H3O^1 (-6849) + OH^-1 (-13340) -> No product
+At time : 29.001 ns Reaction : H3O^1 (-10795) + OH^-1 (-13290) -> No product
+At time : 29.001 ns Reaction : H3O^1 (-10769) + OH^-1 (-13267) -> No product
+At time : 29.001 ns Reaction : OH^0 (-13249) + H^0 (-12043) -> No product
+At time : 29.001 ns Reaction : OH^0 (-13225) + e_aq^-1 (-5045) -> OH^-1 (-13445)
+At time : 29.001 ns Reaction : H3O^1 (-9675) + OH^-1 (-13078) -> No product
+At time : 29.001 ns Reaction : e_aq^-1 (-5109) + OH^0 (-12966) -> OH^-1 (-13446)
+At time : 29.001 ns Reaction : OH^0 (-6074) + OH^0 (-12327) -> H2O2^0 (-13447)
+At time : 29.001 ns Reaction : e_aq^-1 (-5511) + H3O^1 (-7373) -> H^0 (-13448)
+At time : 29.001 ns Reaction : e_aq^-1 (-3700) + OH^0 (-6464) -> OH^-1 (-13449)
+At time : 29.001 ns Reaction : OH^0 (-5784) + OH^0 (-5898) -> H2O2^0 (-13450)
+At time : 29.001 ns Reaction : e_aq^-1 (-3501) + OH^0 (-5874) -> OH^-1 (-13451)
+At time : 30.001 ns Reaction : H3O^1 (-6791) + OH^-1 (-13443) -> No product
+At time : 30.001 ns Reaction : OH^-1 (-13394) + H3O^1 (-6661) -> No product
+At time : 30.001 ns Reaction : OH^-1 (-13375) + H3O^1 (-8595) -> No product
+At time : 30.001 ns Reaction : H3O^1 (-10404) + OH^-1 (-13309) -> No product
+At time : 30.001 ns Reaction : e_aq^-1 (-4775) + H^0 (-12972) -> OH^-1 (-13452) + H_2^0 (-13453)
+At time : 30.001 ns Reaction : OH^-1 (-12727) + H3O^1 (-6463) -> No product
+At time : 30.001 ns Reaction : H3O^1 (-7457) + OH^-1 (-12654) -> No product
+At time : 30.001 ns Reaction : H^0 (-11614) + e_aq^-1 (-4454) -> OH^-1 (-13454) + H_2^0 (-13455)
+At time : 30.001 ns Reaction : OH^0 (-10604) + OH^0 (-9466) -> H2O2^0 (-13456)
+At time : 30.001 ns Reaction : OH^0 (-10495) + OH^0 (-8018) -> H2O2^0 (-13457)
+At time : 30.001 ns Reaction : OH^0 (-9709) + OH^0 (-5950) -> H2O2^0 (-13458)
+At time : 30.001 ns Reaction : H^0 (-9489) + e_aq^-1 (-3338) -> OH^-1 (-13459) + H_2^0 (-13460)
+At time : 30.001 ns Reaction : OH^0 (-9417) + OH^0 (-8162) -> H2O2^0 (-13461)
+At time : 30.001 ns Reaction : e_aq^-1 (-2639) + OH^0 (-6528) -> OH^-1 (-13462)
+At time : 30.001 ns Reaction : e_aq^-1 (-4281) + OH^0 (-7922) -> OH^-1 (-13463)
+At time : 31.001 ns Reaction : H3O^1 (-7149) + OH^-1 (-13445) -> No product
+At time : 31.001 ns Reaction : e_aq^-1 (-5602) + H2O2^0 (-13434) -> OH^-1 (-13464) + OH^0 (-13465)
+At time : 31.001 ns Reaction : H3O^1 (-9717) + OH^-1 (-13431) -> No product
+At time : 31.001 ns Reaction : OH^-1 (-13415) + H3O^1 (-8089) -> No product
+At time : 31.001 ns Reaction : OH^-1 (-13336) + H3O^1 (-8253) -> No product
+At time : 31.001 ns Reaction : OH^0 (-13083) + OH^0 (-8198) -> H2O2^0 (-13466)
+At time : 31.001 ns Reaction : e_aq^-1 (-4512) + H2O2^0 (-13057) -> OH^-1 (-13467) + OH^0 (-13468)
+At time : 31.001 ns Reaction : H3O^1 (-11057) + OH^-1 (-12965) -> No product
+At time : 31.001 ns Reaction : H^0 (-12852) + e_aq^-1 (-8911) -> OH^-1 (-13469) + H_2^0 (-13470)
+At time : 31.001 ns Reaction : OH^-1 (-12669) + H3O^1 (-8706) -> No product
+At time : 31.001 ns Reaction : e_aq^-1 (-4513) + H2O2^0 (-12223) -> OH^-1 (-13471) + OH^0 (-13472)
+At time : 31.001 ns Reaction : e_aq^-1 (-1482) + H2O2^0 (-11577) -> OH^-1 (-13473) + OH^0 (-13474)
+At time : 31.001 ns Reaction : OH^0 (-10263) + OH^0 (-8234) -> H2O2^0 (-13475)
+At time : 31.001 ns Reaction : e_aq^-1 (-3979) + H3O^1 (-9808) -> H^0 (-13476)
+At time : 31.001 ns Reaction : H^0 (-9253) + OH^0 (-9799) -> No product
+At time : 31.001 ns Reaction : OH^0 (-9519) + OH^0 (-7708) -> H2O2^0 (-13477)
+At time : 31.001 ns Reaction : H^0 (-9218) + OH^0 (-6460) -> No product
+At time : 31.001 ns Reaction : H3O^1 (-7311) + e_aq^-1 (-8404) -> H^0 (-13478)
+At time : 31.001 ns Reaction : OH^0 (-6206) + OH^0 (-6706) -> H2O2^0 (-13479)
+At time : 32.001 ns Reaction : H3O^1 (-10426) + OH^-1 (-13446) -> No product
+At time : 32.001 ns Reaction : H3O^1 (-7647) + OH^-1 (-13230) -> No product
+At time : 32.001 ns Reaction : H3O^1 (-10646) + OH^-1 (-13216) -> No product
+At time : 32.001 ns Reaction : e_aq^-1 (-3661) + H2O2^0 (-12652) -> OH^-1 (-13480) + OH^0 (-13481)
+At time : 32.001 ns Reaction : OH^0 (-12548) + OH^0 (-7170) -> H2O2^0 (-13482)
+At time : 32.001 ns Reaction : OH^-1 (-12406) + H3O^1 (-7815) -> No product
+At time : 32.001 ns Reaction : e_aq^-1 (-4182) + H^0 (-12275) -> OH^-1 (-13483) + H_2^0 (-13484)
+At time : 32.001 ns Reaction : e_aq^-1 (-81) + OH^0 (-11192) -> OH^-1 (-13485)
+At time : 32.001 ns Reaction : OH^0 (-10808) + OH^0 (-8522) -> H2O2^0 (-13486)
+At time : 32.001 ns Reaction : OH^0 (-8304) + OH^0 (-8657) -> H2O2^0 (-13487)
+At time : 33.001 ns Reaction : H3O^1 (-7315) + OH^-1 (-13464) -> No product
+At time : 33.001 ns Reaction : H^0 (-13393) + e_aq^-1 (-4586) -> OH^-1 (-13488) + H_2^0 (-13489)
+At time : 33.001 ns Reaction : H3O^1 (-10986) + OH^-1 (-13030) -> No product
+At time : 33.001 ns Reaction : OH^0 (-13007) + e_aq^-1 (-5259) -> OH^-1 (-13490)
+At time : 33.001 ns Reaction : OH^0 (-9430) + H^0 (-12924) -> No product
+At time : 33.001 ns Reaction : OH^-1 (-12818) + H3O^1 (-8261) -> No product
+At time : 33.001 ns Reaction : e_aq^-1 (-5115) + H2O2^0 (-12641) -> OH^-1 (-13491) + OH^0 (-13492)
+At time : 33.001 ns Reaction : H3O^1 (-6487) + OH^-1 (-12460) -> No product
+At time : 33.001 ns Reaction : OH^-1 (-12324) + H3O^1 (-6245) -> No product
+At time : 33.001 ns Reaction : e_aq^-1 (-5574) + H2O2^0 (-11878) -> OH^-1 (-13493) + OH^0 (-13494)
+At time : 33.001 ns Reaction : H3O^1 (-10506) + e_aq^-1 (-4680) -> H^0 (-13495)
+At time : 33.001 ns Reaction : H3O^1 (-10117) + e_aq^-1 (-4851) -> H^0 (-13496)
+At time : 33.001 ns Reaction : e_aq^-1 (-5440) + OH^0 (-8932) -> OH^-1 (-13497)
+At time : 33.001 ns Reaction : e_aq^-1 (-3612) + OH^0 (-6330) -> OH^-1 (-13498)
+At time : 34.001 ns Reaction : OH^-1 (-13367) + H3O^1 (-6701) -> No product
+At time : 34.001 ns Reaction : OH^-1 (-13262) + H3O^1 (-7773) -> No product
+At time : 34.001 ns Reaction : OH^-1 (-13043) + H3O^1 (-7407) -> No product
+At time : 34.001 ns Reaction : OH^-1 (-12758) + H3O^1 (-6327) -> No product
+At time : 34.001 ns Reaction : OH^-1 (-12709) + H3O^1 (-7641) -> No product
+At time : 34.001 ns Reaction : e_aq^-1 (-2719) + H^0 (-12644) -> OH^-1 (-13499) + H_2^0 (-13500)
+At time : 34.001 ns Reaction : OH^-1 (-11788) + H3O^1 (-6231) -> No product
+At time : 34.001 ns Reaction : H^0 (-10668) + e_aq^-1 (-2837) -> OH^-1 (-13501) + H_2^0 (-13502)
+At time : 34.001 ns Reaction : OH^0 (-10605) + OH^0 (-7668) -> H2O2^0 (-13503)
+At time : 34.001 ns Reaction : OH^0 (-9676) + OH^0 (-5946) -> H2O2^0 (-13504)
+At time : 34.001 ns Reaction : OH^0 (-9275) + OH^0 (-5974) -> H2O2^0 (-13505)
+At time : 34.001 ns Reaction : OH^0 (-9269) + OH^0 (-6774) -> H2O2^0 (-13506)
+At time : 35.001 ns Reaction : OH^-1 (-13467) + H3O^1 (-8583) -> No product
+At time : 35.001 ns Reaction : H3O^1 (-7597) + OH^-1 (-13353) -> No product
+At time : 35.001 ns Reaction : OH^-1 (-13317) + H3O^1 (-6865) -> No product
+At time : 35.001 ns Reaction : H3O^1 (-9883) + OH^-1 (-13265) -> No product
+At time : 35.001 ns Reaction : OH^0 (-13167) + OH^0 (-7582) -> H2O2^0 (-13507)
+At time : 35.001 ns Reaction : e_aq^-1 (-660) + OH^0 (-13108) -> OH^-1 (-13508)
+At time : 35.001 ns Reaction : OH^0 (-13061) + e_aq^-1 (-3677) -> OH^-1 (-13509)
+At time : 35.001 ns Reaction : e_aq^-1 (-2498) + H^0 (-12899) -> OH^-1 (-13510) + H_2^0 (-13511)
+At time : 35.001 ns Reaction : e_aq^-1 (-17) + H2O2^0 (-12403) -> OH^-1 (-13512) + OH^0 (-13513)
+At time : 35.001 ns Reaction : e_aq^-1 (-5405) + H^0 (-12356) -> OH^-1 (-13514) + H_2^0 (-13515)
+At time : 35.001 ns Reaction : OH^-1 (-12328) + H3O^1 (-7205) -> No product
+At time : 35.001 ns Reaction : OH^-1 (-12086) + H3O^1 (-6925) -> No product
+At time : 35.001 ns Reaction : e_aq^-1 (-4133) + H2O2^0 (-11975) -> OH^-1 (-13516) + OH^0 (-13517)
+At time : 35.001 ns Reaction : e_aq^-1 (-4118) + H2O2^0 (-11940) -> OH^-1 (-13518) + OH^0 (-13519)
+At time : 35.001 ns Reaction : e_aq^-1 (-4157) + OH^0 (-7864) -> OH^-1 (-13520)
+At time : 35.001 ns Reaction : e_aq^-1 (-2430) + OH^0 (-6662) -> OH^-1 (-13521)
+At time : 35.001 ns Reaction : e_aq^-1 (-2635) + H3O^1 (-5951) -> H^0 (-13522)
+At time : 36.001 ns Reaction : H3O^1 (-7171) + OH^-1 (-13490) -> No product
+At time : 36.001 ns Reaction : e_aq^-1 (-4930) + H^0 (-13442) -> OH^-1 (-13523) + H_2^0 (-13524)
+At time : 36.001 ns Reaction : H3O^1 (-6369) + OH^-1 (-13313) -> No product
+At time : 36.001 ns Reaction : OH^0 (-12672) + e_aq^-1 (-3610) -> OH^-1 (-13525)
+At time : 36.001 ns Reaction : H^0 (-12168) + e_aq^-1 (-1169) -> OH^-1 (-13526) + H_2^0 (-13527)
+At time : 36.001 ns Reaction : H2O2^0 (-12142) + e_aq^-1 (-5054) -> OH^-1 (-13528) + OH^0 (-13529)
+At time : 36.001 ns Reaction : H2O2^0 (-12093) + e_aq^-1 (-8569) -> OH^-1 (-13530) + OH^0 (-13531)
+At time : 36.001 ns Reaction : H^0 (-11238) + OH^0 (-6772) -> No product
+At time : 36.001 ns Reaction : OH^0 (-7862) + OH^0 (-7880) -> H2O2^0 (-13532)
+At time : 37.001 ns Reaction : e_aq^-1 (-1579) + OH^0 (-13468) -> OH^-1 (-13533)
+At time : 37.001 ns Reaction : OH^-1 (-13427) + H3O^1 (-5849) -> No product
+At time : 37.001 ns Reaction : H3O^1 (-7329) + OH^-1 (-13386) -> No product
+At time : 37.001 ns Reaction : H3O^1 (-6691) + OH^-1 (-13215) -> No product
+At time : 37.001 ns Reaction : OH^-1 (-13042) + H3O^1 (-5897) -> No product
+At time : 37.001 ns Reaction : H^0 (-12733) + e_aq^-1 (-8560) -> OH^-1 (-13534) + H_2^0 (-13535)
+At time : 37.001 ns Reaction : OH^-1 (-12426) + H3O^1 (-8109) -> No product
+At time : 37.001 ns Reaction : e_aq^-1 (-8335) + H^0 (-12256) -> OH^-1 (-13536) + H_2^0 (-13537)
+At time : 37.001 ns Reaction : e_aq^-1 (-4239) + H2O2^0 (-12116) -> OH^-1 (-13538) + OH^0 (-13539)
+At time : 37.001 ns Reaction : e_aq^-1 (-4361) + H^0 (-12066) -> OH^-1 (-13540) + H_2^0 (-13541)
+At time : 37.001 ns Reaction : H2O2^0 (-11864) + e_aq^-1 (-8377) -> OH^-1 (-13542) + OH^0 (-13543)
+At time : 37.001 ns Reaction : e_aq^-1 (-4284) + H2O2^0 (-11487) -> OH^-1 (-13544) + OH^0 (-13545)
+At time : 37.001 ns Reaction : OH^0 (-10953) + OH^0 (-7538) -> H2O2^0 (-13546)
+At time : 37.001 ns Reaction : OH^0 (-9551) + H^0 (-9545) -> No product
+At time : 37.001 ns Reaction : H3O^1 (-7969) + e_aq^-1 (-8854) -> H^0 (-13547)
+At time : 37.001 ns Reaction : OH^0 (-6652) + OH^0 (-7796) -> H2O2^0 (-13548)
+At time : 37.001 ns Reaction : OH^0 (-6172) + OH^0 (-6970) -> H2O2^0 (-13549)
+At time : 37.001 ns Reaction : e_aq^-1 (-3469) + OH^0 (-7674) -> OH^-1 (-13550)
+At time : 38.001 ns Reaction : H3O^1 (-11053) + OH^-1 (-13429) -> No product
+At time : 38.001 ns Reaction : OH^-1 (-13289) + H3O^1 (-8679) -> No product
+At time : 38.001 ns Reaction : e_aq^-1 (-2109) + H2O2^0 (-13081) -> OH^-1 (-13551) + OH^0 (-13552)
+At time : 38.001 ns Reaction : H^0 (-12417) + e_aq^-1 (-4356) -> OH^-1 (-13553) + H_2^0 (-13554)
+At time : 38.001 ns Reaction : e_aq^-1 (-2565) + H^0 (-12031) -> OH^-1 (-13555) + H_2^0 (-13556)
+At time : 38.001 ns Reaction : H^0 (-10637) + OH^0 (-7710) -> No product
+At time : 38.001 ns Reaction : H^0 (-10602) + OH^0 (-9454) -> No product
+At time : 38.001 ns Reaction : H^0 (-9684) + e_aq^-1 (-3901) -> OH^-1 (-13557) + H_2^0 (-13558)
+At time : 38.001 ns Reaction : H^0 (-9641) + OH^0 (-6568) -> No product
+At time : 38.001 ns Reaction : e_aq^-1 (-2502) + H3O^1 (-7799) -> H^0 (-13559)
+At time : 39.001 ns Reaction : OH^-1 (-13423) + H3O^1 (-8631) -> No product
+At time : 39.001 ns Reaction : OH^-1 (-13411) + H3O^1 (-7657) -> No product
+At time : 39.001 ns Reaction : H2O2^0 (-13384) + e_aq^-1 (-2488) -> OH^-1 (-13560) + OH^0 (-13561)
+At time : 39.001 ns Reaction : H3O^1 (-6711) + OH^-1 (-13324) -> No product
+At time : 39.001 ns Reaction : OH^-1 (-12776) + H3O^1 (-6115) -> No product
+At time : 39.001 ns Reaction : e_aq^-1 (-195) + H2O2^0 (-12300) -> OH^-1 (-13562) + OH^0 (-13563)
+At time : 39.001 ns Reaction : OH^-1 (-12132) + H3O^1 (-7469) -> No product
+At time : 39.001 ns Reaction : H2O2^0 (-11394) + e_aq^-1 (-3939) -> OH^-1 (-13564) + OH^0 (-13565)
+At time : 39.001 ns Reaction : OH^0 (-10499) + e_aq^-1 (-1289) -> OH^-1 (-13566)
+At time : 39.001 ns Reaction : H3O^1 (-9518) + e_aq^-1 (-3568) -> H^0 (-13567)
+At time : 40.001 ns Reaction : OH^-1 (-13509) + H3O^1 (-6363) -> No product
+At time : 40.001 ns Reaction : e_aq^-1 (-5308) + H2O2^0 (-13475) -> OH^-1 (-13568) + OH^0 (-13569)
+At time : 40.001 ns Reaction : H^0 (-10562) + OH^0 (-13323) -> No product
+At time : 40.001 ns Reaction : H3O^1 (-6535) + OH^-1 (-13286) -> No product
+At time : 40.001 ns Reaction : OH^-1 (-12665) + H3O^1 (-9960) -> No product
+At time : 40.001 ns Reaction : e_aq^-1 (-5468) + H2O2^0 (-12525) -> OH^-1 (-13570) + OH^0 (-13571)
+At time : 40.001 ns Reaction : H2O2^0 (-12394) + e_aq^-1 (-8506) -> OH^-1 (-13572) + OH^0 (-13573)
+At time : 40.001 ns Reaction : e_aq^-1 (-4683) + H2O2^0 (-11874) -> OH^-1 (-13574) + OH^0 (-13575)
+At time : 40.001 ns Reaction : e_aq^-1 (-2339) + H2O2^0 (-11402) -> OH^-1 (-13576) + OH^0 (-13577)
+At time : 40.001 ns Reaction : H2O2^0 (-11370) + e_aq^-1 (-4048) -> OH^-1 (-13578) + OH^0 (-13579)
+At time : 40.001 ns Reaction : e_aq^-1 (-641) + OH^0 (-10441) -> OH^-1 (-13580)
+At time : 40.001 ns Reaction : OH^0 (-10109) + OH^0 (-8032) -> H2O2^0 (-13581)
+At time : 40.001 ns Reaction : OH^0 (-9604) + e_aq^-1 (-2815) -> OH^-1 (-13582)
+At time : 40.001 ns Reaction : OH^0 (-6574) + OH^0 (-6590) -> H2O2^0 (-13583)
+At time : 40.001 ns Reaction : e_aq^-1 (-3021) + OH^0 (-6324) -> OH^-1 (-13584)
+At time : 41.001 ns Reaction : OH^-1 (-13574) + H3O^1 (-7503) -> No product
+At time : 41.001 ns Reaction : OH^-1 (-13564) + H3O^1 (-6719) -> No product
+At time : 41.001 ns Reaction : H3O^1 (-10701) + OH^-1 (-13555) -> No product
+At time : 41.001 ns Reaction : e_aq^-1 (-3907) + H2O2^0 (-13479) -> OH^-1 (-13585) + OH^0 (-13586)
+At time : 41.001 ns Reaction : OH^-1 (-13303) + H3O^1 (-8406) -> No product
+At time : 41.001 ns Reaction : H3O^1 (-10274) + OH^-1 (-13275) -> No product
+At time : 41.001 ns Reaction : e_aq^-1 (-3549) + H2O2^0 (-13053) -> OH^-1 (-13587) + OH^0 (-13588)
+At time : 41.001 ns Reaction : H^0 (-11034) + e_aq^-1 (-964) -> OH^-1 (-13589) + H_2^0 (-13590)
+At time : 41.001 ns Reaction : OH^0 (-10003) + OH^0 (-7940) -> H2O2^0 (-13591)
+At time : 41.001 ns Reaction : OH^0 (-9568) + OH^0 (-9540) -> H2O2^0 (-13592)
+At time : 41.001 ns Reaction : e_aq^-1 (-3803) + H3O^1 (-7651) -> H^0 (-13593)
+At time : 41.001 ns Reaction : e_aq^-1 (-45) + H3O^1 (-7369) -> H^0 (-13594)
+At time : 42.001 ns Reaction : H3O^1 (-7549) + OH^-1 (-13405) -> No product
+At time : 42.001 ns Reaction : OH^0 (-13295) + OH^0 (-8582) -> H2O2^0 (-13595)
+At time : 42.001 ns Reaction : OH^-1 (-13159) + H3O^1 (-5857) -> No product
+At time : 42.001 ns Reaction : OH^-1 (-12686) + H3O^1 (-6375) -> No product
+At time : 42.001 ns Reaction : H^0 (-12284) + e_aq^-1 (-995) -> OH^-1 (-13596) + H_2^0 (-13597)
+At time : 42.001 ns Reaction : e_aq^-1 (-2735) + H2O2^0 (-11896) -> OH^-1 (-13598) + OH^0 (-13599)
+At time : 42.001 ns Reaction : H2O2^0 (-11491) + e_aq^-1 (-5543) -> OH^-1 (-13600) + OH^0 (-13601)
+At time : 42.001 ns Reaction : H^0 (-11109) + OH^0 (-8202) -> No product
+At time : 42.001 ns Reaction : H3O^1 (-10516) + e_aq^-1 (-8530) -> H^0 (-13602)
+At time : 42.001 ns Reaction : OH^0 (-9884) + OH^0 (-5978) -> H2O2^0 (-13603)
+At time : 42.001 ns Reaction : OH^-1 (-13425) + H3O^1 (-6799) -> No product
+At time : 43.001 ns Reaction : e_aq^-1 (-12) + OH^0 (-13601) -> OH^-1 (-13604)
+At time : 43.001 ns Reaction : H^0 (-12387) + OH^0 (-6180) -> No product
+At time : 43.001 ns Reaction : e_aq^-1 (-5493) + H2O2^0 (-11500) -> OH^-1 (-13605) + OH^0 (-13606)
+At time : 43.001 ns Reaction : e_aq^-1 (-218) + H2O2^0 (-11433) -> OH^-1 (-13607) + OH^0 (-13608)
+At time : 43.001 ns Reaction : H^0 (-9359) + OH^0 (-5805) -> No product
+At time : 43.001 ns Reaction : OH^0 (-7488) + OH^0 (-8474) -> H2O2^0 (-13609)
+At time : 43.001 ns Reaction : e_aq^-1 (-5418) + H3O^1 (-6119) -> H^0 (-13610)
+At time : 44.001 ns Reaction : e_aq^-1 (-899) + H^0 (-13496) -> OH^-1 (-13611) + H_2^0 (-13612)
+At time : 44.001 ns Reaction : OH^-1 (-13364) + H3O^1 (-6589) -> No product
+At time : 44.001 ns Reaction : H^0 (-13184) + e_aq^-1 (-8674) -> OH^-1 (-13613) + H_2^0 (-13614)
+At time : 44.001 ns Reaction : H^0 (-13132) + e_aq^-1 (-4322) -> OH^-1 (-13615) + H_2^0 (-13616)
+At time : 44.001 ns Reaction : e_aq^-1 (-2786) + H2O2^0 (-12975) -> OH^-1 (-13617) + OH^0 (-13618)
+At time : 44.001 ns Reaction : e_aq^-1 (-5256) + H^0 (-12637) -> OH^-1 (-13619) + H_2^0 (-13620)
+At time : 44.001 ns Reaction : OH^-1 (-12425) + H3O^1 (-7497) -> No product
+At time : 44.001 ns Reaction : OH^0 (-8142) + OH^0 (-8156) -> H2O2^0 (-13621)
+At time : 44.001 ns Reaction : e_aq^-1 (-1774) + H3O^1 (-6891) -> H^0 (-13622)
+At time : 44.001 ns Reaction : e_aq^-1 (-3550) + e_aq^-1 (-3222) -> OH^-1 (-13623) + OH^-1 (-13624) + H_2^0 (-13625)
+At time : 45.001 ns Reaction : H^0 (-13602) + e_aq^-1 (-4443) -> OH^-1 (-13626) + H_2^0 (-13627)
+At time : 45.001 ns Reaction : OH^-1 (-13533) + H3O^1 (-8607) -> No product
+At time : 45.001 ns Reaction : H3O^1 (-5981) + OH^-1 (-13483) -> No product
+At time : 45.001 ns Reaction : H3O^1 (-5867) + OH^-1 (-13471) -> No product
+At time : 45.001 ns Reaction : OH^0 (-13444) + e_aq^-1 (-2111) -> OH^-1 (-13628)
+At time : 45.001 ns Reaction : OH^0 (-7600) + OH^0 (-13420) -> H2O2^0 (-13629)
+At time : 45.001 ns Reaction : OH^-1 (-13218) + H3O^1 (-7451) -> No product
+At time : 45.001 ns Reaction : OH^0 (-13204) + OH^0 (-7284) -> H2O2^0 (-13630)
+At time : 45.001 ns Reaction : H3O^1 (-7317) + OH^-1 (-13012) -> No product
+At time : 45.001 ns Reaction : OH^0 (-10020) + OH^0 (-12800) -> H2O2^0 (-13631)
+At time : 45.001 ns Reaction : H2O2^0 (-12592) + e_aq^-1 (-5291) -> OH^-1 (-13632) + OH^0 (-13633)
+At time : 45.001 ns Reaction : e_aq^-1 (-5613) + H2O2^0 (-12461) -> OH^-1 (-13634) + OH^0 (-13635)
+At time : 45.001 ns Reaction : e_aq^-1 (-5649) + H3O^1 (-11167) -> H^0 (-13636)
+At time : 45.001 ns Reaction : H^0 (-10957) + OH^0 (-7526) -> No product
+At time : 45.001 ns Reaction : OH^0 (-9731) + OH^0 (-6688) -> H2O2^0 (-13637)
+At time : 45.001 ns Reaction : OH^0 (-9486) + OH^0 (-9479) -> H2O2^0 (-13638)
+At time : 45.001 ns Reaction : H3O^1 (-7899) + e_aq^-1 (-8791) -> H^0 (-13639)
+At time : 45.001 ns Reaction : OH^0 (-7642) + OH^0 (-8546) -> H2O2^0 (-13640)
+At time : 45.001 ns Reaction : e_aq^-1 (-142) + H3O^1 (-7381) -> H^0 (-13641)
+At time : 46.001 ns Reaction : H3O^1 (-10737) + OH^-1 (-13585) -> No product
+At time : 46.001 ns Reaction : OH^-1 (-13528) + H3O^1 (-8622) -> No product
+At time : 46.001 ns Reaction : H3O^1 (-7757) + OH^-1 (-13501) -> No product
+At time : 46.001 ns Reaction : e_aq^-1 (-4656) + H^0 (-13093) -> OH^-1 (-13642) + H_2^0 (-13643)
+At time : 46.001 ns Reaction : OH^0 (-12579) + H^0 (-12271) -> No product
+At time : 46.001 ns Reaction : e_aq^-1 (-4170) + OH^0 (-12561) -> OH^-1 (-13644)
+At time : 46.001 ns Reaction : H^0 (-12367) + e_aq^-1 (-3481) -> OH^-1 (-13645) + H_2^0 (-13646)
+At time : 46.001 ns Reaction : e_aq^-1 (-2601) + H^0 (-11228) -> OH^-1 (-13647) + H_2^0 (-13648)
+At time : 46.001 ns Reaction : OH^0 (-10065) + H^0 (-8976) -> No product
+At time : 46.001 ns Reaction : e_aq^-1 (-4379) + H3O^1 (-7565) -> H^0 (-13649)
+At time : 47.001 ns Reaction : OH^-1 (-13589) + H3O^1 (-7135) -> No product
+At time : 47.001 ns Reaction : H3O^1 (-7123) + OH^-1 (-13580) -> No product
+At time : 47.001 ns Reaction : H3O^1 (-10331) + OH^-1 (-13399) -> No product
+At time : 47.001 ns Reaction : OH^-1 (-13369) + H3O^1 (-7093) -> No product
+At time : 47.001 ns Reaction : e_aq^-1 (-3891) + H2O2^0 (-13072) -> OH^-1 (-13650) + OH^0 (-13651)
+At time : 47.001 ns Reaction : e_aq^-1 (-875) + OH^0 (-12987) -> OH^-1 (-13652)
+At time : 47.001 ns Reaction : e_aq^-1 (-4991) + H^0 (-9337) -> OH^-1 (-13653) + H_2^0 (-13654)
+At time : 48.001 ns Reaction : e_aq^-1 (-2328) + OH^0 (-13586) -> OH^-1 (-13655)
+At time : 48.001 ns Reaction : OH^-1 (-13578) + H3O^1 (-7829) -> No product
+At time : 48.001 ns Reaction : OH^-1 (-13568) + H3O^1 (-7423) -> No product
+At time : 48.001 ns Reaction : H2O2^0 (-12982) + e_aq^-1 (-2518) -> OH^-1 (-13656) + OH^0 (-13657)
+At time : 48.001 ns Reaction : H2O2^0 (-12833) + e_aq^-1 (-8578) -> OH^-1 (-13658) + OH^0 (-13659)
+At time : 48.001 ns Reaction : e_aq^-1 (-5194) + H2O2^0 (-12068) -> OH^-1 (-13660) + OH^0 (-13661)
+At time : 48.001 ns Reaction : e_aq^-1 (-4877) + H2O2^0 (-11897) -> OH^-1 (-13662) + OH^0 (-13663)
+At time : 48.001 ns Reaction : e_aq^-1 (-3760) + H2O2^0 (-11713) -> OH^-1 (-13664) + OH^0 (-13665)
+At time : 48.001 ns Reaction : H^0 (-10760) + e_aq^-1 (-8362) -> OH^-1 (-13666) + H_2^0 (-13667)
+At time : 48.001 ns Reaction : e_aq^-1 (-4034) + H3O^1 (-10726) -> H^0 (-13668)
+At time : 49.001 ns Reaction : OH^-1 (-13634) + H3O^1 (-8281) -> No product
+At time : 49.001 ns Reaction : OH^-1 (-13572) + H3O^1 (-7211) -> No product
+At time : 49.001 ns Reaction : OH^-1 (-13562) + H3O^1 (-8325) -> No product
+At time : 49.001 ns Reaction : OH^-1 (-13485) + H3O^1 (-11180) -> No product
+At time : 49.001 ns Reaction : e_aq^-1 (-1079) + H^0 (-13279) -> OH^-1 (-13669) + H_2^0 (-13670)
+At time : 49.001 ns Reaction : OH^-1 (-13253) + H3O^1 (-7909) -> No product
+At time : 49.001 ns Reaction : e_aq^-1 (-4848) + H^0 (-13068) -> OH^-1 (-13671) + H_2^0 (-13672)
+At time : 49.001 ns Reaction : H^0 (-9426) + OH^0 (-6046) -> No product
+At time : 49.001 ns Reaction : H^0 (-9201) + e_aq^-1 (-3593) -> OH^-1 (-13673) + H_2^0 (-13674)
+At time : 49.001 ns Reaction : e_aq^-1 (-8485) + e_aq^-1 (-8947) -> OH^-1 (-13675) + OH^-1 (-13676) + H_2^0 (-13677)
+At time : 50.001 ns Reaction : OH^0 (-13635) + OH^0 (-7408) -> H2O2^0 (-13678)
+At time : 50.001 ns Reaction : OH^-1 (-13628) + H3O^1 (-7611) -> No product
+At time : 50.001 ns Reaction : OH^-1 (-13619) + H3O^1 (-8159) -> No product
+At time : 50.001 ns Reaction : OH^-1 (-13615) + H3O^1 (-8577) -> No product
+At time : 50.001 ns Reaction : H^0 (-12405) + e_aq^-1 (-4852) -> OH^-1 (-13679) + H_2^0 (-13680)
+At time : 50.001 ns Reaction : e_aq^-1 (-4452) + OH^0 (-10917) -> OH^-1 (-13681)
+At time : 50.001 ns Reaction : e_aq^-1 (-3526) + OH^0 (-7700) -> OH^-1 (-13682)
+At time : 50.001 ns Reaction : OH^0 (-6364) + OH^0 (-6366) -> H2O2^0 (-13683)
+At time : 50.001 ns Reaction : e_aq^-1 (-3149) + OH^0 (-6294) -> OH^-1 (-13684)
+At time : 51.001 ns Reaction : OH^-1 (-13656) + H3O^1 (-9673) -> No product
+At time : 51.001 ns Reaction : OH^-1 (-13645) + H3O^1 (-7675) -> No product
+At time : 51.001 ns Reaction : e_aq^-1 (-111) + OH^0 (-13606) -> OH^-1 (-13685)
+At time : 51.001 ns Reaction : e_aq^-1 (-8398) + OH^0 (-13529) -> OH^-1 (-13686)
+At time : 51.001 ns Reaction : OH^0 (-9563) + H^0 (-9586) -> No product
+At time : 52.001 ns Reaction : H3O^1 (-10422) + OH^-1 (-13491) -> No product
+At time : 52.001 ns Reaction : e_aq^-1 (-2380) + OH^0 (-13432) -> OH^-1 (-13687)
+At time : 52.001 ns Reaction : H^0 (-13026) + OH^0 (-6976) -> No product
+At time : 52.001 ns Reaction : OH^0 (-12985) + OH^0 (-7206) -> H2O2^0 (-13688)
+At time : 52.001 ns Reaction : H^0 (-12514) + H^0 (-12566) -> H_2^0 (-13689)
+At time : 52.001 ns Reaction : e_aq^-1 (-4258) + H2O2^0 (-12057) -> OH^-1 (-13690) + OH^0 (-13691)
+At time : 52.001 ns Reaction : e_aq^-1 (-3595) + H3O^1 (-6335) -> H^0 (-13692)
+At time : 52.001 ns Reaction : e_aq^-1 (-4176) + H3O^1 (-6199) -> H^0 (-13693)
+At time : 53.001 ns Reaction : OH^-1 (-13662) + H3O^1 (-6997) -> No product
+At time : 53.001 ns Reaction : H3O^1 (-6607) + OH^-1 (-13521) -> No product
+At time : 53.001 ns Reaction : H3O^1 (-10567) + OH^-1 (-13516) -> No product
+At time : 53.001 ns Reaction : H^0 (-12464) + e_aq^-1 (-4812) -> OH^-1 (-13694) + H_2^0 (-13695)
+At time : 53.001 ns Reaction : e_aq^-1 (-8596) + H2O2^0 (-12421) -> OH^-1 (-13696) + OH^0 (-13697)
+At time : 53.001 ns Reaction : e_aq^-1 (-5272) + H2O2^0 (-12063) -> OH^-1 (-13698) + OH^0 (-13699)
+At time : 53.001 ns Reaction : e_aq^-1 (-1026) + H2O2^0 (-11455) -> OH^-1 (-13700) + OH^0 (-13701)
+At time : 53.001 ns Reaction : H3O^1 (-9927) + e_aq^-1 (-4207) -> H^0 (-13702)
+At time : 53.001 ns Reaction : OH^0 (-9354) + e_aq^-1 (-5205) -> OH^-1 (-13703)
+At time : 54.001 ns Reaction : OH^-1 (-13523) + H3O^1 (-7173) -> No product
+At time : 54.001 ns Reaction : e_aq^-1 (-5118) + H2O2^0 (-13461) -> OH^-1 (-13704) + OH^0 (-13705)
+At time : 54.001 ns Reaction : e_aq^-1 (-1533) + OH^0 (-12868) -> OH^-1 (-13706)
+At time : 54.001 ns Reaction : e_aq^-1 (-3465) + H^0 (-12554) -> OH^-1 (-13707) + H_2^0 (-13708)
+At time : 54.001 ns Reaction : e_aq^-1 (-446) + H^0 (-12372) -> OH^-1 (-13709) + H_2^0 (-13710)
+At time : 54.001 ns Reaction : e_aq^-1 (-8692) + H2O2^0 (-11592) -> OH^-1 (-13711) + OH^0 (-13712)
+At time : 54.001 ns Reaction : e_aq^-1 (-8380) + e_aq^-1 (-8515) -> OH^-1 (-13713) + OH^-1 (-13714) + H_2^0 (-13715)
+At time : 54.001 ns Reaction : e_aq^-1 (-4836) + OH^0 (-7104) -> OH^-1 (-13716)
+At time : 55.001 ns Reaction : OH^-1 (-13706) + H3O^1 (-6913) -> No product
+At time : 55.001 ns Reaction : OH^-1 (-13704) + H3O^1 (-8105) -> No product
+At time : 55.001 ns Reaction : OH^-1 (-13598) + H3O^1 (-6637) -> No product
+At time : 55.001 ns Reaction : OH^-1 (-13570) + H3O^1 (-7427) -> No product
+At time : 55.001 ns Reaction : e_aq^-1 (-4388) + H2O2^0 (-13486) -> OH^-1 (-13717) + OH^0 (-13718)
+At time : 55.001 ns Reaction : e_aq^-1 (-2968) + H3O^1 (-8766) -> H^0 (-13719)
+At time : 56.001 ns Reaction : e_aq^-1 (-284) + H2O2^0 (-13421) -> OH^-1 (-13720) + OH^0 (-13721)
+At time : 56.001 ns Reaction : OH^0 (-10894) + OH^0 (-13406) -> H2O2^0 (-13722)
+At time : 56.001 ns Reaction : e_aq^-1 (-4006) + OH^0 (-13189) -> OH^-1 (-13723)
+At time : 56.001 ns Reaction : H^0 (-13049) + e_aq^-1 (-8371) -> OH^-1 (-13724) + H_2^0 (-13725)
+At time : 56.001 ns Reaction : e_aq^-1 (-3515) + OH^0 (-9017) -> OH^-1 (-13726)
+At time : 56.001 ns Reaction : e_aq^-1 (-1982) + H3O^1 (-8787) -> H^0 (-13727)
+At time : 56.001 ns Reaction : OH^0 (-6978) + e_aq^-1 (-8593) -> OH^-1 (-13728)
+At time : 57.001 ns Reaction : OH^-1 (-13626) + H3O^1 (-7591) -> No product
+At time : 57.001 ns Reaction : H3O^1 (-6419) + OH^-1 (-13480) -> No product
+At time : 57.001 ns Reaction : e_aq^-1 (-3861) + OH^0 (-13392) -> OH^-1 (-13729)
+At time : 57.001 ns Reaction : e_aq^-1 (-3988) + H^0 (-12374) -> OH^-1 (-13730) + H_2^0 (-13731)
+At time : 57.001 ns Reaction : e_aq^-1 (-3218) + H3O^1 (-6281) -> H^0 (-13732)
+At time : 58.001 ns Reaction : OH^-1 (-13711) + H3O^1 (-7155) -> No product
+At time : 58.001 ns Reaction : OH^0 (-10413) + OH^0 (-13705) -> H2O2^0 (-13733)
+At time : 58.001 ns Reaction : OH^-1 (-13412) + H3O^1 (-8589) -> No product
+At time : 58.001 ns Reaction : H3O^1 (-10934) + OH^-1 (-13402) -> No product
+At time : 58.001 ns Reaction : e_aq^-1 (-2675) + H^0 (-12615) -> OH^-1 (-13734) + H_2^0 (-13735)
+At time : 58.001 ns Reaction : OH^0 (-10531) + OH^0 (-7584) -> H2O2^0 (-13736)
+At time : 58.001 ns Reaction : e_aq^-1 (-4896) + H3O^1 (-8063) -> H^0 (-13737)
+At time : 59.001 ns Reaction : H3O^1 (-6815) + OH^-1 (-13644) -> No product
+At time : 59.001 ns Reaction : OH^-1 (-13530) + H3O^1 (-8532) -> No product
+At time : 59.001 ns Reaction : H^0 (-13397) + e_aq^-1 (-3691) -> OH^-1 (-13738) + H_2^0 (-13739)
+At time : 59.001 ns Reaction : e_aq^-1 (-4308) + H^0 (-11903) -> OH^-1 (-13740) + H_2^0 (-13741)
+At time : 59.001 ns Reaction : e_aq^-1 (-2382) + H2O2^0 (-11891) -> OH^-1 (-13742) + OH^0 (-13743)
+At time : 59.001 ns Reaction : e_aq^-1 (-2957) + H2O2^0 (-11756) -> OH^-1 (-13744) + OH^0 (-13745)
+At time : 59.001 ns Reaction : e_aq^-1 (-4808) + H^0 (-10878) -> OH^-1 (-13746) + H_2^0 (-13747)
+At time : 59.001 ns Reaction : OH^0 (-6710) + OH^0 (-7830) -> H2O2^0 (-13748)
+At time : 60.001 ns Reaction : H3O^1 (-6959) + OH^-1 (-13728) -> No product
+At time : 60.001 ns Reaction : H3O^1 (-10711) + OH^-1 (-13560) -> No product
+At time : 60.001 ns Reaction : OH^-1 (-13538) + H3O^1 (-6835) -> No product
+At time : 60.001 ns Reaction : OH^-1 (-13499) + H3O^1 (-6533) -> No product
+At time : 60.001 ns Reaction : OH^-1 (-13419) + H3O^1 (-6889) -> No product
+At time : 60.001 ns Reaction : e_aq^-1 (-3707) + H2O2^0 (-13347) -> OH^-1 (-13749) + OH^0 (-13750)
+At time : 60.001 ns Reaction : e_aq^-1 (-4332) + H^0 (-13120) -> OH^-1 (-13751) + H_2^0 (-13752)
+At time : 60.001 ns Reaction : H3O^1 (-10498) + OH^-1 (-12488) -> No product
+At time : 60.001 ns Reaction : e_aq^-1 (-2604) + H2O2^0 (-11441) -> OH^-1 (-13753) + OH^0 (-13754)
+At time : 60.001 ns Reaction : e_aq^-1 (-848) + H3O^1 (-10219) -> H^0 (-13755)
+At time : 60.001 ns Reaction : e_aq^-1 (-2948) + OH^0 (-8760) -> OH^-1 (-13756)
+At time : 60.001 ns Reaction : e_aq^-1 (-1874) + OH^0 (-7598) -> OH^-1 (-13757)
+At time : 60.001 ns Reaction : e_aq^-1 (-3513) + H3O^1 (-6263) -> H^0 (-13758)
+At time : 61.001 ns Reaction : H^0 (-12772) + OH^0 (-13721) -> No product
+At time : 61.001 ns Reaction : H3O^1 (-10496) + OH^-1 (-13686) -> No product
+At time : 61.001 ns Reaction : H^0 (-10683) + OH^0 (-13665) -> No product
+At time : 61.001 ns Reaction : OH^-1 (-13380) + H3O^1 (-6647) -> No product
+At time : 61.001 ns Reaction : H3O^1 (-6579) + OH^-1 (-13226) -> No product
+At time : 61.001 ns Reaction : OH^0 (-11138) + OH^0 (-12396) -> H2O2^0 (-13759)
+At time : 61.001 ns Reaction : e_aq^-1 (-5246) + H3O^1 (-8207) -> H^0 (-13760)
+At time : 62.001 ns Reaction : e_aq^-1 (-945) + OH^0 (-13701) -> OH^-1 (-13761)
+At time : 62.001 ns Reaction : H3O^1 (-9742) + OH^-1 (-13557) -> No product
+At time : 62.001 ns Reaction : H3O^1 (-6271) + OH^-1 (-13273) -> No product
+At time : 62.001 ns Reaction : e_aq^-1 (-4292) + H^0 (-13223) -> OH^-1 (-13762) + H_2^0 (-13763)
+At time : 62.001 ns Reaction : OH^0 (-10104) + H^0 (-12846) -> No product
+At time : 62.001 ns Reaction : H2O2^0 (-12359) + e_aq^-1 (-8413) -> OH^-1 (-13764) + OH^0 (-13765)
+At time : 62.001 ns Reaction : OH^0 (-9979) + OH^0 (-6884) -> H2O2^0 (-13766)
+At time : 62.001 ns Reaction : e_aq^-1 (-3688) + OH^0 (-9584) -> OH^-1 (-13767)
+At time : 62.001 ns Reaction : e_aq^-1 (-1031) + H3O^1 (-8376) -> H^0 (-13768)
+At time : 62.001 ns Reaction : e_aq^-1 (-5631) + H3O^1 (-7391) -> H^0 (-13769)
+At time : 62.001 ns Reaction : e_aq^-1 (-3847) + H3O^1 (-6697) -> H^0 (-13770)
+At time : 62.001 ns Reaction : e_aq^-1 (-2434) + H3O^1 (-6653) -> H^0 (-13771)
+At time : 63.001 ns Reaction : H3O^1 (-6043) + OH^-1 (-13679) -> No product
+At time : 63.001 ns Reaction : e_aq^-1 (-4326) + OH^0 (-13312) -> OH^-1 (-13772)
+At time : 63.001 ns Reaction : H^0 (-13229) + OH^0 (-8184) -> No product
+At time : 63.001 ns Reaction : H3O^1 (-7785) + OH^-1 (-13098) -> No product
+At time : 63.001 ns Reaction : OH^-1 (-12715) + H3O^1 (-8724) -> No product
+At time : 63.001 ns Reaction : H^0 (-11323) + OH^0 (-10866) -> No product
+At time : 63.001 ns Reaction : H3O^1 (-9622) + e_aq^-1 (-2899) -> H^0 (-13773)
+At time : 63.001 ns Reaction : e_aq^-1 (-615) + H3O^1 (-7287) -> H^0 (-13774)
+At time : 63.001 ns Reaction : e_aq^-1 (-951) + e_aq^-1 (-4750) -> OH^-1 (-13775) + OH^-1 (-13776) + H_2^0 (-13777)
+At time : 64.001 ns Reaction : e_aq^-1 (-1404) + H2O2^0 (-13736) -> OH^-1 (-13778) + OH^0 (-13779)
+At time : 64.001 ns Reaction : OH^-1 (-13716) + H3O^1 (-10434) -> No product
+At time : 64.001 ns Reaction : OH^-1 (-13463) + H3O^1 (-6873) -> No product
+At time : 64.001 ns Reaction : H^0 (-13441) + e_aq^-1 (-3755) -> OH^-1 (-13780) + H_2^0 (-13781)
+At time : 64.001 ns Reaction : H^0 (-13298) + e_aq^-1 (-8359) -> OH^-1 (-13782) + H_2^0 (-13783)
+At time : 64.001 ns Reaction : OH^-1 (-12974) + H3O^1 (-7255) -> No product
+At time : 64.001 ns Reaction : OH^-1 (-12490) + H3O^1 (-6751) -> No product
+At time : 64.001 ns Reaction : e_aq^-1 (-600) + H2O2^0 (-11777) -> OH^-1 (-13784) + OH^0 (-13785)
+At time : 64.001 ns Reaction : H3O^1 (-10883) + e_aq^-1 (-8518) -> H^0 (-13786)
+At time : 64.001 ns Reaction : OH^0 (-9606) + OH^0 (-6472) -> H2O2^0 (-13787)
+At time : 64.001 ns Reaction : OH^0 (-7192) + H^0 (-8972) -> No product
+At time : 64.001 ns Reaction : e_aq^-1 (-290) + OH^0 (-8639) -> OH^-1 (-13788)
+At time : 64.001 ns Reaction : e_aq^-1 (-351) + e_aq^-1 (-5288) -> OH^-1 (-13789) + OH^-1 (-13790) + H_2^0 (-13791)
+At time : 65.001 ns Reaction : OH^-1 (-13551) + H3O^1 (-8805) -> No product
+At time : 65.001 ns Reaction : e_aq^-1 (-4771) + H^0 (-13277) -> OH^-1 (-13792) + H_2^0 (-13793)
+At time : 65.001 ns Reaction : e_aq^-1 (-1039) + H^0 (-13143) -> OH^-1 (-13794) + H_2^0 (-13795)
+At time : 65.001 ns Reaction : H3O^1 (-9616) + OH^-1 (-12901) -> No product
+At time : 65.001 ns Reaction : H^0 (-9615) + H^0 (-12668) -> H_2^0 (-13796)
+At time : 65.001 ns Reaction : e_aq^-1 (-147) + H^0 (-12335) -> OH^-1 (-13797) + H_2^0 (-13798)
+At time : 65.001 ns Reaction : H^0 (-10860) + e_aq^-1 (-8827) -> OH^-1 (-13799) + H_2^0 (-13800)
+At time : 65.001 ns Reaction : H3O^1 (-9775) + e_aq^-1 (-2432) -> H^0 (-13801)
+At time : 65.001 ns Reaction : H^0 (-9128) + OH^0 (-6732) -> No product
+At time : 65.001 ns Reaction : e_aq^-1 (-2739) + H3O^1 (-8562) -> H^0 (-13802)
+At time : 65.001 ns Reaction : e_aq^-1 (-395) + H3O^1 (-7185) -> H^0 (-13803)
+At time : 66.001 ns Reaction : OH^-1 (-13782) + H3O^1 (-5927) -> No product
+At time : 66.001 ns Reaction : OH^-1 (-13169) + H3O^1 (-7335) -> No product
+At time : 66.001 ns Reaction : e_aq^-1 (-2013) + H^0 (-12664) -> OH^-1 (-13804) + H_2^0 (-13805)
+At time : 66.001 ns Reaction : H^0 (-11574) + e_aq^-1 (-5362) -> OH^-1 (-13806) + H_2^0 (-13807)
+At time : 67.001 ns Reaction : OH^-1 (-13703) + H3O^1 (-7227) -> No product
+At time : 67.001 ns Reaction : OH^-1 (-13617) + H3O^1 (-9596) -> No product
+At time : 67.001 ns Reaction : OH^-1 (-13452) + H3O^1 (-8340) -> No product
+At time : 67.001 ns Reaction : e_aq^-1 (-1324) + OH^0 (-13327) -> OH^-1 (-13808)
+At time : 67.001 ns Reaction : H3O^1 (-8013) + OH^-1 (-12128) -> No product
+At time : 67.001 ns Reaction : H^0 (-9130) + e_aq^-1 (-8818) -> OH^-1 (-13809) + H_2^0 (-13810)
+At time : 67.001 ns Reaction : OH^0 (-9119) + e_aq^-1 (-3524) -> OH^-1 (-13811)
+At time : 67.001 ns Reaction : e_aq^-1 (-5432) + OH^0 (-8477) -> OH^-1 (-13812)
+At time : 68.001 ns Reaction : e_aq^-1 (-304) + H2O2^0 (-13487) -> OH^-1 (-13813) + OH^0 (-13814)
+At time : 68.001 ns Reaction : OH^-1 (-13469) + H3O^1 (-7267) -> No product
+At time : 68.001 ns Reaction : OH^-1 (-13462) + H3O^1 (-6639) -> No product
+At time : 68.001 ns Reaction : e_aq^-1 (-1365) + H2O2^0 (-13435) -> OH^-1 (-13815) + OH^0 (-13816)
+At time : 68.001 ns Reaction : e_aq^-1 (-592) + H^0 (-13238) -> OH^-1 (-13817) + H_2^0 (-13818)
+At time : 68.001 ns Reaction : H^0 (-12466) + OH^0 (-7066) -> No product
+At time : 68.001 ns Reaction : H3O^1 (-11026) + e_aq^-1 (-8392) -> H^0 (-13819)
+At time : 68.001 ns Reaction : OH^0 (-11015) + OH^0 (-7120) -> H2O2^0 (-13820)
+At time : 68.001 ns Reaction : OH^0 (-10425) + OH^0 (-8180) -> H2O2^0 (-13821)
+At time : 68.001 ns Reaction : e_aq^-1 (-8476) + e_aq^-1 (-8887) -> OH^-1 (-13822) + OH^-1 (-13823) + H_2^0 (-13824)
+At time : 68.001 ns Reaction : e_aq^-1 (-8467) + H3O^1 (-8634) -> H^0 (-13825)
+At time : 68.001 ns Reaction : e_aq^-1 (-4524) + H3O^1 (-6895) -> H^0 (-13826)
+At time : 69.001 ns Reaction : H3O^1 (-6537) + OH^-1 (-13246) -> No product
+At time : 69.001 ns Reaction : H^0 (-10566) + H^0 (-13153) -> H_2^0 (-13827)
+At time : 69.001 ns Reaction : H2O2^0 (-11416) + e_aq^-1 (-4000) -> OH^-1 (-13828) + OH^0 (-13829)
+At time : 69.001 ns Reaction : OH^0 (-11095) + OH^0 (-6048) -> H2O2^0 (-13830)
+At time : 70.001 ns Reaction : H3O^1 (-11112) + OH^-1 (-13536) -> No product
+At time : 70.001 ns Reaction : e_aq^-1 (-249) + H^0 (-13182) -> OH^-1 (-13831) + H_2^0 (-13832)
+At time : 70.001 ns Reaction : e_aq^-1 (-1132) + H^0 (-12519) -> OH^-1 (-13833) + H_2^0 (-13834)
+At time : 70.001 ns Reaction : e_aq^-1 (-4453) + H^0 (-11833) -> OH^-1 (-13835) + H_2^0 (-13836)
+At time : 70.001 ns Reaction : e_aq^-1 (-4623) + H3O^1 (-7987) -> H^0 (-13837)
+At time : 70.001 ns Reaction : e_aq^-1 (-5361) + H3O^1 (-6089) -> H^0 (-13838)
+At time : 71.001 ns Reaction : e_aq^-1 (-4496) + H^0 (-13786) -> OH^-1 (-13839) + H_2^0 (-13840)
+At time : 71.001 ns Reaction : e_aq^-1 (-870) + H^0 (-13228) -> OH^-1 (-13841) + H_2^0 (-13842)
+At time : 71.001 ns Reaction : e_aq^-1 (-1119) + H2O2^0 (-12230) -> OH^-1 (-13843) + OH^0 (-13844)
+At time : 71.001 ns Reaction : H2O2^0 (-11888) + e_aq^-1 (-8338) -> OH^-1 (-13845) + OH^0 (-13846)
+At time : 71.001 ns Reaction : OH^0 (-10823) + e_aq^-1 (-8440) -> OH^-1 (-13847)
+At time : 71.001 ns Reaction : H^0 (-9627) + OH^0 (-6504) -> No product
+At time : 71.001 ns Reaction : H3O^1 (-9532) + e_aq^-1 (-3553) -> H^0 (-13848)
+At time : 71.001 ns Reaction : OH^0 (-8940) + H^0 (-8960) -> No product
+At time : 71.001 ns Reaction : e_aq^-1 (-2164) + e_aq^-1 (-4178) -> OH^-1 (-13849) + OH^-1 (-13850) + H_2^0 (-13851)
+At time : 72.001 ns Reaction : H3O^1 (-7101) + OH^-1 (-13794) -> No product
+At time : 72.001 ns Reaction : OH^-1 (-13744) + H3O^1 (-6329) -> No product
+At time : 72.001 ns Reaction : OH^-1 (-13723) + H3O^1 (-5941) -> No product
+At time : 72.001 ns Reaction : OH^-1 (-13700) + H3O^1 (-8167) -> No product
+At time : 72.001 ns Reaction : H^0 (-13495) + OH^0 (-7502) -> No product
+At time : 72.001 ns Reaction : H^0 (-13476) + e_aq^-1 (-2290) -> OH^-1 (-13852) + H_2^0 (-13853)
+At time : 72.001 ns Reaction : H3O^1 (-11004) + e_aq^-1 (-900) -> H^0 (-13854)
+At time : 72.001 ns Reaction : e_aq^-1 (-2645) + H^0 (-9030) -> OH^-1 (-13855) + H_2^0 (-13856)
+At time : 72.001 ns Reaction : e_aq^-1 (-4058) + OH^0 (-6804) -> OH^-1 (-13857)
+At time : 72.001 ns Reaction : e_aq^-1 (-1416) + e_aq^-1 (-1560) -> OH^-1 (-13858) + OH^-1 (-13859) + H_2^0 (-13860)
+At time : 73.001 ns Reaction : OH^-1 (-13847) + H3O^1 (-6963) -> No product
+At time : 73.001 ns Reaction : OH^-1 (-13839) + H3O^1 (-7543) -> No product
+At time : 73.001 ns Reaction : OH^-1 (-13828) + H3O^1 (-6733) -> No product
+At time : 73.001 ns Reaction : OH^-1 (-13655) + H3O^1 (-7803) -> No product
+At time : 73.001 ns Reaction : H3O^1 (-6645) + OH^-1 (-13576) -> No product
+At time : 73.001 ns Reaction : e_aq^-1 (-3880) + OH^0 (-13561) -> OH^-1 (-13861)
+At time : 73.001 ns Reaction : H^0 (-10698) + e_aq^-1 (-2741) -> OH^-1 (-13862) + H_2^0 (-13863)
+At time : 73.001 ns Reaction : OH^0 (-10402) + OH^0 (-7464) -> H2O2^0 (-13864)
+At time : 73.001 ns Reaction : H^0 (-8982) + H^0 (-9076) -> H_2^0 (-13865)
+At time : 73.001 ns Reaction : e_aq^-1 (-2057) + e_aq^-1 (-4132) -> OH^-1 (-13866) + OH^-1 (-13867) + H_2^0 (-13868)
+At time : 74.001 ns Reaction : OH^-1 (-13493) + H3O^1 (-7411) -> No product
+At time : 74.001 ns Reaction : OH^-1 (-13329) + H3O^1 (-8223) -> No product
+At time : 74.001 ns Reaction : H^0 (-12927) + e_aq^-1 (-2044) -> OH^-1 (-13869) + H_2^0 (-13870)
+At time : 74.001 ns Reaction : e_aq^-1 (-2256) + H^0 (-12618) -> OH^-1 (-13871) + H_2^0 (-13872)
+At time : 74.001 ns Reaction : e_aq^-1 (-5331) + OH^0 (-12609) -> OH^-1 (-13873)
+At time : 74.001 ns Reaction : OH^-1 (-12550) + H3O^1 (-8397) -> No product
+At time : 74.001 ns Reaction : H^0 (-12257) + e_aq^-1 (-3616) -> OH^-1 (-13874) + H_2^0 (-13875)
+At time : 74.001 ns Reaction : H3O^1 (-11320) + e_aq^-1 (-4420) -> H^0 (-13876)
+At time : 74.001 ns Reaction : OH^0 (-5958) + OH^0 (-7826) -> H2O2^0 (-13877)
+At time : 75.001 ns Reaction : H3O^1 (-9978) + OH^-1 (-13778) -> No product
+At time : 75.001 ns Reaction : H3O^1 (-7277) + OH^-1 (-13720) -> No product
+At time : 75.001 ns Reaction : H^0 (-12980) + e_aq^-1 (-841) -> OH^-1 (-13878) + H_2^0 (-13879)
+At time : 75.001 ns Reaction : e_aq^-1 (-2003) + H2O2^0 (-11687) -> OH^-1 (-13880) + OH^0 (-13881)
+At time : 75.001 ns Reaction : OH^0 (-10478) + OH^0 (-7140) -> H2O2^0 (-13882)
+At time : 75.001 ns Reaction : OH^0 (-9180) + e_aq^-1 (-3388) -> OH^-1 (-13883)
+At time : 75.001 ns Reaction : H3O^1 (-6449) + e_aq^-1 (-8353) -> H^0 (-13884)
+At time : 76.001 ns Reaction : OH^-1 (-13831) + H3O^1 (-8247) -> No product
+At time : 76.001 ns Reaction : OH^-1 (-13520) + H3O^1 (-5975) -> No product
+At time : 76.001 ns Reaction : H^0 (-12770) + OH^0 (-7136) -> No product
+At time : 76.001 ns Reaction : e_aq^-1 (-1311) + H2O2^0 (-11783) -> OH^-1 (-13885) + OH^0 (-13886)
+At time : 76.001 ns Reaction : OH^0 (-10624) + H^0 (-9493) -> No product
+At time : 76.001 ns Reaction : H^0 (-10194) + OH^0 (-8916) -> No product
+At time : 76.001 ns Reaction : H^0 (-9457) + e_aq^-1 (-3591) -> OH^-1 (-13887) + H_2^0 (-13888)
+At time : 76.001 ns Reaction : e_aq^-1 (-4650) + OH^0 (-9083) -> OH^-1 (-13889)
+At time : 76.001 ns Reaction : e_aq^-1 (-4999) + e_aq^-1 (-8473) -> OH^-1 (-13890) + OH^-1 (-13891) + H_2^0 (-13892)
+At time : 76.001 ns Reaction : e_aq^-1 (-4049) + H3O^1 (-7857) -> H^0 (-13893)
+At time : 77.001 ns Reaction : H3O^1 (-6641) + OH^-1 (-13730) -> No product
+At time : 77.001 ns Reaction : OH^-1 (-13362) + H3O^1 (-8287) -> No product
+At time : 77.001 ns Reaction : H^0 (-13300) + e_aq^-1 (-8497) -> OH^-1 (-13894) + H_2^0 (-13895)
+At time : 77.001 ns Reaction : e_aq^-1 (-5523) + H2O2^0 (-11570) -> OH^-1 (-13896) + OH^0 (-13897)
+At time : 77.001 ns Reaction : H2O2^0 (-11410) + e_aq^-1 (-5047) -> OH^-1 (-13898) + OH^0 (-13899)
+At time : 77.001 ns Reaction : e_aq^-1 (-3840) + OH^0 (-9713) -> OH^-1 (-13900)
+At time : 77.001 ns Reaction : e_aq^-1 (-3732) + H3O^1 (-6431) -> H^0 (-13901)
+At time : 78.001 ns Reaction : H3O^1 (-6443) + OH^-1 (-13767) -> No product
+At time : 78.001 ns Reaction : H3O^1 (-10563) + OH^-1 (-13740) -> No product
+At time : 78.001 ns Reaction : OH^0 (-6682) + OH^0 (-13519) -> H2O2^0 (-13902)
+At time : 78.001 ns Reaction : H^0 (-13086) + OH^0 (-7308) -> No product
+At time : 78.001 ns Reaction : e_aq^-1 (-2587) + H2O2^0 (-12953) -> OH^-1 (-13903) + OH^0 (-13904)
+At time : 78.001 ns Reaction : H3O^1 (-6871) + OH^-1 (-12698) -> No product
+At time : 78.001 ns Reaction : e_aq^-1 (-2281) + e_aq^-1 (-8788) -> OH^-1 (-13905) + OH^-1 (-13906) + H_2^0 (-13907)
+At time : 78.001 ns Reaction : H3O^1 (-8043) + e_aq^-1 (-8617) -> H^0 (-13908)
+At time : 78.001 ns Reaction : e_aq^-1 (-3775) + OH^0 (-7780) -> OH^-1 (-13909)
+At time : 79.001 ns Reaction : H^0 (-12890) + e_aq^-1 (-2396) -> OH^-1 (-13910) + H_2^0 (-13911)
+At time : 79.001 ns Reaction : H^0 (-11794) + H^0 (-12591) -> H_2^0 (-13912)
+At time : 79.001 ns Reaction : OH^-1 (-12531) + H3O^1 (-8273) -> No product
+At time : 79.001 ns Reaction : e_aq^-1 (-2141) + H2O2^0 (-11872) -> OH^-1 (-13913) + OH^0 (-13914)
+At time : 79.001 ns Reaction : OH^0 (-11333) + OH^0 (-7184) -> H2O2^0 (-13915)
+At time : 79.001 ns Reaction : e_aq^-1 (-105) + H3O^1 (-8285) -> H^0 (-13916)
+At time : 79.001 ns Reaction : e_aq^-1 (-2392) + H3O^1 (-6585) -> H^0 (-13917)
+At time : 79.001 ns Reaction : e_aq^-1 (-3111) + OH^0 (-6284) -> OH^-1 (-13918)
+At time : 80.001 ns Reaction : OH^-1 (-13859) + H3O^1 (-6911) -> No product
+At time : 80.001 ns Reaction : OH^-1 (-13809) + H3O^1 (-7911) -> No product
+At time : 80.001 ns Reaction : e_aq^-1 (-291) + H3O^1 (-11153) -> H^0 (-13919)
+At time : 80.001 ns Reaction : H3O^1 (-10391) + e_aq^-1 (-5158) -> H^0 (-13920)
+At time : 80.001 ns Reaction : e_aq^-1 (-2657) + OH^0 (-9661) -> OH^-1 (-13921)
+At time : 80.001 ns Reaction : OH^0 (-6850) + OH^0 (-7916) -> H2O2^0 (-13922)
+At time : 80.001 ns Reaction : e_aq^-1 (-2006) + OH^0 (-7610) -> OH^-1 (-13923)
+At time : 80.001 ns Reaction : e_aq^-1 (-2749) + H3O^1 (-6473) -> H^0 (-13924)
+At time : 81.001 ns Reaction : H3O^1 (-10019) + OH^-1 (-13792) -> No product
+At time : 81.001 ns Reaction : e_aq^-1 (-4252) + H2O2^0 (-12765) -> OH^-1 (-13925) + OH^0 (-13926)
+At time : 81.001 ns Reaction : e_aq^-1 (-1062) + OH^0 (-12370) -> OH^-1 (-13927)
+At time : 81.001 ns Reaction : e_aq^-1 (-4411) + H2O2^0 (-12292) -> OH^-1 (-13928) + OH^0 (-13929)
+At time : 81.001 ns Reaction : e_aq^-1 (-595) + H3O^1 (-8175) -> H^0 (-13930)
+At time : 82.001 ns Reaction : OH^-1 (-13928) + H3O^1 (-6181) -> No product
+At time : 82.001 ns Reaction : H3O^1 (-7973) + OH^-1 (-13671) -> No product
+At time : 82.001 ns Reaction : OH^-1 (-13451) + H3O^1 (-6257) -> No product
+At time : 82.001 ns Reaction : H3O^1 (-10905) + OH^-1 (-13311) -> No product
+At time : 82.001 ns Reaction : OH^-1 (-12823) + H3O^1 (-7735) -> No product
+At time : 82.001 ns Reaction : e_aq^-1 (-5321) + H^0 (-12553) -> OH^-1 (-13931) + H_2^0 (-13932)
+At time : 82.001 ns Reaction : H3O^1 (-10463) + e_aq^-1 (-765) -> H^0 (-13933)
+At time : 82.001 ns Reaction : H^0 (-9235) + OH^0 (-6580) -> No product
+At time : 83.001 ns Reaction : H3O^1 (-7321) + OH^-1 (-13407) -> No product
+At time : 83.001 ns Reaction : OH^-1 (-13391) + H3O^1 (-6557) -> No product
+At time : 83.001 ns Reaction : H2O2^0 (-11548) + e_aq^-1 (-3588) -> OH^-1 (-13934) + OH^0 (-13935)
+At time : 83.001 ns Reaction : e_aq^-1 (-5298) + OH^0 (-9361) -> OH^-1 (-13936)
+At time : 83.001 ns Reaction : OH^0 (-9225) + e_aq^-1 (-2725) -> OH^-1 (-13937)
+At time : 83.001 ns Reaction : OH^0 (-6692) + e_aq^-1 (-8356) -> OH^-1 (-13938)
+At time : 84.001 ns Reaction : H^0 (-13893) + e_aq^-1 (-2324) -> OH^-1 (-13939) + H_2^0 (-13940)
+At time : 84.001 ns Reaction : H3O^1 (-5861) + OH^-1 (-13694) -> No product
+At time : 84.001 ns Reaction : OH^0 (-10272) + OH^0 (-11142) -> H2O2^0 (-13941)
+At time : 84.001 ns Reaction : OH^0 (-10100) + OH^0 (-7040) -> H2O2^0 (-13942)
+At time : 84.001 ns Reaction : H3O^1 (-6355) + e_aq^-1 (-8767) -> H^0 (-13943)
+At time : 84.001 ns Reaction : OH^0 (-7188) + OH^0 (-8128) -> H2O2^0 (-13944)
+At time : 84.001 ns Reaction : e_aq^-1 (-4349) + H3O^1 (-5987) -> H^0 (-13945)
+At time : 84.001 ns Reaction : e_aq^-1 (-2105) + e_aq^-1 (-4120) -> OH^-1 (-13946) + OH^-1 (-13947) + H_2^0 (-13948)
+At time : 85.001 ns Reaction : e_aq^-1 (-5345) + H^0 (-13930) -> OH^-1 (-13949) + H_2^0 (-13950)
+At time : 85.001 ns Reaction : OH^-1 (-13776) + H3O^1 (-8015) -> No product
+At time : 85.001 ns Reaction : e_aq^-1 (-2273) + H2O2^0 (-11543) -> OH^-1 (-13951) + OH^0 (-13952)
+At time : 85.001 ns Reaction : OH^0 (-9587) + e_aq^-1 (-2863) -> OH^-1 (-13953)
+At time : 85.001 ns Reaction : e_aq^-1 (-236) + OH^0 (-9414) -> OH^-1 (-13954)
+At time : 85.001 ns Reaction : OH^0 (-9330) + OH^0 (-8881) -> H2O2^0 (-13955)
+At time : 85.001 ns Reaction : e_aq^-1 (-3670) + H3O^1 (-6399) -> H^0 (-13956)
+At time : 86.001 ns Reaction : OH^0 (-10913) + OH^0 (-13929) -> H2O2^0 (-13957)
+At time : 86.001 ns Reaction : OH^-1 (-13890) + H3O^1 (-8886) -> No product
+At time : 86.001 ns Reaction : OH^-1 (-13582) + H3O^1 (-8772) -> No product
+At time : 86.001 ns Reaction : e_aq^-1 (-5065) + H2O2^0 (-12447) -> OH^-1 (-13958) + OH^0 (-13959)
+At time : 86.001 ns Reaction : OH^0 (-10508) + e_aq^-1 (-4664) -> OH^-1 (-13960)
+At time : 86.001 ns Reaction : OH^0 (-10474) + H^0 (-10192) -> No product
+At time : 86.001 ns Reaction : OH^0 (-9724) + OH^0 (-7652) -> H2O2^0 (-13961)
+At time : 86.001 ns Reaction : H3O^1 (-7561) + e_aq^-1 (-8860) -> H^0 (-13962)
+At time : 86.001 ns Reaction : e_aq^-1 (-5665) + H3O^1 (-8484) -> H^0 (-13963)
+At time : 87.001 ns Reaction : OH^-1 (-13799) + H3O^1 (-8715) -> No product
+At time : 87.001 ns Reaction : OH^0 (-13754) + OH^0 (-7820) -> H2O2^0 (-13964)
+At time : 87.001 ns Reaction : H^0 (-13559) + e_aq^-1 (-3790) -> OH^-1 (-13965) + H_2^0 (-13966)
+At time : 87.001 ns Reaction : H3O^1 (-10801) + OH^-1 (-13269) -> No product
+At time : 87.001 ns Reaction : e_aq^-1 (-273) + H^0 (-12788) -> OH^-1 (-13967) + H_2^0 (-13968)
+At time : 87.001 ns Reaction : H2O2^0 (-11493) + e_aq^-1 (-2312) -> OH^-1 (-13969) + OH^0 (-13970)
+At time : 87.001 ns Reaction : e_aq^-1 (-5276) + H3O^1 (-10158) -> H^0 (-13971)
+At time : 87.001 ns Reaction : e_aq^-1 (-4344) + e_aq^-1 (-8842) -> OH^-1 (-13972) + OH^-1 (-13973) + H_2^0 (-13974)
+At time : 87.001 ns Reaction : e_aq^-1 (-3648) + OH^0 (-6514) -> OH^-1 (-13975)
+At time : 88.001 ns Reaction : H3O^1 (-6295) + OH^-1 (-13918) -> No product
+At time : 88.001 ns Reaction : OH^0 (-13886) + OH^0 (-7568) -> H2O2^0 (-13976)
+At time : 88.001 ns Reaction : H3O^1 (-6273) + OH^-1 (-13587) -> No product
+At time : 88.001 ns Reaction : OH^0 (-13465) + e_aq^-1 (-5686) -> OH^-1 (-13977)
+At time : 88.001 ns Reaction : e_aq^-1 (-5364) + H2O2^0 (-12947) -> OH^-1 (-13978) + OH^0 (-13979)
+At time : 88.001 ns Reaction : e_aq^-1 (-4897) + H2O2^0 (-11631) -> OH^-1 (-13980) + OH^0 (-13981)
+At time : 88.001 ns Reaction : H^0 (-9346) + OH^0 (-6056) -> No product
+At time : 88.001 ns Reaction : OH^0 (-6584) + OH^0 (-8729) -> H2O2^0 (-13982)
+At time : 88.001 ns Reaction : e_aq^-1 (-2403) + OH^0 (-5922) -> OH^-1 (-13983)
+At time : 89.001 ns Reaction : H3O^1 (-8421) + OH^-1 (-13896) -> No product
+At time : 89.001 ns Reaction : H^0 (-13440) + OH^0 (-6940) -> No product
+At time : 89.001 ns Reaction : OH^0 (-10620) + e_aq^-1 (-3512) -> OH^-1 (-13984)
+At time : 89.001 ns Reaction : e_aq^-1 (-859) + e_aq^-1 (-8899) -> OH^-1 (-13985) + OH^-1 (-13986) + H_2^0 (-13987)
+At time : 89.001 ns Reaction : e_aq^-1 (-447) + H3O^1 (-7261) -> H^0 (-13988)
+At time : 89.001 ns Reaction : e_aq^-1 (-2849) + H3O^1 (-6451) -> H^0 (-13989)
+At time : 90.001 ns Reaction : H3O^1 (-9835) + OH^-1 (-13742) -> No product
+At time : 90.001 ns Reaction : OH^-1 (-13542) + H3O^1 (-7919) -> No product
+At time : 90.001 ns Reaction : OH^0 (-13365) + H^0 (-13346) -> No product
+At time : 90.001 ns Reaction : e_aq^-1 (-3178) + H^0 (-13316) -> OH^-1 (-13990) + H_2^0 (-13991)
+At time : 90.001 ns Reaction : OH^0 (-6630) + H^0 (-12822) -> No product
+At time : 90.001 ns Reaction : OH^0 (-7656) + H^0 (-9038) -> No product
+At time : 90.001 ns Reaction : e_aq^-1 (-832) + H^0 (-8964) -> OH^-1 (-13992) + H_2^0 (-13993)
+At time : 91.001 ns Reaction : OH^-1 (-13992) + H3O^1 (-8227) -> No product
+At time : 91.001 ns Reaction : H3O^1 (-6749) + OH^-1 (-13939) -> No product
+At time : 91.001 ns Reaction : OH^0 (-13699) + H^0 (-12880) -> No product
+At time : 91.001 ns Reaction : e_aq^-1 (-980) + H2O2^0 (-13621) -> OH^-1 (-13994) + OH^0 (-13995)
+At time : 91.001 ns Reaction : OH^0 (-12856) + OH^0 (-6994) -> H2O2^0 (-13996)
+At time : 91.001 ns Reaction : H3O^1 (-10424) + e_aq^-1 (-8500) -> H^0 (-13997)
+At time : 92.001 ns Reaction : H3O^1 (-5923) + OH^-1 (-13729) -> No product
+At time : 92.001 ns Reaction : e_aq^-1 (-3902) + H3O^1 (-6725) -> H^0 (-13998)
+At time : 93.001 ns Reaction : e_aq^-1 (-4183) + OH^0 (-13914) -> OH^-1 (-13999)
+At time : 93.001 ns Reaction : OH^-1 (-13866) + H3O^1 (-7581) -> No product
+At time : 93.001 ns Reaction : H3O^1 (-10724) + OH^-1 (-13416) -> No product
+At time : 93.001 ns Reaction : OH^-1 (-13906) + H3O^1 (-7635) -> No product
+At time : 94.001 ns Reaction : H3O^1 (-9986) + OH^-1 (-13696) -> No product
+At time : 94.001 ns Reaction : H^0 (-13594) + H^0 (-11724) -> H_2^0 (-14000)
+At time : 94.001 ns Reaction : OH^-1 (-13508) + H3O^1 (-8403) -> No product
+At time : 94.001 ns Reaction : H^0 (-12915) + OH^0 (-7142) -> No product
+At time : 94.001 ns Reaction : H3O^1 (-8424) + e_aq^-1 (-8779) -> H^0 (-14001)
+At time : 94.001 ns Reaction : e_aq^-1 (-2556) + OH^0 (-6594) -> OH^-1 (-14002)
+At time : 95.001 ns Reaction : OH^-1 (-13815) + H3O^1 (-7039) -> No product
+At time : 95.001 ns Reaction : H^0 (-10631) + H^0 (-12866) -> H_2^0 (-14003)
+At time : 95.001 ns Reaction : OH^-1 (-12810) + H3O^1 (-8189) -> No product
+At time : 95.001 ns Reaction : OH^0 (-11123) + OH^0 (-7438) -> H2O2^0 (-14004)
+At time : 95.001 ns Reaction : H^0 (-9572) + e_aq^-1 (-3642) -> OH^-1 (-14005) + H_2^0 (-14006)
+At time : 95.001 ns Reaction : e_aq^-1 (-5540) + H3O^1 (-8418) -> H^0 (-14007)
+At time : 96.001 ns Reaction : e_aq^-1 (-298) + H^0 (-14007) -> OH^-1 (-14008) + H_2^0 (-14009)
+At time : 96.001 ns Reaction : OH^-1 (-13967) + H3O^1 (-8199) -> No product
+At time : 96.001 ns Reaction : H^0 (-13768) + OH^0 (-8627) -> No product
+At time : 96.001 ns Reaction : e_aq^-1 (-5020) + H^0 (-13333) -> OH^-1 (-14010) + H_2^0 (-14011)
+At time : 96.001 ns Reaction : OH^0 (-9778) + OH^0 (-13266) -> H2O2^0 (-14012)
+At time : 96.001 ns Reaction : OH^0 (-12817) + e_aq^-1 (-8647) -> OH^-1 (-14013)
+At time : 96.001 ns Reaction : e_aq^-1 (-4578) + OH^0 (-7594) -> OH^-1 (-14014)
+At time : 97.001 ns Reaction : OH^0 (-13995) + OH^0 (-8152) -> H2O2^0 (-14015)
+At time : 97.001 ns Reaction : OH^-1 (-13969) + H3O^1 (-6635) -> No product
+At time : 97.001 ns Reaction : H^0 (-12604) + e_aq^-1 (-8704) -> OH^-1 (-14016) + H_2^0 (-14017)
+At time : 97.001 ns Reaction : e_aq^-1 (-5324) + H2O2^0 (-12194) -> OH^-1 (-14018) + OH^0 (-14019)
+At time : 97.001 ns Reaction : H2O2^0 (-11937) + e_aq^-1 (-8638) -> OH^-1 (-14020) + OH^0 (-14021)
+At time : 97.001 ns Reaction : e_aq^-1 (-471) + H2O2^0 (-11830) -> OH^-1 (-14022) + OH^0 (-14023)
+At time : 97.001 ns Reaction : H2O2^0 (-11468) + e_aq^-1 (-8365) -> OH^-1 (-14024) + OH^0 (-14025)
+At time : 97.001 ns Reaction : e_aq^-1 (-4218) + OH^0 (-8363) -> OH^-1 (-14026)
+At time : 98.001 ns Reaction : H3O^1 (-7007) + OH^-1 (-13927) -> No product
+At time : 98.001 ns Reaction : H3O^1 (-7925) + OH^-1 (-11716) -> No product
+At time : 98.001 ns Reaction : e_aq^-1 (-4296) + e_aq^-1 (-8533) -> OH^-1 (-14027) + OH^-1 (-14028) + H_2^0 (-14029)
+At time : 99.001 ns Reaction : H3O^1 (-7029) + OH^-1 (-13488) -> No product
+At time : 99.001 ns Reaction : H^0 (-12865) + OH^0 (-9338) -> No product
+At time : 100 ns Reaction : e_aq^-1 (-4691) + OH^0 (-13241) -> OH^-1 (-14030)
+At time : 100 ns Reaction : e_aq^-1 (-3722) + H2O2^0 (-12109) -> OH^-1 (-14031) + OH^0 (-14032)
+At time : 100 ns Reaction : e_aq^-1 (-57) + H2O2^0 (-11628) -> OH^-1 (-14033) + OH^0 (-14034)
+At time : 100 ns Reaction : OH^0 (-10265) + OH^0 (-7264) -> H2O2^0 (-14035)
+At time : 100 ns Reaction : e_aq^-1 (-4116) + H3O^1 (-8361) -> H^0 (-14036)
+At time : 101 ns Reaction : OH^-1 (-14022) + H3O^1 (-8097) -> No product
+At time : 101 ns Reaction : e_aq^-1 (-5014) + OH^0 (-8022) -> OH^-1 (-14037)
+At time : 102 ns Reaction : OH^-1 (-13990) + H3O^1 (-7711) -> No product
+At time : 102 ns Reaction : OH^-1 (-13949) + H3O^1 (-7435) -> No product
+At time : 102 ns Reaction : OH^0 (-9322) + H^0 (-12176) -> No product
+At time : 102 ns Reaction : H2O2^0 (-11801) + e_aq^-1 (-4070) -> OH^-1 (-14038) + OH^0 (-14039)
+At time : 102 ns Reaction : e_aq^-1 (-5457) + OH^0 (-11111) -> OH^-1 (-14040)
+At time : 102 ns Reaction : e_aq^-1 (-5315) + H3O^1 (-8265) -> H^0 (-14041)
+At time : 103 ns Reaction : H3O^1 (-10169) + OH^-1 (-14018) -> No product
+At time : 103 ns Reaction : H2O2^0 (-12313) + e_aq^-1 (-4681) -> OH^-1 (-14042) + OH^0 (-14043)
+At time : 103 ns Reaction : e_aq^-1 (-655) + H2O2^0 (-12046) -> OH^-1 (-14044) + OH^0 (-14045)
+At time : 103 ns Reaction : H2O2^0 (-11352) + e_aq^-1 (-8824) -> OH^-1 (-14046) + OH^0 (-14047)
+At time : 104 ns Reaction : OH^-1 (-14024) + H3O^1 (-8790) -> No product
+At time : 104 ns Reaction : OH^-1 (-13845) + H3O^1 (-8125) -> No product
+At time : 104 ns Reaction : OH^0 (-13618) + e_aq^-1 (-2946) -> OH^-1 (-14048)
+At time : 104 ns Reaction : OH^0 (-13293) + e_aq^-1 (-8872) -> OH^-1 (-14049)
+At time : 104 ns Reaction : e_aq^-1 (-4462) + H2O2^0 (-11499) -> OH^-1 (-14050) + OH^0 (-14051)
+At time : 104 ns Reaction : OH^0 (-6296) + H^0 (-9014) -> No product
+At time : 104 ns Reaction : e_aq^-1 (-778) + e_aq^-1 (-908) -> OH^-1 (-14052) + OH^-1 (-14053) + H_2^0 (-14054)
+At time : 105 ns Reaction : OH^0 (-10908) + OH^0 (-6964) -> H2O2^0 (-14055)
+At time : 105 ns Reaction : OH^0 (-6342) + e_aq^-1 (-8554) -> OH^-1 (-14056)
+At time : 105 ns Reaction : e_aq^-1 (-3570) + OH^0 (-7706) -> OH^-1 (-14057)
+At time : 106 ns Reaction : H3O^1 (-6973) + OH^-1 (-14014) -> No product
+At time : 106 ns Reaction : OH^0 (-13785) + OH^0 (-13712) -> H2O2^0 (-14058)
+At time : 106 ns Reaction : H^0 (-10103) + OH^0 (-9981) -> No product
+At time : 106 ns Reaction : e_aq^-1 (-4864) + H3O^1 (-8021) -> H^0 (-14059)
+At time : 106 ns Reaction : e_aq^-1 (-2010) + OH^0 (-7884) -> OH^-1 (-14060)
+At time : 106 ns Reaction : e_aq^-1 (-5004) + H3O^1 (-7153) -> H^0 (-14061)
+At time : 107 ns Reaction : OH^-1 (-13947) + H3O^1 (-7627) -> No product
+At time : 107 ns Reaction : OH^-1 (-13111) + H3O^1 (-7579) -> No product
+At time : 107 ns Reaction : H2O2^0 (-12700) + e_aq^-1 (-8350) -> OH^-1 (-14062) + OH^0 (-14063)
+At time : 107 ns Reaction : e_aq^-1 (-5455) + H2O2^0 (-12105) -> OH^-1 (-14064) + OH^0 (-14065)
+At time : 107 ns Reaction : H2O2^0 (-11755) + e_aq^-1 (-8548) -> OH^-1 (-14066) + OH^0 (-14067)
+At time : 107 ns Reaction : OH^0 (-9879) + OH^0 (-6822) -> H2O2^0 (-14068)
+At time : 107 ns Reaction : OH^0 (-8114) + OH^0 (-8170) -> H2O2^0 (-14069)
+At time : 107 ns Reaction : e_aq^-1 (-2093) + H3O^1 (-6827) -> H^0 (-14070)
+At time : 107 ns Reaction : e_aq^-1 (-2096) + H3O^1 (-6807) -> H^0 (-14071)
+At time : 107 ns Reaction : e_aq^-1 (-5446) + OH^0 (-5808) -> OH^-1 (-14072)
+At time : 108 ns Reaction : H3O^1 (-6195) + OH^-1 (-14026) -> No product
+At time : 108 ns Reaction : H2O2^0 (-13278) + e_aq^-1 (-2522) -> OH^-1 (-14073) + OH^0 (-14074)
+At time : 108 ns Reaction : e_aq^-1 (-2447) + H2O2^0 (-12973) -> OH^-1 (-14075) + OH^0 (-14076)
+At time : 108 ns Reaction : e_aq^-1 (-3917) + H2O2^0 (-11692) -> OH^-1 (-14077) + OH^0 (-14078)
+At time : 108 ns Reaction : OH^0 (-6664) + OH^0 (-7814) -> H2O2^0 (-14079)
+At time : 108 ns Reaction : e_aq^-1 (-683) + H3O^1 (-7459) -> H^0 (-14080)
+At time : 108 ns Reaction : e_aq^-1 (-1609) + H3O^1 (-7033) -> H^0 (-14081)
+At time : 109 ns Reaction : H3O^1 (-7043) + OH^-1 (-14037) -> No product
+At time : 109 ns Reaction : H^0 (-13320) + H^0 (-13916) -> H_2^0 (-14082)
+At time : 109 ns Reaction : e_aq^-1 (-3779) + H2O2^0 (-12148) -> OH^-1 (-14083) + OH^0 (-14084)
+At time : 109 ns Reaction : e_aq^-1 (-4800) + H2O2^0 (-11965) -> OH^-1 (-14085) + OH^0 (-14086)
+At time : 109 ns Reaction : e_aq^-1 (-3824) + H2O2^0 (-11761) -> OH^-1 (-14087) + OH^0 (-14088)
+At time : 109 ns Reaction : e_aq^-1 (-4375) + H3O^1 (-10869) -> H^0 (-14089)
+At time : 109 ns Reaction : e_aq^-1 (-1784) + e_aq^-1 (-8446) -> OH^-1 (-14090) + OH^-1 (-14091) + H_2^0 (-14092)
+At time : 109 ns Reaction : e_aq^-1 (-3571) + H3O^1 (-7713) -> H^0 (-14093)
+At time : 110 ns Reaction : OH^-1 (-13958) + H3O^1 (-7201) -> No product
+At time : 110 ns Reaction : H^0 (-13924) + H^0 (-12504) -> H_2^0 (-14094)
+At time : 110 ns Reaction : H^0 (-13252) + OH^0 (-13765) -> No product
+At time : 110 ns Reaction : OH^-1 (-13664) + H3O^1 (-6507) -> No product
+At time : 110 ns Reaction : H^0 (-12404) + OH^0 (-7726) -> No product
+At time : 110 ns Reaction : e_aq^-1 (-4928) + H^0 (-9335) -> OH^-1 (-14095) + H_2^0 (-14096)
+At time : 110 ns Reaction : e_aq^-1 (-688) + e_aq^-1 (-8464) -> OH^-1 (-14097) + OH^-1 (-14098) + H_2^0 (-14099)
+At time : 111 ns Reaction : OH^-1 (-13980) + H3O^1 (-8101) -> No product
+At time : 111 ns Reaction : H3O^1 (-7099) + OH^-1 (-13713) -> No product
+At time : 111 ns Reaction : H3O^1 (-10976) + OH^-1 (-13642) -> No product
+At time : 111 ns Reaction : e_aq^-1 (-5159) + H2O2^0 (-11866) -> OH^-1 (-14100) + OH^0 (-14101)
+At time : 112 ns Reaction : e_aq^-1 (-11) + H2O2^0 (-14035) -> OH^-1 (-14102) + OH^0 (-14103)
+At time : 112 ns Reaction : OH^-1 (-13925) + H3O^1 (-7873) -> No product
+At time : 112 ns Reaction : e_aq^-1 (-4850) + H3O^1 (-7087) -> H^0 (-14104)
+At time : 112 ns Reaction : e_aq^-1 (-4402) + H3O^1 (-6011) -> H^0 (-14105)
+At time : 113 ns Reaction : H2O2^0 (-13505) + e_aq^-1 (-4198) -> OH^-1 (-14106) + OH^0 (-14107)
+At time : 113 ns Reaction : e_aq^-1 (-1998) + H^0 (-13342) -> OH^-1 (-14108) + H_2^0 (-14109)
+At time : 113 ns Reaction : e_aq^-1 (-5380) + H2O2^0 (-12192) -> OH^-1 (-14110) + OH^0 (-14111)
+At time : 113 ns Reaction : H^0 (-9222) + OH^0 (-9597) -> No product
+At time : 114 ns Reaction : H3O^1 (-7347) + OH^-1 (-14040) -> No product
+At time : 114 ns Reaction : e_aq^-1 (-2373) + H2O2^0 (-12122) -> OH^-1 (-14112) + OH^0 (-14113)
+At time : 114 ns Reaction : OH^0 (-5816) + OH^0 (-6104) -> H2O2^0 (-14114)
+At time : 115 ns Reaction : OH^0 (-13935) + e_aq^-1 (-3032) -> OH^-1 (-14115)
+At time : 115 ns Reaction : H3O^1 (-10251) + OH^-1 (-13698) -> No product
+At time : 115 ns Reaction : OH^0 (-13657) + OH^0 (-7786) -> H2O2^0 (-14116)
+At time : 115 ns Reaction : e_aq^-1 (-2702) + H^0 (-13260) -> OH^-1 (-14117) + H_2^0 (-14118)
+At time : 115 ns Reaction : e_aq^-1 (-8470) + H3O^1 (-8496) -> H^0 (-14119)
+At time : 116 ns Reaction : e_aq^-1 (-2496) + H^0 (-13668) -> OH^-1 (-14120) + H_2^0 (-14121)
+At time : 116 ns Reaction : H^0 (-12912) + H^0 (-13610) -> H_2^0 (-14122)
+At time : 116 ns Reaction : e_aq^-1 (-4878) + OH^0 (-12714) -> OH^-1 (-14123)
+At time : 116 ns Reaction : OH^0 (-7248) + OH^0 (-8236) -> H2O2^0 (-14124)
+At time : 116 ns Reaction : e_aq^-1 (-2730) + e_aq^-1 (-3719) -> OH^-1 (-14125) + OH^-1 (-14126) + H_2^0 (-14127)
+At time : 117 ns Reaction : e_aq^-1 (-642) + OH^0 (-13492) -> OH^-1 (-14128)
+At time : 117 ns Reaction : H^0 (-10831) + OH^0 (-6876) -> No product
+At time : 117 ns Reaction : H3O^1 (-5883) + e_aq^-1 (-8746) -> H^0 (-14129)
+At time : 117 ns Reaction : e_aq^-1 (-4677) + H^0 (-12882) -> OH^-1 (-14130) + H_2^0 (-14131)
+At time : 118 ns Reaction : OH^-1 (-14016) + H3O^1 (-6843) -> No product
+At time : 118 ns Reaction : H3O^1 (-7485) + OH^-1 (-13898) -> No product
+At time : 119 ns Reaction : H^0 (-12538) + H^0 (-13997) -> H_2^0 (-14132)
+At time : 119 ns Reaction : e_aq^-1 (-3604) + H^0 (-12734) -> OH^-1 (-14133) + H_2^0 (-14134)
+At time : 121 ns Reaction : e_aq^-1 (-4958) + H2O2^0 (-13482) -> OH^-1 (-14135) + OH^0 (-14136)
+At time : 121 ns Reaction : e_aq^-1 (-2235) + H3O^1 (-10783) -> H^0 (-14137)
+At time : 121 ns Reaction : e_aq^-1 (-3706) + H3O^1 (-7665) -> H^0 (-14138)
+At time : 122 ns Reaction : OH^-1 (-14031) + H3O^1 (-5831) -> No product
+At time : 122 ns Reaction : OH^-1 (-13977) + H3O^1 (-7281) -> No product
+At time : 122 ns Reaction : H3O^1 (-9696) + OH^-1 (-13263) -> No product
+At time : 122 ns Reaction : H2O2^0 (-11697) + e_aq^-1 (-4220) -> OH^-1 (-14139) + OH^0 (-14140)
+At time : 122 ns Reaction : e_aq^-1 (-924) + H3O^1 (-7499) -> H^0 (-14141)
+At time : 123 ns Reaction : e_aq^-1 (-679) + OH^0 (-13573) -> OH^-1 (-14142)
+At time : 123 ns Reaction : OH^0 (-13128) + H^0 (-12749) -> No product
+At time : 123 ns Reaction : e_aq^-1 (-4561) + OH^0 (-12807) -> OH^-1 (-14143)
+At time : 124 ns Reaction : e_aq^-1 (-4100) + OH^0 (-14140) -> OH^-1 (-14144)
+At time : 124 ns Reaction : OH^-1 (-13880) + H3O^1 (-7913) -> No product
+At time : 124 ns Reaction : OH^-1 (-13873) + H3O^1 (-8928) -> No product
+At time : 124 ns Reaction : OH^0 (-13846) + H^0 (-11127) -> No product
+At time : 124 ns Reaction : e_aq^-1 (-2038) + H^0 (-13649) -> OH^-1 (-14145) + H_2^0 (-14146)
+At time : 124 ns Reaction : OH^0 (-10112) + H^0 (-12881) -> No product
+At time : 124 ns Reaction : e_aq^-1 (-4329) + H2O2^0 (-11557) -> OH^-1 (-14147) + OH^0 (-14148)
+At time : 124 ns Reaction : e_aq^-1 (-4549) + H^0 (-10032) -> OH^-1 (-14149) + H_2^0 (-14150)
+At time : 124 ns Reaction : e_aq^-1 (-2408) + H3O^1 (-5915) -> H^0 (-14151)
+At time : 125 ns Reaction : H3O^1 (-6099) + OH^-1 (-13797) -> No product
+At time : 125 ns Reaction : H3O^1 (-9752) + OH^-1 (-13749) -> No product
+At time : 125 ns Reaction : H^0 (-11334) + e_aq^-1 (-4935) -> OH^-1 (-14152) + H_2^0 (-14153)
+At time : 125 ns Reaction : e_aq^-1 (-3837) + H3O^1 (-6477) -> H^0 (-14154)
+At time : 125 ns Reaction : e_aq^-1 (-3468) + H3O^1 (-5885) -> H^0 (-14155)
+At time : 126 ns Reaction : e_aq^-1 (-4880) + H^0 (-14081) -> OH^-1 (-14156) + H_2^0 (-14157)
+At time : 126 ns Reaction : H^0 (-13802) + OH^0 (-8777) -> No product
+At time : 126 ns Reaction : OH^0 (-13474) + e_aq^-1 (-4994) -> OH^-1 (-14158)
+At time : 126 ns Reaction : H^0 (-9871) + H^0 (-13039) -> H_2^0 (-14159)
+At time : 126 ns Reaction : e_aq^-1 (-5427) + OH^0 (-8480) -> OH^-1 (-14160)
+At time : 126 ns Reaction : e_aq^-1 (-3646) + e_aq^-1 (-3619) -> OH^-1 (-14161) + OH^-1 (-14162) + H_2^0 (-14163)
+At time : 127 ns Reaction : H3O^1 (-10264) + OH^-1 (-13978) -> No product
+At time : 127 ns Reaction : e_aq^-1 (-2077) + H2O2^0 (-13345) -> OH^-1 (-14164) + OH^0 (-14165)
+At time : 127 ns Reaction : OH^-1 (-12630) + H3O^1 (-6519) -> No product
+At time : 127 ns Reaction : OH^0 (-10232) + OH^0 (-7454) -> H2O2^0 (-14166)
+At time : 127 ns Reaction : e_aq^-1 (-5335) + e_aq^-1 (-5438) -> OH^-1 (-14167) + OH^-1 (-14168) + H_2^0 (-14169)
+At time : 128 ns Reaction : OH^-1 (-13596) + H3O^1 (-8388) -> No product
+At time : 128 ns Reaction : H2O2^0 (-12201) + e_aq^-1 (-2390) -> OH^-1 (-14170) + OH^0 (-14171)
+At time : 128 ns Reaction : H3O^1 (-9555) + e_aq^-1 (-3792) -> H^0 (-14172)
+At time : 129 ns Reaction : H3O^1 (-6853) + OH^-1 (-14027) -> No product
+At time : 129 ns Reaction : H^0 (-9181) + e_aq^-1 (-3441) -> OH^-1 (-14173) + H_2^0 (-14174)
+At time : 129 ns Reaction : e_aq^-1 (-2170) + H3O^1 (-8568) -> H^0 (-14175)
+At time : 129 ns Reaction : e_aq^-1 (-4301) + H3O^1 (-7625) -> H^0 (-14176)
+At time : 129 ns Reaction : e_aq^-1 (-4940) + H3O^1 (-7515) -> H^0 (-14177)
+At time : 130 ns Reaction : H3O^1 (-6265) + e_aq^-1 (-8737) -> H^0 (-14178)
+At time : 131 ns Reaction : OH^-1 (-14128) + H3O^1 (-6041) -> No product
+At time : 131 ns Reaction : H3O^1 (-7513) + OH^-1 (-14100) -> No product
+At time : 131 ns Reaction : OH^-1 (-12859) + H3O^1 (-6417) -> No product
+At time : 131 ns Reaction : e_aq^-1 (-2400) + H3O^1 (-6689) -> H^0 (-14179)
+At time : 131 ns Reaction : e_aq^-1 (-5314) + H3O^1 (-6093) -> H^0 (-14180)
+At time : 132 ns Reaction : H^0 (-12838) + H^0 (-14138) -> H_2^0 (-14181)
+At time : 132 ns Reaction : H3O^1 (-10732) + OH^-1 (-13910) -> No product
+At time : 132 ns Reaction : OH^0 (-7950) + OH^0 (-13531) -> H2O2^0 (-14182)
+At time : 132 ns Reaction : H2O2^0 (-11934) + e_aq^-1 (-4826) -> OH^-1 (-14183) + OH^0 (-14184)
+At time : 133 ns Reaction : e_aq^-1 (-5656) + H2O2^0 (-14114) -> OH^-1 (-14185) + OH^0 (-14186)
+At time : 133 ns Reaction : OH^-1 (-13999) + H3O^1 (-6787) -> No product
+At time : 133 ns Reaction : OH^-1 (-13954) + H3O^1 (-7365) -> No product
+At time : 133 ns Reaction : e_aq^-1 (-5059) + H3O^1 (-8892) -> H^0 (-14187)
+At time : 134 ns Reaction : OH^-1 (-13965) + H3O^1 (-6575) -> No product
+At time : 134 ns Reaction : OH^-1 (-13687) + H3O^1 (-9784) -> No product
+At time : 134 ns Reaction : OH^-1 (-13607) + H3O^1 (-8658) -> No product
+At time : 134 ns Reaction : e_aq^-1 (-1100) + H^0 (-12238) -> OH^-1 (-14188) + H_2^0 (-14189)
+At time : 134 ns Reaction : e_aq^-1 (-5433) + e_aq^-1 (-8677) -> OH^-1 (-14190) + OH^-1 (-14191) + H_2^0 (-14192)
+At time : 134 ns Reaction : e_aq^-1 (-5674) + H3O^1 (-6083) -> H^0 (-14193)
+At time : 135 ns Reaction : H^0 (-14129) + e_aq^-1 (-3576) -> OH^-1 (-14194) + H_2^0 (-14195)
+At time : 135 ns Reaction : e_aq^-1 (-4193) + H3O^1 (-6657) -> H^0 (-14196)
+At time : 136 ns Reaction : H3O^1 (-7495) + OH^-1 (-14130) -> No product
+At time : 136 ns Reaction : OH^0 (-11066) + H^0 (-13988) -> No product
+At time : 136 ns Reaction : H3O^1 (-11171) + OH^-1 (-13813) -> No product
+At time : 136 ns Reaction : e_aq^-1 (-3951) + H2O2^0 (-12058) -> OH^-1 (-14197) + OH^0 (-14198)
+At time : 136 ns Reaction : e_aq^-1 (-3788) + OH^0 (-6556) -> OH^-1 (-14199)
+At time : 137 ns Reaction : OH^-1 (-14033) + H3O^1 (-8946) -> No product
+At time : 137 ns Reaction : OH^-1 (-13903) + H3O^1 (-6621) -> No product
+At time : 137 ns Reaction : H3O^1 (-10573) + OH^-1 (-13861) -> No product
+At time : 137 ns Reaction : H^0 (-13067) + H^0 (-13693) -> H_2^0 (-14200)
+At time : 137 ns Reaction : H^0 (-13171) + e_aq^-1 (-8368) -> OH^-1 (-14201) + H_2^0 (-14202)
+At time : 137 ns Reaction : OH^0 (-10438) + e_aq^-1 (-5085) -> OH^-1 (-14203)
+At time : 138 ns Reaction : OH^-1 (-14144) + H3O^1 (-6801) -> No product
+At time : 138 ns Reaction : e_aq^-1 (-1934) + OH^0 (-13926) -> OH^-1 (-14204)
+At time : 138 ns Reaction : OH^-1 (-13804) + H3O^1 (-8799) -> No product
+At time : 138 ns Reaction : OH^-1 (-13566) + H3O^1 (-7071) -> No product
+At time : 138 ns Reaction : OH^0 (-12674) + OH^0 (-7908) -> H2O2^0 (-14205)
+At time : 138 ns Reaction : OH^0 (-11036) + e_aq^-1 (-4990) -> OH^-1 (-14206)
+At time : 138 ns Reaction : e_aq^-1 (-364) + H3O^1 (-7181) -> H^0 (-14207)
+At time : 138 ns Reaction : e_aq^-1 (-3801) + e_aq^-1 (-3950) -> OH^-1 (-14208) + OH^-1 (-14209) + H_2^0 (-14210)
+At time : 139 ns Reaction : OH^0 (-14074) + e_aq^-1 (-8557) -> OH^-1 (-14211)
+At time : 139 ns Reaction : OH^-1 (-14049) + H3O^1 (-7035) -> No product
+At time : 139 ns Reaction : H3O^1 (-11102) + OH^-1 (-14008) -> No product
+At time : 139 ns Reaction : e_aq^-1 (-3841) + OH^0 (-6576) -> OH^-1 (-14212)
+At time : 140 ns Reaction : OH^-1 (-13850) + H3O^1 (-6755) -> No product
+At time : 140 ns Reaction : H3O^1 (-6867) + OH^-1 (-13724) -> No product
+At time : 140 ns Reaction : H2O2^0 (-13296) + e_aq^-1 (-5549) -> OH^-1 (-14213) + OH^0 (-14214)
+At time : 140 ns Reaction : H^0 (-12319) + OH^0 (-5894) -> No product
+At time : 140 ns Reaction : OH^0 (-6922) + H^0 (-11539) -> No product
+At time : 140 ns Reaction : OH^0 (-9961) + e_aq^-1 (-8602) -> OH^-1 (-14215)
+At time : 140 ns Reaction : e_aq^-1 (-4047) + H3O^1 (-6513) -> H^0 (-14216)
+At time : 141 ns Reaction : OH^-1 (-14158) + H3O^1 (-7077) -> No product
+At time : 141 ns Reaction : OH^-1 (-13605) + H3O^1 (-8649) -> No product
+At time : 141 ns Reaction : OH^0 (-11211) + OH^0 (-8744) -> H2O2^0 (-14217)
+At time : 141 ns Reaction : H^0 (-11014) + OH^0 (-7986) -> No product
+At time : 143 ns Reaction : e_aq^-1 (-5103) + H2O2^0 (-13733) -> OH^-1 (-14218) + OH^0 (-14219)
+At time : 143 ns Reaction : OH^-1 (-13624) + H3O^1 (-6391) -> No product
+At time : 143 ns Reaction : e_aq^-1 (-5565) + H3O^1 (-8235) -> H^0 (-14220)
+At time : 144 ns Reaction : H3O^1 (-9921) + OH^-1 (-13849) -> No product
+At time : 144 ns Reaction : e_aq^-1 (-5034) + H2O2^0 (-13466) -> OH^-1 (-14221) + OH^0 (-14222)
+At time : 144 ns Reaction : e_aq^-1 (-5379) + H^0 (-12455) -> OH^-1 (-14223) + H_2^0 (-14224)
+At time : 144 ns Reaction : H3O^1 (-10341) + e_aq^-1 (-5462) -> H^0 (-14225)
+At time : 144 ns Reaction : e_aq^-1 (-5135) + H^0 (-10164) -> OH^-1 (-14226) + H_2^0 (-14227)
+At time : 145 ns Reaction : H3O^1 (-8187) + OH^-1 (-13994) -> No product
+At time : 145 ns Reaction : H3O^1 (-10167) + OH^-1 (-13960) -> No product
+At time : 145 ns Reaction : OH^-1 (-13852) + H3O^1 (-7837) -> No product
+At time : 145 ns Reaction : OH^-1 (-13682) + H3O^1 (-6225) -> No product
+At time : 145 ns Reaction : OH^-1 (-13206) + H3O^1 (-7065) -> No product
+At time : 145 ns Reaction : H3O^1 (-6301) + e_aq^-1 (-8776) -> H^0 (-14228)
+At time : 145 ns Reaction : e_aq^-1 (-1849) + H3O^1 (-8436) -> H^0 (-14229)
+At time : 145 ns Reaction : e_aq^-1 (-3682) + H3O^1 (-7809) -> H^0 (-14230)
+At time : 145 ns Reaction : e_aq^-1 (-2305) + OH^0 (-7648) -> OH^-1 (-14231)
+At time : 146 ns Reaction : H^0 (-14176) + e_aq^-1 (-8536) -> OH^-1 (-14232) + H_2^0 (-14233)
+At time : 146 ns Reaction : H^0 (-13641) + OH^0 (-8294) -> No product
+At time : 146 ns Reaction : H3O^1 (-10761) + OH^-1 (-12748) -> No product
+At time : 146 ns Reaction : H3O^1 (-9968) + e_aq^-1 (-8452) -> H^0 (-14234)
+At time : 146 ns Reaction : H3O^1 (-8355) + e_aq^-1 (-8794) -> H^0 (-14235)
+At time : 147 ns Reaction : OH^0 (-13981) + H^0 (-12946) -> No product
+At time : 147 ns Reaction : H^0 (-12343) + e_aq^-1 (-8443) -> OH^-1 (-14236) + H_2^0 (-14237)
+At time : 147 ns Reaction : OH^0 (-10687) + e_aq^-1 (-8425) -> OH^-1 (-14238)
+At time : 147 ns Reaction : H3O^1 (-9608) + e_aq^-1 (-2627) -> H^0 (-14239)
+At time : 148 ns Reaction : OH^-1 (-14073) + H3O^1 (-6591) -> No product
+At time : 148 ns Reaction : OH^-1 (-13669) + H3O^1 (-7501) -> No product
+At time : 148 ns Reaction : H^0 (-12638) + OH^0 (-7824) -> No product
+At time : 149 ns Reaction : H3O^1 (-10119) + OH^-1 (-14135) -> No product
+At time : 149 ns Reaction : H3O^1 (-10440) + OH^-1 (-13878) -> No product
+At time : 149 ns Reaction : H3O^1 (-7355) + OH^-1 (-13806) -> No product
+At time : 149 ns Reaction : OH^0 (-9789) + e_aq^-1 (-2260) -> OH^-1 (-14240)
+At time : 150 ns Reaction : OH^0 (-9861) + H^0 (-14196) -> No product
+At time : 150 ns Reaction : H3O^1 (-6675) + OH^-1 (-14066) -> No product
+At time : 150 ns Reaction : OH^0 (-9462) + e_aq^-1 (-3457) -> OH^-1 (-14241)
+At time : 151 ns Reaction : H3O^1 (-6409) + OH^-1 (-13855) -> No product
+At time : 151 ns Reaction : e_aq^-1 (-4558) + H2O2^0 (-12456) -> OH^-1 (-14242) + OH^0 (-14243)
+At time : 152 ns Reaction : e_aq^-1 (-4841) + H2O2^0 (-12862) -> OH^-1 (-14244) + OH^0 (-14245)
+At time : 152 ns Reaction : e_aq^-1 (-1139) + H2O2^0 (-11575) -> OH^-1 (-14246) + OH^0 (-14247)
+At time : 152 ns Reaction : e_aq^-1 (-4053) + H3O^1 (-6811) -> H^0 (-14248)
+At time : 153 ns Reaction : OH^-1 (-13762) + H3O^1 (-6765) -> No product
+At time : 153 ns Reaction : H^0 (-13027) + H^0 (-9074) -> H_2^0 (-14249)
+At time : 153 ns Reaction : e_aq^-1 (-1604) + H2O2^0 (-12078) -> OH^-1 (-14250) + OH^0 (-14251)
+At time : 153 ns Reaction : e_aq^-1 (-3729) + H3O^1 (-6509) -> H^0 (-14252)
+At time : 154 ns Reaction : H3O^1 (-10253) + OH^-1 (-14218) -> No product
+At time : 154 ns Reaction : OH^0 (-7060) + H^0 (-13908) -> No product
+At time : 154 ns Reaction : H3O^1 (-6445) + OH^-1 (-13534) -> No product
+At time : 154 ns Reaction : H2O2^0 (-12101) + e_aq^-1 (-8611) -> OH^-1 (-14253) + OH^0 (-14254)
+At time : 154 ns Reaction : OH^0 (-6476) + OH^0 (-6516) -> H2O2^0 (-14255)
+At time : 155 ns Reaction : H3O^1 (-10851) + OH^-1 (-14108) -> No product
+At time : 155 ns Reaction : e_aq^-1 (-3893) + H2O2^0 (-12399) -> OH^-1 (-14256) + OH^0 (-14257)
+At time : 155 ns Reaction : OH^0 (-10116) + H^0 (-9992) -> No product
+At time : 155 ns Reaction : H3O^1 (-9708) + e_aq^-1 (-3749) -> H^0 (-14258)
+At time : 156 ns Reaction : H3O^1 (-9610) + OH^-1 (-13338) -> No product
+At time : 156 ns Reaction : e_aq^-1 (-4378) + H^0 (-12747) -> OH^-1 (-14259) + H_2^0 (-14260)
+At time : 156 ns Reaction : OH^0 (-11065) + OH^0 (-8214) -> H2O2^0 (-14261)
+At time : 156 ns Reaction : H^0 (-11032) + OH^0 (-8384) -> No product
+At time : 157 ns Reaction : OH^0 (-14067) + e_aq^-1 (-2520) -> OH^-1 (-14262)
+At time : 157 ns Reaction : OH^-1 (-14062) + H3O^1 (-8553) -> No product
+At time : 157 ns Reaction : e_aq^-1 (-2283) + H3O^1 (-7639) -> H^0 (-14263)
+At time : 157 ns Reaction : e_aq^-1 (-2246) + e_aq^-1 (-4005) -> OH^-1 (-14264) + OH^-1 (-14265) + H_2^0 (-14266)
+At time : 158 ns Reaction : e_aq^-1 (-912) + H^0 (-14141) -> OH^-1 (-14267) + H_2^0 (-14268)
+At time : 158 ns Reaction : OH^-1 (-13891) + H3O^1 (-7257) -> No product
+At time : 158 ns Reaction : OH^0 (-11150) + e_aq^-1 (-5689) -> OH^-1 (-14269)
+At time : 158 ns Reaction : OH^0 (-9854) + OH^0 (-6890) -> H2O2^0 (-14270)
+At time : 158 ns Reaction : e_aq^-1 (-5269) + H3O^1 (-8183) -> H^0 (-14271)
+At time : 159 ns Reaction : H^0 (-12979) + OH^0 (-6944) -> No product
+At time : 159 ns Reaction : e_aq^-1 (-4797) + H2O2^0 (-11707) -> OH^-1 (-14272) + OH^0 (-14273)
+At time : 159 ns Reaction : OH^0 (-10845) + OH^0 (-6830) -> H2O2^0 (-14274)
+At time : 159 ns Reaction : e_aq^-1 (-2345) + H3O^1 (-10709) -> H^0 (-14275)
+At time : 160 ns Reaction : H^0 (-13297) + OH^0 (-7960) -> No product
+At time : 160 ns Reaction : e_aq^-1 (-2808) + H^0 (-11223) -> OH^-1 (-14276) + H_2^0 (-14277)
+At time : 160 ns Reaction : e_aq^-1 (-5348) + OH^0 (-10420) -> OH^-1 (-14278)
+At time : 161 ns Reaction : OH^-1 (-14278) + H3O^1 (-8628) -> No product
+At time : 161 ns Reaction : OH^0 (-7064) + H^0 (-13321) -> No product
+At time : 161 ns Reaction : e_aq^-1 (-4704) + H3O^1 (-8009) -> H^0 (-14279)
+At time : 162 ns Reaction : OH^-1 (-14161) + H3O^1 (-5909) -> No product
+At time : 162 ns Reaction : OH^-1 (-13497) + H3O^1 (-7405) -> No product
+At time : 162 ns Reaction : OH^0 (-11063) + OH^0 (-8688) -> H2O2^0 (-14280)
+At time : 164 ns Reaction : OH^-1 (-14056) + H3O^1 (-6289) -> No product
+At time : 164 ns Reaction : OH^-1 (-13518) + H3O^1 (-10787) -> No product
+At time : 164 ns Reaction : OH^-1 (-13341) + H3O^1 (-6127) -> No product
+At time : 165 ns Reaction : H^0 (-14155) + H^0 (-9482) -> H_2^0 (-14281)
+At time : 165 ns Reaction : H3O^1 (-6425) + OH^-1 (-13921) -> No product
+At time : 165 ns Reaction : OH^-1 (-13544) + H3O^1 (-6183) -> No product
+At time : 165 ns Reaction : H3O^1 (-9810) + OH^-1 (-13105) -> No product
+At time : 167 ns Reaction : H^0 (-13917) + H^0 (-14179) -> H_2^0 (-14282)
+At time : 167 ns Reaction : OH^0 (-9817) + H^0 (-12989) -> No product
+At time : 167 ns Reaction : OH^0 (-12413) + OH^0 (-10799) -> H2O2^0 (-14283)
+At time : 168 ns Reaction : H^0 (-13448) + H^0 (-14225) -> H_2^0 (-14284)
+At time : 168 ns Reaction : H^0 (-13639) + OH^0 (-13691) -> No product
+At time : 168 ns Reaction : H3O^1 (-6065) + OH^-1 (-13284) -> No product
+At time : 169 ns Reaction : H3O^1 (-7983) + OH^-1 (-13473) -> No product
+At time : 169 ns Reaction : e_aq^-1 (-487) + H^0 (-13350) -> OH^-1 (-14285) + H_2^0 (-14286)
+At time : 169 ns Reaction : OH^0 (-10723) + H^0 (-13008) -> No product
+At time : 169 ns Reaction : e_aq^-1 (-2559) + OH^0 (-8999) -> OH^-1 (-14287)
+At time : 170 ns Reaction : OH^-1 (-13843) + H3O^1 (-7995) -> No product
+At time : 170 ns Reaction : OH^0 (-11310) + e_aq^-1 (-4213) -> OH^-1 (-14288)
+At time : 170 ns Reaction : OH^0 (-10387) + OH^0 (-7468) -> H2O2^0 (-14289)
+At time : 171 ns Reaction : OH^-1 (-14250) + H3O^1 (-8379) -> No product
+At time : 171 ns Reaction : OH^-1 (-14164) + H3O^1 (-6775) -> No product
+At time : 171 ns Reaction : H3O^1 (-6109) + OH^-1 (-13604) -> No product
+At time : 171 ns Reaction : OH^0 (-13378) + H^0 (-11795) -> No product
+At time : 172 ns Reaction : OH^-1 (-13937) + H3O^1 (-5905) -> No product
+At time : 172 ns Reaction : H^0 (-13770) + e_aq^-1 (-2471) -> OH^-1 (-14290) + H_2^0 (-14291)
+At time : 172 ns Reaction : OH^-1 (-13514) + H3O^1 (-10382) -> No product
+At time : 173 ns Reaction : H3O^1 (-9314) + OH^-1 (-14042) -> No product
+At time : 173 ns Reaction : H3O^1 (-7977) + OH^-1 (-13885) -> No product
+At time : 173 ns Reaction : OH^0 (-9913) + OH^0 (-6758) -> H2O2^0 (-14292)
+At time : 173 ns Reaction : e_aq^-1 (-1251) + OH^0 (-6020) -> OH^-1 (-14293)
+At time : 174 ns Reaction : e_aq^-1 (-4917) + OH^0 (-7160) -> OH^-1 (-14294)
+At time : 176 ns Reaction : H3O^1 (-9876) + OH^-1 (-14077) -> No product
+At time : 176 ns Reaction : H^0 (-13825) + e_aq^-1 (-5102) -> OH^-1 (-14295) + H_2^0 (-14296)
+At time : 176 ns Reaction : H2O2^0 (-11363) + e_aq^-1 (-3654) -> OH^-1 (-14297) + OH^0 (-14298)
+At time : 176 ns Reaction : OH^0 (-9546) + H^0 (-9517) -> No product
+At time : 177 ns Reaction : OH^0 (-6392) + H^0 (-14172) -> No product
+At time : 177 ns Reaction : H^0 (-12755) + H^0 (-13854) -> H_2^0 (-14299)
+At time : 178 ns Reaction : OH^0 (-5924) + H^0 (-13884) -> No product
+At time : 178 ns Reaction : e_aq^-1 (-4007) + H^0 (-10744) -> OH^-1 (-14300) + H_2^0 (-14301)
+At time : 179 ns Reaction : e_aq^-1 (-4611) + OH^0 (-13899) -> OH^-1 (-14302)
+At time : 180 ns Reaction : e_aq^-1 (-3586) + H^0 (-9539) -> OH^-1 (-14303) + H_2^0 (-14304)
+At time : 180 ns Reaction : e_aq^-1 (-2127) + H3O^1 (-5947) -> H^0 (-14305)
+At time : 181 ns Reaction : e_aq^-1 (-2768) + H^0 (-14258) -> OH^-1 (-14306) + H_2^0 (-14307)
+At time : 181 ns Reaction : H3O^1 (-7813) + OH^-1 (-14048) -> No product
+At time : 182 ns Reaction : OH^-1 (-14183) + H3O^1 (-8832) -> No product
+At time : 182 ns Reaction : e_aq^-1 (-2482) + e_aq^-1 (-8563) -> OH^-1 (-14308) + OH^-1 (-14309) + H_2^0 (-14310)
+At time : 182 ns Reaction : H3O^1 (-7425) + e_aq^-1 (-8419) -> H^0 (-14311)
+At time : 183 ns Reaction : OH^0 (-13633) + H^0 (-13109) -> No product
+At time : 184 ns Reaction : OH^0 (-14243) + OH^0 (-7074) -> H2O2^0 (-14312)
+At time : 185 ns Reaction : H3O^1 (-5943) + OH^-1 (-14306) -> No product
+At time : 185 ns Reaction : OH^-1 (-13869) + H3O^1 (-9925) -> No product
+At time : 185 ns Reaction : H2O2^0 (-11392) + e_aq^-1 (-4904) -> OH^-1 (-14313) + OH^0 (-14314)
+At time : 185 ns Reaction : OH^0 (-10242) + e_aq^-1 (-5212) -> OH^-1 (-14315)
+At time : 185 ns Reaction : e_aq^-1 (-4766) + H3O^1 (-7949) -> H^0 (-14316)
+At time : 185 ns Reaction : e_aq^-1 (-1901) + e_aq^-1 (-4115) -> OH^-1 (-14317) + OH^-1 (-14318) + H_2^0 (-14319)
+At time : 186 ns Reaction : OH^0 (-10455) + H^0 (-14207) -> No product
+At time : 186 ns Reaction : OH^-1 (-13808) + H3O^1 (-7059) -> No product
+At time : 186 ns Reaction : e_aq^-1 (-3674) + H2O2^0 (-13683) -> OH^-1 (-14320) + OH^0 (-14321)
+At time : 186 ns Reaction : H3O^1 (-10673) + OH^-1 (-13673) -> No product
+At time : 186 ns Reaction : OH^0 (-6648) + OH^0 (-8997) -> H2O2^0 (-14322)
+At time : 187 ns Reaction : e_aq^-1 (-3635) + e_aq^-1 (-3507) -> OH^-1 (-14323) + OH^-1 (-14324) + H_2^0 (-14325)
+At time : 188 ns Reaction : OH^0 (-11272) + OH^0 (-13195) -> H2O2^0 (-14326)
+At time : 189 ns Reaction : OH^-1 (-14013) + H3O^1 (-7279) -> No product
+At time : 190 ns Reaction : e_aq^-1 (-3842) + H2O2^0 (-13251) -> OH^-1 (-14327) + OH^0 (-14328)
+At time : 190 ns Reaction : H3O^1 (-9634) + e_aq^-1 (-2590) -> H^0 (-14329)
+At time : 191 ns Reaction : e_aq^-1 (-5126) + H3O^1 (-7245) -> H^0 (-14330)
+At time : 191 ns Reaction : e_aq^-1 (-3997) + H3O^1 (-6633) -> H^0 (-14331)
+At time : 192 ns Reaction : OH^-1 (-14110) + H3O^1 (-8107) -> No product
+At time : 192 ns Reaction : OH^-1 (-13632) + H3O^1 (-8115) -> No product
+At time : 192 ns Reaction : OH^0 (-9240) + OH^0 (-5766) -> H2O2^0 (-14332)
+At time : 193 ns Reaction : H^0 (-13358) + OH^0 (-13022) -> No product
+At time : 193 ns Reaction : OH^0 (-10560) + e_aq^-1 (-3986) -> OH^-1 (-14333)
+At time : 194 ns Reaction : H^0 (-9467) + OH^0 (-6242) -> No product
+At time : 196 ns Reaction : H^0 (-14279) + H^0 (-9090) -> H_2^0 (-14334)
+At time : 196 ns Reaction : H3O^1 (-9798) + OH^-1 (-14038) -> No product
+At time : 197 ns Reaction : e_aq^-1 (-3821) + e_aq^-1 (-3692) -> OH^-1 (-14335) + OH^-1 (-14336) + H_2^0 (-14337)
+At time : 198 ns Reaction : OH^-1 (-14106) + H3O^1 (-6171) -> No product
+At time : 199 ns Reaction : H^0 (-14329) + e_aq^-1 (-2950) -> OH^-1 (-14338) + H_2^0 (-14339)
+At time : 200 ns Reaction : H3O^1 (-6523) + OH^-1 (-13953) -> No product
+At time : 200 ns Reaction : e_aq^-1 (-4581) + H^0 (-12636) -> OH^-1 (-14340) + H_2^0 (-14341)
+At time : 200 ns Reaction : e_aq^-1 (-1988) + H2O2^0 (-12433) -> OH^-1 (-14342) + OH^0 (-14343)
+At time : 200 ns Reaction : e_aq^-1 (-3969) + H2O2^0 (-12197) -> OH^-1 (-14344) + OH^0 (-14345)
+At time : 200 ns Reaction : H3O^1 (-10994) + e_aq^-1 (-4820) -> H^0 (-14346)
+At time : 201 ns Reaction : H^0 (-9241) + H^0 (-10700) -> H_2^0 (-14347)
+At time : 201 ns Reaction : e_aq^-1 (-4472) + OH^0 (-7578) -> OH^-1 (-14348)
+At time : 202 ns Reaction : OH^0 (-7712) + e_aq^-1 (-8749) -> OH^-1 (-14349)
+At time : 203 ns Reaction : H^0 (-10200) + OH^0 (-7486) -> No product
+At time : 203 ns Reaction : e_aq^-1 (-2294) + H3O^1 (-7869) -> H^0 (-14350)
+At time : 205 ns Reaction : e_aq^-1 (-1333) + OH^0 (-6896) -> OH^-1 (-14351)
+At time : 206 ns Reaction : e_aq^-1 (-4017) + OH^0 (-14345) -> OH^-1 (-14352)
+At time : 206 ns Reaction : H3O^1 (-8053) + OH^-1 (-13761) -> No product
+At time : 206 ns Reaction : e_aq^-1 (-5551) + H^0 (-13126) -> OH^-1 (-14353) + H_2^0 (-14354)
+At time : 206 ns Reaction : e_aq^-1 (-5503) + e_aq^-1 (-8923) -> OH^-1 (-14355) + OH^-1 (-14356) + H_2^0 (-14357)
+At time : 206 ns Reaction : e_aq^-1 (-5290) + H3O^1 (-6061) -> H^0 (-14358)
+At time : 207 ns Reaction : e_aq^-1 (-2572) + H2O2^0 (-13458) -> OH^-1 (-14359) + OH^0 (-14360)
+At time : 207 ns Reaction : H2O2^0 (-11358) + e_aq^-1 (-1161) -> OH^-1 (-14361) + OH^0 (-14362)
+At time : 208 ns Reaction : OH^-1 (-14259) + H3O^1 (-8541) -> No product
+At time : 208 ns Reaction : H^0 (-13360) + OH^0 (-12732) -> No product
+At time : 208 ns Reaction : H^0 (-12467) + e_aq^-1 (-8869) -> OH^-1 (-14363) + H_2^0 (-14364)
+At time : 208 ns Reaction : e_aq^-1 (-4203) + H3O^1 (-8003) -> H^0 (-14365)
+At time : 208 ns Reaction : e_aq^-1 (-3085) + H3O^1 (-7717) -> H^0 (-14366)
+At time : 209 ns Reaction : OH^-1 (-12851) + H3O^1 (-8676) -> No product
+At time : 209 ns Reaction : e_aq^-1 (-3816) + H3O^1 (-6531) -> H^0 (-14367)
+At time : 210 ns Reaction : e_aq^-1 (-1867) + H^0 (-14175) -> OH^-1 (-14368) + H_2^0 (-14369)
+At time : 210 ns Reaction : e_aq^-1 (-2181) + H2O2^0 (-12518) -> OH^-1 (-14370) + OH^0 (-14371)
+At time : 210 ns Reaction : OH^0 (-9163) + OH^0 (-9469) -> H2O2^0 (-14372)
+At time : 212 ns Reaction : OH^0 (-9814) + OH^0 (-13970) -> H2O2^0 (-14373)
+At time : 213 ns Reaction : OH^0 (-10543) + OH^0 (-8579) -> H2O2^0 (-14374)
+At time : 213 ns Reaction : OH^0 (-9863) + OH^0 (-5986) -> H2O2^0 (-14375)
+At time : 214 ns Reaction : OH^-1 (-13833) + H3O^1 (-7433) -> No product
+At time : 214 ns Reaction : e_aq^-1 (-4552) + e_aq^-1 (-8590) -> OH^-1 (-14376) + OH^-1 (-14377) + H_2^0 (-14378)
+At time : 215 ns Reaction : e_aq^-1 (-560) + H2O2^0 (-12365) -> OH^-1 (-14379) + OH^0 (-14380)
+At time : 215 ns Reaction : H3O^1 (-6953) + e_aq^-1 (-8458) -> H^0 (-14381)
+At time : 216 ns Reaction : OH^-1 (-14098) + H3O^1 (-7179) -> No product
+At time : 216 ns Reaction : OH^-1 (-12679) + H3O^1 (-8025) -> No product
+At time : 216 ns Reaction : e_aq^-1 (-5692) + OH^0 (-6092) -> OH^-1 (-14382)
+At time : 217 ns Reaction : e_aq^-1 (-5698) + OH^0 (-7296) -> OH^-1 (-14383)
+At time : 217 ns Reaction : e_aq^-1 (-4943) + H3O^1 (-7055) -> H^0 (-14384)
+At time : 218 ns Reaction : H^0 (-9278) + e_aq^-1 (-2452) -> OH^-1 (-14385) + H_2^0 (-14386)
+At time : 220 ns Reaction : OH^-1 (-13212) + H3O^1 (-7491) -> No product
+At time : 221 ns Reaction : OH^0 (-9987) + H^0 (-14365) -> No product
+At time : 221 ns Reaction : H3O^1 (-10948) + OH^-1 (-14242) -> No product
+At time : 221 ns Reaction : H3O^1 (-7771) + OH^-1 (-14126) -> No product
+At time : 222 ns Reaction : OH^0 (-14078) + e_aq^-1 (-2186) -> OH^-1 (-14387)
+At time : 222 ns Reaction : e_aq^-1 (-2706) + H2O2^0 (-11638) -> OH^-1 (-14388) + OH^0 (-14389)
+At time : 223 ns Reaction : H^0 (-14263) + OH^0 (-14360) -> No product
+At time : 223 ns Reaction : e_aq^-1 (-2049) + H3O^1 (-7861) -> H^0 (-14390)
+At time : 223 ns Reaction : e_aq^-1 (-1392) + OH^0 (-7540) -> OH^-1 (-14391)
+At time : 224 ns Reaction : e_aq^-1 (-5221) + H2O2^0 (-11799) -> OH^-1 (-14392) + OH^0 (-14393)
+At time : 224 ns Reaction : e_aq^-1 (-2221) + H2O2^0 (-11377) -> OH^-1 (-14394) + OH^0 (-14395)
+At time : 225 ns Reaction : e_aq^-1 (-4140) + H^0 (-14137) -> OH^-1 (-14396) + H_2^0 (-14397)
+At time : 226 ns Reaction : OH^-1 (-13734) + H3O^1 (-7781) -> No product
+At time : 227 ns Reaction : H3O^1 (-10893) + OH^-1 (-14267) -> No product
+At time : 227 ns Reaction : H3O^1 (-7025) + e_aq^-1 (-8929) -> H^0 (-14398)
+At time : 228 ns Reaction : H3O^1 (-8005) + OH^-1 (-14272) -> No product
+At time : 228 ns Reaction : H3O^1 (-7359) + OH^-1 (-14269) -> No product
+At time : 228 ns Reaction : H3O^1 (-10152) + OH^-1 (-13985) -> No product
+At time : 228 ns Reaction : e_aq^-1 (-5421) + H^0 (-11336) -> OH^-1 (-14399) + H_2^0 (-14400)
+At time : 228 ns Reaction : H3O^1 (-7079) + e_aq^-1 (-8575) -> H^0 (-14401)
+At time : 228 ns Reaction : e_aq^-1 (-3931) + e_aq^-1 (-4044) -> OH^-1 (-14402) + OH^-1 (-14403) + H_2^0 (-14404)
+At time : 229 ns Reaction : H3O^1 (-11022) + OH^-1 (-14294) -> No product
+At time : 229 ns Reaction : OH^-1 (-14143) + H3O^1 (-5979) -> No product
+At time : 229 ns Reaction : H^0 (-13848) + H^0 (-9566) -> H_2^0 (-14405)
+At time : 230 ns Reaction : OH^-1 (-14391) + H3O^1 (-8049) -> No product
+At time : 230 ns Reaction : OH^0 (-9695) + OH^0 (-6604) -> H2O2^0 (-14406)
+At time : 231 ns Reaction : OH^-1 (-13374) + H3O^1 (-5965) -> No product
+At time : 231 ns Reaction : H^0 (-10965) + OH^0 (-7518) -> No product
+At time : 231 ns Reaction : e_aq^-1 (-1211) + OH^0 (-7132) -> OH^-1 (-14407)
+At time : 232 ns Reaction : e_aq^-1 (-4325) + H3O^1 (-6005) -> H^0 (-14408)
+At time : 233 ns Reaction : H3O^1 (-9308) + e_aq^-1 (-4622) -> H^0 (-14409)
+At time : 234 ns Reaction : e_aq^-1 (-2757) + OH^0 (-14298) -> OH^-1 (-14410)
+At time : 234 ns Reaction : e_aq^-1 (-4419) + H2O2^0 (-13075) -> OH^-1 (-14411) + OH^0 (-14412)
+At time : 234 ns Reaction : H^0 (-10493) + e_aq^-1 (-8863) -> OH^-1 (-14413) + H_2^0 (-14414)
+At time : 234 ns Reaction : e_aq^-1 (-2893) + H3O^1 (-7755) -> H^0 (-14415)
+At time : 235 ns Reaction : H^0 (-14059) + H^0 (-14234) -> H_2^0 (-14416)
+At time : 235 ns Reaction : OH^-1 (-14046) + H3O^1 (-8571) -> No product
+At time : 235 ns Reaction : H3O^1 (-6619) + OH^-1 (-13190) -> No product
+At time : 235 ns Reaction : e_aq^-1 (-2914) + H^0 (-12787) -> OH^-1 (-14417) + H_2^0 (-14418)
+At time : 237 ns Reaction : OH^0 (-14103) + OH^0 (-8921) -> H2O2^0 (-14419)
+At time : 237 ns Reaction : H3O^1 (-10339) + OH^-1 (-13235) -> No product
+At time : 237 ns Reaction : e_aq^-1 (-359) + H2O2^0 (-11848) -> OH^-1 (-14420) + OH^0 (-14421)
+At time : 237 ns Reaction : OH^0 (-6018) + e_aq^-1 (-8455) -> OH^-1 (-14422)
+At time : 238 ns Reaction : H2O2^0 (-14375) + e_aq^-1 (-1966) -> OH^-1 (-14423) + OH^0 (-14424)
+At time : 238 ns Reaction : OH^0 (-14101) + OH^0 (-14086) -> H2O2^0 (-14425)
+At time : 238 ns Reaction : H3O^1 (-9905) + OH^-1 (-13905) -> No product
+At time : 239 ns Reaction : OH^-1 (-14190) + H3O^1 (-7465) -> No product
+At time : 239 ns Reaction : H3O^1 (-10249) + OH^-1 (-13894) -> No product
+At time : 241 ns Reaction : OH^0 (-14076) + H^0 (-9763) -> No product
+At time : 241 ns Reaction : H^0 (-14061) + OH^0 (-7994) -> No product
+At time : 242 ns Reaction : e_aq^-1 (-3955) + H^0 (-12516) -> OH^-1 (-14426) + H_2^0 (-14427)
+At time : 242 ns Reaction : H2O2^0 (-12357) + e_aq^-1 (-8587) -> OH^-1 (-14428) + OH^0 (-14429)
+At time : 243 ns Reaction : OH^0 (-9476) + OH^0 (-8549) -> H2O2^0 (-14430)
+At time : 243 ns Reaction : e_aq^-1 (-5388) + e_aq^-1 (-5387) -> OH^-1 (-14431) + OH^-1 (-14432) + H_2^0 (-14433)
+At time : 245 ns Reaction : OH^0 (-5733) + H^0 (-14398) -> No product
+At time : 246 ns Reaction : H3O^1 (-10751) + e_aq^-1 (-3972) -> H^0 (-14434)
+At time : 246 ns Reaction : OH^0 (-10549) + OH^0 (-8829) -> H2O2^0 (-14435)
+At time : 248 ns Reaction : e_aq^-1 (-2440) + H^0 (-14230) -> OH^-1 (-14436) + H_2^0 (-14437)
+At time : 250 ns Reaction : H3O^1 (-7777) + OH^-1 (-14394) -> No product
+At time : 250 ns Reaction : H^0 (-13222) + OH^0 (-10862) -> No product
+At time : 252 ns Reaction : OH^0 (-7720) + H^0 (-9012) -> No product
+At time : 253 ns Reaction : OH^-1 (-13775) + H3O^1 (-6063) -> No product
+At time : 254 ns Reaction : OH^-1 (-14256) + H3O^1 (-6625) -> No product
+At time : 254 ns Reaction : OH^0 (-13310) + H^0 (-14177) -> No product
+At time : 254 ns Reaction : e_aq^-1 (-2796) + H3O^1 (-8751) -> H^0 (-14438)
+At time : 255 ns Reaction : OH^-1 (-14285) + H3O^1 (-8121) -> No product
+At time : 255 ns Reaction : H2O2^0 (-11357) + e_aq^-1 (-4858) -> OH^-1 (-14439) + OH^0 (-14440)
+At time : 255 ns Reaction : H^0 (-9951) + H^0 (-9052) -> H_2^0 (-14441)
+At time : 256 ns Reaction : H3O^1 (-6277) + OH^-1 (-14057) -> No product
+At time : 257 ns Reaction : OH^0 (-10247) + H^0 (-14220) -> No product
+At time : 257 ns Reaction : e_aq^-1 (-4905) + H2O2^0 (-11843) -> OH^-1 (-14442) + OH^0 (-14443)
+At time : 257 ns Reaction : e_aq^-1 (-630) + H2O2^0 (-11537) -> OH^-1 (-14444) + OH^0 (-14445)
+At time : 258 ns Reaction : e_aq^-1 (-3630) + OH^0 (-7728) -> OH^-1 (-14446)
+At time : 260 ns Reaction : H3O^1 (-7113) + OH^-1 (-14379) -> No product
+At time : 260 ns Reaction : OH^-1 (-14276) + H3O^1 (-5903) -> No product
+At time : 260 ns Reaction : H3O^1 (-6137) + OH^-1 (-13788) -> No product
+At time : 262 ns Reaction : H3O^1 (-7247) + e_aq^-1 (-8629) -> H^0 (-14447)
+At time : 263 ns Reaction : e_aq^-1 (-2223) + H^0 (-14235) -> OH^-1 (-14448) + H_2^0 (-14449)
+At time : 263 ns Reaction : OH^0 (-5908) + H^0 (-13956) -> No product
+At time : 264 ns Reaction : e_aq^-1 (-5220) + H2O2^0 (-11892) -> OH^-1 (-14450) + OH^0 (-14451)
+At time : 265 ns Reaction : OH^-1 (-14348) + H3O^1 (-8073) -> No product
+At time : 265 ns Reaction : e_aq^-1 (-4972) + H^0 (-14104) -> OH^-1 (-14452) + H_2^0 (-14453)
+At time : 265 ns Reaction : H3O^1 (-7231) + OH^-1 (-12567) -> No product
+At time : 266 ns Reaction : OH^0 (-14393) + e_aq^-1 (-5176) -> OH^-1 (-14454)
+At time : 267 ns Reaction : OH^-1 (-12138) + H3O^1 (-7357) -> No product
+At time : 268 ns Reaction : OH^0 (-10974) + OH^0 (-11252) -> H2O2^0 (-14455)
+At time : 268 ns Reaction : H^0 (-10028) + e_aq^-1 (-4245) -> OH^-1 (-14456) + H_2^0 (-14457)
+At time : 269 ns Reaction : OH^0 (-14412) + e_aq^-1 (-4627) -> OH^-1 (-14458)
+At time : 269 ns Reaction : e_aq^-1 (-5404) + H3O^1 (-10335) -> H^0 (-14459)
+At time : 270 ns Reaction : H3O^1 (-9766) + OH^-1 (-14327) -> No product
+At time : 270 ns Reaction : H^0 (-13170) + e_aq^-1 (-8686) -> OH^-1 (-14460) + H_2^0 (-14461)
+At time : 270 ns Reaction : OH^0 (-6250) + OH^0 (-7682) -> H2O2^0 (-14462)
+At time : 271 ns Reaction : H^0 (-14459) + H^0 (-12130) -> H_2^0 (-14463)
+At time : 271 ns Reaction : H^0 (-13593) + H^0 (-14390) -> H_2^0 (-14464)
+At time : 271 ns Reaction : H3O^1 (-7541) + e_aq^-1 (-8812) -> H^0 (-14465)
+At time : 272 ns Reaction : e_aq^-1 (-4719) + H^0 (-13168) -> OH^-1 (-14466) + H_2^0 (-14467)
+At time : 273 ns Reaction : H^0 (-14330) + OH^0 (-8196) -> No product
+At time : 273 ns Reaction : H^0 (-13162) + OH^0 (-13599) -> No product
+At time : 273 ns Reaction : OH^0 (-11214) + OH^0 (-7702) -> H2O2^0 (-14468)
+At time : 274 ns Reaction : H2O2^0 (-11677) + e_aq^-1 (-8437) -> OH^-1 (-14469) + OH^0 (-14470)
+At time : 276 ns Reaction : OH^-1 (-14052) + H3O^1 (-7531) -> No product
+At time : 276 ns Reaction : OH^0 (-10608) + e_aq^-1 (-3510) -> OH^-1 (-14471)
+At time : 277 ns Reaction : e_aq^-1 (-4560) + e_aq^-1 (-4790) -> OH^-1 (-14472) + OH^-1 (-14473) + H_2^0 (-14474)
+At time : 278 ns Reaction : OH^0 (-13814) + OH^0 (-7336) -> H2O2^0 (-14475)
+At time : 278 ns Reaction : e_aq^-1 (-4104) + OH^0 (-9801) -> OH^-1 (-14476)
+At time : 279 ns Reaction : OH^-1 (-14382) + H3O^1 (-8481) -> No product
+At time : 279 ns Reaction : OH^-1 (-13946) + H3O^1 (-6203) -> No product
+At time : 279 ns Reaction : H^0 (-13622) + OH^0 (-6820) -> No product
+At time : 279 ns Reaction : OH^0 (-10458) + OH^0 (-7148) -> H2O2^0 (-14477)
+At time : 280 ns Reaction : H3O^1 (-9849) + OH^-1 (-14232) -> No product
+At time : 280 ns Reaction : H3O^1 (-7259) + OH^-1 (-14072) -> No product
+At time : 280 ns Reaction : H3O^1 (-9972) + e_aq^-1 (-4582) -> H^0 (-14478)
+At time : 280 ns Reaction : e_aq^-1 (-418) + e_aq^-1 (-5093) -> OH^-1 (-14479) + OH^-1 (-14480) + H_2^0 (-14481)
+At time : 283 ns Reaction : OH^-1 (-13983) + H3O^1 (-9750) -> No product
+At time : 285 ns Reaction : H3O^1 (-5957) + e_aq^-1 (-8566) -> H^0 (-14482)
+At time : 288 ns Reaction : e_aq^-1 (-2068) + e_aq^-1 (-8806) -> OH^-1 (-14483) + OH^-1 (-14484) + H_2^0 (-14485)
+At time : 290 ns Reaction : OH^0 (-10532) + H^0 (-14089) -> No product
+At time : 290 ns Reaction : OH^0 (-14065) + e_aq^-1 (-5653) -> OH^-1 (-14486)
+At time : 291 ns Reaction : OH^0 (-7514) + OH^0 (-8058) -> H2O2^0 (-14487)
+At time : 292 ns Reaction : e_aq^-1 (-2276) + H3O^1 (-6197) -> H^0 (-14488)
+At time : 293 ns Reaction : H3O^1 (-10797) + OH^-1 (-14342) -> No product
+At time : 295 ns Reaction : e_aq^-1 (-4278) + H3O^1 (-6943) -> H^0 (-14489)
+At time : 296 ns Reaction : OH^-1 (-14413) + H3O^1 (-7115) -> No product
+At time : 297 ns Reaction : H^0 (-13335) + OH^0 (-12875) -> No product
+At time : 298 ns Reaction : H3O^1 (-5969) + OH^-1 (-14317) -> No product
+At time : 298 ns Reaction : OH^0 (-6414) + OH^0 (-6456) -> H2O2^0 (-14490)
+At time : 300 ns Reaction : OH^0 (-14113) + OH^0 (-5787) -> H2O2^0 (-14491)
+At time : 300 ns Reaction : H3O^1 (-11011) + e_aq^-1 (-5393) -> H^0 (-14492)
+At time : 302 ns Reaction : e_aq^-1 (-774) + H2O2^0 (-13433) -> OH^-1 (-14493) + OH^0 (-14494)
+At time : 303 ns Reaction : H3O^1 (-6545) + OH^-1 (-12928) -> No product
+At time : 303 ns Reaction : e_aq^-1 (-5389) + H3O^1 (-7293) -> H^0 (-14495)
+At time : 304 ns Reaction : H2O2^0 (-12206) + e_aq^-1 (-8635) -> OH^-1 (-14496) + OH^0 (-14497)
+At time : 305 ns Reaction : OH^-1 (-14147) + H3O^1 (-6813) -> No product
+At time : 306 ns Reaction : OH^-1 (-14407) + H3O^1 (-8592) -> No product
+At time : 306 ns Reaction : OH^-1 (-13540) + H3O^1 (-6993) -> No product
+At time : 307 ns Reaction : e_aq^-1 (-5630) + OH^0 (-7378) -> OH^-1 (-14498)
+At time : 308 ns Reaction : e_aq^-1 (-2579) + H3O^1 (-6525) -> H^0 (-14499)
+At time : 310 ns Reaction : H3O^1 (-8613) + OH^-1 (-14442) -> No product
+At time : 310 ns Reaction : OH^-1 (-14320) + H3O^1 (-6307) -> No product
+At time : 310 ns Reaction : OH^0 (-9384) + OH^0 (-8489) -> H2O2^0 (-14500)
+At time : 316 ns Reaction : H^0 (-14499) + OH^0 (-7774) -> No product
+At time : 316 ns Reaction : OH^0 (-6248) + OH^0 (-9013) -> H2O2^0 (-14501)
+At time : 317 ns Reaction : OH^0 (-6354) + OH^0 (-7766) -> H2O2^0 (-14502)
+At time : 319 ns Reaction : e_aq^-1 (-4438) + H2O2^0 (-11766) -> OH^-1 (-14503) + OH^0 (-14504)
+At time : 320 ns Reaction : H^0 (-14409) + H^0 (-13094) -> H_2^0 (-14505)
+At time : 322 ns Reaction : H3O^1 (-11141) + OH^-1 (-13236) -> No product
+At time : 323 ns Reaction : OH^-1 (-12285) + H3O^1 (-6321) -> No product
+At time : 324 ns Reaction : e_aq^-1 (-1574) + H2O2^0 (-11774) -> OH^-1 (-14506) + OH^0 (-14507)
+At time : 326 ns Reaction : H3O^1 (-6951) + OH^-1 (-14439) -> No product
+At time : 327 ns Reaction : e_aq^-1 (-5612) + H3O^1 (-7397) -> H^0 (-14508)
+At time : 328 ns Reaction : H2O2^0 (-12528) + e_aq^-1 (-2747) -> OH^-1 (-14509) + OH^0 (-14510)
+At time : 330 ns Reaction : H^0 (-10338) + OH^0 (-9402) -> No product
+At time : 334 ns Reaction : H^0 (-11738) + OH^0 (-6252) -> No product
+At time : 336 ns Reaction : e_aq^-1 (-4839) + H2O2^0 (-11649) -> OH^-1 (-14511) + OH^0 (-14512)
+At time : 341 ns Reaction : e_aq^-1 (-4055) + OH^0 (-8786) -> OH^-1 (-14513)
+At time : 342 ns Reaction : OH^0 (-14165) + OH^0 (-7816) -> H2O2^0 (-14514)
+At time : 342 ns Reaction : H3O^1 (-8137) + OH^-1 (-13823) -> No product
+At time : 343 ns Reaction : OH^-1 (-14028) + H3O^1 (-8039) -> No product
+At time : 344 ns Reaction : H3O^1 (-7535) + OH^-1 (-14361) -> No product
+At time : 348 ns Reaction : OH^0 (-10814) + OH^0 (-13718) -> H2O2^0 (-14515)
+At time : 349 ns Reaction : e_aq^-1 (-775) + H^0 (-13755) -> OH^-1 (-14516) + H_2^0 (-14517)
+At time : 350 ns Reaction : H2O2^0 (-12815) + e_aq^-1 (-8731) -> OH^-1 (-14518) + OH^0 (-14519)
+At time : 351 ns Reaction : OH^-1 (-14509) + H3O^1 (-7841) -> No product
+At time : 351 ns Reaction : OH^0 (-10565) + OH^0 (-7886) -> H2O2^0 (-14520)
+At time : 351 ns Reaction : H3O^1 (-6713) + e_aq^-1 (-8344) -> H^0 (-14521)
+At time : 354 ns Reaction : OH^-1 (-14518) + H3O^1 (-5913) -> No product
+At time : 354 ns Reaction : OH^-1 (-14160) + H3O^1 (-7213) -> No product
+At time : 354 ns Reaction : e_aq^-1 (-5029) + H^0 (-12735) -> OH^-1 (-14522) + H_2^0 (-14523)
+At time : 355 ns Reaction : OH^-1 (-13550) + H3O^1 (-7685) -> No product
+At time : 357 ns Reaction : OH^-1 (-13709) + H3O^1 (-8233) -> No product
+At time : 360 ns Reaction : OH^-1 (-14302) + H3O^1 (-8856) -> No product
+At time : 360 ns Reaction : e_aq^-1 (-2700) + OH^0 (-7778) -> OH^-1 (-14524)
+At time : 362 ns Reaction : OH^-1 (-13714) + H3O^1 (-8922) -> No product
+At time : 364 ns Reaction : H2O2^0 (-12208) + e_aq^-1 (-1542) -> OH^-1 (-14525) + OH^0 (-14526)
+At time : 366 ns Reaction : e_aq^-1 (-2504) + H2O2^0 (-11476) -> OH^-1 (-14527) + OH^0 (-14528)
+At time : 366 ns Reaction : e_aq^-1 (-4106) + OH^0 (-8834) -> OH^-1 (-14529)
+At time : 367 ns Reaction : OH^-1 (-13909) + H3O^1 (-6603) -> No product
+At time : 367 ns Reaction : e_aq^-1 (-3718) + H2O2^0 (-13202) -> OH^-1 (-14530) + OH^0 (-14531)
+At time : 367 ns Reaction : e_aq^-1 (-2999) + H3O^1 (-7701) -> H^0 (-14532)
+At time : 369 ns Reaction : OH^0 (-8280) + OH^0 (-13608) -> H2O2^0 (-14533)
+At time : 369 ns Reaction : OH^0 (-13569) + H^0 (-12914) -> No product
+At time : 370 ns Reaction : OH^-1 (-14149) + H3O^1 (-5863) -> No product
+At time : 373 ns Reaction : e_aq^-1 (-3028) + H2O2^0 (-11813) -> OH^-1 (-14534) + OH^0 (-14535)
+At time : 375 ns Reaction : OH^-1 (-14359) + H3O^1 (-6521) -> No product
+At time : 375 ns Reaction : H3O^1 (-10757) + OH^-1 (-13326) -> No product
+At time : 379 ns Reaction : H^0 (-14401) + OH^0 (-7506) -> No product
+At time : 380 ns Reaction : OH^-1 (-14410) + H3O^1 (-6699) -> No product
+At time : 380 ns Reaction : e_aq^-1 (-3823) + H3O^1 (-6515) -> H^0 (-14536)
+At time : 384 ns Reaction : e_aq^-1 (-5231) + H2O2^0 (-11947) -> OH^-1 (-14537) + OH^0 (-14538)
+At time : 386 ns Reaction : OH^-1 (-14333) + H3O^1 (-8820) -> No product
+At time : 386 ns Reaction : OH^-1 (-14231) + H3O^1 (-7879) -> No product
+At time : 387 ns Reaction : H^0 (-13151) + OH^0 (-13750) -> No product
+At time : 388 ns Reaction : e_aq^-1 (-5636) + H3O^1 (-8209) -> H^0 (-14539)
+At time : 389 ns Reaction : e_aq^-1 (-4082) + H3O^1 (-6715) -> H^0 (-14540)
+At time : 390 ns Reaction : OH^-1 (-14516) + H3O^1 (-8045) -> No product
+At time : 390 ns Reaction : OH^-1 (-14402) + H3O^1 (-7865) -> No product
+At time : 392 ns Reaction : H3O^1 (-5829) + OH^-1 (-13934) -> No product
+At time : 392 ns Reaction : e_aq^-1 (-4794) + H3O^1 (-6969) -> H^0 (-14541)
+At time : 395 ns Reaction : e_aq^-1 (-5330) + H3O^1 (-7395) -> H^0 (-14542)
+At time : 396 ns Reaction : OH^0 (-14395) + OH^0 (-7840) -> H2O2^0 (-14543)
+At time : 397 ns Reaction : e_aq^-1 (-429) + OH^0 (-10510) -> OH^-1 (-14544)
+At time : 398 ns Reaction : H^0 (-10790) + H^0 (-10843) -> H_2^0 (-14545)
+At time : 399 ns Reaction : OH^-1 (-14503) + H3O^1 (-8081) -> No product
+At time : 399 ns Reaction : OH^-1 (-14385) + H3O^1 (-7811) -> No product
+At time : 399 ns Reaction : OH^0 (-10270) + OH^0 (-8333) -> H2O2^0 (-14546)
+At time : 400 ns Reaction : OH^0 (-6870) + H^0 (-13547) -> No product
+At time : 403 ns Reaction : OH^-1 (-13874) + H3O^1 (-7767) -> No product
+At time : 404 ns Reaction : H^0 (-14151) + OH^0 (-6696) -> No product
+At time : 405 ns Reaction : OH^0 (-5962) + OH^0 (-6598) -> H2O2^0 (-14547)
+At time : 407 ns Reaction : H2O2^0 (-11502) + e_aq^-1 (-2123) -> OH^-1 (-14548) + OH^0 (-14549)
+At time : 409 ns Reaction : H^0 (-12465) + OH^0 (-9939) -> No product
+At time : 411 ns Reaction : H^0 (-13962) + H^0 (-13819) -> H_2^0 (-14550)
+At time : 414 ns Reaction : e_aq^-1 (-4137) + H2O2^0 (-11584) -> OH^-1 (-14551) + OH^0 (-14552)
+At time : 416 ns Reaction : e_aq^-1 (-4085) + OH^0 (-14371) -> OH^-1 (-14553)
+At time : 416 ns Reaction : H3O^1 (-11118) + e_aq^-1 (-8503) -> H^0 (-14554)
+At time : 416 ns Reaction : OH^0 (-7098) + OH^0 (-7432) -> H2O2^0 (-14555)
+At time : 418 ns Reaction : OH^-1 (-13931) + H3O^1 (-8251) -> No product
+At time : 421 ns Reaction : e_aq^-1 (-5313) + H2O2^0 (-13915) -> OH^-1 (-14556) + OH^0 (-14557)
+At time : 421 ns Reaction : OH^-1 (-12276) + H3O^1 (-6351) -> No product
+At time : 422 ns Reaction : H3O^1 (-7739) + OH^-1 (-14335) -> No product
+At time : 422 ns Reaction : OH^0 (-8002) + OH^0 (-8705) -> H2O2^0 (-14558)
+At time : 425 ns Reaction : H3O^1 (-9864) + OH^-1 (-13658) -> No product
+At time : 426 ns Reaction : H3O^1 (-10648) + OH^-1 (-14075) -> No product
+At time : 430 ns Reaction : e_aq^-1 (-3607) + OH^0 (-8750) -> OH^-1 (-14559)
+At time : 431 ns Reaction : OH^-1 (-13161) + H3O^1 (-7419) -> No product
+At time : 432 ns Reaction : e_aq^-1 (-2159) + OH^0 (-13829) -> OH^-1 (-14560)
+At time : 433 ns Reaction : OH^0 (-11198) + OH^0 (-6834) -> H2O2^0 (-14561)
+At time : 439 ns Reaction : H3O^1 (-6447) + OH^-1 (-13449) -> No product
+At time : 439 ns Reaction : e_aq^-1 (-3678) + H3O^1 (-8427) -> H^0 (-14562)
+At time : 440 ns Reaction : H3O^1 (-8367) + OH^-1 (-14060) -> No product
+At time : 440 ns Reaction : OH^-1 (-13510) + H3O^1 (-6923) -> No product
+At time : 441 ns Reaction : H^0 (-10639) + OH^0 (-6410) -> No product
+At time : 442 ns Reaction : e_aq^-1 (-8395) + H2O2^0 (-12059) -> OH^-1 (-14563) + OH^0 (-14564)
+At time : 443 ns Reaction : OH^0 (-7768) + H^0 (-9008) -> No product
+At time : 451 ns Reaction : OH^0 (-10667) + OH^0 (-6352) -> H2O2^0 (-14565)
+At time : 453 ns Reaction : H3O^1 (-10705) + OH^-1 (-14287) -> No product
+At time : 453 ns Reaction : H^0 (-12486) + H^0 (-12954) -> H_2^0 (-14566)
+At time : 454 ns Reaction : OH^-1 (-14085) + H3O^1 (-7971) -> No product
+At time : 454 ns Reaction : OH^0 (-11329) + OH^0 (-8513) -> H2O2^0 (-14567)
+At time : 456 ns Reaction : H^0 (-12136) + OH^0 (-14389) -> No product
+At time : 458 ns Reaction : H^0 (-9224) + e_aq^-1 (-3539) -> OH^-1 (-14568) + H_2^0 (-14569)
+At time : 459 ns Reaction : e_aq^-1 (-3725) + H3O^1 (-7723) -> H^0 (-14570)
+At time : 465 ns Reaction : OH^0 (-13651) + e_aq^-1 (-1953) -> OH^-1 (-14571)
+At time : 465 ns Reaction : e_aq^-1 (-3013) + H^0 (-13371) -> OH^-1 (-14572) + H_2^0 (-14573)
+At time : 466 ns Reaction : OH^-1 (-13973) + H3O^1 (-7509) -> No product
+At time : 467 ns Reaction : e_aq^-1 (-3562) + H^0 (-14562) -> OH^-1 (-14574) + H_2^0 (-14575)
+At time : 468 ns Reaction : OH^0 (-11077) + OH^0 (-10350) -> H2O2^0 (-14576)
+At time : 469 ns Reaction : e_aq^-1 (-2713) + H^0 (-13943) -> OH^-1 (-14577) + H_2^0 (-14578)
+At time : 469 ns Reaction : H3O^1 (-10970) + e_aq^-1 (-766) -> H^0 (-14579)
+At time : 471 ns Reaction : OH^0 (-14247) + e_aq^-1 (-8725) -> OH^-1 (-14580)
+At time : 478 ns Reaction : OH^0 (-14214) + e_aq^-1 (-8641) -> OH^-1 (-14581)
+At time : 480 ns Reaction : e_aq^-1 (-2941) + OH^0 (-6334) -> OH^-1 (-14582)
+At time : 481 ns Reaction : OH^0 (-14538) + H^0 (-13919) -> No product
+At time : 484 ns Reaction : OH^0 (-13979) + OH^0 (-14034) -> H2O2^0 (-14583)
+At time : 485 ns Reaction : H3O^1 (-10663) + OH^-1 (-14388) -> No product
+At time : 485 ns Reaction : H3O^1 (-6489) + OH^-1 (-13647) -> No product
+At time : 486 ns Reaction : OH^0 (-9688) + e_aq^-1 (-3640) -> OH^-1 (-14584)
+At time : 491 ns Reaction : H^0 (-13920) + H^0 (-12944) -> H_2^0 (-14585)
+At time : 492 ns Reaction : H^0 (-13370) + OH^0 (-7030) -> No product
+At time : 493 ns Reaction : e_aq^-1 (-5563) + H2O2^0 (-11542) -> OH^-1 (-14586) + OH^0 (-14587)
+At time : 494 ns Reaction : e_aq^-1 (-230) + H^0 (-12612) -> OH^-1 (-14588) + H_2^0 (-14589)
+At time : 496 ns Reaction : H3O^1 (-10127) + OH^-1 (-14318) -> No product
+At time : 497 ns Reaction : OH^-1 (-13387) + H3O^1 (-6739) -> No product
+At time : 499 ns Reaction : e_aq^-1 (-2375) + H2O2^0 (-12685) -> OH^-1 (-14590) + OH^0 (-14591)
+At time : 499 ns Reaction : OH^0 (-10653) + OH^0 (-9556) -> H2O2^0 (-14592)
+At time : 501 ns Reaction : e_aq^-1 (-4342) + H^0 (-11842) -> OH^-1 (-14593) + H_2^0 (-14594)
+At time : 502 ns Reaction : OH^-1 (-14403) + H3O^1 (-6587) -> No product
+At time : 504 ns Reaction : OH^0 (-13897) + OH^0 (-8486) -> H2O2^0 (-14595)
+At time : 505 ns Reaction : e_aq^-1 (-2354) + OH^0 (-9747) -> OH^-1 (-14596)
+At time : 506 ns Reaction : e_aq^-1 (-5012) + OH^0 (-7976) -> OH^-1 (-14597)
+At time : 507 ns Reaction : H3O^1 (-11151) + OH^-1 (-13398) -> No product
+At time : 512 ns Reaction : OH^-1 (-12389) + H3O^1 (-6267) -> No product
+At time : 514 ns Reaction : OH^0 (-14451) + OH^0 (-9087) -> H2O2^0 (-14598)
+At time : 519 ns Reaction : OH^0 (-13494) + OH^0 (-7240) -> H2O2^0 (-14599)
+At time : 520 ns Reaction : OH^-1 (-14493) + H3O^1 (-8640) -> No product
+At time : 520 ns Reaction : OH^0 (-8274) + OH^0 (-8951) -> H2O2^0 (-14600)
+At time : 522 ns Reaction : H2O2^0 (-12371) + e_aq^-1 (-8752) -> OH^-1 (-14601) + OH^0 (-14602)
+At time : 522 ns Reaction : e_aq^-1 (-5247) + H3O^1 (-6071) -> H^0 (-14603)
+At time : 529 ns Reaction : e_aq^-1 (-2216) + H3O^1 (-7827) -> H^0 (-14604)
+At time : 529 ns Reaction : e_aq^-1 (-5424) + H3O^1 (-7191) -> H^0 (-14605)
+At time : 532 ns Reaction : e_aq^-1 (-4565) + H3O^1 (-6937) -> H^0 (-14606)
+At time : 535 ns Reaction : OH^0 (-11245) + OH^0 (-8050) -> H2O2^0 (-14607)
+At time : 536 ns Reaction : OH^-1 (-14537) + H3O^1 (-8337) -> No product
+At time : 536 ns Reaction : e_aq^-1 (-2421) + OH^0 (-7846) -> OH^-1 (-14608)
+At time : 538 ns Reaction : OH^-1 (-14553) + H3O^1 (-6021) -> No product
+At time : 539 ns Reaction : OH^0 (-13268) + H^0 (-12013) -> No product
+At time : 539 ns Reaction : e_aq^-1 (-4467) + H3O^1 (-7519) -> H^0 (-14609)
+At time : 540 ns Reaction : OH^-1 (-13789) + H3O^1 (-8055) -> No product
+At time : 547 ns Reaction : OH^-1 (-13361) + H3O^1 (-7303) -> No product
+At time : 550 ns Reaction : OH^-1 (-11635) + H3O^1 (-6233) -> No product
+At time : 550 ns Reaction : e_aq^-1 (-3900) + H3O^1 (-6609) -> H^0 (-14610)
+At time : 557 ns Reaction : OH^0 (-6560) + OH^0 (-8780) -> H2O2^0 (-14611)
+At time : 557 ns Reaction : e_aq^-1 (-4439) + OH^0 (-6796) -> OH^-1 (-14612)
+At time : 558 ns Reaction : OH^0 (-10322) + OH^0 (-14111) -> H2O2^0 (-14613)
+At time : 558 ns Reaction : e_aq^-1 (-3509) + OH^0 (-8740) -> OH^-1 (-14614)
+At time : 564 ns Reaction : H3O^1 (-9575) + e_aq^-1 (-8428) -> H^0 (-14615)
+At time : 565 ns Reaction : OH^-1 (-13889) + H3O^1 (-7517) -> No product
+At time : 567 ns Reaction : e_aq^-1 (-4921) + H3O^1 (-8466) -> H^0 (-14616)
+At time : 570 ns Reaction : H3O^1 (-9729) + OH^-1 (-14436) -> No product
+At time : 575 ns Reaction : H2O2^0 (-12270) + e_aq^-1 (-8719) -> OH^-1 (-14617) + OH^0 (-14618)
+At time : 581 ns Reaction : H^0 (-14154) + OH^0 (-9623) -> No product
+At time : 581 ns Reaction : OH^0 (-8366) + OH^0 (-8813) -> H2O2^0 (-14619)
+At time : 582 ns Reaction : OH^-1 (-14125) + H3O^1 (-5907) -> No product
+At time : 582 ns Reaction : OH^0 (-6882) + e_aq^-1 (-8389) -> OH^-1 (-14620)
+At time : 583 ns Reaction : e_aq^-1 (-5120) + H2O2^0 (-12003) -> OH^-1 (-14621) + OH^0 (-14622)
+At time : 586 ns Reaction : e_aq^-1 (-4952) + H^0 (-13774) -> OH^-1 (-14623) + H_2^0 (-14624)
+At time : 588 ns Reaction : e_aq^-1 (-4286) + H2O2^0 (-14515) -> OH^-1 (-14625) + OH^0 (-14626)
+At time : 588 ns Reaction : e_aq^-1 (-2728) + H^0 (-13801) -> OH^-1 (-14627) + H_2^0 (-14628)
+At time : 588 ns Reaction : e_aq^-1 (-5162) + H3O^1 (-8301) -> H^0 (-14629)
+At time : 590 ns Reaction : OH^0 (-14552) + OH^0 (-10704) -> H2O2^0 (-14630)
+At time : 592 ns Reaction : H3O^1 (-6763) + OH^-1 (-14120) -> No product
+At time : 594 ns Reaction : H3O^1 (-5971) + OH^-1 (-14590) -> No product
+At time : 601 ns Reaction : H^0 (-10183) + OH^0 (-8040) -> No product
+At time : 605 ns Reaction : OH^0 (-13904) + OH^0 (-14063) -> H2O2^0 (-14631)
+At time : 609 ns Reaction : OH^-1 (-14511) + H3O^1 (-8047) -> No product
+At time : 611 ns Reaction : e_aq^-1 (-2177) + H3O^1 (-7885) -> H^0 (-14632)
+At time : 611 ns Reaction : e_aq^-1 (-5699) + e_aq^-1 (-5579) -> OH^-1 (-14633) + OH^-1 (-14634) + H_2^0 (-14635)
+At time : 616 ns Reaction : H3O^1 (-8245) + OH^-1 (-14486) -> No product
+At time : 617 ns Reaction : e_aq^-1 (-4882) + e_aq^-1 (-8521) -> OH^-1 (-14636) + OH^-1 (-14637) + H_2^0 (-14638)
+At time : 620 ns Reaction : e_aq^-1 (-4932) + H2O2^0 (-11435) -> OH^-1 (-14639) + OH^0 (-14640)
+At time : 622 ns Reaction : OH^-1 (-14340) + H3O^1 (-6941) -> No product
+At time : 623 ns Reaction : H3O^1 (-7263) + OH^-1 (-12598) -> No product
+At time : 625 ns Reaction : e_aq^-1 (-3557) + OH^0 (-6338) -> OH^-1 (-14641)
+At time : 626 ns Reaction : OH^0 (-14043) + OH^0 (-7970) -> H2O2^0 (-14642)
+At time : 631 ns Reaction : e_aq^-1 (-656) + e_aq^-1 (-4804) -> OH^-1 (-14643) + OH^-1 (-14644) + H_2^0 (-14645)
+At time : 635 ns Reaction : H3O^1 (-10988) + OH^-1 (-13841) -> No product
+At time : 644 ns Reaction : OH^-1 (-12725) + H3O^1 (-5839) -> No product
+At time : 655 ns Reaction : OH^0 (-6030) + OH^0 (-14251) -> H2O2^0 (-14646)
+At time : 657 ns Reaction : H^0 (-10022) + OH^0 (-6158) -> No product
+At time : 662 ns Reaction : OH^-1 (-14170) + H3O^1 (-6613) -> No product
+At time : 666 ns Reaction : OH^-1 (-14083) + H3O^1 (-7999) -> No product
+At time : 668.36 ns Reaction : H3O^1 (-10260) + OH^-1 (-14244) -> No product
+At time : 668.36 ns Reaction : OH^0 (-6756) + H^0 (-13702) -> No product
+At time : 669.36 ns Reaction : H3O^1 (-6685) + OH^-1 (-13650) -> No product
+At time : 670.36 ns Reaction : e_aq^-1 (-3628) + OH^0 (-6402) -> OH^-1 (-14647)
+At time : 673.36 ns Reaction : e_aq^-1 (-2424) + H2O2^0 (-14514) -> OH^-1 (-14648) + OH^0 (-14649)
+At time : 675.36 ns Reaction : OH^-1 (-14353) + H3O^1 (-7145) -> No product
+At time : 682.36 ns Reaction : OH^-1 (-14355) + H3O^1 (-7487) -> No product
+At time : 688.99 ns Reaction : H3O^1 (-10089) + OH^-1 (-14223) -> No product
+At time : 690.99 ns Reaction : H3O^1 (-6111) + OH^-1 (-14581) -> No product
+At time : 692.99 ns Reaction : e_aq^-1 (-457) + H2O2^0 (-14555) -> OH^-1 (-14650) + OH^0 (-14651)
+At time : 706.4 ns Reaction : OH^0 (-10577) + OH^0 (-14549) -> H2O2^0 (-14652)
+At time : 714.4 ns Reaction : H3O^1 (-9948) + OH^-1 (-14422) -> No product
+At time : 717.4 ns Reaction : OH^-1 (-13553) + H3O^1 (-6541) -> No product
+At time : 725.4 ns Reaction : H3O^1 (-5997) + OH^-1 (-14560) -> No product
+At time : 725.4 ns Reaction : H2O2^0 (-12354) + e_aq^-1 (-3687) -> OH^-1 (-14653) + OH^0 (-14654)
+At time : 726.04 ns Reaction : OH^-1 (-14627) + H3O^1 (-5935) -> No product
+At time : 728.04 ns Reaction : OH^0 (-7614) + e_aq^-1 (-8839) -> OH^-1 (-14655)
+At time : 729.04 ns Reaction : e_aq^-1 (-3966) + H3O^1 (-5827) -> H^0 (-14656)
+At time : 730.04 ns Reaction : H3O^1 (-5953) + OH^-1 (-14524) -> No product
+At time : 734.04 ns Reaction : H^0 (-10625) + OH^0 (-6222) -> No product
+At time : 735.04 ns Reaction : H3O^1 (-10156) + e_aq^-1 (-4799) -> H^0 (-14657)
+At time : 739.04 ns Reaction : OH^-1 (-13611) + H3O^1 (-7461) -> No product
+At time : 743.04 ns Reaction : H3O^1 (-6103) + OH^-1 (-13675) -> No product
+At time : 751.04 ns Reaction : OH^-1 (-13413) + H3O^1 (-6139) -> No product
+At time : 751.04 ns Reaction : OH^0 (-9753) + H^0 (-13256) -> No product
+At time : 754.04 ns Reaction : H^0 (-10248) + OH^0 (-14587) -> No product
+At time : 754.04 ns Reaction : OH^-1 (-14095) + H3O^1 (-7085) -> No product
+At time : 757.04 ns Reaction : e_aq^-1 (-2547) + H3O^1 (-7891) -> H^0 (-14658)
+At time : 768.09 ns Reaction : OH^-1 (-14368) + H3O^1 (-7537) -> No product
+At time : 772.09 ns Reaction : H3O^1 (-6551) + OH^-1 (-14133) -> No product
+At time : 774.09 ns Reaction : H^0 (-13125) + e_aq^-1 (-2207) -> OH^-1 (-14659) + H_2^0 (-14660)
+At time : 781.09 ns Reaction : e_aq^-1 (-5011) + OH^0 (-8678) -> OH^-1 (-14661)
+At time : 785.09 ns Reaction : H^0 (-14041) + OH^0 (-13959) -> No product
+At time : 786.09 ns Reaction : e_aq^-1 (-4333) + H^0 (-10056) -> OH^-1 (-14662) + H_2^0 (-14663)
+At time : 788.09 ns Reaction : e_aq^-1 (-3141) + OH^0 (-7666) -> OH^-1 (-14664)
+At time : 791.09 ns Reaction : H2O2^0 (-11620) + e_aq^-1 (-8848) -> OH^-1 (-14665) + OH^0 (-14666)
+At time : 792.09 ns Reaction : OH^0 (-6406) + OH^0 (-7746) -> H2O2^0 (-14667)
+At time : 802.09 ns Reaction : OH^-1 (-13653) + H3O^1 (-7119) -> No product
+At time : 809.09 ns Reaction : e_aq^-1 (-4616) + H2O2^0 (-11375) -> OH^-1 (-14668) + OH^0 (-14669)
+At time : 816.09 ns Reaction : e_aq^-1 (-4432) + OH^0 (-13659) -> OH^-1 (-14670)
+At time : 816.09 ns Reaction : H2O2^0 (-12143) + e_aq^-1 (-5367) -> OH^-1 (-14671) + OH^0 (-14672)
+At time : 820.09 ns Reaction : e_aq^-1 (-1509) + H2O2^0 (-13532) -> OH^-1 (-14673) + OH^0 (-14674)
+At time : 830.09 ns Reaction : OH^-1 (-14641) + H3O^1 (-7729) -> No product
+At time : 831.09 ns Reaction : OH^0 (-14107) + e_aq^-1 (-2278) -> OH^-1 (-14675)
+At time : 837.09 ns Reaction : OH^-1 (-14396) + H3O^1 (-8370) -> No product
+At time : 837.09 ns Reaction : H^0 (-14105) + H^0 (-12323) -> H_2^0 (-14676)
+At time : 851.09 ns Reaction : H^0 (-12801) + OH^0 (-6844) -> No product
+At time : 858.09 ns Reaction : e_aq^-1 (-5036) + H2O2^0 (-11778) -> OH^-1 (-14677) + OH^0 (-14678)
+At time : 858.09 ns Reaction : e_aq^-1 (-3679) + H3O^1 (-6389) -> H^0 (-14679)
+At time : 859.09 ns Reaction : OH^-1 (-14168) + H3O^1 (-7437) -> No product
+At time : 859.09 ns Reaction : H^0 (-9233) + OH^0 (-14039) -> No product
+At time : 863.09 ns Reaction : OH^-1 (-14377) + H3O^1 (-5933) -> No product
+At time : 866.09 ns Reaction : OH^0 (-6916) + OH^0 (-14025) -> H2O2^0 (-14680)
+At time : 869.09 ns Reaction : OH^0 (-13579) + H^0 (-9574) -> No product
+At time : 870.09 ns Reaction : OH^-1 (-14226) + H3O^1 (-8382) -> No product
+At time : 871.09 ns Reaction : OH^-1 (-14446) + H3O^1 (-7743) -> No product
+At time : 871.09 ns Reaction : H^0 (-12526) + e_aq^-1 (-2080) -> OH^-1 (-14681) + H_2^0 (-14682)
+At time : 872.09 ns Reaction : H^0 (-14358) + OH^0 (-14245) -> No product
+At time : 874.09 ns Reaction : H^0 (-9179) + H^0 (-10606) -> H_2^0 (-14683)
+At time : 877.09 ns Reaction : OH^0 (-13779) + OH^0 (-14504) -> H2O2^0 (-14684)
+At time : 879.09 ns Reaction : e_aq^-1 (-4676) + H3O^1 (-7363) -> H^0 (-14685)
+At time : 880.09 ns Reaction : OH^0 (-7414) + OH^0 (-8504) -> H2O2^0 (-14686)
+At time : 883.09 ns Reaction : e_aq^-1 (-16) + H2O2^0 (-12075) -> OH^-1 (-14687) + OH^0 (-14688)
+At time : 889.09 ns Reaction : OH^-1 (-13660) + H3O^1 (-7167) -> No product
+At time : 891.09 ns Reaction : OH^0 (-11025) + OH^0 (-11168) -> H2O2^0 (-14689)
+At time : 896.09 ns Reaction : OH^0 (-10223) + H^0 (-14616) -> No product
+At time : 904.09 ns Reaction : e_aq^-1 (-1457) + H3O^1 (-8514) -> H^0 (-14690)
+At time : 916.09 ns Reaction : H^0 (-9209) + e_aq^-1 (-3930) -> OH^-1 (-14691) + H_2^0 (-14692)
+At time : 918.09 ns Reaction : H2O2^0 (-12251) + e_aq^-1 (-1749) -> OH^-1 (-14693) + OH^0 (-14694)
+At time : 919.09 ns Reaction : H3O^1 (-7673) + OH^-1 (-14584) -> No product
+At time : 921.09 ns Reaction : OH^0 (-10537) + e_aq^-1 (-8875) -> OH^-1 (-14695)
+At time : 922.09 ns Reaction : H3O^1 (-6611) + OH^-1 (-14290) -> No product
+At time : 935.09 ns Reaction : H3O^1 (-7867) + OH^-1 (-14525) -> No product
+At time : 936.09 ns Reaction : OH^-1 (-14145) + H3O^1 (-7081) -> No product
+At time : 938.09 ns Reaction : H3O^1 (-9764) + OH^-1 (-13004) -> No product
+At time : 943.09 ns Reaction : e_aq^-1 (-4602) + H3O^1 (-6753) -> H^0 (-14696)
+At time : 951.09 ns Reaction : OH^0 (-14219) + e_aq^-1 (-8608) -> OH^-1 (-14697)
+At time : 965.09 ns Reaction : H3O^1 (-7341) + OH^-1 (-14444) -> No product
+At time : 970.09 ns Reaction : H3O^1 (-5901) + OH^-1 (-14653) -> No product
+At time : 970.09 ns Reaction : H^0 (-14248) + H^0 (-14632) -> H_2^0 (-14698)
+At time : 982.09 ns Reaction : OH^0 (-10394) + OH^0 (-11266) -> H2O2^0 (-14699)
*** G4Scheduler ends at time : 1 us
___________________________________
diff --git a/examples/extended/medical/dna/chem2/src/PhysicsList.cc b/examples/extended/medical/dna/chem2/src/PhysicsList.cc
index 439b244c706..30e1febf306 100644
--- a/examples/extended/medical/dna/chem2/src/PhysicsList.cc
+++ b/examples/extended/medical/dna/chem2/src/PhysicsList.cc
@@ -99,6 +99,7 @@ void PhysicsList::ConstructParticle()
void PhysicsList::ConstructProcess()
{
+ AddTransportation();
if(fEmDNAPhysicsList) { fEmDNAPhysicsList->ConstructProcess(); }
if(fEmDNAChemistryList) { fEmDNAChemistryList->ConstructProcess(); }
if(fEmDNAChemistryList1) { fEmDNAChemistryList1->ConstructProcess(); }
diff --git a/examples/extended/medical/dna/chem3/History b/examples/extended/medical/dna/chem3/History
index dde05a9af66..7a89c0462ff 100644
--- a/examples/extended/medical/dna/chem3/History
+++ b/examples/extended/medical/dna/chem3/History
@@ -14,6 +14,10 @@ committal in the CVS repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+08 Feb 2019 - VI, WGS, SI tag chem3-V10-04-02
+-----------------------------------------------------
+- Fixed PhysicsList
+
27.11.2018 V. Ivanchenko tag chem3-V10-04-01
-----------------------------------------------------
- Fixed nightly problem in PhysicsList
diff --git a/examples/extended/medical/dna/chem3/chem3.out b/examples/extended/medical/dna/chem3/chem3.out
index 20237c494eb..e399bb100db 100644
--- a/examples/extended/medical/dna/chem3/chem3.out
+++ b/examples/extended/medical/dna/chem3/chem3.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -26,12 +22,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -65,166 +59,166 @@ Some /vis commands (optionally) take a string to specify colour.
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 100 TeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreConversion : Emin= 0 eV Emax= 80 GeV
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ LivermoreConversion : Emin= 0 eV Emax= 80 GeV
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-e-_G4DNAElectronSolvation: for e- SubType= 58 BuildTable= 0
+e-_G4DNAElectronSolvation: for e- SubType=58 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAOneStepThermalizationModel_Meesungnoen2002 : Emin= 0 eV Emax= 7.4 eV
+DNAOneStepThermalizationModel_Meesungnoen2002 : Emin= 0 eV Emax= 7.4 eV
-e-_G4DNAElastic: for e- SubType= 51 BuildTable= 0
+e-_G4DNAElastic: for e- SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
+DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAExcitation: for e- SubType= 52 BuildTable= 0
+e-_G4DNAExcitation: for e- SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
+DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAIonisation: for e- SubType= 53 BuildTable= 0
+e-_G4DNAIonisation: for e- SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornIonisationModel : Emin= 0 eV Emax= 1 MeV deltaBorn FluoActive
+DNABornIonisationModel : Emin= 0 eV Emax= 1 MeV deltaBorn Fluo
-e-_G4DNAVibExcitation: for e- SubType= 54 BuildTable= 0
+e-_G4DNAVibExcitation: for e- SubType=54 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
+DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
-e-_G4DNAAttachment: for e- SubType= 55 BuildTable= 0
+e-_G4DNAAttachment: for e- SubType=55 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
+DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-proton_G4DNAElastic: for proton SubType= 51 BuildTable= 0
+proton_G4DNAElastic: for proton SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-proton_G4DNAExcitation: for proton SubType= 52 BuildTable= 0
+proton_G4DNAExcitation: for proton SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
-proton_G4DNAIonisation: for proton SubType= 53 BuildTable= 0
+proton_G4DNAIonisation: for proton SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd FluoActive
-DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd Fluo
+DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn Fluo
-proton_G4DNAChargeDecrease: for proton SubType= 56 BuildTable= 0
+proton_G4DNAChargeDecrease: for proton SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
-GenericIon_G4DNAIonisation: for GenericIon SubType= 53 BuildTable= 0
+GenericIon_G4DNAIonisation: for GenericIon SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd Fluo
-alpha_G4DNAElastic: for alpha SubType= 51 BuildTable= 0
+alpha_G4DNAElastic: for alpha SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha_G4DNAExcitation: for alpha SubType= 52 BuildTable= 0
+alpha_G4DNAExcitation: for alpha SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha_G4DNAIonisation: for alpha SubType= 53 BuildTable= 0
+alpha_G4DNAIonisation: for alpha SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-alpha_G4DNAChargeDecrease: for alpha SubType= 56 BuildTable= 0
+alpha_G4DNAChargeDecrease: for alpha SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAElastic: for alpha+ SubType= 51 BuildTable= 0
+alpha+_G4DNAElastic: for alpha+ SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha+_G4DNAExcitation: for alpha+ SubType= 52 BuildTable= 0
+alpha+_G4DNAExcitation: for alpha+ SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAIonisation: for alpha+ SubType= 53 BuildTable= 0
+alpha+_G4DNAIonisation: for alpha+ SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-alpha+_G4DNAChargeDecrease: for alpha+ SubType= 56 BuildTable= 0
+alpha+_G4DNAChargeDecrease: for alpha+ SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAChargeIncrease: for alpha+ SubType= 57 BuildTable= 0
+alpha+_G4DNAChargeIncrease: for alpha+ SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAElastic: for helium SubType= 51 BuildTable= 0
+helium_G4DNAElastic: for helium SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-helium_G4DNAExcitation: for helium SubType= 52 BuildTable= 0
+helium_G4DNAExcitation: for helium SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAIonisation: for helium SubType= 53 BuildTable= 0
+helium_G4DNAIonisation: for helium SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-helium_G4DNAChargeIncrease: for helium SubType= 57 BuildTable= 0
+helium_G4DNAChargeIncrease: for helium SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-hydrogen_G4DNAElastic: for hydrogen SubType= 51 BuildTable= 0
+hydrogen_G4DNAElastic: for hydrogen SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-hydrogen_G4DNAExcitation: for hydrogen SubType= 52 BuildTable= 0
+hydrogen_G4DNAExcitation: for hydrogen SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-hydrogen_G4DNAIonisation: for hydrogen SubType= 53 BuildTable= 0
+hydrogen_G4DNAIonisation: for hydrogen SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd Fluo
-hydrogen_G4DNAChargeIncrease: for hydrogen SubType= 57 BuildTable= 0
+hydrogen_G4DNAChargeIncrease: for hydrogen SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
End of tracking primary particle, its final energy is :0.025 eV
Physics stage ends
Number of chemical species involved in reactions = 6
@@ -250,48 +244,48 @@ H^0 + H^0 -> H_2^0 1.2e+10 0.2265
------------------------------------------------------------------------------------------------------------------------------
DNAMolecularStepByStepModel will be used
*** G4Scheduler starts processing
-At time : 1 ps Reaction : OH^0 (-208) + OH^0 (-124) -> H2O2^0 (-212)
-At time : 1 ps Reaction : OH^0 (-206) + OH^0 (-126) -> H2O2^0 (-213)
-At time : 1 ps Reaction : OH^0 (-134) + OH^0 (-204) -> H2O2^0 (-214)
-At time : 1 ps Reaction : OH^0 (-202) + OH^0 (-146) -> H2O2^0 (-215)
-At time : 1 ps Reaction : OH^0 (-162) + OH^0 (-194) -> H2O2^0 (-216)
-At time : 1 ps Reaction : OH^0 (-156) + OH^0 (-188) -> H2O2^0 (-217)
-At time : 3.6638 ps Reaction : OH^0 (-173) + OH^0 (-185) -> H2O2^0 (-218)
-At time : 8.7064 ps Reaction : H^0 (-203) + OH^0 (-141) -> No product
-At time : 17.364 ps Reaction : OH^0 (-169) + OH^0 (-183) -> H2O2^0 (-219)
-At time : 21.364 ps Reaction : OH^0 (-145) + OH^0 (-165) -> H2O2^0 (-220)
-At time : 25.364 ps Reaction : H^0 (-209) + H^0 (-127) -> H_2^0 (-221)
-At time : 32.364 ps Reaction : OH^0 (-112) + OH^0 (-166) -> H2O2^0 (-222)
-At time : 32.364 ps Reaction : OH^0 (-118) + OH^0 (-149) -> H2O2^0 (-223)
-At time : 34.364 ps Reaction : OH^0 (-121) + H^0 (-147) -> No product
-At time : 48.11 ps Reaction : H^0 (-163) + OH^0 (-181) -> No product
-At time : 54.301 ps Reaction : OH^0 (-211) + OH^0 (-197) -> H2O2^0 (-224)
-At time : 77.835 ps Reaction : H^0 (-135) + OH^0 (-193) -> No product
-At time : 143.4 ps Reaction : H^0 (-125) + OH^0 (-201) -> No product
-At time : 179.48 ps Reaction : OH^0 (-179) + OH^0 (-187) -> H2O2^0 (-225)
-At time : 210.88 ps Reaction : H^0 (-205) + OH^0 (-191) -> No product
-At time : 590.21 ps Reaction : OH^0 (-131) + OH^0 (-143) -> H2O2^0 (-226)
-At time : 758.31 ps Reaction : OH^0 (-109) + H^0 (-157) -> No product
-At time : 1.1185 ns Reaction : e_aq^-1 (-70) + H^0 (-195) -> OH^-1 (-227) + H_2^0 (-228)
-At time : 1.3485 ns Reaction : H3O^1 (-152) + OH^-1 (-227) -> No product
-At time : 1.3485 ns Reaction : H3O^1 (-210) + e_aq^-1 (-88) -> H^0 (-229)
-At time : 1.4285 ns Reaction : H3O^1 (-130) + e_aq^-1 (-77) -> H^0 (-230)
-At time : 1.5909 ns Reaction : H3O^1 (-132) + e_aq^-1 (-55) -> H^0 (-231)
-At time : 1.763 ns Reaction : OH^0 (-139) + OH^0 (-137) -> H2O2^0 (-232)
-At time : 2.3519 ns Reaction : e_aq^-1 (-91) + H^0 (-167) -> OH^-1 (-233) + H_2^0 (-234)
-At time : 2.5493 ns Reaction : H2O2^0 (-216) + e_aq^-1 (-53) -> OH^-1 (-235) + OH^0 (-236)
-At time : 3.0157 ns Reaction : H3O^1 (-110) + OH^-1 (-235) -> No product
-At time : 3.0495 ns Reaction : OH^0 (-155) + OH^0 (-159) -> H2O2^0 (-237)
-At time : 3.0795 ns Reaction : OH^0 (-236) + OH^0 (-199) -> H2O2^0 (-238)
-At time : 7.1465 ns Reaction : e_aq^-1 (-34) + H2O2^0 (-232) -> OH^-1 (-239) + OH^0 (-240)
-At time : 9.1868 ns Reaction : H3O^1 (-196) + OH^-1 (-239) -> No product
-At time : 9.5198 ns Reaction : e_aq^-1 (-93) + H3O^1 (-154) -> H^0 (-241)
-At time : 16.341 ns Reaction : H3O^1 (-142) + e_aq^-1 (-114) -> H^0 (-242)
-At time : 19.641 ns Reaction : e_aq^-1 (-64) + OH^0 (-153) -> OH^-1 (-243)
-At time : 24.556 ns Reaction : e_aq^-1 (-65) + H2O2^0 (-224) -> OH^-1 (-244) + OH^0 (-245)
-At time : 39.924 ns Reaction : H3O^1 (-144) + OH^-1 (-244) -> No product
-At time : 47.85 ns Reaction : H^0 (-207) + OH^0 (-151) -> No product
-At time : 64.971 ns Reaction : e_aq^-1 (-45) + OH^0 (-161) -> OH^-1 (-246)
+At time : 28.509 ps Reaction : OH^0 (-209) + OH^0 (-144) -> H2O2^0 (-217)
+At time : 73.295 ps Reaction : e_aq^-1 (-60) + OH^0 (-171) -> OH^-1 (-218)
+At time : 158.3 ps Reaction : OH^0 (-174) + OH^0 (-179) -> H2O2^0 (-219)
+At time : 201.88 ps Reaction : e_aq^-1 (-39) + OH^0 (-205) -> OH^-1 (-220)
+At time : 232.58 ps Reaction : OH^0 (-176) + e_aq^-1 (-99) -> OH^-1 (-221)
+At time : 235.58 ps Reaction : OH^0 (-198) + e_aq^-1 (-68) -> OH^-1 (-222)
+At time : 241.58 ps Reaction : OH^0 (-110) + OH^0 (-136) -> H2O2^0 (-223)
+At time : 247.58 ps Reaction : OH^0 (-191) + H^0 (-177) -> No product
+At time : 511.61 ps Reaction : H^0 (-199) + H^0 (-210) -> H_2^0 (-224)
+At time : 681.64 ps Reaction : OH^-1 (-220) + H3O^1 (-119) -> No product
+At time : 888.46 ps Reaction : OH^0 (-180) + OH^0 (-165) -> H2O2^0 (-225)
+At time : 927.58 ps Reaction : OH^0 (-185) + OH^0 (-118) -> H2O2^0 (-226)
+At time : 1.0713 ns Reaction : OH^-1 (-222) + H3O^1 (-147) -> No product
+At time : 1.7171 ns Reaction : H^0 (-186) + OH^0 (-142) -> No product
+At time : 3.1283 ns Reaction : OH^0 (-188) + OH^0 (-124) -> H2O2^0 (-227)
+At time : 4.9346 ns Reaction : H3O^1 (-121) + OH^-1 (-218) -> No product
+At time : 6.9793 ns Reaction : OH^0 (-207) + OH^0 (-112) -> H2O2^0 (-228)
+At time : 8.7857 ns Reaction : e_aq^-1 (-70) + H^0 (-184) -> OH^-1 (-229) + H_2^0 (-230)
+At time : 9.3266 ns Reaction : e_aq^-1 (-65) + H3O^1 (-172) -> H^0 (-231)
+At time : 9.3466 ns Reaction : e_aq^-1 (-64) + H3O^1 (-139) -> H^0 (-232)
+At time : 10.11 ns Reaction : H^0 (-190) + OH^0 (-132) -> No product
+At time : 10.51 ns Reaction : e_aq^-1 (-108) + e_aq^-1 (-71) -> OH^-1 (-233) + OH^-1 (-234) + H_2^0 (-235)
+At time : 10.61 ns Reaction : e_aq^-1 (-94) + OH^0 (-212) -> OH^-1 (-236)
+At time : 10.71 ns Reaction : H3O^1 (-215) + e_aq^-1 (-95) -> H^0 (-237)
+At time : 10.71 ns Reaction : e_aq^-1 (-41) + H3O^1 (-141) -> H^0 (-238)
+At time : 11.41 ns Reaction : OH^0 (-116) + OH^0 (-160) -> H2O2^0 (-239)
+At time : 11.61 ns Reaction : OH^0 (-193) + e_aq^-1 (-93) -> OH^-1 (-240)
+At time : 12.31 ns Reaction : OH^-1 (-221) + H3O^1 (-159) -> No product
+At time : 12.81 ns Reaction : H^0 (-201) + H^0 (-175) -> H_2^0 (-241)
+At time : 13.71 ns Reaction : OH^0 (-148) + OH^0 (-158) -> H2O2^0 (-242)
+At time : 14.31 ns Reaction : e_aq^-1 (-37) + OH^0 (-122) -> OH^-1 (-243)
+At time : 21.022 ns Reaction : OH^-1 (-233) + H3O^1 (-133) -> No product
+At time : 26.788 ns Reaction : e_aq^-1 (-82) + OH^0 (-128) -> OH^-1 (-244)
+At time : 31.465 ns Reaction : H^0 (-238) + OH^0 (-120) -> No product
+At time : 39.073 ns Reaction : e_aq^-1 (-84) + OH^0 (-156) -> OH^-1 (-245)
+At time : 50.21 ns Reaction : H3O^1 (-129) + OH^-1 (-240) -> No product
+At time : 55.188 ns Reaction : e_aq^-1 (-100) + H2O2^0 (-223) -> OH^-1 (-246) + OH^0 (-247)
+At time : 57.057 ns Reaction : H3O^1 (-137) + OH^-1 (-243) -> No product
+At time : 57.898 ns Reaction : e_aq^-1 (-42) + H2O2^0 (-227) -> OH^-1 (-248) + OH^0 (-249)
+At time : 62.809 ns Reaction : H^0 (-182) + e_aq^-1 (-73) -> OH^-1 (-250) + H_2^0 (-251)
+At time : 63.309 ns Reaction : e_aq^-1 (-75) + e_aq^-1 (-88) -> OH^-1 (-252) + OH^-1 (-253) + H_2^0 (-254)
+At time : 67.672 ns Reaction : OH^0 (-189) + OH^0 (-140) -> H2O2^0 (-255)
*** G4Scheduler ends at time : 100 ns
___________________________________
Seed used :1
diff --git a/examples/extended/medical/dna/chem3/src/PhysicsList.cc b/examples/extended/medical/dna/chem3/src/PhysicsList.cc
index 761c084ce4a..57b21e94776 100644
--- a/examples/extended/medical/dna/chem3/src/PhysicsList.cc
+++ b/examples/extended/medical/dna/chem3/src/PhysicsList.cc
@@ -95,6 +95,7 @@ void PhysicsList::ConstructParticle()
void PhysicsList::ConstructProcess()
{
+ AddTransportation();
if(fEmDNAPhysicsList) { fEmDNAPhysicsList->ConstructProcess(); }
if(fEmDNAChemistryList) { fEmDNAChemistryList->ConstructProcess(); }
if(fEmDNAChemistryList1) { fEmDNAChemistryList1->ConstructProcess(); }
diff --git a/examples/extended/medical/dna/chem4/History b/examples/extended/medical/dna/chem4/History
index 53805ffc37f..58dc916549b 100755
--- a/examples/extended/medical/dna/chem4/History
+++ b/examples/extended/medical/dna/chem4/History
@@ -14,6 +14,9 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+08 Feb 2019 - VI, WGS, SI chem4-V10-04-03
+- Fixed PhysicsList
+
27 Nov 2018 - Vladimir Ivanchenko- chem4-V10-04-02
- Fixed nightly problem in PhysicsList
diff --git a/examples/extended/medical/dna/chem4/chem4.out b/examples/extended/medical/dna/chem4/chem4.out
index 9a03f043bfa..e466f9c12cb 100644
--- a/examples/extended/medical/dna/chem4/chem4.out
+++ b/examples/extended/medical/dna/chem4/chem4.out
@@ -1,11 +1,7 @@
-Seed used : 1544023018
-
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
+Seed used : 1555323356
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -27,12 +23,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -69,166 +63,166 @@ New sensitive detector is registered at /
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 100 TeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreConversion : Emin= 0 eV Emax= 80 GeV
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ LivermoreConversion : Emin= 0 eV Emax= 80 GeV
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-e-_G4DNAElectronSolvation: for e- SubType= 58 BuildTable= 0
+e-_G4DNAElectronSolvation: for e- SubType=58 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAOneStepThermalizationModel_Ritchie1994 : Emin= 0 eV Emax= 7.4 eV
+DNAOneStepThermalizationModel_Ritchie1994 : Emin= 0 eV Emax= 7.4 eV
-e-_G4DNAElastic: for e- SubType= 51 BuildTable= 0
+e-_G4DNAElastic: for e- SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
+DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAExcitation: for e- SubType= 52 BuildTable= 0
+e-_G4DNAExcitation: for e- SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
+DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAIonisation: for e- SubType= 53 BuildTable= 0
+e-_G4DNAIonisation: for e- SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornIonisationModel : Emin= 0 eV Emax= 1 MeV deltaBorn FluoActive
+DNABornIonisationModel : Emin= 0 eV Emax= 1 MeV deltaBorn Fluo
-e-_G4DNAVibExcitation: for e- SubType= 54 BuildTable= 0
+e-_G4DNAVibExcitation: for e- SubType=54 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
+DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
-e-_G4DNAAttachment: for e- SubType= 55 BuildTable= 0
+e-_G4DNAAttachment: for e- SubType=55 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
+DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-proton_G4DNAElastic: for proton SubType= 51 BuildTable= 0
+proton_G4DNAElastic: for proton SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-proton_G4DNAExcitation: for proton SubType= 52 BuildTable= 0
+proton_G4DNAExcitation: for proton SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
-proton_G4DNAIonisation: for proton SubType= 53 BuildTable= 0
+proton_G4DNAIonisation: for proton SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd FluoActive
-DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd Fluo
+DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn Fluo
-proton_G4DNAChargeDecrease: for proton SubType= 56 BuildTable= 0
+proton_G4DNAChargeDecrease: for proton SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
-GenericIon_G4DNAIonisation: for GenericIon SubType= 53 BuildTable= 0
+GenericIon_G4DNAIonisation: for GenericIon SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd Fluo
-alpha_G4DNAElastic: for alpha SubType= 51 BuildTable= 0
+alpha_G4DNAElastic: for alpha SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha_G4DNAExcitation: for alpha SubType= 52 BuildTable= 0
+alpha_G4DNAExcitation: for alpha SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha_G4DNAIonisation: for alpha SubType= 53 BuildTable= 0
+alpha_G4DNAIonisation: for alpha SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-alpha_G4DNAChargeDecrease: for alpha SubType= 56 BuildTable= 0
+alpha_G4DNAChargeDecrease: for alpha SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAElastic: for alpha+ SubType= 51 BuildTable= 0
+alpha+_G4DNAElastic: for alpha+ SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha+_G4DNAExcitation: for alpha+ SubType= 52 BuildTable= 0
+alpha+_G4DNAExcitation: for alpha+ SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAIonisation: for alpha+ SubType= 53 BuildTable= 0
+alpha+_G4DNAIonisation: for alpha+ SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-alpha+_G4DNAChargeDecrease: for alpha+ SubType= 56 BuildTable= 0
+alpha+_G4DNAChargeDecrease: for alpha+ SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAChargeIncrease: for alpha+ SubType= 57 BuildTable= 0
+alpha+_G4DNAChargeIncrease: for alpha+ SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAElastic: for helium SubType= 51 BuildTable= 0
+helium_G4DNAElastic: for helium SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-helium_G4DNAExcitation: for helium SubType= 52 BuildTable= 0
+helium_G4DNAExcitation: for helium SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAIonisation: for helium SubType= 53 BuildTable= 0
+helium_G4DNAIonisation: for helium SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-helium_G4DNAChargeIncrease: for helium SubType= 57 BuildTable= 0
+helium_G4DNAChargeIncrease: for helium SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-hydrogen_G4DNAElastic: for hydrogen SubType= 51 BuildTable= 0
+hydrogen_G4DNAElastic: for hydrogen SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-hydrogen_G4DNAExcitation: for hydrogen SubType= 52 BuildTable= 0
+hydrogen_G4DNAExcitation: for hydrogen SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-hydrogen_G4DNAIonisation: for hydrogen SubType= 53 BuildTable= 0
+hydrogen_G4DNAIonisation: for hydrogen SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd Fluo
-hydrogen_G4DNAChargeIncrease: for hydrogen SubType= 57 BuildTable= 0
+hydrogen_G4DNAChargeIncrease: for hydrogen SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
### Run 0 starts.
Particle: e- with 100 keV
Start event 0
@@ -255,6 +249,8 @@ H^0 + H^0 -> H_2^0 1.2e+10 0.2265
------------------------------------------------------------------------------------------------------------------------------
DNAMolecularStepByStepModel will be used
Start event 1
+ * PrimaryKiller: aborts event 1, energy loss is too large.
+ * Energy loss by primary is: 3.7448 keV. Event is aborted if the Eloss is > 2 keV
Start event 2
Start event 3
Start event 4
@@ -265,9 +261,9 @@ Start event 8
Start event 9
--------------------End of Global Run-----------------------
- The run has 10 events
-Number of events recorded by the species scorer = 10
- Total energy deposited in the world volume : 11613 eV
+ The run has 9 events
+Number of events recorded by the species scorer = 9
+ Total energy deposited in the world volume : 9581.2 eV
------------------------------------------------------------
Graphics systems deleted.
diff --git a/examples/extended/medical/dna/chem4/src/PhysicsList.cc b/examples/extended/medical/dna/chem4/src/PhysicsList.cc
index 761c084ce4a..57b21e94776 100755
--- a/examples/extended/medical/dna/chem4/src/PhysicsList.cc
+++ b/examples/extended/medical/dna/chem4/src/PhysicsList.cc
@@ -95,6 +95,7 @@ void PhysicsList::ConstructParticle()
void PhysicsList::ConstructProcess()
{
+ AddTransportation();
if(fEmDNAPhysicsList) { fEmDNAPhysicsList->ConstructProcess(); }
if(fEmDNAChemistryList) { fEmDNAChemistryList->ConstructProcess(); }
if(fEmDNAChemistryList1) { fEmDNAChemistryList1->ConstructProcess(); }
diff --git a/examples/extended/medical/dna/chem5/History b/examples/extended/medical/dna/chem5/History
index 1c01bb369d7..81f07897530 100755
--- a/examples/extended/medical/dna/chem5/History
+++ b/examples/extended/medical/dna/chem5/History
@@ -14,6 +14,9 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+08 Feb 2019 - VI, WGS, SI - chem5-V10-04-04
+- Fixed PhysicsList
+
26 Nov 2018 - V. Ivanchenko - chem5-V10-04-03
- Fixed nightly problem
diff --git a/examples/extended/medical/dna/chem5/src/PhysicsList.cc b/examples/extended/medical/dna/chem5/src/PhysicsList.cc
index be696ad5fcd..1f88d15bed0 100755
--- a/examples/extended/medical/dna/chem5/src/PhysicsList.cc
+++ b/examples/extended/medical/dna/chem5/src/PhysicsList.cc
@@ -97,6 +97,7 @@ void PhysicsList::ConstructParticle()
void PhysicsList::ConstructProcess()
{
+ AddTransportation();
if(fEmDNAPhysicsList) { fEmDNAPhysicsList->ConstructProcess(); }
if(fEmDNAChemistryList) { fEmDNAChemistryList->ConstructProcess(); }
if(fEmDNAChemistryList1) { fEmDNAChemistryList1->ConstructProcess(); }
diff --git a/examples/extended/medical/dna/clustering/clustering.out b/examples/extended/medical/dna/clustering/clustering.out
index 09eb791f470..7da913f1cb3 100644
--- a/examples/extended/medical/dna/clustering/clustering.out
+++ b/examples/extended/medical/dna/clustering/clustering.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -26,12 +22,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -65,166 +59,166 @@ Some /vis commands (optionally) take a string to specify colour.
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 100 TeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreConversion : Emin= 0 eV Emax= 80 GeV
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ LivermoreConversion : Emin= 0 eV Emax= 80 GeV
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-e-_G4DNAElectronSolvation: for e- SubType= 58 BuildTable= 0
+e-_G4DNAElectronSolvation: for e- SubType=58 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAOneStepThermalizationModel_Meesungnoen2002 : Emin= 0 eV Emax= 7.4 eV
+DNAOneStepThermalizationModel_Meesungnoen2002 : Emin= 0 eV Emax= 7.4 eV
-e-_G4DNAElastic: for e- SubType= 51 BuildTable= 0
+e-_G4DNAElastic: for e- SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
+DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAExcitation: for e- SubType= 52 BuildTable= 0
+e-_G4DNAExcitation: for e- SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
+DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAIonisation: for e- SubType= 53 BuildTable= 0
+e-_G4DNAIonisation: for e- SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornIonisationModel : Emin= 0 eV Emax= 1 MeV deltaBorn FluoActive
+DNABornIonisationModel : Emin= 0 eV Emax= 1 MeV deltaBorn Fluo
-e-_G4DNAVibExcitation: for e- SubType= 54 BuildTable= 0
+e-_G4DNAVibExcitation: for e- SubType=54 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
+DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
-e-_G4DNAAttachment: for e- SubType= 55 BuildTable= 0
+e-_G4DNAAttachment: for e- SubType=55 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
+DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-proton_G4DNAElastic: for proton SubType= 51 BuildTable= 0
+proton_G4DNAElastic: for proton SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-proton_G4DNAExcitation: for proton SubType= 52 BuildTable= 0
+proton_G4DNAExcitation: for proton SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
-proton_G4DNAIonisation: for proton SubType= 53 BuildTable= 0
+proton_G4DNAIonisation: for proton SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd FluoActive
-DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd Fluo
+DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn Fluo
-proton_G4DNAChargeDecrease: for proton SubType= 56 BuildTable= 0
+proton_G4DNAChargeDecrease: for proton SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
-GenericIon_G4DNAIonisation: for GenericIon SubType= 53 BuildTable= 0
+GenericIon_G4DNAIonisation: for GenericIon SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd Fluo
-alpha_G4DNAElastic: for alpha SubType= 51 BuildTable= 0
+alpha_G4DNAElastic: for alpha SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha_G4DNAExcitation: for alpha SubType= 52 BuildTable= 0
+alpha_G4DNAExcitation: for alpha SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha_G4DNAIonisation: for alpha SubType= 53 BuildTable= 0
+alpha_G4DNAIonisation: for alpha SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-alpha_G4DNAChargeDecrease: for alpha SubType= 56 BuildTable= 0
+alpha_G4DNAChargeDecrease: for alpha SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAElastic: for alpha+ SubType= 51 BuildTable= 0
+alpha+_G4DNAElastic: for alpha+ SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha+_G4DNAExcitation: for alpha+ SubType= 52 BuildTable= 0
+alpha+_G4DNAExcitation: for alpha+ SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAIonisation: for alpha+ SubType= 53 BuildTable= 0
+alpha+_G4DNAIonisation: for alpha+ SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-alpha+_G4DNAChargeDecrease: for alpha+ SubType= 56 BuildTable= 0
+alpha+_G4DNAChargeDecrease: for alpha+ SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAChargeIncrease: for alpha+ SubType= 57 BuildTable= 0
+alpha+_G4DNAChargeIncrease: for alpha+ SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAElastic: for helium SubType= 51 BuildTable= 0
+helium_G4DNAElastic: for helium SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-helium_G4DNAExcitation: for helium SubType= 52 BuildTable= 0
+helium_G4DNAExcitation: for helium SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAIonisation: for helium SubType= 53 BuildTable= 0
+helium_G4DNAIonisation: for helium SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-helium_G4DNAChargeIncrease: for helium SubType= 57 BuildTable= 0
+helium_G4DNAChargeIncrease: for helium SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-hydrogen_G4DNAElastic: for hydrogen SubType= 51 BuildTable= 0
+hydrogen_G4DNAElastic: for hydrogen SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-hydrogen_G4DNAExcitation: for hydrogen SubType= 52 BuildTable= 0
+hydrogen_G4DNAExcitation: for hydrogen SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-hydrogen_G4DNAIonisation: for hydrogen SubType= 53 BuildTable= 0
+hydrogen_G4DNAIonisation: for hydrogen SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd Fluo
-hydrogen_G4DNAChargeIncrease: for hydrogen SubType= 57 BuildTable= 0
+hydrogen_G4DNAChargeIncrease: for hydrogen SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
----> Histogram file is opened in test.root
Graphics systems deleted.
diff --git a/examples/extended/medical/dna/dnaphysics/History b/examples/extended/medical/dna/dnaphysics/History
index 83bec2b5caf..508cbf7b405 100644
--- a/examples/extended/medical/dna/dnaphysics/History
+++ b/examples/extended/medical/dna/dnaphysics/History
@@ -5,6 +5,9 @@
Package History file
--------------------
+12 Jan 19 S. Incerti - tag dnaphysics-V10-04-05
+- Updated README (test)
+
7 Nov 18 I. Hrivnacova - tag dnaphysics-V10-04-04
- Updated plot.C for reading ntuples merged with row-wise mode
(now default)
diff --git a/examples/extended/medical/dna/dnaphysics/README b/examples/extended/medical/dna/dnaphysics/README
index e5033596a72..0dfbe41f609 100644
--- a/examples/extended/medical/dna/dnaphysics/README
+++ b/examples/extended/medical/dna/dnaphysics/README
@@ -20,6 +20,8 @@ using the Geant4-DNA physics processes and models.
Below 1 MeV, Geant4-DNA models are used while, above this energy,
G4EmStandardPhysics_option4 models are used.
+Geant4-DNA models for electrons are based on a combination of default models with option4 models.
+
The Geant4-DNA processes and models are further described at:
http://geant4-dna.org
diff --git a/examples/extended/medical/dna/dnaphysics/dnaphysics.out b/examples/extended/medical/dna/dnaphysics/dnaphysics.out
index aed3d3189e1..df8d7f76cf7 100644
--- a/examples/extended/medical/dna/dnaphysics/dnaphysics.out
+++ b/examples/extended/medical/dna/dnaphysics/dnaphysics.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -12,7 +8,7 @@
WWW : http://geant4.org/
**************************************************************
-##### Create analysis manager 0x17a9930
+##### Create analysis manager 0x1d27710
Using Root analysis manager
Visualization Manager instantiating with verbosity "warnings (3)"...
Visualization Manager initialising...
@@ -28,12 +24,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -131,536 +125,536 @@ physicsList->setCut() start.
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 1 GeV in 74 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 1 GeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 1 GeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 1 GeV in 60 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEPComptonModel : Emin= 0 eV Emax= 20 MeV FluoActive
- KleinNishina : Emin= 20 MeV Emax= 1 GeV FluoActive
+ LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo
+ KleinNishina : Emin= 20 MeV Emax= 1 GeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 1 GeV, 31 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 1 GeV, 31 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PenConversion : Emin= 0 eV Emax= 20 MeV
- BetheHeitler : Emin= 20 MeV Emax= 1 GeV AngularGenUrban
+ PenConversion : Emin= 0 eV Emax= 20 MeV
+ BetheHeitler : Emin= 20 MeV Emax= 1 GeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 1 GeV in 80 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 1 GeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 1 GeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 1 MeV Emax= 100 MeV Table with 40 bins Emin= 1 MeV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 1 GeV Table with 20 bins Emin= 100 MeV Emax= 1 GeV
+ UrbanMsc : Emin= 1 MeV Emax= 100 MeV Nbins=40 1 MeV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 1 GeV Nbins=20 100 MeV - 1 GeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 1 MeV Emax= 1 GeV deltaVI
+ MollerBhabha : Emin= 1 MeV Emax= 1 GeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
Sampling table 5x1001 from 0.1 GeV to 0.001 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 1 GeV
+ ePairProd : Emin= 0 eV Emax= 1 GeV
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 1 GeV, 20 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 1 GeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 1 GeV
+ eCoulombScattering : Emin= 100 MeV Emax= 1 GeV
-e-_G4DNAElastic: for e- SubType= 51 BuildTable= 0
+e-_G4DNAElastic: for e- SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
- DummyModel : Emin= 1 MeV Emax= 1 GeV
+DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
+ DummyModel : Emin= 1 MeV Emax= 1 GeV
-e-_G4DNAExcitation: for e- SubType= 52 BuildTable= 0
+e-_G4DNAExcitation: for e- SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAEmfietzoglouExcitationModel : Emin= 0 eV Emax= 10 keV
-DNABornExcitationModel : Emin= 10 keV Emax= 1 MeV
- DummyModel : Emin= 1 MeV Emax= 1 GeV
+DNAEmfietzoglouExcitationModel : Emin= 0 eV Emax= 10 keV
+DNABornExcitationModel : Emin= 10 keV Emax= 1 MeV
+ DummyModel : Emin= 1 MeV Emax= 1 GeV
-e-_G4DNAVibExcitation: for e- SubType= 54 BuildTable= 0
+e-_G4DNAVibExcitation: for e- SubType=54 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
- DummyModel : Emin= 100 eV Emax= 1 GeV
+DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
+ DummyModel : Emin= 100 eV Emax= 1 GeV
-e-_G4DNAIonisation: for e- SubType= 53 BuildTable= 0
+e-_G4DNAIonisation: for e- SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAEmfietzoglouIonisationModel : Emin= 0 eV Emax= 10 keV deltaBorn FluoActive
-DNABornIonisationModel : Emin= 10 keV Emax= 1 MeV deltaBorn FluoActive
- DummyModel : Emin= 1 MeV Emax= 1 GeV
+DNAEmfietzoglouIonisationModel : Emin= 0 eV Emax= 10 keV deltaBorn Fluo
+DNABornIonisationModel : Emin= 10 keV Emax= 1 MeV deltaBorn Fluo
+ DummyModel : Emin= 1 MeV Emax= 1 GeV
-e-_G4DNAAttachment: for e- SubType= 55 BuildTable= 0
+e-_G4DNAAttachment: for e- SubType=55 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
- DummyModel : Emin= 13 eV Emax= 1 GeV
+DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
+ DummyModel : Emin= 13 eV Emax= 1 GeV
-msc: for e+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 1 GeV Table with 20 bins Emin= 100 MeV Emax= 1 GeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 1 GeV Nbins=20 100 MeV - 1 GeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PenIoni : Emin= 0 eV Emax= 100 keV
- MollerBhabha : Emin= 100 keV Emax= 1 GeV deltaVI
+ PenIoni : Emin= 0 eV Emax= 100 keV
+ MollerBhabha : Emin= 100 keV Emax= 1 GeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
Sampling table 5x1001 from 0.1 GeV to 0.001 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 1 GeV
+ ePairProd : Emin= 0 eV Emax= 1 GeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 1 GeV
+ eplus2gg : Emin= 0 eV Emax= 1 GeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 1 GeV, 20 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 1 GeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 1 GeV
+ eCoulombScattering : Emin= 100 MeV Emax= 1 GeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 1 MeV Emax= 1 GeV Table with 60 bins Emin= 1 MeV Emax= 1 GeV
+ WentzelVIUni : Emin= 1 MeV Emax= 1 GeV Nbins=60 1 MeV - 1 GeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheBloch : Emin= 100 MeV Emax= 1 GeV deltaVI
+ BetheBloch : Emin= 100 MeV Emax= 1 GeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 1 GeV
+ hBrem : Emin= 0 eV Emax= 1 GeV
===== Limit on energy threshold has been applied
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 1 GeV
+ hPairProd : Emin= 0 eV Emax= 1 GeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 1 GeV, 20 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 1 GeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 1 MeV Emax= 1 GeV
+ eCoulombScattering : Emin= 1 MeV Emax= 1 GeV
-proton_G4DNAElastic: for proton SubType= 51 BuildTable= 0
+proton_G4DNAElastic: for proton SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
- DummyModel : Emin= 1 MeV Emax= 1 GeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DummyModel : Emin= 1 MeV Emax= 1 GeV
-proton_G4DNAExcitation: for proton SubType= 52 BuildTable= 0
+proton_G4DNAExcitation: for proton SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
- DummyModel : Emin= 100 MeV Emax= 1 GeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
+ DummyModel : Emin= 100 MeV Emax= 1 GeV
-proton_G4DNAIonisation: for proton SubType= 53 BuildTable= 0
+proton_G4DNAIonisation: for proton SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd FluoActive
-DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn FluoActive
- DummyModel : Emin= 100 MeV Emax= 1 GeV
+DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd Fluo
+DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn Fluo
+ DummyModel : Emin= 100 MeV Emax= 1 GeV
-proton_G4DNAChargeDecrease: for proton SubType= 56 BuildTable= 0
+proton_G4DNAChargeDecrease: for proton SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
- DummyModel : Emin= 100 MeV Emax= 1 GeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
+ DummyModel : Emin= 100 MeV Emax= 1 GeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 1 GeV
+ UrbanMsc : Emin= 0 eV Emax= 1 GeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheBloch : Emin= 10 MeV Emax= 1 GeV deltaVI
+ BetheBloch : Emin= 10 MeV Emax= 1 GeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-GenericIon_G4DNAIonisation: for GenericIon SubType= 53 BuildTable= 0
+GenericIon_G4DNAIonisation: for GenericIon SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 10 MeV deltaRudd FluoActive
- DummyModel : Emin= 10 MeV Emax= 1 GeV
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 10 MeV deltaRudd Fluo
+ DummyModel : Emin= 10 MeV Emax= 1 GeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 1 MeV Emax= 1 GeV Table with 60 bins Emin= 1 MeV Emax= 1 GeV
+ UrbanMsc : Emin= 1 MeV Emax= 1 GeV Nbins=60 1 MeV - 1 GeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheBloch : Emin= 100.69 MeV Emax= 1 GeV deltaVI
+ BetheBloch : Emin=100.69 MeV Emax= 1 GeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-alpha_G4DNAElastic: for alpha SubType= 51 BuildTable= 0
+alpha_G4DNAElastic: for alpha SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
- DummyModel : Emin= 1 MeV Emax= 1 GeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DummyModel : Emin= 1 MeV Emax= 1 GeV
-alpha_G4DNAExcitation: for alpha SubType= 52 BuildTable= 0
+alpha_G4DNAExcitation: for alpha SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
- DummyModel : Emin= 400 MeV Emax= 1 GeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+ DummyModel : Emin= 400 MeV Emax= 1 GeV
-alpha_G4DNAIonisation: for alpha SubType= 53 BuildTable= 0
+alpha_G4DNAIonisation: for alpha SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
- DummyModel : Emin= 400 MeV Emax= 1 GeV
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
+ DummyModel : Emin= 400 MeV Emax= 1 GeV
-alpha_G4DNAChargeDecrease: for alpha SubType= 56 BuildTable= 0
+alpha_G4DNAChargeDecrease: for alpha SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
- DummyModel : Emin= 400 MeV Emax= 1 GeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+ DummyModel : Emin= 400 MeV Emax= 1 GeV
-msc: for alpha+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 1 MeV Emax= 1 GeV Table with 60 bins Emin= 1 MeV Emax= 1 GeV
+ UrbanMsc : Emin= 1 MeV Emax= 1 GeV Nbins=60 1 MeV - 1 GeV
-hIoni: for alpha+ SubType= 2
+hIoni: for alpha+ SubType=2
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheBloch : Emin= 100.69 MeV Emax= 1 GeV deltaVI
+ BetheBloch : Emin=100.69 MeV Emax= 1 GeV deltaVI
-alpha+_G4DNAElastic: for alpha+ SubType= 51 BuildTable= 0
+alpha+_G4DNAElastic: for alpha+ SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
- DummyModel : Emin= 1 MeV Emax= 1 GeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DummyModel : Emin= 1 MeV Emax= 1 GeV
-alpha+_G4DNAExcitation: for alpha+ SubType= 52 BuildTable= 0
+alpha+_G4DNAExcitation: for alpha+ SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
- DummyModel : Emin= 400 MeV Emax= 1 GeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+ DummyModel : Emin= 400 MeV Emax= 1 GeV
-alpha+_G4DNAIonisation: for alpha+ SubType= 53 BuildTable= 0
+alpha+_G4DNAIonisation: for alpha+ SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
- DummyModel : Emin= 400 MeV Emax= 1 GeV
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
+ DummyModel : Emin= 400 MeV Emax= 1 GeV
-alpha+_G4DNAChargeDecrease: for alpha+ SubType= 56 BuildTable= 0
+alpha+_G4DNAChargeDecrease: for alpha+ SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
- DummyModel : Emin= 400 MeV Emax= 1 GeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+ DummyModel : Emin= 400 MeV Emax= 1 GeV
-alpha+_G4DNAChargeIncrease: for alpha+ SubType= 57 BuildTable= 0
+alpha+_G4DNAChargeIncrease: for alpha+ SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
- DummyModel : Emin= 400 MeV Emax= 1 GeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+ DummyModel : Emin= 400 MeV Emax= 1 GeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 1 GeV Table with 140 bins Emin= 100 eV Emax= 1 GeV
+ WentzelVIUni : Emin= 0 eV Emax= 1 GeV Nbins=140 100 eV - 1 GeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 1 GeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 1 GeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 1 GeV
+ hBrem : Emin= 0 eV Emax= 1 GeV
===== Limit on energy threshold has been applied
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 1 GeV
+ hPairProd : Emin= 0 eV Emax= 1 GeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 1 GeV, 20 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 1 GeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 1 GeV
+ eCoulombScattering : Emin= 0 eV Emax= 1 GeV
-helium_G4DNAElastic: for helium SubType= 51 BuildTable= 0
+helium_G4DNAElastic: for helium SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
- DummyModel : Emin= 1 MeV Emax= 1 GeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DummyModel : Emin= 1 MeV Emax= 1 GeV
-helium_G4DNAExcitation: for helium SubType= 52 BuildTable= 0
+helium_G4DNAExcitation: for helium SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
- DummyModel : Emin= 400 MeV Emax= 1 GeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+ DummyModel : Emin= 400 MeV Emax= 1 GeV
-helium_G4DNAIonisation: for helium SubType= 53 BuildTable= 0
+helium_G4DNAIonisation: for helium SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
- DummyModel : Emin= 400 MeV Emax= 1 GeV
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
+ DummyModel : Emin= 400 MeV Emax= 1 GeV
-helium_G4DNAChargeIncrease: for helium SubType= 57 BuildTable= 0
+helium_G4DNAChargeIncrease: for helium SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
- DummyModel : Emin= 400 MeV Emax= 1 GeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+ DummyModel : Emin= 400 MeV Emax= 1 GeV
-hydrogen_G4DNAElastic: for hydrogen SubType= 51 BuildTable= 0
+hydrogen_G4DNAElastic: for hydrogen SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
- DummyModel : Emin= 1 MeV Emax= 1 GeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DummyModel : Emin= 1 MeV Emax= 1 GeV
-hydrogen_G4DNAExcitation: for hydrogen SubType= 52 BuildTable= 0
+hydrogen_G4DNAExcitation: for hydrogen SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
- DummyModel : Emin= 500 keV Emax= 1 GeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+ DummyModel : Emin= 500 keV Emax= 1 GeV
-hydrogen_G4DNAIonisation: for hydrogen SubType= 53 BuildTable= 0
+hydrogen_G4DNAIonisation: for hydrogen SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd FluoActive
- DummyModel : Emin= 100 MeV Emax= 1 GeV
+DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd Fluo
+ DummyModel : Emin= 100 MeV Emax= 1 GeV
-hydrogen_G4DNAChargeIncrease: for hydrogen SubType= 57 BuildTable= 0
+hydrogen_G4DNAChargeIncrease: for hydrogen SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
- DummyModel : Emin= 100 MeV Emax= 1 GeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
+ DummyModel : Emin= 100 MeV Emax= 1 GeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 1 GeV Table with 140 bins Emin= 100 eV Emax= 1 GeV
+ WentzelVIUni : Emin= 0 eV Emax= 1 GeV Nbins=140 100 eV - 1 GeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 1 GeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 1 GeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 1 GeV
+ hBrem : Emin= 0 eV Emax= 1 GeV
===== Limit on energy threshold has been applied
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 1 GeV
+ hPairProd : Emin= 0 eV Emax= 1 GeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 1 GeV, 20 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 1 GeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 1 GeV
+ eCoulombScattering : Emin= 0 eV Emax= 1 GeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 1 GeV Table with 140 bins Emin= 100 eV Emax= 1 GeV
+ WentzelVIUni : Emin= 0 eV Emax= 1 GeV Nbins=140 100 eV - 1 GeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 1 GeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 1 GeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 1 GeV
+ hBrem : Emin= 0 eV Emax= 1 GeV
===== Limit on energy threshold has been applied
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 1 GeV
+ hPairProd : Emin= 0 eV Emax= 1 GeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 1 GeV
+ eCoulombScattering : Emin= 0 eV Emax= 1 GeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 1 GeV Table with 140 bins Emin= 100 eV Emax= 1 GeV
+ WentzelVIUni : Emin= 0 eV Emax= 1 GeV Nbins=140 100 eV - 1 GeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 1 GeV
+ MuBrem : Emin= 0 eV Emax= 1 GeV
===== Limit on energy threshold has been applied
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 1 GeV
+ muPairProd : Emin= 0 eV Emax= 1 GeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 1 GeV, 20 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 1 GeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 1 GeV
+ eCoulombScattering : Emin= 0 eV Emax= 1 GeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 1 GeV Table with 140 bins Emin= 100 eV Emax= 1 GeV
+ WentzelVIUni : Emin= 0 eV Emax= 1 GeV Nbins=140 100 eV - 1 GeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 1 GeV
+ MuBrem : Emin= 0 eV Emax= 1 GeV
===== Limit on energy threshold has been applied
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 1 GeV
+ muPairProd : Emin= 0 eV Emax= 1 GeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 1 GeV
+ eCoulombScattering : Emin= 0 eV Emax= 1 GeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 1 GeV Table with 140 bins Emin= 100 eV Emax= 1 GeV
+ WentzelVIUni : Emin= 0 eV Emax= 1 GeV Nbins=140 100 eV - 1 GeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 1 GeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 1 GeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 1 GeV
+ hBrem : Emin= 0 eV Emax= 1 GeV
===== Limit on energy threshold has been applied
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 1 GeV
+ hPairProd : Emin= 0 eV Emax= 1 GeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 1 GeV, 20 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 1 GeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 1 GeV
+ eCoulombScattering : Emin= 0 eV Emax= 1 GeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 1 GeV Table with 140 bins Emin= 100 eV Emax= 1 GeV
+ WentzelVIUni : Emin= 0 eV Emax= 1 GeV Nbins=140 100 eV - 1 GeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 1 GeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 1 GeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 1 GeV
+ hBrem : Emin= 0 eV Emax= 1 GeV
===== Limit on energy threshold has been applied
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 1 GeV in 140 bins
- Lambda tables from threshold to 1 GeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 1 GeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 1 GeV
+ hPairProd : Emin= 0 eV Emax= 1 GeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 1 GeV
+ eCoulombScattering : Emin= 0 eV Emax= 1 GeV
Region -- -- appears in world volume
This region is in the mass world.
@@ -696,7 +690,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 2
- User=5.550000s Real=5.849137s Sys=0.030000s
+ User=5.360000s Real=5.396066s Sys=0.030000s
... write Root file : dna.root - done
... close Root file : dna.root - done
Graphics systems deleted.
diff --git a/examples/extended/medical/dna/icsd/icsd.out b/examples/extended/medical/dna/icsd/icsd.out
index 9b4e8f8aa0a..9f598665351 100644
--- a/examples/extended/medical/dna/icsd/icsd.out
+++ b/examples/extended/medical/dna/icsd/icsd.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -12,7 +8,7 @@
WWW : http://geant4.org/
**************************************************************
-##### Create analysis manager 0x954250
+##### Create analysis manager 0x16142a0
Using Root analysis manager
e-_G4DNAPTBAugerModel is constructed
@@ -24,17 +20,17 @@ e-_G4DNAPTBAugerModel is constructed
-------- WWWW -------- G4Exception-END --------- WWWW -------
-e-_G4DNAElastic: for e- SubType= 51 BuildTable= 0
+e-_G4DNAElastic: for e- SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-e-_elastic_interaction : Emin= 0 eV Emax= 100 TeV
+e-_elastic_interaction : Emin= 0 eV Emax= 100 TeV
-e-_G4DNAExcitation: for e- SubType= 52 BuildTable= 0
+e-_G4DNAExcitation: for e- SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-e-_excitation_interaction : Emin= 0 eV Emax= 100 TeV
+e-_excitation_interaction : Emin= 0 eV Emax= 100 TeV
-e-_G4DNAIonisation: for e- SubType= 53 BuildTable= 0
+e-_G4DNAIonisation: for e- SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-e-_ionisation_interaction : Emin= 0 eV Emax= 100 TeV
+e-_ionisation_interaction : Emin= 0 eV Emax= 100 TeV
... open Root analysis file : ICSD.root - done
... write Root file : ICSD.root - done
... close Root file : ICSD.root - done
diff --git a/examples/extended/medical/dna/mfp/mfp.out b/examples/extended/medical/dna/mfp/mfp.out
index 4d74cdf825a..0c60ca1bbae 100644
--- a/examples/extended/medical/dna/mfp/mfp.out
+++ b/examples/extended/medical/dna/mfp/mfp.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -26,12 +22,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -89,166 +83,166 @@ PhysicsList::AddPhysicsList:
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 100 TeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreConversion : Emin= 0 eV Emax= 80 GeV
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ LivermoreConversion : Emin= 0 eV Emax= 80 GeV
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-e-_G4DNAElectronSolvation: for e- SubType= 58 BuildTable= 0
+e-_G4DNAElectronSolvation: for e- SubType=58 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAOneStepThermalizationModel : Emin= 0 eV Emax= 7.4 eV
+DNAOneStepThermalizationModel : Emin= 0 eV Emax= 7.4 eV
-e-_G4DNAElastic: for e- SubType= 51 BuildTable= 0
+e-_G4DNAElastic: for e- SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
+DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAExcitation: for e- SubType= 52 BuildTable= 0
+e-_G4DNAExcitation: for e- SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
+DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAIonisation: for e- SubType= 53 BuildTable= 0
+e-_G4DNAIonisation: for e- SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornIonisationModel : Emin= 0 eV Emax= 100 TeV deltaBorn FluoActive
+DNABornIonisationModel : Emin= 0 eV Emax= 100 TeV deltaBorn Fluo
-e-_G4DNAVibExcitation: for e- SubType= 54 BuildTable= 0
+e-_G4DNAVibExcitation: for e- SubType=54 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
+DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
-e-_G4DNAAttachment: for e- SubType= 55 BuildTable= 0
+e-_G4DNAAttachment: for e- SubType=55 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
+DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-proton_G4DNAElastic: for proton SubType= 51 BuildTable= 0
+proton_G4DNAElastic: for proton SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-proton_G4DNAExcitation: for proton SubType= 52 BuildTable= 0
+proton_G4DNAExcitation: for proton SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
-proton_G4DNAIonisation: for proton SubType= 53 BuildTable= 0
+proton_G4DNAIonisation: for proton SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 500 keV deltaRudd FluoActive
-DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 500 keV deltaRudd Fluo
+DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn Fluo
-proton_G4DNAChargeDecrease: for proton SubType= 56 BuildTable= 0
+proton_G4DNAChargeDecrease: for proton SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
-GenericIon_G4DNAIonisation: for GenericIon SubType= 53 BuildTable= 0
+GenericIon_G4DNAIonisation: for GenericIon SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd Fluo
-alpha_G4DNAElastic: for alpha SubType= 51 BuildTable= 0
+alpha_G4DNAElastic: for alpha SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha_G4DNAExcitation: for alpha SubType= 52 BuildTable= 0
+alpha_G4DNAExcitation: for alpha SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha_G4DNAIonisation: for alpha SubType= 53 BuildTable= 0
+alpha_G4DNAIonisation: for alpha SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd Fluo
-alpha_G4DNAChargeDecrease: for alpha SubType= 56 BuildTable= 0
+alpha_G4DNAChargeDecrease: for alpha SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAElastic: for alpha+ SubType= 51 BuildTable= 0
+alpha+_G4DNAElastic: for alpha+ SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha+_G4DNAExcitation: for alpha+ SubType= 52 BuildTable= 0
+alpha+_G4DNAExcitation: for alpha+ SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAIonisation: for alpha+ SubType= 53 BuildTable= 0
+alpha+_G4DNAIonisation: for alpha+ SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd Fluo
-alpha+_G4DNAChargeDecrease: for alpha+ SubType= 56 BuildTable= 0
+alpha+_G4DNAChargeDecrease: for alpha+ SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAChargeIncrease: for alpha+ SubType= 57 BuildTable= 0
+alpha+_G4DNAChargeIncrease: for alpha+ SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAElastic: for helium SubType= 51 BuildTable= 0
+helium_G4DNAElastic: for helium SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-helium_G4DNAExcitation: for helium SubType= 52 BuildTable= 0
+helium_G4DNAExcitation: for helium SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAIonisation: for helium SubType= 53 BuildTable= 0
+helium_G4DNAIonisation: for helium SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd Fluo
-helium_G4DNAChargeIncrease: for helium SubType= 57 BuildTable= 0
+helium_G4DNAChargeIncrease: for helium SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-hydrogen_G4DNAElastic: for hydrogen SubType= 51 BuildTable= 0
+hydrogen_G4DNAElastic: for hydrogen SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-hydrogen_G4DNAExcitation: for hydrogen SubType= 52 BuildTable= 0
+hydrogen_G4DNAExcitation: for hydrogen SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-hydrogen_G4DNAIonisation: for hydrogen SubType= 53 BuildTable= 0
+hydrogen_G4DNAIonisation: for hydrogen SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd Fluo
-hydrogen_G4DNAChargeIncrease: for hydrogen SubType= 57 BuildTable= 0
+hydrogen_G4DNAChargeIncrease: for hydrogen SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
======================== run summary =====================
diff --git a/examples/extended/medical/dna/microdosimetry/microdosimetry.out b/examples/extended/medical/dna/microdosimetry/microdosimetry.out
index 686ea3404b1..1cc5ec51f87 100644
--- a/examples/extended/medical/dna/microdosimetry/microdosimetry.out
+++ b/examples/extended/medical/dna/microdosimetry/microdosimetry.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -27,12 +23,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -61,242 +55,242 @@ End of Run User Vis Actions: none
Some /vis commands (optionally) take a string to specify colour.
"/vis/list" to see available colours.
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
===== EM models for the G4Region Target ======
- UrbanMsc : Emin= 1 MeV Emax= 100 TeV Table with 56 bins Emin= 1 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 1 MeV Emax= 100 TeV Nbins=56 1 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
- MollerBhabha : Emin= 1 MeV Emax= 100 TeV
+ MollerBhabha : Emin= 1 MeV Emax= 100 TeV
-e-_G4DNAElastic: for e- SubType= 51 BuildTable= 0
+e-_G4DNAElastic: for e- SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
+DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAExcitation: for e- SubType= 52 BuildTable= 0
+e-_G4DNAExcitation: for e- SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
+DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAIonisation: for e- SubType= 53 BuildTable= 0
+e-_G4DNAIonisation: for e- SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-DNABornIonisationModel : Emin= 0 eV Emax= 1 MeV deltaBorn
+DNABornIonisationModel : Emin= 0 eV Emax= 1 MeV deltaBorn
-e-_G4DNAAttachment: for e- SubType= 55 BuildTable= 0
+e-_G4DNAAttachment: for e- SubType=55 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
+DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
-e-_G4DNAVibExcitation: for e- SubType= 54 BuildTable= 0
+e-_G4DNAVibExcitation: for e- SubType=54 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
+DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
===== EM models for the G4Region Target ======
- WentzelVIUni : Emin= 1 MeV Emax= 100 TeV Table with 56 bins Emin= 1 MeV Emax= 100 TeV
+ WentzelVIUni : Emin= 1 MeV Emax= 100 TeV Nbins=56 1 MeV - 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
- eCoulombScattering : Emin= 1 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 1 MeV Emax= 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
===== EM models for the G4Region Target ======
- BetheBloch : Emin= 9.9 MeV Emax= 100 TeV
+ BetheBloch : Emin= 9.9 MeV Emax= 100 TeV
-proton_G4DNAExcitation: for proton SubType= 52 BuildTable= 0
+proton_G4DNAExcitation: for proton SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-DNABornExcitationModel : Emin= 500 keV Emax= 10 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNABornExcitationModel : Emin= 500 keV Emax= 10 MeV
-proton_G4DNAIonisation: for proton SubType= 53 BuildTable= 0
+proton_G4DNAIonisation: for proton SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd
-DNABornIonisationModel : Emin= 500 keV Emax= 10 MeV deltaBorn
+DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd
+DNABornIonisationModel : Emin= 500 keV Emax= 10 MeV deltaBorn
-proton_G4DNAElastic: for proton SubType= 51 BuildTable= 0
+proton_G4DNAElastic: for proton SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-proton_G4DNAChargeDecrease: for proton SubType= 56 BuildTable= 0
+proton_G4DNAChargeDecrease: for proton SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 10 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 10 MeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
===== EM models for the G4Region Target ======
- UrbanMsc : Emin= 1 MeV Emax= 100 TeV Table with 56 bins Emin= 1 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 1 MeV Emax= 100 TeV Nbins=56 1 MeV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
===== EM models for the G4Region Target ======
- BetheBloch : Emin= 9.9 MeV Emax= 100 TeV
+ BetheBloch : Emin= 9.9 MeV Emax= 100 TeV
-alpha_G4DNAExcitation: for alpha SubType= 52 BuildTable= 0
+alpha_G4DNAExcitation: for alpha SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 10 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 10 MeV
-alpha_G4DNAIonisation: for alpha SubType= 53 BuildTable= 0
+alpha_G4DNAIonisation: for alpha SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 10 MeV deltaRudd
+DNARuddIonisationModel : Emin= 0 eV Emax= 10 MeV deltaRudd
-alpha_G4DNAElastic: for alpha SubType= 51 BuildTable= 0
+alpha_G4DNAElastic: for alpha SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha_G4DNAChargeDecrease: for alpha SubType= 56 BuildTable= 0
+alpha_G4DNAChargeDecrease: for alpha SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 10 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 10 MeV
-msc: for alpha+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
===== EM models for the G4Region Target ======
- UrbanMsc : Emin= 1 MeV Emax= 100 TeV Table with 56 bins Emin= 1 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 1 MeV Emax= 100 TeV Nbins=56 1 MeV - 100 TeV
-alpha+_G4DNAExcitation: for alpha+ SubType= 52 BuildTable= 0
+alpha+_G4DNAExcitation: for alpha+ SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 10 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 10 MeV
-alpha+_G4DNAIonisation: for alpha+ SubType= 53 BuildTable= 0
+alpha+_G4DNAIonisation: for alpha+ SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 10 MeV deltaRudd
+DNARuddIonisationModel : Emin= 0 eV Emax= 10 MeV deltaRudd
-alpha+_G4DNAElastic: for alpha+ SubType= 51 BuildTable= 0
+alpha+_G4DNAElastic: for alpha+ SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha+_G4DNAChargeDecrease: for alpha+ SubType= 56 BuildTable= 0
+alpha+_G4DNAChargeDecrease: for alpha+ SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 10 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 10 MeV
-alpha+_G4DNAChargeIncrease: for alpha+ SubType= 57 BuildTable= 0
+alpha+_G4DNAChargeIncrease: for alpha+ SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 10 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 10 MeV
-helium_G4DNAExcitation: for helium SubType= 52 BuildTable= 0
+helium_G4DNAExcitation: for helium SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 10 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 10 MeV
-helium_G4DNAIonisation: for helium SubType= 53 BuildTable= 0
+helium_G4DNAIonisation: for helium SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 10 MeV deltaRudd
+DNARuddIonisationModel : Emin= 0 eV Emax= 10 MeV deltaRudd
-helium_G4DNAElastic: for helium SubType= 51 BuildTable= 0
+helium_G4DNAElastic: for helium SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-helium_G4DNAChargeIncrease: for helium SubType= 57 BuildTable= 0
+helium_G4DNAChargeIncrease: for helium SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 10 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 10 MeV
-hydrogen_G4DNAExcitation: for hydrogen SubType= 52 BuildTable= 0
+hydrogen_G4DNAExcitation: for hydrogen SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-hydrogen_G4DNAIonisation: for hydrogen SubType= 53 BuildTable= 0
+hydrogen_G4DNAIonisation: for hydrogen SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 10 MeV deltaRudd
+DNARuddIonisationModel : Emin= 0 eV Emax= 10 MeV deltaRudd
-hydrogen_G4DNAElastic: for hydrogen SubType= 51 BuildTable= 0
+hydrogen_G4DNAElastic: for hydrogen SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-hydrogen_G4DNAChargeIncrease: for hydrogen SubType= 57 BuildTable= 0
+hydrogen_G4DNAChargeIncrease: for hydrogen SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DummyModel : Emin= 0 eV Emax= 100 TeV
+ DummyModel : Emin= 0 eV Emax= 100 TeV
===== EM models for the G4Region Target ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 10 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 10 MeV
Region -- -- appears in world volume
This region is in the mass world.
@@ -345,7 +339,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 2
- User=29.250000s Real=29.603689s Sys=0.010000s
+ User=29.770000s Real=29.967389s Sys=0.010000s
Number and type of particles created outside region "Target" :
N e- : 730
_______________________
diff --git a/examples/extended/medical/dna/microyz/microyz.out b/examples/extended/medical/dna/microyz/microyz.out
index aaf51034b4d..cc3c1cf1d16 100644
--- a/examples/extended/medical/dna/microyz/microyz.out
+++ b/examples/extended/medical/dna/microyz/microyz.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -12,7 +8,7 @@
WWW : http://geant4.org/
**************************************************************
-##### Create analysis manager 0xcec3c0
+##### Create analysis manager 0x230b1b0
Using Root analysis manager
Visualization Manager instantiating with verbosity "warnings (3)"...
Visualization Manager initialising...
@@ -28,12 +24,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -99,166 +93,166 @@ Computed tolerance = 0.1 nm
### === PIXE model for hadrons: Empirical
### === PIXE model for e+-: Livermore
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 100 TeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreConversion : Emin= 0 eV Emax= 80 GeV
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ LivermoreConversion : Emin= 0 eV Emax= 80 GeV
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-e-_G4DNAElectronSolvation: for e- SubType= 58 BuildTable= 0
+e-_G4DNAElectronSolvation: for e- SubType=58 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAOneStepThermalizationModel : Emin= 0 eV Emax= 7.4 eV
+DNAOneStepThermalizationModel : Emin= 0 eV Emax= 7.4 eV
-e-_G4DNAElastic: for e- SubType= 51 BuildTable= 0
+e-_G4DNAElastic: for e- SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
+DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAExcitation: for e- SubType= 52 BuildTable= 0
+e-_G4DNAExcitation: for e- SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
+DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAIonisation: for e- SubType= 53 BuildTable= 0
+e-_G4DNAIonisation: for e- SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornIonisationModel : Emin= 0 eV Emax= 100 TeV deltaBorn FluoActive
+DNABornIonisationModel : Emin= 0 eV Emax= 100 TeV deltaBorn Fluo
-e-_G4DNAVibExcitation: for e- SubType= 54 BuildTable= 0
+e-_G4DNAVibExcitation: for e- SubType=54 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
+DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
-e-_G4DNAAttachment: for e- SubType= 55 BuildTable= 0
+e-_G4DNAAttachment: for e- SubType=55 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
+DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-proton_G4DNAElastic: for proton SubType= 51 BuildTable= 0
+proton_G4DNAElastic: for proton SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-proton_G4DNAExcitation: for proton SubType= 52 BuildTable= 0
+proton_G4DNAExcitation: for proton SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
-proton_G4DNAIonisation: for proton SubType= 53 BuildTable= 0
+proton_G4DNAIonisation: for proton SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 500 keV deltaRudd FluoActive
-DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 500 keV deltaRudd Fluo
+DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn Fluo
-proton_G4DNAChargeDecrease: for proton SubType= 56 BuildTable= 0
+proton_G4DNAChargeDecrease: for proton SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
-GenericIon_G4DNAIonisation: for GenericIon SubType= 53 BuildTable= 0
+GenericIon_G4DNAIonisation: for GenericIon SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd Fluo
-alpha_G4DNAElastic: for alpha SubType= 51 BuildTable= 0
+alpha_G4DNAElastic: for alpha SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha_G4DNAExcitation: for alpha SubType= 52 BuildTable= 0
+alpha_G4DNAExcitation: for alpha SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha_G4DNAIonisation: for alpha SubType= 53 BuildTable= 0
+alpha_G4DNAIonisation: for alpha SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd Fluo
-alpha_G4DNAChargeDecrease: for alpha SubType= 56 BuildTable= 0
+alpha_G4DNAChargeDecrease: for alpha SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAElastic: for alpha+ SubType= 51 BuildTable= 0
+alpha+_G4DNAElastic: for alpha+ SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha+_G4DNAExcitation: for alpha+ SubType= 52 BuildTable= 0
+alpha+_G4DNAExcitation: for alpha+ SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAIonisation: for alpha+ SubType= 53 BuildTable= 0
+alpha+_G4DNAIonisation: for alpha+ SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd Fluo
-alpha+_G4DNAChargeDecrease: for alpha+ SubType= 56 BuildTable= 0
+alpha+_G4DNAChargeDecrease: for alpha+ SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAChargeIncrease: for alpha+ SubType= 57 BuildTable= 0
+alpha+_G4DNAChargeIncrease: for alpha+ SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAElastic: for helium SubType= 51 BuildTable= 0
+helium_G4DNAElastic: for helium SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-helium_G4DNAExcitation: for helium SubType= 52 BuildTable= 0
+helium_G4DNAExcitation: for helium SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAIonisation: for helium SubType= 53 BuildTable= 0
+helium_G4DNAIonisation: for helium SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd Fluo
-helium_G4DNAChargeIncrease: for helium SubType= 57 BuildTable= 0
+helium_G4DNAChargeIncrease: for helium SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-hydrogen_G4DNAElastic: for hydrogen SubType= 51 BuildTable= 0
+hydrogen_G4DNAElastic: for hydrogen SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-hydrogen_G4DNAExcitation: for hydrogen SubType= 52 BuildTable= 0
+hydrogen_G4DNAExcitation: for hydrogen SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-hydrogen_G4DNAIonisation: for hydrogen SubType= 53 BuildTable= 0
+hydrogen_G4DNAIonisation: for hydrogen SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd Fluo
-hydrogen_G4DNAChargeIncrease: for hydrogen SubType= 57 BuildTable= 0
+hydrogen_G4DNAChargeIncrease: for hydrogen SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
### Run 0 starts.
... open Root analysis file : yz.root - done
--> Event 0 starts.
diff --git a/examples/extended/medical/dna/neuron/neuron.out b/examples/extended/medical/dna/neuron/neuron.out
index 7bf84f73783..b78206295b4 100644
--- a/examples/extended/medical/dna/neuron/neuron.out
+++ b/examples/extended/medical/dna/neuron/neuron.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -61,12 +57,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -103,452 +97,443 @@ Some /vis commands (optionally) take a string to specify colour.
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 1 GeV FluoActive
- KleinNishina : Emin= 1 GeV Emax= 100 TeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 1 GeV Fluo
+ KleinNishina : Emin= 1 GeV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler5D : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler5D : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
- MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
+ LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
+ MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-
-nuclearStopping: for proton SubType= 8 BuildTable= 0
- ===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-
-nuclearStopping: for anti_proton SubType= 8 BuildTable= 0
- ===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.05, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.05 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
===== Limit on energy threshold has been applied
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
End of tracking primary particle, its final energy is :3.47547 GeV
Physics stage ends
-End of tracking primary particle, its final energy is :3.47619 GeV
+End of tracking primary particle, its final energy is :3.47536 GeV
Physics stage ends
======= The summary of simulation results 'neuron' ========
Primary particle = C12
Kinetic energy of beam = 3480 A*MeV
- Particle traversals the neuron = 1 of 2
+ Particle traversals the neuron = 0 of 2
Full LET of beam as formulas = 12.865 keV/um
- Mean LET of beam as simulation = 10.661 +- 0.76786 keV/um
- Mean track length of beam = 384.33 +- 0.011825 um
+ Mean LET of beam as simulation = 10.615 +- 0.2425 keV/um
+ Mean track length of beam = 426.36 +- 0.030209 um
Particle fluence = 383.66 particles/cm^2
Fluence dose (full) = 7.9081e-06 Gy
Fluence dose ber beam = 3.954e-06 Gy
List of generated physical process:
- eIoni= 3701
- ionIoni= 2452
- msc= 3872
+ eIoni= 4129
+ ionIoni= 2694
+ msc= 6888
List of generated particles outside neuron structure:
- e- : 2911 Emean = 1.3276 keV ( 242.7 eV --> 236.42 keV) Eflow/event = 1.9323 MeV
+ e- : 3191 Emean = 1.3128 keV ( 242.77 eV --> 236.42 keV) Eflow/event = 2.0946 MeV
Number of secondary particles inside neuron structure:
- e- : 3
Number of molecular products inside neuron structure:
time: 1 ps - 10 ps
Total energy (MeV) deposition :
- All volume: 8.1948
- Bounding slice: 2.6676
- Neuron: 0.00070075
+ All volume: 9.052
+ Bounding slice: 4.4801
+ Neuron: 0
Soma: 0
- Dendrites: 0.00070075
+ Dendrites: 0
Axon: 0
Number of compartments traversed by particle tracks :
Soma: 0 of total: 3
- Dendrites: 2 of total: 2775
+ Dendrites: 0 of total: 2775
Axon: 0 of total: 136
@@ -558,7 +543,7 @@ Physics stage ends
Outputs of energy deposition per event written in data file:
OutputPerEvent.out
- Calculation time = 3.48571 s
+ Calculation time = 3.19684 s
Graphics systems deleted.
Visualization Manager deleting...
diff --git a/examples/extended/medical/dna/pdb4dna/pdb4dna.out b/examples/extended/medical/dna/pdb4dna/pdb4dna.out
index df1c144b4b4..ba9ff785227 100644
--- a/examples/extended/medical/dna/pdb4dna/pdb4dna.out
+++ b/examples/extended/medical/dna/pdb4dna/pdb4dna.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -28,12 +24,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -98,166 +92,166 @@ This PDB file is DNA.
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 100 TeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreConversion : Emin= 0 eV Emax= 80 GeV
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ LivermoreConversion : Emin= 0 eV Emax= 80 GeV
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-e-_G4DNAElectronSolvation: for e- SubType= 58 BuildTable= 0
+e-_G4DNAElectronSolvation: for e- SubType=58 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAOneStepThermalizationModel_Meesungnoen2002 : Emin= 0 eV Emax= 7.4 eV
+DNAOneStepThermalizationModel_Meesungnoen2002 : Emin= 0 eV Emax= 7.4 eV
-e-_G4DNAElastic: for e- SubType= 51 BuildTable= 0
+e-_G4DNAElastic: for e- SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
+DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAExcitation: for e- SubType= 52 BuildTable= 0
+e-_G4DNAExcitation: for e- SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
+DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAIonisation: for e- SubType= 53 BuildTable= 0
+e-_G4DNAIonisation: for e- SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornIonisationModel : Emin= 0 eV Emax= 1 MeV deltaBorn FluoActive
+DNABornIonisationModel : Emin= 0 eV Emax= 1 MeV deltaBorn Fluo
-e-_G4DNAVibExcitation: for e- SubType= 54 BuildTable= 0
+e-_G4DNAVibExcitation: for e- SubType=54 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
+DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
-e-_G4DNAAttachment: for e- SubType= 55 BuildTable= 0
+e-_G4DNAAttachment: for e- SubType=55 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
+DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-proton_G4DNAElastic: for proton SubType= 51 BuildTable= 0
+proton_G4DNAElastic: for proton SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-proton_G4DNAExcitation: for proton SubType= 52 BuildTable= 0
+proton_G4DNAExcitation: for proton SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
-proton_G4DNAIonisation: for proton SubType= 53 BuildTable= 0
+proton_G4DNAIonisation: for proton SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd FluoActive
-DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd Fluo
+DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn Fluo
-proton_G4DNAChargeDecrease: for proton SubType= 56 BuildTable= 0
+proton_G4DNAChargeDecrease: for proton SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
-GenericIon_G4DNAIonisation: for GenericIon SubType= 53 BuildTable= 0
+GenericIon_G4DNAIonisation: for GenericIon SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd Fluo
-alpha_G4DNAElastic: for alpha SubType= 51 BuildTable= 0
+alpha_G4DNAElastic: for alpha SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha_G4DNAExcitation: for alpha SubType= 52 BuildTable= 0
+alpha_G4DNAExcitation: for alpha SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha_G4DNAIonisation: for alpha SubType= 53 BuildTable= 0
+alpha_G4DNAIonisation: for alpha SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-alpha_G4DNAChargeDecrease: for alpha SubType= 56 BuildTable= 0
+alpha_G4DNAChargeDecrease: for alpha SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAElastic: for alpha+ SubType= 51 BuildTable= 0
+alpha+_G4DNAElastic: for alpha+ SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha+_G4DNAExcitation: for alpha+ SubType= 52 BuildTable= 0
+alpha+_G4DNAExcitation: for alpha+ SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAIonisation: for alpha+ SubType= 53 BuildTable= 0
+alpha+_G4DNAIonisation: for alpha+ SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-alpha+_G4DNAChargeDecrease: for alpha+ SubType= 56 BuildTable= 0
+alpha+_G4DNAChargeDecrease: for alpha+ SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAChargeIncrease: for alpha+ SubType= 57 BuildTable= 0
+alpha+_G4DNAChargeIncrease: for alpha+ SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAElastic: for helium SubType= 51 BuildTable= 0
+helium_G4DNAElastic: for helium SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-helium_G4DNAExcitation: for helium SubType= 52 BuildTable= 0
+helium_G4DNAExcitation: for helium SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAIonisation: for helium SubType= 53 BuildTable= 0
+helium_G4DNAIonisation: for helium SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-helium_G4DNAChargeIncrease: for helium SubType= 57 BuildTable= 0
+helium_G4DNAChargeIncrease: for helium SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-hydrogen_G4DNAElastic: for hydrogen SubType= 51 BuildTable= 0
+hydrogen_G4DNAElastic: for hydrogen SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-hydrogen_G4DNAExcitation: for hydrogen SubType= 52 BuildTable= 0
+hydrogen_G4DNAExcitation: for hydrogen SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-hydrogen_G4DNAIonisation: for hydrogen SubType= 53 BuildTable= 0
+hydrogen_G4DNAIonisation: for hydrogen SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd Fluo
-hydrogen_G4DNAChargeIncrease: for hydrogen SubType= 57 BuildTable= 0
+hydrogen_G4DNAChargeIncrease: for hydrogen SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
### Run 0 starts.
--> Event 0 starts.
--> Event 100 starts.
diff --git a/examples/extended/medical/dna/range/range.out b/examples/extended/medical/dna/range/range.out
index ca4f72ed13f..1267974b7d9 100644
--- a/examples/extended/medical/dna/range/range.out
+++ b/examples/extended/medical/dna/range/range.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -26,12 +22,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -91,166 +85,166 @@ PhysicsList::AddPhysicsList:
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 100 TeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreConversion : Emin= 0 eV Emax= 80 GeV
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ LivermoreConversion : Emin= 0 eV Emax= 80 GeV
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-e-_G4DNAElectronSolvation: for e- SubType= 58 BuildTable= 0
+e-_G4DNAElectronSolvation: for e- SubType=58 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAOneStepThermalizationModel_Meesungnoen2002 : Emin= 0 eV Emax= 7.4 eV
+DNAOneStepThermalizationModel_Meesungnoen2002 : Emin= 0 eV Emax= 7.4 eV
-e-_G4DNAElastic: for e- SubType= 51 BuildTable= 0
+e-_G4DNAElastic: for e- SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
+DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAExcitation: for e- SubType= 52 BuildTable= 0
+e-_G4DNAExcitation: for e- SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
+DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAIonisation: for e- SubType= 53 BuildTable= 0
+e-_G4DNAIonisation: for e- SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornIonisationModel : Emin= 0 eV Emax= 1 MeV deltaBorn FluoActive
+DNABornIonisationModel : Emin= 0 eV Emax= 1 MeV deltaBorn Fluo
-e-_G4DNAVibExcitation: for e- SubType= 54 BuildTable= 0
+e-_G4DNAVibExcitation: for e- SubType=54 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
+DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
-e-_G4DNAAttachment: for e- SubType= 55 BuildTable= 0
+e-_G4DNAAttachment: for e- SubType=55 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
+DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-proton_G4DNAElastic: for proton SubType= 51 BuildTable= 0
+proton_G4DNAElastic: for proton SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-proton_G4DNAExcitation: for proton SubType= 52 BuildTable= 0
+proton_G4DNAExcitation: for proton SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
-proton_G4DNAIonisation: for proton SubType= 53 BuildTable= 0
+proton_G4DNAIonisation: for proton SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd FluoActive
-DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd Fluo
+DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn Fluo
-proton_G4DNAChargeDecrease: for proton SubType= 56 BuildTable= 0
+proton_G4DNAChargeDecrease: for proton SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
-GenericIon_G4DNAIonisation: for GenericIon SubType= 53 BuildTable= 0
+GenericIon_G4DNAIonisation: for GenericIon SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd Fluo
-alpha_G4DNAElastic: for alpha SubType= 51 BuildTable= 0
+alpha_G4DNAElastic: for alpha SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha_G4DNAExcitation: for alpha SubType= 52 BuildTable= 0
+alpha_G4DNAExcitation: for alpha SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha_G4DNAIonisation: for alpha SubType= 53 BuildTable= 0
+alpha_G4DNAIonisation: for alpha SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-alpha_G4DNAChargeDecrease: for alpha SubType= 56 BuildTable= 0
+alpha_G4DNAChargeDecrease: for alpha SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAElastic: for alpha+ SubType= 51 BuildTable= 0
+alpha+_G4DNAElastic: for alpha+ SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha+_G4DNAExcitation: for alpha+ SubType= 52 BuildTable= 0
+alpha+_G4DNAExcitation: for alpha+ SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAIonisation: for alpha+ SubType= 53 BuildTable= 0
+alpha+_G4DNAIonisation: for alpha+ SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-alpha+_G4DNAChargeDecrease: for alpha+ SubType= 56 BuildTable= 0
+alpha+_G4DNAChargeDecrease: for alpha+ SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAChargeIncrease: for alpha+ SubType= 57 BuildTable= 0
+alpha+_G4DNAChargeIncrease: for alpha+ SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAElastic: for helium SubType= 51 BuildTable= 0
+helium_G4DNAElastic: for helium SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-helium_G4DNAExcitation: for helium SubType= 52 BuildTable= 0
+helium_G4DNAExcitation: for helium SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAIonisation: for helium SubType= 53 BuildTable= 0
+helium_G4DNAIonisation: for helium SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-helium_G4DNAChargeIncrease: for helium SubType= 57 BuildTable= 0
+helium_G4DNAChargeIncrease: for helium SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-hydrogen_G4DNAElastic: for hydrogen SubType= 51 BuildTable= 0
+hydrogen_G4DNAElastic: for hydrogen SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-hydrogen_G4DNAExcitation: for hydrogen SubType= 52 BuildTable= 0
+hydrogen_G4DNAExcitation: for hydrogen SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-hydrogen_G4DNAIonisation: for hydrogen SubType= 53 BuildTable= 0
+hydrogen_G4DNAIonisation: for hydrogen SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd Fluo
-hydrogen_G4DNAChargeIncrease: for hydrogen SubType= 57 BuildTable= 0
+hydrogen_G4DNAChargeIncrease: for hydrogen SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
======================= run summary ====================
diff --git a/examples/extended/medical/dna/slowing/slowing.out b/examples/extended/medical/dna/slowing/slowing.out
index c7486f2faf5..81b22e4eac1 100644
--- a/examples/extended/medical/dna/slowing/slowing.out
+++ b/examples/extended/medical/dna/slowing/slowing.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -26,12 +22,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -95,166 +89,166 @@ Set file name: slowing
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 100 TeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreConversion : Emin= 0 eV Emax= 80 GeV
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ LivermoreConversion : Emin= 0 eV Emax= 80 GeV
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-e-_G4DNAElectronSolvation: for e- SubType= 58 BuildTable= 0
+e-_G4DNAElectronSolvation: for e- SubType=58 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAOneStepThermalizationModel_Meesungnoen2002 : Emin= 0 eV Emax= 7.4 eV
+DNAOneStepThermalizationModel_Meesungnoen2002 : Emin= 0 eV Emax= 7.4 eV
-e-_G4DNAElastic: for e- SubType= 51 BuildTable= 0
+e-_G4DNAElastic: for e- SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
+DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAExcitation: for e- SubType= 52 BuildTable= 0
+e-_G4DNAExcitation: for e- SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
+DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAIonisation: for e- SubType= 53 BuildTable= 0
+e-_G4DNAIonisation: for e- SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornIonisationModel : Emin= 0 eV Emax= 1 MeV deltaBorn FluoActive
+DNABornIonisationModel : Emin= 0 eV Emax= 1 MeV deltaBorn Fluo
-e-_G4DNAVibExcitation: for e- SubType= 54 BuildTable= 0
+e-_G4DNAVibExcitation: for e- SubType=54 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
+DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
-e-_G4DNAAttachment: for e- SubType= 55 BuildTable= 0
+e-_G4DNAAttachment: for e- SubType=55 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
+DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-proton_G4DNAElastic: for proton SubType= 51 BuildTable= 0
+proton_G4DNAElastic: for proton SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-proton_G4DNAExcitation: for proton SubType= 52 BuildTable= 0
+proton_G4DNAExcitation: for proton SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
-proton_G4DNAIonisation: for proton SubType= 53 BuildTable= 0
+proton_G4DNAIonisation: for proton SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd FluoActive
-DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd Fluo
+DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn Fluo
-proton_G4DNAChargeDecrease: for proton SubType= 56 BuildTable= 0
+proton_G4DNAChargeDecrease: for proton SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
-GenericIon_G4DNAIonisation: for GenericIon SubType= 53 BuildTable= 0
+GenericIon_G4DNAIonisation: for GenericIon SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd Fluo
-alpha_G4DNAElastic: for alpha SubType= 51 BuildTable= 0
+alpha_G4DNAElastic: for alpha SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha_G4DNAExcitation: for alpha SubType= 52 BuildTable= 0
+alpha_G4DNAExcitation: for alpha SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha_G4DNAIonisation: for alpha SubType= 53 BuildTable= 0
+alpha_G4DNAIonisation: for alpha SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-alpha_G4DNAChargeDecrease: for alpha SubType= 56 BuildTable= 0
+alpha_G4DNAChargeDecrease: for alpha SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAElastic: for alpha+ SubType= 51 BuildTable= 0
+alpha+_G4DNAElastic: for alpha+ SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha+_G4DNAExcitation: for alpha+ SubType= 52 BuildTable= 0
+alpha+_G4DNAExcitation: for alpha+ SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAIonisation: for alpha+ SubType= 53 BuildTable= 0
+alpha+_G4DNAIonisation: for alpha+ SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-alpha+_G4DNAChargeDecrease: for alpha+ SubType= 56 BuildTable= 0
+alpha+_G4DNAChargeDecrease: for alpha+ SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAChargeIncrease: for alpha+ SubType= 57 BuildTable= 0
+alpha+_G4DNAChargeIncrease: for alpha+ SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAElastic: for helium SubType= 51 BuildTable= 0
+helium_G4DNAElastic: for helium SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-helium_G4DNAExcitation: for helium SubType= 52 BuildTable= 0
+helium_G4DNAExcitation: for helium SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAIonisation: for helium SubType= 53 BuildTable= 0
+helium_G4DNAIonisation: for helium SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-helium_G4DNAChargeIncrease: for helium SubType= 57 BuildTable= 0
+helium_G4DNAChargeIncrease: for helium SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-hydrogen_G4DNAElastic: for hydrogen SubType= 51 BuildTable= 0
+hydrogen_G4DNAElastic: for hydrogen SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-hydrogen_G4DNAExcitation: for hydrogen SubType= 52 BuildTable= 0
+hydrogen_G4DNAExcitation: for hydrogen SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-hydrogen_G4DNAIonisation: for hydrogen SubType= 53 BuildTable= 0
+hydrogen_G4DNAIonisation: for hydrogen SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd Fluo
-hydrogen_G4DNAChargeIncrease: for hydrogen SubType= 57 BuildTable= 0
+hydrogen_G4DNAChargeIncrease: for hydrogen SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
### Run 0 starts.
... open Root analysis file : slowing.root - done
--> Event 0 starts.
diff --git a/examples/extended/medical/dna/spower/spower.out b/examples/extended/medical/dna/spower/spower.out
index 2cb80460bf5..5292d494650 100644
--- a/examples/extended/medical/dna/spower/spower.out
+++ b/examples/extended/medical/dna/spower/spower.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -26,12 +22,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -89,162 +83,162 @@ PhysicsList::AddPhysicsList:
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 100 TeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreConversion : Emin= 0 eV Emax= 80 GeV
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ LivermoreConversion : Emin= 0 eV Emax= 80 GeV
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-e-_G4DNAElastic: for e- SubType= 51 BuildTable= 0
+e-_G4DNAElastic: for e- SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
+DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAExcitation: for e- SubType= 52 BuildTable= 0
+e-_G4DNAExcitation: for e- SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornExcitationModel : Emin= 0 eV Emax= 100 TeV
+DNABornExcitationModel : Emin= 0 eV Emax= 100 TeV
-e-_G4DNAIonisation: for e- SubType= 53 BuildTable= 0
+e-_G4DNAIonisation: for e- SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornIonisationModel : Emin= 0 eV Emax= 100 TeV deltaBorn FluoActive
+DNABornIonisationModel : Emin= 0 eV Emax= 100 TeV deltaBorn Fluo
-e-_G4DNAVibExcitation: for e- SubType= 54 BuildTable= 0
+e-_G4DNAVibExcitation: for e- SubType=54 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
+DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
-e-_G4DNAAttachment: for e- SubType= 55 BuildTable= 0
+e-_G4DNAAttachment: for e- SubType=55 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
+DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-proton_G4DNAElastic: for proton SubType= 51 BuildTable= 0
+proton_G4DNAElastic: for proton SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-proton_G4DNAExcitation: for proton SubType= 52 BuildTable= 0
+proton_G4DNAExcitation: for proton SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
-proton_G4DNAIonisation: for proton SubType= 53 BuildTable= 0
+proton_G4DNAIonisation: for proton SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 500 keV deltaRudd FluoActive
-DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 500 keV deltaRudd Fluo
+DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn Fluo
-proton_G4DNAChargeDecrease: for proton SubType= 56 BuildTable= 0
+proton_G4DNAChargeDecrease: for proton SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 TeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 TeV
-GenericIon_G4DNAIonisation: for GenericIon SubType= 53 BuildTable= 0
+GenericIon_G4DNAIonisation: for GenericIon SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd Fluo
-alpha_G4DNAElastic: for alpha SubType= 51 BuildTable= 0
+alpha_G4DNAElastic: for alpha SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha_G4DNAExcitation: for alpha SubType= 52 BuildTable= 0
+alpha_G4DNAExcitation: for alpha SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 100 TeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 100 TeV
-alpha_G4DNAIonisation: for alpha SubType= 53 BuildTable= 0
+alpha_G4DNAIonisation: for alpha SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd Fluo
-alpha_G4DNAChargeDecrease: for alpha SubType= 56 BuildTable= 0
+alpha_G4DNAChargeDecrease: for alpha SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 TeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 TeV
-alpha+_G4DNAElastic: for alpha+ SubType= 51 BuildTable= 0
+alpha+_G4DNAElastic: for alpha+ SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha+_G4DNAExcitation: for alpha+ SubType= 52 BuildTable= 0
+alpha+_G4DNAExcitation: for alpha+ SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 100 TeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 100 TeV
-alpha+_G4DNAIonisation: for alpha+ SubType= 53 BuildTable= 0
+alpha+_G4DNAIonisation: for alpha+ SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd Fluo
-alpha+_G4DNAChargeDecrease: for alpha+ SubType= 56 BuildTable= 0
+alpha+_G4DNAChargeDecrease: for alpha+ SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 TeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 TeV
-alpha+_G4DNAChargeIncrease: for alpha+ SubType= 57 BuildTable= 0
+alpha+_G4DNAChargeIncrease: for alpha+ SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 TeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 TeV
-helium_G4DNAElastic: for helium SubType= 51 BuildTable= 0
+helium_G4DNAElastic: for helium SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-helium_G4DNAExcitation: for helium SubType= 52 BuildTable= 0
+helium_G4DNAExcitation: for helium SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 100 TeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 100 TeV
-helium_G4DNAIonisation: for helium SubType= 53 BuildTable= 0
+helium_G4DNAIonisation: for helium SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd Fluo
-helium_G4DNAChargeIncrease: for helium SubType= 57 BuildTable= 0
+helium_G4DNAChargeIncrease: for helium SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 TeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 TeV
-hydrogen_G4DNAElastic: for hydrogen SubType= 51 BuildTable= 0
+hydrogen_G4DNAElastic: for hydrogen SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-hydrogen_G4DNAExcitation: for hydrogen SubType= 52 BuildTable= 0
+hydrogen_G4DNAExcitation: for hydrogen SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 100 TeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 100 TeV
-hydrogen_G4DNAIonisation: for hydrogen SubType= 53 BuildTable= 0
+hydrogen_G4DNAIonisation: for hydrogen SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd Fluo
-hydrogen_G4DNAChargeIncrease: for hydrogen SubType= 57 BuildTable= 0
+hydrogen_G4DNAChargeIncrease: for hydrogen SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 TeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 TeV
======================== run summary =====================
diff --git a/examples/extended/medical/dna/svalue/svalue.out b/examples/extended/medical/dna/svalue/svalue.out
index 01f9ffea4ed..5685c50b4da 100644
--- a/examples/extended/medical/dna/svalue/svalue.out
+++ b/examples/extended/medical/dna/svalue/svalue.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -26,12 +22,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -81,98 +75,98 @@ PhysicsList::AddPhysicsList:
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 100 TeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreConversion : Emin= 0 eV Emax= 80 GeV
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ LivermoreConversion : Emin= 0 eV Emax= 80 GeV
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-e-_G4DNAElectronSolvation: for e- SubType= 58 BuildTable= 0
+e-_G4DNAElectronSolvation: for e- SubType=58 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAOneStepThermalizationModel : Emin= 0 eV Emax= 7.4 eV
+DNAOneStepThermalizationModel : Emin= 0 eV Emax= 7.4 eV
-e-_G4DNAElastic: for e- SubType= 51 BuildTable= 0
+e-_G4DNAElastic: for e- SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
+DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAExcitation: for e- SubType= 52 BuildTable= 0
+e-_G4DNAExcitation: for e- SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
+DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAIonisation: for e- SubType= 53 BuildTable= 0
+e-_G4DNAIonisation: for e- SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornIonisationModel : Emin= 0 eV Emax= 100 TeV deltaBorn FluoActive
+DNABornIonisationModel : Emin= 0 eV Emax= 100 TeV deltaBorn Fluo
-e-_G4DNAVibExcitation: for e- SubType= 54 BuildTable= 0
+e-_G4DNAVibExcitation: for e- SubType=54 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
+DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
-e-_G4DNAAttachment: for e- SubType= 55 BuildTable= 0
+e-_G4DNAAttachment: for e- SubType=55 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
+DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-proton_G4DNAElastic: for proton SubType= 51 BuildTable= 0
+proton_G4DNAElastic: for proton SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-proton_G4DNAExcitation: for proton SubType= 52 BuildTable= 0
+proton_G4DNAExcitation: for proton SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
-proton_G4DNAIonisation: for proton SubType= 53 BuildTable= 0
+proton_G4DNAIonisation: for proton SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 500 keV deltaRudd FluoActive
-DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 500 keV deltaRudd Fluo
+DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn Fluo
-proton_G4DNAChargeDecrease: for proton SubType= 56 BuildTable= 0
+proton_G4DNAChargeDecrease: for proton SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
-GenericIon_G4DNAIonisation: for GenericIon SubType= 53 BuildTable= 0
+GenericIon_G4DNAIonisation: for GenericIon SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd Fluo
=======================================================================
====== Radioactive Decay Physics Parameters ========
=======================================================================
@@ -188,73 +182,73 @@ Check EM cuts disabled for atomic de-excitation 1
Use Bearden atomic level energies 0
=======================================================================
-alpha_G4DNAElastic: for alpha SubType= 51 BuildTable= 0
+alpha_G4DNAElastic: for alpha SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha_G4DNAExcitation: for alpha SubType= 52 BuildTable= 0
+alpha_G4DNAExcitation: for alpha SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha_G4DNAIonisation: for alpha SubType= 53 BuildTable= 0
+alpha_G4DNAIonisation: for alpha SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd Fluo
-alpha_G4DNAChargeDecrease: for alpha SubType= 56 BuildTable= 0
+alpha_G4DNAChargeDecrease: for alpha SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAElastic: for alpha+ SubType= 51 BuildTable= 0
+alpha+_G4DNAElastic: for alpha+ SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha+_G4DNAExcitation: for alpha+ SubType= 52 BuildTable= 0
+alpha+_G4DNAExcitation: for alpha+ SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAIonisation: for alpha+ SubType= 53 BuildTable= 0
+alpha+_G4DNAIonisation: for alpha+ SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd Fluo
-alpha+_G4DNAChargeDecrease: for alpha+ SubType= 56 BuildTable= 0
+alpha+_G4DNAChargeDecrease: for alpha+ SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAChargeIncrease: for alpha+ SubType= 57 BuildTable= 0
+alpha+_G4DNAChargeIncrease: for alpha+ SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAElastic: for helium SubType= 51 BuildTable= 0
+helium_G4DNAElastic: for helium SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-helium_G4DNAExcitation: for helium SubType= 52 BuildTable= 0
+helium_G4DNAExcitation: for helium SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAIonisation: for helium SubType= 53 BuildTable= 0
+helium_G4DNAIonisation: for helium SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd Fluo
-helium_G4DNAChargeIncrease: for helium SubType= 57 BuildTable= 0
+helium_G4DNAChargeIncrease: for helium SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-hydrogen_G4DNAElastic: for hydrogen SubType= 51 BuildTable= 0
+hydrogen_G4DNAElastic: for hydrogen SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-hydrogen_G4DNAExcitation: for hydrogen SubType= 52 BuildTable= 0
+hydrogen_G4DNAExcitation: for hydrogen SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-hydrogen_G4DNAIonisation: for hydrogen SubType= 53 BuildTable= 0
+hydrogen_G4DNAIonisation: for hydrogen SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 100 TeV deltaRudd Fluo
-hydrogen_G4DNAChargeIncrease: for hydrogen SubType= 57 BuildTable= 0
+hydrogen_G4DNAChargeIncrease: for hydrogen SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
========= Table of registered couples ==============================
diff --git a/examples/extended/medical/dna/wholeNuclearDNA/wholeNuclearDNA.out b/examples/extended/medical/dna/wholeNuclearDNA/wholeNuclearDNA.out
index a260050aeef..4a47d8c16bf 100644
--- a/examples/extended/medical/dna/wholeNuclearDNA/wholeNuclearDNA.out
+++ b/examples/extended/medical/dna/wholeNuclearDNA/wholeNuclearDNA.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -73,12 +69,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -112,165 +106,165 @@ Some /vis commands (optionally) take a string to specify colour.
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 100 TeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreConversion : Emin= 0 eV Emax= 80 GeV
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ LivermoreConversion : Emin= 0 eV Emax= 80 GeV
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-e-_G4DNAElectronSolvation: for e- SubType= 58 BuildTable= 0
+e-_G4DNAElectronSolvation: for e- SubType=58 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAOneStepThermalizationModel_Meesungnoen2002 : Emin= 0 eV Emax= 7.4 eV
+DNAOneStepThermalizationModel_Meesungnoen2002 : Emin= 0 eV Emax= 7.4 eV
-e-_G4DNAElastic: for e- SubType= 51 BuildTable= 0
+e-_G4DNAElastic: for e- SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
+DNAChampionElasticModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAExcitation: for e- SubType= 52 BuildTable= 0
+e-_G4DNAExcitation: for e- SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
+DNABornExcitationModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAIonisation: for e- SubType= 53 BuildTable= 0
+e-_G4DNAIonisation: for e- SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNABornIonisationModel : Emin= 0 eV Emax= 1 MeV deltaBorn FluoActive
+DNABornIonisationModel : Emin= 0 eV Emax= 1 MeV deltaBorn Fluo
-e-_G4DNAVibExcitation: for e- SubType= 54 BuildTable= 0
+e-_G4DNAVibExcitation: for e- SubType=54 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
+DNASancheExcitationModel : Emin= 0 eV Emax= 100 eV
-e-_G4DNAAttachment: for e- SubType= 55 BuildTable= 0
+e-_G4DNAAttachment: for e- SubType=55 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
+DNAMeltonAttachmentModel : Emin= 0 eV Emax= 13 eV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-proton_G4DNAElastic: for proton SubType= 51 BuildTable= 0
+proton_G4DNAElastic: for proton SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-proton_G4DNAExcitation: for proton SubType= 52 BuildTable= 0
+proton_G4DNAExcitation: for proton SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
-proton_G4DNAIonisation: for proton SubType= 53 BuildTable= 0
+proton_G4DNAIonisation: for proton SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd FluoActive
-DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd Fluo
+DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn Fluo
-proton_G4DNAChargeDecrease: for proton SubType= 56 BuildTable= 0
+proton_G4DNAChargeDecrease: for proton SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
-GenericIon_G4DNAIonisation: for GenericIon SubType= 53 BuildTable= 0
+GenericIon_G4DNAIonisation: for GenericIon SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd Fluo
-alpha_G4DNAElastic: for alpha SubType= 51 BuildTable= 0
+alpha_G4DNAElastic: for alpha SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha_G4DNAExcitation: for alpha SubType= 52 BuildTable= 0
+alpha_G4DNAExcitation: for alpha SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha_G4DNAIonisation: for alpha SubType= 53 BuildTable= 0
+alpha_G4DNAIonisation: for alpha SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-alpha_G4DNAChargeDecrease: for alpha SubType= 56 BuildTable= 0
+alpha_G4DNAChargeDecrease: for alpha SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAElastic: for alpha+ SubType= 51 BuildTable= 0
+alpha+_G4DNAElastic: for alpha+ SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha+_G4DNAExcitation: for alpha+ SubType= 52 BuildTable= 0
+alpha+_G4DNAExcitation: for alpha+ SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAIonisation: for alpha+ SubType= 53 BuildTable= 0
+alpha+_G4DNAIonisation: for alpha+ SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-alpha+_G4DNAChargeDecrease: for alpha+ SubType= 56 BuildTable= 0
+alpha+_G4DNAChargeDecrease: for alpha+ SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAChargeIncrease: for alpha+ SubType= 57 BuildTable= 0
+alpha+_G4DNAChargeIncrease: for alpha+ SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAElastic: for helium SubType= 51 BuildTable= 0
+helium_G4DNAElastic: for helium SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-helium_G4DNAExcitation: for helium SubType= 52 BuildTable= 0
+helium_G4DNAExcitation: for helium SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAIonisation: for helium SubType= 53 BuildTable= 0
+helium_G4DNAIonisation: for helium SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-helium_G4DNAChargeIncrease: for helium SubType= 57 BuildTable= 0
+helium_G4DNAChargeIncrease: for helium SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-hydrogen_G4DNAElastic: for hydrogen SubType= 51 BuildTable= 0
+hydrogen_G4DNAElastic: for hydrogen SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-hydrogen_G4DNAExcitation: for hydrogen SubType= 52 BuildTable= 0
+hydrogen_G4DNAExcitation: for hydrogen SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-hydrogen_G4DNAIonisation: for hydrogen SubType= 53 BuildTable= 0
+hydrogen_G4DNAIonisation: for hydrogen SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd Fluo
-hydrogen_G4DNAChargeIncrease: for hydrogen SubType= 57 BuildTable= 0
+hydrogen_G4DNAChargeIncrease: for hydrogen SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
Graphics systems deleted.
Visualization Manager deleting...
diff --git a/examples/extended/medical/dna/wvalue/wvalue.out b/examples/extended/medical/dna/wvalue/wvalue.out
index b120e1c7b41..a488d6bd07a 100644
--- a/examples/extended/medical/dna/wvalue/wvalue.out
+++ b/examples/extended/medical/dna/wvalue/wvalue.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -26,12 +22,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -99,158 +93,158 @@ PhysicsList::AddPhysicsList:
-------- WWWW -------- G4Exception-END --------- WWWW -------
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreCompton : Emin= 0 eV Emax= 100 TeV FluoActive
+ LivermoreCompton : Emin= 0 eV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreConversion : Emin= 0 eV Emax= 80 GeV
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ LivermoreConversion : Emin= 0 eV Emax= 80 GeV
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-e-_G4DNAElectronSolvation: for e- SubType= 58 BuildTable= 0
+e-_G4DNAElectronSolvation: for e- SubType=58 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAOneStepThermalizationModel : Emin= 0 eV Emax= 10 eV
+DNAOneStepThermalizationModel : Emin= 0 eV Emax= 10 eV
-e-_G4DNAElastic: for e- SubType= 51 BuildTable= 0
+e-_G4DNAElastic: for e- SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAUeharaScreenedRutherfordElasticModel : Emin= 0 eV Emax= 1 MeV
+DNAUeharaScreenedRutherfordElasticModel : Emin= 0 eV Emax= 1 MeV
-e-_G4DNAExcitation: for e- SubType= 52 BuildTable= 0
+e-_G4DNAExcitation: for e- SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAEmfietzoglouExcitationModel : Emin= 0 eV Emax= 10 keV
+DNAEmfietzoglouExcitationModel : Emin= 0 eV Emax= 10 keV
-e-_G4DNAIonisation: for e- SubType= 53 BuildTable= 0
+e-_G4DNAIonisation: for e- SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAEmfietzoglouIonisationModel : Emin= 0 eV Emax= 10 keV deltaBorn FluoActive
+DNAEmfietzoglouIonisationModel : Emin= 0 eV Emax= 10 keV deltaBorn Fluo
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-proton_G4DNAElastic: for proton SubType= 51 BuildTable= 0
+proton_G4DNAElastic: for proton SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-proton_G4DNAExcitation: for proton SubType= 52 BuildTable= 0
+proton_G4DNAExcitation: for proton SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNABornExcitationModel : Emin= 500 keV Emax= 100 MeV
-proton_G4DNAIonisation: for proton SubType= 53 BuildTable= 0
+proton_G4DNAIonisation: for proton SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd FluoActive
-DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 500 keV deltaRudd Fluo
+DNABornIonisationModel : Emin= 500 keV Emax= 100 MeV deltaBorn Fluo
-proton_G4DNAChargeDecrease: for proton SubType= 56 BuildTable= 0
+proton_G4DNAChargeDecrease: for proton SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 100 MeV
-GenericIon_G4DNAIonisation: for GenericIon SubType= 53 BuildTable= 0
+GenericIon_G4DNAIonisation: for GenericIon SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd FluoActive
+DNARuddIonisationExtendedModel : Emin= 0 eV Emax= 1 TeV deltaRudd Fluo
-alpha_G4DNAElastic: for alpha SubType= 51 BuildTable= 0
+alpha_G4DNAElastic: for alpha SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha_G4DNAExcitation: for alpha SubType= 52 BuildTable= 0
+alpha_G4DNAExcitation: for alpha SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha_G4DNAIonisation: for alpha SubType= 53 BuildTable= 0
+alpha_G4DNAIonisation: for alpha SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-alpha_G4DNAChargeDecrease: for alpha SubType= 56 BuildTable= 0
+alpha_G4DNAChargeDecrease: for alpha SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAElastic: for alpha+ SubType= 51 BuildTable= 0
+alpha+_G4DNAElastic: for alpha+ SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-alpha+_G4DNAExcitation: for alpha+ SubType= 52 BuildTable= 0
+alpha+_G4DNAExcitation: for alpha+ SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAIonisation: for alpha+ SubType= 53 BuildTable= 0
+alpha+_G4DNAIonisation: for alpha+ SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-alpha+_G4DNAChargeDecrease: for alpha+ SubType= 56 BuildTable= 0
+alpha+_G4DNAChargeDecrease: for alpha+ SubType=56 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeDecreaseModel : Emin= 0 eV Emax= 400 MeV
-alpha+_G4DNAChargeIncrease: for alpha+ SubType= 57 BuildTable= 0
+alpha+_G4DNAChargeIncrease: for alpha+ SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAElastic: for helium SubType= 51 BuildTable= 0
+helium_G4DNAElastic: for helium SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-helium_G4DNAExcitation: for helium SubType= 52 BuildTable= 0
+helium_G4DNAExcitation: for helium SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 400 MeV
-helium_G4DNAIonisation: for helium SubType= 53 BuildTable= 0
+helium_G4DNAIonisation: for helium SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 400 MeV deltaRudd Fluo
-helium_G4DNAChargeIncrease: for helium SubType= 57 BuildTable= 0
+helium_G4DNAChargeIncrease: for helium SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 400 MeV
-hydrogen_G4DNAElastic: for hydrogen SubType= 51 BuildTable= 0
+hydrogen_G4DNAElastic: for hydrogen SubType=51 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
+ DNAIonElasticModel : Emin= 0 eV Emax= 1 MeV
-hydrogen_G4DNAExcitation: for hydrogen SubType= 52 BuildTable= 0
+hydrogen_G4DNAExcitation: for hydrogen SubType=52 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
+DNAMillerGreenExcitationModel : Emin= 0 eV Emax= 500 keV
-hydrogen_G4DNAIonisation: for hydrogen SubType= 53 BuildTable= 0
+hydrogen_G4DNAIonisation: for hydrogen SubType=53 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd FluoActive
+DNARuddIonisationModel : Emin= 0 eV Emax= 100 MeV deltaRudd Fluo
-hydrogen_G4DNAChargeIncrease: for hydrogen SubType= 57 BuildTable= 0
+hydrogen_G4DNAChargeIncrease: for hydrogen SubType=57 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
+DNADingfelderChargeIncreaseModel : Emin= 0 eV Emax= 100 MeV
======================== run summary =====================
diff --git a/examples/extended/medical/electronScattering/electronScattering.out b/examples/extended/medical/electronScattering/electronScattering.out
index 231eda1f534..099ea188dc2 100644
--- a/examples/extended/medical/electronScattering/electronScattering.out
+++ b/examples/extended/medical/electronScattering/electronScattering.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -257,18 +253,18 @@ Start closing geometry.
G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Total memory consumed for geometry optimisation: 0 kByte
- Total CPU time elapsed for geometry optimisation: 0 seconds
+ Total CPU time elapsed for geometry optimisation: 0.01 seconds
Voxelisation: top CPU users:
Percent Total CPU System CPU Memory Volume
------- ---------- ---------- -------- ----------
- 0.00 0.00 0.00 0k Frame
+ 100.00 0.01 0.00 0k Frame
0.00 0.00 0.00 0k Gas
Voxelisation: top memory users:
Percent Memory Heads Nodes Pointers Total CPU Volume
------- -------- ------ ------ -------- ---------- ----------
- 55.71 0k 2 2 9 0.00 Frame
+ 55.71 0k 2 2 9 0.01 Frame
44.29 0k 1 3 4 0.00 Gas
### Run 0 starts.
@@ -290,7 +286,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 100000
- User=5.740000s Real=5.862421s Sys=0.000000s
+ User=5.810000s Real=5.839501s Sys=0.000000s
======================== run summary ======================
diff --git a/examples/extended/medical/electronScattering2/electronScattering2.out b/examples/extended/medical/electronScattering2/electronScattering2.out
index b6ddae5602a..f0c5d355375 100644
--- a/examples/extended/medical/electronScattering2/electronScattering2.out
+++ b/examples/extended/medical/electronScattering2/electronScattering2.out
@@ -1,14 +1,10 @@
Starting run with
-Macro File : /mnt/build/jenkins/workspace/g4-cc7/COMPILER/gcc63/LABEL/cc7/THREAD/Seq/release/RelWithDebInfo/10-04-ref-10_branch/g4tags-dev/examples/extended/medical/electronScattering2/electronScattering2.in
+Macro File : /mnt/build/jenkins/workspace/g4n-centos7/COMPILER/gcc63/LABEL/centos7/THREAD/Seq/geant4/examples/extended/medical/electronScattering2/electronScattering2.in
Starting Seed : 1
Output File : output.csv
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -176,371 +172,371 @@ Attempting to add multiple times the same sensitive detector ("MyDetector") is n
-------- WWWW -------- G4Exception-END --------- WWWW -------
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
### Run 0 starts.
--> Event 0 starts.
Number of Events Processed:20000
@@ -778,3 +774,4 @@ Number of Events Processed:20000
230 0.0080671 0.0019407 10 2
231 0.0066023 0.0017454 9 2
232 0.010271 0.0048539 13 6
+### deleting electronFilter 0xf023e0
diff --git a/examples/extended/medical/fanoCavity/fanoCavity.out b/examples/extended/medical/fanoCavity/fanoCavity.out
index 0858e58e6e7..f029b1f04ec 100644
--- a/examples/extended/medical/fanoCavity/fanoCavity.out
+++ b/examples/extended/medical/fanoCavity/fanoCavity.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -155,64 +151,64 @@ PhysicsList::SetCuts:CutLength : 10 km
/run/printProgress 1000
/run/beamOn 4000
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 10 GeV in 94 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PhotoElectric : Emin= 0 eV Emax= 10 GeV AngularGenSauterGavrila
+ PhotoElectric : Emin= 0 eV Emax= 10 GeV SauterGavrila
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 10 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 10 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 10 GeV in 80 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- myKlein-Nishina : Emin= 0 eV Emax= 10 GeV
+ myKlein-Nishina : Emin= 0 eV Emax= 10 GeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 10 GeV, 25 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 10 GeV, 25 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 10 GeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 10 GeV ModifiedTsai
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 10 GeV Table with 160 bins Emin= 100 eV Emax= 10 GeV
+ UrbanMsc : Emin= 0 eV Emax= 10 GeV Nbins=160 100 eV - 10 GeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 10 eV to 10 GeV in 180 bins
- Lambda tables from threshold to 10 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- myMollerBhabha : Emin= 0 eV Emax= 10 GeV
+ myMollerBhabha : Emin= 0 eV Emax= 10 GeV
CSDA range table up to 10 GeV in 180 bins
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 10 GeV Table with 160 bins Emin= 100 eV Emax= 10 GeV
+ UrbanMsc : Emin= 0 eV Emax= 10 GeV Nbins=160 100 eV - 10 GeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 10 eV to 10 GeV in 180 bins
- Lambda tables from threshold to 10 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- myMollerBhabha : Emin= 0 eV Emax= 10 GeV
+ myMollerBhabha : Emin= 0 eV Emax= 10 GeV
CSDA range table up to 10 GeV in 180 bins
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 10 GeV
+ eplus2gg : Emin= 0 eV Emax= 10 GeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 10 GeV Table with 160 bins Emin= 100 eV Emax= 10 GeV
+ UrbanMsc : Emin= 0 eV Emax= 10 GeV Nbins=160 100 eV - 10 GeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 10 eV to 10 GeV in 180 bins
- Lambda tables from threshold to 10 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 10 GeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 10 GeV
CSDA range table up to 10 GeV in 180 bins
========= Table of registered couples ==============================
@@ -255,7 +251,7 @@ Index : 2 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 4000
- User=15.020000s Real=15.536507s Sys=0.010000s
+ User=15.110000s Real=15.145430s Sys=0.010000s
======================== run summary ======================
diff --git a/examples/extended/medical/fanoCavity2/fanoCavity2.out b/examples/extended/medical/fanoCavity2/fanoCavity2.out
index 45e8250aef4..6536feafea4 100644
--- a/examples/extended/medical/fanoCavity2/fanoCavity2.out
+++ b/examples/extended/medical/fanoCavity2/fanoCavity2.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -163,64 +159,64 @@ physicsList->setCut() start.
#
/run/beamOn 40000
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 10 GeV in 94 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PhotoElectric : Emin= 0 eV Emax= 10 GeV AngularGenSauterGavrila
+ PhotoElectric : Emin= 0 eV Emax= 10 GeV SauterGavrila
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 10 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 10 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 10 GeV in 80 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 10 GeV
+ Klein-Nishina : Emin= 0 eV Emax= 10 GeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 10 GeV, 25 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 10 GeV, 25 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 10 GeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 10 GeV ModifiedTsai
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 10 GeV Table with 160 bins Emin= 100 eV Emax= 10 GeV
+ UrbanMsc : Emin= 0 eV Emax= 10 GeV Nbins=160 100 eV - 10 GeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 10 eV to 10 GeV in 180 bins
- Lambda tables from threshold to 10 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- myMollerBhabha : Emin= 0 eV Emax= 10 GeV
+ myMollerBhabha : Emin= 0 eV Emax= 10 GeV
CSDA range table up to 10 GeV in 180 bins
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 3, latDisplacement: 1, skin= 1, geomFactor= 2.5
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 3, latDisp: 1, skin= 1, geomFactor= 2.5
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 10 GeV Table with 160 bins Emin= 100 eV Emax= 10 GeV
+ UrbanMsc : Emin= 0 eV Emax= 10 GeV Nbins=160 100 eV - 10 GeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 10 eV to 10 GeV in 180 bins
- Lambda tables from threshold to 10 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- myMollerBhabha : Emin= 0 eV Emax= 10 GeV
+ myMollerBhabha : Emin= 0 eV Emax= 10 GeV
CSDA range table up to 10 GeV in 180 bins
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 10 GeV
+ eplus2gg : Emin= 0 eV Emax= 10 GeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 10 GeV Table with 160 bins Emin= 100 eV Emax= 10 GeV
+ UrbanMsc : Emin= 0 eV Emax= 10 GeV Nbins=160 100 eV - 10 GeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 10 eV to 10 GeV in 180 bins
- Lambda tables from threshold to 10 GeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 10 GeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 10 GeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 10 GeV
CSDA range table up to 10 GeV in 180 bins
Region -- -- appears in world volume
@@ -299,7 +295,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 40000
- User=2.970000s Real=2.974495s Sys=0.000000s
+ User=2.860000s Real=2.864262s Sys=0.000000s
Process calls frequency ---> msc= 639185 eIoni= 260483 Transportation= 22691
diff --git a/examples/extended/optical/History b/examples/extended/optical/History
index ece3da7b5a2..ac0cfc97411 100644
--- a/examples/extended/optical/History
+++ b/examples/extended/optical/History
@@ -14,6 +14,9 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+31 January 2019: I. Hrivnacova (exOptical-V10-04-03)
+- Merged GitHub PR #4: all Boolean operators now return G4bool.
+
30 November 2018: I. Hrivnacova (exOptical-V10-04-02)
- Fixed link in .README.txt
diff --git a/examples/extended/optical/LXe/LXe.out b/examples/extended/optical/LXe/LXe.out
index 96d9bae4ab5..d6b19e07e50 100644
--- a/examples/extended/optical/LXe/LXe.out
+++ b/examples/extended/optical/LXe/LXe.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -29,12 +25,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -80,395 +74,395 @@ Construction /LXeDet/scintSD
DefaultRegionForTheWorld 1 0 0
### === Ignore cuts flag: 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEPComptonModel : Emin= 0 eV Emax= 20 MeV FluoActive
- KleinNishina : Emin= 20 MeV Emax= 100 TeV FluoActive
+ LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo
+ KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PenConversion : Emin= 0 eV Emax= 20 MeV
- BetheHeitler : Emin= 20 MeV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ PenConversion : Emin= 0 eV Emax= 20 MeV
+ BetheHeitler : Emin= 20 MeV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
- MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
+ LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
+ MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PenIoni : Emin= 0 eV Emax= 100 keV
- MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
+ PenIoni : Emin= 0 eV Emax= 100 keV
+ MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -519,6 +513,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -624,6 +619,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -760,6 +756,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -821,7 +818,7 @@ Unaccounted for photons in this event : 0
Run terminated.
Run Summary
Number of events processed : 1
- User=0.080000s Real=0.086431s Sys=0.000000s
+ User=0.050000s Real=0.057134s Sys=0.000000s
======================== run summary ======================
The run was 1 events.
@@ -970,7 +967,7 @@ Unaccounted for photons in this event : 0
Run terminated.
Run Summary
Number of events processed : 10
- User=0.700000s Real=0.743748s Sys=0.010000s
+ User=0.540000s Real=0.546025s Sys=0.010000s
======================== run summary ======================
The run was 10 events.
diff --git a/examples/extended/optical/LXe/include/LXePMTHit.hh b/examples/extended/optical/LXe/include/LXePMTHit.hh
index e28639ef5b9..8d11612a2ca 100644
--- a/examples/extended/optical/LXe/include/LXePMTHit.hh
+++ b/examples/extended/optical/LXe/include/LXePMTHit.hh
@@ -53,7 +53,7 @@ class LXePMTHit : public G4VHit
LXePMTHit(const LXePMTHit &right);
const LXePMTHit& operator=(const LXePMTHit &right);
- G4int operator==(const LXePMTHit &right) const;
+ G4bool operator==(const LXePMTHit &right) const;
inline void *operator new(size_t);
inline void operator delete(void *aHit);
diff --git a/examples/extended/optical/LXe/include/LXeScintHit.hh b/examples/extended/optical/LXe/include/LXeScintHit.hh
index 00d2cc28c6f..7932a335435 100644
--- a/examples/extended/optical/LXe/include/LXeScintHit.hh
+++ b/examples/extended/optical/LXe/include/LXeScintHit.hh
@@ -51,7 +51,7 @@ class LXeScintHit : public G4VHit
virtual ~LXeScintHit();
LXeScintHit(const LXeScintHit &right);
const LXeScintHit& operator=(const LXeScintHit &right);
- G4int operator==(const LXeScintHit &right) const;
+ G4bool operator==(const LXeScintHit &right) const;
inline void *operator new(size_t);
inline void operator delete(void *aHit);
diff --git a/examples/extended/optical/LXe/src/LXePMTHit.cc b/examples/extended/optical/LXe/src/LXePMTHit.cc
index fde9f6d69d7..3f94e51a830 100644
--- a/examples/extended/optical/LXe/src/LXePMTHit.cc
+++ b/examples/extended/optical/LXe/src/LXePMTHit.cc
@@ -69,7 +69,7 @@ const LXePMTHit& LXePMTHit::operator=(const LXePMTHit &right){
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-G4int LXePMTHit::operator==(const LXePMTHit &right) const{
+G4bool LXePMTHit::operator==(const LXePMTHit &right) const{
return (fPmtNumber==right.fPmtNumber);
}
diff --git a/examples/extended/optical/LXe/src/LXeScintHit.cc b/examples/extended/optical/LXe/src/LXeScintHit.cc
index facebe5020e..98b3b7678b9 100644
--- a/examples/extended/optical/LXe/src/LXeScintHit.cc
+++ b/examples/extended/optical/LXe/src/LXeScintHit.cc
@@ -70,7 +70,7 @@ const LXeScintHit& LXeScintHit::operator=(const LXeScintHit &right){
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-G4int LXeScintHit::operator==(const LXeScintHit&) const{
+G4bool LXeScintHit::operator==(const LXeScintHit&) const{
return false;
//returns false because there currently isnt need to check for equality yet
}
diff --git a/examples/extended/optical/OpNovice/OpNovice.out b/examples/extended/optical/OpNovice/OpNovice.out
index a1a12bd37d0..e49937e7a91 100644
--- a/examples/extended/optical/OpNovice/OpNovice.out
+++ b/examples/extended/optical/OpNovice/OpNovice.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -380,12 +376,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -422,224 +416,224 @@ Some /vis commands (optionally) take a string to specify colour.
#
/run/beamOn 1
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PhotoElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila
+ PhotoElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-hIoni: for GenericIon SubType= 2
+hIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for alpha SubType= 2
+hIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -662,7 +656,7 @@ Index : 1 used in the geometry : Yes
### Run 0 start.
Number of Scintillation photons produced in this event : 69
Number of Cerenkov photons produced in this event : 22
-number of event = 1 User=0.010000s Real=0.002789s Sys=0.000000s
+number of event = 1 User=0.000000s Real=0.002553s Sys=0.000000s
#
/OpNovice/phys/cerenkovMaxPhotons 15
#
@@ -670,6 +664,6 @@ number of event = 1 User=0.010000s Real=0.002789s Sys=0.000000s
### Run 1 start.
Number of Scintillation photons produced in this event : 61
Number of Cerenkov photons produced in this event : 14
-number of event = 1 User=0.000000s Real=0.000693s Sys=0.000000s
+number of event = 1 User=0.000000s Real=0.000645s Sys=0.000000s
Graphics systems deleted.
Visualization Manager deleting...
diff --git a/examples/extended/optical/OpNovice2/OpNovice2.out b/examples/extended/optical/OpNovice2/OpNovice2.out
index 67f321074b7..f85471c49ae 100644
--- a/examples/extended/optical/OpNovice2/OpNovice2.out
+++ b/examples/extended/optical/OpNovice2/OpNovice2.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -29,12 +25,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -206,395 +200,395 @@ The MPT for the surface is now:
DefaultRegionForTheWorld 1 0 0
### === Ignore cuts flag: 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEPComptonModel : Emin= 0 eV Emax= 20 MeV FluoActive
- KleinNishina : Emin= 20 MeV Emax= 100 TeV FluoActive
+ LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo
+ KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PenConversion : Emin= 0 eV Emax= 20 MeV
- BetheHeitler : Emin= 20 MeV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ PenConversion : Emin= 0 eV Emax= 20 MeV
+ BetheHeitler : Emin= 20 MeV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
- MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
+ LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
+ MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PenIoni : Emin= 0 eV Emax= 100 keV
- MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
+ PenIoni : Emin= 0 eV Emax= 100 keV
+ MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -645,6 +639,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -750,6 +745,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -886,6 +882,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -897,7 +894,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
================================================================
### Run 0 start.
... open Root analysis file : opnovice2.root - done
-number of event = 100000 User=1.230000s Real=1.242451s Sys=0.000000s
+number of event = 100000 User=1.170000s Real=1.167055s Sys=0.000000s
Run Summary
---------------------------------
diff --git a/examples/extended/optical/wls/include/WLSPhotonDetHit.hh b/examples/extended/optical/wls/include/WLSPhotonDetHit.hh
index 283227047fa..348ddc07b6c 100644
--- a/examples/extended/optical/wls/include/WLSPhotonDetHit.hh
+++ b/examples/extended/optical/wls/include/WLSPhotonDetHit.hh
@@ -64,7 +64,7 @@ class WLSPhotonDetHit : public G4VHit
WLSPhotonDetHit(const WLSPhotonDetHit &right);
const WLSPhotonDetHit& operator=(const WLSPhotonDetHit& right);
- G4int operator==(const WLSPhotonDetHit& right) const;
+ G4bool operator==(const WLSPhotonDetHit& right) const;
inline void *operator new(size_t);
inline void operator delete(void *aHit);
diff --git a/examples/extended/optical/wls/include/WLSTrajectoryPoint.hh b/examples/extended/optical/wls/include/WLSTrajectoryPoint.hh
index 3c2df69f629..848201acbff 100644
--- a/examples/extended/optical/wls/include/WLSTrajectoryPoint.hh
+++ b/examples/extended/optical/wls/include/WLSTrajectoryPoint.hh
@@ -64,7 +64,7 @@ class WLSTrajectoryPoint : public G4TrajectoryPoint {
inline void *operator new(size_t);
inline void operator delete(void *aTrajectoryPoint);
- inline int operator==(const WLSTrajectoryPoint& right) const
+ inline G4bool operator==(const WLSTrajectoryPoint& right) const
{ return (this==&right); };
// Get/Set functions
diff --git a/examples/extended/optical/wls/src/WLSPhotonDetHit.cc b/examples/extended/optical/wls/src/WLSPhotonDetHit.cc
index a015bda22b4..8b9360541b6 100644
--- a/examples/extended/optical/wls/src/WLSPhotonDetHit.cc
+++ b/examples/extended/optical/wls/src/WLSPhotonDetHit.cc
@@ -77,7 +77,7 @@ const WLSPhotonDetHit& WLSPhotonDetHit::operator=(const WLSPhotonDetHit &right)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-G4int WLSPhotonDetHit::operator==(const WLSPhotonDetHit& right) const
+G4bool WLSPhotonDetHit::operator==(const WLSPhotonDetHit& right) const
{
return fPosExit == right.fPosExit &&
fPosArrive == right.fPosArrive &&
diff --git a/examples/extended/optical/wls/wls.out b/examples/extended/optical/wls/wls.out
index 00a456a100c..777e05a3fba 100644
--- a/examples/extended/optical/wls/wls.out
+++ b/examples/extended/optical/wls/wls.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -36,12 +32,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -138,132 +132,132 @@ WLSOpticalPhysics:: Add Optical Physics Processes
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
=======================================================================
====== Radioactive Decay Physics Parameters ========
=======================================================================
@@ -279,180 +273,180 @@ Check EM cuts disabled for atomic de-excitation 1
Use Bearden atomic level energies 0
=======================================================================
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
NeutronHP: /Elastic file for Z = 6, A = 12 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Elastic/CrossSection/6_nat_Carbon
NeutronHP: /Inelastic file for Z = 6, A = 12 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Inelastic/CrossSection/6_nat_Carbon
@@ -470,69 +464,69 @@ NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /
NeutronHP: /Capture file for Z = 6, A = 13 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Capture/CrossSection/6_nat_Carbon
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -565,6 +559,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -670,6 +665,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -840,6 +836,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
diff --git a/examples/extended/parallel/History b/examples/extended/parallel/History
index 57fc26f818c..e823aab5651 100644
--- a/examples/extended/parallel/History
+++ b/examples/extended/parallel/History
@@ -10,6 +10,9 @@
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+31 January 2019, I. Hrivnacova (exparallel-V10-04-00)
+- Merged GitHub PR #4: all Boolean operators now return G4bool.
+
03 December 2013, I. Hrivnacova (exparallel-V09-06-04)
- Fixed file descriptions (for Doxygen)
diff --git a/examples/extended/parallel/TBB/B2b/include/B2TrackerHit.hh b/examples/extended/parallel/TBB/B2b/include/B2TrackerHit.hh
index cc890adc4ac..d80c4352f28 100644
--- a/examples/extended/parallel/TBB/B2b/include/B2TrackerHit.hh
+++ b/examples/extended/parallel/TBB/B2b/include/B2TrackerHit.hh
@@ -51,7 +51,7 @@ class B2TrackerHit : public G4VHit
// operators
const B2TrackerHit& operator=(const B2TrackerHit&);
- G4int operator==(const B2TrackerHit&) const;
+ G4bool operator==(const B2TrackerHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
diff --git a/examples/extended/parallel/TBB/B2b/src/B2TrackerHit.cc b/examples/extended/parallel/TBB/B2b/src/B2TrackerHit.cc
index f721c187c85..f4a68ab4027 100644
--- a/examples/extended/parallel/TBB/B2b/src/B2TrackerHit.cc
+++ b/examples/extended/parallel/TBB/B2b/src/B2TrackerHit.cc
@@ -77,9 +77,9 @@ const B2TrackerHit& B2TrackerHit::operator=(const B2TrackerHit& right)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-G4int B2TrackerHit::operator==(const B2TrackerHit& right) const
+G4bool B2TrackerHit::operator==(const B2TrackerHit& right) const
{
- return ( this == &right ) ? 1 : 0;
+ return ( this == &right ) ? true : false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
diff --git a/examples/extended/parallel/ThreadsafeScorers/include/G4TAtomicHitsCollection.hh b/examples/extended/parallel/ThreadsafeScorers/include/G4TAtomicHitsCollection.hh
index e052e3d51d7..76db6f35f81 100644
--- a/examples/extended/parallel/ThreadsafeScorers/include/G4TAtomicHitsCollection.hh
+++ b/examples/extended/parallel/ThreadsafeScorers/include/G4TAtomicHitsCollection.hh
@@ -74,7 +74,7 @@
G4HitsCollection();
G4HitsCollection(G4String detName,G4String colNam);
virtual ~G4HitsCollection();
- G4int operator==(const G4HitsCollection &right) const;
+ G4bool operator==(const G4HitsCollection &right) const;
protected:
void* theCollection;
@@ -103,7 +103,7 @@ public:
// constructor.
public:
virtual ~G4TAtomicHitsCollection();
- G4int operator==(const G4TAtomicHitsCollection &right) const;
+ G4bool operator==(const G4TAtomicHitsCollection &right) const;
//inline void *operator new(size_t);
//inline void operator delete(void* anHC);
@@ -179,7 +179,7 @@ template G4TAtomicHitsCollection::~G4TAtomicHitsCollection()
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
template
-G4int G4TAtomicHitsCollection
+G4bool G4TAtomicHitsCollection
::operator==(const G4TAtomicHitsCollection &right) const
{
return (collectionName == right.collectionName);
diff --git a/examples/extended/parallel/ThreadsafeScorers/include/G4TAtomicHitsMap.hh b/examples/extended/parallel/ThreadsafeScorers/include/G4TAtomicHitsMap.hh
index fdbcec03fec..c8a44122873 100644
--- a/examples/extended/parallel/ThreadsafeScorers/include/G4TAtomicHitsMap.hh
+++ b/examples/extended/parallel/ThreadsafeScorers/include/G4TAtomicHitsMap.hh
@@ -91,7 +91,7 @@ public: // with description
public:
virtual ~G4TAtomicHitsMap();
- G4int operator==(const G4TAtomicHitsMap &right) const;
+ G4bool operator==(const G4TAtomicHitsMap &right) const;
G4TAtomicHitsMap & operator+=(const G4TAtomicHitsMap &right) const;
G4TAtomicHitsMap & operator+=(const G4THitsMap &right) const;
@@ -174,7 +174,7 @@ G4TAtomicHitsMap::~G4TAtomicHitsMap()
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
template
-G4int G4TAtomicHitsMap::operator==(const G4TAtomicHitsMap &right) const
+G4bool G4TAtomicHitsMap::operator==(const G4TAtomicHitsMap &right) const
{
return (collectionName == right.collectionName);
}
diff --git a/examples/extended/parallel/ThreadsafeScorers/threadsafe-scorers.out b/examples/extended/parallel/ThreadsafeScorers/threadsafe-scorers.out
index 174371f8f5c..d943bf42688 100644
--- a/examples/extended/parallel/ThreadsafeScorers/threadsafe-scorers.out
+++ b/examples/extended/parallel/ThreadsafeScorers/threadsafe-scorers.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -37,12 +33,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -83,152 +77,152 @@ Some /vis commands (optionally) take a string to specify colour.
### === Auger cascade flag: 1
### === Ignore cuts flag: 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 174 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 20 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 20 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 160 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEPComptonModel : Emin= 0 eV Emax= 20 MeV FluoActive
- KleinNishina : Emin= 20 MeV Emax= 100 TeV FluoActive
+ LowEPComptonModel : Emin= 0 eV Emax= 20 MeV Fluo
+ KleinNishina : Emin= 20 MeV Emax= 100 TeV Fluo
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 20 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PenConversion : Emin= 0 eV Emax= 20 MeV
- BetheHeitler : Emin= 20 MeV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ PenConversion : Emin= 0 eV Emax= 20 MeV
+ BetheHeitler : Emin= 20 MeV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 20 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 20 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 180 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
- MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
+ LowEnergyIoni : Emin= 0 eV Emax= 100 keV deltaVI
+ MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e- SubType= 4
+ePairProd: for e- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 2, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.08, stepLimType: 2, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Table with 120 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 120 bins Emin= 100 MeV Emax= 100 TeV
+ GoudsmitSaunderson : Emin= 0 eV Emax= 100 MeV Nbins=120 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=120 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.01, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.2, 0.01 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PenIoni : Emin= 0 eV Emax= 100 keV
- MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
+ PenIoni : Emin= 0 eV Emax= 100 keV
+ MollerBhabha : Emin= 100 keV Emax= 100 TeV deltaVI
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
+ eBremSB : Emin= 0 eV Emax= 1 GeV AngularGen2BS
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGen2BS
-ePairProd: for e+ SubType= 4
+ePairProd: for e+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 25x1001 from 0.1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ePairProd : Emin= 0 eV Emax= 100 TeV
+ ePairProd : Emin= 0 eV Emax= 100 TeV
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.001, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.001 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
+ ParamICRU73 : Emin= 0 eV Emax= 100 TeV deltaVI
-nuclearStopping: for GenericIon SubType= 8 BuildTable= 0
+nuclearStopping: for GenericIon SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
=======================================================================
====== Radioactive Decay Physics Parameters ========
=======================================================================
@@ -244,184 +238,184 @@ Check EM cuts disabled for atomic de-excitation 1
Use Bearden atomic level energies 0
=======================================================================
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV deltaVI
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV deltaVI
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV deltaVI
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV deltaVI
-nuclearStopping: for alpha SubType= 8 BuildTable= 0
+nuclearStopping: for alpha SubType=8 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
+ ICRU49NucStopping : Emin= 0 eV Emax= 1 MeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
- BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV deltaVI
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV deltaVI
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV deltaVI
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV deltaVI
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV deltaVI
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 1, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
- BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV deltaVI
+ BetheBloch : Emin= 200 keV Emax= 1 GeV deltaVI
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
@@@ G4ParticleHPInelastic instantiated for particle neutron data directory variable is G4NEUTRONHPDATA pointing to /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Inelastic
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
@@ -429,69 +423,69 @@ NeutronHP: /Inelastic file for Z = 8, A = 18 is not found and NeutronHP will use
NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Capture/CrossSection/8_17_Oxygen
NeutronHP: /Elastic file for Z = 8, A = 18 is not found and NeutronHP will use /cvmfs/geant4.cern.ch/share/data/G4NDL4.5/Elastic/CrossSection/8_17_Oxygen
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ Bragg : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 20 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 20 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 240 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=240 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
- finalRange(mm)= 0.02, dRoverRange= 0.1, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
+ StepFunction=(0.1, 0.02 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV deltaVI
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV deltaVI
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV deltaVI
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV deltaVI
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 240 bins
- Lambda tables from threshold to 100 TeV, 20 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 20 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -529,6 +523,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -624,6 +619,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -752,6 +748,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -896,773 +893,773 @@ Index : 2 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10000
- User=25.420000s Real=95.959229s Sys=1.320000s
+ User=24.130000s Real=116.427977s Sys=1.000000s
###### EndOfTSRunAction ######
============================================================
opened file mfd_tl_EnergyDeposit.out for output
============================================================
- 0 2352.719649 keV
- 1 50.010977 keV
- 2 3146.913664 keV
- 3 2663.505517 keV
- 4 818.515963 keV
- 5 1.915037 keV
- 6 10.771101 keV
- 7 1653.788629 keV
- 8 170.948823 keV
- 9 356.414665 keV
- 10 1262.072572 keV
- 11 2493.094163 keV
- 12 226.568952 keV
- 13 2848.081858 keV
- 15 1249.670703 keV
- 16 388.417562 keV
- 17 962.228393 keV
- 18 364.365576 keV
- 19 339.438958 keV
- 20 4063.568216 keV
- 21 2485.521422 keV
- 22 19.719108 keV
- 23 168.208683 keV
- 24 4.107706 keV
- 25 67.486420 keV
- 26 1528.534218 keV
- 27 3926.885697 keV
- 28 1651.831516 keV
- 29 1389.223380 keV
- 30 1824.357878 keV
- 31 3108.709093 keV
- 32 4674.035836 keV
- 33 5717.560448 keV
- 34 2379.316728 keV
- 35 2051.637217 keV
- 36 3402.001549 keV
- 37 5067.824227 keV
- 38 4689.834733 keV
- 39 753.616750 keV
- 40 589.832452 keV
- 41 2728.243933 keV
- 42 2046.525138 keV
- 43 4648.875111 keV
- 44 1791.757737 keV
- 45 1622.408473 keV
- 46 2941.555894 keV
- 47 3016.415457 keV
- 48 767.842789 keV
- 49 3023.176199 keV
- 50 3820.982109 keV
- 51 6083.920904 keV
- 52 7182.150003 keV
- 53 8805.075636 keV
- 54 7885.984949 keV
- 55 5872.104716 keV
- 56 17970.349491 keV
- 57 18081.888989 keV
- 58 18296.417295 keV
- 59 4183.324566 keV
- 60 8197.149787 keV
- 61 10329.189156 keV
- 62 20858.800186 keV
- 63 30699.918073 keV
- 64 9939.488575 keV
- 65 6523.237032 keV
- 66 16457.544908 keV
- 67 13999.119766 keV
- 68 14458.472302 keV
- 69 3537.385358 keV
- 70 5810.130264 keV
- 71 1907.537438 keV
- 72 6332.547644 keV
- 73 8764.932361 keV
- 74 3148.464661 keV
- 75 19118.535525 keV
- 76 23738.505369 keV
- 77 35454.878403 keV
- 78 34093.747492 keV
- 79 30365.111122 keV
- 80 20454.032390 keV
- 81 340566.583843 keV
- 82 319313.485404 keV
- 83 328028.964233 keV
- 84 27784.246707 keV
- 85 32667.739649 keV
- 86 292668.584379 keV
- 87 241926.590950 keV
- 88 301723.588236 keV
- 89 36406.936609 keV
- 90 35180.714650 keV
- 91 360614.555539 keV
- 92 311064.799021 keV
- 93 366631.178562 keV
- 94 30476.350362 keV
- 95 23971.393580 keV
- 96 38395.253477 keV
- 97 31874.075003 keV
- 98 34096.632712 keV
- 99 24799.765052 keV
- 100 353270.063028 keV
- 101 353851.938243 keV
- 102 349970.261852 keV
- 103 374823.656109 keV
- 104 289466.329613 keV
- 105 375872.066816 keV
- 106 392145.917153 keV
- 107 400485.275402 keV
- 108 418344.340629 keV
- 109 365722.825944 keV
- 110 357106.898286 keV
- 111 429220.490678 keV
- 112 397653.364063 keV
- 113 389371.774290 keV
- 114 355251.432392 keV
- 115 369510.621805 keV
- 116 391319.886389 keV
- 117 359255.450664 keV
- 118 345256.599332 keV
- 119 360483.759828 keV
- 120 338975.647607 keV
- 121 345489.606426 keV
- 122 358545.256127 keV
- 123 347889.326788 keV
- 124 355154.621948 keV
- 0 2352.72 [sigma: 946.372 | error: 0.568862 | coeff: 0.568862 | eff: 1 | fom: 0.118854 | r2int: 0.161802 | r2eff: 0 | hits: 2 ] keV
- 1 50.011 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: 2.22045e-16 | r2eff: 0 | hits: 1 ] keV
- 2 3146.91 [sigma: 942.389 | error: 0.598929 | coeff: 0.598929 | eff: 1 | fom: 0.10722 | r2int: 0.269037 | r2eff: 0 | hits: 4 ] keV
- 3 2663.51 [sigma: 978.292 | error: 0.636173 | coeff: 0.636173 | eff: 1 | fom: 0.0950333 | r2int: 0.269811 | r2eff: 0 | hits: 3 ] keV
- 4 818.516 [sigma: 387.691 | error: 0.820388 | coeff: 0.820388 | eff: 1 | fom: 0.0571464 | r2int: 0.44869 | r2eff: 0 | hits: 3 ] keV
- 5 1.91504 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: 2.22045e-16 | r2eff: 0 | hits: 1 ] keV
- 6 10.7711 [sigma: 0.587527 | error: 0.0771405 | coeff: 0.0771405 | eff: 1 | fom: 6.46341 | r2int: 0.00297533 | r2eff: 0 | hits: 2 ] keV
- 7 1653.79 [sigma: 664.327 | error: 0.695765 | coeff: 0.695765 | eff: 1 | fom: 0.0794515 | r2int: 0.322726 | r2eff: 0 | hits: 3 ] keV
- 8 170.949 [sigma: 31.4254 | error: 0.367659 | coeff: 0.367659 | eff: 1 | fom: 0.284536 | r2int: 0.10138 | r2eff: 0 | hits: 4 ] keV
- 9 356.415 [sigma: 198.194 | error: 0.963154 | coeff: 0.963154 | eff: 1 | fom: 0.0414606 | r2int: 0.618444 | r2eff: 0 | hits: 3 ] keV
- 10 1262.07 [sigma: 567.061 | error: 0.898619 | coeff: 0.898619 | eff: 1 | fom: 0.0476294 | r2int: 0.605638 | r2eff: 0 | hits: 4 ] keV
- 11 2493.09 [sigma: 791.066 | error: 0.634606 | coeff: 0.634606 | eff: 1 | fom: 0.0955033 | r2int: 0.302044 | r2eff: 0 | hits: 4 ] keV
- 12 226.569 [sigma: 102.341 | error: 0.903398 | coeff: 0.903398 | eff: 1 | fom: 0.0471268 | r2int: 0.612096 | r2eff: 0 | hits: 4 ] keV
- 13 2848.08 [sigma: 695.351 | error: 0.690553 | coeff: 0.690553 | eff: 1 | fom: 0.0806553 | r2int: 0.417255 | r2eff: 0 | hits: 8 ] keV
- 15 1249.67 [sigma: 226.775 | error: 0.480118 | coeff: 0.480118 | eff: 1 | fom: 0.166852 | r2int: 0.197583 | r2eff: 0 | hits: 7 ] keV
- 16 388.418 [sigma: 66.6415 | error: 0.383646 | coeff: 0.383646 | eff: 1 | fom: 0.261316 | r2int: 0.117747 | r2eff: 0 | hits: 5 ] keV
- 17 962.228 [sigma: 298.257 | error: 0.693103 | coeff: 0.693103 | eff: 1 | fom: 0.0800628 | r2int: 0.384314 | r2eff: 0 | hits: 5 ] keV
- 18 364.366 [sigma: 93.1793 | error: 0.51146 | coeff: 0.51146 | eff: 1 | fom: 0.147029 | r2int: 0.196194 | r2eff: 0 | hits: 4 ] keV
- 19 339.439 [sigma: 121.557 | error: 0.716223 | coeff: 0.716223 | eff: 1 | fom: 0.0749774 | r2int: 0.384732 | r2eff: 0 | hits: 4 ] keV
- 20 4063.57 [sigma: 785.667 | error: 0.432331 | coeff: 0.432331 | eff: 1 | fom: 0.205776 | r2int: 0.149528 | r2eff: 0 | hits: 5 ] keV
- 21 2485.52 [sigma: 714.151 | error: 0.497661 | coeff: 0.497661 | eff: 1 | fom: 0.155296 | r2int: 0.165111 | r2eff: 0 | hits: 3 ] keV
- 22 19.7191 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: 2.22045e-16 | r2eff: 0 | hits: 1 ] keV
- 23 168.209 [sigma: 19.2615 | error: 0.229019 | coeff: 0.229019 | eff: 1 | fom: 0.733301 | r2int: 0.0393374 | r2eff: 0 | hits: 4 ] keV
- 24 4.10771 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: -2.22045e-16 | r2eff: 0 | hits: 1 ] keV
- 25 67.4864 [sigma: 10.9213 | error: 0.361861 | coeff: 0.361861 | eff: 1 | fom: 0.293727 | r2int: 0.104755 | r2eff: 0 | hits: 5 ] keV
- 26 1528.53 [sigma: 316.121 | error: 0.685921 | coeff: 0.685921 | eff: 1 | fom: 0.0817483 | r2int: 0.427716 | r2eff: 0 | hits: 11 ] keV
- 27 3926.89 [sigma: 567.294 | error: 0.500438 | coeff: 0.500438 | eff: 1 | fom: 0.153577 | r2int: 0.229569 | r2eff: 0 | hits: 12 ] keV
- 28 1651.83 [sigma: 249.98 | error: 0.524241 | coeff: 0.524241 | eff: 1 | fom: 0.139948 | r2int: 0.251926 | r2eff: 0 | hits: 12 ] keV
- 29 1389.22 [sigma: 429.757 | error: 0.818465 | coeff: 0.818465 | eff: 1 | fom: 0.0574151 | r2int: 0.574188 | r2eff: 0 | hits: 7 ] keV
- 30 1824.36 [sigma: 292.44 | error: 0.555286 | coeff: 0.555286 | eff: 1 | fom: 0.124736 | r2int: 0.282647 | r2eff: 0 | hits: 12 ] keV
- 31 3108.71 [sigma: 473.785 | error: 0.646603 | coeff: 0.646603 | eff: 1 | fom: 0.0919923 | r2int: 0.394868 | r2eff: 0 | hits: 18 ] keV
- 32 4674.04 [sigma: 559.463 | error: 0.598479 | coeff: 0.598479 | eff: 1 | fom: 0.107381 | r2int: 0.34385 | r2eff: 0 | hits: 25 ] keV
- 33 5717.56 [sigma: 624.096 | error: 0.511979 | coeff: 0.511979 | eff: 1 | fom: 0.146731 | r2int: 0.250208 | r2eff: 0 | hits: 22 ] keV
- 34 2379.32 [sigma: 369.065 | error: 0.537331 | coeff: 0.537331 | eff: 1 | fom: 0.133212 | r2int: 0.264664 | r2eff: 0 | hits: 12 ] keV
- 35 2051.64 [sigma: 496.989 | error: 0.803419 | coeff: 0.803419 | eff: 1 | fom: 0.0595857 | r2int: 0.586802 | r2eff: 0 | hits: 11 ] keV
- 36 3402 [sigma: 497.844 | error: 0.547549 | coeff: 0.547549 | eff: 1 | fom: 0.128286 | r2int: 0.278395 | r2eff: 0 | hits: 14 ] keV
- 37 5067.82 [sigma: 384.483 | error: 0.363848 | coeff: 0.363848 | eff: 1 | fom: 0.290527 | r2int: 0.126629 | r2eff: 0 | hits: 23 ] keV
- 38 4689.83 [sigma: 495.428 | error: 0.548915 | coeff: 0.548915 | eff: 1 | fom: 0.127649 | r2int: 0.290148 | r2eff: 0 | hits: 27 ] keV
- 39 753.617 [sigma: 89.429 | error: 0.335639 | coeff: 0.335639 | eff: 1 | fom: 0.341414 | r2int: 0.098572 | r2eff: 0 | hits: 8 ] keV
- 40 589.832 [sigma: 317.338 | error: 0.931867 | coeff: 0.931867 | eff: 1 | fom: 0.0442914 | r2int: 0.578917 | r2eff: 0 | hits: 3 ] keV
- 41 2728.24 [sigma: 650.647 | error: 0.754158 | coeff: 0.754158 | eff: 1 | fom: 0.0676242 | r2int: 0.511879 | r2eff: 0 | hits: 10 ] keV
- 42 2046.53 [sigma: 149.268 | error: 0.29175 | coeff: 0.29175 | eff: 1 | fom: 0.451861 | r2int: 0.0797982 | r2eff: 0 | hits: 16 ] keV
- 43 4648.88 [sigma: 469.752 | error: 0.378081 | coeff: 0.378081 | eff: 1 | fom: 0.269065 | r2int: 0.132735 | r2eff: 0 | hits: 14 ] keV
- 44 1791.76 [sigma: 330.735 | error: 0.612205 | coeff: 0.612205 | eff: 1 | fom: 0.10262 | r2int: 0.340722 | r2eff: 0 | hits: 11 ] keV
- 45 1622.41 [sigma: 270.217 | error: 0.499659 | coeff: 0.499659 | eff: 1 | fom: 0.154056 | r2int: 0.22192 | r2eff: 0 | hits: 9 ] keV
- 46 2941.56 [sigma: 756.355 | error: 0.574954 | coeff: 0.574954 | eff: 1 | fom: 0.116348 | r2int: 0.264458 | r2eff: 0 | hits: 5 ] keV
- 47 3016.42 [sigma: 717.954 | error: 0.67321 | coeff: 0.67321 | eff: 1 | fom: 0.0848644 | r2int: 0.39656 | r2eff: 0 | hits: 8 ] keV
- 48 767.843 [sigma: 98.5624 | error: 0.405919 | coeff: 0.405919 | eff: 1 | fom: 0.233426 | r2int: 0.148293 | r2eff: 0 | hits: 10 ] keV
- 49 3023.18 [sigma: 759.466 | error: 0.615347 | coeff: 0.615347 | eff: 1 | fom: 0.101575 | r2int: 0.315544 | r2eff: 0 | hits: 6 ] keV
- 50 3820.98 [sigma: 456.31 | error: 0.56014 | coeff: 0.56014 | eff: 1 | fom: 0.122584 | r2int: 0.299495 | r2eff: 0 | hits: 22 ] keV
- 51 6083.92 [sigma: 409.671 | error: 0.356312 | coeff: 0.356312 | eff: 1 | fom: 0.302946 | r2int: 0.122424 | r2eff: 0 | hits: 28 ] keV
- 52 7182.15 [sigma: 417.373 | error: 0.367536 | coeff: 0.367536 | eff: 1 | fom: 0.284726 | r2int: 0.131706 | r2eff: 0 | hits: 40 ] keV
- 53 8805.08 [sigma: 523.786 | error: 0.385519 | coeff: 0.385519 | eff: 1 | fom: 0.258783 | r2int: 0.145086 | r2eff: 0 | hits: 42 ] keV
- 54 7885.98 [sigma: 557.676 | error: 0.346443 | coeff: 0.346443 | eff: 1 | fom: 0.320453 | r2int: 0.115022 | r2eff: 0 | hits: 24 ] keV
- 55 5872.1 [sigma: 514.546 | error: 0.471877 | coeff: 0.471877 | eff: 1 | fom: 0.17273 | r2int: 0.21499 | r2eff: 0 | hits: 29 ] keV
- 56 17970.3 [sigma: 673.095 | error: 0.29254 | coeff: 0.29254 | eff: 1 | fom: 0.449425 | r2int: 0.0841764 | r2eff: 0 | hits: 61 ] keV
- 57 18081.9 [sigma: 532.611 | error: 0.242896 | coeff: 0.242896 | eff: 1 | fom: 0.651906 | r2int: 0.058131 | r2eff: 0 | hits: 68 ] keV
- 58 18296.4 [sigma: 567.791 | error: 0.255904 | coeff: 0.255904 | eff: 1 | fom: 0.587317 | r2int: 0.0645238 | r2eff: 0 | hits: 68 ] keV
- 59 4183.32 [sigma: 292.463 | error: 0.401612 | coeff: 0.401612 | eff: 1 | fom: 0.238459 | r2int: 0.156405 | r2eff: 0 | hits: 33 ] keV
- 60 8197.15 [sigma: 558.101 | error: 0.37908 | coeff: 0.37908 | eff: 1 | fom: 0.267648 | r2int: 0.139066 | r2eff: 0 | hits: 31 ] keV
- 61 10329.2 [sigma: 463.523 | error: 0.320472 | coeff: 0.320472 | eff: 1 | fom: 0.374495 | r2int: 0.100689 | r2eff: 0 | hits: 51 ] keV
- 62 20858.8 [sigma: 676.064 | error: 0.28625 | coeff: 0.28625 | eff: 1 | fom: 0.469392 | r2int: 0.0808886 | r2eff: 0 | hits: 78 ] keV
- 63 30699.9 [sigma: 828.806 | error: 0.222623 | coeff: 0.222623 | eff: 1 | fom: 0.776044 | r2int: 0.0488322 | r2eff: 0 | hits: 68 ] keV
- 64 9939.49 [sigma: 375.237 | error: 0.282511 | coeff: 0.282511 | eff: 1 | fom: 0.481899 | r2int: 0.0783873 | r2eff: 0 | hits: 56 ] keV
- 65 6523.24 [sigma: 475.189 | error: 0.371441 | coeff: 0.371441 | eff: 1 | fom: 0.27877 | r2int: 0.132662 | r2eff: 0 | hits: 26 ] keV
- 66 16457.5 [sigma: 737.22 | error: 0.297138 | coeff: 0.297138 | eff: 1 | fom: 0.435622 | r2int: 0.0862845 | r2eff: 0 | hits: 44 ] keV
- 67 13999.1 [sigma: 646.791 | error: 0.339516 | coeff: 0.339516 | eff: 1 | fom: 0.333661 | r2int: 0.113137 | r2eff: 0 | hits: 54 ] keV
- 68 14458.5 [sigma: 505.882 | error: 0.252306 | coeff: 0.252306 | eff: 1 | fom: 0.604185 | r2int: 0.0624344 | r2eff: 0 | hits: 52 ] keV
- 69 3537.39 [sigma: 131.879 | error: 0.226774 | coeff: 0.226774 | eff: 1 | fom: 0.747892 | r2int: 0.0500367 | r2eff: 0 | hits: 37 ] keV
- 70 5810.13 [sigma: 368.317 | error: 0.304019 | coeff: 0.304019 | eff: 1 | fom: 0.416127 | r2int: 0.0884087 | r2eff: 0 | hits: 23 ] keV
- 71 1907.54 [sigma: 125.958 | error: 0.295304 | coeff: 0.295304 | eff: 1 | fom: 0.441051 | r2int: 0.0828441 | r2eff: 0 | hits: 20 ] keV
- 72 6332.55 [sigma: 492.836 | error: 0.404395 | coeff: 0.404395 | eff: 1 | fom: 0.235188 | r2int: 0.157478 | r2eff: 0 | hits: 27 ] keV
- 73 8764.93 [sigma: 525.031 | error: 0.328093 | coeff: 0.328093 | eff: 1 | fom: 0.357299 | r2int: 0.104057 | r2eff: 0 | hits: 30 ] keV
- 74 3148.46 [sigma: 400.848 | error: 0.569371 | coeff: 0.569371 | eff: 1 | fom: 0.118641 | r2int: 0.307974 | r2eff: 0 | hits: 20 ] keV
- 75 19118.5 [sigma: 406.709 | error: 0.215897 | coeff: 0.215897 | eff: 1 | fom: 0.825147 | r2int: 0.0461592 | r2eff: 0 | hits: 103 ] keV
- 76 23738.5 [sigma: 349.189 | error: 0.1849 | coeff: 0.1849 | eff: 1 | fom: 1.12501 | r2int: 0.0339715 | r2eff: 0 | hits: 158 ] keV
- 77 35454.9 [sigma: 463.994 | error: 0.159209 | coeff: 0.159209 | eff: 1 | fom: 1.51737 | r2int: 0.0251762 | r2eff: 0 | hits: 148 ] keV
- 78 34093.7 [sigma: 485.61 | error: 0.163023 | coeff: 0.163023 | eff: 1 | fom: 1.4472 | r2int: 0.0263736 | r2eff: 0 | hits: 131 ] keV
- 79 30365.1 [sigma: 541.377 | error: 0.176497 | coeff: 0.176497 | eff: 1 | fom: 1.23467 | r2int: 0.0308334 | r2eff: 0 | hits: 98 ] keV
- 80 20454 [sigma: 384.352 | error: 0.206701 | coeff: 0.206701 | eff: 1 | fom: 0.900202 | r2int: 0.0423724 | r2eff: 0 | hits: 121 ] keV
- 81 340567 [sigma: 1136.09 | error: 0.0514636 | coeff: 0.0514636 | eff: 1 | fom: 14.522 | r2int: 0.00263737 | r2eff: 0 | hits: 238 ] keV
- 82 319313 [sigma: 1162.49 | error: 0.0593764 | coeff: 0.0593764 | eff: 1 | fom: 10.9094 | r2int: 0.0035123 | r2eff: 0 | hits: 266 ] keV
- 83 328029 [sigma: 1154.13 | error: 0.0559634 | coeff: 0.0559634 | eff: 1 | fom: 12.2806 | r2int: 0.00311952 | r2eff: 0 | hits: 253 ] keV
- 84 27784.2 [sigma: 384.456 | error: 0.166046 | coeff: 0.166046 | eff: 1 | fom: 1.39498 | r2int: 0.0273799 | r2eff: 0 | hits: 144 ] keV
- 85 32667.7 [sigma: 421.824 | error: 0.152783 | coeff: 0.152783 | eff: 1 | fom: 1.64769 | r2int: 0.023176 | r2eff: 0 | hits: 140 ] keV
- 86 292669 [sigma: 1156.67 | error: 0.0580845 | coeff: 0.0580845 | eff: 1 | fom: 11.4 | r2int: 0.00335819 | r2eff: 0 | hits: 216 ] keV
- 87 241927 [sigma: 1110.8 | error: 0.0715741 | coeff: 0.0715741 | eff: 1 | fom: 7.50783 | r2int: 0.00510177 | r2eff: 0 | hits: 243 ] keV
- 88 301724 [sigma: 1157.65 | error: 0.0607863 | coeff: 0.0607863 | eff: 1 | fom: 10.4091 | r2int: 0.00368026 | r2eff: 0 | hits: 251 ] keV
- 89 36406.9 [sigma: 486.939 | error: 0.158254 | coeff: 0.158254 | eff: 1 | fom: 1.53574 | r2int: 0.0248654 | r2eff: 0 | hits: 140 ] keV
- 90 35180.7 [sigma: 497.62 | error: 0.171495 | coeff: 0.171495 | eff: 1 | fom: 1.30774 | r2int: 0.0292105 | r2eff: 0 | hits: 147 ] keV
- 91 360615 [sigma: 1123.31 | error: 0.048956 | coeff: 0.048956 | eff: 1 | fom: 16.0478 | r2int: 0.00238698 | r2eff: 0 | hits: 247 ] keV
- 92 311065 [sigma: 1121.25 | error: 0.0567644 | coeff: 0.0567644 | eff: 1 | fom: 11.9364 | r2int: 0.0032092 | r2eff: 0 | hits: 248 ] keV
- 93 366631 [sigma: 1135.62 | error: 0.0490729 | coeff: 0.0490729 | eff: 1 | fom: 15.9714 | r2int: 0.00239855 | r2eff: 0 | hits: 251 ] keV
- 94 30476.4 [sigma: 371.663 | error: 0.146849 | coeff: 0.146849 | eff: 1 | fom: 1.78356 | r2int: 0.0214158 | r2eff: 0 | hits: 145 ] keV
- 95 23971.4 [sigma: 449.079 | error: 0.199145 | coeff: 0.199145 | eff: 1 | fom: 0.969815 | r2int: 0.0393077 | r2eff: 0 | hits: 113 ] keV
- 96 38395.3 [sigma: 464.002 | error: 0.148501 | coeff: 0.148501 | eff: 1 | fom: 1.74408 | r2int: 0.0219066 | r2eff: 0 | hits: 151 ] keV
- 97 31874.1 [sigma: 391.981 | error: 0.1536 | coeff: 0.1536 | eff: 1 | fom: 1.63022 | r2int: 0.0234416 | r2eff: 0 | hits: 156 ] keV
- 98 34096.6 [sigma: 466.953 | error: 0.167729 | coeff: 0.167729 | eff: 1 | fom: 1.36714 | r2int: 0.0279454 | r2eff: 0 | hits: 150 ] keV
- 99 24799.8 [sigma: 414.974 | error: 0.168164 | coeff: 0.168164 | eff: 1 | fom: 1.36006 | r2int: 0.0279992 | r2eff: 0 | hits: 101 ] keV
- 100 353270 [sigma: 462.765 | error: 0.0320603 | coeff: 0.0320603 | eff: 1 | fom: 37.419 | r2int: 0.00102615 | r2eff: 0 | hits: 599 ] keV
- 101 353852 [sigma: 500.534 | error: 0.0377709 | coeff: 0.0377709 | eff: 1 | fom: 26.9595 | r2int: 0.00142464 | r2eff: 0 | hits: 713 ] keV
- 102 349970 [sigma: 495.481 | error: 0.0369191 | coeff: 0.0369191 | eff: 1 | fom: 28.218 | r2int: 0.00136101 | r2eff: 0 | hits: 680 ] keV
- 103 374824 [sigma: 505.029 | error: 0.0351612 | coeff: 0.0351612 | eff: 1 | fom: 29.9578 | r2int: 0.00123449 | r2eff: 0 | hits: 681 ] keV
- 104 289466 [sigma: 449.821 | error: 0.0364438 | coeff: 0.0364438 | eff: 1 | fom: 27.8862 | r2int: 0.00132573 | r2eff: 0 | hits: 550 ] keV
- 105 375872 [sigma: 476.116 | error: 0.0342477 | coeff: 0.0342477 | eff: 1 | fom: 31.5772 | r2int: 0.0011713 | r2eff: 0 | hits: 731 ] keV
- 106 392146 [sigma: 472.643 | error: 0.0356525 | coeff: 0.0356525 | eff: 1 | fom: 29.1378 | r2int: 0.00126965 | r2eff: 0 | hits: 875 ] keV
- 107 400485 [sigma: 452.833 | error: 0.0338647 | coeff: 0.0338647 | eff: 1 | fom: 32.2954 | r2int: 0.00114554 | r2eff: 0 | hits: 897 ] keV
- 108 418344 [sigma: 497.298 | error: 0.0354632 | coeff: 0.0354632 | eff: 1 | fom: 29.4496 | r2int: 0.00125623 | r2eff: 0 | hits: 890 ] keV
- 109 365723 [sigma: 488.985 | error: 0.0346342 | coeff: 0.0346342 | eff: 1 | fom: 30.8764 | r2int: 0.00119774 | r2eff: 0 | hits: 671 ] keV
- 110 357107 [sigma: 489.932 | error: 0.0368643 | coeff: 0.0368643 | eff: 1 | fom: 27.2536 | r2int: 0.0013571 | r2eff: 0 | hits: 722 ] keV
- 111 429220 [sigma: 495.603 | error: 0.033644 | coeff: 0.033644 | eff: 1 | fom: 32.7206 | r2int: 0.00113059 | r2eff: 0 | hits: 849 ] keV
- 112 397653 [sigma: 506.687 | error: 0.0378845 | coeff: 0.0378845 | eff: 1 | fom: 25.8055 | r2int: 0.00143361 | r2eff: 0 | hits: 884 ] keV
- 113 389372 [sigma: 496.48 | error: 0.0375662 | coeff: 0.0375662 | eff: 1 | fom: 26.2448 | r2int: 0.00140959 | r2eff: 0 | hits: 868 ] keV
- 114 355251 [sigma: 507.64 | error: 0.0378877 | coeff: 0.0378877 | eff: 1 | fom: 25.8013 | r2int: 0.00143343 | r2eff: 0 | hits: 703 ] keV
- 115 369511 [sigma: 470.661 | error: 0.0344381 | coeff: 0.0344381 | eff: 1 | fom: 31.2289 | r2int: 0.00118436 | r2eff: 0 | hits: 731 ] keV
- 116 391320 [sigma: 500.934 | error: 0.0372555 | coeff: 0.0372555 | eff: 1 | fom: 26.6843 | r2int: 0.00138633 | r2eff: 0 | hits: 847 ] keV
- 117 359255 [sigma: 467.854 | error: 0.0378337 | coeff: 0.0378337 | eff: 1 | fom: 25.8749 | r2int: 0.00142969 | r2eff: 0 | hits: 844 ] keV
- 118 345257 [sigma: 488.637 | error: 0.0397038 | coeff: 0.0397038 | eff: 1 | fom: 22.6557 | r2int: 0.00157439 | r2eff: 0 | hits: 787 ] keV
- 119 360484 [sigma: 491.203 | error: 0.0352443 | coeff: 0.0352443 | eff: 1 | fom: 28.7518 | r2int: 0.0012403 | r2eff: 0 | hits: 669 ] keV
- 120 338976 [sigma: 496.682 | error: 0.0358311 | coeff: 0.0358311 | eff: 1 | fom: 27.8177 | r2int: 0.00128172 | r2eff: 0 | hits: 598 ] keV
- 121 345490 [sigma: 481.036 | error: 0.036547 | coeff: 0.036547 | eff: 1 | fom: 26.7385 | r2int: 0.00133375 | r2eff: 0 | hits: 689 ] keV
- 122 358545 [sigma: 503.259 | error: 0.0372421 | coeff: 0.0372421 | eff: 1 | fom: 25.7498 | r2int: 0.001385 | r2eff: 0 | hits: 704 ] keV
- 123 347889 [sigma: 511.355 | error: 0.0377904 | coeff: 0.0377904 | eff: 1 | fom: 25.0079 | r2int: 0.00142596 | r2eff: 0 | hits: 661 ] keV
- 124 355155 [sigma: 483.815 | error: 0.0339475 | coeff: 0.0339475 | eff: 1 | fom: 30.9904 | r2int: 0.00115057 | r2eff: 0 | hits: 621 ] keV
+ 0 99.977203 keV
+ 1 1311.922081 keV
+ 2 42.184446 keV
+ 3 90.195300 keV
+ 4 803.417529 keV
+ 5 861.019884 keV
+ 6 2.542950 keV
+ 7 2384.264330 keV
+ 8 1104.793910 keV
+ 9 131.528360 keV
+ 11 127.758686 keV
+ 12 537.878138 keV
+ 13 324.644588 keV
+ 14 64.558399 keV
+ 15 923.876393 keV
+ 16 7.080810 keV
+ 17 286.234087 keV
+ 18 118.251789 keV
+ 19 6.590294 keV
+ 20 25.850150 keV
+ 21 62.898540 keV
+ 22 613.568176 keV
+ 23 1612.782855 keV
+ 24 510.392852 keV
+ 25 4562.686331 keV
+ 26 276.171414 keV
+ 27 834.713796 keV
+ 28 7514.105921 keV
+ 29 1518.135454 keV
+ 30 858.341142 keV
+ 31 3645.526676 keV
+ 32 2250.239027 keV
+ 33 3574.617107 keV
+ 34 3109.942708 keV
+ 35 720.770832 keV
+ 36 4058.939065 keV
+ 37 5469.809700 keV
+ 38 2758.000278 keV
+ 39 2760.599874 keV
+ 40 3092.177365 keV
+ 41 1800.100757 keV
+ 42 5966.819718 keV
+ 43 6832.318009 keV
+ 44 1884.735236 keV
+ 45 5001.011189 keV
+ 46 932.030992 keV
+ 47 4129.279852 keV
+ 48 543.408044 keV
+ 49 3567.019012 keV
+ 50 5647.852254 keV
+ 51 7243.186683 keV
+ 52 3075.875044 keV
+ 53 5841.612455 keV
+ 54 9458.569862 keV
+ 55 13527.042353 keV
+ 56 12522.521344 keV
+ 57 18726.201345 keV
+ 58 17952.404376 keV
+ 59 6314.281196 keV
+ 60 5058.934894 keV
+ 61 15098.096504 keV
+ 62 24970.152159 keV
+ 63 27969.640366 keV
+ 64 6128.334040 keV
+ 65 4082.289501 keV
+ 66 9521.347378 keV
+ 67 13049.432365 keV
+ 68 27105.674005 keV
+ 69 6755.461834 keV
+ 70 5559.031739 keV
+ 71 4601.251622 keV
+ 72 3095.485679 keV
+ 73 3533.078556 keV
+ 74 4185.988624 keV
+ 75 17902.338794 keV
+ 76 32965.918721 keV
+ 77 28938.023656 keV
+ 78 35311.902121 keV
+ 79 20057.267948 keV
+ 80 31263.634439 keV
+ 81 356516.176266 keV
+ 82 306285.368173 keV
+ 83 407711.433229 keV
+ 84 42746.365630 keV
+ 85 37928.438295 keV
+ 86 254677.245033 keV
+ 87 288328.712823 keV
+ 88 269835.451530 keV
+ 89 34231.123307 keV
+ 90 30374.810954 keV
+ 91 370891.355982 keV
+ 92 313765.292887 keV
+ 93 369892.692268 keV
+ 94 35379.945482 keV
+ 95 24600.773015 keV
+ 96 36307.779088 keV
+ 97 36523.814411 keV
+ 98 44060.888092 keV
+ 99 27333.182049 keV
+ 100 330518.756267 keV
+ 101 368099.151680 keV
+ 102 356895.917478 keV
+ 103 379164.276531 keV
+ 104 361268.130117 keV
+ 105 346530.084295 keV
+ 106 347921.003104 keV
+ 107 389667.983536 keV
+ 108 399019.875565 keV
+ 109 326282.426672 keV
+ 110 349699.050933 keV
+ 111 364123.526907 keV
+ 112 387654.448144 keV
+ 113 389222.907024 keV
+ 114 331323.489814 keV
+ 115 343870.824916 keV
+ 116 419174.467818 keV
+ 117 367958.811753 keV
+ 118 418036.651002 keV
+ 119 362639.424214 keV
+ 120 324319.336983 keV
+ 121 356568.315421 keV
+ 122 381764.445228 keV
+ 123 367816.627297 keV
+ 124 369137.382657 keV
+ 0 99.9772 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: 0 | r2eff: 0 | hits: 1 ] keV
+ 1 1311.92 [sigma: 692.747 | error: 0.914592 | coeff: 0.914592 | eff: 1 | fom: 0.0478196 | r2int: 0.557652 | r2eff: 0 | hits: 3 ] keV
+ 2 42.1844 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: 2.22045e-16 | r2eff: 0 | hits: 1 ] keV
+ 3 90.1953 [sigma: 46.9626 | error: 0.736349 | coeff: 0.736349 | eff: 1 | fom: 0.0737723 | r2int: 0.271105 | r2eff: 0 | hits: 2 ] keV
+ 4 803.418 [sigma: 296.52 | error: 0.639254 | coeff: 0.639254 | eff: 1 | fom: 0.0978842 | r2int: 0.272431 | r2eff: 0 | hits: 3 ] keV
+ 5 861.02 [sigma: 362.413 | error: 0.72904 | coeff: 0.72904 | eff: 1 | fom: 0.0752587 | r2int: 0.354333 | r2eff: 0 | hits: 3 ] keV
+ 6 2.54295 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: 2.22045e-16 | r2eff: 0 | hits: 1 ] keV
+ 7 2384.26 [sigma: 213.058 | error: 0.296374 | coeff: 0.296374 | eff: 1 | fom: 0.455386 | r2int: 0.0798524 | r2eff: 0 | hits: 11 ] keV
+ 8 1104.79 [sigma: 542.435 | error: 0.850407 | coeff: 0.850407 | eff: 1 | fom: 0.0553103 | r2int: 0.482128 | r2eff: 0 | hits: 3 ] keV
+ 9 131.528 [sigma: 13.984 | error: 0.150358 | coeff: 0.150358 | eff: 1 | fom: 1.76932 | r2int: 0.0113038 | r2eff: 0 | hits: 2 ] keV
+ 11 127.759 [sigma: 27.263 | error: 0.477165 | coeff: 0.477165 | eff: 1 | fom: 0.17568 | r2int: 0.182149 | r2eff: 0 | hits: 5 ] keV
+ 12 537.878 [sigma: 71.8328 | error: 0.400645 | coeff: 0.400645 | eff: 1 | fom: 0.249195 | r2int: 0.142681 | r2eff: 0 | hits: 9 ] keV
+ 13 324.645 [sigma: 68.1494 | error: 0.555396 | coeff: 0.555396 | eff: 1 | fom: 0.129675 | r2int: 0.264398 | r2eff: 0 | hits: 7 ] keV
+ 14 64.5584 [sigma: 6.72375 | error: 0.14729 | coeff: 0.14729 | eff: 1 | fom: 1.84379 | r2int: 0.0108472 | r2eff: 0 | hits: 2 ] keV
+ 15 923.876 [sigma: 301.57 | error: 0.461625 | coeff: 0.461625 | eff: 1 | fom: 0.187707 | r2int: 0.106549 | r2eff: 0 | hits: 2 ] keV
+ 16 7.08081 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: -1.11022e-16 | r2eff: 0 | hits: 1 ] keV
+ 17 286.234 [sigma: 29.8078 | error: 0.255084 | coeff: 0.255084 | eff: 1 | fom: 0.614741 | r2int: 0.0542233 | r2eff: 0 | hits: 6 ] keV
+ 18 118.252 [sigma: 35.3963 | error: 0.669323 | coeff: 0.669323 | eff: 1 | fom: 0.0892871 | r2int: 0.358394 | r2eff: 0 | hits: 5 ] keV
+ 19 6.59029 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: -1.11022e-16 | r2eff: 0 | hits: 1 ] keV
+ 20 25.8502 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: 2.22045e-16 | r2eff: 0 | hits: 1 ] keV
+ 21 62.8985 [sigma: 16.7173 | error: 0.460349 | coeff: 0.460349 | eff: 1 | fom: 0.188749 | r2int: 0.141281 | r2eff: 0 | hits: 3 ] keV
+ 22 613.568 [sigma: 141.129 | error: 0.460027 | coeff: 0.460027 | eff: 1 | fom: 0.189014 | r2int: 0.158719 | r2eff: 0 | hits: 4 ] keV
+ 23 1612.78 [sigma: 681.222 | error: 0.7316 | coeff: 0.7316 | eff: 1 | fom: 0.0747331 | r2int: 0.356826 | r2eff: 0 | hits: 3 ] keV
+ 24 510.393 [sigma: 113.707 | error: 0.385873 | coeff: 0.385873 | eff: 1 | fom: 0.268641 | r2int: 0.0992651 | r2eff: 0 | hits: 3 ] keV
+ 25 4562.69 [sigma: 698.755 | error: 0.484289 | coeff: 0.484289 | eff: 1 | fom: 0.17055 | r2int: 0.211082 | r2eff: 0 | hits: 10 ] keV
+ 26 276.171 [sigma: 29.4083 | error: 0.301187 | coeff: 0.301187 | eff: 1 | fom: 0.440949 | r2int: 0.0793743 | r2eff: 0 | hits: 8 ] keV
+ 27 834.714 [sigma: 67.3612 | error: 0.34238 | coeff: 0.34238 | eff: 1 | fom: 0.341227 | r2int: 0.110712 | r2eff: 0 | hits: 18 ] keV
+ 28 7514.11 [sigma: 879.778 | error: 0.331162 | coeff: 0.331162 | eff: 1 | fom: 0.364736 | r2int: 0.0959598 | r2eff: 0 | hits: 8 ] keV
+ 29 1518.14 [sigma: 423.282 | error: 0.682959 | coeff: 0.682959 | eff: 1 | fom: 0.0857573 | r2int: 0.388694 | r2eff: 0 | hits: 6 ] keV
+ 30 858.341 [sigma: 326.342 | error: 0.850156 | coeff: 0.850156 | eff: 1 | fom: 0.055343 | r2int: 0.578212 | r2eff: 0 | hits: 5 ] keV
+ 31 3645.53 [sigma: 530.435 | error: 0.544422 | coeff: 0.544422 | eff: 1 | fom: 0.134955 | r2int: 0.275224 | r2eff: 0 | hits: 14 ] keV
+ 32 2250.24 [sigma: 203.851 | error: 0.41514 | coeff: 0.41514 | eff: 1 | fom: 0.232098 | r2int: 0.164135 | r2eff: 0 | hits: 21 ] keV
+ 33 3574.62 [sigma: 312.704 | error: 0.327317 | coeff: 0.327317 | eff: 1 | fom: 0.373356 | r2int: 0.0994837 | r2eff: 0 | hits: 14 ] keV
+ 34 3109.94 [sigma: 518.65 | error: 0.624002 | coeff: 0.624002 | eff: 1 | fom: 0.102728 | r2int: 0.361565 | r2eff: 0 | hits: 14 ] keV
+ 35 720.771 [sigma: 84.0585 | error: 0.349869 | coeff: 0.349869 | eff: 1 | fom: 0.326775 | r2int: 0.108808 | r2eff: 0 | hits: 9 ] keV
+ 36 4058.94 [sigma: 520.716 | error: 0.528948 | coeff: 0.528948 | eff: 1 | fom: 0.142967 | r2int: 0.263328 | r2eff: 0 | hits: 17 ] keV
+ 37 5469.81 [sigma: 667.604 | error: 0.622348 | coeff: 0.622348 | eff: 1 | fom: 0.103275 | r2int: 0.37242 | r2eff: 0 | hits: 26 ] keV
+ 38 2758 [sigma: 134.777 | error: 0.234362 | coeff: 0.234362 | eff: 1 | fom: 0.728259 | r2int: 0.0525374 | r2eff: 0 | hits: 23 ] keV
+ 39 2760.6 [sigma: 427.981 | error: 0.514183 | coeff: 0.514183 | eff: 1 | fom: 0.151295 | r2int: 0.240349 | r2eff: 0 | hits: 11 ] keV
+ 40 3092.18 [sigma: 564.227 | error: 0.577018 | coeff: 0.577018 | eff: 1 | fom: 0.120138 | r2int: 0.299655 | r2eff: 0 | hits: 10 ] keV
+ 41 1800.1 [sigma: 296.381 | error: 0.570354 | coeff: 0.570354 | eff: 1 | fom: 0.122962 | r2int: 0.298195 | r2eff: 0 | hits: 12 ] keV
+ 42 5966.82 [sigma: 669.693 | error: 0.419949 | coeff: 0.419949 | eff: 1 | fom: 0.226812 | r2int: 0.163761 | r2eff: 0 | hits: 14 ] keV
+ 43 6832.32 [sigma: 906.177 | error: 0.530524 | coeff: 0.530524 | eff: 1 | fom: 0.142118 | r2int: 0.263864 | r2eff: 0 | hits: 16 ] keV
+ 44 1884.74 [sigma: 262.419 | error: 0.520966 | coeff: 0.520966 | eff: 1 | fom: 0.147381 | r2int: 0.252019 | r2eff: 0 | hits: 14 ] keV
+ 45 5001.01 [sigma: 788.811 | error: 0.446129 | coeff: 0.446129 | eff: 1 | fom: 0.200974 | r2int: 0.174152 | r2eff: 0 | hits: 8 ] keV
+ 46 932.031 [sigma: 198.541 | error: 0.673628 | coeff: 0.673628 | eff: 1 | fom: 0.0881495 | r2int: 0.408397 | r2eff: 0 | hits: 10 ] keV
+ 47 4129.28 [sigma: 527.606 | error: 0.494859 | coeff: 0.494859 | eff: 1 | fom: 0.163342 | r2int: 0.22856 | r2eff: 0 | hits: 15 ] keV
+ 48 543.408 [sigma: 112.634 | error: 0.586259 | coeff: 0.586259 | eff: 1 | fom: 0.116381 | r2int: 0.300737 | r2eff: 0 | hits: 8 ] keV
+ 49 3567.02 [sigma: 621.943 | error: 0.493163 | coeff: 0.493163 | eff: 1 | fom: 0.164467 | r2int: 0.212808 | r2eff: 0 | hits: 8 ] keV
+ 50 5647.85 [sigma: 568.031 | error: 0.460891 | coeff: 0.460891 | eff: 1 | fom: 0.188305 | r2int: 0.202306 | r2eff: 0 | hits: 21 ] keV
+ 51 7243.19 [sigma: 362.597 | error: 0.312628 | coeff: 0.312628 | eff: 1 | fom: 0.409266 | r2int: 0.0952299 | r2eff: 0 | hits: 39 ] keV
+ 52 3075.88 [sigma: 157.211 | error: 0.315069 | coeff: 0.315069 | eff: 1 | fom: 0.402948 | r2int: 0.096656 | r2eff: 0 | hits: 38 ] keV
+ 53 5841.61 [sigma: 394.313 | error: 0.375828 | coeff: 0.375828 | eff: 1 | fom: 0.283192 | r2int: 0.13669 | r2eff: 0 | hits: 31 ] keV
+ 54 9458.57 [sigma: 588.598 | error: 0.285169 | coeff: 0.285169 | eff: 1 | fom: 0.491874 | r2int: 0.0774491 | r2eff: 0 | hits: 21 ] keV
+ 55 13527 [sigma: 791.292 | error: 0.292485 | coeff: 0.292485 | eff: 1 | fom: 0.467576 | r2int: 0.0821256 | r2eff: 0 | hits: 25 ] keV
+ 56 12522.5 [sigma: 700.883 | error: 0.362726 | coeff: 0.362726 | eff: 1 | fom: 0.30402 | r2int: 0.128438 | r2eff: 0 | hits: 42 ] keV
+ 57 18726.2 [sigma: 608.728 | error: 0.262078 | coeff: 0.262078 | eff: 1 | fom: 0.582371 | r2int: 0.0676281 | r2eff: 0 | hits: 65 ] keV
+ 58 17952.4 [sigma: 667.964 | error: 0.2906 | coeff: 0.2906 | eff: 1 | fom: 0.473663 | r2int: 0.0830638 | r2eff: 0 | hits: 61 ] keV
+ 59 6314.28 [sigma: 504.098 | error: 0.407078 | coeff: 0.407078 | eff: 1 | fom: 0.241382 | r2int: 0.159339 | r2eff: 0 | hits: 26 ] keV
+ 60 5058.93 [sigma: 472.069 | error: 0.406746 | coeff: 0.406746 | eff: 1 | fom: 0.241777 | r2int: 0.156735 | r2eff: 0 | hits: 19 ] keV
+ 61 15098.1 [sigma: 575.796 | error: 0.280249 | coeff: 0.280249 | eff: 1 | fom: 0.509299 | r2int: 0.0770849 | r2eff: 0 | hits: 54 ] keV
+ 62 24970.2 [sigma: 740.369 | error: 0.258484 | coeff: 0.258484 | eff: 1 | fom: 0.598677 | r2int: 0.0659348 | r2eff: 0 | hits: 76 ] keV
+ 63 27969.6 [sigma: 761.738 | error: 0.242065 | coeff: 0.242065 | eff: 1 | fom: 0.682645 | r2int: 0.0578539 | r2eff: 0 | hits: 79 ] keV
+ 64 6128.33 [sigma: 361.345 | error: 0.386646 | coeff: 0.386646 | eff: 1 | fom: 0.267567 | r2int: 0.146019 | r2eff: 0 | hits: 43 ] keV
+ 65 4082.29 [sigma: 414.008 | error: 0.475682 | coeff: 0.475682 | eff: 1 | fom: 0.176777 | r2int: 0.215988 | r2eff: 0 | hits: 22 ] keV
+ 66 9521.35 [sigma: 484.793 | error: 0.341558 | coeff: 0.341558 | eff: 1 | fom: 0.342872 | r2int: 0.114069 | r2eff: 0 | hits: 45 ] keV
+ 67 13049.4 [sigma: 513.717 | error: 0.297214 | coeff: 0.297214 | eff: 1 | fom: 0.452815 | r2int: 0.0867864 | r2eff: 0 | hits: 57 ] keV
+ 68 27105.7 [sigma: 754.611 | error: 0.222717 | coeff: 0.222717 | eff: 1 | fom: 0.806406 | r2int: 0.0488278 | r2eff: 0 | hits: 64 ] keV
+ 69 6755.46 [sigma: 335.563 | error: 0.302148 | coeff: 0.302148 | eff: 1 | fom: 0.438148 | r2int: 0.0888259 | r2eff: 0 | hits: 37 ] keV
+ 70 5559.03 [sigma: 499.849 | error: 0.449583 | coeff: 0.449583 | eff: 1 | fom: 0.197898 | r2int: 0.194039 | r2eff: 0 | hits: 25 ] keV
+ 71 4601.25 [sigma: 337.183 | error: 0.351441 | coeff: 0.351441 | eff: 1 | fom: 0.323858 | r2int: 0.118141 | r2eff: 0 | hits: 23 ] keV
+ 72 3095.49 [sigma: 197.142 | error: 0.312001 | coeff: 0.312001 | eff: 1 | fom: 0.41091 | r2int: 0.0932888 | r2eff: 0 | hits: 24 ] keV
+ 73 3533.08 [sigma: 236.098 | error: 0.353605 | coeff: 0.353605 | eff: 1 | fom: 0.319907 | r2int: 0.120571 | r2eff: 0 | hits: 28 ] keV
+ 74 4185.99 [sigma: 378.684 | error: 0.433853 | coeff: 0.433853 | eff: 1 | fom: 0.212507 | r2int: 0.180045 | r2eff: 0 | hits: 23 ] keV
+ 75 17902.3 [sigma: 364.316 | error: 0.206532 | coeff: 0.206532 | eff: 1 | fom: 0.937746 | r2int: 0.0422414 | r2eff: 0 | hits: 103 ] keV
+ 76 32965.9 [sigma: 446.643 | error: 0.159736 | coeff: 0.159736 | eff: 1 | fom: 1.56767 | r2int: 0.0253321 | r2eff: 0 | hits: 139 ] keV
+ 77 28938 [sigma: 351.851 | error: 0.158531 | coeff: 0.158531 | eff: 1 | fom: 1.59159 | r2int: 0.0249843 | r2eff: 0 | hits: 170 ] keV
+ 78 35311.9 [sigma: 403.546 | error: 0.15161 | coeff: 0.15161 | eff: 1 | fom: 1.74022 | r2int: 0.022855 | r2eff: 0 | hits: 176 ] keV
+ 79 20057.3 [sigma: 415.46 | error: 0.220189 | coeff: 0.220189 | eff: 1 | fom: 0.825026 | r2int: 0.0480543 | r2eff: 0 | hits: 113 ] keV
+ 80 31263.6 [sigma: 488.579 | error: 0.178183 | coeff: 0.178183 | eff: 1 | fom: 1.25987 | r2int: 0.031505 | r2eff: 0 | hits: 130 ] keV
+ 81 356516 [sigma: 1156.03 | error: 0.0522851 | coeff: 0.0522851 | eff: 1 | fom: 14.632 | r2int: 0.00272322 | r2eff: 0 | hits: 260 ] keV
+ 82 306285 [sigma: 1145.49 | error: 0.0600726 | coeff: 0.0600726 | eff: 1 | fom: 11.0843 | r2int: 0.00359473 | r2eff: 0 | hits: 258 ] keV
+ 83 407711 [sigma: 1137.43 | error: 0.0453288 | coeff: 0.0453288 | eff: 1 | fom: 19.4676 | r2int: 0.00204691 | r2eff: 0 | hits: 264 ] keV
+ 84 42746.4 [sigma: 524.87 | error: 0.149881 | coeff: 0.149881 | eff: 1 | fom: 1.78061 | r2int: 0.0223135 | r2eff: 0 | hits: 149 ] keV
+ 85 37928.4 [sigma: 517.326 | error: 0.164807 | coeff: 0.164807 | eff: 1 | fom: 1.47268 | r2int: 0.0269754 | r2eff: 0 | hits: 146 ] keV
+ 86 254677 [sigma: 1145.79 | error: 0.0692612 | coeff: 0.0692612 | eff: 1 | fom: 8.33836 | r2int: 0.00477687 | r2eff: 0 | hits: 237 ] keV
+ 87 288329 [sigma: 1133 | error: 0.0634835 | coeff: 0.0634835 | eff: 1 | fom: 9.92517 | r2int: 0.00401472 | r2eff: 0 | hits: 261 ] keV
+ 88 269835 [sigma: 1133.25 | error: 0.0664043 | coeff: 0.0664043 | eff: 1 | fom: 9.07125 | r2int: 0.0043919 | r2eff: 0 | hits: 250 ] keV
+ 89 34231.1 [sigma: 414.152 | error: 0.150141 | coeff: 0.150141 | eff: 1 | fom: 1.77444 | r2int: 0.0223959 | r2eff: 0 | hits: 154 ] keV
+ 90 30374.8 [sigma: 462.903 | error: 0.184772 | coeff: 0.184772 | eff: 1 | fom: 1.17163 | r2int: 0.0339083 | r2eff: 0 | hits: 147 ] keV
+ 91 370891 [sigma: 1144.2 | error: 0.0500305 | coeff: 0.0500305 | eff: 1 | fom: 15.9805 | r2int: 0.00249353 | r2eff: 0 | hits: 263 ] keV
+ 92 313765 [sigma: 1146.15 | error: 0.0583322 | coeff: 0.0583322 | eff: 1 | fom: 11.7556 | r2int: 0.0033893 | r2eff: 0 | hits: 255 ] keV
+ 93 369893 [sigma: 1166.9 | error: 0.0499799 | coeff: 0.0499799 | eff: 1 | fom: 16.0128 | r2int: 0.00248804 | r2eff: 0 | hits: 251 ] keV
+ 94 35379.9 [sigma: 373.519 | error: 0.139261 | coeff: 0.139261 | eff: 1 | fom: 2.06252 | r2int: 0.0192823 | r2eff: 0 | hits: 174 ] keV
+ 95 24600.8 [sigma: 444.266 | error: 0.197001 | coeff: 0.197001 | eff: 1 | fom: 1.03068 | r2int: 0.0384831 | r2eff: 0 | hits: 119 ] keV
+ 96 36307.8 [sigma: 466.31 | error: 0.164974 | coeff: 0.164974 | eff: 1 | fom: 1.46969 | r2int: 0.0270516 | r2eff: 0 | hits: 165 ] keV
+ 97 36523.8 [sigma: 456.862 | error: 0.16213 | coeff: 0.16213 | eff: 1 | fom: 1.52171 | r2int: 0.0261297 | r2eff: 0 | hits: 168 ] keV
+ 98 44060.9 [sigma: 466.013 | error: 0.13871 | coeff: 0.13871 | eff: 1 | fom: 2.07894 | r2int: 0.0191287 | r2eff: 0 | hits: 172 ] keV
+ 99 27333.2 [sigma: 468.274 | error: 0.178042 | coeff: 0.178042 | eff: 1 | fom: 1.26187 | r2int: 0.0314054 | r2eff: 0 | hits: 108 ] keV
+ 100 330519 [sigma: 466.459 | error: 0.0337237 | coeff: 0.0337237 | eff: 1 | fom: 35.1714 | r2int: 0.0011353 | r2eff: 0 | hits: 571 ] keV
+ 101 368099 [sigma: 524.183 | error: 0.03773 | coeff: 0.03773 | eff: 1 | fom: 28.0987 | r2int: 0.00142152 | r2eff: 0 | hits: 702 ] keV
+ 102 356896 [sigma: 504.683 | error: 0.0378385 | coeff: 0.0378385 | eff: 1 | fom: 27.9379 | r2int: 0.00142975 | r2eff: 0 | hits: 716 ] keV
+ 103 379164 [sigma: 499.39 | error: 0.0354146 | coeff: 0.0354146 | eff: 1 | fom: 31.8931 | r2int: 0.00125246 | r2eff: 0 | hits: 723 ] keV
+ 104 361268 [sigma: 476.333 | error: 0.0327244 | coeff: 0.0327244 | eff: 1 | fom: 37.3523 | r2int: 0.00106914 | r2eff: 0 | hits: 616 ] keV
+ 105 346530 [sigma: 461.684 | error: 0.0348698 | coeff: 0.0348698 | eff: 1 | fom: 32.8974 | r2int: 0.00121413 | r2eff: 0 | hits: 685 ] keV
+ 106 347921 [sigma: 470.84 | error: 0.0391053 | coeff: 0.0391053 | eff: 1 | fom: 26.157 | r2int: 0.00152739 | r2eff: 0 | hits: 835 ] keV
+ 107 389668 [sigma: 474.036 | error: 0.0360671 | coeff: 0.0360671 | eff: 1 | fom: 30.7495 | r2int: 0.00129936 | r2eff: 0 | hits: 879 ] keV
+ 108 399020 [sigma: 487.656 | error: 0.0359648 | coeff: 0.0359648 | eff: 1 | fom: 30.9246 | r2int: 0.00129197 | r2eff: 0 | hits: 866 ] keV
+ 109 326282 [sigma: 477.44 | error: 0.0381855 | coeff: 0.0381855 | eff: 1 | fom: 27.4323 | r2int: 0.00145599 | r2eff: 0 | hits: 681 ] keV
+ 110 349699 [sigma: 494.781 | error: 0.036814 | coeff: 0.036814 | eff: 1 | fom: 29.5144 | r2int: 0.00135327 | r2eff: 0 | hits: 677 ] keV
+ 111 364124 [sigma: 460.024 | error: 0.0365506 | coeff: 0.0365506 | eff: 1 | fom: 29.9413 | r2int: 0.00133435 | r2eff: 0 | hits: 837 ] keV
+ 112 387654 [sigma: 486.077 | error: 0.0370058 | coeff: 0.0370058 | eff: 1 | fom: 29.2093 | r2int: 0.00136785 | r2eff: 0 | hits: 871 ] keV
+ 113 389223 [sigma: 459.325 | error: 0.0351268 | coeff: 0.0351268 | eff: 1 | fom: 32.4177 | r2int: 0.0012325 | r2eff: 0 | hits: 886 ] keV
+ 114 331323 [sigma: 464.106 | error: 0.0367951 | coeff: 0.0367951 | eff: 1 | fom: 28.4084 | r2int: 0.00135192 | r2eff: 0 | hits: 690 ] keV
+ 115 343871 [sigma: 476.257 | error: 0.0360097 | coeff: 0.0360097 | eff: 1 | fom: 29.6611 | r2int: 0.00129478 | r2eff: 0 | hits: 676 ] keV
+ 116 419174 [sigma: 496.67 | error: 0.0342386 | coeff: 0.0342386 | eff: 1 | fom: 32.8091 | r2int: 0.00117088 | r2eff: 0 | hits: 835 ] keV
+ 117 367959 [sigma: 467.773 | error: 0.03754 | coeff: 0.03754 | eff: 1 | fom: 27.2921 | r2int: 0.00140764 | r2eff: 0 | hits: 872 ] keV
+ 118 418037 [sigma: 522.818 | error: 0.0371846 | coeff: 0.0371846 | eff: 1 | fom: 27.8164 | r2int: 0.00138113 | r2eff: 0 | hits: 884 ] keV
+ 119 362639 [sigma: 498.128 | error: 0.0368581 | coeff: 0.0368581 | eff: 1 | fom: 28.3114 | r2int: 0.00135663 | r2eff: 0 | hits: 720 ] keV
+ 120 324319 [sigma: 448.078 | error: 0.0328111 | coeff: 0.0328111 | eff: 1 | fom: 35.7261 | r2int: 0.00107466 | r2eff: 0 | hits: 564 ] keV
+ 121 356568 [sigma: 498.804 | error: 0.0374059 | coeff: 0.0374059 | eff: 1 | fom: 27.4882 | r2int: 0.00139725 | r2eff: 0 | hits: 715 ] keV
+ 122 381764 [sigma: 477.433 | error: 0.0343174 | coeff: 0.0343174 | eff: 1 | fom: 32.6586 | r2int: 0.00117612 | r2eff: 0 | hits: 753 ] keV
+ 123 367817 [sigma: 492.161 | error: 0.0359289 | coeff: 0.0359289 | eff: 1 | fom: 29.7947 | r2int: 0.00128909 | r2eff: 0 | hits: 721 ] keV
+ 124 369137 [sigma: 478.217 | error: 0.032978 | coeff: 0.032978 | eff: 1 | fom: 35.3653 | r2int: 0.00108587 | r2eff: 0 | hits: 648 ] keV
============================================================
closed file mfd_tl_EnergyDeposit.out for output
============================================================
opened file mfd_tg_EnergyDeposit.out for output
============================================================
- 0 2352.719649 keV
- 1 50.010977 keV
- 2 3146.913664 keV
- 3 2663.505517 keV
- 4 818.515963 keV
- 5 1.915037 keV
- 6 10.771101 keV
- 7 1653.788629 keV
- 8 170.948823 keV
- 9 356.414665 keV
- 10 1262.072572 keV
- 11 2493.094163 keV
- 12 226.568952 keV
- 13 2848.081858 keV
- 15 1249.670703 keV
- 16 388.417562 keV
- 17 962.228393 keV
- 18 364.365576 keV
- 19 339.438958 keV
- 20 4063.568216 keV
- 21 2485.521422 keV
- 22 19.719108 keV
- 23 168.208683 keV
- 24 4.107706 keV
- 25 67.486420 keV
- 26 1528.534218 keV
- 27 3926.885697 keV
- 28 1651.831516 keV
- 29 1389.223380 keV
- 30 1824.357878 keV
- 31 3108.709093 keV
- 32 4674.035836 keV
- 33 5717.560448 keV
- 34 2379.316728 keV
- 35 2051.637217 keV
- 36 3402.001549 keV
- 37 5067.824227 keV
- 38 4689.834733 keV
- 39 753.616750 keV
- 40 589.832452 keV
- 41 2728.243933 keV
- 42 2046.525138 keV
- 43 4648.875111 keV
- 44 1791.757737 keV
- 45 1622.408473 keV
- 46 2941.555894 keV
- 47 3016.415457 keV
- 48 767.842789 keV
- 49 3023.176199 keV
- 50 3820.982109 keV
- 51 6083.920904 keV
- 52 7182.150003 keV
- 53 8805.075636 keV
- 54 7885.984949 keV
- 55 5872.104716 keV
- 56 17970.349491 keV
- 57 18081.888989 keV
- 58 18296.417295 keV
- 59 4183.324566 keV
- 60 8197.149787 keV
- 61 10329.189156 keV
- 62 20858.800186 keV
- 63 30699.918073 keV
- 64 9939.488575 keV
- 65 6523.237032 keV
- 66 16457.544908 keV
- 67 13999.119766 keV
- 68 14458.472302 keV
- 69 3537.385358 keV
- 70 5810.130264 keV
- 71 1907.537438 keV
- 72 6332.547644 keV
- 73 8764.932361 keV
- 74 3148.464661 keV
- 75 19118.535525 keV
- 76 23738.505369 keV
- 77 35454.878403 keV
- 78 34093.747492 keV
- 79 30365.111122 keV
- 80 20454.032390 keV
- 81 340566.583843 keV
- 82 319313.485404 keV
- 83 328028.964233 keV
- 84 27784.246707 keV
- 85 32667.739649 keV
- 86 292668.584379 keV
- 87 241926.590950 keV
- 88 301723.588236 keV
- 89 36406.936609 keV
- 90 35180.714650 keV
- 91 360614.555539 keV
- 92 311064.799021 keV
- 93 366631.178562 keV
- 94 30476.350362 keV
- 95 23971.393580 keV
- 96 38395.253477 keV
- 97 31874.075003 keV
- 98 34096.632712 keV
- 99 24799.765052 keV
- 100 353270.063028 keV
- 101 353851.938243 keV
- 102 349970.261852 keV
- 103 374823.656109 keV
- 104 289466.329613 keV
- 105 375872.066816 keV
- 106 392145.917153 keV
- 107 400485.275402 keV
- 108 418344.340629 keV
- 109 365722.825944 keV
- 110 357106.898286 keV
- 111 429220.490678 keV
- 112 397653.364063 keV
- 113 389371.774290 keV
- 114 355251.432392 keV
- 115 369510.621805 keV
- 116 391319.886389 keV
- 117 359255.450664 keV
- 118 345256.599332 keV
- 119 360483.759828 keV
- 120 338975.647607 keV
- 121 345489.606426 keV
- 122 358545.256127 keV
- 123 347889.326788 keV
- 124 355154.621948 keV
+ 0 99.977203 keV
+ 1 1311.922081 keV
+ 2 42.184446 keV
+ 3 90.195300 keV
+ 4 803.417529 keV
+ 5 861.019884 keV
+ 6 2.542950 keV
+ 7 2384.264330 keV
+ 8 1104.793910 keV
+ 9 131.528360 keV
+ 11 127.758686 keV
+ 12 537.878138 keV
+ 13 324.644588 keV
+ 14 64.558399 keV
+ 15 923.876393 keV
+ 16 7.080810 keV
+ 17 286.234087 keV
+ 18 118.251789 keV
+ 19 6.590294 keV
+ 20 25.850150 keV
+ 21 62.898540 keV
+ 22 613.568176 keV
+ 23 1612.782855 keV
+ 24 510.392852 keV
+ 25 4562.686331 keV
+ 26 276.171414 keV
+ 27 834.713796 keV
+ 28 7514.105921 keV
+ 29 1518.135454 keV
+ 30 858.341142 keV
+ 31 3645.526676 keV
+ 32 2250.239027 keV
+ 33 3574.617107 keV
+ 34 3109.942708 keV
+ 35 720.770832 keV
+ 36 4058.939065 keV
+ 37 5469.809700 keV
+ 38 2758.000278 keV
+ 39 2760.599874 keV
+ 40 3092.177365 keV
+ 41 1800.100757 keV
+ 42 5966.819718 keV
+ 43 6832.318009 keV
+ 44 1884.735236 keV
+ 45 5001.011189 keV
+ 46 932.030992 keV
+ 47 4129.279852 keV
+ 48 543.408044 keV
+ 49 3567.019012 keV
+ 50 5647.852254 keV
+ 51 7243.186683 keV
+ 52 3075.875044 keV
+ 53 5841.612455 keV
+ 54 9458.569862 keV
+ 55 13527.042353 keV
+ 56 12522.521344 keV
+ 57 18726.201345 keV
+ 58 17952.404376 keV
+ 59 6314.281196 keV
+ 60 5058.934894 keV
+ 61 15098.096504 keV
+ 62 24970.152159 keV
+ 63 27969.640366 keV
+ 64 6128.334040 keV
+ 65 4082.289501 keV
+ 66 9521.347378 keV
+ 67 13049.432365 keV
+ 68 27105.674005 keV
+ 69 6755.461834 keV
+ 70 5559.031739 keV
+ 71 4601.251622 keV
+ 72 3095.485679 keV
+ 73 3533.078556 keV
+ 74 4185.988624 keV
+ 75 17902.338794 keV
+ 76 32965.918721 keV
+ 77 28938.023656 keV
+ 78 35311.902121 keV
+ 79 20057.267948 keV
+ 80 31263.634439 keV
+ 81 356516.176266 keV
+ 82 306285.368173 keV
+ 83 407711.433229 keV
+ 84 42746.365630 keV
+ 85 37928.438295 keV
+ 86 254677.245033 keV
+ 87 288328.712823 keV
+ 88 269835.451530 keV
+ 89 34231.123307 keV
+ 90 30374.810954 keV
+ 91 370891.355982 keV
+ 92 313765.292887 keV
+ 93 369892.692268 keV
+ 94 35379.945482 keV
+ 95 24600.773015 keV
+ 96 36307.779088 keV
+ 97 36523.814411 keV
+ 98 44060.888092 keV
+ 99 27333.182049 keV
+ 100 330518.756267 keV
+ 101 368099.151680 keV
+ 102 356895.917478 keV
+ 103 379164.276531 keV
+ 104 361268.130117 keV
+ 105 346530.084295 keV
+ 106 347921.003104 keV
+ 107 389667.983536 keV
+ 108 399019.875565 keV
+ 109 326282.426672 keV
+ 110 349699.050933 keV
+ 111 364123.526907 keV
+ 112 387654.448144 keV
+ 113 389222.907024 keV
+ 114 331323.489814 keV
+ 115 343870.824916 keV
+ 116 419174.467818 keV
+ 117 367958.811753 keV
+ 118 418036.651002 keV
+ 119 362639.424214 keV
+ 120 324319.336983 keV
+ 121 356568.315421 keV
+ 122 381764.445228 keV
+ 123 367816.627297 keV
+ 124 369137.382657 keV
============================================================
closed file mfd_tg_EnergyDeposit.out for output
============================================================
opened file mfd_tl_NumberOfSteps.out for output
============================================================
- 0 47.000000 steps
- 1 11.000000 steps
- 2 84.000000 steps
- 3 72.000000 steps
- 4 42.000000 steps
- 5 10.000000 steps
- 6 15.000000 steps
- 7 53.000000 steps
- 8 37.000000 steps
- 9 39.000000 steps
- 10 58.000000 steps
- 11 112.000000 steps
- 12 33.000000 steps
- 13 113.000000 steps
- 14 3.000000 steps
- 15 92.000000 steps
- 16 62.000000 steps
- 17 84.000000 steps
- 18 32.000000 steps
- 19 44.000000 steps
- 20 117.000000 steps
- 21 58.000000 steps
- 22 23.000000 steps
- 23 32.000000 steps
- 24 7.000000 steps
- 25 37.000000 steps
- 26 118.000000 steps
- 27 190.000000 steps
- 28 133.000000 steps
- 29 77.000000 steps
- 30 230.000000 steps
- 31 280.000000 steps
- 32 258.000000 steps
- 33 279.000000 steps
- 34 162.000000 steps
- 35 118.000000 steps
- 36 242.000000 steps
- 37 390.000000 steps
- 38 394.000000 steps
- 39 98.000000 steps
- 40 55.000000 steps
- 41 136.000000 steps
- 42 247.000000 steps
- 43 294.000000 steps
- 44 123.000000 steps
- 45 105.000000 steps
- 46 121.000000 steps
- 47 135.000000 steps
- 48 120.000000 steps
- 49 90.000000 steps
- 50 303.000000 steps
- 51 430.000000 steps
- 52 655.000000 steps
- 53 638.000000 steps
- 54 360.000000 steps
- 55 602.000000 steps
- 56 890.000000 steps
- 57 1106.000000 steps
- 58 1064.000000 steps
- 59 412.000000 steps
- 60 566.000000 steps
- 61 755.000000 steps
- 62 1190.000000 steps
- 63 1024.000000 steps
- 64 717.000000 steps
- 65 491.000000 steps
- 66 643.000000 steps
- 67 824.000000 steps
- 68 838.000000 steps
- 69 532.000000 steps
- 70 337.000000 steps
- 71 286.000000 steps
- 72 403.000000 steps
- 73 558.000000 steps
- 74 279.000000 steps
- 75 2968.000000 steps
- 76 3822.000000 steps
- 77 3170.000000 steps
- 78 2948.000000 steps
- 79 2842.000000 steps
- 80 3053.000000 steps
- 81 3813.000000 steps
- 82 4079.000000 steps
- 83 3636.000000 steps
- 84 3390.000000 steps
- 85 3294.000000 steps
- 86 3537.000000 steps
- 87 4008.000000 steps
- 88 3827.000000 steps
- 89 3913.000000 steps
- 90 3652.000000 steps
- 91 3572.000000 steps
- 92 4036.000000 steps
- 93 3840.000000 steps
- 94 3732.000000 steps
- 95 3204.000000 steps
- 96 3849.000000 steps
- 97 3899.000000 steps
- 98 3613.000000 steps
- 99 2872.000000 steps
- 100 14890.000000 steps
- 101 19797.000000 steps
- 102 18088.000000 steps
- 103 17795.000000 steps
- 104 12895.000000 steps
- 105 17481.000000 steps
- 106 22968.000000 steps
- 107 24272.000000 steps
- 108 23804.000000 steps
- 109 16743.000000 steps
- 110 16711.000000 steps
- 111 23405.000000 steps
- 112 23044.000000 steps
- 113 22765.000000 steps
- 114 19436.000000 steps
- 115 19489.000000 steps
- 116 22783.000000 steps
- 117 21998.000000 steps
- 118 20055.000000 steps
- 119 17195.000000 steps
- 120 15236.000000 steps
- 121 17623.000000 steps
- 122 19181.000000 steps
- 123 16690.000000 steps
- 124 14132.000000 steps
- 0 47 [sigma: 13.3167 | error: 0.490747 | coeff: 0.490747 | eff: 1 | fom: 0.148295 | r2int: 0.160555 | r2eff: 0 | hits: 3 ] steps
- 1 11 [sigma: 1.60208 | error: 0.356753 | coeff: 0.356753 | eff: 1 | fom: 0.280612 | r2int: 0.106061 | r2eff: 0 | hits: 6 ] steps
- 2 84 [sigma: 15.3406 | error: 0.483183 | coeff: 0.483183 | eff: 1 | fom: 0.152975 | r2int: 0.200113 | r2eff: 0 | hits: 7 ] steps
- 3 72 [sigma: 14.0509 | error: 0.551973 | coeff: 0.551973 | eff: 1 | fom: 0.117221 | r2int: 0.26659 | r2eff: 0 | hits: 8 ] steps
- 4 42 [sigma: 7.54983 | error: 0.475595 | coeff: 0.475595 | eff: 1 | fom: 0.157895 | r2int: 0.193878 | r2eff: 0 | hits: 7 ] steps
- 5 10 [sigma: 1.21106 | error: 0.296648 | coeff: 0.296648 | eff: 1 | fom: 0.405844 | r2int: 0.0733333 | r2eff: 0 | hits: 6 ] steps
- 6 15 [sigma: 3.08221 | error: 0.459468 | coeff: 0.459468 | eff: 1 | fom: 0.169173 | r2int: 0.168889 | r2eff: 0 | hits: 5 ] steps
- 7 53 [sigma: 10.1136 | error: 0.504871 | coeff: 0.504871 | eff: 1 | fom: 0.140114 | r2int: 0.218481 | r2eff: 0 | hits: 7 ] steps
- 8 37 [sigma: 3.77271 | error: 0.322442 | coeff: 0.322442 | eff: 1 | fom: 0.34351 | r2int: 0.093572 | r2eff: 0 | hits: 10 ] steps
- 9 39 [sigma: 11.758 | error: 0.602973 | coeff: 0.602973 | eff: 1 | fom: 0.0982304 | r2int: 0.272682 | r2eff: 0 | hits: 4 ] steps
- 10 58 [sigma: 8.23273 | error: 0.425831 | coeff: 0.425831 | eff: 1 | fom: 0.196956 | r2int: 0.161184 | r2eff: 0 | hits: 9 ] steps
- 11 112 [sigma: 19.021 | error: 0.379753 | coeff: 0.379753 | eff: 1 | fom: 0.247651 | r2int: 0.11537 | r2eff: 0 | hits: 5 ] steps
- 12 33 [sigma: 5.05682 | error: 0.405427 | coeff: 0.405427 | eff: 1 | fom: 0.217279 | r2int: 0.140889 | r2eff: 0 | hits: 7 ] steps
- 13 113 [sigma: 11.0459 | error: 0.309116 | coeff: 0.309116 | eff: 1 | fom: 0.373766 | r2int: 0.0859973 | r2eff: 0 | hits: 10 ] steps
- 14 3 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: 0 | r2eff: 0 | hits: 3 ] steps
- 15 92 [sigma: 7.83203 | error: 0.31853 | coeff: 0.31853 | eff: 1 | fom: 0.351999 | r2int: 0.0942142 | r2eff: 0 | hits: 14 ] steps
- 16 62 [sigma: 7.19788 | error: 0.307158 | coeff: 0.307158 | eff: 1 | fom: 0.378545 | r2int: 0.0808681 | r2eff: 0 | hits: 7 ] steps
- 17 84 [sigma: 10.7621 | error: 0.405151 | coeff: 0.405151 | eff: 1 | fom: 0.217575 | r2int: 0.147732 | r2eff: 0 | hits: 10 ] steps
- 18 32 [sigma: 4.27785 | error: 0.298924 | coeff: 0.298924 | eff: 1 | fom: 0.399688 | r2int: 0.0714844 | r2eff: 0 | hits: 5 ] steps
- 19 44 [sigma: 5.01513 | error: 0.394839 | coeff: 0.394839 | eff: 1 | fom: 0.229088 | r2int: 0.142906 | r2eff: 0 | hits: 12 ] steps
- 20 117 [sigma: 15.2024 | error: 0.450109 | coeff: 0.450109 | eff: 1 | fom: 0.176282 | r2int: 0.185715 | r2eff: 0 | hits: 12 ] steps
- 21 58 [sigma: 13.2023 | error: 0.508986 | coeff: 0.508986 | eff: 1 | fom: 0.137858 | r2int: 0.207253 | r2eff: 0 | hits: 5 ] steps
- 22 23 [sigma: 11.547 | error: 0.869565 | coeff: 0.869565 | eff: 1 | fom: 0.0472321 | r2int: 0.504096 | r2eff: 0 | hits: 3 ] steps
- 23 32 [sigma: 3.93277 | error: 0.30104 | coeff: 0.30104 | eff: 1 | fom: 0.394089 | r2int: 0.0755208 | r2eff: 0 | hits: 6 ] steps
- 24 7 [sigma: 1.5 | error: 0.428571 | coeff: 0.428571 | eff: 1 | fom: 0.194444 | r2int: 0.137755 | r2eff: 0 | hits: 4 ] steps
- 25 37 [sigma: 4.10357 | error: 0.313693 | coeff: 0.313693 | eff: 1 | fom: 0.362937 | r2int: 0.086103 | r2eff: 0 | hits: 8 ] steps
- 26 118 [sigma: 5.41376 | error: 0.189165 | coeff: 0.189165 | eff: 1 | fom: 0.998065 | r2int: 0.0336786 | r2eff: 0 | hits: 17 ] steps
- 27 190 [sigma: 11.2271 | error: 0.270784 | coeff: 0.270784 | eff: 1 | fom: 0.487074 | r2int: 0.0698325 | r2eff: 0 | hits: 21 ] steps
- 28 133 [sigma: 7.43864 | error: 0.243792 | coeff: 0.243792 | eff: 1 | fom: 0.600904 | r2int: 0.0563062 | r2eff: 0 | hits: 19 ] steps
- 29 77 [sigma: 5.73045 | error: 0.288233 | coeff: 0.288233 | eff: 1 | fom: 0.429887 | r2int: 0.0775398 | r2eff: 0 | hits: 15 ] steps
- 30 230 [sigma: 17.9722 | error: 0.374746 | coeff: 0.374746 | eff: 1 | fom: 0.254312 | r2int: 0.134329 | r2eff: 0 | hits: 23 ] steps
- 31 280 [sigma: 13.4322 | error: 0.230066 | coeff: 0.230066 | eff: 1 | fom: 0.674743 | r2int: 0.0506289 | r2eff: 0 | hits: 23 ] steps
- 32 258 [sigma: 5.22813 | error: 0.105295 | coeff: 0.105295 | eff: 1 | fom: 3.22125 | r2int: 0.0106764 | r2eff: 0 | hits: 27 ] steps
- 33 279 [sigma: 10.0086 | error: 0.193183 | coeff: 0.193183 | eff: 1 | fom: 0.956983 | r2int: 0.0360328 | r2eff: 0 | hits: 29 ] steps
- 34 162 [sigma: 9.64038 | error: 0.26613 | coeff: 0.26613 | eff: 1 | fom: 0.50426 | r2int: 0.067284 | r2eff: 0 | hits: 20 ] steps
- 35 118 [sigma: 8.15836 | error: 0.285066 | coeff: 0.285066 | eff: 1 | fom: 0.439492 | r2int: 0.0764824 | r2eff: 0 | hits: 17 ] steps
- 36 242 [sigma: 13.1293 | error: 0.230178 | coeff: 0.230178 | eff: 1 | fom: 0.674086 | r2int: 0.0500383 | r2eff: 0 | hits: 18 ] steps
- 37 390 [sigma: 12.5451 | error: 0.176185 | coeff: 0.176185 | eff: 1 | fom: 1.15054 | r2int: 0.0300066 | r2eff: 0 | hits: 30 ] steps
- 38 394 [sigma: 10.5547 | error: 0.156202 | coeff: 0.156202 | eff: 1 | fom: 1.46375 | r2int: 0.0236816 | r2eff: 0 | hits: 34 ] steps
- 39 98 [sigma: 5.21856 | error: 0.244025 | coeff: 0.244025 | eff: 1 | fom: 0.599755 | r2int: 0.0567125 | r2eff: 0 | hits: 21 ] steps
- 40 55 [sigma: 4.9317 | error: 0.39085 | coeff: 0.39085 | eff: 1 | fom: 0.233787 | r2int: 0.144724 | r2eff: 0 | hits: 19 ] steps
- 41 136 [sigma: 9.98954 | error: 0.311632 | coeff: 0.311632 | eff: 1 | fom: 0.367753 | r2int: 0.0917195 | r2eff: 0 | hits: 18 ] steps
- 42 247 [sigma: 10.6382 | error: 0.210998 | coeff: 0.210998 | eff: 1 | fom: 0.802205 | r2int: 0.0426652 | r2eff: 0 | hits: 24 ] steps
- 43 294 [sigma: 12.97 | error: 0.181893 | coeff: 0.181893 | eff: 1 | fom: 1.07946 | r2int: 0.031139 | r2eff: 0 | hits: 17 ] steps
- 44 123 [sigma: 6.85864 | error: 0.243058 | coeff: 0.243058 | eff: 1 | fom: 0.604537 | r2int: 0.0559678 | r2eff: 0 | hits: 19 ] steps
- 45 105 [sigma: 6.84105 | error: 0.298568 | coeff: 0.298568 | eff: 1 | fom: 0.400641 | r2int: 0.084898 | r2eff: 0 | hits: 21 ] steps
- 46 121 [sigma: 10.6769 | error: 0.352955 | coeff: 0.352955 | eff: 1 | fom: 0.286684 | r2int: 0.116791 | r2eff: 0 | hits: 16 ] steps
- 47 135 [sigma: 10.9846 | error: 0.325471 | coeff: 0.325471 | eff: 1 | fom: 0.337145 | r2int: 0.0993107 | r2eff: 0 | hits: 16 ] steps
- 48 120 [sigma: 6.52176 | error: 0.217392 | coeff: 0.217392 | eff: 1 | fom: 0.75571 | r2int: 0.0443056 | r2eff: 0 | hits: 16 ] steps
- 49 90 [sigma: 11.3798 | error: 0.379327 | coeff: 0.379327 | eff: 1 | fom: 0.248207 | r2int: 0.127901 | r2eff: 0 | hits: 9 ] steps
- 50 303 [sigma: 15.8143 | error: 0.28587 | coeff: 0.28587 | eff: 1 | fom: 0.437023 | r2int: 0.0789977 | r2eff: 0 | hits: 30 ] steps
- 51 430 [sigma: 10.1211 | error: 0.16973 | coeff: 0.16973 | eff: 1 | fom: 1.23972 | r2int: 0.0282544 | r2eff: 0 | hits: 52 ] steps
- 52 655 [sigma: 12.8295 | error: 0.156696 | coeff: 0.156696 | eff: 1 | fom: 1.45455 | r2int: 0.0241699 | r2eff: 0 | hits: 64 ] steps
- 53 638 [sigma: 13.4976 | error: 0.170566 | coeff: 0.170566 | eff: 1 | fom: 1.22761 | r2int: 0.028645 | r2eff: 0 | hits: 65 ] steps
- 54 360 [sigma: 10.2359 | error: 0.190734 | coeff: 0.190734 | eff: 1 | fom: 0.981717 | r2int: 0.035571 | r2eff: 0 | hits: 45 ] steps
- 55 602 [sigma: 22.3117 | error: 0.26982 | coeff: 0.26982 | eff: 1 | fom: 0.490562 | r2int: 0.0714291 | r2eff: 0 | hits: 53 ] steps
- 56 890 [sigma: 11.914 | error: 0.115156 | coeff: 0.115156 | eff: 1 | fom: 2.69322 | r2int: 0.0130816 | r2eff: 0 | hits: 74 ] steps
- 57 1106 [sigma: 11.4765 | error: 0.098986 | coeff: 0.098986 | eff: 1 | fom: 3.64497 | r2int: 0.00969056 | r2eff: 0 | hits: 91 ] steps
- 58 1064 [sigma: 10.6095 | error: 0.0919314 | coeff: 0.0919314 | eff: 1 | fom: 4.22585 | r2int: 0.00835196 | r2eff: 0 | hits: 85 ] steps
- 59 412 [sigma: 7.79843 | error: 0.141646 | coeff: 0.141646 | eff: 1 | fom: 1.78006 | r2int: 0.0197053 | r2eff: 0 | hits: 56 ] steps
- 60 566 [sigma: 19.7065 | error: 0.246194 | coeff: 0.246194 | eff: 1 | fom: 0.589234 | r2int: 0.0593992 | r2eff: 0 | hits: 50 ] steps
- 61 755 [sigma: 10.8814 | error: 0.112565 | coeff: 0.112565 | eff: 1 | fom: 2.81861 | r2int: 0.0124632 | r2eff: 0 | hits: 61 ] steps
- 62 1190 [sigma: 12.6246 | error: 0.103403 | coeff: 0.103403 | eff: 1 | fom: 3.34025 | r2int: 0.0105795 | r2eff: 0 | hits: 95 ] steps
- 63 1024 [sigma: 11.5886 | error: 0.105558 | coeff: 0.105558 | eff: 1 | fom: 3.20525 | r2int: 0.0110144 | r2eff: 0 | hits: 87 ] steps
- 64 717 [sigma: 12.4249 | error: 0.155961 | coeff: 0.155961 | eff: 1 | fom: 1.46829 | r2int: 0.0240235 | r2eff: 0 | hits: 81 ] steps
- 65 491 [sigma: 14.8965 | error: 0.207994 | coeff: 0.207994 | eff: 1 | fom: 0.825545 | r2int: 0.042341 | r2eff: 0 | hits: 47 ] steps
- 66 643 [sigma: 11.79 | error: 0.145537 | coeff: 0.145537 | eff: 1 | fom: 1.68614 | r2int: 0.0208449 | r2eff: 0 | hits: 63 ] steps
- 67 824 [sigma: 10.8318 | error: 0.110765 | coeff: 0.110765 | eff: 1 | fom: 2.91096 | r2int: 0.0120961 | r2eff: 0 | hits: 71 ] steps
- 68 838 [sigma: 12.565 | error: 0.120886 | coeff: 0.120886 | eff: 1 | fom: 2.44395 | r2int: 0.0143885 | r2eff: 0 | hits: 65 ] steps
- 69 532 [sigma: 9.61895 | error: 0.140053 | coeff: 0.140053 | eff: 1 | fom: 1.82078 | r2int: 0.0192879 | r2eff: 0 | hits: 60 ] steps
- 70 337 [sigma: 9.42451 | error: 0.17011 | coeff: 0.17011 | eff: 1 | fom: 1.23419 | r2int: 0.0281553 | r2eff: 0 | hits: 37 ] steps
- 71 286 [sigma: 7.56801 | error: 0.183331 | coeff: 0.183331 | eff: 1 | fom: 1.0626 | r2int: 0.0329101 | r2eff: 0 | hits: 48 ] steps
- 72 403 [sigma: 10.2017 | error: 0.175383 | coeff: 0.175383 | eff: 1 | fom: 1.1611 | r2int: 0.0301183 | r2eff: 0 | hits: 48 ] steps
- 73 558 [sigma: 16.7961 | error: 0.201921 | coeff: 0.201921 | eff: 1 | fom: 0.875953 | r2int: 0.0398659 | r2eff: 0 | hits: 45 ] steps
- 74 279 [sigma: 10.4316 | error: 0.214785 | coeff: 0.214785 | eff: 1 | fom: 0.774168 | r2int: 0.0447345 | r2eff: 0 | hits: 33 ] steps
- 75 2968 [sigma: 26.486 | error: 0.104069 | coeff: 0.104069 | eff: 1 | fom: 3.2976 | r2int: 0.0107508 | r2eff: 0 | hits: 136 ] steps
- 76 3822 [sigma: 22.5357 | error: 0.0833864 | coeff: 0.0833864 | eff: 1 | fom: 5.13632 | r2int: 0.00691852 | r2eff: 0 | hits: 200 ] steps
- 77 3170 [sigma: 20.7115 | error: 0.0921676 | coeff: 0.0921676 | eff: 1 | fom: 4.20422 | r2int: 0.00845217 | r2eff: 0 | hits: 199 ] steps
- 78 2948 [sigma: 21.7306 | error: 0.10214 | coeff: 0.10214 | eff: 1 | fom: 3.42335 | r2int: 0.0103782 | r2eff: 0 | hits: 192 ] steps
- 79 2842 [sigma: 32.202 | error: 0.13018 | coeff: 0.13018 | eff: 1 | fom: 2.10742 | r2int: 0.0168186 | r2eff: 0 | hits: 132 ] steps
- 80 3053 [sigma: 25.1937 | error: 0.111937 | coeff: 0.111937 | eff: 1 | fom: 2.85032 | r2int: 0.0124618 | r2eff: 0 | hits: 184 ] steps
- 81 3813 [sigma: 12.0315 | error: 0.0533623 | coeff: 0.0533623 | eff: 1 | fom: 12.5422 | r2int: 0.00283758 | r2eff: 0 | hits: 286 ] steps
- 82 4079 [sigma: 11.582 | error: 0.0511098 | coeff: 0.0511098 | eff: 1 | fom: 13.6721 | r2int: 0.00260415 | r2eff: 0 | hits: 324 ] steps
- 83 3636 [sigma: 10.8114 | error: 0.0517585 | coeff: 0.0517585 | eff: 1 | fom: 13.3315 | r2int: 0.0026701 | r2eff: 0 | hits: 303 ] steps
- 84 3390 [sigma: 23.0296 | error: 0.0955914 | coeff: 0.0955914 | eff: 1 | fom: 3.90845 | r2int: 0.00909156 | r2eff: 0 | hits: 198 ] steps
- 85 3294 [sigma: 23.0091 | error: 0.09829 | coeff: 0.09829 | eff: 1 | fom: 3.69678 | r2int: 0.00961213 | r2eff: 0 | hits: 198 ] steps
- 86 3537 [sigma: 12.5397 | error: 0.0590053 | coeff: 0.0590053 | eff: 1 | fom: 10.2579 | r2int: 0.00346906 | r2eff: 0 | hits: 277 ] steps
- 87 4008 [sigma: 12.5486 | error: 0.0539567 | coeff: 0.0539567 | eff: 1 | fom: 12.2674 | r2int: 0.00290152 | r2eff: 0 | hits: 297 ] steps
- 88 3827 [sigma: 11.8072 | error: 0.0536158 | coeff: 0.0536158 | eff: 1 | fom: 12.4239 | r2int: 0.00286513 | r2eff: 0 | hits: 302 ] steps
- 89 3913 [sigma: 25.9492 | error: 0.0940182 | coeff: 0.0940182 | eff: 1 | fom: 4.04034 | r2int: 0.00879544 | r2eff: 0 | hits: 201 ] steps
- 90 3652 [sigma: 26.9789 | error: 0.104735 | coeff: 0.104735 | eff: 1 | fom: 3.25581 | r2int: 0.0109148 | r2eff: 0 | hits: 201 ] steps
- 91 3572 [sigma: 11.2497 | error: 0.0546402 | coeff: 0.0546402 | eff: 1 | fom: 11.9624 | r2int: 0.00297564 | r2eff: 0 | hits: 301 ] steps
- 92 4036 [sigma: 13.263 | error: 0.0571076 | coeff: 0.0571076 | eff: 1 | fom: 10.951 | r2int: 0.00325047 | r2eff: 0 | hits: 302 ] steps
- 93 3840 [sigma: 12.2715 | error: 0.054795 | coeff: 0.054795 | eff: 1 | fom: 11.8949 | r2int: 0.00299228 | r2eff: 0 | hits: 294 ] steps
- 94 3732 [sigma: 24.6015 | error: 0.0948428 | coeff: 0.0948428 | eff: 1 | fom: 3.97039 | r2int: 0.00895171 | r2eff: 0 | hits: 207 ] steps
- 95 3204 [sigma: 25.5847 | error: 0.0990941 | coeff: 0.0990941 | eff: 1 | fom: 3.63702 | r2int: 0.00975588 | r2eff: 0 | hits: 154 ] steps
- 96 3849 [sigma: 25.1715 | error: 0.0936351 | coeff: 0.0936351 | eff: 1 | fom: 4.07347 | r2int: 0.00872477 | r2eff: 0 | hits: 205 ] steps
- 97 3899 [sigma: 22.7564 | error: 0.0859767 | coeff: 0.0859767 | eff: 1 | fom: 4.83148 | r2int: 0.00735793 | r2eff: 0 | hits: 217 ] steps
- 98 3613 [sigma: 24.4816 | error: 0.0967803 | coeff: 0.0967803 | eff: 1 | fom: 3.81301 | r2int: 0.00932052 | r2eff: 0 | hits: 204 ] steps
- 99 2872 [sigma: 28.2223 | error: 0.115855 | coeff: 0.115855 | eff: 1 | fom: 2.66079 | r2int: 0.0133259 | r2eff: 0 | hits: 139 ] steps
- 100 14890 [sigma: 25.6491 | error: 0.0439846 | coeff: 0.0439846 | eff: 1 | fom: 18.4604 | r2int: 0.00193168 | r2eff: 0 | hits: 652 ] steps
- 101 19797 [sigma: 30.094 | error: 0.0422913 | coeff: 0.0422913 | eff: 1 | fom: 19.9682 | r2int: 0.00178624 | r2eff: 0 | hits: 774 ] steps
- 102 18088 [sigma: 24.9916 | error: 0.038265 | coeff: 0.038265 | eff: 1 | fom: 24.3916 | r2int: 0.0014623 | r2eff: 0 | hits: 767 ] steps
- 103 17795 [sigma: 26.7187 | error: 0.0411194 | coeff: 0.0411194 | eff: 1 | fom: 21.1226 | r2int: 0.00168855 | r2eff: 0 | hits: 750 ] steps
- 104 12895 [sigma: 25.8658 | error: 0.0492564 | coeff: 0.0492564 | eff: 1 | fom: 14.7203 | r2int: 0.00242217 | r2eff: 0 | hits: 603 ] steps
- 105 17481 [sigma: 25.6884 | error: 0.0416676 | coeff: 0.0416676 | eff: 1 | fom: 20.5705 | r2int: 0.00173403 | r2eff: 0 | hits: 804 ] steps
- 106 22968 [sigma: 27.9686 | error: 0.0379061 | coeff: 0.0379061 | eff: 1 | fom: 24.8556 | r2int: 0.00143539 | r2eff: 0 | hits: 969 ] steps
- 107 24272 [sigma: 28.7975 | error: 0.0379293 | coeff: 0.0379293 | eff: 1 | fom: 24.8252 | r2int: 0.00143722 | r2eff: 0 | hits: 1022 ] steps
- 108 23804 [sigma: 27.9265 | error: 0.0366515 | coeff: 0.0366515 | eff: 1 | fom: 26.5863 | r2int: 0.00134196 | r2eff: 0 | hits: 976 ] steps
- 109 16743 [sigma: 26.3203 | error: 0.0422987 | coeff: 0.0422987 | eff: 1 | fom: 19.9613 | r2int: 0.00178671 | r2eff: 0 | hits: 724 ] steps
- 110 16711 [sigma: 23.2506 | error: 0.0391803 | coeff: 0.0391803 | eff: 1 | fom: 23.2652 | r2int: 0.00153316 | r2eff: 0 | hits: 793 ] steps
- 111 23405 [sigma: 28.6057 | error: 0.0377304 | coeff: 0.0377304 | eff: 1 | fom: 25.0876 | r2int: 0.00142209 | r2eff: 0 | hits: 953 ] steps
- 112 23044 [sigma: 28.7015 | error: 0.0394848 | coeff: 0.0394848 | eff: 1 | fom: 22.1178 | r2int: 0.0015575 | r2eff: 0 | hits: 1005 ] steps
- 113 22765 [sigma: 25.956 | error: 0.0358566 | coeff: 0.0358566 | eff: 1 | fom: 26.8203 | r2int: 0.0012844 | r2eff: 0 | hits: 989 ] steps
- 114 19436 [sigma: 29.944 | error: 0.0432206 | coeff: 0.0432206 | eff: 1 | fom: 18.4595 | r2int: 0.00186564 | r2eff: 0 | hits: 787 ] steps
- 115 19489 [sigma: 30.2558 | error: 0.044047 | coeff: 0.044047 | eff: 1 | fom: 17.7733 | r2int: 0.00193773 | r2eff: 0 | hits: 805 ] steps
- 116 22783 [sigma: 27.8101 | error: 0.0376033 | coeff: 0.0376033 | eff: 1 | fom: 24.3866 | r2int: 0.00141251 | r2eff: 0 | hits: 949 ] steps
- 117 21998 [sigma: 26.5075 | error: 0.037238 | coeff: 0.037238 | eff: 1 | fom: 24.8673 | r2int: 0.00138522 | r2eff: 0 | hits: 955 ] steps
- 118 20055 [sigma: 26.049 | error: 0.0385748 | coeff: 0.0385748 | eff: 1 | fom: 23.1737 | r2int: 0.00148633 | r2eff: 0 | hits: 882 ] steps
- 119 17195 [sigma: 26.0266 | error: 0.0411747 | coeff: 0.0411747 | eff: 1 | fom: 20.3395 | r2int: 0.00169307 | r2eff: 0 | hits: 740 ] steps
- 120 15236 [sigma: 27.4511 | error: 0.0455449 | coeff: 0.0455449 | eff: 1 | fom: 16.6235 | r2int: 0.00207109 | r2eff: 0 | hits: 639 ] steps
- 121 17623 [sigma: 26.1695 | error: 0.0410183 | coeff: 0.0410183 | eff: 1 | fom: 20.4949 | r2int: 0.0016803 | r2eff: 0 | hits: 763 ] steps
- 122 19181 [sigma: 29.5105 | error: 0.0430513 | coeff: 0.0430513 | eff: 1 | fom: 18.605 | r2int: 0.00185105 | r2eff: 0 | hits: 783 ] steps
- 123 16690 [sigma: 27.1547 | error: 0.0443489 | coeff: 0.0443489 | eff: 1 | fom: 17.5322 | r2int: 0.00196418 | r2eff: 0 | hits: 743 ] steps
- 124 14132 [sigma: 22.7836 | error: 0.0418551 | coeff: 0.0418551 | eff: 1 | fom: 19.6836 | r2int: 0.00174925 | r2eff: 0 | hits: 674 ] steps
+ 0 10.000000 steps
+ 1 40.000000 steps
+ 2 17.000000 steps
+ 3 29.000000 steps
+ 4 47.000000 steps
+ 5 46.000000 steps
+ 6 7.000000 steps
+ 7 163.000000 steps
+ 8 44.000000 steps
+ 9 19.000000 steps
+ 10 4.000000 steps
+ 11 38.000000 steps
+ 12 141.000000 steps
+ 13 117.000000 steps
+ 14 17.000000 steps
+ 15 36.000000 steps
+ 16 12.000000 steps
+ 17 221.000000 steps
+ 18 63.000000 steps
+ 19 8.000000 steps
+ 20 14.000000 steps
+ 21 33.000000 steps
+ 22 69.000000 steps
+ 23 48.000000 steps
+ 24 52.000000 steps
+ 25 148.000000 steps
+ 26 62.000000 steps
+ 27 227.000000 steps
+ 28 191.000000 steps
+ 29 90.000000 steps
+ 30 57.000000 steps
+ 31 202.000000 steps
+ 32 287.000000 steps
+ 33 250.000000 steps
+ 34 173.000000 steps
+ 35 97.000000 steps
+ 36 232.000000 steps
+ 37 367.000000 steps
+ 38 365.000000 steps
+ 39 204.000000 steps
+ 40 141.000000 steps
+ 41 203.000000 steps
+ 42 255.000000 steps
+ 43 240.000000 steps
+ 44 182.000000 steps
+ 45 162.000000 steps
+ 46 119.000000 steps
+ 47 210.000000 steps
+ 48 78.000000 steps
+ 49 201.000000 steps
+ 50 614.000000 steps
+ 51 649.000000 steps
+ 52 794.000000 steps
+ 53 453.000000 steps
+ 54 400.000000 steps
+ 55 529.000000 steps
+ 56 765.000000 steps
+ 57 1121.000000 steps
+ 58 936.000000 steps
+ 59 475.000000 steps
+ 60 396.000000 steps
+ 61 895.000000 steps
+ 62 1082.000000 steps
+ 63 1435.000000 steps
+ 64 482.000000 steps
+ 65 362.000000 steps
+ 66 661.000000 steps
+ 67 959.000000 steps
+ 68 901.000000 steps
+ 69 469.000000 steps
+ 70 550.000000 steps
+ 71 389.000000 steps
+ 72 365.000000 steps
+ 73 464.000000 steps
+ 74 310.000000 steps
+ 75 2963.000000 steps
+ 76 3285.000000 steps
+ 77 4083.000000 steps
+ 78 4524.000000 steps
+ 79 2630.000000 steps
+ 80 3565.000000 steps
+ 81 3891.000000 steps
+ 82 4063.000000 steps
+ 83 4380.000000 steps
+ 84 3833.000000 steps
+ 85 3574.000000 steps
+ 86 4049.000000 steps
+ 87 4410.000000 steps
+ 88 4250.000000 steps
+ 89 3524.000000 steps
+ 90 3538.000000 steps
+ 91 4273.000000 steps
+ 92 4319.000000 steps
+ 93 3712.000000 steps
+ 94 4524.000000 steps
+ 95 3316.000000 steps
+ 96 3797.000000 steps
+ 97 4309.000000 steps
+ 98 4769.000000 steps
+ 99 3180.000000 steps
+ 100 14730.000000 steps
+ 101 18383.000000 steps
+ 102 20138.000000 steps
+ 103 19642.000000 steps
+ 104 15043.000000 steps
+ 105 16963.000000 steps
+ 106 23534.000000 steps
+ 107 22436.000000 steps
+ 108 22160.000000 steps
+ 109 16942.000000 steps
+ 110 16481.000000 steps
+ 111 21253.000000 steps
+ 112 22248.000000 steps
+ 113 23545.000000 steps
+ 114 18298.000000 steps
+ 115 16519.000000 steps
+ 116 22839.000000 steps
+ 117 22929.000000 steps
+ 118 24053.000000 steps
+ 119 19041.000000 steps
+ 120 13041.000000 steps
+ 121 18690.000000 steps
+ 122 18917.000000 steps
+ 123 18898.000000 steps
+ 124 15949.000000 steps
+ 0 10 [sigma: 4.04145 | error: 0.7 | coeff: 0.7 | eff: 1 | fom: 0.0784929 | r2int: 0.326667 | r2eff: 0 | hits: 3 ] steps
+ 1 40 [sigma: 10.583 | error: 0.591608 | coeff: 0.591608 | eff: 1 | fom: 0.10989 | r2int: 0.28 | r2eff: 0 | hits: 5 ] steps
+ 2 17 [sigma: 6.5 | error: 0.764706 | coeff: 0.764706 | eff: 1 | fom: 0.0657715 | r2int: 0.438581 | r2eff: 0 | hits: 4 ] steps
+ 3 29 [sigma: 10.5948 | error: 0.730677 | coeff: 0.730677 | eff: 1 | fom: 0.0720404 | r2int: 0.400416 | r2eff: 0 | hits: 4 ] steps
+ 4 47 [sigma: 7.63139 | error: 0.429591 | coeff: 0.429591 | eff: 1 | fom: 0.208409 | r2int: 0.158184 | r2eff: 0 | hits: 7 ] steps
+ 5 46 [sigma: 10.7548 | error: 0.467602 | coeff: 0.467602 | eff: 1 | fom: 0.175903 | r2int: 0.163989 | r2eff: 0 | hits: 4 ] steps
+ 6 7 [sigma: 1.5 | error: 0.428571 | coeff: 0.428571 | eff: 1 | fom: 0.209402 | r2int: 0.137755 | r2eff: 0 | hits: 4 ] steps
+ 7 163 [sigma: 11.0952 | error: 0.245424 | coeff: 0.245424 | eff: 1 | fom: 0.638545 | r2int: 0.0555998 | r2eff: 0 | hits: 13 ] steps
+ 8 44 [sigma: 6.23387 | error: 0.425036 | coeff: 0.425036 | eff: 1 | fom: 0.212899 | r2int: 0.160583 | r2eff: 0 | hits: 9 ] steps
+ 9 19 [sigma: 4.08656 | error: 0.480939 | coeff: 0.480939 | eff: 1 | fom: 0.166283 | r2int: 0.185042 | r2eff: 0 | hits: 5 ] steps
+ 10 4 [sigma: 0 | error: 0 | coeff: 0 | eff: 1 | fom: 1 | r2int: 0 | r2eff: 0 | hits: 4 ] steps
+ 11 38 [sigma: 4.03556 | error: 0.280976 | coeff: 0.280976 | eff: 1 | fom: 0.487179 | r2int: 0.0676692 | r2eff: 0 | hits: 7 ] steps
+ 12 141 [sigma: 11.8503 | error: 0.336178 | coeff: 0.336178 | eff: 1 | fom: 0.34032 | r2int: 0.105952 | r2eff: 0 | hits: 16 ] steps
+ 13 117 [sigma: 10.5672 | error: 0.325647 | coeff: 0.325647 | eff: 1 | fom: 0.362687 | r2int: 0.0978888 | r2eff: 0 | hits: 13 ] steps
+ 14 17 [sigma: 2.10017 | error: 0.349422 | coeff: 0.349422 | eff: 1 | fom: 0.315011 | r2int: 0.106834 | r2eff: 0 | hits: 8 ] steps
+ 15 36 [sigma: 10.1489 | error: 0.488289 | coeff: 0.488289 | eff: 1 | fom: 0.161314 | r2int: 0.158951 | r2eff: 0 | hits: 3 ] steps
+ 16 12 [sigma: 4.3589 | error: 0.629153 | coeff: 0.629153 | eff: 1 | fom: 0.097166 | r2int: 0.263889 | r2eff: 0 | hits: 3 ] steps
+ 17 221 [sigma: 49.8964 | error: 0.713966 | coeff: 0.713966 | eff: 1 | fom: 0.0754522 | r2int: 0.458772 | r2eff: 0 | hits: 10 ] steps
+ 18 63 [sigma: 7.80385 | error: 0.391713 | coeff: 0.391713 | eff: 1 | fom: 0.250663 | r2int: 0.138095 | r2eff: 0 | hits: 10 ] steps
+ 19 8 [sigma: 2 | error: 0.5 | coeff: 0.5 | eff: 1 | fom: 0.153846 | r2int: 0.1875 | r2eff: 0 | hits: 4 ] steps
+ 20 14 [sigma: 4.02492 | error: 0.642857 | coeff: 0.642857 | eff: 1 | fom: 0.0930674 | r2int: 0.330612 | r2eff: 0 | hits: 5 ] steps
+ 21 33 [sigma: 4.95696 | error: 0.397421 | coeff: 0.397421 | eff: 1 | fom: 0.243515 | r2int: 0.13538 | r2eff: 0 | hits: 7 ] steps
+ 22 69 [sigma: 9.03654 | error: 0.453674 | coeff: 0.453674 | eff: 1 | fom: 0.18687 | r2int: 0.188668 | r2eff: 0 | hits: 12 ] steps
+ 23 48 [sigma: 8.98888 | error: 0.418745 | coeff: 0.418745 | eff: 1 | fom: 0.219345 | r2int: 0.140278 | r2eff: 0 | hits: 5 ] steps
+ 24 52 [sigma: 10.4307 | error: 0.448535 | coeff: 0.448535 | eff: 1 | fom: 0.191176 | r2int: 0.160947 | r2eff: 0 | hits: 5 ] steps
+ 25 148 [sigma: 14.4153 | error: 0.364441 | coeff: 0.364441 | eff: 1 | fom: 0.289582 | r2int: 0.12333 | r2eff: 0 | hits: 14 ] steps
+ 26 62 [sigma: 2.71254 | error: 0.195659 | coeff: 0.195659 | eff: 1 | fom: 1.00468 | r2int: 0.0363684 | r2eff: 0 | hits: 20 ] steps
+ 27 227 [sigma: 10.8306 | error: 0.23374 | coeff: 0.23374 | eff: 1 | fom: 0.703979 | r2int: 0.0523581 | r2eff: 0 | hits: 24 ] steps
+ 28 191 [sigma: 14.3002 | error: 0.289971 | coeff: 0.289971 | eff: 1 | fom: 0.457424 | r2int: 0.0784774 | r2eff: 0 | hits: 15 ] steps
+ 29 90 [sigma: 10.6807 | error: 0.427886 | coeff: 0.427886 | eff: 1 | fom: 0.210073 | r2int: 0.169003 | r2eff: 0 | hits: 13 ] steps
+ 30 57 [sigma: 5.489 | error: 0.385193 | coeff: 0.385193 | eff: 1 | fom: 0.25922 | r2int: 0.1391 | r2eff: 0 | hits: 16 ] steps
+ 31 202 [sigma: 9.30247 | error: 0.195381 | coeff: 0.195381 | eff: 1 | fom: 1.00754 | r2int: 0.0360531 | r2eff: 0 | hits: 18 ] steps
+ 32 287 [sigma: 9.80036 | error: 0.187034 | coeff: 0.187034 | eff: 1 | fom: 1.09947 | r2int: 0.0338157 | r2eff: 0 | hits: 30 ] steps
+ 33 250 [sigma: 10.7745 | error: 0.1975 | coeff: 0.1975 | eff: 1 | fom: 0.986031 | r2int: 0.037149 | r2eff: 0 | hits: 21 ] steps
+ 34 173 [sigma: 8.88754 | error: 0.22393 | coeff: 0.22393 | eff: 1 | fom: 0.767013 | r2int: 0.0475054 | r2eff: 0 | hits: 19 ] steps
+ 35 97 [sigma: 6.61159 | error: 0.304824 | coeff: 0.304824 | eff: 1 | fom: 0.413931 | r2int: 0.0882719 | r2eff: 0 | hits: 20 ] steps
+ 36 232 [sigma: 12.3986 | error: 0.239002 | coeff: 0.239002 | eff: 1 | fom: 0.673324 | r2int: 0.0542658 | r2eff: 0 | hits: 20 ] steps
+ 37 367 [sigma: 13.2567 | error: 0.201117 | coeff: 0.201117 | eff: 1 | fom: 0.950883 | r2int: 0.0391435 | r2eff: 0 | hits: 31 ] steps
+ 38 365 [sigma: 12.4647 | error: 0.180704 | coeff: 0.180704 | eff: 1 | fom: 1.17785 | r2int: 0.0314878 | r2eff: 0 | hits: 28 ] steps
+ 39 204 [sigma: 10.4009 | error: 0.264926 | coeff: 0.264926 | eff: 1 | fom: 0.547997 | r2int: 0.0675862 | r2eff: 0 | hits: 27 ] steps
+ 40 141 [sigma: 10.5907 | error: 0.300445 | coeff: 0.300445 | eff: 1 | fom: 0.426086 | r2int: 0.0846254 | r2eff: 0 | hits: 16 ] steps
+ 41 203 [sigma: 11.6215 | error: 0.236042 | coeff: 0.236042 | eff: 1 | fom: 0.690314 | r2int: 0.0524386 | r2eff: 0 | hits: 17 ] steps
+ 42 255 [sigma: 12.4134 | error: 0.217703 | coeff: 0.217703 | eff: 1 | fom: 0.811515 | r2int: 0.045025 | r2eff: 0 | hits: 20 ] steps
+ 43 240 [sigma: 9.32947 | error: 0.18233 | coeff: 0.18233 | eff: 1 | fom: 1.15695 | r2int: 0.031733 | r2eff: 0 | hits: 22 ] steps
+ 44 182 [sigma: 8.77918 | error: 0.255248 | coeff: 0.255248 | eff: 1 | fom: 0.590341 | r2int: 0.0628245 | r2eff: 0 | hits: 28 ] steps
+ 45 162 [sigma: 13.9158 | error: 0.321407 | coeff: 0.321407 | eff: 1 | fom: 0.372319 | r2int: 0.095924 | r2eff: 0 | hits: 14 ] steps
+ 46 119 [sigma: 8.15708 | error: 0.298789 | coeff: 0.298789 | eff: 1 | fom: 0.430821 | r2int: 0.0845762 | r2eff: 0 | hits: 19 ] steps
+ 47 210 [sigma: 8.85721 | error: 0.197829 | coeff: 0.197829 | eff: 1 | fom: 0.982762 | r2int: 0.0373572 | r2eff: 0 | hits: 22 ] steps
+ 48 78 [sigma: 6.47945 | error: 0.33228 | coeff: 0.33228 | eff: 1 | fom: 0.348353 | r2int: 0.103509 | r2eff: 0 | hits: 16 ] steps
+ 49 201 [sigma: 20.5348 | error: 0.433441 | coeff: 0.433441 | eff: 1 | fom: 0.204723 | r2int: 0.177434 | r2eff: 0 | hits: 18 ] steps
+ 50 614 [sigma: 28.1791 | error: 0.314635 | coeff: 0.314635 | eff: 1 | fom: 0.388518 | r2int: 0.0968891 | r2eff: 0 | hits: 47 ] steps
+ 51 649 [sigma: 13.221 | error: 0.161692 | coeff: 0.161692 | eff: 1 | fom: 1.47112 | r2int: 0.0257294 | r2eff: 0 | hits: 63 ] steps
+ 52 794 [sigma: 24.1001 | error: 0.23116 | coeff: 0.23116 | eff: 1 | fom: 0.719784 | r2int: 0.0525135 | r2eff: 0 | hits: 58 ] steps
+ 53 453 [sigma: 11.4733 | error: 0.184386 | coeff: 0.184386 | eff: 1 | fom: 1.13128 | r2int: 0.0333569 | r2eff: 0 | hits: 53 ] steps
+ 54 400 [sigma: 12.6157 | error: 0.175604 | coeff: 0.175604 | eff: 1 | fom: 1.24727 | r2int: 0.0298419 | r2eff: 0 | hits: 31 ] steps
+ 55 529 [sigma: 17.8957 | error: 0.224398 | coeff: 0.224398 | eff: 1 | fom: 0.763816 | r2int: 0.04921 | r2eff: 0 | hits: 44 ] steps
+ 56 765 [sigma: 14.32 | error: 0.149751 | coeff: 0.149751 | eff: 1 | fom: 1.71509 | r2int: 0.022075 | r2eff: 0 | hits: 64 ] steps
+ 57 1121 [sigma: 10.6921 | error: 0.0879361 | coeff: 0.0879361 | eff: 1 | fom: 4.97384 | r2int: 0.00764179 | r2eff: 0 | hits: 85 ] steps
+ 58 936 [sigma: 11.5374 | error: 0.112972 | coeff: 0.112972 | eff: 1 | fom: 3.01358 | r2int: 0.0126108 | r2eff: 0 | hits: 84 ] steps
+ 59 475 [sigma: 16.2404 | error: 0.234396 | coeff: 0.234396 | eff: 1 | fom: 0.700043 | r2int: 0.0537727 | r2eff: 0 | hits: 47 ] steps
+ 60 396 [sigma: 13.9313 | error: 0.225262 | coeff: 0.225262 | eff: 1 | fom: 0.757969 | r2int: 0.0495053 | r2eff: 0 | hits: 41 ] steps
+ 61 895 [sigma: 15.3037 | error: 0.156716 | coeff: 0.156716 | eff: 1 | fom: 1.56602 | r2int: 0.0242676 | r2eff: 0 | hits: 84 ] steps
+ 62 1082 [sigma: 10.5165 | error: 0.0981623 | coeff: 0.0981623 | eff: 1 | fom: 3.99151 | r2int: 0.00954137 | r2eff: 0 | hits: 102 ] steps
+ 63 1435 [sigma: 15.4586 | error: 0.104998 | coeff: 0.104998 | eff: 1 | fom: 3.48873 | r2int: 0.0109084 | r2eff: 0 | hits: 95 ] steps
+ 64 482 [sigma: 7.45057 | error: 0.131162 | coeff: 0.131162 | eff: 1 | fom: 2.23568 | r2int: 0.0169646 | r2eff: 0 | hits: 72 ] steps
+ 65 362 [sigma: 11.2448 | error: 0.1989 | coeff: 0.1989 | eff: 1 | fom: 0.972205 | r2int: 0.0385962 | r2eff: 0 | hits: 41 ] steps
+ 66 661 [sigma: 10.876 | error: 0.131631 | coeff: 0.131631 | eff: 1 | fom: 2.21979 | r2int: 0.017056 | r2eff: 0 | hits: 64 ] steps
+ 67 959 [sigma: 12.5171 | error: 0.109203 | coeff: 0.109203 | eff: 1 | fom: 3.22523 | r2int: 0.0117548 | r2eff: 0 | hits: 70 ] steps
+ 68 901 [sigma: 10.2719 | error: 0.0993878 | coeff: 0.0993878 | eff: 1 | fom: 3.89368 | r2int: 0.00974797 | r2eff: 0 | hits: 76 ] steps
+ 69 469 [sigma: 7.35237 | error: 0.12443 | coeff: 0.12443 | eff: 1 | fom: 2.48415 | r2int: 0.015237 | r2eff: 0 | hits: 63 ] steps
+ 70 550 [sigma: 21.8719 | error: 0.25772 | coeff: 0.25772 | eff: 1 | fom: 0.579067 | r2int: 0.0648384 | r2eff: 0 | hits: 42 ] steps
+ 71 389 [sigma: 10.9491 | error: 0.204911 | coeff: 0.204911 | eff: 1 | fom: 0.915998 | r2int: 0.0411964 | r2eff: 0 | hits: 53 ] steps
+ 72 365 [sigma: 12.7942 | error: 0.242851 | coeff: 0.242851 | eff: 1 | fom: 0.652148 | r2int: 0.057748 | r2eff: 0 | hits: 48 ] steps
+ 73 464 [sigma: 13.1864 | error: 0.206893 | coeff: 0.206893 | eff: 1 | fom: 0.898534 | r2int: 0.0419971 | r2eff: 0 | hits: 53 ] steps
+ 74 310 [sigma: 10.8672 | error: 0.227185 | coeff: 0.227185 | eff: 1 | fom: 0.745192 | r2int: 0.050384 | r2eff: 0 | hits: 42 ] steps
+ 75 2963 [sigma: 28.6026 | error: 0.114219 | coeff: 0.114219 | eff: 1 | fom: 2.94816 | r2int: 0.0129528 | r2eff: 0 | hits: 140 ] steps
+ 76 3285 [sigma: 20.4909 | error: 0.0873279 | coeff: 0.0873279 | eff: 1 | fom: 5.04337 | r2int: 0.00758725 | r2eff: 0 | hits: 196 ] steps
+ 77 4083 [sigma: 25.3171 | error: 0.0950534 | coeff: 0.0950534 | eff: 1 | fom: 4.25688 | r2int: 0.0089967 | r2eff: 0 | hits: 235 ] steps
+ 78 4524 [sigma: 24.4819 | error: 0.0850493 | coeff: 0.0850493 | eff: 1 | fom: 5.31722 | r2int: 0.00720411 | r2eff: 0 | hits: 247 ] steps
+ 79 2630 [sigma: 24.2547 | error: 0.111815 | coeff: 0.111815 | eff: 1 | fom: 3.07631 | r2int: 0.0124174 | r2eff: 0 | hits: 147 ] steps
+ 80 3565 [sigma: 26.6974 | error: 0.103225 | coeff: 0.103225 | eff: 1 | fom: 3.60955 | r2int: 0.0105994 | r2eff: 0 | hits: 190 ] steps
+ 81 3891 [sigma: 12.0765 | error: 0.0538471 | coeff: 0.0538471 | eff: 1 | fom: 13.2648 | r2int: 0.00288988 | r2eff: 0 | hits: 301 ] steps
+ 82 4063 [sigma: 13.1296 | error: 0.0568047 | coeff: 0.0568047 | eff: 1 | fom: 11.9195 | r2int: 0.00321633 | r2eff: 0 | hits: 309 ] steps
+ 83 4380 [sigma: 13.3891 | error: 0.055531 | coeff: 0.055531 | eff: 1 | fom: 12.4726 | r2int: 0.00307434 | r2eff: 0 | hits: 330 ] steps
+ 84 3833 [sigma: 21.6526 | error: 0.0812748 | coeff: 0.0812748 | eff: 1 | fom: 5.82258 | r2int: 0.00657367 | r2eff: 0 | hits: 207 ] steps
+ 85 3574 [sigma: 22.3047 | error: 0.0867004 | coeff: 0.0867004 | eff: 1 | fom: 5.11664 | r2int: 0.00747801 | r2eff: 0 | hits: 193 ] steps
+ 86 4049 [sigma: 13.2524 | error: 0.0547678 | coeff: 0.0547678 | eff: 1 | fom: 12.8226 | r2int: 0.0029888 | r2eff: 0 | hits: 280 ] steps
+ 87 4410 [sigma: 13.6608 | error: 0.0553264 | coeff: 0.0553264 | eff: 1 | fom: 12.565 | r2int: 0.00305141 | r2eff: 0 | hits: 319 ] steps
+ 88 4250 [sigma: 13.4424 | error: 0.0562254 | coeff: 0.0562254 | eff: 1 | fom: 12.1664 | r2int: 0.00315129 | r2eff: 0 | hits: 316 ] steps
+ 89 3524 [sigma: 20.7252 | error: 0.085631 | coeff: 0.085631 | eff: 1 | fom: 5.24523 | r2int: 0.00729808 | r2eff: 0 | hits: 212 ] steps
+ 90 3538 [sigma: 24.9922 | error: 0.103818 | coeff: 0.103818 | eff: 1 | fom: 3.56846 | r2int: 0.0107283 | r2eff: 0 | hits: 216 ] steps
+ 91 4273 [sigma: 13.0605 | error: 0.0533796 | coeff: 0.0533796 | eff: 1 | fom: 13.4982 | r2int: 0.00284004 | r2eff: 0 | hits: 305 ] steps
+ 92 4319 [sigma: 13.9563 | error: 0.056341 | coeff: 0.056341 | eff: 1 | fom: 12.1165 | r2int: 0.00316386 | r2eff: 0 | hits: 304 ] steps
+ 93 3712 [sigma: 11.6404 | error: 0.055124 | coeff: 0.055124 | eff: 1 | fom: 12.6574 | r2int: 0.00302882 | r2eff: 0 | hits: 309 ] steps
+ 94 4524 [sigma: 29.2908 | error: 0.098617 | coeff: 0.098617 | eff: 1 | fom: 3.95478 | r2int: 0.0096834 | r2eff: 0 | hits: 232 ] steps
+ 95 3316 [sigma: 26.4087 | error: 0.100738 | coeff: 0.100738 | eff: 1 | fom: 3.79001 | r2int: 0.0100847 | r2eff: 0 | hits: 160 ] steps
+ 96 3797 [sigma: 21.3673 | error: 0.0845985 | coeff: 0.0845985 | eff: 1 | fom: 5.37405 | r2int: 0.00712524 | r2eff: 0 | hits: 226 ] steps
+ 97 4309 [sigma: 25.6417 | error: 0.0892608 | coeff: 0.0892608 | eff: 1 | fom: 4.8273 | r2int: 0.00793209 | r2eff: 0 | hits: 225 ] steps
+ 98 4769 [sigma: 28.3186 | error: 0.0880758 | coeff: 0.0880758 | eff: 1 | fom: 4.95808 | r2int: 0.00772208 | r2eff: 0 | hits: 220 ] steps
+ 99 3180 [sigma: 27.469 | error: 0.104374 | coeff: 0.104374 | eff: 1 | fom: 3.53056 | r2int: 0.0108193 | r2eff: 0 | hits: 146 ] steps
+ 100 14730 [sigma: 29.3992 | error: 0.0495362 | coeff: 0.0495362 | eff: 1 | fom: 15.6741 | r2int: 0.00244985 | r2eff: 0 | hits: 616 ] steps
+ 101 18383 [sigma: 29.1394 | error: 0.0441281 | coeff: 0.0441281 | eff: 1 | fom: 19.7514 | r2int: 0.00194477 | r2eff: 0 | hits: 775 ] steps
+ 102 20138 [sigma: 30.5956 | error: 0.0425402 | coeff: 0.0425402 | eff: 1 | fom: 21.2533 | r2int: 0.00180736 | r2eff: 0 | hits: 784 ] steps
+ 103 19642 [sigma: 28.4186 | error: 0.0408713 | coeff: 0.0408713 | eff: 1 | fom: 23.0245 | r2int: 0.00166837 | r2eff: 0 | hits: 798 ] steps
+ 104 15043 [sigma: 25.3023 | error: 0.0433748 | coeff: 0.0433748 | eff: 1 | fom: 20.4434 | r2int: 0.00187854 | r2eff: 0 | hits: 665 ] steps
+ 105 16963 [sigma: 26.5786 | error: 0.0427956 | coeff: 0.0427956 | eff: 1 | fom: 21.0004 | r2int: 0.00182901 | r2eff: 0 | hits: 746 ] steps
+ 106 23534 [sigma: 31.4126 | error: 0.0406833 | coeff: 0.0406833 | eff: 1 | fom: 23.2377 | r2int: 0.00165335 | r2eff: 0 | hits: 929 ] steps
+ 107 22436 [sigma: 27.9932 | error: 0.0392576 | coeff: 0.0392576 | eff: 1 | fom: 24.0319 | r2int: 0.00153961 | r2eff: 0 | hits: 990 ] steps
+ 108 22160 [sigma: 25.1206 | error: 0.0351965 | coeff: 0.0351965 | eff: 1 | fom: 29.8977 | r2int: 0.00123751 | r2eff: 0 | hits: 964 ] steps
+ 109 16942 [sigma: 25.9496 | error: 0.0419746 | coeff: 0.0419746 | eff: 1 | fom: 21.0215 | r2int: 0.00175952 | r2eff: 0 | hits: 751 ] steps
+ 110 16481 [sigma: 25.1551 | error: 0.0417718 | coeff: 0.0417718 | eff: 1 | fom: 21.2261 | r2int: 0.00174256 | r2eff: 0 | hits: 749 ] steps
+ 111 21253 [sigma: 26.1406 | error: 0.0375695 | coeff: 0.0375695 | eff: 1 | fom: 26.2401 | r2int: 0.00140995 | r2eff: 0 | hits: 933 ] steps
+ 112 22248 [sigma: 26.1252 | error: 0.0365537 | coeff: 0.0365537 | eff: 1 | fom: 27.7188 | r2int: 0.00133479 | r2eff: 0 | hits: 969 ] steps
+ 113 23545 [sigma: 28.9629 | error: 0.0387241 | coeff: 0.0387241 | eff: 1 | fom: 24.6987 | r2int: 0.00149804 | r2eff: 0 | hits: 991 ] steps
+ 114 18298 [sigma: 28.0283 | error: 0.0423112 | coeff: 0.0423112 | eff: 1 | fom: 20.6883 | r2int: 0.00178789 | r2eff: 0 | hits: 763 ] steps
+ 115 16519 [sigma: 23.9189 | error: 0.039707 | coeff: 0.039707 | eff: 1 | fom: 23.4911 | r2int: 0.00157455 | r2eff: 0 | hits: 752 ] steps
+ 116 22839 [sigma: 26.3641 | error: 0.0352406 | coeff: 0.0352406 | eff: 1 | fom: 29.8229 | r2int: 0.00124057 | r2eff: 0 | hits: 932 ] steps
+ 117 22929 [sigma: 27.528 | error: 0.0375072 | coeff: 0.0375072 | eff: 1 | fom: 26.3274 | r2int: 0.00140535 | r2eff: 0 | hits: 976 ] steps
+ 118 24053 [sigma: 31.4055 | error: 0.0410615 | coeff: 0.0410615 | eff: 1 | fom: 21.1823 | r2int: 0.00168434 | r2eff: 0 | hits: 989 ] steps
+ 119 19041 [sigma: 27.0147 | error: 0.0403538 | coeff: 0.0403538 | eff: 1 | fom: 21.9317 | r2int: 0.00162642 | r2eff: 0 | hits: 809 ] steps
+ 120 13041 [sigma: 22.8712 | error: 0.0434926 | coeff: 0.0434926 | eff: 1 | fom: 18.8804 | r2int: 0.00188853 | r2eff: 0 | hits: 615 ] steps
+ 121 18690 [sigma: 28.642 | error: 0.0428273 | coeff: 0.0428273 | eff: 1 | fom: 19.4716 | r2int: 0.00183183 | r2eff: 0 | hits: 781 ] steps
+ 122 18917 [sigma: 26.8568 | error: 0.0410737 | coeff: 0.0410737 | eff: 1 | fom: 21.1697 | r2int: 0.00168504 | r2eff: 0 | hits: 837 ] steps
+ 123 18898 [sigma: 27.5354 | error: 0.0409793 | coeff: 0.0409793 | eff: 1 | fom: 21.2673 | r2int: 0.00167718 | r2eff: 0 | hits: 791 ] steps
+ 124 15949 [sigma: 25.334 | error: 0.0421162 | coeff: 0.0421162 | eff: 1 | fom: 20.1347 | r2int: 0.00177125 | r2eff: 0 | hits: 703 ] steps
============================================================
closed file mfd_tl_NumberOfSteps.out for output
============================================================
opened file mfd_tg_NumberOfSteps.out for output
============================================================
- 0 47.000000 steps
- 1 11.000000 steps
- 2 84.000000 steps
- 3 72.000000 steps
- 4 42.000000 steps
- 5 10.000000 steps
- 6 15.000000 steps
- 7 53.000000 steps
- 8 37.000000 steps
- 9 39.000000 steps
- 10 58.000000 steps
- 11 112.000000 steps
- 12 33.000000 steps
- 13 113.000000 steps
- 14 3.000000 steps
- 15 92.000000 steps
- 16 62.000000 steps
- 17 84.000000 steps
- 18 32.000000 steps
- 19 44.000000 steps
- 20 117.000000 steps
- 21 58.000000 steps
- 22 23.000000 steps
- 23 32.000000 steps
- 24 7.000000 steps
- 25 37.000000 steps
- 26 118.000000 steps
- 27 190.000000 steps
- 28 133.000000 steps
- 29 77.000000 steps
- 30 230.000000 steps
- 31 280.000000 steps
- 32 258.000000 steps
- 33 279.000000 steps
- 34 162.000000 steps
- 35 118.000000 steps
- 36 242.000000 steps
- 37 390.000000 steps
- 38 394.000000 steps
- 39 98.000000 steps
- 40 55.000000 steps
- 41 136.000000 steps
- 42 247.000000 steps
- 43 294.000000 steps
- 44 123.000000 steps
- 45 105.000000 steps
- 46 121.000000 steps
- 47 135.000000 steps
- 48 120.000000 steps
- 49 90.000000 steps
- 50 303.000000 steps
- 51 430.000000 steps
- 52 655.000000 steps
- 53 638.000000 steps
- 54 360.000000 steps
- 55 602.000000 steps
- 56 890.000000 steps
- 57 1106.000000 steps
- 58 1064.000000 steps
- 59 412.000000 steps
- 60 566.000000 steps
- 61 755.000000 steps
- 62 1190.000000 steps
- 63 1024.000000 steps
- 64 717.000000 steps
- 65 491.000000 steps
- 66 643.000000 steps
- 67 824.000000 steps
- 68 838.000000 steps
- 69 532.000000 steps
- 70 337.000000 steps
- 71 286.000000 steps
- 72 403.000000 steps
- 73 558.000000 steps
- 74 279.000000 steps
- 75 2968.000000 steps
- 76 3822.000000 steps
- 77 3170.000000 steps
- 78 2948.000000 steps
- 79 2842.000000 steps
- 80 3053.000000 steps
- 81 3813.000000 steps
- 82 4079.000000 steps
- 83 3636.000000 steps
- 84 3390.000000 steps
- 85 3294.000000 steps
- 86 3537.000000 steps
- 87 4008.000000 steps
- 88 3827.000000 steps
- 89 3913.000000 steps
- 90 3652.000000 steps
- 91 3572.000000 steps
- 92 4036.000000 steps
- 93 3840.000000 steps
- 94 3732.000000 steps
- 95 3204.000000 steps
- 96 3849.000000 steps
- 97 3899.000000 steps
- 98 3613.000000 steps
- 99 2872.000000 steps
- 100 14890.000000 steps
- 101 19797.000000 steps
- 102 18088.000000 steps
- 103 17795.000000 steps
- 104 12895.000000 steps
- 105 17481.000000 steps
- 106 22968.000000 steps
- 107 24272.000000 steps
- 108 23804.000000 steps
- 109 16743.000000 steps
- 110 16711.000000 steps
- 111 23405.000000 steps
- 112 23044.000000 steps
- 113 22765.000000 steps
- 114 19436.000000 steps
- 115 19489.000000 steps
- 116 22783.000000 steps
- 117 21998.000000 steps
- 118 20055.000000 steps
- 119 17195.000000 steps
- 120 15236.000000 steps
- 121 17623.000000 steps
- 122 19181.000000 steps
- 123 16690.000000 steps
- 124 14132.000000 steps
+ 0 10.000000 steps
+ 1 40.000000 steps
+ 2 17.000000 steps
+ 3 29.000000 steps
+ 4 47.000000 steps
+ 5 46.000000 steps
+ 6 7.000000 steps
+ 7 163.000000 steps
+ 8 44.000000 steps
+ 9 19.000000 steps
+ 10 4.000000 steps
+ 11 38.000000 steps
+ 12 141.000000 steps
+ 13 117.000000 steps
+ 14 17.000000 steps
+ 15 36.000000 steps
+ 16 12.000000 steps
+ 17 221.000000 steps
+ 18 63.000000 steps
+ 19 8.000000 steps
+ 20 14.000000 steps
+ 21 33.000000 steps
+ 22 69.000000 steps
+ 23 48.000000 steps
+ 24 52.000000 steps
+ 25 148.000000 steps
+ 26 62.000000 steps
+ 27 227.000000 steps
+ 28 191.000000 steps
+ 29 90.000000 steps
+ 30 57.000000 steps
+ 31 202.000000 steps
+ 32 287.000000 steps
+ 33 250.000000 steps
+ 34 173.000000 steps
+ 35 97.000000 steps
+ 36 232.000000 steps
+ 37 367.000000 steps
+ 38 365.000000 steps
+ 39 204.000000 steps
+ 40 141.000000 steps
+ 41 203.000000 steps
+ 42 255.000000 steps
+ 43 240.000000 steps
+ 44 182.000000 steps
+ 45 162.000000 steps
+ 46 119.000000 steps
+ 47 210.000000 steps
+ 48 78.000000 steps
+ 49 201.000000 steps
+ 50 614.000000 steps
+ 51 649.000000 steps
+ 52 794.000000 steps
+ 53 453.000000 steps
+ 54 400.000000 steps
+ 55 529.000000 steps
+ 56 765.000000 steps
+ 57 1121.000000 steps
+ 58 936.000000 steps
+ 59 475.000000 steps
+ 60 396.000000 steps
+ 61 895.000000 steps
+ 62 1082.000000 steps
+ 63 1435.000000 steps
+ 64 482.000000 steps
+ 65 362.000000 steps
+ 66 661.000000 steps
+ 67 959.000000 steps
+ 68 901.000000 steps
+ 69 469.000000 steps
+ 70 550.000000 steps
+ 71 389.000000 steps
+ 72 365.000000 steps
+ 73 464.000000 steps
+ 74 310.000000 steps
+ 75 2963.000000 steps
+ 76 3285.000000 steps
+ 77 4083.000000 steps
+ 78 4524.000000 steps
+ 79 2630.000000 steps
+ 80 3565.000000 steps
+ 81 3891.000000 steps
+ 82 4063.000000 steps
+ 83 4380.000000 steps
+ 84 3833.000000 steps
+ 85 3574.000000 steps
+ 86 4049.000000 steps
+ 87 4410.000000 steps
+ 88 4250.000000 steps
+ 89 3524.000000 steps
+ 90 3538.000000 steps
+ 91 4273.000000 steps
+ 92 4319.000000 steps
+ 93 3712.000000 steps
+ 94 4524.000000 steps
+ 95 3316.000000 steps
+ 96 3797.000000 steps
+ 97 4309.000000 steps
+ 98 4769.000000 steps
+ 99 3180.000000 steps
+ 100 14730.000000 steps
+ 101 18383.000000 steps
+ 102 20138.000000 steps
+ 103 19642.000000 steps
+ 104 15043.000000 steps
+ 105 16963.000000 steps
+ 106 23534.000000 steps
+ 107 22436.000000 steps
+ 108 22160.000000 steps
+ 109 16942.000000 steps
+ 110 16481.000000 steps
+ 111 21253.000000 steps
+ 112 22248.000000 steps
+ 113 23545.000000 steps
+ 114 18298.000000 steps
+ 115 16519.000000 steps
+ 116 22839.000000 steps
+ 117 22929.000000 steps
+ 118 24053.000000 steps
+ 119 19041.000000 steps
+ 120 13041.000000 steps
+ 121 18690.000000 steps
+ 122 18917.000000 steps
+ 123 18898.000000 steps
+ 124 15949.000000 steps
============================================================
closed file mfd_tg_NumberOfSteps.out for output
============================================================
@@ -1675,6 +1672,6 @@ Visualization Manager deleting...
G4 kernel has come to Quit state.
================== Deleting memory pools ===================
Number of memory pools allocated: 14 of which, static: 0
-Dynamic pools deleted: 14 / Total memory freed: 0.07 MB
+Dynamic pools deleted: 14 / Total memory freed: 0.072 MB
============================================================
RunManagerKernel is deleted. Good bye :)
diff --git a/examples/extended/parallel/TopC/ParN02/AnnotatedFiles/G4THitsCollection.hh b/examples/extended/parallel/TopC/ParN02/AnnotatedFiles/G4THitsCollection.hh
index 034522c64d9..e631072d565 100644
--- a/examples/extended/parallel/TopC/ParN02/AnnotatedFiles/G4THitsCollection.hh
+++ b/examples/extended/parallel/TopC/ParN02/AnnotatedFiles/G4THitsCollection.hh
@@ -55,7 +55,7 @@ class G4HitsCollection : public G4VHitsCollection
G4HitsCollection();
G4HitsCollection(G4String detName,G4String colNam);
virtual ~G4HitsCollection();
- G4int operator==(const G4HitsCollection &right) const;
+ G4bool operator==(const G4HitsCollection &right) const;
protected:
void* theCollection; /*MSH: ptr_as_array
@@ -84,7 +84,7 @@ template class G4THitsCollection : public G4HitsCollection
// constructor.
public:
virtual ~G4THitsCollection();
- G4int operator==(const G4THitsCollection &right) const;
+ G4bool operator==(const G4THitsCollection &right) const;
inline void *operator new(size_t);
inline void operator delete(void* anHC);
@@ -167,7 +167,7 @@ template G4THitsCollection::~G4THitsCollection()
delete theHitsCollection;
}
-template G4int G4THitsCollection::operator==(const G4THitsCollection &right) const
+template G4bool G4THitsCollection::operator==(const G4THitsCollection &right) const
{ return (collectionName==right.collectionName); }
template void G4THitsCollection::DrawAllHits()
diff --git a/examples/extended/parallel/TopC/ParN02/AnnotatedFiles/G4VHitsCollection.hh b/examples/extended/parallel/TopC/ParN02/AnnotatedFiles/G4VHitsCollection.hh
index 4a7e5158069..83ed44b9dbf 100644
--- a/examples/extended/parallel/TopC/ParN02/AnnotatedFiles/G4VHitsCollection.hh
+++ b/examples/extended/parallel/TopC/ParN02/AnnotatedFiles/G4VHitsCollection.hh
@@ -51,7 +51,7 @@ class G4VHitsCollection
G4VHitsCollection();
G4VHitsCollection(G4String detName,G4String colNam);
virtual ~G4VHitsCollection();
- G4int operator==(const G4VHitsCollection &right) const;
+ G4bool operator==(const G4VHitsCollection &right) const;
virtual void DrawAllHits();
virtual void PrintAllHits();
diff --git a/examples/extended/parallel/TopC/ParN02/include/ExN02TrackerHit.hh b/examples/extended/parallel/TopC/ParN02/include/ExN02TrackerHit.hh
index 38f52476bbb..cf3bc6bd619 100644
--- a/examples/extended/parallel/TopC/ParN02/include/ExN02TrackerHit.hh
+++ b/examples/extended/parallel/TopC/ParN02/include/ExN02TrackerHit.hh
@@ -54,7 +54,7 @@ class ExN02TrackerHit : public G4VHit
ExN02TrackerHit(const ExN02TrackerHit&);
const ExN02TrackerHit& operator=(const ExN02TrackerHit&);
- G4int operator==(const ExN02TrackerHit&) const;
+ G4bool operator==(const ExN02TrackerHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
diff --git a/examples/extended/parallel/TopC/ParN02/src/ExN02TrackerHit.cc b/examples/extended/parallel/TopC/ParN02/src/ExN02TrackerHit.cc
index c270cc658a6..de07ab87b65 100644
--- a/examples/extended/parallel/TopC/ParN02/src/ExN02TrackerHit.cc
+++ b/examples/extended/parallel/TopC/ParN02/src/ExN02TrackerHit.cc
@@ -72,9 +72,9 @@ const ExN02TrackerHit& ExN02TrackerHit::operator=(const ExN02TrackerHit& right)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-G4int ExN02TrackerHit::operator==(const ExN02TrackerHit& right) const
+G4bool ExN02TrackerHit::operator==(const ExN02TrackerHit& right) const
{
- return (this==&right) ? 1 : 0;
+ return (this==&right) ? true : false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
diff --git a/examples/extended/parallel/TopC/ParN04/AnnotatedFiles/G4THitsCollection.hh b/examples/extended/parallel/TopC/ParN04/AnnotatedFiles/G4THitsCollection.hh
index 82ed4da9034..9c42984eca2 100644
--- a/examples/extended/parallel/TopC/ParN04/AnnotatedFiles/G4THitsCollection.hh
+++ b/examples/extended/parallel/TopC/ParN04/AnnotatedFiles/G4THitsCollection.hh
@@ -65,7 +65,7 @@ class G4HitsCollection : public G4VHitsCollection
G4HitsCollection();
G4HitsCollection(G4String detName,G4String colNam);
virtual ~G4HitsCollection();
- G4int operator==(const G4HitsCollection &right) const;
+ G4bool operator==(const G4HitsCollection &right) const;
protected:
void* theCollection; /*MSH: ptr_as_array
@@ -117,7 +117,7 @@ template class G4THitsCollection : public G4HitsCollection
// constructor.
public:
virtual ~G4THitsCollection();
- G4int operator==(const G4THitsCollection &right) const;
+ G4bool operator==(const G4THitsCollection &right) const;
inline void *operator new(size_t);
inline void operator delete(void* anHC);
@@ -200,7 +200,7 @@ template G4THitsCollection::~G4THitsCollection()
delete theHitsCollection;
}
-template G4int G4THitsCollection::operator==(const G4THitsCollection &right) const
+template G4bool G4THitsCollection::operator==(const G4THitsCollection &right) const
{ return (collectionName==right.collectionName); }
template void G4THitsCollection::DrawAllHits()
diff --git a/examples/extended/parallel/TopC/ParN04/AnnotatedFiles/G4VHitsCollection.hh b/examples/extended/parallel/TopC/ParN04/AnnotatedFiles/G4VHitsCollection.hh
index 93ac88d41f7..e2eeb26745d 100644
--- a/examples/extended/parallel/TopC/ParN04/AnnotatedFiles/G4VHitsCollection.hh
+++ b/examples/extended/parallel/TopC/ParN04/AnnotatedFiles/G4VHitsCollection.hh
@@ -51,7 +51,7 @@ class G4VHitsCollection
G4VHitsCollection();
G4VHitsCollection(G4String detName,G4String colNam);
virtual ~G4VHitsCollection();
- G4int operator==(const G4VHitsCollection &right) const;
+ G4bool operator==(const G4VHitsCollection &right) const;
virtual void DrawAllHits();
virtual void PrintAllHits();
diff --git a/examples/extended/parallel/TopC/ParN04/include/ExN04CalorimeterHit.hh b/examples/extended/parallel/TopC/ParN04/include/ExN04CalorimeterHit.hh
index 8bc2256d2f1..7001d6a13e3 100644
--- a/examples/extended/parallel/TopC/ParN04/include/ExN04CalorimeterHit.hh
+++ b/examples/extended/parallel/TopC/ParN04/include/ExN04CalorimeterHit.hh
@@ -56,7 +56,7 @@ class ExN04CalorimeterHit : public G4VHit
~ExN04CalorimeterHit();
ExN04CalorimeterHit(const ExN04CalorimeterHit &right);
const ExN04CalorimeterHit& operator=(const ExN04CalorimeterHit &right);
- G4int operator==(const ExN04CalorimeterHit &right) const;
+ G4bool operator==(const ExN04CalorimeterHit &right) const;
inline void *operator new(size_t);
inline void operator delete(void *aHit);
diff --git a/examples/extended/parallel/TopC/ParN04/include/ExN04MuonHit.hh b/examples/extended/parallel/TopC/ParN04/include/ExN04MuonHit.hh
index 8b6a9f03ad1..3cbee1e685a 100644
--- a/examples/extended/parallel/TopC/ParN04/include/ExN04MuonHit.hh
+++ b/examples/extended/parallel/TopC/ParN04/include/ExN04MuonHit.hh
@@ -49,7 +49,7 @@ class ExN04MuonHit : public G4VHit
~ExN04MuonHit();
ExN04MuonHit(const ExN04MuonHit &right);
const ExN04MuonHit& operator=(const ExN04MuonHit &right);
- G4int operator==(const ExN04MuonHit &right) const;
+ G4bool operator==(const ExN04MuonHit &right) const;
inline void *operator new(size_t);
diff --git a/examples/extended/parallel/TopC/ParN04/include/ExN04TrackerHit.hh b/examples/extended/parallel/TopC/ParN04/include/ExN04TrackerHit.hh
index c3b344c66aa..3eff12e9a9a 100644
--- a/examples/extended/parallel/TopC/ParN04/include/ExN04TrackerHit.hh
+++ b/examples/extended/parallel/TopC/ParN04/include/ExN04TrackerHit.hh
@@ -54,7 +54,7 @@ class ExN04TrackerHit : public G4VHit
ExN04TrackerHit(const ExN04TrackerHit &right);
const ExN04TrackerHit& operator=(const ExN04TrackerHit &right);
- G4int operator==(const ExN04TrackerHit &right) const;
+ G4bool operator==(const ExN04TrackerHit &right) const;
inline void* operator new(size_t);
inline void operator delete(void* aHit);
diff --git a/examples/extended/parallel/TopC/ParN04/src/ExN04CalorimeterHit.cc b/examples/extended/parallel/TopC/ParN04/src/ExN04CalorimeterHit.cc
index 12171c10d71..4761e4f9744 100644
--- a/examples/extended/parallel/TopC/ParN04/src/ExN04CalorimeterHit.cc
+++ b/examples/extended/parallel/TopC/ParN04/src/ExN04CalorimeterHit.cc
@@ -69,7 +69,7 @@ const ExN04CalorimeterHit& ExN04CalorimeterHit::operator=(const ExN04Calorimeter
return *this;
}
-G4int ExN04CalorimeterHit::operator==(const ExN04CalorimeterHit &right) const
+G4bool ExN04CalorimeterHit::operator==(const ExN04CalorimeterHit &right) const
{
return ((ZCellID==right.ZCellID)&&(PhiCellID==right.PhiCellID));
}
diff --git a/examples/extended/parallel/TopC/ParN04/src/ExN04MuonHit.cc b/examples/extended/parallel/TopC/ParN04/src/ExN04MuonHit.cc
index 6d32c785490..2a39ad177d5 100644
--- a/examples/extended/parallel/TopC/ParN04/src/ExN04MuonHit.cc
+++ b/examples/extended/parallel/TopC/ParN04/src/ExN04MuonHit.cc
@@ -57,9 +57,9 @@ const ExN04MuonHit& ExN04MuonHit::operator=(const ExN04MuonHit &right)
return *this;
}
-G4int ExN04MuonHit::operator==(const ExN04MuonHit &right) const
+G4bool ExN04MuonHit::operator==(const ExN04MuonHit &right) const
{
- return (this==&right) ? 1 : 0;
+ return (this==&right) ? true : false;
}
void ExN04MuonHit::Draw()
diff --git a/examples/extended/parallel/TopC/ParN04/src/ExN04TrackerHit.cc b/examples/extended/parallel/TopC/ParN04/src/ExN04TrackerHit.cc
index 78ef288c698..ec00ed1300d 100644
--- a/examples/extended/parallel/TopC/ParN04/src/ExN04TrackerHit.cc
+++ b/examples/extended/parallel/TopC/ParN04/src/ExN04TrackerHit.cc
@@ -57,9 +57,9 @@ const ExN04TrackerHit& ExN04TrackerHit::operator=(const ExN04TrackerHit &right)
return *this;
}
-G4int ExN04TrackerHit::operator==(const ExN04TrackerHit &right) const
+G4bool ExN04TrackerHit::operator==(const ExN04TrackerHit &right) const
{
- return (this==&right) ? 1 : 0;
+ return (this==&right) ? true : false;
}
void ExN04TrackerHit::Draw()
diff --git a/examples/extended/parameterisations/History b/examples/extended/parameterisations/History
index fa5b3122741..a0bf65d86ab 100644
--- a/examples/extended/parameterisations/History
+++ b/examples/extended/parameterisations/History
@@ -16,6 +16,10 @@ committal in the CVS repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+Jan 31st, 2019 I. Hrivnacova (exParameterisations-V10-04-00)
+--------------------
+- Merged GitHub PR #4: all Boolean operators now return G4bool.
+
Jun 10th, 2015 I. Hrivnacova (exParameterisations-V10-01-01)
--------------------
- Fixed handling required gdml package in CMake files
diff --git a/examples/extended/parameterisations/Par01/examplePar01.out b/examples/extended/parameterisations/Par01/examplePar01.out
index 9b376727e5f..6bab5ea9ae2 100644
--- a/examples/extended/parameterisations/Par01/examplePar01.out
+++ b/examples/extended/parameterisations/Par01/examplePar01.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -53,12 +49,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -87,371 +81,371 @@ End of Run User Vis Actions: none
Some /vis commands (optionally) take a string to specify colour.
"/vis/list" to see available colours.
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -502,6 +496,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -607,6 +602,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -743,6 +739,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
diff --git a/examples/extended/parameterisations/Par01/include/Par01CalorimeterHit.hh b/examples/extended/parameterisations/Par01/include/Par01CalorimeterHit.hh
index d55ee4174c5..2ab669f7f3e 100644
--- a/examples/extended/parameterisations/Par01/include/Par01CalorimeterHit.hh
+++ b/examples/extended/parameterisations/Par01/include/Par01CalorimeterHit.hh
@@ -49,7 +49,7 @@ public:
~Par01CalorimeterHit();
Par01CalorimeterHit(const Par01CalorimeterHit &right);
const Par01CalorimeterHit& operator=(const Par01CalorimeterHit &right);
- G4int operator==(const Par01CalorimeterHit &right) const;
+ G4bool operator==(const Par01CalorimeterHit &right) const;
inline void *operator new(size_t);
diff --git a/examples/extended/parameterisations/Par01/include/Par01EnergySpot.hh b/examples/extended/parameterisations/Par01/include/Par01EnergySpot.hh
index a9022f80871..88de26ac34a 100644
--- a/examples/extended/parameterisations/Par01/include/Par01EnergySpot.hh
+++ b/examples/extended/parameterisations/Par01/include/Par01EnergySpot.hh
@@ -47,7 +47,7 @@ public:
inline void SetPosition(const G4ThreeVector& point) {fPoint = point;}
inline G4ThreeVector GetPosition() const {return fPoint;}
- G4int operator==(const Par01EnergySpot& eSpot) const
+ G4bool operator==(const Par01EnergySpot& eSpot) const
{
return (fEnergy==eSpot.fEnergy && fPoint==eSpot.fPoint) ? 1 : 0;
}
diff --git a/examples/extended/parameterisations/Par01/src/Par01CalorimeterHit.cc b/examples/extended/parameterisations/Par01/src/Par01CalorimeterHit.cc
index 9744a6e3c16..ba980dcd55a 100644
--- a/examples/extended/parameterisations/Par01/src/Par01CalorimeterHit.cc
+++ b/examples/extended/parameterisations/Par01/src/Par01CalorimeterHit.cc
@@ -81,9 +81,9 @@ const Par01CalorimeterHit& Par01CalorimeterHit::operator=(const Par01Calorimeter
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-G4int Par01CalorimeterHit::operator==(const Par01CalorimeterHit &right) const
+G4bool Par01CalorimeterHit::operator==(const Par01CalorimeterHit &right) const
{
- return (this==&right) ? 1 : 0;
+ return (this==&right) ? true : false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
diff --git a/examples/extended/parameterisations/Par02/examplePar02.out b/examples/extended/parameterisations/Par02/examplePar02.out
index 2d5d1954d66..5557b29f671 100644
--- a/examples/extended/parameterisations/Par02/examplePar02.out
+++ b/examples/extended/parameterisations/Par02/examplePar02.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -25,6 +21,8 @@ G4GDML: Reading 'Par02FullDetector.gdml' done!
Stripping off GDML names of materials, solids and volumes ...
Geometry loaded from file .......Par02FullDetector.gdml
+tracker !!!
+
ecal !!!
ecal !!!
@@ -33,7 +31,7 @@ ecal !!!
ecal !!!
-hcal !!!
+ecal !!!
hcal !!!
@@ -43,21 +41,7 @@ hcal !!!
hcal !!!
-tracker !!!
-
-ecal !!!
-Warning : Region does not have specific production cuts,
-even though it appears in the current tracking world.
-Default cuts are used for this region.
-Warning : Region does not have specific production cuts,
-even though it appears in the current tracking world.
-Default cuts are used for this region.
-Warning : Region does not have specific production cuts,
-even though it appears in the current tracking world.
-Default cuts are used for this region.
-Warning : Region does not have specific production cuts,
-even though it appears in the current tracking world.
-Default cuts are used for this region.
+hcal !!!
Warning : Region does not have specific production cuts,
even though it appears in the current tracking world.
Default cuts are used for this region.
@@ -82,6 +66,18 @@ Default cuts are used for this region.
Warning : Region does not have specific production cuts,
even though it appears in the current tracking world.
Default cuts are used for this region.
+Warning : Region does not have specific production cuts,
+even though it appears in the current tracking world.
+Default cuts are used for this region.
+Warning : Region does not have specific production cuts,
+even though it appears in the current tracking world.
+Default cuts are used for this region.
+Warning : Region does not have specific production cuts,
+even though it appears in the current tracking world.
+Default cuts are used for this region.
+Warning : Region does not have specific production cuts,
+even though it appears in the current tracking world.
+Default cuts are used for this region.
Instantiating Visualization Manager.......
Visualization Manager instantiating with verbosity "warnings (3)"...
Visualization Manager initialising...
@@ -97,12 +93,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
diff --git a/examples/extended/parameterisations/gflash/include/ExGflashHit.hh b/examples/extended/parameterisations/gflash/include/ExGflashHit.hh
index 37518b7acc6..74fda377346 100644
--- a/examples/extended/parameterisations/gflash/include/ExGflashHit.hh
+++ b/examples/extended/parameterisations/gflash/include/ExGflashHit.hh
@@ -47,7 +47,7 @@ class ExGflashHit : public G4VHit
~ExGflashHit();
ExGflashHit(const ExGflashHit &right);
const ExGflashHit& operator=(const ExGflashHit &right);
- int operator==(const ExGflashHit &right) const;
+ G4bool operator==(const ExGflashHit &right) const;
inline void *operator new(size_t);
inline void operator delete(void *aHit);
diff --git a/examples/extended/parameterisations/gflash/src/ExGflashHit.cc b/examples/extended/parameterisations/gflash/src/ExGflashHit.cc
index 7102f3bd6a7..adcbe5d2af7 100644
--- a/examples/extended/parameterisations/gflash/src/ExGflashHit.cc
+++ b/examples/extended/parameterisations/gflash/src/ExGflashHit.cc
@@ -88,9 +88,9 @@ const ExGflashHit & ExGflashHit::operator=(const ExGflashHit &right)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-int ExGflashHit::operator==(const ExGflashHit &right) const
+G4bool ExGflashHit::operator==(const ExGflashHit &right) const
{
-// @@@@ return 0;
+// @@@@ return false;
if ((fPos==right.fPos) && (fEdep == right.fEdep)) return true;
else return false;
diff --git a/examples/extended/parameterisations/gflash/test.out b/examples/extended/parameterisations/gflash/test.out
index 3d972990e59..88214e577d0 100644
--- a/examples/extended/parameterisations/gflash/test.out
+++ b/examples/extended/parameterisations/gflash/test.out
@@ -4,12 +4,8 @@
| Parameterization with GFLASH |
+-------------------------------------------------------+
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -38,12 +34,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -123,371 +117,371 @@ Warning : Region does not have specific production cuts,
even though it appears in the current tracking world.
Default cuts are used for this region.
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -538,6 +532,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -643,6 +638,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -779,6 +775,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -794,7 +791,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
******************************************
-Internal Real Elapsed Time is: 0.0132089
+Internal Real Elapsed Time is: 0.0118883
Internal System Elapsed Time: 0
Internal GetUserElapsed Time: 0.01
******************************************
@@ -808,7 +805,7 @@ Internal GetUserElapsed Time: 0.01
******************************************
-Internal Real Elapsed Time is: 0.00907562
+Internal Real Elapsed Time is: 0.00887791
Internal System Elapsed Time: 0
Internal GetUserElapsed Time: 0.01
******************************************
@@ -822,9 +819,9 @@ Internal GetUserElapsed Time: 0.01
******************************************
-Internal Real Elapsed Time is: 0.00844124
+Internal Real Elapsed Time is: 0.0081937
Internal System Elapsed Time: 0
-Internal GetUserElapsed Time: 0.01
+Internal GetUserElapsed Time: 0
******************************************
------ ExGflashEventAction::End of event nr. 2 -----
11963 hits are stored in ExGflashHitsCollection
@@ -836,7 +833,7 @@ Internal GetUserElapsed Time: 0.01
******************************************
-Internal Real Elapsed Time is: 0.00840315
+Internal Real Elapsed Time is: 0.00906189
Internal System Elapsed Time: 0
Internal GetUserElapsed Time: 0.01
******************************************
@@ -850,9 +847,9 @@ Internal GetUserElapsed Time: 0.01
******************************************
-Internal Real Elapsed Time is: 0.00824539
+Internal Real Elapsed Time is: 0.00817911
Internal System Elapsed Time: 0
-Internal GetUserElapsed Time: 0
+Internal GetUserElapsed Time: 0.01
******************************************
------ ExGflashEventAction::End of event nr. 4 -----
11940 hits are stored in ExGflashHitsCollection
@@ -864,7 +861,7 @@ Internal GetUserElapsed Time: 0
******************************************
-Internal Real Elapsed Time is: 0.00826921
+Internal Real Elapsed Time is: 0.00850918
Internal System Elapsed Time: 0
Internal GetUserElapsed Time: 0.01
******************************************
@@ -878,7 +875,7 @@ Internal GetUserElapsed Time: 0.01
******************************************
-Internal Real Elapsed Time is: 0.00833307
+Internal Real Elapsed Time is: 0.00820737
Internal System Elapsed Time: 0
Internal GetUserElapsed Time: 0.01
******************************************
@@ -892,7 +889,7 @@ Internal GetUserElapsed Time: 0.01
******************************************
-Internal Real Elapsed Time is: 0.00843597
+Internal Real Elapsed Time is: 0.00814959
Internal System Elapsed Time: 0
Internal GetUserElapsed Time: 0.01
******************************************
@@ -906,7 +903,7 @@ Internal GetUserElapsed Time: 0.01
******************************************
-Internal Real Elapsed Time is: 0.00833688
+Internal Real Elapsed Time is: 0.00929388
Internal System Elapsed Time: 0
Internal GetUserElapsed Time: 0.01
******************************************
@@ -920,9 +917,9 @@ Internal GetUserElapsed Time: 0.01
******************************************
-Internal Real Elapsed Time is: 0.00827989
+Internal Real Elapsed Time is: 0.00826788
Internal System Elapsed Time: 0
-Internal GetUserElapsed Time: 0.01
+Internal GetUserElapsed Time: 0
******************************************
------ ExGflashEventAction::End of event nr. 9 -----
11904 hits are stored in ExGflashHitsCollection
@@ -932,10 +929,10 @@ Internal GetUserElapsed Time: 0.01
number of event = 10
Graphics systems deleted.
Visualization Manager deleting...
-Internal Real Elapsed Time /event is: 0.00989215
+Internal Real Elapsed Time /event is: 0.00984764
******************************************
-Total Real Elapsed Time is: 1.39712
-Total System Elapsed Time: 0.03
-Total GetUserElapsed Time: 1.06
+Total Real Elapsed Time is: 1.16052
+Total System Elapsed Time: 0.02
+Total GetUserElapsed Time: 1.08
******************************************
diff --git a/examples/extended/persistency/History b/examples/extended/persistency/History
index b79bc5ca350..7667b41635b 100644
--- a/examples/extended/persistency/History
+++ b/examples/extended/persistency/History
@@ -15,6 +15,9 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+January 31, 2019 I. Hrivnacova (exPersistency-V10-04-00)
+- Merged GitHub PR #4: all Boolean operators now return G4bool.
+
November 11, 2015 W. Pokorski (exPersistency-V10-01-01)
- Adding ROOT6 as minimal version
diff --git a/examples/extended/persistency/P01/include/ExP01TrackerHit.hh b/examples/extended/persistency/P01/include/ExP01TrackerHit.hh
index a1e634de133..4259e90dd5f 100644
--- a/examples/extended/persistency/P01/include/ExP01TrackerHit.hh
+++ b/examples/extended/persistency/P01/include/ExP01TrackerHit.hh
@@ -51,7 +51,7 @@ class ExP01TrackerHit : public G4VHit
~ExP01TrackerHit();
ExP01TrackerHit(const ExP01TrackerHit&);
const ExP01TrackerHit& operator=(const ExP01TrackerHit&);
- G4int operator==(const ExP01TrackerHit&) const;
+ G4bool operator==(const ExP01TrackerHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
diff --git a/examples/extended/persistency/P01/p01-write.out b/examples/extended/persistency/P01/p01-write.out
index 5bbb302bffb..9d047f53717 100644
--- a/examples/extended/persistency/P01/p01-write.out
+++ b/examples/extended/persistency/P01/p01-write.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -28,12 +24,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -123,371 +117,371 @@ There are 5 chambers in the tracker region. The chambers are 200 mm of XenonGas
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -538,6 +532,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -643,6 +638,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -779,6 +775,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -1946,7 +1943,7 @@ writing Event_1
Run terminated.
Run Summary
Number of events processed : 1
- User=0.310000s Real=6.695714s Sys=0.250000s
+ User=0.270000s Real=4.993959s Sys=0.200000s
Region -- -- appears in world volume
This region is in the mass world.
@@ -2397,7 +2394,7 @@ writing Event_4
Run terminated.
Run Summary
Number of events processed : 3
- User=0.010000s Real=0.031957s Sys=0.010000s
+ User=0.010000s Real=0.007858s Sys=0.000000s
Graphics systems deleted.
Visualization Manager deleting...
G4 kernel has come to Quit state.
diff --git a/examples/extended/persistency/P01/src/ExP01TrackerHit.cc b/examples/extended/persistency/P01/src/ExP01TrackerHit.cc
index 5bcf0fd025c..b066d651ffe 100644
--- a/examples/extended/persistency/P01/src/ExP01TrackerHit.cc
+++ b/examples/extended/persistency/P01/src/ExP01TrackerHit.cc
@@ -73,9 +73,9 @@ const ExP01TrackerHit& ExP01TrackerHit::operator=(const ExP01TrackerHit& right)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-G4int ExP01TrackerHit::operator==(const ExP01TrackerHit& right) const
+G4bool ExP01TrackerHit::operator==(const ExP01TrackerHit& right) const
{
- return (this==&right) ? 1 : 0;
+ return (this==&right) ? true : false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
diff --git a/examples/extended/persistency/P03/History b/examples/extended/persistency/P03/History
index e400b7f5ac9..742465bbb70 100644
--- a/examples/extended/persistency/P03/History
+++ b/examples/extended/persistency/P03/History
@@ -14,12 +14,18 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+March 25th 2019 G.Cosmo (exampleP03-V10-04-01)
+--------------------------
+- Fixed compilation warnings on unused local iterators.
+
May 19th 2018 J.Allison (exampleP03-V10-04-00)
+--------------------------
- Add #include "G4Types.hh"
- Remove G4UI_USE and G4VIS_USE.
- Move instantiation of G4UIExecutive to start of main.
19 November 2016 A. Dotti (exampleP03-V10-02-00)
+--------------------------
- Explicit set of SD to manager
17 September 2015 P. Arce (exampleP03-V10-01-01)
diff --git a/examples/extended/persistency/P03/batch.out b/examples/extended/persistency/P03/batch.out
index 7e7aa9f622a..30d576a94fc 100644
--- a/examples/extended/persistency/P03/batch.out
+++ b/examples/extended/persistency/P03/batch.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -28,12 +24,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -158,7 +152,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.001915s Sys=0.000000s
+ User=0.000000s Real=0.001659s Sys=0.000000s
WARNING: 10 events have been kept for refreshing and/or reviewing.
"/vis/reviewKeptEvents" to review them one by one.
diff --git a/examples/extended/persistency/P03/include/ExTGTrackerHit.hh b/examples/extended/persistency/P03/include/ExTGTrackerHit.hh
index 182ac992de6..65c939ddd05 100644
--- a/examples/extended/persistency/P03/include/ExTGTrackerHit.hh
+++ b/examples/extended/persistency/P03/include/ExTGTrackerHit.hh
@@ -45,7 +45,7 @@ class ExTGTrackerHit : public G4VHit
~ExTGTrackerHit();
ExTGTrackerHit(const ExTGTrackerHit&);
const ExTGTrackerHit& operator=(const ExTGTrackerHit&);
- G4int operator==(const ExTGTrackerHit&) const;
+ G4bool operator==(const ExTGTrackerHit&) const;
inline void* operator new(size_t);
inline void operator delete(void*);
diff --git a/examples/extended/persistency/P03/src/ExTGRCRegionCutsMgr.cc b/examples/extended/persistency/P03/src/ExTGRCRegionCutsMgr.cc
index 561ed308070..49039cff914 100644
--- a/examples/extended/persistency/P03/src/ExTGRCRegionCutsMgr.cc
+++ b/examples/extended/persistency/P03/src/ExTGRCRegionCutsMgr.cc
@@ -89,7 +89,7 @@ void ExTGRCRegionCutsMgr::AddRegionCuts( const std::vector& rc )
}
// Find region
- std::vector::const_iterator iter;
+ // std::vector::const_iterator iter;
std::vector regs = FindRegionData(rc[0]);
if( regs.size() == 0 )
@@ -125,7 +125,7 @@ void ExTGRCRegionCutsMgr::BuildRegions()
{
std::vector::const_iterator iter;
std::vector::const_iterator ites;
- std::vector::const_iterator itelv;
+ // std::vector::const_iterator itelv;
for( iter = fRegionDatae.begin(); iter != fRegionDatae.end(); iter++ )
{
G4Region* reg = new G4Region( (*iter)->GetRegionName() );
diff --git a/examples/extended/persistency/P03/src/ExTGTrackerHit.cc b/examples/extended/persistency/P03/src/ExTGTrackerHit.cc
index 39b51a400fd..4ec8d47a6b0 100644
--- a/examples/extended/persistency/P03/src/ExTGTrackerHit.cc
+++ b/examples/extended/persistency/P03/src/ExTGTrackerHit.cc
@@ -68,9 +68,9 @@ const ExTGTrackerHit& ExTGTrackerHit::operator=(const ExTGTrackerHit& right)
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-G4int ExTGTrackerHit::operator==(const ExTGTrackerHit& right) const
+G4bool ExTGTrackerHit::operator==(const ExTGTrackerHit& right) const
{
- return (this==&right) ? 1 : 0;
+ return (this==&right) ? true : false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
diff --git a/examples/extended/persistency/gdml/G01/History b/examples/extended/persistency/gdml/G01/History
index 64fba08437a..39d6f62971f 100644
--- a/examples/extended/persistency/gdml/G01/History
+++ b/examples/extended/persistency/gdml/G01/History
@@ -16,6 +16,12 @@ committal in the CVS repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+April 1st, 2019 Gabriele Cosmo G01-V10-04-00
+- Migrated example to multi-threading, to test MT in writing.
+
+March 4th, 2019 Gabriele Cosmo
+- Added block.gdml sample demonstrating nested assemblies.
+
March 23rd, 2017 Gabriele Cosmo G01-V10-03-01
- Updated setup for visualization in main program.
diff --git a/examples/extended/persistency/gdml/G01/block.gdml b/examples/extended/persistency/gdml/G01/block.gdml
new file mode 100644
index 00000000000..057dd70b140
--- /dev/null
+++ b/examples/extended/persistency/gdml/G01/block.gdml
@@ -0,0 +1,90 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/examples/extended/persistency/gdml/G01/g01.out b/examples/extended/persistency/gdml/G01/g01.out
index e13992e933e..99a4c8b9146 100644
--- a/examples/extended/persistency/gdml/G01/g01.out
+++ b/examples/extended/persistency/gdml/G01/g01.out
@@ -1,21 +1,17 @@
Usage: load_gdml
-G4GDML: Reading '/mnt/build/jenkins/workspace/g4-cc7/COMPILER/gcc63/LABEL/cc7/THREAD/Seq/release/RelWithDebInfo/10-04-ref-10_branch/g4tags-dev/examples/extended/persistency/gdml/G01/solids.gdml'...
+G4GDML: Reading '/mnt/build/jenkins/workspace/g4n-centos7/COMPILER/gcc63/LABEL/centos7/THREAD/Seq/geant4/examples/extended/persistency/gdml/G01/solids.gdml'...
G4GDML: Reading definitions...
G4GDML: Reading materials...
G4GDML: Reading solids...
G4GDML: Reading structure...
G4GDML: Reading setup...
-G4GDML: Reading '/mnt/build/jenkins/workspace/g4-cc7/COMPILER/gcc63/LABEL/cc7/THREAD/Seq/release/RelWithDebInfo/10-04-ref-10_branch/g4tags-dev/examples/extended/persistency/gdml/G01/solids.gdml' done!
+G4GDML: Reading '/mnt/build/jenkins/workspace/g4n-centos7/COMPILER/gcc63/LABEL/centos7/THREAD/Seq/geant4/examples/extended/persistency/gdml/G01/solids.gdml' done!
Stripping off GDML names of materials, solids and volumes ...
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -47,12 +43,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -97,371 +91,371 @@ G4GDML: Writing 'g01.gdml' done !
/run/verbose 2
/run/beamOn 20
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -512,6 +506,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -617,6 +612,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -753,6 +749,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -798,17 +795,17 @@ Start closing geometry.
G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Total memory consumed for geometry optimisation: 3 kByte
- Total CPU time elapsed for geometry optimisation: 0.01 seconds
+ Total CPU time elapsed for geometry optimisation: 0 seconds
Voxelisation: top CPU users:
Percent Total CPU System CPU Memory Volume
------- ---------- ---------- -------- ----------
- 100.00 0.01 0.00 3k World
+ 0.00 0.00 0.00 3k World
Voxelisation: top memory users:
Percent Memory Heads Nodes Pointers Total CPU Volume
------- -------- ------ ------ -------- ---------- ----------
- 100.00 3k 9 37 106 0.01 World
+ 100.00 3k 9 37 106 0.00 World
### Run 0 starts.
*********************************************************************************************************
@@ -1141,7 +1138,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
Run terminated.
Run Summary
Number of events processed : 20
- User=0.000000s Real=0.006570s Sys=0.000000s
+ User=0.010000s Real=0.005744s Sys=0.000000s
/gun/direction 0 0 -1
/run/beamOn 20
@@ -1508,7 +1505,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
Run terminated.
Run Summary
Number of events processed : 20
- User=0.000000s Real=0.004343s Sys=0.000000s
+ User=0.000000s Real=0.004378s Sys=0.000000s
/tracking/verbose 0
/gun/direction 0.3 0.2 1
/run/beamOn 20
@@ -1548,7 +1545,7 @@ Index : 1 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 20
- User=0.000000s Real=0.002154s Sys=0.000000s
+ User=0.000000s Real=0.002326s Sys=0.000000s
/gun/direction 0.3 -0.2 1
/run/beamOn 20
@@ -1587,7 +1584,7 @@ Index : 1 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 20
- User=0.000000s Real=0.002679s Sys=0.000000s
+ User=0.010000s Real=0.002468s Sys=0.000000s
/gun/direction -0.3 0.2 0.6
/run/beamOn 20
@@ -1626,12 +1623,13 @@ Index : 1 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 20
- User=0.000000s Real=0.002097s Sys=0.000000s
+ User=0.000000s Real=0.002249s Sys=0.000000s
Graphics systems deleted.
Visualization Manager deleting...
G4 kernel has come to Quit state.
UserDetectorConstruction deleted.
UserPhysicsList deleted.
+UserActionInitialization deleted.
UserPrimaryGenerator deleted.
RunManager is deleting RunManagerKernel.
EventManager deleted.
diff --git a/examples/extended/persistency/gdml/G01/include/G01ActionInitialization.hh b/examples/extended/persistency/gdml/G01/include/G01ActionInitialization.hh
new file mode 100644
index 00000000000..2110707a146
--- /dev/null
+++ b/examples/extended/persistency/gdml/G01/include/G01ActionInitialization.hh
@@ -0,0 +1,51 @@
+//
+// ********************************************************************
+// * 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 G01ActionInitialization.hh
+/// \brief Definition of the G01ActionInitialization class
+
+#ifndef G01ActionInitialization_h
+#define G01ActionInitialization_h 1
+
+#include "G4VUserActionInitialization.hh"
+
+/// Action initialization class.
+
+class G01ActionInitialization : public G4VUserActionInitialization
+{
+ public:
+ G01ActionInitialization();
+ virtual ~G01ActionInitialization();
+
+ virtual void BuildForMaster() const;
+ virtual void Build() const;
+};
+
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+
+#endif
+
+
diff --git a/examples/extended/persistency/gdml/G01/load_gdml.cc b/examples/extended/persistency/gdml/G01/load_gdml.cc
index f6fd24836d8..2a8b746d0e9 100644
--- a/examples/extended/persistency/gdml/G01/load_gdml.cc
+++ b/examples/extended/persistency/gdml/G01/load_gdml.cc
@@ -36,7 +36,12 @@
#include
+#ifdef G4MULTITHREADED
+#include "G4MTRunManager.hh"
+#else
#include "G4RunManager.hh"
+#endif
+
#include "G4UImanager.hh"
#include "G4LogicalVolumeStore.hh"
@@ -44,6 +49,8 @@
#include "G01PrimaryGeneratorAction.hh"
#include "G01DetectorConstruction.hh"
+#include "G01ActionInitialization.hh"
+
#include "FTFP_BERT.hh"
#include "G4VisExecutive.hh"
@@ -97,12 +104,16 @@ int main(int argc,char **argv)
return -1;
}
+#ifdef G4MULTITHREADED
+ G4MTRunManager* runManager = new G4MTRunManager;
+#else
G4RunManager* runManager = new G4RunManager;
+#endif
runManager->SetUserInitialization(new G01DetectorConstruction(
parser.GetWorldVolume()));
runManager->SetUserInitialization(new FTFP_BERT);
- runManager->SetUserAction(new G01PrimaryGeneratorAction);
+ runManager->SetUserInitialization(new G01ActionInitialization());
runManager->Initialize();
diff --git a/examples/extended/persistency/gdml/G01/src/G01ActionInitialization.cc b/examples/extended/persistency/gdml/G01/src/G01ActionInitialization.cc
new file mode 100644
index 00000000000..248e8cf6a13
--- /dev/null
+++ b/examples/extended/persistency/gdml/G01/src/G01ActionInitialization.cc
@@ -0,0 +1,57 @@
+//
+// ********************************************************************
+// * 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 G01ActionInitialization.cc
+/// \brief Implementation of the G01ActionInitialization class
+
+#include "G01ActionInitialization.hh"
+#include "G01PrimaryGeneratorAction.hh"
+
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+
+G01ActionInitialization::G01ActionInitialization()
+ : G4VUserActionInitialization()
+{}
+
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+
+G01ActionInitialization::~G01ActionInitialization()
+{}
+
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+
+void G01ActionInitialization::BuildForMaster() const
+{
+}
+
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
+
+void G01ActionInitialization::Build() const
+{
+ SetUserAction(new G01PrimaryGeneratorAction);
+}
+
+//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
diff --git a/examples/extended/persistency/gdml/G04/g04.out b/examples/extended/persistency/gdml/G04/g04.out
index 725be6dc3f7..fe079b82a98 100644
--- a/examples/extended/persistency/gdml/G04/g04.out
+++ b/examples/extended/persistency/gdml/G04/g04.out
@@ -1,21 +1,17 @@
Usage: gdml_det
-G4GDML: Reading '/mnt/build/jenkins/workspace/g4-cc7/COMPILER/gcc63/LABEL/cc7/THREAD/Seq/release/RelWithDebInfo/10-04-ref-10_branch/g4tags-dev/examples/extended/persistency/gdml/G04/auxiliary.gdml'...
+G4GDML: Reading '/mnt/build/jenkins/workspace/g4n-centos7/COMPILER/gcc63/LABEL/centos7/THREAD/Seq/geant4/examples/extended/persistency/gdml/G04/auxiliary.gdml'...
G4GDML: Reading definitions...
G4GDML: Reading materials...
G4GDML: Reading solids...
G4GDML: Reading structure...
G4GDML: Reading setup...
-G4GDML: Reading '/mnt/build/jenkins/workspace/g4-cc7/COMPILER/gcc63/LABEL/cc7/THREAD/Seq/release/RelWithDebInfo/10-04-ref-10_branch/g4tags-dev/examples/extended/persistency/gdml/G04/auxiliary.gdml' done!
+G4GDML: Reading '/mnt/build/jenkins/workspace/g4n-centos7/COMPILER/gcc63/LABEL/centos7/THREAD/Seq/geant4/examples/extended/persistency/gdml/G04/auxiliary.gdml' done!
Stripping off GDML names of materials, solids and volumes ...
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -58,12 +54,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -94,371 +88,371 @@ Some /vis commands (optionally) take a string to specify colour.
/run/verbose 2
/run/beamOn 20
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -509,6 +503,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -614,6 +609,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -750,6 +746,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -1013,7 +1010,7 @@ Processing hits ....
Run terminated.
Run Summary
Number of events processed : 20
- User=0.010000s Real=0.002179s Sys=0.000000s
+ User=0.000000s Real=0.001870s Sys=0.000000s
/gun/direction 0 0 -1
/run/beamOn 20
@@ -1265,7 +1262,7 @@ Processing hits ....
Run terminated.
Run Summary
Number of events processed : 20
- User=0.000000s Real=0.001064s Sys=0.000000s
+ User=0.000000s Real=0.000838s Sys=0.000000s
/tracking/verbose 0
/gun/direction 0.3 0.2 1
/run/beamOn 20
@@ -1318,7 +1315,7 @@ Processing hits ....
Run terminated.
Run Summary
Number of events processed : 20
- User=0.000000s Real=0.000150s Sys=0.000000s
+ User=0.000000s Real=0.000118s Sys=0.000000s
/gun/direction 0.3 -0.2 1
/run/beamOn 20
@@ -1370,7 +1367,7 @@ Processing hits ....
Run terminated.
Run Summary
Number of events processed : 20
- User=0.000000s Real=0.000129s Sys=0.000000s
+ User=0.000000s Real=0.000107s Sys=0.000000s
/gun/direction -0.3 0.2 0.6
/run/beamOn 20
@@ -1422,7 +1419,7 @@ Processing hits ....
Run terminated.
Run Summary
Number of events processed : 20
- User=0.000000s Real=0.000142s Sys=0.000000s
+ User=0.000000s Real=0.000115s Sys=0.000000s
Graphics systems deleted.
Visualization Manager deleting...
G4 kernel has come to Quit state.
diff --git a/examples/extended/physicslists/extensibleFactory/extensibleFactory.out b/examples/extended/physicslists/extensibleFactory/extensibleFactory.out
index 8095f0b2992..73f7c5b2d0d 100644
--- a/examples/extended/physicslists/extensibleFactory/extensibleFactory.out
+++ b/examples/extended/physicslists/extensibleFactory/extensibleFactory.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -31,12 +27,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -110,371 +104,371 @@ Checking overlaps for volume Box ... OK!
Checking overlaps for volume Screen ... OK!
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -530,6 +524,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -634,6 +629,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -768,6 +764,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
diff --git a/examples/extended/physicslists/factory/factory-environment.out b/examples/extended/physicslists/factory/factory-environment.out
index cf8a407ccbf..0efbf7bd1ff 100644
--- a/examples/extended/physicslists/factory/factory-environment.out
+++ b/examples/extended/physicslists/factory/factory-environment.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -32,12 +28,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -118,365 +112,365 @@ Checking overlaps for volume Screen ... OK!
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
-phot: for gamma, applyCuts: 1 SubType= 12 BuildTable= 0
+phot: for gamma applyCuts:1 SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma, applyCuts: 1 SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma applyCuts:1 SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma, applyCuts: 1 SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma applyCuts:1 SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-msc: for e- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.8, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.8, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.8, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.8, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 , applyCuts: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 applyCuts:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 applyCuts:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 applyCuts:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 applyCuts:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 , applyCuts: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 applyCuts:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -527,6 +521,7 @@ CoulombScat: for pi-, integral: 1 , applyCuts: 1 SubType= 1 BuildTable=
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -632,6 +627,7 @@ CoulombScat: for pi-, integral: 1 , applyCuts: 1 SubType= 1 BuildTable=
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -768,6 +764,7 @@ CoulombScat: for pi-, integral: 1 , applyCuts: 1 SubType= 1 BuildTable=
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
diff --git a/examples/extended/physicslists/factory/factory.out b/examples/extended/physicslists/factory/factory.out
index 5290ca7bcf1..7fca4513f61 100644
--- a/examples/extended/physicslists/factory/factory.out
+++ b/examples/extended/physicslists/factory/factory.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -32,12 +28,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -111,371 +105,371 @@ Checking overlaps for volume Box ... OK!
Checking overlaps for volume Screen ... OK!
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -527,6 +521,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -632,6 +627,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -773,6 +769,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
diff --git a/examples/extended/physicslists/genericPL/genericPL.out b/examples/extended/physicslists/genericPL/genericPL.out
index 417bce209a0..67c663ed58d 100644
--- a/examples/extended/physicslists/genericPL/genericPL.out
+++ b/examples/extended/physicslists/genericPL/genericPL.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -29,12 +25,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -163,6 +157,7 @@ Checking overlaps for volume Screen ... OK!
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -268,6 +263,7 @@ Checking overlaps for volume Screen ... OK!
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -404,6 +400,7 @@ Checking overlaps for volume Screen ... OK!
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
diff --git a/examples/extended/polarisation/Pol01/pol01.out b/examples/extended/polarisation/Pol01/pol01.out
index 73242c907af..c09d58c5ef9 100644
--- a/examples/extended/polarisation/Pol01/pol01.out
+++ b/examples/extended/polarisation/Pol01/pol01.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -26,12 +22,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -97,60 +91,60 @@ theBox : (0,0,0.08)
buildBhabha cross section 0
G4PolarizedPEEffectCrossSection() init
-pol-phot: for gamma SubType= 12 BuildTable= 0
+pol-phot: for gamma SubType=12 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-Polarized-PhotoElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila
+Polarized-PhotoElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila
-pol-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+pol-compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Polarized-Compton : Emin= 0 eV Emax= 100 TeV
+ Polarized-Compton : Emin= 0 eV Emax= 100 TeV
-pol-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+pol-conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- polConv : Emin= 0 eV Emax= 100 TeV AngularGenUrban
+ polConv : Emin= 0 eV Emax= 100 TeV ModifiedTsai
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-pol-eIoni: for e- SubType= 2
+pol-eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
-PolarizedMollerBhabha : Emin= 0 eV Emax= 100 TeV
+PolarizedMollerBhabha : Emin= 0 eV Emax= 100 TeV
-pol-eBrem: for e- SubType= 3
+pol-eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PolBrem : Emin= 0 eV Emax= 100 TeV AngularGenUrban
+ PolBrem : Emin= 0 eV Emax= 100 TeV ModifiedTsai
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-pol-eIoni: for e+ SubType= 2
+pol-eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
-PolarizedMollerBhabha : Emin= 0 eV Emax= 100 TeV
+PolarizedMollerBhabha : Emin= 0 eV Emax= 100 TeV
-pol-eBrem: for e+ SubType= 3
+pol-eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- PolBrem : Emin= 0 eV Emax= 100 TeV AngularGenUrban
+ PolBrem : Emin= 0 eV Emax= 100 TeV ModifiedTsai
-pol-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+pol-annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
-Polarized-Annihilation : Emin= 0 eV Emax= 100 TeV
+Polarized-Annihilation : Emin= 0 eV Emax= 100 TeV
Region -- -- appears in world volume
This region is in the mass world.
@@ -195,7 +189,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 10000
- User=0.080000s Real=0.082373s Sys=0.000000s
+ User=0.080000s Real=0.076494s Sys=0.000000s
The run consists of 10000 gamma of 10 MeV through 1.75 mm of G4_Fe (density: 7.874 g/cm3 )
diff --git a/examples/extended/radioactivedecay/Activation/Activation.out b/examples/extended/radioactivedecay/Activation/Activation.out
index 7f8b7f81110..2006a3edc09 100644
--- a/examples/extended/radioactivedecay/Activation/Activation.out
+++ b/examples/extended/radioactivedecay/Activation/Activation.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -133,6 +129,7 @@ NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /
Process: hadElastic
Model: hElasticLHEP: 0 meV/n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 meV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 meV ---> 100 TeV
Process: alphaInelastic
@@ -237,6 +234,7 @@ NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /
Process: hadElastic
Model: hElasticLHEP: 0 meV/n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 meV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 meV ---> 100 TeV
Process: dInelastic
@@ -374,6 +372,7 @@ NeutronHP: /Capture file for Z = 6, A = 12 is not found and NeutronHP will use /
Process: hadElastic
Model: hElasticLHEP: 0 meV/n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 meV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 meV ---> 100 TeV
Process: tInelastic
@@ -420,36 +419,36 @@ Index : 1 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1000
- User=0.170000s Real=0.173678s Sys=0.000000s
+ User=0.160000s Real=0.168986s Sys=0.000000s
The run is 1000 neutron of 25 meV through 1 cm of G4_Co (density: 8.9 g/cm3 )
Process calls frequency :
- RadioactiveDecay= 3947 Transportation= 11320 annihil= 31
- compt= 1091 conv= 36 eIoni= 2250
- hadElastic= 156 ionIoni= 2052 msc= 588
- nCapture= 948 phot= 194
+ RadioactiveDecay= 3903 Transportation= 11386 annihil= 41
+ compt= 1196 conv= 50 eIoni= 2358
+ hadElastic= 153 ionIoni= 2029 msc= 689
+ nCapture= 938 phot= 187
List of generated particles:
- Co59: 156 Emean = 38.112 meV ( 0.18917 meV --> 176.08 meV) stable
- Co60: 948 Emean = 266.83 eV ( 1.8626 meV --> 517.49 eV ) mean life = 7.6098 y
- Ni60: 948 Emean = 15.907 eV ( 15.907 eV --> 15.907 eV ) stable
- Ni60[1332.514]: 948 Emean = 12.35 eV ( 12.331 eV --> 29.958 eV ) mean life = 0 ps
- Ni60[2505.753]: 947 Emean = 1.5235 eV ( 48.029 meV --> 3.5349 eV ) mean life = 0 ps
- anti_nu_e: 948 Emean = 216.91 keV ( 31.167 keV --> 739.27 keV) stable
- e+: 36 Emean = 2.2464 MeV ( 80.056 keV --> 6.2674 MeV) stable
- e-: 2269 Emean = 385.04 keV ( 31.765 eV --> 7.2091 MeV) stable
- gamma: 4334 Emean = 2.1945 MeV ( 839.31 eV --> 7.4919 MeV) stable
-
- Mean energy deposit per event = 846.39 keV rms = 1.3423 MeV
- Mean energy flow per event = 8.9271 MeV rms = 2.4789 MeV
+ Co59: 153 Emean = 37.138 meV ( 2.7576 meV --> 142.31 meV) stable
+ Co60: 938 Emean = 256.06 eV ( 6.3301 meV --> 517.1 eV ) mean life = 7.6098 y
+ Ni60: 938 Emean = 15.907 eV ( 15.907 eV --> 15.907 eV ) stable
+ Ni60[1332.514]: 938 Emean = 12.325 eV ( 1.9857 eV --> 17.164 eV ) mean life = 0 ps
+ Ni60[2505.753]: 936 Emean = 1.4557 eV ( 4.7148 meV --> 3.4836 eV ) mean life = 0 ps
+ anti_nu_e: 938 Emean = 226.09 keV ( 23.664 keV --> 1.1548 MeV) stable
+ e+: 50 Emean = 2.3037 MeV ( 157.33 keV --> 6.1548 MeV) stable
+ e-: 2371 Emean = 426.14 keV ( 75.478 eV --> 7.2362 MeV) stable
+ gamma: 4370 Emean = 2.1563 MeV ( 185.17 eV --> 7.4919 MeV) stable
+
+ Mean energy deposit per event = 1.0046 MeV rms = 1.5606 MeV
+ Mean energy flow per event = 8.6617 MeV rms = 2.7113 MeV
List of particles emerging from the target :
- anti_nu_e: 948 Emean = 216.91 keV ( 31.167 keV --> 739.27 keV) Eflow/event = 205.63 keV
- e+: 5 Emean = 2.9618 MeV ( 858.14 keV --> 5.7958 MeV) Eflow/event = 14.809 keV
- e-: 47 Emean = 1.9616 MeV ( 55.073 keV --> 6.1031 MeV) Eflow/event = 92.197 keV
- gamma: 4104 Emean = 2.099 MeV ( 44.972 keV --> 7.4919 MeV) Eflow/event = 8.6145 MeV
- neutron: 52 Emean = 26.084 meV ( 9.5805 meV --> 61.099 meV) Eflow/event = 1.3563 meV
+ anti_nu_e: 938 Emean = 226.09 keV ( 23.664 keV --> 1.1548 MeV) Eflow/event = 212.07 keV
+ e+: 9 Emean = 2.5897 MeV ( 685.29 keV --> 5.5035 MeV) Eflow/event = 23.308 keV
+ e-: 49 Emean = 1.9127 MeV ( 83.768 keV --> 6.5601 MeV) Eflow/event = 93.722 keV
+ gamma: 4133 Emean = 2.0161 MeV ( 30.214 keV --> 7.4919 MeV) Eflow/event = 8.3326 MeV
+ neutron: 62 Emean = 25.582 meV ( 10.543 meV --> 40.643 meV) Eflow/event = 1.5861 meV
histo Id for populations :
Co59 id = 26
@@ -459,7 +458,7 @@ Run Summary
--------- Ranecu engine status ---------
Initial seed (index) = 0
- Current couple of seeds = 1991545480, 1292130227
+ Current couple of seeds = 433602195, 1208077723
----------------------------------------
G4 kernel has come to Quit state.
================== Deleting memory pools ===================
diff --git a/examples/extended/radioactivedecay/rdecay01/rdecay01.out b/examples/extended/radioactivedecay/rdecay01/rdecay01.out
index cf22471ce73..2388875f460 100644
--- a/examples/extended/radioactivedecay/rdecay01/rdecay01.out
+++ b/examples/extended/radioactivedecay/rdecay01/rdecay01.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -95,7 +91,7 @@ Step# X Y Z KineE dEStep StepLeng TrakLeng
Run terminated.
Run Summary
Number of events processed : 1
- User=0.000000s Real=0.029130s Sys=0.000000s
+ User=0.000000s Real=0.007927s Sys=0.000000s
======================== run summary ======================
The run was 1 Co60 of 0 eV
@@ -170,7 +166,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 100000
- User=0.870000s Real=0.879180s Sys=0.000000s
+ User=0.940000s Real=0.941649s Sys=0.000000s
======================== run summary ======================
The run was 100000 Co60 of 0 eV
@@ -245,7 +241,7 @@ Index : 0 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 100000
- User=1.950000s Real=1.960543s Sys=0.000000s
+ User=2.010000s Real=2.034509s Sys=0.000000s
======================== run summary ======================
The run was 100000 Co60 of 0 eV
@@ -254,23 +250,23 @@ Run Summary
Nb of generated particles:
Co60: 100000 Emean = 0 eV ( 0 eV --> 0 eV ) mean life = 7.61 y
- Ni60: 100000 Emean = 29.73 eV ( 0.01032 eV --> 87.72 eV ) stable
- Ni60[1332.514]: 100000 Emean = 13.84 eV ( 0.1995 eV --> 32.41 eV ) mean life = 1.06 ps
- Ni60[2158.632]: 4 Emean = 2.6 eV ( 0.3658 eV --> 4.385 eV ) mean life = 0.8512 ps
- Ni60[2505.753]: 99880 Emean = 1.476 eV ( 0.0002619 eV --> 3.782 eV ) mean life = 4.761 ps
- anti_nu_e: 100000 Emean = 222.1 keV ( 5.224 keV --> 1.448 MeV) stable
- e-: 100000 Emean = 96.37 keV ( 0.3083 eV --> 1.314 MeV) stable
- gamma: 199884 Emean = 1.253 MeV ( 347.1 keV --> 1.333 MeV) stable
+ Ni60: 100000 Emean = 29.67 eV ( 0.005493 eV --> 87.52 eV ) stable
+ Ni60[1332.514]: 99999 Emean = 13.79 eV ( 0.3471 eV --> 35.7 eV ) mean life = 1.06 ps
+ Ni60[2158.632]: 6 Emean = 1.894 eV ( 0.6752 eV --> 4.314 eV ) mean life = 0.8512 ps
+ Ni60[2505.753]: 99878 Emean = 1.476 eV ( 0.0005602 eV --> 3.762 eV ) mean life = 4.761 ps
+ anti_nu_e: 100000 Emean = 222.1 keV ( 3.749 keV --> 1.49 MeV) stable
+ e-: 100028 Emean = 96.66 keV ( 3.218 eV --> 1.458 MeV) stable
+ gamma: 199855 Emean = 1.253 MeV ( 347.1 keV --> 2.159 MeV) stable
- Ekin Total (Q single decay): mean = 941.3 keV ( 317.1 keV --> 1.49 MeV)
+ Ekin Total (Q single decay): mean = 941.3 keV ( 317.1 keV --> 2.159 MeV)
- Momentum balance (excluding gamma desexcitation): mean = 835.1 keV ( 2.749e-07 eV --> 1.333 MeV)
+ Momentum balance (excluding gamma desexcitation): mean = 835 keV ( 3.956e-07 eV --> 2.159 MeV)
- Total time of life (full chain): mean = 7.597 y half-life = 5.266 y ( 17.07 min --> 83.12 y )
+ Total time of life (full chain): mean = 7.582 y half-life = 5.256 y ( 11.42 min --> 84.33 y )
- Total visible energy (full chain) : mean = 2.601 MeV ( 1.375 MeV --> 2.818 MeV)
+ Total visible energy (full chain) : mean = 2.601 MeV ( 1.333 MeV --> 2.819 MeV)
- Activity of Co60 = 4.189e+13 Bq/g (1132 Ci/g)
+ Activity of Co60 = 4.197e+13 Bq/g (1134 Ci/g)
G4 kernel has come to Quit state.
diff --git a/examples/extended/radioactivedecay/rdecay02/rdecay02.out b/examples/extended/radioactivedecay/rdecay02/rdecay02.out
index 70ffba59e27..d76da8c310d 100644
--- a/examples/extended/radioactivedecay/rdecay02/rdecay02.out
+++ b/examples/extended/radioactivedecay/rdecay02/rdecay02.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -142,6 +138,7 @@ NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /
Process: hadElastic
Model: hElasticLHEP: 0 meV/n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 meV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 meV ---> 100 TeV
Process: alphaInelastic
@@ -237,6 +234,7 @@ NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /
Process: hadElastic
Model: hElasticLHEP: 0 meV/n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 meV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 meV ---> 100 TeV
Process: dInelastic
@@ -367,6 +365,7 @@ NeutronHP: /Capture file for Z = 8, A = 18 is not found and NeutronHP will use /
Process: hadElastic
Model: hElasticLHEP: 0 meV/n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 meV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 meV ---> 100 TeV
Process: tInelastic
@@ -422,55 +421,55 @@ Index : 2 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10000
- User=1.410000s Real=1.461383s Sys=0.000000s
+ User=1.340000s Real=1.452462s Sys=0.010000s
The run is 10000 Ne24 of 0 meV through :
Target : Length = 1 cm Radius = 5 mm Material = G4_CESIUM_IODIDE
Detector : Length = 5 cm Thickness = 2 cm Material = Germanium
- Mean energy deposit in target, in time window = 807.85 keV rms = 416.67 keV
- Mean energy deposit in detector, in time window = 18.727 keV rms = 108.72 keV
+ Mean energy deposit in target, in time window = 817.18 keV rms = 424.8 keV
+ Mean energy deposit in detector, in time window = 19.932 keV rms = 113.39 keV
Process calls frequency in target :
- RadioactiveDecay= 60764 Rayl= 366 Transportation= 50261
- annihil= 181 compt= 4037 conv= 188
- eIoni= 57915 ionIoni= 39505 msc= 3383
- phot= 3009
+ RadioactiveDecay= 60772 Rayl= 383 Transportation= 50138
+ annihil= 152 compt= 4138 conv= 156
+ eIoni= 58935 ionIoni= 39482 msc= 2997
+ phot= 3070
Process calls frequency in detector:
- Rayl= 1336 Transportation= 45855 annihil= 359
- compt= 22647 conv= 355 eIoni= 73240
- msc= 6749 phot= 6502
+ Rayl= 1246 Transportation= 45737 annihil= 314
+ compt= 22360 conv= 314 eIoni= 73176
+ msc= 6303 phot= 6482
List of generated particles in target:
- Mg24: 10000 Emean = 42.273 eV ( 41.932 eV --> 922 eV )
- Mg24[1368.672]: 9994 Emean = 170.03 eV ( 105.3 eV --> 416.54 eV )
- Mg24[4122.889]: 9976 Emean = 39.213 eV ( 42.07 meV --> 74.789 eV )
- Mg24[5235.120]: 14 Emean = 3.1457 eV ( 1.3609 eV --> 7.8845 eV )
- Na24: 9994 Emean = 4.9901 eV ( 4.9901 eV --> 4.9901 eV )
- Na24[1346.621]: 783 Emean = 26.976 eV ( 884.65 meV --> 52.383 eV )
- Na24[472.207]: 10000 Emean = 67.952 eV ( 185.29 meV --> 133.74 eV )
- Na24[563.199]: 3 Emean = 13.735 eV ( 13.735 eV --> 13.735 eV )
- anti_nu_e: 20000 Emean = 981.35 keV ( 30.883 keV --> 4.8903 MeV)
- e+: 188 Emean = 850.1 keV ( 9.1828 keV --> 1.6147 MeV)
- e-: 57888 Emean = 285.45 keV ( 550 meV --> 4.0757 MeV)
- gamma: 32626 Emean = 1.4356 MeV ( 85.49 eV --> 3.8661 MeV)
+ Mg24: 10000 Emean = 42.199 eV ( 41.932 eV --> 911.08 eV )
+ Mg24[1368.672]: 9995 Emean = 169.97 eV ( 88.742 eV --> 416.52 eV )
+ Mg24[4122.889]: 9980 Emean = 38.913 eV ( 285.4 meV --> 74.666 eV )
+ Mg24[5235.120]: 10 Emean = 2.5837 eV ( 539.49 meV --> 6.277 eV )
+ Na24: 9995 Emean = 4.9946 eV ( 4.9901 eV --> 15.742 eV )
+ Na24[1346.621]: 787 Emean = 27.227 eV ( 824.98 meV --> 52.765 eV )
+ Na24[472.207]: 9999 Emean = 67.834 eV ( 185.29 meV --> 133.98 eV )
+ Na24[563.199]: 6 Emean = 13.735 eV ( 13.735 eV --> 13.735 eV )
+ anti_nu_e: 20000 Emean = 978.12 keV ( 24.139 keV --> 5.2521 MeV)
+ e+: 156 Emean = 863.86 keV ( 4.5051 keV --> 1.9539 MeV)
+ e-: 58919 Emean = 280.97 keV ( 1.28 eV --> 4.8868 MeV)
+ gamma: 32575 Emean = 1.4369 MeV ( 240.5 eV --> 3.8661 MeV)
List of generated particles in detector:
- e+: 355 Emean = 800.96 keV ( 9.0066 keV --> 1.6735 MeV)
- e-: 72895 Emean = 140.92 keV ( 8.63 eV --> 2.7526 MeV)
- gamma: 2892 Emean = 135.49 keV ( 1.0435 keV --> 1.2413 MeV)
+ e+: 314 Emean = 789.71 keV ( 9.811 keV --> 1.6563 MeV)
+ e-: 72882 Emean = 141.04 keV ( 8.63 eV --> 3.5343 MeV)
+ gamma: 2751 Emean = 125.66 keV ( 1.0435 keV --> 1.9811 MeV)
... write Root file : rdecay02.root - done
... close Root file : rdecay02.root - done
--------- Ranecu engine status ---------
Initial seed (index) = 0
- Current couple of seeds = 1593936920, 326628340
+ Current couple of seeds = 597147323, 584184558
----------------------------------------
G4 kernel has come to Quit state.
================== Deleting memory pools ===================
Number of memory pools allocated: 10 of which, static: 0
-Dynamic pools deleted: 10 / Total memory freed: 0.038 MB
+Dynamic pools deleted: 10 / Total memory freed: 0.04 MB
============================================================
RunManagerKernel is deleted. Good bye :)
diff --git a/examples/extended/runAndEvent/History b/examples/extended/runAndEvent/History
index 41f1e0968fe..587f1de7837 100644
--- a/examples/extended/runAndEvent/History
+++ b/examples/extended/runAndEvent/History
@@ -15,6 +15,9 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+Jan. 31, 2019 I. Hrivnacova (exRunAndEvent-V10-04-00)
+- Merged GitHub PR #4: all Boolean operators now return G4bool.
+
Nov. 01, 2016 I. Hrivnacova (exRunAndEvent-V10-02-01)
- Coding guidelines (missing separators)
diff --git a/examples/extended/runAndEvent/RE01/sample.out b/examples/extended/runAndEvent/RE01/sample.out
index 4137ea9fca7..b532ea2530d 100644
--- a/examples/extended/runAndEvent/RE01/sample.out
+++ b/examples/extended/runAndEvent/RE01/sample.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -26,12 +22,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -73,371 +67,371 @@ Default cuts are used for this region.
/mydet/generator PYTHIA
/run/beamOn 1
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -489,6 +483,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -594,6 +589,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -735,6 +731,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -992,58 +989,55 @@ Cell[16,11] 0.00083108630197921 [GeV]
Source track ID 10550 (gamma,0.79108390679382[GeV]) at (-463.39575455653,-187.78811106933,658.34953254792)
Original primary track ID 2 (unknown,2.8798399642419[GeV])
Cell[14,32] 0.00089864994153216 [GeV]
-Cell[14,30] 3.2426874124212e-05 [GeV]
-Cell[14,37] 0.00058893997554543 [GeV]
+Cell[10,29] 0.00016717575287896 [GeV]
Cell[11,46] 3.914539993275e-06 [GeV]
-Cell[11,31] 8.9578518818598e-06 [GeV]
+Cell[11,31] 0.0009371752315886 [GeV]
Cell[11,32] 0.00045325666167935 [GeV]
Cell[13,32] 0.00098734757748463 [GeV]
-Cell[15,31] 0.02883569386521 [GeV]
Cell[13,31] 0.00011635399769875 [GeV]
-Cell[15,30] 4.2228505422827e-05 [GeV]
-Cell[13,26] 0.13534531887108 [GeV]
-Cell[13,27] 0.027003745362146 [GeV]
+Cell[13,26] 0.11088800373439 [GeV]
+Cell[13,27] 0.013857246745478 [GeV]
Cell[16,14] 0.00017764973268061 [GeV]
Cell[16,15] 3.2916883355938e-08 [GeV]
Cell[6,17] 0.00013914424935354 [GeV]
Cell[14,34] 7.6077990233898e-06 [GeV]
Cell[15,39] 0.0003095322285842 [GeV]
-Cell[14,40] 9.5861281072644e-05 [GeV]
-Cell[14,39] 2.5286962364476e-05 [GeV]
+Cell[14,40] 9.5862176565674e-05 [GeV]
+Cell[14,39] 6.7245826809881e-05 [GeV]
Cell[15,38] 1.0713479287006e-07 [GeV]
-Cell[13,29] 0.00066863210045994 [GeV]
-Cell[13,28] 0.01772101137673 [GeV]
-Cell[12,26] 0.0044641390235181 [GeV]
+Cell[13,29] 0.00066823637132632 [GeV]
+Cell[13,28] 0.0081312797330522 [GeV]
+Cell[12,26] 0.0041656301643673 [GeV]
Cell[13,34] 5.251494148979e-06 [GeV]
Cell[13,35] 0.00018236059362789 [GeV]
Cell[13,2] 3.422611449605e-05 [GeV]
Cell[13,0] 0.00068774141468759 [GeV]
-Cell[12,27] 0.0058909191498193 [GeV]
+Cell[12,27] 0.0048132061654441 [GeV]
Cell[10,21] 3.8197882648092e-05 [GeV]
Cell[10,20] 0.0014112103324046 [GeV]
-Cell[11,20] 4.682946257617e-08 [GeV]
+Cell[11,20] 0.0032957755049005 [GeV]
Cell[12,14] 0.0016558985569426 [GeV]
-Cell[11,30] 0.00011923132125628 [GeV]
-Cell[13,46] 0.0025650082916467 [GeV]
+Cell[11,30] 0.025923864262165 [GeV]
+Cell[13,46] 4.0745188141614e-05 [GeV]
Cell[14,10] 0.0013339145535367 [GeV]
Cell[14,9] 0.0013241161262964 [GeV]
Cell[11,45] 6.5027384255131e-05 [GeV]
Cell[19,27] 0.00026023103086425 [GeV]
Cell[19,26] 1.1057224753586e-07 [GeV]
Cell[14,33] 0.00074203922011224 [GeV]
-Cell[12,28] 0.0087704351349926 [GeV]
+Cell[12,28] 5.6297705516386e-05 [GeV]
Cell[15,42] 2.1326413843781e-09 [GeV]
Cell[15,41] 4.3613090610961e-08 [GeV]
Cell[15,40] 4.1077264995693e-08 [GeV]
Cell[17,46] 6.4174979313975e-05 [GeV]
Cell[16,25] 0.0033404773889941 [GeV]
Cell[16,24] 5.2744961673966e-05 [GeV]
-Cell[16,26] 0.00024638168366084 [GeV]
-Cell[14,43] 0.0023260456904707 [GeV]
-Cell[14,42] 0.003659638570398 [GeV]
-Cell[13,43] 0.00010093051741194 [GeV]
+Cell[16,26] 0.00011930931576717 [GeV]
+Cell[14,43] 0.0023211887349673 [GeV]
+Cell[14,42] 0.003302005157554 [GeV]
+Cell[13,43] 1.4953863675487e-05 [GeV]
Cell[14,44] 0.0011619803612521 [GeV]
-Cell[12,47] 0.0066672113423992 [GeV]
+Cell[12,47] 0.0066676009437449 [GeV]
Cell[12,0] 0.00018250285940121 [GeV]
Cell[11,1] 4.8456241493113e-06 [GeV]
Cell[11,47] 6.3425171538256e-06 [GeV]
@@ -1054,60 +1048,39 @@ Cell[15,7] 9.2831085203215e-07 [GeV]
Cell[16,7] 0.00013168343055179 [GeV]
Cell[16,6] 0.0013584852602816 [GeV]
Cell[16,5] 3.0411911302508e-06 [GeV]
-Cell[10,26] 0.00013470306918021 [GeV]
-Cell[12,5] 1.9370882801013e-05 [GeV]
-Cell[12,6] 0.00022102363529348 [GeV]
-Cell[12,7] 0.00076569363632961 [GeV]
-Cell[12,8] 3.115175437415e-06 [GeV]
-Cell[13,19] 2.0221503286848e-06 [GeV]
-Cell[13,20] 4.4282060116529e-09 [GeV]
-Cell[13,18] 2.5792936696689e-07 [GeV]
-Cell[18,45] 2.0666693890234e-05 [GeV]
-Cell[18,29] 0.0012002634536624 [GeV]
-Cell[19,29] 9.6156850279499e-05 [GeV]
-Cell[12,25] 0.0017082064586126 [GeV]
-Cell[13,23] 4.3979344773106e-06 [GeV]
-Cell[17,4] 0.00086343226337419 [GeV]
-Cell[13,42] 0.0040053872351627 [GeV]
-Cell[13,25] 0.020752640986157 [GeV]
-Cell[18,10] 3.2151799125131e-05 [GeV]
-Cell[15,29] 3.1412348500453e-05 [GeV]
-Cell[18,2] 0.0012777118639406 [GeV]
-Cell[14,15] 5.9375197452027e-06 [GeV]
-Cell[15,13] 2.038413687842e-06 [GeV]
-Cell[14,12] 0.00023795163632246 [GeV]
-Cell[14,13] 0.00017630019522494 [GeV]
-Cell[5,20] 8.7823829380795e-07 [GeV]
-Cell[5,27] 6.244681206249e-05 [GeV]
-Cell[5,28] 8.8170054368675e-10 [GeV]
-Cell[5,26] 5.33669322067e-10 [GeV]
-Cell[13,37] 0.0019835912428331 [GeV]
-Cell[11,26] 6.5939524842406e-05 [GeV]
-Cell[11,27] 9.9799737972717e-06 [GeV]
-Cell[15,0] 2.8324818122201e-06 [GeV]
-Cell[15,47] 0.00059966569073572 [GeV]
-Cell[15,46] 0.0022535361943098 [GeV]
-Cell[15,45] 1.3209476287557e-06 [GeV]
-Cell[14,14] 0.0017844730275333 [GeV]
-Cell[13,24] 2.6614989386871e-05 [GeV]
-Cell[14,24] 1.8345151387621e-05 [GeV]
-Cell[14,25] 0.0012939246932009 [GeV]
-Cell[14,26] 0.0093118441588001 [GeV]
-Cell[14,27] 0.0019582584320107 [GeV]
-Cell[14,28] 0.00084742481132298 [GeV]
-Cell[15,26] 1.4569929693153e-05 [GeV]
-Cell[15,28] 3.4046081344741e-06 [GeV]
-Cell[13,30] 1.8175908364356e-05 [GeV]
-Cell[17,26] 0.0015157470379499 [GeV]
-Cell[17,28] 0.00061195771331234 [GeV]
-Cell[18,28] 0.00092115386942839 [GeV]
-Cell[18,27] 0.00084870655624559 [GeV]
-Cell[19,28] 2.5305303097412e-10 [GeV]
-Cell[17,27] 0.0077524073175034 [GeV]
-Cell[18,26] 0.00056584860723694 [GeV]
-Cell[16,27] 0.0028609723264077 [GeV]
-Cell[16,28] 7.2579611743322e-06 [GeV]
-### Total energy deposition in calorimeter by a source track in 116 cells : 0.34212822200452 (GeV)
+Cell[13,45] 0.00019905828974319 [GeV]
+Cell[10,5] 0.00078541473788695 [GeV]
+Cell[12,5] 0.00010610657702614 [GeV]
+Cell[12,4] 0.00095064269223735 [GeV]
+Cell[13,25] 1.1015025957022e-05 [GeV]
+Cell[12,25] 0.0021065527913771 [GeV]
+Cell[18,40] 2.2451954771441e-07 [GeV]
+Cell[13,41] 0.0035228396748886 [GeV]
+Cell[13,42] 1.0429450252559e-05 [GeV]
+Cell[13,40] 5.1923919754927e-05 [GeV]
+Cell[13,39] 0.00051915104861212 [GeV]
+Cell[13,38] 0.00020442747016864 [GeV]
+Cell[13,37] 9.8983661737293e-06 [GeV]
+Cell[14,38] 9.3224005054594e-05 [GeV]
+Cell[12,24] 9.7701613871095e-06 [GeV]
+Cell[12,23] 6.636920251708e-06 [GeV]
+Cell[12,21] 0.018346568742312 [GeV]
+Cell[12,22] 0.0048231778000893 [GeV]
+Cell[11,22] 0.0005549860912389 [GeV]
+Cell[11,21] 0.00064894508897808 [GeV]
+Cell[11,23] 0.0014728517021556 [GeV]
+Cell[17,2] 0.00067609121058445 [GeV]
+Cell[17,3] 6.3961060050133e-08 [GeV]
+Cell[17,4] 1.1909445231595e-07 [GeV]
+Cell[16,3] 3.3083916093801e-07 [GeV]
+Cell[16,4] 6.2434163510261e-09 [GeV]
+Cell[11,29] 2.2320845837385e-06 [GeV]
+Cell[10,30] 0.0022528657043779 [GeV]
+Cell[10,31] 0.00035869382981079 [GeV]
+Cell[12,29] 2.3550330752187e-10 [GeV]
+Cell[12,30] 3.8573375604756e-11 [GeV]
+Cell[16,27] 0.21270842386395 [GeV]
+### Total energy deposition in calorimeter by a source track in 92 cells : 0.46601347974941 (GeV)
Source track ID 10421 (e-,0.00066184777960987[GeV]) at (-106.73334628566,488.47517110971,1497.4608430603)
Original primary track ID 2 (unknown,2.8798399642419[GeV])
@@ -1116,1512 +1089,1540 @@ Cell[17,13] 0.00015084886960987 [GeV]
Source track ID 10268 (gamma,0.68389327451527[GeV]) at (-406.7145798858,-290.83199705039,428.61116333496)
Original primary track ID 2 (unknown,2.8798399642419[GeV])
-Cell[12,27] 0.0024595587418566 [GeV]
-Cell[12,28] 0.6499669660566 [GeV]
-Cell[12,29] 0.0281923296419 [GeV]
-Cell[11,29] 0.0011070480216319 [GeV]
-Cell[11,28] 0.0021673720532723 [GeV]
-### Total energy deposition in calorimeter by a source track in 5 cells : 0.68389327451526 (GeV)
+Cell[12,27] 0.0096895912484374 [GeV]
+Cell[12,28] 0.63430621228842 [GeV]
+Cell[11,29] 0.0042238744475654 [GeV]
+Cell[12,29] 0.033564543590623 [GeV]
+### Total energy deposition in calorimeter by a source track in 4 cells : 0.68178422157505 (GeV)
Source track ID 10269 (gamma,0.23519569097121[GeV]) at (-263.70585306954,-424.80492353181,329.32741077992)
Original primary track ID 2 (unknown,2.8798399642419[GeV])
-Cell[11,31] 0.1807172325431 [GeV]
-Cell[11,32] 0.0068037362705272 [GeV]
-Cell[12,32] 0.0071077227551147 [GeV]
-Cell[12,31] 0.033296302929709 [GeV]
-Cell[13,29] 0.0020535744357751 [GeV]
-Cell[11,30] 0.0023551974830345 [GeV]
-Cell[13,30] 0.00036309160672494 [GeV]
-Cell[11,11] 0.001958599884835 [GeV]
-Cell[12,30] 0.00014896908431158 [GeV]
-Cell[10,40] 0.00039126397807251 [GeV]
-### Total energy deposition in calorimeter by a source track in 10 cells : 0.23519569097121 (GeV)
+Cell[11,31] 0.19046913055176 [GeV]
+Cell[11,32] 0.029183372611967 [GeV]
+Cell[12,32] 0.011569493186274 [GeV]
+Cell[12,31] 0.0037018676861375 [GeV]
+Cell[11,30] 0.00027182693506561 [GeV]
+### Total energy deposition in calorimeter by a source track in 5 cells : 0.23519569097121 (GeV)
Source track ID 10184 (proton,1.6974201168416[GeV]) at (-499.99403441491,2.4424474411908,255.690684335)
Original primary track ID 2 (unknown,2.8798399642419[GeV])
-Cell[11,23] 0.35436695652209 [GeV]
-Cell[12,23] 0.40480914431958 [GeV]
-### Total energy deposition in calorimeter by a source track in 2 cells : 0.75917610084168 (GeV)
+Cell[12,24] 0.0027432031627318 [GeV]
+Cell[12,23] 0.0067599534318058 [GeV]
+Cell[12,21] 3.3693461318762e-09 [GeV]
+Cell[12,22] 0.00075444366764896 [GeV]
+Cell[11,22] 0.0028892101107426 [GeV]
+Cell[11,23] 0.67026294617542 [GeV]
+Cell[11,24] 1.654269624396e-07 [GeV]
+### Total energy deposition in calorimeter by a source track in 7 cells : 0.68340992534466 (GeV)
Source track ID 10185 (anti_proton,1.035842222512[GeV]) at (-279.32011635158,-414.70504289355,-324.6893994192)
Original primary track ID 2 (unknown,2.8798399642419[GeV])
-Cell[8,10] 4.4089382261063e-06 [GeV]
-Cell[8,11] 1.7056299839169e-09 [GeV]
-Cell[6,0] 1.0544375641075e-08 [GeV]
-Cell[6,42] 0.00017073555220941 [GeV]
-Cell[9,35] 2.1487940102816e-08 [GeV]
-Cell[9,34] 2.820427237225e-06 [GeV]
-Cell[7,34] 0.0032065071827818 [GeV]
-Cell[7,27] 0.0066380374047273 [GeV]
-Cell[5,0] 5.5326957372017e-06 [GeV]
-Cell[8,29] 0.0010816318238477 [GeV]
-Cell[6,29] 0.00074681446984226 [GeV]
-Cell[2,32] 4.2322215740569e-06 [GeV]
-Cell[1,6] 0.0018304523732278 [GeV]
-Cell[6,36] 1.1295831354801e-06 [GeV]
-Cell[9,33] 0.0069525089336112 [GeV]
-Cell[8,31] 0.52495622695326 [GeV]
-Cell[7,29] 3.9669324630722e-06 [GeV]
-Cell[6,43] 0.0008951566633524 [GeV]
-Cell[3,40] 7.0456371282717e-06 [GeV]
-Cell[9,14] 2.3373921634629e-05 [GeV]
-Cell[9,41] 0.0010131086255523 [GeV]
-Cell[7,33] 0.0024842590664948 [GeV]
-Cell[8,33] 0.029332628399064 [GeV]
-Cell[8,15] 0.0013345464089348 [GeV]
-Cell[7,42] 2.4405796910514e-05 [GeV]
-Cell[10,33] 5.4043205454946e-07 [GeV]
-Cell[11,3] 0.00093800412579139 [GeV]
-Cell[2,33] 0.0021347985776795 [GeV]
-Cell[15,32] 8.356525383897e-05 [GeV]
-Cell[11,1] 9.952494024219e-07 [GeV]
-Cell[14,15] 0.029118639249254 [GeV]
-Cell[5,26] 1.7953439964913e-06 [GeV]
-Cell[10,40] 5.1270809080961e-08 [GeV]
-Cell[8,30] 0.013547537515975 [GeV]
-Cell[5,11] 0.00035170961190731 [GeV]
-Cell[9,32] 0.00020137487586555 [GeV]
-Cell[8,32] 0.015832024701744 [GeV]
-Cell[8,34] 7.4052414902326e-08 [GeV]
-Cell[9,38] 0.0012027657799473 [GeV]
-Cell[9,39] 9.9142481631134e-06 [GeV]
-Cell[10,39] 0.00091883633551049 [GeV]
-Cell[7,32] 0.003060694101439 [GeV]
-Cell[9,36] 0.0021168875006737 [GeV]
-Cell[8,35] 0.0002888339610829 [GeV]
-Cell[5,46] 7.0633672003169e-06 [GeV]
-Cell[5,45] 0.00020585750292059 [GeV]
-Cell[6,47] 0.00041621675243459 [GeV]
-Cell[6,46] 2.6365974736109e-07 [GeV]
-Cell[2,17] 0.00052529849236986 [GeV]
-Cell[9,5] 1.1725440417649e-05 [GeV]
-Cell[10,4] 2.2711760766924e-05 [GeV]
-Cell[10,3] 0.0044905454671885 [GeV]
-Cell[11,4] 7.2626351084182e-09 [GeV]
-Cell[9,4] 0.00072128375170894 [GeV]
-Cell[2,44] 0.0014324660686692 [GeV]
-Cell[3,46] 0.0038368407267652 [GeV]
-Cell[3,45] 0.0022332086029219 [GeV]
-Cell[4,45] 0.00066892798566494 [GeV]
-Cell[4,46] 0.00054000822829744 [GeV]
-Cell[9,15] 0.0026889998936681 [GeV]
-Cell[8,14] 0.00077651769921605 [GeV]
-Cell[15,18] 0.00061014750380934 [GeV]
-Cell[15,17] 1.5071955772328e-08 [GeV]
-Cell[9,31] 0.00091867013612834 [GeV]
-Cell[13,7] 0.00086667409910831 [GeV]
-Cell[13,6] 0.0013690703332948 [GeV]
-Cell[14,7] 1.0953871196762e-09 [GeV]
-Cell[10,2] 4.869163967669e-08 [GeV]
-Cell[11,2] 1.9630523105434e-06 [GeV]
-Cell[9,30] 0.0012543297663035 [GeV]
-Cell[7,31] 0.037809180789752 [GeV]
-Cell[7,30] 0.0011579122926722 [GeV]
-Cell[5,23] 0.00039547048645989 [GeV]
-Cell[6,28] 1.2409748946084e-05 [GeV]
-Cell[1,7] 8.8787368418934e-05 [GeV]
-Cell[13,16] 0.0034010219510695 [GeV]
-Cell[14,16] 0.004487524921014 [GeV]
-Cell[13,15] 0.0083718776377593 [GeV]
-Cell[10,34] 1.9874688716527e-05 [GeV]
-Cell[5,15] 6.8948022526456e-05 [GeV]
-Cell[5,16] 0.0022828573695444 [GeV]
-Cell[6,15] 0.0017637994640623 [GeV]
-Cell[6,31] 0.011189802450671 [GeV]
-Cell[6,33] 0.0031159580736542 [GeV]
-Cell[6,30] 0.0017924936751978 [GeV]
-Cell[6,32] 5.9893484464737e-05 [GeV]
-Cell[5,30] 0.000242655845488 [GeV]
-Cell[5,29] 3.4850186148105e-07 [GeV]
-Cell[2,10] 0.0011385224968089 [GeV]
-Cell[5,36] 0.16418641270428 [GeV]
-Cell[5,37] 0.00042840802215583 [GeV]
-Cell[5,5] 0.0015155828936303 [GeV]
-Cell[5,8] 0.0013867433859564 [GeV]
-Cell[2,22] 0.025523398297802 [GeV]
-Cell[1,22] 0.12778034895452 [GeV]
-Cell[3,39] 5.1462348783389e-06 [GeV]
-Cell[2,39] 2.2765904141124e-06 [GeV]
-Cell[5,6] 3.989154502051e-06 [GeV]
-Cell[5,42] 0.00010786626297227 [GeV]
-Cell[5,41] 5.7678391499394e-08 [GeV]
-Cell[1,23] 0.032264935021538 [GeV]
-Cell[1,24] 0.0015196151534681 [GeV]
-Cell[2,24] 0.0057934352376395 [GeV]
-Cell[2,9] 0.00011479362990019 [GeV]
-Cell[1,10] 0.00021648595742317 [GeV]
-Cell[2,11] 8.0215026426117e-05 [GeV]
-Cell[4,9] 0.001692563046336 [GeV]
-Cell[4,10] 3.8335762510542e-06 [GeV]
-Cell[3,9] 0.00023658422262668 [GeV]
-Cell[2,15] 0.00019478562821405 [GeV]
-Cell[3,26] 1.2166565284133e-08 [GeV]
-Cell[2,23] 0.012824751038748 [GeV]
-Cell[0,42] 1.4734751573997e-05 [GeV]
-Cell[1,28] 0.0040034054202908 [GeV]
-Cell[1,29] 0.00085302419689435 [GeV]
-Cell[2,20] 0.00045100410561929 [GeV]
-Cell[2,21] 0.001044923367669 [GeV]
-Cell[3,20] 0.0049864581707907 [GeV]
-Cell[4,20] 5.2692117053084e-05 [GeV]
-Cell[4,19] 1.3625597843202e-05 [GeV]
-Cell[3,19] 0.0011044150071788 [GeV]
-Cell[0,47] 1.9385652542496e-06 [GeV]
-Cell[3,21] 0.00022900648187658 [GeV]
-Cell[5,3] 0.00070439375922285 [GeV]
-Cell[5,4] 3.3307245643073e-06 [GeV]
-Cell[5,12] 2.8150627815648e-07 [GeV]
-Cell[1,21] 0.0031797210276005 [GeV]
-Cell[2,25] 2.4929055944085e-06 [GeV]
-Cell[5,9] 8.8561101525102e-05 [GeV]
-Cell[1,20] 0.00050252579223525 [GeV]
-Cell[2,34] 9.0212264467482e-07 [GeV]
-Cell[0,17] 0.001526641464185 [GeV]
-Cell[0,18] 0.0023179036041358 [GeV]
-Cell[1,19] 1.9533472368494e-08 [GeV]
-Cell[0,19] 2.1428722698147e-06 [GeV]
-Cell[1,17] 0.00014687538046951 [GeV]
-Cell[1,18] 0.00028677898145281 [GeV]
-Cell[2,19] 0.00053823191392109 [GeV]
-Cell[9,18] 4.9843319328374e-05 [GeV]
-Cell[9,17] 3.9708889924555e-05 [GeV]
-Cell[2,16] 6.6494653583504e-06 [GeV]
-Cell[4,0] 6.9958274543751e-06 [GeV]
-Cell[3,6] 1.136589149246e-05 [GeV]
-Cell[2,6] 0.00017121251718527 [GeV]
-Cell[2,7] 8.5235740659755e-06 [GeV]
-Cell[2,8] 0.0017120151681719 [GeV]
-Cell[8,16] 1.4096495870035e-06 [GeV]
-### Total energy deposition in calorimeter by a source track in 147 cells : 1.1514728022769 (GeV)
+Cell[0,33] 2.5150627785706e-06 [GeV]
+Cell[6,42] 0.00041973785801019 [GeV]
+Cell[9,9] 0.0012294917261108 [GeV]
+Cell[7,34] 0.0020142000989382 [GeV]
+Cell[9,25] 2.3619382332072e-06 [GeV]
+Cell[9,26] 0.011042645784802 [GeV]
+Cell[7,26] 5.4444855777547e-08 [GeV]
+Cell[7,27] 4.5359668278024e-06 [GeV]
+Cell[10,1] 7.57695630125e-06 [GeV]
+Cell[8,29] 0.24017114155891 [GeV]
+Cell[8,5] 4.2173096153419e-06 [GeV]
+Cell[10,23] 4.8995801509591e-05 [GeV]
+Cell[6,29] 0.00172767911088 [GeV]
+Cell[6,27] 0.00020500238970783 [GeV]
+Cell[3,34] 1.5782135017162e-05 [GeV]
+Cell[7,13] 3.8185313103554e-05 [GeV]
+Cell[8,31] 0.26587571011131 [GeV]
+Cell[10,45] 0.0046949635025939 [GeV]
+Cell[10,27] 5.9396941127488e-05 [GeV]
+Cell[9,20] 2.5771685966447e-07 [GeV]
+Cell[7,29] 0.0002238832907417 [GeV]
+Cell[8,36] 3.22333407305e-05 [GeV]
+Cell[11,46] 0.0027242803922555 [GeV]
+Cell[9,1] 9.8083613265771e-06 [GeV]
+Cell[9,46] 0.032834285059303 [GeV]
+Cell[10,41] 4.201804404147e-08 [GeV]
+Cell[8,26] 0.0008544837736988 [GeV]
+Cell[7,33] 0.058086197122852 [GeV]
+Cell[8,33] 0.000223650707979 [GeV]
+Cell[6,25] 0.0002066840465847 [GeV]
+Cell[6,26] 0.0029976266522094 [GeV]
+Cell[8,44] 0.00025049021471193 [GeV]
+Cell[9,47] 0.019333375947593 [GeV]
+Cell[9,28] 0.00031575506420575 [GeV]
+Cell[7,42] 5.8778766742762e-10 [GeV]
+Cell[7,18] 0.0001868822864964 [GeV]
+Cell[10,33] 0.00068235187081601 [GeV]
+Cell[4,12] 0.0088835456365937 [GeV]
+Cell[7,28] 0.0022180847097776 [GeV]
+Cell[13,28] 2.7888621378224e-05 [GeV]
+Cell[12,26] 0.00010934217269096 [GeV]
+Cell[13,35] 6.9503645063378e-06 [GeV]
+Cell[11,20] 1.0755461640656e-05 [GeV]
+Cell[11,45] 0.00020505298877458 [GeV]
+Cell[14,33] 0.001065766703916 [GeV]
+Cell[14,42] 9.5602928695371e-08 [GeV]
+Cell[13,43] 0.00056768363420031 [GeV]
+Cell[11,47] 0.00013299081499838 [GeV]
+Cell[12,25] 0.0005135855757951 [GeV]
+Cell[13,41] 1.0122312232852e-10 [GeV]
+Cell[13,42] 0.00019134216764553 [GeV]
+Cell[13,39] 0.00013723604917395 [GeV]
+Cell[13,38] 0.0039381284886232 [GeV]
+Cell[12,24] 0.00038684485351382 [GeV]
+Cell[10,46] 0.013739250977858 [GeV]
+Cell[11,9] 0.00024915149874312 [GeV]
+Cell[11,8] 0.00079912465009636 [GeV]
+Cell[11,10] 1.5294086188078e-07 [GeV]
+Cell[10,10] 3.1437484814546e-05 [GeV]
+Cell[8,32] 0.0021424780280586 [GeV]
+Cell[8,16] 2.7322705136612e-08 [GeV]
+Cell[0,32] 3.2487366547684e-07 [GeV]
+Cell[10,24] 7.0413451554487e-05 [GeV]
+Cell[11,25] 2.7801884978544e-05 [GeV]
+Cell[10,26] 0.0027361691543591 [GeV]
+Cell[10,25] 1.9200576846288e-06 [GeV]
+Cell[11,26] 0.00049242762275685 [GeV]
+Cell[8,30] 0.11376591185984 [GeV]
+Cell[6,28] 2.1397495787824e-05 [GeV]
+Cell[8,28] 0.041934068291563 [GeV]
+Cell[8,27] 0.00078953762776257 [GeV]
+Cell[9,27] 0.0016416003015926 [GeV]
+Cell[3,7] 3.4774212894263e-05 [GeV]
+Cell[4,34] 8.0669318723722e-05 [GeV]
+Cell[9,31] 9.3456474132836e-09 [GeV]
+Cell[7,31] 0.0083587911295202 [GeV]
+Cell[7,30] 0.0019377747336514 [GeV]
+Cell[9,29] 0.00021492487278317 [GeV]
+Cell[9,30] 0.00040908660001651 [GeV]
+Cell[7,32] 0.013120810894174 [GeV]
+Cell[6,34] 0.0011337244626427 [GeV]
+Cell[7,35] 0.0016282131344593 [GeV]
+Cell[6,31] 4.947668472596e-06 [GeV]
+Cell[6,32] 0.00012706464525036 [GeV]
+Cell[9,44] 0.091230608118001 [GeV]
+Cell[9,45] 0.10268779413543 [GeV]
+Cell[11,4] 5.5033233365975e-07 [GeV]
+Cell[3,15] 1.0888025863096e-06 [GeV]
+Cell[8,45] 0.00043729631050341 [GeV]
+Cell[9,43] 2.3705527610218e-07 [GeV]
+Cell[11,19] 1.1117405985715e-05 [GeV]
+Cell[9,37] 7.1805749155374e-07 [GeV]
+Cell[9,38] 1.0650701151462e-05 [GeV]
+Cell[8,37] 0.0013268790911643 [GeV]
+Cell[9,36] 2.6331359072174e-07 [GeV]
+Cell[9,19] 0.00025714280911745 [GeV]
+Cell[10,2] 0.00039319345601893 [GeV]
+Cell[19,21] 0.00068986511714081 [GeV]
+Cell[7,44] 3.3962774905376e-06 [GeV]
+Cell[6,14] 5.2319119814683e-06 [GeV]
+Cell[6,15] 3.6275597522035e-06 [GeV]
+Cell[6,13] 0.00014926382191584 [GeV]
+Cell[9,0] 1.4550746167515e-05 [GeV]
+Cell[10,47] 0.12893505303051 [GeV]
+Cell[10,22] 8.6958148167469e-06 [GeV]
+Cell[14,41] 2.3602915462106e-09 [GeV]
+Cell[9,2] 0.0034534113813168 [GeV]
+Cell[9,3] 0.00018088107781261 [GeV]
+Cell[8,2] 0.00019320148684396 [GeV]
+Cell[15,33] 0.00039049833234185 [GeV]
+Cell[15,34] 5.5422719015041e-08 [GeV]
+Cell[6,30] 0.0017000401514378 [GeV]
+Cell[1,25] 0.0029758131499907 [GeV]
+Cell[8,4] 0.0026635821372518 [GeV]
+Cell[8,3] 9.2927247279363e-05 [GeV]
+Cell[5,13] 6.313247266462e-06 [GeV]
+Cell[5,12] 3.3585820347071e-11 [GeV]
+Cell[10,0] 0.00047938932026227 [GeV]
+Cell[8,47] 0.0054430534798549 [GeV]
+Cell[8,0] 1.7848606148618e-11 [GeV]
+Cell[11,44] 1.5415698135257e-07 [GeV]
+Cell[10,44] 4.3300678953528e-10 [GeV]
+Cell[8,46] 7.6017676065021e-09 [GeV]
+Cell[4,13] 0.00033369277692129 [GeV]
+### Total energy deposition in calorimeter by a source track in 124 cells : 1.2144960106383 (GeV)
Source track ID 10217 (gamma,0.37133215847831[GeV]) at (-133.93657132969,-481.72709583378,181.68248060971)
Original primary track ID 2 (unknown,2.8798399642419[GeV])
-Cell[11,33] 0.053777698731415 [GeV]
-Cell[11,34] 0.0065168268468933 [GeV]
-Cell[10,33] 0.25765519876255 [GeV]
-Cell[11,32] 0.00051099891 [GeV]
-Cell[13,0] 0.0012496276047666 [GeV]
-Cell[10,34] 0.050980315823092 [GeV]
-Cell[10,18] 0.00064149179958737 [GeV]
-### Total energy deposition in calorimeter by a source track in 7 cells : 0.37133215847831 (GeV)
+Cell[12,34] 0.00033153063113108 [GeV]
+Cell[11,33] 0.041320890854546 [GeV]
+Cell[11,34] 0.0057528449735643 [GeV]
+Cell[10,33] 0.28521902845372 [GeV]
+Cell[11,32] 0.00020320682983752 [GeV]
+Cell[10,34] 0.036375600781759 [GeV]
+Cell[10,39] 0.00094599743202834 [GeV]
+Cell[13,16] 0.00035864267717489 [GeV]
+Cell[11,35] 0.0002419024411779 [GeV]
+### Total energy deposition in calorimeter by a source track in 9 cells : 0.37074964507494 (GeV)
Source track ID 10218 (gamma,0.136782797126[GeV]) at (-378.97236518811,-326.15938806622,68.392652771668)
Original primary track ID 2 (unknown,2.8798399642419[GeV])
-Cell[8,8] 0.0013630952112274 [GeV]
-Cell[10,29] 0.12815109773626 [GeV]
-Cell[8,7] 0.001189083470657 [GeV]
-Cell[10,27] 0.0011858945569407 [GeV]
-Cell[10,28] 0.0032575042965845 [GeV]
-Cell[9,3] 0.0010273708072496 [GeV]
-### Total energy deposition in calorimeter by a source track in 6 cells : 0.13617404607891 (GeV)
+Cell[10,29] 0.11487450101927 [GeV]
+Cell[10,30] 0.010832562003195 [GeV]
+Cell[9,29] 0.0089311316233298 [GeV]
+Cell[10,28] 0.0016830895333019 [GeV]
+Cell[2,36] 0.00046151294691158 [GeV]
+### Total energy deposition in calorimeter by a source track in 5 cells : 0.136782797126 (GeV)
Source track ID 10188 (pi+,0.39402323725765[GeV]) at (-477.02775824161,-149.81494540594,236.69734096765)
Original primary track ID 2 (unknown,2.8798399642419[GeV])
-Cell[9,25] 1.8699766897157e-05 [GeV]
-Cell[9,26] 0.0022675569896393 [GeV]
-Cell[9,24] 1.098139109672e-05 [GeV]
-Cell[9,22] 0.00026145983593983 [GeV]
-Cell[10,23] 0.00042258977468794 [GeV]
-Cell[10,27] 0.0028170722427759 [GeV]
-Cell[11,46] 0.0001100627888294 [GeV]
-Cell[12,26] 1.7201867876793e-09 [GeV]
-Cell[12,27] 4.5322989753913e-05 [GeV]
-Cell[10,26] 0.046896228113503 [GeV]
-Cell[11,26] 0.057832492995311 [GeV]
-Cell[11,27] 0.00024812605893055 [GeV]
-Cell[11,23] 0.0034599455725573 [GeV]
-Cell[11,25] 0.084115109188104 [GeV]
-Cell[10,24] 7.3685430135811e-05 [GeV]
-Cell[10,22] 4.6655976491365e-05 [GeV]
-Cell[11,24] 0.0051429860393378 [GeV]
-Cell[12,24] 1.3429016398732e-06 [GeV]
-Cell[17,14] 4.3625477701426e-09 [GeV]
-Cell[10,25] 0.0052564712795777 [GeV]
-### Total energy deposition in calorimeter by a source track in 20 cells : 0.20902679541794 (GeV)
+Cell[10,29] 0.0014579623347371 [GeV]
+Cell[9,25] 0.0020003249493449 [GeV]
+Cell[9,24] 8.454350521788e-06 [GeV]
+Cell[9,22] 0.0018192143738818 [GeV]
+Cell[10,23] 0.0043260734993426 [GeV]
+Cell[14,29] 0.0015709959208315 [GeV]
+Cell[10,27] 0.00058419646187311 [GeV]
+Cell[9,1] 0.0014441138066846 [GeV]
+Cell[13,29] 0.0067860293565551 [GeV]
+Cell[13,28] 0.0028412667391952 [GeV]
+Cell[12,26] 6.0647207978946e-05 [GeV]
+Cell[12,27] 0.0054522667009573 [GeV]
+Cell[12,28] 0.033409347866004 [GeV]
+Cell[12,25] 0.00015882418274191 [GeV]
+Cell[11,23] 0.0028211268961978 [GeV]
+Cell[12,29] 0.0014735062480759 [GeV]
+Cell[12,30] 0.0019292165393417 [GeV]
+Cell[11,24] 0.00012863126178854 [GeV]
+Cell[10,24] 2.0422155751021e-06 [GeV]
+Cell[11,25] 0.026912088978886 [GeV]
+Cell[10,26] 2.6709729398135e-05 [GeV]
+Cell[10,25] 1.1726598193604e-05 [GeV]
+Cell[11,26] 0.06570155055096 [GeV]
+Cell[9,31] 0.002337160369916 [GeV]
+Cell[9,29] 2.474129141774e-05 [GeV]
+Cell[9,30] 0.00027435828732569 [GeV]
+Cell[9,37] 3.5420159401838e-05 [GeV]
+Cell[9,38] 0.0015294173296251 [GeV]
+Cell[9,0] 1.9180948402209e-07 [GeV]
+Cell[9,2] 5.6986302952282e-06 [GeV]
+Cell[8,47] 1.654579245951e-07 [GeV]
+Cell[8,0] 4.5473165785097e-06 [GeV]
+Cell[12,19] 0.0010202194352993 [GeV]
+Cell[12,18] 0.00073507743843231 [GeV]
+Cell[12,17] 7.4393164469484e-06 [GeV]
+Cell[13,17] 2.3421000491908e-08 [GeV]
+Cell[12,16] 3.630058699855e-08 [GeV]
+Cell[11,27] 0.0071345578072583 [GeV]
+Cell[12,35] 0.0022735195018589 [GeV]
+Cell[9,23] 0.0064138916417203 [GeV]
+### Total energy deposition in calorimeter by a source track in 40 cells : 0.18272278228364 (GeV)
Source track ID 10189 (pi-,0.89482844043037[GeV]) at (-153.89523930841,-475.72708070721,404.86840299783)
Original primary track ID 2 (unknown,2.8798399642419[GeV])
-Cell[12,34] 0.13414634867758 [GeV]
-Cell[12,33] 0.11219374938098 [GeV]
-Cell[11,31] 1.8335413187742e-12 [GeV]
-Cell[11,32] 1.051800006735e-08 [GeV]
-Cell[12,32] 0.0029200163742582 [GeV]
-Cell[13,32] 0.0059034474441137 [GeV]
-Cell[13,31] 0.0018977928369617 [GeV]
-Cell[12,31] 0.0087775897016486 [GeV]
-Cell[14,34] 7.5087882578373e-12 [GeV]
-Cell[15,39] 2.24511217084e-08 [GeV]
-Cell[15,38] 0.0024744430879384 [GeV]
-Cell[13,34] 0.26475698123377 [GeV]
-Cell[13,35] 0.0066631031749466 [GeV]
-Cell[13,33] 0.00013080913680653 [GeV]
-Cell[12,35] 0.0085044707947629 [GeV]
-Cell[13,36] 0.00036370808762422 [GeV]
-Cell[14,35] 0.00018983267198848 [GeV]
-Cell[12,36] 0.0012085836128895 [GeV]
-Cell[16,37] 0.11307317301283 [GeV]
-Cell[16,38] 0.000207804189699 [GeV]
-Cell[15,37] 0.0041298635905385 [GeV]
-Cell[15,36] 5.7491679617669e-06 [GeV]
-Cell[16,36] 0.0019991118919278 [GeV]
-Cell[17,37] 0.00047936963115444 [GeV]
-Cell[17,36] 4.4142818471983e-05 [GeV]
-Cell[17,35] 1.3331516180187e-05 [GeV]
-Cell[16,35] 0.00028929922444024 [GeV]
-Cell[16,34] 0.00095488317036745 [GeV]
-### Total energy deposition in calorimeter by a source track in 28 cells : 0.67132763740831 (GeV)
+Cell[14,32] 5.2363100535331e-06 [GeV]
+Cell[10,29] 0.003366126001867 [GeV]
+Cell[7,7] 1.3017583662531e-06 [GeV]
+Cell[9,24] 5.2130071205738e-06 [GeV]
+Cell[7,6] 2.3339906168758e-06 [GeV]
+Cell[10,23] 0.0023189946637982 [GeV]
+Cell[10,27] 0.00089214044115909 [GeV]
+Cell[9,1] 4.3384126125602e-05 [GeV]
+Cell[13,12] 1.038899145351e-05 [GeV]
+Cell[11,36] 0.0012666630757466 [GeV]
+Cell[12,34] 0.14066603617448 [GeV]
+Cell[12,33] 0.33310585744133 [GeV]
+Cell[11,32] 8.1327132164233e-05 [GeV]
+Cell[12,32] 0.0042719273590769 [GeV]
+Cell[13,32] 0.0052232522222593 [GeV]
+Cell[13,31] 0.0029502097023184 [GeV]
+Cell[13,29] 9.8080797470175e-06 [GeV]
+Cell[13,34] 0.007332088737345 [GeV]
+Cell[13,35] 3.5705191589614e-05 [GeV]
+Cell[13,2] 0.00051915702461891 [GeV]
+Cell[10,21] 1.4540015661623e-05 [GeV]
+Cell[10,20] 2.495724518667e-05 [GeV]
+Cell[11,20] 0.0010347490810319 [GeV]
+Cell[14,33] 0.0012410424250773 [GeV]
+Cell[12,28] 1.6116363995934e-05 [GeV]
+Cell[11,29] 6.5369827552786e-08 [GeV]
+Cell[10,30] 0.0033670553061944 [GeV]
+Cell[10,31] 0.0019436963621406 [GeV]
+Cell[12,29] 1.4305692275229e-10 [GeV]
+Cell[10,24] 1.2978465269612e-05 [GeV]
+Cell[10,26] 4.6855012669766e-09 [GeV]
+Cell[6,31] 1.0119767975993e-06 [GeV]
+Cell[11,19] 4.1129498218652e-05 [GeV]
+Cell[9,0] 1.1055620503612e-05 [GeV]
+Cell[6,30] 0.00044298104867221 [GeV]
+Cell[11,35] 9.9968210036195e-05 [GeV]
+Cell[10,28] 0.00015035782698101 [GeV]
+Cell[12,35] 0.0046632513956674 [GeV]
+Cell[9,23] 2.211971686927e-05 [GeV]
+Cell[13,33] 0.033171364772501 [GeV]
+Cell[11,37] 2.5802607069636e-08 [GeV]
+Cell[12,36] 0.0024397837174814 [GeV]
+Cell[10,14] 2.2180116502568e-07 [GeV]
+Cell[11,42] 1.8264364916831e-07 [GeV]
+Cell[14,11] 9.9809753010049e-08 [GeV]
+Cell[13,11] 1.2019195412449e-07 [GeV]
+Cell[17,9] 0.0031118752201132 [GeV]
+Cell[18,8] 0.0024010759724682 [GeV]
+Cell[18,9] 5.8144263334725e-08 [GeV]
+Cell[13,18] 1.7191089311382e-05 [GeV]
+Cell[14,2] 1.5591784642311e-05 [GeV]
+Cell[13,20] 9.8843756713904e-06 [GeV]
+Cell[0,44] 3.3942042500712e-07 [GeV]
+Cell[11,28] 1.1495614693331e-06 [GeV]
+Cell[6,7] 5.9356633479865e-05 [GeV]
+Cell[18,6] 0.00025052504435848 [GeV]
+Cell[18,5] 2.4347219418814e-06 [GeV]
+Cell[17,5] 1.3391654647421e-09 [GeV]
+Cell[15,14] 3.4106015809812e-06 [GeV]
+Cell[15,13] 1.4665920170955e-05 [GeV]
+Cell[14,5] 1.0783257754269e-05 [GeV]
+Cell[13,10] 4.4462794903666e-08 [GeV]
+Cell[13,9] 8.4488395634708e-07 [GeV]
+Cell[13,8] 1.567995309415e-08 [GeV]
+### Total energy deposition in calorimeter by a source track in 64 cells : 0.55670527904056 (GeV)
Source track ID 10178 (gamma,0.032559394638405[GeV]) at (-498.62850909001,-37.008241280427,-1796.9976617908)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[0,23] 0.00039007660788611 [GeV]
-Cell[0,24] 0.032169318030519 [GeV]
-### Total energy deposition in calorimeter by a source track in 2 cells : 0.032559394638405 (GeV)
+Cell[13,47] 0.0006803714084088 [GeV]
+Cell[13,18] 0.00066444377043075 [GeV]
+Cell[1,24] 0.0063367358997119 [GeV]
+Cell[0,24] 0.023210356523625 [GeV]
+Cell[0,41] 0.00030194548347793 [GeV]
+Cell[3,11] 0.00051099891 [GeV]
+### Total energy deposition in calorimeter by a source track in 6 cells : 0.031704851995655 (GeV)
Source track ID 10156 (pi+,0.77706013453507[GeV]) at (-481.47449305503,134.84180559974,-1800.5263466048)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[0,23] 0.0060764954470441 [GeV]
-Cell[1,23] 0.00051289200464417 [GeV]
-Cell[1,24] 0.0058390879687167 [GeV]
-Cell[0,19] 0.0045113009114247 [GeV]
-Cell[0,24] 0.02107744093095 [GeV]
-Cell[0,21] 0.22744245668785 [GeV]
-Cell[0,20] 0.0027933473499329 [GeV]
-Cell[0,22] 0.0029746688290355 [GeV]
-Cell[0,4] 0.0034665148779338 [GeV]
-Cell[0,3] 0.0087534029003205 [GeV]
-Cell[0,5] 0.0008818155226265 [GeV]
-### Total energy deposition in calorimeter by a source track in 11 cells : 0.28432942343048 (GeV)
+Cell[0,21] 0.16210211774337 [GeV]
+Cell[2,13] 0.00047906668482919 [GeV]
+Cell[3,41] 6.7379441004165e-05 [GeV]
+### Total energy deposition in calorimeter by a source track in 3 cells : 0.1626485638692 (GeV)
Source track ID 10153 (gamma,1.9015972345342[GeV]) at (-363.22356462896,343.61117865726,-955.17208947521)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[5,34] 0.00032779871405171 [GeV]
-Cell[9,1] 0.00051099891 [GeV]
-Cell[5,43] 0.0023617593255204 [GeV]
-Cell[3,46] 0.0040836187530198 [GeV]
-Cell[9,31] 0.0021706416419316 [GeV]
-Cell[5,41] 0.00062415847044295 [GeV]
-Cell[3,9] 0.00042936420708929 [GeV]
-Cell[3,26] 0.0032206053828946 [GeV]
-Cell[4,19] 0.014980469096115 [GeV]
-Cell[5,12] 0.00094786521805843 [GeV]
-Cell[5,9] 0.0010310368280822 [GeV]
-Cell[5,18] 1.4038478659436 [GeV]
-Cell[5,17] 0.056932290754447 [GeV]
-Cell[4,17] 0.020855183290907 [GeV]
-Cell[4,18] 0.36927928327597 [GeV]
-Cell[2,43] 0.00051099891 [GeV]
-Cell[1,42] 0.00074859354835361 [GeV]
-Cell[2,4] 0.0099285565602335 [GeV]
-Cell[4,16] 0.00087248680810408 [GeV]
-Cell[4,25] 0.00058010561316441 [GeV]
-Cell[1,35] 0.00043844745736031 [GeV]
-Cell[5,38] 0.00096685265163102 [GeV]
-Cell[0,34] 0.0010833543592861 [GeV]
-Cell[4,41] 0.00048134816887517 [GeV]
-Cell[4,3] 0.0013246233169627 [GeV]
-Cell[5,19] 0.00051099891 [GeV]
-### Total energy deposition in calorimeter by a source track in 26 cells : 1.8990493061161 (GeV)
+Cell[5,32] 0.00048726852105617 [GeV]
+Cell[6,35] 0.00069146976933088 [GeV]
+Cell[8,27] 0.00032455554301764 [GeV]
+Cell[5,18] 1.3787546548359 [GeV]
+Cell[5,17] 0.044553552016445 [GeV]
+Cell[4,44] 0.00059805976362342 [GeV]
+Cell[2,2] 0.00040157221087334 [GeV]
+Cell[2,3] 0.0004017408327912 [GeV]
+Cell[4,18] 0.41415681138952 [GeV]
+Cell[4,17] 0.043975953294306 [GeV]
+Cell[4,16] 0.00051099891 [GeV]
+Cell[5,19] 0.0014995346266195 [GeV]
+Cell[5,6] 0.00033984381921861 [GeV]
+Cell[4,19] 0.0015883183599211 [GeV]
+Cell[5,29] 0.0014279351427608 [GeV]
+Cell[4,21] 0.0048289082201864 [GeV]
+Cell[3,17] 0.0010657388319677 [GeV]
+Cell[4,20] 0.0010913888652741 [GeV]
+Cell[5,46] 0.00079037410518381 [GeV]
+Cell[6,45] 0.0018535878134458 [GeV]
+Cell[2,8] 0.00051934043851113 [GeV]
+Cell[6,1] 0.00051099891 [GeV]
+### Total energy deposition in calorimeter by a source track in 22 cells : 1.90037260622 (GeV)
Source track ID 10141 (pi-,4.433311228165[GeV]) at (-407.35822390885,289.9297801431,-1898.9042780133)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[0,19] 0.14034338235047 [GeV]
-### Total energy deposition in calorimeter by a source track in 1 cells : 0.14034338235047 (GeV)
+Cell[0,33] 0.055734981600968 [GeV]
+Cell[7,38] 1.9949661079977e-05 [GeV]
+Cell[9,22] 6.5498444018885e-06 [GeV]
+Cell[5,0] 2.7168000542588e-09 [GeV]
+Cell[5,34] 0.0007653684408258 [GeV]
+Cell[6,39] 0.00029125887096086 [GeV]
+Cell[2,32] 0.0011528382030717 [GeV]
+Cell[1,31] 7.3652887076605e-06 [GeV]
+Cell[0,28] 0.0057101606076091 [GeV]
+Cell[7,13] 0.0022647081886077 [GeV]
+Cell[3,43] 1.6591664752923e-06 [GeV]
+Cell[7,39] 0.00029199613521325 [GeV]
+Cell[6,38] 5.6073331186781e-05 [GeV]
+Cell[0,23] 0.015229178824466 [GeV]
+Cell[6,40] 0.0025838448526178 [GeV]
+Cell[2,31] 1.6818366112261e-05 [GeV]
+Cell[13,38] 7.3751080781221e-06 [GeV]
+Cell[0,32] 0.0037700175682897 [GeV]
+Cell[4,34] 3.6364143625178e-09 [GeV]
+Cell[9,31] 9.5746998091727e-05 [GeV]
+Cell[6,34] 0.00096704328805761 [GeV]
+Cell[3,15] 3.3020187402144e-08 [GeV]
+Cell[1,25] 0.0010594537620505 [GeV]
+Cell[0,44] 0.0031530023485349 [GeV]
+Cell[6,7] 0.00029700451200111 [GeV]
+Cell[1,24] 0.00043908008865615 [GeV]
+Cell[0,21] 0.0015717897105111 [GeV]
+Cell[4,17] 5.9921160300291e-10 [GeV]
+Cell[3,17] 0.00011809343006678 [GeV]
+Cell[0,19] 1.1341104911857 [GeV]
+Cell[0,11] 0.024465093350415 [GeV]
+Cell[3,47] 0.00019537094384208 [GeV]
+Cell[1,1] 0.00029894115066668 [GeV]
+Cell[1,0] 0.00010297117578966 [GeV]
+Cell[2,1] 1.6377038718929e-07 [GeV]
+Cell[0,20] 0.038577905023869 [GeV]
+Cell[0,18] 0.20683404198589 [GeV]
+Cell[0,17] 0.10313738202639 [GeV]
+Cell[2,0] 0.0014115560671034 [GeV]
+Cell[2,30] 0.0004658763718237 [GeV]
+Cell[1,30] 0.0018838630131332 [GeV]
+Cell[2,29] 2.0134466467425e-07 [GeV]
+Cell[1,29] 8.019846024979e-05 [GeV]
+Cell[0,29] 0.0011523497505588 [GeV]
+Cell[2,47] 1.7178200068884e-06 [GeV]
+Cell[0,45] 0.0013022059882546 [GeV]
+Cell[0,46] 0.0019261181200747 [GeV]
+Cell[0,25] 0.00023955863579158 [GeV]
+Cell[0,43] 0.00090696459220089 [GeV]
+Cell[7,14] 0.00019121444972758 [GeV]
+Cell[1,19] 0.00028585129015304 [GeV]
+Cell[1,17] 0.00069378669848368 [GeV]
+Cell[1,16] 0.00050425455206766 [GeV]
+Cell[0,16] 0.0014010229021302 [GeV]
+Cell[4,47] 0.010391129052423 [GeV]
+Cell[1,26] 0.0026934165356128 [GeV]
+Cell[0,26] 7.7767764450982e-06 [GeV]
+Cell[0,39] 0.00088708447054682 [GeV]
+Cell[0,40] 1.752129006718e-06 [GeV]
+Cell[2,25] 1.84154312592e-06 [GeV]
+Cell[1,5] 8.8509827037342e-07 [GeV]
+Cell[0,7] 0.0020858429861649 [GeV]
+Cell[0,27] 4.1762996988837e-06 [GeV]
+Cell[2,11] 0.00066021464751168 [GeV]
+Cell[1,28] 0.00083477571880815 [GeV]
+Cell[1,45] 8.7649935835543e-08 [GeV]
+Cell[1,46] 9.2945992946625e-10 [GeV]
+Cell[4,3] 0.00058442834059555 [GeV]
+Cell[1,12] 0.0058936452892859 [GeV]
+Cell[0,6] 0.0017794734908489 [GeV]
+Cell[1,11] 0.0084841020207493 [GeV]
+Cell[0,10] 0.012874353918612 [GeV]
+Cell[0,9] 0.0045542182299816 [GeV]
+Cell[1,35] 0.00030699130759894 [GeV]
+Cell[1,32] 4.0360901039094e-09 [GeV]
+Cell[6,47] 0.00099396857846924 [GeV]
+Cell[5,47] 0.0002179273522531 [GeV]
+Cell[5,33] 3.3607498044148e-06 [GeV]
+Cell[6,33] 0.021963504043026 [GeV]
+Cell[1,21] 0.0020320467561523 [GeV]
+Cell[1,20] 0.00028432980742809 [GeV]
+Cell[1,22] 0.00051099891 [GeV]
+Cell[1,18] 0.00062460869904157 [GeV]
+Cell[4,40] 5.8238861674909e-07 [GeV]
+Cell[3,20] 6.8787951022387e-08 [GeV]
+Cell[3,30] 0.00012596443081509 [GeV]
+Cell[3,16] 1.8656775109775e-06 [GeV]
+Cell[4,0] 0.0011138792558596 [GeV]
+Cell[3,22] 0.00017728179510732 [GeV]
+Cell[3,21] 1.4894845890012e-08 [GeV]
+Cell[2,23] 3.873907758134e-09 [GeV]
+Cell[4,46] 2.4699780798983e-05 [GeV]
+Cell[7,40] 8.5641120222135e-09 [GeV]
+Cell[1,44] 3.589428612031e-06 [GeV]
+Cell[2,40] 1.0778952331748e-05 [GeV]
+Cell[3,18] 0.00021301749233885 [GeV]
+Cell[3,36] 2.3177016235422e-05 [GeV]
+Cell[4,2] 3.1428279180545e-05 [GeV]
+Cell[4,1] 4.5197023195215e-05 [GeV]
+Cell[9,32] 0.00029687744674209 [GeV]
+Cell[9,17] 0.00034791498306418 [GeV]
+Cell[0,2] 0.0005396538929198 [GeV]
+Cell[0,3] 3.1372722005472e-06 [GeV]
+Cell[3,31] 4.4617187097629e-07 [GeV]
+Cell[1,8] 0.0016390214130062 [GeV]
+### Total energy deposition in calorimeter by a source track in 105 cells : 1.6990560530268 (GeV)
Source track ID 10098 (pi+,1.2126050078365[GeV]) at (-442.26945617313,233.23320547539,-1914.9957413546)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[0,20] 0.1063072040045 [GeV]
-### Total energy deposition in calorimeter by a source track in 1 cells : 0.1063072040045 (GeV)
+Cell[0,20] 0.11563802552992 [GeV]
+### Total energy deposition in calorimeter by a source track in 1 cells : 0.11563802552992 (GeV)
Source track ID 10099 (anti_proton,5.3584947697675[GeV]) at (-479.54768021736,141.54159246719,-1703.7616530575)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[6,42] 3.8374942960218e-08 [GeV]
-Cell[9,24] 1.002412464004e-07 [GeV]
-Cell[4,29] 7.7257105731405e-06 [GeV]
-Cell[7,24] 4.6261284442153e-06 [GeV]
-Cell[7,23] 4.2092905962704e-05 [GeV]
-Cell[5,34] 2.7832153296004e-07 [GeV]
-Cell[4,37] 0.00082117534409219 [GeV]
-Cell[8,5] 1.4413626166061e-05 [GeV]
-Cell[2,32] 0.0001192986336755 [GeV]
-Cell[3,34] 5.769182411052e-05 [GeV]
-Cell[6,36] 0.00051099891 [GeV]
-Cell[1,31] 0.0014790318250173 [GeV]
-Cell[3,43] 5.7042385953764e-05 [GeV]
-Cell[0,23] 0.01674342763755 [GeV]
-Cell[8,43] 0.001986736125128 [GeV]
-Cell[9,1] 0.0033392536721938 [GeV]
-Cell[6,43] 1.5097786672413e-07 [GeV]
-Cell[4,30] 5.7114097580779e-06 [GeV]
-Cell[6,41] 2.0673641120084e-07 [GeV]
-Cell[6,23] 0.00020398327604278 [GeV]
-Cell[6,25] 0.00095499396637695 [GeV]
-Cell[2,31] 0.0097831923698838 [GeV]
-Cell[2,26] 6.2436597945634e-06 [GeV]
-Cell[8,42] 0.014160556481183 [GeV]
-Cell[4,12] 2.089261546439e-05 [GeV]
-Cell[14,15] 1.3484782539308e-07 [GeV]
-Cell[15,13] 1.387247882667e-05 [GeV]
-Cell[11,11] 0.00086658920909827 [GeV]
-Cell[5,45] 0.001408195444296 [GeV]
-Cell[9,5] 4.3273518065689e-05 [GeV]
-Cell[3,46] 0.0013785645596235 [GeV]
-Cell[4,45] 0.00027779422470839 [GeV]
-Cell[5,23] 0.00015113081872073 [GeV]
-Cell[14,16] 1.0381729225628e-07 [GeV]
-Cell[6,15] 1.1804306996055e-07 [GeV]
-Cell[2,10] 0.00028368533881496 [GeV]
-Cell[5,8] 5.9306364367671e-05 [GeV]
-Cell[2,22] 0.003511188058769 [GeV]
-Cell[1,22] 0.2514874894794 [GeV]
-Cell[2,39] 0.00078059417810848 [GeV]
-Cell[5,6] 9.1463896558253e-07 [GeV]
-Cell[5,41] 4.7531438758597e-07 [GeV]
-Cell[1,23] 0.065569570819116 [GeV]
-Cell[1,24] 0.00017193329949362 [GeV]
-Cell[2,24] 0.003348662133994 [GeV]
-Cell[2,9] 3.9080428541638e-06 [GeV]
-Cell[1,10] 2.2765358085053e-07 [GeV]
-Cell[2,11] 0.00019241656363192 [GeV]
-Cell[4,9] 0.00056029011126782 [GeV]
-Cell[4,10] 0.0003643831629895 [GeV]
-Cell[3,9] 0.0048230949662956 [GeV]
-Cell[2,23] 0.010508507634427 [GeV]
-Cell[2,20] 0.00077261019185744 [GeV]
-Cell[2,21] 0.00085024516147283 [GeV]
-Cell[5,3] 0.00098267005430146 [GeV]
-Cell[1,21] 1.6068187354069 [GeV]
-Cell[2,25] 2.7224502297258e-06 [GeV]
-Cell[1,20] 0.021727854239117 [GeV]
-Cell[0,17] 0.00044085493479838 [GeV]
-Cell[0,18] 0.00019513990027622 [GeV]
-Cell[1,19] 0.025728619056303 [GeV]
-Cell[0,19] 0.086836658967974 [GeV]
-Cell[1,17] 0.00077983413753998 [GeV]
-Cell[1,18] 0.0067927470059748 [GeV]
-Cell[2,19] 0.0032598338725463 [GeV]
-Cell[4,0] 0.0005071202432548 [GeV]
-Cell[2,6] 4.4918150524609e-07 [GeV]
-Cell[2,8] 0.00015226607182683 [GeV]
-Cell[0,24] 0.029093207313519 [GeV]
-Cell[0,21] 0.20710259988828 [GeV]
-Cell[0,20] 0.20301135187383 [GeV]
-Cell[0,22] 0.54228996414194 [GeV]
-Cell[0,5] 0.0025346133376032 [GeV]
-Cell[4,25] 1.037363119849e-08 [GeV]
-Cell[5,38] 0.0014747199698351 [GeV]
-Cell[0,34] 0.00037324004862597 [GeV]
-Cell[4,3] 4.0070929277817e-05 [GeV]
-Cell[5,19] 0.0018061799138617 [GeV]
-Cell[3,10] 0.0014332950854383 [GeV]
-Cell[4,8] 0.0027833313882982 [GeV]
-Cell[4,36] 0.0068867162438017 [GeV]
-Cell[4,35] 0.00055477746762222 [GeV]
-Cell[3,35] 2.6414083408781e-05 [GeV]
-Cell[3,36] 4.4252025077185e-08 [GeV]
-Cell[4,34] 0.0012799442519158 [GeV]
-Cell[1,14] 7.9500843130518e-06 [GeV]
-Cell[1,13] 0.00030810165639741 [GeV]
-Cell[2,13] 6.0286170319046e-05 [GeV]
-Cell[1,39] 0.0015088991583597 [GeV]
-Cell[1,40] 1.5785122968737e-09 [GeV]
-Cell[3,12] 0.00051558491526781 [GeV]
-Cell[0,6] 0.0067072499580818 [GeV]
-Cell[1,41] 6.4399068835428e-06 [GeV]
-Cell[1,16] 0.0042782565046609 [GeV]
-Cell[2,40] 4.7148205339909e-12 [GeV]
-Cell[0,27] 0.0015288332006413 [GeV]
-Cell[2,2] 2.7336904633557e-05 [GeV]
-Cell[2,1] 0.0042989086401473 [GeV]
-Cell[1,1] 0.00038691660315101 [GeV]
-Cell[2,0] 1.6410534643228e-05 [GeV]
-Cell[1,0] 0.00042600533071736 [GeV]
-Cell[0,31] 4.8767294128993e-06 [GeV]
-Cell[0,30] 1.520465593785e-08 [GeV]
-Cell[0,29] 4.9032412152883e-07 [GeV]
-Cell[2,35] 6.1473524213852e-05 [GeV]
-Cell[2,36] 9.2035977638716e-07 [GeV]
-Cell[5,7] 3.9041112131599e-08 [GeV]
-Cell[1,38] 2.1625691452869e-05 [GeV]
-Cell[0,44] 0.0017908597993746 [GeV]
-Cell[2,30] 0.004785852672121 [GeV]
-Cell[2,29] 0.00042523184140576 [GeV]
-Cell[3,32] 0.0010508761647687 [GeV]
-Cell[3,33] 0.00056009727033199 [GeV]
-Cell[2,14] 2.0649107231293e-05 [GeV]
-Cell[3,31] 0.001192990598668 [GeV]
-Cell[15,44] 0.0011817837903797 [GeV]
-Cell[15,43] 5.1872746098525e-10 [GeV]
-Cell[10,10] 5.0550603773445e-06 [GeV]
-Cell[11,10] 0.00034114501373108 [GeV]
-Cell[11,9] 0.00043675589318002 [GeV]
-Cell[11,8] 5.5174114531837e-06 [GeV]
-Cell[10,11] 0.00011500454065106 [GeV]
-Cell[2,18] 0.0056147307046005 [GeV]
-Cell[3,27] 0.0053650496510669 [GeV]
-Cell[2,27] 1.17680317544e-08 [GeV]
-Cell[3,24] 0.0054205348829433 [GeV]
-Cell[2,28] 0.00049236548362987 [GeV]
-Cell[1,11] 0.00138363432545 [GeV]
-Cell[1,9] 0.0017544990536953 [GeV]
-Cell[4,47] 2.674744323599e-06 [GeV]
-Cell[5,47] 4.2045317029078e-05 [GeV]
-Cell[6,11] 0.0018195292136334 [GeV]
-Cell[3,25] 0.079804973765814 [GeV]
-Cell[4,24] 5.894363136008e-06 [GeV]
-Cell[3,42] 6.4589781295922e-05 [GeV]
-Cell[3,44] 0.00050944828021898 [GeV]
-Cell[3,11] 8.2122952444479e-06 [GeV]
-Cell[4,7] 0.0014528374462365 [GeV]
-Cell[9,23] 4.508325655479e-07 [GeV]
-Cell[7,45] 5.4536985703635e-07 [GeV]
-Cell[7,46] 8.8681721565536e-06 [GeV]
-Cell[6,45] 1.8087358766934e-05 [GeV]
-Cell[13,38] 0.00085909151199056 [GeV]
-Cell[1,47] 0.0020744039868966 [GeV]
-Cell[5,44] 0.0015339306656507 [GeV]
-Cell[1,36] 0.0066579620643297 [GeV]
-Cell[0,11] 0.074672261202284 [GeV]
-Cell[0,10] 0.0033644720960105 [GeV]
-Cell[0,12] 0.083692073593841 [GeV]
-Cell[3,28] 4.5778858475387e-07 [GeV]
-Cell[11,42] 5.3542908164673e-05 [GeV]
-Cell[12,42] 5.0517215859145e-06 [GeV]
-Cell[15,11] 0.00057298946000503 [GeV]
-Cell[15,12] 0.00095597505505702 [GeV]
-Cell[3,23] 0.0018621995623733 [GeV]
-Cell[3,22] 2.3285372844839e-07 [GeV]
-Cell[4,23] 0.015629707757743 [GeV]
-Cell[4,22] 0.0066972971329003 [GeV]
-Cell[6,24] 0.047995579885238 [GeV]
-Cell[5,25] 9.7890346702002e-05 [GeV]
-Cell[4,38] 0.0011014952031582 [GeV]
-Cell[0,25] 0.00014116564828385 [GeV]
-Cell[3,8] 2.5425883402136e-05 [GeV]
-Cell[3,7] 0.00019131969859598 [GeV]
-Cell[0,43] 0.0035378646670446 [GeV]
-Cell[0,26] 0.00076630410802429 [GeV]
-Cell[3,30] 7.3083315915937e-05 [GeV]
-Cell[3,2] 2.785551812849e-05 [GeV]
-Cell[4,2] 0.0035740937444921 [GeV]
-Cell[7,3] 6.5477200841997e-06 [GeV]
-Cell[8,2] 0.00070371715307201 [GeV]
-Cell[8,3] 3.5608038888313e-07 [GeV]
-Cell[7,4] 5.9224257673804e-06 [GeV]
-Cell[7,2] 0.0013282224953394 [GeV]
-Cell[0,2] 5.8019122225232e-06 [GeV]
-Cell[2,12] 0.00034362304359797 [GeV]
-Cell[1,46] 0.0024930258780834 [GeV]
-Cell[0,45] 4.2932977441296e-05 [GeV]
-Cell[1,45] 8.6947874075804e-05 [GeV]
-Cell[0,46] 6.5725430431485e-11 [GeV]
-Cell[5,2] 1.1879077646881e-08 [GeV]
-Cell[4,1] 0.0007219474140486 [GeV]
-Cell[2,38] 0.010399061825404 [GeV]
-Cell[9,2] 0.0017834156721813 [GeV]
-Cell[2,47] 0.0014474018142066 [GeV]
-Cell[4,39] 0.0065854798145016 [GeV]
-Cell[4,40] 0.0039663774552326 [GeV]
-Cell[3,47] 0.0006282013438686 [GeV]
-Cell[5,14] 0.00048936031414996 [GeV]
-Cell[0,1] 7.9060555435717e-10 [GeV]
-Cell[0,9] 0.0003637434107935 [GeV]
-Cell[1,12] 0.0020935458286716 [GeV]
-Cell[3,3] 0.0020857007446877 [GeV]
-Cell[0,13] 0.0072290397989055 [GeV]
-Cell[0,14] 0.00050957737772421 [GeV]
-Cell[0,15] 0.00090580311636404 [GeV]
-### Total energy deposition in calorimeter by a source track in 196 cells : 3.5889020474448 (GeV)
+Cell[0,21] 0.15083575364257 [GeV]
+Cell[1,21] 0.13067804438964 [GeV]
+### Total energy deposition in calorimeter by a source track in 2 cells : 0.28151379803221 (GeV)
Source track ID 10094 (gamma,0.3844820986824[GeV]) at (-373.5739315892,332.32892988271,-1364.9807909999)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[3,19] 0.00040561323488864 [GeV]
-Cell[2,19] 0.012614844376054 [GeV]
-Cell[3,12] 0.00020760565743681 [GeV]
-Cell[2,18] 0.2846242421687 [GeV]
-Cell[3,11] 0.00085140615990083 [GeV]
-Cell[4,38] 0.0013287613975844 [GeV]
-Cell[3,18] 0.082660730735511 [GeV]
-Cell[3,0] 0.00083238592931483 [GeV]
-### Total energy deposition in calorimeter by a source track in 8 cells : 0.38352558965939 (GeV)
+Cell[6,35] 0.00051099891 [GeV]
+Cell[0,32] 0.0012181839618198 [GeV]
+Cell[4,34] 0.00057095595410431 [GeV]
+Cell[3,17] 0.00060367565172082 [GeV]
+Cell[3,22] 0.00050136347328104 [GeV]
+Cell[3,18] 0.28446108196559 [GeV]
+Cell[2,18] 0.087533389450392 [GeV]
+Cell[3,8] 0.00039465455667739 [GeV]
+Cell[5,44] 0.00051099891 [GeV]
+Cell[3,19] 0.002599422044187 [GeV]
+Cell[2,17] 0.0011626136691929 [GeV]
+### Total energy deposition in calorimeter by a source track in 11 cells : 0.38006733854696 (GeV)
Source track ID 9984 (proton,2.1152550266091[GeV]) at (-193.74816422206,460.93562333647,-1675.272013559)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[7,12] 0.00065975497274133 [GeV]
-Cell[9,9] 7.0959023480555e-07 [GeV]
-Cell[7,23] 2.4975743144751e-09 [GeV]
-Cell[5,34] 8.1708837242331e-06 [GeV]
-Cell[5,24] 0.00019550230983566 [GeV]
-Cell[2,32] 3.1194045705206e-05 [GeV]
-Cell[8,13] 1.2611808935389e-05 [GeV]
-Cell[7,13] 0.00033688673990525 [GeV]
-Cell[6,35] 9.6295341952214e-05 [GeV]
-Cell[2,41] 2.5381818122696e-06 [GeV]
-Cell[0,23] 0.0018157066620544 [GeV]
-Cell[9,41] 2.0695474813692e-07 [GeV]
-Cell[6,25] 7.1247165154091e-05 [GeV]
-Cell[8,41] 3.4762499853969e-07 [GeV]
-Cell[8,42] 9.2612317530438e-08 [GeV]
-Cell[2,33] 8.6739209141911e-05 [GeV]
-Cell[5,26] 0.00079342932513475 [GeV]
-Cell[8,14] 1.2233384672982e-06 [GeV]
-Cell[5,23] 0.00013482987811722 [GeV]
-Cell[2,39] 0.0003831419369584 [GeV]
-Cell[1,24] 8.3396834432278e-05 [GeV]
-Cell[4,9] 1.2449278583517e-05 [GeV]
-Cell[1,29] 5.1037350203842e-08 [GeV]
-Cell[0,47] 0.00076536999523375 [GeV]
-Cell[1,21] 0.0051304549550356 [GeV]
-Cell[0,17] 0.0016665336725394 [GeV]
-Cell[0,18] 0.00026472905130058 [GeV]
-Cell[0,19] 0.00060248835024822 [GeV]
-Cell[1,17] 0.0027280867588573 [GeV]
-Cell[4,0] 0.00054095641160824 [GeV]
-Cell[0,24] 5.7333118447787e-06 [GeV]
-Cell[0,4] 8.0719859170131e-09 [GeV]
-Cell[0,5] 0.00065371421024258 [GeV]
-Cell[1,42] 1.2047826894559e-06 [GeV]
-Cell[4,34] 0.00072136213799218 [GeV]
-Cell[1,14] 0.073677052336964 [GeV]
-Cell[1,13] 0.020703768186231 [GeV]
-Cell[1,16] 0.0039820775488527 [GeV]
-Cell[2,36] 0.0021734216691703 [GeV]
-Cell[2,14] 2.5270855985582e-10 [GeV]
-Cell[2,27] 9.5674810989294e-05 [GeV]
-Cell[2,28] 0.0055378829029887 [GeV]
-Cell[1,11] 0.0010526231718624 [GeV]
-Cell[4,24] 6.3717323937453e-06 [GeV]
-Cell[0,12] 0.0002676508085849 [GeV]
-Cell[4,23] 0.0022205204727056 [GeV]
-Cell[0,25] 0.0031890516201226 [GeV]
-Cell[0,26] 0.00064371871050611 [GeV]
-Cell[1,12] 0.0058087590179275 [GeV]
-Cell[0,13] 0.014042605976631 [GeV]
-Cell[0,14] 0.010899795621649 [GeV]
-Cell[0,15] 0.011493079909444 [GeV]
-Cell[1,15] 0.23885822322397 [GeV]
-Cell[6,34] 0.0013498090002083 [GeV]
-Cell[5,33] 0.00048797598248725 [GeV]
-Cell[8,23] 1.0030381531578e-07 [GeV]
-Cell[8,22] 5.8481236919761e-10 [GeV]
-Cell[9,0] 8.0294433369772e-05 [GeV]
-Cell[8,0] 1.9211320341128e-06 [GeV]
-Cell[8,47] 7.7987867633738e-06 [GeV]
-Cell[4,33] 0.00013966116091851 [GeV]
-Cell[0,16] 0.0015995139263428 [GeV]
-Cell[7,14] 5.9626453145029e-05 [GeV]
-Cell[1,25] 1.2276659799682e-07 [GeV]
-Cell[0,0] 1.5720831098861e-05 [GeV]
-Cell[4,26] 1.1383527889848e-06 [GeV]
-Cell[2,42] 1.6680173866916e-06 [GeV]
-Cell[10,42] 7.141679977849e-07 [GeV]
-Cell[1,5] 0.00012617525604878 [GeV]
-Cell[4,13] 2.4531121376867e-06 [GeV]
-### Total energy deposition in calorimeter by a source track in 70 cells : 0.41633414218112 (GeV)
+Cell[7,26] 3.3356988773448e-05 [GeV]
+Cell[0,28] 0.00013446708198626 [GeV]
+Cell[5,39] 3.0117516871542e-09 [GeV]
+Cell[6,25] 0.00033422201201984 [GeV]
+Cell[2,33] 0.00011929196953849 [GeV]
+Cell[10,20] 0.0010370394280915 [GeV]
+Cell[4,34] 0.0021661198411294 [GeV]
+Cell[9,37] 2.8575293254107e-07 [GeV]
+Cell[9,38] 8.5674211732112e-07 [GeV]
+Cell[0,21] 1.0854752488285e-06 [GeV]
+Cell[2,13] 0.0016460891480618 [GeV]
+Cell[2,2] 0.0014627557450937 [GeV]
+Cell[2,3] 1.8187611385656e-07 [GeV]
+Cell[0,19] 0.0002449899109846 [GeV]
+Cell[0,11] 1.9751613479002e-07 [GeV]
+Cell[1,1] 0.0055501856675463 [GeV]
+Cell[1,0] 0.00060992081786139 [GeV]
+Cell[2,1] 0.0016274190484387 [GeV]
+Cell[0,20] 0.00096468864985532 [GeV]
+Cell[0,18] 0.0002353001266423 [GeV]
+Cell[0,17] 0.0010882297868463 [GeV]
+Cell[2,0] 2.7860252885148e-07 [GeV]
+Cell[1,19] 0.00028184158479269 [GeV]
+Cell[1,17] 0.00099106096579453 [GeV]
+Cell[1,16] 0.010532874683753 [GeV]
+Cell[1,45] 0.15564319851785 [GeV]
+Cell[4,3] 0.00081796430875977 [GeV]
+Cell[1,12] 0.0022244474197823 [GeV]
+Cell[1,20] 0.00021318196957031 [GeV]
+Cell[1,18] 0.001023151587631 [GeV]
+Cell[3,36] 4.0899719169829e-06 [GeV]
+Cell[4,2] 7.1049426333047e-07 [GeV]
+Cell[9,17] 0.00096732781737388 [GeV]
+Cell[0,2] 7.9481776538159e-10 [GeV]
+Cell[0,3] 9.0221874415874e-13 [GeV]
+Cell[1,15] 0.29458354606389 [GeV]
+Cell[1,14] 0.37428303588523 [GeV]
+Cell[5,22] 0.00027476721069297 [GeV]
+Cell[2,16] 1.1248630471528e-10 [GeV]
+Cell[7,15] 2.5745939114131e-05 [GeV]
+Cell[2,45] 3.601729037473e-05 [GeV]
+Cell[3,28] 1.5495141269639e-06 [GeV]
+Cell[4,28] 4.4271010215539e-05 [GeV]
+Cell[4,27] 9.8560234039951e-05 [GeV]
+Cell[4,26] 9.8920310847461e-08 [GeV]
+Cell[9,39] 2.0488485461101e-07 [GeV]
+Cell[9,16] 6.8244003359723e-06 [GeV]
+Cell[9,18] 0.0012578753018875 [GeV]
+Cell[3,27] 0.0020783195409747 [GeV]
+Cell[2,14] 0.0049258180722477 [GeV]
+Cell[2,12] 4.2462636690743e-07 [GeV]
+Cell[0,14] 0.001238304000266 [GeV]
+Cell[1,13] 0.00022180674701368 [GeV]
+Cell[2,43] 2.1644518710673e-10 [GeV]
+Cell[0,15] 0.0005886351489296 [GeV]
+Cell[0,13] 3.1088334442302e-06 [GeV]
+Cell[2,15] 0.0021235664660454 [GeV]
+Cell[2,34] 0.005975445276763 [GeV]
+Cell[2,35] 8.4530976144379e-05 [GeV]
+Cell[1,2] 7.449144737825e-05 [GeV]
+Cell[1,3] 0.0031022651318335 [GeV]
+Cell[0,12] 6.0216037270834e-05 [GeV]
+Cell[4,33] 1.2079830543371e-05 [GeV]
+Cell[4,4] 2.6981841074303e-08 [GeV]
+Cell[1,4] 0.00024938073903627 [GeV]
+Cell[5,40] 1.0005883166286e-07 [GeV]
+Cell[4,23] 0.0017392952603294 [GeV]
+Cell[6,46] 0.00051099891 [GeV]
+Cell[1,27] 0.00010873905324843 [GeV]
+Cell[10,19] 5.0878060013702e-06 [GeV]
+### Total energy deposition in calorimeter by a source track in 70 cells : 0.88367195324541 (GeV)
Source track ID 9466 (pi+,0.78149935264734[GeV]) at (-497.67332215139,48.17950206053,-1146.885493761)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[5,24] 0.0011853885837797 [GeV]
-Cell[1,31] 0.0047725410823563 [GeV]
-Cell[2,41] 0.0001188124147011 [GeV]
-Cell[2,26] 0.0068084411989905 [GeV]
-Cell[5,20] 0.0037780152142981 [GeV]
-Cell[5,26] 0.00061223853440242 [GeV]
-Cell[5,15] 8.5644023783971e-10 [GeV]
-Cell[5,16] 6.1234308077474e-09 [GeV]
-Cell[2,22] 0.0002357816789081 [GeV]
-Cell[3,26] 0.0011704388167905 [GeV]
-Cell[2,20] 0.00059654389224602 [GeV]
-Cell[2,21] 0.0029279372812232 [GeV]
-Cell[4,20] 0.00020831773186255 [GeV]
-Cell[3,21] 0.0010536500723565 [GeV]
-Cell[5,18] 3.6842488917955e-05 [GeV]
-Cell[4,17] 3.9633401494257e-06 [GeV]
-Cell[4,18] 5.0737470473905e-09 [GeV]
-Cell[4,16] 3.3407400724172e-07 [GeV]
-Cell[4,25] 0.011153985757981 [GeV]
-Cell[5,19] 0.0008709166453192 [GeV]
-Cell[3,32] 0.00019398242502348 [GeV]
-Cell[3,31] 7.7738150139339e-11 [GeV]
-Cell[3,27] 0.0019116049874254 [GeV]
-Cell[2,27] 0.00064271283450934 [GeV]
-Cell[3,24] 0.0099490492368558 [GeV]
-Cell[3,25] 0.0030161177221006 [GeV]
-Cell[4,24] 0.011014028811973 [GeV]
-Cell[0,10] 0.00059357317004187 [GeV]
-Cell[3,28] 0.000898916054918 [GeV]
-Cell[3,23] 0.023217259968069 [GeV]
-Cell[3,22] 0.26769257221301 [GeV]
-Cell[4,23] 0.084485397389129 [GeV]
-Cell[4,22] 0.0016803309822955 [GeV]
-Cell[5,25] 4.8433910068525e-05 [GeV]
-Cell[5,33] 0.0005200634302455 [GeV]
-Cell[4,33] 0.00022353823928415 [GeV]
-Cell[4,26] 0.0040156781089439 [GeV]
-Cell[4,32] 5.7928924506996e-06 [GeV]
-Cell[1,32] 0.0020211922275645 [GeV]
-Cell[4,14] 0.00028457731288609 [GeV]
-Cell[4,15] 0.00041606415564593 [GeV]
-Cell[4,21] 0.00024007970043138 [GeV]
-Cell[4,27] 0.00024390688952712 [GeV]
-Cell[4,28] 1.8514613998377e-08 [GeV]
-### Total energy deposition in calorimeter by a source track in 44 cells : 0.44884905211666 (GeV)
+Cell[6,6] 5.4595949419308e-05 [GeV]
+Cell[5,32] 2.9991747248914e-07 [GeV]
+Cell[7,47] 3.7543773862126e-05 [GeV]
+Cell[6,32] 0.0028222833998084 [GeV]
+Cell[0,24] 2.4096584672861e-06 [GeV]
+Cell[5,18] 7.7910894788147e-08 [GeV]
+Cell[5,17] 2.0194014715571e-06 [GeV]
+Cell[4,18] 3.4698750200732e-05 [GeV]
+Cell[4,17] 0.00016572538860362 [GeV]
+Cell[4,19] 0.0010245566703386 [GeV]
+Cell[4,21] 2.6174665703365e-05 [GeV]
+Cell[4,20] 0.00031067773631662 [GeV]
+Cell[0,40] 2.1659114689101e-05 [GeV]
+Cell[0,7] 0.016609696441425 [GeV]
+Cell[4,3] 0.00022918485615072 [GeV]
+Cell[6,33] 1.355204290121e-09 [GeV]
+Cell[4,40] 0.00044173921818015 [GeV]
+Cell[3,20] 1.5888991561951e-05 [GeV]
+Cell[3,22] 8.3000035665464e-06 [GeV]
+Cell[1,44] 2.6027551245988e-07 [GeV]
+Cell[2,40] 0.00076669359691971 [GeV]
+Cell[4,2] 0.0013993675270917 [GeV]
+Cell[4,1] 0.00045373740865029 [GeV]
+Cell[2,45] 0.00015063477464014 [GeV]
+Cell[4,26] 0.0018733298939514 [GeV]
+Cell[3,27] 4.3890034576179e-05 [GeV]
+Cell[1,2] 0.00029105880351665 [GeV]
+Cell[1,3] 0.003852655455592 [GeV]
+Cell[4,23] 0.19511030958579 [GeV]
+Cell[4,22] 0.0023250818006991 [GeV]
+Cell[3,24] 0.00029571300489454 [GeV]
+Cell[3,23] 0.0041855700520123 [GeV]
+Cell[4,24] 0.001968922385425 [GeV]
+Cell[6,11] 9.5535692526028e-06 [GeV]
+Cell[6,12] 7.6961902183029e-05 [GeV]
+Cell[7,0] 0.0018536007076755 [GeV]
+Cell[6,5] 4.1130330180749e-05 [GeV]
+Cell[2,44] 8.7005928536428e-06 [GeV]
+Cell[1,39] 0.0021344584763579 [GeV]
+Cell[1,7] 0.042155813292514 [GeV]
+Cell[2,38] 0.0010176725818772 [GeV]
+Cell[2,39] 0.002514849586489 [GeV]
+Cell[1,38] 2.1511239669053e-05 [GeV]
+Cell[2,37] 0.00012082099230395 [GeV]
+Cell[1,40] 0.00054309176736399 [GeV]
+### Total energy deposition in calorimeter by a source track in 45 cells : 0.28502292284133 (GeV)
Source track ID 9469 (pi+,0.50623762127988[GeV]) at (486.15507907715,116.84707564799,-1134.7214549586)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[2,2] 0.00053172164773377 [GeV]
-Cell[2,1] 0.13758741489384 [GeV]
-Cell[2,0] 0.0032385156241541 [GeV]
-Cell[4,1] 0.091080597954322 [GeV]
-Cell[3,1] 0.1868310726523 [GeV]
-### Total energy deposition in calorimeter by a source track in 5 cells : 0.41926932277235 (GeV)
+Cell[7,12] 6.3920831014912e-05 [GeV]
+Cell[7,11] 0.0030453268971048 [GeV]
+Cell[5,34] 5.1464088028297e-07 [GeV]
+Cell[1,31] 9.0915359578503e-08 [GeV]
+Cell[7,13] 0.00076249419747239 [GeV]
+Cell[3,43] 9.6490257419646e-09 [GeV]
+Cell[8,17] 0.002109681260308 [GeV]
+Cell[5,21] 2.423773821647e-09 [GeV]
+Cell[7,32] 0.00018457613116497 [GeV]
+Cell[6,13] 5.0679499850048e-08 [GeV]
+Cell[1,25] 0.0044969913816884 [GeV]
+Cell[1,24] 5.8523149289158e-07 [GeV]
+Cell[0,24] 1.181906554848e-10 [GeV]
+Cell[5,18] 2.1251616999507e-10 [GeV]
+Cell[2,2] 4.345725942585e-06 [GeV]
+Cell[2,3] 0.00039832173344314 [GeV]
+Cell[4,18] 3.0741270809358e-05 [GeV]
+Cell[4,17] 1.8052624113807e-08 [GeV]
+Cell[5,19] 0.00091005939217681 [GeV]
+Cell[1,30] 1.0120158739255e-06 [GeV]
+Cell[1,29] 1.4022050891072e-08 [GeV]
+Cell[0,25] 4.356843419373e-11 [GeV]
+Cell[4,47] 1.7761514754966e-08 [GeV]
+Cell[4,0] 0.00023172976578326 [GeV]
+Cell[4,2] 9.7923038993031e-08 [GeV]
+Cell[4,1] 0.14371311653615 [GeV]
+Cell[4,27] 8.2230055704713e-07 [GeV]
+Cell[4,26] 0.00083633440593985 [GeV]
+Cell[3,27] 3.9116118859965e-06 [GeV]
+Cell[5,40] 4.6293245395645e-07 [GeV]
+Cell[6,12] 9.7621561686083e-05 [GeV]
+Cell[6,5] 1.7462945197622e-07 [GeV]
+Cell[3,2] 0.000646436909199 [GeV]
+Cell[3,1] 0.22418504983263 [GeV]
+Cell[3,0] 0.0026513022637743 [GeV]
+Cell[3,4] 2.1679588826373e-08 [GeV]
+Cell[3,3] 7.4595559563022e-06 [GeV]
+Cell[4,5] 9.3256539257709e-06 [GeV]
+Cell[7,4] 2.2733352739124e-07 [GeV]
+Cell[6,4] 4.5493106881622e-08 [GeV]
+Cell[1,36] 3.7226127460599e-09 [GeV]
+Cell[5,36] 2.754790475592e-07 [GeV]
+Cell[3,44] 2.352666342631e-09 [GeV]
+Cell[4,45] 1.071923179552e-09 [GeV]
+Cell[8,34] 7.0834994801771e-05 [GeV]
+Cell[3,38] 4.3745695089456e-05 [GeV]
+Cell[6,20] 0.0018245864357903 [GeV]
+Cell[5,20] 0.00084829315260764 [GeV]
+Cell[5,16] 0.0012834722742712 [GeV]
+Cell[5,15] 0.00051099891 [GeV]
+### Total energy deposition in calorimeter by a source track in 50 cells : 0.38897512906496 (GeV)
Source track ID 9279 (anti_proton,1.6909216081874[GeV]) at (-493.69847389526,79.131642681646,-1169.8536336278)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[6,37] 0.00027149473902875 [GeV]
-Cell[5,35] 0.00087860521279073 [GeV]
-Cell[4,6] 0.0010978267121023 [GeV]
-Cell[5,34] 0.00014555975315629 [GeV]
-Cell[7,6] 6.0651422245428e-07 [GeV]
-Cell[5,24] 0.0073216470124172 [GeV]
-Cell[3,34] 0.0010161513732415 [GeV]
-Cell[1,6] 0.0045894932462339 [GeV]
-Cell[7,13] 1.0240712726954e-06 [GeV]
-Cell[3,43] 0.0023477726101879 [GeV]
-Cell[6,6] 1.2468690401874e-06 [GeV]
-Cell[6,38] 1.235130985151e-05 [GeV]
-Cell[5,27] 0.00013905139737619 [GeV]
-Cell[5,26] 9.9638523385011e-06 [GeV]
-Cell[12,29] 1.9089157285634e-06 [GeV]
-Cell[1,7] 0.16749616974107 [GeV]
-Cell[6,30] 0.00072630866476004 [GeV]
-Cell[5,8] 3.8255292488429e-06 [GeV]
-Cell[2,22] 0.0035852849060947 [GeV]
-Cell[5,6] 1.9114746828564e-07 [GeV]
-Cell[1,10] 0.11509085588514 [GeV]
-Cell[1,28] 1.1259707971476e-06 [GeV]
-Cell[3,20] 3.8789844634834e-05 [GeV]
-Cell[4,20] 0.00070710438438079 [GeV]
-Cell[3,21] 0.0024941312540129 [GeV]
-Cell[2,6] 0.0002086653728778 [GeV]
-Cell[2,7] 0.0010111323698842 [GeV]
-Cell[2,8] 0.0049036338102226 [GeV]
-Cell[10,28] 1.8950587705717e-05 [GeV]
-Cell[4,17] 0.00055024516294509 [GeV]
-Cell[4,25] 0.00052148664883816 [GeV]
-Cell[1,35] 0.00028767841968065 [GeV]
-Cell[5,38] 1.9214826170355e-06 [GeV]
-Cell[1,13] 0.0098604089044755 [GeV]
-Cell[2,13] 0.011496863308036 [GeV]
-Cell[3,12] 0.015850774332124 [GeV]
-Cell[1,0] 0.00055244293478673 [GeV]
-Cell[0,29] 2.3363842919935e-06 [GeV]
-Cell[5,7] 1.3416865840554e-11 [GeV]
-Cell[3,24] 0.0013266694120838 [GeV]
-Cell[1,11] 0.078255896090771 [GeV]
-Cell[1,9] 6.0374084987303e-05 [GeV]
-Cell[4,24] 7.5878514775013e-05 [GeV]
-Cell[3,11] 0.035533965676281 [GeV]
-Cell[4,7] 9.6928912482236e-05 [GeV]
-Cell[6,45] 1.3882375787944e-07 [GeV]
-Cell[1,47] 8.4756065211877e-07 [GeV]
-Cell[0,11] 0.00054132135546862 [GeV]
-Cell[0,10] 0.0018188923883381 [GeV]
-Cell[3,23] 0.73510964397905 [GeV]
-Cell[3,22] 0.37440736996445 [GeV]
-Cell[4,23] 0.0075597504774149 [GeV]
-Cell[4,22] 0.26228778894014 [GeV]
-Cell[5,25] 0.010488048711322 [GeV]
-Cell[3,8] 0.0030888342404065 [GeV]
-Cell[3,7] 0.0075253002563068 [GeV]
-Cell[1,46] 0.00070254176564974 [GeV]
-Cell[0,9] 0.00057243578822541 [GeV]
-Cell[1,12] 0.14412976617504 [GeV]
-Cell[3,18] 2.588371484137e-05 [GeV]
-Cell[1,5] 0.0020458868670615 [GeV]
-Cell[4,21] 0.0013323153928569 [GeV]
-Cell[3,17] 0.00032156118823514 [GeV]
-Cell[0,8] 0.0022655617471916 [GeV]
-Cell[7,5] 9.2679774388671e-07 [GeV]
-Cell[5,13] 0.0024418971315118 [GeV]
-Cell[6,18] 0.00051099891 [GeV]
-Cell[4,4] 0.0037787461639647 [GeV]
-Cell[0,40] 0.00085730226179068 [GeV]
-Cell[1,33] 0.0023455584084987 [GeV]
-Cell[5,22] 5.4774223826826e-08 [GeV]
-Cell[7,15] 0.00019685065447698 [GeV]
-Cell[0,39] 1.6707532049622e-06 [GeV]
-Cell[3,13] 0.00011590761694752 [GeV]
-Cell[0,7] 0.00095726326750557 [GeV]
-Cell[2,46] 0.00051099891 [GeV]
-Cell[1,8] 0.18545988217952 [GeV]
-### Total energy deposition in calorimeter by a source track in 77 cells : 2.2199966905057 (GeV)
+Cell[8,9] 0.0083682206676266 [GeV]
+Cell[8,8] 0.0023765917674696 [GeV]
+Cell[7,8] 0.00025272790084212 [GeV]
+Cell[8,12] 0.00027909700837531 [GeV]
+Cell[6,42] 0.0011932943242588 [GeV]
+Cell[8,7] 0.00060952252029878 [GeV]
+Cell[7,7] 0.0042730460430841 [GeV]
+Cell[7,34] 8.2166221023954e-06 [GeV]
+Cell[4,6] 8.1278849393129e-09 [GeV]
+Cell[5,0] 2.1143556750758e-08 [GeV]
+Cell[6,2] 0.0010941069835304 [GeV]
+Cell[6,36] 0.001348591731573 [GeV]
+Cell[1,31] 1.2603608018253e-05 [GeV]
+Cell[2,41] 0.00035544181247326 [GeV]
+Cell[6,43] 0.0011759363859085 [GeV]
+Cell[4,30] 0.00045475871481801 [GeV]
+Cell[3,40] 2.1026196829098e-05 [GeV]
+Cell[7,33] 0.0060953084499097 [GeV]
+Cell[8,33] 0.0012829427421448 [GeV]
+Cell[6,25] 5.2689703006763e-06 [GeV]
+Cell[2,31] 6.5014285180951e-05 [GeV]
+Cell[8,44] 3.9581209421158e-12 [GeV]
+Cell[5,21] 0.00065796072774458 [GeV]
+Cell[15,38] 0.00016442353221282 [GeV]
+Cell[15,41] 0.00010207917145392 [GeV]
+Cell[10,5] 0.043078872320763 [GeV]
+Cell[9,44] 0.00011081270671673 [GeV]
+Cell[9,45] 5.2386894822121e-12 [GeV]
+Cell[8,45] 4.1014083253685e-06 [GeV]
+Cell[9,2] 0.00022324474005544 [GeV]
+Cell[1,25] 2.9894668471002e-05 [GeV]
+Cell[11,44] 0.00051099891 [GeV]
+Cell[1,24] 0.00018159233393726 [GeV]
+Cell[4,44] 0.00037814220856558 [GeV]
+Cell[5,19] 6.63262384478e-06 [GeV]
+Cell[4,19] 6.8546729721675e-08 [GeV]
+Cell[4,21] 0.0028761963403805 [GeV]
+Cell[3,17] 0.00051099891 [GeV]
+Cell[4,20] 0.0026155391230296 [GeV]
+Cell[6,45] 3.3868629153289e-05 [GeV]
+Cell[1,30] 0.00031722536296661 [GeV]
+Cell[0,46] 0.00089987073037447 [GeV]
+Cell[0,43] 2.0909704006044e-05 [GeV]
+Cell[1,19] 0.0012874700622073 [GeV]
+Cell[4,47] 4.52733749853e-07 [GeV]
+Cell[2,25] 0.0010350003857413 [GeV]
+Cell[1,28] 0.00034355588987319 [GeV]
+Cell[1,21] 0.10176273812974 [GeV]
+Cell[1,20] 0.0034136977620699 [GeV]
+Cell[1,22] 0.0004705070924233 [GeV]
+Cell[4,40] 3.4580926876515e-07 [GeV]
+Cell[3,20] 2.8674153352767e-05 [GeV]
+Cell[4,0] 5.8464633364679e-05 [GeV]
+Cell[3,22] 0.94310567775362 [GeV]
+Cell[3,21] 0.037125060923562 [GeV]
+Cell[2,23] 0.0018238810973392 [GeV]
+Cell[4,46] 0.001838500181328 [GeV]
+Cell[2,40] 0.016610376557737 [GeV]
+Cell[3,36] 8.8909437181428e-08 [GeV]
+Cell[5,44] 0.0064753228696097 [GeV]
+Cell[5,22] 9.373702130506e-05 [GeV]
+Cell[4,26] 3.2508214956124e-06 [GeV]
+Cell[2,12] 2.3394950025249e-05 [GeV]
+Cell[4,23] 0.042040500832634 [GeV]
+Cell[6,46] 0.00028310250942616 [GeV]
+Cell[4,22] 0.18787640812412 [GeV]
+Cell[3,24] 0.011407240674281 [GeV]
+Cell[3,23] 0.26829476816581 [GeV]
+Cell[4,24] 0.0017205809075705 [GeV]
+Cell[2,37] 0.001365985044326 [GeV]
+Cell[3,1] 0.00058044555686854 [GeV]
+Cell[3,0] 0.0048202554766711 [GeV]
+Cell[3,3] 3.1423729512881e-07 [GeV]
+Cell[4,5] 0.00042799159968047 [GeV]
+Cell[7,4] 0.00037613142937993 [GeV]
+Cell[5,36] 0.0047982252835762 [GeV]
+Cell[3,44] 1.4404535934318e-06 [GeV]
+Cell[4,45] 0.00033619048926567 [GeV]
+Cell[8,34] 0.00016759602810851 [GeV]
+Cell[3,38] 0.00021517783982022 [GeV]
+Cell[4,25] 0.0012041715085664 [GeV]
+Cell[6,24] 1.4454080461292e-05 [GeV]
+Cell[5,30] 1.0257690126309e-05 [GeV]
+Cell[3,45] 6.0756010820569e-05 [GeV]
+Cell[3,37] 8.6815372986848e-06 [GeV]
+Cell[9,5] 7.4505805969238e-10 [GeV]
+Cell[2,9] 0.0052984479105338 [GeV]
+Cell[1,9] 5.4786275893548e-07 [GeV]
+Cell[1,10] 0.0003481361947705 [GeV]
+Cell[2,10] 1.341438860436e-09 [GeV]
+Cell[5,45] 0.0021605731681886 [GeV]
+Cell[2,42] 1.0749613461712e-05 [GeV]
+Cell[2,24] 0.0067279807678588 [GeV]
+Cell[3,25] 0.0043288971763301 [GeV]
+Cell[4,41] 0.00123891187891 [GeV]
+Cell[3,39] 6.9331008921836e-07 [GeV]
+Cell[4,39] 8.8163028522104e-10 [GeV]
+Cell[4,42] 0.00054996851780061 [GeV]
+Cell[5,37] 0.0038642623078995 [GeV]
+Cell[2,28] 2.5794418586884e-05 [GeV]
+Cell[1,23] 0.00031695396587565 [GeV]
+Cell[12,45] 0.0020176186319588 [GeV]
+Cell[15,37] 0.00018204537253575 [GeV]
+Cell[11,5] 0.00051392156365814 [GeV]
+Cell[1,41] 0.05094489477407 [GeV]
+Cell[4,38] 0.00039099020575338 [GeV]
+Cell[7,5] 0.0057376628470466 [GeV]
+Cell[8,1] 0.00093209599342936 [GeV]
+Cell[8,20] 0.00078382071149719 [GeV]
+Cell[6,3] 6.09443342546e-06 [GeV]
+Cell[6,44] 2.7385204930397e-09 [GeV]
+Cell[5,41] 0.00032065482590585 [GeV]
+Cell[0,42] 0.0017537331786357 [GeV]
+Cell[2,22] 0.059746590777229 [GeV]
+Cell[2,21] 0.10397209178899 [GeV]
+Cell[2,20] 2.2430714151369e-06 [GeV]
+Cell[2,19] 3.4793255736076e-07 [GeV]
+### Total energy deposition in calorimeter by a source track in 117 cells : 1.9756827808389 (GeV)
Source track ID 9280 (neutron,1.4783692592721[GeV]) at (458.5309876774,199.3723484829,-606.56000985403)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[8,7] 0.00079492190112796 [GeV]
-Cell[7,11] 4.4136462881397e-05 [GeV]
-Cell[5,35] 1.4665624803456e-10 [GeV]
-Cell[7,27] 4.2043533176184e-07 [GeV]
-Cell[8,5] 2.2019376538879e-05 [GeV]
-Cell[7,6] 0.0026346857713863 [GeV]
-Cell[6,29] 8.1809735274874e-06 [GeV]
-Cell[6,2] 0.0043928393226237 [GeV]
-Cell[9,6] 4.0424895309229e-05 [GeV]
-Cell[1,6] 2.9979247540268e-07 [GeV]
-Cell[6,36] 2.1823920325232e-06 [GeV]
-Cell[3,43] 0.00036638914465914 [GeV]
-Cell[7,47] 0.0024496187635843 [GeV]
-Cell[10,27] 0.0016717877830377 [GeV]
-Cell[8,6] 0.0010729951053752 [GeV]
-Cell[7,29] 9.5779569164733e-11 [GeV]
-Cell[8,33] 0.00036987113395989 [GeV]
-Cell[2,26] 5.2934899402317e-05 [GeV]
-Cell[5,21] 0.0011228939159944 [GeV]
-Cell[7,18] 1.0893368744291e-07 [GeV]
-Cell[7,28] 3.0748143667893e-05 [GeV]
-Cell[5,26] 1.392591802869e-07 [GeV]
-Cell[5,11] 0.0010180027677952 [GeV]
-Cell[8,34] 8.877900090738e-07 [GeV]
-Cell[8,35] 8.9431880041957e-08 [GeV]
-Cell[5,46] 3.0428945319727e-06 [GeV]
-Cell[5,45] 2.9591986123705e-05 [GeV]
-Cell[6,47] 0.00054851655351071 [GeV]
-Cell[6,46] 4.5923854049761e-06 [GeV]
-Cell[9,5] 0.0012341001698912 [GeV]
-Cell[9,4] 2.9596024251077e-06 [GeV]
-Cell[4,45] 0.00042132537658108 [GeV]
-Cell[4,46] 1.8869921332225e-05 [GeV]
-Cell[1,7] 0.00069540439800755 [GeV]
-Cell[6,15] 0.0008510964473943 [GeV]
-Cell[6,31] 0.00057909894929173 [GeV]
-Cell[6,30] 0.00031979599275837 [GeV]
-Cell[5,30] 0.0028039805113674 [GeV]
-Cell[5,29] 0.00096847295172146 [GeV]
-Cell[5,36] 5.4055626299032e-07 [GeV]
-Cell[5,42] 5.2283988858107e-05 [GeV]
-Cell[4,10] 3.0843762331642e-05 [GeV]
-Cell[2,15] 5.1729973157535e-06 [GeV]
-Cell[4,20] 6.5907886018977e-06 [GeV]
-Cell[0,19] 0.0018790421502379 [GeV]
-Cell[0,21] 0.00036821231170029 [GeV]
-Cell[0,20] 8.3020570660665e-05 [GeV]
-Cell[0,22] 2.1757541048828e-08 [GeV]
-Cell[4,17] 2.246905163247e-05 [GeV]
-Cell[1,35] 0.003017407005966 [GeV]
-Cell[4,41] 3.0691814026795e-05 [GeV]
-Cell[1,40] 2.626456602593e-05 [GeV]
-Cell[2,1] 0.0011019742407138 [GeV]
-Cell[2,0] 0.00054923982088973 [GeV]
-Cell[2,14] 9.4527436885983e-08 [GeV]
-Cell[2,27] 0.0033169138841289 [GeV]
-Cell[2,28] 0.0014076671422101 [GeV]
-Cell[3,42] 0.0029853455269946 [GeV]
-Cell[3,11] 5.6876863527577e-06 [GeV]
-Cell[7,46] 6.906826805789e-06 [GeV]
-Cell[6,45] 0.0075116027223449 [GeV]
-Cell[5,25] 3.9661885239184e-08 [GeV]
-Cell[7,3] 0.0095176138633822 [GeV]
-Cell[7,4] 0.0082504731730106 [GeV]
-Cell[7,2] 0.0092728348477518 [GeV]
-Cell[5,2] 4.4992359558819e-05 [GeV]
-Cell[8,47] 0.00028215283533234 [GeV]
-Cell[7,5] 0.0050047290439694 [GeV]
-Cell[7,15] 3.1575710128209e-06 [GeV]
-Cell[6,3] 0.17945236489246 [GeV]
-Cell[12,11] 4.7719987919436e-05 [GeV]
-Cell[13,11] 8.6781954206117e-05 [GeV]
-Cell[9,40] 2.4234775017248e-05 [GeV]
-Cell[8,46] 0.00027426606837878 [GeV]
-Cell[19,12] 0.0014936903360938 [GeV]
-Cell[3,38] 4.7536078840494e-05 [GeV]
-Cell[7,1] 0.00040606214742002 [GeV]
-Cell[6,4] 0.0047427552023483 [GeV]
-Cell[8,18] 2.749876875896e-06 [GeV]
-Cell[6,1] 0.002945543319632 [GeV]
-Cell[7,19] 0.00015527275337183 [GeV]
-Cell[6,14] 0.0032869141514084 [GeV]
-Cell[6,16] 1.1641978551324e-05 [GeV]
-Cell[7,16] 1.0541048027335e-08 [GeV]
-Cell[6,13] 0.0055457780213887 [GeV]
-Cell[7,0] 0.00041482511553556 [GeV]
-Cell[5,10] 0.00015624451085932 [GeV]
-Cell[3,41] 0.0015317971418408 [GeV]
-Cell[8,4] 1.5994563000277e-08 [GeV]
-### Total energy deposition in calorimeter by a source track in 89 cells : 0.27998761868095 (GeV)
+Cell[6,2] 0.003572236433605 [GeV]
+Cell[4,44] 2.6201824657619e-06 [GeV]
+Cell[5,6] 0.00091779665997279 [GeV]
+Cell[5,46] 2.9186146662141e-08 [GeV]
+Cell[6,1] 4.3966446258537e-05 [GeV]
+Cell[1,16] 0.0005649106310392 [GeV]
+Cell[4,3] 2.6359227740613e-07 [GeV]
+Cell[4,2] 5.755907802552e-05 [GeV]
+Cell[1,15] 2.5686847470752e-07 [GeV]
+Cell[2,15] 2.6678190567964e-07 [GeV]
+Cell[6,5] 3.4821601525437e-07 [GeV]
+Cell[6,4] 0.011887054064945 [GeV]
+Cell[4,45] 0.00010059463026789 [GeV]
+Cell[5,45] 7.3006745781186e-05 [GeV]
+Cell[6,3] 0.013307437029189 [GeV]
+Cell[5,3] 0.26684134197484 [GeV]
+Cell[5,2] 0.0064051001940421 [GeV]
+Cell[5,4] 0.013558591727691 [GeV]
+Cell[5,1] 0.0016437194796105 [GeV]
+Cell[7,21] 5.7019996282179e-05 [GeV]
+Cell[4,32] 0.0021906644062949 [GeV]
+Cell[5,5] 0.0014199674563007 [GeV]
+Cell[5,7] 0.0020662421730759 [GeV]
+### Total energy deposition in calorimeter by a source track in 23 cells : 0.32471099395451 (GeV)
Source track ID 9281 (pi+,0.5349842174364[GeV]) at (99.054507695404,490.08999633253,295.62516001154)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[7,8] 2.2690440346196e-08 [GeV]
-Cell[7,7] 0.00010198461665823 [GeV]
-Cell[6,19] 0.0005043715552622 [GeV]
-Cell[8,29] 0.0021381991955248 [GeV]
-Cell[6,8] 8.9257166416701e-07 [GeV]
-Cell[9,33] 0.0022318731998484 [GeV]
-Cell[9,20] 2.2519269899931e-05 [GeV]
-Cell[7,29] 0.00025953879222561 [GeV]
-Cell[8,43] 7.7336953836493e-07 [GeV]
-Cell[12,38] 9.5942537654992e-08 [GeV]
-Cell[11,36] 7.6713930767482e-06 [GeV]
-Cell[7,42] 1.4853997969226e-05 [GeV]
-Cell[7,43] 7.3884112455289e-06 [GeV]
-Cell[8,42] 1.6489510079737e-05 [GeV]
-Cell[11,32] 4.0448502637446e-05 [GeV]
-Cell[15,30] 7.6054988894612e-06 [GeV]
-Cell[13,0] 2.6730801704161e-05 [GeV]
-Cell[10,21] 0.00032009133096233 [GeV]
-Cell[12,0] 9.0043825168323e-05 [GeV]
-Cell[12,5] 8.270755643025e-09 [GeV]
-Cell[12,7] 9.3305496848188e-06 [GeV]
-Cell[15,29] 1.7558027175255e-06 [GeV]
-Cell[13,37] 0.00037172520794137 [GeV]
-Cell[11,26] 3.6284826637711e-06 [GeV]
-Cell[15,46] 0.0027697771426285 [GeV]
-Cell[14,24] 3.6949722649297e-05 [GeV]
-Cell[11,11] 0.00061055887880275 [GeV]
-Cell[10,2] 7.5786374509335e-10 [GeV]
-Cell[10,34] 2.2160899243318e-07 [GeV]
-Cell[6,33] 2.3786940171249e-06 [GeV]
-Cell[5,41] 7.6870241229699e-05 [GeV]
-Cell[4,20] 1.8508005268814e-07 [GeV]
-Cell[4,19] 0.0032590777777822 [GeV]
-Cell[10,18] 0.00019218342087879 [GeV]
-Cell[12,36] 2.0594130705717e-05 [GeV]
-Cell[4,25] 0.0001244662473963 [GeV]
-Cell[4,41] 0.00037190897268192 [GeV]
-Cell[11,10] 0.17871562314888 [GeV]
-Cell[11,9] 0.010797938287303 [GeV]
-Cell[11,8] 0.00093320832678751 [GeV]
-Cell[10,11] 0.00097906537927383 [GeV]
-Cell[4,24] 5.5534115603109e-05 [GeV]
-Cell[3,44] 8.7277250031548e-09 [GeV]
-Cell[7,45] 9.277428034693e-10 [GeV]
-Cell[5,14] 4.7582043334842e-06 [GeV]
-Cell[6,34] 0.00051805656136171 [GeV]
-Cell[4,26] 9.5102195018285e-05 [GeV]
-Cell[6,18] 4.9818580737337e-07 [GeV]
-Cell[2,46] 8.4530960884877e-06 [GeV]
-Cell[12,11] 0.001953131492266 [GeV]
-Cell[13,11] 0.00021179234862905 [GeV]
-Cell[8,18] 0.0019256259289104 [GeV]
-Cell[6,20] 9.7077614327645e-08 [GeV]
-Cell[10,15] 2.1887727780268e-07 [GeV]
-Cell[9,37] 1.663189032115e-07 [GeV]
-Cell[10,14] 0.00016979511732677 [GeV]
-Cell[13,44] 0.0011342442552132 [GeV]
-Cell[13,45] 3.3732316296664e-08 [GeV]
-Cell[18,36] 0.00062523080283688 [GeV]
-Cell[18,37] 0.00030952495786187 [GeV]
-Cell[18,35] 0.00010808268559163 [GeV]
-Cell[10,9] 0.00069490266146761 [GeV]
-Cell[10,8] 1.1283711717851e-05 [GeV]
-Cell[10,12] 9.5034611877054e-07 [GeV]
-Cell[16,18] 0.00012014991836077 [GeV]
-Cell[16,19] 0.00035537381644269 [GeV]
-Cell[10,32] 0.0010402659892885 [GeV]
-Cell[11,37] 0.0049756820987724 [GeV]
-Cell[4,42] 0.0062477785253276 [GeV]
-Cell[4,43] 0.0013491201423765 [GeV]
-Cell[4,44] 1.1231480852302e-05 [GeV]
-Cell[10,19] 0.0022382057568811 [GeV]
-Cell[9,19] 2.3577739198117e-06 [GeV]
-Cell[10,17] 1.3612586826639e-09 [GeV]
-Cell[9,21] 0.00170940150375 [GeV]
-Cell[7,35] 4.5007224252913e-06 [GeV]
-Cell[15,23] 0.0042862126168046 [GeV]
-Cell[15,22] 0.00012577865550338 [GeV]
-Cell[14,22] 0.0014014005559773 [GeV]
-Cell[11,12] 0.0048196077712237 [GeV]
-Cell[11,13] 0.0012653787868678 [GeV]
-Cell[11,14] 9.8553609063856e-08 [GeV]
-Cell[12,2] 0.0020233789269941 [GeV]
-Cell[12,3] 0.00015689524242782 [GeV]
-Cell[12,4] 0.0020589527654961 [GeV]
-Cell[12,37] 3.0604503663653e-05 [GeV]
-Cell[12,39] 5.2869925127652e-07 [GeV]
-Cell[12,1] 0.00094534655799691 [GeV]
-Cell[18,13] 4.1079559188802e-05 [GeV]
-Cell[12,10] 0.0030055247203042 [GeV]
-Cell[13,10] 0.012241177932794 [GeV]
-Cell[12,9] 0.0020068912745575 [GeV]
-Cell[13,9] 0.0037057589456388 [GeV]
-### Total energy deposition in calorimeter by a source track in 93 cells : 0.26906522809271 (GeV)
+Cell[10,7] 0.0027673736770208 [GeV]
+Cell[11,9] 0.16964293900135 [GeV]
+Cell[11,8] 0.22990502616914 [GeV]
+Cell[11,10] 0.066485023829935 [GeV]
+Cell[11,5] 1.0381815195615e-07 [GeV]
+Cell[11,7] 0.0013156144349743 [GeV]
+Cell[10,8] 0.00089924610595449 [GeV]
+Cell[12,8] 0.0015451444845324 [GeV]
+Cell[12,7] 1.2899170542369e-05 [GeV]
+Cell[11,6] 0.00098781847651549 [GeV]
+Cell[10,6] 0.0024969913706627 [GeV]
+### Total energy deposition in calorimeter by a source track in 11 cells : 0.47605818053879 (GeV)
Source track ID 9282 (kaon-,1.5177199858043[GeV]) at (462.43510677874,-190.14145265705,440.74422550138)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[11,46] 0.00089070574729861 [GeV]
-Cell[13,47] 0.0088003087556141 [GeV]
-Cell[13,12] 0.0060650049965418 [GeV]
-Cell[11,34] 4.4474863796495e-05 [GeV]
-Cell[10,33] 5.5580162734259e-06 [GeV]
-Cell[4,12] 1.0663811963241e-08 [GeV]
-Cell[12,32] 8.2239572948311e-06 [GeV]
-Cell[13,27] 6.480450683739e-06 [GeV]
-Cell[14,34] 0.00096012369853759 [GeV]
-Cell[13,0] 0.0050773728259048 [GeV]
-Cell[11,20] 0.0010759855582632 [GeV]
-Cell[13,46] 0.014433060139003 [GeV]
-Cell[14,10] 4.3429450015537e-06 [GeV]
-Cell[11,45] 0.00057371753183325 [GeV]
-Cell[14,33] 9.225087869936e-05 [GeV]
-Cell[12,28] 0.0011153765040354 [GeV]
-Cell[15,42] 2.4240011611255e-05 [GeV]
-Cell[13,43] 0.0031945822226423 [GeV]
-Cell[14,44] 1.0516790098336e-08 [GeV]
-Cell[12,47] 0.010888113018637 [GeV]
-Cell[12,0] 0.006310942091791 [GeV]
-Cell[11,47] 0.0038385004849239 [GeV]
-Cell[11,0] 1.4803088521376e-06 [GeV]
-Cell[15,6] 0.00078639654043548 [GeV]
-Cell[16,7] 8.2775022747228e-09 [GeV]
-Cell[16,6] 0.00010316711566168 [GeV]
-Cell[13,42] 0.0014755710712593 [GeV]
-Cell[14,25] 5.0090602599084e-10 [GeV]
-Cell[14,26] 0.00026665595614372 [GeV]
-Cell[16,28] 4.5063400466461e-06 [GeV]
-Cell[12,29] 0.00018478103807388 [GeV]
-Cell[12,30] 0.00081712059760537 [GeV]
-Cell[12,24] 0.0018497940369347 [GeV]
-Cell[13,36] 1.1100041447207e-05 [GeV]
-Cell[5,18] 4.9149239202961e-08 [GeV]
-Cell[10,10] 1.4092083263449e-05 [GeV]
-Cell[10,11] 4.9954906253674e-05 [GeV]
-Cell[11,42] 0.00053200557763228 [GeV]
-Cell[12,42] 1.13679561764e-10 [GeV]
-Cell[13,44] 0.01104632806366 [GeV]
-Cell[13,45] 0.028469776879506 [GeV]
-Cell[16,18] 0.00022891235039992 [GeV]
-Cell[16,19] 0.0058205941559062 [GeV]
-Cell[10,32] 2.0304084464442e-06 [GeV]
-Cell[11,12] 5.666981858667e-06 [GeV]
-Cell[12,1] 0.00011810856517695 [GeV]
-Cell[12,45] 0.43181228607353 [GeV]
-Cell[12,44] 0.30850620293879 [GeV]
-Cell[12,43] 0.0056567924868451 [GeV]
-Cell[14,36] 0.0010282569089677 [GeV]
-Cell[11,15] 7.0445816527354e-05 [GeV]
-Cell[11,21] 0.0012122278817784 [GeV]
-Cell[11,19] 3.259681398049e-08 [GeV]
-Cell[12,46] 0.044606589184404 [GeV]
-Cell[14,47] 0.00041954401033581 [GeV]
-Cell[14,0] 5.8107191227919e-07 [GeV]
-Cell[13,1] 8.6029190242698e-08 [GeV]
-Cell[11,44] 0.0013367824685829 [GeV]
-Cell[11,43] 0.0015342641396882 [GeV]
-Cell[16,13] 0.0020616115176986 [GeV]
-Cell[15,33] 7.5556967885859e-08 [GeV]
-Cell[12,41] 0.00076197658237204 [GeV]
-Cell[17,11] 6.3313185237348e-06 [GeV]
-Cell[14,11] 1.4972581557231e-05 [GeV]
-Cell[13,41] 0.0005282203883106 [GeV]
-Cell[13,13] 0.0039651075078817 [GeV]
-Cell[12,40] 0.00097361256795798 [GeV]
-Cell[14,45] 1.020523929003e-05 [GeV]
-Cell[14,6] 8.5476151525654e-09 [GeV]
-Cell[4,11] 4.0447823861314e-06 [GeV]
-Cell[18,9] 1.6450803843327e-05 [GeV]
-Cell[16,45] 5.8867739085144e-08 [GeV]
-Cell[10,43] 0.00044084607335958 [GeV]
-Cell[16,21] 3.4970725362655e-05 [GeV]
-Cell[16,20] 0.000484010181038 [GeV]
-### Total energy deposition in calorimeter by a source track in 75 cells : 0.92068408178815 (GeV)
+Cell[13,46] 0.0013498952821097 [GeV]
+Cell[17,46] 0.0046255209383858 [GeV]
+Cell[14,43] 0.00033887367905709 [GeV]
+Cell[13,43] 2.1084196076799e-06 [GeV]
+Cell[14,44] 0.013389987308805 [GeV]
+Cell[13,45] 0.2872152254398 [GeV]
+Cell[12,45] 0.21659656866726 [GeV]
+Cell[14,45] 0.51125128059874 [GeV]
+Cell[14,46] 0.0036183254558027 [GeV]
+Cell[15,46] 0.0067521270827108 [GeV]
+Cell[15,45] 0.031816030623706 [GeV]
+Cell[13,44] 0.0024466559886824 [GeV]
+Cell[16,45] 0.011733458718614 [GeV]
+Cell[17,45] 0.03302038898732 [GeV]
+Cell[16,46] 0.002401814591228 [GeV]
+Cell[17,44] 0.00088263123913475 [GeV]
+Cell[16,44] 0.00027707938617925 [GeV]
+Cell[17,47] 5.2359133086497e-05 [GeV]
+Cell[12,46] 3.0884698062437e-05 [GeV]
+Cell[12,44] 4.0745362639427e-12 [GeV]
+Cell[15,44] 0.0053894036394928 [GeV]
+Cell[15,47] 4.0200370070051e-05 [GeV]
+Cell[18,45] 4.3003302998841e-06 [GeV]
+### Total energy deposition in calorimeter by a source track in 23 cells : 1.1332351205822 (GeV)
Source track ID 9400 (gamma,0.23378010273678[GeV]) at (499.39194190611,24.651335851191,861.27119505885)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[13,47] 0.0012726221546905 [GeV]
-Cell[10,32] 0.0009687078206001 [GeV]
-Cell[11,12] 0.00051099891 [GeV]
-Cell[14,47] 0.0059054179572955 [GeV]
-Cell[14,0] 0.22420282081341 [GeV]
-Cell[14,38] 0.00040853617078564 [GeV]
-Cell[18,16] 0.00017991106886533 [GeV]
-### Total energy deposition in calorimeter by a source track in 7 cells : 0.23344901489565 (GeV)
+Cell[12,31] 0.0023920364588459 [GeV]
+Cell[12,27] 0.00048486383751691 [GeV]
+Cell[15,41] 0.00076870939650877 [GeV]
+Cell[13,37] 0.00030350442757464 [GeV]
+Cell[14,45] 0.00075794496568219 [GeV]
+Cell[14,0] 0.21853936702928 [GeV]
+Cell[14,1] 0.00093877959604543 [GeV]
+Cell[16,47] 0.0017585159592783 [GeV]
+Cell[14,47] 0.0063714494293702 [GeV]
+Cell[16,34] 0.00051099891 [GeV]
+Cell[17,41] 0.00095393272667922 [GeV]
+### Total energy deposition in calorimeter by a source track in 11 cells : 0.23378010273678 (GeV)
Source track ID 9401 (gamma,0.24889356279397[GeV]) at (220.29246603034,-448.85546605814,830.38551489693)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[15,39] 0.00070672179221544 [GeV]
-Cell[14,40] 0.0029208979420857 [GeV]
-Cell[14,39] 0.24247092199796 [GeV]
-Cell[12,4] 0.001442922178102 [GeV]
-### Total energy deposition in calorimeter by a source track in 4 cells : 0.24754146391037 (GeV)
+Cell[14,40] 0.0018956733429655 [GeV]
+Cell[14,39] 0.23700192056415 [GeV]
+Cell[13,46] 0.0032368503166088 [GeV]
+Cell[14,38] 0.0036212633643173 [GeV]
+Cell[11,8] 0.00046504609880811 [GeV]
+Cell[15,33] 0.0015899195270784 [GeV]
+Cell[14,7] 0.0002174598092113 [GeV]
+Cell[13,14] 0.00086542977082562 [GeV]
+### Total energy deposition in calorimeter by a source track in 8 cells : 0.24889356279397 (GeV)
Source track ID 9389 (mu+,0.31363894511703[GeV]) at (78.625062778153,493.77940368461,323.59380780131)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[11,11] 0.00076744685800918 [GeV]
-Cell[11,10] 0.16007180262613 [GeV]
-Cell[12,11] 0.018201946961256 [GeV]
-Cell[12,10] 0.030706296666271 [GeV]
-Cell[12,9] 0.036633970393123 [GeV]
-### Total energy deposition in calorimeter by a source track in 5 cells : 0.24638146350479 (GeV)
+Cell[11,10] 0.2114681006617 [GeV]
+Cell[12,10] 0.044066403424926 [GeV]
+Cell[12,9] 0.00063058280994397 [GeV]
+Cell[11,11] 0.0014139918758877 [GeV]
+### Total energy deposition in calorimeter by a source track in 4 cells : 0.25757907877246 (GeV)
Source track ID 9284 (pi-,1.1891542901854[GeV]) at (43.661949667726,-498.08998599772,1036.512144993)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[19,5] 1.1736152839148e-05 [GeV]
-Cell[15,32] 6.0372985899448e-10 [GeV]
-Cell[15,31] 0.00047582790861702 [GeV]
-Cell[15,39] 0.0065582266609113 [GeV]
-Cell[14,39] 0.0043321298829162 [GeV]
-Cell[15,38] 0.00062122809480434 [GeV]
-Cell[15,42] 0.00077208907955526 [GeV]
-Cell[15,41] 9.097594007153e-05 [GeV]
-Cell[15,40] 0.0038214402795179 [GeV]
-Cell[16,25] 0.00041658040656341 [GeV]
-Cell[16,26] 0.00037687475450832 [GeV]
-Cell[15,0] 0.0001969968283355 [GeV]
-Cell[16,27] 0.00034824073662458 [GeV]
-Cell[16,37] 0.020545002850629 [GeV]
-Cell[16,38] 0.0029561283801355 [GeV]
-Cell[15,37] 0.0069135857154032 [GeV]
-Cell[15,36] 0.17415131331979 [GeV]
-Cell[16,36] 0.28348704352978 [GeV]
-Cell[17,37] 0.00024653682182179 [GeV]
-Cell[17,36] 0.00096543569094717 [GeV]
-Cell[16,35] 0.019713020843243 [GeV]
-Cell[16,34] 0.016185235849455 [GeV]
-Cell[15,43] 0.00034928942234114 [GeV]
-Cell[13,11] 1.1419857628425e-09 [GeV]
-Cell[13,10] 0.00023813546286181 [GeV]
-Cell[14,47] 6.3418344925594e-06 [GeV]
-Cell[14,0] 0.00049135134992366 [GeV]
-Cell[15,33] 0.0031795151537807 [GeV]
-Cell[14,38] 0.0020932856662315 [GeV]
-Cell[16,39] 0.0018352000799537 [GeV]
-Cell[15,35] 0.0013350338550288 [GeV]
-Cell[16,33] 0.0014063532846801 [GeV]
-Cell[15,34] 0.00297463506264 [GeV]
-Cell[14,46] 8.2152268987556e-10 [GeV]
-Cell[14,1] 0.00063893303638406 [GeV]
-Cell[18,12] 1.4052794773761e-05 [GeV]
-Cell[18,11] 0.0011537741201519 [GeV]
-Cell[18,18] 0.0010151607708151 [GeV]
-Cell[17,18] 1.3457572470429e-05 [GeV]
-Cell[17,17] 1.4458782970905e-10 [GeV]
-Cell[14,4] 1.754960976541e-10 [GeV]
-Cell[14,3] 9.6952094850167e-08 [GeV]
-Cell[18,19] 1.654596590015e-07 [GeV]
-Cell[17,38] 0.00075547780891473 [GeV]
-Cell[16,40] 3.766372885957e-05 [GeV]
-Cell[16,41] 1.6562808013987e-11 [GeV]
-Cell[14,17] 0.0011755998238767 [GeV]
-### Total energy deposition in calorimeter by a source track in 47 cells : 0.56189917587029 (GeV)
+Cell[7,12] 1.9298457800687e-09 [GeV]
+Cell[9,11] 2.9647074960621e-06 [GeV]
+Cell[9,12] 5.9082314919578e-08 [GeV]
+Cell[7,13] 0.00010610843583811 [GeV]
+Cell[9,28] 0.00073119785247934 [GeV]
+Cell[8,41] 2.9649361385964e-07 [GeV]
+Cell[15,39] 4.4101633938681e-05 [GeV]
+Cell[14,39] 9.1114374242807e-07 [GeV]
+Cell[15,38] 2.1500588627532e-06 [GeV]
+Cell[13,2] 5.120734891068e-05 [GeV]
+Cell[16,26] 0.0013394829784159 [GeV]
+Cell[14,43] 1.2432579678716e-05 [GeV]
+Cell[14,42] 0.00012733206135033 [GeV]
+Cell[13,40] 0.0005006983158828 [GeV]
+Cell[13,39] 3.0393130145967e-10 [GeV]
+Cell[17,2] 1.3645644912685e-08 [GeV]
+Cell[16,27] 0.00088501859886119 [GeV]
+Cell[8,27] 9.4822903629392e-06 [GeV]
+Cell[9,27] 0.00053660892852179 [GeV]
+Cell[14,41] 1.6543993522646e-05 [GeV]
+Cell[15,34] 0.00036363218337669 [GeV]
+Cell[13,16] 1.1354763701092e-06 [GeV]
+Cell[4,16] 1.2256539697319e-05 [GeV]
+Cell[7,14] 0.0012296941077035 [GeV]
+Cell[15,37] 0.016172651029928 [GeV]
+Cell[11,5] 1.9012587340399e-05 [GeV]
+Cell[11,6] 0.00023835989557949 [GeV]
+Cell[15,47] 1.0240415285807e-05 [GeV]
+Cell[16,34] 0.00017161481953917 [GeV]
+Cell[15,36] 0.12751529795597 [GeV]
+Cell[16,37] 0.72752774897242 [GeV]
+Cell[16,36] 0.0029072327635409 [GeV]
+Cell[17,22] 6.7016317757407e-07 [GeV]
+Cell[17,21] 2.3850024573449e-06 [GeV]
+Cell[17,33] 0.00042497719224605 [GeV]
+Cell[16,33] 0.00060264851222689 [GeV]
+Cell[16,35] 0.00033617806904124 [GeV]
+Cell[13,15] 7.0477981353179e-07 [GeV]
+Cell[13,1] 3.82787338458e-06 [GeV]
+Cell[13,3] 7.3437178002678e-08 [GeV]
+Cell[16,20] 3.2179921618081e-08 [GeV]
+Cell[15,19] 9.9099279964321e-08 [GeV]
+Cell[16,38] 0.027539994369054 [GeV]
+Cell[16,39] 1.1296231480173e-07 [GeV]
+Cell[15,35] 0.0018054235595577 [GeV]
+Cell[18,12] 0.00042109667018644 [GeV]
+Cell[17,12] 6.7268863786012e-06 [GeV]
+Cell[18,11] 0.00014727016063705 [GeV]
+Cell[17,11] 6.7974866624354e-09 [GeV]
+Cell[10,12] 1.1977587064393e-09 [GeV]
+Cell[13,21] 1.2329491350101e-05 [GeV]
+Cell[12,40] 2.3633801447431e-08 [GeV]
+Cell[17,37] 0.0014604782416358 [GeV]
+Cell[17,36] 0.00079724629360109 [GeV]
+Cell[19,11] 9.8749541526331e-05 [GeV]
+Cell[19,12] 0.00058827367376705 [GeV]
+Cell[17,38] 0.00072209912013784 [GeV]
+Cell[10,11] 1.7193545645569e-05 [GeV]
+Cell[10,16] 1.0892118996708e-05 [GeV]
+Cell[15,0] 0.00099833786191061 [GeV]
+Cell[13,4] 4.9057853466365e-06 [GeV]
+Cell[16,21] 1.5241306769894e-05 [GeV]
+Cell[17,1] 0.0002866517777677 [GeV]
+### Total energy deposition in calorimeter by a source track in 63 cells : 0.91684014043433 (GeV)
Source track ID 9360 (gamma,1.5351207931195[GeV]) at (395.55063047355,-305.84260450757,318.34459390965)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[11,27] 0.001374225275659 [GeV]
-Cell[5,17] 0.001642567000221 [GeV]
-Cell[11,42] 1.0764108033228 [GeV]
-Cell[12,42] 0.028034802703128 [GeV]
-Cell[10,42] 0.00054997984769818 [GeV]
-Cell[12,43] 0.03196559884411 [GeV]
-Cell[11,44] 0.008458968589885 [GeV]
-Cell[11,43] 0.36461102892803 [GeV]
-Cell[12,41] 0.00045379562558118 [GeV]
-Cell[12,16] 0.0044485304766501 [GeV]
-Cell[12,17] 0.00051099891 [GeV]
-Cell[11,41] 0.0037935166343679 [GeV]
-Cell[17,29] 0.00077554256757906 [GeV]
-Cell[7,41] 0.00015059822564843 [GeV]
-Cell[14,19] 0.00063433425743084 [GeV]
-### Total energy deposition in calorimeter by a source track in 15 cells : 1.5238152912088 (GeV)
+Cell[11,36] 0.00099333164093246 [GeV]
+Cell[14,40] 0.00068684820425074 [GeV]
+Cell[14,39] 0.00038369691328987 [GeV]
+Cell[9,31] 0.00022692711038985 [GeV]
+Cell[11,19] 0.00045715482052329 [GeV]
+Cell[11,42] 1.0319036830007 [GeV]
+Cell[13,10] 0.00044241771454901 [GeV]
+Cell[12,44] 6.174186084609e-05 [GeV]
+Cell[12,40] 0.0013571381807801 [GeV]
+Cell[11,43] 0.441034532075 [GeV]
+Cell[12,43] 0.017876833348585 [GeV]
+Cell[12,42] 0.026002983436348 [GeV]
+Cell[11,41] 0.0070642037255442 [GeV]
+Cell[12,15] 0.00028350181880856 [GeV]
+Cell[13,36] 0.00038953597192713 [GeV]
+Cell[11,40] 0.0021034486467969 [GeV]
+Cell[12,41] 9.1592393375097e-05 [GeV]
+Cell[15,28] 0.0013185395586842 [GeV]
+### Total energy deposition in calorimeter by a source track in 18 cells : 1.5326781104213 (GeV)
Source track ID 9361 (gamma,0.1244455075516[GeV]) at (447.26692989447,-223.50009714266,557.85444424648)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[13,44] 0.0068473419161454 [GeV]
-Cell[12,44] 0.11759816563546 [GeV]
-### Total energy deposition in calorimeter by a source track in 2 cells : 0.1244455075516 (GeV)
+Cell[13,44] 0.019218646960189 [GeV]
+Cell[12,44] 0.10215257497815 [GeV]
+Cell[12,43] 0.0014259839802243 [GeV]
+Cell[12,42] 0.0016391818138063 [GeV]
+### Total energy deposition in calorimeter by a source track in 4 cells : 0.12443638773237 (GeV)
Source track ID 9333 (mu+,0.32000528959927[GeV]) at (493.49715883172,80.377572898281,1515.9099955942)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[17,1] 0.036901976531537 [GeV]
-Cell[17,0] 0.067892604712078 [GeV]
-Cell[18,0] 0.14285460824039 [GeV]
-### Total energy deposition in calorimeter by a source track in 3 cells : 0.24764918948401 (GeV)
+Cell[16,46] 0.00077275902538387 [GeV]
+Cell[17,47] 0.033114271326655 [GeV]
+Cell[16,47] 0.0030647390886007 [GeV]
+Cell[17,1] 0.036197725212963 [GeV]
+Cell[17,0] 0.095638402304884 [GeV]
+Cell[18,47] 0.074484555062262 [GeV]
+Cell[18,0] 0.00040633020662185 [GeV]
+Cell[18,46] 0.00051099891 [GeV]
+### Total energy deposition in calorimeter by a source track in 8 cells : 0.24418978113737 (GeV)
Source track ID 9318 (pi-,0.47388896071538[GeV]) at (160.47364099131,-473.54853029757,93.990974857476)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[11,39] 0.004335210527091 [GeV]
-Cell[10,45] 1.4766459071325e-07 [GeV]
-Cell[8,43] 9.1796033000719e-05 [GeV]
-Cell[10,41] 0.0016793956344302 [GeV]
-Cell[12,38] 0.0038524494788728 [GeV]
-Cell[9,41] 2.2363243244399e-05 [GeV]
-Cell[10,37] 0.00041854174397668 [GeV]
-Cell[10,20] 4.455184688436e-05 [GeV]
-Cell[12,7] 0.0037014058070284 [GeV]
-Cell[12,8] 0.0060847405124429 [GeV]
-Cell[10,40] 0.0008332163780624 [GeV]
-Cell[9,38] 0.00031433408741555 [GeV]
-Cell[9,39] 0.0013379622226796 [GeV]
-Cell[10,39] 0.18685231565508 [GeV]
-Cell[9,40] 0.00031549257574613 [GeV]
-Cell[10,9] 1.0061608008982e-09 [GeV]
-Cell[10,8] 0.00017367965512722 [GeV]
-Cell[11,37] 2.416630877633e-10 [GeV]
-Cell[12,39] 0.0038357520267155 [GeV]
-Cell[12,10] 3.2465065680753e-07 [GeV]
-Cell[12,9] 0.00016503783865539 [GeV]
-Cell[12,41] 0.00023101117306862 [GeV]
-Cell[12,40] 0.00011300827914806 [GeV]
-Cell[11,41] 7.8786068421323e-05 [GeV]
-Cell[10,38] 0.076832280067195 [GeV]
-Cell[11,38] 0.00011954580819895 [GeV]
-Cell[9,43] 0.00048605635474951 [GeV]
-Cell[9,44] 1.2199710181449e-06 [GeV]
-Cell[10,46] 3.4975819289684e-09 [GeV]
-Cell[11,40] 0.029903048290804 [GeV]
-### Total energy deposition in calorimeter by a source track in 30 cells : 0.32182367833971 (GeV)
+Cell[11,39] 0.0019106331273147 [GeV]
+Cell[7,23] 1.0059989086585e-05 [GeV]
+Cell[7,22] 0.00014013815781391 [GeV]
+Cell[10,1] 0.00164866097445 [GeV]
+Cell[9,33] 0.00033409150744751 [GeV]
+Cell[8,31] 2.2478235769086e-07 [GeV]
+Cell[10,41] 1.5612478136973e-09 [GeV]
+Cell[9,41] 0.00031417264774927 [GeV]
+Cell[10,7] 0.029171261464552 [GeV]
+Cell[8,41] 2.6106524387615e-08 [GeV]
+Cell[10,37] 0.01471611259929 [GeV]
+Cell[8,42] 2.8318368413238e-07 [GeV]
+Cell[10,36] 8.2177238840586e-06 [GeV]
+Cell[10,20] 0.0013200256101579 [GeV]
+Cell[11,45] 1.836095535964e-05 [GeV]
+Cell[8,32] 0.0013677292450499 [GeV]
+Cell[9,31] 1.11401801787e-05 [GeV]
+Cell[11,4] 0.0017625103416684 [GeV]
+Cell[9,37] 0.0020097275976755 [GeV]
+Cell[9,38] 0.0026311222448992 [GeV]
+Cell[9,36] 2.1657612023773e-09 [GeV]
+Cell[10,2] 0.015625419724628 [GeV]
+Cell[10,47] 1.2820224335883e-05 [GeV]
+Cell[9,2] 9.804776789224e-08 [GeV]
+Cell[9,3] 8.1632761839501e-07 [GeV]
+Cell[10,0] 0.00059118333370998 [GeV]
+Cell[11,44] 0.0019262160803795 [GeV]
+Cell[10,39] 0.027311442072316 [GeV]
+Cell[12,16] 5.4305602361637e-09 [GeV]
+Cell[15,14] 3.7420380749609e-09 [GeV]
+Cell[15,13] 0.00083529120585649 [GeV]
+Cell[9,32] 6.0050271814816e-05 [GeV]
+Cell[9,39] 0.0017472264516255 [GeV]
+Cell[12,45] 1.3782942221496e-07 [GeV]
+Cell[11,5] 0.0011192704114882 [GeV]
+Cell[11,7] 0.00013688109606079 [GeV]
+Cell[10,8] 0.0041991949437641 [GeV]
+Cell[12,7] 0.00014283910579979 [GeV]
+Cell[11,6] 8.9178029213599e-07 [GeV]
+Cell[10,6] 0.0013385864341675 [GeV]
+Cell[13,14] 0.002054961104818 [GeV]
+Cell[12,15] 0.0038507953692884 [GeV]
+Cell[10,38] 0.053337909966427 [GeV]
+Cell[14,16] 1.0861249793379e-06 [GeV]
+Cell[10,40] 0.0028675633317974 [GeV]
+Cell[11,38] 0.0018451448530463 [GeV]
+Cell[10,42] 1.5676599374274e-05 [GeV]
+Cell[9,42] 2.132876863925e-08 [GeV]
+Cell[13,24] 0.0020882219491071 [GeV]
+Cell[19,42] 0.00051099891 [GeV]
+Cell[15,26] 0.00076927252468522 [GeV]
+Cell[15,25] 2.9682563384995e-05 [GeV]
+Cell[15,24] 0.0022026715258885 [GeV]
+Cell[9,40] 0.00089043935671305 [GeV]
+Cell[16,13] 1.1016553326044e-05 [GeV]
+Cell[15,12] 1.2453412637115e-08 [GeV]
+Cell[10,3] 0.0011463926937789 [GeV]
+Cell[10,4] 0.0015375354904372 [GeV]
+### Total energy deposition in calorimeter by a source track in 58 cells : 0.18558227937903 (GeV)
Source track ID 9298 (pi+,0.96825128557249[GeV]) at (-69.770445242491,-495.10815482141,1186.7042141794)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[12,33] 0.00011426484556978 [GeV]
-Cell[16,32] 1.8066672782879e-05 [GeV]
-Cell[17,32] 0.000383514938708 [GeV]
-Cell[15,30] 4.1777574224398e-06 [GeV]
-Cell[14,9] 1.1295172517748e-05 [GeV]
-Cell[16,26] 1.2989992712392e-05 [GeV]
-Cell[12,47] 9.4007685100564e-05 [GeV]
-Cell[15,5] 0.00048290906603756 [GeV]
-Cell[16,6] 5.3566783765291e-07 [GeV]
-Cell[16,5] 0.0019774651599266 [GeV]
-Cell[15,29] 0.00015523681140075 [GeV]
-Cell[13,6] 0.00029610439164378 [GeV]
-Cell[14,7] 0.0023245613614405 [GeV]
-Cell[17,35] 0.00010376361736542 [GeV]
-Cell[16,34] 0.1939493468981 [GeV]
-Cell[18,36] 3.9669002148912e-08 [GeV]
-Cell[18,37] 3.0202714765437e-07 [GeV]
-Cell[18,35] 0.00074089560070024 [GeV]
-Cell[12,46] 7.6538292523765e-05 [GeV]
-Cell[14,6] 0.02123385757811 [GeV]
-Cell[16,33] 3.9125717045181e-06 [GeV]
-Cell[15,34] 0.016826603707122 [GeV]
-Cell[14,4] 0.00092995834639797 [GeV]
-Cell[17,34] 0.2512456323698 [GeV]
-Cell[18,34] 0.016168060257142 [GeV]
-Cell[17,33] 0.0045282599749036 [GeV]
-Cell[18,32] 8.5038719698787e-06 [GeV]
-Cell[19,34] 4.3386540207734e-05 [GeV]
-Cell[19,33] 0.00014612735950448 [GeV]
-Cell[18,33] 0.00026304978020767 [GeV]
-Cell[19,37] 3.608874976635e-12 [GeV]
-Cell[18,38] 3.8417056202888e-12 [GeV]
-Cell[15,2] 0.0099067830941761 [GeV]
-Cell[15,3] 0.0052096222390897 [GeV]
-Cell[11,18] 2.4388203164563e-06 [GeV]
-Cell[15,1] 2.6275993121089e-05 [GeV]
-Cell[17,41] 4.638636339223e-06 [GeV]
-Cell[17,40] 0.00015260572897034 [GeV]
-Cell[17,39] 2.4829298298528e-06 [GeV]
-Cell[16,44] 9.676571073669e-08 [GeV]
-Cell[16,43] 2.1212713363639e-10 [GeV]
-Cell[15,4] 0.001088284278583 [GeV]
-Cell[16,4] 9.7293556318618e-06 [GeV]
-Cell[13,5] 0.011317015435919 [GeV]
-Cell[14,5] 0.015917443939864 [GeV]
-Cell[12,22] 0.001174960377217 [GeV]
-Cell[15,8] 9.5538076129742e-06 [GeV]
-Cell[14,8] 0.00066328048071421 [GeV]
-Cell[19,35] 6.6326626983937e-06 [GeV]
-### Total energy deposition in calorimeter by a source track in 49 cells : 0.55763521275038 (GeV)
+Cell[17,32] 0.0015360458114285 [GeV]
+Cell[15,34] 0.016477064233624 [GeV]
+Cell[16,34] 0.21650406882516 [GeV]
+Cell[17,33] 0.0020843675550792 [GeV]
+Cell[17,34] 0.20855453042217 [GeV]
+Cell[18,33] 0.083633186762777 [GeV]
+Cell[18,32] 0.11175613261169 [GeV]
+Cell[19,32] 0.074251549520035 [GeV]
+Cell[19,31] 0.1090209274559 [GeV]
+Cell[19,30] 0.010669139092562 [GeV]
+### Total energy deposition in calorimeter by a source track in 10 cells : 0.83448701229043 (GeV)
Source track ID 9299 (kaon-,2.4404125264392[GeV]) at (342.11116535244,-364.63673778323,531.66226226766)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[14,37] 0.00050986357548107 [GeV]
-Cell[5,43] 0.002151114707497 [GeV]
-Cell[12,38] 0.0027550004458047 [GeV]
-Cell[13,47] 3.4234400914102e-08 [GeV]
-Cell[13,26] 0.0010126071035022 [GeV]
-Cell[13,27] 5.1922875627497e-08 [GeV]
-Cell[14,40] 0.0099067619676812 [GeV]
-Cell[14,39] 0.0012939420441707 [GeV]
-Cell[13,28] 1.0973223054407e-06 [GeV]
-Cell[12,26] 0.00058617956577439 [GeV]
-Cell[12,27] 8.6276621226148e-05 [GeV]
-Cell[12,14] 1.9660219550133e-09 [GeV]
-Cell[13,46] 4.3087389428365e-05 [GeV]
-Cell[12,28] 2.0421069542635e-06 [GeV]
-Cell[15,42] 0.00036049027154069 [GeV]
-Cell[15,41] 0.0035873047618717 [GeV]
-Cell[15,40] 0.0071768154687709 [GeV]
-Cell[14,43] 0.0055314195140752 [GeV]
-Cell[14,42] 0.089144019677646 [GeV]
-Cell[13,43] 0.0095359479499704 [GeV]
-Cell[14,44] 0.0085527960885725 [GeV]
-Cell[15,5] 5.5722718058064e-05 [GeV]
-Cell[15,6] 3.6276178434491e-09 [GeV]
-Cell[12,6] 0.0012148768377042 [GeV]
-Cell[12,25] 0.0010882308472533 [GeV]
-Cell[13,42] 0.042199577052452 [GeV]
-Cell[13,25] 0.00012294388575265 [GeV]
-Cell[15,45] 0.00041479225337275 [GeV]
-Cell[13,24] 0.0011112987095764 [GeV]
-Cell[17,13] 0.00031511139530255 [GeV]
-Cell[12,23] 4.0143285878003e-06 [GeV]
-Cell[10,28] 0.0012716545320217 [GeV]
-Cell[12,24] 0.0066664410030732 [GeV]
-Cell[15,44] 1.3975949722862e-05 [GeV]
-Cell[15,43] 0.00034430353747086 [GeV]
-Cell[13,38] 9.555522831306e-08 [GeV]
-Cell[5,44] 8.3594931891525e-05 [GeV]
-Cell[12,42] 0.0070928450876751 [GeV]
-Cell[13,44] 0.0032902639618297 [GeV]
-Cell[13,45] 0.0013931155295779 [GeV]
-Cell[10,17] 2.1216372726485e-05 [GeV]
-Cell[12,39] 1.2515868809373e-05 [GeV]
-Cell[12,44] 0.0012785182392005 [GeV]
-Cell[12,43] 0.0081717486499284 [GeV]
-Cell[14,47] 6.9334631449465e-06 [GeV]
-Cell[12,41] 0.090754953590248 [GeV]
-Cell[13,41] 1.1190949453499 [GeV]
-Cell[12,40] 0.0012498712583076 [GeV]
-Cell[14,45] 0.0015290851196969 [GeV]
-Cell[14,38] 8.9001176775128e-09 [GeV]
-Cell[18,16] 1.5530470136582e-09 [GeV]
-Cell[14,46] 0.0021075381104683 [GeV]
-Cell[18,18] 5.5362557759508e-08 [GeV]
-Cell[17,17] 0.00014038042110394 [GeV]
-Cell[16,40] 1.6652565375352e-07 [GeV]
-Cell[14,5] 0.0036061509216258 [GeV]
-Cell[12,22] 5.4983385202263e-05 [GeV]
-Cell[13,40] 0.021394756121113 [GeV]
-Cell[14,41] 0.21427779813018 [GeV]
-Cell[12,13] 1.5972938854247e-08 [GeV]
-Cell[12,20] 7.1495305746794e-09 [GeV]
-Cell[6,44] 8.9398488398729e-09 [GeV]
-Cell[13,39] 0.0077168706246381 [GeV]
-Cell[17,24] 9.6580346915403e-05 [GeV]
-Cell[17,23] 0.0017815225221881 [GeV]
-Cell[12,21] 0.0021790922039671 [GeV]
-Cell[18,17] 0.002200159881032 [GeV]
-Cell[15,25] 0.00044674429737701 [GeV]
-### Total energy deposition in calorimeter by a source track in 68 cells : 1.6870423457312 (GeV)
+Cell[11,39] 0.00044958147185571 [GeV]
+Cell[6,0] 1.1923813190151e-09 [GeV]
+Cell[10,29] 2.5303391344096e-06 [GeV]
+Cell[9,35] 2.62813962363e-05 [GeV]
+Cell[9,34] 9.6231832275976e-05 [GeV]
+Cell[9,22] 0.010647845198023 [GeV]
+Cell[7,47] 1.9471054044743e-05 [GeV]
+Cell[8,6] 7.4320785643067e-06 [GeV]
+Cell[9,46] 4.911269185186e-07 [GeV]
+Cell[9,47] 1.2565627434924e-07 [GeV]
+Cell[12,34] 1.4188608445693e-05 [GeV]
+Cell[12,33] 0.00020130109419199 [GeV]
+Cell[11,34] 0.0025659985356525 [GeV]
+Cell[11,31] 0.0022244082926759 [GeV]
+Cell[11,32] 2.0247203982535e-06 [GeV]
+Cell[12,32] 0.00010292638512396 [GeV]
+Cell[13,32] 1.3996048154468e-06 [GeV]
+Cell[12,31] 0.0018172835038944 [GeV]
+Cell[14,40] 0.00067317233651636 [GeV]
+Cell[12,27] 7.4214767664671e-12 [GeV]
+Cell[11,20] 3.2511094148504e-05 [GeV]
+Cell[14,9] 0.00090894694833503 [GeV]
+Cell[14,43] 0.0049403686549337 [GeV]
+Cell[14,42] 0.010773323679402 [GeV]
+Cell[13,43] 0.068235139578394 [GeV]
+Cell[14,44] 3.0550534159374e-05 [GeV]
+Cell[15,6] 0.00071389739039567 [GeV]
+Cell[15,7] 0.00038583015373615 [GeV]
+Cell[13,45] 1.1951689839407e-07 [GeV]
+Cell[13,25] 0.00079141885425777 [GeV]
+Cell[12,25] 0.0016496149755367 [GeV]
+Cell[13,41] 0.14337960610959 [GeV]
+Cell[13,42] 1.0747275734274 [GeV]
+Cell[13,40] 0.0059569365846314 [GeV]
+Cell[13,39] 0.00033314278026171 [GeV]
+Cell[13,38] 0.00074596949950251 [GeV]
+Cell[13,37] 2.9579314514194e-08 [GeV]
+Cell[12,24] 0.0022465266276633 [GeV]
+Cell[11,21] 0.00069035454191169 [GeV]
+Cell[11,24] 2.7902299189009e-07 [GeV]
+Cell[10,10] 2.6968994701747e-05 [GeV]
+Cell[11,25] 0.00010092969315531 [GeV]
+Cell[11,26] 4.9146487185681e-08 [GeV]
+Cell[14,41] 0.00043229749301284 [GeV]
+Cell[8,3] 0.0002481602139197 [GeV]
+Cell[10,28] 4.6343483578539e-06 [GeV]
+Cell[12,19] 0.00014573136286742 [GeV]
+Cell[12,18] 7.6484217493089e-07 [GeV]
+Cell[12,17] 0.0039429402844068 [GeV]
+Cell[13,17] 5.0605740398169e-10 [GeV]
+Cell[11,27] 2.0081643015146e-12 [GeV]
+Cell[11,42] 0.0022230636718383 [GeV]
+Cell[13,18] 2.7076515458475e-05 [GeV]
+Cell[13,20] 0.00063438198307722 [GeV]
+Cell[13,9] 4.8629444791004e-08 [GeV]
+Cell[13,8] 0.0012654292074033 [GeV]
+Cell[3,47] 5.9837223625436e-05 [GeV]
+Cell[7,0] 0.0010896107336822 [GeV]
+Cell[2,39] 2.7428108697904e-06 [GeV]
+Cell[3,1] 0.00014501619236762 [GeV]
+Cell[3,0] 0.00071749461987474 [GeV]
+Cell[4,45] 4.1382458875887e-06 [GeV]
+Cell[12,45] 1.5018390172372e-08 [GeV]
+Cell[14,45] 0.0090139171408619 [GeV]
+Cell[13,44] 0.0064731791145323 [GeV]
+Cell[12,44] 0.010866406801794 [GeV]
+Cell[14,7] 0.00012004673645265 [GeV]
+Cell[13,3] 3.0500814318657e-11 [GeV]
+Cell[12,40] 0.073422605533069 [GeV]
+Cell[13,4] 9.7986967716679e-08 [GeV]
+Cell[12,43] 0.005144843785071 [GeV]
+Cell[12,42] 0.07299401216599 [GeV]
+Cell[11,40] 0.0013563099550887 [GeV]
+Cell[12,41] 0.41965990461403 [GeV]
+Cell[14,16] 0.00012732032579243 [GeV]
+Cell[13,24] 0.0062226842720299 [GeV]
+Cell[15,24] 0.00090659763072972 [GeV]
+Cell[13,7] 0.00014100909529429 [GeV]
+Cell[15,8] 5.9943487576675e-06 [GeV]
+Cell[7,1] 0.001629031536609 [GeV]
+Cell[14,8] 1.2416951358318e-07 [GeV]
+Cell[14,15] 0.00020849034029493 [GeV]
+Cell[12,39] 7.949713321068e-05 [GeV]
+Cell[15,23] 5.936588423765e-07 [GeV]
+Cell[13,23] 0.0021438875246182 [GeV]
+Cell[18,16] 0.0031216415402815 [GeV]
+Cell[19,38] 0.0004530475063847 [GeV]
+Cell[14,6] 0.00074848500453425 [GeV]
+Cell[14,24] 0.0026267140155447 [GeV]
+Cell[14,23] 4.6562531679228e-09 [GeV]
+Cell[14,22] 6.4173946157098e-11 [GeV]
+Cell[13,5] 1.171692929347e-10 [GeV]
+Cell[3,13] 4.5881902333349e-06 [GeV]
+Cell[7,46] 1.1496039485792e-05 [GeV]
+Cell[14,25] 5.5012308293954e-06 [GeV]
+Cell[12,1] 0.00031682213209808 [GeV]
+Cell[12,2] 5.6433753343299e-08 [GeV]
+Cell[12,3] 5.3315685157372e-05 [GeV]
+Cell[14,14] 2.3581070126966e-07 [GeV]
+Cell[9,21] 7.1406790753827e-05 [GeV]
+Cell[8,22] 2.5274374024775e-07 [GeV]
+Cell[18,15] 4.4501033036568e-05 [GeV]
+Cell[17,28] 0.00018671186202118 [GeV]
+Cell[16,28] 1.6938502730682e-05 [GeV]
+Cell[17,27] 7.3283672497837e-07 [GeV]
+Cell[3,46] 4.1338777537021e-05 [GeV]
+Cell[14,35] 0.0024720313236721 [GeV]
+### Total energy deposition in calorimeter by a source track in 107 cells : 1.9671585419242 (GeV)
Source track ID 9297 (kaon0L,0.85324689363199[GeV]) at (443.61976117133,-230.65451978727,564.59737040268)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[7,12] 0.0020061829288778 [GeV]
-Cell[7,13] 0.0013150970909362 [GeV]
-Cell[8,31] 6.1980415466678e-10 [GeV]
-Cell[13,47] 3.5186239983886e-09 [GeV]
-Cell[15,31] 0.00018064498224646 [GeV]
-Cell[15,30] 2.4728006974328e-06 [GeV]
-Cell[14,40] 0.00056540534177736 [GeV]
-Cell[14,39] 0.026107150413599 [GeV]
-Cell[13,46] 0.0004079966869233 [GeV]
-Cell[13,43] 0.0022724102780861 [GeV]
-Cell[12,47] 8.6315580460905e-08 [GeV]
-Cell[13,42] 0.0017692990913531 [GeV]
-Cell[15,29] 3.0980273731984e-07 [GeV]
-Cell[15,13] 2.952815292133e-06 [GeV]
-Cell[14,12] 0.0011348833700765 [GeV]
-Cell[14,13] 0.005436781513995 [GeV]
-Cell[7,31] 4.6536665627173e-07 [GeV]
-Cell[7,30] 9.6143197649099e-05 [GeV]
-Cell[13,16] 0.0015683607704181 [GeV]
-Cell[5,47] 0.00064497258976443 [GeV]
-Cell[11,42] 0.0002575443649755 [GeV]
-Cell[15,12] 3.5457370485119e-06 [GeV]
-Cell[7,14] 1.7529149772599e-07 [GeV]
-Cell[13,44] 0.0092323398046592 [GeV]
-Cell[13,45] 0.0035242148436685 [GeV]
-Cell[15,23] 4.8207054499017e-05 [GeV]
-Cell[12,45] 0.0033571797413207 [GeV]
-Cell[12,44] 0.13184444163646 [GeV]
-Cell[12,43] 0.0037862456092462 [GeV]
-Cell[12,46] 4.4872753889194e-05 [GeV]
-Cell[11,43] 0.00048540981138137 [GeV]
-Cell[13,13] 3.0217679246562e-05 [GeV]
-Cell[14,6] 1.9690787688319e-05 [GeV]
-Cell[14,38] 0.0018297183528486 [GeV]
-Cell[18,19] 1.9134022295475e-09 [GeV]
-Cell[15,1] 7.7629956649616e-07 [GeV]
-Cell[14,5] 4.0392786536358e-07 [GeV]
-Cell[12,19] 0.0012835291330275 [GeV]
-Cell[12,18] 0.00012084383337083 [GeV]
-Cell[13,17] 4.7191230219369e-05 [GeV]
-Cell[14,23] 1.085834605874e-08 [GeV]
-Cell[15,20] 3.9162510074675e-07 [GeV]
-Cell[15,21] 2.2220471873879e-07 [GeV]
-Cell[18,7] 0.088338855164746 [GeV]
-Cell[18,8] 0.14146995957126 [GeV]
-### Total energy deposition in calorimeter by a source track in 45 cells : 0.42923760872514 (GeV)
+Cell[11,46] 0.0048403195407902 [GeV]
+Cell[13,0] 0.10703663992024 [GeV]
+Cell[13,46] 1.152919139713e-09 [GeV]
+Cell[11,45] 4.4402658318177e-07 [GeV]
+Cell[14,43] 1.3145767070455e-09 [GeV]
+Cell[14,42] 2.3035797880766e-08 [GeV]
+Cell[13,43] 0.0064036444393079 [GeV]
+Cell[12,47] 0.00054192428793567 [GeV]
+Cell[12,0] 6.9662210501065e-07 [GeV]
+Cell[11,47] 4.4591257619686e-08 [GeV]
+Cell[11,0] 1.7220162021658e-08 [GeV]
+Cell[13,45] 0.003362370920204 [GeV]
+Cell[13,25] 0.00026911154316417 [GeV]
+Cell[13,42] 0.00038006585664436 [GeV]
+Cell[12,45] 0.044879433637562 [GeV]
+Cell[14,45] 1.003296347335e-09 [GeV]
+Cell[13,44] 0.49173664211274 [GeV]
+Cell[12,46] 2.408665625353e-08 [GeV]
+Cell[12,44] 0.0021886764015505 [GeV]
+Cell[13,1] 0.0037415165634422 [GeV]
+Cell[12,43] 0.00040335525091132 [GeV]
+Cell[13,24] 0.00011950216180423 [GeV]
+### Total energy deposition in calorimeter by a source track in 22 cells : 0.66590445568965 (GeV)
Source track ID 9289 (pi+,4.2124422952204[GeV]) at (194.21373162907,-460.73965148087,515.88677131146)
Original primary track ID 8 (unknown,11.672977589613[GeV])
-Cell[14,37] 0.0060169983268393 [GeV]
-Cell[12,38] 1.9816057703375 [GeV]
-Cell[16,11] 0.0013272317260216 [GeV]
-Cell[16,14] 0.0026520773815128 [GeV]
-Cell[14,40] 0.0013152446214823 [GeV]
-Cell[14,39] 0.010125538052526 [GeV]
-Cell[15,38] 0.00093729788488462 [GeV]
-Cell[15,40] 0.00089199023022358 [GeV]
-Cell[15,7] 0.0017270933477875 [GeV]
-Cell[16,7] 0.00083972421337301 [GeV]
-Cell[13,42] 0.0027040411518464 [GeV]
-Cell[13,37] 0.0093470551829124 [GeV]
-Cell[12,36] 0.00066016928240447 [GeV]
-Cell[13,38] 0.38093341986936 [GeV]
-Cell[13,11] 0.0012028835077023 [GeV]
-Cell[12,37] 0.0050513000969419 [GeV]
-Cell[12,39] 1.1304203256568 [GeV]
-Cell[13,10] 0.0031006953440645 [GeV]
-Cell[13,41] 0.0013132555099303 [GeV]
-Cell[12,40] 0.0018188391093325 [GeV]
-Cell[14,38] 0.0029620518127867 [GeV]
-Cell[17,17] 0.00089634046761346 [GeV]
-Cell[13,40] 0.00050234571946881 [GeV]
-Cell[13,39] 0.4872216922162 [GeV]
-Cell[15,15] 0.0012560786243385 [GeV]
-Cell[12,15] 0.0023887627377135 [GeV]
-Cell[14,21] 0.00051099891 [GeV]
-Cell[17,22] 0.0017693081904104 [GeV]
-### Total energy deposition in calorimeter by a source track in 28 cells : 4.0414985295119 (GeV)
+Cell[11,39] 5.9100394310008e-08 [GeV]
+Cell[14,37] 0.004071443104092 [GeV]
+Cell[12,38] 0.089140016257714 [GeV]
+Cell[11,36] 0.0044719476521103 [GeV]
+Cell[10,37] 0.00056017867589268 [GeV]
+Cell[10,36] 0.00025625771225531 [GeV]
+Cell[15,39] 0.00059352558711305 [GeV]
+Cell[14,40] 0.013731030163713 [GeV]
+Cell[14,39] 0.30592260341203 [GeV]
+Cell[15,38] 5.5850311025551e-07 [GeV]
+Cell[12,26] 1.7429360304959e-05 [GeV]
+Cell[13,35] 8.2090856494688e-09 [GeV]
+Cell[14,10] 3.4723388466773e-08 [GeV]
+Cell[14,43] 0.00018007842586735 [GeV]
+Cell[14,42] 0.00045848083169358 [GeV]
+Cell[13,43] 5.147067218752e-05 [GeV]
+Cell[14,44] 9.6629452891648e-06 [GeV]
+Cell[12,25] 1.6437843441963e-10 [GeV]
+Cell[13,41] 0.015013151441473 [GeV]
+Cell[13,42] 0.0024819798383001 [GeV]
+Cell[13,40] 0.074678762600205 [GeV]
+Cell[13,39] 0.74970364478582 [GeV]
+Cell[13,38] 0.83332079508313 [GeV]
+Cell[13,37] 0.30781796335995 [GeV]
+Cell[14,38] 0.026285644082402 [GeV]
+Cell[12,24] 6.2269556906358e-07 [GeV]
+Cell[12,21] 5.3368936119455e-05 [GeV]
+Cell[11,24] 1.3004830157115e-07 [GeV]
+Cell[11,26] 0.00070253331034007 [GeV]
+Cell[14,41] 0.0025685283003107 [GeV]
+Cell[15,34] 3.8163142448866e-08 [GeV]
+Cell[12,16] 0.003937340252422 [GeV]
+Cell[11,37] 0.015980661655175 [GeV]
+Cell[12,36] 0.02381110458473 [GeV]
+Cell[10,14] 0.00030316244304765 [GeV]
+Cell[14,11] 5.4023760071686e-08 [GeV]
+Cell[13,11] 1.7982674762607e-09 [GeV]
+Cell[13,10] 0.0017194811022775 [GeV]
+Cell[13,9] 2.0246948643035e-06 [GeV]
+Cell[11,7] 0.00074499885624698 [GeV]
+Cell[11,6] 1.5671105145884e-05 [GeV]
+Cell[12,44] 0.00083125952754369 [GeV]
+Cell[18,45] 7.119284100213e-06 [GeV]
+Cell[16,34] 0.011182849487929 [GeV]
+Cell[12,9] 5.5473923339378e-09 [GeV]
+Cell[15,36] 7.5146570161451e-06 [GeV]
+Cell[17,33] 0.0035191701480836 [GeV]
+Cell[16,33] 8.8109850655655e-06 [GeV]
+Cell[16,35] 0.0011316467398727 [GeV]
+Cell[15,19] 3.5487115469891e-05 [GeV]
+Cell[15,35] 9.4016046840579e-06 [GeV]
+Cell[12,40] 0.0020998361519079 [GeV]
+Cell[17,37] 0.00063402432753105 [GeV]
+Cell[17,36] 0.0015879043915634 [GeV]
+Cell[19,11] 1.3659795513377e-08 [GeV]
+Cell[19,12] 7.4063427746296e-09 [GeV]
+Cell[17,38] 1.1212250683457e-11 [GeV]
+Cell[12,43] 0.00022977768624582 [GeV]
+Cell[12,42] 0.0085565285092827 [GeV]
+Cell[13,36] 0.0044649741507902 [GeV]
+Cell[12,41] 1.6497639757063e-05 [GeV]
+Cell[18,46] 3.1664967536926e-11 [GeV]
+Cell[11,38] 0.0030372152598944 [GeV]
+Cell[17,34] 0.0011645614061772 [GeV]
+Cell[12,39] 0.080226478173355 [GeV]
+Cell[9,13] 1.1696088127792e-05 [GeV]
+Cell[10,13] 0.0003893138387059 [GeV]
+Cell[12,37] 0.011099464338458 [GeV]
+Cell[14,36] 0.00023680244062393 [GeV]
+Cell[17,35] 0.0050242526572022 [GeV]
+Cell[15,18] 0.00064456850789384 [GeV]
+Cell[14,19] 6.3076731748879e-10 [GeV]
+Cell[14,12] 1.0789421503432e-07 [GeV]
+### Total energy deposition in calorimeter by a source track in 73 cells : 2.6147637389603 (GeV)
Source track ID 5658 (kaon+,2.4800095618042[GeV]) at (286.81510897584,-409.55719168778,-440.57032653925)
Original primary track ID 25 (unknown,7.7728456153487[GeV])
-Cell[7,10] 1.0068107028928e-05 [GeV]
-Cell[10,29] 5.3052470320836e-08 [GeV]
-Cell[6,37] 7.0624022347374e-05 [GeV]
-Cell[7,36] 3.5597452097136e-08 [GeV]
-Cell[7,37] 3.1002454745021e-05 [GeV]
-Cell[6,42] 0.0029009120587525 [GeV]
-Cell[7,38] 0.0068532373615012 [GeV]
-Cell[6,39] 0.17217057727195 [GeV]
-Cell[5,39] 2.4498399619119e-05 [GeV]
-Cell[7,39] 0.003041194070404 [GeV]
-Cell[6,38] 0.015397167598077 [GeV]
-Cell[6,40] 0.52544400537208 [GeV]
-Cell[6,41] 0.011929028850275 [GeV]
-Cell[6,22] 2.4920928117353e-06 [GeV]
-Cell[7,42] 0.04622329728333 [GeV]
-Cell[7,43] 1.1076297937507e-08 [GeV]
-Cell[8,41] 0.0011949330555936 [GeV]
-Cell[8,42] 2.076365866867e-05 [GeV]
-Cell[14,43] 1.5926123513736e-06 [GeV]
-Cell[9,39] 4.1768002338358e-06 [GeV]
-Cell[5,8] 2.0714449055959e-06 [GeV]
-Cell[5,42] 7.4968215603803e-06 [GeV]
-Cell[5,41] 6.2735587362113e-06 [GeV]
-Cell[5,38] 2.8504753048765e-05 [GeV]
-Cell[1,45] 6.8442171228867e-05 [GeV]
-Cell[9,40] 0.0022243752114038 [GeV]
-Cell[7,41] 0.1284848479705 [GeV]
-Cell[7,40] 0.52975077857222 [GeV]
-Cell[10,30] 2.3616786536536e-05 [GeV]
-Cell[6,21] 6.8537157494575e-07 [GeV]
-Cell[8,40] 0.00090460782667924 [GeV]
-Cell[8,39] 0.00037038440131414 [GeV]
-Cell[5,40] 0.00077210457339027 [GeV]
-### Total energy deposition in calorimeter by a source track in 33 cells : 1.4479638602591 (GeV)
+Cell[8,11] 1.0871859178224e-05 [GeV]
+Cell[8,8] 1.0495827882551e-07 [GeV]
+Cell[9,8] 4.7398692081515e-06 [GeV]
+Cell[7,12] 8.2762675219783e-09 [GeV]
+Cell[8,12] 0.0020666093537051 [GeV]
+Cell[6,37] 0.0073995064219127 [GeV]
+Cell[7,36] 5.7662712151796e-09 [GeV]
+Cell[7,37] 0.0032488898840541 [GeV]
+Cell[6,42] 0.009730323638951 [GeV]
+Cell[7,38] 0.12069683948541 [GeV]
+Cell[7,11] 4.1128078256634e-06 [GeV]
+Cell[9,34] 1.8954551104571e-06 [GeV]
+Cell[7,26] 0.0020684380677108 [GeV]
+Cell[7,27] 0.00098761270415275 [GeV]
+Cell[6,39] 0.0073247841539737 [GeV]
+Cell[9,7] 1.0342949060487e-06 [GeV]
+Cell[8,13] 2.4585874911509e-05 [GeV]
+Cell[6,36] 0.0018864430694783 [GeV]
+Cell[7,13] 7.6527481803623e-07 [GeV]
+Cell[5,39] 0.0031032411460345 [GeV]
+Cell[7,39] 0.13215833489986 [GeV]
+Cell[6,35] 3.6639083991759e-06 [GeV]
+Cell[7,25] 4.8286901881056e-06 [GeV]
+Cell[7,47] 1.2777898528043e-05 [GeV]
+Cell[6,38] 0.018023773664421 [GeV]
+Cell[9,20] 0.0043734715654039 [GeV]
+Cell[8,43] 0.0016250486957139 [GeV]
+Cell[8,36] 3.9044324466886e-08 [GeV]
+Cell[6,43] 0.00045947331605601 [GeV]
+Cell[4,30] 2.4702098926355e-09 [GeV]
+Cell[6,40] 0.015171014486637 [GeV]
+Cell[6,41] 0.003101886851842 [GeV]
+Cell[9,14] 1.1966740406933e-05 [GeV]
+Cell[8,26] 8.6430532564918e-06 [GeV]
+Cell[9,41] 2.7170241878594e-08 [GeV]
+Cell[8,44] 4.4556412603924e-09 [GeV]
+Cell[7,42] 0.0038692392069249 [GeV]
+Cell[7,43] 0.0041259059776682 [GeV]
+Cell[8,41] 0.0022772190736248 [GeV]
+Cell[8,42] 3.3319645444863e-07 [GeV]
+Cell[16,32] 1.8951332818915e-06 [GeV]
+Cell[16,31] 1.3505301955206e-05 [GeV]
+Cell[12,31] 1.8837281118067e-07 [GeV]
+Cell[14,42] 1.7487985023763e-06 [GeV]
+Cell[11,26] 1.2409409246175e-05 [GeV]
+Cell[8,27] 2.5089768923863e-05 [GeV]
+Cell[6,34] 6.2955443863757e-06 [GeV]
+Cell[9,44] 3.9284263039008e-08 [GeV]
+Cell[8,45] 3.7515247975307e-05 [GeV]
+Cell[9,37] 0.0019142067568583 [GeV]
+Cell[8,37] 0.010948839391144 [GeV]
+Cell[9,36] 4.3411347380356e-05 [GeV]
+Cell[9,19] 0.00078707068224048 [GeV]
+Cell[7,44] 0.0063909287625884 [GeV]
+Cell[4,13] 1.3464384978761e-05 [GeV]
+Cell[2,36] 1.991109456867e-09 [GeV]
+Cell[11,27] 0.0013131991768238 [GeV]
+Cell[14,11] 0.0021788902718192 [GeV]
+Cell[13,11] 0.00070916231425556 [GeV]
+Cell[5,18] 3.3516262192279e-08 [GeV]
+Cell[2,2] 8.070283026882e-07 [GeV]
+Cell[4,21] 4.5809358207066e-05 [GeV]
+Cell[2,1] 4.5896622450982e-05 [GeV]
+Cell[7,14] 1.5295880596113e-06 [GeV]
+Cell[6,33] 0.002763580265738 [GeV]
+Cell[4,40] 1.050066202879e-10 [GeV]
+Cell[3,22] 5.5740691628898e-06 [GeV]
+Cell[3,21] 0.0046275160565422 [GeV]
+Cell[7,40] 0.80745916064711 [GeV]
+Cell[3,18] 0.00044483187290666 [GeV]
+Cell[3,19] 8.9236637684735e-05 [GeV]
+Cell[3,28] 2.2074501612224e-07 [GeV]
+Cell[3,27] 1.5932363622937e-05 [GeV]
+Cell[5,40] 0.0035629462949936 [GeV]
+Cell[4,22] 0.00055201903592445 [GeV]
+Cell[3,23] 0.00046856884482236 [GeV]
+Cell[4,24] 1.5268004935933e-05 [GeV]
+Cell[7,4] 0.00023641657107805 [GeV]
+Cell[3,38] 1.096311857691e-05 [GeV]
+Cell[5,15] 0.0028178198940284 [GeV]
+Cell[3,37] 0.00033885921620868 [GeV]
+Cell[3,25] 1.1567520326935e-05 [GeV]
+Cell[4,39] 0.01917156795761 [GeV]
+Cell[5,37] 0.00099958300011599 [GeV]
+Cell[4,38] 0.00062310872608373 [GeV]
+Cell[7,5] 0.00078369965195031 [GeV]
+Cell[6,44] 2.3511716810845e-06 [GeV]
+Cell[2,22] 9.0903944841784e-05 [GeV]
+Cell[2,21] 0.0048179926432248 [GeV]
+Cell[5,7] 8.1548205344006e-08 [GeV]
+Cell[18,12] 1.6576290363446e-07 [GeV]
+Cell[18,11] 2.7873972430825e-07 [GeV]
+Cell[9,40] 5.2214620036466e-05 [GeV]
+Cell[7,46] 3.793509615673e-05 [GeV]
+Cell[12,2] 0.00018750167440291 [GeV]
+Cell[9,21] 0.0014108242684754 [GeV]
+Cell[9,13] 8.980487473309e-08 [GeV]
+Cell[7,41] 0.083737421095563 [GeV]
+Cell[18,17] 2.2213340562303e-06 [GeV]
+Cell[18,18] 2.6304183259413e-05 [GeV]
+Cell[17,18] 4.8756008618511e-07 [GeV]
+Cell[8,40] 0.027416451042441 [GeV]
+Cell[8,39] 0.0043415046804688 [GeV]
+Cell[4,31] 2.9245275696439e-05 [GeV]
+Cell[4,14] 0.00092499177156697 [GeV]
+Cell[1,33] 7.8988057794049e-07 [GeV]
+Cell[5,42] 0.00038768506309311 [GeV]
+Cell[3,32] 2.1841819747351e-05 [GeV]
+Cell[8,38] 0.013946059976634 [GeV]
+Cell[5,38] 0.0027921326799581 [GeV]
+Cell[8,25] 0.00096751880386012 [GeV]
+Cell[7,45] 7.515074685216e-09 [GeV]
+Cell[5,8] 3.281535464339e-08 [GeV]
+Cell[8,24] 2.2364014539562e-06 [GeV]
+### Total energy deposition in calorimeter by a source track in 114 cells : 1.3544761165547 (GeV)
Source track ID 5990 (gamma,0.19649521790462[GeV]) at (-493.90321090932,77.843549851397,489.46550730685)
Original primary track ID 25 (unknown,7.7728456153487[GeV])
-Cell[12,23] 0.033819163403339 [GeV]
-Cell[12,24] 0.00084920538123321 [GeV]
-Cell[12,22] 0.16182684912004 [GeV]
-### Total energy deposition in calorimeter by a source track in 3 cells : 0.19649521790462 (GeV)
+Cell[12,23] 0.014619024482027 [GeV]
+Cell[12,21] 0.0022345003449254 [GeV]
+Cell[12,22] 0.17368306782599 [GeV]
+Cell[16,34] 0.00081664731184074 [GeV]
+Cell[13,21] 0.0016454133476053 [GeV]
+Cell[14,4] 0.00041571366570002 [GeV]
+Cell[12,20] 0.0028420611190068 [GeV]
+Cell[13,22] 0.00023878980752256 [GeV]
+### Total energy deposition in calorimeter by a source track in 8 cells : 0.19649521790462 (GeV)
Source track ID 5991 (gamma,0.89164369738079[GeV]) at (-456.1236160356,204.82003538377,886.8951372644)
Original primary track ID 25 (unknown,7.7728456153487[GeV])
-Cell[11,46] 0.00035287853958902 [GeV]
-Cell[16,14] 0.00044817633569622 [GeV]
-Cell[15,39] 0.0019147967872367 [GeV]
-Cell[16,5] 0.00045338364588532 [GeV]
-Cell[12,7] 0.0011792649369757 [GeV]
-Cell[15,29] 0.00050923650620681 [GeV]
-Cell[14,24] 0.00074085565582295 [GeV]
-Cell[14,7] 0.0008372723546209 [GeV]
-Cell[16,35] 0.00051099891 [GeV]
-Cell[14,22] 0.00051283046687197 [GeV]
-Cell[11,13] 0.0012797444267381 [GeV]
-Cell[12,45] 0.00014245761944817 [GeV]
-Cell[12,46] 0.00091945841242123 [GeV]
-Cell[13,41] 0.00041864844928314 [GeV]
-Cell[14,46] 0.0022118212316772 [GeV]
-Cell[14,1] 0.00059715508032603 [GeV]
-Cell[14,3] 0.00074367627197212 [GeV]
-Cell[14,19] 0.0017770386719305 [GeV]
-Cell[15,1] 0.0022980245839106 [GeV]
-Cell[13,5] 0.0004888715473042 [GeV]
-Cell[15,20] 0.011459921118899 [GeV]
-Cell[15,21] 0.0049640187593496 [GeV]
-Cell[14,21] 0.055115360395689 [GeV]
-Cell[14,20] 0.7967347522612 [GeV]
-Cell[16,3] 0.00077774369775906 [GeV]
-Cell[11,35] 0.00041037618810446 [GeV]
-Cell[8,1] 0.00039899390903926 [GeV]
-### Total energy deposition in calorimeter by a source track in 27 cells : 0.88819775676396 (GeV)
+Cell[8,26] 0.00024024180896713 [GeV]
+Cell[11,3] 0.00055796010165086 [GeV]
+Cell[16,33] 0.00056068188152906 [GeV]
+Cell[15,19] 0.0003857630755685 [GeV]
+Cell[14,19] 0.0019073761094967 [GeV]
+Cell[14,20] 0.80541811122502 [GeV]
+Cell[15,21] 0.018985410625305 [GeV]
+Cell[19,0] 0.00075517624914021 [GeV]
+Cell[14,21] 0.028976940767615 [GeV]
+Cell[15,20] 0.029610208816476 [GeV]
+### Total energy deposition in calorimeter by a source track in 10 cells : 0.88739787066077 (GeV)
Source track ID 5965 (pi-,0.85432199037276[GeV]) at (-165.97943626031,471.64693016992,873.04672748089)
Original primary track ID 25 (unknown,7.7728456153487[GeV])
-Cell[13,12] 0.0049330228533394 [GeV]
-Cell[16,14] 0.0014281380645332 [GeV]
-Cell[16,15] 0.0082699148178793 [GeV]
-Cell[14,15] 0.021050157002431 [GeV]
-Cell[14,12] 7.7732608182714e-05 [GeV]
-Cell[14,13] 0.0038805770421731 [GeV]
-Cell[14,14] 0.1079820175558 [GeV]
-Cell[17,13] 2.6756955776364e-08 [GeV]
-Cell[15,18] 0.00019326154392115 [GeV]
-Cell[15,17] 0.00025200410247294 [GeV]
-Cell[13,16] 0.0010780330187013 [GeV]
-Cell[14,16] 0.00030911970311718 [GeV]
-Cell[13,15] 0.00042099125433901 [GeV]
-Cell[17,14] 1.939141235539e-06 [GeV]
-Cell[13,11] 2.1700054844587e-08 [GeV]
-Cell[18,36] 8.5507053881884e-11 [GeV]
-Cell[18,37] 0.00045909434148734 [GeV]
-Cell[16,13] 0.00055849172676676 [GeV]
-Cell[14,11] 6.4300347048629e-08 [GeV]
-Cell[13,13] 0.0029559325469872 [GeV]
-Cell[17,38] 0.00010372291522322 [GeV]
-Cell[14,17] 3.7473671449106e-06 [GeV]
-Cell[12,17] 1.1920657925657e-08 [GeV]
-Cell[18,38] 2.2557413845789e-05 [GeV]
-Cell[17,39] 0.00064054644950094 [GeV]
-Cell[13,17] 0.00019717066851103 [GeV]
-Cell[15,15] 0.21998404393859 [GeV]
-Cell[15,14] 0.0017401351308914 [GeV]
-Cell[15,16] 0.014987652010762 [GeV]
-Cell[16,16] 0.27803504263294 [GeV]
-Cell[16,17] 0.00019966792427333 [GeV]
-Cell[18,39] 0.00021606636399151 [GeV]
-Cell[13,14] 1.7467624275014e-08 [GeV]
-### Total energy deposition in calorimeter by a source track in 33 cells : 0.66998092237018 (GeV)
+Cell[7,47] 6.0904938334261e-07 [GeV]
+Cell[13,26] 3.6221666960046e-08 [GeV]
+Cell[16,14] 0.0032170730316684 [GeV]
+Cell[16,15] 0.18569963366985 [GeV]
+Cell[17,13] 2.6201904984191e-07 [GeV]
+Cell[15,14] 0.0035908771128156 [GeV]
+Cell[15,13] 0.00081162376555221 [GeV]
+Cell[7,0] 7.1104919925347e-08 [GeV]
+Cell[17,33] 0.0018846502333639 [GeV]
+Cell[16,13] 0.00090802542746485 [GeV]
+Cell[14,15] 0.046360679060573 [GeV]
+Cell[14,14] 0.11066110296158 [GeV]
+Cell[18,15] 0.002740537725502 [GeV]
+Cell[15,18] 0.00015064629238748 [GeV]
+Cell[18,17] 0.0018461629529442 [GeV]
+Cell[17,18] 5.6196765888217e-07 [GeV]
+Cell[15,15] 0.19236807758069 [GeV]
+Cell[16,16] 0.013519000325381 [GeV]
+Cell[17,14] 0.0019479727575628 [GeV]
+Cell[16,17] 0.0090358412302772 [GeV]
+Cell[15,16] 5.6450342047697e-05 [GeV]
+Cell[15,17] 0.00036949672564879 [GeV]
+Cell[17,16] 0.0010447055064601 [GeV]
+Cell[16,18] 1.2601172784343e-08 [GeV]
+Cell[17,17] 0.00017795198275167 [GeV]
+Cell[17,15] 0.013071767410469 [GeV]
+Cell[16,12] 0.00011258195690675 [GeV]
+Cell[19,15] 0.0003768581312392 [GeV]
+Cell[18,34] 1.3700139737921e-05 [GeV]
+Cell[19,35] 1.6909849655349e-06 [GeV]
+Cell[19,37] 0.003262926614784 [GeV]
+Cell[19,36] 0.0048953171098925 [GeV]
+### Total energy deposition in calorimeter by a source track in 32 cells : 0.59812690399637 (GeV)
Source track ID 5817 (pi+,0.42640787413979[GeV]) at (-379.58000672534,-325.45202180105,-478.5832145177)
Original primary track ID 25 (unknown,7.7728456153487[GeV])
-Cell[10,29] 5.0224941703618e-06 [GeV]
-Cell[6,42] 2.0418042367965e-11 [GeV]
-Cell[5,35] 2.683568870998e-05 [GeV]
-Cell[7,27] 5.3160302909191e-05 [GeV]
-Cell[8,29] 1.2096199952794e-10 [GeV]
-Cell[6,29] 0.0012059473447887 [GeV]
-Cell[6,27] 2.9127609969464e-05 [GeV]
-Cell[7,29] 0.075914672899571 [GeV]
-Cell[6,41] 0.0030692313370915 [GeV]
-Cell[6,25] 0.0011579495668132 [GeV]
-Cell[6,26] 0.0011525911207884 [GeV]
-Cell[7,28] 0.13850475362615 [GeV]
-Cell[5,28] 4.8370566219091e-11 [GeV]
-Cell[7,30] 3.2653249490977e-09 [GeV]
-Cell[6,28] 0.0024395148439556 [GeV]
-Cell[6,30] 2.621382009238e-10 [GeV]
-Cell[5,36] 0.0019213984505157 [GeV]
-Cell[2,15] 1.1445314157754e-08 [GeV]
-Cell[1,14] 0.00050373136373628 [GeV]
-Cell[1,13] 0.00051517189242202 [GeV]
-Cell[5,25] 7.4740370619111e-06 [GeV]
-Cell[1,12] 5.9079310449306e-06 [GeV]
-Cell[0,13] 4.0964462201373e-05 [GeV]
-Cell[0,14] 0.00031614262249491 [GeV]
-Cell[1,15] 1.4797390199419e-05 [GeV]
-Cell[10,32] 7.3277382704418e-05 [GeV]
-Cell[7,40] 0.00080570707406514 [GeV]
-Cell[10,30] 3.7738251239716e-07 [GeV]
-Cell[8,38] 6.544284085976e-06 [GeV]
-Cell[9,42] 0.00067530953843095 [GeV]
-Cell[10,31] 1.6384110668582e-05 [GeV]
-### Total energy deposition in calorimeter by a source track in 31 cells : 0.22846200991959 (GeV)
+Cell[8,9] 2.7815395924335e-09 [GeV]
+Cell[8,10] 1.3415977663044e-05 [GeV]
+Cell[8,11] 0.0040875692523424 [GeV]
+Cell[7,10] 1.1001247912645e-11 [GeV]
+Cell[5,31] 0.0024940530683974 [GeV]
+Cell[6,0] 3.4394576723571e-05 [GeV]
+Cell[6,37] 0.0035204654214301 [GeV]
+Cell[6,42] 0.0033974505897138 [GeV]
+Cell[7,38] 0.0004200889788735 [GeV]
+Cell[7,11] 8.7323132902384e-10 [GeV]
+Cell[7,27] 1.1909030989045e-05 [GeV]
+Cell[5,0] 2.5710500922287e-05 [GeV]
+Cell[8,5] 0.00029919462122541 [GeV]
+Cell[6,8] 3.4856952879636e-11 [GeV]
+Cell[6,6] 0.00094266298560763 [GeV]
+Cell[6,38] 0.00095687333278303 [GeV]
+Cell[8,6] 0.00027978864191391 [GeV]
+Cell[2,41] 5.2730282504854e-09 [GeV]
+Cell[7,29] 0.098635220060807 [GeV]
+Cell[6,43] 0.00023484665494448 [GeV]
+Cell[6,40] 1.164210261777e-07 [GeV]
+Cell[6,41] 6.9970331911463e-05 [GeV]
+Cell[9,41] 0.00040559424138621 [GeV]
+Cell[7,33] 8.0289596530747e-07 [GeV]
+Cell[6,26] 2.4274702765979e-05 [GeV]
+Cell[7,18] 3.0269664304797e-05 [GeV]
+Cell[10,33] 0.00021775472823208 [GeV]
+Cell[7,28] 0.0010994861203776 [GeV]
+Cell[7,31] 0.00010600550772392 [GeV]
+Cell[7,30] 0.0015475175513164 [GeV]
+Cell[7,32] 0.001278460310589 [GeV]
+Cell[6,31] 0.00078504674119582 [GeV]
+Cell[6,32] 1.5241386058733e-06 [GeV]
+Cell[6,30] 0.0012906545859186 [GeV]
+Cell[5,13] 1.0286513133906e-07 [GeV]
+Cell[4,13] 2.1881194920752e-06 [GeV]
+Cell[10,34] 3.4849736346132e-07 [GeV]
+Cell[10,39] 0.00011955883877818 [GeV]
+Cell[6,7] 0.0070792157366478 [GeV]
+Cell[2,2] 0.0045252457332111 [GeV]
+Cell[2,3] 0.0060786364005372 [GeV]
+Cell[2,8] 0.0040078389789605 [GeV]
+Cell[6,1] 1.1553355987417e-05 [GeV]
+Cell[1,1] 0.00059695440093662 [GeV]
+Cell[1,0] 8.2991598446824e-09 [GeV]
+Cell[2,1] 4.2942701838911e-10 [GeV]
+Cell[1,29] 5.8008183259517e-07 [GeV]
+Cell[0,29] 3.4207021235488e-07 [GeV]
+Cell[2,47] 9.9561206880026e-06 [GeV]
+Cell[1,17] 2.9103830456734e-11 [GeV]
+Cell[0,9] 1.3858304562746e-05 [GeV]
+Cell[1,22] 9.0772746189032e-06 [GeV]
+Cell[1,18] 2.5731322152978e-05 [GeV]
+Cell[3,20] 0.00065050557806763 [GeV]
+Cell[1,8] 0.000617181227537 [GeV]
+Cell[5,44] 1.3343829778023e-07 [GeV]
+Cell[2,14] 0.0051693470540305 [GeV]
+Cell[2,12] 6.6965938633075e-05 [GeV]
+Cell[1,2] 0.0018774716071647 [GeV]
+Cell[1,3] 0.002108253547626 [GeV]
+Cell[7,0] 0.00075671959192096 [GeV]
+Cell[6,5] 3.0443680790768e-05 [GeV]
+Cell[1,40] 2.6410067093821e-06 [GeV]
+Cell[3,2] 7.2480697417632e-06 [GeV]
+Cell[3,4] 3.8069817237556e-06 [GeV]
+Cell[5,30] 0.0058443894239327 [GeV]
+Cell[2,9] 0.00032358516288036 [GeV]
+Cell[1,9] 2.3734293893085e-07 [GeV]
+Cell[4,41] 0.00088173684328103 [GeV]
+Cell[4,42] 0.0029384881354761 [GeV]
+Cell[5,37] 0.0011790131115122 [GeV]
+Cell[1,41] 0.00014372848254629 [GeV]
+Cell[6,3] 1.4309960533865e-07 [GeV]
+Cell[2,20] 0.0018260609109256 [GeV]
+Cell[5,2] 1.4709905372001e-07 [GeV]
+Cell[10,42] 0.00019856000645029 [GeV]
+Cell[9,42] 7.319753523916e-06 [GeV]
+Cell[8,40] 0.0001629149595741 [GeV]
+Cell[8,39] 4.6686576445154e-07 [GeV]
+Cell[5,38] 0.00060990765086228 [GeV]
+Cell[5,14] 2.8307421087447e-05 [GeV]
+Cell[2,7] 1.4560129464371e-05 [GeV]
+Cell[10,32] 0.0026362118224107 [GeV]
+Cell[5,27] 0.0048624257706346 [GeV]
+### Total energy deposition in calorimeter by a source track in 84 cells : 0.17764124918229 (GeV)
Source track ID 5922 (gamma,6.9476075636615e-05[GeV]) at (48.182921749289,-497.67299108119,483.87242513544)
Original primary track ID 25 (unknown,7.7728456153487[GeV])
@@ -2630,15 +2631,13 @@ Cell[12,36] 6.9476075636615e-05 [GeV]
Source track ID 5921 (e-,0.07239181722826[GeV]) at (-17.398605224102,-499.69719684651,1091.6972826222)
Original primary track ID 25 (unknown,7.7728456153487[GeV])
-Cell[18,28] 0.0011499470175762 [GeV]
-Cell[13,16] 0.0012760740438968 [GeV]
-Cell[12,2] 0.00071160813108407 [GeV]
-Cell[15,35] 0.051653887430368 [GeV]
-Cell[17,39] 0.0028757055632319 [GeV]
-Cell[17,16] 0.0055179705980389 [GeV]
-Cell[17,15] 0.00098160663387853 [GeV]
-Cell[17,19] 0.00019147775230207 [GeV]
-### Total energy deposition in calorimeter by a source track in 8 cells : 0.064358277170376 (GeV)
+Cell[15,37] 0.0013253477901719 [GeV]
+Cell[12,46] 0.0062209037684613 [GeV]
+Cell[15,36] 0.0074410361642204 [GeV]
+Cell[15,35] 0.055456568326345 [GeV]
+Cell[5,9] 0.00038653553238602 [GeV]
+Cell[11,14] 0.00092596335906144 [GeV]
+### Total energy deposition in calorimeter by a source track in 6 cells : 0.071756354940646 (GeV)
Source track ID 5919 (gamma,0.0038860478671391[GeV]) at (-237.20905557818,-440.14981989285,668.21637665268)
Original primary track ID 25 (unknown,7.7728456153487[GeV])
@@ -2647,323 +2646,390 @@ Cell[13,32] 0.0038860478671391 [GeV]
Source track ID 5920 (gamma,0.36135256887284[GeV]) at (319.60828450721,-384.51338659969,465.91512835366)
Original primary track ID 25 (unknown,7.7728456153487[GeV])
-Cell[14,30] 0.0044812784931965 [GeV]
-Cell[14,29] 0.00051099891 [GeV]
-Cell[11,20] 0.00038408817577342 [GeV]
-Cell[12,41] 0.33263982419374 [GeV]
-Cell[13,41] 0.0079749096103571 [GeV]
-Cell[12,40] 0.01437177690689 [GeV]
-Cell[13,40] 0.00047869367288319 [GeV]
-Cell[12,13] 0.00034627147980982 [GeV]
-### Total energy deposition in calorimeter by a source track in 8 cells : 0.36118784144265 (GeV)
+Cell[13,41] 0.0019790438127391 [GeV]
+Cell[12,40] 0.011300928742492 [GeV]
+Cell[12,41] 0.34773834944654 [GeV]
+### Total energy deposition in calorimeter by a source track in 3 cells : 0.36101832200177 (GeV)
Source track ID 5836 (mu-,0.1882676590429[GeV]) at (-401.54547746124,297.92822882436,-1224.5295373934)
Original primary track ID 25 (unknown,7.7728456153487[GeV])
-Cell[3,20] 0.0030780426673633 [GeV]
-Cell[4,19] 9.6697503745759e-05 [GeV]
-Cell[3,19] 0.096384302875096 [GeV]
-Cell[3,21] 0.0051628820762843 [GeV]
-Cell[4,0] 2.2069062659284e-05 [GeV]
-Cell[4,18] 0.00043306182787171 [GeV]
-Cell[3,27] 1.9752366963075e-05 [GeV]
-Cell[3,24] 1.3031324167969e-05 [GeV]
-Cell[4,47] 0.0013367572440204 [GeV]
-Cell[1,46] 3.4126706829056e-06 [GeV]
-Cell[2,47] 0.00042461434917834 [GeV]
-Cell[3,18] 0.0070904521390164 [GeV]
-Cell[4,27] 6.3757606840227e-06 [GeV]
-Cell[3,17] 0.00037999035983202 [GeV]
-Cell[2,46] 0.0016620392272432 [GeV]
-### Total energy deposition in calorimeter by a source track in 15 cells : 0.11611348145481 (GeV)
+Cell[4,18] 5.8576665651344e-10 [GeV]
+Cell[3,18] 5.6133354758003e-06 [GeV]
+Cell[3,19] 0.094128104043317 [GeV]
+### Total energy deposition in calorimeter by a source track in 3 cells : 0.09413371796456 (GeV)
Source track ID 5815 (gamma,0.062293140479318[GeV]) at (-277.09244574023,416.1968002204,226.70071800201)
Original primary track ID 25 (unknown,7.7728456153487[GeV])
-Cell[11,23] 0.00043011813707074 [GeV]
-Cell[11,15] 0.0018069335454181 [GeV]
-Cell[11,16] 0.060056088796829 [GeV]
-### Total energy deposition in calorimeter by a source track in 3 cells : 0.062293140479318 (GeV)
+Cell[11,16] 0.062293140479318 [GeV]
+### Total energy deposition in calorimeter by a source track in 1 cells : 0.062293140479318 (GeV)
Source track ID 5816 (gamma,0.18169391742921[GeV]) at (418.45379206914,273.672110203,279.34342896915)
Original primary track ID 25 (unknown,7.7728456153487[GeV])
-Cell[11,3] 0.0041738289949846 [GeV]
-Cell[15,30] 0.00046790771174831 [GeV]
-Cell[11,4] 0.17216544982206 [GeV]
-Cell[11,43] 0.0015860826865483 [GeV]
-Cell[9,45] 0.003261743066229 [GeV]
-### Total energy deposition in calorimeter by a source track in 5 cells : 0.18165501228157 (GeV)
+Cell[11,3] 0.0079095001324501 [GeV]
+Cell[11,4] 0.17203830470752 [GeV]
+Cell[11,5] 0.00018060161391476 [GeV]
+Cell[12,3] 0.0015655109753249 [GeV]
+### Total energy deposition in calorimeter by a source track in 4 cells : 0.18169391742921 (GeV)
Source track ID 5787 (kaon+,1.7504214896858[GeV]) at (76.426165478718,494.12451996457,1962.4395359758)
Original primary track ID 25 (unknown,7.7728456153487[GeV])
-Cell[19,10] 0.04693968336405 [GeV]
-### Total energy deposition in calorimeter by a source track in 1 cells : 0.04693968336405 (GeV)
+Cell[19,10] 0.051353672614327 [GeV]
+### Total energy deposition in calorimeter by a source track in 1 cells : 0.051353672614327 (GeV)
Source track ID 5662 (pi-,0.45563688763171[GeV]) at (-499.77962495384,-14.843398566349,-204.52601960441)
Original primary track ID 25 (unknown,7.7728456153487[GeV])
-Cell[8,8] 0.0022296013970201 [GeV]
-Cell[8,7] 1.0008421008479e-05 [GeV]
-Cell[9,25] 0.00039962114504647 [GeV]
-Cell[9,26] 4.0761607194781e-06 [GeV]
-Cell[7,24] 0.0059490342404659 [GeV]
-Cell[7,26] 0.0087432294818761 [GeV]
-Cell[7,27] 0.0022201899379244 [GeV]
-Cell[7,25] 0.018387802843784 [GeV]
-Cell[8,43] 2.8536040248582e-05 [GeV]
-Cell[8,26] 0.014003502290248 [GeV]
-Cell[7,33] 0.00015310981358925 [GeV]
-Cell[8,44] 5.4859408194147e-05 [GeV]
-Cell[9,28] 1.1466485011624e-07 [GeV]
-Cell[7,42] 6.3027755459188e-11 [GeV]
-Cell[7,28] 2.7008957204089e-10 [GeV]
-Cell[11,1] 0.0022273284760922 [GeV]
-Cell[12,5] 6.8533458106685e-06 [GeV]
-Cell[8,32] 0.00055200971096451 [GeV]
-Cell[5,46] 0.00010474250093739 [GeV]
-Cell[5,45] 0.002470126465418 [GeV]
-Cell[6,46] 4.1971769027441e-05 [GeV]
-Cell[11,2] 0.0011786039982027 [GeV]
-Cell[6,45] 0.00022273396353921 [GeV]
-Cell[7,41] 0.00028510430639506 [GeV]
-Cell[12,22] 0.00031955483844513 [GeV]
-Cell[12,21] 4.4546217403649e-06 [GeV]
-Cell[7,40] 1.0436783340992e-05 [GeV]
-Cell[8,24] 0.10338805074065 [GeV]
-Cell[8,25] 0.092800078651875 [GeV]
-Cell[8,27] 0.0030936829744598 [GeV]
-Cell[9,27] 2.9887795303239e-05 [GeV]
-Cell[8,28] 0.0011344012054126 [GeV]
-Cell[7,44] 0.00047416276060176 [GeV]
-Cell[8,45] 0.00029286215282809 [GeV]
-### Total energy deposition in calorimeter by a source track in 34 cells : 0.26082073323914 (GeV)
+Cell[9,25] 0.00090067515023417 [GeV]
+Cell[9,26] 0.00065230288042392 [GeV]
+Cell[9,24] 0.006369743648969 [GeV]
+Cell[7,26] 0.00010229104526093 [GeV]
+Cell[7,27] 0.0038187887699284 [GeV]
+Cell[8,29] 2.9204383026809e-06 [GeV]
+Cell[7,20] 0.0014104334235232 [GeV]
+Cell[3,43] 0.00050567401251487 [GeV]
+Cell[7,25] 0.0048063587706906 [GeV]
+Cell[7,29] 2.8335216484265e-10 [GeV]
+Cell[9,1] 0.00072071722136334 [GeV]
+Cell[6,22] 2.0189326896798e-06 [GeV]
+Cell[8,26] 0.0021613756912121 [GeV]
+Cell[7,33] 0.0010642841153484 [GeV]
+Cell[6,25] 0.0048874498764648 [GeV]
+Cell[6,26] 0.00029648095013181 [GeV]
+Cell[7,28] 0.0045816270750103 [GeV]
+Cell[12,23] 2.593464587585e-05 [GeV]
+Cell[8,28] 0.0084400733619938 [GeV]
+Cell[8,27] 0.01659835836219 [GeV]
+Cell[9,31] 4.5313095597521e-08 [GeV]
+Cell[9,30] 2.7963355864813e-07 [GeV]
+Cell[7,32] 0.00059533606996611 [GeV]
+Cell[10,2] 2.1231027908243e-05 [GeV]
+Cell[9,2] 7.4950551038455e-07 [GeV]
+Cell[9,3] 2.5388938515562e-05 [GeV]
+Cell[8,2] 0.0015047504847149 [GeV]
+Cell[10,28] 0.0012409217474923 [GeV]
+Cell[9,23] 0.00016621671782798 [GeV]
+Cell[4,44] 0.00053959363508193 [GeV]
+Cell[4,47] 2.3081322638063e-08 [GeV]
+Cell[4,46] 0.00053754668624754 [GeV]
+Cell[9,39] 0.0012276547279167 [GeV]
+Cell[1,13] 2.1922148473095e-05 [GeV]
+Cell[3,44] 6.3771145210012e-05 [GeV]
+Cell[4,45] 0.032740428773766 [GeV]
+Cell[6,20] 2.4460563010507e-05 [GeV]
+Cell[3,45] 0.0025114279271795 [GeV]
+Cell[8,20] 0.00085123825817209 [GeV]
+Cell[7,21] 6.5739490094074e-06 [GeV]
+Cell[11,7] 0.0013583862367246 [GeV]
+Cell[11,6] 0.00022742567613045 [GeV]
+Cell[10,16] 0.00044100454062254 [GeV]
+Cell[13,4] 0.00089715362742601 [GeV]
+Cell[10,3] 0.0030630770328356 [GeV]
+Cell[8,25] 0.011707150510824 [GeV]
+Cell[8,24] 0.039223570380276 [GeV]
+Cell[16,41] 0.00038188243229752 [GeV]
+Cell[8,23] 0.00023522379809401 [GeV]
+Cell[10,18] 0.0002370403830262 [GeV]
+Cell[8,21] 2.7385161811253e-05 [GeV]
+Cell[8,19] 0.0012777752747107 [GeV]
+Cell[6,21] 0.00014447772620053 [GeV]
+Cell[10,17] 0.0019493753750899 [GeV]
+Cell[9,4] 2.3782416246831e-07 [GeV]
+### Total energy deposition in calorimeter by a source track in 55 cells : 0.16059823496969 (GeV)
Source track ID 5756 (gamma,0.43032370642417[GeV]) at (-193.66746544468,460.96953568347,1404.1020487427)
Original primary track ID 25 (unknown,7.7728456153487[GeV])
-Cell[16,30] 0.0044699889012885 [GeV]
-Cell[13,26] 0.00039079761999678 [GeV]
-Cell[13,27] 0.00073188192772877 [GeV]
-Cell[16,14] 0.00038922196803496 [GeV]
-Cell[16,15] 0.00051099891 [GeV]
-Cell[14,40] 0.00051099891 [GeV]
-Cell[16,6] 0.0014503445811795 [GeV]
-Cell[18,29] 0.00032183324907279 [GeV]
-Cell[17,14] 0.011904068741875 [GeV]
-Cell[17,39] 0.00048712134423253 [GeV]
-Cell[15,25] 0.0016617714298697 [GeV]
-Cell[15,15] 0.00051099891 [GeV]
-Cell[12,15] 0.00051099891 [GeV]
-Cell[17,16] 0.0092891402785044 [GeV]
-Cell[17,15] 0.38927044699184 [GeV]
-Cell[15,9] 0.00065992666867322 [GeV]
-Cell[19,18] 0.00027320245811671 [GeV]
-Cell[19,25] 0.00069378867002602 [GeV]
-Cell[17,10] 0.00031109767002374 [GeV]
-Cell[18,40] 0.00030220594481715 [GeV]
-### Total energy deposition in calorimeter by a source track in 20 cells : 0.42465083408528 (GeV)
+Cell[14,31] 0.00030374871109984 [GeV]
+Cell[12,31] 0.00053511547512294 [GeV]
+Cell[16,14] 0.00037876235948693 [GeV]
+Cell[16,15] 1.6758150860596e-06 [GeV]
+Cell[14,34] 0.00052415383134674 [GeV]
+Cell[16,3] 6.1912115256746e-08 [GeV]
+Cell[17,13] 0.0010703960539171 [GeV]
+Cell[17,14] 0.03620521015838 [GeV]
+Cell[16,17] 0.00051099891 [GeV]
+Cell[17,15] 0.3689094472303 [GeV]
+Cell[19,35] 0.0024722042501824 [GeV]
+Cell[18,30] 0.00044315742721108 [GeV]
+Cell[17,40] 0.0010594665229063 [GeV]
+Cell[18,14] 0.0014541263638031 [GeV]
+Cell[18,13] 0.00051099891 [GeV]
+### Total energy deposition in calorimeter by a source track in 15 cells : 0.41437952393096 (GeV)
Source track ID 5757 (gamma,0.84468519705162[GeV]) at (143.95469170533,478.82882822155,1448.6318346068)
Original primary track ID 25 (unknown,7.7728456153487[GeV])
-Cell[14,44] 0.00060164483032435 [GeV]
-Cell[15,29] 0.00045198673846971 [GeV]
-Cell[18,35] 0.0017628821198604 [GeV]
-Cell[18,9] 0.002776929817621 [GeV]
-Cell[16,39] 0.0031513712627271 [GeV]
-Cell[18,0] 0.0030820513485642 [GeV]
-Cell[17,34] 0.0015837455029264 [GeV]
-Cell[15,2] 0.00051099891 [GeV]
-Cell[17,40] 0.0013496936850467 [GeV]
-Cell[17,22] 0.0020076387864089 [GeV]
-Cell[17,10] 0.022264936825431 [GeV]
-Cell[17,9] 0.78714988780209 [GeV]
-Cell[16,42] 0.001260180428959 [GeV]
-Cell[17,8] 0.0028086028745634 [GeV]
-Cell[17,21] 0.0002623211064565 [GeV]
-Cell[17,6] 0.00067179847314022 [GeV]
-Cell[19,2] 0.001073804183852 [GeV]
-### Total energy deposition in calorimeter by a source track in 17 cells : 0.83277047469644 (GeV)
+Cell[14,31] 0.00046255138911015 [GeV]
+Cell[16,32] 0.0011693862125294 [GeV]
+Cell[16,14] 4.6644091151065e-05 [GeV]
+Cell[14,43] 0.00042508271657995 [GeV]
+Cell[14,44] 0.0010419933503467 [GeV]
+Cell[18,40] 0.00085118321407349 [GeV]
+Cell[14,38] 0.00099314769373912 [GeV]
+Cell[17,2] 0.0094155754625525 [GeV]
+Cell[16,4] 0.00035053914940621 [GeV]
+Cell[17,9] 0.73855768268769 [GeV]
+Cell[18,9] 0.014405612996685 [GeV]
+Cell[16,47] 0.0019064706663512 [GeV]
+Cell[17,22] 0.00047738360961548 [GeV]
+Cell[18,11] 0.00037239162679018 [GeV]
+Cell[17,11] 0.002547292910846 [GeV]
+Cell[16,21] 0.00027868507154759 [GeV]
+Cell[17,1] 0.00080390216969908 [GeV]
+Cell[18,18] 0.00064278715461922 [GeV]
+Cell[15,21] 0.00056517180311199 [GeV]
+Cell[17,40] 0.00051099891 [GeV]
+Cell[17,7] 0.0019278108795168 [GeV]
+Cell[17,8] 0.0028723744930428 [GeV]
+Cell[18,41] 0.0018867347382022 [GeV]
+Cell[18,42] 0.004431444954535 [GeV]
+Cell[18,10] 0.001770889933339 [GeV]
+Cell[16,19] 0.00066814627786946 [GeV]
+Cell[16,29] 0.00038076940325554 [GeV]
+Cell[15,22] 0.00051099891 [GeV]
+Cell[17,10] 0.046837902025336 [GeV]
+Cell[18,38] 0.00051099891 [GeV]
+### Total energy deposition in calorimeter by a source track in 30 cells : 0.83762255341154 (GeV)
Source track ID 5668 (pi-,1.1276211230984[GeV]) at (-492.72609849404,84.976419451786,1091.8482097499)
Original primary track ID 25 (unknown,7.7728456153487[GeV])
-Cell[16,14] 0.00018756100475366 [GeV]
-Cell[15,41] 0.0018468971308651 [GeV]
-Cell[16,25] 0.0055238546014747 [GeV]
-Cell[16,24] 0.015027843260699 [GeV]
-Cell[16,26] 0.0077826704435711 [GeV]
-Cell[14,44] 3.4268706513103e-06 [GeV]
-Cell[14,12] 3.9325421130343e-07 [GeV]
-Cell[14,24] 1.3017118789548e-05 [GeV]
-Cell[14,25] 0.0037735143824725 [GeV]
-Cell[14,26] 0.00051731814341997 [GeV]
-Cell[14,27] 9.1471787614751e-05 [GeV]
-Cell[15,26] 0.0035379976163617 [GeV]
-Cell[17,26] 0.00033678409943507 [GeV]
-Cell[16,27] 0.0021714102984016 [GeV]
-Cell[16,28] 1.9271440041052e-05 [GeV]
-Cell[9,3] 0.0033519832567594 [GeV]
-Cell[14,35] 1.5984134413429e-06 [GeV]
-Cell[15,12] 0.00039564528295296 [GeV]
-Cell[8,2] 0.0012778788350333 [GeV]
-Cell[8,3] 9.5911812920804e-06 [GeV]
-Cell[8,4] 1.7118672607467e-05 [GeV]
-Cell[16,18] 0.00085879715796716 [GeV]
-Cell[16,19] 0.011886445014728 [GeV]
-Cell[15,23] 0.16675857498915 [GeV]
-Cell[15,22] 0.11472035060466 [GeV]
-Cell[14,22] 0.00057865567735371 [GeV]
-Cell[11,21] 3.9106818690016e-08 [GeV]
-Cell[16,13] 4.3826611654367e-06 [GeV]
-Cell[14,45] 0.00040224979481093 [GeV]
-Cell[16,45] 0.00034456517293256 [GeV]
-Cell[16,21] 0.0002564407009711 [GeV]
-Cell[16,20] 0.002879568261439 [GeV]
-Cell[14,46] 2.0412367885001e-06 [GeV]
-Cell[16,41] 8.2913727965206e-06 [GeV]
-Cell[17,1] 2.9684159499425e-05 [GeV]
-Cell[17,0] 8.3657624782063e-07 [GeV]
-Cell[16,44] 1.7264100490138e-05 [GeV]
-Cell[17,24] 3.4440552002025e-05 [GeV]
-Cell[15,25] 0.079133167872394 [GeV]
-Cell[14,23] 0.00055485920161448 [GeV]
-Cell[15,20] 0.0029297736005714 [GeV]
-Cell[15,21] 0.0036576184783538 [GeV]
-Cell[14,21] 8.0090062110685e-05 [GeV]
-Cell[14,20] 0.022683944358719 [GeV]
-Cell[8,1] 0.00019989174539887 [GeV]
-Cell[15,9] 3.2666878269083e-10 [GeV]
-Cell[16,23] 0.11993267791776 [GeV]
-Cell[16,22] 0.022682670152571 [GeV]
-Cell[15,24] 0.0078936577524076 [GeV]
-Cell[17,25] 0.0027801683048988 [GeV]
-Cell[15,19] 0.0067703089803394 [GeV]
-Cell[16,46] 0.00014139907773915 [GeV]
-Cell[16,47] 0.0013798885415647 [GeV]
-Cell[16,0] 4.2049607224271e-05 [GeV]
-Cell[16,1] 1.8949758668896e-09 [GeV]
-Cell[11,22] 0.00049907700876099 [GeV]
-Cell[17,2] 9.9826138466597e-11 [GeV]
-Cell[15,10] 2.8160508577457e-07 [GeV]
-Cell[19,20] 0.00011866133108356 [GeV]
-### Total energy deposition in calorimeter by a source track in 59 cells : 0.61615006215475 (GeV)
+Cell[11,39] 1.3697143952413e-05 [GeV]
+Cell[9,11] 5.4328939151901e-05 [GeV]
+Cell[9,12] 2.4081393296456e-06 [GeV]
+Cell[10,27] 2.2658514790237e-06 [GeV]
+Cell[9,20] 4.3847374035977e-06 [GeV]
+Cell[11,46] 1.1775092367316e-05 [GeV]
+Cell[13,12] 4.5957858674228e-09 [GeV]
+Cell[11,36] 7.3025401216e-06 [GeV]
+Cell[10,36] 5.430012656916e-06 [GeV]
+Cell[18,4] 7.2928935983214e-05 [GeV]
+Cell[17,32] 0.0010441333209916 [GeV]
+Cell[17,31] 0.0027763038351097 [GeV]
+Cell[15,30] 0.00021310052363901 [GeV]
+Cell[14,40] 6.5502227516845e-07 [GeV]
+Cell[13,2] 0.00039262403371345 [GeV]
+Cell[13,0] 0.0087529439243883 [GeV]
+Cell[12,14] 2.1119184180861e-05 [GeV]
+Cell[14,10] 0.00043601807826485 [GeV]
+Cell[14,9] 1.8780177485951e-06 [GeV]
+Cell[16,25] 0.0021976747339075 [GeV]
+Cell[16,24] 0.0097540529373252 [GeV]
+Cell[16,26] 2.3513692584061e-05 [GeV]
+Cell[14,43] 3.1736361852381e-06 [GeV]
+Cell[14,42] 0.00085895655081436 [GeV]
+Cell[12,47] 0.00071620214684492 [GeV]
+Cell[11,1] 0.00090454812346763 [GeV]
+Cell[11,47] 2.6347055361839e-05 [GeV]
+Cell[15,5] 2.2613676264882e-11 [GeV]
+Cell[16,5] 0.00048156787594576 [GeV]
+Cell[12,4] 0.00079045124642539 [GeV]
+Cell[17,3] 7.9970366641646e-08 [GeV]
+Cell[17,4] 0.0022462577789335 [GeV]
+Cell[16,4] 2.3570847678229e-06 [GeV]
+Cell[9,29] 0.00025415343695135 [GeV]
+Cell[9,19] 0.00039926031888956 [GeV]
+Cell[14,41] 0.00086226724465769 [GeV]
+Cell[8,47] 6.3565997988917e-06 [GeV]
+Cell[10,34] 3.4349798195763e-05 [GeV]
+Cell[10,39] 5.2722081058164e-05 [GeV]
+Cell[10,28] 1.9259917304225e-05 [GeV]
+Cell[12,19] 7.2821263000606e-05 [GeV]
+Cell[12,18] 1.233211150975e-08 [GeV]
+Cell[11,27] 7.214825891424e-07 [GeV]
+Cell[14,11] 1.5411001513712e-06 [GeV]
+Cell[17,9] 0.0024334399584471 [GeV]
+Cell[18,8] 0.0018798500940455 [GeV]
+Cell[18,9] 0.0014120221759856 [GeV]
+Cell[14,2] 0.0022248167630379 [GeV]
+Cell[9,18] 3.1056584020916e-08 [GeV]
+Cell[11,7] 1.823759204126e-05 [GeV]
+Cell[12,8] 2.1897393802647e-05 [GeV]
+Cell[10,6] 1.0211327666184e-05 [GeV]
+Cell[15,46] 0.0010556882271617 [GeV]
+Cell[15,45] 2.5054206606001e-05 [GeV]
+Cell[12,46] 4.1772022873147e-05 [GeV]
+Cell[15,44] 6.6105159930885e-08 [GeV]
+Cell[15,47] 0.00022549216216532 [GeV]
+Cell[14,0] 1.075707409484e-05 [GeV]
+Cell[14,1] 1.1553569160014e-06 [GeV]
+Cell[16,34] 0.00042911625810005 [GeV]
+Cell[15,36] 0.00055231655977559 [GeV]
+Cell[16,36] 6.5328960772604e-07 [GeV]
+Cell[17,22] 6.978971555327e-09 [GeV]
+Cell[17,21] 8.8533087109681e-06 [GeV]
+Cell[16,35] 3.1310628401116e-08 [GeV]
+Cell[13,1] 0.001594925835549 [GeV]
+Cell[16,20] 0.00041260691678724 [GeV]
+Cell[16,38] 0.0013249619637864 [GeV]
+Cell[15,35] 2.8860522434115e-08 [GeV]
+Cell[18,12] 0.00076368171766154 [GeV]
+Cell[17,12] 0.0020789685998251 [GeV]
+Cell[12,40] 3.7509795646088e-05 [GeV]
+Cell[16,21] 0.0070060847209567 [GeV]
+Cell[11,40] 3.5413376983001e-05 [GeV]
+Cell[15,28] 0.0027963660063026 [GeV]
+Cell[10,40] 0.0003196085777156 [GeV]
+Cell[11,38] 0.00018111037593258 [GeV]
+Cell[15,26] 4.812399254206e-08 [GeV]
+Cell[15,25] 0.0018684154190098 [GeV]
+Cell[15,24] 0.0076492261812941 [GeV]
+Cell[12,39] 0.002119273639374 [GeV]
+Cell[15,23] 0.18423043141375 [GeV]
+Cell[14,24] 0.0010332252543601 [GeV]
+Cell[12,1] 2.9560771054093e-08 [GeV]
+Cell[12,3] 4.7517581137413e-05 [GeV]
+Cell[16,28] 5.9699685603846e-05 [GeV]
+Cell[5,42] 0.0011978916146001 [GeV]
+Cell[12,20] 0.00015834047756471 [GeV]
+Cell[15,21] 0.0016925728523179 [GeV]
+Cell[15,20] 1.3796322275539e-07 [GeV]
+Cell[11,16] 0.00022074391070969 [GeV]
+Cell[15,22] 0.40334770561806 [GeV]
+Cell[16,22] 0.015857216808308 [GeV]
+Cell[16,23] 0.01251665600131 [GeV]
+Cell[17,23] 1.4726538211107e-11 [GeV]
+Cell[17,43] 3.3728207927197e-07 [GeV]
+Cell[18,3] 0.00075874777688887 [GeV]
+Cell[14,3] 2.6978761911778e-07 [GeV]
+Cell[15,27] 6.1885338004686e-07 [GeV]
+Cell[17,25] 3.9105680116336e-10 [GeV]
+Cell[15,4] 0.00022340780044658 [GeV]
+Cell[18,21] 5.3038034820929e-08 [GeV]
+Cell[15,29] 0.0099821634695365 [GeV]
+Cell[15,11] 1.0904000693699e-05 [GeV]
+Cell[18,7] 4.4275275722612e-05 [GeV]
+Cell[11,2] 0.0011196121612842 [GeV]
+Cell[11,18] 0.0027863898232473 [GeV]
+Cell[12,13] 0.0034537291355473 [GeV]
+Cell[12,12] 1.4860260649584e-05 [GeV]
+Cell[7,19] 1.0998802230461e-05 [GeV]
+Cell[10,35] 0.00043272790762148 [GeV]
+### Total energy deposition in calorimeter by a source track in 111 cells : 0.711262914215 (GeV)
Source track ID 5656 (gamma,0.21259862372436[GeV]) at (298.67434130333,-400.99082015306,-1192.0286066774)
Original primary track ID 27 (unknown,1.8699577628705[GeV])
-Cell[6,29] 0.00071522596711566 [GeV]
-Cell[3,40] 0.16168218758644 [GeV]
-Cell[0,47] 0.00051099891 [GeV]
-Cell[2,4] 0.00041084795687108 [GeV]
-Cell[3,35] 0.00081899153659793 [GeV]
-Cell[1,38] 0.0051250638129385 [GeV]
-Cell[3,24] 0.0006193299030083 [GeV]
-Cell[3,25] 4.2988772120298e-05 [GeV]
-Cell[4,1] 0.00051099891 [GeV]
-Cell[4,40] 0.024444955468078 [GeV]
-Cell[4,15] 0.00051099891 [GeV]
-Cell[0,8] 0.0031460917183826 [GeV]
-Cell[3,41] 0.014059944272803 [GeV]
-### Total energy deposition in calorimeter by a source track in 13 cells : 0.21259862372436 (GeV)
+Cell[7,26] 0.00069309342509252 [GeV]
+Cell[5,32] 0.0014717435864498 [GeV]
+Cell[3,40] 0.16766285936597 [GeV]
+Cell[6,23] 0.00051099891 [GeV]
+Cell[3,41] 0.016455109838905 [GeV]
+Cell[5,19] 0.0001933055861673 [GeV]
+Cell[3,47] 0.00037799242456169 [GeV]
+Cell[0,46] 0.0024037053396346 [GeV]
+Cell[4,40] 0.013315046301261 [GeV]
+Cell[6,12] 0.00068258926750307 [GeV]
+Cell[3,0] 0.0017626033759321 [GeV]
+Cell[5,20] 0.00066453505563718 [GeV]
+Cell[4,41] 0.00051099891 [GeV]
+Cell[3,10] 0.0010567645106256 [GeV]
+### Total energy deposition in calorimeter by a source track in 14 cells : 0.20776134589774 (GeV)
Source track ID 5609 (pi-,0.62982476113108[GeV]) at (341.38538486326,365.31632731342,-1018.9279293998)
Original primary track ID 27 (unknown,1.8699577628705[GeV])
-Cell[5,35] 5.0278722080748e-06 [GeV]
-Cell[4,6] 0.11713327376528 [GeV]
-Cell[5,34] 0.0010254839375766 [GeV]
-Cell[1,6] 1.0785452846903e-05 [GeV]
-Cell[3,43] 0.00023445660644143 [GeV]
-Cell[2,44] 4.9774957915361e-09 [GeV]
-Cell[2,10] 2.1941820932625e-08 [GeV]
-Cell[2,9] 0.003691777355871 [GeV]
-Cell[4,9] 2.4574192361229e-05 [GeV]
-Cell[3,9] 0.00056142202835346 [GeV]
-Cell[2,6] 0.0017599216688649 [GeV]
-Cell[2,7] 0.0025082797629669 [GeV]
-Cell[2,8] 0.007143767328888 [GeV]
-Cell[2,43] 1.5387828000257e-06 [GeV]
-Cell[2,4] 4.5133929233998e-09 [GeV]
-Cell[4,8] 5.372567102313e-11 [GeV]
-Cell[1,9] 0.0032692164924107 [GeV]
-Cell[3,42] 0.0014511226766689 [GeV]
-Cell[3,44] 3.583407466067e-06 [GeV]
-Cell[4,7] 0.084103541998449 [GeV]
-Cell[3,8] 0.1746674555238 [GeV]
-Cell[3,7] 0.1361513345275 [GeV]
-Cell[0,8] 7.8277650813106e-05 [GeV]
-Cell[1,8] 0.0031209424763783 [GeV]
-Cell[2,5] 9.3379458451182e-07 [GeV]
-### Total energy deposition in calorimeter by a source track in 25 cells : 0.53694674878897 (GeV)
+Cell[5,31] 0.00014583465806425 [GeV]
+Cell[7,12] 0.00010192653615786 [GeV]
+Cell[10,29] 1.0202280827798e-07 [GeV]
+Cell[7,36] 2.7247833495494e-06 [GeV]
+Cell[7,37] 0.00072954324368936 [GeV]
+Cell[7,38] 1.194173365991e-05 [GeV]
+Cell[7,11] 3.6048094484954e-05 [GeV]
+Cell[4,6] 0.12585160558064 [GeV]
+Cell[9,22] 0.0002324943581641 [GeV]
+Cell[5,39] 3.9839472244807e-05 [GeV]
+Cell[7,39] 0.00016877427658142 [GeV]
+Cell[5,32] 6.135882664239e-06 [GeV]
+Cell[8,17] 1.3914438161464e-06 [GeV]
+Cell[6,38] 7.716716529103e-06 [GeV]
+Cell[8,33] 0.00018167221349597 [GeV]
+Cell[8,16] 2.4852772639861e-10 [GeV]
+Cell[3,7] 0.012311201758174 [GeV]
+Cell[6,34] 1.3117037818802e-06 [GeV]
+Cell[6,31] 2.0740657637361e-06 [GeV]
+Cell[8,37] 0.0015148495118567 [GeV]
+Cell[9,19] 7.3896799449358e-08 [GeV]
+Cell[6,30] 1.2552737898659e-06 [GeV]
+Cell[10,28] 3.0594522831962e-07 [GeV]
+Cell[5,17] 0.001259992064255 [GeV]
+Cell[4,18] 3.1626492841497e-08 [GeV]
+Cell[5,6] 0.0046479736168119 [GeV]
+Cell[3,17] 0.00084092991858603 [GeV]
+Cell[2,8] 0.00030134451314314 [GeV]
+Cell[5,33] 0.00022202003781308 [GeV]
+Cell[6,33] 7.601726191524e-07 [GeV]
+Cell[4,40] 2.7547010672265e-05 [GeV]
+Cell[7,40] 2.1141519562207e-07 [GeV]
+Cell[3,18] 0.0013800562313585 [GeV]
+Cell[9,17] 0.00016503310525582 [GeV]
+Cell[3,8] 0.009982637973198 [GeV]
+Cell[7,15] 2.4852951464709e-06 [GeV]
+Cell[9,16] 3.4740378396236e-10 [GeV]
+Cell[9,18] 1.5587803756034e-06 [GeV]
+Cell[2,14] 3.182899672538e-08 [GeV]
+Cell[2,35] 2.6907050050795e-06 [GeV]
+Cell[5,40] 1.104178460082e-06 [GeV]
+Cell[10,19] 1.1774324359521e-06 [GeV]
+Cell[6,11] 3.5480479709804e-10 [GeV]
+Cell[2,44] 0.0022499100219639 [GeV]
+Cell[3,1] 0.00074468417845708 [GeV]
+Cell[4,5] 0.0021266150739315 [GeV]
+Cell[8,34] 0.0019149896402912 [GeV]
+Cell[4,32] 0.00083032969859346 [GeV]
+Cell[8,39] 9.5065762207014e-07 [GeV]
+Cell[8,38] 0.0012807146130749 [GeV]
+Cell[5,8] 2.8561224171426e-06 [GeV]
+Cell[2,7] 0.0019281826766862 [GeV]
+Cell[10,18] 2.2297372328239e-06 [GeV]
+Cell[7,19] 7.5690331868827e-10 [GeV]
+Cell[3,10] 0.00025969164308267 [GeV]
+Cell[4,7] 0.18076363298364 [GeV]
+Cell[4,8] 0.0018922490636465 [GeV]
+Cell[4,9] 0.0027936816498075 [GeV]
+Cell[4,10] 1.279390729826e-05 [GeV]
+Cell[3,6] 0.0037462693654568 [GeV]
+Cell[6,18] 4.3532012496144e-06 [GeV]
+Cell[5,10] 0.0022230532079903 [GeV]
+Cell[3,9] 0.0032010530928341 [GeV]
+Cell[5,26] 2.4030551800251e-06 [GeV]
+Cell[3,35] 4.1700916481204e-06 [GeV]
+Cell[4,36] 0.00040812554803381 [GeV]
+Cell[4,35] 9.1827485675822e-08 [GeV]
+Cell[3,5] 0.002352563593709 [GeV]
+### Total energy deposition in calorimeter by a source track in 68 cells : 0.36893200543654 (GeV)
Source track ID 5610 (pi+,3.2624996963797[GeV]) at (499.98995368773,-3.169575892714,-1674.5326238561)
Original primary track ID 27 (unknown,1.8699577628705[GeV])
-Cell[5,35] 1.4876464527333e-05 [GeV]
-Cell[10,23] 8.806627622107e-06 [GeV]
-Cell[0,28] 2.0338968170108e-05 [GeV]
-Cell[11,23] 0.0010863139811888 [GeV]
-Cell[12,23] 0.01644905540613 [GeV]
-Cell[4,45] 0.00025546908727927 [GeV]
-Cell[6,31] 0.00070635066385631 [GeV]
-Cell[6,30] 0.00016184299754981 [GeV]
-Cell[5,36] 0.00084486593652848 [GeV]
-Cell[1,10] 0.00074739125841234 [GeV]
-Cell[4,20] 1.4979916818447e-07 [GeV]
-Cell[4,19] 5.6784483604133e-10 [GeV]
-Cell[0,47] 0.2470094829302 [GeV]
-Cell[12,24] 4.6751532636335e-09 [GeV]
-Cell[0,4] 1.2915693398099e-05 [GeV]
-Cell[0,3] 0.0015174742388091 [GeV]
-Cell[0,5] 9.1117363772355e-06 [GeV]
-Cell[0,6] 0.0026813001065379 [GeV]
-Cell[2,1] 0.00011839086640475 [GeV]
-Cell[1,1] 0.0018917741766121 [GeV]
-Cell[1,0] 0.14500836302239 [GeV]
-Cell[0,29] 1.6469057736685e-05 [GeV]
-Cell[0,44] 0.0013336742889369 [GeV]
-Cell[1,11] 1.4979562780354e-05 [GeV]
-Cell[1,47] 0.53727090543092 [GeV]
-Cell[0,10] 6.5246075098457e-07 [GeV]
-Cell[0,2] 0.0048500337836041 [GeV]
-Cell[1,46] 0.00040846498431301 [GeV]
-Cell[0,45] 0.016074871828137 [GeV]
-Cell[1,45] 0.00092942066187015 [GeV]
-Cell[0,46] 0.023560956728397 [GeV]
-Cell[0,1] 0.026821970635805 [GeV]
-Cell[0,9] 2.6819347453966e-08 [GeV]
-Cell[0,15] 0.0032863487855321 [GeV]
-Cell[0,0] 0.44987644903936 [GeV]
-Cell[4,44] 4.9449452330919e-07 [GeV]
-Cell[11,21] 0.00011532738187827 [GeV]
-Cell[12,22] 0.0090276410393453 [GeV]
-Cell[12,21] 1.1282959644632e-07 [GeV]
-Cell[11,22] 0.0032648609997232 [GeV]
-Cell[1,37] 0.00062308905364046 [GeV]
-Cell[0,36] 0.012161746885172 [GeV]
-Cell[0,37] 0.0011885711008745 [GeV]
-### Total energy deposition in calorimeter by a source track in 43 cells : 1.5093713470564 (GeV)
+Cell[1,47] 0.13404728390376 [GeV]
+Cell[0,47] 0.16322915319875 [GeV]
+### Total energy deposition in calorimeter by a source track in 2 cells : 0.29727643710251 (GeV)
Source track ID 5606 (gamma,0.53051937575115[GeV]) at (475.84610202081,-153.52682889839,-782.17055927735)
Original primary track ID 27 (unknown,1.8699577628705[GeV])
-Cell[6,42] 0.00017261370481009 [GeV]
-Cell[5,43] 0.0012411860560759 [GeV]
-Cell[10,33] 0.00025366810487094 [GeV]
-Cell[5,46] 0.012343776398808 [GeV]
-Cell[5,45] 0.39774916723314 [GeV]
-Cell[6,46] 0.00035881883135139 [GeV]
-Cell[5,9] 0.00044088738278537 [GeV]
-Cell[6,45] 0.1169997292062 [GeV]
-Cell[5,44] 0.00041269143472358 [GeV]
-### Total energy deposition in calorimeter by a source track in 9 cells : 0.52997253835276 (GeV)
+Cell[5,43] 0.00022345725532409 [GeV]
+Cell[9,31] 0.00050592357724829 [GeV]
+Cell[5,46] 0.0019288517997578 [GeV]
+Cell[6,45] 0.25302133637772 [GeV]
+Cell[5,44] 0.005226704624542 [GeV]
+Cell[6,46] 0.00051099891 [GeV]
+Cell[5,16] 0.00051099891 [GeV]
+Cell[5,45] 0.26564397531389 [GeV]
+Cell[5,2] 0.0010468654066237 [GeV]
+Cell[5,27] 0.00068492698927368 [GeV]
+### Total energy deposition in calorimeter by a source track in 10 cells : 0.52930403916437 (GeV)
Source track ID 5607 (gamma,0.17927399228015[GeV]) at (168.15424472934,-470.87593905349,-1264.5234728217)
Original primary track ID 27 (unknown,1.8699577628705[GeV])
-Cell[4,20] 0.00051099891 [GeV]
-Cell[2,29] 0.00040096659426847 [GeV]
-Cell[2,28] 0.00051099891 [GeV]
-Cell[3,8] 0.00051099891 [GeV]
-Cell[0,0] 0.00036714294456344 [GeV]
-Cell[3,13] 0.00049684097290639 [GeV]
-Cell[3,38] 0.17531358842124 [GeV]
-### Total energy deposition in calorimeter by a source track in 7 cells : 0.17811153566298 (GeV)
+Cell[9,8] 0.00050674048605004 [GeV]
+Cell[0,33] 0.0001374040518376 [GeV]
+Cell[9,20] 0.0003355438125704 [GeV]
+Cell[0,26] 0.00017015733415373 [GeV]
+Cell[3,21] 0.00051099891 [GeV]
+Cell[2,38] 0.00026984901204801 [GeV]
+Cell[3,38] 0.1638910130708 [GeV]
+Cell[3,39] 0.011224399378863 [GeV]
+Cell[9,21] 0.00042188912024827 [GeV]
+### Total energy deposition in calorimeter by a source track in 9 cells : 0.17746799517657 (GeV)
Source track ID 5601 (gamma,0.029139312364589[GeV]) at (352.62449874751,-354.47984834553,-555.08961619929)
Original primary track ID 27 (unknown,1.8699577628705[GeV])
-Cell[7,42] 0.002465553085536 [GeV]
-Cell[7,41] 0.026673759279053 [GeV]
+Cell[7,42] 0.00024990863210935 [GeV]
+Cell[7,41] 0.028889403732479 [GeV]
### Total energy deposition in calorimeter by a source track in 2 cells : 0.029139312364589 (GeV)
Source track ID 5602 (gamma,0.00051099891[GeV]) at (-426.42993720404,261.06993058596,-593.05567182712)
@@ -2978,9 +3044,10 @@ Cell[9,14] 0.00037411059905235 [GeV]
Source track ID 5592 (gamma,0.013381526258403[GeV]) at (-195.12319127034,460.35523265027,-133.44905333957)
Original primary track ID 27 (unknown,1.8699577628705[GeV])
-Cell[9,14] 0.0059434958011379 [GeV]
-Cell[9,15] 0.0074380304572655 [GeV]
-### Total energy deposition in calorimeter by a source track in 2 cells : 0.013381526258403 (GeV)
+Cell[9,14] 0.0022498322578422 [GeV]
+Cell[10,20] 0.00042230656863969 [GeV]
+Cell[9,15] 0.010709387431921 [GeV]
+### Total energy deposition in calorimeter by a source track in 3 cells : 0.013381526258403 (GeV)
Source track ID 5595 (gamma,0.016612452226243[GeV]) at (-169.2977037959,470.46603223765,-135.29552576221)
Original primary track ID 27 (unknown,1.8699577628705[GeV])
@@ -2989,16 +3056,13 @@ Cell[9,14] 0.016612452226243 [GeV]
Source track ID 5563 (e+,0.27739649432721[GeV]) at (-138.61367367751,480.40217471367,-139.05781973418)
Original primary track ID 27 (unknown,1.8699577628705[GeV])
-Cell[7,36] 0.0013358803019606 [GeV]
-Cell[8,17] 0.00021975460261594 [GeV]
-Cell[9,14] 0.032562535204383 [GeV]
-Cell[7,33] 0.00021502564775841 [GeV]
-Cell[13,32] 0.0013171161274309 [GeV]
-Cell[9,15] 0.00050950792655282 [GeV]
-Cell[12,20] 0.00029083459940627 [GeV]
-Cell[9,27] 0.00041479389592445 [GeV]
-Cell[9,13] 0.23955642041642 [GeV]
-### Total energy deposition in calorimeter by a source track in 9 cells : 0.27642186872245 (GeV)
+Cell[9,11] 0.00045701327923145 [GeV]
+Cell[9,12] 0.0039557230092057 [GeV]
+Cell[9,20] 0.0006282550788497 [GeV]
+Cell[9,14] 0.0810758550123 [GeV]
+Cell[9,2] 0.00038478814736673 [GeV]
+Cell[9,13] 0.19128064687762 [GeV]
+### Total energy deposition in calorimeter by a source track in 6 cells : 0.27778228140458 (GeV)
Source track ID 5580 (gamma,5.897144927827e-05[GeV]) at (-486.31797198572,-116.16725065049,120.40210098459)
Original primary track ID 27 (unknown,1.8699577628705[GeV])
@@ -3007,9 +3071,8 @@ Cell[10,25] 5.897144927827e-05 [GeV]
Source track ID 5569 (gamma,0.006567336421428[GeV]) at (-490.86775564013,95.125424954747,-100.68583203344)
Original primary track ID 27 (unknown,1.8699577628705[GeV])
-Cell[9,22] 0.0047574256819158 [GeV]
-Cell[9,23] 0.0018099107395121 [GeV]
-### Total energy deposition in calorimeter by a source track in 2 cells : 0.006567336421428 (GeV)
+Cell[9,22] 0.006567336421428 [GeV]
+### Total energy deposition in calorimeter by a source track in 1 cells : 0.006567336421428 (GeV)
Source track ID 5570 (gamma,0.0015599749978107[GeV]) at (-493.88989085421,77.928016220236,-130.69353660455)
Original primary track ID 27 (unknown,1.8699577628705[GeV])
@@ -3018,85 +3081,74 @@ Cell[9,22] 0.0015599749978107 [GeV]
Source track ID 5573 (gamma,0.012233526283887[GeV]) at (-499.6339651152,19.1285363597,-134.90683702903)
Original primary track ID 27 (unknown,1.8699577628705[GeV])
-Cell[9,24] 0.0015475584988495 [GeV]
-Cell[9,23] 0.010685967785038 [GeV]
+Cell[9,24] 0.0010985947118544 [GeV]
+Cell[9,23] 0.011134931572033 [GeV]
### Total energy deposition in calorimeter by a source track in 2 cells : 0.012233526283887 (GeV)
Source track ID 5564 (e-,0.48758138443441[GeV]) at (-499.72690509693,16.523326609581,-135.34890670019)
Original primary track ID 27 (unknown,1.8699577628705[GeV])
-Cell[9,24] 0.19475258343308 [GeV]
-Cell[9,22] 0.00024327446938458 [GeV]
-Cell[9,23] 0.28068672892943 [GeV]
-Cell[8,23] 0.00096765005548773 [GeV]
-Cell[9,21] 0.00026772444061542 [GeV]
-Cell[8,24] 0.01012371990554 [GeV]
-### Total energy deposition in calorimeter by a source track in 6 cells : 0.48704168123353 (GeV)
+Cell[9,25] 0.00051099891 [GeV]
+Cell[9,24] 0.090253248527499 [GeV]
+Cell[13,37] 0.0023603656256625 [GeV]
+Cell[11,25] 0.00025920569818589 [GeV]
+Cell[9,23] 0.38415509287281 [GeV]
+Cell[8,24] 0.0077134783402422 [GeV]
+Cell[8,23] 0.00071285764051541 [GeV]
+### Total energy deposition in calorimeter by a source track in 7 cells : 0.48596524761492 (GeV)
Source track ID 5565 (gamma,0.14815181584447[GeV]) at (-470.45466618342,169.3292859084,-336.66113419429)
Original primary track ID 27 (unknown,1.8699577628705[GeV])
-Cell[7,20] 0.0012460672003882 [GeV]
-Cell[8,22] 0.0014629573470757 [GeV]
-Cell[8,21] 0.13466655099486 [GeV]
-Cell[8,20] 0.0024119147395176 [GeV]
-Cell[7,21] 0.0083643255626276 [GeV]
-### Total energy deposition in calorimeter by a source track in 5 cells : 0.14815181584447 (GeV)
+Cell[7,21] 0.0011897213301957 [GeV]
+Cell[8,21] 0.14696209451427 [GeV]
+### Total energy deposition in calorimeter by a source track in 2 cells : 0.14815181584447 (GeV)
Source track ID 5518 (pi+,0.18774229325373[GeV]) at (-499.97489931143,-5.0099958610389,1567.4633318295)
Original primary track ID 27 (unknown,1.8699577628705[GeV])
-Cell[16,30] 0.00028629323697886 [GeV]
-Cell[18,2] 0.00071865707328719 [GeV]
-Cell[16,38] 0.0062040484393456 [GeV]
-Cell[17,24] 0.046162685930444 [GeV]
-Cell[17,23] 0.035636276020337 [GeV]
-### Total energy deposition in calorimeter by a source track in 5 cells : 0.089007960700393 (GeV)
+Cell[17,24] 0.086166144992524 [GeV]
+Cell[18,24] 0.0015877606772848 [GeV]
+Cell[18,26] 0.0043543074701949 [GeV]
+### Total energy deposition in calorimeter by a source track in 3 cells : 0.092108213140004 (GeV)
Source track ID 5515 (gamma,0.77769411525198[GeV]) at (-416.91771416663,-276.00655719398,-225.0942243666)
Original primary track ID 27 (unknown,1.8699577628705[GeV])
-Cell[8,9] 0.00035189408923754 [GeV]
-Cell[8,29] 0.017604043689447 [GeV]
-Cell[8,30] 0.0017094208967758 [GeV]
-Cell[9,30] 1.880737272586e-10 [GeV]
-Cell[8,27] 0.026446235899113 [GeV]
-Cell[9,27] 0.0016063762158935 [GeV]
-Cell[8,28] 0.72174280902625 [GeV]
-Cell[9,29] 9.1198918539703e-07 [GeV]
-### Total energy deposition in calorimeter by a source track in 8 cells : 0.76946169199398 (GeV)
+Cell[8,29] 0.0079749317991801 [GeV]
+Cell[8,31] 0.00091418901736961 [GeV]
+Cell[9,28] 0.0017607035621627 [GeV]
+Cell[12,0] 0.00051099891 [GeV]
+Cell[8,30] 0.0017678655493771 [GeV]
+Cell[8,28] 0.72841678581441 [GeV]
+Cell[8,27] 0.019411278300628 [GeV]
+Cell[9,27] 0.014837162130931 [GeV]
+Cell[8,0] 0.0015891904683332 [GeV]
+Cell[13,5] 0.00011022126783239 [GeV]
+### Total energy deposition in calorimeter by a source track in 10 cells : 0.77729332682022 (GeV)
Source track ID 5516 (gamma,0.11840768281034[GeV]) at (-377.5578694832,-327.7957522472,-196.44946324624)
Original primary track ID 27 (unknown,1.8699577628705[GeV])
-Cell[8,29] 0.045739929572009 [GeV]
-Cell[8,31] 0.00051099891 [GeV]
-Cell[8,36] 0.00043011825939688 [GeV]
-Cell[9,28] 0.0016302047498682 [GeV]
-Cell[8,30] 0.00096640940797236 [GeV]
-Cell[8,28] 0.00040620866469597 [GeV]
-Cell[9,29] 0.06864293259579 [GeV]
-### Total energy deposition in calorimeter by a source track in 7 cells : 0.11832680215973 (GeV)
+Cell[8,29] 0.11000236202517 [GeV]
+Cell[8,31] 0.00026506900113249 [GeV]
+Cell[8,30] 0.00081871383254723 [GeV]
+Cell[8,28] 0.0057415899163497 [GeV]
+Cell[9,29] 0.0015799480351374 [GeV]
+### Total energy deposition in calorimeter by a source track in 5 cells : 0.11840768281034 (GeV)
Source track ID 5509 (neutron,0.95941808282617[GeV]) at (-284.99141638346,-410.82830061687,-110.03241408191)
Original primary track ID 27 (unknown,1.8699577628705[GeV])
-Cell[8,44] 0.0030367769322818 [GeV]
-Cell[10,33] 0.0013147044842268 [GeV]
-Cell[9,32] 9.6171875466098e-06 [GeV]
-Cell[9,31] 0.0015132698035508 [GeV]
-Cell[9,30] 1.6007106751204e-12 [GeV]
-Cell[10,32] 2.2233640120135e-05 [GeV]
-Cell[9,44] 8.5734442553644e-05 [GeV]
-Cell[9,45] 0.0012324633328874 [GeV]
-### Total energy deposition in calorimeter by a source track in 8 cells : 0.0072147998247679 (GeV)
+Cell[9,28] 3.2359436690967e-06 [GeV]
+Cell[9,31] 9.2116593911442e-05 [GeV]
+Cell[9,29] 4.1817594377335e-05 [GeV]
+Cell[9,30] 0.0020682605947611 [GeV]
+Cell[9,32] 0.010230718880442 [GeV]
+### Total energy deposition in calorimeter by a source track in 5 cells : 0.012436149607161 (GeV)
Source track ID 5510 (neutron,0.9427510846728[GeV]) at (-419.26087115496,-272.4340689385,-153.04941084077)
Original primary track ID 27 (unknown,1.8699577628705[GeV])
-Cell[9,25] 7.0443862176035e-05 [GeV]
-Cell[9,26] 0.00036261533009986 [GeV]
-Cell[8,29] 0.0010845750720167 [GeV]
-Cell[9,28] 0.0012308022069627 [GeV]
-Cell[13,43] 4.9336260417476e-08 [GeV]
-Cell[16,21] 0.00014709796091677 [GeV]
-Cell[16,20] 0.00013755522668578 [GeV]
-Cell[9,27] 6.8545157390759e-05 [GeV]
-Cell[9,29] 9.1400165692903e-06 [GeV]
-### Total energy deposition in calorimeter by a source track in 9 cells : 0.0031108241690783 (GeV)
+Cell[8,31] 3.7955054608574e-07 [GeV]
+Cell[9,28] 0.00085856859355772 [GeV]
+Cell[8,30] 6.7068651787849e-10 [GeV]
+Cell[9,29] 0.0022579445351726 [GeV]
+Cell[9,30] 5.0682574510574e-08 [GeV]
+### Total energy deposition in calorimeter by a source track in 5 cells : 0.0031169440325375 (GeV)
Source track ID 5512 (gamma,0.00068943975256201[GeV]) at (-481.83337852432,133.55371705736,-270.02647833207)
Original primary track ID 27 (unknown,1.8699577628705[GeV])
@@ -3105,53 +3157,109 @@ Cell[8,21] 0.00068943975256201 [GeV]
Source track ID 5427 (pi-,0.29733776153231[GeV]) at (-495.69866501292,65.443361041486,1863.3403563009)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
-Cell[16,31] 6.6453156468924e-06 [GeV]
-Cell[13,42] 1.0806411504745e-05 [GeV]
-Cell[15,29] 1.8915621447377e-05 [GeV]
-Cell[15,26] 8.765898499405e-06 [GeV]
-Cell[15,28] 0.0008354913852329 [GeV]
-Cell[13,41] 0.0010116219984303 [GeV]
-Cell[15,1] 0.0012113451877665 [GeV]
-Cell[19,22] 0.0082164639788169 [GeV]
-Cell[19,23] 0.16842238296774 [GeV]
-Cell[19,24] 0.00035078331114607 [GeV]
-Cell[18,24] 2.0324421911937e-06 [GeV]
-Cell[18,43] 0.0012546868405756 [GeV]
-Cell[18,44] 0.00015299789781761 [GeV]
-Cell[18,42] 0.00039126582807538 [GeV]
-Cell[15,27] 2.2593925678393e-05 [GeV]
-### Total energy deposition in calorimeter by a source track in 15 cells : 0.18191679901057 (GeV)
+Cell[16,45] 0.0027701575598083 [GeV]
+Cell[18,24] 9.1229912750691e-05 [GeV]
+Cell[19,22] 0.0011766916645366 [GeV]
+Cell[19,23] 0.25848507243083 [GeV]
+Cell[19,24] 2.6643277335097e-05 [GeV]
+Cell[18,25] 0.0017654203510036 [GeV]
+Cell[19,25] 9.324661584742e-08 [GeV]
+### Total energy deposition in calorimeter by a source track in 7 cells : 0.26431530844288 (GeV)
Source track ID 5428 (pi+,3.710414086749[GeV]) at (209.39424727423,454.04190248088,1947.7308764643)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
-Cell[19,8] 0.092291587141728 [GeV]
-### Total energy deposition in calorimeter by a source track in 1 cells : 0.092291587141728 (GeV)
+Cell[19,5] 0.00069566805674765 [GeV]
+Cell[12,32] 0.00035871137956521 [GeV]
+Cell[16,11] 1.3223854679381e-05 [GeV]
+Cell[14,10] 0.00030669005408402 [GeV]
+Cell[14,9] 0.0070915578982974 [GeV]
+Cell[16,25] 0.00051099891 [GeV]
+Cell[15,7] 0.0039835209276007 [GeV]
+Cell[16,7] 0.0026502460838685 [GeV]
+Cell[16,6] 0.0037457710936458 [GeV]
+Cell[14,11] 0.00085003679062675 [GeV]
+Cell[17,9] 0.0019810896468549 [GeV]
+Cell[15,13] 0.0012128876735202 [GeV]
+Cell[15,45] 0.0023923610068256 [GeV]
+Cell[17,41] 9.0682194695546e-09 [GeV]
+Cell[19,11] 0.00070155821111291 [GeV]
+Cell[19,12] 6.5422440577549e-06 [GeV]
+Cell[16,21] 0.0003615252654852 [GeV]
+Cell[15,12] 0.0012031601344022 [GeV]
+Cell[15,8] 0.0028747579634987 [GeV]
+Cell[18,15] 7.6676908081481e-06 [GeV]
+Cell[17,27] 0.0040608292602669 [GeV]
+Cell[14,12] 0.00094042475427705 [GeV]
+Cell[19,0] 0.0036112992529314 [GeV]
+Cell[19,15] 0.00045896380063766 [GeV]
+Cell[19,10] 0.0063982874549951 [GeV]
+Cell[18,14] 0.0020700059300552 [GeV]
+Cell[17,7] 5.9342995655243e-09 [GeV]
+Cell[17,8] 0.00038785346255645 [GeV]
+Cell[15,11] 0.0010626310581243 [GeV]
+Cell[19,23] 2.2775493562222e-09 [GeV]
+Cell[19,8] 0.45200533799173 [GeV]
+Cell[19,6] 0.00033205979138654 [GeV]
+Cell[19,9] 0.003459402220473 [GeV]
+Cell[19,7] 0.0055774400795734 [GeV]
+Cell[19,16] 0.00065237264957442 [GeV]
+Cell[17,42] 3.4901864353287e-07 [GeV]
+Cell[19,1] 0.0010786505847038 [GeV]
+Cell[19,2] 0.00021266020566588 [GeV]
+Cell[18,2] 2.3240224061283e-07 [GeV]
+Cell[18,22] 4.9329246394336e-09 [GeV]
+Cell[17,26] 0.00051400589902687 [GeV]
+Cell[19,14] 0.00077841908397639 [GeV]
+Cell[16,9] 0.041020128313354 [GeV]
+Cell[16,8] 0.018966352947228 [GeV]
+Cell[16,10] 0.0005448090481292 [GeV]
+Cell[15,9] 0.011785270600821 [GeV]
+Cell[15,10] 0.00044590289907126 [GeV]
+Cell[17,6] 0.00051163758936912 [GeV]
+### Total energy deposition in calorimeter by a source track in 48 cells : 0.58782332339749 (GeV)
Source track ID 5188 (pi+,0.59931017071871[GeV]) at (-416.61359064398,276.46539763726,361.79631077811)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
-Cell[11,20] 2.0225151703926e-05 [GeV]
-Cell[10,18] 0.0029785063229461 [GeV]
-Cell[10,19] 0.0013262018329809 [GeV]
-Cell[10,17] 6.6059784439858e-06 [GeV]
-Cell[11,15] 0.0010241324259737 [GeV]
-Cell[11,19] 0.062642135802043 [GeV]
-Cell[12,16] 0.0046891337603646 [GeV]
-Cell[12,17] 0.21933421671653 [GeV]
-Cell[11,18] 0.057582401809717 [GeV]
-Cell[12,20] 0.00071334859564013 [GeV]
-Cell[12,19] 0.00076072579928393 [GeV]
-Cell[12,18] 0.055690937379394 [GeV]
-Cell[11,16] 0.0028539749230246 [GeV]
-Cell[11,17] 0.050912810770788 [GeV]
-Cell[10,16] 0.00069570130947091 [GeV]
-### Total energy deposition in calorimeter by a source track in 15 cells : 0.46123105857831 (GeV)
+Cell[10,23] 0.00015376476213521 [GeV]
+Cell[8,43] 9.9696466058958e-06 [GeV]
+Cell[6,23] 0.00066786174684341 [GeV]
+Cell[2,31] 0.0012472720968281 [GeV]
+Cell[8,44] 2.4512437201338e-05 [GeV]
+Cell[11,20] 0.0030511181340776 [GeV]
+Cell[12,28] 0.0010507997636879 [GeV]
+Cell[16,24] 2.61242290768e-05 [GeV]
+Cell[14,43] 0.00033346037512763 [GeV]
+Cell[14,44] 4.635300336372e-05 [GeV]
+Cell[11,1] 0.00033908108109756 [GeV]
+Cell[11,47] 0.00042637678505173 [GeV]
+Cell[11,0] 0.00017360865245428 [GeV]
+Cell[11,21] 8.8485664269797e-05 [GeV]
+Cell[11,19] 0.30324215253099 [GeV]
+Cell[14,41] 1.1054757807869e-05 [GeV]
+Cell[15,33] 3.7571386201307e-07 [GeV]
+Cell[12,19] 0.056089551655304 [GeV]
+Cell[12,18] 5.4401052874027e-05 [GeV]
+Cell[2,30] 0.00024943651657543 [GeV]
+Cell[6,24] 9.9304250380101e-05 [GeV]
+Cell[14,45] 0.0012853805956047 [GeV]
+Cell[10,16] 0.00029232858568017 [GeV]
+Cell[9,42] 0.00090294624747255 [GeV]
+Cell[12,20] 0.0002628016514426 [GeV]
+Cell[16,23] 7.176094920851e-07 [GeV]
+Cell[11,18] 0.10881224641321 [GeV]
+Cell[12,13] 6.9353003054857e-06 [GeV]
+Cell[4,36] 1.9321214611409e-05 [GeV]
+Cell[9,15] 1.3493746140512e-06 [GeV]
+Cell[11,17] 0.0030461005172926 [GeV]
+Cell[10,15] 5.605293276858e-07 [GeV]
+### Total energy deposition in calorimeter by a source track in 32 cells : 0.48201575289466 (GeV)
Source track ID 5376 (gamma,0.15251351239083[GeV]) at (-487.09323692311,-112.87239938874,-730.31343288004)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
-Cell[6,25] 0.12301151306988 [GeV]
-Cell[5,26] 0.0057257328929992 [GeV]
-Cell[6,15] 0.00041900890023092 [GeV]
-Cell[5,25] 0.02335725752772 [GeV]
+Cell[5,24] 0.00083715546929781 [GeV]
+Cell[6,25] 0.12693692693014 [GeV]
+Cell[6,26] 0.0014751162350897 [GeV]
+Cell[5,25] 0.023264313756299 [GeV]
### Total energy deposition in calorimeter by a source track in 4 cells : 0.15251351239083 (GeV)
Source track ID 5416 (gamma,0.0035182636596462[GeV]) at (56.531206578482,496.79394388698,4.1258372524714)
@@ -3166,17 +3274,17 @@ Cell[10,27] 0.00060367537399583 [GeV]
Source track ID 5382 (gamma,0.012370905401679[GeV]) at (-477.22119411749,-149.19762694184,8.0273570096526)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
-Cell[10,26] 0.012370905401679 [GeV]
-### Total energy deposition in calorimeter by a source track in 1 cells : 0.012370905401679 (GeV)
+Cell[9,26] 0.00051099891 [GeV]
+Cell[10,26] 0.011859906491679 [GeV]
+### Total energy deposition in calorimeter by a source track in 2 cells : 0.012370905401679 (GeV)
Source track ID 5384 (gamma,0.059604429547603[GeV]) at (-491.17500576023,-93.526005562305,7.0526352360037)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
-Cell[9,25] 0.0094603523955128 [GeV]
-Cell[9,24] 0.0013835020142238 [GeV]
-Cell[6,17] 0.00039053054629422 [GeV]
-Cell[9,36] 0.0022348228639854 [GeV]
-Cell[10,25] 0.045655181162953 [GeV]
-### Total energy deposition in calorimeter by a source track in 5 cells : 0.059124388982969 (GeV)
+Cell[9,25] 0.0016882473241334 [GeV]
+Cell[9,24] 0.0020776482915475 [GeV]
+Cell[10,24] 0.010703237546642 [GeV]
+Cell[10,25] 0.04513529638528 [GeV]
+### Total energy deposition in calorimeter by a source track in 4 cells : 0.059604429547603 (GeV)
Source track ID 5385 (gamma,0.0013176984347113[GeV]) at (-491.57566092294,-91.396770118949,4.685286755155)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
@@ -3195,7 +3303,7 @@ Cell[8,33] 0.00045896774269022 [GeV]
Source track ID 5401 (gamma,0.00069114153392172[GeV]) at (-164.42379917359,-472.19150168689,-255.70867195507)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
-Cell[8,33] 0.00069114153392172 [GeV]
+Cell[8,34] 0.00069114153392172 [GeV]
### Total energy deposition in calorimeter by a source track in 1 cells : 0.00069114153392172 (GeV)
Source track ID 5402 (gamma,0.0004424095587889[GeV]) at (-143.6629878558,-478.91642895222,-1691.52452648)
@@ -3205,85 +3313,61 @@ Cell[1,33] 0.0004424095587889 [GeV]
Source track ID 5360 (pi-,0.85376539556456[GeV]) at (324.53791563608,-380.36185575658,733.85120023607)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
-Cell[5,24] 0.0020498372889747 [GeV]
-Cell[6,22] 5.2311355539132e-06 [GeV]
-Cell[6,23] 3.152877330308e-05 [GeV]
-Cell[6,25] 2.3002879559044e-05 [GeV]
-Cell[15,32] 2.8398197224192e-05 [GeV]
-Cell[16,31] 1.8102582544088e-11 [GeV]
-Cell[15,31] 0.0057390558789887 [GeV]
-Cell[15,30] 6.9294182700105e-05 [GeV]
-Cell[14,40] 0.003966223337901 [GeV]
-Cell[12,26] 3.3460430432797e-06 [GeV]
-Cell[12,27] 0.0003598371091141 [GeV]
-Cell[12,28] 3.5883960459614e-05 [GeV]
-Cell[15,42] 0.00089448922751366 [GeV]
-Cell[15,41] 0.001092490446138 [GeV]
-Cell[15,40] 0.0015949695661604 [GeV]
-Cell[14,43] 0.0047416048362375 [GeV]
-Cell[14,42] 0.021169239415333 [GeV]
-Cell[13,43] 0.098893585383081 [GeV]
-Cell[13,18] 0.0011135067356597 [GeV]
-Cell[13,42] 0.15765315132029 [GeV]
-Cell[12,23] 0.0006754606459665 [GeV]
-Cell[9,15] 0.00053325753195395 [GeV]
-Cell[5,23] 7.516417053705e-05 [GeV]
-Cell[12,24] 2.1213343649151e-06 [GeV]
-Cell[15,43] 5.6444697774964e-05 [GeV]
-Cell[6,24] 0.0011000757142424 [GeV]
-Cell[5,22] 6.1584981229998e-06 [GeV]
-Cell[13,44] 0.0051139125997942 [GeV]
-Cell[13,41] 0.187535289556 [GeV]
-Cell[10,46] 0.00049838380696171 [GeV]
-Cell[15,2] 3.8895432953723e-06 [GeV]
-Cell[15,3] 0.00031884914520742 [GeV]
-Cell[12,22] 0.0022047742001053 [GeV]
-Cell[14,41] 0.20467641120503 [GeV]
-Cell[12,21] 0.0020488009015083 [GeV]
-Cell[13,17] 1.0850555895558e-08 [GeV]
-Cell[19,18] 0.001172436845283 [GeV]
-Cell[11,22] 0.0019532566068056 [GeV]
-Cell[19,17] 5.2292194079882e-05 [GeV]
-Cell[19,16] 5.7800207287073e-11 [GeV]
-### Total energy deposition in calorimeter by a source track in 40 cells : 0.70749166584072 (GeV)
+Cell[15,42] 0.27576504969793 [GeV]
+Cell[15,41] 0.0030134758994852 [GeV]
+Cell[15,40] 0.0002765440360904 [GeV]
+Cell[14,42] 0.15336728734918 [GeV]
+Cell[13,41] 0.078524725519392 [GeV]
+Cell[14,41] 0.081749750877697 [GeV]
+Cell[17,41] 0.0011867281603552 [GeV]
+Cell[16,38] 2.7712982955563e-08 [GeV]
+Cell[16,39] 0.0016114062908499 [GeV]
+Cell[17,38] 7.7016204613756e-10 [GeV]
+Cell[16,41] 0.011183329128481 [GeV]
+Cell[17,40] 0.00038715123017278 [GeV]
+Cell[17,43] 0.00078028433284896 [GeV]
+Cell[17,42] 1.0229241976049e-05 [GeV]
+Cell[16,42] 0.15557416997975 [GeV]
+Cell[16,40] 0.0017241831720681 [GeV]
+Cell[17,39] 1.3979982327328e-08 [GeV]
+Cell[16,43] 0.001484006038884 [GeV]
+### Total energy deposition in calorimeter by a source track in 18 cells : 0.76663836341829 (GeV)
Source track ID 5357 (gamma,0.37778731993224[GeV]) at (315.8962050006,-387.56881668449,149.20557423239)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
-Cell[10,41] 0.34067800947352 [GeV]
-Cell[14,14] 0.0011120186653446 [GeV]
-Cell[10,40] 0.018839800004724 [GeV]
-Cell[10,39] 0.00016935651240095 [GeV]
-Cell[12,35] 0.00040823996116888 [GeV]
-Cell[11,41] 0.0050935982109163 [GeV]
-Cell[11,40] 0.0093691141597504 [GeV]
-Cell[7,21] 0.00039364968581604 [GeV]
-Cell[10,5] 0.0014707835127421 [GeV]
-### Total energy deposition in calorimeter by a source track in 9 cells : 0.37753457018638 (GeV)
+Cell[10,41] 0.33862223032433 [GeV]
+Cell[10,39] 0.0027357308665331 [GeV]
+Cell[11,41] 0.017088530997228 [GeV]
+Cell[11,40] 0.0031872552389091 [GeV]
+Cell[10,40] 0.0052167023929754 [GeV]
+Cell[10,42] 0.010936524296221 [GeV]
+### Total energy deposition in calorimeter by a source track in 6 cells : 0.3777869741162 (GeV)
Source track ID 5358 (gamma,0.13885684299554[GeV]) at (475.10692449309,-155.79926283112,345.33262538824)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
-Cell[11,45] 0.12893660470249 [GeV]
-Cell[14,26] 0.0016047161531231 [GeV]
-Cell[10,25] 0.00026120569592685 [GeV]
-Cell[12,45] 0.0065621284274754 [GeV]
-Cell[12,44] 0.0004701901965287 [GeV]
-Cell[15,16] 0.00051099891 [GeV]
-Cell[10,13] 0.00030968058489312 [GeV]
-### Total energy deposition in calorimeter by a source track in 7 cells : 0.13865552467044 (GeV)
+Cell[11,46] 0.0016646608405752 [GeV]
+Cell[11,45] 0.13603930876327 [GeV]
+Cell[12,45] 0.00051099891 [GeV]
+Cell[12,46] 0.00064187448170004 [GeV]
+### Total energy deposition in calorimeter by a source track in 4 cells : 0.13885684299554 (GeV)
Source track ID 5202 (gamma,0.1484777566564[GeV]) at (-237.22759514691,440.13982789656,-159.00519559666)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
-Cell[9,12] 0.00047606598749545 [GeV]
-Cell[8,15] 0.0088339625544854 [GeV]
-Cell[9,15] 0.13604923182528 [GeV]
-Cell[9,16] 0.00044760139986395 [GeV]
-### Total energy deposition in calorimeter by a source track in 4 cells : 0.14580686176712 (GeV)
+Cell[7,47] 0.0003340115930496 [GeV]
+Cell[9,14] 0.00076881180379991 [GeV]
+Cell[8,15] 0.00051099891 [GeV]
+Cell[8,16] 0.0056144640785511 [GeV]
+Cell[9,27] 0.00037544768621703 [GeV]
+Cell[9,16] 0.0045224198069082 [GeV]
+Cell[8,22] 0.00013254100544979 [GeV]
+Cell[9,15] 0.1352758715124 [GeV]
+Cell[8,14] 0.00020565760717577 [GeV]
+### Total energy deposition in calorimeter by a source track in 9 cells : 0.14774022400355 (GeV)
Source track ID 5252 (gamma,0.0040394339943053[GeV]) at (112.20358955319,487.24773420856,-66.761610295442)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
-Cell[9,10] 0.0036380326595338 [GeV]
-Cell[12,3] 4.9301920450603e-05 [GeV]
-### Total energy deposition in calorimeter by a source track in 2 cells : 0.0036873345799845 (GeV)
+Cell[9,10] 0.0040394339943053 [GeV]
+### Total energy deposition in calorimeter by a source track in 1 cells : 0.0040394339943053 (GeV)
Source track ID 5253 (gamma,6.6187393139719e-05[GeV]) at (75.841355101234,494.214618214,-71.486597867996)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
@@ -3292,11 +3376,15 @@ Cell[9,10] 6.6187393139719e-05 [GeV]
Source track ID 5204 (e-,0.12421165109276[GeV]) at (52.313102343541,497.25580873751,-74.382372951388)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
-Cell[9,10] 0.0027968301666171 [GeV]
-Cell[9,11] 0.10571153488274 [GeV]
-Cell[9,12] 0.013862359631924 [GeV]
-Cell[10,39] 0.00077442693725795 [GeV]
-### Total energy deposition in calorimeter by a source track in 4 cells : 0.12314515161854 (GeV)
+Cell[9,10] 0.00012029613493685 [GeV]
+Cell[9,11] 0.094031647104642 [GeV]
+Cell[9,12] 0.018644124244224 [GeV]
+Cell[8,33] 0.00051099891 [GeV]
+Cell[2,28] 0.0023819745245479 [GeV]
+Cell[9,13] 0.0047825097858359 [GeV]
+Cell[7,41] 0.00051099891 [GeV]
+Cell[9,15] 0.0006258125737718 [GeV]
+### Total energy deposition in calorimeter by a source track in 8 cells : 0.12160836218796 (GeV)
Source track ID 5214 (gamma,0.00015652711277247[GeV]) at (456.73753932474,203.44734004549,-98.547412885589)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
@@ -3310,13 +3398,14 @@ Cell[10,27] 0.00010690384228545 [GeV]
Source track ID 5216 (gamma,0.010994077936349[GeV]) at (-359.11172413075,-347.90626552542,-156.71535031032)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
-Cell[9,29] 0.010994077936349 [GeV]
-### Total energy deposition in calorimeter by a source track in 1 cells : 0.010994077936349 (GeV)
+Cell[9,29] 0.010242124768485 [GeV]
+Cell[9,30] 0.00072564775610023 [GeV]
+### Total energy deposition in calorimeter by a source track in 2 cells : 0.010967772524585 (GeV)
Source track ID 5219 (gamma,0.01252958078872[GeV]) at (-292.99034498185,405.16250782546,-133.95449507813)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
-Cell[9,17] 0.0087008777448631 [GeV]
-Cell[9,16] 0.003828703043857 [GeV]
+Cell[9,17] 0.01201858187872 [GeV]
+Cell[9,16] 0.00051099891 [GeV]
### Total energy deposition in calorimeter by a source track in 2 cells : 0.01252958078872 (GeV)
Source track ID 5220 (gamma,0.00043839574692557[GeV]) at (-324.1742633886,380.67183630584,-223.28123450406)
@@ -3326,8 +3415,10 @@ Cell[8,17] 0.00043839574692557 [GeV]
Source track ID 5224 (gamma,0.0030083759474913[GeV]) at (30.128003458992,499.09147799534,-86.779824846694)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
-Cell[9,11] 0.0030083759474913 [GeV]
-### Total energy deposition in calorimeter by a source track in 1 cells : 0.0030083759474913 (GeV)
+Cell[7,37] 0.00028324831253383 [GeV]
+Cell[9,11] 0.0024973770374913 [GeV]
+Cell[7,47] 0.00022775059746617 [GeV]
+### Total energy deposition in calorimeter by a source track in 3 cells : 0.0030083759474913 (GeV)
Source track ID 5228 (gamma,0.00013095427429563[GeV]) at (298.06250106284,401.44581883507,-307.67180434115)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
@@ -3346,1079 +3437,795 @@ Cell[10,11] 0.00041142095707909 [GeV]
Source track ID 5230 (gamma,0.016184410746804[GeV]) at (-391.01120213294,311.62515913602,-154.31736697975)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
-Cell[9,19] 0.016184410746804 [GeV]
-### Total energy deposition in calorimeter by a source track in 1 cells : 0.016184410746804 (GeV)
+Cell[9,31] 0.00027590828067472 [GeV]
+Cell[9,19] 0.0036383687116632 [GeV]
+Cell[9,18] 0.011185297558811 [GeV]
+### Total energy deposition in calorimeter by a source track in 3 cells : 0.015099574551149 (GeV)
Source track ID 5193 (pi-,0.39895840489459[GeV]) at (383.11564224487,-321.28243753324,352.9379466605)
Original primary track ID 29 (unknown,1.6025887774154[GeV])
-Cell[11,46] 0.00046758604768606 [GeV]
-Cell[13,12] 6.1031689394895e-06 [GeV]
-Cell[8,41] 7.6948163041379e-09 [GeV]
-Cell[8,42] 4.2369338507342e-07 [GeV]
-Cell[16,14] 7.038076785193e-08 [GeV]
-Cell[12,14] 0.0016544521696302 [GeV]
-Cell[11,11] 0.0035805939747007 [GeV]
-Cell[15,18] 0.0001046843615685 [GeV]
-Cell[15,17] 1.1789249717822e-06 [GeV]
-Cell[11,42] 0.044143755666449 [GeV]
-Cell[12,42] 0.056724905600111 [GeV]
-Cell[12,11] 0.00048361428804002 [GeV]
-Cell[16,18] 0.00023677374212627 [GeV]
-Cell[11,12] 0.018265735183032 [GeV]
-Cell[11,13] 0.0048915462146505 [GeV]
-Cell[12,43] 0.0170458121218 [GeV]
-Cell[11,44] 6.4192704485322e-11 [GeV]
-Cell[11,43] 0.076950504755363 [GeV]
-Cell[12,41] 0.00089131729527935 [GeV]
-Cell[12,40] 7.9773599281907e-11 [GeV]
-Cell[10,43] 0.0072269749984574 [GeV]
-Cell[9,43] 2.1214865455477e-09 [GeV]
-Cell[9,44] 2.1605817528325e-07 [GeV]
-Cell[12,13] 0.0043754707281892 [GeV]
-Cell[15,16] 5.2776886150241e-10 [GeV]
-Cell[16,16] 1.4765126013572e-07 [GeV]
-Cell[16,17] 5.1773922677967e-08 [GeV]
-Cell[10,13] 5.8872606419186e-05 [GeV]
-Cell[10,44] 3.7299526455627e-05 [GeV]
-Cell[11,6] 1.8358745146543e-05 [GeV]
-Cell[12,12] 0.010923301895395 [GeV]
-### Total energy deposition in calorimeter by a source track in 31 cells : 0.24808976205996 (GeV)
+Cell[10,1] 0.00029563702482437 [GeV]
+Cell[6,39] 6.0896778529695e-07 [GeV]
+Cell[10,45] 0.00014548962221329 [GeV]
+Cell[11,46] 1.5084006492998e-06 [GeV]
+Cell[11,32] 0.0064693785226265 [GeV]
+Cell[13,31] 0.0010773608296503 [GeV]
+Cell[12,31] 0.00010666908547819 [GeV]
+Cell[13,26] 0.00052037836842919 [GeV]
+Cell[13,27] 0.00021837934907467 [GeV]
+Cell[16,14] 0.00076190846935651 [GeV]
+Cell[12,26] 0.0040912066409972 [GeV]
+Cell[12,27] 0.00013588833460767 [GeV]
+Cell[10,20] 2.9935064958408e-07 [GeV]
+Cell[11,45] 0.00085373774553739 [GeV]
+Cell[14,44] 6.127035624786e-06 [GeV]
+Cell[12,5] 2.0382547068948e-05 [GeV]
+Cell[13,25] 0.0012263940332944 [GeV]
+Cell[13,41] 3.1938526022714e-05 [GeV]
+Cell[13,38] 6.4266141271219e-07 [GeV]
+Cell[12,22] 0.00022072773963703 [GeV]
+Cell[12,30] 1.0375389829278e-06 [GeV]
+Cell[17,13] 0.0013514298695588 [GeV]
+Cell[10,46] 3.1634728088648e-08 [GeV]
+Cell[11,9] 0.0048175617670428 [GeV]
+Cell[11,8] 0.0047257759991543 [GeV]
+Cell[11,10] 0.0012105619232059 [GeV]
+Cell[9,44] 7.0296685775247e-05 [GeV]
+Cell[9,45] 0.00015438608621332 [GeV]
+Cell[11,19] 2.3558014845548e-09 [GeV]
+Cell[8,37] 9.3180569820106e-09 [GeV]
+Cell[9,2] 0.00014076839394236 [GeV]
+Cell[8,2] 4.8689337518226e-07 [GeV]
+Cell[8,3] 4.42309490154e-08 [GeV]
+Cell[11,44] 0.0036518172826802 [GeV]
+Cell[10,44] 0.0013354816498331 [GeV]
+Cell[11,42] 0.061076365141213 [GeV]
+Cell[13,18] 0.00066943795015061 [GeV]
+Cell[13,20] 4.8626217575361e-05 [GeV]
+Cell[14,5] 0.0010247533291762 [GeV]
+Cell[10,19] 4.2283477722435e-05 [GeV]
+Cell[6,20] 3.2169121350307e-06 [GeV]
+Cell[11,5] 0.006251946386205 [GeV]
+Cell[5,7] 2.9487287974916e-07 [GeV]
+Cell[11,7] 3.1901418490179e-06 [GeV]
+Cell[11,6] 7.0140450951271e-05 [GeV]
+Cell[14,45] 4.663915024139e-08 [GeV]
+Cell[12,44] 9.1388192835211e-06 [GeV]
+Cell[12,10] 3.6372994259182e-08 [GeV]
+Cell[12,9] 1.2668549788941e-07 [GeV]
+Cell[11,11] 1.5864827078076e-06 [GeV]
+Cell[18,12] 1.1558961756464e-06 [GeV]
+Cell[17,12] 2.334380405955e-08 [GeV]
+Cell[13,21] 1.6503129445482e-05 [GeV]
+Cell[12,40] 0.0036582393271693 [GeV]
+Cell[11,43] 0.0072187299660987 [GeV]
+Cell[12,41] 0.00013081316995374 [GeV]
+Cell[15,28] 9.9779387824128e-08 [GeV]
+Cell[10,40] 7.6511063263752e-05 [GeV]
+Cell[10,42] 8.5943186877557e-07 [GeV]
+Cell[15,25] 4.8747042114883e-07 [GeV]
+Cell[12,39] 0.039952751235312 [GeV]
+Cell[14,6] 0.0002110123646579 [GeV]
+Cell[13,5] 3.6529483574213e-05 [GeV]
+Cell[12,2] 3.5330128623173e-05 [GeV]
+Cell[5,8] 6.7834604168638e-05 [GeV]
+Cell[14,20] 2.7402087114751e-05 [GeV]
+Cell[17,14] 0.0011841964190533 [GeV]
+Cell[10,18] 2.6187449748249e-08 [GeV]
+Cell[6,21] 0.0010308916031109 [GeV]
+Cell[18,14] 0.00021768172574014 [GeV]
+Cell[18,13] 4.2383901309222e-06 [GeV]
+Cell[15,29] 0.00028382633934723 [GeV]
+Cell[11,18] 1.5673515918024e-08 [GeV]
+Cell[15,3] 5.4303469369188e-08 [GeV]
+Cell[13,19] 0.0013807285559271 [GeV]
+Cell[13,6] 9.9736954586547e-05 [GeV]
+Cell[10,43] 0.0044394339925952 [GeV]
+Cell[14,28] 1.3884684904042e-09 [GeV]
+Cell[14,27] 1.1319788848141e-07 [GeV]
+### Total energy deposition in calorimeter by a source track in 79 cells : 0.16292077197605 (GeV)
Source track ID 5185 (gamma,0.094503470007519[GeV]) at (318.07142375045,385.78565213517,-1059.6704916994)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[4,6] 0.075275967516961 [GeV]
-Cell[3,6] 0.0099500458551185 [GeV]
-Cell[4,7] 0.0036492858148426 [GeV]
-Cell[3,7] 0.0056281708205965 [GeV]
-### Total energy deposition in calorimeter by a source track in 4 cells : 0.094503470007519 (GeV)
+Cell[4,6] 0.073533542312266 [GeV]
+Cell[6,39] 0.00063622565250855 [GeV]
+Cell[10,27] 0.00015929186551845 [GeV]
+Cell[3,8] 0.0031409632525039 [GeV]
+Cell[9,4] 0.00051099891 [GeV]
+Cell[4,7] 0.011221654432759 [GeV]
+Cell[4,8] 0.00042872063978622 [GeV]
+### Total energy deposition in calorimeter by a source track in 7 cells : 0.089631397065342 (GeV)
Source track ID 5111 (pi+,0.33194722514253[GeV]) at (223.32172607531,447.35601780097,-1609.3233427276)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[1,6] 0.0073909853396757 [GeV]
-Cell[1,7] 0.064327122783225 [GeV]
-Cell[1,10] 0.00079551765682993 [GeV]
-Cell[2,7] 0.0011920963924574 [GeV]
-Cell[2,8] 9.3319160304191e-06 [GeV]
-Cell[0,5] 0.00084068432887276 [GeV]
-Cell[4,25] 5.4045813158154e-10 [GeV]
-Cell[0,6] 0.013665587939351 [GeV]
-Cell[1,0] 2.0447651331779e-05 [GeV]
-Cell[1,9] 0.00047070205634898 [GeV]
-Cell[4,24] 2.1566844495965e-05 [GeV]
-Cell[4,23] 0.003407403647281 [GeV]
-Cell[4,22] 0.00097304624306546 [GeV]
-Cell[1,5] 0.0030444835512525 [GeV]
-Cell[0,7] 0.050650425166045 [GeV]
-Cell[1,8] 0.091503137032952 [GeV]
-### Total energy deposition in calorimeter by a source track in 16 cells : 0.23831253908967 (GeV)
+Cell[6,37] 0.00065596791183817 [GeV]
+Cell[6,19] 0.00068175654155018 [GeV]
+Cell[6,36] 0.00061060660968252 [GeV]
+Cell[6,38] 0.013070222443852 [GeV]
+Cell[3,15] 0.00039279836007669 [GeV]
+Cell[2,8] 0.0019719359818394 [GeV]
+Cell[1,17] 0.00074981682290131 [GeV]
+Cell[1,16] 0.00032941359329427 [GeV]
+Cell[1,8] 0.19929645493954 [GeV]
+Cell[1,14] 0.00048125501622827 [GeV]
+Cell[3,28] 0.00051099891 [GeV]
+Cell[5,40] 0.00062100353432664 [GeV]
+Cell[1,7] 0.093638727271126 [GeV]
+Cell[3,44] 0.00067819259953467 [GeV]
+Cell[6,20] 0.0011318868807984 [GeV]
+Cell[2,9] 2.9737510777636e-05 [GeV]
+Cell[2,10] 2.2257940145209e-08 [GeV]
+### Total energy deposition in calorimeter by a source track in 17 cells : 0.31485079718531 (GeV)
Source track ID 5112 (pi-,0.61464819122794[GeV]) at (84.511874837244,492.8059892204,-890.83140913377)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[5,31] 0.0027380005578023 [GeV]
-Cell[9,10] 0.00066548328742442 [GeV]
-Cell[9,11] 0.0004602204893207 [GeV]
-Cell[9,12] 5.5823325317306e-07 [GeV]
-Cell[6,8] 3.3175922059172e-06 [GeV]
-Cell[5,32] 0.00011136528668794 [GeV]
-Cell[6,38] 1.9547400006559e-05 [GeV]
-Cell[4,12] 0.0015826555468425 [GeV]
-Cell[5,28] 6.6904432605952e-06 [GeV]
-Cell[5,11] 0.085724446309809 [GeV]
-Cell[5,30] 1.9343316962477e-05 [GeV]
-Cell[5,8] 0.00027618130035478 [GeV]
-Cell[2,22] 3.6815266872736e-06 [GeV]
-Cell[4,9] 0.0044668519699794 [GeV]
-Cell[4,10] 4.6578578301705e-05 [GeV]
-Cell[3,9] 0.0075521023024654 [GeV]
-Cell[3,21] 1.6484267282067e-05 [GeV]
-Cell[5,9] 0.00020110101047817 [GeV]
-Cell[3,6] 4.3720082345317e-05 [GeV]
-Cell[3,10] 1.3721759221426e-06 [GeV]
-Cell[4,8] 0.00055919913685606 [GeV]
-Cell[0,30] 1.12583511509e-08 [GeV]
-Cell[0,29] 4.899108025711e-06 [GeV]
-Cell[5,7] 0.0006132291435149 [GeV]
-Cell[4,47] 4.1329935775138e-06 [GeV]
-Cell[4,7] 0.00063523443594295 [GeV]
-Cell[3,22] 0.00076690469316168 [GeV]
-Cell[3,8] 0.0034604229735389 [GeV]
-Cell[3,7] 0.00050948958187416 [GeV]
-Cell[4,13] 0.00023527747790263 [GeV]
-Cell[4,32] 0.00047062973701406 [GeV]
-Cell[4,14] 0.00077574283587239 [GeV]
-Cell[4,15] 0.00020953236637979 [GeV]
-Cell[5,10] 0.067222791506874 [GeV]
-Cell[4,11] 0.29917200601871 [GeV]
-Cell[3,5] 1.2068403710146e-05 [GeV]
-Cell[6,7] 7.2511330698831e-05 [GeV]
-Cell[4,31] 0.00023631154287534 [GeV]
-### Total energy deposition in calorimeter by a source track in 38 cells : 0.47890009622227 (GeV)
+Cell[6,37] 2.6612458054842e-07 [GeV]
+Cell[4,29] 1.3069453416392e-08 [GeV]
+Cell[7,26] 7.2622359651973e-05 [GeV]
+Cell[8,29] 1.3151943730918e-06 [GeV]
+Cell[6,6] 1.2930214143125e-05 [GeV]
+Cell[7,25] 0.00086779791156607 [GeV]
+Cell[0,23] 0.00044584219156604 [GeV]
+Cell[4,30] 1.1896341398824e-05 [GeV]
+Cell[3,40] 6.2657461967319e-08 [GeV]
+Cell[6,25] 7.0771371838418e-09 [GeV]
+Cell[4,12] 0.014091526186796 [GeV]
+Cell[8,30] 5.6151475291699e-09 [GeV]
+Cell[5,13] 0.00014621680870789 [GeV]
+Cell[5,12] 0.00041596615271828 [GeV]
+Cell[4,13] 7.0372771006078e-09 [GeV]
+Cell[3,11] 0.0079158800533392 [GeV]
+Cell[5,18] 1.6452104318887e-08 [GeV]
+Cell[2,2] 1.1257361620665e-10 [GeV]
+Cell[2,3] 2.7415808290243e-11 [GeV]
+Cell[2,8] 8.5544015746564e-08 [GeV]
+Cell[1,1] 2.1607615053654e-08 [GeV]
+Cell[0,7] 2.5263521820307e-08 [GeV]
+Cell[1,8] 1.4648175141474e-06 [GeV]
+Cell[3,8] 0.00044379645042659 [GeV]
+Cell[5,44] 0.00011322014684993 [GeV]
+Cell[3,28] 6.6292132833041e-06 [GeV]
+Cell[4,28] 7.3870556661859e-08 [GeV]
+Cell[4,27] 3.6172080959091e-05 [GeV]
+Cell[4,26] 2.2074383684412e-05 [GeV]
+Cell[3,27] 1.5888966435114e-06 [GeV]
+Cell[1,2] 0.00040866907301063 [GeV]
+Cell[5,40] 0.00049936140906186 [GeV]
+Cell[1,27] 7.0192282873904e-07 [GeV]
+Cell[5,36] 0.003065772558472 [GeV]
+Cell[5,37] 0.0037592299415952 [GeV]
+Cell[5,7] 0.0015164033778294 [GeV]
+Cell[5,8] 1.7318442114629e-06 [GeV]
+Cell[2,7] 9.0712329587063e-05 [GeV]
+Cell[3,10] 0.0073322943540715 [GeV]
+Cell[4,9] 3.7212203096715e-11 [GeV]
+Cell[4,10] 0.020530330837049 [GeV]
+Cell[5,10] 0.076779653414568 [GeV]
+Cell[3,9] 0.0013153677656802 [GeV]
+Cell[5,11] 0.032924897978493 [GeV]
+Cell[4,11] 0.17903354613977 [GeV]
+Cell[3,26] 3.3773261802708e-06 [GeV]
+Cell[0,22] 2.9950399766676e-07 [GeV]
+Cell[0,31] 6.8238316453062e-07 [GeV]
+Cell[3,12] 0.00071016752742163 [GeV]
+### Total energy deposition in calorimeter by a source track in 49 cells : 0.35258072358669 (GeV)
Source track ID 5084 (mu+,0.26436195501664[GeV]) at (463.94446749181,-186.42835375483,-1850.8316352625)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[0,44] 0.16718312042442 [GeV]
-Cell[0,45] 0.027812776739637 [GeV]
-### Total energy deposition in calorimeter by a source track in 2 cells : 0.19499589716406 (GeV)
+Cell[0,44] 0.1485632022447 [GeV]
+Cell[0,45] 0.029285302927372 [GeV]
+### Total energy deposition in calorimeter by a source track in 2 cells : 0.17784850517207 (GeV)
Source track ID 5059 (pi-,0.49365576199997[GeV]) at (311.70461406229,-390.94786554256,-961.59511819399)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[5,0] 7.083920831974e-08 [GeV]
-Cell[6,29] 1.9172427710146e-07 [GeV]
-Cell[3,43] 7.2812160127796e-05 [GeV]
-Cell[7,29] 4.7569965383104e-05 [GeV]
-Cell[5,43] 7.1973670274019e-06 [GeV]
-Cell[7,28] 6.1920673033455e-11 [GeV]
-Cell[5,46] 0.0023811357347477 [GeV]
-Cell[5,45] 0.023485435579953 [GeV]
-Cell[4,45] 2.3340440696757e-05 [GeV]
-Cell[4,46] 0.0063353938604534 [GeV]
-Cell[5,8] 0.0026987326946721 [GeV]
-Cell[5,6] 9.094935307985e-09 [GeV]
-Cell[5,41] 0.057848965217506 [GeV]
-Cell[2,20] 0.0015337578470442 [GeV]
-Cell[5,9] 7.6864626507131e-05 [GeV]
-Cell[2,19] 0.0037364572209493 [GeV]
-Cell[4,41] 0.068872076497264 [GeV]
-Cell[3,10] 0.00010999844864136 [GeV]
-Cell[4,8] 9.1327367841814e-06 [GeV]
-Cell[3,12] 0.00057561701498412 [GeV]
-Cell[0,6] 4.9532829382315e-07 [GeV]
-Cell[5,7] 0.0022586487009331 [GeV]
-Cell[4,47] 0.0029288795953246 [GeV]
-Cell[5,47] 0.00050354859492961 [GeV]
-Cell[3,42] 0.002476734111857 [GeV]
-Cell[3,11] 0.00018660123892471 [GeV]
-Cell[5,44] 0.0053504650821027 [GeV]
-Cell[4,40] 7.5582009833397e-07 [GeV]
-Cell[0,7] 1.6659930554397e-07 [GeV]
-Cell[3,41] 3.2516929699341e-05 [GeV]
-Cell[4,42] 0.11559244497106 [GeV]
-Cell[4,43] 0.0017564845904031 [GeV]
-Cell[4,44] 0.0041629655847969 [GeV]
-Cell[5,40] 1.406273804605e-08 [GeV]
-### Total energy deposition in calorimeter by a source track in 34 cells : 0.30306548034355 (GeV)
+Cell[6,19] 0.006209631988321 [GeV]
+Cell[7,13] 0.00046970825951018 [GeV]
+Cell[3,43] 3.4996344038518e-07 [GeV]
+Cell[5,43] 2.8812792152166e-12 [GeV]
+Cell[3,40] 2.3510395260473e-07 [GeV]
+Cell[7,28] 1.1309449066175e-05 [GeV]
+Cell[6,17] 7.1714368800713e-08 [GeV]
+Cell[8,16] 1.916654582601e-06 [GeV]
+Cell[6,28] 1.8341706309002e-06 [GeV]
+Cell[6,13] 0.00011631643247404 [GeV]
+Cell[3,11] 0.00096091445769418 [GeV]
+Cell[3,41] 0.0010923582496254 [GeV]
+Cell[5,18] 0.00071908255857011 [GeV]
+Cell[5,19] 0.0005424792924155 [GeV]
+Cell[1,1] 5.1427367643214e-05 [GeV]
+Cell[1,0] 0.0011978504562893 [GeV]
+Cell[7,14] 1.540840222151e-05 [GeV]
+Cell[4,40] 0.0031264283716583 [GeV]
+Cell[0,2] 6.0817511086952e-07 [GeV]
+Cell[0,14] 0.00010210987912046 [GeV]
+Cell[0,15] 1.98670992404e-07 [GeV]
+Cell[0,13] 1.3852981792297e-06 [GeV]
+Cell[5,40] 0.00039277853001488 [GeV]
+Cell[6,12] 0.0014052770324865 [GeV]
+Cell[4,41] 0.072501086913782 [GeV]
+Cell[4,42] 0.21063255514908 [GeV]
+Cell[5,41] 0.054540939182882 [GeV]
+Cell[5,42] 1.7965420511246e-09 [GeV]
+Cell[4,43] 0.001374499803087 [GeV]
+Cell[3,42] 0.00094514385273255 [GeV]
+Cell[0,1] 2.7023951066894e-05 [GeV]
+### Total energy deposition in calorimeter by a source track in 31 cells : 0.35644093113042 (GeV)
Source track ID 5060 (pi+,1.8609049839069[GeV]) at (-197.19961698591,459.46959753678,-618.05796689075)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[4,12] 0.0077538094075875 [GeV]
-Cell[5,11] 0.00048782078607348 [GeV]
-Cell[5,15] 0.0044850634033451 [GeV]
-Cell[5,16] 1.2665516692323e-08 [GeV]
-Cell[6,15] 0.066084299516832 [GeV]
-Cell[2,11] 0.0026330848278371 [GeV]
-Cell[2,15] 0.0022249894697561 [GeV]
-Cell[5,12] 0.0058326315426042 [GeV]
-Cell[2,16] 1.9673682323855e-06 [GeV]
-Cell[0,5] 0.0004724365771981 [GeV]
-Cell[4,16] 0.00011431598725437 [GeV]
-Cell[1,13] 0.005222594301727 [GeV]
-Cell[2,13] 0.020550836916409 [GeV]
-Cell[3,12] 0.00073911822242615 [GeV]
-Cell[0,6] 1.3939054833827e-06 [GeV]
-Cell[2,14] 0.011870710888606 [GeV]
-Cell[1,11] 0.00051907042079529 [GeV]
-Cell[3,11] 0.00019721942117133 [GeV]
-Cell[2,12] 0.0030159745805927 [GeV]
-Cell[5,14] 0.36073966068384 [GeV]
-Cell[1,12] 0.0041065444226226 [GeV]
-Cell[0,13] 0.0022230611921006 [GeV]
-Cell[1,5] 0.00030829153618834 [GeV]
-Cell[4,13] 0.01003820765484 [GeV]
-Cell[4,14] 0.39419510761064 [GeV]
-Cell[4,15] 0.18043755008486 [GeV]
-Cell[5,13] 0.0051710087879073 [GeV]
-Cell[3,13] 0.0024360487246086 [GeV]
-Cell[6,14] 0.24145993850082 [GeV]
-Cell[6,13] 0.0024966840332432 [GeV]
-Cell[4,11] 1.174995959218e-06 [GeV]
-Cell[3,14] 0.025623677098535 [GeV]
-Cell[3,15] 0.0040161939312171 [GeV]
-Cell[3,16] 0.00069868402736085 [GeV]
-Cell[6,12] 1.5859967106735e-08 [GeV]
-### Total energy deposition in calorimeter by a source track in 35 cells : 1.3661591993542 (GeV)
+Cell[4,12] 0.0014552718169865 [GeV]
+Cell[3,15] 0.034689874256579 [GeV]
+Cell[6,14] 0.14991701087059 [GeV]
+Cell[6,15] 0.067278526931316 [GeV]
+Cell[5,13] 0.00018902494105407 [GeV]
+Cell[5,12] 2.7386704459786e-11 [GeV]
+Cell[3,11] 0.012208031037721 [GeV]
+Cell[2,13] 0.00018737344507929 [GeV]
+Cell[4,17] 9.1653419076465e-11 [GeV]
+Cell[3,17] 0.0059693440016072 [GeV]
+Cell[1,16] 8.365540559339e-06 [GeV]
+Cell[2,11] 0.00092919827869452 [GeV]
+Cell[3,16] 0.0027232436201917 [GeV]
+Cell[3,8] 5.1329795374841e-05 [GeV]
+Cell[1,15] 0.0022082150014561 [GeV]
+Cell[1,14] 4.6801371935317e-05 [GeV]
+Cell[2,16] 0.063071221647833 [GeV]
+Cell[2,14] 0.037641659751546 [GeV]
+Cell[1,13] 0.002151841626317 [GeV]
+Cell[2,15] 0.49063397254094 [GeV]
+Cell[5,15] 0.0092865927671981 [GeV]
+Cell[2,9] 8.2662940440059e-07 [GeV]
+Cell[2,10] 0.00013473785539964 [GeV]
+Cell[3,13] 0.0013196392814574 [GeV]
+Cell[4,14] 0.18307672052905 [GeV]
+Cell[5,14] 0.24622151938449 [GeV]
+Cell[3,10] 0.0049076821311711 [GeV]
+Cell[4,8] 0.00061862998647234 [GeV]
+Cell[4,9] 0.0056967843481913 [GeV]
+Cell[4,10] 0.00049958703912682 [GeV]
+Cell[5,10] 0.00025103496530071 [GeV]
+Cell[3,9] 0.0073150428973303 [GeV]
+Cell[4,11] 6.9585501717029e-06 [GeV]
+Cell[3,12] 0.0024802607066089 [GeV]
+Cell[4,15] 0.002181285861663 [GeV]
+Cell[3,14] 0.0085678493878219 [GeV]
+### Total energy deposition in calorimeter by a source track in 36 cells : 1.3439254589157 (GeV)
Source track ID 5057 (gamma,1.5112205487345[GeV]) at (-499.81457326141,13.615886144967,-1633.5784465027)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[1,6] 0.00051099891 [GeV]
-Cell[8,31] 0.00020716696637891 [GeV]
-Cell[2,41] 0.00056931202355897 [GeV]
-Cell[6,40] 0.00029462520989664 [GeV]
-Cell[8,33] 0.00025376451007077 [GeV]
-Cell[1,22] 0.0062859234476157 [GeV]
-Cell[1,23] 1.3910719240213 [GeV]
-Cell[1,24] 0.054149020572007 [GeV]
-Cell[0,42] 0.00051099891 [GeV]
-Cell[1,21] 0.001382015096501 [GeV]
-Cell[1,20] 0.0001620413448623 [GeV]
-Cell[0,24] 0.0008866989475605 [GeV]
-Cell[4,18] 2.3593578562402e-05 [GeV]
-Cell[2,4] 0.00027033596255421 [GeV]
-Cell[5,19] 0.0022597856429484 [GeV]
-Cell[1,41] 0.00074801219664086 [GeV]
-Cell[2,40] 0.00051099891 [GeV]
-Cell[2,36] 0.00070115870460517 [GeV]
-Cell[3,32] 0.0029208267220133 [GeV]
-Cell[4,38] 0.00045401474450306 [GeV]
-Cell[0,43] 0.0010004180842914 [GeV]
-Cell[3,47] 0.00081132281449143 [GeV]
-Cell[1,25] 0.0026087529366736 [GeV]
-Cell[3,1] 0.000786295757982 [GeV]
-Cell[8,46] 0.00082465145946225 [GeV]
-Cell[0,38] 0.0003382096185482 [GeV]
-Cell[1,2] 0.0018948392269905 [GeV]
-### Total energy deposition in calorimeter by a source track in 27 cells : 1.47243770632 (GeV)
+Cell[0,23] 0.0054251876988952 [GeV]
+Cell[5,43] 0.00051099891 [GeV]
+Cell[6,40] 0.00021218808945458 [GeV]
+Cell[1,25] 2.2157954286944e-05 [GeV]
+Cell[1,24] 0.043999028797841 [GeV]
+Cell[0,41] 0.00051099891 [GeV]
+Cell[3,11] 0.0011786269709088 [GeV]
+Cell[1,26] 0.0032885375164711 [GeV]
+Cell[1,22] 0.012363776875999 [GeV]
+Cell[2,14] 0.00081175251769905 [GeV]
+Cell[1,13] 0.0012988090643706 [GeV]
+Cell[1,38] 0.0019916944966751 [GeV]
+Cell[2,37] 0.00023920407214043 [GeV]
+Cell[1,23] 1.4200386133611 [GeV]
+Cell[0,42] 0.00049798479565697 [GeV]
+Cell[17,8] 0.00047259525666599 [GeV]
+Cell[0,22] 0.00041453676143734 [GeV]
+Cell[1,37] 0.00045154343826275 [GeV]
+### Total energy deposition in calorimeter by a source track in 18 cells : 1.4937282354878 (GeV)
Source track ID 5058 (gamma,2.1679106429724[GeV]) at (-488.3960351506,-107.09487779148,-1544.0567144637)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[7,12] 0.00085212671668207 [GeV]
-Cell[6,38] 0.00063089841755756 [GeV]
-Cell[5,43] 0.00067038687910866 [GeV]
-Cell[2,26] 0.0071975069340621 [GeV]
-Cell[4,12] 0.00046044695888426 [GeV]
-Cell[2,44] 0.00019207769371372 [GeV]
-Cell[5,42] 0.0034339870289518 [GeV]
-Cell[1,24] 0.013396800216936 [GeV]
-Cell[2,24] 0.0033765921789084 [GeV]
-Cell[3,9] 0.00052359080175226 [GeV]
-Cell[2,15] 0.00070760704070136 [GeV]
-Cell[0,47] 0.00037779776172159 [GeV]
-Cell[5,4] 0.00051099891 [GeV]
-Cell[2,25] 1.4193827159023 [GeV]
-Cell[0,18] 0.01372391425329 [GeV]
-Cell[4,0] 0.0013915110905405 [GeV]
-Cell[2,8] 0.0012585116732495 [GeV]
-Cell[0,21] 0.0021776989355173 [GeV]
-Cell[4,34] 0.0014950561851657 [GeV]
-Cell[1,13] 0.00051099891 [GeV]
-Cell[3,12] 0.0018203746123128 [GeV]
-Cell[1,16] 0.00055735726751219 [GeV]
-Cell[0,10] 0.00051099891 [GeV]
-Cell[3,2] 0.00023069387388725 [GeV]
-Cell[1,25] 0.61988066166842 [GeV]
-Cell[4,15] 0.00089662365341658 [GeV]
-Cell[3,1] 0.0015929926923924 [GeV]
-Cell[0,7] 0.00054326679032266 [GeV]
-Cell[6,3] 0.00051099891 [GeV]
-Cell[8,4] 0.0081314919000143 [GeV]
-Cell[4,11] 0.0028636687001569 [GeV]
-Cell[0,38] 0.0032568614295561 [GeV]
-Cell[1,26] 0.015541685995464 [GeV]
-Cell[4,5] 0.00049813175460909 [GeV]
-Cell[1,30] 0.00051099891 [GeV]
-Cell[2,45] 0.00070673225178036 [GeV]
-### Total energy deposition in calorimeter by a source track in 36 cells : 2.1303247638089 (GeV)
+Cell[2,26] 0.019710707951145 [GeV]
+Cell[1,25] 0.12700265031119 [GeV]
+Cell[0,44] 0.0004162632602839 [GeV]
+Cell[1,24] 0.0037606943258956 [GeV]
+Cell[2,0] 0.0065886620284543 [GeV]
+Cell[1,30] 0.0024676903726734 [GeV]
+Cell[0,46] 0.0013309409569771 [GeV]
+Cell[1,17] 0.0005502844848629 [GeV]
+Cell[1,26] 0.0143065608035 [GeV]
+Cell[2,25] 1.8838850183466 [GeV]
+Cell[1,28] 0.0015577040463876 [GeV]
+Cell[0,10] 0.0013872446285239 [GeV]
+Cell[0,9] 0.0015477604020004 [GeV]
+Cell[1,22] 0.0025748329941445 [GeV]
+Cell[3,36] 0.0012442201126221 [GeV]
+Cell[4,2] 0.00051099891 [GeV]
+Cell[2,18] 0.0013005621338028 [GeV]
+Cell[1,15] 0.0010328690530359 [GeV]
+Cell[2,16] 0.00032456894131262 [GeV]
+Cell[4,28] 0.00072640321446349 [GeV]
+Cell[1,3] 0.00051099891 [GeV]
+Cell[5,40] 0.00051099891 [GeV]
+Cell[1,39] 0.00028397554218807 [GeV]
+Cell[2,38] 0.0006512749332266 [GeV]
+Cell[1,40] 0.00051099891 [GeV]
+Cell[1,36] 0.00012794029939241 [GeV]
+Cell[3,44] 0.00051099891 [GeV]
+Cell[3,45] 0.00051099891 [GeV]
+Cell[2,10] 0.0011273654609348 [GeV]
+Cell[2,24] 0.011433129936335 [GeV]
+Cell[3,25] 0.00036293796236655 [GeV]
+Cell[7,5] 0.00047669145695542 [GeV]
+Cell[2,20] 0.0008048549911899 [GeV]
+Cell[1,33] 0.00081454778891776 [GeV]
+Cell[0,47] 0.0014432308828319 [GeV]
+Cell[16,42] 0.0019202255922544 [GeV]
+Cell[4,11] 0.00051099891 [GeV]
+Cell[0,1] 0.00052445725773852 [GeV]
+Cell[1,37] 0.00029453266755703 [GeV]
+Cell[1,42] 0.0042338641868038 [GeV]
+Cell[0,36] 0.0010320254436953 [GeV]
+Cell[2,27] 0.0037796424416027 [GeV]
+Cell[1,43] 0.00053243631407586 [GeV]
+Cell[1,34] 0.00085299901278691 [GeV]
+### Total energy deposition in calorimeter by a source track in 44 cells : 2.1059887629088 (GeV)
Source track ID 4952 (pi-,0.39038769565205[GeV]) at (-234.01712468011,441.85516332443,-1637.3311589969)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[5,31] 0.0036193061771485 [GeV]
-Cell[4,29] 4.1379244066775e-09 [GeV]
-Cell[5,32] 6.7864972742086e-05 [GeV]
-Cell[4,30] 2.8988579288125e-09 [GeV]
-Cell[6,31] 1.2310665624682e-06 [GeV]
-Cell[5,30] 5.7138172677469e-05 [GeV]
-Cell[0,17] 3.1744774046274e-06 [GeV]
-Cell[0,18] 4.8400613650301e-09 [GeV]
-Cell[1,17] 0.0004403421555354 [GeV]
-Cell[0,3] 0.0010439433957264 [GeV]
-Cell[2,43] 1.9075972033988e-07 [GeV]
-Cell[4,16] 1.5212636702927e-05 [GeV]
-Cell[1,35] 3.1426496207132e-08 [GeV]
-Cell[3,10] 1.02987329592e-06 [GeV]
-Cell[1,16] 0.15168111423776 [GeV]
-Cell[4,24] 0.01419451628698 [GeV]
-Cell[3,11] 0.00038158111725738 [GeV]
-Cell[4,23] 0.0021394128400527 [GeV]
-Cell[0,13] 1.0095415872229e-06 [GeV]
-Cell[0,14] 0.00046612680340206 [GeV]
-Cell[0,15] 0.0074861549412531 [GeV]
-Cell[1,15] 0.12332987673993 [GeV]
-Cell[0,16] 0.0038645978603983 [GeV]
-Cell[4,26] 3.3284472592641e-06 [GeV]
-Cell[0,39] 0.00022862339263133 [GeV]
-Cell[4,11] 5.5393975635525e-06 [GeV]
-### Total energy deposition in calorimeter by a source track in 26 cells : 0.30903135859694 (GeV)
+Cell[7,10] 3.3892025044224e-08 [GeV]
+Cell[7,11] 5.9953890740871e-12 [GeV]
+Cell[5,35] 6.3050171434043e-08 [GeV]
+Cell[4,37] 0.00021512508360081 [GeV]
+Cell[0,23] 2.1626884487318e-05 [GeV]
+Cell[3,40] 0.018427064891367 [GeV]
+Cell[6,10] 0.0040789078094533 [GeV]
+Cell[4,34] 5.9866553101529e-09 [GeV]
+Cell[1,24] 0.00021868058163977 [GeV]
+Cell[2,13] 2.0796094416824e-05 [GeV]
+Cell[3,41] 0.0030493822284553 [GeV]
+Cell[4,18] 1.4283599920304e-05 [GeV]
+Cell[4,17] 4.8424229248667e-08 [GeV]
+Cell[4,19] 1.1823488650975e-05 [GeV]
+Cell[0,17] 0.0010636382104074 [GeV]
+Cell[0,43] 3.2517836916668e-07 [GeV]
+Cell[1,17] 0.0013214979310246 [GeV]
+Cell[1,16] 0.12333337119988 [GeV]
+Cell[0,16] 1.0479604156899e-08 [GeV]
+Cell[4,47] 0.0026649153877044 [GeV]
+Cell[1,22] 0.0012647614669871 [GeV]
+Cell[4,40] 0.00094531214752738 [GeV]
+Cell[4,0] 2.6255693219355e-06 [GeV]
+Cell[3,19] 1.8733124365212e-05 [GeV]
+Cell[2,17] 0.00062827981945894 [GeV]
+Cell[1,15] 0.10701084465043 [GeV]
+Cell[1,14] 0.0022245916345429 [GeV]
+Cell[2,16] 0.00021306052787645 [GeV]
+Cell[2,14] 0.0015230966797407 [GeV]
+Cell[0,14] 1.792619678065e-05 [GeV]
+Cell[1,13] 3.3715888093866e-08 [GeV]
+Cell[0,13] 0.0023103369305948 [GeV]
+Cell[2,15] 0.002468968641934 [GeV]
+Cell[0,12] 1.296912204225e-07 [GeV]
+Cell[1,4] 2.7758942451328e-09 [GeV]
+Cell[2,44] 4.918938249466e-05 [GeV]
+Cell[2,38] 2.4460832355544e-07 [GeV]
+Cell[2,39] 1.6144161143643e-05 [GeV]
+Cell[5,20] 3.3393359161778e-05 [GeV]
+Cell[3,45] 6.622409686679e-05 [GeV]
+Cell[5,45] 1.2007377372356e-05 [GeV]
+Cell[2,42] 6.1118043959141e-13 [GeV]
+Cell[2,24] 4.1457439161604e-05 [GeV]
+Cell[4,41] 1.6279912961181e-06 [GeV]
+Cell[3,39] 0.00015377562197102 [GeV]
+Cell[5,37] 1.2585044867592e-05 [GeV]
+Cell[1,23] 3.4713843196641e-05 [GeV]
+Cell[3,46] 8.8242532643562e-05 [GeV]
+Cell[4,31] 4.5723034418188e-07 [GeV]
+Cell[4,36] 0.0018209336375349 [GeV]
+Cell[4,35] 0.00030003372704982 [GeV]
+Cell[0,22] 2.8095997346895e-05 [GeV]
+Cell[3,42] 0.00015726850925125 [GeV]
+Cell[2,6] 0.00060663217585437 [GeV]
+### Total energy deposition in calorimeter by a source track in 54 cells : 0.27649333071711 (GeV)
Source track ID 4926 (pi+,4.020120808333[GeV]) at (-418.17988108786,-274.09047238702,-1788.3394888127)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[8,8] 1.2620021298062e-06 [GeV]
-Cell[0,33] 3.1815725378692e-09 [GeV]
-Cell[6,19] 0.0029275592574411 [GeV]
-Cell[7,27] 0.0018233490827548 [GeV]
-Cell[7,22] 0.0068609754879213 [GeV]
-Cell[7,20] 0.0057817253996622 [GeV]
-Cell[6,27] 2.8699121352247e-06 [GeV]
-Cell[3,34] 6.0765296439058e-10 [GeV]
-Cell[1,6] 0.00013470399441894 [GeV]
-Cell[1,31] 8.4395056153994e-05 [GeV]
-Cell[0,28] 1.1258671269332 [GeV]
-Cell[3,43] 9.4044071036592e-05 [GeV]
-Cell[5,39] 1.4054846640192e-06 [GeV]
-Cell[0,23] 0.0015787439736244 [GeV]
-Cell[6,26] 1.3422628808257e-07 [GeV]
-Cell[8,15] 0.0075440256377985 [GeV]
-Cell[7,18] 0.0013423177418892 [GeV]
-Cell[2,33] 0.00027806473144619 [GeV]
-Cell[12,31] 0.0016561853933956 [GeV]
-Cell[6,17] 0.0026618558395907 [GeV]
-Cell[12,26] 0.00069739901913283 [GeV]
-Cell[12,27] 0.0010084146114145 [GeV]
-Cell[11,45] 3.2750172103988e-05 [GeV]
-Cell[5,20] 8.0112403287785e-05 [GeV]
-Cell[11,27] 1.0442938422784e-05 [GeV]
-Cell[5,45] 0.0021798911128654 [GeV]
-Cell[6,46] 3.4004994988209e-05 [GeV]
-Cell[9,15] 1.4511963294353e-05 [GeV]
-Cell[8,14] 2.2888673274792e-05 [GeV]
-Cell[1,7] 0.00010592496513073 [GeV]
-Cell[5,8] 0.00053516979703898 [GeV]
-Cell[2,22] 3.9613950573312e-05 [GeV]
-Cell[1,22] 0.012098562224368 [GeV]
-Cell[5,42] 0.00077462616692196 [GeV]
-Cell[5,41] 0.00013739095261519 [GeV]
-Cell[1,23] 0.00091145575425217 [GeV]
-Cell[1,24] 0.002609495210955 [GeV]
-Cell[2,24] 0.0001357517432632 [GeV]
-Cell[1,10] 0.00057291050772596 [GeV]
-Cell[2,11] 0.0004082305613731 [GeV]
-Cell[3,26] 5.0903225883303e-09 [GeV]
-Cell[2,23] 0.014002023325128 [GeV]
-Cell[0,42] 0.12717229667332 [GeV]
-Cell[1,28] 0.02066957477921 [GeV]
-Cell[1,29] 0.017877550961045 [GeV]
-Cell[2,20] 3.3133899364657e-08 [GeV]
-Cell[2,21] 4.4006542856323e-06 [GeV]
-Cell[0,47] 9.3647839269352e-05 [GeV]
-Cell[5,4] 0.00025494712217517 [GeV]
-Cell[1,21] 0.0087611864571628 [GeV]
-Cell[2,25] 5.1797902694602e-05 [GeV]
-Cell[5,9] 1.3517150093207e-05 [GeV]
-Cell[1,20] 0.0023444327380256 [GeV]
-Cell[0,18] 0.00013823940768807 [GeV]
-Cell[1,19] 0.0018476810498718 [GeV]
-Cell[1,17] 0.00014806434292291 [GeV]
-Cell[1,18] 0.0022936958731893 [GeV]
-Cell[9,18] 0.00051832814107229 [GeV]
-Cell[9,17] 2.4338985812165e-06 [GeV]
-Cell[2,7] 0.0043820045885179 [GeV]
-Cell[8,16] 0.00044842085267363 [GeV]
-Cell[0,24] 0.0020930962980242 [GeV]
-Cell[0,21] 1.2489328094034e-07 [GeV]
-Cell[0,22] 0.001663937766476 [GeV]
-Cell[0,4] 0.00058746980831506 [GeV]
-Cell[0,5] 1.2576664448716e-07 [GeV]
-Cell[5,18] 3.2889701400336e-06 [GeV]
-Cell[2,43] 7.750764643788e-08 [GeV]
-Cell[2,4] 0.0016305644867563 [GeV]
-Cell[5,38] 1.0052535925524e-06 [GeV]
-Cell[5,19] 5.6607146909641e-05 [GeV]
-Cell[4,35] 0.0010809387262276 [GeV]
-Cell[1,14] 0.0010747451635176 [GeV]
-Cell[1,13] 1.2054846605452e-05 [GeV]
-Cell[2,13] 0.00082401211602894 [GeV]
-Cell[1,39] 3.8586135488003e-05 [GeV]
-Cell[1,40] 1.4656755607575e-05 [GeV]
-Cell[0,6] 0.00046461611286577 [GeV]
-Cell[1,41] 0.00018913207167373 [GeV]
-Cell[1,16] 3.5335819702595e-06 [GeV]
-Cell[2,40] 0.001484903179906 [GeV]
-Cell[0,27] 0.058451758912702 [GeV]
-Cell[2,2] 1.2447157138126e-05 [GeV]
-Cell[2,1] 0.0010816617014073 [GeV]
-Cell[2,0] 0.0001098131498984 [GeV]
-Cell[1,0] 1.7741780212646e-06 [GeV]
-Cell[0,31] 0.00031037445765674 [GeV]
-Cell[0,30] 0.0072646634263583 [GeV]
-Cell[0,29] 0.017756804135183 [GeV]
-Cell[2,30] 1.1066533945154e-05 [GeV]
-Cell[2,29] 0.0045562519865625 [GeV]
-Cell[3,32] 0.0002010701084273 [GeV]
-Cell[3,33] 0.00059751236684896 [GeV]
-Cell[3,24] 2.8256414225325e-07 [GeV]
-Cell[1,11] 0.00022076506483154 [GeV]
-Cell[1,9] 1.1113454775113e-08 [GeV]
-Cell[3,25] 8.4231044702278e-05 [GeV]
-Cell[3,42] 0.00046369393291582 [GeV]
-Cell[3,11] 2.4686797712093e-05 [GeV]
-Cell[6,45] 0.00018732349800666 [GeV]
-Cell[1,47] 0.00062665805725806 [GeV]
-Cell[1,36] 5.4751176852733e-05 [GeV]
-Cell[0,11] 3.8592028198764e-05 [GeV]
-Cell[0,10] 0.0014758824671702 [GeV]
-Cell[0,12] 9.2170398274902e-06 [GeV]
-Cell[3,23] 0.00016462041180023 [GeV]
-Cell[3,22] 0.00016761670789163 [GeV]
-Cell[0,25] 0.0019190546019399 [GeV]
-Cell[0,26] 0.007452411738747 [GeV]
-Cell[2,12] 0.0022614849382167 [GeV]
-Cell[1,46] 0.00019840814119709 [GeV]
-Cell[2,47] 0.0033123313291896 [GeV]
-Cell[0,9] 0.0013845262241483 [GeV]
-Cell[1,12] 2.5368236296345e-05 [GeV]
-Cell[1,15] 0.0063945781359067 [GeV]
-Cell[8,23] 0.00031875796211284 [GeV]
-Cell[8,22] 0.0012748793541306 [GeV]
-Cell[0,16] 4.6345949202077e-05 [GeV]
-Cell[1,25] 0.013574672583575 [GeV]
-Cell[0,0] 0.00039300649133577 [GeV]
-Cell[4,26] 1.6216142159919e-07 [GeV]
-Cell[1,32] 1.1033548711566e-05 [GeV]
-Cell[0,8] 0.0029094951060088 [GeV]
-Cell[6,18] 0.081470804599732 [GeV]
-Cell[4,4] 0.0001550375583505 [GeV]
-Cell[0,7] 0.0020346754991586 [GeV]
-Cell[1,8] 4.2605187336449e-06 [GeV]
-Cell[7,19] 9.5990111306037e-06 [GeV]
-Cell[4,42] 0.00098103885253568 [GeV]
-Cell[4,43] 4.1153424456297e-07 [GeV]
-Cell[9,19] 1.5419177740114e-05 [GeV]
-Cell[9,21] 0.0012703189367487 [GeV]
-Cell[6,44] 2.1038155973656e-05 [GeV]
-Cell[7,40] 1.7150779372969e-05 [GeV]
-Cell[1,37] 0.0021810156996061 [GeV]
-Cell[8,21] 0.00010217224042322 [GeV]
-Cell[8,20] 0.00088813866667351 [GeV]
-Cell[7,21] 9.7911814609688e-06 [GeV]
-Cell[9,16] 0.00017617529793154 [GeV]
-Cell[1,2] 4.7031790018082e-11 [GeV]
-Cell[1,26] 0.0046340531605301 [GeV]
-Cell[4,5] 2.450542524457e-11 [GeV]
-Cell[1,30] 0.00028388162537942 [GeV]
-Cell[0,41] 0.0036735103936138 [GeV]
-Cell[1,27] 0.018695827425734 [GeV]
-Cell[5,1] 2.5070986303035e-06 [GeV]
-Cell[1,3] 0.0098982829067572 [GeV]
-Cell[1,4] 0.00030827639176221 [GeV]
-Cell[1,44] 8.8435804886217e-05 [GeV]
-Cell[1,43] 3.1887876014025e-07 [GeV]
-Cell[2,3] 0.00051261589014211 [GeV]
-Cell[3,4] 0.00010332176227746 [GeV]
-Cell[0,32] 1.7713515553623e-06 [GeV]
-Cell[7,17] 2.4026647821302e-05 [GeV]
-Cell[8,19] 0.00024196601614369 [GeV]
-### Total energy deposition in calorimeter by a source track in 155 cells : 1.656453943963 (GeV)
+Cell[0,28] 0.23972552458943 [GeV]
+Cell[0,27] 0.0059880902724166 [GeV]
+Cell[1,28] 0.025583280852841 [GeV]
+### Total energy deposition in calorimeter by a source track in 3 cells : 0.27129689571469 (GeV)
Source track ID 4927 (neutron,7.3741998938947[GeV]) at (-413.0762339184,-281.72331279429,-1776.1644807987)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[6,19] 6.932273962434e-06 [GeV]
-Cell[2,32] 0.0017557598590479 [GeV]
-Cell[1,31] 5.5507690681225e-05 [GeV]
-Cell[0,28] 1.2205946428524 [GeV]
-Cell[3,40] 0.00068807759331226 [GeV]
-Cell[2,31] 4.1909515857697e-11 [GeV]
-Cell[2,26] 6.3294295513288e-06 [GeV]
-Cell[7,43] 0.00012411456960899 [GeV]
-Cell[2,33] 0.0059642580958543 [GeV]
-Cell[6,17] 0.0007306175544212 [GeV]
-Cell[2,17] 0.00040393069787365 [GeV]
-Cell[2,10] 6.0595665192523e-05 [GeV]
-Cell[3,39] 0.0012187602170679 [GeV]
-Cell[2,39] 0.0017816591531913 [GeV]
-Cell[1,24] 6.989387509293e-08 [GeV]
-Cell[2,9] 0.0008063173891328 [GeV]
-Cell[1,10] 0.0051672938705867 [GeV]
-Cell[2,15] 1.2805594451493e-10 [GeV]
-Cell[3,26] 9.6522853709757e-09 [GeV]
-Cell[0,42] 0.0010978976855193 [GeV]
-Cell[1,28] 0.027089436206527 [GeV]
-Cell[1,29] 0.00037712011909719 [GeV]
-Cell[4,20] 8.2297069184278e-08 [GeV]
-Cell[4,19] 0.00060484930855898 [GeV]
-Cell[2,25] 1.9776052795351e-09 [GeV]
-Cell[2,16] 1.8978479115844e-05 [GeV]
-Cell[2,6] 9.1306682734285e-06 [GeV]
-Cell[0,4] 0.00033599721218525 [GeV]
-Cell[0,3] 0.0010896519046568 [GeV]
-Cell[1,42] 1.4844800786932e-05 [GeV]
-Cell[2,4] 2.1875137804273e-08 [GeV]
-Cell[4,8] 0.0014091243223731 [GeV]
-Cell[1,14] 0.0035636924381143 [GeV]
-Cell[1,13] 0.00025795855298909 [GeV]
-Cell[0,27] 0.32477239043724 [GeV]
-Cell[0,31] 0.0030494543825353 [GeV]
-Cell[0,30] 0.010537221263864 [GeV]
-Cell[0,29] 0.033148707320054 [GeV]
-Cell[2,35] 2.2904142650077e-05 [GeV]
-Cell[2,36] 2.6334007125115e-05 [GeV]
-Cell[0,44] 3.8482653508254e-11 [GeV]
-Cell[2,14] 0.0011938813855241 [GeV]
-Cell[3,27] 1.4752471284964e-06 [GeV]
-Cell[2,27] 0.0010891416187645 [GeV]
-Cell[1,9] 0.0022269902775398 [GeV]
-Cell[4,47] 9.4104325398803e-10 [GeV]
-Cell[7,45] 0.00063904145855565 [GeV]
-Cell[7,46] 2.533102373377e-06 [GeV]
-Cell[3,28] 1.3120576386427e-07 [GeV]
-Cell[0,25] 0.0016175341418295 [GeV]
-Cell[3,7] 0.0015549067202333 [GeV]
-Cell[0,43] 0.0046017152075923 [GeV]
-Cell[0,26] 0.0093134230656186 [GeV]
-Cell[1,46] 1.5562161895559e-06 [GeV]
-Cell[0,45] 0.0039845779639275 [GeV]
-Cell[1,45] 3.4984658441317e-08 [GeV]
-Cell[0,46] 0.0040839665402419 [GeV]
-Cell[2,38] 0.0049249518252212 [GeV]
-Cell[0,9] 3.226716635254e-07 [GeV]
-Cell[3,0] 4.6431747730367e-06 [GeV]
-Cell[1,15] 1.4302345836768e-05 [GeV]
-Cell[1,25] 2.9796920443914e-08 [GeV]
-Cell[4,26] 2.5797158026535e-06 [GeV]
-Cell[1,32] 0.002694653082358 [GeV]
-Cell[4,27] 1.5568551057186e-06 [GeV]
-Cell[3,17] 1.6959058120847e-07 [GeV]
-Cell[6,18] 2.9803199057937e-05 [GeV]
-Cell[1,33] 0.0087085557771258 [GeV]
-Cell[3,38] 3.2654497772455e-11 [GeV]
-Cell[4,42] 3.9982316957321e-06 [GeV]
-Cell[7,44] 0.00021266591548658 [GeV]
-Cell[2,5] 0.0012538469821047 [GeV]
-Cell[3,16] 6.1958740407135e-06 [GeV]
-Cell[1,26] 0.0012379696650318 [GeV]
-Cell[1,30] 0.0026608820985196 [GeV]
-Cell[1,27] 0.017644680053893 [GeV]
-Cell[1,43] 5.6704400557351e-05 [GeV]
-Cell[2,3] 1.146235736087e-07 [GeV]
-Cell[0,32] 0.00066911607263473 [GeV]
-Cell[1,34] 0.00019958702735947 [GeV]
-### Total energy deposition in calorimeter by a source track in 80 cells : 1.7174289151569 (GeV)
-
-Source track ID 4923 (anti_neutron,5.3948206100571[GeV]) at (-415.09134243251,-278.74572182829,-1871.4579101789)
-Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[8,9] 1.2986202345928e-05 [GeV]
-Cell[7,10] 8.8288717881369e-05 [GeV]
-Cell[0,33] 0.00040136532822558 [GeV]
-Cell[7,11] 0.00032768369122743 [GeV]
-Cell[9,9] 6.3659286824986e-06 [GeV]
-Cell[5,24] 6.6492278279839e-05 [GeV]
-Cell[9,6] 0.00043918037510116 [GeV]
-Cell[9,7] 1.0196089715464e-05 [GeV]
-Cell[14,31] 1.6812071989193e-05 [GeV]
-Cell[14,30] 0.0022551175908761 [GeV]
-Cell[1,31] 0.00013227537211219 [GeV]
-Cell[0,28] 2.3709600607454 [GeV]
-Cell[3,43] 1.1312348389765e-05 [GeV]
-Cell[0,23] 0.00013552664984525 [GeV]
-Cell[9,46] 7.1859188112967e-05 [GeV]
-Cell[6,22] 0.0019278599091886 [GeV]
-Cell[6,23] 6.8450048274826e-06 [GeV]
-Cell[6,25] 2.5953986242712e-05 [GeV]
-Cell[6,26] 7.7879121818114e-11 [GeV]
-Cell[2,31] 0.0022231021529581 [GeV]
-Cell[8,15] 0.00026722134393394 [GeV]
-Cell[2,26] 5.7989515665895e-06 [GeV]
-Cell[6,10] 9.2530604278068e-05 [GeV]
-Cell[18,4] 0.00038565412694697 [GeV]
-Cell[19,4] 1.4235993148759e-07 [GeV]
-Cell[15,30] 0.00022997279386254 [GeV]
-Cell[6,17] 0.0053548419412051 [GeV]
-Cell[15,29] 1.0251210711431e-05 [GeV]
-Cell[5,28] 0.00062925587775407 [GeV]
-Cell[15,0] 9.8569918249268e-05 [GeV]
-Cell[5,11] 5.7328118660962e-06 [GeV]
-Cell[2,17] 2.9582040042442e-08 [GeV]
-Cell[9,5] 7.3583616066799e-05 [GeV]
-Cell[5,23] 2.2134426399134e-06 [GeV]
-Cell[5,15] 0.003886361419468 [GeV]
-Cell[5,16] 0.011119114321843 [GeV]
-Cell[1,22] 0.00044681404902224 [GeV]
-Cell[2,39] 1.4045871706912e-05 [GeV]
-Cell[5,6] 0.0011678961013115 [GeV]
-Cell[1,23] 0.00011867100561471 [GeV]
-Cell[1,24] 0.0010123229960691 [GeV]
-Cell[2,24] 1.9575121882554e-08 [GeV]
-Cell[4,9] 7.9414909996558e-06 [GeV]
-Cell[4,10] 0.057582916629386 [GeV]
-Cell[3,9] 3.179632476531e-07 [GeV]
-Cell[3,26] 1.0947984730592e-05 [GeV]
-Cell[2,23] 4.5004669573245e-09 [GeV]
-Cell[1,28] 0.013484275985272 [GeV]
-Cell[1,29] 0.0044145840033578 [GeV]
-Cell[2,20] 0.00042658534813313 [GeV]
-Cell[3,20] 0.0023086746883189 [GeV]
-Cell[3,19] 0.0013475757650092 [GeV]
-Cell[0,47] 8.3981084753759e-06 [GeV]
-Cell[5,3] 8.7575905420863e-05 [GeV]
-Cell[5,4] 1.3820724270772e-06 [GeV]
-Cell[5,12] 0.0022230582775062 [GeV]
-Cell[1,21] 1.937753715174e-05 [GeV]
-Cell[2,25] 2.2969620185904e-05 [GeV]
-Cell[1,20] 1.6824249469209e-06 [GeV]
-Cell[0,17] 0.00078966336156736 [GeV]
-Cell[0,18] 0.0091710193988016 [GeV]
-Cell[1,19] 0.0023242768741996 [GeV]
-Cell[0,19] 1.1007450433681e-05 [GeV]
-Cell[1,17] 0.0049754384979623 [GeV]
-Cell[1,18] 0.0033137293245385 [GeV]
-Cell[2,19] 0.00080727769398197 [GeV]
-Cell[12,24] 0.00053868728635934 [GeV]
-Cell[0,24] 0.00070238667259285 [GeV]
-Cell[0,21] 0.0022784719324516 [GeV]
-Cell[0,20] 2.1108962246217e-06 [GeV]
-Cell[0,22] 1.1209469903406e-09 [GeV]
-Cell[0,3] 0.00051099891 [GeV]
-Cell[5,18] 0.0010636276783529 [GeV]
-Cell[5,17] 0.0058701228524478 [GeV]
-Cell[2,43] 6.4481806475669e-08 [GeV]
-Cell[0,34] 3.2832750390526e-06 [GeV]
-Cell[4,3] 0.0010038199349605 [GeV]
-Cell[5,19] 4.0520787831611e-07 [GeV]
-Cell[3,10] 0.00020763561626438 [GeV]
-Cell[4,8] 2.3776764110266e-05 [GeV]
-Cell[4,36] 0.015429726347612 [GeV]
-Cell[1,14] 0.00051099891 [GeV]
-Cell[1,40] 0.00030753198460388 [GeV]
-Cell[0,6] 8.5609136818675e-05 [GeV]
-Cell[1,41] 3.0195405997802e-10 [GeV]
-Cell[0,27] 0.03254291078528 [GeV]
-Cell[0,31] 0.011418655592254 [GeV]
-Cell[0,30] 0.083420034741276 [GeV]
-Cell[0,29] 0.032760578388557 [GeV]
-Cell[2,35] 0.00040548454802774 [GeV]
-Cell[2,36] 6.4221152183563e-06 [GeV]
-Cell[5,7] 0.00019789707238351 [GeV]
-Cell[0,44] 0.00065312717607037 [GeV]
-Cell[2,30] 3.3434276122421e-05 [GeV]
-Cell[2,29] 8.203420816244e-08 [GeV]
-Cell[3,31] 0.0015596417136315 [GeV]
-Cell[2,18] 0.0098190105974729 [GeV]
-Cell[3,27] 0.0043150222242458 [GeV]
-Cell[2,27] 0.001822127685811 [GeV]
-Cell[2,28] 0.0030959753783354 [GeV]
-Cell[4,47] 0.0018160958341394 [GeV]
-Cell[6,11] 3.0419341021911e-05 [GeV]
-Cell[3,42] 0.00015032136504703 [GeV]
-Cell[3,44] 0.00010376842324513 [GeV]
-Cell[4,7] 1.8277086132912e-07 [GeV]
-Cell[1,47] 0.00045394856468451 [GeV]
-Cell[1,36] 6.9884526892565e-06 [GeV]
-Cell[0,11] 1.028041538666e-05 [GeV]
-Cell[0,10] 2.510280932313e-05 [GeV]
-Cell[3,28] 0.0037808615434342 [GeV]
-Cell[3,23] 5.2031537052244e-09 [GeV]
-Cell[6,24] 0.00039311019288391 [GeV]
-Cell[0,25] 0.0071306516422061 [GeV]
-Cell[0,43] 8.8088313532353e-11 [GeV]
-Cell[0,26] 0.017501041064422 [GeV]
-Cell[3,30] 0.00048008984131824 [GeV]
-Cell[7,2] 0.00042654674138371 [GeV]
-Cell[1,46] 0.0014315421939025 [GeV]
-Cell[0,45] 0.0059425357654204 [GeV]
-Cell[1,45] 0.0033840016904971 [GeV]
-Cell[0,46] 0.0011383047204112 [GeV]
-Cell[5,2] 0.001631921676425 [GeV]
-Cell[5,14] 2.8446394387061e-05 [GeV]
-Cell[0,9] 0.0017186712819267 [GeV]
-Cell[0,15] 4.2779500679444e-06 [GeV]
-Cell[3,0] 0.00022495031143076 [GeV]
-Cell[9,0] 0.00051099891 [GeV]
-Cell[0,16] 0.00012224838708505 [GeV]
-Cell[1,25] 0.00038437182530561 [GeV]
-Cell[0,0] 0.00013206824830013 [GeV]
-Cell[4,26] 0.00012069753961373 [GeV]
-Cell[1,32] 2.0705017406726e-05 [GeV]
-Cell[4,14] 5.1967615901958e-05 [GeV]
-Cell[4,15] 4.3725570518291e-05 [GeV]
-Cell[4,27] 0.0012207141395811 [GeV]
-Cell[0,8] 0.0011322690315991 [GeV]
-Cell[6,18] 0.00075442865286379 [GeV]
-Cell[1,33] 0.0043587786142201 [GeV]
-Cell[0,39] 0.0010383410201815 [GeV]
-Cell[0,7] 0.00049676682830549 [GeV]
-Cell[6,16] 6.7373455337929e-05 [GeV]
-Cell[3,41] 5.5745737677171e-07 [GeV]
-Cell[4,42] 0.00094467464337834 [GeV]
-Cell[4,43] 0.00018288342326503 [GeV]
-Cell[4,44] 3.2623712751274e-05 [GeV]
-Cell[4,11] 0.21154191257233 [GeV]
-Cell[17,18] 8.3994876773478e-05 [GeV]
-Cell[9,44] 3.796104749199e-06 [GeV]
-Cell[10,46] 1.0918930411208e-07 [GeV]
-Cell[9,45] 0.002224775916109 [GeV]
-Cell[8,45] 0.0023961471105538 [GeV]
-Cell[1,37] 0.0014365745082974 [GeV]
-Cell[0,36] 0.00063955852554375 [GeV]
-Cell[0,37] 9.2410426586866e-06 [GeV]
-Cell[6,7] 0.00049302088397255 [GeV]
-Cell[4,31] 2.654125605477e-05 [GeV]
-Cell[0,38] 8.3541308122221e-06 [GeV]
-Cell[1,26] 7.7276479016291e-05 [GeV]
-Cell[1,30] 0.0030340219963707 [GeV]
-Cell[2,45] 7.5255002229824e-12 [GeV]
-Cell[1,27] 0.01653595401159 [GeV]
-Cell[1,44] 0.00017281484832529 [GeV]
-Cell[1,43] 0.0011346605706193 [GeV]
-Cell[3,4] 0.00031406400314324 [GeV]
-Cell[0,32] 0.00095930402465241 [GeV]
-Cell[1,34] 0.00065231999350272 [GeV]
-Cell[19,6] 0.0014689461944134 [GeV]
-Cell[19,14] 1.4815079281107e-05 [GeV]
-Cell[19,13] 7.4805948534049e-06 [GeV]
-Cell[18,5] 9.2821539396937e-08 [GeV]
-Cell[0,35] 2.1123251644894e-07 [GeV]
-Cell[3,29] 0.0014900301170896 [GeV]
-### Total energy deposition in calorimeter by a source track in 172 cells : 3.0221269506387 (GeV)
+Cell[0,33] 0.0011593101455858 [GeV]
+Cell[0,28] 2.0626926672259 [GeV]
+Cell[8,31] 9.777465951629e-06 [GeV]
+Cell[8,6] 0.00035781189883777 [GeV]
+Cell[2,41] 0.00088750527141098 [GeV]
+Cell[0,23] 0.0016804688463203 [GeV]
+Cell[11,46] 0.0019388759697233 [GeV]
+Cell[8,32] 6.9334134779638e-05 [GeV]
+Cell[0,32] 0.003028813255554 [GeV]
+Cell[1,25] 0.0042995367476105 [GeV]
+Cell[1,24] 0.00047326101640874 [GeV]
+Cell[0,24] 0.00065233777845719 [GeV]
+Cell[3,11] 0.0013668012267641 [GeV]
+Cell[2,2] 0.0054545393652433 [GeV]
+Cell[2,3] 0.00051099891 [GeV]
+Cell[2,8] 0.00063171450391086 [GeV]
+Cell[0,19] 0.005508744379753 [GeV]
+Cell[3,47] 0.0013716540765232 [GeV]
+Cell[1,1] 0.0032219389980099 [GeV]
+Cell[0,17] 0.00055425571170764 [GeV]
+Cell[1,30] 0.0052397876508226 [GeV]
+Cell[1,29] 0.012422272136876 [GeV]
+Cell[0,29] 0.0038907863620118 [GeV]
+Cell[2,47] 0.001226897273928 [GeV]
+Cell[0,45] 0.00016844585039589 [GeV]
+Cell[0,46] 0.0037598075633787 [GeV]
+Cell[0,25] 0.015491621828146 [GeV]
+Cell[0,43] 0.00040063916747171 [GeV]
+Cell[1,17] 0.0009800656301871 [GeV]
+Cell[0,16] 0.0014077834644067 [GeV]
+Cell[1,26] 0.001267949669576 [GeV]
+Cell[0,26] 0.0068473881898824 [GeV]
+Cell[0,39] 0.00059423018822646 [GeV]
+Cell[1,5] 0.00092003548067655 [GeV]
+Cell[0,27] 0.029896196217227 [GeV]
+Cell[2,11] 0.0019859706341186 [GeV]
+Cell[1,28] 0.11624893898763 [GeV]
+Cell[4,3] 0.00024887895442858 [GeV]
+Cell[1,11] 0.0022452325618563 [GeV]
+Cell[1,32] 0.00030308425095024 [GeV]
+Cell[1,22] 4.9350956146554e-08 [GeV]
+Cell[3,20] 0.00039471949159126 [GeV]
+Cell[0,2] 0.00049243468688038 [GeV]
+Cell[2,18] 0.00069437579073685 [GeV]
+Cell[2,17] 0.0020548826167618 [GeV]
+Cell[1,15] 0.00039447319981302 [GeV]
+Cell[2,16] 0.00024593105032147 [GeV]
+Cell[2,12] 0.00051099891 [GeV]
+Cell[2,43] 0.00065406126407947 [GeV]
+Cell[0,15] 0.00015796032880229 [GeV]
+Cell[0,13] 0.0019774367374705 [GeV]
+Cell[1,3] 0.00066104381156148 [GeV]
+Cell[1,27] 0.0060520272051689 [GeV]
+Cell[1,40] 0.00067172919621678 [GeV]
+Cell[3,2] 5.8405569870956e-07 [GeV]
+Cell[3,0] 3.7193989468506e-05 [GeV]
+Cell[3,3] 0.0025355148985478 [GeV]
+Cell[8,34] 1.0826264846173e-06 [GeV]
+Cell[2,9] 0.0017284330947036 [GeV]
+Cell[1,9] 2.1062005544081e-08 [GeV]
+Cell[1,10] 4.5736666367475e-05 [GeV]
+Cell[2,42] 0.0011268095629261 [GeV]
+Cell[1,23] 4.9779341618432e-06 [GeV]
+Cell[5,3] 0.0003663389568972 [GeV]
+Cell[3,13] 5.7172251069915e-07 [GeV]
+Cell[7,46] 0.001221771954797 [GeV]
+Cell[3,46] 0.0047579858285388 [GeV]
+Cell[4,14] 0.0006423438970231 [GeV]
+Cell[2,7] 0.001758459273438 [GeV]
+Cell[0,31] 0.00051694610772926 [GeV]
+Cell[0,1] 5.3141693570069e-09 [GeV]
+Cell[4,15] 7.8212534670456e-05 [GeV]
+Cell[3,14] 0.00035561509619936 [GeV]
+Cell[8,35] 0.0014175526905833 [GeV]
+Cell[0,30] 0.00095390506151314 [GeV]
+Cell[0,35] 2.2557214833796e-09 [GeV]
+Cell[0,0] 5.627137956958e-05 [GeV]
+Cell[2,5] 0.00036715978878516 [GeV]
+### Total energy deposition in calorimeter by a source track in 78 cells : 2.3343519783835 (GeV)
Source track ID 4855 (pi-,5.4477682445886[GeV]) at (-324.45817004728,-380.42988301338,-1969.1601588933)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[0,30] 0.053938873880377 [GeV]
-### Total energy deposition in calorimeter by a source track in 1 cells : 0.053938873880377 (GeV)
+Cell[0,30] 0.059243693462807 [GeV]
+### Total energy deposition in calorimeter by a source track in 1 cells : 0.059243693462807 (GeV)
Source track ID 4655 (e-,0.00071214264597091[GeV]) at (-467.01784422413,-178.58984622943,-1614.6393817445)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[1,26] 0.00020114373597091 [GeV]
-### Total energy deposition in calorimeter by a source track in 1 cells : 0.00020114373597091 (GeV)
+Cell[1,26] 3.1007107725021e-06 [GeV]
+Cell[2,23] 6.7712278914564e-06 [GeV]
+Cell[1,23] 3.0677504151137e-06 [GeV]
+### Total energy deposition in calorimeter by a source track in 3 cells : 1.2939689079072e-05 (GeV)
Source track ID 3607 (pi-,5.0452458874816[GeV]) at (-463.56448483289,-187.37120483578,-1931.683633954)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[0,27] 0.00098518213711301 [GeV]
-Cell[0,26] 0.12314076967991 [GeV]
-### Total energy deposition in calorimeter by a source track in 2 cells : 0.12412595181703 (GeV)
+Cell[0,26] 0.098743575891019 [GeV]
+### Total energy deposition in calorimeter by a source track in 1 cells : 0.098743575891019 (GeV)
Source track ID 4603 (pi-,26.431173243547[GeV]) at (-348.94255540941,-358.10486316769,-1955.9525929184)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[0,30] 0.084831828942266 [GeV]
-### Total energy deposition in calorimeter by a source track in 1 cells : 0.084831828942266 (GeV)
+Cell[0,30] 0.061328561925861 [GeV]
+### Total energy deposition in calorimeter by a source track in 1 cells : 0.061328561925861 (GeV)
Source track ID 4604 (pi+,1.1827265317504[GeV]) at (-498.94823787658,32.413822975088,-1756.0092630832)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[9,8] 0.00029644964869627 [GeV]
-Cell[1,31] 2.3350276001111e-07 [GeV]
-Cell[0,28] 6.9060479290783e-10 [GeV]
-Cell[3,43] 6.8707782987758e-06 [GeV]
-Cell[0,23] 0.013490419403284 [GeV]
-Cell[8,33] 1.4983899949584e-05 [GeV]
-Cell[2,31] 2.5091885845541e-08 [GeV]
-Cell[11,45] 4.5265125022524e-06 [GeV]
-Cell[3,45] 1.397436076445e-06 [GeV]
-Cell[4,45] 2.2211199393496e-08 [GeV]
-Cell[5,16] 1.0586210060865e-05 [GeV]
-Cell[1,22] 0.0041652275415727 [GeV]
-Cell[1,23] 0.17981870647913 [GeV]
-Cell[1,24] 0.008763724216737 [GeV]
-Cell[0,42] 0.0010328573790075 [GeV]
-Cell[1,28] 0.00067493532653793 [GeV]
-Cell[1,21] 0.0012292585397697 [GeV]
-Cell[2,25] 9.0318422805922e-06 [GeV]
-Cell[1,17] 1.6309783386532e-05 [GeV]
-Cell[1,18] 2.9903029149864e-05 [GeV]
-Cell[2,16] 2.3106854001526e-05 [GeV]
-Cell[0,24] 8.3969933257322e-08 [GeV]
-Cell[0,21] 0.0047639707470037 [GeV]
-Cell[0,20] 0.00052906504359191 [GeV]
-Cell[0,22] 0.15734976611648 [GeV]
-Cell[0,34] 0.0027218796587561 [GeV]
-Cell[4,41] 5.4819888318889e-06 [GeV]
-Cell[0,27] 0.0036660242426743 [GeV]
-Cell[2,30] 1.6597109606664e-09 [GeV]
-Cell[2,27] 6.5945033529715e-06 [GeV]
-Cell[2,28] 8.2356199419678e-05 [GeV]
-Cell[3,42] 3.2927205029409e-06 [GeV]
-Cell[3,44] 2.95173602467e-07 [GeV]
-Cell[0,25] 0.0010613241423868 [GeV]
-Cell[0,26] 0.0096516070939344 [GeV]
-Cell[4,2] 6.6156216198578e-06 [GeV]
-Cell[2,12] 0.0022768631654819 [GeV]
-Cell[2,47] 1.4290765193437e-09 [GeV]
-Cell[3,47] 2.5154474424198e-06 [GeV]
-Cell[1,12] 2.4029150372371e-06 [GeV]
-Cell[3,3] 0.0012616274364948 [GeV]
-Cell[1,25] 0.0030880175988858 [GeV]
-Cell[0,0] 1.625443776004e-05 [GeV]
-Cell[1,32] 2.7681749122621e-07 [GeV]
-Cell[0,8] 8.4466605330817e-06 [GeV]
-Cell[1,33] 0.00040667531186045 [GeV]
-Cell[0,39] 0.00012905205189122 [GeV]
-Cell[2,46] 0.00073000405933885 [GeV]
-Cell[4,43] 3.7529064848627e-05 [GeV]
-Cell[4,44] 2.7531147960303e-05 [GeV]
-Cell[11,44] 0.00036027024430518 [GeV]
-Cell[11,43] 0.00019723909467643 [GeV]
-Cell[10,38] 7.6079042919446e-06 [GeV]
-Cell[2,5] 2.838250665809e-05 [GeV]
-Cell[0,37] 4.7119544888119e-09 [GeV]
-Cell[0,38] 0.00065928496001141 [GeV]
-Cell[1,26] 0.0079959280243647 [GeV]
-Cell[1,30] 2.1704484083784e-08 [GeV]
-Cell[1,27] 0.0067507911009864 [GeV]
-Cell[3,4] 0.00036798513764575 [GeV]
-Cell[0,35] 0.00090129985299996 [GeV]
-### Total energy deposition in calorimeter by a source track in 61 cells : 0.41469294804517 (GeV)
+Cell[2,32] 0.0046141579729242 [GeV]
+Cell[1,31] 0.00033823479684565 [GeV]
+Cell[0,23] 0.8348997148324 [GeV]
+Cell[2,33] 0.036684880133265 [GeV]
+Cell[0,24] 0.0097183619359689 [GeV]
+Cell[0,21] 0.0021856463789803 [GeV]
+Cell[0,25] 0.0026937186117375 [GeV]
+Cell[0,10] 0.00084560151569758 [GeV]
+Cell[0,9] 1.0176233481616e-06 [GeV]
+Cell[1,35] 1.3503308990039e-05 [GeV]
+Cell[1,32] 0.0021487884519844 [GeV]
+Cell[1,22] 0.0055498773492404 [GeV]
+Cell[0,15] 3.3347520772054e-05 [GeV]
+Cell[2,34] 0.0029784105665811 [GeV]
+Cell[2,35] 0.00067564649266105 [GeV]
+Cell[1,36] 0.00030167162293787 [GeV]
+Cell[1,23] 0.070085706928967 [GeV]
+Cell[1,33] 0.00039751297851285 [GeV]
+Cell[0,22] 0.042757950613239 [GeV]
+Cell[1,37] 8.4530517354096e-05 [GeV]
+Cell[1,34] 0.0022745706070619 [GeV]
+### Total energy deposition in calorimeter by a source track in 21 cells : 1.0192828507595 (GeV)
Source track ID 4596 (gamma,1.5279055119093[GeV]) at (-73.254797775507,-494.60462452637,-436.11291291946)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[7,36] 0.0024342205687194 [GeV]
-Cell[7,34] 1.3489085773406 [GeV]
-Cell[6,8] 0.0022601697794274 [GeV]
-Cell[7,47] 0.0060513002619624 [GeV]
-Cell[6,40] 0.0066996425223991 [GeV]
-Cell[7,33] 0.0024433504120238 [GeV]
-Cell[8,34] 0.0025540322121503 [GeV]
-Cell[7,32] 0.00038391799551215 [GeV]
-Cell[4,10] 0.0014010275029303 [GeV]
-Cell[8,16] 0.0050148711787091 [GeV]
-Cell[4,47] 0.00022184347059697 [GeV]
-Cell[7,3] 0.00056371287015374 [GeV]
-Cell[6,34] 0.0049315002044666 [GeV]
-Cell[5,22] 0.00051099891 [GeV]
-Cell[7,15] 0.00030133468828679 [GeV]
-Cell[7,35] 0.14236007554381 [GeV]
-### Total energy deposition in calorimeter by a source track in 16 cells : 1.5270405754618 (GeV)
+Cell[7,36] 0.00036948852965194 [GeV]
+Cell[9,35] 0.00027588184716542 [GeV]
+Cell[7,34] 1.3598317871987 [GeV]
+Cell[6,29] 0.0002161130597168 [GeV]
+Cell[6,36] 0.0012743775954125 [GeV]
+Cell[6,35] 0.00047411710902022 [GeV]
+Cell[8,36] 0.0010401574727612 [GeV]
+Cell[7,33] 0.013912549843818 [GeV]
+Cell[8,33] 0.001149030289015 [GeV]
+Cell[6,34] 0.0030813768563017 [GeV]
+Cell[7,35] 0.1454262212008 [GeV]
+Cell[4,40] 0.0005179091199869 [GeV]
+### Total energy deposition in calorimeter by a source track in 12 cells : 1.5275690101223 (GeV)
Source track ID 4601 (gamma,0.013511430739777[GeV]) at (-102.06595402537,-489.47169584041,-488.24933703174)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[7,34] 0.013000431829777 [GeV]
-Cell[8,32] 0.00032265625069923 [GeV]
-### Total energy deposition in calorimeter by a source track in 2 cells : 0.013323088080477 (GeV)
+Cell[7,34] 0.01327527654854 [GeV]
+Cell[7,13] 0.00023615419123712 [GeV]
+### Total energy deposition in calorimeter by a source track in 2 cells : 0.013511430739777 (GeV)
Source track ID 4598 (e-,1.4665976340854[GeV]) at (-100.98843832877,-489.69514529339,-488.45912994374)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[7,34] 1.3794900449964 [GeV]
-Cell[7,24] 0.00036675144472308 [GeV]
-Cell[6,36] 0.00051099891 [GeV]
-Cell[13,47] 0.00054339532301748 [GeV]
-Cell[13,12] 0.0010202424097544 [GeV]
-Cell[7,33] 0.032019216162604 [GeV]
-Cell[7,43] 0.0010052437976098 [GeV]
-Cell[10,20] 0.00046885282248942 [GeV]
-Cell[6,46] 0.00033773876046101 [GeV]
-Cell[6,33] 0.0059266301325941 [GeV]
-Cell[5,3] 0.0023523867189727 [GeV]
-Cell[5,17] 0.00056144991021266 [GeV]
-Cell[6,24] 0.00014424746527692 [GeV]
-Cell[3,2] 0.00081313731837881 [GeV]
-Cell[5,14] 0.00051099891 [GeV]
-Cell[6,34] 0.015571023990124 [GeV]
-Cell[7,35] 0.023181919182866 [GeV]
-### Total energy deposition in calorimeter by a source track in 17 cells : 1.4648242782555 (GeV)
+Cell[7,36] 0.0046768814532539 [GeV]
+Cell[7,34] 1.3894541396981 [GeV]
+Cell[6,35] 0.0032174732087725 [GeV]
+Cell[7,33] 0.005401689576182 [GeV]
+Cell[8,33] 0.00013497236694624 [GeV]
+Cell[8,32] 0.00088702545305376 [GeV]
+Cell[6,34] 0.016202932659584 [GeV]
+Cell[7,35] 0.035364383005651 [GeV]
+Cell[0,17] 0.00044812919479683 [GeV]
+Cell[1,41] 0.00039839585081782 [GeV]
+Cell[5,7] 0.0011067507411326 [GeV]
+Cell[3,13] 0.0071851998531612 [GeV]
+Cell[7,46] 0.00040719068273827 [GeV]
+Cell[3,12] 0.00059247261891712 [GeV]
+Cell[0,0] 0.00060899881227689 [GeV]
+### Total energy deposition in calorimeter by a source track in 15 cells : 1.4660866351754 (GeV)
Source track ID 4600 (gamma,0.30528863796252[GeV]) at (-105.22585135177,-488.80212786699,-489.21038250031)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[7,34] 0.27512101770561 [GeV]
-Cell[6,35] 0.0025934389491704 [GeV]
-Cell[7,33] 0.0081443980158113 [GeV]
-Cell[6,33] 0.0056889907688733 [GeV]
-Cell[6,34] 0.01004542115597 [GeV]
-Cell[5,22] 0.0013665339459752 [GeV]
-Cell[7,35] 0.0023288374211105 [GeV]
-### Total energy deposition in calorimeter by a source track in 7 cells : 0.30528863796252 (GeV)
+Cell[7,34] 0.27018204354235 [GeV]
+Cell[5,34] 3.7345687270545e-06 [GeV]
+Cell[6,35] 0.0033541630589173 [GeV]
+Cell[8,6] 0.00014747737956474 [GeV]
+Cell[7,33] 0.0064773496798412 [GeV]
+Cell[7,32] 6.2655146848556e-10 [GeV]
+Cell[6,34] 1.2138229503762e-06 [GeV]
+Cell[7,35] 0.00059333193566644 [GeV]
+Cell[6,32] 7.6668834371958e-06 [GeV]
+Cell[8,0] 0.0067061628601079 [GeV]
+Cell[10,44] 0.00042828993760684 [GeV]
+Cell[2,11] 0.0018010249999367 [GeV]
+Cell[5,33] 1.4429013521067e-06 [GeV]
+Cell[6,33] 0.0024199951531073 [GeV]
+### Total energy deposition in calorimeter by a source track in 14 cells : 0.29212389735012 (GeV)
Source track ID 4599 (e+,0.39904122519271[GeV]) at (-119.35291332316,-485.54596289257,-491.59808466341)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[7,34] 0.36061801442563 [GeV]
-Cell[6,27] 0.0017878482686219 [GeV]
-Cell[8,13] 0.00051099891 [GeV]
-Cell[7,33] 0.021824453295407 [GeV]
-Cell[6,25] 0.00053974606576673 [GeV]
-Cell[6,26] 0.0027989805214809 [GeV]
-Cell[7,43] 0.00035493488839968 [GeV]
-Cell[8,41] 0.0024491821742776 [GeV]
-Cell[8,42] 4.5052496642956e-06 [GeV]
-Cell[1,13] 0.00051099891 [GeV]
-Cell[4,40] 0.00040206243533018 [GeV]
-Cell[6,34] 0.0016506779405798 [GeV]
-Cell[7,35] 0.00017948430198709 [GeV]
-Cell[11,14] 0.00051099891 [GeV]
-Cell[1,26] 0.0054093378055674 [GeV]
-### Total energy deposition in calorimeter by a source track in 15 cells : 0.39955222410271 (GeV)
+Cell[7,34] 0.3094329307953 [GeV]
+Cell[6,35] 0.0025216978553298 [GeV]
+Cell[7,33] 0.078546539895687 [GeV]
+Cell[8,16] 0.00025087128555217 [GeV]
+Cell[7,32] 0.0056051838159358 [GeV]
+Cell[7,35] 0.00051099891 [GeV]
+Cell[6,33] 0.002513335333489 [GeV]
+### Total energy deposition in calorimeter by a source track in 7 cells : 0.39938155789129 (GeV)
Source track ID 4594 (gamma,0.076632669216442[GeV]) at (-300.43599701605,399.67263065786,200.63474919794)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[10,17] 0.00054224058693509 [GeV]
-Cell[11,16] 0.04593670609192 [GeV]
-Cell[11,17] 0.030153722537587 [GeV]
-### Total energy deposition in calorimeter by a source track in 3 cells : 0.076632669216442 (GeV)
+Cell[10,16] 0.0027084848522522 [GeV]
+Cell[11,16] 0.071894086724781 [GeV]
+Cell[10,17] 0.0012567930251569 [GeV]
+Cell[11,17] 0.00077330461425201 [GeV]
+### Total energy deposition in calorimeter by a source track in 4 cells : 0.076632669216442 (GeV)
Source track ID 4595 (gamma,0.17932025858732[GeV]) at (-255.57095691489,429.74816576875,-559.80030062051)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[12,34] 0.0015927834380799 [GeV]
-Cell[6,15] 0.013125689617866 [GeV]
-Cell[7,15] 0.00050263116484459 [GeV]
-Cell[6,14] 0.0023166334917574 [GeV]
-Cell[6,16] 0.047031763971924 [GeV]
-Cell[7,16] 0.11473604687796 [GeV]
-### Total energy deposition in calorimeter by a source track in 6 cells : 0.17930554856243 (GeV)
+Cell[6,15] 0.0030328517771609 [GeV]
+Cell[11,37] 0.0025140017460128 [GeV]
+Cell[6,47] 0.00051099891 [GeV]
+Cell[7,15] 0.0070821806137991 [GeV]
+Cell[5,36] 0.0001538329349317 [GeV]
+Cell[5,37] 0.0013998879448729 [GeV]
+Cell[10,38] 0.00030887932291277 [GeV]
+Cell[7,16] 0.14089618536554 [GeV]
+Cell[6,16] 0.023124947715097 [GeV]
+### Total energy deposition in calorimeter by a source track in 9 cells : 0.17902376633033 (GeV)
Source track ID 4512 (e-,0.00068353898177309[GeV]) at (60.692845842792,496.30270849906,-1267.4106844812)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[3,11] 0.00017254007177309 [GeV]
-### Total energy deposition in calorimeter by a source track in 1 cells : 0.00017254007177309 (GeV)
+Cell[3,11] 4.664384339154e-06 [GeV]
+Cell[3,8] 6.3410930492121e-05 [GeV]
+### Total energy deposition in calorimeter by a source track in 2 cells : 6.8075314831275e-05 (GeV)
Source track ID 3611 (pi-,0.22736660444527[GeV]) at (44.050313929367,498.05578988977,-1286.8126370975)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[5,31] 2.7412599592935e-06 [GeV]
-Cell[4,6] 0.00047924609025733 [GeV]
-Cell[6,19] 9.331609123933e-06 [GeV]
-Cell[1,31] 0.00067895460207126 [GeV]
-Cell[7,39] 6.6805114038289e-06 [GeV]
-Cell[5,43] 5.6557812867936e-05 [GeV]
-Cell[9,14] 2.6124673349841e-05 [GeV]
-Cell[8,15] 7.333498956541e-08 [GeV]
-Cell[9,47] 0.0008583936313701 [GeV]
-Cell[8,41] 4.9539573956281e-07 [GeV]
-Cell[8,42] 9.6247294383943e-05 [GeV]
-Cell[3,46] 3.2614470372209e-05 [GeV]
-Cell[9,15] 0.0015822733368154 [GeV]
-Cell[2,9] 2.6930505409837e-06 [GeV]
-Cell[3,9] 0.0017844250214317 [GeV]
-Cell[4,19] 5.274622095385e-06 [GeV]
-Cell[5,9] 0.0016134661629055 [GeV]
-Cell[2,6] 7.1144808202121e-05 [GeV]
-Cell[2,7] 0.0010741359954189 [GeV]
-Cell[2,8] 0.0040333802914659 [GeV]
-Cell[8,16] 2.4062956644343e-05 [GeV]
-Cell[4,18] 1.8059807064219e-07 [GeV]
-Cell[3,10] 0.0026413043945897 [GeV]
-Cell[4,8] 0.0010424167867309 [GeV]
-Cell[3,12] 0.004199523793483 [GeV]
-Cell[2,36] 3.4930916410758e-07 [GeV]
-Cell[3,11] 0.10992510461869 [GeV]
-Cell[4,7] 0.0034706880957247 [GeV]
-Cell[5,44] 1.3588714355137e-06 [GeV]
-Cell[3,22] 0.00075003963253443 [GeV]
-Cell[3,8] 0.0047130075930704 [GeV]
-Cell[3,7] 0.0025237858782959 [GeV]
-Cell[4,1] 0.00064890057076239 [GeV]
-Cell[3,47] 3.0645813327283e-05 [GeV]
-Cell[3,18] 5.9356017345635e-09 [GeV]
-Cell[1,32] 1.6966131111076e-06 [GeV]
-Cell[6,18] 0.0039373692210017 [GeV]
-Cell[1,8] 4.6723009747325e-05 [GeV]
-Cell[6,20] 1.9368510007894e-05 [GeV]
-Cell[4,44] 8.0282056057513e-05 [GeV]
-Cell[7,41] 0.0011443205517538 [GeV]
-Cell[7,40] 8.8142212189268e-06 [GeV]
-Cell[8,40] 0.00039986604126898 [GeV]
-Cell[9,16] 0.00016835292910162 [GeV]
-Cell[4,5] 0.00019900441643892 [GeV]
-Cell[2,37] 0.00062922733859227 [GeV]
-### Total energy deposition in calorimeter by a source track in 46 cells : 0.14902065373119 (GeV)
+Cell[9,25] 0.00019964564692407 [GeV]
+Cell[9,26] 0.0012157077355047 [GeV]
+Cell[8,5] 6.905361340614e-06 [GeV]
+Cell[6,36] 0.0010142772208383 [GeV]
+Cell[6,35] 0.00035159632889736 [GeV]
+Cell[8,45] 3.0654831498396e-06 [GeV]
+Cell[7,44] 2.2790186339989e-06 [GeV]
+Cell[3,11] 0.11005168428618 [GeV]
+Cell[2,2] 1.2618192565924e-05 [GeV]
+Cell[4,18] 1.5755260974402e-05 [GeV]
+Cell[4,17] 0.0014515299218724 [GeV]
+Cell[4,16] 0.0027862269785886 [GeV]
+Cell[3,17] 0.0037606952873555 [GeV]
+Cell[2,1] 0.0024012060485392 [GeV]
+Cell[3,16] 0.0025488942796815 [GeV]
+Cell[4,46] 8.4188514841799e-06 [GeV]
+Cell[3,18] 1.1956349189859e-05 [GeV]
+Cell[4,2] 0.00094724715090602 [GeV]
+Cell[4,1] 0.00093409717793178 [GeV]
+Cell[6,46] 6.0374304302968e-06 [GeV]
+Cell[3,2] 0.00013144164291862 [GeV]
+Cell[3,1] 1.4806438819505e-05 [GeV]
+Cell[6,4] 1.3406714616963e-05 [GeV]
+Cell[4,45] 7.2228023386288e-05 [GeV]
+Cell[2,9] 0.00076833473127585 [GeV]
+Cell[2,10] 0.0050783268274321 [GeV]
+Cell[4,38] 0.0016121109972421 [GeV]
+Cell[6,3] 5.0058588385582e-12 [GeV]
+Cell[5,4] 0.00037808818601502 [GeV]
+Cell[3,13] 6.578144087598e-06 [GeV]
+Cell[9,4] 1.3080438948236e-06 [GeV]
+Cell[3,10] 0.0013941604236478 [GeV]
+Cell[3,6] 7.195450598374e-06 [GeV]
+Cell[3,9] 1.7723108288692e-06 [GeV]
+Cell[18,25] 3.995529783424e-06 [GeV]
+Cell[4,11] 6.9894920216029e-09 [GeV]
+Cell[3,12] 0.001463924480511 [GeV]
+Cell[3,14] 0.0013046624829764 [GeV]
+### Total energy deposition in calorimeter by a source track in 38 cells : 0.13998219143352 (GeV)
Source track ID 4484 (gamma,0.31054837923301[GeV]) at (447.33312056161,223.36758773066,253.26070393775)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[11,3] 0.30425021190864 [GeV]
-Cell[11,1] 0.00066822357658771 [GeV]
-Cell[11,4] 0.0021002694302376 [GeV]
-Cell[11,2] 0.0035296743175392 [GeV]
-### Total energy deposition in calorimeter by a source track in 4 cells : 0.31054837923301 (GeV)
+Cell[12,34] 0.0005944133131838 [GeV]
+Cell[11,3] 0.29410012836718 [GeV]
+Cell[11,1] 0.0032322356925048 [GeV]
+Cell[11,4] 0.0011917548432127 [GeV]
+Cell[15,36] 0.00054986487448306 [GeV]
+Cell[11,2] 0.010879982142439 [GeV]
+### Total energy deposition in calorimeter by a source track in 6 cells : 0.31054837923301 (GeV)
Source track ID 4485 (gamma,0.15995014937721[GeV]) at (486.22067510101,-116.57381826258,276.45970346986)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[11,46] 0.15477095800582 [GeV]
-Cell[11,3] 0.00018792294524537 [GeV]
-Cell[11,45] 0.0023805629625811 [GeV]
-Cell[10,12] 0.00062010797742871 [GeV]
-Cell[10,46] 0.0012547081503433 [GeV]
-### Total energy deposition in calorimeter by a source track in 5 cells : 0.15921426004142 (GeV)
+Cell[14,29] 0.0024693530171645 [GeV]
+Cell[11,46] 0.14626289199606 [GeV]
+Cell[12,27] 0.00050240294328306 [GeV]
+Cell[11,45] 0.0049708540181713 [GeV]
+Cell[11,47] 0.0016919630428554 [GeV]
+Cell[10,2] 0.00051099891 [GeV]
+Cell[12,46] 0.0010415010468587 [GeV]
+Cell[12,15] 0.001825806176277 [GeV]
+Cell[10,35] 0.00067437822654341 [GeV]
+### Total energy deposition in calorimeter by a source track in 9 cells : 0.15995014937721 (GeV)
Source track ID 4478 (pi+,0.58340556890026[GeV]) at (-499.02939107441,31.139474046726,858.19793879325)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[10,41] 3.3292866033662e-05 [GeV]
-Cell[13,29] 9.9640449554045e-05 [GeV]
-Cell[13,28] 2.4272166891024e-05 [GeV]
-Cell[13,0] 0.0006714900744488 [GeV]
-Cell[12,8] 4.3837039105483e-06 [GeV]
-Cell[13,23] 0.0050336635807754 [GeV]
-Cell[13,24] 3.2666052561581e-08 [GeV]
-Cell[14,24] 3.0133732361719e-06 [GeV]
-Cell[14,25] 9.2502924962901e-07 [GeV]
-Cell[14,27] 2.193400246324e-05 [GeV]
-Cell[14,28] 4.0815038402798e-05 [GeV]
-Cell[13,30] 0.0016221052462456 [GeV]
-Cell[10,40] 0.00053905827811741 [GeV]
-Cell[15,18] 2.0411516015884e-06 [GeV]
-Cell[11,8] 7.4235002193745e-07 [GeV]
-Cell[11,42] 7.6256599568296e-06 [GeV]
-Cell[16,18] 0.00023787541371132 [GeV]
-Cell[16,19] 0.0026057973259789 [GeV]
-Cell[15,23] 0.00074476290981477 [GeV]
-Cell[15,22] 0.013914401680119 [GeV]
-Cell[14,22] 0.17074158744313 [GeV]
-Cell[14,0] 5.9104995443704e-08 [GeV]
-Cell[11,43] 0.0019086218894693 [GeV]
-Cell[10,43] 7.5765411893371e-06 [GeV]
-Cell[14,19] 0.00019686415583408 [GeV]
-Cell[14,23] 0.094475164854201 [GeV]
-Cell[15,20] 0.011266993881428 [GeV]
-Cell[15,21] 0.026258827666275 [GeV]
-Cell[14,21] 0.0067530361577535 [GeV]
-Cell[14,20] 0.0034098289541927 [GeV]
-Cell[17,19] 3.0976850268871e-07 [GeV]
-Cell[15,19] 0.0083746297401218 [GeV]
-Cell[13,22] 4.941177349599e-05 [GeV]
-### Total energy deposition in calorimeter by a source track in 33 cells : 0.34905078489718 (GeV)
+Cell[16,14] 0.0011821320152985 [GeV]
+Cell[16,15] 0.00100163374239 [GeV]
+Cell[13,46] 0.00029235216957684 [GeV]
+Cell[15,42] 8.8324752869084e-07 [GeV]
+Cell[15,41] 0.003349948609423 [GeV]
+Cell[15,40] 1.2110451934859e-06 [GeV]
+Cell[12,5] 3.4135949817937e-08 [GeV]
+Cell[11,4] 3.0354858608916e-08 [GeV]
+Cell[14,41] 0.00051037078643662 [GeV]
+Cell[12,45] 0.0010950390715599 [GeV]
+Cell[15,37] 2.3470402957173e-05 [GeV]
+Cell[11,5] 2.7079106500651e-05 [GeV]
+Cell[11,6] 6.445508915931e-08 [GeV]
+Cell[12,46] 0.000303265609547 [GeV]
+Cell[16,37] 6.0168652911671e-05 [GeV]
+Cell[16,20] 3.7739703202533e-08 [GeV]
+Cell[15,19] 6.2648739930296e-05 [GeV]
+Cell[17,12] 1.2288411245777e-05 [GeV]
+Cell[16,21] 1.6372580375901e-09 [GeV]
+Cell[13,24] 0.0059157381428523 [GeV]
+Cell[15,24] 0.0023878249292971 [GeV]
+Cell[15,23] 0.084765321624355 [GeV]
+Cell[13,23] 0.0024428220266079 [GeV]
+Cell[14,24] 0.0034874071193595 [GeV]
+Cell[14,23] 0.17612683512233 [GeV]
+Cell[14,22] 0.17778687123171 [GeV]
+Cell[13,22] 0.00013773406343307 [GeV]
+Cell[15,21] 0.00014001642724804 [GeV]
+Cell[14,21] 0.00011101522507317 [GeV]
+Cell[15,20] 0.00033739787349941 [GeV]
+Cell[15,15] 4.0960722643451e-05 [GeV]
+Cell[16,16] 0.0010378428433109 [GeV]
+Cell[15,16] 0.0062944183317365 [GeV]
+Cell[16,19] 6.3970219343901e-10 [GeV]
+Cell[15,22] 0.0046072800487519 [GeV]
+Cell[16,23] 8.6761031070637e-10 [GeV]
+Cell[12,11] 1.673483668128e-05 [GeV]
+### Total energy deposition in calorimeter by a source track in 37 cells : 0.47355888200956 (GeV)
Source track ID 4475 (gamma,1.004682788758[GeV]) at (-131.64957502325,-482.35711811499,294.93685548164)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[11,36] 0.00018844021626784 [GeV]
-Cell[12,34] 0.0026112357737163 [GeV]
-Cell[12,33] 0.0047994503007089 [GeV]
-Cell[11,33] 0.84850722483404 [GeV]
-Cell[11,34] 0.13900575039246 [GeV]
-Cell[11,32] 0.0014650159207636 [GeV]
-Cell[12,35] 0.001185699860912 [GeV]
-Cell[12,36] 0.0054360717278577 [GeV]
-Cell[11,35] 0.0004591633025146 [GeV]
-Cell[11,17] 0.0010247364287949 [GeV]
-### Total energy deposition in calorimeter by a source track in 10 cells : 1.004682788758 (GeV)
+Cell[12,34] 0.0016710634465627 [GeV]
+Cell[12,33] 0.0026731842377896 [GeV]
+Cell[11,33] 0.67183372102498 [GeV]
+Cell[11,34] 0.312171166142 [GeV]
+Cell[11,32] 0.00036519995269415 [GeV]
+Cell[13,41] 8.3764374721795e-08 [GeV]
+Cell[13,40] 1.1999322007341e-05 [GeV]
+Cell[11,21] 0.00028785381166124 [GeV]
+Cell[12,36] 0.0016417136048843 [GeV]
+Cell[13,21] 0.0009253160377602 [GeV]
+Cell[10,16] 7.3088664212264e-06 [GeV]
+Cell[15,8] 0.00069618392893099 [GeV]
+Cell[10,32] 0.00315496991666 [GeV]
+Cell[11,16] 0.0011644624916382 [GeV]
+### Total energy deposition in calorimeter by a source track in 14 cells : 0.99660422654836 (GeV)
Source track ID 4476 (gamma,1.1635719616337[GeV]) at (-189.4230861318,-462.72982877734,253.067363358)
Original primary track ID 31 (unknown,691.32334101424[GeV])
-Cell[11,39] 0.001251714790992 [GeV]
-Cell[9,14] 0.0013277415852116 [GeV]
-Cell[11,36] 0.0010806504610277 [GeV]
-Cell[12,33] 0.0014829461228556 [GeV]
-Cell[11,33] 0.77935595505762 [GeV]
-Cell[11,34] 0.0010199909746936 [GeV]
-Cell[10,33] 0.0036699563016685 [GeV]
-Cell[11,31] 0.0005694554391378 [GeV]
-Cell[11,32] 0.35192662143828 [GeV]
-Cell[11,30] 0.00037485929981837 [GeV]
-Cell[11,0] 0.001652896688147 [GeV]
-Cell[6,46] 0.00088058067165659 [GeV]
-Cell[14,7] 0.003168593922995 [GeV]
-Cell[10,34] 0.00085050764538215 [GeV]
-Cell[6,45] 0.00010722542613116 [GeV]
-Cell[10,14] 0.00054797838538182 [GeV]
-Cell[13,44] 0.0052730280659001 [GeV]
-Cell[10,32] 0.0018617152885013 [GeV]
-Cell[14,6] 0.00051462412499988 [GeV]
-Cell[16,39] 0.0045520921942242 [GeV]
-Cell[11,40] 0.00043734829475519 [GeV]
-Cell[11,35] 0.00019097731504263 [GeV]
-Cell[19,7] 0.0010361670301761 [GeV]
-### Total energy deposition in calorimeter by a source track in 23 cells : 1.1631336265246 (GeV)
+Cell[11,33] 1.0125287228993 [GeV]
+Cell[11,34] 0.0011884545335517 [GeV]
+Cell[10,33] 0.00081142547071852 [GeV]
+Cell[11,31] 0.0018580406177218 [GeV]
+Cell[11,32] 0.14584823451339 [GeV]
+Cell[12,32] 0.00034126546910437 [GeV]
+Cell[8,34] 0.00023247309426621 [GeV]
+### Total energy deposition in calorimeter by a source track in 7 cells : 1.162808616598 (GeV)
Source track ID 3597 (gamma,0.17435926984906[GeV]) at (-435.61886554941,245.43065003672,445.72704051411)
Original primary track ID 41 (unknown,2.6699951779791[GeV])
-Cell[12,40] 0.00051099891 [GeV]
-Cell[16,45] 0.00046701249091095 [GeV]
-Cell[17,29] 0.0053471942115453 [GeV]
-Cell[12,22] 0.00071265962261349 [GeV]
-Cell[12,20] 0.12717365612357 [GeV]
-Cell[12,21] 0.0052242427653029 [GeV]
-Cell[12,19] 0.034923505725113 [GeV]
-### Total energy deposition in calorimeter by a source track in 7 cells : 0.17435926984906 (GeV)
+Cell[12,38] 0.00035699272649777 [GeV]
+Cell[12,21] 0.0011221384140334 [GeV]
+Cell[12,19] 0.015981609715261 [GeV]
+Cell[11,37] 1.175852958113e-09 [GeV]
+Cell[17,33] 0.00018619245362243 [GeV]
+Cell[16,35] 2.6182092173258e-05 [GeV]
+Cell[17,34] 0.0015850229761052 [GeV]
+Cell[12,39] 7.3585204954725e-06 [GeV]
+Cell[7,46] 0.0015103059138701 [GeV]
+Cell[12,37] 0.00024552681772138 [GeV]
+Cell[17,35] 0.00020587654721203 [GeV]
+Cell[12,20] 0.13892682478718 [GeV]
+### Total energy deposition in calorimeter by a source track in 12 cells : 0.16015403214002 (GeV)
Source track ID 3008 (pi+,0.27668881015094[GeV]) at (260.7907102489,426.60075650176,13.714847821283)
Original primary track ID 41 (unknown,2.6699951779791[GeV])
-Cell[10,7] 0.083954138210447 [GeV]
-Cell[9,5] 0.00043660187184286 [GeV]
-Cell[18,35] 0.0015070053415544 [GeV]
-Cell[10,5] 0.0025574434470512 [GeV]
-Cell[10,6] 0.094225005044884 [GeV]
-### Total energy deposition in calorimeter by a source track in 5 cells : 0.18268019391578 (GeV)
+Cell[9,6] 0.0061905568036181 [GeV]
+Cell[10,7] 0.086739379329525 [GeV]
+Cell[10,6] 0.07880919326063 [GeV]
+### Total energy deposition in calorimeter by a source track in 3 cells : 0.17173912939377 (GeV)
Source track ID 3497 (gamma,0.67224858404432[GeV]) at (444.05232144225,-229.82066012817,-518.95900295785)
Original primary track ID 41 (unknown,2.6699951779791[GeV])
-Cell[7,22] 0.00077688511800089 [GeV]
-Cell[7,6] 0.00051099891 [GeV]
-Cell[6,43] 0.0047081659727848 [GeV]
-Cell[7,43] 0.053545037788098 [GeV]
-Cell[7,45] 0.00097819065181886 [GeV]
-Cell[3,22] 0.00046103847012165 [GeV]
-Cell[4,27] 0.00051099891 [GeV]
-Cell[6,44] 0.010376390730765 [GeV]
-Cell[7,44] 0.60038087749273 [GeV]
-### Total energy deposition in calorimeter by a source track in 9 cells : 0.67224858404432 (GeV)
+Cell[8,17] 0.00033694716873371 [GeV]
+Cell[5,43] 0.0024196618892361 [GeV]
+Cell[6,43] 0.0033995294663321 [GeV]
+Cell[9,28] 0.0017923728197404 [GeV]
+Cell[7,43] 0.010734404112105 [GeV]
+Cell[12,33] 0.00010901898280539 [GeV]
+Cell[8,28] 0.00024480693181897 [GeV]
+Cell[7,44] 0.59728295988174 [GeV]
+Cell[8,0] 0.00016736647294409 [GeV]
+Cell[6,45] 0.00036543502122164 [GeV]
+Cell[5,45] 0.00064253803372809 [GeV]
+Cell[6,44] 0.046732247003241 [GeV]
+Cell[7,45] 0.0050078561360914 [GeV]
+### Total energy deposition in calorimeter by a source track in 13 cells : 0.66923514391973 (GeV)
Source track ID 3577 (gamma,0.005669100307009[GeV]) at (-468.93463240088,173.49441067381,-1491.497250632)
Original primary track ID 41 (unknown,2.6699951779791[GeV])
@@ -4447,393 +4254,468 @@ Cell[7,2] 0.0016250428290062 [GeV]
Source track ID 3500 (e+,0.096458270621474[GeV]) at (479.08047428513,-143.11498579371,-1092.6985724784)
Original primary track ID 41 (unknown,2.6699951779791[GeV])
-Cell[4,45] 0.056157525921211 [GeV]
-Cell[4,46] 0.01122089838265 [GeV]
-Cell[4,20] 0.00042844008774263 [GeV]
-Cell[4,47] 0.029162405139871 [GeV]
-### Total energy deposition in calorimeter by a source track in 4 cells : 0.096969269531474 (GeV)
+Cell[1,12] 0.0027209637570608 [GeV]
+Cell[4,46] 0.013704132080055 [GeV]
+Cell[4,45] 0.080544173694358 [GeV]
+### Total energy deposition in calorimeter by a source track in 3 cells : 0.096969269531474 (GeV)
Source track ID 3491 (kaon-,1.1699597333681[GeV]) at (474.33465298713,-158.13486957525,-18.457132511931)
Original primary track ID 41 (unknown,2.6699951779791[GeV])
-Cell[8,8] 4.8380823045591e-09 [GeV]
-Cell[9,8] 0.001900568183784 [GeV]
-Cell[8,7] 4.2678144466208e-06 [GeV]
-Cell[9,34] 1.2468332863591e-07 [GeV]
-Cell[9,24] 1.3333046808839e-09 [GeV]
-Cell[8,5] 0.0003258841479601 [GeV]
-Cell[9,6] 0.00012866664701221 [GeV]
-Cell[9,7] 0.00097104996863106 [GeV]
-Cell[9,33] 6.5959531639237e-08 [GeV]
-Cell[10,45] 0.040943998340156 [GeV]
-Cell[8,17] 0.00046949180050592 [GeV]
-Cell[8,6] 0.00013556878974975 [GeV]
-Cell[11,46] 0.0021253893167691 [GeV]
-Cell[9,46] 0.16368197141747 [GeV]
-Cell[12,38] 1.5945510851452e-05 [GeV]
-Cell[8,44] 0.0011497718307996 [GeV]
-Cell[9,47] 0.0032967393450804 [GeV]
-Cell[10,36] 3.2455254055094e-05 [GeV]
-Cell[13,29] 0.00014942483051163 [GeV]
-Cell[9,38] 1.7446135727141e-05 [GeV]
-Cell[9,39] 0.00047936299879655 [GeV]
-Cell[9,5] 0.0028443061131276 [GeV]
-Cell[10,4] 0.00046253598313001 [GeV]
-Cell[9,4] 0.056579975758736 [GeV]
-Cell[5,15] 8.8293352183655e-06 [GeV]
-Cell[8,16] 0.00095804337994228 [GeV]
-Cell[4,16] 0.00076333740619123 [GeV]
-Cell[11,9] 0.00018803156695117 [GeV]
-Cell[11,8] 0.0016154607196048 [GeV]
-Cell[9,0] 2.2235479491428e-08 [GeV]
-Cell[8,0] 5.5486442655138e-05 [GeV]
-Cell[8,47] 1.0981320097471e-05 [GeV]
-Cell[4,15] 0.0001357419060248 [GeV]
-Cell[6,18] 0.00076353041847653 [GeV]
-Cell[9,40] 0.0027385349742274 [GeV]
-Cell[8,46] 4.1684097988764e-05 [GeV]
-Cell[8,18] 3.7882580234054e-06 [GeV]
-Cell[7,0] 0.00042322491291668 [GeV]
-Cell[8,4] 0.0021309330596304 [GeV]
-Cell[10,9] 7.8338398315282e-05 [GeV]
-Cell[10,8] 0.0050180737873327 [GeV]
-Cell[11,44] 5.5572968449269e-10 [GeV]
-Cell[10,43] 0.0040091936857832 [GeV]
-Cell[9,43] 0.00021802042310935 [GeV]
-Cell[9,44] 0.004190064872712 [GeV]
-Cell[10,46] 0.0080937000328705 [GeV]
-Cell[9,42] 0.0084009730366199 [GeV]
-Cell[9,45] 0.36831549308051 [GeV]
-Cell[8,45] 0.003061797903263 [GeV]
-Cell[10,5] 3.1384211752084e-08 [GeV]
-Cell[10,44] 0.0052790867442653 [GeV]
-Cell[7,17] 0.00016025755417138 [GeV]
-Cell[10,47] 0.0042557216103972 [GeV]
-### Total energy deposition in calorimeter by a source track in 53 cells : 0.69663340010427 (GeV)
+Cell[7,34] 0.0004306631303971 [GeV]
+Cell[8,5] 0.00024538942948493 [GeV]
+Cell[10,45] 0.025792717274781 [GeV]
+Cell[7,25] 0.00083716286037289 [GeV]
+Cell[8,17] 2.4120743069034e-05 [GeV]
+Cell[8,6] 4.565497489466e-07 [GeV]
+Cell[11,46] 0.00036584952902305 [GeV]
+Cell[9,46] 0.09113974929751 [GeV]
+Cell[10,41] 2.0354109292384e-06 [GeV]
+Cell[7,33] 0.0011193912250827 [GeV]
+Cell[9,47] 0.045864962634022 [GeV]
+Cell[7,18] 1.871376298368e-11 [GeV]
+Cell[10,33] 3.6777538480237e-07 [GeV]
+Cell[11,3] 0.00029840743242801 [GeV]
+Cell[13,2] 3.7106757663423e-05 [GeV]
+Cell[13,0] 0.0026505350544758 [GeV]
+Cell[12,4] 1.5765100251883e-05 [GeV]
+Cell[10,30] 0.0038470469871986 [GeV]
+Cell[16,27] 0.00076304287537675 [GeV]
+Cell[10,46] 0.0049713947673789 [GeV]
+Cell[9,44] 0.0028091269849152 [GeV]
+Cell[9,45] 0.66489777309106 [GeV]
+Cell[11,4] 2.6314414412809e-08 [GeV]
+Cell[9,43] 0.00020712412078524 [GeV]
+Cell[9,0] 0.0016575284457139 [GeV]
+Cell[10,47] 9.8390941717753e-05 [GeV]
+Cell[10,0] 0.0021453026817702 [GeV]
+Cell[8,47] 1.0718974351676e-07 [GeV]
+Cell[8,0] 1.6152625903487e-11 [GeV]
+Cell[10,44] 0.0071850294210237 [GeV]
+Cell[8,46] 3.4007136609944e-06 [GeV]
+Cell[12,18] 0.00029337802652844 [GeV]
+Cell[12,17] 0.00070168477757522 [GeV]
+Cell[12,16] 8.5449737129238e-05 [GeV]
+Cell[3,22] 0.00016462744847831 [GeV]
+Cell[9,18] 0.0015204511878085 [GeV]
+Cell[4,24] 2.3470217529962e-05 [GeV]
+Cell[4,25] 0.00061256619889627 [GeV]
+Cell[12,7] 3.2417029200587e-05 [GeV]
+Cell[14,1] 0.00069171958822699 [GeV]
+Cell[13,1] 0.0022335727259728 [GeV]
+Cell[13,3] 0.0006534570698575 [GeV]
+Cell[15,35] 7.9967926896643e-05 [GeV]
+Cell[13,4] 0.00016196567493614 [GeV]
+Cell[12,15] 2.3252687242348e-10 [GeV]
+Cell[10,40] 0.00018828747205812 [GeV]
+Cell[15,25] 3.1537468574243e-05 [GeV]
+Cell[10,3] 0.00017732030386412 [GeV]
+Cell[10,4] 0.0003218058438373 [GeV]
+Cell[13,7] 5.3927043132717e-05 [GeV]
+Cell[18,16] 6.5770541550592e-07 [GeV]
+Cell[13,5] 5.1617334083858e-05 [GeV]
+Cell[16,28] 0.00021964635400775 [GeV]
+Cell[18,17] 4.6121771447361e-07 [GeV]
+Cell[4,14] 0.0051230354669755 [GeV]
+Cell[17,16] 0.00064097593948406 [GeV]
+Cell[17,15] 5.5245699380976e-05 [GeV]
+Cell[18,30] 1.0145075748369e-09 [GeV]
+Cell[16,29] 2.594889869215e-06 [GeV]
+Cell[15,27] 0.0027911122881999 [GeV]
+Cell[19,14] 1.025538706358e-05 [GeV]
+Cell[13,6] 0.00013442186849352 [GeV]
+Cell[10,43] 2.9645842276182e-05 [GeV]
+Cell[18,29] 0.0018628379577699 [GeV]
+Cell[17,29] 8.5953943198547e-08 [GeV]
+Cell[8,18] 0.0041960388878932 [GeV]
+Cell[13,30] 0.00015394011757962 [GeV]
+Cell[19,13] 1.3282001600601e-07 [GeV]
+### Total energy deposition in calorimeter by a source track in 68 cells : 0.88071028749196 (GeV)
Source track ID 3488 (gamma,0.015859560263227[GeV]) at (453.63009428657,-210.28489617078,-430.35205993513)
Original primary track ID 41 (unknown,2.6699951779791[GeV])
-Cell[8,14] 0.00094573791155002 [GeV]
-Cell[7,45] 0.00051099891 [GeV]
-Cell[7,44] 0.013705182788461 [GeV]
-### Total energy deposition in calorimeter by a source track in 3 cells : 0.015161919610011 (GeV)
+Cell[7,44] 0.010925115526831 [GeV]
+Cell[7,45] 0.0049344447363958 [GeV]
+### Total energy deposition in calorimeter by a source track in 2 cells : 0.015859560263227 (GeV)
Source track ID 3489 (gamma,0.75885122891297[GeV]) at (497.51078043287,-49.829944341453,326.48051513117)
Original primary track ID 41 (unknown,2.6699951779791[GeV])
-Cell[11,46] 0.018266019166944 [GeV]
-Cell[13,47] 0.00013854757561096 [GeV]
-Cell[13,0] 9.3471095229585e-05 [GeV]
-Cell[12,47] 0.013746183369142 [GeV]
-Cell[12,0] 0.0054833724960365 [GeV]
-Cell[11,1] 0.0013437761092297 [GeV]
-Cell[11,47] 0.70176652445014 [GeV]
-Cell[11,0] 0.011739389825215 [GeV]
-Cell[11,42] 0.0026948361438953 [GeV]
-Cell[12,46] 0.0023707982280109 [GeV]
-Cell[9,42] 0.0001537604920616 [GeV]
-### Total energy deposition in calorimeter by a source track in 11 cells : 0.75779667895152 (GeV)
+Cell[14,32] 0.00099438218403161 [GeV]
+Cell[11,46] 0.03865462433969 [GeV]
+Cell[13,34] 0.00021361079665111 [GeV]
+Cell[11,45] 0.0021709634393123 [GeV]
+Cell[14,33] 8.2549132074442e-05 [GeV]
+Cell[12,47] 0.018314239988794 [GeV]
+Cell[11,47] 0.69158409834817 [GeV]
+Cell[10,47] 0.00051099891 [GeV]
+Cell[12,45] 0.0016314577568759 [GeV]
+Cell[12,46] 0.00074580374791167 [GeV]
+Cell[13,15] 0.00018990217134389 [GeV]
+Cell[14,21] 0.00093016744559646 [GeV]
+Cell[15,15] 0.00051099891 [GeV]
+Cell[13,6] 0.0001840106573463 [GeV]
+Cell[10,43] 6.4774614474248e-05 [GeV]
+### Total energy deposition in calorimeter by a source track in 15 cells : 0.75678258244227 (GeV)
Source track ID 3394 (mu+,0.2166030967836[GeV]) at (-499.35356409997,-25.416884558514,1056.0488845971)
Original primary track ID 41 (unknown,2.6699951779791[GeV])
-Cell[15,25] 0.0013898312455909 [GeV]
-Cell[15,24] 0.16148735522161 [GeV]
-### Total energy deposition in calorimeter by a source track in 2 cells : 0.1628771864672 (GeV)
+Cell[15,25] 0.00051099891 [GeV]
+Cell[15,24] 0.1590225053219 [GeV]
+### Total energy deposition in calorimeter by a source track in 2 cells : 0.1595335042319 (GeV)
Source track ID 3265 (gamma,0.12620965025075[GeV]) at (-487.28250320456,-112.05249694094,703.88980966996)
Original primary track ID 41 (unknown,2.6699951779791[GeV])
-Cell[13,26] 0.00069679299766775 [GeV]
-Cell[13,25] 0.11552782666102 [GeV]
-Cell[14,25] 0.00065494670193722 [GeV]
-Cell[14,26] 0.0068923118027244 [GeV]
-Cell[10,46] 0.00051099891 [GeV]
-Cell[13,40] 0.00082444508494234 [GeV]
-Cell[17,45] 0.0011023280924598 [GeV]
-### Total energy deposition in calorimeter by a source track in 7 cells : 0.12620965025075 (GeV)
+Cell[13,25] 0.087363484573614 [GeV]
+Cell[14,24] 0.002131026097014 [GeV]
+Cell[14,23] 0.0017046237312169 [GeV]
+Cell[14,25] 0.028822632925341 [GeV]
+Cell[14,26] 0.0061878829235631 [GeV]
+### Total energy deposition in calorimeter by a source track in 5 cells : 0.12620965025075 (GeV)
Source track ID 3266 (gamma,0.088297327870564[GeV]) at (61.272157360791,-496.23152130065,76.525337680638)
Original primary track ID 41 (unknown,2.6699951779791[GeV])
-Cell[10,37] 0.0048350091538317 [GeV]
-Cell[10,36] 0.083462318716733 [GeV]
-### Total energy deposition in calorimeter by a source track in 2 cells : 0.088297327870564 (GeV)
+Cell[10,37] 0.020545787355802 [GeV]
+Cell[10,36] 0.061217493810784 [GeV]
+Cell[10,26] 0.0029076000757527 [GeV]
+Cell[12,18] 0.0008962138174625 [GeV]
+Cell[11,37] 0.00038001689417596 [GeV]
+Cell[15,11] 0.00016503961167307 [GeV]
+### Total energy deposition in calorimeter by a source track in 6 cells : 0.086112151565651 (GeV)
Source track ID 3013 (pi+,0.88674043862895[GeV]) at (5.2820201553373,499.97209948464,751.83797544621)
Original primary track ID 41 (unknown,2.6699951779791[GeV])
-Cell[14,32] 0.00066986977809802 [GeV]
-Cell[14,31] 0.00034022498104014 [GeV]
-Cell[14,29] 1.0492948349565e-05 [GeV]
-Cell[13,12] 0.00074440707523607 [GeV]
-Cell[13,32] 7.0584945513019e-07 [GeV]
-Cell[15,32] 1.8142165557947e-05 [GeV]
-Cell[17,32] 0.00017217645597634 [GeV]
-Cell[15,31] 1.4212303969543e-05 [GeV]
-Cell[16,14] 1.9734280545435e-05 [GeV]
-Cell[15,38] 1.361797330901e-09 [GeV]
-Cell[14,10] 0.0053273955835747 [GeV]
-Cell[14,9] 0.00087600657998132 [GeV]
-Cell[14,43] 0.0015728195754281 [GeV]
-Cell[14,42] 0.0042290587631262 [GeV]
-Cell[16,7] 0.0022444120045299 [GeV]
-Cell[12,6] 0.001125406433462 [GeV]
-Cell[12,7] 1.1865164549363e-07 [GeV]
-Cell[12,8] 1.6574049368501e-09 [GeV]
-Cell[18,10] 8.7806256487966e-11 [GeV]
-Cell[15,13] 0.001868443549457 [GeV]
-Cell[14,12] 0.0005635133542429 [GeV]
-Cell[14,13] 0.00034369141821708 [GeV]
-Cell[13,7] 1.3156209606677e-06 [GeV]
-Cell[13,6] 1.3323438841667e-05 [GeV]
-Cell[15,37] 1.5629294694008e-07 [GeV]
-Cell[17,35] 1.0101073257829e-09 [GeV]
-Cell[15,11] 0.058094170897355 [GeV]
-Cell[15,12] 1.3970605131817e-05 [GeV]
-Cell[13,11] 0.083190416218392 [GeV]
-Cell[16,13] 0.00041090730045221 [GeV]
-Cell[14,11] 0.31996557346981 [GeV]
-Cell[18,9] 0.00027855770444137 [GeV]
-Cell[17,34] 3.4924896624261e-05 [GeV]
-Cell[18,34] 0.00010960018354126 [GeV]
-Cell[17,33] 0.00012474444318411 [GeV]
-Cell[18,32] 7.437175474297e-05 [GeV]
-Cell[18,33] 4.4252224495722e-05 [GeV]
-Cell[15,8] 0.0022639185230906 [GeV]
-Cell[14,8] 8.9864665060304e-06 [GeV]
-Cell[18,7] 0.000107244173342 [GeV]
-Cell[18,8] 0.0023127064636186 [GeV]
-Cell[15,9] 0.0013270808613303 [GeV]
-Cell[17,10] 0.0029051877589714 [GeV]
-Cell[17,9] 0.030549110323951 [GeV]
-Cell[17,8] 0.016316943845548 [GeV]
-Cell[17,6] 0.00011009261176991 [GeV]
-Cell[15,10] 0.035860753082788 [GeV]
-Cell[16,9] 0.00013519745616702 [GeV]
-Cell[16,10] 0.0026304268460935 [GeV]
-Cell[17,7] 0.0035253691401646 [GeV]
-Cell[16,8] 3.1631425372325e-09 [GeV]
-Cell[18,14] 9.3008857220411e-09 [GeV]
-### Total energy deposition in calorimeter by a source track in 52 cells : 0.58055015093729 (GeV)
+Cell[7,9] 3.3241463825107e-08 [GeV]
+Cell[10,29] 3.3717465121299e-06 [GeV]
+Cell[7,34] 3.4633626455616e-10 [GeV]
+Cell[9,25] 6.5593667386565e-10 [GeV]
+Cell[9,26] 3.3916738175321e-06 [GeV]
+Cell[9,24] 1.1810101568699e-08 [GeV]
+Cell[7,26] 9.8364292966835e-08 [GeV]
+Cell[6,39] 0.0002039210008553 [GeV]
+Cell[14,31] 0.0005166708277045 [GeV]
+Cell[14,30] 6.1205473612063e-06 [GeV]
+Cell[14,29] 2.6575406081975e-08 [GeV]
+Cell[7,39] 3.6729034036398e-10 [GeV]
+Cell[10,45] 1.3828830560669e-08 [GeV]
+Cell[7,25] 9.0231104707073e-07 [GeV]
+Cell[6,38] 2.1806451513839e-08 [GeV]
+Cell[6,40] 0.00024504627690737 [GeV]
+Cell[13,47] 0.0030310631483593 [GeV]
+Cell[13,12] 0.0020833933694512 [GeV]
+Cell[8,33] 0.00013580271500609 [GeV]
+Cell[9,47] 0.00051109620544399 [GeV]
+Cell[10,33] 0.00012709732010217 [GeV]
+Cell[18,4] 2.9370645987683e-05 [GeV]
+Cell[13,32] 0.00062767930354009 [GeV]
+Cell[15,32] 5.547910168616e-06 [GeV]
+Cell[15,31] 6.0775806900892e-08 [GeV]
+Cell[13,27] 2.8703480784316e-06 [GeV]
+Cell[13,29] 1.7441701493226e-07 [GeV]
+Cell[13,28] 1.6918180539506e-05 [GeV]
+Cell[12,26] 7.1739479942494e-05 [GeV]
+Cell[13,2] 0.00089494368372504 [GeV]
+Cell[13,0] 0.00032897790641332 [GeV]
+Cell[10,21] 1.0225423960947e-05 [GeV]
+Cell[10,20] 0.00087778362280142 [GeV]
+Cell[11,20] 1.8571245309431e-06 [GeV]
+Cell[12,14] 7.9140008892864e-09 [GeV]
+Cell[13,46] 0.0038771215544657 [GeV]
+Cell[14,10] 0.0036170421569717 [GeV]
+Cell[14,9] 0.00015315028661519 [GeV]
+Cell[15,41] 0.0007442094839729 [GeV]
+Cell[15,40] 6.0596083862038e-05 [GeV]
+Cell[16,5] 0.00069679006285428 [GeV]
+Cell[13,45] 8.7960138986318e-06 [GeV]
+Cell[12,4] 4.398767487146e-08 [GeV]
+Cell[13,25] 0.00012817036375236 [GeV]
+Cell[12,25] 0.00045218524793984 [GeV]
+Cell[13,39] 0.00012892854339304 [GeV]
+Cell[13,38] 6.8355213528775e-05 [GeV]
+Cell[13,37] 0.00058637158540034 [GeV]
+Cell[12,24] 5.4126171281723e-06 [GeV]
+Cell[12,23] 5.7604047469795e-08 [GeV]
+Cell[10,31] 0.00037064681377797 [GeV]
+Cell[11,24] 0.0022230492793225 [GeV]
+Cell[10,46] 1.1674914276227e-08 [GeV]
+Cell[8,32] 0.00016865155844357 [GeV]
+Cell[10,24] 6.3204935144086e-06 [GeV]
+Cell[11,25] 0.00059282146011503 [GeV]
+Cell[10,25] 0.00019935762527598 [GeV]
+Cell[11,26] 0.00011808682516482 [GeV]
+Cell[9,27] 3.931207844289e-06 [GeV]
+Cell[9,31] 0.00028925284940781 [GeV]
+Cell[11,4] 5.2225856634323e-06 [GeV]
+Cell[11,19] 0.005224492561793 [GeV]
+Cell[9,38] 0.00091834503038444 [GeV]
+Cell[9,0] 4.7130044549704e-08 [GeV]
+Cell[15,33] 0.0023079666161753 [GeV]
+Cell[15,34] 0.0024624025737354 [GeV]
+Cell[10,34] 3.2126363880593e-05 [GeV]
+Cell[10,28] 5.3533359110361e-05 [GeV]
+Cell[13,33] 3.475943338708e-05 [GeV]
+Cell[11,37] 2.2547880317802e-05 [GeV]
+Cell[14,11] 0.028547720094635 [GeV]
+Cell[13,11] 0.098893396312305 [GeV]
+Cell[13,18] 0.00026359910738211 [GeV]
+Cell[14,2] 0.002892631916036 [GeV]
+Cell[14,5] 2.4890454969864e-06 [GeV]
+Cell[13,10] 3.3199772633452e-07 [GeV]
+Cell[13,9] 1.5279792074125e-05 [GeV]
+Cell[13,8] 1.3039174428968e-06 [GeV]
+Cell[7,40] 0.0016640826669155 [GeV]
+Cell[9,39] 1.1217872641282e-05 [GeV]
+Cell[8,34] 7.7557504334891e-07 [GeV]
+Cell[10,8] 1.6626028809696e-08 [GeV]
+Cell[12,8] 1.8573453417048e-08 [GeV]
+Cell[14,46] 0.0005719496797102 [GeV]
+Cell[12,44] 7.7165708935354e-06 [GeV]
+Cell[14,1] 7.3496738041285e-06 [GeV]
+Cell[16,34] 1.110765988301e-06 [GeV]
+Cell[14,7] 0.0011748213711536 [GeV]
+Cell[13,14] 4.2652265983634e-06 [GeV]
+Cell[16,36] 2.8460344765335e-08 [GeV]
+Cell[16,33] 3.6885316047119e-05 [GeV]
+Cell[16,35] 2.5837424496217e-05 [GeV]
+Cell[13,1] 0.0014111442314906 [GeV]
+Cell[13,3] 0.0013672440789607 [GeV]
+Cell[16,38] 5.925290286541e-06 [GeV]
+Cell[15,35] 0.0021889101345628 [GeV]
+Cell[10,11] 0.00029272159678134 [GeV]
+Cell[13,4] 0.0022771903935126 [GeV]
+Cell[13,36] 0.0001375674456516 [GeV]
+Cell[17,0] 0.00036855315139543 [GeV]
+Cell[13,24] 0.0017960488549975 [GeV]
+Cell[15,25] 0.0048901970768336 [GeV]
+Cell[15,24] 0.025208103213677 [GeV]
+Cell[9,40] 0.0017018691669925 [GeV]
+Cell[19,30] 1.3312160561327e-05 [GeV]
+Cell[13,7] 3.1375517210108e-08 [GeV]
+Cell[15,23] 0.0014563056380984 [GeV]
+Cell[14,6] 6.234100117581e-06 [GeV]
+Cell[14,24] 0.092293063944139 [GeV]
+Cell[14,23] 0.13256846228824 [GeV]
+Cell[13,5] 0.0014018203785832 [GeV]
+Cell[12,3] 0.00031436991617022 [GeV]
+Cell[12,37] 6.9971917255316e-06 [GeV]
+Cell[14,36] 0.0042461095020468 [GeV]
+Cell[14,19] 1.6139413553447e-06 [GeV]
+Cell[14,12] 0.11083926410978 [GeV]
+Cell[7,41] 0.0005177168545297 [GeV]
+Cell[8,38] 6.9925319462527e-07 [GeV]
+Cell[14,4] 7.5707541257088e-05 [GeV]
+Cell[14,20] 1.7198122804984e-08 [GeV]
+Cell[16,16] 6.4201973145828e-08 [GeV]
+Cell[10,32] 5.4094505496323e-05 [GeV]
+Cell[18,13] 0.00061731219632532 [GeV]
+Cell[14,3] 0.0010331525575259 [GeV]
+Cell[15,27] 7.8603525471408e-06 [GeV]
+Cell[15,11] 7.2085295701982e-05 [GeV]
+Cell[12,13] 7.1255801537973e-07 [GeV]
+Cell[17,24] 7.0165802608244e-06 [GeV]
+Cell[18,24] 0.00082111702230543 [GeV]
+Cell[19,24] 1.1564316082513e-10 [GeV]
+Cell[18,25] 0.0008185184839981 [GeV]
+Cell[19,25] 3.4683740750552e-09 [GeV]
+Cell[17,42] 0.00039720345919463 [GeV]
+Cell[16,10] 1.0473676906031e-06 [GeV]
+Cell[15,10] 0.0015953134550613 [GeV]
+Cell[17,39] 0.00027921750580276 [GeV]
+Cell[13,6] 2.5665532573839e-05 [GeV]
+Cell[18,29] 0.00053079775007984 [GeV]
+Cell[13,30] 7.883505599807e-06 [GeV]
+Cell[14,13] 0.0018418104423246 [GeV]
+Cell[13,13] 0.0076472422616045 [GeV]
+Cell[18,28] 0.0067495199879441 [GeV]
+Cell[19,29] 0.0015114413806945 [GeV]
+Cell[19,44] 6.915582169313e-06 [GeV]
+Cell[11,12] 3.2437324989587e-08 [GeV]
+### Total energy deposition in calorimeter by a source track in 145 cells : 0.57883310102399 (GeV)
Source track ID 3110 (pi-,0.65374688228424[GeV]) at (-91.188055730632,-491.61442054934,1127.1627129622)
Original primary track ID 41 (unknown,2.6699951779791[GeV])
-Cell[17,32] 0.0031738805938774 [GeV]
-Cell[17,31] 0.0022975112700248 [GeV]
-Cell[16,31] 0.0072269207372904 [GeV]
-Cell[16,30] 1.2692235304485e-05 [GeV]
-Cell[16,11] 1.0611812319894e-07 [GeV]
-Cell[16,14] 8.7649095803499e-10 [GeV]
-Cell[16,15] 2.1371627099143e-09 [GeV]
-Cell[15,13] 0.00034421011849293 [GeV]
-Cell[16,37] 0.070065534641146 [GeV]
-Cell[16,38] 0.026622969608809 [GeV]
-Cell[16,36] 0.21338994783151 [GeV]
-Cell[17,37] 0.00052679690472197 [GeV]
-Cell[16,35] 0.10503932826697 [GeV]
-Cell[16,34] 0.01011980142804 [GeV]
-Cell[15,11] 5.6468049297109e-07 [GeV]
-Cell[15,12] 0.00011634735085238 [GeV]
-Cell[16,13] 0.0034576091421975 [GeV]
-Cell[15,33] 0.0008539921732995 [GeV]
-Cell[16,21] 5.5707029916448e-05 [GeV]
-Cell[16,20] 6.0779950217693e-08 [GeV]
-Cell[15,35] 0.013901293323398 [GeV]
-Cell[16,33] 7.5699453449261e-06 [GeV]
-Cell[15,34] 0.10030168983394 [GeV]
-Cell[17,38] 0.0033146290570937 [GeV]
-Cell[17,34] 4.3447092494944e-06 [GeV]
-Cell[17,33] 4.1327439248562e-12 [GeV]
-Cell[17,40] 0.00052222813616522 [GeV]
-Cell[17,39] 0.0030934074879895 [GeV]
-Cell[16,16] 3.4143475346923e-05 [GeV]
-Cell[16,22] 1.2462737795431e-06 [GeV]
-Cell[16,10] 2.1935254289929e-07 [GeV]
-Cell[16,8] 1.8739545310382e-05 [GeV]
-Cell[16,29] 6.8668148014694e-07 [GeV]
-Cell[10,0] 0.00049906762762953 [GeV]
-Cell[14,2] 0.00047161944042259 [GeV]
-Cell[16,12] 0.0029816682688632 [GeV]
-### Total energy deposition in calorimeter by a source track in 36 cells : 0.56845653708737 (GeV)
+Cell[7,29] 1.8692325215852e-07 [GeV]
+Cell[17,32] 3.1105274909464e-05 [GeV]
+Cell[15,39] 0.00019887234516614 [GeV]
+Cell[14,40] 0.00017337519794387 [GeV]
+Cell[15,38] 0.00031734492434953 [GeV]
+Cell[15,40] 1.8388951714996e-05 [GeV]
+Cell[13,43] 0.00088110744535033 [GeV]
+Cell[13,45] 5.2624843988269e-08 [GeV]
+Cell[13,41] 2.167739905417e-06 [GeV]
+Cell[13,42] 0.00025166823558163 [GeV]
+Cell[7,30] 1.28233704786e-05 [GeV]
+Cell[10,47] 2.364662633488e-05 [GeV]
+Cell[15,34] 0.10041822891879 [GeV]
+Cell[10,0] 1.2636234168895e-07 [GeV]
+Cell[18,6] 1.4371977068777e-06 [GeV]
+Cell[15,37] 0.0002725386531572 [GeV]
+Cell[15,46] 0.00094289630266548 [GeV]
+Cell[13,44] 0.048436842401257 [GeV]
+Cell[17,45] 3.1599376088707e-05 [GeV]
+Cell[17,44] 0.0010976655186399 [GeV]
+Cell[15,47] 0.00015022973513055 [GeV]
+Cell[16,34] 0.032216056849468 [GeV]
+Cell[15,36] 0.0058341981139217 [GeV]
+Cell[16,36] 0.01174449552987 [GeV]
+Cell[17,22] 2.043931465596e-05 [GeV]
+Cell[17,33] 0.00085510915539021 [GeV]
+Cell[16,33] 0.0017985209848189 [GeV]
+Cell[16,35] 0.036215685610581 [GeV]
+Cell[15,35] 0.0029191574737321 [GeV]
+Cell[17,36] 1.0584227194386e-06 [GeV]
+Cell[10,4] 0.00079202940984158 [GeV]
+Cell[17,34] 0.016773763983242 [GeV]
+Cell[18,32] 7.1554271926288e-08 [GeV]
+Cell[17,35] 0.003788468350896 [GeV]
+Cell[14,21] 0.0022644400814931 [GeV]
+Cell[18,34] 8.121132850647e-10 [GeV]
+Cell[11,16] 6.6743577027637e-06 [GeV]
+Cell[18,30] 0.074393202289367 [GeV]
+Cell[16,29] 3.8889731513336e-08 [GeV]
+Cell[18,22] 0.0018761928547115 [GeV]
+Cell[12,11] 0.0021073419666861 [GeV]
+Cell[17,29] 7.5682444730774e-08 [GeV]
+Cell[18,23] 0.00049824760540253 [GeV]
+Cell[16,0] 0.0015080087501667 [GeV]
+Cell[11,15] 0.0016836601778699 [GeV]
+Cell[18,31] 0.0016650612292568 [GeV]
+Cell[18,35] 4.24367081132e-06 [GeV]
+### Total energy deposition in calorimeter by a source track in 47 cells : 0.35222854724678 (GeV)
Source track ID 3004 (gamma,0.23818895051853[GeV]) at (-24.111052240173,-499.41831880686,-17.911064377671)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[9,35] 0.22956905147589 [GeV]
-Cell[9,34] 0.0040625699738719 [GeV]
-Cell[10,36] 8.7367320890738e-05 [GeV]
-Cell[9,36] 0.00098193400551209 [GeV]
-Cell[10,35] 0.0034880277423646 [GeV]
-### Total energy deposition in calorimeter by a source track in 5 cells : 0.23818895051853 (GeV)
+Cell[9,35] 0.23162376617795 [GeV]
+Cell[9,34] 0.0010552855688031 [GeV]
+Cell[9,36] 0.0020732584034659 [GeV]
+Cell[10,35] 0.0034366403683084 [GeV]
+### Total energy deposition in calorimeter by a source track in 4 cells : 0.23818895051853 (GeV)
Source track ID 3005 (gamma,0.33413532464401[GeV]) at (245.8933673121,435.35784351717,97.500310757389)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[10,7] 0.022473562707131 [GeV]
-Cell[14,39] 0.001257557853648 [GeV]
-Cell[10,9] 0.002703897738692 [GeV]
-Cell[10,8] 0.30770030634453 [GeV]
-### Total energy deposition in calorimeter by a source track in 4 cells : 0.33413532464401 (GeV)
+Cell[9,8] 0.00075185496013263 [GeV]
+Cell[10,29] 0.00044282013828939 [GeV]
+Cell[10,7] 0.018516739836019 [GeV]
+Cell[12,22] 0.00049519739772686 [GeV]
+Cell[10,8] 0.31382718509055 [GeV]
+### Total energy deposition in calorimeter by a source track in 5 cells : 0.33403379742272 (GeV)
Source track ID 2902 (pi-,1.7949662869216[GeV]) at (442.27385664151,-233.22486087775,-1861.5329479685)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[0,33] 9.1682901838794e-06 [GeV]
-Cell[7,26] 0.00125995082131 [GeV]
-Cell[6,2] 0.00015558110958273 [GeV]
-Cell[1,31] 8.9707031729631e-06 [GeV]
-Cell[7,25] 3.208643306607e-09 [GeV]
-Cell[6,22] 9.7424459527247e-06 [GeV]
-Cell[2,31] 0.00023809544208143 [GeV]
-Cell[2,26] 0.00045902558661465 [GeV]
-Cell[7,43] 3.0019573955542e-07 [GeV]
-Cell[5,21] 0.00012004574866296 [GeV]
-Cell[2,33] 3.368965849404e-09 [GeV]
-Cell[5,27] 2.6295310817659e-09 [GeV]
-Cell[5,11] 1.387350494042e-09 [GeV]
-Cell[5,23] 0.00043227648025982 [GeV]
-Cell[3,26] 5.3005982190371e-06 [GeV]
-Cell[0,42] 0.018712353075364 [GeV]
-Cell[2,20] 0.0027424999418727 [GeV]
-Cell[0,47] 0.0039700135734919 [GeV]
-Cell[5,12] 0.00022265988935749 [GeV]
-Cell[2,34] 0.0013177439732476 [GeV]
-Cell[1,17] 0.00032470317566106 [GeV]
-Cell[0,4] 0.00011310640567172 [GeV]
-Cell[0,5] 0.0011431631820644 [GeV]
-Cell[2,43] 0.00078182132749232 [GeV]
-Cell[1,42] 0.0020512873771311 [GeV]
-Cell[1,35] 0.00032253974247976 [GeV]
-Cell[4,3] 0.00012280305126171 [GeV]
-Cell[2,13] 9.4168050569692e-05 [GeV]
-Cell[1,39] 0.00017685043060112 [GeV]
-Cell[1,40] 0.002448635660966 [GeV]
-Cell[0,6] 5.2739086329893e-05 [GeV]
-Cell[1,41] 1.5479590432506e-06 [GeV]
-Cell[1,16] 6.8077137111686e-06 [GeV]
-Cell[2,2] 7.0255138132325e-07 [GeV]
-Cell[0,30] 0.0021542346520199 [GeV]
-Cell[2,35] 0.0014268300952674 [GeV]
-Cell[1,38] 0.006684454379275 [GeV]
-Cell[0,44] 0.40518289733772 [GeV]
-Cell[2,30] 3.4364246357654e-07 [GeV]
-Cell[2,29] 5.1666199851752e-10 [GeV]
-Cell[2,14] 2.0047161798402e-06 [GeV]
-Cell[3,27] 0.000282011401707 [GeV]
-Cell[2,27] 1.1755910090869e-05 [GeV]
-Cell[2,28] 0.00079069953233178 [GeV]
-Cell[6,11] 1.3699257052394e-05 [GeV]
-Cell[1,36] 0.00024123973785572 [GeV]
-Cell[3,28] 0.0012588964221802 [GeV]
-Cell[0,25] 4.0966390364474e-05 [GeV]
-Cell[0,43] 0.021985624828176 [GeV]
-Cell[3,2] 3.3623383618306e-05 [GeV]
-Cell[7,2] 3.9104561437853e-09 [GeV]
-Cell[1,46] 0.004356836107779 [GeV]
-Cell[0,45] 0.16684103903589 [GeV]
-Cell[1,45] 0.0023088190293834 [GeV]
-Cell[0,46] 0.00026088862762549 [GeV]
-Cell[3,3] 6.127965629048e-05 [GeV]
-Cell[0,15] 1.1006441374775e-05 [GeV]
-Cell[0,0] 1.1148007364682e-05 [GeV]
-Cell[2,42] 3.1843028523326e-08 [GeV]
-Cell[1,5] 0.00069968960921326 [GeV]
-Cell[1,32] 0.00064133757889056 [GeV]
-Cell[4,28] 5.3420662879944e-09 [GeV]
-Cell[4,4] 7.920238707004e-05 [GeV]
-Cell[0,40] 0.0099205042195342 [GeV]
-Cell[1,33] 7.6603930665442e-09 [GeV]
-Cell[5,22] 0.0001879536608277 [GeV]
-Cell[0,39] 0.01780271357834 [GeV]
-Cell[0,7] 9.6760649947782e-06 [GeV]
-Cell[2,46] 1.2919190339744e-10 [GeV]
-Cell[6,13] 3.4330729977228e-06 [GeV]
-Cell[7,44] 1.4016404747963e-10 [GeV]
-Cell[1,37] 0.0011648051827854 [GeV]
-Cell[0,36] 0.0009916113189953 [GeV]
-Cell[0,37] 0.0010592505553576 [GeV]
-Cell[3,5] 0.0019528378305461 [GeV]
-Cell[6,12] 2.2295429638461e-05 [GeV]
-Cell[0,38] 0.016429016987048 [GeV]
-Cell[4,5] 1.2768508668159e-09 [GeV]
-Cell[1,30] 0.00012664680756598 [GeV]
-Cell[2,45] 1.3920647916166e-08 [GeV]
-Cell[0,41] 0.057131499381458 [GeV]
-Cell[1,4] 8.6020433809608e-06 [GeV]
-Cell[1,44] 0.0014043344853662 [GeV]
-Cell[1,43] 0.016031819527533 [GeV]
-Cell[2,3] 3.8082918035798e-07 [GeV]
-Cell[3,4] 6.7729570218944e-10 [GeV]
-Cell[0,32] 1.9715995233014e-05 [GeV]
-Cell[0,35] 6.797873735195e-06 [GeV]
-### Total energy deposition in calorimeter by a source track in 88 cells : 0.77695910261242 (GeV)
+Cell[7,22] 2.554195157245e-08 [GeV]
+Cell[7,20] 4.5391030607789e-07 [GeV]
+Cell[2,32] 0.17750199782385 [GeV]
+Cell[3,34] 0.0026244073601771 [GeV]
+Cell[1,31] 2.7776221780755e-05 [GeV]
+Cell[2,31] 0.00024587582734694 [GeV]
+Cell[2,33] 0.01259202447248 [GeV]
+Cell[0,44] 0.13550404820542 [GeV]
+Cell[2,30] 0.00049768995611919 [GeV]
+Cell[1,30] 9.1968104243279e-12 [GeV]
+Cell[2,29] 0.00011736897253104 [GeV]
+Cell[1,29] 1.8512639217079e-05 [GeV]
+Cell[0,45] 0.0022793349407251 [GeV]
+Cell[0,43] 0.00082353517424226 [GeV]
+Cell[1,28] 0.0035729710751175 [GeV]
+Cell[1,32] 0.00094869001856716 [GeV]
+Cell[3,30] 0.00020568056908291 [GeV]
+Cell[3,31] 5.3678303875131e-06 [GeV]
+Cell[2,34] 0.0024127080196222 [GeV]
+Cell[2,35] 2.4470738412674e-07 [GeV]
+Cell[1,3] 0.0013107661265614 [GeV]
+Cell[1,4] 1.6509949041165e-05 [GeV]
+Cell[5,36] 3.4586201075285e-05 [GeV]
+Cell[1,9] 5.3928611014271e-05 [GeV]
+Cell[5,37] 1.1318508768454e-07 [GeV]
+Cell[7,21] 1.4313685028355e-08 [GeV]
+Cell[3,32] 0.00023944871905019 [GeV]
+Cell[2,7] 1.2218430056237e-06 [GeV]
+Cell[7,19] 0.00089897470515314 [GeV]
+Cell[3,33] 0.0037085536140764 [GeV]
+Cell[0,4] 0.00093654594738155 [GeV]
+### Total energy deposition in calorimeter by a source track in 31 cells : 0.34657937649063 (GeV)
Source track ID 2570 (gamma,0.16498092085606[GeV]) at (-167.27757312954,471.18808720923,-1116.9834687545)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[4,12] 0.00051099891 [GeV]
-Cell[5,36] 0.00032995270794117 [GeV]
-Cell[5,9] 0.00070462409341325 [GeV]
-Cell[0,29] 0.0026408001399928 [GeV]
-Cell[4,13] 0.0018883556842498 [GeV]
-Cell[4,14] 0.13995241335405 [GeV]
-Cell[3,14] 0.018953775966416 [GeV]
-### Total energy deposition in calorimeter by a source track in 7 cells : 0.16498092085606 (GeV)
+Cell[6,35] 0.00029062269080695 [GeV]
+Cell[4,24] 0.00022037621919305 [GeV]
+Cell[3,4] 0.00055713929228867 [GeV]
+Cell[5,36] 0.00090065991360388 [GeV]
+Cell[0,42] 0.00064782363136611 [GeV]
+Cell[3,13] 0.00089630557492446 [GeV]
+Cell[4,14] 0.15768562761649 [GeV]
+Cell[3,14] 0.0014859167379193 [GeV]
+Cell[1,43] 0.0016765102020395 [GeV]
+### Total energy deposition in calorimeter by a source track in 9 cells : 0.16436098187863 (GeV)
Source track ID 2344 (gamma,0.77353931528222[GeV]) at (193.22389487546,-461.15564232606,-1884.3170395191)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[5,17] 0.0028249818976563 [GeV]
-Cell[1,38] 0.00010020482248701 [GeV]
-Cell[3,24] 0.00058815889157662 [GeV]
-Cell[0,39] 0.48336859989165 [GeV]
-Cell[0,38] 0.25792835346186 [GeV]
-### Total energy deposition in calorimeter by a source track in 5 cells : 0.74481029896523 (GeV)
+Cell[0,33] 0.0019353526865835 [GeV]
+Cell[8,29] 0.00082380379544032 [GeV]
+Cell[1,0] 0.0044096311815383 [GeV]
+Cell[0,16] 0.00052089107984502 [GeV]
+Cell[0,39] 0.61402069647889 [GeV]
+Cell[0,2] 0.0010312509412619 [GeV]
+Cell[0,3] 0.0039931694695421 [GeV]
+Cell[0,12] 0.00054990598017915 [GeV]
+Cell[4,24] 0.0015824683247933 [GeV]
+Cell[3,45] 0.00051099891 [GeV]
+Cell[2,20] 0.00086538387334862 [GeV]
+Cell[0,1] 0.0011566462974067 [GeV]
+Cell[0,38] 0.11458687900206 [GeV]
+### Total energy deposition in calorimeter by a source track in 13 cells : 0.74598707802089 (GeV)
Source track ID 2300 (pi+,0.23578794135211[GeV]) at (44.871605594131,497.98246857837,-1627.7498636735)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[1,6] 2.9325936746318e-05 [GeV]
-Cell[18,2] 0.017176294524705 [GeV]
-Cell[1,23] 0.0033504534815014 [GeV]
-Cell[1,10] 0.0012542398517885 [GeV]
-Cell[1,11] 0.14880714770527 [GeV]
-Cell[4,23] 3.0516181141138e-08 [GeV]
-Cell[1,46] 5.1214506063843e-05 [GeV]
-Cell[1,45] 3.5742231295444e-05 [GeV]
-Cell[0,36] 8.6260041445257e-05 [GeV]
-Cell[0,37] 0.0031704122532889 [GeV]
-Cell[0,38] 0.0013983241683648 [GeV]
-### Total energy deposition in calorimeter by a source track in 11 cells : 0.17535944521665 (GeV)
+Cell[1,12] 0.00056781432441114 [GeV]
+Cell[1,11] 0.14236422861873 [GeV]
+Cell[1,10] 0.00088078267786642 [GeV]
+Cell[2,19] 0.00098512061487203 [GeV]
+Cell[5,1] 0.00040214100558303 [GeV]
+### Total energy deposition in calorimeter by a source track in 5 cells : 0.14520008724147 (GeV)
Source track ID 2297 (gamma,0.59980090891317[GeV]) at (255.7012554094,-429.67065059422,-1133.3038314724)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[5,43] 0.00051099891 [GeV]
-Cell[3,40] 0.0099034550854873 [GeV]
+Cell[3,40] 0.014256771528046 [GeV]
+Cell[6,9] 0.0019724322688397 [GeV]
+Cell[6,10] 0.0055111203669692 [GeV]
+Cell[4,12] 0.00051099891 [GeV]
+Cell[12,21] 0.00040973480934745 [GeV]
+Cell[6,32] 0.0022388531830499 [GeV]
+Cell[2,2] 0.00061888400132069 [GeV]
+Cell[1,17] 0.00022851498170745 [GeV]
+Cell[4,40] 0.47504706292804 [GeV]
+Cell[3,31] 0.0010326277255358 [GeV]
+Cell[3,28] 0.00042917901551691 [GeV]
+Cell[3,39] 0.020157666828171 [GeV]
+Cell[4,39] 0.071668806222741 [GeV]
+Cell[7,1] 0.00066221310982264 [GeV]
+Cell[3,32] 0.00068841666501706 [GeV]
+Cell[2,6] 0.00051099891 [GeV]
Cell[5,28] 0.00051099891 [GeV]
-Cell[4,45] 0.0013061253223407 [GeV]
-Cell[7,30] 0.00051099891 [GeV]
-Cell[3,39] 0.0024776525989197 [GeV]
-Cell[2,21] 0.0013056912470693 [GeV]
-Cell[4,20] 0.00084497515163441 [GeV]
-Cell[4,19] 0.00052207481477978 [GeV]
-Cell[4,41] 0.00025240473888796 [GeV]
-Cell[4,36] 0.0022021429928217 [GeV]
-Cell[5,25] 0.00059364010164064 [GeV]
-Cell[4,39] 0.065489064685645 [GeV]
-Cell[4,40] 0.5080066376591 [GeV]
-Cell[0,14] 0.00051099891 [GeV]
-Cell[3,41] 0.0013508610284381 [GeV]
-Cell[2,45] 0.00038448408580846 [GeV]
-### Total energy deposition in calorimeter by a source track in 17 cells : 0.59668320515258 (GeV)
+### Total energy deposition in calorimeter by a source track in 17 cells : 0.59645528036413 (GeV)
Source track ID 2298 (gamma,0.053266099197347[GeV]) at (183.99448809528,464.91507649307,-1027.4558168212)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[5,0] 0.00083148888343939 [GeV]
-Cell[4,9] 0.038326257137675 [GeV]
-Cell[3,19] 0.00038254386687455 [GeV]
-Cell[4,8] 0.011881006063787 [GeV]
-Cell[3,2] 0.0018448032455708 [GeV]
-### Total energy deposition in calorimeter by a source track in 5 cells : 0.053266099197347 (GeV)
+Cell[7,32] 0.00051099891 [GeV]
+Cell[2,35] 0.00028226427995197 [GeV]
+Cell[4,8] 0.0069599731445776 [GeV]
+Cell[4,9] 0.043324088268328 [GeV]
+### Total energy deposition in calorimeter by a source track in 4 cells : 0.051077324602858 (GeV)
Source track ID 2295 (gamma,0.39597382458922[GeV]) at (-372.59429994541,-333.42688501108,-1802.3851810765)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[0,28] 0.00051099891 [GeV]
-Cell[1,29] 0.0016898799908526 [GeV]
-Cell[0,30] 0.0040083879643695 [GeV]
-Cell[0,29] 0.37593934355574 [GeV]
-Cell[2,47] 0.00083272389974458 [GeV]
-Cell[0,13] 0.00037528461247403 [GeV]
-### Total energy deposition in calorimeter by a source track in 6 cells : 0.38335661893318 (GeV)
+Cell[9,10] 0.0014626104158588 [GeV]
+Cell[0,28] 0.0010907983640646 [GeV]
+Cell[10,2] 0.00013113444101462 [GeV]
+Cell[0,41] 0.0018011143277394 [GeV]
+Cell[1,29] 0.0019240894877089 [GeV]
+Cell[0,29] 0.3359346887943 [GeV]
+Cell[2,12] 0.0011536764723236 [GeV]
+Cell[1,3] 0.00088441569062604 [GeV]
+Cell[3,45] 0.0011580116619359 [GeV]
+Cell[5,14] 0.00071537279206215 [GeV]
+Cell[0,30] 0.0028600250173616 [GeV]
+Cell[0,4] 0.00041153458623666 [GeV]
+### Total energy deposition in calorimeter by a source track in 12 cells : 0.34952747205124 (GeV)
Source track ID 2296 (gamma,0.02130681471934[GeV]) at (476.42903591136,151.70818613567,-84.41755272788)
Original primary track ID 43 (unknown,52.984237098069[GeV])
@@ -4842,54 +4724,42 @@ Cell[9,2] 0.02130681471934 [GeV]
Source track ID 2294 (gamma,0.19239638056034[GeV]) at (-414.65190526731,279.39899330204,-1130.207365532)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[6,2] 0.0014692728068634 [GeV]
-Cell[5,36] 0.00034870414378003 [GeV]
-Cell[4,20] 0.0010650911958234 [GeV]
-Cell[4,19] 0.17516847659284 [GeV]
-Cell[3,19] 0.0038891918781983 [GeV]
-Cell[2,25] 0.0004914448104657 [GeV]
-Cell[2,1] 0.00086863157130322 [GeV]
-Cell[3,23] 0.00051099891 [GeV]
-Cell[4,27] 0.0029341180003842 [GeV]
-Cell[1,30] 0.0012197976165593 [GeV]
-### Total energy deposition in calorimeter by a source track in 10 cells : 0.18796572752622 (GeV)
+Cell[8,41] 0.0017405593290757 [GeV]
+Cell[11,0] 0.00014658566001339 [GeV]
+Cell[4,18] 0.0014753342815396 [GeV]
+Cell[4,19] 0.18340028157801 [GeV]
+Cell[3,19] 0.0023207969698546 [GeV]
+Cell[5,1] 0.00033010872047381 [GeV]
+Cell[5,42] 0.0012508404663748 [GeV]
+Cell[4,7] 0.00051099891 [GeV]
+### Total energy deposition in calorimeter by a source track in 8 cells : 0.19117550591534 (GeV)
Source track ID 2227 (gamma,0.2516262100988[GeV]) at (499.02634647961,-31.188227253382,957.00765610873)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[14,34] 0.00051099891 [GeV]
-Cell[13,28] 0.00021036089543924 [GeV]
-Cell[15,0] 0.00093034524385522 [GeV]
-Cell[15,47] 0.028587654340992 [GeV]
-Cell[14,47] 0.21838984136086 [GeV]
-Cell[14,46] 0.00071994906943069 [GeV]
-Cell[18,32] 0.0014203752787762 [GeV]
-Cell[14,23] 0.00034568608944133 [GeV]
-Cell[17,21] 0.00051099891 [GeV]
-### Total energy deposition in calorimeter by a source track in 9 cells : 0.2516262100988 (GeV)
+Cell[14,46] 0.00093727181102506 [GeV]
+Cell[15,46] 0.0014840842429891 [GeV]
+Cell[15,47] 0.036056844677904 [GeV]
+Cell[14,47] 0.21314800936688 [GeV]
+### Total energy deposition in calorimeter by a source track in 4 cells : 0.2516262100988 (GeV)
Source track ID 1958 (gamma,0.23940053141976[GeV]) at (-378.30991634274,-326.92752590864,1067.985606486)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[15,30] 0.0035395468518193 [GeV]
-Cell[16,30] 0.0008821043407462 [GeV]
-Cell[18,45] 0.00098833096675504 [GeV]
-Cell[15,29] 0.21756625447818 [GeV]
-Cell[15,28] 0.007265000717494 [GeV]
-Cell[16,27] 0.00072963585811698 [GeV]
-Cell[16,28] 0.0010038379783894 [GeV]
-Cell[13,7] 0.00074151533583423 [GeV]
-Cell[14,19] 0.00074891318135557 [GeV]
-Cell[8,45] 0.00046314785005111 [GeV]
-Cell[16,46] 0.00040659825607365 [GeV]
-Cell[18,44] 9.2805273342671e-05 [GeV]
-Cell[17,7] 0.0014956055308288 [GeV]
-Cell[16,29] 0.0017987774728567 [GeV]
-Cell[18,47] 0.00031848488231802 [GeV]
-### Total energy deposition in calorimeter by a source track in 15 cells : 0.23804055897416 (GeV)
+Cell[15,31] 0.00090839494287201 [GeV]
+Cell[15,30] 0.0040603082222148 [GeV]
+Cell[13,46] 0.0014523451674667 [GeV]
+Cell[16,4] 0.00042176774747437 [GeV]
+Cell[15,47] 0.00051099891 [GeV]
+Cell[11,41] 0.0041783998485383 [GeV]
+Cell[15,28] 0.0047865168626027 [GeV]
+Cell[14,21] 0.00039442110419718 [GeV]
+Cell[15,29] 0.21483697392582 [GeV]
+### Total energy deposition in calorimeter by a source track in 9 cells : 0.23155012673118 (GeV)
Source track ID 1690 (gamma,0.011910809209202[GeV]) at (-470.44888575627,169.3453450517,170.47992104401)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[10,21] 0.011910809209202 [GeV]
-### Total energy deposition in calorimeter by a source track in 1 cells : 0.011910809209202 (GeV)
+Cell[10,21] 0.011399810299202 [GeV]
+Cell[11,12] 0.00022279145612553 [GeV]
+### Total energy deposition in calorimeter by a source track in 2 cells : 0.011622601755328 (GeV)
Source track ID 1693 (gamma,0.0009740116930014[GeV]) at (-480.97328025322,136.61882623731,173.60926185604)
Original primary track ID 43 (unknown,52.984237098069[GeV])
@@ -4903,34 +4773,30 @@ Cell[10,22] 0.00031449699970409 [GeV]
Source track ID 1697 (gamma,0.0015038810299141[GeV]) at (-489.25733535018,103.08860172705,177.39288943296)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[10,22] 7.5116333985692e-05 [GeV]
-Cell[11,22] 0.0014287646959284 [GeV]
-### Total energy deposition in calorimeter by a source track in 2 cells : 0.0015038810299141 (GeV)
+Cell[10,22] 0.0015038810299141 [GeV]
+### Total energy deposition in calorimeter by a source track in 1 cells : 0.0015038810299141 (GeV)
Source track ID 1699 (gamma,0.00075948764741978[GeV]) at (-493.14551013617,82.507610755207,180.49131295667)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[10,23] 0.00065269568099332 [GeV]
-Cell[10,22] 0.00010679196642646 [GeV]
+Cell[10,23] 0.00062405209189288 [GeV]
+Cell[10,22] 0.00013543555552691 [GeV]
### Total energy deposition in calorimeter by a source track in 2 cells : 0.00075948764741978 (GeV)
Source track ID 1639 (e-,0.25963931165835[GeV]) at (-494.27635248025,75.437970404941,182.25960242433)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[10,23] 0.18179906318508 [GeV]
-Cell[11,23] 0.013653272708655 [GeV]
-Cell[13,7] 0.0002789823856222 [GeV]
-Cell[10,22] 0.058334242455362 [GeV]
-Cell[10,17] 0.0010084690969101 [GeV]
-Cell[14,3] 0.00049040461015493 [GeV]
-Cell[8,1] 0.00058713136454322 [GeV]
-Cell[11,16] 0.00090427495818161 [GeV]
-Cell[10,16] 0.00049335781425387 [GeV]
-### Total energy deposition in calorimeter by a source track in 9 cells : 0.25754919857876 (GeV)
+Cell[10,1] 0.00030294177011714 [GeV]
+Cell[10,23] 0.11249963466617 [GeV]
+Cell[11,22] 0.0049198874853098 [GeV]
+Cell[11,23] 0.028954093242405 [GeV]
+Cell[11,24] 0.0071846905618172 [GeV]
+Cell[10,22] 0.10029985373453 [GeV]
+Cell[11,28] 0.0043926719489355 [GeV]
+### Total energy deposition in calorimeter by a source track in 7 cells : 0.25855377340929 (GeV)
Source track ID 1643 (gamma,0.0078735650576726[GeV]) at (-357.48686609312,349.57565786382,175.76579720203)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[10,18] 0.0047344349628443 [GeV]
-Cell[10,17] 0.0027855718216089 [GeV]
-### Total energy deposition in calorimeter by a source track in 2 cells : 0.0075200067844532 (GeV)
+Cell[10,17] 0.0078735650576726 [GeV]
+### Total energy deposition in calorimeter by a source track in 1 cells : 0.0078735650576726 (GeV)
Source track ID 1645 (gamma,0.0074157376862847[GeV]) at (168.66145041207,470.69450298989,296.11787799225)
Original primary track ID 43 (unknown,52.984237098069[GeV])
@@ -4944,18 +4810,20 @@ Cell[10,20] 0.00013022949306547 [GeV]
Source track ID 1649 (gamma,0.05311276833805[GeV]) at (171.60982426717,469.62758459762,306.46688140965)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[15,42] 0.0034318550629939 [GeV]
-Cell[14,42] 0.0027110809655531 [GeV]
-Cell[11,9] 0.027975070025541 [GeV]
-Cell[11,8] 0.017501253648826 [GeV]
-Cell[11,7] 0.0014935086351359 [GeV]
-### Total energy deposition in calorimeter by a source track in 5 cells : 0.05311276833805 (GeV)
+Cell[14,30] 0.00051099891 [GeV]
+Cell[11,46] 0.0011920044943439 [GeV]
+Cell[11,47] 0.0001191063393298 [GeV]
+Cell[11,9] 0.044475581939584 [GeV]
+Cell[11,42] 0.0013165626152055 [GeV]
+Cell[14,15] 0.0036158725974739 [GeV]
+Cell[5,42] 0.00029037896768031 [GeV]
+Cell[10,32] 0.00048434775849295 [GeV]
+### Total energy deposition in calorimeter by a source track in 8 cells : 0.05200485362211 (GeV)
Source track ID 1650 (gamma,0.0047084353084656[GeV]) at (215.24441690138,451.29795146088,288.30782029186)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[15,0] 0.00046066058168243 [GeV]
-Cell[11,8] 0.0042477747267832 [GeV]
-### Total energy deposition in calorimeter by a source track in 2 cells : 0.0047084353084656 (GeV)
+Cell[11,8] 0.0047084353084656 [GeV]
+### Total energy deposition in calorimeter by a source track in 1 cells : 0.0047084353084656 (GeV)
Source track ID 1658 (gamma,0.00016088457713853[GeV]) at (-467.99139050913,-176.0228917196,305.93890994156)
Original primary track ID 43 (unknown,52.984237098069[GeV])
@@ -4964,12 +4832,8 @@ Cell[11,26] 0.00016088457713853 [GeV]
Source track ID 1663 (gamma,0.01246525381081[GeV]) at (152.08749601333,-476.30808680558,657.92744847343)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[13,47] 0.00019044287227542 [GeV]
-Cell[14,7] 0.00032055603772458 [GeV]
-Cell[13,38] 0.0067482947646019 [GeV]
-Cell[13,40] 0.0015333747964691 [GeV]
-Cell[17,3] 0.0036725853397393 [GeV]
-### Total energy deposition in calorimeter by a source track in 5 cells : 0.01246525381081 (GeV)
+Cell[13,38] 0.01246525381081 [GeV]
+### Total energy deposition in calorimeter by a source track in 1 cells : 0.01246525381081 (GeV)
Source track ID 1665 (gamma,9.3165890737556e-05[GeV]) at (-277.40887053029,415.98595956006,-10.635672466692)
Original primary track ID 43 (unknown,52.984237098069[GeV])
@@ -4988,21 +4852,34 @@ Cell[14,6] 0.00038265994325097 [GeV]
Source track ID 1638 (gamma,0.17556583448629[GeV]) at (-370.26450018587,336.01220201372,-37.72830293684)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[7,12] 0.0055350118731339 [GeV]
-Cell[9,18] 0.15486925648203 [GeV]
-Cell[9,17] 0.010855914658092 [GeV]
-Cell[9,16] 0.0043056514730339 [GeV]
-### Total energy deposition in calorimeter by a source track in 4 cells : 0.17556583448629 (GeV)
+Cell[13,39] 0.00034240971529921 [GeV]
+Cell[9,19] 0.0090190220717814 [GeV]
+Cell[2,30] 0.0014724860988056 [GeV]
+Cell[9,17] 0.00039557702460552 [GeV]
+Cell[9,18] 0.15656684282542 [GeV]
+Cell[11,5] 0.00073569325306372 [GeV]
+Cell[8,23] 0.0058012579929601 [GeV]
+Cell[10,18] 0.00051099891 [GeV]
+### Total energy deposition in calorimeter by a source track in 8 cells : 0.17484428789194 (GeV)
Source track ID 1636 (gamma,0.41324573943274[GeV]) at (303.44001238969,-397.39672731534,976.47730315274)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[15,38] 0.0011985194505586 [GeV]
-Cell[15,41] 0.2761818053649 [GeV]
-Cell[15,40] 0.13163471616485 [GeV]
-Cell[15,37] 0.0012787690308057 [GeV]
-Cell[16,40] 0.0004000130397214 [GeV]
-Cell[16,41] 0.002551916381909 [GeV]
-### Total energy deposition in calorimeter by a source track in 6 cells : 0.41324573943274 (GeV)
+Cell[15,31] 0.0036928809385878 [GeV]
+Cell[15,39] 0.0024425626274235 [GeV]
+Cell[14,40] 0.17819720360774 [GeV]
+Cell[14,33] 0.00051099891 [GeV]
+Cell[15,41] 0.061581286982831 [GeV]
+Cell[15,40] 0.095775509793731 [GeV]
+Cell[14,41] 0.060223262105619 [GeV]
+Cell[15,45] 0.00058152003804045 [GeV]
+Cell[13,14] 0.0012820661299234 [GeV]
+Cell[16,21] 0.00043902825200131 [GeV]
+Cell[14,21] 0.00044947624668892 [GeV]
+Cell[11,16] 0.0023290439117365 [GeV]
+Cell[15,10] 0.0013491791335658 [GeV]
+Cell[16,40] 0.0012547972074621 [GeV]
+Cell[14,13] 0.0031356453685559 [GeV]
+### Total energy deposition in calorimeter by a source track in 15 cells : 0.41324446125391 (GeV)
Source track ID 1617 (gamma,0.0079279601111882[GeV]) at (258.66422019066,-427.89346944439,147.86953715899)
Original primary track ID 43 (unknown,52.984237098069[GeV])
@@ -5011,10 +4888,11 @@ Cell[10,40] 0.0079279601111882 [GeV]
Source track ID 1618 (neutron,0.94260158639944[GeV]) at (-441.81257789267,234.09751390357,-175.80223621233)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[9,20] 6.9581233699409e-06 [GeV]
-Cell[10,21] 5.5738985338394e-09 [GeV]
-Cell[9,19] 0.0030292626797614 [GeV]
-### Total energy deposition in calorimeter by a source track in 3 cells : 0.0030362263770298 (GeV)
+Cell[9,20] 0.0024165840080421 [GeV]
+Cell[11,31] 1.1222833447391e-05 [GeV]
+Cell[11,30] 0.00046860883271677 [GeV]
+Cell[11,29] 0.00010808964777607 [GeV]
+### Total energy deposition in calorimeter by a source track in 4 cells : 0.0030045053219823 (GeV)
Source track ID 1619 (gamma,0.0016994238009145[GeV]) at (-414.02608882013,-280.32552109343,-285.21664201049)
Original primary track ID 43 (unknown,52.984237098069[GeV])
@@ -5023,182 +4901,135 @@ Cell[8,28] 0.0016994238009145 [GeV]
Source track ID 1599 (pi+,1.0810148350776[GeV]) at (389.53854107338,-313.46407293088,505.74529485875)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[11,39] 7.0279055216815e-06 [GeV]
-Cell[9,35] 1.7276060185395e-05 [GeV]
-Cell[11,36] 0.00091425289095741 [GeV]
-Cell[8,44] 5.2008484271937e-07 [GeV]
-Cell[10,37] 0.0023287174009162 [GeV]
-Cell[10,36] 0.005741163707702 [GeV]
-Cell[16,11] 0.0010254201664228 [GeV]
-Cell[13,28] 3.3181330684329e-07 [GeV]
-Cell[14,43] 7.0627034408517e-06 [GeV]
-Cell[14,42] 0.0023858470074606 [GeV]
-Cell[13,43] 0.0075467327005485 [GeV]
-Cell[12,7] 0.00069311846091199 [GeV]
-Cell[13,42] 0.0071329773449387 [GeV]
-Cell[14,27] 2.5923684006557e-08 [GeV]
-Cell[14,28] 1.0190792650064e-06 [GeV]
-Cell[9,36] 0.0010519646944822 [GeV]
-Cell[9,4] 6.0656835557893e-08 [GeV]
-Cell[13,7] 0.067736062657304 [GeV]
-Cell[17,14] 2.7336674975231e-08 [GeV]
-Cell[11,42] 0.001346602677706 [GeV]
-Cell[12,42] 0.25871853551612 [GeV]
-Cell[10,14] 2.0192822557874e-07 [GeV]
-Cell[10,12] 6.9090528882043e-08 [GeV]
-Cell[11,37] 0.004333328010719 [GeV]
-Cell[14,22] 2.4179029132938e-05 [GeV]
-Cell[11,12] 0.00061954198966987 [GeV]
-Cell[11,13] 0.00096667263231404 [GeV]
-Cell[11,14] 7.6264882518444e-06 [GeV]
-Cell[12,44] 0.0010390519626536 [GeV]
-Cell[12,43] 0.23744068780077 [GeV]
-Cell[11,43] 0.0024945724823789 [GeV]
-Cell[12,41] 0.078445059959309 [GeV]
-Cell[17,11] 2.0250100862995e-07 [GeV]
-Cell[13,41] 0.00080901604117582 [GeV]
-Cell[12,40] 0.06896518328361 [GeV]
-Cell[11,41] 0.0041682331188237 [GeV]
-Cell[10,38] 1.2435388634913e-07 [GeV]
-Cell[11,38] 0.00016082178968645 [GeV]
-Cell[9,44] 2.2100239068095e-05 [GeV]
-Cell[11,40] 4.2025886292549e-06 [GeV]
-Cell[14,41] 1.0194489732385e-09 [GeV]
-Cell[14,21] 0.0030784052971816 [GeV]
-Cell[11,35] 0.0037725894995925 [GeV]
-Cell[17,10] 1.8420934236019e-05 [GeV]
-Cell[10,13] 2.4544437218651e-05 [GeV]
-Cell[10,35] 0.0030413521239265 [GeV]
-### Total energy deposition in calorimeter by a source track in 46 cells : 0.76609093539068 (GeV)
+Cell[14,42] 0.002153733462476 [GeV]
+Cell[13,43] 0.0062576928954767 [GeV]
+Cell[15,7] 2.2716273861079e-08 [GeV]
+Cell[13,41] 0.03771662277424 [GeV]
+Cell[13,42] 0.83441327988057 [GeV]
+Cell[13,40] 1.3545913247981e-08 [GeV]
+Cell[14,0] 0.0016431237446245 [GeV]
+Cell[12,43] 5.6106978400976e-06 [GeV]
+Cell[12,42] 0.1362113753079 [GeV]
+Cell[12,41] 5.2325319757074e-09 [GeV]
+Cell[15,8] 0.00017121916586837 [GeV]
+Cell[14,4] 5.855656490894e-06 [GeV]
+Cell[16,8] 0.0008061905960277 [GeV]
+Cell[15,9] 0.0011344623217169 [GeV]
+### Total energy deposition in calorimeter by a source track in 14 cells : 1.0205192079979 (GeV)
Source track ID 1596 (gamma,0.028595474656773[GeV]) at (328.18598173652,377.21871824134,-300.64103558541)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[8,6] 0.028241329357275 [GeV]
-Cell[9,3] 0.00013593714997827 [GeV]
-### Total energy deposition in calorimeter by a source track in 2 cells : 0.028377266507254 (GeV)
+Cell[8,7] 0.0016602780345763 [GeV]
+Cell[8,6] 0.025850749359756 [GeV]
+Cell[14,18] 0.0010428305544607 [GeV]
+### Total energy deposition in calorimeter by a source track in 3 cells : 0.028553857948793 (GeV)
Source track ID 1597 (gamma,0.46372847760985[GeV]) at (-465.9947488454,181.24263860504,-913.38295263122)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[7,9] 0.00038205764601785 [GeV]
-Cell[7,33] 0.00039132468147781 [GeV]
-Cell[5,21] 0.24771738045631 [GeV]
-Cell[5,20] 0.032342857826674 [GeV]
-Cell[9,38] 0.00013872809225356 [GeV]
-Cell[5,45] 0.0003932773167523 [GeV]
-Cell[4,20] 0.012389793536893 [GeV]
-Cell[2,4] 0.00055208468070299 [GeV]
-Cell[5,19] 0.00034726186275809 [GeV]
-Cell[4,21] 0.16435053879546 [GeV]
-Cell[5,13] 0.00086922791799736 [GeV]
-Cell[6,3] 0.00025164000313192 [GeV]
-Cell[7,41] 0.0025496867642629 [GeV]
-Cell[6,44] 0.00034924337019008 [GeV]
-### Total energy deposition in calorimeter by a source track in 14 cells : 0.46302510295088 (GeV)
+Cell[4,29] 0.00043256221793454 [GeV]
+Cell[6,9] 0.00066473408503846 [GeV]
+Cell[5,21] 0.40336706552245 [GeV]
+Cell[5,19] 0.00051099891 [GeV]
+Cell[4,21] 0.010837180521611 [GeV]
+Cell[4,20] 0.012736346947224 [GeV]
+Cell[5,22] 0.0027340282273444 [GeV]
+Cell[4,22] 0.001753311577353 [GeV]
+Cell[5,20] 0.028422838327836 [GeV]
+Cell[5,4] 0.00044024600011993 [GeV]
+Cell[5,27] 0.00052873657682228 [GeV]
+### Total energy deposition in calorimeter by a source track in 11 cells : 0.46242804891373 (GeV)
Source track ID 1594 (gamma,0.21067608644927[GeV]) at (-247.62061722265,-434.37775026614,-1046.3394112357)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[2,10] 0.00023786635643436 [GeV]
-Cell[2,15] 0.0018902629971204 [GeV]
-Cell[3,21] 0.00051099891 [GeV]
-Cell[5,18] 0.0024411218275768 [GeV]
-Cell[5,38] 0.002039210382329 [GeV]
-Cell[0,6] 0.0021760993015122 [GeV]
-Cell[3,27] 0.0023317088854123 [GeV]
-Cell[3,7] 0.00043996597728322 [GeV]
-Cell[4,32] 0.17149879952517 [GeV]
-Cell[4,31] 0.024614757703534 [GeV]
-Cell[1,2] 0.00056211305278862 [GeV]
-Cell[1,3] 0.00057596130213419 [GeV]
-### Total energy deposition in calorimeter by a source track in 12 cells : 0.2093188662213 (GeV)
+Cell[6,42] 0.00051099891 [GeV]
+Cell[0,41] 0.00069882975380538 [GeV]
+Cell[0,13] 0.0016210320771193 [GeV]
+Cell[0,12] 0.0071997181404937 [GeV]
+Cell[4,32] 0.18157498519785 [GeV]
+Cell[4,31] 0.017667420663389 [GeV]
+Cell[4,8] 0.00051099891 [GeV]
+Cell[4,11] 0.00038110388661172 [GeV]
+Cell[2,6] 0.00051099891 [GeV]
+### Total energy deposition in calorimeter by a source track in 9 cells : 0.21067608644927 (GeV)
Source track ID 1592 (gamma,0.06726801612498[GeV]) at (-461.11390928731,-193.32346640224,-562.35059966671)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[7,26] 0.0095640129524866 [GeV]
-Cell[7,27] 0.052096291203267 [GeV]
-Cell[6,27] 0.0041871699837486 [GeV]
-Cell[6,26] 0.00022067268111704 [GeV]
-Cell[7,28] 0.00068887039436016 [GeV]
-### Total energy deposition in calorimeter by a source track in 5 cells : 0.06675701721498 (GeV)
+Cell[7,26] 0.0084197681524955 [GeV]
+Cell[7,27] 0.038850090197319 [GeV]
+Cell[6,27] 0.016916922613397 [GeV]
+Cell[6,26] 0.0030812351617679 [GeV]
+### Total energy deposition in calorimeter by a source track in 4 cells : 0.06726801612498 (GeV)
Source track ID 1593 (gamma,1.2213291054873[GeV]) at (-495.81010278622,64.593668227785,-1525.2871278762)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[2,41] 0.0013520997263408 [GeV]
-Cell[3,46] 0.0097177229317187 [GeV]
-Cell[1,7] 0.00025483635670908 [GeV]
-Cell[5,37] 0.0018900467430624 [GeV]
-Cell[2,22] 0.40356964659644 [GeV]
-Cell[1,22] 0.045527005290286 [GeV]
-Cell[1,23] 0.026518284983601 [GeV]
-Cell[1,24] 0.00052095532033124 [GeV]
-Cell[2,9] 0.0014280545721496 [GeV]
-Cell[2,23] 0.69472475478295 [GeV]
-Cell[2,21] 0.00074557489687178 [GeV]
-Cell[5,9] 0.00051099891 [GeV]
-Cell[4,0] 0.00042608733229491 [GeV]
-Cell[0,3] 0.0013392482823576 [GeV]
-Cell[2,43] 0.0011947501817532 [GeV]
-Cell[0,34] 0.00089236326562437 [GeV]
-Cell[1,14] 0.00058403302707612 [GeV]
-Cell[0,6] 0.00019948586736352 [GeV]
-Cell[1,16] 0.0033329790046544 [GeV]
-Cell[0,44] 0.0019664521060656 [GeV]
-Cell[1,47] 0.003067302681345 [GeV]
-Cell[5,2] 0.00051099891 [GeV]
-Cell[2,47] 0.0075333194615717 [GeV]
-Cell[3,3] 2.7234657291312e-05 [GeV]
-Cell[1,15] 5.4151533928675e-05 [GeV]
-Cell[2,42] 0.0001400143079201 [GeV]
-Cell[0,7] 0.0033003316161633 [GeV]
-Cell[3,5] 8.3426179649357e-06 [GeV]
-### Total energy deposition in calorimeter by a source track in 28 cells : 1.2113370759638 (GeV)
+Cell[7,7] 0.00051099891 [GeV]
+Cell[3,43] 0.00051099891 [GeV]
+Cell[3,15] 0.000787732061945 [GeV]
+Cell[2,36] 0.00090370097386893 [GeV]
+Cell[5,6] 0.00048033376182651 [GeV]
+Cell[0,11] 0.0051211290371996 [GeV]
+Cell[1,1] 0.00021019000326251 [GeV]
+Cell[0,10] 0.0019948468646681 [GeV]
+Cell[6,47] 0.0013544463224254 [GeV]
+Cell[5,47] 0.002765655637856 [GeV]
+Cell[1,20] 0.00051099891 [GeV]
+Cell[1,22] 0.011335835781234 [GeV]
+Cell[4,40] 0.00051099891 [GeV]
+Cell[2,23] 0.50784153318607 [GeV]
+Cell[4,46] 0.00043337228099693 [GeV]
+Cell[2,16] 0.00084670793619615 [GeV]
+Cell[2,15] 0.00056955097804528 [GeV]
+Cell[1,3] 0.0009809773627951 [GeV]
+Cell[1,4] 0.0024278240373011 [GeV]
+Cell[4,41] 0.00048266466275969 [GeV]
+Cell[1,23] 0.020794610614804 [GeV]
+Cell[2,22] 0.62149967256116 [GeV]
+Cell[2,7] 0.0010574568995738 [GeV]
+Cell[3,42] 0.0029090426570564 [GeV]
+Cell[2,6] 0.00018437381114067 [GeV]
+### Total energy deposition in calorimeter by a source track in 25 cells : 1.1870256530722 (GeV)
Source track ID 99 (pi-,0.29315894428537[GeV]) at (-319.65835345136,384.47176368203,-1654.3719655776)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[5,31] 5.2206989785191e-06 [GeV]
-Cell[2,32] 4.4727656022587e-05 [GeV]
-Cell[1,6] 2.7664560038829e-05 [GeV]
-Cell[5,32] 0.0016000810393026 [GeV]
-Cell[8,17] 3.9797399095505e-05 [GeV]
-Cell[8,15] 6.3519226387143e-07 [GeV]
-Cell[2,17] 0.092533200788826 [GeV]
-Cell[1,17] 0.096908432676006 [GeV]
-Cell[2,19] 2.8698850655928e-08 [GeV]
-Cell[9,18] 2.6279798476025e-08 [GeV]
-Cell[9,17] 1.42608769238e-12 [GeV]
-Cell[2,16] 0.0010551265622522 [GeV]
-Cell[8,16] 0.00035284306593212 [GeV]
-Cell[4,34] 0.0018625985239775 [GeV]
-Cell[1,16] 3.1295901697149e-05 [GeV]
-Cell[3,32] 0.0036666371022814 [GeV]
-Cell[3,33] 0.0014541078919601 [GeV]
-Cell[3,31] 0.0026500733651097 [GeV]
-Cell[10,11] 1.2008027784759e-05 [GeV]
-Cell[2,18] 0.0027385570835927 [GeV]
-Cell[7,45] 1.5447082638275e-05 [GeV]
-Cell[3,30] 7.2648938345083e-05 [GeV]
-Cell[1,15] 1.8921013266549e-05 [GeV]
-Cell[4,33] 0.0040749848996776 [GeV]
-Cell[1,5] 0.00030976960364342 [GeV]
-Cell[4,32] 0.0029947048538446 [GeV]
-Cell[3,17] 3.7242900236834e-07 [GeV]
-Cell[8,18] 3.7104182410985e-09 [GeV]
-Cell[9,16] 7.0564171608112e-07 [GeV]
-Cell[4,31] 0.00098169775858833 [GeV]
-### Total energy deposition in calorimeter by a source track in 30 cells : 0.21345231844634 (GeV)
+Cell[5,24] 4.6619670756627e-06 [GeV]
+Cell[7,43] 7.5182095461059e-06 [GeV]
+Cell[0,21] 0.0095780055095503 [GeV]
+Cell[1,1] 1.0372093015576e-08 [GeV]
+Cell[1,0] 4.0638097271426e-05 [GeV]
+Cell[1,19] 2.0323789669874e-07 [GeV]
+Cell[1,17] 0.10085197364462 [GeV]
+Cell[1,16] 0.0027465442926717 [GeV]
+Cell[0,40] 0.00019240096435385 [GeV]
+Cell[1,21] 0.0093599988121731 [GeV]
+Cell[1,20] 0.001927772370641 [GeV]
+Cell[1,22] 0.00029524300478704 [GeV]
+Cell[1,18] 2.6712240949678e-05 [GeV]
+Cell[3,20] 1.3344195830541e-05 [GeV]
+Cell[3,21] 0.0076902154128119 [GeV]
+Cell[4,46] 5.2256029778164e-07 [GeV]
+Cell[2,18] 0.0076976122398541 [GeV]
+Cell[2,17] 0.0082908395859021 [GeV]
+Cell[2,16] 0.057560512258258 [GeV]
+Cell[2,21] 3.8042452804348e-06 [GeV]
+Cell[2,20] 0.001538211164923 [GeV]
+Cell[2,19] 0.0063784981271059 [GeV]
+Cell[1,47] 0.00034193601109155 [GeV]
+### Total energy deposition in calorimeter by a source track in 23 cells : 0.21454717852498 (GeV)
Source track ID 103 (gamma,0.0014729288043117[GeV]) at (162.52989884229,-498.6080322701,-2000)
Original primary track ID 43 (unknown,52.984237098069[GeV])
-Cell[0,38] 0.0014729288043117 [GeV]
-### Total energy deposition in calorimeter by a source track in 1 cells : 0.0014729288043117 (GeV)
+Cell[0,38] 0.00050548786258987 [GeV]
+Cell[0,37] 0.00096744094172186 [GeV]
+### Total energy deposition in calorimeter by a source track in 2 cells : 0.0014729288043117 (GeV)
>>> Summary of Event 0
Tracker hits --------------------------------------------------------------
-1395 hits are stored in RE01TrackerHitsCollection.
+1652 hits are stored in RE01TrackerHitsCollection.
Calorimeter hits --------------------------------------------------------------
-908 hits are stored in RE01CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 151.18850086291 (GeV)
+916 hits are stored in RE01CalorimeterHitsCollection.
+ Total energy deposition in calorimeter : 144.81006455575 (GeV)
Trajectories in tracker --------------------------------------------------------------
@@ -5207,7 +5038,7 @@ Primary particles --------------------------------------------------------------
Primary vertex (0,0,0) at t = 0 [ns]
Graphics systems deleted.
Visualization Manager deleting...
-G4Integration Driver Stats: #QuickAdvance 361858 - #AccurateAdvance 21459 #good steps 55235 #bad steps 89
+G4Integration Driver Stats: #QuickAdvance 354623 - #AccurateAdvance 22411 #good steps 57442 #bad steps 143
G4ChordFinder statistics report:
- No trials: 360355 No Calls: 351356 Max-trial: 7
+ No trials: 353132 No Calls: 344044 Max-trial: 7
Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98
diff --git a/examples/extended/runAndEvent/RE02/run.out b/examples/extended/runAndEvent/RE02/run.out
index 70117e17125..eeef659c054 100644
--- a/examples/extended/runAndEvent/RE02/run.out
+++ b/examples/extended/runAndEvent/RE02/run.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -38,12 +34,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -191,371 +185,371 @@ gamma
#
/run/beamOn 10
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -607,6 +601,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -712,6 +707,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -859,6 +855,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -1199,7 +1196,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
Run terminated.
Run Summary
Number of events processed : 10
- User=0.000000s Real=0.003551s Sys=0.000000s
+ User=0.010000s Real=0.003158s Sys=0.000000s
PrimitiveScorer RUN PhantomSD,totalEDep
Number of entries 10
PrimitiveScorer RUN PhantomSD,protonEDep
diff --git a/examples/extended/runAndEvent/RE02/run3.out b/examples/extended/runAndEvent/RE02/run3.out
index b00efac4013..0e6834e9c59 100644
--- a/examples/extended/runAndEvent/RE02/run3.out
+++ b/examples/extended/runAndEvent/RE02/run3.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -38,12 +34,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -189,371 +183,371 @@ gamma
#
/run/beamOn 10000
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -605,6 +599,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -710,6 +705,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -857,6 +853,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -967,70 +964,70 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 10000
- User=12.810000s Real=13.141861s Sys=0.030000s
+ User=12.500000s Real=12.592334s Sys=0.040000s
PrimitiveScorer RUN PhantomSD,totalEDep
- Number of entries 51244
+ Number of entries 51157
PrimitiveScorer RUN PhantomSD,protonEDep
- Number of entries 19
+ Number of entries 29
PrimitiveScorer RUN PhantomSD,protonNStep
- Number of entries 19
+ Number of entries 29
PrimitiveScorer RUN PhantomSD,chargedPassCellFlux
- Number of entries 20135
+ Number of entries 20084
PrimitiveScorer RUN PhantomSD,chargedCellFlux
- Number of entries 51083
+ Number of entries 50875
PrimitiveScorer RUN PhantomSD,chargedSurfFlux
- Number of entries 11647
+ Number of entries 11644
PrimitiveScorer RUN PhantomSD,gammaSurfCurr000
- Number of entries 46
+ Number of entries 39
PrimitiveScorer RUN PhantomSD,gammaSurfCurr001
- Number of entries 354
+ Number of entries 359
PrimitiveScorer RUN PhantomSD,gammaSurfCurr002
- Number of entries 50376
+ Number of entries 50110
PrimitiveScorer RUN PhantomSD,gammaSurfCurr003
- Number of entries 71521
+ Number of entries 71140
=============================================================
Number of event processed : 10000
=============================================================
#Z Cell# totalEDep protonEDep protonNStep chargedPassCellFlux chargedCellFlux chargedSurfFlux gammaSurfCurr000 gammaSurfCurr001 gammaSurfCurr002 gammaSurfCurr003
- 0 38.5542 MeV 0 eV 0 2608.64 /cm2 2707.9 /cm2 2215.53 /cm2 0 /cm2 25 /cm2 475 /cm2 300 /cm2
- 1 440.368 MeV 0 eV 0 3184.04 /cm2 4135.69 /cm2 3837.51 /cm2 0 /cm2 75 /cm2 1050 /cm2 750 /cm2
- 2 62.9205 MeV 0 eV 0 3927.74 /cm2 4290.37 /cm2 6119.3 /cm2 0 /cm2 25 /cm2 3575 /cm2 3525 /cm2
- 3 340.639 MeV 0 eV 0 1596.42 /cm2 3179.78 /cm2 6842.66 /cm2 0 /cm2 0 /cm2 3600 /cm2 3350 /cm2
- 4 24.9322 MeV 0 eV 0 1455.13 /cm2 1622.26 /cm2 1601.88 /cm2 0 /cm2 0 /cm2 3400 /cm2 3100 /cm2
- 5 102.457 MeV 0 eV 0 474.689 /cm2 913.924 /cm2 3787.39 /cm2 0 /cm2 0 /cm2 2675 /cm2 2825 /cm2
- 6 6.44314 MeV 0 eV 0 262.118 /cm2 383.614 /cm2 314.993 /cm2 0 /cm2 0 /cm2 2075 /cm2 2275 /cm2
- 7 75.9123 MeV 0 eV 0 203.528 /cm2 697.405 /cm2 301.061 /cm2 0 /cm2 0 /cm2 1975 /cm2 2400 /cm2
- 8 4.34908 MeV 0 eV 0 288.602 /cm2 303.414 /cm2 320.141 /cm2 0 /cm2 0 /cm2 1775 /cm2 1975 /cm2
- 9 32.9944 MeV 0 eV 0 31.0565 /cm2 298.031 /cm2 263.528 /cm2 0 /cm2 0 /cm2 1275 /cm2 1775 /cm2
- 10 2.16748 MeV 0 eV 0 147.17 /cm2 155.346 /cm2 41.6214 /cm2 0 /cm2 0 /cm2 1050 /cm2 1625 /cm2
- 11 27.3961 MeV 0 eV 0 66.2305 /cm2 230.423 /cm2 223.553 /cm2 0 /cm2 0 /cm2 725 /cm2 1100 /cm2
- 12 2.18534 MeV 0 eV 0 139.652 /cm2 146.02 /cm2 116.293 /cm2 0 /cm2 0 /cm2 600 /cm2 950 /cm2
- 13 20.45 MeV 0 eV 0 82.0538 /cm2 183.064 /cm2 184.489 /cm2 0 /cm2 0 /cm2 600 /cm2 950 /cm2
- 14 2.45642 MeV 0 eV 0 87.9591 /cm2 126.754 /cm2 1064.4 /cm2 0 /cm2 0 /cm2 350 /cm2 700 /cm2
- 15 10.2811 MeV 0 eV 0 13.0467 /cm2 92.0827 /cm2 58.4518 /cm2 0 /cm2 0 /cm2 425 /cm2 750 /cm2
- 16 1.7302 MeV 0 eV 0 104.54 /cm2 120.843 /cm2 0 /cm2 0 /cm2 0 /cm2 350 /cm2 475 /cm2
- 17 7.21124 MeV 0 eV 0 7.24254 /cm2 60.4531 /cm2 27.2277 /cm2 0 /cm2 0 /cm2 350 /cm2 475 /cm2
- 18 866.972 keV 0 eV 0 65.0127 /cm2 65.0127 /cm2 27.042 /cm2 0 /cm2 0 /cm2 325 /cm2 300 /cm2
- 19 8.20247 MeV 0 eV 0 39.4865 /cm2 69.8142 /cm2 26.9023 /cm2 0 /cm2 0 /cm2 325 /cm2 400 /cm2
- 20 422.354 keV 0 eV 0 17.1159 /cm2 17.1159 /cm2 31.1843 /cm2 0 /cm2 0 /cm2 275 /cm2 350 /cm2
- 21 2.62851 MeV 0 eV 0 8.79076 /cm2 17.0328 /cm2 28.5088 /cm2 0 /cm2 0 /cm2 100 /cm2 300 /cm2
- 22 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 225 /cm2 350 /cm2
- 23 11.1734 MeV 0 eV 0 0 /cm2 100.92 /cm2 0 /cm2 0 /cm2 0 /cm2 250 /cm2 325 /cm2
+ 0 36.5319 MeV 0 eV 0 2537.06 /cm2 2625 /cm2 2065.53 /cm2 0 /cm2 25 /cm2 525 /cm2 350 /cm2
+ 1 428.307 MeV 0 eV 0 3075.09 /cm2 4027.78 /cm2 3829.48 /cm2 0 /cm2 75 /cm2 1100 /cm2 875 /cm2
+ 2 61.8257 MeV 0 eV 0 3932.16 /cm2 4258.76 /cm2 5641.7 /cm2 0 /cm2 25 /cm2 3700 /cm2 3275 /cm2
+ 3 325.748 MeV 0 eV 0 1628.55 /cm2 3025.13 /cm2 6635.03 /cm2 0 /cm2 0 /cm2 3650 /cm2 3150 /cm2
+ 4 23.6473 MeV 0 eV 0 1362.13 /cm2 1540.39 /cm2 1700.8 /cm2 0 /cm2 0 /cm2 3475 /cm2 3250 /cm2
+ 5 106.965 MeV 0 eV 0 444.744 /cm2 941.301 /cm2 3824.89 /cm2 0 /cm2 0 /cm2 2625 /cm2 3000 /cm2
+ 6 6.02088 MeV 0 eV 0 266.641 /cm2 360.872 /cm2 373.867 /cm2 0 /cm2 0 /cm2 2000 /cm2 2425 /cm2
+ 7 64.8253 MeV 0 eV 0 200.629 /cm2 593.674 /cm2 275.748 /cm2 0 /cm2 0 /cm2 1875 /cm2 2500 /cm2
+ 8 5.5134 MeV 0 eV 0 363.58 /cm2 380.313 /cm2 599.909 /cm2 0 /cm2 0 /cm2 1600 /cm2 1950 /cm2
+ 9 44.496 MeV 0 eV 0 66.7146 /cm2 406.28 /cm2 1390.27 /cm2 0 /cm2 0 /cm2 1325 /cm2 1725 /cm2
+ 10 3.14812 MeV 0 eV 0 175.519 /cm2 210.67 /cm2 69.6296 /cm2 0 /cm2 0 /cm2 1125 /cm2 1700 /cm2
+ 11 33.5534 MeV 0 eV 0 104.528 /cm2 281.513 /cm2 253.688 /cm2 0 /cm2 0 /cm2 850 /cm2 1175 /cm2
+ 12 2.4563 MeV 0 eV 0 148.813 /cm2 159.153 /cm2 209.999 /cm2 0 /cm2 0 /cm2 575 /cm2 1075 /cm2
+ 13 20.2478 MeV 0 eV 0 82.0538 /cm2 178.812 /cm2 184.489 /cm2 0 /cm2 0 /cm2 625 /cm2 1000 /cm2
+ 14 2.45642 MeV 0 eV 0 87.9591 /cm2 126.754 /cm2 1064.4 /cm2 0 /cm2 0 /cm2 325 /cm2 850 /cm2
+ 15 12.0262 MeV 0 eV 0 13.0467 /cm2 104.686 /cm2 58.4518 /cm2 0 /cm2 0 /cm2 425 /cm2 850 /cm2
+ 16 1.48287 MeV 0 eV 0 83.8685 /cm2 100.172 /cm2 0 /cm2 0 /cm2 0 /cm2 350 /cm2 500 /cm2
+ 17 7.8869 MeV 0 eV 0 12.6028 /cm2 65.8133 /cm2 27.2277 /cm2 0 /cm2 0 /cm2 375 /cm2 500 /cm2
+ 18 866.972 keV 0 eV 0 65.0127 /cm2 65.0127 /cm2 27.042 /cm2 0 /cm2 0 /cm2 325 /cm2 325 /cm2
+ 19 13.537 MeV 0 eV 0 71.9988 /cm2 129.532 /cm2 26.9023 /cm2 0 /cm2 0 /cm2 300 /cm2 400 /cm2
+ 20 426.516 keV 0 eV 0 17.4003 /cm2 17.4003 /cm2 70.8541 /cm2 0 /cm2 0 /cm2 225 /cm2 400 /cm2
+ 21 3.67695 MeV 0 eV 0 8.79076 /cm2 24.4147 /cm2 28.5088 /cm2 0 /cm2 0 /cm2 100 /cm2 350 /cm2
+ 22 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 200 /cm2 350 /cm2
+ 23 10.1933 MeV 0 eV 0 0 /cm2 91.0198 /cm2 0 /cm2 0 /cm2 0 /cm2 250 /cm2 275 /cm2
24 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 150 /cm2 250 /cm2
- 25 1.07035 MeV 0 eV 0 3.30698 /cm2 9.13064 /cm2 0 /cm2 0 /cm2 0 /cm2 150 /cm2 225 /cm2
- 26 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 100 /cm2 175 /cm2
- 27 3.69437 MeV 0 eV 0 0.0514898 /cm2 37.9331 /cm2 0 /cm2 0 /cm2 0 /cm2 100 /cm2 225 /cm2
- 28 273.945 keV 0 eV 0 24.3288 /cm2 24.3288 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 175 /cm2
- 29 482.128 keV 0 eV 0 0.572285 /cm2 2.54682 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 200 /cm2
+ 25 268.507 keV 0 eV 0 0 /cm2 1.3017 /cm2 0 /cm2 0 /cm2 0 /cm2 150 /cm2 275 /cm2
+ 26 484.854 keV 0 eV 0 24.657 /cm2 24.657 /cm2 0 /cm2 0 /cm2 0 /cm2 100 /cm2 150 /cm2
+ 27 974.59 keV 0 eV 0 0.0514898 /cm2 6.68111 /cm2 0 /cm2 0 /cm2 0 /cm2 75 /cm2 200 /cm2
+ 28 273.945 keV 0 eV 0 24.3288 /cm2 24.3288 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 175 /cm2
+ 29 178.07 keV 0 eV 0 0 /cm2 0.288246 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 175 /cm2
30 46.1851 keV 0 eV 0 4.77518 /cm2 4.77518 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 100 /cm2
31 109.264 keV 0 eV 0 1.94035 /cm2 1.94035 /cm2 261.657 /cm2 0 /cm2 0 /cm2 0 /cm2 75 /cm2
- 32 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 50 /cm2
- 33 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 50 /cm2 150 /cm2
- 34 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 175 /cm2
- 35 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 125 /cm2
- 36 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 125 /cm2
- 37 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 150 /cm2
- 38 35.7237 keV 0 eV 0 0 /cm2 2.753 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 200 /cm2
+ 32 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 50 /cm2
+ 33 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 150 /cm2
+ 34 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 200 /cm2
+ 35 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 150 /cm2
+ 36 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 100 /cm2
+ 37 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 125 /cm2
+ 38 35.7237 keV 0 eV 0 0 /cm2 2.753 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 175 /cm2
39 727.293 keV 0 eV 0 7.64062 /cm2 7.64062 /cm2 25.4364 /cm2 0 /cm2 0 /cm2 0 /cm2 100 /cm2
40 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 75 /cm2
41 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 50 /cm2
@@ -1047,14 +1044,14 @@ Run Summary
52 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
53 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
54 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
- 55 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
+ 55 510.999 keV 0 eV 0 0 /cm2 3.02946 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
56 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
57 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
58 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
59 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2
60 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
61 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
- 62 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
+ 62 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 0 /cm2
63 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
64 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
65 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
@@ -1063,7 +1060,7 @@ Run Summary
68 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
69 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
70 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
- 71 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 25 /cm2 0 /cm2
+ 71 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
72 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
73 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
74 0 eV 0 eV 0 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2 0 /cm2
@@ -1207,9 +1204,9 @@ G4SDManager deleted.
EventManager deleted.
Units table cleared.
TransportationManager deleted.
-Total navigation history collections cleaned: 19
+Total navigation history collections cleaned: 18
================== Deleting memory pools ===================
-Pool ID '20G4NavigationLevelRep', size : 0.0279 MB
+Pool ID '20G4NavigationLevelRep', size : 0.026 MB
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
Pool ID '17G4DynamicParticle', size : 0.00961 MB
Pool ID '16G4HitsCollection', size : 0 MB
@@ -1223,7 +1220,7 @@ Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
Pool ID '10G4Fragment', size : 0.000961 MB
Pool ID '17G4ReactionProduct', size : 0.000961 MB
Number of memory pools allocated: 13 of which, static: 0
-Dynamic pools deleted: 13 / Total memory freed: 0.065 MB
+Dynamic pools deleted: 13 / Total memory freed: 0.063 MB
============================================================
G4Allocator objects are deleted.
UImanager deleted.
diff --git a/examples/extended/runAndEvent/RE02/run4.out b/examples/extended/runAndEvent/RE02/run4.out
index e410c082c0e..65f263598d5 100644
--- a/examples/extended/runAndEvent/RE02/run4.out
+++ b/examples/extended/runAndEvent/RE02/run4.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -38,12 +34,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -191,371 +185,371 @@ gamma
#
/run/beamOn 10000
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -607,6 +601,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -712,6 +707,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -859,6 +855,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -969,7 +966,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 10000
- User=0.190000s Real=0.202044s Sys=0.000000s
+ User=0.190000s Real=0.188149s Sys=0.000000s
PrimitiveScorer RUN PhantomSD,totalEDep
Number of entries 83
PrimitiveScorer RUN PhantomSD,protonEDep
diff --git a/examples/extended/runAndEvent/RE04/exampleRE04.out b/examples/extended/runAndEvent/RE04/exampleRE04.out
index 11b5f4a0caa..6751fdb0a9e 100644
--- a/examples/extended/runAndEvent/RE04/exampleRE04.out
+++ b/examples/extended/runAndEvent/RE04/exampleRE04.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -28,12 +24,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -131,371 +125,371 @@ The materials defined are :
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
.... G4ScoringMessenger::MeshBinCommand - G4ScoringBox
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -546,6 +540,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -651,6 +646,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -787,6 +783,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
diff --git a/examples/extended/runAndEvent/RE04/include/RE04TrajectoryPoint.hh b/examples/extended/runAndEvent/RE04/include/RE04TrajectoryPoint.hh
index d7099eac920..e39f40af547 100644
--- a/examples/extended/runAndEvent/RE04/include/RE04TrajectoryPoint.hh
+++ b/examples/extended/runAndEvent/RE04/include/RE04TrajectoryPoint.hh
@@ -71,7 +71,7 @@ public:
// Operators
inline void *operator new(size_t);
inline void operator delete(void *aTrajectoryPoint);
- inline int operator==(const RE04TrajectoryPoint& right) const
+ inline G4bool operator==(const RE04TrajectoryPoint& right) const
{ return (this==&right); };
// Get/Set functions
diff --git a/examples/extended/runAndEvent/RE05/History b/examples/extended/runAndEvent/RE05/History
index 0d8fc22f1f6..73d82ff9f07 100644
--- a/examples/extended/runAndEvent/RE05/History
+++ b/examples/extended/runAndEvent/RE05/History
@@ -16,6 +16,11 @@ track of all tags.
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+01-28-19 M. Asai (exampleRE05-V10-04-03)
+- Reduce the number of events in pythia_event.data to make it
+ smaller than 2 MB. Number of events executed by the macro
+ exampleRE05.in is also reduced accordingly.
+
10-05-18 J. Allison (exampleRE05-V10-04-02)
- Move deletion of vis manager to top scope. For batch jobs it was
not being deleted.
diff --git a/examples/extended/runAndEvent/RE05/exampleRE05.in b/examples/extended/runAndEvent/RE05/exampleRE05.in
index e73ebe357d1..423d791dff4 100644
--- a/examples/extended/runAndEvent/RE05/exampleRE05.in
+++ b/examples/extended/runAndEvent/RE05/exampleRE05.in
@@ -6,6 +6,6 @@
/particle/createAllIon
/control/verbose 2
/run/verbose 2
-/run/beamOn 100
+/run/beamOn 10
#
diff --git a/examples/extended/runAndEvent/RE05/exampleRE05.out b/examples/extended/runAndEvent/RE05/exampleRE05.out
index c89d25833af..2c4072b2660 100644
--- a/examples/extended/runAndEvent/RE05/exampleRE05.out
+++ b/examples/extended/runAndEvent/RE05/exampleRE05.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -30,12 +26,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -64,373 +58,373 @@ End of Run User Vis Actions: none
Some /vis commands (optionally) take a string to specify colour.
"/vis/list" to see available colours.
/run/verbose 2
-/run/beamOn 100
+/run/beamOn 10
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -486,6 +480,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -590,6 +585,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -724,6 +720,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -814,8 +811,8 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
G4HEPEvtInterface - reading 484 HEPEvt particles from pythia_event.data.
>>> Event 0
53 hits are stored in RE05TrackerHitsCollection.
- 43 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 6.0023098671523 (GeV)
+ 40 hits are stored in RE05CalorimeterHitsCollection.
+ Total energy deposition in calorimeter : 5.6677305378314 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 755 HEPEvt particles from pythia_event.data.
>>> Event 1
@@ -833,19 +830,19 @@ G4HEPEvtInterface - reading 448 HEPEvt particles from pythia_event.data.
>>> Event 3
0 hits are stored in RE05TrackerHitsCollection.
3 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0.52345916103982 (GeV)
+ Total energy deposition in calorimeter : 0.53004565906347 (GeV)
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 945 HEPEvt particles from pythia_event.data.
>>> Event 4
- 83 hits are stored in RE05TrackerHitsCollection.
- 60 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 9.6706322112015 (GeV)
+ 77 hits are stored in RE05TrackerHitsCollection.
+ 69 hits are stored in RE05CalorimeterHitsCollection.
+ Total energy deposition in calorimeter : 12.632039022928 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 837 HEPEvt particles from pythia_event.data.
>>> Event 5
- 42 hits are stored in RE05TrackerHitsCollection.
- 58 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 8.9572724561724 (GeV)
+ 38 hits are stored in RE05TrackerHitsCollection.
+ 7 hits are stored in RE05CalorimeterHitsCollection.
+ Total energy deposition in calorimeter : 2.9059738407413 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 603 HEPEvt particles from pythia_event.data.
>>> Event 6
@@ -855,566 +852,26 @@ G4HEPEvtInterface - reading 603 HEPEvt particles from pythia_event.data.
0 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 627 HEPEvt particles from pythia_event.data.
>>> Event 7
- 77 hits are stored in RE05TrackerHitsCollection.
- 29 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 7.9541713148062 (GeV)
+ 45 hits are stored in RE05TrackerHitsCollection.
+ 27 hits are stored in RE05CalorimeterHitsCollection.
+ Total energy deposition in calorimeter : 6.5355020342872 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 682 HEPEvt particles from pythia_event.data.
>>> Event 8
- 58 hits are stored in RE05TrackerHitsCollection.
- 60 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 9.9808608045395 (GeV)
+ 76 hits are stored in RE05TrackerHitsCollection.
+ 53 hits are stored in RE05CalorimeterHitsCollection.
+ Total energy deposition in calorimeter : 8.7919915597941 (GeV)
1 hits are stored in RE05MuonHitsCollection.
G4HEPEvtInterface - reading 330 HEPEvt particles from pythia_event.data.
>>> Event 9
- 13 hits are stored in RE05TrackerHitsCollection.
- 27 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 5.5828419111351 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 1060 HEPEvt particles from pythia_event.data.
->>> Event 10
- 108 hits are stored in RE05TrackerHitsCollection.
- 57 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 9.0372480703366 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 1010 HEPEvt particles from pythia_event.data.
->>> Event 11
- 0 hits are stored in RE05TrackerHitsCollection.
- 17 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 2.8547767204437 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 517 HEPEvt particles from pythia_event.data.
->>> Event 12
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 815 HEPEvt particles from pythia_event.data.
->>> Event 13
- 93 hits are stored in RE05TrackerHitsCollection.
- 61 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 8.293714628695 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 702 HEPEvt particles from pythia_event.data.
->>> Event 14
- 44 hits are stored in RE05TrackerHitsCollection.
- 46 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 7.0763790860863 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 568 HEPEvt particles from pythia_event.data.
->>> Event 15
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 405 HEPEvt particles from pythia_event.data.
->>> Event 16
- 21 hits are stored in RE05TrackerHitsCollection.
- 27 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 4.2911717540733 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 533 HEPEvt particles from pythia_event.data.
->>> Event 17
- 0 hits are stored in RE05TrackerHitsCollection.
- 5 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0.95476838375313 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 342 HEPEvt particles from pythia_event.data.
->>> Event 18
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 621 HEPEvt particles from pythia_event.data.
->>> Event 19
- 39 hits are stored in RE05TrackerHitsCollection.
- 33 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 9.3906693703821 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 906 HEPEvt particles from pythia_event.data.
->>> Event 20
- 66 hits are stored in RE05TrackerHitsCollection.
- 42 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 5.5014086926009 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 427 HEPEvt particles from pythia_event.data.
->>> Event 21
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 387 HEPEvt particles from pythia_event.data.
->>> Event 22
- 33 hits are stored in RE05TrackerHitsCollection.
- 26 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 4.1622353139699 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 359 HEPEvt particles from pythia_event.data.
->>> Event 23
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 438 HEPEvt particles from pythia_event.data.
->>> Event 24
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 786 HEPEvt particles from pythia_event.data.
->>> Event 25
- 0 hits are stored in RE05TrackerHitsCollection.
- 7 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 1.2155237012249 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 661 HEPEvt particles from pythia_event.data.
->>> Event 26
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 673 HEPEvt particles from pythia_event.data.
->>> Event 27
- 0 hits are stored in RE05TrackerHitsCollection.
- 40 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 4.4124848438043 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 694 HEPEvt particles from pythia_event.data.
->>> Event 28
- 0 hits are stored in RE05TrackerHitsCollection.
- 8 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 1.4034528901343 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 913 HEPEvt particles from pythia_event.data.
->>> Event 29
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 425 HEPEvt particles from pythia_event.data.
->>> Event 30
- 41 hits are stored in RE05TrackerHitsCollection.
- 33 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 4.3170226626657 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 466 HEPEvt particles from pythia_event.data.
->>> Event 31
- 40 hits are stored in RE05TrackerHitsCollection.
- 40 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 24.514053367532 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 954 HEPEvt particles from pythia_event.data.
->>> Event 32
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 575 HEPEvt particles from pythia_event.data.
->>> Event 33
- 80 hits are stored in RE05TrackerHitsCollection.
- 16 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 3.9373529463003 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 1002 HEPEvt particles from pythia_event.data.
->>> Event 34
- 126 hits are stored in RE05TrackerHitsCollection.
- 67 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 9.9311593031053 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 440 HEPEvt particles from pythia_event.data.
->>> Event 35
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 389 HEPEvt particles from pythia_event.data.
->>> Event 36
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 318 HEPEvt particles from pythia_event.data.
->>> Event 37
- 6 hits are stored in RE05TrackerHitsCollection.
- 14 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 2.699762693667 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 367 HEPEvt particles from pythia_event.data.
->>> Event 38
- 78 hits are stored in RE05TrackerHitsCollection.
- 50 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 6.7475029221567 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 1000 HEPEvt particles from pythia_event.data.
->>> Event 39
- 0 hits are stored in RE05TrackerHitsCollection.
- 4 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0.72874722036912 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 253 HEPEvt particles from pythia_event.data.
->>> Event 40
- 24 hits are stored in RE05TrackerHitsCollection.
- 34 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 4.6411012980892 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 474 HEPEvt particles from pythia_event.data.
->>> Event 41
- 24 hits are stored in RE05TrackerHitsCollection.
- 20 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 6.6251160266629 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 695 HEPEvt particles from pythia_event.data.
->>> Event 42
- 89 hits are stored in RE05TrackerHitsCollection.
- 49 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 5.307143272347 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 760 HEPEvt particles from pythia_event.data.
->>> Event 43
- 0 hits are stored in RE05TrackerHitsCollection.
- 13 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 2.2263599054154 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 328 HEPEvt particles from pythia_event.data.
->>> Event 44
- 0 hits are stored in RE05TrackerHitsCollection.
- 10 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 1.7569252369138 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 574 HEPEvt particles from pythia_event.data.
->>> Event 45
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 420 HEPEvt particles from pythia_event.data.
->>> Event 46
- 34 hits are stored in RE05TrackerHitsCollection.
- 49 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 8.8965883381598 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 1092 HEPEvt particles from pythia_event.data.
->>> Event 47
- 50 hits are stored in RE05TrackerHitsCollection.
- 54 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 8.5970568868074 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 708 HEPEvt particles from pythia_event.data.
->>> Event 48
- 50 hits are stored in RE05TrackerHitsCollection.
- 19 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 4.0045096784957 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 942 HEPEvt particles from pythia_event.data.
->>> Event 49
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 422 HEPEvt particles from pythia_event.data.
->>> Event 50
17 hits are stored in RE05TrackerHitsCollection.
- 38 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 6.3759925495985 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 621 HEPEvt particles from pythia_event.data.
->>> Event 51
- 45 hits are stored in RE05TrackerHitsCollection.
- 33 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 7.0190840339518 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 380 HEPEvt particles from pythia_event.data.
->>> Event 52
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 780 HEPEvt particles from pythia_event.data.
->>> Event 53
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 218 HEPEvt particles from pythia_event.data.
->>> Event 54
- 34 hits are stored in RE05TrackerHitsCollection.
- 30 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 4.7541495094071 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 349 HEPEvt particles from pythia_event.data.
->>> Event 55
- 43 hits are stored in RE05TrackerHitsCollection.
- 30 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 6.0019642293854 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 566 HEPEvt particles from pythia_event.data.
->>> Event 56
- 61 hits are stored in RE05TrackerHitsCollection.
- 36 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 3.7433448256381 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 467 HEPEvt particles from pythia_event.data.
->>> Event 57
- 25 hits are stored in RE05TrackerHitsCollection.
- 36 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 5.4515661618772 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 745 HEPEvt particles from pythia_event.data.
->>> Event 58
- 54 hits are stored in RE05TrackerHitsCollection.
- 40 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 6.8634919390006 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 742 HEPEvt particles from pythia_event.data.
->>> Event 59
- 0 hits are stored in RE05TrackerHitsCollection.
- 12 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 2.1144639442545 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 822 HEPEvt particles from pythia_event.data.
->>> Event 60
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 324 HEPEvt particles from pythia_event.data.
->>> Event 61
- 0 hits are stored in RE05TrackerHitsCollection.
- 1 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0.1100312981398 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 389 HEPEvt particles from pythia_event.data.
->>> Event 62
- 24 hits are stored in RE05TrackerHitsCollection.
- 10 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 3.174699577627 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 624 HEPEvt particles from pythia_event.data.
->>> Event 63
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 340 HEPEvt particles from pythia_event.data.
->>> Event 64
- 30 hits are stored in RE05TrackerHitsCollection.
- 29 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 3.4592692508432 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 520 HEPEvt particles from pythia_event.data.
->>> Event 65
- 50 hits are stored in RE05TrackerHitsCollection.
- 45 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 8.5540709915277 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 235 HEPEvt particles from pythia_event.data.
->>> Event 66
- 8 hits are stored in RE05TrackerHitsCollection.
- 17 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 2.2856683833999 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 759 HEPEvt particles from pythia_event.data.
->>> Event 67
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 865 HEPEvt particles from pythia_event.data.
->>> Event 68
- 0 hits are stored in RE05TrackerHitsCollection.
- 8 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0.99171935318515 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 264 HEPEvt particles from pythia_event.data.
->>> Event 69
- 59 hits are stored in RE05TrackerHitsCollection.
- 24 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 4.6660611186612 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 785 HEPEvt particles from pythia_event.data.
->>> Event 70
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 618 HEPEvt particles from pythia_event.data.
->>> Event 71
- 0 hits are stored in RE05TrackerHitsCollection.
- 4 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0.60953186724284 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 219 HEPEvt particles from pythia_event.data.
->>> Event 72
- 36 hits are stored in RE05TrackerHitsCollection.
- 41 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 5.969023625542 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 480 HEPEvt particles from pythia_event.data.
->>> Event 73
- 25 hits are stored in RE05TrackerHitsCollection.
- 41 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 8.5555307223548 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 614 HEPEvt particles from pythia_event.data.
->>> Event 74
- 0 hits are stored in RE05TrackerHitsCollection.
- 4 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0.58031716961121 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 436 HEPEvt particles from pythia_event.data.
->>> Event 75
- 11 hits are stored in RE05TrackerHitsCollection.
- 47 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 7.308569351454 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 355 HEPEvt particles from pythia_event.data.
->>> Event 76
- 14 hits are stored in RE05TrackerHitsCollection.
- 31 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 4.350912428 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 865 HEPEvt particles from pythia_event.data.
->>> Event 77
- 20 hits are stored in RE05TrackerHitsCollection.
- 93 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 10.26243083813 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 752 HEPEvt particles from pythia_event.data.
->>> Event 78
- 0 hits are stored in RE05TrackerHitsCollection.
- 4 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0.6714230505457 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 766 HEPEvt particles from pythia_event.data.
->>> Event 79
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 564 HEPEvt particles from pythia_event.data.
->>> Event 80
- 30 hits are stored in RE05TrackerHitsCollection.
- 41 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 5.2180975384965 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 220 HEPEvt particles from pythia_event.data.
->>> Event 81
- 34 hits are stored in RE05TrackerHitsCollection.
- 36 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 6.5075107214283 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 823 HEPEvt particles from pythia_event.data.
->>> Event 82
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 914 HEPEvt particles from pythia_event.data.
->>> Event 83
- 66 hits are stored in RE05TrackerHitsCollection.
- 42 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 6.4897484983154 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 232 HEPEvt particles from pythia_event.data.
->>> Event 84
- 22 hits are stored in RE05TrackerHitsCollection.
- 32 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 10.371558906559 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 1034 HEPEvt particles from pythia_event.data.
->>> Event 85
- 159 hits are stored in RE05TrackerHitsCollection.
- 86 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 11.446955104143 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 673 HEPEvt particles from pythia_event.data.
->>> Event 86
- 40 hits are stored in RE05TrackerHitsCollection.
- 32 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 6.5838990840989 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 246 HEPEvt particles from pythia_event.data.
->>> Event 87
- 32 hits are stored in RE05TrackerHitsCollection.
- 39 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 5.3509742374473 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 1139 HEPEvt particles from pythia_event.data.
->>> Event 88
- 0 hits are stored in RE05TrackerHitsCollection.
- 7 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 1.3361229820162 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 991 HEPEvt particles from pythia_event.data.
->>> Event 89
- 116 hits are stored in RE05TrackerHitsCollection.
- 49 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 9.3363734461139 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 430 HEPEvt particles from pythia_event.data.
->>> Event 90
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 232 HEPEvt particles from pythia_event.data.
->>> Event 91
- 41 hits are stored in RE05TrackerHitsCollection.
- 31 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 6.855991567597 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 410 HEPEvt particles from pythia_event.data.
->>> Event 92
- 0 hits are stored in RE05TrackerHitsCollection.
- 5 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0.99070478369198 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 680 HEPEvt particles from pythia_event.data.
->>> Event 93
- 52 hits are stored in RE05TrackerHitsCollection.
- 58 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 9.5141970839026 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 259 HEPEvt particles from pythia_event.data.
->>> Event 94
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 358 HEPEvt particles from pythia_event.data.
->>> Event 95
- 14 hits are stored in RE05TrackerHitsCollection.
- 34 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 5.0277671617015 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 546 HEPEvt particles from pythia_event.data.
->>> Event 96
- 0 hits are stored in RE05TrackerHitsCollection.
- 3 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0.51998201584327 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 611 HEPEvt particles from pythia_event.data.
->>> Event 97
- 0 hits are stored in RE05TrackerHitsCollection.
- 0 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 0 (GeV)
- 0 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 298 HEPEvt particles from pythia_event.data.
->>> Event 98
- 47 hits are stored in RE05TrackerHitsCollection.
- 15 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 3.2927723597384 (GeV)
- 1 hits are stored in RE05MuonHitsCollection.
-G4HEPEvtInterface - reading 755 HEPEvt particles from pythia_event.data.
->>> Event 99
- 58 hits are stored in RE05TrackerHitsCollection.
- 60 hits are stored in RE05CalorimeterHitsCollection.
- Total energy deposition in calorimeter : 9.4326868580648 (GeV)
+ 25 hits are stored in RE05CalorimeterHitsCollection.
+ Total energy deposition in calorimeter : 5.3097506455732 (GeV)
1 hits are stored in RE05MuonHitsCollection.
Run terminated.
Run Summary
- Number of events processed : 100
- User=16.150000s Real=18.060000s Sys=0.060000s
+ Number of events processed : 10
+ User=2.830000s Real=2.978755s Sys=0.020000s
#
Graphics systems deleted.
Visualization Manager deleting...
@@ -1428,35 +885,35 @@ RunManager is deleting RunManagerKernel.
G4SDManager deleted.
EventManager deleted.
Units table cleared.
-G4Integration Driver Stats: #QuickAdvance 346367 - #AccurateAdvance 28662 #good steps 34799 #bad steps 362
+G4Integration Driver Stats: #QuickAdvance 40459 - #AccurateAdvance 3105 #good steps 3363 #bad steps 48
G4ChordFinder statistics report:
- No trials: 345328 No Calls: 343368 Max-trial: 7
+ No trials: 40337 No Calls: 40246 Max-trial: 6
Parameters: fFirstFraction 0.999 fFractionLast 1 fFractionNextEstimate 0.98
TransportationManager deleted.
-Total navigation history collections cleaned: 505
+Total navigation history collections cleaned: 397
================== Deleting memory pools ===================
-Pool ID '20G4NavigationLevelRep', size : 0.817 MB
+Pool ID '20G4NavigationLevelRep', size : 0.651 MB
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
-Pool ID '17G4DynamicParticle', size : 0.824 MB
+Pool ID '17G4DynamicParticle', size : 0.686 MB
Pool ID '7G4Event', size : 0.000961 MB
-Pool ID '17G4PrimaryParticle', size : 0.157 MB
-Pool ID '16G4HEPEvtParticle', size : 0.0269 MB
+Pool ID '17G4PrimaryParticle', size : 0.13 MB
+Pool ID '16G4HEPEvtParticle', size : 0.0221 MB
Pool ID '15G4PrimaryVertex', size : 0.000961 MB
Pool ID '15G4HCofThisEvent', size : 0.000961 MB
Pool ID '16G4HitsCollection', size : 0.000961 MB
-Pool ID '7G4Track', size : 1.42 MB
-Pool ID '18G4TouchableHistory', size : 0.0606 MB
-Pool ID '15G4CountedObjectIvE', size : 0.00769 MB
-Pool ID '12G4Trajectory', size : 0.0308 MB
-Pool ID '17G4TrajectoryPoint', size : 0.189 MB
-Pool ID '14RE05TrackerHit', size : 0.00673 MB
-Pool ID '18RE05CalorimeterHit', size : 0.0135 MB
+Pool ID '7G4Track', size : 1.17 MB
+Pool ID '18G4TouchableHistory', size : 0.0481 MB
+Pool ID '15G4CountedObjectIvE', size : 0.00673 MB
+Pool ID '12G4Trajectory', size : 0.0279 MB
+Pool ID '17G4TrajectoryPoint', size : 0.156 MB
+Pool ID '14RE05TrackerHit', size : 0.00385 MB
+Pool ID '18RE05CalorimeterHit', size : 0.00961 MB
Pool ID '11RE05MuonHit', size : 0.000961 MB
Pool ID '21G4TrajectoryContainer', size : 0.000961 MB
Pool ID '10G4Fragment', size : 0.00673 MB
-Pool ID '17G4ReactionProduct', size : 0.0135 MB
+Pool ID '17G4ReactionProduct', size : 0.00769 MB
Number of memory pools allocated: 20 of which, static: 0
-Dynamic pools deleted: 20 / Total memory freed: 3.6 MB
+Dynamic pools deleted: 20 / Total memory freed: 2.9 MB
============================================================
G4Allocator objects are deleted.
UImanager deleted.
diff --git a/examples/extended/runAndEvent/RE05/include/RE05CalorimeterHit.hh b/examples/extended/runAndEvent/RE05/include/RE05CalorimeterHit.hh
index 159ae5ef4ea..b2c7b7e50df 100644
--- a/examples/extended/runAndEvent/RE05/include/RE05CalorimeterHit.hh
+++ b/examples/extended/runAndEvent/RE05/include/RE05CalorimeterHit.hh
@@ -51,7 +51,7 @@ class RE05CalorimeterHit : public G4VHit
virtual ~RE05CalorimeterHit();
RE05CalorimeterHit(const RE05CalorimeterHit &right);
const RE05CalorimeterHit& operator=(const RE05CalorimeterHit &right);
- G4int operator==(const RE05CalorimeterHit &right) const;
+ G4bool operator==(const RE05CalorimeterHit &right) const;
inline void *operator new(size_t);
inline void operator delete(void *aHit);
diff --git a/examples/extended/runAndEvent/RE05/include/RE05MuonHit.hh b/examples/extended/runAndEvent/RE05/include/RE05MuonHit.hh
index d87998a1b11..da69cba46cd 100644
--- a/examples/extended/runAndEvent/RE05/include/RE05MuonHit.hh
+++ b/examples/extended/runAndEvent/RE05/include/RE05MuonHit.hh
@@ -47,7 +47,7 @@ class RE05MuonHit : public G4VHit
virtual ~RE05MuonHit();
RE05MuonHit(const RE05MuonHit &right);
const RE05MuonHit& operator=(const RE05MuonHit &right);
- G4int operator==(const RE05MuonHit &right) const;
+ G4bool operator==(const RE05MuonHit &right) const;
inline void *operator new(size_t);
inline void operator delete(void *aHit);
diff --git a/examples/extended/runAndEvent/RE05/include/RE05TrackerHit.hh b/examples/extended/runAndEvent/RE05/include/RE05TrackerHit.hh
index 79225112a51..18d7d59fed7 100644
--- a/examples/extended/runAndEvent/RE05/include/RE05TrackerHit.hh
+++ b/examples/extended/runAndEvent/RE05/include/RE05TrackerHit.hh
@@ -47,7 +47,7 @@ class RE05TrackerHit : public G4VHit
virtual ~RE05TrackerHit();
RE05TrackerHit(const RE05TrackerHit &right);
const RE05TrackerHit& operator=(const RE05TrackerHit &right);
- G4int operator==(const RE05TrackerHit &right) const;
+ G4bool operator==(const RE05TrackerHit &right) const;
inline void *operator new(size_t);
inline void operator delete(void *aHit);
diff --git a/examples/extended/runAndEvent/RE05/pythia_event.data b/examples/extended/runAndEvent/RE05/pythia_event.data
index ba1f8ad347a..35c47a5fa38 100644
--- a/examples/extended/runAndEvent/RE05/pythia_event.data
+++ b/examples/extended/runAndEvent/RE05/pythia_event.data
@@ -483,7 +483,7 @@
1 22 0 0 -0.79832664e-01 -0.65737020e-01 0.58381375e+01 0.00000000e+00
1 22 0 0 -0.37907662e+00 -0.45740455e-01 0.18943649e+02 0.00000000e+00
1 22 0 0 -0.16270121e+00 -0.11347346e+00 0.90942492e+01 0.00000000e+00
- 755
+ 755
2 25 2 3 0.45915965e+01 -0.39666403e+02 -0.10827846e+03 0.12499941e+03
2 23 4 9 -0.11587517e+02 0.85641065e+01 -0.22296423e+02 0.21099038e+02
2 23 10 12 0.16179114e+02 -0.48230510e+02 -0.85982039e+02 0.92598160e+02
@@ -1239,7 +1239,7 @@
1 22 0 0 -0.29241631e-01 -0.85804075e-02 -0.62875974e+01 0.00000000e+00
1 22 0 0 -0.93072858e-01 -0.49717530e+00 -0.17899084e+03 0.00000000e+00
1 22 0 0 -0.19687619e-01 -0.60885406e-02 -0.32666291e+01 0.00000000e+00
- 614
+ 614
2 25 2 3 0.19221463e+02 -0.22773756e+02 0.17340971e+03 0.12500129e+03
2 23 6 9 0.22688965e+02 -0.35763111e+02 0.13911499e+03 0.91521292e+02
2 23 4 5 -0.34675024e+01 0.12989355e+02 0.34294721e+02 0.24086513e+02
@@ -1854,7 +1854,7 @@
1 22 0 0 0.86394544e-02 0.31384455e-01 -0.17276646e-01 0.00000000e+00
1 22 0 0 0.16453460e-02 0.79024129e-01 -0.12753165e+00 0.00000000e+00
1 22 0 0 -0.31312810e+00 0.45657028e+00 -0.69590794e+00 0.00000000e+00
- 448
+ 448
2 25 2 3 -0.37609025e+02 -0.56169565e+02 0.68475123e+03 0.12500245e+03
2 23 4 5 -0.13713127e+02 -0.30778260e+02 0.22098225e+03 0.28083762e+02
2 23 6 9 -0.23895897e+02 -0.25391305e+02 0.46376898e+03 0.91785342e+02
@@ -2303,7 +2303,7 @@
1 22 0 0 -0.75670904e-02 -0.21248628e+00 0.25250816e+03 0.00000000e+00
1 22 0 0 0.36235459e-01 0.34008906e-01 0.12426453e+03 0.00000000e+00
1 22 0 0 0.33917267e+00 -0.71054689e-01 0.55328254e+03 0.00000000e+00
- 945
+ 945
2 25 2 3 0.39377290e+02 0.30634777e+02 -0.55801004e+02 0.12499975e+03
2 23 4 5 0.73588614e+01 -0.55145692e+01 -0.19966733e+02 0.30794251e+02
2 23 6 7 0.32018429e+02 0.36149346e+02 -0.35834271e+02 0.89544220e+02
@@ -3249,7 +3249,7 @@
1 22 0 0 -0.17718070e+00 0.22221828e+00 0.29129627e+00 0.00000000e+00
1 22 0 0 0.81681911e-02 -0.49823401e-02 0.20481310e-01 0.00000000e+00
1 22 0 0 0.14119671e+00 0.65982672e+00 0.90830663e+00 0.00000000e+00
- 837
+ 837
2 25 2 3 -0.94350110e+02 0.58325352e+02 0.35776958e+03 0.12500112e+03
2 23 4 10 -0.76443315e+02 0.26586475e+02 0.28874717e+03 0.91342796e+02
2 23 11 13 -0.17906795e+02 0.31738877e+02 0.69022413e+02 0.23100908e+02
@@ -4691,7 +4691,7 @@
1 22 0 0 0.23752015e+00 0.60440794e-02 0.35534501e+00 0.00000000e+00
1 22 0 0 0.87776366e+00 -0.41666438e+00 0.91336637e+00 0.00000000e+00
1 22 0 0 0.20304261e+00 -0.15693819e+00 0.30267701e+00 0.00000000e+00
- 627
+ 627
2 25 2 3 0.15623633e+01 0.45641141e+01 0.68285548e-01 0.12500196e+03
2 23 4 7 0.10612356e+02 0.13394480e+02 -0.12944089e+02 0.90123537e+02
2 23 8 11 -0.90499924e+01 -0.88303658e+01 0.13012374e+02 0.26911823e+02
@@ -5319,7 +5319,7 @@
1 22 0 0 -0.20681390e+00 0.41908700e+00 0.77272193e+01 0.00000000e+00
1 22 0 0 0.11855199e-01 0.26567054e+00 0.59060779e+01 0.00000000e+00
1 22 0 0 -0.27086777e-01 0.25897344e+00 0.94059243e+01 0.00000000e+00
- 682
+ 682
2 25 2 3 0.14604381e+01 -0.38588742e+02 -0.13407948e+03 0.12499830e+03
2 23 4 8 0.28651007e+00 -0.37176153e+01 -0.37247293e+02 0.31406309e+02
2 23 9 11 0.11739280e+01 -0.34871127e+02 -0.96832185e+02 0.92626203e+02
@@ -6002,7 +6002,7 @@
1 22 0 0 -0.16016304e-01 0.12787477e+00 0.11864079e+00 0.00000000e+00
1 22 0 0 -0.20019007e+00 0.13702324e+00 -0.19479964e-01 0.00000000e+00
1 22 0 0 -0.12087680e+00 0.10553730e-01 0.64907406e-01 0.00000000e+00
- 330
+ 330
2 25 2 3 -0.40944038e+02 -0.33807558e+02 -0.17663926e+03 0.12500048e+03
2 23 6 8 -0.59884831e+01 -0.11366551e+02 -0.59902102e+02 0.29374435e+02
2 23 4 5 -0.34955555e+02 -0.22441007e+02 -0.11673716e+03 0.92908671e+02
@@ -6333,7 +6333,7 @@
1 22 0 0 0.45804011e-01 0.63063898e-02 0.13628947e+02 0.00000000e+00
1 22 0 0 0.42562265e-01 0.20723646e-01 0.72241548e+01 0.00000000e+00
1 22 0 0 0.34948947e-02 -0.13048371e+00 0.28175458e+02 0.00000000e+00
- 1060
+ 1060
2 25 2 3 0.47006890e+01 -0.62995817e+01 -0.24622639e+01 0.12499452e+03
2 23 4 5 0.47245503e+01 0.60180770e+01 0.99300105e+01 0.29475177e+02
2 23 6 7 -0.23861337e-01 -0.12317659e+02 -0.12392274e+02 0.91583625e+02
@@ -7394,7 +7394,7 @@
1 22 0 0 0.10685827e-01 0.91693462e-02 -0.51504957e-01 0.00000000e+00
1 22 0 0 0.82796965e-02 0.60314416e-02 -0.10131203e-01 0.00000000e+00
1 22 0 0 0.17315617e+00 0.80216739e-02 -0.24563586e+01 0.00000000e+00
- 1010
+ 1010
2 25 2 3 -0.12960144e+01 0.46867600e+01 -0.30571148e+03 0.12489057e+03
2 23 6 8 0.35279857e+01 -0.12080757e+02 -0.20891720e+03 0.85966282e+02
2 23 4 5 -0.48240002e+01 0.16767517e+02 -0.96794284e+02 0.33833133e+02
@@ -8405,7 +8405,7 @@
1 22 0 0 -0.57424290e-01 -0.16618503e+00 0.10957436e+01 0.00000000e+00
1 22 0 0 -0.11241009e+00 -0.34214617e+00 0.79607632e+00 0.00000000e+00
1 22 0 0 -0.10674241e+00 -0.92074265e-01 0.22990812e+00 0.00000000e+00
- 517
+ 517
2 25 2 3 -0.30551186e+02 -0.14572692e+02 -0.11647548e+04 0.12499520e+03
2 23 6 8 -0.30415478e+02 -0.10022830e+02 -0.78225510e+03 0.86195244e+02
2 23 4 5 -0.13570722e+00 -0.45498616e+01 -0.38249969e+03 0.36775772e+02
@@ -8923,7 +8923,7 @@
1 22 0 0 0.71905604e-01 0.79565998e-01 0.41182837e+00 0.00000000e+00
1 22 0 0 -0.60516583e-01 -0.14500541e+00 0.45017234e+00 0.00000000e+00
1 22 0 0 0.68187437e-02 0.91466393e-02 0.27247513e+00 0.00000000e+00
- 815
+ 815
2 25 2 3 0.32366430e+02 0.41473355e+01 -0.52575788e+03 0.12498100e+03
2 23 4 5 0.37109272e+02 0.11932395e+01 -0.51011478e+03 0.97722046e+02
2 23 6 7 -0.47428420e+01 0.29540960e+01 -0.15643110e+02 0.12312942e+02
@@ -9739,7 +9739,7 @@
1 22 0 0 0.54372573e+00 -0.39107244e-02 0.14305314e+02 0.00000000e+00
1 22 0 0 0.16330151e-01 0.14574697e+00 0.38105014e+01 0.00000000e+00
1 22 0 0 0.30973915e-03 -0.29770860e-01 0.50307405e+00 0.00000000e+00
- 702
+ 702
2 25 2 3 -0.76505812e+02 -0.83140261e+02 0.40866823e+03 0.12498712e+03
2 23 4 5 -0.15622468e+02 -0.30756278e+02 0.13505219e+03 0.31512538e+02
2 23 6 7 -0.60883343e+02 -0.52383983e+02 0.27361603e+03 0.90348621e+02
@@ -10442,48720 +10442,3 @@
1 22 0 0 -0.45336332e+00 0.14528267e+00 -0.94553048e+01 0.00000000e+00
1 22 0 0 -0.41898903e-01 0.68174194e-02 -0.11165995e+01 0.00000000e+00
1 22 0 0 0.37860346e-01 -0.10900990e+00 -0.12944632e+01 0.00000000e+00
- 568
- 2 25 2 3 -0.48420127e+01 -0.27604577e+02 0.25976389e+02 0.12500397e+03
- 2 23 4 7 0.81584583e+01 -0.11830949e+02 0.18438338e+02 0.33687990e+02
- 2 23 8 10 -0.13000471e+02 -0.15773628e+02 0.75380517e+01 0.87023958e+02
- 1 11 0 0 -0.48496491e+01 0.80334432e+01 0.13873871e+02 0.51000000e-03
- 1 22 0 0 -0.12301356e-01 0.30989418e-01 0.38989007e-01 0.00000000e+00
- 1 -11 0 0 0.13020404e+02 -0.19895376e+02 0.45254773e+01 0.51000000e-03
- 1 22 0 0 0.44245006e-05 -0.59915327e-05 0.19137085e-06 0.00000000e+00
- 1 11 0 0 -0.33713855e+02 0.25305932e+02 0.11021559e+02 0.51000000e-03
- 1 -11 0 0 0.20424089e+02 -0.40506351e+02 -0.34349160e+01 0.51000000e-03
- 1 22 0 0 0.28929564e+00 -0.57320971e+00 -0.48591441e-01 0.00000000e+00
- 2 2 65 65 0.19811484e+02 0.50615598e+01 0.47298660e+03 0.33000000e+00
- 2 2101 65 65 -0.18685456e+01 -0.62360259e+00 0.27049392e+04 0.57933000e+00
- 2 -2 80 80 0.76562957e+01 0.10982075e+02 0.21487520e+03 0.33000000e+00
- 2 21 80 80 0.84319773e+00 0.82489471e+00 0.29070224e+02 0.00000000e+00
- 2 21 80 80 -0.29822036e+01 0.48511406e+00 0.33609487e+02 0.00000000e+00
- 2 21 80 80 -0.73950302e+01 0.37199482e+01 0.10038363e+03 0.00000000e+00
- 2 21 80 80 -0.33855558e+01 0.12100609e+01 0.40171161e+02 0.00000000e+00
- 2 21 80 80 -0.52948545e+01 0.39812060e+01 0.69549163e+02 0.00000000e+00
- 2 21 80 80 -0.84727076e+00 -0.55523327e-01 0.20844871e+02 0.00000000e+00
- 2 21 80 80 0.12006096e+01 -0.81550811e-01 0.30912915e+00 0.00000000e+00
- 2 21 80 80 0.87207423e+00 0.89484138e-01 -0.76400025e+01 0.00000000e+00
- 2 21 80 80 0.23930158e+01 0.17109345e+01 -0.25658857e+02 0.00000000e+00
- 2 21 80 80 -0.82247873e-01 0.55501549e+00 -0.90559471e+01 0.00000000e+00
- 2 21 80 80 0.66693770e+00 0.17376437e+01 -0.44040381e+02 0.00000000e+00
- 2 21 80 80 0.82247873e-01 -0.55501549e+00 -0.16381241e+04 0.00000000e+00
- 2 21 80 80 0.81695330e+00 -0.69258103e+00 -0.79511552e+02 0.00000000e+00
- 2 21 80 80 -0.74481783e+00 0.38886867e+00 -0.88159699e+00 0.00000000e+00
- 2 21 80 80 0.76068155e+00 0.77345322e+00 -0.10137229e+02 0.00000000e+00
- 2 21 80 80 -0.49643348e+00 -0.73254203e+00 -0.47279572e+02 0.00000000e+00
- 2 21 80 80 0.71902693e+00 0.42261919e+00 -0.99012465e+01 0.00000000e+00
- 2 21 80 80 -0.13267825e+01 0.10199274e+01 -0.21656368e+03 0.00000000e+00
- 2 1 80 80 0.78565326e+00 0.12211587e+00 -0.33042162e+02 0.33000000e+00
- 2 2 129 129 -0.18021293e+01 -0.11998972e+01 0.41401038e+03 0.33000000e+00
- 2 21 129 129 0.86633253e+00 -0.12285507e+01 0.19644534e+03 0.00000000e+00
- 2 21 129 129 0.59393429e+00 -0.46859379e+00 0.40917001e+03 0.00000000e+00
- 2 21 129 129 -0.22056264e+00 -0.72657110e+00 0.16832722e+01 0.00000000e+00
- 2 21 129 129 0.29300756e+01 -0.38021402e+01 0.81836828e+01 0.00000000e+00
- 2 21 129 129 0.38729113e+01 -0.16767655e+01 0.17348789e+02 0.00000000e+00
- 2 21 129 129 0.18967169e+01 -0.46888869e+01 0.61460192e+02 0.00000000e+00
- 2 21 129 129 -0.50187379e+00 -0.79952389e+00 0.17880163e+02 0.00000000e+00
- 2 21 129 129 -0.12006096e+01 0.81550811e-01 0.19028779e+02 0.00000000e+00
- 2 21 129 129 -0.39019065e+01 -0.14279295e+01 0.98326693e+02 0.00000000e+00
- 2 21 129 129 -0.53749694e+00 0.47069006e-01 0.23259478e+02 0.00000000e+00
- 2 21 129 129 -0.83481269e+00 -0.66380007e+00 0.13033276e+03 0.00000000e+00
- 2 21 129 129 0.53749694e+00 -0.47069006e-01 0.86454222e+03 0.00000000e+00
- 2 21 129 129 0.39019065e+01 0.14279295e+01 0.74206687e+03 0.00000000e+00
- 2 21 129 129 0.22056264e+00 0.72657110e+00 0.48067511e+02 0.00000000e+00
- 2 21 129 129 0.83481269e+00 0.66380007e+00 0.38476079e+02 0.00000000e+00
- 2 21 129 129 -0.18967169e+01 0.46888869e+01 0.87681105e+02 0.00000000e+00
- 2 21 129 129 -0.29300756e+01 0.38021402e+01 0.45202394e+02 0.00000000e+00
- 2 21 129 129 -0.87207423e+00 -0.89484138e-01 0.31322384e+01 0.00000000e+00
- 2 21 129 129 0.50187379e+00 0.79952389e+00 0.76331940e+00 0.00000000e+00
- 2 21 129 129 -0.38729113e+01 0.16767655e+01 -0.49138080e+01 0.00000000e+00
- 2 21 129 129 -0.81695330e+00 0.69258103e+00 -0.17090080e+02 0.00000000e+00
- 2 21 129 129 -0.23930158e+01 -0.17109345e+01 -0.10079247e+03 0.00000000e+00
- 2 21 129 129 -0.66693770e+00 -0.17376437e+01 -0.37218590e+02 0.00000000e+00
- 2 21 129 129 -0.10553480e+01 0.18363796e+01 -0.16872343e+01 0.00000000e+00
- 2 21 129 129 0.33394817e+00 0.10112772e+01 -0.11631802e+01 0.00000000e+00
- 2 21 129 129 -0.45096877e+00 -0.31877909e+00 0.11929654e+01 0.00000000e+00
- 2 21 129 129 -0.12598000e+00 -0.35190520e+00 -0.52928207e+02 0.00000000e+00
- 2 21 129 129 0.37086872e-01 0.10302108e+01 -0.11622605e+03 0.00000000e+00
- 2 2203 129 129 0.21029182e+00 -0.28573923e+00 -0.44813176e+04 0.77133000e+00
- 2 21 205 205 -0.88886832e+00 -0.86597961e+00 0.12999311e+01 0.00000000e+00
- 2 21 205 205 0.88886832e+00 0.86597961e+00 -0.70848365e+01 0.00000000e+00
- 2 92 66 79 0.17942939e+02 0.44379572e+01 0.31779258e+04 0.49720934e+02
- 2 223 213 215 0.13264858e+02 0.33165785e+01 0.31290027e+03 0.78378564e+00
- 2 213 216 217 0.13082279e+01 0.15231160e+00 0.49047405e+02 0.85935728e+00
- 2 313 218 219 0.11625867e+01 0.58395296e+00 0.63584244e+02 0.10922559e+01
- 2 -323 220 221 0.16319472e+01 0.45021598e-01 0.37634404e+02 0.90088108e+00
- 2 323 222 223 0.57620704e+00 0.44371166e+00 0.75874796e+02 0.89532581e+00
- 2 -323 224 225 0.67917930e+00 -0.11234945e+00 0.95568677e+02 0.91657444e+00
- 2 213 226 227 0.51381406e+00 0.49878402e+00 0.25048238e+02 0.75679251e+00
- 1 -211 0 0 0.32547862e+00 0.15032876e+00 0.85546983e+02 0.13957000e+00
- 2 111 228 229 -0.50828431e-01 -0.11970304e+00 0.41460546e+01 0.13498000e+00
- 2 2224 230 231 -0.85054085e+00 -0.12090167e+00 0.48178248e+03 0.12605437e+01
- 2 -3222 232 233 0.34460401e+00 0.18918685e+00 0.51409363e+03 0.11893700e+01
- 2 -311 234 234 -0.29768132e+00 -0.27655640e+00 0.34352575e+03 0.49767000e+00
- 1 2112 0 0 0.41967494e-01 0.14023687e+00 0.39054523e+03 0.93957000e+00
- 2 113 235 236 -0.70688127e+00 -0.45264508e+00 0.69862759e+03 0.77936566e+00
- 2 92 81 128 -0.57585029e+01 0.25906148e+02 -0.16130234e+04 0.20818220e+04
- 1 -211 0 0 0.64928261e+00 0.46563618e+00 0.15309935e+02 0.13957000e+00
- 2 111 237 238 0.13961940e+01 0.29069940e+01 0.62226029e+02 0.13498000e+00
- 2 213 239 240 0.20023491e+01 0.20713367e+01 0.38652370e+02 0.49005647e+00
- 2 -323 241 242 0.17762161e+01 0.33431206e+01 0.63841863e+02 0.90114851e+00
- 2 323 243 244 0.17405468e+01 0.25965037e+01 0.58255292e+02 0.91341830e+00
- 1 -211 0 0 0.43514206e+00 0.18004992e+00 0.29677221e+01 0.13957000e+00
- 1 -2112 0 0 -0.59527236e+01 0.27971208e+01 0.84184750e+02 0.93957000e+00
- 2 223 245 247 -0.19535278e+01 0.11381425e+01 0.27358388e+02 0.77825506e+00
- 1 2212 0 0 -0.34072164e+01 0.15988151e+01 0.42650991e+02 0.93827000e+00
- 2 -213 248 249 -0.29034892e+01 0.12546683e+01 0.34794674e+02 0.83957818e+00
- 2 221 250 252 -0.36340780e+01 0.16152015e+01 0.51625986e+02 0.54745000e+00
- 2 113 253 254 -0.80411829e+00 0.10051290e+01 0.13013444e+02 0.90746484e+00
- 2 213 255 256 -0.51032675e+00 0.56887917e+00 0.98521822e+01 0.75697177e+00
- 2 111 257 258 0.51174508e+00 -0.49195280e+00 0.13089670e+01 0.13498000e+00
- 2 223 259 261 0.31748089e+00 0.10391423e+00 0.42901817e-02 0.78214961e+00
- 2 111 262 263 -0.33659016e+00 -0.13070779e+00 0.34882553e+00 0.13498000e+00
- 2 -3214 264 265 0.16317547e+00 0.34635021e+00 -0.14567034e+00 0.13831629e+01
- 2 -313 266 267 -0.16918040e+00 0.79952483e-01 0.83463143e+00 0.83008807e+00
- 2 1114 268 269 -0.14211226e+00 -0.48702406e-01 -0.82388982e+00 0.11121352e+01
- 2 223 270 272 0.91857971e+00 -0.27079207e-01 -0.25474467e+01 0.77930220e+00
- 2 113 273 274 0.62018087e+00 0.71720490e-01 -0.39594519e+01 0.69081201e+00
- 2 -3112 275 276 0.57232951e+00 0.38294882e-01 -0.74956560e+01 0.11974400e+01
- 2 3312 277 278 0.27813612e+00 0.53932291e+00 -0.47749902e+01 0.13213000e+01
- 2 323 279 280 0.22293018e+00 0.52970350e+00 -0.90250503e+01 0.90801423e+00
- 2 -323 281 282 0.11144541e+01 0.75613058e+00 -0.29913047e+02 0.90966725e+00
- 1 321 0 0 0.11898103e+00 0.74378197e+00 -0.12540215e+02 0.49360000e+00
- 1 -211 0 0 0.45355477e-01 -0.51509069e+00 -0.14638998e+02 0.13957000e+00
- 1 211 0 0 0.30395610e+00 0.10460524e+01 -0.33068864e+02 0.13957000e+00
- 2 221 283 285 0.77947940e-01 -0.17150794e+00 -0.75684831e+02 0.54745000e+00
- 2 113 286 287 0.23090615e+00 0.68131297e+00 -0.46405467e+03 0.89471758e+00
- 2 221 288 290 0.73972388e-01 -0.19569717e+00 -0.12480381e+03 0.54745000e+00
- 2 -213 291 292 -0.91999645e-01 0.25069021e+00 -0.72249089e+03 0.79624846e+00
- 1 211 0 0 0.64032923e+00 -0.21575145e+00 -0.64375015e+02 0.13957000e+00
- 2 -213 293 294 -0.71988845e+00 -0.76053526e+00 -0.69386859e+02 0.76581150e+00
- 2 213 295 296 0.41572230e+00 0.39491255e+00 -0.65143893e+02 0.85548151e+00
- 2 113 297 298 0.30865194e+00 -0.61024051e+00 -0.64003255e+02 0.72061866e+00
- 2 -323 299 300 -0.34245623e+00 0.30075170e+00 -0.12802358e+02 0.91100842e+00
- 2 313 301 302 0.18511620e-01 0.41619345e-01 -0.37455769e+01 0.88450979e+00
- 1 211 0 0 -0.29806970e-01 0.18935761e+00 -0.16441263e+02 0.13957000e+00
- 2 -323 303 304 0.64479932e+00 0.41478941e+00 -0.67470876e+01 0.89984723e+00
- 2 333 305 306 -0.10168719e+00 -0.87319962e+00 -0.18778830e+02 0.10189682e+01
- 2 331 307 308 -0.25981804e+00 0.27023314e+00 -0.11799193e+02 0.95791080e+00
- 2 313 309 310 0.43309759e+00 0.58085420e+00 -0.13007989e+02 0.85874335e+00
- 1 211 0 0 0.17803273e+00 -0.11787276e+00 -0.81801753e+01 0.13957000e+00
- 2 113 311 312 -0.57602792e+00 -0.17252863e-01 -0.79630094e+02 0.76244995e+00
- 1 -2212 0 0 -0.83662809e-01 0.66165288e+00 -0.45586816e+02 0.93827000e+00
- 2 3122 313 314 -0.39120571e+00 0.20886538e+00 -0.79922335e+02 0.11156800e+01
- 2 313 315 316 0.44240640e+00 0.28987831e+00 -0.54735561e+02 0.86175266e+00
- 2 92 130 204 -0.73424230e+01 -0.27395281e+01 -0.15850830e+04 0.78905605e+04
- 2 213 317 318 -0.38469567e+00 -0.53849479e+00 0.11962610e+03 0.80098679e+00
- 2 113 319 320 -0.53731297e+00 -0.85085063e+00 0.25549449e+03 0.80763886e+00
- 2 311 321 321 -0.89512723e-01 -0.85248111e+00 0.30666028e+03 0.49767000e+00
- 1 -321 0 0 0.41516248e-01 0.25504136e+00 0.41620681e+02 0.49360000e+00
- 1 211 0 0 0.32765918e+00 -0.10060659e+01 0.17069134e+03 0.13957000e+00
- 2 -213 322 323 0.13455040e+00 -0.13980055e+00 0.11596813e+03 0.79022062e+00
- 2 223 324 325 -0.17007955e+00 -0.17261356e+00 0.39508153e+01 0.78033340e+00
- 2 331 326 328 0.17613124e+00 -0.35985532e+00 0.28486714e+01 0.95773837e+00
- 2 213 329 330 0.13847916e+01 -0.10224500e+01 0.77032351e+01 0.68630244e+00
- 1 -211 0 0 0.15566720e+00 -0.76452977e+00 0.93497518e+00 0.13957000e+00
- 2 213 331 332 0.14756917e+01 -0.86449444e+00 0.79222673e+01 0.92808645e+00
- 1 -211 0 0 0.11895725e+01 -0.13350304e+01 0.50185270e+01 0.13957000e+00
- 2 111 333 334 0.31190663e+00 -0.57891160e-01 0.55947205e+00 0.13498000e+00
- 1 211 0 0 0.60442143e-02 -0.89887213e-01 0.16622086e+00 0.13957000e+00
- 2 113 335 336 0.57751828e+00 -0.52041788e+00 0.45312040e+01 0.10290842e+01
- 2 3114 337 338 0.10582955e+01 -0.82957977e+00 0.87574730e+01 0.13680535e+01
- 2 -3114 339 340 0.11172699e+01 -0.20879720e+01 0.23835441e+02 0.13991722e+01
- 2 111 341 342 0.11550559e+00 -0.15211221e+00 0.10624933e+01 0.13498000e+00
- 2 113 343 344 0.98451273e+00 -0.19179069e+01 0.26652373e+02 0.76852499e+00
- 1 -211 0 0 -0.47398852e+00 -0.38437744e+00 0.11134010e+02 0.13957000e+00
- 1 211 0 0 -0.35364879e+00 0.19017786e+00 0.16295795e+02 0.13957000e+00
- 1 -211 0 0 -0.70863254e-01 -0.29447469e+00 0.32990751e+01 0.13957000e+00
- 2 213 345 346 -0.19229530e+01 -0.11055815e+01 0.44554068e+02 0.76865210e+00
- 2 113 347 348 -0.15915173e+01 -0.61172223e+00 0.50684794e+02 0.99764779e+00
- 2 111 349 350 -0.12923093e+01 -0.83088063e+00 0.50107401e+02 0.13498000e+00
- 1 -211 0 0 0.27155118e+00 0.60199539e+00 0.93863197e+02 0.13957000e+00
- 1 211 0 0 -0.25801600e+00 -0.41091537e+00 0.66861148e+02 0.13957000e+00
- 2 311 351 351 -0.40390745e+00 -0.40329790e+00 0.10251763e+03 0.49767000e+00
- 2 -311 352 352 0.19052092e+00 -0.10068925e+00 0.68688245e+02 0.49767000e+00
- 2 -213 353 354 -0.48632498e+00 0.42218750e+00 0.28309731e+03 0.78049208e+00
- 2 111 355 356 0.87263598e-01 0.85594023e-01 0.70889427e+01 0.13498000e+00
- 2 213 357 358 0.24742996e+01 -0.28769703e-01 0.76335545e+03 0.77390070e+00
- 2 113 359 360 0.33314348e+00 0.57783926e+00 0.16926480e+03 0.83477953e+00
- 2 113 361 362 0.69343536e+00 0.10938716e+01 0.14626175e+03 0.83158542e+00
- 2 223 363 365 0.10448471e+01 0.89163216e+00 0.58847366e+02 0.78453902e+00
- 2 -213 366 367 -0.33630322e+00 0.10019188e+00 0.32305949e+02 0.78023866e+00
- 2 213 368 369 -0.13228821e+00 0.95745179e+00 0.22935797e+02 0.72798785e+00
- 1 -211 0 0 -0.68383646e-01 0.75288717e+00 0.31151012e+02 0.13957000e+00
- 2 213 370 371 -0.41291514e+00 0.15783509e+01 0.21138446e+02 0.81265607e+00
- 2 313 372 373 -0.17297869e+01 0.22585858e+01 0.35159717e+02 0.79234347e+00
- 2 -323 374 375 -0.38790598e+00 0.11380211e+01 0.15015237e+02 0.84119669e+00
- 2 213 376 377 -0.32158837e+00 -0.30956026e+00 0.72506248e+01 0.63147676e+00
- 2 113 378 379 -0.11285863e+01 0.17480712e+01 0.13559654e+02 0.78714430e+00
- 2 113 380 381 0.64977123e-01 0.46189112e+00 0.64410447e+01 0.83345113e+00
- 2 -213 382 383 -0.51575256e+00 0.40856964e+00 0.16524669e+01 0.76360999e+00
- 2 223 384 386 -0.28594846e-01 -0.23769969e+00 0.23938345e+00 0.78036693e+00
- 2 113 387 388 -0.27194249e+01 0.16244487e+01 -0.46414316e+01 0.87728421e+00
- 2 213 389 390 -0.65340987e+00 0.24627249e+00 -0.84199436e+00 0.69704769e+00
- 2 331 391 392 -0.33172823e+00 0.24391782e+00 -0.61091677e+01 0.95792549e+00
- 1 -211 0 0 -0.20020342e+01 -0.16403336e+00 -0.40176103e+02 0.13957000e+00
- 2 213 393 394 -0.26079371e+00 -0.89668356e+00 -0.41048874e+02 0.70216836e+00
- 2 223 395 397 -0.32735495e+00 -0.10691745e+00 -0.10344406e+02 0.78201255e+00
- 2 -213 398 399 -0.71238610e+00 -0.99049142e+00 -0.22620295e+02 0.76044218e+00
- 1 211 0 0 -0.38868122e+00 -0.73875266e-01 -0.17282685e+02 0.13957000e+00
- 1 -211 0 0 0.10704455e+00 -0.39994273e+00 -0.68681184e+01 0.13957000e+00
- 2 111 400 401 0.10880366e+00 -0.55692536e+00 -0.58374591e+01 0.13498000e+00
- 1 2212 0 0 -0.75695173e+00 0.99462227e+00 -0.33592258e+01 0.93827000e+00
- 1 -2212 0 0 -0.24891803e+00 0.67923227e+00 -0.16912919e+01 0.93827000e+00
- 2 223 402 404 -0.11061187e+00 0.81796478e+00 -0.15130201e+00 0.79162315e+00
- 1 211 0 0 -0.58355786e+00 -0.13400591e+00 -0.83655340e+00 0.13957000e+00
- 1 -211 0 0 0.50653152e+00 -0.12380839e+00 0.20528348e+00 0.13957000e+00
- 1 211 0 0 0.34456753e+00 0.78743799e+00 -0.27405550e+00 0.13957000e+00
- 2 113 405 406 -0.31809262e+00 -0.74959850e+00 -0.25123481e+01 0.70190397e+00
- 2 113 407 408 0.11772738e+00 0.57808291e+00 -0.28119915e+01 0.79323686e+00
- 2 111 409 410 -0.85934889e+00 -0.46669186e-01 -0.49217883e+01 0.13498000e+00
- 2 311 411 411 0.78168342e+00 -0.44741688e+00 -0.18967318e+02 0.49767000e+00
- 2 -323 412 413 -0.56301595e+00 0.54421757e-01 -0.26291214e+02 0.93622938e+00
- 2 2214 414 415 0.34731757e+00 0.46044138e+00 -0.34523731e+03 0.12444959e+01
- 2 -2114 416 417 -0.77635251e-01 0.76411919e-01 -0.12652053e+03 0.12457726e+01
- 2 311 418 418 -0.15760635e+00 -0.21660415e-01 -0.22601542e+03 0.49767000e+00
- 1 -321 0 0 -0.96741312e-01 0.29959734e+00 -0.18797482e+03 0.49360000e+00
- 1 211 0 0 0.12783900e+00 -0.41377958e-02 -0.14963793e+02 0.13957000e+00
- 1 -211 0 0 0.47700520e+00 0.27910199e+00 -0.69397455e+03 0.13957000e+00
- 2 2224 419 420 -0.33098547e+00 -0.15119297e-01 -0.18891542e+04 0.12851434e+01
- 2 221 421 423 0.11889908e+00 -0.39215352e+00 -0.11106346e+04 0.54745000e+00
- 2 92 206 212 0.00000000e+00 0.00000000e+00 -0.57849054e+01 0.68813264e+01
- 1 -211 0 0 -0.16140434e+00 0.26813799e+00 -0.80070743e+00 0.13957000e+00
- 1 211 0 0 0.58394729e+00 0.20602954e+00 -0.18018681e+01 0.13957000e+00
- 1 -211 0 0 -0.20361204e+00 -0.82247567e-01 0.10029795e-01 0.13957000e+00
- 2 213 424 425 -0.92418248e-01 0.33027079e+00 -0.24389753e+01 0.10383823e+01
- 1 -211 0 0 0.61026205e+00 -0.54402982e+00 -0.54677451e+00 0.13957000e+00
- 1 211 0 0 -0.74454902e+00 0.17494786e+00 0.67818423e+00 0.13957000e+00
- 2 113 426 427 0.77743028e-02 -0.35310880e+00 -0.88479416e+00 0.80945663e+00
- 1 211 0 0 0.22329060e+01 0.45750295e+00 0.49728132e+02 0.13957000e+00
- 1 -211 0 0 0.18628287e+01 0.33651687e+00 0.44100077e+02 0.13957000e+00
- 2 111 428 429 0.91691234e+01 0.25225587e+01 0.21907206e+03 0.13498000e+00
- 1 211 0 0 0.37541652e+00 -0.23114483e+00 0.86140161e+01 0.13957000e+00
- 2 111 430 431 0.93281139e+00 0.38345643e+00 0.40433389e+02 0.13498000e+00
- 2 311 432 432 0.12767277e+01 0.55656044e+00 0.51079243e+02 0.49767000e+00
- 2 111 433 434 -0.11414093e+00 0.27392526e-01 0.12505001e+02 0.13498000e+00
- 1 -321 0 0 0.12305852e+01 -0.22244951e+00 0.29656965e+02 0.49360000e+00
- 2 111 435 436 0.40136206e+00 0.26747111e+00 0.79774391e+01 0.13498000e+00
- 1 321 0 0 0.68488118e+00 0.39453202e+00 0.69420432e+02 0.49360000e+00
- 2 111 437 438 -0.10867414e+00 0.49179649e-01 0.64543638e+01 0.13498000e+00
- 1 -321 0 0 0.70837871e+00 -0.24370485e+00 0.87607670e+02 0.49360000e+00
- 2 111 439 440 -0.29199404e-01 0.13135540e+00 0.79610071e+01 0.13498000e+00
- 1 211 0 0 -0.78545170e-01 0.18791933e+00 0.13001349e+02 0.13957000e+00
- 2 111 441 442 0.59235923e+00 0.31086469e+00 0.12046889e+02 0.13498000e+00
- 1 22 0 0 0.11621662e-01 -0.24867077e-01 0.14221173e+00 0.00000000e+00
- 1 22 0 0 -0.62450093e-01 -0.94835959e-01 0.40038428e+01 0.00000000e+00
- 1 2212 0 0 -0.61792602e+00 -0.24702755e+00 0.43091127e+03 0.93827000e+00
- 1 211 0 0 -0.23261483e+00 0.12612588e+00 0.50871209e+02 0.13957000e+00
- 1 -2112 0 0 0.91766316e-01 0.12020969e+00 0.40860727e+03 0.93957000e+00
- 1 -211 0 0 0.25283770e+00 0.68977160e-01 0.10548636e+03 0.13957000e+00
- 1 130 0 0 -0.29768132e+00 -0.27655640e+00 0.34352575e+03 0.49767000e+00
- 1 211 0 0 -0.42015713e+00 -0.94981465e-01 0.54578334e+03 0.13957000e+00
- 1 -211 0 0 -0.28672414e+00 -0.35766361e+00 0.15284425e+03 0.13957000e+00
- 1 22 0 0 -0.19211448e-02 0.14907142e-01 0.36347052e+00 0.00000000e+00
- 1 22 0 0 0.13981152e+01 0.28920868e+01 0.61862559e+02 0.00000000e+00
- 1 211 0 0 0.17309705e+01 0.18327158e+01 0.34599693e+02 0.13957000e+00
- 2 111 443 444 0.27137865e+00 0.23862091e+00 0.40526773e+01 0.13498000e+00
- 1 -321 0 0 0.13763903e+01 0.26277396e+01 0.45139411e+02 0.49360000e+00
- 2 111 445 446 0.39982589e+00 0.71538106e+00 0.18702452e+02 0.13498000e+00
- 2 311 447 447 0.10711733e+01 0.12149039e+01 0.27208772e+02 0.49767000e+00
- 1 211 0 0 0.66937349e+00 0.13815997e+01 0.31046520e+02 0.13957000e+00
- 1 211 0 0 -0.16387877e+00 0.29870898e+00 0.48708934e+01 0.13957000e+00
- 1 -211 0 0 -0.10404403e+01 0.40937028e+00 0.14098153e+02 0.13957000e+00
- 2 111 448 449 -0.74920872e+00 0.43006322e+00 0.83893412e+01 0.13498000e+00
- 1 -211 0 0 -0.23679168e+01 0.12085587e+01 0.30875790e+02 0.13957000e+00
- 2 111 450 451 -0.53557236e+00 0.46109637e-01 0.39188847e+01 0.13498000e+00
- 1 211 0 0 -0.10454176e+01 0.36040307e+00 0.13675902e+02 0.13957000e+00
- 1 -211 0 0 -0.11542346e+01 0.66186192e+00 0.16785006e+02 0.13957000e+00
- 2 111 452 453 -0.14344257e+01 0.59293655e+00 0.21165078e+02 0.13498000e+00
- 1 211 0 0 -0.64155876e+00 0.11327479e+01 0.10145401e+02 0.13957000e+00
- 1 -211 0 0 -0.16255954e+00 -0.12761890e+00 0.28680430e+01 0.13957000e+00
- 1 211 0 0 -0.28729171e+00 -0.90778111e-01 0.20907538e+01 0.13957000e+00
- 2 111 454 455 -0.22303505e+00 0.65965728e+00 0.77614284e+01 0.13498000e+00
- 1 22 0 0 0.28997466e+00 -0.21921781e+00 0.55749219e+00 0.00000000e+00
- 1 22 0 0 0.22177042e+00 -0.27273499e+00 0.75147483e+00 0.00000000e+00
- 1 -211 0 0 0.28248044e+00 0.11049222e+00 -0.93459924e-01 0.13957000e+00
- 1 211 0 0 -0.29698902e-01 0.13506731e+00 0.19419453e+00 0.13957000e+00
- 2 111 456 457 0.64699356e-01 -0.14164530e+00 -0.96444420e-01 0.13498000e+00
- 1 22 0 0 -0.15783889e+00 -0.12333345e+00 0.13732353e+00 0.00000000e+00
- 1 22 0 0 -0.17875128e+00 -0.73743400e-02 0.21150200e+00 0.00000000e+00
- 2 -3122 458 459 0.32501136e+00 0.22976645e+00 -0.57058401e-01 0.11156800e+01
- 2 111 460 461 -0.16183589e+00 0.11658376e+00 -0.88611943e-01 0.13498000e+00
- 1 -321 0 0 -0.14326115e+00 0.81052131e-01 0.89690077e+00 0.49360000e+00
- 1 211 0 0 -0.25919254e-01 -0.10996482e-02 -0.62269340e-01 0.13957000e+00
- 1 2112 0 0 -0.28833006e-01 -0.58082697e-01 -0.70563483e+00 0.93957000e+00
- 1 -211 0 0 -0.11327926e+00 0.93802909e-02 -0.11825498e+00 0.13957000e+00
- 1 -211 0 0 0.41475682e+00 -0.19684067e+00 -0.15103051e+01 0.13957000e+00
- 1 211 0 0 0.22330100e+00 0.15258720e+00 -0.75030849e+00 0.13957000e+00
- 2 111 462 463 0.28052189e+00 0.17174264e-01 -0.28683305e+00 0.13498000e+00
- 1 211 0 0 -0.95605620e-01 -0.61919355e-02 -0.42022114e+00 0.13957000e+00
- 1 -211 0 0 0.71578649e+00 0.77912425e-01 -0.35392308e+01 0.13957000e+00
- 1 -2112 0 0 0.25528908e+00 0.76649516e-02 -0.58333195e+01 0.93957000e+00
- 1 211 0 0 0.31704043e+00 0.30629931e-01 -0.16623364e+01 0.13957000e+00
- 2 3122 464 465 0.30022415e+00 0.33852902e+00 -0.38087066e+01 0.11156800e+01
- 1 -211 0 0 -0.22088023e-01 0.20079389e+00 -0.96628359e+00 0.13957000e+00
- 2 311 466 466 0.26398549e+00 0.58309573e+00 -0.85662718e+01 0.49767000e+00
- 1 211 0 0 -0.41055311e-01 -0.53392229e-01 -0.45877853e+00 0.13957000e+00
- 1 -321 0 0 0.10124991e+01 0.43614424e+00 -0.25785800e+02 0.49360000e+00
- 2 111 467 468 0.10195497e+00 0.31998634e+00 -0.41272471e+01 0.13498000e+00
- 2 111 469 470 -0.30214343e-01 0.10633809e-01 -0.19506198e+02 0.13498000e+00
- 2 111 471 472 0.17162907e+00 -0.13026595e+00 -0.24305035e+02 0.13498000e+00
- 2 111 473 474 -0.63466784e-01 -0.51875797e-01 -0.31873598e+02 0.13498000e+00
- 1 211 0 0 0.31223979e+00 0.31754099e+00 -0.90130287e+02 0.13957000e+00
- 1 -211 0 0 -0.81333643e-01 0.36377198e+00 -0.37392438e+03 0.13957000e+00
- 1 211 0 0 0.14344950e+00 0.96671817e-02 -0.27595334e+02 0.13957000e+00
- 1 -211 0 0 -0.35329159e-01 -0.72872030e-01 -0.39912952e+02 0.13957000e+00
- 2 111 475 476 -0.34147949e-01 -0.13249233e+00 -0.57295521e+02 0.13498000e+00
- 1 -211 0 0 -0.41059425e+00 0.20788378e+00 -0.47305931e+03 0.13957000e+00
- 2 111 477 478 0.31859461e+00 0.42806434e-01 -0.24943159e+03 0.13498000e+00
- 1 -211 0 0 -0.18295613e+00 -0.57289942e+00 -0.48562041e+02 0.13957000e+00
- 2 111 479 480 -0.53693231e+00 -0.18763585e+00 -0.20824818e+02 0.13498000e+00
- 1 211 0 0 0.55647318e+00 0.51982365e+00 -0.43376637e+02 0.13957000e+00
- 2 111 481 482 -0.14075088e+00 -0.12491110e+00 -0.21767256e+02 0.13498000e+00
- 1 211 0 0 0.15436622e+00 -0.91174426e-01 -0.41968259e+02 0.13957000e+00
- 1 -211 0 0 0.15428572e+00 -0.51906608e+00 -0.22034996e+02 0.13957000e+00
- 2 -311 483 483 0.42285622e-01 0.22950438e+00 -0.51635255e+01 0.49767000e+00
- 1 -211 0 0 -0.38474185e+00 0.71247312e-01 -0.76388328e+01 0.13957000e+00
- 1 321 0 0 0.29374943e+00 0.51548091e-01 -0.24797258e+01 0.49360000e+00
- 1 -211 0 0 -0.27523781e+00 -0.99287453e-02 -0.12658511e+01 0.13957000e+00
- 1 -321 0 0 0.64402041e+00 0.47106511e+00 -0.64589960e+01 0.49360000e+00
- 2 111 484 485 0.77890845e-03 -0.56275703e-01 -0.28809151e+00 0.13498000e+00
- 1 130 0 0 -0.65072416e-01 -0.51438023e+00 -0.11383386e+02 0.49767000e+00
- 2 310 486 487 -0.36614773e-01 -0.35881940e+00 -0.73954448e+01 0.49767000e+00
- 1 22 0 0 -0.11727157e+00 -0.11347561e-01 -0.42188690e+00 0.00000000e+00
- 2 113 488 489 -0.14254647e+00 0.28158070e+00 -0.11377306e+02 0.74313489e+00
- 2 311 490 490 0.14040960e+00 0.10827406e+00 -0.75756796e+01 0.49767000e+00
- 2 111 491 492 0.29268800e+00 0.47258014e+00 -0.54323096e+01 0.13498000e+00
- 1 -211 0 0 -0.60064426e+00 -0.24773530e+00 -0.48378908e+02 0.13957000e+00
- 1 211 0 0 0.24616340e-01 0.23048244e+00 -0.31251187e+02 0.13957000e+00
- 1 2112 0 0 -0.36034146e+00 0.27617289e+00 -0.71427128e+02 0.93957000e+00
- 2 111 493 494 -0.30864243e-01 -0.67307512e-01 -0.84952068e+01 0.13498000e+00
- 1 321 0 0 0.49047840e+00 0.98674354e-01 -0.47732045e+02 0.49360000e+00
- 1 -211 0 0 -0.48071999e-01 0.19120395e+00 -0.70035159e+01 0.13957000e+00
- 1 211 0 0 -0.29766114e+00 -0.71291655e+00 0.99959830e+02 0.13957000e+00
- 2 111 495 496 -0.87034530e-01 0.17442176e+00 0.19666267e+02 0.13498000e+00
- 1 211 0 0 -0.55415993e+00 -0.79061309e+00 0.24669767e+03 0.13957000e+00
- 1 -211 0 0 0.16846964e-01 -0.60237542e-01 0.87968206e+01 0.13957000e+00
- 1 130 0 0 -0.89512723e-01 -0.85248111e+00 0.30666028e+03 0.49767000e+00
- 1 -211 0 0 0.11708298e+00 0.24421856e+00 0.23745193e+02 0.13957000e+00
- 2 111 497 498 0.17467419e-01 -0.38401911e+00 0.92222938e+02 0.13498000e+00
- 1 22 0 0 -0.26613210e+00 0.22061258e+00 0.11353587e+01 0.00000000e+00
- 2 111 499 500 0.96052551e-01 -0.39322614e+00 0.28154566e+01 0.13498000e+00
- 2 111 501 502 0.74609893e-01 0.35051993e-01 0.28231834e+00 0.13498000e+00
- 2 111 503 504 -0.10800715e+00 -0.31942873e-01 0.49974947e+00 0.13498000e+00
- 2 221 505 506 0.20952850e+00 -0.36296444e+00 0.20666036e+01 0.54745000e+00
- 1 211 0 0 0.52337231e+00 -0.77022225e+00 0.36675788e+01 0.13957000e+00
- 2 111 507 508 0.86141925e+00 -0.25222774e+00 0.40356563e+01 0.13498000e+00
- 1 211 0 0 0.15195907e+01 -0.84476206e+00 0.65588121e+01 0.13957000e+00
- 2 111 509 510 -0.43898946e-01 -0.19732373e-01 0.13634552e+01 0.13498000e+00
- 1 22 0 0 0.25927671e+00 -0.98757009e-01 0.46672240e+00 0.00000000e+00
- 1 22 0 0 0.52629916e-01 0.40865850e-01 0.92749655e-01 0.00000000e+00
- 1 211 0 0 -0.20810811e+00 -0.24995342e-01 0.38584488e+00 0.13957000e+00
- 1 -211 0 0 0.78562639e+00 -0.49542253e+00 0.41453591e+01 0.13957000e+00
- 2 3122 511 512 0.10314103e+01 -0.73017618e+00 0.84036181e+01 0.11156800e+01
- 1 -211 0 0 0.26885245e-01 -0.99403595e-01 0.35385494e+00 0.13957000e+00
- 2 -3122 513 514 0.83191188e+00 -0.16117067e+01 0.20396401e+02 0.11156800e+01
- 1 211 0 0 0.28535797e+00 -0.47626529e+00 0.34390396e+01 0.13957000e+00
- 1 22 0 0 0.24680900e-01 0.24428172e-01 0.13191426e+00 0.00000000e+00
- 1 22 0 0 0.90824694e-01 -0.17654038e+00 0.93057905e+00 0.00000000e+00
- 1 -211 0 0 0.84547707e+00 -0.13522502e+01 0.22251443e+02 0.13957000e+00
- 1 211 0 0 0.13903566e+00 -0.56565665e+00 0.44009300e+01 0.13957000e+00
- 1 211 0 0 -0.16154183e+01 -0.11777172e+01 0.38023629e+02 0.13957000e+00
- 2 111 515 516 -0.30753474e+00 0.72135686e-01 0.65304390e+01 0.13498000e+00
- 1 211 0 0 -0.41098703e+00 -0.48325135e+00 0.27501301e+02 0.13957000e+00
- 1 -211 0 0 -0.11805303e+01 -0.12847088e+00 0.23183493e+02 0.13957000e+00
- 1 22 0 0 -0.68120157e+00 -0.48282164e+00 0.25377820e+02 0.00000000e+00
- 1 22 0 0 -0.61110768e+00 -0.34805899e+00 0.24729582e+02 0.00000000e+00
- 1 130 0 0 -0.40390745e+00 -0.40329790e+00 0.10251763e+03 0.49767000e+00
- 2 310 517 518 0.19052092e+00 -0.10068925e+00 0.68688245e+02 0.49767000e+00
- 1 -211 0 0 -0.17606888e+00 0.32992279e+00 0.24150642e+03 0.13957000e+00
- 2 111 519 520 -0.31025610e+00 0.92264711e-01 0.41590895e+02 0.13498000e+00
- 1 22 0 0 0.65090644e-01 0.12766939e-01 0.56006651e+01 0.00000000e+00
- 1 22 0 0 0.22172954e-01 0.72827084e-01 0.14882777e+01 0.00000000e+00
- 1 211 0 0 0.18503128e+01 -0.12249554e+00 0.64140671e+03 0.13957000e+00
- 2 111 521 522 0.62398679e+00 0.93725834e-01 0.12194875e+03 0.13498000e+00
- 1 -211 0 0 0.33680596e+00 0.41254965e+00 0.15960586e+03 0.13957000e+00
- 1 211 0 0 -0.36624782e-02 0.16528961e+00 0.96589438e+01 0.13957000e+00
- 1 211 0 0 -0.14688098e-02 0.53098448e+00 0.33827500e+02 0.13957000e+00
- 1 -211 0 0 0.69490417e+00 0.56288711e+00 0.11243425e+03 0.13957000e+00
- 1 -211 0 0 0.71409813e+00 0.57581318e+00 0.31536013e+02 0.13957000e+00
- 1 211 0 0 0.19360618e+00 0.33711040e+00 0.22377586e+02 0.13957000e+00
- 2 111 523 524 0.13714279e+00 -0.21291412e-01 0.49337666e+01 0.13498000e+00
- 1 -211 0 0 -0.22582534e-01 0.19434978e+00 0.26172257e+02 0.13957000e+00
- 2 111 525 526 -0.31372069e+00 -0.94157896e-01 0.61336924e+01 0.13498000e+00
- 1 211 0 0 -0.34644821e-01 0.54871936e+00 0.61525960e+01 0.13957000e+00
- 2 111 527 528 -0.97643388e-01 0.40873243e+00 0.16783201e+02 0.13498000e+00
- 1 211 0 0 -0.46843430e+00 0.10728262e+01 0.17609920e+02 0.13957000e+00
- 2 111 529 530 0.55519160e-01 0.50552467e+00 0.35285258e+01 0.13498000e+00
- 1 321 0 0 -0.14096799e+01 0.20706554e+01 0.29818369e+02 0.49360000e+00
- 1 -211 0 0 -0.32010698e+00 0.18793046e+00 0.53413482e+01 0.13957000e+00
- 2 -311 531 531 -0.12906167e-01 0.45334190e+00 0.71763155e+01 0.49767000e+00
- 1 -211 0 0 -0.37499981e+00 0.68467917e+00 0.78389213e+01 0.13957000e+00
- 1 211 0 0 -0.33006132e+00 -0.33613317e+00 0.68589964e+01 0.13957000e+00
- 2 111 532 533 0.84729492e-02 0.26572913e-01 0.39162839e+00 0.13498000e+00
- 1 -211 0 0 -0.80012056e+00 0.13179342e+01 0.11609643e+02 0.13957000e+00
- 1 211 0 0 -0.32846573e+00 0.43013697e+00 0.19500115e+01 0.13957000e+00
- 1 -211 0 0 0.17372884e+00 0.79915249e-01 0.47632034e+00 0.13957000e+00
- 1 211 0 0 -0.10875172e+00 0.38197587e+00 0.59647244e+01 0.13957000e+00
- 1 -211 0 0 -0.24551234e+00 0.15703540e-01 0.90559071e-01 0.13957000e+00
- 2 111 534 535 -0.27024021e+00 0.39286610e+00 0.15619078e+01 0.13498000e+00
- 1 211 0 0 -0.44993742e-01 -0.40487931e+00 0.87376643e-01 0.13957000e+00
- 1 -211 0 0 0.80565263e-01 0.99930359e-02 0.93582842e-01 0.13957000e+00
- 2 111 536 537 -0.64166367e-01 0.15718658e+00 0.58423967e-01 0.13498000e+00
- 1 211 0 0 -0.23348091e+01 0.11660272e+01 -0.41323815e+01 0.13957000e+00
- 1 -211 0 0 -0.38461573e+00 0.45842151e+00 -0.50905005e+00 0.13957000e+00
- 1 211 0 0 -0.31846863e+00 -0.54203421e-01 -0.22675288e-01 0.13957000e+00
- 2 111 538 539 -0.33494124e+00 0.30047591e+00 -0.81931907e+00 0.13498000e+00
- 1 22 0 0 -0.38671648e+00 -0.11352155e+00 -0.22685103e+01 0.00000000e+00
- 2 113 540 541 0.54988247e-01 0.35743937e+00 -0.38406574e+01 0.52696252e+00
- 1 211 0 0 -0.28363267e+00 -0.82089519e+00 -0.24337940e+02 0.13957000e+00
- 2 111 542 543 0.22838966e-01 -0.75788375e-01 -0.16710934e+02 0.13498000e+00
- 1 -211 0 0 -0.29568050e+00 -0.70156467e-01 -0.32270347e+01 0.13957000e+00
- 1 211 0 0 0.71441517e-01 -0.18235918e+00 -0.50830191e+01 0.13957000e+00
- 2 111 544 545 -0.10311597e+00 0.14559819e+00 -0.20343518e+01 0.13498000e+00
- 1 -211 0 0 -0.72489016e+00 -0.10198123e+01 -0.18214190e+02 0.13957000e+00
- 2 111 546 547 0.12504058e-01 0.29320927e-01 -0.44061050e+01 0.13498000e+00
- 1 22 0 0 0.40387533e-01 -0.30129188e+00 -0.37629401e+01 0.00000000e+00
- 1 22 0 0 0.68416124e-01 -0.25563347e+00 -0.20745190e+01 0.00000000e+00
- 1 211 0 0 -0.96876663e-01 0.63274743e+00 -0.24397540e+00 0.13957000e+00
- 1 -211 0 0 0.13295561e+00 0.13774144e+00 0.22794494e-01 0.13957000e+00
- 2 111 548 549 -0.14669082e+00 0.47475909e-01 0.69878890e-01 0.13498000e+00
- 1 211 0 0 -0.27300517e+00 -0.20387652e-01 -0.10195803e+01 0.13957000e+00
- 1 -211 0 0 -0.45087444e-01 -0.72921085e+00 -0.14927679e+01 0.13957000e+00
- 1 -211 0 0 0.41357642e+00 0.18022416e+00 -0.12699746e+01 0.13957000e+00
- 1 211 0 0 -0.29584904e+00 0.39785876e+00 -0.15420169e+01 0.13957000e+00
- 1 22 0 0 -0.15033935e+00 0.41009213e-01 -0.97141529e+00 0.00000000e+00
- 1 22 0 0 -0.70900955e+00 -0.87678400e-01 -0.39503730e+01 0.00000000e+00
- 1 130 0 0 0.78168342e+00 -0.44741688e+00 -0.18967318e+02 0.49767000e+00
- 2 -311 550 550 -0.44631560e+00 -0.27058368e+00 -0.17096066e+02 0.49767000e+00
- 1 -211 0 0 -0.11670036e+00 0.32500544e+00 -0.91951481e+01 0.13957000e+00
- 1 2112 0 0 0.12441538e+00 0.44383332e+00 -0.22474761e+03 0.93957000e+00
- 1 211 0 0 0.22290219e+00 0.16608060e-01 -0.12048970e+03 0.13957000e+00
- 1 -2212 0 0 0.25092774e-01 0.28321183e+00 -0.10035782e+03 0.93827000e+00
- 1 211 0 0 -0.10272802e+00 -0.20679991e+00 -0.26162712e+02 0.13957000e+00
- 2 310 551 552 -0.15760635e+00 -0.21660415e-01 -0.22601542e+03 0.49767000e+00
- 1 2212 0 0 -0.26802839e+00 -0.26915818e+00 -0.15785699e+04 0.93827000e+00
- 1 211 0 0 -0.62957081e-01 0.25403888e+00 -0.31058433e+03 0.13957000e+00
- 1 211 0 0 -0.13432072e-01 -0.49016798e-01 -0.15010042e+03 0.13957000e+00
- 1 -211 0 0 0.13926455e+00 -0.29744889e+00 -0.77505399e+03 0.13957000e+00
- 2 111 553 554 -0.69333964e-02 -0.45687831e-01 -0.18548016e+03 0.13498000e+00
- 1 211 0 0 -0.22181413e+00 0.83297196e-01 -0.23275057e+01 0.13957000e+00
- 2 111 555 556 0.12939588e+00 0.24697360e+00 -0.11146960e+00 0.13498000e+00
- 1 -211 0 0 -0.17500389e+00 0.10358312e+00 -0.63465644e+00 0.13957000e+00
- 1 211 0 0 0.18277820e+00 -0.45669191e+00 -0.25013771e+00 0.13957000e+00
- 1 22 0 0 0.27473204e+01 0.80453560e+00 0.66876644e+02 0.00000000e+00
- 1 22 0 0 0.64218030e+01 0.17180231e+01 0.15219542e+03 0.00000000e+00
- 1 22 0 0 0.92095241e+00 0.37162483e+00 0.40167240e+02 0.00000000e+00
- 1 22 0 0 0.11858985e-01 0.11831603e-01 0.26614932e+00 0.00000000e+00
- 2 310 557 558 0.12767277e+01 0.55656044e+00 0.51079243e+02 0.49767000e+00
- 1 22 0 0 -0.36687956e-01 -0.50307782e-01 0.63171681e+01 0.00000000e+00
- 1 22 0 0 -0.77452973e-01 0.77700308e-01 0.61878327e+01 0.00000000e+00
- 1 22 0 0 0.11767046e+00 0.14255368e+00 0.36028446e+01 0.00000000e+00
- 1 22 0 0 0.28369159e+00 0.12491743e+00 0.43745945e+01 0.00000000e+00
- 1 22 0 0 -0.12369669e+00 0.12628732e-01 0.57925885e+01 0.00000000e+00
- 1 22 0 0 0.15022546e-01 0.36550918e-01 0.66177524e+00 0.00000000e+00
- 1 22 0 0 -0.70342816e-01 0.10113760e+00 0.38644757e+01 0.00000000e+00
- 1 22 0 0 0.41143412e-01 0.30217797e-01 0.40965314e+01 0.00000000e+00
- 1 22 0 0 0.56396386e+00 0.31025167e+00 0.10917636e+02 0.00000000e+00
- 1 22 0 0 0.28395367e-01 0.61301382e-03 0.11292539e+01 0.00000000e+00
- 1 22 0 0 0.23721690e+00 0.13510050e+00 0.26230109e+01 0.00000000e+00
- 1 22 0 0 0.34161756e-01 0.10352041e+00 0.14296663e+01 0.00000000e+00
- 1 22 0 0 0.23558485e+00 0.28427739e+00 0.83996436e+01 0.00000000e+00
- 1 22 0 0 0.16424104e+00 0.43110367e+00 0.10302808e+02 0.00000000e+00
- 2 310 559 560 0.10711733e+01 0.12149039e+01 0.27208772e+02 0.49767000e+00
- 1 22 0 0 -0.32716794e+00 0.15679639e+00 0.29418716e+01 0.00000000e+00
- 1 22 0 0 -0.42204079e+00 0.27326683e+00 0.54474696e+01 0.00000000e+00
- 1 22 0 0 -0.22741353e+00 -0.57806259e-02 0.12259401e+01 0.00000000e+00
- 1 22 0 0 -0.30815883e+00 0.51890263e-01 0.26929446e+01 0.00000000e+00
- 1 22 0 0 -0.96489275e+00 0.35216018e+00 0.13325973e+02 0.00000000e+00
- 1 22 0 0 -0.46953300e+00 0.24077637e+00 0.78391047e+01 0.00000000e+00
- 1 22 0 0 -0.12308792e+00 0.37033277e+00 0.35967073e+01 0.00000000e+00
- 1 22 0 0 -0.99947125e-01 0.28932451e+00 0.41647211e+01 0.00000000e+00
- 1 22 0 0 0.41946220e-02 -0.13861425e+00 -0.92755580e-01 0.00000000e+00
- 1 22 0 0 0.60504734e-01 -0.30310460e-02 -0.36888395e-02 0.00000000e+00
- 1 -2112 0 0 0.37727559e+00 0.21348077e+00 -0.82626845e-01 0.93957000e+00
- 2 111 561 562 -0.52264230e-01 0.16285676e-01 0.25568443e-01 0.13498000e+00
- 1 22 0 0 -0.13049652e+00 0.11226776e+00 -0.12171927e+00 0.00000000e+00
- 1 22 0 0 -0.31339365e-01 0.43160040e-02 0.33107325e-01 0.00000000e+00
- 1 22 0 0 0.25922649e+00 0.21422352e-01 -0.18415263e+00 0.00000000e+00
- 1 22 0 0 0.21295391e-01 -0.42480881e-02 -0.10268042e+00 0.00000000e+00
- 1 2212 0 0 0.16636205e+00 0.32777778e+00 -0.30934155e+01 0.93827000e+00
- 1 -211 0 0 0.13386210e+00 0.10751243e-01 -0.71529110e+00 0.13957000e+00
- 1 130 0 0 0.26398549e+00 0.58309573e+00 -0.85662718e+01 0.49767000e+00
- 1 22 0 0 0.10195828e+00 0.16817125e+00 -0.17543151e+01 0.00000000e+00
- 1 22 0 0 -0.33085790e-05 0.15181509e+00 -0.23729320e+01 0.00000000e+00
- 1 22 0 0 -0.38717110e-01 -0.12018367e-01 -0.18855573e+02 0.00000000e+00
- 1 22 0 0 0.85027669e-02 0.22652176e-01 -0.65062526e+00 0.00000000e+00
- 1 22 0 0 0.30466346e-01 -0.38627194e-01 -0.17216726e+01 0.00000000e+00
- 1 22 0 0 0.14116272e+00 -0.91638760e-01 -0.22583362e+02 0.00000000e+00
- 1 22 0 0 -0.10899255e-01 -0.29748118e-01 -0.27512863e+02 0.00000000e+00
- 1 22 0 0 -0.52567529e-01 -0.22127680e-01 -0.43607353e+01 0.00000000e+00
- 1 22 0 0 -0.51596067e-01 -0.11567925e-01 -0.30271374e+02 0.00000000e+00
- 1 22 0 0 0.17448118e-01 -0.12092440e+00 -0.27024147e+02 0.00000000e+00
- 1 22 0 0 0.32200638e+00 0.16909547e-01 -0.22932219e+03 0.00000000e+00
- 1 22 0 0 -0.34117713e-02 0.25896887e-01 -0.20109398e+02 0.00000000e+00
- 1 22 0 0 -0.33153035e+00 -0.18391429e+00 -0.13451593e+02 0.00000000e+00
- 1 22 0 0 -0.20540197e+00 -0.37215577e-02 -0.73732250e+01 0.00000000e+00
- 1 22 0 0 -0.10708354e+00 -0.21659606e-01 -0.14604892e+02 0.00000000e+00
- 1 22 0 0 -0.33667332e-01 -0.10325149e+00 -0.71623636e+01 0.00000000e+00
- 1 130 0 0 0.42285622e-01 0.22950438e+00 -0.51635255e+01 0.49767000e+00
- 1 22 0 0 -0.48967193e-01 0.11704583e-01 -0.17481140e+00 0.00000000e+00
- 1 22 0 0 0.49746102e-01 -0.67980285e-01 -0.11328011e+00 0.00000000e+00
- 1 -211 0 0 -0.15302726e+00 -0.45157326e-01 -0.41298773e+01 0.13957000e+00
- 1 211 0 0 0.11641248e+00 -0.31366207e+00 -0.32655675e+01 0.13957000e+00
- 1 -211 0 0 -0.73431278e-01 0.37173591e+00 -0.30438289e+01 0.13957000e+00
- 1 211 0 0 -0.69115188e-01 -0.90155210e-01 -0.83334773e+01 0.13957000e+00
- 2 310 563 564 0.14040960e+00 0.10827406e+00 -0.75756796e+01 0.49767000e+00
- 1 22 0 0 0.94849223e-01 0.22673232e+00 -0.29126237e+01 0.00000000e+00
- 1 22 0 0 0.19783877e+00 0.24584782e+00 -0.25196859e+01 0.00000000e+00
- 1 22 0 0 -0.70355236e-02 -0.76381311e-01 -0.21891658e+01 0.00000000e+00
- 1 22 0 0 -0.23828719e-01 0.90737994e-02 -0.63060411e+01 0.00000000e+00
- 1 22 0 0 -0.12137676e+00 0.11896769e+00 0.15261273e+02 0.00000000e+00
- 1 22 0 0 0.34342234e-01 0.55454072e-01 0.44049945e+01 0.00000000e+00
- 1 22 0 0 -0.13718757e-02 -0.37148677e+00 0.78266916e+02 0.00000000e+00
- 1 22 0 0 0.18839295e-01 -0.12532342e-01 0.13956021e+02 0.00000000e+00
- 1 22 0 0 0.23961191e-01 -0.19373716e+00 0.93070819e+00 0.00000000e+00
- 1 22 0 0 0.72091360e-01 -0.19948897e+00 0.18847484e+01 0.00000000e+00
- 1 22 0 0 0.19903379e-01 -0.13937048e-01 0.23497727e+00 0.00000000e+00
- 1 22 0 0 0.54706514e-01 0.48989041e-01 0.47341070e-01 0.00000000e+00
- 1 22 0 0 0.30832459e-01 -0.93232629e-02 0.60448560e-01 0.00000000e+00
- 1 22 0 0 -0.13883961e+00 -0.22619610e-01 0.43930091e+00 0.00000000e+00
- 1 22 0 0 0.46637070e-01 0.14522065e+00 0.55318396e+00 0.00000000e+00
- 1 22 0 0 0.16289143e+00 -0.50818509e+00 0.15134196e+01 0.00000000e+00
- 1 22 0 0 0.35167796e+00 -0.55107348e-01 0.13808538e+01 0.00000000e+00
- 1 22 0 0 0.50974129e+00 -0.19712040e+00 0.26548024e+01 0.00000000e+00
- 1 22 0 0 -0.29765340e-01 -0.32663963e-02 0.13342244e+01 0.00000000e+00
- 1 22 0 0 -0.14133606e-01 -0.16465977e-01 0.29230799e-01 0.00000000e+00
- 1 2212 0 0 0.95033911e+00 -0.59269273e+00 0.69403241e+01 0.93827000e+00
- 1 -211 0 0 0.81071147e-01 -0.13748344e+00 0.14632940e+01 0.13957000e+00
- 1 -2212 0 0 0.59220857e+00 -0.13555534e+01 0.16861678e+02 0.93827000e+00
- 1 211 0 0 0.23970331e+00 -0.25615335e+00 0.35347231e+01 0.13957000e+00
- 1 22 0 0 -0.16175964e+00 0.82677395e-01 0.26155628e+01 0.00000000e+00
- 1 22 0 0 -0.14577510e+00 -0.10541709e-01 0.39148761e+01 0.00000000e+00
- 1 -211 0 0 0.10116207e+00 0.32425249e-01 0.56602151e+02 0.13957000e+00
- 1 211 0 0 0.89358849e-01 -0.13311450e+00 0.12086095e+02 0.13957000e+00
- 1 22 0 0 -0.30086776e+00 0.11808893e+00 0.38244174e+02 0.00000000e+00
- 1 22 0 0 -0.93883388e-02 -0.25824215e-01 0.33467210e+01 0.00000000e+00
- 1 22 0 0 0.44878716e+00 0.16835906e-01 0.91977161e+02 0.00000000e+00
- 1 22 0 0 0.17519963e+00 0.76889928e-01 0.29971585e+02 0.00000000e+00
- 1 22 0 0 0.29049920e-01 -0.68677203e-01 0.16708100e+01 0.00000000e+00
- 1 22 0 0 0.10809287e+00 0.47385791e-01 0.32629566e+01 0.00000000e+00
- 1 22 0 0 -0.27118547e+00 -0.12741439e+00 0.50554459e+01 0.00000000e+00
- 1 22 0 0 -0.42535220e-01 0.33256492e-01 0.10782464e+01 0.00000000e+00
- 1 22 0 0 0.30170128e-01 0.12963115e+00 0.45018528e+01 0.00000000e+00
- 1 22 0 0 -0.12781352e+00 0.27910128e+00 0.12281348e+02 0.00000000e+00
- 1 22 0 0 0.77348521e-01 0.49604686e+00 0.33932613e+01 0.00000000e+00
- 1 22 0 0 -0.21829361e-01 0.94778076e-02 0.13526448e+00 0.00000000e+00
- 1 130 0 0 -0.12906167e-01 0.45334190e+00 0.71763155e+01 0.49767000e+00
- 1 22 0 0 -0.71240477e-02 0.32170686e-01 0.39652808e+00 0.00000000e+00
- 1 22 0 0 0.15596997e-01 -0.55977740e-02 -0.48996936e-02 0.00000000e+00
- 1 22 0 0 -0.20481074e+00 0.25501580e+00 0.12398181e+01 0.00000000e+00
- 1 22 0 0 -0.65429468e-01 0.13785030e+00 0.32208971e+00 0.00000000e+00
- 1 22 0 0 0.48636429e-02 -0.23162861e-01 0.40661214e-02 0.00000000e+00
- 1 22 0 0 -0.69030010e-01 0.18034944e+00 0.54357846e-01 0.00000000e+00
- 1 22 0 0 -0.34771656e+00 0.29446348e+00 -0.79571473e+00 0.00000000e+00
- 1 22 0 0 0.12775312e-01 0.60124298e-02 -0.23604344e-01 0.00000000e+00
- 1 -211 0 0 -0.22497880e-02 0.21395528e+00 -0.33595747e+01 0.13957000e+00
- 1 211 0 0 0.57238035e-01 0.14348409e+00 -0.48108265e+00 0.13957000e+00
- 1 22 0 0 -0.10440891e-01 -0.53917466e-01 -0.15462646e+02 0.00000000e+00
- 1 22 0 0 0.33279857e-01 -0.21870909e-01 -0.12482882e+01 0.00000000e+00
- 1 22 0 0 -0.69534110e-01 0.33275405e-01 -0.13574766e+01 0.00000000e+00
- 1 22 0 0 -0.33581864e-01 0.11232279e+00 -0.67687527e+00 0.00000000e+00
- 1 22 0 0 0.37549853e-01 0.17743518e-01 -0.42146140e+01 0.00000000e+00
- 1 22 0 0 -0.25045795e-01 0.11577408e-01 -0.19149100e+00 0.00000000e+00
- 1 22 0 0 -0.66674956e-01 0.62876654e-01 -0.21437046e-01 0.00000000e+00
- 1 22 0 0 -0.80015868e-01 -0.15400745e-01 0.91315936e-01 0.00000000e+00
- 1 130 0 0 -0.44631560e+00 -0.27058368e+00 -0.17096066e+02 0.49767000e+00
- 2 111 565 566 -0.87377866e-01 -0.47481255e-01 -0.20375253e+03 0.13498000e+00
- 2 111 567 568 -0.70228487e-01 0.25820839e-01 -0.22262895e+02 0.13498000e+00
- 1 22 0 0 0.36129902e-01 -0.14168020e-02 -0.14963149e+02 0.00000000e+00
- 1 22 0 0 -0.43063299e-01 -0.44271029e-01 -0.17051701e+03 0.00000000e+00
- 1 22 0 0 0.14659604e-01 -0.15691086e-01 0.53582572e-03 0.00000000e+00
- 1 22 0 0 0.11473627e+00 0.26266468e+00 -0.11200542e+00 0.00000000e+00
- 1 211 0 0 0.93281425e-01 0.12460449e+00 0.83134555e+01 0.13957000e+00
- 1 -211 0 0 0.11834463e+01 0.43195595e+00 0.42765788e+02 0.13957000e+00
- 1 -211 0 0 0.76922024e+00 0.76219169e+00 0.14933726e+02 0.13957000e+00
- 1 211 0 0 0.30195308e+00 0.45271226e+00 0.12275046e+02 0.13957000e+00
- 1 22 0 0 -0.36712128e-01 -0.12359077e-01 -0.51363860e-01 0.00000000e+00
- 1 22 0 0 -0.15552102e-01 0.28644754e-01 0.76932303e-01 0.00000000e+00
- 1 211 0 0 0.12799276e+00 0.25903301e+00 -0.43204599e+01 0.13957000e+00
- 1 -211 0 0 0.12416834e-01 -0.15075895e+00 -0.32552198e+01 0.13957000e+00
- 1 22 0 0 -0.60218942e-02 0.16972151e-01 -0.38580148e+01 0.00000000e+00
- 1 22 0 0 -0.81355972e-01 -0.64453406e-01 -0.19989451e+03 0.00000000e+00
- 1 22 0 0 -0.15527761e-01 0.50131398e-01 -0.18367974e+02 0.00000000e+00
- 1 22 0 0 -0.54700726e-01 -0.24310558e-01 -0.38949216e+01 0.00000000e+00
- 405
- 2 25 2 3 0.14370002e+02 0.21233402e+02 -0.25671646e+03 0.12499811e+03
- 2 23 4 5 -0.49397230e+01 0.91105399e+01 -0.18030669e+03 0.89749029e+02
- 2 23 6 9 0.19309725e+02 0.12122862e+02 -0.76409763e+02 0.29453586e+02
- 1 13 0 0 0.53017186e+01 -0.30146501e+02 -0.14404273e+03 0.10566000e+00
- 1 -13 0 0 -0.10241442e+02 0.39257041e+02 -0.36263964e+02 0.10566000e+00
- 1 -11 0 0 0.45246431e+01 0.19857244e+02 -0.37638578e+02 0.51000000e-03
- 1 22 0 0 0.19058405e+00 -0.10004540e+00 -0.49947188e+00 0.00000000e+00
- 1 11 0 0 0.14594497e+02 -0.76343358e+01 -0.38271710e+02 0.51000000e-03
- 1 22 0 0 0.71280881e-06 -0.48732405e-06 -0.22935931e-05 0.00000000e+00
- 2 2101 46 46 -0.27850827e+00 0.51405340e+00 0.56534252e+04 0.57933000e+00
- 2 21 46 46 0.44663444e+00 0.19739479e+00 0.16545062e+03 0.00000000e+00
- 2 21 46 46 0.20276237e+01 -0.19945121e+01 0.17497753e+03 0.00000000e+00
- 2 21 46 46 0.12190974e+01 0.31013436e-01 0.20876475e+02 0.00000000e+00
- 2 21 46 46 0.21355923e-01 -0.47907743e+00 0.10777386e+02 0.00000000e+00
- 2 21 46 46 -0.90979378e+00 -0.45434744e+01 0.59024496e+02 0.00000000e+00
- 2 21 46 46 -0.44663444e+00 -0.19739479e+00 0.23516634e+00 0.00000000e+00
- 2 21 46 46 -0.37231877e+01 -0.10201549e+01 -0.28327535e+02 0.00000000e+00
- 2 21 46 46 -0.16501492e+01 0.21770229e+00 -0.24021221e+03 0.00000000e+00
- 2 21 46 46 0.16501492e+01 -0.21770229e+00 -0.64045204e+02 0.00000000e+00
- 2 21 46 46 0.37231877e+01 0.10201549e+01 -0.10925566e+03 0.00000000e+00
- 2 21 46 46 -0.70576175e+00 -0.40190618e-01 -0.12947439e+02 0.00000000e+00
- 2 21 46 46 0.79280352e+00 -0.22740745e+01 -0.52617457e+02 0.00000000e+00
- 2 21 46 46 0.27814952e+00 0.12261402e+01 -0.43670562e+02 0.00000000e+00
- 2 21 46 46 0.14588279e+00 0.89378543e-01 -0.38641064e+02 0.00000000e+00
- 2 21 46 46 -0.15958880e+01 -0.10607622e+01 -0.11707884e+03 0.00000000e+00
- 2 21 46 46 0.24252742e+00 -0.16835020e+01 -0.46150586e+03 0.00000000e+00
- 2 2 46 46 0.23501173e+00 -0.62737348e+00 -0.49117182e+03 0.33000000e+00
- 2 2 85 85 0.22925464e+00 0.53375291e+00 0.58729634e+03 0.33000000e+00
- 2 21 85 85 0.97559346e+00 0.27753387e+00 0.76207097e+01 0.00000000e+00
- 2 21 85 85 -0.37999491e+00 -0.48644664e+00 0.16845116e+02 0.00000000e+00
- 2 21 85 85 0.66979247e+00 -0.60238017e-01 0.29118475e+01 0.00000000e+00
- 2 21 85 85 -0.20276237e+01 0.19945121e+01 0.21973752e+03 0.00000000e+00
- 2 21 85 85 -0.21355923e-01 0.47907743e+00 0.26484206e+02 0.00000000e+00
- 2 21 85 85 -0.12190974e+01 -0.31013436e-01 0.82199195e+01 0.00000000e+00
- 2 21 85 85 0.90979378e+00 0.45434744e+01 -0.20833067e+01 0.00000000e+00
- 2 21 85 85 0.96946415e-01 -0.21440663e+00 -0.61892006e+00 0.00000000e+00
- 2 21 85 85 -0.36975307e+01 -0.87170088e+01 -0.15004795e+02 0.00000000e+00
- 2 21 85 85 -0.54718013e+01 -0.68792315e+01 -0.11758883e+02 0.00000000e+00
- 2 21 85 85 -0.33092702e+01 -0.52734063e+01 -0.10012221e+02 0.00000000e+00
- 2 21 85 85 -0.39397825e+00 0.88571811e-01 -0.78156728e+00 0.00000000e+00
- 2 21 85 85 0.68366428e-01 0.86792318e+00 -0.76351821e-01 0.00000000e+00
- 2 21 85 85 -0.28940962e+01 0.29235267e+01 -0.50019276e+01 0.00000000e+00
- 2 2103 85 85 0.62249954e+00 -0.43764183e+00 -0.50132593e+04 0.77133000e+00
- 2 21 128 128 -0.23188363e+00 0.18124540e+01 -0.28580289e+01 0.00000000e+00
- 2 21 128 128 0.23188363e+00 -0.18124540e+01 0.23761390e+02 0.00000000e+00
- 2 92 47 84 0.14725001e+01 -0.10842381e+02 0.44252933e+04 0.63565594e+04
- 1 2112 0 0 -0.22424716e+00 0.22005206e+00 0.46128725e+04 0.93957000e+00
- 1 -2112 0 0 0.40658406e+00 0.72885685e+00 0.85105265e+03 0.93957000e+00
- 1 2212 0 0 0.59484811e+00 -0.82090516e+00 0.28910635e+03 0.93827000e+00
- 2 111 142 143 -0.24739751e+00 0.38921586e-01 0.10545582e+02 0.13498000e+00
- 2 -213 144 145 0.76255337e+00 -0.25983973e+00 0.10084351e+03 0.82908057e+00
- 2 223 146 148 0.83223377e+00 -0.39310583e+00 0.92723026e+02 0.84990748e+00
- 2 113 149 150 0.67095925e+00 -0.22238252e+01 0.50618018e+02 0.10656755e+01
- 1 211 0 0 -0.47574043e+00 -0.34544619e-01 0.19489032e+02 0.13957000e+00
- 2 -323 151 152 0.60639600e+00 -0.12385158e+01 0.17706373e+02 0.90560896e+00
- 2 313 153 154 0.26835995e-01 -0.20014732e+00 0.10206790e+02 0.90178634e+00
- 2 213 155 156 -0.76678371e+00 -0.12878099e+01 0.16752800e+02 0.71506888e+00
- 2 -213 157 158 0.15809635e+00 -0.40606919e+00 0.37812513e+01 0.74135125e+00
- 1 211 0 0 -0.38489707e+00 0.30616892e-01 0.10410769e+01 0.13957000e+00
- 2 223 159 161 0.56907513e+00 -0.75076441e-01 0.54770147e+01 0.78241066e+00
- 2 -2114 162 163 0.38120170e-01 -0.45585401e+00 0.11231746e+01 0.12687151e+01
- 1 -211 0 0 -0.88535498e+00 -0.10242452e+00 0.35961344e+00 0.13957000e+00
- 1 2112 0 0 0.32807759e+00 0.40097731e-01 -0.46543960e+00 0.93957000e+00
- 2 221 164 165 -0.44876659e+00 -0.13697541e+00 -0.16832182e+01 0.54745000e+00
- 2 -313 166 167 -0.11975756e+01 -0.24360589e-02 -0.87465531e+01 0.84794261e+00
- 1 321 0 0 -0.10710702e+00 -0.28238573e+00 -0.43424801e+01 0.49360000e+00
- 2 113 168 169 0.49764429e-01 0.71587585e-01 -0.22143163e+01 0.77223172e+00
- 2 -213 170 171 -0.18709662e+01 -0.52661442e+00 -0.45161856e+02 0.72874704e+00
- 2 -313 172 173 -0.36377728e+00 0.30470116e+00 -0.75484680e+02 0.90626150e+00
- 2 323 174 175 0.86945455e-01 0.34763825e-01 -0.12069822e+02 0.82204183e+00
- 2 -213 176 177 -0.25888886e+00 -0.23706786e+00 -0.20926902e+02 0.69383647e+00
- 2 113 178 179 0.14458573e+01 -0.32783988e+00 -0.69708709e+02 0.54901716e+00
- 2 113 180 181 -0.43557862e+00 0.62062957e+00 -0.83196312e+02 0.52143826e+00
- 2 113 182 183 0.14588477e+01 0.40475830e+00 -0.73760555e+02 0.68264643e+00
- 2 113 184 185 0.28710809e+00 -0.61055736e-01 -0.10722106e+02 0.73965223e+00
- 2 213 186 187 0.16720364e+01 -0.17201401e+01 -0.65327933e+02 0.84530030e+00
- 2 111 188 189 -0.27774184e+00 0.10936974e+01 -0.35097219e+02 0.13498000e+00
- 2 -213 190 191 -0.43183193e-01 -0.54884042e+00 -0.36866803e+02 0.78566638e+00
- 2 -2214 192 193 -0.58257814e+00 -0.52493222e+00 -0.57790960e+02 0.11975158e+01
- 2 213 194 195 0.29114058e+00 -0.75852931e-02 -0.19979472e+02 0.66451309e+00
- 1 2112 0 0 -0.42023401e+00 -0.28923726e+00 -0.14038163e+03 0.93957000e+00
- 2 111 196 197 0.45712113e+00 -0.19966436e+00 -0.12358010e+03 0.13498000e+00
- 2 -311 198 198 -0.43889494e+00 0.24498420e+00 -0.13671608e+03 0.49767000e+00
- 2 323 199 200 0.15961240e+00 -0.23131559e+01 -0.63418230e+03 0.90949416e+00
- 2 92 86 127 -0.15842502e+02 -0.10391021e+02 -0.41894816e+04 0.42120472e+04
- 2 213 201 202 0.49167069e-03 0.42053668e+00 0.25647627e+03 0.75572847e+00
- 2 221 203 205 -0.10212438e+00 0.44795114e+00 0.13873929e+03 0.54745000e+00
- 2 -213 206 207 0.10022420e-01 -0.32954294e+00 0.92192374e+02 0.87012823e+00
- 1 211 0 0 0.57042009e+00 0.46815847e+00 0.88709225e+01 0.13957000e+00
- 1 -211 0 0 -0.28746122e-01 -0.83776266e+00 0.56049037e+02 0.13957000e+00
- 2 213 208 209 0.21384555e+00 0.42803108e+00 0.46938761e+02 0.63224555e+00
- 2 311 210 210 0.50368010e+00 0.52299531e-01 0.66276848e+01 0.49767000e+00
- 2 -323 211 212 -0.63177159e-01 -0.53473295e+00 0.24346021e+02 0.90707950e+00
- 2 3224 213 214 -0.43613713e-02 0.20421645e+00 0.27360229e+02 0.13931142e+01
- 2 -3324 215 216 -0.87478503e+00 0.12716839e+01 0.99891651e+02 0.15513971e+01
- 2 -311 217 217 -0.39382246e+00 0.78209923e+00 0.55659681e+02 0.49767000e+00
- 2 -213 218 219 -0.92583604e+00 -0.31394199e+00 0.28079847e+02 0.76741352e+00
- 2 113 220 221 0.24534712e-02 0.34865734e+00 0.98449070e+01 0.70736110e+00
- 1 211 0 0 0.32126798e+00 0.26949628e+00 0.13076987e+01 0.13957000e+00
- 1 -211 0 0 -0.33661071e+00 -0.28694061e+00 0.86368601e+01 0.13957000e+00
- 1 211 0 0 -0.41718810e+00 0.34028352e+00 0.55475317e+01 0.13957000e+00
- 2 -213 222 223 -0.26618815e-01 0.11809621e+00 0.61777663e+00 0.69476114e+00
- 2 213 224 225 0.11999553e+00 -0.13025756e+00 0.54064497e+00 0.61559821e+00
- 1 -211 0 0 -0.91741654e+00 0.11690284e+01 0.85707084e+00 0.13957000e+00
- 2 323 226 227 0.81779840e+00 0.14132880e+01 -0.46966715e+00 0.90135222e+00
- 2 -313 228 229 0.22008628e+00 0.11002114e-01 -0.90705694e+00 0.97487537e+00
- 2 313 230 231 0.58649303e-01 -0.27130791e+00 -0.17545148e+01 0.88725336e+00
- 2 -323 232 233 -0.11385841e+00 0.63806561e+00 -0.71571999e+00 0.88703880e+00
- 1 2212 0 0 -0.67626422e+00 -0.26284654e+01 -0.46430241e+01 0.93827000e+00
- 1 -2112 0 0 -0.14236491e+01 -0.10805910e+01 -0.22347982e+01 0.93957000e+00
- 1 -211 0 0 -0.14369424e+01 -0.25348458e+01 -0.40711378e+01 0.13957000e+00
- 2 331 234 236 -0.41707259e+01 -0.78060727e+01 -0.14252962e+02 0.95782159e+00
- 2 213 237 238 -0.22445012e+01 -0.23140549e+01 -0.39067630e+01 0.91040238e+00
- 2 331 239 241 -0.12498550e+01 -0.10808103e+01 -0.27457511e+01 0.95779049e+00
- 2 -213 242 243 -0.42478694e+00 -0.10432630e+01 -0.31836916e+01 0.59204140e+00
- 2 223 244 246 -0.10039372e+01 -0.40836160e+00 -0.12481735e+01 0.78332286e+00
- 2 213 247 248 -0.94705089e+00 0.10848364e+01 -0.17510345e+01 0.81257809e+00
- 1 -211 0 0 0.18558959e+00 0.91399523e+00 -0.11812645e+01 0.13957000e+00
- 2 221 249 251 -0.14040690e+00 -0.39745359e-02 -0.23737068e+01 0.54745000e+00
- 2 323 252 253 -0.42524692e+00 0.40752215e-01 -0.14547267e+01 0.79050446e+00
- 2 -311 254 254 -0.27046677e+00 0.34930656e+00 -0.11521101e+01 0.49767000e+00
- 2 111 255 256 -0.64718717e+00 0.13243684e+00 -0.63200551e+00 0.13498000e+00
- 2 221 257 259 -0.41363776e+00 0.78526919e+00 -0.61859408e+01 0.54745000e+00
- 2 -213 260 261 0.29640599e+00 0.11701701e+00 -0.61363955e+02 0.51063816e+00
- 2 213 262 263 -0.41325213e-01 -0.13357885e+00 -0.19793611e+03 0.86386617e+00
- 1 2112 0 0 0.42112156e+00 -0.22219819e+00 -0.29432658e+03 0.93957000e+00
- 2 223 264 266 0.13619910e+00 -0.23682538e+00 -0.44495751e+04 0.78340296e+00
- 2 92 129 141 0.00000000e+00 0.00000000e+00 0.20903361e+02 0.17440820e+02
- 2 -213 267 268 0.23688448e+00 -0.10576533e+00 0.20363345e+01 0.87753718e+00
- 2 213 269 270 -0.46228759e+00 0.86966982e+00 0.10233773e+00 0.51765334e+00
- 2 111 271 272 0.21340401e+00 -0.16107673e+00 0.10931297e+00 0.13498000e+00
- 2 113 273 274 -0.36703683e+00 0.67176204e+00 -0.81243685e+00 0.52237477e+00
- 2 -213 275 276 0.15616647e+00 0.24645675e-01 0.37923795e+00 0.78004560e+00
- 1 211 0 0 -0.41130903e-01 -0.24332497e+00 0.11745574e+01 0.13957000e+00
- 2 -213 277 278 0.60737211e-01 0.67037155e+00 0.13588185e+01 0.76925332e+00
- 2 221 279 280 0.31436851e+00 -0.11770311e+00 -0.98077541e-01 0.54745000e+00
- 2 113 281 282 -0.22966678e+00 -0.78470569e+00 0.29740259e+01 0.82324575e+00
- 1 211 0 0 -0.15802221e+00 -0.17904388e+00 0.59176677e+01 0.13957000e+00
- 2 3112 283 284 0.62312400e+00 0.32137610e-01 0.19619836e+01 0.11974400e+01
- 2 -3112 285 286 -0.11957184e+00 -0.39590055e-01 0.47547277e+01 0.11974400e+01
- 2 223 287 289 -0.22696852e+00 -0.63737691e+00 0.10448712e+01 0.80004466e+00
- 1 22 0 0 -0.73602724e-01 -0.50264708e-01 0.32355749e+01 0.00000000e+00
- 1 22 0 0 -0.17379479e+00 0.89186295e-01 0.73100067e+01 0.00000000e+00
- 1 -211 0 0 0.55432936e+00 -0.35371526e+00 0.37201983e+02 0.13957000e+00
- 2 111 290 291 0.20822401e+00 0.93875528e-01 0.63641523e+02 0.13498000e+00
- 1 -211 0 0 0.32445815e+00 0.12860029e+00 0.24596930e+02 0.13957000e+00
- 1 211 0 0 0.23054382e+00 -0.22139492e+00 0.46500294e+02 0.13957000e+00
- 2 111 292 293 0.27723179e+00 -0.30031120e+00 0.21625801e+02 0.13498000e+00
- 1 -211 0 0 0.46437505e+00 -0.22520149e+01 0.46072315e+02 0.13957000e+00
- 1 211 0 0 0.20658420e+00 0.28189706e-01 0.45457025e+01 0.13957000e+00
- 2 -311 294 294 0.64121069e+00 -0.12613326e+01 0.16464403e+02 0.49767000e+00
- 1 -211 0 0 -0.34814692e-01 0.22816823e-01 0.12419701e+01 0.13957000e+00
- 2 311 295 295 -0.10128478e+00 -0.29507477e+00 0.45319189e+01 0.49767000e+00
- 2 111 296 297 0.12812078e+00 0.94927450e-01 0.56748708e+01 0.13498000e+00
- 1 211 0 0 -0.62120187e+00 -0.82829808e+00 0.80182430e+01 0.13957000e+00
- 2 111 298 299 -0.14558184e+00 -0.45951182e+00 0.87345570e+01 0.13498000e+00
- 1 -211 0 0 0.37818380e+00 -0.24137809e+00 0.13954899e+01 0.13957000e+00
- 2 111 300 301 -0.22008744e+00 -0.16469110e+00 0.23857614e+01 0.13498000e+00
- 1 211 0 0 0.24352181e-01 0.71835898e-01 0.42659308e+00 0.13957000e+00
- 1 -211 0 0 0.29434337e+00 -0.21639955e+00 0.17230533e+01 0.13957000e+00
- 2 111 302 303 0.25037958e+00 0.69487217e-01 0.33273683e+01 0.13498000e+00
- 1 -2112 0 0 0.51816455e-01 -0.44627599e+00 0.12078874e+01 0.93957000e+00
- 2 111 304 305 -0.13696286e-01 -0.95780169e-02 -0.84712752e-01 0.13498000e+00
- 1 22 0 0 -0.27674166e+00 -0.25151517e+00 -0.47086157e+00 0.00000000e+00
- 1 22 0 0 -0.17202493e+00 0.11453976e+00 -0.12123566e+01 0.00000000e+00
- 2 -311 306 306 -0.93885358e+00 -0.24086595e+00 -0.66379214e+01 0.49767000e+00
- 2 111 307 308 -0.25872204e+00 0.23842989e+00 -0.21086317e+01 0.13498000e+00
- 1 -211 0 0 -0.29049752e+00 -0.19407483e-01 -0.15380068e+01 0.13957000e+00
- 1 211 0 0 0.34026195e+00 0.90995068e-01 -0.67630948e+00 0.13957000e+00
- 1 -211 0 0 -0.17495764e+01 -0.47950971e+00 -0.36178410e+02 0.13957000e+00
- 2 111 309 310 -0.12138984e+00 -0.47104710e-01 -0.89834460e+01 0.13498000e+00
- 1 -321 0 0 -0.41708726e+00 -0.15660519e-01 -0.55944695e+02 0.49360000e+00
- 1 211 0 0 0.53309982e-01 0.32036168e+00 -0.19539985e+02 0.13957000e+00
- 2 311 311 311 0.13165902e+00 0.11475429e+00 -0.52813646e+01 0.49767000e+00
- 1 211 0 0 -0.44713564e-01 -0.79990469e-01 -0.67884579e+01 0.13957000e+00
- 1 -211 0 0 -0.44288040e-01 -0.26738457e+00 -0.18190689e+02 0.13957000e+00
- 2 111 312 313 -0.21460082e+00 0.30316709e-01 -0.27362126e+01 0.13498000e+00
- 1 -211 0 0 0.12143328e+01 -0.18627374e+00 -0.61121030e+02 0.13957000e+00
- 1 211 0 0 0.23152451e+00 -0.14156614e+00 -0.85876797e+01 0.13957000e+00
- 1 211 0 0 -0.38217832e+00 0.17519740e+00 -0.35128823e+02 0.13957000e+00
- 1 -211 0 0 -0.53400304e-01 0.44543217e+00 -0.48067489e+02 0.13957000e+00
- 1 211 0 0 0.44983788e+00 0.56930660e-01 -0.36700169e+02 0.13957000e+00
- 1 -211 0 0 0.10090098e+01 0.34782764e+00 -0.37060387e+02 0.13957000e+00
- 1 211 0 0 0.11243813e+00 0.45558308e-01 -0.63325957e+00 0.13957000e+00
- 1 -211 0 0 0.17466996e+00 -0.10661404e+00 -0.10088846e+02 0.13957000e+00
- 1 211 0 0 0.56969542e+00 -0.89215653e+00 -0.20156450e+02 0.13957000e+00
- 2 111 314 315 0.11023410e+01 -0.82798358e+00 -0.45171484e+02 0.13498000e+00
- 1 22 0 0 -0.13278932e+00 0.76724048e+00 -0.24591102e+02 0.00000000e+00
- 1 22 0 0 -0.14495251e+00 0.32645695e+00 -0.10506117e+02 0.00000000e+00
- 1 -211 0 0 0.23389157e+00 -0.51469962e+00 -0.29788324e+02 0.13957000e+00
- 2 111 316 317 -0.27707476e+00 -0.34140798e-01 -0.70784793e+01 0.13498000e+00
- 1 -2212 0 0 -0.24842628e+00 -0.36221702e+00 -0.41992355e+02 0.93827000e+00
- 2 111 318 319 -0.33415186e+00 -0.16271520e+00 -0.15798605e+02 0.13498000e+00
- 1 211 0 0 -0.11126182e+00 0.14804620e-01 -0.12378155e+02 0.13957000e+00
- 2 111 320 321 0.40240240e+00 -0.22389913e-01 -0.76013177e+01 0.13498000e+00
- 1 22 0 0 0.51303364e-01 -0.68918214e-01 -0.15323625e+02 0.00000000e+00
- 1 22 0 0 0.40581776e+00 -0.13074615e+00 -0.10825648e+03 0.00000000e+00
- 2 310 322 323 -0.43889494e+00 0.24498420e+00 -0.13671608e+03 0.49767000e+00
- 2 311 324 324 0.17660886e+00 -0.16549022e+01 -0.37590551e+03 0.49767000e+00
- 1 211 0 0 -0.16996461e-01 -0.65825363e+00 -0.25827679e+03 0.13957000e+00
- 1 211 0 0 0.31091853e+00 0.21534194e-01 0.10339599e+03 0.13957000e+00
- 2 111 325 326 -0.31042686e+00 0.39900248e+00 0.15308028e+03 0.13498000e+00
- 2 111 327 328 -0.74345047e-01 -0.22769646e-02 0.22860332e+02 0.13498000e+00
- 2 111 329 330 0.59877220e-01 0.26765404e+00 0.57241527e+02 0.13498000e+00
- 2 111 331 332 -0.87656558e-01 0.18257407e+00 0.58637434e+02 0.13498000e+00
- 1 -211 0 0 0.84994015e-01 -0.51831399e+00 0.35394536e+02 0.13957000e+00
- 2 111 333 334 -0.74971594e-01 0.18877105e+00 0.56797837e+02 0.13498000e+00
- 1 211 0 0 0.51826401e-01 0.34143946e+00 0.11636357e+02 0.13957000e+00
- 2 111 335 336 0.16201915e+00 0.86591614e-01 0.35302404e+02 0.13498000e+00
- 1 130 0 0 0.50368010e+00 0.52299531e-01 0.66276848e+01 0.49767000e+00
- 2 -311 337 337 0.15094558e+00 -0.83333316e-01 0.10638743e+02 0.49767000e+00
- 1 -211 0 0 -0.21412274e+00 -0.45139964e+00 0.13707277e+02 0.13957000e+00
- 2 3122 338 339 0.42566491e-02 -0.18710945e-01 0.19592777e+02 0.11156800e+01
- 1 211 0 0 -0.86180203e-02 0.22292739e+00 0.77674523e+01 0.13957000e+00
- 2 -3312 340 341 -0.86161614e+00 0.97457814e+00 0.82084465e+02 0.13213000e+01
- 1 -211 0 0 -0.13168891e-01 0.29710579e+00 0.17807185e+02 0.13957000e+00
- 2 310 342 343 -0.39382246e+00 0.78209923e+00 0.55659681e+02 0.49767000e+00
- 1 -211 0 0 -0.19802023e+00 -0.49501338e-01 0.19425563e+01 0.13957000e+00
- 2 111 344 345 -0.72781581e+00 -0.26444065e+00 0.26137290e+02 0.13498000e+00
- 1 211 0 0 0.14137148e+00 0.35172977e+00 0.89929587e+01 0.13957000e+00
- 1 -211 0 0 -0.13891800e+00 -0.30724267e-02 0.85194825e+00 0.13957000e+00
- 1 -211 0 0 0.40551767e-01 0.37651198e+00 0.31580212e+00 0.13957000e+00
- 2 111 346 347 -0.67170581e-01 -0.25841577e+00 0.30197451e+00 0.13498000e+00
- 1 211 0 0 0.14188859e-01 0.21237078e+00 0.17734412e+00 0.13957000e+00
- 2 111 348 349 0.10580667e+00 -0.34262834e+00 0.36330084e+00 0.13498000e+00
- 1 321 0 0 0.19779528e+00 0.91495316e+00 -0.27167826e+00 0.49360000e+00
- 2 111 350 351 0.62000312e+00 0.49833488e+00 -0.19798889e+00 0.13498000e+00
- 1 -321 0 0 0.34234207e+00 -0.21282893e+00 -0.36451580e+00 0.49360000e+00
- 1 211 0 0 -0.12225579e+00 0.22383104e+00 -0.54254115e+00 0.13957000e+00
- 1 321 0 0 -0.36686043e-01 -0.45445740e+00 -0.13917059e+01 0.49360000e+00
- 1 -211 0 0 0.95335345e-01 0.18314948e+00 -0.36280882e+00 0.13957000e+00
- 2 -311 352 352 -0.27160795e+00 0.19875133e+00 -0.48493429e+00 0.49767000e+00
- 1 -211 0 0 0.15774954e+00 0.43931429e+00 -0.23078569e+00 0.13957000e+00
- 1 211 0 0 -0.77400321e+00 -0.14739425e+01 -0.28912368e+01 0.13957000e+00
- 1 -211 0 0 -0.97592869e+00 -0.16944450e+01 -0.28364541e+01 0.13957000e+00
- 2 221 353 355 -0.24207940e+01 -0.46376852e+01 -0.85252710e+01 0.54745000e+00
- 1 211 0 0 -0.71284070e+00 -0.13535196e+01 -0.17368968e+01 0.13957000e+00
- 2 111 356 357 -0.15316605e+01 -0.96053526e+00 -0.21698662e+01 0.13498000e+00
- 2 111 358 359 -0.35061637e+00 -0.12811363e+00 -0.86234055e+00 0.13498000e+00
- 2 111 360 361 -0.20222536e+00 -0.16142329e+00 -0.36281625e+00 0.13498000e+00
- 2 221 362 364 -0.69701325e+00 -0.79127339e+00 -0.15205943e+01 0.54745000e+00
- 1 -211 0 0 -0.15926413e+00 -0.86701967e+00 -0.26122870e+01 0.13957000e+00
- 2 111 365 366 -0.26552280e+00 -0.17624336e+00 -0.57140458e+00 0.13498000e+00
- 1 -211 0 0 0.46377467e-01 -0.92027878e-01 -0.80545187e-01 0.13957000e+00
- 1 211 0 0 -0.36529488e+00 -0.17049476e+00 -0.53770210e+00 0.13957000e+00
- 2 111 367 368 -0.68501979e+00 -0.14583897e+00 -0.62992620e+00 0.13498000e+00
- 1 211 0 0 -0.35799322e+00 -0.22945086e-01 -0.32138585e+00 0.13957000e+00
- 2 111 369 370 -0.58905766e+00 0.11077815e+01 -0.14296486e+01 0.13498000e+00
- 1 211 0 0 0.26126329e-01 0.46019667e-02 -0.34446917e+00 0.13957000e+00
- 1 -211 0 0 -0.17534833e+00 0.56624052e-02 -0.80353764e+00 0.13957000e+00
- 2 111 371 372 0.88151059e-02 -0.14238908e-01 -0.12257000e+01 0.13498000e+00
- 1 321 0 0 -0.17678822e+00 -0.12973819e+00 -0.68514711e+00 0.49360000e+00
- 2 111 373 374 -0.24845870e+00 0.17049040e+00 -0.76957960e+00 0.13498000e+00
- 1 130 0 0 -0.27046677e+00 0.34930656e+00 -0.11521101e+01 0.49767000e+00
- 1 22 0 0 -0.81723074e-01 0.57235706e-01 -0.60599175e-01 0.00000000e+00
- 1 22 0 0 -0.56546410e+00 0.75201134e-01 -0.57140634e+00 0.00000000e+00
- 1 -211 0 0 -0.98719565e-01 0.67008477e-01 -0.16705774e+01 0.13957000e+00
- 1 211 0 0 -0.21813034e+00 0.35722471e+00 -0.23896227e+01 0.13957000e+00
- 2 111 375 376 -0.96787853e-01 0.36103600e+00 -0.21257407e+01 0.13498000e+00
- 1 -211 0 0 -0.76250170e-01 -0.14989530e-01 -0.10248353e+02 0.13957000e+00
- 2 111 377 379 0.37265616e+00 0.13200654e+00 -0.51115602e+02 0.13498000e+00
- 1 211 0 0 -0.71422479e-01 -0.46504260e+00 -0.13673059e+03 0.13957000e+00
- 2 111 380 381 0.30097266e-01 0.33146375e+00 -0.61205529e+02 0.13498000e+00
- 1 -211 0 0 0.27050667e+00 -0.28364032e+00 -0.25203237e+04 0.13957000e+00
- 1 211 0 0 -0.70214761e-01 0.15714947e+00 -0.10386088e+04 0.13957000e+00
- 2 111 382 383 -0.64092817e-01 -0.11033452e+00 -0.89064262e+03 0.13498000e+00
- 1 -211 0 0 0.25705761e+00 -0.44060909e-01 0.13480100e+00 0.13957000e+00
- 2 111 384 385 -0.20173136e-01 -0.61704420e-01 0.19015335e+01 0.13498000e+00
- 1 211 0 0 -0.40182346e+00 0.32992761e+00 0.14066547e+00 0.13957000e+00
- 2 111 386 387 -0.60464128e-01 0.53974221e+00 -0.38327740e-01 0.13498000e+00
- 1 22 0 0 0.74469793e-01 -0.14045026e+00 0.54315787e-01 0.00000000e+00
- 1 22 0 0 0.13893422e+00 -0.20626470e-01 0.54997181e-01 0.00000000e+00
- 1 -211 0 0 -0.19457005e+00 0.52738115e+00 -0.77129536e+00 0.13957000e+00
- 1 211 0 0 -0.17246678e+00 0.14438089e+00 -0.41141485e-01 0.13957000e+00
- 1 -211 0 0 -0.16989471e+00 -0.17784332e+00 0.38135985e+00 0.13957000e+00
- 2 111 388 389 0.32606118e+00 0.20248899e+00 -0.21219014e-02 0.13498000e+00
- 1 -211 0 0 0.27616246e+00 0.56838359e+00 0.12461666e+01 0.13957000e+00
- 2 111 390 391 -0.21542524e+00 0.10198796e+00 0.11265191e+00 0.13498000e+00
- 1 22 0 0 -0.60129103e-01 -0.21432271e+00 0.61949126e-01 0.00000000e+00
- 1 22 0 0 0.37449761e+00 0.96619594e-01 -0.16002667e+00 0.00000000e+00
- 1 -211 0 0 0.23196100e+00 -0.25480616e+00 0.16011785e+01 0.13957000e+00
- 1 211 0 0 -0.46162778e+00 -0.52989953e+00 0.13728474e+01 0.13957000e+00
- 1 2112 0 0 0.44804310e+00 0.13692183e+00 0.18072226e+01 0.93957000e+00
- 1 -211 0 0 0.17508089e+00 -0.10478422e+00 0.15476093e+00 0.13957000e+00
- 1 -2112 0 0 0.89826342e-01 0.63197800e-02 0.39022907e+01 0.93957000e+00
- 1 211 0 0 -0.20939818e+00 -0.45909835e-01 0.85243699e+00 0.13957000e+00
- 1 -211 0 0 -0.15949484e+00 -0.17935748e+00 0.52129578e+00 0.13957000e+00
- 1 211 0 0 0.39453837e-01 -0.48645236e+00 0.50083100e+00 0.13957000e+00
- 2 111 392 393 -0.10692752e+00 0.28432929e-01 0.22744417e-01 0.13498000e+00
- 1 22 0 0 0.20572534e+00 0.11919156e+00 0.59485977e+02 0.00000000e+00
- 1 22 0 0 0.24986671e-02 -0.25316033e-01 0.41555460e+01 0.00000000e+00
- 1 22 0 0 -0.12713485e-01 -0.53825237e-02 0.36565222e+00 0.00000000e+00
- 1 22 0 0 0.28994528e+00 -0.29492868e+00 0.21260149e+02 0.00000000e+00
- 1 130 0 0 0.64121069e+00 -0.12613326e+01 0.16464403e+02 0.49767000e+00
- 1 130 0 0 -0.10128478e+00 -0.29507477e+00 0.45319189e+01 0.49767000e+00
- 1 22 0 0 0.25153433e-01 0.47724947e-01 0.38245171e+01 0.00000000e+00
- 1 22 0 0 0.10296734e+00 0.47202503e-01 0.18503537e+01 0.00000000e+00
- 1 22 0 0 -0.43451077e-01 -0.26505302e-01 0.13346216e+01 0.00000000e+00
- 1 22 0 0 -0.10213076e+00 -0.43300651e+00 0.73999355e+01 0.00000000e+00
- 1 22 0 0 -0.67985130e-01 -0.15752399e-01 0.26931118e+00 0.00000000e+00
- 1 22 0 0 -0.15210231e+00 -0.14893870e+00 0.21164502e+01 0.00000000e+00
- 1 22 0 0 0.27389800e-01 0.67359963e-03 0.81527647e-01 0.00000000e+00
- 1 22 0 0 0.22298978e+00 0.68813617e-01 0.32458407e+01 0.00000000e+00
- 1 22 0 0 0.12462687e-01 0.59101428e-01 -0.52358234e-01 0.00000000e+00
- 1 22 0 0 -0.26158972e-01 -0.68679445e-01 -0.32354518e-01 0.00000000e+00
- 2 310 394 395 -0.93885358e+00 -0.24086595e+00 -0.66379214e+01 0.49767000e+00
- 1 22 0 0 -0.17781008e+00 0.23121721e+00 -0.15091290e+01 0.00000000e+00
- 1 22 0 0 -0.80911954e-01 0.72126798e-02 -0.59950272e+00 0.00000000e+00
- 1 22 0 0 -0.97464455e-01 0.33815386e-01 -0.49490751e+01 0.00000000e+00
- 1 22 0 0 -0.23925388e-01 -0.80920096e-01 -0.40343709e+01 0.00000000e+00
- 1 130 0 0 0.13165902e+00 0.11475429e+00 -0.52813646e+01 0.49767000e+00
- 1 22 0 0 -0.22829693e+00 0.11708944e-01 -0.25904964e+01 0.00000000e+00
- 1 22 0 0 0.13696115e-01 0.18607765e-01 -0.14571618e+00 0.00000000e+00
- 1 22 0 0 0.72952390e+00 -0.47890038e+00 -0.27352033e+02 0.00000000e+00
- 1 22 0 0 0.37281711e+00 -0.34908320e+00 -0.17819450e+02 0.00000000e+00
- 1 22 0 0 -0.13969663e+00 -0.81540743e-01 -0.32331066e+01 0.00000000e+00
- 1 22 0 0 -0.13737813e+00 0.47399945e-01 -0.38453727e+01 0.00000000e+00
- 1 22 0 0 -0.32536028e+00 -0.15212197e+00 -0.15685687e+02 0.00000000e+00
- 1 22 0 0 -0.87915847e-02 -0.10593238e-01 -0.11291788e+00 0.00000000e+00
- 1 22 0 0 0.82671171e-01 0.14693870e-02 -0.78625018e+00 0.00000000e+00
- 1 22 0 0 0.31973122e+00 -0.23859300e-01 -0.68150675e+01 0.00000000e+00
- 1 -211 0 0 0.39130366e-01 -0.13152239e-01 -0.31017170e+02 0.13957000e+00
- 1 211 0 0 -0.47802530e+00 0.25813644e+00 -0.10569891e+03 0.13957000e+00
- 1 130 0 0 0.17660886e+00 -0.16549022e+01 -0.37590551e+03 0.49767000e+00
- 1 22 0 0 0.63630585e-02 0.54515140e-01 0.17888589e+02 0.00000000e+00
- 1 22 0 0 -0.31678992e+00 0.34448734e+00 0.13519169e+03 0.00000000e+00
- 1 22 0 0 0.31829997e-02 -0.57655216e-01 0.99877824e+01 0.00000000e+00
- 1 22 0 0 -0.77528046e-01 0.55378251e-01 0.12872550e+02 0.00000000e+00
- 1 22 0 0 0.41776409e-01 0.79993713e-02 0.11168244e+02 0.00000000e+00
- 1 22 0 0 0.18100811e-01 0.25965466e+00 0.46073283e+02 0.00000000e+00
- 1 22 0 0 0.31061029e-01 0.82340716e-01 0.21442810e+02 0.00000000e+00
- 1 22 0 0 -0.11871759e+00 0.10023335e+00 0.37194624e+02 0.00000000e+00
- 1 22 0 0 -0.97596368e-01 0.19621337e+00 0.52528606e+02 0.00000000e+00
- 1 22 0 0 0.22624774e-01 -0.74423232e-02 0.42692314e+01 0.00000000e+00
- 1 22 0 0 -0.23839721e-01 0.17758093e-01 0.48377497e+01 0.00000000e+00
- 1 22 0 0 0.18585887e+00 0.68833521e-01 0.30464654e+02 0.00000000e+00
- 1 130 0 0 0.15094558e+00 -0.83333316e-01 0.10638743e+02 0.49767000e+00
- 1 2112 0 0 0.31077198e-01 -0.11598256e+00 0.16730067e+02 0.93957000e+00
- 2 111 396 397 -0.26820549e-01 0.97271614e-01 0.28627100e+01 0.13498000e+00
- 2 -3122 398 399 -0.79789020e+00 0.80680065e+00 0.65238296e+02 0.11156800e+01
- 1 211 0 0 -0.63725946e-01 0.16777748e+00 0.16846170e+02 0.13957000e+00
- 1 211 0 0 -0.13187206e+00 0.67928151e-01 0.18131122e+02 0.13957000e+00
- 1 -211 0 0 -0.26195040e+00 0.71417108e+00 0.37528559e+02 0.13957000e+00
- 1 22 0 0 -0.19411122e+00 -0.98235419e-02 0.61328214e+01 0.00000000e+00
- 1 22 0 0 -0.53370459e+00 -0.25461711e+00 0.20004469e+02 0.00000000e+00
- 1 22 0 0 0.21460739e-01 -0.13263892e+00 0.19836123e+00 0.00000000e+00
- 1 22 0 0 -0.88631321e-01 -0.12577685e+00 0.10361328e+00 0.00000000e+00
- 1 22 0 0 0.41982570e-01 -0.30680785e+00 0.30190005e+00 0.00000000e+00
- 1 22 0 0 0.63824103e-01 -0.35820486e-01 0.61400792e-01 0.00000000e+00
- 1 22 0 0 0.17385152e+00 0.10854862e+00 0.35217058e-02 0.00000000e+00
- 1 22 0 0 0.44615160e+00 0.38978627e+00 -0.20151060e+00 0.00000000e+00
- 1 130 0 0 -0.27160795e+00 0.19875133e+00 -0.48493429e+00 0.49767000e+00
- 1 -211 0 0 -0.58637584e+00 -0.99716089e+00 -0.18325562e+01 0.13957000e+00
- 1 211 0 0 -0.15441063e+01 -0.30536493e+01 -0.55292172e+01 0.13957000e+00
- 2 111 400 401 -0.29031190e+00 -0.58687503e+00 -0.11634977e+01 0.13498000e+00
- 1 22 0 0 -0.11898546e+01 -0.75118448e+00 -0.17727860e+01 0.00000000e+00
- 1 22 0 0 -0.34180598e+00 -0.20935078e+00 -0.39708018e+00 0.00000000e+00
- 1 22 0 0 -0.19641355e+00 -0.54509902e-01 -0.62107755e+00 0.00000000e+00
- 1 22 0 0 -0.15420282e+00 -0.73603724e-01 -0.24126300e+00 0.00000000e+00
- 1 22 0 0 0.11871030e-01 -0.44305232e-01 -0.39381495e-01 0.00000000e+00
- 1 22 0 0 -0.21409639e+00 -0.11711806e+00 -0.32343475e+00 0.00000000e+00
- 1 -211 0 0 -0.40216584e-01 -0.11672628e+00 -0.18298035e+00 0.13957000e+00
- 1 211 0 0 -0.31697013e+00 -0.44641991e+00 -0.71385461e+00 0.13957000e+00
- 2 111 402 403 -0.33982654e+00 -0.22812720e+00 -0.62375934e+00 0.13498000e+00
- 1 22 0 0 -0.75038566e-01 -0.96509708e-02 -0.56857934e-01 0.00000000e+00
- 1 22 0 0 -0.19048424e+00 -0.16659239e+00 -0.51454665e+00 0.00000000e+00
- 1 22 0 0 -0.52287791e+00 -0.74179228e-01 -0.52957000e+00 0.00000000e+00
- 1 22 0 0 -0.16214188e+00 -0.71659743e-01 -0.10035619e+00 0.00000000e+00
- 1 22 0 0 -0.54236238e+00 0.10773322e+01 -0.13670314e+01 0.00000000e+00
- 1 22 0 0 -0.46695287e-01 0.30449275e-01 -0.62617217e-01 0.00000000e+00
- 1 22 0 0 0.85830725e-02 0.26012768e-01 -0.51480807e-01 0.00000000e+00
- 1 22 0 0 0.23203335e-03 -0.40251675e-01 -0.11742192e+01 0.00000000e+00
- 1 22 0 0 -0.19121816e+00 0.65574479e-01 -0.38713889e+00 0.00000000e+00
- 1 22 0 0 -0.57240541e-01 0.10491593e+00 -0.38244071e+00 0.00000000e+00
- 1 22 0 0 0.57288618e-02 -0.35131770e-02 -0.52437958e-02 0.00000000e+00
- 1 22 0 0 -0.10251672e+00 0.36454918e+00 -0.21204969e+01 0.00000000e+00
- 1 22 0 0 0.21199380e+00 0.35781391e-02 -0.25674101e+02 0.00000000e+00
- 1 11 0 0 0.13150556e+00 0.10538469e+00 -0.20966331e+02 0.51000000e-03
- 1 -11 0 0 0.29156800e-01 0.23043716e-01 -0.44751700e+01 0.51000000e-03
- 1 22 0 0 0.26392128e-01 0.10301768e+00 -0.31314948e+02 0.00000000e+00
- 1 22 0 0 0.37051378e-02 0.22844607e+00 -0.29890580e+02 0.00000000e+00
- 1 22 0 0 -0.54429921e-01 -0.81719333e-01 -0.85746470e+03 0.00000000e+00
- 1 22 0 0 -0.96628956e-02 -0.28615190e-01 -0.33177927e+02 0.00000000e+00
- 1 22 0 0 0.36848758e-01 -0.43206247e-01 0.33768982e+00 0.00000000e+00
- 1 22 0 0 -0.57021894e-01 -0.18498173e-01 0.15638437e+01 0.00000000e+00
- 1 22 0 0 -0.46001155e-01 0.22588296e+00 0.47251435e-01 0.00000000e+00
- 1 22 0 0 -0.14462974e-01 0.31385925e+00 -0.85579175e-01 0.00000000e+00
- 1 22 0 0 0.14257888e+00 0.88147255e-01 -0.67948975e-01 0.00000000e+00
- 1 22 0 0 0.18348230e+00 0.11434174e+00 0.65827074e-01 0.00000000e+00
- 1 22 0 0 -0.22713847e+00 0.11384303e+00 0.11579723e+00 0.00000000e+00
- 1 22 0 0 0.11713229e-01 -0.11855070e-01 -0.31453188e-02 0.00000000e+00
- 1 22 0 0 -0.71573520e-01 0.81158621e-01 0.29523410e-01 0.00000000e+00
- 1 22 0 0 -0.35354003e-01 -0.52725692e-01 -0.67789935e-02 0.00000000e+00
- 1 211 0 0 -0.58294051e+00 -0.18074623e+00 -0.27883359e+01 0.13957000e+00
- 1 -211 0 0 -0.35591307e+00 -0.60119722e-01 -0.38495855e+01 0.13957000e+00
- 1 22 0 0 -0.47047397e-01 0.10806426e+00 0.14538388e+01 0.00000000e+00
- 1 22 0 0 0.20226849e-01 -0.10792649e-01 0.14088712e+01 0.00000000e+00
- 1 -2112 0 0 -0.73259719e+00 0.62043783e+00 0.57597886e+02 0.93957000e+00
- 2 111 404 405 -0.65293002e-01 0.18636282e+00 0.76404095e+01 0.13498000e+00
- 1 22 0 0 -0.13230227e+00 -0.21194072e+00 -0.32548629e+00 0.00000000e+00
- 1 22 0 0 -0.15800963e+00 -0.37493431e+00 -0.83801138e+00 0.00000000e+00
- 1 22 0 0 -0.37999161e-01 0.80093531e-03 -0.13230696e+00 0.00000000e+00
- 1 22 0 0 -0.30182738e+00 -0.22892814e+00 -0.49145238e+00 0.00000000e+00
- 1 22 0 0 0.36629621e-01 0.49068384e-01 0.13044762e+01 0.00000000e+00
- 1 22 0 0 -0.10192262e+00 0.13729444e+00 0.63359333e+01 0.00000000e+00
- 533
- 2 25 2 3 -0.36343999e+02 -0.61612196e+02 -0.32370331e+03 0.12499875e+03
- 2 23 6 9 -0.24374409e+02 -0.28442518e+02 -0.20771290e+03 0.92355096e+02
- 2 23 4 5 -0.11969591e+02 -0.33169678e+02 -0.11599040e+03 0.25624635e+02
- 1 13 0 0 -0.10442021e+02 -0.32602019e+02 -0.70309978e+02 0.10566000e+00
- 1 -13 0 0 -0.15275698e+01 -0.56765871e+00 -0.45680425e+02 0.10566000e+00
- 1 11 0 0 -0.95773078e+01 -0.51365415e+02 -0.57417680e+02 0.51000000e-03
- 1 22 0 0 -0.47809421e+01 0.74012792e+01 -0.48457508e+02 0.00000000e+00
- 1 -11 0 0 -0.61082850e+01 0.94659982e+01 -0.62106836e+02 0.51000000e-03
- 1 22 0 0 -0.39078738e+01 0.60556194e+01 -0.39730880e+02 0.00000000e+00
- 2 1 61 61 0.15291299e+02 0.20362707e+02 0.24121216e+03 0.33000000e+00
- 2 21 61 61 0.83136098e+01 0.13562218e+02 0.14733417e+03 0.00000000e+00
- 2 21 61 61 0.12374479e+01 0.30447769e+01 0.64236028e+02 0.00000000e+00
- 2 21 61 61 0.47689477e+01 0.15211223e+02 0.26539269e+03 0.00000000e+00
- 2 21 61 61 0.27859355e+01 0.28173954e+01 0.67486651e+02 0.00000000e+00
- 2 21 61 61 0.35844547e+00 0.16941699e+01 0.59938268e+01 0.00000000e+00
- 2 21 61 61 0.94984209e-02 -0.82250195e-01 0.25086143e+01 0.00000000e+00
- 2 21 61 61 -0.28160688e+01 -0.56996616e+01 -0.14323444e+01 0.00000000e+00
- 2 21 61 61 -0.55680073e+01 0.97935034e+00 -0.17281010e+01 0.00000000e+00
- 2 21 61 61 0.28733725e+01 0.19991856e+01 -0.24046263e+00 0.00000000e+00
- 2 21 61 61 0.10435440e+01 0.25141328e+01 0.83917230e+00 0.00000000e+00
- 2 21 61 61 0.28160688e+01 0.56996616e+01 0.81147828e+01 0.00000000e+00
- 2 21 61 61 -0.19293875e+01 0.15696909e+01 0.10949173e+02 0.00000000e+00
- 2 21 61 61 0.25631663e+00 0.49086433e+00 0.44149808e+01 0.00000000e+00
- 2 21 61 61 -0.16580293e+01 0.43486677e+01 0.70766277e+02 0.00000000e+00
- 2 21 61 61 0.19013451e+01 0.19040413e+01 0.11266285e+03 0.00000000e+00
- 2 21 61 61 -0.19013451e+01 -0.19040413e+01 0.94156633e+03 0.00000000e+00
- 2 21 61 61 0.19293875e+01 -0.15696909e+01 0.13107252e+03 0.00000000e+00
- 2 21 61 61 -0.28733725e+01 -0.19991856e+01 0.48133316e+01 0.00000000e+00
- 2 21 61 61 0.16580293e+01 -0.43486677e+01 0.43939494e+01 0.00000000e+00
- 2 21 61 61 -0.25631663e+00 -0.49086433e+00 -0.15578034e+01 0.00000000e+00
- 2 21 61 61 -0.26511348e+00 -0.43387197e+00 -0.49778090e+01 0.00000000e+00
- 2 21 61 61 0.34164206e+01 -0.67802175e+00 -0.71646103e+02 0.00000000e+00
- 2 21 61 61 0.55680073e+01 -0.97935034e+00 -0.29198029e+03 0.00000000e+00
- 2 21 61 61 0.25552109e+00 -0.21508984e+00 -0.31644323e+02 0.00000000e+00
- 2 2203 61 61 -0.15265338e+01 0.10342610e+00 -0.47856156e+04 0.77133000e+00
- 2 2203 142 142 -0.73940323e+00 -0.30506961e+01 0.45155874e+04 0.77133000e+00
- 2 21 142 142 0.20377690e+01 0.11813797e+01 0.25886374e+03 0.00000000e+00
- 2 21 142 142 0.27135731e+01 0.21975397e+01 0.11310346e+03 0.00000000e+00
- 2 21 142 142 -0.38651501e+00 -0.18550639e+01 -0.30153163e+01 0.00000000e+00
- 2 21 142 142 0.98891776e+00 -0.42304526e+01 -0.68612001e+01 0.00000000e+00
- 2 21 142 142 0.92581368e+00 -0.59180787e+00 -0.16511214e+01 0.00000000e+00
- 2 21 142 142 0.38651501e+00 0.18550639e+01 -0.14639521e+02 0.00000000e+00
- 2 21 142 142 -0.25552109e+00 0.21508984e+00 -0.40692203e+01 0.00000000e+00
- 2 21 142 142 0.26511348e+00 0.43387197e+00 -0.53473663e+01 0.00000000e+00
- 2 21 142 142 -0.29380605e-01 0.46484340e+00 -0.39574325e+02 0.00000000e+00
- 2 21 142 142 -0.98891776e+00 0.42304526e+01 -0.22269153e+03 0.00000000e+00
- 2 21 142 142 -0.92581368e+00 0.59180787e+00 -0.52318777e+02 0.00000000e+00
- 2 21 142 142 -0.34164206e+01 0.67802175e+00 -0.32522404e+03 0.00000000e+00
- 2 21 142 142 0.29380605e-01 -0.46484340e+00 -0.10653740e+03 0.00000000e+00
- 2 21 142 142 -0.10435440e+01 -0.25141328e+01 -0.32377049e+03 0.00000000e+00
- 2 21 142 142 0.51064270e+00 -0.30652182e+00 -0.74849408e+00 0.00000000e+00
- 2 21 142 142 0.12386259e-01 -0.76129305e+00 -0.39115949e+01 0.00000000e+00
- 2 21 142 142 0.25264695e+01 0.32647934e+01 -0.64119656e+02 0.00000000e+00
- 2 21 142 142 0.98734223e-01 0.52265115e+00 -0.18299487e+02 0.00000000e+00
- 2 21 142 142 -0.56660013e+00 -0.10567512e-01 -0.97551568e+01 0.00000000e+00
- 2 21 142 142 -0.54772110e+00 -0.85413894e+00 -0.11483200e+03 0.00000000e+00
- 2 21 142 142 -0.76732444e+00 0.41808901e+00 -0.47752853e+02 0.00000000e+00
- 2 21 142 142 0.65573889e+00 0.91270824e+00 -0.21067261e+02 0.00000000e+00
- 2 21 142 142 0.37310540e+00 0.97489156e+00 -0.13227186e+02 0.00000000e+00
- 2 1 142 142 -0.12020208e+01 0.40969399e+00 -0.57371939e+02 0.33000000e+00
- 2 92 62 141 0.35689022e+02 0.57900816e+02 -0.31070654e+04 0.66036203e+04
- 2 1114 196 197 0.11393317e+02 0.16235039e+02 0.18735186e+03 0.11091155e+01
- 1 211 0 0 0.23260632e+01 0.30510848e+01 0.33469052e+02 0.13957000e+00
- 1 -2212 0 0 0.25203018e+01 0.30255426e+01 0.41989159e+02 0.93827000e+00
- 2 323 198 199 0.35569949e+01 0.57947084e+01 0.69892615e+02 0.87688967e+00
- 1 -321 0 0 0.13725653e+01 0.26394625e+01 0.28129123e+02 0.49360000e+00
- 2 323 200 201 0.18151792e+01 0.26291891e+01 0.29942596e+02 0.87321095e+00
- 2 -311 202 202 0.16974099e+01 0.34133395e+01 0.55245022e+02 0.49767000e+00
- 2 221 203 205 0.59370741e+00 0.23760799e+01 0.40413606e+02 0.54745000e+00
- 1 -211 0 0 0.25993150e+01 0.59049357e+01 0.10491294e+03 0.13957000e+00
- 2 323 206 207 0.99737102e+00 0.15005887e+01 0.38248290e+02 0.89764158e+00
- 2 221 208 210 0.15583565e+01 0.50401485e+01 0.81812162e+02 0.54745000e+00
- 2 333 211 212 0.14265112e+01 0.26904615e+01 0.58279511e+02 0.10247017e+01
- 2 333 213 214 0.19857098e+00 0.12329280e+01 0.11627712e+02 0.10253812e+01
- 2 -323 215 216 0.72907601e+00 0.20110732e+00 0.82844033e+01 0.82422293e+00
- 1 321 0 0 -0.17804078e+00 0.79357470e-01 0.24645704e+00 0.49360000e+00
- 2 -323 217 218 -0.56564036e-01 0.54084774e-01 0.14097459e+01 0.85975379e+00
- 2 223 219 221 -0.77180394e-01 0.14974148e+00 0.21419676e+01 0.77564877e+00
- 2 213 222 223 -0.13250983e+00 -0.39903584e+00 0.28178053e+00 0.60625386e+00
- 1 -211 0 0 -0.18161981e+00 -0.15000242e+00 0.18398169e+00 0.13957000e+00
- 2 221 224 225 -0.23907077e+00 -0.10936078e+01 -0.54278249e+00 0.54745000e+00
- 2 113 226 227 -0.23839781e+01 -0.28878975e+01 -0.15503775e-01 0.76337110e+00
- 2 111 228 229 -0.16865394e+01 0.42302558e+00 -0.94473303e+00 0.13498000e+00
- 1 211 0 0 -0.94903276e-01 0.76328520e-01 0.22646130e+00 0.13957000e+00
- 2 113 230 231 -0.14377444e+00 -0.51745981e+00 -0.64066751e+00 0.68156558e+00
- 2 111 232 233 -0.76212472e+00 0.42851830e+00 -0.12089042e+00 0.13498000e+00
- 2 111 234 235 -0.17137739e+00 -0.24766507e+00 -0.73545567e-01 0.13498000e+00
- 2 111 236 237 -0.94498706e+00 0.26871466e+00 -0.72834811e-01 0.13498000e+00
- 1 -211 0 0 -0.91105341e+00 0.25072149e+00 -0.57357054e+00 0.13957000e+00
- 2 323 238 239 0.18506968e+01 0.17971801e+01 0.43502734e+00 0.87695309e+00
- 1 -321 0 0 0.48747176e+00 0.88965281e+00 0.28107458e+00 0.49360000e+00
- 2 113 240 241 0.66616904e+00 0.54313995e+00 0.16222709e+00 0.83933961e+00
- 2 111 242 243 0.29045465e+00 0.87266544e+00 0.34064007e+00 0.13498000e+00
- 2 213 244 245 0.91528527e+00 0.17179439e+01 0.24449429e+01 0.74178760e+00
- 2 111 246 247 0.57161123e+00 0.15093870e+01 0.15439098e+01 0.13498000e+00
- 2 1114 248 249 -0.21211810e-02 0.32623129e+00 0.25130795e+01 0.12575827e+01
- 2 213 250 251 0.73849145e+00 0.26473036e+01 0.45936265e+01 0.67352523e+00
- 2 -2214 252 253 -0.50046463e-01 0.97164617e+00 0.43262121e+01 0.12678993e+01
- 2 111 254 255 -0.10738514e+00 0.56874625e+00 0.17453211e+02 0.13498000e+00
- 2 213 256 257 -0.96238565e+00 0.18230827e+01 0.17025132e+02 0.74928000e+00
- 2 223 258 260 -0.38140004e-01 0.56718801e-01 0.14767400e+02 0.73376815e+00
- 2 1114 261 262 -0.14509891e+00 0.97454562e+00 0.23448868e+02 0.12412997e+01
- 2 221 263 265 0.36988661e+00 0.10950080e+01 0.26365916e+02 0.54745000e+00
- 2 -2114 266 267 -0.45823501e+00 0.38370190e+00 0.38632494e+02 0.12234713e+01
- 1 321 0 0 -0.59268632e+00 0.42536314e-01 0.38787790e+02 0.49360000e+00
- 2 -323 268 269 0.88642849e+00 0.13231566e+01 0.53661439e+02 0.89223765e+00
- 1 2212 0 0 -0.23942512e+00 0.30203011e+00 0.66542840e+02 0.93827000e+00
- 1 -2112 0 0 -0.47057903e+00 -0.58339760e+00 0.37828878e+03 0.93957000e+00
- 1 2112 0 0 -0.31369198e-01 -0.30090071e+00 0.97016986e+02 0.93957000e+00
- 2 213 270 271 0.93053530e+00 -0.10794074e+01 0.23997516e+03 0.88949231e+00
- 2 -2224 272 273 -0.55811265e+00 0.10647420e+00 0.11960212e+03 0.12492594e+01
- 2 213 274 275 -0.28992859e+00 -0.31672208e+00 0.77715358e+02 0.78955942e+00
- 2 -213 276 277 0.81059866e+00 -0.64442528e+00 0.30502204e+02 0.69389670e+00
- 2 111 278 279 0.22066010e+00 -0.43586906e-01 0.11318066e+01 0.13498000e+00
- 2 113 280 281 -0.24358169e+00 -0.54923338e-01 0.76389049e+01 0.87747041e+00
- 2 213 282 283 -0.62289175e+00 -0.52053820e+00 0.89152978e+01 0.78497496e+00
- 2 -213 284 285 0.20473502e+00 -0.33447068e-01 0.16422759e+01 0.71608594e+00
- 1 211 0 0 -0.57930188e+00 -0.34997255e+00 0.60124443e+01 0.13957000e+00
- 1 -211 0 0 -0.33740123e+00 -0.11019908e+01 0.20750200e+01 0.13957000e+00
- 1 321 0 0 -0.82026411e-02 -0.72171226e+00 0.39561035e+00 0.49360000e+00
- 2 333 286 287 -0.21563090e-01 -0.12537001e+01 0.21456970e+01 0.10207039e+01
- 1 -321 0 0 -0.17818934e+00 0.13492900e+00 -0.22602170e-01 0.49360000e+00
- 1 211 0 0 0.23229389e+00 -0.90706910e+00 0.85520289e+00 0.13957000e+00
- 2 221 288 289 -0.67206447e-01 -0.15997089e+01 0.14401026e+01 0.54745000e+00
- 2 331 290 291 0.10921177e+00 0.10481166e+00 -0.73157477e+00 0.95751664e+00
- 2 311 292 292 0.18272775e+00 -0.57928628e+00 -0.44450736e+01 0.49767000e+00
- 2 3214 293 294 0.90207679e-01 -0.42741256e+00 -0.49945797e+01 0.14085602e+01
- 2 -213 295 296 0.17733093e+00 -0.63007366e-01 -0.61535913e+01 0.69822360e+00
- 2 -3114 297 298 0.18076535e+01 -0.38966518e+00 -0.23083088e+02 0.13652971e+01
- 2 -311 299 299 -0.19459578e+00 -0.35153083e-01 -0.26336911e+02 0.49767000e+00
- 2 111 300 301 0.28483128e+00 -0.73693228e-01 -0.40071446e+01 0.13498000e+00
- 1 2112 0 0 0.64447377e+00 0.19714304e-01 -0.49712306e+02 0.93957000e+00
- 1 -2112 0 0 0.10295134e+01 -0.82038914e+00 -0.47784780e+02 0.93957000e+00
- 1 2212 0 0 0.22008439e+01 -0.18855708e+00 -0.80910376e+02 0.93827000e+00
- 2 -2224 302 303 0.38195289e+00 -0.64818808e-01 -0.60288369e+02 0.12277731e+01
- 2 2224 304 305 0.10732964e+01 0.92783461e-01 -0.20995673e+03 0.11723242e+01
- 2 -213 306 307 0.14492773e+01 -0.26973178e+00 -0.16507120e+03 0.82943840e+00
- 2 -2214 308 309 -0.37319890e+00 -0.26190106e-01 -0.39918018e+03 0.13107418e+01
- 2 213 310 311 0.15718314e+00 -0.73618760e-01 -0.49480209e+03 0.81082174e+00
- 1 2112 0 0 -0.88611486e+00 -0.47555293e+00 -0.95675956e+03 0.93957000e+00
- 2 213 312 313 -0.43805458e+00 0.42656543e+00 -0.26526079e+04 0.62058503e+00
- 2 92 143 195 0.65497716e+00 0.37113802e+01 0.34307687e+04 0.53402618e+04
- 2 223 314 316 0.90442309e-01 -0.13656705e+01 0.21856273e+04 0.78427045e+00
- 2 2214 317 318 -0.15460855e+00 -0.12787535e+01 0.19001007e+04 0.12247237e+01
- 2 223 319 321 -0.88346609e-01 0.48265642e+00 0.21869219e+03 0.78026851e+00
- 2 113 322 323 0.21777833e+00 -0.29543574e+00 0.14399601e+03 0.75618547e+00
- 1 211 0 0 0.50600118e+00 0.86539063e+00 0.93769867e+02 0.13957000e+00
- 2 223 324 326 0.27374839e+00 -0.68419701e+00 0.65458720e+02 0.78293976e+00
- 2 223 327 329 0.10314826e+01 0.14899794e+01 0.18309191e+03 0.79144098e+00
- 2 223 330 332 0.74597582e+00 -0.19552525e+00 0.60148700e+02 0.77055404e+00
- 2 221 333 335 0.13075410e+01 0.10360052e+01 0.28725484e+02 0.54745000e+00
- 2 -213 336 337 0.50717735e-01 -0.27835457e+00 0.64922148e+01 0.88574746e+00
- 2 213 338 339 -0.45951424e+00 -0.12235731e+00 0.91309674e+00 0.76916732e+00
- 1 -321 0 0 0.15711400e+00 0.21957855e-01 -0.19010044e+01 0.49360000e+00
- 1 321 0 0 0.59445327e+00 -0.12528205e+01 -0.50979486e+00 0.49360000e+00
- 1 -211 0 0 0.81639087e-01 -0.14056496e+00 -0.36350787e+00 0.13957000e+00
- 2 213 340 341 0.54266845e+00 -0.16313197e+01 -0.20151706e+01 0.72890939e+00
- 1 -211 0 0 -0.26405358e+00 -0.68619377e+00 -0.27992310e+01 0.13957000e+00
- 2 213 342 343 0.67483869e-01 -0.12111309e+01 -0.20498903e+01 0.67598430e+00
- 1 -321 0 0 0.30229930e+00 -0.39087381e+00 -0.26245423e+01 0.49360000e+00
- 2 323 344 345 0.57708142e+00 -0.13827916e+00 -0.36804691e+01 0.87006094e+00
- 2 -323 346 347 0.30337559e+00 0.29635404e+00 -0.54669322e+01 0.91432059e+00
- 1 321 0 0 0.16107243e+00 0.73462306e+00 -0.92767419e+01 0.49360000e+00
- 1 -211 0 0 -0.45389699e+00 -0.25900369e+00 -0.38714639e+01 0.13957000e+00
- 2 113 348 349 0.91201905e-01 0.18091969e+01 -0.52436059e+02 0.85192946e+00
- 1 211 0 0 0.21523197e+00 0.43218189e+00 -0.18271075e+02 0.13957000e+00
- 2 -2114 350 351 -0.45963542e+00 0.92314051e+00 -0.56668261e+02 0.13247978e+01
- 1 -211 0 0 -0.87397568e-01 0.34635094e+00 -0.24754804e+02 0.13957000e+00
- 1 2112 0 0 -0.16220421e+00 0.70400657e+00 -0.33668358e+02 0.93957000e+00
- 2 113 352 353 -0.19801474e+01 0.66698381e+00 -0.16642115e+03 0.77094475e+00
- 2 113 354 355 -0.55214868e+00 0.14889941e+01 -0.12824420e+03 0.79306251e+00
- 1 211 0 0 0.99178721e-01 -0.16456420e+00 -0.12656162e+02 0.13957000e+00
- 2 -213 356 357 -0.96353147e+00 -0.59112725e-01 -0.63285767e+02 0.70878704e+00
- 2 213 358 359 -0.76856010e+00 -0.19241941e+00 -0.13438970e+03 0.86064954e+00
- 2 -213 360 361 -0.76765272e+00 -0.45906359e+00 -0.13862329e+03 0.80648394e+00
- 2 -311 362 362 -0.57602266e-01 0.11361732e-01 -0.39131920e+02 0.49767000e+00
- 2 313 363 364 -0.70845055e+00 -0.83583355e+00 -0.11660495e+03 0.87828293e+00
- 2 223 365 367 0.71240664e-01 -0.91112826e+00 -0.46050671e+02 0.78091163e+00
- 1 211 0 0 0.21042776e+00 0.39763689e+00 -0.63669197e+01 0.13957000e+00
- 1 -211 0 0 -0.48980879e+00 -0.28836646e+00 -0.42177564e+01 0.13957000e+00
- 2 213 368 369 0.41337707e+00 -0.60981728e-01 -0.14263408e+02 0.70549674e+00
- 1 -321 0 0 0.43124869e+00 -0.56563565e-01 -0.16824218e+02 0.49360000e+00
- 2 323 370 371 0.84210254e-01 0.17159071e+00 -0.38319486e+01 0.88813743e+00
- 2 -323 372 373 0.54454443e+00 0.44941265e+00 -0.14341586e+02 0.89185159e+00
- 2 311 374 374 0.18569053e+00 0.53113378e+00 -0.43849654e+01 0.49767000e+00
- 1 211 0 0 0.21958022e+00 -0.18075235e+00 -0.12754793e+02 0.13957000e+00
- 2 -2224 375 376 0.12454148e+01 0.14650333e+01 -0.31054338e+02 0.12328628e+01
- 2 213 377 378 -0.21688029e+00 0.28260436e+00 -0.32044949e+02 0.76876289e+00
- 2 2114 379 380 -0.68850836e+00 0.27299987e-01 -0.66524568e+02 0.12647027e+01
- 2 221 381 382 0.16646116e+00 -0.30574117e+00 -0.59873415e+02 0.54745000e+00
- 2 221 383 384 -0.13944843e+00 0.19135749e+00 -0.26398340e+02 0.54745000e+00
- 2 111 385 386 -0.19275573e-02 0.94126450e+00 -0.16015923e+02 0.13498000e+00
- 1 211 0 0 -0.57940430e-01 -0.16855719e+00 -0.60212089e+01 0.13957000e+00
- 2 223 387 389 -0.53737587e+00 0.19437632e+01 -0.53405727e+02 0.78422093e+00
- 1 -211 0 0 -0.27406564e+00 -0.38533524e+00 -0.22158266e+02 0.13957000e+00
- 1 2112 0 0 0.88019922e+01 0.12524993e+02 0.14474558e+03 0.93957000e+00
- 1 -211 0 0 0.25913244e+01 0.37100460e+01 0.42606287e+02 0.13957000e+00
- 1 321 0 0 0.26128889e+01 0.42108571e+01 0.48094962e+02 0.49360000e+00
- 2 111 390 391 0.94410599e+00 0.15838513e+01 0.21797654e+02 0.13498000e+00
- 2 311 392 392 0.10282908e+01 0.18757829e+01 0.18448614e+02 0.49767000e+00
- 1 211 0 0 0.78688845e+00 0.75340621e+00 0.11493982e+02 0.13957000e+00
- 2 310 393 394 0.16974099e+01 0.34133395e+01 0.55245022e+02 0.49767000e+00
- 2 111 395 396 0.24095714e+00 0.12110681e+01 0.21179020e+02 0.13498000e+00
- 2 111 397 398 0.40823206e-01 0.43560932e+00 0.73162122e+01 0.13498000e+00
- 2 111 399 400 0.31192706e+00 0.72940245e+00 0.11918373e+02 0.13498000e+00
- 2 311 401 401 0.83311823e+00 0.11209819e+01 0.33536068e+02 0.49767000e+00
- 1 211 0 0 0.16425279e+00 0.37960688e+00 0.47122214e+01 0.13957000e+00
- 2 111 402 403 0.18598891e+00 0.99345194e+00 0.15618120e+02 0.13498000e+00
- 2 111 404 405 0.87438633e+00 0.27059943e+01 0.44542059e+02 0.13498000e+00
- 2 111 406 407 0.49798126e+00 0.13407022e+01 0.21651982e+02 0.13498000e+00
- 1 130 0 0 0.78861011e+00 0.16297890e+01 0.34884141e+02 0.49767000e+00
- 2 310 408 409 0.63790109e+00 0.10606726e+01 0.23395370e+02 0.49767000e+00
- 1 -321 0 0 0.94810184e-01 0.47975017e+00 0.58382351e+01 0.49360000e+00
- 1 321 0 0 0.10376080e+00 0.75317783e+00 0.57894771e+01 0.49360000e+00
- 1 -321 0 0 0.45880569e+00 -0.19915061e-01 0.37797954e+01 0.49360000e+00
- 2 111 410 411 0.27027032e+00 0.22102238e+00 0.45046079e+01 0.13498000e+00
- 2 -311 412 412 -0.73776104e-01 -0.46060181e-01 0.13904238e+01 0.49767000e+00
- 1 -211 0 0 0.17212068e-01 0.10014495e+00 0.19322135e-01 0.13957000e+00
- 1 211 0 0 -0.11068527e-01 -0.24969733e+00 0.76843721e+00 0.13957000e+00
- 1 -211 0 0 0.24254998e-01 0.16002192e+00 0.68065981e+00 0.13957000e+00
- 2 111 413 414 -0.90366865e-01 0.23941689e+00 0.69287053e+00 0.13498000e+00
- 1 211 0 0 -0.78771715e-01 -0.27846586e+00 0.43904676e+00 0.13957000e+00
- 2 111 415 416 -0.53738113e-01 -0.12056998e+00 -0.15726623e+00 0.13498000e+00
- 1 22 0 0 -0.14162119e+00 -0.29744554e+00 0.85474539e-01 0.00000000e+00
- 1 22 0 0 -0.97449581e-01 -0.79616228e+00 -0.62825703e+00 0.00000000e+00
- 1 -211 0 0 -0.50938049e+00 -0.70911271e+00 0.28393249e+00 0.13957000e+00
- 1 211 0 0 -0.18745976e+01 -0.21787848e+01 -0.29943626e+00 0.13957000e+00
- 1 22 0 0 -0.22200337e+00 0.78486436e-01 -0.83232587e-01 0.00000000e+00
- 1 22 0 0 -0.14645360e+01 0.34453915e+00 -0.86150044e+00 0.00000000e+00
- 1 211 0 0 -0.29071111e-01 -0.63070722e+00 -0.41596783e+00 0.13957000e+00
- 1 -211 0 0 -0.11470333e+00 0.11324741e+00 -0.22469968e+00 0.13957000e+00
- 1 22 0 0 -0.64716169e+00 0.30331820e+00 -0.98168866e-01 0.00000000e+00
- 1 22 0 0 -0.11496303e+00 0.12520011e+00 -0.22721554e-01 0.00000000e+00
- 1 22 0 0 -0.15488877e+00 -0.20827862e+00 -0.11008511e+00 0.00000000e+00
- 1 22 0 0 -0.16488624e-01 -0.39386450e-01 0.36539543e-01 0.00000000e+00
- 1 22 0 0 -0.85687372e+00 0.20656159e+00 -0.42986785e-01 0.00000000e+00
- 1 22 0 0 -0.88113340e-01 0.62153067e-01 -0.29848026e-01 0.00000000e+00
- 2 311 417 417 0.17616689e+01 0.14353859e+01 0.35152319e+00 0.49767000e+00
- 1 211 0 0 0.89027840e-01 0.36179421e+00 0.83504154e-01 0.13957000e+00
- 1 211 0 0 0.13942202e+00 0.50005587e-01 0.39248253e+00 0.13957000e+00
- 1 -211 0 0 0.52674702e+00 0.49313437e+00 -0.23025544e+00 0.13957000e+00
- 1 22 0 0 0.18973767e-01 0.54601752e-01 -0.11505031e-01 0.00000000e+00
- 1 22 0 0 0.27148088e+00 0.81806368e+00 0.35214510e+00 0.00000000e+00
- 1 211 0 0 0.69457295e+00 0.80679379e+00 0.90558114e+00 0.13957000e+00
- 2 111 418 419 0.22071232e+00 0.91115010e+00 0.15393617e+01 0.13498000e+00
- 1 22 0 0 0.31358336e+00 0.10030985e+01 0.97788627e+00 0.00000000e+00
- 1 22 0 0 0.25802787e+00 0.50628845e+00 0.56602352e+00 0.00000000e+00
- 1 2112 0 0 0.63462180e-01 0.45535522e-02 0.18650692e+01 0.93957000e+00
- 1 -211 0 0 -0.65583361e-01 0.32167774e+00 0.64801032e+00 0.13957000e+00
- 1 211 0 0 -0.25161075e-01 0.79874328e+00 0.10913314e+01 0.13957000e+00
- 2 111 420 421 0.76365252e+00 0.18485603e+01 0.35022951e+01 0.13498000e+00
- 1 -2212 0 0 -0.14229655e+00 0.55841434e+00 0.24873443e+01 0.93827000e+00
- 2 111 422 423 0.92250086e-01 0.41323183e+00 0.18388678e+01 0.13498000e+00
- 1 22 0 0 -0.25832367e-01 0.11272293e+00 0.21520022e+01 0.00000000e+00
- 1 22 0 0 -0.81552774e-01 0.45602332e+00 0.15301209e+02 0.00000000e+00
- 1 211 0 0 -0.65244581e+00 0.13782704e+01 0.14444072e+02 0.13957000e+00
- 2 111 424 425 -0.30993984e+00 0.44481232e+00 0.25810600e+01 0.13498000e+00
- 1 -211 0 0 -0.14369045e+00 -0.75278096e-02 0.59649259e+01 0.13957000e+00
- 1 211 0 0 0.10049038e+00 0.19997788e+00 0.29185792e+01 0.13957000e+00
- 2 111 426 427 0.50600751e-02 -0.13573127e+00 0.58838948e+01 0.13498000e+00
- 1 2112 0 0 -0.14702216e+00 0.47189529e+00 0.16194560e+02 0.93957000e+00
- 1 -211 0 0 0.19232577e-02 0.50265033e+00 0.72543075e+01 0.13957000e+00
- 2 111 428 429 0.13420677e+00 0.38102383e+00 0.11237540e+02 0.13498000e+00
- 2 111 430 431 -0.20267723e-01 0.20762375e+00 0.41055376e+01 0.13498000e+00
- 2 111 432 433 0.25594756e+00 0.50636045e+00 0.11022838e+02 0.13498000e+00
- 1 -2112 0 0 -0.59068089e+00 0.28240085e+00 0.33251519e+02 0.93957000e+00
- 2 111 434 435 0.13244588e+00 0.10130105e+00 0.53809746e+01 0.13498000e+00
- 1 -321 0 0 0.77695175e+00 0.12089585e+01 0.51109956e+02 0.49360000e+00
- 2 111 436 437 0.10947673e+00 0.11419806e+00 0.25514831e+01 0.13498000e+00
- 1 211 0 0 0.26437483e+00 0.30755296e-01 0.80752121e+02 0.13957000e+00
- 2 111 438 439 0.66616047e+00 -0.11101627e+01 0.15922303e+03 0.13498000e+00
- 1 -2212 0 0 -0.57197403e+00 0.85943063e-01 0.11577931e+03 0.93827000e+00
- 1 -211 0 0 0.13861380e-01 0.20531142e-01 0.38228040e+01 0.13957000e+00
- 1 211 0 0 0.25961380e-01 0.79294646e-01 0.39642268e+01 0.13957000e+00
- 2 111 440 441 -0.31588998e+00 -0.39601672e+00 0.73751131e+02 0.13498000e+00
- 1 -211 0 0 0.39935846e+00 -0.24825177e-01 0.66500062e+01 0.13957000e+00
- 2 111 442 443 0.41124020e+00 -0.61960010e+00 0.23852198e+02 0.13498000e+00
- 1 22 0 0 0.22005753e+00 -0.61625000e-01 0.11110205e+01 0.00000000e+00
- 1 22 0 0 0.60256360e-03 0.18038094e-01 0.20786108e-01 0.00000000e+00
- 1 211 0 0 -0.39596674e+00 -0.27595880e+00 0.27916584e+01 0.13957000e+00
- 1 -211 0 0 0.15238505e+00 0.22103546e+00 0.48472465e+01 0.13957000e+00
- 1 211 0 0 0.11755095e+00 0.21897055e-01 0.21628141e+01 0.13957000e+00
- 2 111 444 445 -0.74044270e+00 -0.54243525e+00 0.67524837e+01 0.13498000e+00
- 1 -211 0 0 0.61363296e-01 0.30652982e+00 0.91521808e+00 0.13957000e+00
- 2 111 446 447 0.14337172e+00 -0.33997689e+00 0.72705784e+00 0.13498000e+00
- 1 130 0 0 -0.73253932e-01 -0.69136532e+00 0.99831731e+00 0.49767000e+00
- 2 310 448 449 0.51690842e-01 -0.56233479e+00 0.11473797e+01 0.49767000e+00
- 1 22 0 0 -0.21105129e-01 -0.16303528e+01 0.14227681e+01 0.00000000e+00
- 1 22 0 0 -0.46101319e-01 0.30643896e-01 0.17334548e-01 0.00000000e+00
- 1 22 0 0 -0.12688070e+00 0.21230437e+00 -0.11035564e+00 0.00000000e+00
- 2 113 450 451 0.23609246e+00 -0.10749271e+00 -0.62121913e+00 0.66125334e+00
- 1 130 0 0 0.18272775e+00 -0.57928628e+00 -0.44450736e+01 0.49767000e+00
- 2 3122 452 453 0.22067883e+00 -0.30239606e+00 -0.34133602e+01 0.11156800e+01
- 2 111 454 455 -0.13047115e+00 -0.12501650e+00 -0.15812194e+01 0.13498000e+00
- 1 -211 0 0 0.27098474e-02 -0.28698243e+00 -0.45875685e+01 0.13957000e+00
- 2 111 456 457 0.17462108e+00 0.22397506e+00 -0.15660228e+01 0.13498000e+00
- 2 -3122 458 459 0.15397003e+01 -0.14012061e+00 -0.19048383e+02 0.11156800e+01
- 1 211 0 0 0.26795323e+00 -0.24954457e+00 -0.40347047e+01 0.13957000e+00
- 1 130 0 0 -0.19459578e+00 -0.35153083e-01 -0.26336911e+02 0.49767000e+00
- 1 22 0 0 0.19654240e+00 -0.54400877e-01 -0.34263802e+01 0.00000000e+00
- 1 22 0 0 0.88288885e-01 -0.19292351e-01 -0.58076439e+00 0.00000000e+00
- 1 -2212 0 0 0.36169123e+00 0.12633160e+00 -0.53480241e+02 0.93827000e+00
- 1 -211 0 0 0.20261659e-01 -0.19115041e+00 -0.68081288e+01 0.13957000e+00
- 1 2212 0 0 0.64457024e+00 0.55607623e-01 -0.15097568e+03 0.93827000e+00
- 1 211 0 0 0.42872617e+00 0.37175838e-01 -0.58981053e+02 0.13957000e+00
- 1 -211 0 0 0.12847345e+01 0.27032698e-01 -0.14059977e+03 0.13957000e+00
- 2 111 460 461 0.16454282e+00 -0.29676448e+00 -0.24471436e+02 0.13498000e+00
- 1 -2112 0 0 -0.41190822e+00 -0.93824556e-01 -0.38575612e+03 0.93957000e+00
- 1 -211 0 0 0.38709318e-01 0.67634450e-01 -0.13424070e+02 0.13957000e+00
- 1 211 0 0 0.37708585e+00 -0.24173135e-01 -0.13550128e+03 0.13957000e+00
- 2 111 462 463 -0.21990271e+00 -0.49445625e-01 -0.35930081e+03 0.13498000e+00
- 1 211 0 0 -0.23417675e+00 -0.70003758e-01 -0.12889397e+04 0.13957000e+00
- 2 111 464 465 -0.20387783e+00 0.49656919e+00 -0.13636682e+04 0.13498000e+00
- 1 -211 0 0 0.23120868e+00 -0.30510856e+00 0.41609274e+03 0.13957000e+00
- 1 211 0 0 0.39255178e-01 -0.50789332e+00 0.67230439e+03 0.13957000e+00
- 2 111 466 467 -0.18002155e+00 -0.55266861e+00 0.10972301e+04 0.13498000e+00
- 1 2112 0 0 -0.28962933e+00 -0.99875961e+00 0.16566582e+04 0.93957000e+00
- 1 211 0 0 0.13502078e+00 -0.27999390e+00 0.24344248e+03 0.13957000e+00
- 1 211 0 0 0.13862302e+00 0.73423407e-01 0.45287165e+02 0.13957000e+00
- 1 -211 0 0 -0.65551793e-01 0.12115110e+00 0.12450311e+03 0.13957000e+00
- 2 111 468 469 -0.16141784e+00 0.28808191e+00 0.48901915e+02 0.13498000e+00
- 1 211 0 0 0.12248733e+00 -0.55902677e-01 0.88046569e+01 0.13957000e+00
- 1 -211 0 0 0.95290998e-01 -0.23953306e+00 0.13519135e+03 0.13957000e+00
- 1 211 0 0 0.24244958e+00 -0.11124995e+00 0.18150413e+02 0.13957000e+00
- 1 -211 0 0 -0.19061557e+00 -0.23682396e+00 0.25523809e+02 0.13957000e+00
- 2 111 470 471 0.22191438e+00 -0.33612310e+00 0.21784499e+02 0.13498000e+00
- 1 -211 0 0 0.39109711e+00 0.42063071e+00 0.74382007e+02 0.13957000e+00
- 1 211 0 0 0.21961705e+00 0.74819847e+00 0.69820447e+02 0.13957000e+00
- 2 111 472 473 0.42076842e+00 0.32115026e+00 0.38889461e+02 0.13498000e+00
- 1 -211 0 0 0.25801616e+00 -0.30475146e+00 0.17768193e+02 0.13957000e+00
- 1 211 0 0 0.27267742e+00 0.63739826e-01 0.13221185e+02 0.13957000e+00
- 2 111 474 475 0.21528224e+00 0.45486386e-01 0.29159321e+02 0.13498000e+00
- 1 -211 0 0 0.61237683e+00 0.52379533e+00 0.11803231e+02 0.13957000e+00
- 1 211 0 0 0.25821674e+00 0.23453220e+00 0.55272549e+01 0.13957000e+00
- 2 111 476 477 0.43694743e+00 0.27767769e+00 0.11394998e+02 0.13498000e+00
- 1 -211 0 0 0.23821734e+00 -0.51683942e-01 0.66012478e+00 0.13957000e+00
- 2 111 478 479 -0.18749960e+00 -0.22667063e+00 0.58320901e+01 0.13498000e+00
- 1 211 0 0 -0.30701976e+00 0.20327157e+00 0.13307838e+00 0.13957000e+00
- 2 111 480 481 -0.15249448e+00 -0.32562888e+00 0.78001836e+00 0.13498000e+00
- 1 211 0 0 0.47875879e+00 -0.83890979e+00 -0.68676576e+00 0.13957000e+00
- 2 111 482 483 0.63909660e-01 -0.79240995e+00 -0.13284048e+01 0.13498000e+00
- 1 211 0 0 0.69465850e-01 -0.21349159e+00 -0.10210115e+00 0.13957000e+00
- 2 111 484 485 -0.19819808e-02 -0.99763933e+00 -0.19477891e+01 0.13498000e+00
- 2 311 486 486 0.73874454e-01 -0.14215491e+00 -0.20785580e+01 0.49767000e+00
- 1 211 0 0 0.50320696e+00 0.38757513e-02 -0.16019111e+01 0.13957000e+00
- 1 -321 0 0 0.22524089e+00 -0.46595641e-01 -0.42608555e+01 0.49360000e+00
- 2 111 487 488 0.78134695e-01 0.34294968e+00 -0.12060767e+01 0.13498000e+00
- 1 211 0 0 -0.10336360e+00 0.94392262e+00 -0.17196227e+02 0.13957000e+00
- 1 -211 0 0 0.19456550e+00 0.86527428e+00 -0.35239832e+02 0.13957000e+00
- 1 -2212 0 0 -0.15540672e+00 0.87638006e+00 -0.38487341e+02 0.93827000e+00
- 1 211 0 0 -0.30422870e+00 0.46760448e-01 -0.18180921e+02 0.13957000e+00
- 1 211 0 0 -0.34124642e+00 0.39366108e+00 -0.51144430e+02 0.13957000e+00
- 1 -211 0 0 -0.16389010e+01 0.27332273e+00 -0.11527672e+03 0.13957000e+00
- 1 -211 0 0 -0.69601948e-01 -0.40202135e-02 -0.56147951e+01 0.13957000e+00
- 1 211 0 0 -0.48254673e+00 0.14930143e+01 -0.12262940e+03 0.13957000e+00
- 1 -211 0 0 -0.96862537e+00 0.57691336e-01 -0.58070704e+02 0.13957000e+00
- 2 111 489 490 0.50938984e-02 -0.11680406e+00 -0.52150627e+01 0.13498000e+00
- 1 211 0 0 -0.24058858e+00 0.72788621e-01 -0.94946225e+02 0.13957000e+00
- 2 111 491 492 -0.52797151e+00 -0.26520804e+00 -0.39443470e+02 0.13498000e+00
- 1 -211 0 0 -0.29787524e+00 -0.56482818e+00 -0.58056159e+02 0.13957000e+00
- 2 111 493 494 -0.46977748e+00 0.10576460e+00 -0.80567134e+02 0.13498000e+00
- 2 310 495 496 -0.57602266e-01 0.11361732e-01 -0.39131920e+02 0.49767000e+00
- 1 321 0 0 -0.11137370e+00 -0.38705850e+00 -0.47309117e+02 0.49360000e+00
- 1 -211 0 0 -0.59707685e+00 -0.44877505e+00 -0.69295833e+02 0.13957000e+00
- 1 211 0 0 0.22729966e+00 -0.63014707e+00 -0.33772763e+02 0.13957000e+00
- 1 -211 0 0 -0.14255112e+00 -0.73819508e-01 -0.64233881e+01 0.13957000e+00
- 2 111 497 498 -0.13507871e-01 -0.20716169e+00 -0.58545200e+01 0.13498000e+00
- 1 211 0 0 0.36582769e-01 0.16350061e+00 -0.92552279e+01 0.13957000e+00
- 2 111 499 500 0.37679430e+00 -0.22448234e+00 -0.50081799e+01 0.13498000e+00
- 1 321 0 0 -0.57373161e-01 0.19361503e+00 -0.35745865e+01 0.49360000e+00
- 2 111 501 502 0.14158342e+00 -0.22024312e-01 -0.25736209e+00 0.13498000e+00
- 2 -311 503 503 0.46794974e+00 0.34646504e+00 -0.68585876e+01 0.49767000e+00
- 1 -211 0 0 0.76594695e-01 0.10294761e+00 -0.74829983e+01 0.13957000e+00
- 2 310 504 505 0.18569053e+00 0.53113378e+00 -0.43849654e+01 0.49767000e+00
- 1 -2212 0 0 0.90204067e+00 0.13907807e+01 -0.25506571e+02 0.93827000e+00
- 1 -211 0 0 0.34337411e+00 0.74252669e-01 -0.55477676e+01 0.13957000e+00
- 1 211 0 0 0.16372808e+00 0.37512510e+00 -0.15787983e+02 0.13957000e+00
- 2 111 506 507 -0.38060837e+00 -0.92520744e-01 -0.16256966e+02 0.13498000e+00
- 1 2212 0 0 -0.51445133e+00 0.27668297e+00 -0.50418079e+02 0.93827000e+00
- 1 -211 0 0 -0.17405704e+00 -0.24938299e+00 -0.16106489e+02 0.13957000e+00
- 1 22 0 0 -0.84654565e-01 -0.21210231e+00 -0.92963559e+01 0.00000000e+00
- 1 22 0 0 0.25111572e+00 -0.93638860e-01 -0.50577059e+02 0.00000000e+00
- 1 22 0 0 -0.11854021e+00 0.11845344e+00 -0.21180560e+01 0.00000000e+00
- 1 22 0 0 -0.20908218e-01 0.72904044e-01 -0.24280284e+02 0.00000000e+00
- 1 22 0 0 0.52217323e-01 0.60172916e+00 -0.95713707e+01 0.00000000e+00
- 1 22 0 0 -0.54144880e-01 0.33953535e+00 -0.64445524e+01 0.00000000e+00
- 1 211 0 0 -0.47155593e-01 0.64736858e+00 -0.12972845e+02 0.13957000e+00
- 1 -211 0 0 -0.39739150e+00 0.61051787e+00 -0.16886027e+02 0.13957000e+00
- 2 111 508 509 -0.92828782e-01 0.68587678e+00 -0.23546854e+02 0.13498000e+00
- 1 22 0 0 0.16207136e-01 0.74053456e-01 0.10373371e+01 0.00000000e+00
- 1 22 0 0 0.92789885e+00 0.15097979e+01 0.20760317e+02 0.00000000e+00
- 1 130 0 0 0.10282908e+01 0.18757829e+01 0.18448614e+02 0.49767000e+00
- 2 111 510 511 0.10642026e+01 0.17065759e+01 0.30131674e+02 0.13498000e+00
- 2 111 512 513 0.63320737e+00 0.17067637e+01 0.25113348e+02 0.13498000e+00
- 1 22 0 0 0.28730209e-01 0.36851589e+00 0.70909179e+01 0.00000000e+00
- 1 22 0 0 0.21222693e+00 0.84255224e+00 0.14088102e+02 0.00000000e+00
- 1 22 0 0 -0.77871998e-02 -0.36297604e-02 0.46295677e+00 0.00000000e+00
- 1 22 0 0 0.48610406e-01 0.43923908e+00 0.68532554e+01 0.00000000e+00
- 1 22 0 0 0.32133419e+00 0.67861872e+00 0.10904347e+02 0.00000000e+00
- 1 22 0 0 -0.94071359e-02 0.50783736e-01 0.10140260e+01 0.00000000e+00
- 1 130 0 0 0.83311823e+00 0.11209819e+01 0.33536068e+02 0.49767000e+00
- 1 22 0 0 0.96655524e-01 0.76013942e+00 0.11183956e+02 0.00000000e+00
- 1 22 0 0 0.89333391e-01 0.23331252e+00 0.44341644e+01 0.00000000e+00
- 1 22 0 0 0.12059957e+00 0.32197190e+00 0.60624760e+01 0.00000000e+00
- 1 22 0 0 0.75378676e+00 0.23840224e+01 0.38479583e+02 0.00000000e+00
- 1 22 0 0 0.12035298e-01 0.55075945e-01 0.54653688e+00 0.00000000e+00
- 1 22 0 0 0.48594596e+00 0.12856262e+01 0.21105445e+02 0.00000000e+00
- 2 111 514 515 0.63451633e+00 0.89343428e+00 0.18101990e+02 0.13498000e+00
- 2 111 516 517 0.33847612e-02 0.16723830e+00 0.52933803e+01 0.13498000e+00
- 1 22 0 0 0.95573219e-01 0.11142170e+00 0.11731438e+01 0.00000000e+00
- 1 22 0 0 0.17469710e+00 0.10960067e+00 0.33314641e+01 0.00000000e+00
- 2 310 518 519 -0.73776104e-01 -0.46060181e-01 0.13904238e+01 0.49767000e+00
- 1 22 0 0 -0.11611485e+00 0.23642394e+00 0.63061249e+00 0.00000000e+00
- 1 22 0 0 0.25747981e-01 0.29929480e-02 0.62258046e-01 0.00000000e+00
- 1 22 0 0 0.62437209e-02 -0.17727348e-01 0.22988748e-01 0.00000000e+00
- 1 22 0 0 -0.59981834e-01 -0.10284264e+00 -0.18025498e+00 0.00000000e+00
- 2 310 520 521 0.17616689e+01 0.14353859e+01 0.35152319e+00 0.49767000e+00
- 1 22 0 0 0.41544297e-02 0.93153801e-01 0.92869881e-01 0.00000000e+00
- 1 22 0 0 0.21655789e+00 0.81799630e+00 0.14464919e+01 0.00000000e+00
- 1 22 0 0 0.34842624e+00 0.87800747e+00 0.15213465e+01 0.00000000e+00
- 1 22 0 0 0.41522628e+00 0.97055285e+00 0.19809486e+01 0.00000000e+00
- 1 22 0 0 0.12734119e-01 0.29963184e+00 0.11063122e+01 0.00000000e+00
- 1 22 0 0 0.79515967e-01 0.11360000e+00 0.73255558e+00 0.00000000e+00
- 1 22 0 0 -0.63018718e-02 0.96055465e-01 0.43666360e+00 0.00000000e+00
- 1 22 0 0 -0.30363797e+00 0.34875685e+00 0.21443964e+01 0.00000000e+00
- 1 22 0 0 0.28292022e-02 -0.64678309e-01 0.49464540e+01 0.00000000e+00
- 1 22 0 0 0.22308729e-02 -0.71052958e-01 0.93744077e+00 0.00000000e+00
- 1 22 0 0 0.11161595e-01 0.13458465e+00 0.24179007e+01 0.00000000e+00
- 1 22 0 0 0.12304517e+00 0.24643917e+00 0.88196398e+01 0.00000000e+00
- 1 22 0 0 0.54234185e-01 0.79383056e-01 0.12685286e+01 0.00000000e+00
- 1 22 0 0 -0.74501908e-01 0.12824070e+00 0.28370090e+01 0.00000000e+00
- 1 22 0 0 0.15905535e+00 0.18692936e+00 0.40471762e+01 0.00000000e+00
- 1 22 0 0 0.96892214e-01 0.31943109e+00 0.69756620e+01 0.00000000e+00
- 1 22 0 0 0.10242380e+00 0.80416191e-01 0.20800533e+01 0.00000000e+00
- 1 22 0 0 0.30022076e-01 0.20884859e-01 0.33009212e+01 0.00000000e+00
- 1 22 0 0 0.44331420e-01 0.61367586e-01 0.20573716e+01 0.00000000e+00
- 1 22 0 0 0.65145313e-01 0.52830476e-01 0.49411142e+00 0.00000000e+00
- 1 22 0 0 0.94904904e-01 -0.18178456e+00 0.31627294e+02 0.00000000e+00
- 1 22 0 0 0.57125557e+00 -0.92837815e+00 0.12759574e+03 0.00000000e+00
- 1 22 0 0 -0.62706500e-01 -0.11488462e+00 0.12240402e+02 0.00000000e+00
- 1 22 0 0 -0.25318347e+00 -0.28113210e+00 0.61510729e+02 0.00000000e+00
- 1 22 0 0 0.19634578e+00 -0.23798814e+00 0.80686167e+01 0.00000000e+00
- 1 22 0 0 0.21489441e+00 -0.38161196e+00 0.15783581e+02 0.00000000e+00
- 1 22 0 0 -0.14535481e+00 -0.15079054e+00 0.18800376e+01 0.00000000e+00
- 1 22 0 0 -0.59508788e+00 -0.39164471e+00 0.48724461e+01 0.00000000e+00
- 1 22 0 0 0.86363897e-01 -0.12584593e+00 0.17885494e+00 0.00000000e+00
- 1 22 0 0 0.57007823e-01 -0.21413096e+00 0.54820290e+00 0.00000000e+00
- 1 -211 0 0 0.44733497e-01 -0.58232928e+00 0.10114312e+01 0.13957000e+00
- 1 211 0 0 0.69573446e-02 0.19994483e-01 0.13594844e+00 0.13957000e+00
- 1 -211 0 0 0.26568695e+00 0.56862833e-03 -0.30974558e-02 0.13957000e+00
- 1 211 0 0 -0.29594488e-01 -0.10806134e+00 -0.61812168e+00 0.13957000e+00
- 1 2112 0 0 0.18629756e+00 -0.36292021e+00 -0.30109200e+01 0.93957000e+00
- 2 111 522 523 0.34381270e-01 0.60524144e-01 -0.40244027e+00 0.13498000e+00
- 1 22 0 0 -0.11449488e+00 -0.12944905e+00 -0.93773886e+00 0.00000000e+00
- 1 22 0 0 -0.15976273e-01 0.44325502e-02 -0.64348057e+00 0.00000000e+00
- 1 22 0 0 0.82985169e-02 -0.34928957e-02 -0.36765479e-02 0.00000000e+00
- 1 22 0 0 0.16632257e+00 0.22746796e+00 -0.15623463e+01 0.00000000e+00
- 1 -2112 0 0 0.12990191e+01 -0.22158609e+00 -0.16314356e+02 0.93957000e+00
- 2 111 524 525 0.24068117e+00 0.81465481e-01 -0.27340277e+01 0.13498000e+00
- 1 22 0 0 0.24386738e-01 -0.18086865e+00 -0.13075113e+02 0.00000000e+00
- 1 22 0 0 0.14015608e+00 -0.11589582e+00 -0.11396323e+02 0.00000000e+00
- 1 22 0 0 -0.20355269e+00 -0.35640060e-01 -0.35285829e+03 0.00000000e+00
- 1 22 0 0 -0.16350017e-01 -0.13805565e-01 -0.64425160e+01 0.00000000e+00
- 1 22 0 0 -0.93105981e-01 0.14006216e+00 -0.56576538e+03 0.00000000e+00
- 1 22 0 0 -0.11077185e+00 0.35650703e+00 -0.79790281e+03 0.00000000e+00
- 1 22 0 0 -0.18736146e-01 -0.47016311e-02 0.76439989e+02 0.00000000e+00
- 1 22 0 0 -0.16128540e+00 -0.54796698e+00 0.10207901e+04 0.00000000e+00
- 1 22 0 0 -0.68852267e-01 0.22007506e+00 0.37904351e+02 0.00000000e+00
- 1 22 0 0 -0.92565574e-01 0.68006847e-01 0.10997564e+02 0.00000000e+00
- 1 22 0 0 0.40424939e-01 -0.19839416e-01 0.10916180e+01 0.00000000e+00
- 1 22 0 0 0.18148944e+00 -0.31628368e+00 0.20692881e+02 0.00000000e+00
- 1 22 0 0 0.20426862e+00 0.15493620e+00 0.14070673e+02 0.00000000e+00
- 1 22 0 0 0.21649980e+00 0.16621406e+00 0.24818788e+02 0.00000000e+00
- 1 22 0 0 0.15075917e+00 0.66545977e-01 0.13660251e+02 0.00000000e+00
- 1 22 0 0 0.64523069e-01 -0.21059591e-01 0.15499071e+02 0.00000000e+00
- 1 22 0 0 0.42755561e+00 0.23616700e+00 0.10024620e+02 0.00000000e+00
- 1 22 0 0 0.93918173e-02 0.41510697e-01 0.13703773e+01 0.00000000e+00
- 1 22 0 0 -0.94349178e-01 -0.20800756e+00 0.42220895e+01 0.00000000e+00
- 1 22 0 0 -0.93150423e-01 -0.18663071e-01 0.16100006e+01 0.00000000e+00
- 1 22 0 0 -0.58660876e-01 -0.25059183e+00 0.60166797e+00 0.00000000e+00
- 1 22 0 0 -0.93833604e-01 -0.75037045e-01 0.17835040e+00 0.00000000e+00
- 1 22 0 0 0.60158785e-01 -0.79757028e+00 -0.13150295e+01 0.00000000e+00
- 1 22 0 0 0.37508753e-02 0.51603369e-02 -0.13375317e-01 0.00000000e+00
- 1 22 0 0 -0.25467301e-01 -0.46969690e+00 -0.78148290e+00 0.00000000e+00
- 1 22 0 0 0.23485320e-01 -0.52794243e+00 -0.11663062e+01 0.00000000e+00
- 2 310 526 527 0.73874454e-01 -0.14215491e+00 -0.20785580e+01 0.49767000e+00
- 1 22 0 0 0.47597014e-01 0.23932645e+00 -0.10162717e+01 0.00000000e+00
- 1 22 0 0 0.30537681e-01 0.10362323e+00 -0.18980508e+00 0.00000000e+00
- 1 22 0 0 -0.17709883e-01 -0.13289625e+00 -0.48967961e+01 0.00000000e+00
- 1 22 0 0 0.22803781e-01 0.16092189e-01 -0.31826658e+00 0.00000000e+00
- 1 22 0 0 -0.41405092e+00 -0.17929535e+00 -0.26174257e+02 0.00000000e+00
- 1 22 0 0 -0.11392059e+00 -0.85912685e-01 -0.13269214e+02 0.00000000e+00
- 1 22 0 0 -0.24653001e-01 -0.25571292e-01 -0.67045515e+01 0.00000000e+00
- 1 22 0 0 -0.44512448e+00 0.13133589e+00 -0.73862583e+02 0.00000000e+00
- 1 211 0 0 -0.94201095e-01 0.18183594e+00 -0.13808977e+02 0.13957000e+00
- 1 -211 0 0 0.36598828e-01 -0.17047421e+00 -0.25322943e+02 0.13957000e+00
- 1 22 0 0 -0.43121044e-01 -0.16658577e+00 -0.30968677e+01 0.00000000e+00
- 1 22 0 0 0.29613173e-01 -0.40575915e-01 -0.27576523e+01 0.00000000e+00
- 1 22 0 0 0.18252723e+00 -0.47437095e-01 -0.16597323e+01 0.00000000e+00
- 1 22 0 0 0.19426707e+00 -0.17704524e+00 -0.33484476e+01 0.00000000e+00
- 1 22 0 0 0.15971213e+00 0.45471762e-02 -0.18264557e+00 0.00000000e+00
- 1 22 0 0 -0.18128716e-01 -0.26571488e-01 -0.74716524e-01 0.00000000e+00
- 2 310 528 529 0.46794974e+00 0.34646504e+00 -0.68585876e+01 0.49767000e+00
- 2 111 530 531 0.38139663e-01 0.40516101e+00 -0.16903093e+01 0.13498000e+00
- 2 111 532 533 0.14755086e+00 0.12597277e+00 -0.26946562e+01 0.13498000e+00
- 1 22 0 0 -0.24279115e+00 0.64341585e-02 -0.10295260e+02 0.00000000e+00
- 1 22 0 0 -0.13781722e+00 -0.98954902e-01 -0.59617053e+01 0.00000000e+00
- 1 22 0 0 0.25398518e-01 0.90928725e-01 -0.41530287e+01 0.00000000e+00
- 1 22 0 0 -0.11822730e+00 0.59494805e+00 -0.19393826e+02 0.00000000e+00
- 1 22 0 0 0.88422472e+00 0.13394520e+01 0.24521056e+02 0.00000000e+00
- 1 22 0 0 0.17997784e+00 0.36712383e+00 0.56106179e+01 0.00000000e+00
- 1 22 0 0 0.30162230e+00 0.78565698e+00 0.10695047e+02 0.00000000e+00
- 1 22 0 0 0.33158507e+00 0.92110668e+00 0.14418301e+02 0.00000000e+00
- 1 22 0 0 0.15204978e+00 0.12560348e+00 0.31613914e+01 0.00000000e+00
- 1 22 0 0 0.48246655e+00 0.76783080e+00 0.14940598e+02 0.00000000e+00
- 1 22 0 0 0.48285736e-01 0.10034527e+00 0.18049587e+01 0.00000000e+00
- 1 22 0 0 -0.44900975e-01 0.66893030e-01 0.34884216e+01 0.00000000e+00
- 1 211 0 0 -0.23981923e+00 -0.55960130e-02 0.89455927e+00 0.13957000e+00
- 1 -211 0 0 0.16604313e+00 -0.40464168e-01 0.49586452e+00 0.13957000e+00
- 1 -211 0 0 0.41549465e+00 0.32405255e+00 -0.75109641e-01 0.13957000e+00
- 1 211 0 0 0.13461743e+01 0.11113333e+01 0.42663283e+00 0.13957000e+00
- 1 22 0 0 0.54898532e-01 0.96537637e-03 -0.57526902e-01 0.00000000e+00
- 1 22 0 0 -0.20517262e-01 0.59558768e-01 -0.34491337e+00 0.00000000e+00
- 1 22 0 0 0.19707566e+00 0.29748787e-02 -0.19723866e+01 0.00000000e+00
- 1 22 0 0 0.43605506e-01 0.78490602e-01 -0.76164109e+00 0.00000000e+00
- 1 211 0 0 0.16726551e+00 -0.28506003e-01 -0.43552185e+00 0.13957000e+00
- 1 -211 0 0 -0.93391058e-01 -0.11364891e+00 -0.16430361e+01 0.13957000e+00
- 1 -211 0 0 0.50000050e-01 -0.21568942e-01 -0.25723430e+01 0.13957000e+00
- 1 211 0 0 0.41794969e+00 0.36803398e+00 -0.42862446e+01 0.13957000e+00
- 1 22 0 0 -0.13677042e-01 0.32293178e+00 -0.14274473e+01 0.00000000e+00
- 1 22 0 0 0.51816705e-01 0.82229234e-01 -0.26286194e+00 0.00000000e+00
- 1 22 0 0 -0.15211668e-01 0.57973792e-01 -0.67018992e+00 0.00000000e+00
- 1 22 0 0 0.16276253e+00 0.67998976e-01 -0.20244662e+01 0.00000000e+00
- 342
- 2 25 2 3 -0.45683506e+02 0.42375663e+02 0.13914083e+02 0.12499822e+03
- 2 23 4 6 -0.18078334e+02 0.10454361e+02 -0.56981323e+01 0.32251514e+02
- 2 23 7 9 -0.27605173e+02 0.31921302e+02 0.19612215e+02 0.90222274e+02
- 1 -11 0 0 -0.18202519e+02 0.53631679e+01 0.10621701e+02 0.51000000e-03
- 1 11 0 0 0.12418813e+00 0.50911974e+01 -0.16319829e+02 0.51000000e-03
- 1 22 0 0 -0.30587595e-05 -0.41432573e-05 -0.51309978e-05 0.00000000e+00
- 1 11 0 0 0.16970987e+02 0.45436487e+02 -0.51310527e+01 0.51000000e-03
- 1 -11 0 0 -0.35343657e+02 -0.10712579e+02 0.19613688e+02 0.51000000e-03
- 1 22 0 0 -0.92325022e+01 -0.28026064e+01 0.51295796e+01 0.00000000e+00
- 2 2103 39 39 -0.93197675e+00 0.46891579e+00 0.54893355e+04 0.77133000e+00
- 2 21 39 39 0.52551732e-01 0.91841189e+00 -0.21840181e+00 0.00000000e+00
- 2 21 39 39 -0.20372143e+01 0.31879649e+01 -0.98075525e+02 0.00000000e+00
- 2 21 39 39 0.11465425e+01 0.26837613e+00 -0.17241506e+01 0.00000000e+00
- 2 21 39 39 -0.19518348e+01 0.19378795e+01 -0.55291687e+02 0.00000000e+00
- 2 1 39 39 0.22306889e+01 -0.11310533e+01 -0.92643465e+03 0.33000000e+00
- 2 2 69 69 -0.35981965e+00 -0.21834696e+00 0.23155927e+03 0.33000000e+00
- 2 21 69 69 0.15244831e+01 0.97393236e+00 0.94069865e+02 0.00000000e+00
- 2 21 69 69 -0.24177614e-01 -0.50543057e+00 0.57048642e+01 0.00000000e+00
- 2 21 69 69 0.13730100e+01 -0.28384917e+01 0.16140549e+02 0.00000000e+00
- 2 21 69 69 0.44371280e+01 -0.51304935e+01 0.43225163e+02 0.00000000e+00
- 2 21 69 69 0.40675836e+00 -0.14970972e+01 0.12411658e+02 0.00000000e+00
- 2 21 69 69 0.56681600e+00 -0.10189396e+01 0.73351217e+01 0.00000000e+00
- 2 21 69 69 0.29491361e+00 -0.23419841e+00 0.31190889e+01 0.00000000e+00
- 2 21 69 69 0.58403816e+01 -0.30238093e+01 0.15686137e+03 0.00000000e+00
- 2 21 69 69 0.47351524e+01 -0.39567844e+01 0.15970318e+03 0.00000000e+00
- 2 21 69 69 0.37107588e+01 -0.28845032e+01 0.11765427e+03 0.00000000e+00
- 2 21 69 69 0.10872902e+02 -0.52397133e+01 0.27586704e+03 0.00000000e+00
- 2 21 69 69 0.39922550e+01 -0.23181826e+01 0.16028283e+03 0.00000000e+00
- 2 21 69 69 0.28592487e+01 -0.26815524e+01 0.98084439e+02 0.00000000e+00
- 2 21 69 69 0.40008739e+00 -0.60795350e+00 0.21465904e+01 0.00000000e+00
- 2 21 69 69 0.71859782e+00 -0.42788217e+01 0.11236070e+02 0.00000000e+00
- 2 21 69 69 0.20180393e+01 -0.76154928e+01 0.15696005e+02 0.00000000e+00
- 2 21 69 69 -0.87243921e+01 -0.42348908e+01 0.10526366e+01 0.00000000e+00
- 2 21 69 69 -0.52551732e-01 -0.91841189e+00 0.15345849e+01 0.00000000e+00
- 2 21 69 69 0.87243921e+01 0.42348908e+01 0.98643412e+01 0.00000000e+00
- 2 21 69 69 0.20372143e+01 -0.31879649e+01 -0.57554105e+01 0.00000000e+00
- 2 21 69 69 -0.25268581e+00 0.23466164e-01 -0.13756969e+01 0.00000000e+00
- 2 2203 69 69 0.20762373e+01 -0.86736861e+00 -0.58379230e+04 0.77133000e+00
- 2 92 40 68 -0.14912426e+01 0.56504950e+01 0.44075911e+04 0.48752887e+04
- 1 -211 0 0 0.11183973e+00 -0.36765010e-01 0.15683423e+04 0.13957000e+00
- 2 2224 130 131 -0.26815446e+00 0.30831159e+00 0.12894348e+04 0.11410502e+01
- 2 111 132 133 -0.58373089e+00 0.14375945e+00 0.16792998e+04 0.13498000e+00
- 1 -211 0 0 0.42721541e+00 0.39854132e+00 0.12987613e+03 0.13957000e+00
- 1 211 0 0 -0.54196857e+00 -0.18532241e+00 0.43566808e+03 0.13957000e+00
- 2 223 134 135 -0.17656925e-01 -0.85286816e-01 0.23433578e+03 0.78456047e+00
- 2 -2224 136 137 0.53571001e-01 -0.55193104e+00 0.77317738e+02 0.12155143e+01
- 1 2212 0 0 0.21861609e+00 0.78622289e+00 0.68661765e+02 0.93827000e+00
- 2 213 138 139 -0.63935178e+00 -0.54704876e-01 0.22325828e+01 0.68772948e+00
- 2 -213 140 141 0.36273588e+00 0.51013458e+00 0.26554639e+01 0.64432706e+00
- 2 -311 142 142 0.25537555e+00 -0.93267780e+00 0.20986601e+00 0.49767000e+00
- 2 313 143 144 0.21296730e+00 0.11252707e+01 0.14522918e+00 0.87285419e+00
- 2 221 145 147 -0.73132543e+00 -0.52373564e+00 -0.24516761e+01 0.54745000e+00
- 2 111 148 149 0.24161816e+00 0.45068403e+00 -0.51578267e+00 0.13498000e+00
- 2 213 150 151 -0.80640097e+00 0.18260461e+01 -0.45540631e+02 0.53838245e+00
- 1 -211 0 0 -0.11886978e+00 0.70584776e-01 -0.50785523e+00 0.13957000e+00
- 2 111 152 153 -0.98915550e+00 0.63618733e+00 -0.26253713e+02 0.13498000e+00
- 2 213 154 155 0.92601862e+00 0.32279972e+00 -0.99771256e+01 0.10501711e+01
- 1 -2212 0 0 -0.44515753e+00 0.50709963e-02 -0.79395025e+01 0.93827000e+00
- 1 2212 0 0 0.22587396e+00 0.21493550e+00 -0.51706284e+01 0.93827000e+00
- 2 -323 156 157 0.13641929e+00 0.51618967e+00 -0.14863929e+02 0.87348055e+00
- 2 313 158 159 -0.70566721e+00 0.89687606e+00 -0.15068292e+02 0.96876509e+00
- 1 211 0 0 0.97095836e-01 -0.40687024e+00 -0.50384447e+01 0.13957000e+00
- 2 -213 160 161 -0.19043439e+00 0.12345170e+01 -0.54170019e+02 0.60653806e+00
- 2 113 162 163 -0.69929191e+00 -0.48445163e+00 -0.90392116e+02 0.59797048e+00
- 2 -313 164 165 -0.10232089e+00 0.25402477e+00 -0.10308152e+03 0.91690315e+00
- 2 323 166 167 0.11892374e+01 -0.50009438e+00 -0.15844254e+03 0.91302125e+00
- 1 -211 0 0 -0.21853734e+00 0.70133459e+00 -0.14830744e+03 0.13957000e+00
- 2 111 168 169 0.11081967e+01 -0.98915627e+00 -0.39286717e+03 0.13498000e+00
- 2 92 70 129 0.47174749e+02 -0.48026158e+02 -0.44215052e+04 0.57923105e+04
- 2 221 170 171 0.11715620e-01 -0.16084331e+00 0.22340762e+03 0.54745000e+00
- 1 211 0 0 0.69240853e-01 -0.70544733e-01 0.82466315e+01 0.13957000e+00
- 1 -211 0 0 -0.10110531e+00 0.59239591e-02 0.75806580e+01 0.13957000e+00
- 2 221 172 174 0.26522245e+00 0.47019517e+00 0.27996558e+02 0.54745000e+00
- 2 213 175 176 0.13283292e+00 0.20405414e+00 0.26815264e+02 0.48725837e+00
- 2 111 177 178 0.48052485e+00 -0.81374542e+00 0.18142140e+02 0.13498000e+00
- 1 -211 0 0 0.10038123e+01 -0.47993688e-01 0.50447668e+01 0.13957000e+00
- 1 211 0 0 0.11377529e+00 -0.81967425e+00 0.17213327e+02 0.13957000e+00
- 2 -213 179 180 0.13093672e+00 -0.46578849e+00 0.49371175e+01 0.57810499e+00
- 2 323 181 182 0.60236241e+00 -0.61240499e+00 0.72013103e+01 0.88273030e+00
- 1 -321 0 0 0.16826418e+01 -0.24988165e+01 0.25705956e+02 0.49360000e+00
- 1 321 0 0 0.15697313e+01 -0.20108631e+01 0.13506208e+02 0.49360000e+00
- 2 -313 183 184 0.10964299e+01 -0.15350870e+01 0.13686706e+02 0.87155008e+00
- 2 223 185 187 0.97005416e+00 -0.40556793e+00 0.16319726e+02 0.76421498e+00
- 2 313 188 189 0.14069775e+01 -0.19271865e+01 0.40460794e+02 0.84884269e+00
- 2 -311 190 190 0.58885144e+00 -0.27907574e+00 0.12155789e+02 0.49767000e+00
- 2 223 191 193 0.33652071e+00 -0.75720999e+00 0.15419576e+02 0.76892234e+00
- 2 313 194 195 0.47798375e+01 -0.28375179e+01 0.13637801e+03 0.89913655e+00
- 2 -323 196 197 0.16713636e+01 -0.17208865e+01 0.46954218e+02 0.90831918e+00
- 2 111 198 199 0.81189930e+01 -0.40934370e+01 0.22040562e+03 0.13498000e+00
- 2 213 200 201 0.41172000e+01 -0.25300291e+01 0.13816187e+03 0.66985882e+00
- 2 113 202 203 0.43545236e+01 -0.39864014e+01 0.14210445e+03 0.81047920e+00
- 2 221 204 206 0.14062660e+01 -0.33495481e+00 0.34679698e+02 0.54745000e+00
- 1 2112 0 0 0.22138110e+01 -0.14246502e+01 0.66099764e+02 0.93957000e+00
- 2 -3122 207 208 0.95935101e+00 -0.56362054e+00 0.31302961e+02 0.11156800e+01
- 1 -321 0 0 0.22464555e+01 -0.13338374e+01 0.73846969e+02 0.49360000e+00
- 1 211 0 0 -0.18609843e+00 -0.10994339e+00 0.47416968e+01 0.13957000e+00
- 2 313 209 210 0.56887806e+00 -0.21321292e+01 0.83033099e+01 0.93808787e+00
- 2 -311 211 211 0.26484066e+00 -0.13028169e+01 0.28412213e+01 0.49767000e+00
- 2 -213 212 213 0.11830520e+01 -0.16382357e+01 0.53777607e+01 0.70762990e+00
- 2 113 214 215 0.19026883e+00 -0.26309062e+01 0.60394741e+01 0.81024820e+00
- 2 113 216 217 0.67363774e+00 -0.20396768e+01 0.49289785e+01 0.59617846e+00
- 2 223 218 220 0.27640297e+00 -0.20173283e+01 0.30414722e+01 0.79544540e+00
- 2 223 221 223 -0.61077569e+00 -0.96298308e+00 0.15800677e+01 0.77449244e+00
- 1 2212 0 0 -0.19892885e+01 -0.71612765e+00 0.68313022e-01 0.93827000e+00
- 1 -2212 0 0 -0.27181546e+01 -0.11970657e+01 0.97372926e+00 0.93827000e+00
- 2 221 224 225 -0.52837791e+00 -0.95199837e+00 0.47126654e+00 0.54745000e+00
- 2 213 226 227 -0.10834142e+01 -0.90261175e+00 0.17037993e+00 0.69911477e+00
- 1 -211 0 0 -0.74879654e+00 0.16067771e+00 0.17509060e+00 0.13957000e+00
- 2 113 228 229 0.61807884e-02 -0.48346512e+00 -0.17835310e+00 0.53293462e+00
- 1 211 0 0 -0.73311984e-01 -0.33076228e+00 0.76169135e+00 0.13957000e+00
- 2 113 230 231 0.10665489e+00 -0.91403527e-01 0.11149429e+01 0.71859299e+00
- 2 311 232 232 0.50328103e+00 0.52122533e+00 0.15139936e+01 0.49767000e+00
- 2 -323 233 234 0.41703064e+01 0.18261505e+01 0.39540044e+01 0.92414960e+00
- 2 2114 235 236 0.25957009e+01 0.11875389e+01 0.32507877e+01 0.11026461e+01
- 2 223 237 239 0.11415692e+01 -0.37105965e+00 -0.93192787e+00 0.78234921e+00
- 1 -2112 0 0 -0.12622918e+00 -0.54746568e+00 -0.41793560e+00 0.93957000e+00
- 1 2212 0 0 0.26313473e+00 -0.65350307e+00 -0.18455690e+01 0.93827000e+00
- 2 -3122 240 241 0.34114645e+00 -0.60474254e+00 -0.29561035e+01 0.11156800e+01
- 2 -313 242 243 0.73875682e+00 -0.46004609e+00 -0.27457865e+01 0.90581761e+00
- 2 113 244 245 -0.36259344e+00 0.90790265e-01 -0.17125172e+02 0.68036319e+00
- 2 223 246 248 -0.32272394e-01 -0.45652459e+00 -0.16137150e+02 0.78509583e+00
- 1 -211 0 0 0.80246357e+00 0.23714668e+00 -0.31672664e+02 0.13957000e+00
- 2 323 249 250 -0.38897196e+00 -0.55517922e-01 -0.40360731e+02 0.81840487e+00
- 2 -313 251 252 -0.27074313e-01 -0.53510059e+00 -0.50961204e+02 0.79521764e+00
- 2 221 253 254 0.20884063e+00 0.34181369e+00 -0.21859801e+02 0.54745000e+00
- 2 223 255 257 0.22495380e+00 -0.24381772e+00 -0.19719854e+03 0.76280912e+00
- 2 -213 258 259 -0.14110230e+00 0.58543346e+00 -0.29659803e+03 0.78901309e+00
- 1 2212 0 0 0.11311551e+00 -0.47338688e+00 -0.15610659e+04 0.93827000e+00
- 2 213 260 261 0.15896994e+01 -0.51835274e+00 -0.36025322e+04 0.78912863e+00
- 1 2212 0 0 -0.18232680e+00 0.32753750e+00 0.96807936e+03 0.93827000e+00
- 1 211 0 0 -0.85827663e-01 -0.19225915e-01 0.32135542e+03 0.13957000e+00
- 1 22 0 0 -0.31314455e+00 0.97792109e-01 0.10859622e+04 0.00000000e+00
- 1 22 0 0 -0.27058634e+00 0.45967337e-01 0.59333754e+03 0.00000000e+00
- 1 22 0 0 0.24820662e+00 -0.23691872e+00 0.17836004e+03 0.00000000e+00
- 2 111 262 263 -0.26586354e+00 0.15163190e+00 0.55975736e+02 0.13498000e+00
- 1 -2212 0 0 -0.16783992e+00 -0.45922416e+00 0.60520722e+02 0.93827000e+00
- 1 -211 0 0 0.22141092e+00 -0.92706878e-01 0.16797016e+02 0.13957000e+00
- 1 211 0 0 -0.44012498e+00 0.25305077e+00 0.10077479e+01 0.13957000e+00
- 2 111 264 265 -0.19922680e+00 -0.30775564e+00 0.12248349e+01 0.13498000e+00
- 1 -211 0 0 0.28999429e-01 -0.10963879e+00 0.46585440e+00 0.13957000e+00
- 2 111 266 267 0.33373645e+00 0.61977337e+00 0.21896095e+01 0.13498000e+00
- 1 130 0 0 0.25537555e+00 -0.93267780e+00 0.20986601e+00 0.49767000e+00
- 1 321 0 0 0.19126824e-01 0.38823793e+00 -0.96509704e-01 0.49360000e+00
- 1 -211 0 0 0.19384047e+00 0.73703281e+00 0.24173889e+00 0.13957000e+00
- 1 -211 0 0 -0.25901868e+00 -0.93330677e-01 -0.61734521e+00 0.13957000e+00
- 1 211 0 0 -0.55183059e-01 -0.18329222e+00 -0.58378856e+00 0.13957000e+00
- 2 111 268 269 -0.41712369e+00 -0.24711275e+00 -0.12505424e+01 0.13498000e+00
- 1 22 0 0 0.24538150e+00 0.38338955e+00 -0.40611709e+00 0.00000000e+00
- 1 22 0 0 -0.37633375e-02 0.67294484e-01 -0.10966558e+00 0.00000000e+00
- 1 211 0 0 -0.50474319e+00 0.14500109e+01 -0.37161969e+02 0.13957000e+00
- 2 111 270 271 -0.30165778e+00 0.37603513e+00 -0.83786619e+01 0.13498000e+00
- 1 22 0 0 -0.94212622e+00 0.61541400e+00 -0.24360544e+02 0.00000000e+00
- 1 22 0 0 -0.47029283e-01 0.20773331e-01 -0.18931688e+01 0.00000000e+00
- 1 211 0 0 0.60582763e+00 0.49293498e+00 -0.33910521e+01 0.13957000e+00
- 2 111 272 273 0.32019100e+00 -0.17013526e+00 -0.65860735e+01 0.13498000e+00
- 2 -311 274 274 -0.99569371e-02 0.62101753e+00 -0.11499948e+02 0.49767000e+00
- 1 -211 0 0 0.14637623e+00 -0.10482786e+00 -0.33639816e+01 0.13957000e+00
- 1 321 0 0 -0.19790930e+00 0.52068550e+00 -0.52019077e+01 0.49360000e+00
- 1 -211 0 0 -0.50775791e+00 0.37619056e+00 -0.98663840e+01 0.13957000e+00
- 1 -211 0 0 0.71876022e-01 0.76046521e+00 -0.23803366e+02 0.13957000e+00
- 2 111 275 276 -0.26231041e+00 0.47405180e+00 -0.30366654e+02 0.13498000e+00
- 1 -211 0 0 -0.20191247e+00 -0.19033087e+00 -0.55868057e+02 0.13957000e+00
- 1 211 0 0 -0.49737944e+00 -0.29412076e+00 -0.34524059e+02 0.13957000e+00
- 1 -321 0 0 0.68122493e-01 0.41842469e+00 -0.59075927e+02 0.49360000e+00
- 1 211 0 0 -0.17044338e+00 -0.16439992e+00 -0.44005590e+02 0.13957000e+00
- 1 321 0 0 0.83556514e+00 -0.64988853e+00 -0.11148569e+03 0.49360000e+00
- 2 111 277 278 0.35367226e+00 0.14979415e+00 -0.46956852e+02 0.13498000e+00
- 1 22 0 0 0.78421947e+00 -0.70285827e+00 -0.26169447e+03 0.00000000e+00
- 1 22 0 0 0.32397725e+00 -0.28629800e+00 -0.13117270e+03 0.00000000e+00
- 1 22 0 0 -0.13327159e+00 0.16616011e+00 0.83137439e+02 0.00000000e+00
- 1 22 0 0 0.14498721e+00 -0.32700341e+00 0.14027018e+03 0.00000000e+00
- 1 211 0 0 0.15014625e+00 0.11390554e+00 0.53318002e+01 0.13957000e+00
- 1 -211 0 0 0.36955432e-01 0.28645092e+00 0.13531522e+02 0.13957000e+00
- 2 111 279 280 0.78120770e-01 0.69838711e-01 0.91332361e+01 0.13498000e+00
- 1 211 0 0 -0.12466157e+00 0.11187005e-01 0.72615455e+01 0.13957000e+00
- 2 111 281 282 0.25749449e+00 0.19286713e+00 0.19553719e+02 0.13498000e+00
- 1 22 0 0 0.39673828e+00 -0.70820042e+00 0.16282326e+02 0.00000000e+00
- 1 22 0 0 0.83786577e-01 -0.10554500e+00 0.18598136e+01 0.00000000e+00
- 1 -211 0 0 0.12289731e+00 -0.19437182e+00 0.40074595e+01 0.13957000e+00
- 2 111 283 284 0.80394103e-02 -0.27141667e+00 0.92965808e+00 0.13498000e+00
- 1 321 0 0 0.16362346e+00 -0.51818948e+00 0.35893673e+01 0.49360000e+00
- 2 111 285 286 0.43873894e+00 -0.94215512e-01 0.36119430e+01 0.13498000e+00
- 1 -321 0 0 0.55606991e+00 -0.12411832e+01 0.96602430e+01 0.49360000e+00
- 1 211 0 0 0.54035999e+00 -0.29390379e+00 0.40264628e+01 0.13957000e+00
- 1 211 0 0 0.10702071e+00 -0.10520638e+00 0.48387558e+01 0.13957000e+00
- 1 -211 0 0 0.45674189e+00 -0.32304711e+00 0.80572310e+01 0.13957000e+00
- 2 111 287 288 0.40629156e+00 0.22685565e-01 0.34237389e+01 0.13498000e+00
- 2 311 289 289 0.73955728e+00 -0.91645766e+00 0.24079118e+02 0.49767000e+00
- 2 111 290 291 0.66742023e+00 -0.10107288e+01 0.16381676e+02 0.13498000e+00
- 2 310 292 293 0.58885144e+00 -0.27907574e+00 0.12155789e+02 0.49767000e+00
- 1 211 0 0 0.56826798e-01 -0.19581633e+00 0.52735979e+01 0.13957000e+00
- 1 -211 0 0 0.37094742e+00 -0.18443579e+00 0.48168473e+01 0.13957000e+00
- 2 111 294 295 -0.91253513e-01 -0.37695787e+00 0.53291308e+01 0.13498000e+00
- 1 321 0 0 0.23073381e+01 -0.11694462e+01 0.68299843e+02 0.49360000e+00
- 1 -211 0 0 0.24724995e+01 -0.16680717e+01 0.68078169e+02 0.13957000e+00
- 1 -321 0 0 0.14668437e+01 -0.15799162e+01 0.44260250e+02 0.49360000e+00
- 2 111 296 297 0.20451993e+00 -0.14097031e+00 0.26939679e+01 0.13498000e+00
- 1 22 0 0 0.75155068e+01 -0.37803811e+01 0.20474640e+03 0.00000000e+00
- 1 22 0 0 0.60348619e+00 -0.31305590e+00 0.15659219e+02 0.00000000e+00
- 1 211 0 0 0.55173095e+00 -0.17303445e+00 0.19558334e+02 0.13957000e+00
- 2 111 298 299 0.35654691e+01 -0.23569946e+01 0.11860353e+03 0.13498000e+00
- 1 -211 0 0 0.34595168e+01 -0.27273563e+01 0.10590586e+03 0.13957000e+00
- 1 211 0 0 0.89500677e+00 -0.12590451e+01 0.36198593e+02 0.13957000e+00
- 2 111 300 301 0.40110462e+00 -0.11669512e+00 0.98651099e+01 0.13498000e+00
- 2 111 302 303 0.40954345e+00 -0.18986762e+00 0.13434486e+02 0.13498000e+00
- 2 111 304 305 0.59561789e+00 -0.28392061e-01 0.11380102e+02 0.13498000e+00
- 1 -2212 0 0 0.80458213e+00 -0.46183084e+00 0.28270619e+02 0.93827000e+00
- 1 211 0 0 0.15476888e+00 -0.10178970e+00 0.30323421e+01 0.13957000e+00
- 1 321 0 0 0.43271520e+00 -0.99598951e+00 0.51165291e+01 0.49360000e+00
- 1 -211 0 0 0.13616286e+00 -0.11361397e+01 0.31867808e+01 0.13957000e+00
- 2 310 306 307 0.26484066e+00 -0.13028169e+01 0.28412213e+01 0.49767000e+00
- 1 -211 0 0 0.11707100e+01 -0.12969100e+01 0.47206741e+01 0.13957000e+00
- 2 111 308 309 0.12342006e-01 -0.34132572e+00 0.65708654e+00 0.13498000e+00
- 1 -211 0 0 -0.19909974e+00 -0.33654373e+00 0.70206422e+00 0.13957000e+00
- 1 211 0 0 0.38936857e+00 -0.22943624e+01 0.53374099e+01 0.13957000e+00
- 1 -211 0 0 0.28775648e+00 -0.15517517e+01 0.33093468e+01 0.13957000e+00
- 1 211 0 0 0.38588126e+00 -0.48792508e+00 0.16196317e+01 0.13957000e+00
- 1 211 0 0 0.22345858e+00 -0.91453381e+00 0.97704490e+00 0.13957000e+00
- 1 -211 0 0 0.95844611e-01 -0.93367038e+00 0.14924508e+01 0.13957000e+00
- 2 111 310 311 -0.42900222e-01 -0.16912414e+00 0.57197647e+00 0.13498000e+00
- 1 211 0 0 -0.30818677e-01 -0.12769636e-01 0.27945468e+00 0.13957000e+00
- 1 -211 0 0 -0.40027851e+00 -0.57731998e+00 0.50700266e+00 0.13957000e+00
- 2 111 312 313 -0.17967851e+00 -0.37289346e+00 0.79361038e+00 0.13498000e+00
- 1 22 0 0 -0.73227094e-02 -0.45323105e+00 0.15800933e-01 0.00000000e+00
- 1 22 0 0 -0.52105520e+00 -0.49876731e+00 0.45546560e+00 0.00000000e+00
- 1 211 0 0 -0.87057258e+00 -0.47739664e+00 -0.12008227e+00 0.13957000e+00
- 2 111 314 315 -0.21284166e+00 -0.42521512e+00 0.29046219e+00 0.13498000e+00
- 1 -211 0 0 0.14330795e+00 -0.23020860e-02 -0.44048427e-01 0.13957000e+00
- 1 211 0 0 -0.13712716e+00 -0.48116303e+00 -0.13430467e+00 0.13957000e+00
- 1 211 0 0 0.22763309e-01 0.14957029e+00 0.26856134e-01 0.13957000e+00
- 1 -211 0 0 0.83891583e-01 -0.24097382e+00 0.10880867e+01 0.13957000e+00
- 2 310 316 317 0.50328103e+00 0.52122533e+00 0.15139936e+01 0.49767000e+00
- 2 -311 318 318 0.21467631e+01 0.11706494e+01 0.18601242e+01 0.49767000e+00
- 1 -211 0 0 0.20235433e+01 0.65550109e+00 0.20938802e+01 0.13957000e+00
- 1 2112 0 0 0.21142362e+01 0.92326682e+00 0.25648833e+01 0.93957000e+00
- 2 111 319 320 0.48146476e+00 0.26427211e+00 0.68590441e+00 0.13498000e+00
- 1 -211 0 0 0.60799522e-01 0.94950037e-01 -0.51167580e-01 0.13957000e+00
- 1 211 0 0 0.77855049e+00 -0.33752837e+00 -0.75983775e+00 0.13957000e+00
- 2 111 321 322 0.30221915e+00 -0.12848132e+00 -0.12092254e+00 0.13498000e+00
- 1 -2212 0 0 0.20716197e+00 -0.53521295e+00 -0.23416902e+01 0.93827000e+00
- 1 211 0 0 0.13398448e+00 -0.69529586e-01 -0.61441328e+00 0.13957000e+00
- 2 -311 323 323 0.72780343e+00 -0.59507891e+00 -0.22782702e+01 0.49767000e+00
- 2 111 324 325 0.10953383e-01 0.13503282e+00 -0.46751633e+00 0.13498000e+00
- 1 -211 0 0 -0.12733099e+00 -0.65595277e-01 -0.13783420e+01 0.13957000e+00
- 1 211 0 0 -0.23526246e+00 0.15638554e+00 -0.15746830e+02 0.13957000e+00
- 1 211 0 0 0.82562546e-01 0.28216234e-01 -0.38612567e+01 0.13957000e+00
- 1 -211 0 0 -0.73552494e-01 0.50197462e-01 -0.41152500e+01 0.13957000e+00
- 2 111 326 327 -0.41282446e-01 -0.53493829e+00 -0.81606436e+01 0.13498000e+00
- 2 311 328 328 -0.48870239e+00 0.48193146e-01 -0.28901119e+02 0.49767000e+00
- 1 211 0 0 0.99730429e-01 -0.10371107e+00 -0.11459612e+02 0.13957000e+00
- 1 -321 0 0 -0.18789411e+00 -0.20961875e+00 -0.31723778e+02 0.49360000e+00
- 1 211 0 0 0.16081980e+00 -0.32548184e+00 -0.19237426e+02 0.13957000e+00
- 1 22 0 0 0.26950491e+00 0.46272100e+00 -0.18623140e+02 0.00000000e+00
- 1 22 0 0 -0.60664276e-01 -0.12090731e+00 -0.32366602e+01 0.00000000e+00
- 1 211 0 0 0.73767772e-01 -0.74632909e-02 -0.32111721e+02 0.13957000e+00
- 1 -211 0 0 -0.10374885e+00 -0.20745412e+00 -0.35161707e+02 0.13957000e+00
- 2 111 329 330 0.25493488e+00 -0.28900313e-01 -0.12992511e+03 0.13498000e+00
- 1 -211 0 0 0.12761412e+00 0.31079035e-01 -0.16844297e+03 0.13957000e+00
- 2 111 331 332 -0.26871643e+00 0.55435443e+00 -0.12815506e+03 0.13498000e+00
- 1 211 0 0 0.12516233e+01 -0.46639857e+00 -0.20997167e+04 0.13957000e+00
- 2 111 333 334 0.33807603e+00 -0.51954178e-01 -0.15028155e+04 0.13498000e+00
- 1 22 0 0 -0.42356814e-01 -0.24568448e-01 0.98095356e+01 0.00000000e+00
- 1 22 0 0 -0.22350673e+00 0.17620035e+00 0.46166200e+02 0.00000000e+00
- 1 22 0 0 -0.61847050e-01 -0.17351762e+00 0.77334040e+00 0.00000000e+00
- 1 22 0 0 -0.13737975e+00 -0.13423803e+00 0.45149445e+00 0.00000000e+00
- 1 22 0 0 0.23132525e+00 0.53821721e+00 0.17906643e+01 0.00000000e+00
- 1 22 0 0 0.10241120e+00 0.81556157e-01 0.39894518e+00 0.00000000e+00
- 1 22 0 0 -0.10359112e+00 -0.15528934e-03 -0.28429910e+00 0.00000000e+00
- 1 22 0 0 -0.31353257e+00 -0.24695746e+00 -0.96624328e+00 0.00000000e+00
- 1 22 0 0 -0.50651912e-01 0.15406041e+00 -0.32082751e+01 0.00000000e+00
- 1 22 0 0 -0.25100587e+00 0.22197472e+00 -0.51703868e+01 0.00000000e+00
- 1 22 0 0 0.26881361e+00 -0.15907848e+00 -0.61909176e+01 0.00000000e+00
- 1 22 0 0 0.51377389e-01 -0.11056774e-01 -0.39515590e+00 0.00000000e+00
- 2 310 335 336 -0.99569371e-02 0.62101753e+00 -0.11499948e+02 0.49767000e+00
- 1 22 0 0 -0.11041911e+00 0.23325309e+00 -0.18037237e+02 0.00000000e+00
- 1 22 0 0 -0.15189130e+00 0.24079871e+00 -0.12329417e+02 0.00000000e+00
- 1 22 0 0 0.17219569e+00 0.31336188e-01 -0.27522579e+02 0.00000000e+00
- 1 22 0 0 0.18147657e+00 0.11845796e+00 -0.19434273e+02 0.00000000e+00
- 1 22 0 0 -0.14966014e-01 -0.28705519e-01 0.25300539e+01 0.00000000e+00
- 1 22 0 0 0.93086783e-01 0.98544230e-01 0.66031822e+01 0.00000000e+00
- 1 22 0 0 0.26639897e+00 0.20333681e+00 0.18808049e+02 0.00000000e+00
- 1 22 0 0 -0.89044754e-02 -0.10469679e-01 0.74567015e+00 0.00000000e+00
- 1 22 0 0 0.33807579e-01 -0.26024178e+00 0.72005820e+00 0.00000000e+00
- 1 22 0 0 -0.25768169e-01 -0.11174891e-01 0.20959988e+00 0.00000000e+00
- 1 22 0 0 0.27678504e+00 -0.12261928e+00 0.22007382e+01 0.00000000e+00
- 1 22 0 0 0.16195390e+00 0.28403763e-01 0.14112048e+01 0.00000000e+00
- 1 22 0 0 0.17143950e+00 -0.52199510e-01 0.16467832e+01 0.00000000e+00
- 1 22 0 0 0.23485206e+00 0.74885075e-01 0.17769557e+01 0.00000000e+00
- 2 310 337 338 0.73955728e+00 -0.91645766e+00 0.24079118e+02 0.49767000e+00
- 1 22 0 0 0.36812279e+00 -0.60386222e+00 0.87139290e+01 0.00000000e+00
- 1 22 0 0 0.29929744e+00 -0.40686657e+00 0.76677469e+01 0.00000000e+00
- 1 -211 0 0 0.15609683e+00 -0.19706942e+00 0.24831459e+01 0.13957000e+00
- 1 211 0 0 0.43275461e+00 -0.82006313e-01 0.96726432e+01 0.13957000e+00
- 1 22 0 0 -0.32826122e-01 -0.27786151e+00 0.30192315e+01 0.00000000e+00
- 1 22 0 0 -0.58427390e-01 -0.99096360e-01 0.23098993e+01 0.00000000e+00
- 1 22 0 0 0.11751960e+00 -0.55486749e-01 0.19951700e+01 0.00000000e+00
- 1 22 0 0 0.87000337e-01 -0.85483566e-01 0.69879788e+00 0.00000000e+00
- 1 22 0 0 0.12333565e+01 -0.77873532e+00 0.38924660e+02 0.00000000e+00
- 1 22 0 0 0.23321125e+01 -0.15782593e+01 0.79678873e+02 0.00000000e+00
- 1 22 0 0 0.12266710e+00 0.39847473e-02 0.18822764e+01 0.00000000e+00
- 1 22 0 0 0.27843751e+00 -0.12067987e+00 0.79828336e+01 0.00000000e+00
- 1 22 0 0 0.28037041e+00 -0.66891453e-01 0.91771940e+01 0.00000000e+00
- 1 22 0 0 0.12917304e+00 -0.12297617e+00 0.42572920e+01 0.00000000e+00
- 1 22 0 0 0.12276481e+00 0.35382747e-01 0.17937197e+01 0.00000000e+00
- 1 22 0 0 0.47285309e+00 -0.63774808e-01 0.95863826e+01 0.00000000e+00
- 1 -211 0 0 -0.46247025e-01 -0.14622001e+00 0.31893466e+00 0.13957000e+00
- 1 211 0 0 0.31108769e+00 -0.11565969e+01 0.25222866e+01 0.13957000e+00
- 1 22 0 0 -0.57173947e-01 -0.10852002e+00 0.18792389e+00 0.00000000e+00
- 1 22 0 0 0.69515953e-01 -0.23280570e+00 0.46916265e+00 0.00000000e+00
- 1 22 0 0 -0.67784004e-01 -0.10689215e+00 0.49523139e+00 0.00000000e+00
- 1 22 0 0 0.24883782e-01 -0.62231988e-01 0.76745083e-01 0.00000000e+00
- 1 22 0 0 -0.13371003e+00 -0.33754167e+00 0.74785310e+00 0.00000000e+00
- 1 22 0 0 -0.45968474e-01 -0.35351791e-01 0.45757279e-01 0.00000000e+00
- 1 22 0 0 -0.34246158e-02 -0.76785924e-01 0.95150319e-01 0.00000000e+00
- 1 22 0 0 -0.20941704e+00 -0.34842919e+00 0.19531188e+00 0.00000000e+00
- 1 211 0 0 0.68005241e-01 0.27523050e+00 0.85662886e+00 0.13957000e+00
- 1 -211 0 0 0.43527579e+00 0.24599483e+00 0.65736471e+00 0.13957000e+00
- 2 310 339 340 0.21467631e+01 0.11706494e+01 0.18601242e+01 0.49767000e+00
- 1 22 0 0 0.17199513e+00 0.12374088e+00 0.36230052e+00 0.00000000e+00
- 1 22 0 0 0.30946963e+00 0.14053123e+00 0.32360390e+00 0.00000000e+00
- 1 22 0 0 0.61154410e-01 0.27214801e-01 -0.34921496e-01 0.00000000e+00
- 1 22 0 0 0.24106474e+00 -0.15569612e+00 -0.86001047e-01 0.00000000e+00
- 2 310 341 342 0.72780343e+00 -0.59507891e+00 -0.22782702e+01 0.49767000e+00
- 1 22 0 0 0.20268402e-01 0.52017896e-01 -0.37948192e-01 0.00000000e+00
- 1 22 0 0 -0.93150195e-02 0.83014923e-01 -0.42956814e+00 0.00000000e+00
- 1 22 0 0 -0.80482447e-01 -0.44101314e+00 -0.62803270e+01 0.00000000e+00
- 1 22 0 0 0.39200001e-01 -0.93925152e-01 -0.18803166e+01 0.00000000e+00
- 1 130 0 0 -0.48870239e+00 0.48193146e-01 -0.28901119e+02 0.49767000e+00
- 1 22 0 0 0.10370959e+00 0.42816296e-01 -0.69920968e+02 0.00000000e+00
- 1 22 0 0 0.15122529e+00 -0.71716609e-01 -0.60004140e+02 0.00000000e+00
- 1 22 0 0 -0.18299587e+00 0.25809889e+00 -0.56162092e+02 0.00000000e+00
- 1 22 0 0 -0.85720554e-01 0.29625554e+00 -0.71992970e+02 0.00000000e+00
- 1 22 0 0 0.17264956e+00 0.32498592e-01 -0.86961708e+03 0.00000000e+00
- 1 22 0 0 0.16542647e+00 -0.84452770e-01 -0.63319838e+03 0.00000000e+00
- 1 211 0 0 0.17635261e+00 0.15906028e+00 -0.44960442e+01 0.13957000e+00
- 1 -211 0 0 -0.18630955e+00 0.46195725e+00 -0.70039034e+01 0.13957000e+00
- 1 211 0 0 0.62589765e-01 -0.20667982e+00 0.74448433e+01 0.13957000e+00
- 1 -211 0 0 0.67696751e+00 -0.70977784e+00 0.16634275e+02 0.13957000e+00
- 1 -211 0 0 0.96801314e+00 0.72001289e+00 0.76227587e+00 0.13957000e+00
- 1 211 0 0 0.11787500e+01 0.45063651e+00 0.10978483e+01 0.13957000e+00
- 1 211 0 0 0.52613655e+00 -0.27509607e+00 -0.17260184e+01 0.13957000e+00
- 1 -211 0 0 0.20166689e+00 -0.31998284e+00 -0.55225178e+00 0.13957000e+00
- 621
- 2 25 2 3 0.15176773e+02 0.35368039e+02 0.56794776e+02 0.12500235e+03
- 2 23 4 5 0.22757971e+02 0.23292732e+02 0.37223833e+02 0.92466953e+02
- 2 23 6 7 -0.75811977e+01 0.12075308e+02 0.19570943e+02 0.28933930e+02
- 1 13 0 0 0.37385025e+02 -0.25188064e+02 0.28891431e+02 0.10566000e+00
- 1 -13 0 0 -0.14627054e+02 0.48480795e+02 0.83324021e+01 0.10566000e+00
- 1 13 0 0 -0.97002756e+01 -0.25995389e+01 0.20546370e+02 0.10566000e+00
- 1 -13 0 0 0.21190779e+01 0.14674846e+02 -0.97542663e+00 0.10566000e+00
- 2 -3 80 80 -0.55975724e+01 -0.33280809e+02 0.19459658e+03 0.50000000e+00
- 2 21 80 80 -0.57114515e+00 -0.54293785e+01 0.27624831e+02 0.00000000e+00
- 2 21 80 80 -0.49021732e-01 -0.40179501e+00 0.37969887e+01 0.00000000e+00
- 2 21 80 80 -0.53272695e+00 -0.29358815e+00 0.39204271e+01 0.00000000e+00
- 2 21 80 80 -0.35962253e+01 0.34304567e+01 0.28729588e+02 0.00000000e+00
- 2 21 80 80 0.56519449e+00 0.29139473e+01 0.11317162e+01 0.00000000e+00
- 2 21 80 80 -0.10899771e+00 0.13318042e+01 -0.85337180e+00 0.00000000e+00
- 2 21 80 80 -0.16296111e+01 0.13379848e+01 -0.76417920e+00 0.00000000e+00
- 2 21 80 80 -0.20844516e+01 -0.12760262e+00 -0.22835102e+01 0.00000000e+00
- 2 21 80 80 0.17234242e+01 -0.90201059e-01 -0.48520626e-01 0.00000000e+00
- 2 21 80 80 0.20844516e+01 0.12760262e+00 -0.26483904e+01 0.00000000e+00
- 2 21 80 80 0.47016573e+01 0.81231824e+00 -0.10422163e+02 0.00000000e+00
- 2 21 80 80 0.10533937e+01 -0.26094027e+00 -0.50554562e+01 0.00000000e+00
- 2 21 80 80 0.13148254e+01 0.89687213e+00 -0.72462698e+01 0.00000000e+00
- 2 21 80 80 0.15716644e+01 0.29982232e+01 -0.19223968e+02 0.00000000e+00
- 2 21 80 80 0.56681082e+00 0.16498316e+01 -0.10224963e+02 0.00000000e+00
- 2 21 80 80 -0.18508346e+01 0.34387029e+00 -0.96075125e+01 0.00000000e+00
- 2 21 80 80 -0.73898329e+00 0.78212342e+00 -0.16294933e+01 0.00000000e+00
- 2 21 80 80 -0.63027997e-01 -0.85408129e+00 -0.12645941e+01 0.00000000e+00
- 2 21 80 80 0.24044831e+00 0.94525052e-01 -0.17825244e+01 0.00000000e+00
- 2 21 80 80 -0.54907464e+00 -0.45608527e-01 -0.79616876e+01 0.00000000e+00
- 2 4 80 80 -0.16139702e+01 0.71124686e-01 -0.12099502e+03 0.15000000e+01
- 2 3 120 120 -0.34145513e+00 -0.20898534e+01 0.10639545e+03 0.50000000e+00
- 2 2103 120 120 0.65285232e+00 0.60341169e+00 0.36437509e+04 0.77133000e+00
- 2 -4 125 125 -0.29309435e+00 0.11478101e+01 -0.12198942e+03 0.15000000e+01
- 2 2 125 125 0.24691458e+00 -0.84799269e+00 -0.22534918e+02 0.33000000e+00
- 2 2 128 128 -0.21856899e+00 0.56899543e+00 0.99259185e+03 0.33000000e+00
- 2 21 128 128 -0.46343845e-01 0.50205500e+01 0.11611202e+02 0.00000000e+00
- 2 21 128 128 0.18130881e+01 0.28781789e+01 0.14490148e+02 0.00000000e+00
- 2 21 128 128 0.16076894e+01 -0.22397477e-01 0.23972758e+02 0.00000000e+00
- 2 21 128 128 0.30577109e+01 0.17948596e+00 0.53599785e+02 0.00000000e+00
- 2 21 128 128 0.21418137e+01 -0.17184476e+01 0.90930706e+02 0.00000000e+00
- 2 21 128 128 0.49168696e+00 -0.27268501e-01 0.18788212e+02 0.00000000e+00
- 2 21 128 128 0.33874944e+01 0.40266013e+01 0.33076924e+03 0.00000000e+00
- 2 21 128 128 -0.49168696e+00 0.27268501e-01 0.37568850e+02 0.00000000e+00
- 2 21 128 128 -0.13148254e+01 -0.89687213e+00 0.12547622e+03 0.00000000e+00
- 2 21 128 128 -0.33874944e+01 -0.40266013e+01 0.34716445e+03 0.00000000e+00
- 2 21 128 128 -0.56519449e+00 -0.29139473e+01 0.41635234e+02 0.00000000e+00
- 2 21 128 128 0.46343845e-01 -0.50205500e+01 0.43550944e+02 0.00000000e+00
- 2 21 128 128 0.14421126e+00 -0.30126032e+00 0.18759478e+01 0.00000000e+00
- 2 21 128 128 -0.21418137e+01 0.17184476e+01 0.31883778e+02 0.00000000e+00
- 2 21 128 128 -0.30577109e+01 -0.17948596e+00 0.22084048e+02 0.00000000e+00
- 2 21 128 128 -0.17234242e+01 0.90201059e-01 0.20350559e+01 0.00000000e+00
- 2 21 128 128 -0.47016573e+01 -0.81231824e+00 0.49018934e+01 0.00000000e+00
- 2 21 128 128 -0.18130881e+01 -0.28781789e+01 -0.11811642e+01 0.00000000e+00
- 2 21 128 128 -0.92502753e+00 -0.18741739e+01 -0.19978509e+01 0.00000000e+00
- 2 21 128 128 0.10899771e+00 -0.13318042e+01 -0.27484960e+01 0.00000000e+00
- 2 21 128 128 -0.10533937e+01 0.26094027e+00 -0.11866181e+02 0.00000000e+00
- 2 21 128 128 -0.56681082e+00 -0.16498316e+01 -0.28892444e+02 0.00000000e+00
- 2 21 128 128 -0.26817509e+01 -0.31553910e+01 -0.11885708e+03 0.00000000e+00
- 2 21 128 128 -0.93621785e+00 0.55844025e+00 -0.68834599e+02 0.00000000e+00
- 2 21 128 128 -0.13231847e+01 0.59381294e+00 -0.11209267e+03 0.00000000e+00
- 2 21 128 128 -0.15716644e+01 -0.29982232e+01 -0.81810501e+03 0.00000000e+00
- 2 21 128 128 -0.23188158e+01 0.12065389e+01 -0.18224393e+04 0.00000000e+00
- 2 21 128 128 0.93621785e+00 -0.55844025e+00 -0.13174534e+04 0.00000000e+00
- 2 21 128 128 0.13231847e+01 -0.59381294e+00 -0.58278188e+03 0.00000000e+00
- 2 21 128 128 0.92502753e+00 0.18741739e+01 -0.34204458e+03 0.00000000e+00
- 2 21 128 128 0.16296111e+01 -0.13379848e+01 -0.13055178e+03 0.00000000e+00
- 2 21 128 128 0.26817509e+01 0.31553910e+01 -0.66642756e+02 0.00000000e+00
- 2 21 128 128 0.23188158e+01 -0.12065389e+01 -0.60905760e+02 0.00000000e+00
- 2 21 128 128 -0.34850144e+00 0.14789669e+01 -0.12364246e+03 0.00000000e+00
- 2 2103 128 128 0.47214047e-01 -0.64621738e+00 -0.98682761e+03 0.77133000e+00
- 2 2 217 217 0.23119187e+01 0.23425223e+01 0.23954041e+03 0.00000000e+00
- 2 -2 217 217 -0.23119187e+01 -0.23425223e+01 0.43189233e+02 0.00000000e+00
- 2 2 223 223 0.21428855e+01 0.31255198e+00 0.19077824e+01 0.00000000e+00
- 2 21 223 223 0.18094042e+01 0.27503264e+00 0.48984142e+01 0.00000000e+00
- 2 21 223 223 -0.18094042e+01 -0.27503264e+00 0.58030908e+01 0.00000000e+00
- 2 21 223 223 -0.16076894e+01 0.22397477e-01 0.56681702e+01 0.00000000e+00
- 2 -2 223 223 -0.21428855e+01 -0.31255198e+00 0.83358161e+01 0.00000000e+00
- 2 2 230 230 -0.64537281e+00 -0.13044436e+01 0.82245681e+02 0.00000000e+00
- 2 21 230 230 -0.14421126e+00 0.30126032e+00 0.81079716e+02 0.00000000e+00
- 2 -2 230 230 0.64537281e+00 0.13044436e+01 0.21006112e+03 0.00000000e+00
- 2 92 81 119 -0.51637725e+01 -0.23993320e+02 0.57788508e+02 0.47165301e+03
- 2 331 235 237 -0.28710263e+01 -0.16557136e+02 0.91768920e+02 0.95753123e+00
- 2 -3122 238 239 -0.13639472e+01 -0.63622515e+01 0.41977602e+02 0.11156800e+01
- 1 211 0 0 -0.10288755e+01 -0.10500975e+02 0.64176776e+02 0.13957000e+00
- 2 1114 240 241 -0.48421686e+00 -0.14821713e+01 0.10483473e+02 0.12268387e+01
- 1 211 0 0 -0.98599893e+00 -0.16047899e+01 0.89084778e+01 0.13957000e+00
- 2 113 242 243 -0.17768165e+00 -0.91214561e+00 0.64603285e+01 0.80819233e+00
- 1 -211 0 0 0.11413344e+00 -0.26120324e+00 0.26762475e+01 0.13957000e+00
- 2 213 244 245 0.10184992e+00 -0.66233318e+00 0.46353956e+01 0.74116243e+00
- 1 -2212 0 0 -0.20110114e+01 0.87011070e+00 0.11119855e+02 0.93827000e+00
- 2 113 246 247 0.12745407e-02 0.57461742e+00 0.62886215e+01 0.73967886e+00
- 2 2214 248 249 -0.10228849e+01 0.84065349e+00 0.55766177e+01 0.13281557e+01
- 2 -213 250 251 0.44060789e-02 0.51137987e+00 0.10360728e+01 0.63767853e+00
- 2 -313 252 253 0.22143833e+00 0.48141797e+00 0.10230633e+01 0.84401879e+00
- 1 321 0 0 -0.21288259e+00 0.10972496e+01 0.26707508e+01 0.49360000e+00
- 1 -211 0 0 -0.72014250e+00 -0.39209740e+00 -0.31685557e+00 0.13957000e+00
- 2 113 254 255 -0.26901911e+00 0.22523388e+01 0.42469621e+00 0.74661966e+00
- 2 113 256 257 -0.45371635e+00 0.27253059e+00 -0.84229038e+00 0.85759536e+00
- 2 113 258 259 -0.46833037e+00 0.46987161e+00 -0.41818288e+00 0.67627208e+00
- 2 223 260 262 -0.18439451e+00 0.74142309e+00 -0.50445114e+00 0.78567003e+00
- 2 213 263 264 -0.15528750e+01 0.25499852e+00 -0.99102931e+00 0.66999026e+00
- 2 113 265 266 0.18364197e+01 -0.52819235e-01 -0.19805708e+01 0.75641429e+00
- 2 221 267 268 0.19025266e+00 -0.17674199e+00 -0.12913298e+01 0.54745000e+00
- 2 -323 269 270 0.15632549e+01 0.42676689e-01 -0.12152728e+01 0.86668424e+00
- 2 311 271 271 0.24340867e+01 0.30771186e-01 -0.40145424e+01 0.49767000e+00
- 2 213 272 273 0.23837302e+01 0.11319245e+01 -0.82133835e+01 0.60403989e+00
- 2 111 274 275 0.29935505e+00 -0.32094968e-01 -0.29596412e+01 0.13498000e+00
- 2 221 276 278 0.14631126e+01 0.12490532e+01 -0.77222563e+01 0.54745000e+00
- 2 113 279 280 0.61407669e+00 0.88277513e+00 -0.52785462e+01 0.80266321e+00
- 2 223 281 283 0.36306398e+00 0.37832230e+00 -0.54204348e+01 0.77640118e+00
- 2 113 284 285 0.40474192e+00 0.35897870e+00 -0.89848828e+01 0.11019608e+01
- 1 -211 0 0 -0.15637589e+00 0.43959416e+00 -0.28226157e+01 0.13957000e+00
- 2 221 286 287 -0.61164877e+00 0.32997676e+00 -0.10483789e+01 0.54745000e+00
- 2 -2114 288 289 0.74057076e+00 0.85424226e+00 -0.91509722e+01 0.11667074e+01
- 2 111 290 291 -0.54455632e+00 0.10278238e+01 -0.51019310e+01 0.13498000e+00
- 1 2212 0 0 -0.57402623e+00 0.43151662e+00 -0.39230738e+01 0.93827000e+00
- 2 331 292 293 -0.31922371e+00 -0.25899264e+00 -0.77556250e+01 0.95779831e+00
- 2 -213 294 295 -0.10195714e+00 -0.51707334e-01 -0.40799300e+01 0.81564041e+00
- 2 331 296 297 -0.47311422e+00 -0.10814064e+00 -0.16747156e+02 0.95771678e+00
- 2 411 298 300 -0.13116346e+01 -0.10196692e+00 -0.10065504e+03 0.18693000e+01
- 2 92 121 124 0.31139720e+00 -0.14864417e+01 0.37501463e+04 0.12882761e+02
- 1 -321 0 0 -0.51699795e+00 -0.21307293e+01 0.11815066e+03 0.49360000e+00
- 1 211 0 0 0.94582222e-01 -0.59766148e-01 0.11009669e+03 0.13957000e+00
- 2 111 301 302 -0.28258157e+00 0.40991278e+00 0.24265240e+03 0.13498000e+00
- 2 2114 303 304 0.10163945e+01 0.29414099e+00 0.32792466e+04 0.11393926e+01
- 2 92 126 127 -0.46179772e-01 0.29981740e+00 -0.14452434e+03 0.31521228e+01
- 2 -411 305 307 -0.25894397e+00 0.86189026e+00 -0.12071021e+03 0.18693000e+01
- 2 213 308 309 0.21276420e+00 -0.56207286e+00 -0.23814127e+02 0.66495512e+00
- 2 92 129 216 -0.85263172e+01 -0.10511753e+02 -0.44029347e+04 0.76214875e+04
- 2 331 310 311 -0.31545236e+00 0.39991230e+00 0.49822422e+03 0.95778704e+00
- 2 223 312 314 0.22372664e+00 -0.30507105e+00 0.14051306e+03 0.78241039e+00
- 1 321 0 0 -0.28342230e+00 0.63371862e+00 0.43711059e+02 0.49360000e+00
- 2 -313 315 316 0.27786839e+00 0.22318773e+00 0.17055420e+03 0.86032203e+00
- 2 331 317 319 -0.91220005e+00 -0.15638325e+00 0.13449015e+03 0.95782495e+00
- 2 311 320 320 0.87184296e+00 0.71888683e+00 0.59839327e+01 0.49767000e+00
- 2 -313 321 322 -0.33231568e-01 0.15190123e+01 0.46985871e+01 0.10094405e+01
- 1 -211 0 0 0.93608913e+00 0.14804252e+01 0.65122219e+01 0.13957000e+00
- 2 221 323 324 0.39644857e+00 0.44511078e-01 0.26353254e+01 0.54745000e+00
- 2 213 325 326 -0.98116551e-01 0.67677748e+00 0.75289957e+01 0.76330604e+00
- 2 311 327 327 0.14798082e+00 0.20252648e+01 0.64185126e+01 0.49767000e+00
- 2 -313 328 329 0.49012549e+00 0.13044206e+01 0.81058901e+01 0.10512731e+01
- 2 221 330 332 0.16000942e+01 -0.17680034e+00 0.20052233e+02 0.54745000e+00
- 2 313 333 334 0.21023650e+01 -0.14044020e+01 0.36108541e+02 0.89069912e+00
- 2 -323 335 336 0.26003043e+01 0.15131066e+01 0.13463950e+03 0.87383789e+00
- 2 213 337 338 0.72099044e+00 0.63073377e+00 0.50743678e+02 0.73203254e+00
- 1 2212 0 0 0.96100689e+00 0.39718143e+00 0.90022441e+02 0.93827000e+00
- 2 -213 339 340 0.10565880e+01 -0.18612082e+00 0.35903442e+02 0.77003939e+00
- 1 -2112 0 0 -0.47057324e-01 -0.11521487e+00 0.97180653e+02 0.93957000e+00
- 2 111 341 342 -0.46393960e-01 0.14915053e+00 0.31486542e+02 0.13498000e+00
- 2 313 343 344 -0.28509452e+00 0.15904709e+00 0.48438254e+02 0.92203146e+00
- 2 -311 345 345 0.31115522e+00 -0.99431565e-01 0.37213012e+02 0.49767000e+00
- 1 -211 0 0 -0.21292136e+00 -0.73499740e+00 0.70037084e+02 0.13957000e+00
- 1 211 0 0 -0.14672516e+00 0.36494746e+00 0.96811138e+01 0.13957000e+00
- 2 223 346 348 -0.77464674e+00 -0.47334409e+00 0.73769304e+02 0.77991874e+00
- 2 -213 349 350 -0.74211574e-01 -0.48077388e+00 0.59906473e+02 0.78117828e+00
- 1 2212 0 0 -0.10927098e+01 -0.19331722e+01 0.11119939e+03 0.93827000e+00
- 1 -2212 0 0 -0.79934960e+00 -0.49468909e+00 0.77137159e+02 0.93827000e+00
- 1 211 0 0 -0.58409736e+00 -0.52107005e+00 0.25783407e+02 0.13957000e+00
- 2 223 351 353 -0.25442533e+00 -0.71030380e+00 0.19510190e+02 0.77808260e+00
- 2 331 354 355 0.25590634e+00 -0.18073560e+01 0.21472293e+02 0.95778332e+00
- 2 113 356 357 -0.23717093e+00 -0.12699713e+01 0.15436449e+02 0.73465225e+00
- 2 113 358 359 0.33103150e-02 -0.48500257e+00 0.13592391e+02 0.66272870e+00
- 2 221 360 362 -0.85448090e+00 -0.16950746e+00 0.11022677e+02 0.54745000e+00
- 2 111 363 364 0.21224453e+00 -0.10731924e+01 0.84243884e+01 0.13498000e+00
- 2 -213 365 366 -0.30848657e+00 -0.46868218e+00 0.10889766e+02 0.66714107e+00
- 2 213 367 368 -0.11920969e+00 -0.34930384e+00 0.30047011e+01 0.47760659e+00
- 2 1114 369 370 -0.13786452e+01 -0.10394617e+00 0.17416087e+02 0.11991750e+01
- 2 213 371 372 -0.10591644e+01 0.10633192e+01 0.14339441e+02 0.68032469e+00
- 2 -2114 373 374 -0.14840501e+01 -0.38600415e+00 0.77148854e+01 0.11774376e+01
- 1 2112 0 0 -0.88347644e+00 0.57726837e+00 0.28887513e+01 0.93957000e+00
- 1 -2212 0 0 -0.20730585e+01 -0.60191368e+00 0.31411541e+01 0.93827000e+00
- 1 211 0 0 -0.40919897e+00 -0.10389499e+00 0.35164683e+01 0.13957000e+00
- 2 221 375 377 -0.14202358e+01 -0.68528606e+00 0.17291476e+01 0.54745000e+00
- 2 111 378 379 -0.57395473e+00 -0.63964219e-03 0.26570825e+00 0.13498000e+00
- 1 -211 0 0 0.12674984e+00 -0.28908999e+00 0.51311806e-01 0.13957000e+00
- 1 211 0 0 -0.11425545e+01 -0.27493218e+00 0.11194552e+01 0.13957000e+00
- 2 113 380 381 -0.56150016e+00 -0.53761404e+00 0.34569910e+00 0.81747063e+00
- 2 -213 382 383 -0.16267512e+01 -0.15756964e+01 -0.12687759e+01 0.80974223e+00
- 2 223 384 385 -0.24996881e+00 -0.16908865e+01 -0.18910777e+01 0.76953574e+00
- 2 213 386 387 0.16768403e+00 0.89553732e-03 -0.36615016e+01 0.58905963e+00
- 2 223 388 389 -0.12614334e+01 -0.49734163e+00 -0.32363383e+01 0.77865482e+00
- 1 2112 0 0 0.16200700e-01 -0.53463689e+00 -0.34035717e+01 0.93957000e+00
- 1 -2212 0 0 -0.43162027e-01 -0.42536405e+00 -0.35694074e+01 0.93827000e+00
- 2 111 390 391 -0.18723272e+00 -0.72385958e+00 -0.52262599e+01 0.13498000e+00
- 2 213 392 393 -0.19415658e+01 -0.19874676e+01 -0.72681820e+02 0.65088145e+00
- 2 -213 394 395 -0.17351177e+00 0.16418446e+00 -0.11018172e+02 0.53654094e+00
- 1 211 0 0 -0.49790454e+00 -0.32737511e+00 -0.50362791e+02 0.13957000e+00
- 2 111 396 397 -0.19115960e+00 0.45363013e+00 -0.14619335e+02 0.13498000e+00
- 2 223 398 400 -0.19041480e+01 -0.16195365e+01 -0.79586756e+02 0.77255532e+00
- 2 313 401 402 -0.86017407e+00 0.14155135e-01 -0.58372985e+02 0.90708686e+00
- 2 -313 403 404 -0.43603761e+00 -0.46277546e+00 -0.30852411e+03 0.86058616e+00
- 2 223 405 407 -0.11972836e+01 -0.92611628e+00 -0.41444679e+03 0.77901685e+00
- 2 223 408 410 -0.68381634e-01 0.44502074e+00 -0.31305224e+03 0.78661307e+00
- 2 111 411 412 -0.32137706e+00 -0.19575307e-01 -0.13803538e+03 0.13498000e+00
- 1 -211 0 0 -0.23507665e+00 -0.10404212e+01 -0.58973089e+03 0.13957000e+00
- 2 113 413 414 -0.37217531e-01 0.25338927e+00 -0.50206896e+03 0.74716848e+00
- 2 113 415 416 0.25282355e+00 -0.62010352e+00 -0.33152646e+03 0.73599968e+00
- 2 113 417 418 -0.75297689e+00 0.26233786e+00 -0.69286831e+03 0.89814258e+00
- 2 323 419 420 -0.30921225e+00 0.90106265e+00 -0.39595986e+03 0.91311608e+00
- 2 333 421 422 0.71618821e+00 -0.70752366e-01 -0.41638510e+03 0.10172605e+01
- 2 -313 423 424 0.70282339e+00 -0.50350540e+00 -0.23083367e+03 0.86875554e+00
- 2 113 425 426 0.10919119e+01 0.34022644e+00 -0.45410649e+03 0.86422871e+00
- 2 313 427 428 0.23322539e+00 -0.55665044e+00 -0.57421499e+02 0.89328025e+00
- 1 -321 0 0 0.10521422e+00 0.34714665e+00 -0.34504509e+02 0.49360000e+00
- 2 213 429 430 0.49358468e+00 0.51834248e+00 -0.94457243e+02 0.11424924e+01
- 1 -211 0 0 0.69627596e+00 -0.24121985e+00 -0.48119093e+02 0.13957000e+00
- 2 213 431 432 0.33704322e+00 0.52511018e+00 -0.26847184e+02 0.11029879e+01
- 1 -211 0 0 0.47023921e+00 0.17852785e+00 -0.16848207e+02 0.13957000e+00
- 2 323 433 434 0.34595436e+00 0.26409676e+00 -0.22316957e+02 0.86522036e+00
- 2 -311 435 435 0.26018710e+01 0.18463854e+00 -0.56984195e+02 0.49767000e+00
- 2 -213 436 437 0.44843304e+00 0.12897593e+01 -0.46760067e+02 0.10757879e+01
- 2 213 438 439 -0.25627810e+00 -0.50345823e-01 -0.89339481e+02 0.65125855e+00
- 1 -211 0 0 -0.36165169e+00 -0.56937355e+00 -0.27224643e+02 0.13957000e+00
- 2 111 440 441 0.14197198e+01 0.84689514e-01 -0.18057239e+03 0.13498000e+00
- 2 111 442 443 -0.58644062e+00 0.32328223e+00 -0.33905947e+02 0.13498000e+00
- 1 211 0 0 -0.49332897e-01 -0.19205337e+00 -0.80149034e+02 0.13957000e+00
- 2 2114 444 445 0.93213985e-01 0.90047891e-01 -0.68560655e+03 0.12344698e+01
- 2 92 218 222 0.00000000e+00 0.00000000e+00 0.28272964e+03 0.91441812e+01
- 1 211 0 0 0.15000442e+01 0.10424744e+01 0.13798452e+03 0.13957000e+00
- 1 -211 0 0 0.29807877e+00 0.10620711e+01 0.93676605e+02 0.13957000e+00
- 2 111 446 447 -0.32176925e+00 -0.12268384e+01 0.15078227e+02 0.13498000e+00
- 2 221 448 449 -0.61768275e+00 -0.16132016e+00 0.19765119e+02 0.54745000e+00
- 2 223 450 452 -0.85867099e+00 -0.71638705e+00 0.16225167e+02 0.78320545e+00
- 2 92 224 229 -0.16076894e+01 0.22397477e-01 0.26613274e+02 0.10634366e+02
- 2 2114 453 454 0.18154369e+01 0.31667176e+00 0.31313766e+01 0.13248603e+01
- 1 211 0 0 0.93310457e+00 -0.22628961e+00 0.18353852e+01 0.13957000e+00
- 1 -2212 0 0 0.83489919e-01 0.34995146e+00 0.22429695e+01 0.93827000e+00
- 2 223 455 456 0.12460938e+00 -0.45305992e-01 0.15367586e+01 0.78505309e+00
- 2 223 457 459 -0.13437927e+01 0.50594701e+00 0.53738652e+01 0.78084182e+00
- 2 113 460 461 -0.32205375e+01 -0.87857714e+00 0.12492919e+02 0.79162356e+00
- 2 92 231 234 -0.14421126e+00 0.30126032e+00 0.37338652e+03 0.37124770e+01
- 2 213 462 463 -0.57428833e+00 -0.86559728e+00 0.11370153e+03 0.74673950e+00
- 2 -213 464 465 0.57142456e+00 0.10241575e+01 0.15584435e+03 0.10271965e+01
- 1 211 0 0 -0.16495153e+00 -0.31403047e+00 0.52476872e+02 0.13957000e+00
- 1 -211 0 0 0.23604043e-01 0.45673057e+00 0.51363763e+02 0.13957000e+00
- 2 111 466 467 -0.37253642e+00 -0.26454895e+01 0.14512851e+02 0.13498000e+00
- 2 111 468 469 -0.72689294e+00 -0.42710503e+01 0.24592279e+02 0.13498000e+00
- 2 221 470 471 -0.17715970e+01 -0.96405961e+01 0.52663790e+02 0.54745000e+00
- 1 -2112 0 0 -0.10236542e+01 -0.49923064e+01 0.32557907e+02 0.93957000e+00
- 2 111 472 473 -0.34029303e+00 -0.13699451e+01 0.94196952e+01 0.13498000e+00
- 1 2112 0 0 -0.24376396e+00 -0.13225430e+01 0.80849214e+01 0.93957000e+00
- 1 -211 0 0 -0.24045290e+00 -0.15962821e+00 0.23985517e+01 0.13957000e+00
- 1 -211 0 0 -0.10544026e+00 -0.67724376e-01 0.28049853e+00 0.13957000e+00
- 1 211 0 0 -0.72241389e-01 -0.84442123e+00 0.61798300e+01 0.13957000e+00
- 1 211 0 0 -0.12712020e+00 0.33798382e-01 0.42816365e+00 0.13957000e+00
- 2 111 474 475 0.22897012e+00 -0.69613156e+00 0.42072319e+01 0.13498000e+00
- 1 -211 0 0 -0.13808035e+00 -0.10922266e+00 0.14448843e+01 0.13957000e+00
- 1 211 0 0 0.13935489e+00 0.68384008e+00 0.48437372e+01 0.13957000e+00
- 1 2212 0 0 -0.66735696e+00 0.72265514e+00 0.50088091e+01 0.93827000e+00
- 2 111 476 477 -0.35552793e+00 0.11799835e+00 0.56780861e+00 0.13498000e+00
- 1 -211 0 0 -0.27702774e+00 0.19564263e+00 0.38559626e+00 0.13957000e+00
- 2 111 478 479 0.28143381e+00 0.31573724e+00 0.65047649e+00 0.13498000e+00
- 2 -311 480 480 0.11219879e+00 0.15660826e+00 0.88782364e+00 0.49767000e+00
- 2 111 481 482 0.10923954e+00 0.32480971e+00 0.13523965e+00 0.13498000e+00
- 1 211 0 0 -0.29594973e+00 0.21925716e+01 0.46727345e+00 0.13957000e+00
- 1 -211 0 0 0.26930622e-01 0.59767281e-01 -0.42577235e-01 0.13957000e+00
- 1 211 0 0 0.21835792e+00 -0.21111819e-01 -0.19028899e+00 0.13957000e+00
- 1 -211 0 0 -0.67207426e+00 0.29364241e+00 -0.65200139e+00 0.13957000e+00
- 1 -211 0 0 -0.76935814e-01 -0.12979113e+00 -0.16404479e+00 0.13957000e+00
- 1 211 0 0 -0.39139455e+00 0.59966274e+00 -0.25413809e+00 0.13957000e+00
- 1 211 0 0 0.13121372e+00 0.45633508e+00 -0.26671816e+00 0.13957000e+00
- 1 -211 0 0 -0.82245847e-01 -0.62609710e-02 0.30738624e-01 0.13957000e+00
- 2 111 483 484 -0.23336238e+00 0.29134898e+00 -0.26847160e+00 0.13498000e+00
- 1 211 0 0 -0.12977885e+01 -0.26173132e-01 -0.71712268e+00 0.13957000e+00
- 2 111 485 486 -0.25508650e+00 0.28117165e+00 -0.27390663e+00 0.13498000e+00
- 1 -211 0 0 0.19461475e+00 0.17970060e+00 -0.47390408e+00 0.13957000e+00
- 1 211 0 0 0.16418050e+01 -0.23251984e+00 -0.15066667e+01 0.13957000e+00
- 1 22 0 0 0.24118990e+00 0.10783983e-01 -0.11758356e+01 0.00000000e+00
- 1 22 0 0 -0.50937241e-01 -0.18752598e+00 -0.11549418e+00 0.00000000e+00
- 2 -311 487 487 0.13575537e+01 0.23532916e+00 -0.91607679e+00 0.49767000e+00
- 1 -211 0 0 0.20570118e+00 -0.19265248e+00 -0.29919601e+00 0.13957000e+00
- 2 310 488 489 0.24340867e+01 0.30771186e-01 -0.40145424e+01 0.49767000e+00
- 1 211 0 0 0.13166260e+01 0.85019979e+00 -0.42627178e+01 0.13957000e+00
- 2 111 490 491 0.10671041e+01 0.28172473e+00 -0.39506657e+01 0.13498000e+00
- 1 22 0 0 0.26836075e+00 -0.72954554e-01 -0.25582821e+01 0.00000000e+00
- 1 22 0 0 0.30994302e-01 0.40859586e-01 -0.40135915e+00 0.00000000e+00
- 2 111 492 493 0.50203152e+00 0.49090917e+00 -0.32033559e+01 0.13498000e+00
- 2 111 494 495 0.72308377e+00 0.63589762e+00 -0.33584189e+01 0.13498000e+00
- 2 111 496 497 0.23799731e+00 0.12224636e+00 -0.11604815e+01 0.13498000e+00
- 1 -211 0 0 0.36152507e+00 0.36701270e+00 -0.10609940e+01 0.13957000e+00
- 1 211 0 0 0.25255162e+00 0.51576243e+00 -0.42175522e+01 0.13957000e+00
- 1 -211 0 0 -0.11329982e+00 0.57017407e-01 -0.23355766e+01 0.13957000e+00
- 1 211 0 0 0.13598621e+00 0.87785166e-01 -0.64697264e+00 0.13957000e+00
- 2 111 498 499 0.34037759e+00 0.23351973e+00 -0.24378856e+01 0.13498000e+00
- 1 -211 0 0 -0.80577741e-01 0.42420824e+00 -0.15241520e+01 0.13957000e+00
- 1 211 0 0 0.48531966e+00 -0.65229536e-01 -0.74607307e+01 0.13957000e+00
- 1 22 0 0 0.50708837e-01 0.19002734e+00 -0.33389740e+00 0.00000000e+00
- 1 22 0 0 -0.66235761e+00 0.13994942e+00 -0.71448149e+00 0.00000000e+00
- 1 -2212 0 0 0.59159446e+00 0.68902111e+00 -0.64828173e+01 0.93827000e+00
- 1 211 0 0 0.14897630e+00 0.16522114e+00 -0.26681549e+01 0.13957000e+00
- 1 22 0 0 -0.40417194e+00 0.67347868e+00 -0.36408619e+01 0.00000000e+00
- 1 22 0 0 -0.14038438e+00 0.35434516e+00 -0.14610692e+01 0.00000000e+00
- 1 22 0 0 -0.38475441e-01 0.11269387e+00 -0.39271015e+01 0.00000000e+00
- 2 113 500 501 -0.28074827e+00 -0.37168651e+00 -0.38285236e+01 0.55470419e+00
- 1 -211 0 0 0.21452823e+00 0.10684981e+00 -0.30878048e+01 0.13957000e+00
- 2 111 502 503 -0.31648537e+00 -0.15855715e+00 -0.99212518e+00 0.13498000e+00
- 1 22 0 0 -0.20351386e-01 -0.17087341e+00 -0.27584756e+01 0.00000000e+00
- 2 223 504 506 -0.45276283e+00 0.62732772e-01 -0.13988680e+02 0.77703513e+00
- 1 -11 0 0 -0.66759347e+00 -0.26310057e+00 -0.17907084e+02 0.51000000e-03
- 1 12 0 0 -0.36403767e+00 0.11522168e+00 -0.25705220e+02 0.00000000e+00
- 2 331 507 508 -0.28000342e+00 0.45911968e-01 -0.57042734e+02 0.95771754e+00
- 1 22 0 0 -0.99062602e-01 0.22119488e+00 0.14055829e+03 0.00000000e+00
- 1 22 0 0 -0.18351897e+00 0.18871790e+00 0.10209410e+03 0.00000000e+00
- 1 2112 0 0 0.70116488e+00 0.14952869e+00 0.24450192e+04 0.93957000e+00
- 2 111 509 510 0.31522962e+00 0.14461230e+00 0.83422737e+03 0.13498000e+00
- 1 11 0 0 -0.62675018e-01 -0.45675705e-01 -0.12859764e+01 0.51000000e-03
- 1 -12 0 0 0.26320222e+00 0.55122465e+00 -0.75766926e+02 0.00000000e+00
- 2 313 511 512 -0.45947117e+00 0.35634131e+00 -0.43657311e+02 0.89423783e+00
- 1 211 0 0 0.27724120e+00 -0.57910504e+00 -0.13705579e+02 0.13957000e+00
- 2 111 513 514 -0.64476998e-01 0.17032183e-01 -0.10108548e+02 0.13498000e+00
- 1 22 0 0 0.23053858e-01 0.22520981e+00 0.59659497e+02 0.00000000e+00
- 2 113 515 516 -0.33850622e+00 0.17470249e+00 0.43856472e+03 0.71695357e+00
- 1 -211 0 0 0.12369438e-01 -0.40931822e-01 0.61691257e+01 0.13957000e+00
- 1 211 0 0 0.70674968e-01 -0.27101923e+00 0.81597723e+02 0.13957000e+00
- 2 111 517 518 0.14068224e+00 0.68799988e-02 0.52746211e+02 0.13498000e+00
- 1 -321 0 0 0.10652748e+00 0.12175300e+00 0.15273451e+03 0.49360000e+00
- 1 211 0 0 0.17134091e+00 0.10143473e+00 0.17819690e+02 0.13957000e+00
- 2 111 519 520 -0.21959761e+00 -0.15506845e+00 0.28339972e+02 0.13498000e+00
- 2 111 521 522 -0.12776141e+00 0.64716716e-01 0.36401446e+02 0.13498000e+00
- 2 221 523 524 -0.56484103e+00 -0.66031508e-01 0.69748728e+02 0.54745000e+00
- 2 310 525 526 0.87184296e+00 0.71888683e+00 0.59839327e+01 0.49767000e+00
- 1 -321 0 0 -0.63076055e-01 0.79969621e+00 0.16051606e+01 0.49360000e+00
- 1 211 0 0 0.29844487e-01 0.71931608e+00 0.30934266e+01 0.13957000e+00
- 1 22 0 0 0.48473292e+00 0.17403703e+00 0.18605663e+01 0.00000000e+00
- 1 22 0 0 -0.88284349e-01 -0.12952595e+00 0.77475910e+00 0.00000000e+00
- 1 211 0 0 -0.14602781e+00 0.86782261e-01 0.53901762e+00 0.13957000e+00
- 2 111 527 528 0.47911257e-01 0.58999522e+00 0.69899780e+01 0.13498000e+00
- 2 310 529 530 0.14798082e+00 0.20252648e+01 0.64185126e+01 0.49767000e+00
- 1 -321 0 0 0.11280620e+00 0.34850856e+00 0.44252945e+01 0.49360000e+00
- 1 211 0 0 0.37731929e+00 0.95591208e+00 0.36805956e+01 0.13957000e+00
- 1 -211 0 0 0.78995995e+00 -0.68738786e-01 0.85728299e+01 0.13957000e+00
- 1 211 0 0 0.67578252e+00 -0.86451330e-01 0.89049369e+01 0.13957000e+00
- 2 111 531 532 0.13435174e+00 -0.21610219e-01 0.25744658e+01 0.13498000e+00
- 1 321 0 0 0.10311000e+01 -0.55730652e+00 0.14427665e+02 0.49360000e+00
- 1 -211 0 0 0.10712650e+01 -0.84709552e+00 0.21680876e+02 0.13957000e+00
- 2 -311 533 533 0.23090555e+01 0.11146085e+01 0.11588698e+03 0.49767000e+00
- 1 -211 0 0 0.29124876e+00 0.39849814e+00 0.18752523e+02 0.13957000e+00
- 1 211 0 0 0.64663147e+00 0.56082426e+00 0.48570323e+02 0.13957000e+00
- 2 111 534 535 0.74358969e-01 0.69909511e-01 0.21733549e+01 0.13498000e+00
- 1 -211 0 0 0.29694440e-01 -0.30332894e-02 0.12330622e+02 0.13957000e+00
- 2 111 536 537 0.10268936e+01 -0.18308753e+00 0.23572820e+02 0.13498000e+00
- 1 22 0 0 -0.75993551e-01 0.91392936e-01 0.26331042e+02 0.00000000e+00
- 1 22 0 0 0.29599591e-01 0.57757596e-01 0.51555000e+01 0.00000000e+00
- 1 321 0 0 -0.27779010e+00 0.28107233e+00 0.45289172e+02 0.49360000e+00
- 1 -211 0 0 -0.73044209e-02 -0.12202524e+00 0.31490821e+01 0.13957000e+00
- 1 130 0 0 0.31115522e+00 -0.99431565e-01 0.37213012e+02 0.49767000e+00
- 1 -211 0 0 -0.20562260e+00 -0.41464728e+00 0.24459533e+02 0.13957000e+00
- 1 211 0 0 -0.16862681e+00 0.10595498e+00 0.16161887e+02 0.13957000e+00
- 2 111 538 539 -0.40039733e+00 -0.16465179e+00 0.33147884e+02 0.13498000e+00
- 1 -211 0 0 -0.28260923e+00 0.44102712e-01 0.27761936e+02 0.13957000e+00
- 2 111 540 541 0.20839765e+00 -0.52487659e+00 0.32144537e+02 0.13498000e+00
- 1 211 0 0 0.13861724e+00 -0.37429676e+00 0.63998493e+01 0.13957000e+00
- 1 -211 0 0 -0.12181106e+00 -0.27379223e-01 0.23539083e+01 0.13957000e+00
- 2 111 542 543 -0.27123150e+00 -0.30862782e+00 0.10756432e+02 0.13498000e+00
- 1 22 0 0 -0.10080382e+00 -0.40909625e+00 0.40703777e+01 0.00000000e+00
- 2 113 544 545 0.35671016e+00 -0.13982598e+01 0.17401915e+02 0.77625456e+00
- 1 -211 0 0 0.65719644e-01 -0.34950791e+00 0.77310244e+01 0.13957000e+00
- 1 211 0 0 -0.30289057e+00 -0.92046339e+00 0.77054241e+01 0.13957000e+00
- 1 -211 0 0 -0.22730351e+00 -0.97210965e-01 0.79462022e+01 0.13957000e+00
- 1 211 0 0 0.23061383e+00 -0.38779161e+00 0.56461889e+01 0.13957000e+00
- 1 211 0 0 -0.37365343e+00 0.36867011e-01 0.34645346e+01 0.13957000e+00
- 1 -211 0 0 -0.18790526e+00 -0.16858793e+00 0.35684183e+01 0.13957000e+00
- 2 111 546 547 -0.29292221e+00 -0.37786542e-01 0.39897239e+01 0.13498000e+00
- 1 22 0 0 0.22276645e+00 -0.97991015e+00 0.78726906e+01 0.00000000e+00
- 1 22 0 0 -0.10521918e-01 -0.93282239e-01 0.55169787e+00 0.00000000e+00
- 1 -211 0 0 0.16603590e+00 -0.15207240e+00 0.23876171e+01 0.13957000e+00
- 2 111 548 549 -0.47452247e+00 -0.31660979e+00 0.85021493e+01 0.13498000e+00
- 1 211 0 0 0.72824091e-01 -0.12300660e-01 0.13766151e+01 0.13957000e+00
- 2 111 550 551 -0.19203378e+00 -0.33700318e+00 0.16280860e+01 0.13498000e+00
- 1 2112 0 0 -0.11081436e+01 0.63162017e-01 0.12662619e+02 0.93957000e+00
- 1 -211 0 0 -0.27050163e+00 -0.16710818e+00 0.47534689e+01 0.13957000e+00
- 1 211 0 0 -0.62503617e+00 0.36360636e+00 0.89388583e+01 0.13957000e+00
- 2 111 552 553 -0.43412820e+00 0.69971284e+00 0.54005825e+01 0.13498000e+00
- 1 -2112 0 0 -0.13704213e+01 -0.48390978e+00 0.69820224e+01 0.93957000e+00
- 2 111 554 555 -0.11362887e+00 0.97905622e-01 0.73286304e+00 0.13498000e+00
- 2 111 556 557 -0.33936234e+00 -0.22177304e+00 0.34106107e+00 0.13498000e+00
- 2 111 558 559 -0.79340334e+00 -0.30507273e+00 0.83255422e+00 0.13498000e+00
- 2 111 560 561 -0.28747014e+00 -0.15844029e+00 0.55553231e+00 0.13498000e+00
- 1 22 0 0 -0.29389370e+00 -0.23575540e-01 0.66425401e-01 0.00000000e+00
- 1 22 0 0 -0.28006103e+00 0.22935898e-01 0.19928285e+00 0.00000000e+00
- 1 -211 0 0 0.12723474e+00 -0.22064831e+00 -0.77271775e-01 0.13957000e+00
- 1 211 0 0 -0.68873490e+00 -0.31696572e+00 0.42297088e+00 0.13957000e+00
- 1 -211 0 0 -0.13995384e+01 -0.13276646e+01 -0.13359762e+01 0.13957000e+00
- 2 111 562 563 -0.22721277e+00 -0.24803186e+00 0.67200282e-01 0.13498000e+00
- 1 22 0 0 0.11701079e+00 -0.93528542e+00 -0.60282248e+00 0.00000000e+00
- 2 111 564 565 -0.36697961e+00 -0.75560112e+00 -0.12882552e+01 0.13498000e+00
- 1 211 0 0 0.91076837e-02 0.22984455e+00 -0.11087874e+01 0.13957000e+00
- 2 111 566 567 0.15857635e+00 -0.22894901e+00 -0.25527142e+01 0.13498000e+00
- 1 22 0 0 -0.11096178e+01 -0.10215560e+00 -0.21801524e+01 0.00000000e+00
- 2 111 568 569 -0.15181554e+00 -0.39518603e+00 -0.10561859e+01 0.13498000e+00
- 1 22 0 0 -0.77283457e-01 -0.18405549e+00 -0.17841345e+01 0.00000000e+00
- 1 22 0 0 -0.10994926e+00 -0.53980409e+00 -0.34421254e+01 0.00000000e+00
- 1 211 0 0 -0.35112293e+00 -0.72799050e+00 -0.20482385e+02 0.13957000e+00
- 2 111 570 571 -0.15904429e+01 -0.12594771e+01 -0.52199436e+02 0.13498000e+00
- 1 -211 0 0 -0.26878249e+00 -0.65182554e-02 -0.39281539e+01 0.13957000e+00
- 2 111 572 573 0.95270723e-01 0.17070272e+00 -0.70900179e+01 0.13498000e+00
- 1 22 0 0 -0.12093450e+00 0.16489131e+00 -0.73346218e+01 0.00000000e+00
- 1 22 0 0 -0.70225097e-01 0.28873882e+00 -0.72847130e+01 0.00000000e+00
- 1 -211 0 0 -0.80006303e+00 -0.68153811e+00 -0.38445494e+02 0.13957000e+00
- 1 211 0 0 -0.10027263e+00 -0.16360049e+00 -0.45625352e+01 0.13957000e+00
- 2 111 574 575 -0.10038123e+01 -0.77439787e+00 -0.36578727e+02 0.13498000e+00
- 1 321 0 0 -0.13705144e+00 0.28976346e-01 -0.23197223e+02 0.49360000e+00
- 1 -211 0 0 -0.72312263e+00 -0.14821211e-01 -0.35175762e+02 0.13957000e+00
- 1 -321 0 0 -0.11290434e-01 -0.33849978e+00 -0.19141931e+03 0.49360000e+00
- 1 211 0 0 -0.42474717e+00 -0.12427569e+00 -0.11710480e+03 0.13957000e+00
- 1 211 0 0 -0.86465081e-01 -0.46043293e-01 -0.85217933e+02 0.13957000e+00
- 1 -211 0 0 -0.53327905e+00 -0.41924166e+00 -0.12212075e+03 0.13957000e+00
- 2 111 576 577 -0.57753942e+00 -0.46083132e+00 -0.20710811e+03 0.13498000e+00
- 1 211 0 0 -0.33855201e-01 0.47174403e+00 -0.17113488e+03 0.13957000e+00
- 1 -211 0 0 -0.85759947e-01 0.10250325e+00 -0.95748417e+02 0.13957000e+00
- 2 111 578 579 0.51233514e-01 -0.12922654e+00 -0.46168943e+02 0.13498000e+00
- 1 22 0 0 -0.95830346e-01 0.19655950e-01 -0.22233713e+02 0.00000000e+00
- 1 22 0 0 -0.22554671e+00 -0.39231257e-01 -0.11580167e+03 0.00000000e+00
- 1 -211 0 0 0.72707223e-01 0.44952524e+00 -0.39793475e+03 0.13957000e+00
- 1 211 0 0 -0.10992475e+00 -0.19613597e+00 -0.10413421e+03 0.13957000e+00
- 1 211 0 0 -0.62004982e-01 -0.64809992e-01 -0.16889438e+02 0.13957000e+00
- 1 -211 0 0 0.31482854e+00 -0.55529353e+00 -0.31463703e+03 0.13957000e+00
- 1 211 0 0 -0.44951256e+00 -0.28748706e+00 -0.28516495e+03 0.13957000e+00
- 1 -211 0 0 -0.30346433e+00 0.54982492e+00 -0.40770336e+03 0.13957000e+00
- 2 311 580 580 -0.56227313e-01 0.80542216e+00 -0.34400217e+03 0.49767000e+00
- 1 211 0 0 -0.25298494e+00 0.95640495e-01 -0.51957691e+02 0.13957000e+00
- 1 -321 0 0 0.34252154e+00 -0.13192560e+00 -0.23184108e+03 0.49360000e+00
- 1 321 0 0 0.37366667e+00 0.61173230e-01 -0.18454403e+03 0.49360000e+00
- 1 -321 0 0 0.45130295e+00 -0.41546893e+00 -0.10734719e+03 0.49360000e+00
- 1 211 0 0 0.25152044e+00 -0.88036470e-01 -0.12348648e+03 0.13957000e+00
- 1 -211 0 0 0.93694776e+00 0.58302771e+00 -0.34503604e+03 0.13957000e+00
- 1 211 0 0 0.15496412e+00 -0.24280127e+00 -0.10907045e+03 0.13957000e+00
- 2 311 581 581 0.17601177e+00 -0.43537615e-01 -0.23874216e+02 0.49767000e+00
- 2 111 582 583 0.57213619e-01 -0.51311282e+00 -0.33547282e+02 0.13498000e+00
- 1 211 0 0 -0.94125114e-01 0.59422405e+00 -0.67237435e+02 0.13957000e+00
- 2 111 584 585 0.58770979e+00 -0.75881572e-01 -0.27219808e+02 0.13498000e+00
- 1 211 0 0 0.32057385e+00 0.36687893e+00 -0.44260033e+01 0.13957000e+00
- 2 111 586 587 0.16469365e-01 0.15823125e+00 -0.22421181e+02 0.13498000e+00
- 2 311 588 588 0.20732567e-01 0.34200477e+00 -0.14621895e+02 0.49767000e+00
- 1 211 0 0 0.32522179e+00 -0.77908013e-01 -0.76950615e+01 0.13957000e+00
- 1 130 0 0 0.26018710e+01 0.18463854e+00 -0.56984195e+02 0.49767000e+00
- 1 -211 0 0 0.70995814e+00 0.62138206e+00 -0.32045519e+02 0.13957000e+00
- 2 111 589 590 -0.26152510e+00 0.66837726e+00 -0.14714548e+02 0.13498000e+00
- 1 211 0 0 -0.30610692e+00 -0.14161172e+00 -0.81864589e+02 0.13957000e+00
- 2 111 591 592 0.49828816e-01 0.91265893e-01 -0.74748914e+01 0.13498000e+00
- 1 22 0 0 0.24890829e+00 0.64980170e-01 -0.30901467e+02 0.00000000e+00
- 1 22 0 0 0.11708115e+01 0.19709344e-01 -0.14967092e+03 0.00000000e+00
- 1 22 0 0 -0.22624163e+00 0.13715848e+00 -0.16757397e+02 0.00000000e+00
- 1 22 0 0 -0.36019900e+00 0.18612375e+00 -0.17148550e+02 0.00000000e+00
- 1 2112 0 0 0.14872501e+00 -0.58033369e-01 -0.43826253e+03 0.93957000e+00
- 2 111 593 594 -0.55511022e-01 0.14808126e+00 -0.24734402e+03 0.13498000e+00
- 1 22 0 0 -0.42450484e-02 -0.20677244e-01 0.55228084e+00 0.00000000e+00
- 1 22 0 0 -0.31752420e+00 -0.12061611e+01 0.14525946e+02 0.00000000e+00
- 1 22 0 0 -0.20878442e+00 0.49498421e-01 0.19196872e+01 0.00000000e+00
- 1 22 0 0 -0.40889833e+00 -0.21081858e+00 0.17845432e+02 0.00000000e+00
- 1 211 0 0 -0.27677094e+00 -0.38399085e+00 0.46377395e+01 0.13957000e+00
- 1 -211 0 0 -0.31745847e+00 0.45301324e-01 0.36818487e+01 0.13957000e+00
- 2 111 595 596 -0.26444158e+00 -0.37769752e+00 0.79055785e+01 0.13498000e+00
- 1 2212 0 0 0.95677496e+00 0.18104167e+00 0.22258963e+01 0.93827000e+00
- 1 -211 0 0 0.85866191e+00 0.13563009e+00 0.90548027e+00 0.13957000e+00
- 1 22 0 0 0.27510123e+00 -0.31729848e+00 0.58243152e+00 0.00000000e+00
- 2 111 597 598 -0.15049185e+00 0.27199249e+00 0.95432708e+00 0.13498000e+00
- 1 -211 0 0 -0.55067105e+00 0.25018919e+00 0.14226806e+01 0.13957000e+00
- 1 211 0 0 -0.46362872e+00 0.32469487e+00 0.21665308e+01 0.13957000e+00
- 2 111 599 600 -0.32949294e+00 -0.68937050e-01 0.17846538e+01 0.13498000e+00
- 1 211 0 0 -0.24842736e+01 -0.60249055e+00 0.82526193e+01 0.13957000e+00
- 1 -211 0 0 -0.73626385e+00 -0.27608659e+00 0.42402994e+01 0.13957000e+00
- 1 211 0 0 -0.46501585e+00 -0.91140532e+00 0.79232694e+02 0.13957000e+00
- 2 111 601 602 -0.10927248e+00 0.45808041e-01 0.34468838e+02 0.13498000e+00
- 1 -211 0 0 0.84965357e+00 0.68706207e+00 0.10992924e+03 0.13957000e+00
- 2 111 603 604 -0.27822901e+00 0.33709543e+00 0.45915112e+02 0.13498000e+00
- 1 22 0 0 -0.12525779e+00 -0.77849960e+00 0.46189761e+01 0.00000000e+00
- 1 22 0 0 -0.24727863e+00 -0.18669899e+01 0.98938751e+01 0.00000000e+00
- 1 22 0 0 -0.57027396e+00 -0.36118267e+01 0.20872734e+02 0.00000000e+00
- 1 22 0 0 -0.15661898e+00 -0.65922358e+00 0.37195449e+01 0.00000000e+00
- 1 22 0 0 -0.15798476e+01 -0.90714361e+01 0.48854976e+02 0.00000000e+00
- 1 22 0 0 -0.19174941e+00 -0.56915996e+00 0.38088141e+01 0.00000000e+00
- 1 22 0 0 -0.25114858e+00 -0.11030536e+01 0.71913189e+01 0.00000000e+00
- 1 22 0 0 -0.89144449e-01 -0.26689152e+00 0.22283763e+01 0.00000000e+00
- 1 22 0 0 0.22993677e+00 -0.69827824e+00 0.40959309e+01 0.00000000e+00
- 1 22 0 0 -0.96664630e-03 0.21466811e-02 0.11130097e+00 0.00000000e+00
- 1 22 0 0 0.68094325e-02 -0.45878946e-02 -0.75586088e-03 0.00000000e+00
- 1 22 0 0 -0.36233736e+00 0.12258624e+00 0.56856447e+00 0.00000000e+00
- 1 22 0 0 0.34170705e-01 0.11297852e+00 0.12120288e+00 0.00000000e+00
- 1 22 0 0 0.24726311e+00 0.20275872e+00 0.52927361e+00 0.00000000e+00
- 1 130 0 0 0.11219879e+00 0.15660826e+00 0.88782364e+00 0.49767000e+00
- 1 22 0 0 0.12021330e+00 0.22599963e+00 0.14196278e+00 0.00000000e+00
- 1 22 0 0 -0.10973761e-01 0.98810073e-01 -0.67231291e-02 0.00000000e+00
- 1 22 0 0 -0.15597105e+00 0.26278553e+00 -0.16635879e+00 0.00000000e+00
- 1 22 0 0 -0.77391329e-01 0.28563457e-01 -0.10211282e+00 0.00000000e+00
- 1 22 0 0 -0.13615335e+00 0.91828252e-01 -0.52189171e-01 0.00000000e+00
- 1 22 0 0 -0.11893315e+00 0.18934340e+00 -0.22171746e+00 0.00000000e+00
- 1 130 0 0 0.13575537e+01 0.23532916e+00 -0.91607679e+00 0.49767000e+00
- 1 -211 0 0 0.52287321e+00 0.15580675e+00 -0.85265918e+00 0.13957000e+00
- 1 211 0 0 0.19112135e+01 -0.12503557e+00 -0.31618832e+01 0.13957000e+00
- 1 22 0 0 0.86194015e+00 0.17102523e+00 -0.31115908e+01 0.00000000e+00
- 1 22 0 0 0.20516398e+00 0.11069950e+00 -0.83907485e+00 0.00000000e+00
- 1 22 0 0 0.33717483e+00 0.36814337e+00 -0.19975904e+01 0.00000000e+00
- 1 22 0 0 0.16485669e+00 0.12276579e+00 -0.12057656e+01 0.00000000e+00
- 1 22 0 0 0.48187507e+00 0.35741985e+00 -0.19244295e+01 0.00000000e+00
- 1 22 0 0 0.24120870e+00 0.27847777e+00 -0.14339893e+01 0.00000000e+00
- 1 22 0 0 0.14683216e+00 0.66746146e-01 -0.41112534e+00 0.00000000e+00
- 1 22 0 0 0.91165147e-01 0.55500214e-01 -0.74935619e+00 0.00000000e+00
- 1 22 0 0 0.18610625e-01 -0.17181842e-01 -0.10690198e+00 0.00000000e+00
- 1 22 0 0 0.32176697e+00 0.25070157e+00 -0.23309836e+01 0.00000000e+00
- 1 -211 0 0 -0.13269868e+00 -0.46153466e+00 -0.27735751e+01 0.13957000e+00
- 1 211 0 0 -0.14804960e+00 0.89848154e-01 -0.10549485e+01 0.13957000e+00
- 1 22 0 0 -0.69052220e-01 -0.10159756e+00 -0.37774752e+00 0.00000000e+00
- 1 22 0 0 -0.24743315e+00 -0.56959586e-01 -0.61437766e+00 0.00000000e+00
- 1 -211 0 0 -0.81653629e-01 -0.12967291e+00 -0.15215549e+01 0.13957000e+00
- 1 211 0 0 -0.25177208e-01 -0.21727225e-01 -0.54483253e+01 0.13957000e+00
- 2 111 605 606 -0.34593200e+00 0.21413290e+00 -0.70188001e+01 0.13498000e+00
- 1 22 0 0 -0.15901268e+00 0.57618025e-01 -0.26252791e+02 0.00000000e+00
- 2 113 607 608 -0.12099074e+00 -0.11706057e-01 -0.30789944e+02 0.70017709e+00
- 1 22 0 0 -0.13572221e-01 0.30739656e-02 0.37844413e+02 0.00000000e+00
- 1 22 0 0 0.32880184e+00 0.14153833e+00 0.79638296e+03 0.00000000e+00
- 2 311 609 609 -0.50451886e+00 0.32237355e+00 -0.24285685e+02 0.49767000e+00
- 2 111 610 611 0.45047684e-01 0.33967767e-01 -0.19371626e+02 0.13498000e+00
- 1 22 0 0 -0.23432546e-01 -0.15405159e-01 -0.88380668e+01 0.00000000e+00
- 1 22 0 0 -0.41044451e-01 0.32437342e-01 -0.12704811e+01 0.00000000e+00
- 1 -211 0 0 -0.13779962e+00 0.35118886e+00 0.35135350e+03 0.13957000e+00
- 1 211 0 0 -0.20070660e+00 -0.17648637e+00 0.87211218e+02 0.13957000e+00
- 1 22 0 0 0.10446996e+00 -0.46205706e-01 0.22265378e+02 0.00000000e+00
- 1 22 0 0 0.36212278e-01 0.53085705e-01 0.30480833e+02 0.00000000e+00
- 1 22 0 0 -0.78353959e-01 -0.35994226e-01 0.15804821e+02 0.00000000e+00
- 1 22 0 0 -0.14124365e+00 -0.11907423e+00 0.12535151e+02 0.00000000e+00
- 1 22 0 0 0.45366359e-02 -0.30729875e-01 0.39601267e+01 0.00000000e+00
- 1 22 0 0 -0.13229805e+00 0.95446591e-01 0.32441319e+02 0.00000000e+00
- 1 22 0 0 -0.62488529e+00 0.35348876e-01 0.64968540e+02 0.00000000e+00
- 1 22 0 0 0.60044255e-01 -0.10138038e+00 0.47801882e+01 0.00000000e+00
- 1 -211 0 0 0.81951146e+00 0.65006004e+00 0.54560307e+01 0.13957000e+00
- 1 211 0 0 0.52331502e-01 0.68826793e-01 0.52790203e+00 0.13957000e+00
- 1 22 0 0 0.35251292e-02 0.49562131e+00 0.61330849e+01 0.00000000e+00
- 1 22 0 0 0.44386128e-01 0.94373911e-01 0.85689313e+00 0.00000000e+00
- 2 111 612 613 0.20511729e+00 0.67436799e+00 0.18573425e+01 0.13498000e+00
- 2 111 614 615 -0.57136467e-01 0.13508968e+01 0.45611701e+01 0.13498000e+00
- 1 22 0 0 -0.74563256e-02 0.52063046e-02 0.11963276e-01 0.00000000e+00
- 1 22 0 0 0.14180807e+00 -0.26816524e-01 0.25625025e+01 0.00000000e+00
- 2 310 616 617 0.23090555e+01 0.11146085e+01 0.11588698e+03 0.49767000e+00
- 1 22 0 0 0.61363260e-01 0.10280904e+00 0.19610331e+01 0.00000000e+00
- 1 22 0 0 0.12995709e-01 -0.32899531e-01 0.21232177e+00 0.00000000e+00
- 1 22 0 0 0.97623222e+00 -0.15000629e+00 0.22600848e+02 0.00000000e+00
- 1 22 0 0 0.50661389e-01 -0.33081241e-01 0.97197140e+00 0.00000000e+00
- 1 22 0 0 -0.31360167e+00 -0.14644309e+00 0.21717307e+02 0.00000000e+00
- 1 22 0 0 -0.86795665e-01 -0.18208702e-01 0.11430578e+02 0.00000000e+00
- 1 22 0 0 0.12258480e+00 -0.36055890e+00 0.24702438e+02 0.00000000e+00
- 1 22 0 0 0.85812851e-01 -0.16431770e+00 0.74420994e+01 0.00000000e+00
- 1 22 0 0 -0.22371165e+00 -0.28845713e+00 0.81394884e+01 0.00000000e+00
- 1 22 0 0 -0.47519854e-01 -0.20170687e-01 0.26169440e+01 0.00000000e+00
- 1 211 0 0 -0.12391159e-01 -0.42600595e-01 0.59446260e+00 0.13957000e+00
- 1 -211 0 0 0.36910132e+00 -0.13556592e+01 0.16807452e+02 0.13957000e+00
- 1 22 0 0 -0.93314857e-01 -0.43002322e-01 0.74451133e+00 0.00000000e+00
- 1 22 0 0 -0.19960736e+00 0.52157803e-02 0.32452126e+01 0.00000000e+00
- 1 22 0 0 -0.10954917e+00 -0.76601295e-01 0.29503351e+01 0.00000000e+00
- 1 22 0 0 -0.36497330e+00 -0.24000849e+00 0.55518142e+01 0.00000000e+00
- 1 22 0 0 -0.15143506e-01 -0.15807524e+00 0.66079711e+00 0.00000000e+00
- 1 22 0 0 -0.17689027e+00 -0.17892794e+00 0.96728885e+00 0.00000000e+00
- 1 22 0 0 -0.41833846e+00 0.58873671e+00 0.47049899e+01 0.00000000e+00
- 1 22 0 0 -0.15789734e-01 0.11097613e+00 0.69559267e+00 0.00000000e+00
- 1 22 0 0 -0.80988123e-01 -0.22875827e-02 0.47008102e+00 0.00000000e+00
- 1 22 0 0 -0.32640751e-01 0.10019321e+00 0.26278202e+00 0.00000000e+00
- 1 22 0 0 -0.17874272e+00 -0.62159093e-01 0.93068459e-01 0.00000000e+00
- 1 22 0 0 -0.16061962e+00 -0.15961394e+00 0.24799262e+00 0.00000000e+00
- 1 22 0 0 -0.67425439e+00 -0.29501556e+00 0.66701801e+00 0.00000000e+00
- 1 22 0 0 -0.11914895e+00 -0.10057175e-01 0.16553621e+00 0.00000000e+00
- 1 22 0 0 -0.16793309e+00 -0.18832569e-01 0.23019063e+00 0.00000000e+00
- 1 22 0 0 -0.11953705e+00 -0.13960772e+00 0.32534168e+00 0.00000000e+00
- 1 22 0 0 -0.21547856e+00 -0.14955503e+00 0.36607659e-01 0.00000000e+00
- 1 22 0 0 -0.11734212e-01 -0.98476832e-01 0.30592623e-01 0.00000000e+00
- 1 22 0 0 -0.29294257e+00 -0.69457265e+00 -0.11654692e+01 0.00000000e+00
- 1 22 0 0 -0.74037039e-01 -0.61028470e-01 -0.12278606e+00 0.00000000e+00
- 1 22 0 0 0.62341974e-01 -0.17195746e+00 -0.11739537e+01 0.00000000e+00
- 1 22 0 0 0.96234376e-01 -0.56991551e-01 -0.13787605e+01 0.00000000e+00
- 1 22 0 0 -0.12958989e+00 -0.27670720e+00 -0.59119621e+00 0.00000000e+00
- 1 22 0 0 -0.22225652e-01 -0.11847883e+00 -0.46498968e+00 0.00000000e+00
- 1 22 0 0 -0.15346783e+01 -0.11814921e+01 -0.49985406e+02 0.00000000e+00
- 1 22 0 0 -0.55764581e-01 -0.77985028e-01 -0.22140298e+01 0.00000000e+00
- 1 22 0 0 0.42539768e-01 0.32619984e-01 -0.40797583e+01 0.00000000e+00
- 1 22 0 0 0.52730955e-01 0.13808274e+00 -0.30102596e+01 0.00000000e+00
- 1 22 0 0 -0.18062876e+00 -0.15308814e+00 -0.84351737e+01 0.00000000e+00
- 1 22 0 0 -0.82318357e+00 -0.62130972e+00 -0.28143553e+02 0.00000000e+00
- 1 22 0 0 -0.33014165e+00 -0.34389814e+00 -0.12712241e+03 0.00000000e+00
- 1 22 0 0 -0.24739778e+00 -0.11693318e+00 -0.79985693e+02 0.00000000e+00
- 1 22 0 0 0.24799726e-01 0.15578082e-01 -0.27278611e+01 0.00000000e+00
- 1 22 0 0 0.26433788e-01 -0.14480462e+00 -0.43441082e+02 0.00000000e+00
- 2 310 618 619 -0.56227313e-01 0.80542216e+00 -0.34400217e+03 0.49767000e+00
- 1 130 0 0 0.17601177e+00 -0.43537615e-01 -0.23874216e+02 0.49767000e+00
- 1 22 0 0 0.34024637e-01 -0.39313766e+00 -0.28661464e+02 0.00000000e+00
- 1 22 0 0 0.23188982e-01 -0.11997516e+00 -0.48858182e+01 0.00000000e+00
- 1 22 0 0 0.29562176e+00 0.88432517e-02 -0.15610341e+02 0.00000000e+00
- 1 22 0 0 0.29208803e+00 -0.84724824e-01 -0.11609468e+02 0.00000000e+00
- 1 22 0 0 0.24670902e-01 0.15910647e+00 -0.13405070e+02 0.00000000e+00
- 1 22 0 0 -0.82015371e-02 -0.87521558e-03 -0.90161104e+01 0.00000000e+00
- 2 310 620 621 0.20732567e-01 0.34200477e+00 -0.14621895e+02 0.49767000e+00
- 1 22 0 0 -0.63928524e-01 0.13415546e+00 -0.20952243e+01 0.00000000e+00
- 1 22 0 0 -0.19759658e+00 0.53422180e+00 -0.12619324e+02 0.00000000e+00
- 1 22 0 0 -0.22599619e-01 0.95060382e-01 -0.44444802e+01 0.00000000e+00
- 1 22 0 0 0.72428435e-01 -0.37944890e-02 -0.30304112e+01 0.00000000e+00
- 1 22 0 0 -0.40207675e-01 0.63524792e-01 -0.19678664e+03 0.00000000e+00
- 1 22 0 0 -0.15303347e-01 0.84556468e-01 -0.50557384e+02 0.00000000e+00
- 1 22 0 0 -0.82667329e-01 -0.62020389e-01 0.26256946e+01 0.00000000e+00
- 1 22 0 0 -0.18177425e+00 -0.31567713e+00 0.52798840e+01 0.00000000e+00
- 1 22 0 0 -0.14327163e+00 0.13302683e+00 0.63417617e+00 0.00000000e+00
- 1 22 0 0 -0.72202175e-02 0.13896566e+00 0.32015091e+00 0.00000000e+00
- 1 22 0 0 -0.56817664e-01 -0.57241582e-01 0.25924814e+00 0.00000000e+00
- 1 22 0 0 -0.27267527e+00 -0.11695468e-01 0.15254056e+01 0.00000000e+00
- 1 22 0 0 -0.13970046e+00 0.24186682e-01 0.26183766e+02 0.00000000e+00
- 1 22 0 0 0.30427984e-01 0.21621359e-01 0.82850721e+01 0.00000000e+00
- 1 22 0 0 -0.93554165e-01 0.18833888e+00 0.16868482e+02 0.00000000e+00
- 1 22 0 0 -0.18467484e+00 0.14875655e+00 0.29046630e+02 0.00000000e+00
- 1 22 0 0 -0.61702606e-01 0.99807930e-01 -0.15015715e+01 0.00000000e+00
- 1 22 0 0 -0.28422939e+00 0.11432497e+00 -0.55172286e+01 0.00000000e+00
- 1 211 0 0 -0.27996004e+00 -0.12010239e+00 -0.26124347e+02 0.13957000e+00
- 1 -211 0 0 0.15896930e+00 0.10839633e+00 -0.46655966e+01 0.13957000e+00
- 1 130 0 0 -0.50451886e+00 0.32237355e+00 -0.24285685e+02 0.49767000e+00
- 1 22 0 0 0.52482122e-02 0.28179311e-02 -0.17055596e+02 0.00000000e+00
- 1 22 0 0 0.39799472e-01 0.31149836e-01 -0.23160300e+01 0.00000000e+00
- 1 22 0 0 0.17747862e+00 0.64428807e+00 0.16565402e+01 0.00000000e+00
- 1 22 0 0 0.27638673e-01 0.30079926e-01 0.20080232e+00 0.00000000e+00
- 1 22 0 0 -0.62052754e-01 0.54360261e+00 0.20327769e+01 0.00000000e+00
- 1 22 0 0 0.49162869e-02 0.80729423e+00 0.25283932e+01 0.00000000e+00
- 1 -211 0 0 0.73466082e+00 0.22976526e+00 0.29002163e+02 0.13957000e+00
- 1 211 0 0 0.15743947e+01 0.88484319e+00 0.86884814e+02 0.13957000e+00
- 1 -211 0 0 0.89313088e-01 0.69467789e+00 -0.27333909e+03 0.13957000e+00
- 1 211 0 0 -0.14554040e+00 0.11074426e+00 -0.70663075e+02 0.13957000e+00
- 1 211 0 0 0.14870025e+00 0.56351704e-01 -0.86981298e+01 0.13957000e+00
- 1 -211 0 0 -0.12796768e+00 0.28565307e+00 -0.59237653e+01 0.13957000e+00
- 906
- 2 25 2 3 -0.48628100e+02 -0.15843041e+02 -0.27671601e+03 0.12500058e+03
- 2 23 6 8 -0.28934092e+02 0.11262199e+02 -0.80627334e+02 0.26530654e+02
- 2 23 4 5 -0.19694008e+02 -0.27105240e+02 -0.19608868e+03 0.88025814e+02
- 1 13 0 0 -0.17931319e+02 -0.17491040e+02 -0.20364558e+03 0.10566000e+00
- 1 -13 0 0 -0.17626891e+01 -0.96141994e+01 0.75568983e+01 0.10566000e+00
- 1 11 0 0 -0.19158269e+00 0.11609115e+02 -0.29901509e+02 0.51000000e-03
- 1 -11 0 0 -0.28736294e+02 -0.34684525e+00 -0.50714780e+02 0.51000000e-03
- 1 22 0 0 -0.62147101e-02 -0.70749293e-04 -0.11045350e-01 0.00000000e+00
- 2 -3 120 120 0.30206576e+02 0.80096513e+01 -0.18557259e+02 0.50000000e+00
- 2 21 120 120 0.34219944e+01 0.35304757e+00 -0.27549266e+01 0.00000000e+00
- 2 21 120 120 0.32423350e+01 -0.22159682e+00 -0.31840495e+01 0.00000000e+00
- 2 21 120 120 -0.11198732e+01 -0.18500521e+01 -0.94010568e+00 0.00000000e+00
- 2 21 120 120 -0.22564126e+00 -0.14254234e+01 -0.72894957e+00 0.00000000e+00
- 2 21 120 120 -0.44186255e+01 -0.19015374e+01 -0.72960498e+01 0.00000000e+00
- 2 21 120 120 -0.14249818e+01 -0.13322149e+01 -0.58508919e+01 0.00000000e+00
- 2 21 120 120 -0.11767437e+01 -0.97388254e+00 -0.10352673e+02 0.00000000e+00
- 2 21 120 120 -0.17458103e+01 0.18650788e+00 -0.22935335e+02 0.00000000e+00
- 2 21 120 120 -0.21282486e+01 -0.22943975e+01 -0.47597547e+02 0.00000000e+00
- 2 21 120 120 -0.56090636e+00 -0.49285121e+00 -0.15183937e+02 0.00000000e+00
- 2 21 120 120 -0.61636104e+00 -0.12251565e+01 -0.17630286e+02 0.00000000e+00
- 2 21 120 120 0.46002343e+00 -0.53525204e+00 -0.70271959e+01 0.00000000e+00
- 2 21 120 120 0.27389852e+01 -0.17445344e+01 -0.55632271e+02 0.00000000e+00
- 2 21 120 120 0.10200941e+01 -0.12717667e+01 -0.54347377e+02 0.00000000e+00
- 2 21 120 120 0.10135424e+01 -0.12114851e+01 -0.89735184e+02 0.00000000e+00
- 2 21 120 120 -0.23532624e+01 -0.26052130e+01 -0.38864849e+03 0.00000000e+00
- 2 1 120 120 -0.19359018e+00 0.10733528e+01 -0.51576309e+03 0.33000000e+00
- 2 3 147 147 0.50179491e+01 0.11019863e+01 0.53273599e+01 0.50000000e+00
- 2 21 147 147 0.13116583e+02 0.38147375e+01 0.10678352e+02 0.00000000e+00
- 2 21 147 147 0.57930594e+00 0.23241273e+00 -0.50135655e-01 0.00000000e+00
- 2 21 147 147 0.11641741e+00 0.18729083e+00 -0.59491716e-01 0.00000000e+00
- 2 21 147 147 -0.25704222e+00 -0.88772290e+00 -0.15439986e+00 0.00000000e+00
- 2 2203 147 147 -0.32671021e+00 -0.18389690e+01 0.31922343e+04 0.77133000e+00
- 2 2 166 166 -0.24030127e+01 -0.26478792e+01 0.25238073e+01 0.33000000e+00
- 2 21 166 166 -0.28379455e+01 -0.88575359e+00 0.23319828e+01 0.00000000e+00
- 2 21 166 166 -0.47757069e+01 -0.60250139e+01 0.20515281e+01 0.00000000e+00
- 2 21 166 166 -0.10199006e+01 -0.39133175e+01 0.13221733e+01 0.00000000e+00
- 2 21 166 166 0.67338411e+00 -0.24774587e+01 0.79581032e+00 0.00000000e+00
- 2 21 166 166 -0.89980136e+01 0.37229817e+01 0.38040551e+02 0.00000000e+00
- 2 21 166 166 -0.23697484e+01 0.60098287e+00 0.59155261e+01 0.00000000e+00
- 2 21 166 166 -0.22261370e+01 0.15839915e+01 0.10324890e+01 0.00000000e+00
- 2 21 166 166 -0.82885410e+00 0.17134507e+01 0.10131070e+01 0.00000000e+00
- 2 21 166 166 -0.51975691e+00 0.92977476e+00 0.32964086e-01 0.00000000e+00
- 2 21 166 166 -0.12076738e+01 0.17059353e+01 0.87396277e+00 0.00000000e+00
- 2 21 166 166 0.23532624e+01 0.26052130e+01 -0.65996397e+01 0.00000000e+00
- 2 21 166 166 0.13514608e+01 0.12822337e+01 -0.54864760e+01 0.00000000e+00
- 2 21 166 166 0.89980136e+01 -0.37229817e+01 -0.21876210e+02 0.00000000e+00
- 2 21 166 166 0.44186255e+01 0.19015374e+01 -0.24327133e+02 0.00000000e+00
- 2 21 166 166 0.61636104e+00 0.12251565e+01 -0.65061806e+01 0.00000000e+00
- 2 21 166 166 -0.10135424e+01 0.12114851e+01 -0.11992517e+02 0.00000000e+00
- 2 21 166 166 -0.67338411e+00 0.24774587e+01 -0.19595799e+02 0.00000000e+00
- 2 21 166 166 0.10199006e+01 0.39133175e+01 -0.52171547e+02 0.00000000e+00
- 2 21 166 166 0.14249818e+01 0.13322149e+01 -0.30112851e+02 0.00000000e+00
- 2 21 166 166 0.11767437e+01 0.97388254e+00 -0.32987671e+02 0.00000000e+00
- 2 21 166 166 0.21409533e+01 0.17775736e+01 -0.87540116e+02 0.00000000e+00
- 2 21 166 166 0.16711077e+01 0.39136025e+01 -0.15616161e+03 0.00000000e+00
- 2 21 166 166 0.22564126e+00 0.14254234e+01 -0.40365362e+02 0.00000000e+00
- 2 21 166 166 -0.10200941e+01 0.12717667e+01 -0.15351665e+03 0.00000000e+00
- 2 21 166 166 0.34781991e-02 0.35801580e+00 -0.49357807e+02 0.00000000e+00
- 2 21 166 166 -0.27389852e+01 0.17445344e+01 -0.92892806e+03 0.00000000e+00
- 2 21 166 166 0.10225344e+00 -0.52260519e+00 -0.81123519e+00 0.00000000e+00
- 2 21 166 166 0.33712680e+00 0.10741171e+01 -0.68407644e+01 0.00000000e+00
- 2 2203 166 166 -0.25114340e+00 0.12703882e+01 -0.36501196e+04 0.77133000e+00
- 2 -2 233 233 -0.41330857e+01 0.61763856e+01 0.32931391e+02 0.33000000e+00
- 2 21 233 233 0.25796788e+01 -0.26662330e+00 0.51693200e+01 0.00000000e+00
- 2 21 233 233 -0.23047300e+00 0.26213912e+00 0.10876097e+01 0.00000000e+00
- 2 21 233 233 0.59113468e-03 -0.90323407e-01 0.15078007e+01 0.00000000e+00
- 2 21 233 233 0.13673084e+01 -0.42152506e+00 0.18446612e+01 0.00000000e+00
- 2 1 233 233 -0.82701647e+00 0.70530095e-01 0.65984493e+02 0.33000000e+00
- 2 21 248 248 -0.66254267e+01 0.44800865e+01 0.93615053e+02 0.00000000e+00
- 2 21 248 248 -0.42680931e+01 0.12383689e+00 0.10124828e+03 0.00000000e+00
- 2 21 248 248 -0.23391259e+01 0.10750759e+00 0.45970404e+02 0.00000000e+00
- 2 21 248 248 -0.27275684e+01 -0.33241375e+00 0.65337288e+02 0.00000000e+00
- 2 21 248 248 -0.15176942e+01 -0.12722533e+01 0.79394864e+02 0.00000000e+00
- 2 21 248 248 -0.37124169e+00 0.14146272e+01 0.58887992e+02 0.00000000e+00
- 2 21 248 248 -0.66024562e+00 0.40124871e+00 0.11290324e+03 0.00000000e+00
- 2 21 248 248 0.27275684e+01 0.33241375e+00 0.17676158e+04 0.00000000e+00
- 2 21 248 248 0.21282486e+01 0.22943975e+01 0.50705283e+03 0.00000000e+00
- 2 21 248 248 0.15176942e+01 0.12722533e+01 0.16323776e+03 0.00000000e+00
- 2 21 248 248 0.56090636e+00 0.49285121e+00 0.55240833e+02 0.00000000e+00
- 2 21 248 248 0.66024562e+00 -0.40124871e+00 0.72369863e+02 0.00000000e+00
- 2 21 248 248 0.23391259e+01 -0.10750759e+00 0.68139461e+02 0.00000000e+00
- 2 21 248 248 0.47757069e+01 0.60250139e+01 0.71818167e+02 0.00000000e+00
- 2 21 248 248 0.10205667e+01 -0.15246454e+01 0.11223683e+02 0.00000000e+00
- 2 21 248 248 0.51975691e+00 -0.92977476e+00 0.39636167e+01 0.00000000e+00
- 2 21 248 248 0.96868509e-02 -0.84338502e+00 0.37968165e+01 0.00000000e+00
- 2 21 248 248 0.82885410e+00 -0.17134507e+01 0.79713603e+01 0.00000000e+00
- 2 21 248 248 0.33379811e+01 -0.17190743e+01 0.10325414e+02 0.00000000e+00
- 2 21 248 248 0.22261370e+01 -0.15839915e+01 0.50657534e+01 0.00000000e+00
- 2 21 248 248 0.12076738e+01 -0.17059353e+01 0.19476149e+01 0.00000000e+00
- 2 21 248 248 0.11035945e+01 -0.62056929e+00 0.85250759e+00 0.00000000e+00
- 2 21 248 248 0.10724613e+01 -0.66322174e+00 0.16713129e+00 0.00000000e+00
- 2 21 248 248 0.23697484e+01 -0.60098287e+00 0.62250600e+00 0.00000000e+00
- 2 21 248 248 0.42680931e+01 -0.12383689e+00 -0.15074950e+00 0.00000000e+00
- 2 21 248 248 0.17458103e+01 -0.18650788e+00 -0.42070704e+00 0.00000000e+00
- 2 21 248 248 0.63649086e+00 -0.58710521e+00 -0.72354510e+00 0.00000000e+00
- 2 21 248 248 0.37124169e+00 -0.14146272e+01 -0.14762710e+01 0.00000000e+00
- 2 21 248 248 0.66254267e+01 -0.44800865e+01 -0.25682946e+02 0.00000000e+00
- 2 21 248 248 0.76925888e+00 0.16144041e+01 0.14918329e+01 0.00000000e+00
- 2 21 248 248 0.11198732e+01 0.18500521e+01 0.25515294e+01 0.00000000e+00
- 2 21 248 248 0.33906459e+00 0.19271449e+01 0.53032694e+01 0.00000000e+00
- 2 21 248 248 -0.21409533e+01 -0.17775736e+01 0.13330029e+02 0.00000000e+00
- 2 21 248 248 -0.76925888e+00 -0.16144041e+01 0.87016738e+01 0.00000000e+00
- 2 21 248 248 -0.13514608e+01 -0.12822337e+01 0.11928171e+02 0.00000000e+00
- 2 21 248 248 -0.16711077e+01 -0.39136025e+01 0.31998253e+02 0.00000000e+00
- 2 21 248 248 -0.33906459e+00 -0.19271449e+01 0.16308308e+02 0.00000000e+00
- 2 21 248 248 -0.10205667e+01 0.15246454e+01 0.13408122e+02 0.00000000e+00
- 2 21 248 248 -0.46002343e+00 0.53525204e+00 0.64054758e+01 0.00000000e+00
- 2 21 248 248 -0.33379811e+01 0.17190743e+01 0.40533216e+02 0.00000000e+00
- 2 21 315 315 -0.30258550e+00 0.16384890e+01 0.41807881e+01 0.00000000e+00
- 2 21 315 315 -0.96868509e-02 0.84338502e+00 0.12897309e+01 0.00000000e+00
- 2 21 315 315 0.30258550e+00 -0.16384890e+01 -0.15802440e+02 0.00000000e+00
- 2 21 315 315 -0.34781991e-02 -0.35801580e+00 -0.19270193e+01 0.00000000e+00
- 2 21 325 325 0.81702246e+00 -0.12974640e+01 0.18811479e+02 0.00000000e+00
- 2 21 325 325 -0.11035945e+01 0.62056929e+00 -0.37998867e+01 0.00000000e+00
- 2 21 325 325 -0.81702246e+00 0.12974640e+01 -0.19124584e+02 0.00000000e+00
- 2 21 325 325 -0.63649086e+00 0.58710521e+00 -0.19593194e+02 0.00000000e+00
- 2 21 325 325 -0.10724613e+01 0.66322174e+00 -0.27517663e+02 0.00000000e+00
- 2 21 339 339 0.97232846e-01 0.12332473e+01 0.33635119e+02 0.00000000e+00
- 2 21 339 339 -0.97232846e-01 -0.12332473e+01 0.51318031e+02 0.00000000e+00
- 2 92 121 146 0.26139506e+02 -0.94628040e+01 -0.12641656e+04 0.25323491e+03
- 2 -3214 343 344 0.18099036e+02 0.50371977e+01 -0.11184461e+02 0.13771337e+01
- 1 -211 0 0 0.10902617e+02 0.17809464e+01 -0.70112979e+01 0.13957000e+00
- 2 2224 345 346 0.50416088e+01 0.14214030e+01 -0.39903165e+01 0.12818029e+01
- 1 -2212 0 0 0.15806990e+01 0.18690917e+00 -0.14060228e+01 0.93827000e+00
- 1 2112 0 0 0.63810748e+00 -0.81106818e+00 -0.58571608e+00 0.93957000e+00
- 2 223 347 349 -0.41903550e+00 -0.93491518e+00 -0.15244002e+01 0.77184088e+00
- 1 -2112 0 0 -0.64395793e+00 -0.21235129e+00 -0.18855089e+01 0.93957000e+00
- 1 2212 0 0 -0.16948445e+01 -0.18911834e+01 -0.17631582e+01 0.93827000e+00
- 2 -213 350 351 -0.12051240e+01 -0.12809136e+01 -0.40894383e+01 0.76534646e+00
- 1 211 0 0 -0.14867422e+01 -0.12156224e+01 -0.28113848e+01 0.13957000e+00
- 2 223 352 354 -0.15426706e+01 -0.38565188e+00 -0.10112107e+02 0.78352980e+00
- 2 223 355 357 -0.17296809e+00 -0.13139020e-01 -0.46974000e+01 0.79108004e+00
- 2 -213 358 359 -0.36464317e+00 -0.10516503e+01 -0.10852993e+02 0.65126706e+00
- 1 211 0 0 -0.23493416e+01 -0.59476547e+00 -0.23501152e+02 0.13957000e+00
- 1 -321 0 0 -0.61953377e+00 -0.14099314e+01 -0.27437379e+02 0.49360000e+00
- 2 323 360 361 -0.18462687e+01 -0.13959725e+01 -0.32031488e+02 0.88851458e+00
- 2 -213 362 363 0.56512541e+00 -0.29603071e+00 -0.12475178e+02 0.71393105e+00
- 2 113 364 365 0.66658025e+00 -0.93567139e+00 -0.28872962e+02 0.75663488e+00
- 2 113 366 367 0.91131528e+00 -0.13982031e+01 -0.78504313e+02 0.67072496e+00
- 2 223 368 370 0.95250174e+00 -0.92805145e+00 -0.19879181e+02 0.78274349e+00
- 2 213 371 372 0.12190398e+00 -0.59355974e+00 -0.26138741e+02 0.77572582e+00
- 2 221 373 375 -0.34819378e-01 -0.16757476e+01 -0.15125595e+03 0.54745000e+00
- 2 111 376 377 0.11664529e+00 0.25207006e+00 -0.11843471e+02 0.13498000e+00
- 2 -213 378 379 0.21162987e+00 -0.62456582e+00 -0.91274036e+02 0.67330724e+00
- 1 211 0 0 -0.32665885e+00 -0.17441831e+01 -0.14998645e+03 0.13957000e+00
- 1 -211 0 0 -0.96165594e+00 0.12518472e+01 -0.54905111e+03 0.13957000e+00
- 2 92 148 165 0.18246503e+02 0.26097355e+01 0.32079760e+04 0.26289532e+03
- 2 -313 380 381 0.77470310e+01 0.21777974e+01 0.68120330e+01 0.95708500e+00
- 2 -213 382 383 0.24097413e+01 0.10566856e+01 0.16180500e+01 0.82606088e+00
- 2 223 384 386 0.19824512e+01 0.15960497e+00 0.17607154e+01 0.78495405e+00
- 2 213 387 388 0.36095261e+01 0.58278735e+00 0.32144127e+01 0.93370980e+00
- 2 311 389 389 0.65026610e-01 0.86139045e-01 0.37636362e+00 0.49767000e+00
- 2 -313 390 391 0.84709313e+00 0.20715146e+00 0.14510228e+01 0.96589983e+00
- 2 -213 392 393 0.15912255e+01 0.59778069e+00 0.17989099e+01 0.74387997e+00
- 2 113 394 395 0.14157655e-01 -0.19237578e+00 0.19499166e+00 0.80795755e+00
- 2 113 396 397 0.35268776e+00 0.16486061e+00 0.64053462e+01 0.78311645e+00
- 2 223 398 400 0.34311978e+00 -0.66531095e-01 0.20862060e+01 0.74859227e+00
- 2 111 401 402 -0.46036016e+00 -0.41310688e+00 0.42113788e+01 0.13498000e+00
- 2 323 403 404 -0.30518958e+00 0.38063621e+00 0.25590950e+01 0.87857146e+00
- 2 -311 405 405 0.57072492e+00 -0.41579372e+00 0.88678332e+01 0.49767000e+00
- 1 -211 0 0 -0.34737450e+00 -0.22127109e+00 0.41745337e+02 0.13957000e+00
- 2 323 406 407 0.32271947e+00 0.94863439e-01 0.30106370e+03 0.81084169e+00
- 2 -313 408 409 0.41813292e-01 -0.34973409e+00 0.42940302e+03 0.89679925e+00
- 1 2212 0 0 -0.60628853e+00 -0.26630261e+00 0.95636218e+03 0.93827000e+00
- 2 223 410 412 0.68398191e-01 -0.97345604e+00 0.14380454e+04 0.78123534e+00
- 2 92 167 232 -0.63706046e+01 0.19820028e+02 -0.52293633e+04 0.12084981e+04
- 2 323 413 414 -0.22229578e+01 -0.22047957e+01 0.28849831e+01 0.92531112e+00
- 2 -323 415 416 -0.41752724e+01 -0.27964546e+01 0.26689185e+01 0.89640073e+00
- 1 321 0 0 -0.11857936e+01 -0.13677910e+01 0.68522694e+00 0.49360000e+00
- 2 -313 417 418 -0.16396167e+01 -0.45532155e+01 0.12902063e+01 0.95154270e+00
- 2 313 419 420 -0.51275926e+00 -0.11661418e+01 0.42675706e+00 0.86199562e+00
- 2 -323 421 422 -0.85756751e+00 -0.16045236e+01 0.44018595e+00 0.10619951e+01
- 2 213 423 424 -0.35015258e+00 -0.22757819e+01 0.16634245e+01 0.73870096e+00
- 2 223 425 427 -0.17165623e+00 0.56983805e+00 0.17771281e+01 0.78843879e+00
- 2 221 428 429 -0.35467253e+01 0.18455767e+01 0.15039803e+02 0.54745000e+00
- 1 -211 0 0 -0.10226258e+00 -0.21466811e+00 0.77030695e+00 0.13957000e+00
- 1 211 0 0 -0.87565574e+00 0.22558114e+00 0.27870376e+01 0.13957000e+00
- 1 -211 0 0 -0.69396407e+00 -0.20064887e+00 0.23577245e+01 0.13957000e+00
- 2 113 430 431 -0.14309626e+01 0.51058968e+00 0.45307526e+01 0.77782817e+00
- 2 113 432 433 -0.28186666e+01 0.13372162e+01 0.11505511e+02 0.80683150e+00
- 2 2224 434 435 -0.88724163e+00 0.22991886e+00 0.14351069e+01 0.11555354e+01
- 2 -2224 436 437 -0.88922214e+00 0.19010495e+01 0.21033995e+01 0.11446097e+01
- 2 2224 438 439 -0.13686731e+01 0.10024024e+01 0.66933086e+00 0.11070477e+01
- 1 -211 0 0 -0.35811779e+00 -0.14841499e+00 0.67094213e+00 0.13957000e+00
- 2 -3214 440 441 -0.16523657e+01 0.18968015e+01 0.12977993e+01 0.13909935e+01
- 2 -311 442 442 -0.19607378e+00 0.12878402e+01 0.54428372e+00 0.49767000e+00
- 2 223 443 445 0.78249714e+00 0.11127990e+01 -0.27189915e+01 0.78142193e+00
- 2 2114 446 447 0.29899584e+00 0.65668746e+00 -0.37474877e+01 0.13247875e+01
- 2 -2214 448 449 0.16246720e+01 0.75060579e+00 -0.41237557e+01 0.12208068e+01
- 2 111 450 451 0.20019306e+01 -0.39291005e-01 -0.31162254e+01 0.13498000e+00
- 2 113 452 453 0.14499578e+01 -0.63451852e+00 -0.43149798e+01 0.79058755e+00
- 2 221 454 456 0.16626660e+01 0.56923912e+00 -0.63954474e+01 0.54745000e+00
- 1 321 0 0 0.45953962e+01 -0.18697940e+01 -0.12256950e+02 0.49360000e+00
- 2 3122 457 458 0.17829725e+01 0.61896283e+00 -0.82233699e+01 0.11156800e+01
- 2 213 459 460 0.58072569e+00 0.14128524e+01 -0.11728562e+02 0.70140376e+00
- 2 -2224 461 462 0.84888329e-01 0.79595851e+00 -0.80496774e+01 0.13070035e+01
- 1 211 0 0 0.10791368e+00 0.87904376e+00 -0.98629290e+01 0.13957000e+00
- 2 223 463 465 0.63169470e+00 0.38578711e+00 -0.70800104e+01 0.77765770e+00
- 1 -211 0 0 0.88719391e+00 0.14567475e+01 -0.15658803e+02 0.13957000e+00
- 2 111 466 467 -0.81045144e-01 -0.70852795e-02 -0.41290166e+01 0.13498000e+00
- 1 211 0 0 0.48483118e+00 0.11152608e+01 -0.75462956e+01 0.13957000e+00
- 1 -211 0 0 -0.26123733e+00 -0.37992845e-01 -0.65025659e+01 0.13957000e+00
- 1 2212 0 0 0.47533842e+00 0.18640552e+01 -0.17917706e+02 0.93827000e+00
- 1 -2212 0 0 0.97468400e-01 0.13963241e+01 -0.31224977e+02 0.93827000e+00
- 2 323 468 469 0.11841078e+01 0.26251507e+01 -0.49708455e+02 0.90878428e+00
- 1 -321 0 0 0.12181849e+01 0.14525529e+01 -0.38446146e+02 0.49360000e+00
- 2 113 470 471 0.81200909e+00 0.73857061e+00 -0.47273159e+02 0.77793878e+00
- 2 213 472 473 0.56254701e+00 0.16676822e+01 -0.56896891e+02 0.69266017e+00
- 1 -211 0 0 0.81199947e-01 -0.14806547e+00 -0.15480439e+02 0.13957000e+00
- 1 211 0 0 0.36559150e+00 0.72631565e+00 -0.28284183e+02 0.13957000e+00
- 2 311 474 474 0.18491990e+00 0.75624227e+00 -0.30215157e+02 0.49767000e+00
- 2 -313 475 476 0.88692288e+00 0.28453737e+01 -0.15046265e+03 0.97930041e+00
- 1 -211 0 0 -0.95794857e-02 -0.12311271e+00 -0.20417181e+02 0.13957000e+00
- 1 211 0 0 0.23038812e+00 -0.11345996e+00 -0.43225375e+02 0.13957000e+00
- 2 111 477 478 -0.12856009e+01 0.92557580e+00 -0.28292596e+03 0.13498000e+00
- 1 2112 0 0 -0.59115722e-01 0.30193001e+00 -0.12078087e+03 0.93957000e+00
- 1 -2112 0 0 -0.10748548e+01 0.13180144e+01 -0.17080680e+03 0.93957000e+00
- 2 1114 479 480 -0.60079585e+00 0.24903373e+00 -0.38338063e+03 0.13526085e+01
- 2 223 481 483 -0.37123005e+00 -0.14523600e+00 -0.65417495e+01 0.78141239e+00
- 2 -2114 484 485 0.30837895e+00 0.36241314e+00 -0.17394311e+02 0.13122045e+01
- 1 211 0 0 -0.18416806e+00 -0.14864921e+00 -0.72610819e+01 0.13957000e+00
- 2 113 486 487 -0.10667952e+00 0.43262019e+00 -0.40762005e+01 0.68338205e+00
- 2 111 488 489 0.23819461e+00 -0.30182237e-01 -0.60722046e+01 0.13498000e+00
- 1 -211 0 0 0.17511563e+00 -0.11676494e-01 -0.34637318e+02 0.13957000e+00
- 2 213 490 491 -0.65074107e-02 -0.34800443e+00 -0.13544984e+02 0.74786142e+00
- 2 221 492 494 0.27894109e+00 0.11305317e+01 -0.19620851e+03 0.54745000e+00
- 2 113 495 496 -0.35468683e+00 -0.48968146e+00 -0.78101774e+02 0.63176716e+00
- 2 221 497 499 0.31926386e+00 0.17125779e+00 -0.25626264e+03 0.54745000e+00
- 2 113 500 501 -0.46109395e+00 -0.95589002e-01 -0.14575597e+04 0.89512214e+00
- 2 111 502 503 0.31542725e+00 0.70644083e+00 -0.28163974e+03 0.13498000e+00
- 1 2212 0 0 -0.47972731e+00 -0.16283999e+00 -0.10227136e+04 0.93827000e+00
- 2 111 504 505 0.19108997e+00 0.52679915e+00 -0.29999671e+03 0.13498000e+00
- 2 92 234 247 -0.12429968e+01 0.57305830e+01 0.10852528e+03 0.20076676e+02
- 2 111 506 507 -0.13602750e+01 0.26079311e+01 0.13432936e+02 0.13498000e+00
- 1 -2212 0 0 -0.22711418e+00 0.93366227e+00 0.36620520e+01 0.93827000e+00
- 1 2212 0 0 -0.11379945e+01 0.87481387e+00 0.67878126e+01 0.93827000e+00
- 2 223 508 510 0.69811566e+00 0.66384716e+00 0.43855418e+01 0.76875460e+00
- 1 -211 0 0 -0.70333566e+00 0.11137115e+01 0.59270094e+01 0.13957000e+00
- 1 211 0 0 -0.26803100e-01 -0.26423833e+00 0.63571726e+00 0.13957000e+00
- 2 -213 511 512 0.45539545e+00 -0.17197852e-01 0.17345273e+01 0.74813328e+00
- 2 223 513 515 -0.24777591e-01 -0.42069191e-01 0.34040533e+01 0.78318739e+00
- 2 223 516 518 0.15156123e+01 0.12689161e+00 0.45316145e+01 0.75146480e+00
- 2 113 519 520 -0.33170796e+00 -0.14464629e+00 0.52940795e+01 0.63260986e+00
- 2 221 521 522 0.20439511e+00 0.19212993e+00 0.17576918e+01 0.54745000e+00
- 2 223 523 525 0.25581981e+00 -0.20008773e+00 0.85895289e+01 0.78118713e+00
- 2 213 526 527 -0.48372980e-01 0.42637965e+00 0.26564289e+02 0.76894614e+00
- 2 -213 528 529 -0.51195406e+00 -0.54054462e+00 0.21818423e+02 0.80082850e+00
- 2 92 249 314 0.14681404e+02 -0.52107673e+01 0.34322739e+04 0.72413270e+03
- 2 -313 530 531 0.65790399e+00 -0.62603904e+00 0.65087811e+01 0.82306778e+00
- 2 313 532 533 0.19700116e+01 -0.37579055e+01 0.18068725e+02 0.86965580e+00
- 2 3324 534 535 0.24795389e+01 -0.13523817e+01 0.66879158e+01 0.15068424e+01
- 2 313 536 537 0.12926922e+01 -0.20604050e+01 0.53077478e+01 0.86198170e+00
- 2 -3122 538 539 0.15530851e+01 -0.50846133e+00 0.31584654e+01 0.11156800e+01
- 2 -313 540 541 0.11022522e+01 -0.12079995e+01 0.28220791e+01 0.96310227e+00
- 2 -213 542 543 0.18737437e+01 -0.36811444e+00 0.76674006e+00 0.89572938e+00
- 2 111 544 545 0.77447146e+00 0.61252820e-01 0.92162313e-01 0.13498000e+00
- 2 113 546 547 0.10133542e+01 -0.15279359e+00 0.15813138e+00 0.54813823e+00
- 1 321 0 0 0.17732686e+01 -0.66952867e+00 0.12244385e+01 0.49360000e+00
- 1 -321 0 0 0.40680375e+00 -0.52034493e+00 0.32658072e+00 0.49360000e+00
- 1 211 0 0 0.15722813e+01 -0.64935312e+00 -0.30043897e-01 0.13957000e+00
- 2 221 548 550 0.47256550e+00 -0.39556740e+00 -0.59268644e+00 0.54745000e+00
- 2 223 551 553 0.20266259e+01 -0.69197922e-03 -0.60572554e+00 0.78749928e+00
- 1 -211 0 0 0.65416487e+00 -0.31834628e+00 0.25412167e+00 0.13957000e+00
- 2 213 554 555 0.21591659e+01 -0.10981247e+01 -0.41358481e+01 0.94023623e+00
- 2 -213 556 557 0.61258149e+00 -0.16502738e+01 -0.45607040e+01 0.64424974e+00
- 1 211 0 0 0.16914527e+01 -0.61233366e+00 -0.47808551e+01 0.13957000e+00
- 2 -213 558 559 -0.11056582e+00 -0.47310228e+00 -0.66159863e+00 0.40546911e+00
- 2 323 560 561 0.30030298e+01 -0.13938710e+01 -0.11012667e+02 0.94883475e+00
- 2 -323 562 563 0.54298450e+00 0.12824671e+00 0.85237184e-02 0.90640022e+00
- 1 2112 0 0 0.61037462e-01 -0.19631922e+00 -0.66101572e+00 0.93957000e+00
- 2 213 564 565 0.11630834e+01 0.13844447e+01 0.12894724e+01 0.72674154e+00
- 1 -2212 0 0 -0.34308390e+00 0.67774372e-01 0.42930875e+00 0.93827000e+00
- 2 2214 566 567 -0.16613042e+00 0.30419589e+00 0.23823118e+01 0.12263240e+01
- 2 -2214 568 569 0.35957419e+00 0.10473876e+01 0.21679744e+01 0.11991758e+01
- 1 321 0 0 0.57271989e+00 0.77903026e+00 0.16875961e+01 0.49360000e+00
- 2 -313 570 571 -0.80691974e+00 -0.32294874e+00 0.39153463e+01 0.88846488e+00
- 2 -213 572 573 0.25069629e+00 -0.57347969e-01 0.65412726e+01 0.88716320e+00
- 2 2224 574 575 -0.19366725e+01 -0.13713268e+01 0.11216934e+02 0.12669502e+01
- 2 -213 576 577 -0.34468542e+00 -0.16532073e+01 0.15576608e+02 0.58752470e+00
- 1 -2212 0 0 -0.18494207e+01 -0.22222009e+01 0.14750627e+02 0.93827000e+00
- 1 211 0 0 -0.30585684e-01 -0.18707342e+00 0.70150698e+01 0.13957000e+00
- 2 111 578 579 -0.69623443e+00 -0.17227745e+01 0.11775489e+02 0.13498000e+00
- 2 3114 580 581 -0.13971123e+01 0.56083018e+00 0.17541536e+02 0.13810832e+01
- 1 321 0 0 -0.66599876e+00 0.20775425e+00 0.10142299e+02 0.49360000e+00
- 1 -2112 0 0 -0.74111617e+00 -0.47151939e+00 0.10980671e+02 0.93957000e+00
- 2 -213 582 583 -0.23450181e+01 0.17466647e+01 0.35183522e+02 0.41429970e+00
- 2 221 584 585 -0.13001609e+01 0.35770483e+00 0.18679112e+02 0.54745000e+00
- 1 211 0 0 -0.10877245e-02 0.31532753e+00 0.26684013e+01 0.13957000e+00
- 2 311 586 586 -0.10469389e+01 0.55320608e+00 0.10004565e+02 0.49767000e+00
- 2 -323 587 588 -0.97794731e+00 0.32849653e+00 0.27601629e+02 0.89695166e+00
- 2 113 589 590 -0.21165819e+01 0.74697532e+00 0.31603346e+02 0.69254894e+00
- 1 211 0 0 -0.23232092e+01 0.10806251e+01 0.29944491e+02 0.13957000e+00
- 1 -211 0 0 -0.24331632e+01 0.77277774e+00 0.59890520e+02 0.13957000e+00
- 2 2224 591 592 -0.72264652e+00 0.19059636e-01 0.21591629e+02 0.11999053e+01
- 2 -2224 593 594 -0.55389770e+01 -0.41917802e+00 0.12706487e+03 0.12931478e+01
- 2 221 595 596 -0.85613854e+00 0.54086986e-01 0.44220882e+02 0.54745000e+00
- 1 321 0 0 -0.14979722e+00 0.23403547e+00 0.29981140e+02 0.49360000e+00
- 2 -311 597 597 -0.53191937e+00 0.20393655e+00 0.18373491e+03 0.49767000e+00
- 2 111 598 599 -0.11581564e+00 -0.18002600e+00 0.59274563e+02 0.13498000e+00
- 1 -211 0 0 0.25066931e+00 0.25329359e+00 0.17359006e+02 0.13957000e+00
- 2 111 600 601 0.23546588e+00 -0.13156222e+00 0.61421725e+02 0.13498000e+00
- 2 213 602 603 -0.98893437e-01 0.80253071e-01 0.14086925e+03 0.78391352e+00
- 2 -213 604 605 0.76658766e+00 0.26910272e+00 0.19108489e+03 0.42948865e+00
- 2 213 606 607 -0.29048507e+00 -0.19173540e+00 0.15598918e+03 0.10701863e+01
- 2 223 608 610 0.24728968e+00 0.28473285e+00 0.13223580e+03 0.77992271e+00
- 2 -213 611 612 0.47076099e+00 0.87329689e+00 0.65217085e+03 0.69988328e+00
- 2 323 613 614 0.24582339e+01 0.18511661e+01 0.41764551e+03 0.86852692e+00
- 2 -323 615 616 0.66717716e+00 -0.79504786e+00 0.22685115e+03 0.86520921e+00
- 2 113 617 618 0.18832669e+01 0.20330792e+01 0.41783810e+03 0.81496486e+00
- 1 321 0 0 0.11378845e+01 -0.66889623e-01 0.36148205e+02 0.49360000e+00
- 2 3122 619 620 0.24816909e+01 0.18489647e+01 0.10118319e+03 0.11156800e+01
- 1 -2112 0 0 0.41175873e+00 0.79094315e+00 0.82627126e+01 0.93957000e+00
- 2 223 621 623 0.16326386e+00 0.68349893e+00 0.13477287e+02 0.78316897e+00
- 2 311 624 624 0.34055716e+01 0.26718835e+01 0.42537675e+02 0.49767000e+00
- 2 92 316 324 -0.13165050e-01 0.48536922e+00 -0.12258940e+02 0.20501063e+02
- 2 223 625 627 -0.17950715e+00 0.77138533e+00 0.11438290e+01 0.78466239e+00
- 2 -213 628 629 0.27832078e-01 0.17198663e+01 0.31514747e+01 0.75190794e+00
- 2 213 630 631 -0.82193699e-01 -0.33216135e+00 -0.49870383e+00 0.41186434e+00
- 2 -323 632 633 0.61687986e-01 0.11031353e+00 -0.22950598e+00 0.10278973e+01
- 2 333 634 635 0.65139510e+00 -0.78806716e+00 -0.57485109e+01 0.10329073e+01
- 2 313 636 637 -0.52138313e+00 -0.13035499e+00 -0.32108549e+01 0.87942305e+00
- 1 211 0 0 -0.11515301e+00 -0.32506714e-01 0.56595013e-01 0.13957000e+00
- 1 -321 0 0 0.72216329e+00 0.19643447e+00 -0.33839741e+01 0.49360000e+00
- 2 323 638 639 -0.57800652e+00 -0.10295402e+01 -0.35392892e+01 0.90399193e+00
- 2 92 326 338 -0.28125466e+01 0.18708962e+01 -0.51223850e+02 0.72976829e+02
- 2 2214 640 641 0.62561280e+00 -0.49578709e+00 0.90417679e+01 0.12921633e+01
- 2 221 642 644 -0.20370199e+00 0.57005687e-01 0.26592487e+01 0.54745000e+00
- 2 -2214 645 646 0.51750912e+00 -0.86576580e+00 0.58867206e+01 0.12396826e+01
- 2 213 647 648 0.46635629e-01 0.10726941e+00 -0.31349294e+00 0.76344955e+00
- 2 223 649 651 -0.36349583e+00 -0.24713728e+00 0.63472493e-01 0.78717307e+00
- 2 313 652 653 -0.53127244e+00 0.65244619e+00 -0.39329764e+01 0.90831374e+00
- 2 -311 654 654 -0.60728064e+00 0.17455946e+00 -0.16333006e+02 0.49767000e+00
- 2 221 655 657 -0.60372934e+00 0.79943268e+00 -0.41221412e+01 0.54745000e+00
- 1 -211 0 0 -0.69873992e+00 0.81355920e+00 -0.19725664e+02 0.13957000e+00
- 2 113 658 659 -0.43404572e+00 0.80000141e+00 -0.75283339e+01 0.76911166e+00
- 1 211 0 0 -0.42453009e+00 0.95486652e-01 -0.13400234e+02 0.13957000e+00
- 2 113 660 661 0.12730302e+00 -0.12830538e+00 -0.24676272e+01 0.97631744e+00
- 2 -213 662 663 -0.26281122e+00 0.10813111e+00 -0.10515843e+01 0.70297639e+00
- 2 92 340 342 0.00000000e+00 0.00000000e+00 0.84953150e+02 0.25295025e+01
- 1 211 0 0 0.17301551e+00 0.60607859e+00 0.16930061e+02 0.13957000e+00
- 2 -213 664 665 -0.33422642e+00 -0.60116335e-02 0.20955528e+02 0.71849013e+00
- 2 113 666 667 0.16121092e+00 -0.60006696e+00 0.47067561e+02 0.76816537e+00
- 2 -3122 668 669 0.14859487e+02 0.41649857e+01 -0.94203684e+01 0.11156800e+01
- 2 111 670 671 0.32395491e+01 0.87221207e+00 -0.17640921e+01 0.13498000e+00
- 1 2212 0 0 0.47329392e+01 0.12338574e+01 -0.38562136e+01 0.93827000e+00
- 1 211 0 0 0.30866957e+00 0.18754563e+00 -0.13410295e+00 0.13957000e+00
- 1 -211 0 0 -0.11227166e+00 -0.47213005e+00 -0.33673203e+00 0.13957000e+00
- 1 211 0 0 0.27069296e-01 -0.18099230e+00 -0.58650111e+00 0.13957000e+00
- 2 111 672 673 -0.33383313e+00 -0.28179283e+00 -0.60116709e+00 0.13498000e+00
- 1 -211 0 0 -0.12259150e+01 -0.11093496e+01 -0.32468322e+01 0.13957000e+00
- 2 111 674 675 0.20791041e-01 -0.17156398e+00 -0.84260613e+00 0.13498000e+00
- 1 -211 0 0 -0.14746034e+00 -0.24874743e+00 -0.20044777e+01 0.13957000e+00
- 1 211 0 0 -0.86160894e+00 -0.15232388e+00 -0.44393439e+01 0.13957000e+00
- 2 111 676 677 -0.53360131e+00 0.15419431e-01 -0.36682855e+01 0.13498000e+00
- 1 211 0 0 -0.28967797e+00 -0.14124182e+00 -0.16583647e+01 0.13957000e+00
- 1 -211 0 0 0.90898847e-01 -0.31555121e-01 -0.21985664e+01 0.13957000e+00
- 2 111 678 679 0.25811031e-01 0.15965793e+00 -0.84046888e+00 0.13498000e+00
- 1 -211 0 0 -0.21159043e+00 -0.44436120e-01 -0.25657223e+01 0.13957000e+00
- 2 111 680 681 -0.15305274e+00 -0.10072142e+01 -0.82872708e+01 0.13498000e+00
- 2 311 682 682 -0.10949606e+01 -0.11432500e+01 -0.19845151e+02 0.49767000e+00
- 1 211 0 0 -0.75130803e+00 -0.25272253e+00 -0.12186336e+02 0.13957000e+00
- 1 -211 0 0 0.19336099e+00 -0.44183898e+00 -0.83862122e+01 0.13957000e+00
- 2 111 683 684 0.37176442e+00 0.14580827e+00 -0.40889660e+01 0.13498000e+00
- 1 -211 0 0 0.27949511e+00 -0.22307209e+00 -0.16970306e+02 0.13957000e+00
- 1 211 0 0 0.38708514e+00 -0.71259930e+00 -0.11902656e+02 0.13957000e+00
- 1 211 0 0 0.35013697e+00 -0.76997870e+00 -0.27222466e+02 0.13957000e+00
- 1 -211 0 0 0.56117831e+00 -0.62822444e+00 -0.51281848e+02 0.13957000e+00
- 1 -211 0 0 0.54697434e+00 -0.98520585e-01 -0.79301126e+01 0.13957000e+00
- 1 211 0 0 0.27278463e+00 -0.49183975e+00 -0.74459945e+01 0.13957000e+00
- 2 111 685 686 0.13274276e+00 -0.33769111e+00 -0.45030735e+01 0.13498000e+00
- 1 211 0 0 0.19791487e+00 -0.12012303e+00 -0.18659193e+02 0.13957000e+00
- 2 111 687 688 -0.76010890e-01 -0.47343671e+00 -0.74795479e+01 0.13498000e+00
- 2 111 689 690 -0.96289783e-01 -0.38148200e+00 -0.32495129e+02 0.13498000e+00
- 2 111 691 692 0.13385075e-01 -0.22286703e+00 -0.20078807e+02 0.13498000e+00
- 2 111 693 694 0.48085329e-01 -0.10713985e+01 -0.98682009e+02 0.13498000e+00
- 1 22 0 0 0.73981385e-01 0.18729666e+00 -0.57378527e+01 0.00000000e+00
- 1 22 0 0 0.42663909e-01 0.64773396e-01 -0.61056184e+01 0.00000000e+00
- 1 -211 0 0 0.25959666e+00 -0.30401865e-02 -0.35336510e+02 0.13957000e+00
- 2 111 695 696 -0.47966785e-01 -0.62152564e+00 -0.55937526e+02 0.13498000e+00
- 2 -311 697 697 0.53241411e+01 0.15582145e+01 0.51092526e+01 0.49767000e+00
- 2 111 698 699 0.24228898e+01 0.61958294e+00 0.17027804e+01 0.13498000e+00
- 1 -211 0 0 0.20522346e+01 0.11584542e+01 0.14240053e+01 0.13957000e+00
- 2 111 700 701 0.35750671e+00 -0.10176855e+00 0.19404468e+00 0.13498000e+00
- 1 211 0 0 0.50648076e+00 -0.12375469e+00 0.74674740e+00 0.13957000e+00
- 1 -211 0 0 0.10031655e+01 0.89543131e-01 0.65303001e+00 0.13957000e+00
- 2 111 702 703 0.47280486e+00 0.19381653e+00 0.36093803e+00 0.13498000e+00
- 1 211 0 0 0.19052740e+01 0.66540838e+00 0.20930037e+01 0.13957000e+00
- 2 111 704 705 0.17042520e+01 -0.82621032e-01 0.11214090e+01 0.13498000e+00
- 2 310 706 707 0.65026610e-01 0.86139045e-01 0.37636362e+00 0.49767000e+00
- 2 -311 708 708 0.81972107e+00 0.20529078e+00 0.15089639e+01 0.49767000e+00
- 2 111 709 710 0.27372058e-01 0.18606774e-02 -0.57941031e-01 0.13498000e+00
- 1 -211 0 0 0.60836495e+00 0.41056562e+00 0.36721187e+00 0.13957000e+00
- 2 111 711 712 0.98286057e+00 0.18721507e+00 0.14316980e+01 0.13498000e+00
- 1 211 0 0 -0.31982246e+00 0.10217346e+00 0.72381419e-01 0.13957000e+00
- 1 -211 0 0 0.33398011e+00 -0.29454924e+00 0.12261024e+00 0.13957000e+00
- 1 -211 0 0 -0.19460575e+00 0.29232714e-01 0.30493861e+01 0.13957000e+00
- 1 211 0 0 0.54729352e+00 0.13562789e+00 0.33559601e+01 0.13957000e+00
- 1 211 0 0 -0.10816539e+00 -0.14495385e+00 0.56756055e+00 0.13957000e+00
- 1 -211 0 0 0.31116663e+00 0.98548602e-01 0.63988478e+00 0.13957000e+00
- 2 111 713 714 0.14011855e+00 -0.20125842e-01 0.87876068e+00 0.13498000e+00
- 1 22 0 0 -0.25858373e+00 -0.14323656e+00 0.20549179e+01 0.00000000e+00
- 1 22 0 0 -0.20177644e+00 -0.26987032e+00 0.21564610e+01 0.00000000e+00
- 1 321 0 0 0.72343936e-01 0.88539201e-01 0.13843158e+01 0.49360000e+00
- 2 111 715 716 -0.37753351e+00 0.29209701e+00 0.11747793e+01 0.13498000e+00
- 1 130 0 0 0.57072492e+00 -0.41579372e+00 0.88678332e+01 0.49767000e+00
- 2 311 717 717 0.22830788e+00 -0.12082938e+00 0.15312459e+03 0.49767000e+00
- 1 211 0 0 0.94411590e-01 0.21569282e+00 0.14793911e+03 0.13957000e+00
- 1 -321 0 0 -0.11555192e+00 -0.77307713e-01 0.34473101e+03 0.49360000e+00
- 1 211 0 0 0.15736521e+00 -0.27242638e+00 0.84672013e+02 0.13957000e+00
- 1 211 0 0 -0.21616661e+00 -0.17314423e+00 0.24453524e+03 0.13957000e+00
- 1 -211 0 0 0.19466563e+00 -0.61819189e+00 0.91239376e+03 0.13957000e+00
- 2 111 718 719 0.89899165e-01 -0.18211992e+00 0.28111637e+03 0.13498000e+00
- 2 311 720 720 -0.61932505e+00 -0.81174921e+00 0.10240131e+01 0.49767000e+00
- 1 211 0 0 -0.16036328e+01 -0.13930465e+01 0.18609699e+01 0.13957000e+00
- 1 -321 0 0 -0.39336758e+01 -0.25610917e+01 0.23310932e+01 0.49360000e+00
- 2 111 721 722 -0.24159654e+00 -0.23536289e+00 0.33782532e+00 0.13498000e+00
- 1 -321 0 0 -0.12235988e+01 -0.25097075e+01 0.87285168e+00 0.49360000e+00
- 1 211 0 0 -0.41601787e+00 -0.20435080e+01 0.41735464e+00 0.13957000e+00
- 1 321 0 0 -0.18646232e+00 -0.10294088e+01 0.34645253e+00 0.49360000e+00
- 1 -211 0 0 -0.32629694e+00 -0.13673301e+00 0.80304527e-01 0.13957000e+00
- 2 -311 723 723 -0.89773532e+00 -0.16201098e+01 0.51795407e+00 0.49767000e+00
- 1 -211 0 0 0.40167804e-01 0.15586217e-01 -0.77768116e-01 0.13957000e+00
- 1 211 0 0 -0.43369267e+00 -0.21148059e+01 0.13550618e+01 0.13957000e+00
- 2 111 724 725 0.83540094e-01 -0.16097605e+00 0.30836272e+00 0.13498000e+00
- 1 211 0 0 -0.32697400e+00 0.43929550e+00 0.13432566e+01 0.13957000e+00
- 1 -211 0 0 0.85007771e-01 0.58080702e-01 0.34318219e+00 0.13957000e+00
- 2 111 726 727 0.70309996e-01 0.72461844e-01 0.90689362e-01 0.13498000e+00
- 1 22 0 0 -0.85842874e+00 0.34533279e+00 0.43614002e+01 0.00000000e+00
- 1 22 0 0 -0.26882965e+01 0.15002439e+01 0.10678403e+02 0.00000000e+00
- 1 -211 0 0 -0.77816655e+00 0.17074064e+00 0.13492511e+01 0.13957000e+00
- 1 211 0 0 -0.65279601e+00 0.33984903e+00 0.31815015e+01 0.13957000e+00
- 1 -211 0 0 -0.32739687e+00 0.34392784e+00 0.11886601e+01 0.13957000e+00
- 1 211 0 0 -0.24912697e+01 0.99328835e+00 0.10316851e+02 0.13957000e+00
- 1 2212 0 0 -0.85613591e+00 0.12876343e+00 0.11245349e+01 0.93827000e+00
- 1 211 0 0 -0.31105716e-01 0.10115543e+00 0.31057204e+00 0.13957000e+00
- 1 -2212 0 0 -0.83203566e+00 0.15564198e+01 0.18942767e+01 0.93827000e+00
- 1 -211 0 0 -0.57186483e-01 0.34462970e+00 0.20912280e+00 0.13957000e+00
- 1 2212 0 0 -0.10525002e+01 0.79410519e+00 0.58839454e+00 0.93827000e+00
- 1 211 0 0 -0.31617296e+00 0.20829724e+00 0.80936318e-01 0.13957000e+00
- 2 -3122 728 729 -0.16528339e+01 0.16311212e+01 0.11765066e+01 0.11156800e+01
- 2 111 730 731 0.46821751e-03 0.26568031e+00 0.12129279e+00 0.13498000e+00
- 2 310 732 733 -0.19607378e+00 0.12878402e+01 0.54428372e+00 0.49767000e+00
- 1 211 0 0 0.60616409e+00 0.58367745e+00 -0.12810050e+01 0.13957000e+00
- 1 -211 0 0 0.17585834e+00 0.46621239e+00 -0.86377486e+00 0.13957000e+00
- 2 111 734 735 0.47471281e-03 0.62909171e-01 -0.57421164e+00 0.13498000e+00
- 1 2112 0 0 -0.65838467e-01 0.53419821e+00 -0.24248071e+01 0.93957000e+00
- 2 111 736 737 0.36483431e+00 0.12248925e+00 -0.13226805e+01 0.13498000e+00
- 1 -2212 0 0 0.11737490e+01 0.51953984e+00 -0.26095959e+01 0.93827000e+00
- 2 111 738 739 0.45092301e+00 0.23106596e+00 -0.15141598e+01 0.13498000e+00
- 1 22 0 0 0.36814349e+00 -0.57696319e-01 -0.55280223e+00 0.00000000e+00
- 1 22 0 0 0.16337871e+01 0.18405314e-01 -0.25634232e+01 0.00000000e+00
- 1 -211 0 0 0.10843340e+01 -0.14754325e+00 -0.32092905e+01 0.13957000e+00
- 1 211 0 0 0.36562372e+00 -0.48697527e+00 -0.11056893e+01 0.13957000e+00
- 1 211 0 0 0.33893392e+00 0.18093694e-01 -0.14857353e+01 0.13957000e+00
- 1 -211 0 0 0.10120846e+01 0.41002823e+00 -0.36621317e+01 0.13957000e+00
- 2 111 740 741 0.31164747e+00 0.14111719e+00 -0.12475803e+01 0.13498000e+00
- 1 2212 0 0 0.14262561e+01 0.50741655e+00 -0.70406994e+01 0.93827000e+00
- 1 -211 0 0 0.35671643e+00 0.11154629e+00 -0.11826705e+01 0.13957000e+00
- 1 211 0 0 -0.22927966e-02 0.81143425e+00 -0.51618007e+01 0.13957000e+00
- 2 111 742 743 0.58301849e+00 0.60141815e+00 -0.65667614e+01 0.13498000e+00
- 1 -2212 0 0 0.15268997e+00 0.28333532e+00 -0.48998756e+01 0.93827000e+00
- 1 -211 0 0 -0.67801641e-01 0.51262319e+00 -0.31498018e+01 0.13957000e+00
- 1 211 0 0 0.46486107e+00 0.32869079e+00 -0.39905315e+01 0.13957000e+00
- 1 -211 0 0 -0.10544973e-01 0.12184321e+00 -0.61859062e+00 0.13957000e+00
- 2 111 744 745 0.17737860e+00 -0.64746893e-01 -0.24708884e+01 0.13498000e+00
- 1 22 0 0 -0.59567211e-01 0.33119758e-01 -0.86250872e+00 0.00000000e+00
- 1 22 0 0 -0.21477933e-01 -0.40205038e-01 -0.32665079e+01 0.00000000e+00
- 1 321 0 0 0.99467202e+00 0.17172927e+01 -0.37504063e+02 0.49360000e+00
- 2 111 746 747 0.18943582e+00 0.90785802e+00 -0.12204392e+02 0.13498000e+00
- 1 211 0 0 0.53668663e+00 0.48453372e+00 -0.40892041e+02 0.13957000e+00
- 1 -211 0 0 0.27532246e+00 0.25403689e+00 -0.63811179e+01 0.13957000e+00
- 1 211 0 0 0.39387999e+00 0.37393617e+00 -0.20959899e+02 0.13957000e+00
- 2 111 748 749 0.16866702e+00 0.12937461e+01 -0.35936993e+02 0.13498000e+00
- 1 130 0 0 0.18491990e+00 0.75624227e+00 -0.30215157e+02 0.49767000e+00
- 1 -321 0 0 0.19499967e+00 0.17528924e+01 -0.83746821e+02 0.49360000e+00
- 1 211 0 0 0.69192320e+00 0.10924813e+01 -0.66715829e+02 0.13957000e+00
- 1 22 0 0 -0.10458673e+01 0.71799637e+00 -0.21772089e+03 0.00000000e+00
- 1 22 0 0 -0.23973358e+00 0.20757943e+00 -0.65205075e+02 0.00000000e+00
- 1 2112 0 0 -0.15458742e+00 0.36358711e+00 -0.26349609e+03 0.93957000e+00
- 1 -211 0 0 -0.44620842e+00 -0.11455338e+00 -0.11988454e+03 0.13957000e+00
- 1 211 0 0 -0.10364405e+00 -0.12949122e+00 -0.73023943e+00 0.13957000e+00
- 1 -211 0 0 0.59033016e-01 0.84636873e-01 -0.26726729e+01 0.13957000e+00
- 2 111 750 751 -0.32661901e+00 -0.10038165e+00 -0.31388372e+01 0.13498000e+00
- 1 -2212 0 0 0.28453752e+00 0.56934640e+00 -0.13296660e+02 0.93827000e+00
- 1 211 0 0 0.23841435e-01 -0.20693325e+00 -0.40976511e+01 0.13957000e+00
- 1 -211 0 0 -0.14843656e+00 0.18925397e+00 -0.52124395e+00 0.13957000e+00
- 1 211 0 0 0.41757041e-01 0.24336622e+00 -0.35549566e+01 0.13957000e+00
- 1 22 0 0 0.14217475e+00 -0.83465582e-01 -0.38627124e+01 0.00000000e+00
- 1 22 0 0 0.96019867e-01 0.53283345e-01 -0.22094922e+01 0.00000000e+00
- 1 211 0 0 0.12898984e+00 -0.49125607e+00 -0.11331081e+02 0.13957000e+00
- 2 111 752 753 -0.13549725e+00 0.14325164e+00 -0.22139031e+01 0.13498000e+00
- 1 211 0 0 0.49701801e-01 0.22167821e+00 -0.35861058e+02 0.13957000e+00
- 1 -211 0 0 0.47296121e-01 0.66378853e+00 -0.10090346e+03 0.13957000e+00
- 2 111 754 755 0.18194316e+00 0.24506495e+00 -0.59443990e+02 0.13498000e+00
- 1 211 0 0 -0.25371691e+00 -0.32651900e+00 -0.70147327e+02 0.13957000e+00
- 1 -211 0 0 -0.10096992e+00 -0.16316246e+00 -0.79544469e+01 0.13957000e+00
- 1 -211 0 0 0.28468345e+00 0.27441796e-01 -0.14759859e+03 0.13957000e+00
- 1 211 0 0 -0.12086016e-01 0.11784530e+00 -0.64047128e+02 0.13957000e+00
- 2 111 756 757 0.46666420e-01 0.25970697e-01 -0.44616914e+02 0.13498000e+00
- 1 211 0 0 0.32938048e-01 0.25656037e+00 -0.80581473e+03 0.13957000e+00
- 1 -211 0 0 -0.49403200e+00 -0.35214937e+00 -0.65174494e+03 0.13957000e+00
- 1 22 0 0 0.23046117e+00 0.61863483e+00 -0.22796403e+03 0.00000000e+00
- 1 22 0 0 0.84966082e-01 0.87806000e-01 -0.53675714e+02 0.00000000e+00
- 1 22 0 0 0.63471112e-01 0.36387022e+00 -0.18972596e+03 0.00000000e+00
- 1 22 0 0 0.12761886e+00 0.16292893e+00 -0.11027075e+03 0.00000000e+00
- 1 22 0 0 -0.48193896e+00 0.83160571e+00 0.41719089e+01 0.00000000e+00
- 1 22 0 0 -0.87833605e+00 0.17763253e+01 0.92610269e+01 0.00000000e+00
- 1 211 0 0 0.50476520e-01 0.33126505e+00 0.96730443e+00 0.13957000e+00
- 1 -211 0 0 0.23481045e+00 0.20069237e+00 0.86587336e+00 0.13957000e+00
- 2 111 758 759 0.41282869e+00 0.13188974e+00 0.25523640e+01 0.13498000e+00
- 1 -211 0 0 0.52606370e+00 -0.72490352e-01 0.66932159e+00 0.13957000e+00
- 2 111 760 761 -0.70668257e-01 0.55292500e-01 0.10652057e+01 0.13498000e+00
- 1 211 0 0 0.43341209e-01 -0.10472645e+00 0.27774032e+00 0.13957000e+00
- 1 -211 0 0 -0.16263268e+00 -0.10530467e+00 0.14038377e+01 0.13957000e+00
- 2 111 762 763 0.94513884e-01 0.16796193e+00 0.17224754e+01 0.13498000e+00
- 1 -211 0 0 0.27591908e+00 -0.15298376e+00 0.95486737e+00 0.13957000e+00
- 1 211 0 0 0.71449497e+00 0.30126864e+00 0.17805617e+01 0.13957000e+00
- 2 111 764 765 0.52519822e+00 -0.21393270e-01 0.17961854e+01 0.13498000e+00
- 1 211 0 0 -0.13644059e+00 -0.31395502e+00 0.17979484e+01 0.13957000e+00
- 1 -211 0 0 -0.19526737e+00 0.16930873e+00 0.34961311e+01 0.13957000e+00
- 1 22 0 0 0.26917327e+00 -0.75844765e-01 0.48353745e+00 0.00000000e+00
- 1 22 0 0 -0.64778163e-01 0.26797469e+00 0.12741543e+01 0.00000000e+00
- 1 211 0 0 0.25029482e+00 -0.52468280e-01 0.16390765e+01 0.13957000e+00
- 1 -211 0 0 -0.97349987e-01 -0.29192870e-02 0.12527511e+01 0.13957000e+00
- 2 111 766 767 0.10287498e+00 -0.14470016e+00 0.56977013e+01 0.13498000e+00
- 1 211 0 0 0.83093832e-01 -0.15541559e+00 0.11477815e+02 0.13957000e+00
- 2 111 768 769 -0.13146681e+00 0.58179524e+00 0.15086474e+02 0.13498000e+00
- 1 -211 0 0 -0.37438590e+00 -0.64840991e+00 0.19923816e+02 0.13957000e+00
- 2 111 770 771 -0.13756816e+00 0.10786528e+00 0.18946074e+01 0.13498000e+00
- 1 -321 0 0 0.36560917e+00 -0.31985544e+00 0.50658864e+01 0.49360000e+00
- 1 211 0 0 0.29229482e+00 -0.30618360e+00 0.14428947e+01 0.13957000e+00
- 1 321 0 0 0.18267986e+01 -0.35157845e+01 0.16143877e+02 0.49360000e+00
- 1 -211 0 0 0.14321295e+00 -0.24212097e+00 0.19248482e+01 0.13957000e+00
- 2 3312 772 773 0.22544313e+01 -0.13267958e+01 0.62317527e+01 0.13213000e+01
- 1 211 0 0 0.22510764e+00 -0.25585840e-01 0.45616314e+00 0.13957000e+00
- 2 311 774 774 0.11760820e+01 -0.16748192e+01 0.47864106e+01 0.49767000e+00
- 2 111 775 776 0.11661024e+00 -0.38558582e+00 0.52133728e+00 0.13498000e+00
- 1 -2112 0 0 0.13010967e+01 -0.37087146e+00 0.27985532e+01 0.93957000e+00
- 2 111 777 778 0.25198831e+00 -0.13758987e+00 0.35991216e+00 0.13498000e+00
- 1 -321 0 0 0.95183843e+00 -0.11097566e+01 0.27647896e+01 0.49360000e+00
- 1 211 0 0 0.15041381e+00 -0.98242902e-01 0.57289490e-01 0.13957000e+00
- 1 -211 0 0 -0.48425027e-01 -0.51145187e-01 0.51936233e-01 0.13957000e+00
- 2 111 779 780 0.19221687e+01 -0.31696925e+00 0.71480383e+00 0.13498000e+00
- 1 22 0 0 0.44109035e+00 0.98953817e-01 0.72339966e-01 0.00000000e+00
- 1 22 0 0 0.33338111e+00 -0.37700997e-01 0.19822348e-01 0.00000000e+00
- 1 211 0 0 0.21603895e+00 -0.72041385e-01 -0.14605947e+00 0.13957000e+00
- 1 -211 0 0 0.79731530e+00 -0.80752204e-01 0.30419085e+00 0.13957000e+00
- 1 22 0 0 0.19401559e+00 -0.19996614e+00 -0.27683112e+00 0.00000000e+00
- 1 211 0 0 0.22731681e+00 -0.18011392e+00 -0.34323583e+00 0.13957000e+00
- 1 -211 0 0 0.51233104e-01 -0.15487347e-01 0.27380515e-01 0.13957000e+00
- 1 211 0 0 0.68346506e+00 -0.27395074e+00 -0.22595576e+00 0.13957000e+00
- 1 -211 0 0 0.87125103e+00 0.14956530e+00 -0.36889822e+00 0.13957000e+00
- 2 111 781 782 0.47190978e+00 0.12369345e+00 -0.10871559e-01 0.13498000e+00
- 1 211 0 0 0.52378369e+00 -0.15635018e+00 -0.17542141e+01 0.13957000e+00
- 2 111 783 784 0.16353822e+01 -0.94177449e+00 -0.23816340e+01 0.13498000e+00
- 1 -211 0 0 0.51276547e+00 -0.58313739e+00 -0.21094909e+01 0.13957000e+00
- 2 111 785 786 0.99816023e-01 -0.10671364e+01 -0.24512132e+01 0.13498000e+00
- 1 -211 0 0 -0.11004453e+00 -0.18672971e+00 -0.11161241e+00 0.13957000e+00
- 2 111 787 788 -0.52128996e-03 -0.28637257e+00 -0.54998622e+00 0.13498000e+00
- 2 311 789 789 0.12648412e+01 -0.52082178e+00 -0.55737065e+01 0.49767000e+00
- 1 211 0 0 0.17381886e+01 -0.87304924e+00 -0.54389609e+01 0.13957000e+00
- 2 -311 790 790 0.11763523e+00 -0.78311794e-01 -0.16294207e+00 0.49767000e+00
- 1 -211 0 0 0.42534927e+00 0.20655851e+00 0.17146579e+00 0.13957000e+00
- 1 211 0 0 0.84352284e+00 0.11252746e+01 0.62883129e+00 0.13957000e+00
- 2 111 791 792 0.31956053e+00 0.25917015e+00 0.66064113e+00 0.13498000e+00
- 1 2212 0 0 -0.33194637e+00 0.21711263e+00 0.21217788e+01 0.93827000e+00
- 2 111 793 794 0.16581595e+00 0.87083258e-01 0.26053292e+00 0.13498000e+00
- 1 -2112 0 0 0.20132557e+00 0.58977640e+00 0.15396514e+01 0.93957000e+00
- 1 -211 0 0 0.15824862e+00 0.45761116e+00 0.62832304e+00 0.13957000e+00
- 2 -311 795 795 -0.90165366e+00 -0.31766008e+00 0.33739386e+01 0.49767000e+00
- 2 111 796 797 0.94733918e-01 -0.52886556e-02 0.54140767e+00 0.13498000e+00
- 1 -211 0 0 0.25123536e+00 -0.43377806e+00 0.39778465e+01 0.13957000e+00
- 2 111 798 799 -0.53907484e-03 0.37643009e+00 0.25634262e+01 0.13498000e+00
- 1 2212 0 0 -0.13629007e+01 -0.71093715e+00 0.72473199e+01 0.93827000e+00
- 1 211 0 0 -0.57377181e+00 -0.66038967e+00 0.39696143e+01 0.13957000e+00
- 1 -211 0 0 -0.71599295e-01 -0.12286943e+01 0.96202080e+01 0.13957000e+00
- 2 111 800 801 -0.27308613e+00 -0.42451295e+00 0.59563998e+01 0.13498000e+00
- 1 22 0 0 -0.10556868e+00 -0.19640019e+00 0.16622466e+01 0.00000000e+00
- 1 22 0 0 -0.59066575e+00 -0.15263743e+01 0.10113243e+02 0.00000000e+00
- 2 3122 802 803 -0.13840900e+01 0.59464780e+00 0.16832065e+02 0.11156800e+01
- 1 -211 0 0 -0.13022317e-01 -0.33817621e-01 0.70947037e+00 0.13957000e+00
- 1 -211 0 0 -0.15950260e+01 0.12930000e+01 0.25766684e+02 0.13957000e+00
- 2 111 804 805 -0.74999211e+00 0.45366470e+00 0.94168372e+01 0.13498000e+00
- 1 22 0 0 -0.27195476e+00 0.12559236e+00 0.18936735e+01 0.00000000e+00
- 1 22 0 0 -0.10282061e+01 0.23211248e+00 0.16785438e+02 0.00000000e+00
- 2 310 806 807 -0.10469389e+01 0.55320608e+00 0.10004565e+02 0.49767000e+00
- 2 -311 808 808 -0.10452701e+01 0.32435528e+00 0.23238830e+02 0.49767000e+00
- 1 -211 0 0 0.67322755e-01 0.41412485e-02 0.43627989e+01 0.13957000e+00
- 1 211 0 0 -0.11752559e+01 0.60920099e+00 0.21633591e+02 0.13957000e+00
- 1 -211 0 0 -0.94132600e+00 0.13777433e+00 0.99697544e+01 0.13957000e+00
- 1 2212 0 0 -0.74720332e+00 0.14120206e+00 0.17941018e+02 0.93827000e+00
- 1 211 0 0 0.24556803e-01 -0.12214243e+00 0.36506117e+01 0.13957000e+00
- 1 -2212 0 0 -0.45073245e+01 -0.13613399e+00 0.10672238e+03 0.93827000e+00
- 1 -211 0 0 -0.10316525e+01 -0.28304404e+00 0.20342491e+02 0.13957000e+00
- 1 22 0 0 -0.41560591e+00 0.25454285e+00 0.28774513e+02 0.00000000e+00
- 1 22 0 0 -0.44053262e+00 -0.20045587e+00 0.15446369e+02 0.00000000e+00
- 2 310 809 810 -0.53191937e+00 0.20393655e+00 0.18373491e+03 0.49767000e+00
- 1 22 0 0 0.28932549e-01 -0.46051266e-01 0.15614862e+02 0.00000000e+00
- 1 22 0 0 -0.14474819e+00 -0.13397473e+00 0.43659701e+02 0.00000000e+00
- 1 22 0 0 0.36060112e-01 -0.63421812e-01 0.26796936e+02 0.00000000e+00
- 1 22 0 0 0.19940577e+00 -0.68140403e-01 0.34624789e+02 0.00000000e+00
- 1 211 0 0 0.66616861e-01 -0.29237166e+00 0.41837587e+02 0.13957000e+00
- 2 111 811 812 -0.16551030e+00 0.37262473e+00 0.99031662e+02 0.13498000e+00
- 1 -211 0 0 0.39888582e+00 0.76289520e-01 0.62872233e+02 0.13957000e+00
- 2 111 813 814 0.36770184e+00 0.19281320e+00 0.12821266e+03 0.13498000e+00
- 1 211 0 0 -0.29847516e-01 0.29796642e+00 0.19018658e+02 0.13957000e+00
- 2 111 815 816 -0.26063755e+00 -0.48970182e+00 0.13697052e+03 0.13498000e+00
- 1 211 0 0 -0.48965799e-01 -0.12170554e+00 0.30235869e+02 0.13957000e+00
- 1 -211 0 0 0.57839235e-01 0.33738024e+00 0.44435540e+02 0.13957000e+00
- 2 111 817 818 0.23841624e+00 0.69058156e-01 0.57564388e+02 0.13498000e+00
- 1 -211 0 0 0.20103381e+00 0.77801192e+00 0.34357968e+03 0.13957000e+00
- 2 111 819 820 0.26972718e+00 0.95284974e-01 0.30859117e+03 0.13498000e+00
- 2 311 821 821 0.13922318e+01 0.82123843e+00 0.24369193e+03 0.49767000e+00
- 1 211 0 0 0.10660021e+01 0.10299276e+01 0.17395358e+03 0.13957000e+00
- 2 -311 822 822 0.59140203e+00 -0.31728455e+00 0.15580926e+03 0.49767000e+00
- 1 -211 0 0 0.75775134e-01 -0.47776331e+00 0.71041886e+02 0.13957000e+00
- 1 -211 0 0 0.46856552e+00 0.30162072e+00 0.12988787e+03 0.13957000e+00
- 1 211 0 0 0.14147014e+01 0.17314585e+01 0.28795023e+03 0.13957000e+00
- 1 2112 0 0 0.19728138e+01 0.13790189e+01 0.79821501e+02 0.93957000e+00
- 2 111 823 824 0.50887705e+00 0.46994578e+00 0.21361685e+02 0.13498000e+00
- 1 -211 0 0 0.14479775e+00 0.10271004e+00 0.52092456e+01 0.13957000e+00
- 1 211 0 0 -0.15578701e+00 0.11082900e+00 0.18334243e+01 0.13957000e+00
- 2 111 825 826 0.17425312e+00 0.46995989e+00 0.64346172e+01 0.13498000e+00
- 2 310 827 828 0.34055716e+01 0.26718835e+01 0.42537675e+02 0.49767000e+00
- 1 211 0 0 -0.22930533e+00 0.62265075e+00 0.74766875e+00 0.13957000e+00
- 1 -211 0 0 0.17028730e-01 -0.32776505e-01 0.17207417e-01 0.13957000e+00
- 2 111 829 830 0.32769456e-01 0.18151109e+00 0.37895284e+00 0.13498000e+00
- 1 -211 0 0 0.16342091e+00 0.10452736e+01 0.12612384e+01 0.13957000e+00
- 2 111 831 832 -0.13558883e+00 0.67459270e+00 0.18902364e+01 0.13498000e+00
- 1 211 0 0 0.11211863e+00 -0.14790871e+00 -0.17743568e+00 0.13957000e+00
- 2 111 833 834 -0.19431233e+00 -0.18425265e+00 -0.32126816e+00 0.13498000e+00
- 1 -321 0 0 -0.24608895e+00 0.23659941e+00 -0.33402268e+00 0.49360000e+00
- 2 111 835 836 0.30777694e+00 -0.12628588e+00 0.10451670e+00 0.13498000e+00
- 1 130 0 0 0.27297890e+00 -0.33177263e+00 -0.31582429e+01 0.49767000e+00
- 2 310 837 838 0.37841620e+00 -0.45629453e+00 -0.25902680e+01 0.49767000e+00
- 1 321 0 0 -0.55690121e+00 -0.15216404e+00 -0.17978312e+01 0.49360000e+00
- 1 -211 0 0 0.35518074e-01 0.21809049e-01 -0.14130237e+01 0.13957000e+00
- 2 311 839 839 -0.59652579e+00 -0.75385349e+00 -0.32073617e+01 0.49767000e+00
- 1 211 0 0 0.18519278e-01 -0.27568666e+00 -0.33192754e+00 0.13957000e+00
- 1 2212 0 0 0.65134324e+00 -0.41740253e+00 0.59692531e+01 0.93827000e+00
- 2 111 840 841 -0.25730435e-01 -0.78384558e-01 0.30725149e+01 0.13498000e+00
- 2 111 842 843 -0.95836508e-01 -0.95891475e-01 0.12388128e+01 0.13498000e+00
- 2 111 844 845 0.81996360e-02 0.13787143e+00 0.86453509e+00 0.13498000e+00
- 2 111 846 847 -0.11606512e+00 0.15025732e-01 0.55590078e+00 0.13498000e+00
- 1 -2212 0 0 0.30349464e+00 -0.63884341e+00 0.35724985e+01 0.93827000e+00
- 2 111 848 849 0.21401448e+00 -0.22692239e+00 0.23142221e+01 0.13498000e+00
- 1 211 0 0 -0.13020931e+00 -0.26914721e+00 -0.87527758e-01 0.13957000e+00
- 2 111 850 851 0.17684494e+00 0.37641661e+00 -0.22596519e+00 0.13498000e+00
- 1 211 0 0 -0.43467562e-01 -0.13107239e+00 0.28416871e+00 0.13957000e+00
- 1 -211 0 0 -0.22350792e+00 -0.19508069e+00 -0.12220736e+00 0.13957000e+00
- 2 111 852 853 -0.96520348e-01 0.79015812e-01 -0.98488852e-01 0.13498000e+00
- 2 311 854 854 -0.58987343e+00 0.71272164e+00 -0.30440738e+01 0.49767000e+00
- 2 111 855 856 0.58600990e-01 -0.60275455e-01 -0.88890256e+00 0.13498000e+00
- 2 310 857 858 -0.60728064e+00 0.17455946e+00 -0.16333006e+02 0.49767000e+00
- 2 111 859 860 -0.48444384e-01 0.17990240e+00 -0.10197202e+01 0.13498000e+00
- 2 111 861 862 -0.67473614e-01 0.11025103e+00 -0.58388975e+00 0.13498000e+00
- 2 111 863 864 -0.48781134e+00 0.50927925e+00 -0.25185313e+01 0.13498000e+00
- 1 -211 0 0 0.44907513e-03 -0.73923354e-01 -0.48533680e+00 0.13957000e+00
- 1 211 0 0 -0.43449480e+00 0.87392476e+00 -0.70429971e+01 0.13957000e+00
- 1 -211 0 0 0.23198498e+00 0.37337916e+00 -0.11028529e+01 0.13957000e+00
- 1 211 0 0 -0.10468196e+00 -0.50168454e+00 -0.13647743e+01 0.13957000e+00
- 1 -211 0 0 -0.88322492e-02 0.21991322e+00 -0.73415940e-01 0.13957000e+00
- 2 111 865 866 -0.25397897e+00 -0.11178211e+00 -0.97816835e+00 0.13498000e+00
- 1 -211 0 0 -0.48160352e+00 -0.10544946e+00 0.17657430e+02 0.13957000e+00
- 2 111 867 868 0.14737709e+00 0.99437824e-01 0.32980975e+01 0.13498000e+00
- 1 211 0 0 -0.22941182e+00 -0.31362732e+00 0.30243266e+02 0.13957000e+00
- 1 -211 0 0 0.39062274e+00 -0.28643964e+00 0.16824294e+02 0.13957000e+00
- 1 -2112 0 0 0.12019208e+02 0.34263146e+01 -0.77218346e+01 0.93957000e+00
- 2 111 869 870 0.28402783e+01 0.73867106e+00 -0.16985338e+01 0.13498000e+00
- 1 22 0 0 0.79426422e+00 0.17260594e+00 -0.47497769e+00 0.00000000e+00
- 1 22 0 0 0.24452849e+01 0.69960613e+00 -0.12891144e+01 0.00000000e+00
- 1 22 0 0 -0.22679746e+00 -0.15098636e+00 -0.46200541e+00 0.00000000e+00
- 1 22 0 0 -0.10703567e+00 -0.13080647e+00 -0.13916169e+00 0.00000000e+00
- 1 22 0 0 0.54282238e-01 -0.91517050e-01 -0.24934024e+00 0.00000000e+00
- 1 22 0 0 -0.33491197e-01 -0.80046934e-01 -0.59326589e+00 0.00000000e+00
- 1 22 0 0 -0.38076856e+00 0.71098424e-01 -0.26618332e+01 0.00000000e+00
- 1 22 0 0 -0.15283274e+00 -0.55678993e-01 -0.10064523e+01 0.00000000e+00
- 1 22 0 0 0.47067596e-01 0.14978745e+00 -0.82134666e+00 0.00000000e+00
- 1 22 0 0 -0.21256564e-01 0.98704773e-02 -0.19122218e-01 0.00000000e+00
- 1 22 0 0 -0.10230731e+00 -0.45914050e+00 -0.43033625e+01 0.00000000e+00
- 1 22 0 0 -0.50745437e-01 -0.54807367e+00 -0.39839083e+01 0.00000000e+00
- 2 310 871 872 -0.10949606e+01 -0.11432500e+01 -0.19845151e+02 0.49767000e+00
- 1 22 0 0 0.11005776e+00 0.83941182e-01 -0.92992401e+00 0.00000000e+00
- 1 22 0 0 0.26170665e+00 0.61867093e-01 -0.31590420e+01 0.00000000e+00
- 1 22 0 0 0.47277608e-01 -0.26521502e+00 -0.35056566e+01 0.00000000e+00
- 1 22 0 0 0.85465154e-01 -0.72476095e-01 -0.99741688e+00 0.00000000e+00
- 1 22 0 0 -0.81865768e-01 -0.45306691e+00 -0.64758152e+01 0.00000000e+00
- 1 22 0 0 0.58548780e-02 -0.20369807e-01 -0.10037327e+01 0.00000000e+00
- 1 22 0 0 -0.11977519e+00 -0.35502288e+00 -0.30889992e+02 0.00000000e+00
- 1 22 0 0 0.23485412e-01 -0.26459125e-01 -0.16051371e+01 0.00000000e+00
- 1 22 0 0 0.38973062e-01 -0.20241879e+00 -0.13132442e+02 0.00000000e+00
- 1 22 0 0 -0.25587988e-01 -0.20448247e-01 -0.69463657e+01 0.00000000e+00
- 1 22 0 0 0.80755879e-01 -0.36871508e+00 -0.34055403e+02 0.00000000e+00
- 1 22 0 0 -0.32670550e-01 -0.70268345e+00 -0.64626606e+02 0.00000000e+00
- 1 22 0 0 -0.17959947e-01 -0.33388288e+00 -0.24040032e+02 0.00000000e+00
- 1 22 0 0 -0.30006838e-01 -0.28764276e+00 -0.31897493e+02 0.00000000e+00
- 2 310 873 874 0.53241411e+01 0.15582145e+01 0.51092526e+01 0.49767000e+00
- 1 22 0 0 0.86735711e+00 0.21612098e+00 0.68726548e+00 0.00000000e+00
- 1 22 0 0 0.15555327e+01 0.40346197e+00 0.10155149e+01 0.00000000e+00
- 1 22 0 0 -0.80037392e-02 -0.13927501e-01 0.21597652e-01 0.00000000e+00
- 1 22 0 0 0.36551045e+00 -0.87841050e-01 0.17244702e+00 0.00000000e+00
- 1 22 0 0 0.86439237e-01 0.48844359e-01 0.14081517e+00 0.00000000e+00
- 1 22 0 0 0.38636562e+00 0.14497217e+00 0.22012286e+00 0.00000000e+00
- 1 22 0 0 0.95527521e+00 0.40510931e-02 0.57361737e+00 0.00000000e+00
- 1 22 0 0 0.74897683e+00 -0.86672125e-01 0.54779159e+00 0.00000000e+00
- 1 -211 0 0 0.13616680e+00 -0.99511896e-01 0.31339396e+00 0.13957000e+00
- 1 211 0 0 -0.71140188e-01 0.18565094e+00 0.62969666e-01 0.13957000e+00
- 2 310 875 876 0.81972107e+00 0.20529078e+00 0.15089639e+01 0.49767000e+00
- 1 22 0 0 0.53792595e-02 -0.12709119e-01 -0.99365253e-01 0.00000000e+00
- 1 22 0 0 0.21992798e-01 0.14569796e-01 0.41424222e-01 0.00000000e+00
- 1 22 0 0 0.51700688e+00 0.44783894e-01 0.81128281e+00 0.00000000e+00
- 1 22 0 0 0.46585369e+00 0.14243118e+00 0.62041517e+00 0.00000000e+00
- 1 22 0 0 0.29110109e-01 0.14763194e-02 0.23174173e-01 0.00000000e+00
- 1 22 0 0 0.11100844e+00 -0.21602161e-01 0.85558651e+00 0.00000000e+00
- 1 22 0 0 -0.27239017e+00 0.14262469e+00 0.63894612e+00 0.00000000e+00
- 1 22 0 0 -0.10514334e+00 0.14947232e+00 0.53583316e+00 0.00000000e+00
- 1 130 0 0 0.22830788e+00 -0.12082938e+00 0.15312459e+03 0.49767000e+00
- 1 22 0 0 0.23689317e-01 -0.51609307e-01 0.16989868e+03 0.00000000e+00
- 1 22 0 0 0.66209848e-01 -0.13051061e+00 0.11121768e+03 0.00000000e+00
- 2 310 877 878 -0.61932505e+00 -0.81174921e+00 0.10240131e+01 0.49767000e+00
- 1 22 0 0 -0.18215614e+00 -0.20300806e+00 0.32975663e+00 0.00000000e+00
- 1 22 0 0 -0.59440395e-01 -0.32354829e-01 0.80686941e-02 0.00000000e+00
- 1 130 0 0 -0.89773532e+00 -0.16201098e+01 0.51795407e+00 0.49767000e+00
- 1 22 0 0 -0.16505635e-01 -0.95176044e-01 0.19428827e+00 0.00000000e+00
- 1 22 0 0 0.10004573e+00 -0.65800008e-01 0.11407445e+00 0.00000000e+00
- 1 22 0 0 0.54152471e-01 0.40180484e-01 -0.23689408e-01 0.00000000e+00
- 1 22 0 0 0.16157525e-01 0.32281360e-01 0.11437877e+00 0.00000000e+00
- 1 -2212 0 0 -0.15341673e+01 0.15561990e+01 0.10943140e+01 0.93827000e+00
- 1 211 0 0 -0.11866662e+00 0.74922227e-01 0.82192525e-01 0.13957000e+00
- 1 22 0 0 0.26615976e-02 0.37635781e-01 0.82084986e-01 0.00000000e+00
- 1 22 0 0 -0.21933801e-02 0.22804453e+00 0.39207802e-01 0.00000000e+00
- 1 -211 0 0 -0.16532214e+00 0.55395684e+00 0.41896233e-01 0.13957000e+00
- 1 211 0 0 -0.30751633e-01 0.73388339e+00 0.50238749e+00 0.13957000e+00
- 1 22 0 0 0.78367009e-02 0.86464525e-01 -0.55548547e+00 0.00000000e+00
- 1 22 0 0 -0.73619881e-02 -0.23555354e-01 -0.18726175e-01 0.00000000e+00
- 1 22 0 0 0.61302215e-01 -0.32969068e-02 -0.93967723e-01 0.00000000e+00
- 1 22 0 0 0.30353209e+00 0.12578615e+00 -0.12287128e+01 0.00000000e+00
- 1 22 0 0 0.11150422e+00 0.67139452e-01 -0.23261610e+00 0.00000000e+00
- 1 22 0 0 0.33941879e+00 0.16392651e+00 -0.12815437e+01 0.00000000e+00
- 1 22 0 0 0.15053180e+00 0.12409495e+00 -0.83317121e+00 0.00000000e+00
- 1 22 0 0 0.16111567e+00 0.17022243e-01 -0.41440912e+00 0.00000000e+00
- 1 22 0 0 0.46469865e+00 0.40462081e+00 -0.45425378e+01 0.00000000e+00
- 1 22 0 0 0.11831984e+00 0.19679733e+00 -0.20242236e+01 0.00000000e+00
- 1 22 0 0 0.18225413e+00 -0.37008388e-01 -0.23614635e+01 0.00000000e+00
- 1 22 0 0 -0.48755231e-02 -0.27738505e-01 -0.10942489e+00 0.00000000e+00
- 1 22 0 0 0.92619392e-01 0.31571382e+00 -0.35817954e+01 0.00000000e+00
- 1 22 0 0 0.96816424e-01 0.59214420e+00 -0.86225964e+01 0.00000000e+00
- 1 22 0 0 0.45549185e-01 0.75852919e+00 -0.21959139e+02 0.00000000e+00
- 1 22 0 0 0.12311783e+00 0.53521688e+00 -0.13977853e+02 0.00000000e+00
- 1 22 0 0 -0.31835575e+00 -0.64336135e-01 -0.29511891e+01 0.00000000e+00
- 1 22 0 0 -0.82632656e-02 -0.36045518e-01 -0.18764807e+00 0.00000000e+00
- 1 22 0 0 -0.12896687e+00 0.10431811e+00 -0.20932979e+01 0.00000000e+00
- 1 22 0 0 -0.65303879e-02 0.38933530e-01 -0.12060518e+00 0.00000000e+00
- 1 22 0 0 0.18664419e+00 0.22172975e+00 -0.45851374e+02 0.00000000e+00
- 1 22 0 0 -0.47010266e-02 0.23335200e-01 -0.13592616e+02 0.00000000e+00
- 1 22 0 0 -0.24578196e-01 0.59220147e-01 -0.16078856e+02 0.00000000e+00
- 1 22 0 0 0.71244616e-01 -0.33249450e-01 -0.28538058e+02 0.00000000e+00
- 1 22 0 0 0.27815015e+00 0.80988166e-01 0.20301070e+01 0.00000000e+00
- 1 22 0 0 0.13467854e+00 0.50901575e-01 0.52225698e+00 0.00000000e+00
- 1 22 0 0 -0.59950446e-01 0.32751402e-01 0.19004631e+00 0.00000000e+00
- 1 22 0 0 -0.10717810e-01 0.22541098e-01 0.87515940e+00 0.00000000e+00
- 1 22 0 0 0.11712790e+00 0.17588192e+00 0.15399785e+01 0.00000000e+00
- 1 22 0 0 -0.22614017e-01 -0.79199895e-02 0.18249689e+00 0.00000000e+00
- 1 22 0 0 0.20266391e+00 -0.46164217e-01 0.89722123e+00 0.00000000e+00
- 1 22 0 0 0.32253431e+00 0.24770947e-01 0.89896416e+00 0.00000000e+00
- 1 22 0 0 0.88393927e-01 -0.16614874e+00 0.53873403e+01 0.00000000e+00
- 1 22 0 0 0.14481056e-01 0.21448576e-01 0.31036102e+00 0.00000000e+00
- 1 22 0 0 -0.43649848e-01 0.24898656e+00 0.80618068e+01 0.00000000e+00
- 1 22 0 0 -0.87816964e-01 0.33280867e+00 0.70246669e+01 0.00000000e+00
- 1 22 0 0 -0.16813150e-01 0.97314158e-01 0.76627804e+00 0.00000000e+00
- 1 22 0 0 -0.12075501e+00 0.10551126e-01 0.11283293e+01 0.00000000e+00
- 2 3122 879 880 0.19287732e+01 -0.10848930e+01 0.49672230e+01 0.11156800e+01
- 1 -211 0 0 0.32565813e+00 -0.24190282e+00 0.12645297e+01 0.13957000e+00
- 2 310 881 882 0.11760820e+01 -0.16748192e+01 0.47864106e+01 0.49767000e+00
- 1 22 0 0 -0.23046563e-01 -0.38397863e-01 0.96394824e-01 0.00000000e+00
- 1 22 0 0 0.13965680e+00 -0.34718796e+00 0.42494246e+00 0.00000000e+00
- 1 22 0 0 0.13440104e+00 -0.11159610e+00 0.12185608e+00 0.00000000e+00
- 1 22 0 0 0.11758727e+00 -0.25993767e-01 0.23805608e+00 0.00000000e+00
- 1 22 0 0 0.18751337e+01 -0.30176865e+00 0.67364817e+00 0.00000000e+00
- 1 22 0 0 0.47035044e-01 -0.15200601e-01 0.41155660e-01 0.00000000e+00
- 1 22 0 0 0.41887778e+00 0.70183681e-01 0.19270578e-01 0.00000000e+00
- 1 22 0 0 0.53031998e-01 0.53509773e-01 -0.30142137e-01 0.00000000e+00
- 1 22 0 0 0.10038793e+01 -0.62957285e+00 -0.14162129e+01 0.00000000e+00
- 1 22 0 0 0.63150286e+00 -0.31220164e+00 -0.96542105e+00 0.00000000e+00
- 1 22 0 0 0.20851203e-01 -0.81065433e+00 -0.17914017e+01 0.00000000e+00
- 1 22 0 0 0.78964820e-01 -0.25648212e+00 -0.65981150e+00 0.00000000e+00
- 1 22 0 0 -0.24547784e-02 0.26370687e-03 -0.10657465e+00 0.00000000e+00
- 1 22 0 0 0.19334885e-02 -0.28663628e+00 -0.44341157e+00 0.00000000e+00
- 1 130 0 0 0.12648412e+01 -0.52082178e+00 -0.55737065e+01 0.49767000e+00
- 2 310 883 884 0.11763523e+00 -0.78311794e-01 -0.16294207e+00 0.49767000e+00
- 1 22 0 0 0.28725817e+00 0.24949670e+00 0.51436027e+00 0.00000000e+00
- 1 22 0 0 0.32302357e-01 0.96734513e-02 0.14628086e+00 0.00000000e+00
- 1 22 0 0 0.14837127e+00 0.96431689e-01 0.27254413e+00 0.00000000e+00
- 1 22 0 0 0.17444677e-01 -0.93484307e-02 -0.12011205e-01 0.00000000e+00
- 2 310 885 886 -0.90165366e+00 -0.31766008e+00 0.33739386e+01 0.49767000e+00
- 1 22 0 0 -0.11091486e-01 -0.24708982e-01 0.30557770e+00 0.00000000e+00
- 1 22 0 0 0.10582540e+00 0.19420326e-01 0.23582997e+00 0.00000000e+00
- 1 22 0 0 0.18828546e-01 0.30461959e-02 0.27523955e+00 0.00000000e+00
- 1 22 0 0 -0.19367621e-01 0.37338389e+00 0.22881866e+01 0.00000000e+00
- 1 22 0 0 -0.27437117e+00 -0.37026598e+00 0.49480640e+01 0.00000000e+00
- 1 22 0 0 0.12850460e-02 -0.54246967e-01 0.10083358e+01 0.00000000e+00
- 1 2212 0 0 -0.12853866e+01 0.45956437e+00 0.14966208e+02 0.93827000e+00
- 1 -211 0 0 -0.98703438e-01 0.13508343e+00 0.18658577e+01 0.13957000e+00
- 1 22 0 0 -0.34983254e+00 0.13393609e+00 0.39240663e+01 0.00000000e+00
- 1 22 0 0 -0.40015956e+00 0.31972862e+00 0.54927709e+01 0.00000000e+00
- 1 -211 0 0 -0.33273882e+00 0.16210766e+00 0.19405414e+01 0.13957000e+00
- 1 211 0 0 -0.71420005e+00 0.39109842e+00 0.80640231e+01 0.13957000e+00
- 1 130 0 0 -0.10452701e+01 0.32435528e+00 0.23238830e+02 0.49767000e+00
- 2 111 887 888 -0.10089612e+00 0.25047811e+00 0.70149937e+02 0.13498000e+00
- 2 111 889 890 -0.43102325e+00 -0.46541554e-01 0.11358498e+03 0.13498000e+00
- 1 22 0 0 -0.51894482e-01 0.23765616e+00 0.46649448e+02 0.00000000e+00
- 1 22 0 0 -0.11361582e+00 0.13496857e+00 0.52382214e+02 0.00000000e+00
- 1 22 0 0 0.16101241e+00 0.18131136e-01 0.39991913e+02 0.00000000e+00
- 1 22 0 0 0.20668943e+00 0.17468206e+00 0.88220743e+02 0.00000000e+00
- 1 22 0 0 -0.23177679e+00 -0.31537493e+00 0.87782762e+02 0.00000000e+00
- 1 22 0 0 -0.28860760e-01 -0.17432690e+00 0.49187759e+02 0.00000000e+00
- 1 22 0 0 -0.41823505e-02 0.45124544e-02 0.12018473e+02 0.00000000e+00
- 1 22 0 0 0.24259859e+00 0.64545702e-01 0.45545914e+02 0.00000000e+00
- 1 22 0 0 0.19976533e+00 0.12634034e+00 0.25088873e+03 0.00000000e+00
- 1 22 0 0 0.69961850e-01 -0.31055363e-01 0.57702440e+02 0.00000000e+00
- 1 130 0 0 0.13922318e+01 0.82123843e+00 0.24369193e+03 0.49767000e+00
- 1 130 0 0 0.59140203e+00 -0.31728455e+00 0.15580926e+03 0.49767000e+00
- 1 22 0 0 0.36268703e+00 0.26882568e+00 0.12436952e+02 0.00000000e+00
- 1 22 0 0 0.14619003e+00 0.20112010e+00 0.89247326e+01 0.00000000e+00
- 1 22 0 0 -0.17805475e-01 0.48276632e-01 0.43397556e+00 0.00000000e+00
- 1 22 0 0 0.19205859e+00 0.42168326e+00 0.60006417e+01 0.00000000e+00
- 1 211 0 0 0.33298444e+00 0.22661881e+00 0.45111607e+01 0.13957000e+00
- 1 -211 0 0 0.30725872e+01 0.24452647e+01 0.38026514e+02 0.13957000e+00
- 1 22 0 0 0.12570005e-01 0.20044699e+00 0.33541979e+00 0.00000000e+00
- 1 22 0 0 0.20199451e-01 -0.18935898e-01 0.43533048e-01 0.00000000e+00
- 1 22 0 0 0.23978898e-01 0.16468656e+00 0.41771324e+00 0.00000000e+00
- 1 22 0 0 -0.15956773e+00 0.50990615e+00 0.14725231e+01 0.00000000e+00
- 1 22 0 0 -0.20367325e+00 -0.18010275e+00 -0.32888484e+00 0.00000000e+00
- 1 22 0 0 0.93609252e-02 -0.41498921e-02 0.76166883e-02 0.00000000e+00
- 1 22 0 0 0.26818823e+00 -0.66436924e-01 0.11880749e+00 0.00000000e+00
- 1 22 0 0 0.39588709e-01 -0.59848958e-01 -0.14290787e-01 0.00000000e+00
- 2 111 891 892 0.21208090e+00 -0.20818263e+00 -0.20155794e+01 0.13498000e+00
- 2 111 893 894 0.16633530e+00 -0.24811190e+00 -0.57468864e+00 0.13498000e+00
- 1 130 0 0 -0.59652579e+00 -0.75385349e+00 -0.32073617e+01 0.49767000e+00
- 1 22 0 0 -0.77847836e-02 -0.18607459e-01 0.25865166e+01 0.00000000e+00
- 1 22 0 0 -0.17945652e-01 -0.59777099e-01 0.48599825e+00 0.00000000e+00
- 1 22 0 0 -0.10232487e+00 -0.12413874e+00 0.10990187e+01 0.00000000e+00
- 1 22 0 0 0.64883606e-02 0.28247266e-01 0.13979415e+00 0.00000000e+00
- 1 22 0 0 0.69634301e-01 0.76901452e-01 0.39503242e+00 0.00000000e+00
- 1 22 0 0 -0.61434665e-01 0.60969977e-01 0.46950267e+00 0.00000000e+00
- 1 22 0 0 -0.11663773e+00 0.17982186e-01 0.56350146e+00 0.00000000e+00
- 1 22 0 0 0.57261811e-03 -0.29564535e-02 -0.76006761e-02 0.00000000e+00
- 1 22 0 0 0.26665468e-01 -0.14503433e-01 0.66409712e+00 0.00000000e+00
- 1 22 0 0 0.18734901e+00 -0.21241896e+00 0.16501250e+01 0.00000000e+00
- 1 22 0 0 0.59943511e-01 0.24247009e+00 -0.18198938e+00 0.00000000e+00
- 1 22 0 0 0.11690143e+00 0.13394652e+00 -0.43975805e-01 0.00000000e+00
- 1 22 0 0 -0.44180633e-01 0.43542248e-01 -0.12531950e+00 0.00000000e+00
- 1 22 0 0 -0.52339715e-01 0.35473564e-01 0.26830645e-01 0.00000000e+00
- 1 130 0 0 -0.58987343e+00 0.71272164e+00 -0.30440738e+01 0.49767000e+00
- 1 22 0 0 0.59631679e-02 -0.35191829e-01 -0.76755470e+00 0.00000000e+00
- 1 22 0 0 0.52637822e-01 -0.25083626e-01 -0.12134785e+00 0.00000000e+00
- 1 -211 0 0 -0.25295071e+00 0.28225203e+00 -0.91281975e+01 0.13957000e+00
- 1 211 0 0 -0.35432994e+00 -0.10769258e+00 -0.72048086e+01 0.13957000e+00
- 1 22 0 0 -0.51722045e-01 0.29819644e-02 -0.28083209e+00 0.00000000e+00
- 1 22 0 0 0.32776615e-02 0.17692044e+00 -0.73888812e+00 0.00000000e+00
- 1 22 0 0 -0.54946336e-01 -0.40280044e-02 -0.32727800e+00 0.00000000e+00
- 1 22 0 0 -0.12527278e-01 0.11427904e+00 -0.25661175e+00 0.00000000e+00
- 1 22 0 0 -0.45918384e+00 0.44330115e+00 -0.21230227e+01 0.00000000e+00
- 1 22 0 0 -0.28627508e-01 0.65978095e-01 -0.39550862e+00 0.00000000e+00
- 1 22 0 0 -0.21953624e+00 -0.81668196e-01 -0.93084620e+00 0.00000000e+00
- 1 22 0 0 -0.34442727e-01 -0.30113913e-01 -0.47322148e-01 0.00000000e+00
- 1 22 0 0 0.11950873e+00 0.10237373e-01 0.13547033e+01 0.00000000e+00
- 1 22 0 0 0.27868360e-01 0.89200451e-01 0.19433943e+01 0.00000000e+00
- 1 22 0 0 0.25057971e+01 0.62997232e+00 -0.14495011e+01 0.00000000e+00
- 1 22 0 0 0.33448112e+00 0.10869874e+00 -0.24903278e+00 0.00000000e+00
- 2 111 895 896 -0.98819507e+00 -0.97940789e+00 -0.17965008e+02 0.13498000e+00
- 2 111 897 898 -0.10676557e+00 -0.16384206e+00 -0.18801434e+01 0.13498000e+00
- 1 211 0 0 0.31416030e+01 0.96357040e+00 0.27560048e+01 0.13957000e+00
- 1 -211 0 0 0.21825381e+01 0.59464406e+00 0.23532478e+01 0.13957000e+00
- 2 111 899 900 0.61419050e+00 0.30681056e-01 0.72803668e+00 0.13498000e+00
- 2 111 901 902 0.20553057e+00 0.17460972e+00 0.78092717e+00 0.13498000e+00
- 1 211 0 0 -0.53995281e+00 -0.63596835e+00 0.96652927e+00 0.13957000e+00
- 1 -211 0 0 -0.79372240e-01 -0.17578086e+00 0.57483870e-01 0.13957000e+00
- 1 2212 0 0 0.16885100e+01 -0.10360152e+01 0.44971033e+01 0.93827000e+00
- 1 -211 0 0 0.24026319e+00 -0.48877794e-01 0.47011968e+00 0.13957000e+00
- 2 111 903 904 0.84780818e+00 -0.14358242e+01 0.39544658e+01 0.13498000e+00
- 2 111 905 906 0.32827378e+00 -0.23899499e+00 0.83194472e+00 0.13498000e+00
- 1 -211 0 0 0.16690253e+00 -0.10950560e+00 -0.26499432e+00 0.13957000e+00
- 1 211 0 0 -0.49267298e-01 0.31193809e-01 0.10205226e+00 0.13957000e+00
- 1 -211 0 0 -0.76848988e+00 -0.37904457e+00 0.28822149e+01 0.13957000e+00
- 1 211 0 0 -0.13316379e+00 0.61384487e-01 0.49172369e+00 0.13957000e+00
- 1 22 0 0 0.67087988e-02 0.16165430e+00 0.39803886e+02 0.00000000e+00
- 1 22 0 0 -0.10760492e+00 0.88823804e-01 0.30346050e+02 0.00000000e+00
- 1 22 0 0 -0.38520999e+00 -0.80650230e-01 0.10320463e+03 0.00000000e+00
- 1 22 0 0 -0.45813257e-01 0.34108677e-01 0.10380341e+02 0.00000000e+00
- 1 22 0 0 0.13600144e-01 -0.18098286e-02 -0.13030916e-01 0.00000000e+00
- 1 22 0 0 0.19848076e+00 -0.20637281e+00 -0.20025485e+01 0.00000000e+00
- 1 22 0 0 0.15688145e-01 -0.79863132e-01 -0.65141852e-01 0.00000000e+00
- 1 22 0 0 0.15064716e+00 -0.16824876e+00 -0.50954679e+00 0.00000000e+00
- 1 22 0 0 -0.42082203e+00 -0.50254244e+00 -0.88088832e+01 0.00000000e+00
- 1 22 0 0 -0.56737303e+00 -0.47686545e+00 -0.91561249e+01 0.00000000e+00
- 1 22 0 0 0.20759968e-01 -0.41495033e-01 -0.72842817e+00 0.00000000e+00
- 1 22 0 0 -0.12752554e+00 -0.12234702e+00 -0.11517152e+01 0.00000000e+00
- 1 22 0 0 0.10834603e+00 -0.11324410e-01 0.62798174e-01 0.00000000e+00
- 1 22 0 0 0.50584447e+00 0.42005466e-01 0.66523850e+00 0.00000000e+00
- 1 22 0 0 0.15773516e+00 0.12139645e+00 0.37104257e+00 0.00000000e+00
- 1 22 0 0 0.47795417e-01 0.53213269e-01 0.40988461e+00 0.00000000e+00
- 1 22 0 0 0.14645726e+00 -0.35969703e+00 0.92839028e+00 0.00000000e+00
- 1 22 0 0 0.70135092e+00 -0.10761272e+01 0.30260756e+01 0.00000000e+00
- 1 22 0 0 0.39557564e-02 -0.46808185e-02 -0.49773764e-02 0.00000000e+00
- 1 22 0 0 0.32431802e+00 -0.23431418e+00 0.83692209e+00 0.00000000e+00
- 427
- 2 25 2 3 -0.43467130e+02 -0.81096425e+02 -0.37618103e+03 0.12500219e+03
- 2 23 4 6 -0.59980543e+02 -0.74259203e+02 -0.31297008e+03 0.91339028e+02
- 2 23 7 10 0.16513413e+02 -0.68372216e+01 -0.63210947e+02 0.14315840e+02
- 1 11 0 0 -0.43583755e+02 0.11228646e+02 -0.11172641e+03 0.51000000e-03
- 1 -11 0 0 -0.16396468e+02 -0.85486175e+02 -0.20123973e+03 0.51000000e-03
- 1 22 0 0 -0.32050698e-03 -0.16745012e-02 -0.39385521e-02 0.00000000e+00
- 1 -11 0 0 0.84972191e+01 -0.97668096e+01 -0.27830790e+02 0.51000000e-03
- 1 22 0 0 0.68104752e+01 0.23477470e+01 -0.23449680e+02 0.00000000e+00
- 1 11 0 0 0.12052832e+01 0.58162198e+00 -0.11926198e+02 0.51000000e-03
- 1 22 0 0 0.43530024e-03 0.21896744e-03 -0.42791721e-02 0.00000000e+00
- 1 2112 0 0 0.87884472e+00 -0.11473780e+00 0.54814308e+04 0.93957000e+00
- 2 3 62 62 -0.24096194e+01 -0.81799994e+00 0.12854435e+03 0.50000000e+00
- 2 21 62 62 -0.47493654e+00 0.55203028e+00 0.45427447e+01 0.00000000e+00
- 2 21 62 62 0.28867373e+00 0.24478942e+00 0.54954263e+02 0.00000000e+00
- 2 -1 62 62 -0.21805762e+01 -0.88789733e+00 0.26300141e+03 0.33000000e+00
- 2 -4 71 71 0.57544172e+02 0.15960538e+02 -0.10707511e+03 0.15000000e+01
- 2 21 71 71 0.63338194e+01 0.39917941e+01 -0.10398694e+02 0.00000000e+00
- 2 21 71 71 -0.89620110e+00 -0.97855468e+00 -0.85729493e+01 0.00000000e+00
- 2 21 71 71 0.14497973e+01 0.41041750e+01 -0.44418479e+01 0.00000000e+00
- 2 21 71 71 0.89589986e+00 0.20023863e+01 -0.50988482e+01 0.00000000e+00
- 2 21 71 71 -0.89589986e+00 -0.20023863e+01 -0.27074007e+01 0.00000000e+00
- 2 21 71 71 -0.37527934e-01 -0.33188300e+00 -0.23954685e+00 0.00000000e+00
- 2 21 71 71 -0.35826256e+01 0.16723487e+01 -0.12947592e+01 0.00000000e+00
- 2 21 71 71 -0.31074014e+01 0.36822822e+00 0.10302933e+02 0.00000000e+00
- 2 21 71 71 -0.15261884e+01 0.97417527e+00 0.14143720e+02 0.00000000e+00
- 2 21 71 71 -0.43562797e+00 0.15956795e+01 0.99875826e+01 0.00000000e+00
- 2 21 71 71 -0.43934342e+00 0.16726774e+01 0.20491851e+02 0.00000000e+00
- 2 21 71 71 -0.37928936e+00 0.21514922e+01 0.28840240e+02 0.00000000e+00
- 2 21 71 71 0.43562797e+00 -0.15956795e+01 0.36045813e+02 0.00000000e+00
- 2 21 71 71 0.43934342e+00 -0.16726774e+01 0.18439088e+02 0.00000000e+00
- 2 21 71 71 0.15261884e+01 -0.97417527e+00 0.11593865e+02 0.00000000e+00
- 2 21 71 71 0.79287220e+00 0.12475313e+00 0.54403758e+01 0.00000000e+00
- 2 21 71 71 0.31074014e+01 -0.36822822e+00 0.30764784e+02 0.00000000e+00
- 2 21 71 71 -0.18220456e+01 0.11103851e+01 -0.10032874e+01 0.00000000e+00
- 2 2 71 71 0.15668731e+01 -0.40622580e+00 0.85086304e+03 0.33000000e+00
- 2 2 120 120 -0.19926229e+01 0.28393656e+02 -0.32135960e+03 0.33000000e+00
- 2 21 120 120 -0.35560897e+00 0.53750405e+01 -0.69108144e+02 0.00000000e+00
- 2 21 120 120 0.10205361e+01 0.50972469e+01 -0.63587807e+02 0.00000000e+00
- 2 21 120 120 0.11044505e+01 0.41539323e+01 -0.52794225e+02 0.00000000e+00
- 2 21 120 120 -0.17202913e+01 0.17194787e+01 -0.35060764e+02 0.00000000e+00
- 2 21 120 120 -0.10401972e+02 0.11270347e+02 -0.15579432e+03 0.00000000e+00
- 2 21 120 120 -0.16106020e+01 0.27268852e+01 -0.46651085e+02 0.00000000e+00
- 2 21 120 120 -0.30776807e+01 0.17311555e+01 -0.63797743e+02 0.00000000e+00
- 2 21 120 120 -0.79287220e+00 -0.12475313e+00 -0.40743309e+01 0.00000000e+00
- 2 21 120 120 0.37527934e-01 0.33188300e+00 -0.43511759e+01 0.00000000e+00
- 2 21 120 120 -0.18507077e+01 0.16276529e+01 -0.72453627e+02 0.00000000e+00
- 2 21 120 120 -0.13704892e+01 0.12852359e+01 -0.74215318e+02 0.00000000e+00
- 2 21 120 120 0.37928936e+00 -0.21514922e+01 -0.39434633e+02 0.00000000e+00
- 2 21 120 120 0.13704892e+01 -0.12852359e+01 -0.28719181e+02 0.00000000e+00
- 2 21 120 120 0.35826256e+01 -0.16723487e+01 -0.52667681e+02 0.00000000e+00
- 2 21 120 120 0.30312208e+01 0.23156210e+01 -0.13921797e+03 0.00000000e+00
- 2 21 120 120 0.45976090e+01 0.17744949e+01 -0.35796787e+03 0.00000000e+00
- 2 21 120 120 0.18507077e+01 -0.16276529e+01 -0.16505394e+03 0.00000000e+00
- 2 21 120 120 -0.14497973e+01 -0.41041750e+01 -0.19397275e+03 0.00000000e+00
- 2 21 120 120 -0.45976090e+01 -0.17744949e+01 -0.33906065e+03 0.00000000e+00
- 2 21 120 120 -0.30312208e+01 -0.23156210e+01 -0.72687050e+03 0.00000000e+00
- 2 21 120 120 0.13201230e+00 0.78440894e-01 -0.14224717e+01 0.00000000e+00
- 2 21 120 120 0.17121706e+01 0.23484816e+00 -0.32621199e+03 0.00000000e+00
- 2 21 120 120 0.55463763e+00 0.36850126e+00 -0.80047842e+01 0.00000000e+00
- 2 21 120 120 -0.64106088e+00 0.10168263e+01 -0.58533277e+03 0.00000000e+00
- 2 2203 120 120 -0.85842153e-01 0.27594514e+00 -0.25251909e+04 0.77133000e+00
- 2 92 63 70 -0.47764584e+01 -0.90907757e+00 0.45104277e+03 0.79468344e+01
- 2 -313 173 174 -0.17074043e+01 -0.92320843e+00 0.82490677e+02 0.95536793e+00
- 1 -211 0 0 -0.74759514e+00 0.71155432e+00 0.35849382e+02 0.13957000e+00
- 1 211 0 0 -0.42731527e+00 -0.41160408e+00 0.27882122e+02 0.13957000e+00
- 1 -211 0 0 0.41857132e+00 0.63266654e+00 0.17626234e+02 0.13957000e+00
- 2 111 175 176 -0.57598740e+00 -0.21216228e+00 0.12987931e+02 0.13498000e+00
- 2 223 177 179 -0.63170683e-01 -0.52458409e+00 0.68361986e+02 0.80201541e+00
- 1 211 0 0 -0.90724263e+00 -0.15827205e+00 0.12618583e+03 0.13957000e+00
- 2 111 180 181 -0.76631432e+00 -0.23467494e-01 0.79658609e+02 0.13498000e+00
- 2 92 72 119 0.60969844e+02 0.27398823e+02 0.89608085e+03 0.80218626e+03
- 2 -4132 182 183 0.37448186e+02 0.11433252e+02 -0.70415561e+02 0.24703000e+01
- 2 3112 184 185 0.23051861e+02 0.62254907e+01 -0.41388745e+02 0.11974400e+01
- 1 211 0 0 0.11216589e+00 0.31334915e+00 -0.95940913e+00 0.13957000e+00
- 2 223 186 188 0.26489440e+01 0.20275351e+01 -0.48468409e+01 0.77097386e+00
- 1 -211 0 0 0.11805716e+00 -0.33733191e+00 -0.52347845e+00 0.13957000e+00
- 2 -1114 189 190 -0.34788835e-01 0.18808792e+00 -0.50432521e+01 0.12808383e+01
- 2 -213 191 192 -0.41975495e-01 -0.43319912e+00 -0.19033851e+01 0.74989944e+00
- 1 2212 0 0 0.52414463e+00 0.42623898e+00 -0.97602306e+00 0.93827000e+00
- 2 -213 193 194 0.63616819e+00 0.32422085e+01 -0.58808021e+01 0.73342849e+00
- 2 -311 195 195 0.11300290e+00 0.11215760e+00 -0.89671527e+00 0.49767000e+00
- 2 313 196 197 -0.35984237e-01 0.75066461e+00 -0.22943941e+01 0.96953582e+00
- 2 111 198 199 0.46090031e+00 0.19919695e+00 -0.32732692e+00 0.13498000e+00
- 2 223 200 202 -0.56875466e+00 -0.59482927e-01 -0.99309718e+00 0.79483715e+00
- 1 -2112 0 0 -0.41587284e+00 0.16105485e-01 -0.67187538e+00 0.93957000e+00
- 1 211 0 0 0.17369102e+00 -0.16519609e+00 -0.36421611e+00 0.13957000e+00
- 1 2112 0 0 -0.16561028e+01 0.42966944e+00 -0.12413913e+01 0.93957000e+00
- 1 -211 0 0 -0.22282807e+00 -0.69811929e+00 -0.21652275e+00 0.13957000e+00
- 2 111 203 204 0.19604763e+00 -0.21453880e+00 0.69116267e+00 0.13498000e+00
- 2 -3212 205 206 -0.12635543e+01 0.55387057e+00 0.50745838e+00 0.11925500e+01
- 2 -323 207 208 -0.13058546e+01 0.46151606e+00 0.14555286e+01 0.85708272e+00
- 2 2224 209 210 -0.52190798e+00 -0.13930351e+00 0.13205179e+01 0.11546654e+01
- 2 -213 211 212 -0.54158337e+00 0.11966583e+01 0.55633246e+01 0.75352079e+00
- 2 111 213 215 -0.56209109e+00 0.32630132e+00 0.82303781e+01 0.13498000e+00
- 1 -2112 0 0 -0.58962875e+00 -0.28408128e-01 0.24215169e+01 0.93957000e+00
- 1 2112 0 0 -0.14959890e+01 0.72123858e+00 0.99619179e+01 0.93957000e+00
- 2 213 216 217 0.19001095e+00 0.97602753e+00 0.96271945e+01 0.73151693e+00
- 2 111 218 219 -0.11106427e+01 0.27646538e+01 0.23038059e+02 0.13498000e+00
- 1 -321 0 0 -0.42195126e+00 -0.47496970e-01 0.13654151e+02 0.49360000e+00
- 2 313 220 221 0.39428388e+00 0.11090892e+00 0.16608226e+02 0.89784873e+00
- 2 113 222 223 -0.49407662e-01 -0.50196186e+00 0.14581988e+02 0.78321820e+00
- 2 111 224 225 0.88563742e+00 -0.12952190e+01 0.22502507e+02 0.13498000e+00
- 2 -313 226 227 0.17123918e+01 0.10331784e+00 0.14158509e+02 0.88029846e+00
- 2 311 228 228 0.95014356e+00 -0.17331395e+01 0.18143084e+02 0.49767000e+00
- 1 211 0 0 0.94698730e+00 -0.19034792e+00 0.60891255e+01 0.13957000e+00
- 2 221 229 230 0.73833571e+00 0.56259850e+00 0.10000469e+02 0.54745000e+00
- 2 113 231 232 0.84872184e-01 -0.77112530e+00 0.54580824e+01 0.85272066e+00
- 1 -321 0 0 -0.27618317e+00 0.10996494e+01 0.62601411e-01 0.49360000e+00
- 2 313 233 234 0.66962024e-01 -0.35789727e-01 0.78401155e+00 0.89022260e+00
- 1 211 0 0 -0.61991962e+00 0.14118170e+00 -0.33420651e+00 0.13957000e+00
- 2 111 235 236 0.15370834e+00 0.24710148e-01 0.15570703e+00 0.13498000e+00
- 2 -213 237 238 -0.15459648e+00 0.97694471e-01 0.27578616e+01 0.81793371e+00
- 1 211 0 0 -0.57832065e-01 0.51529661e-01 -0.38146369e-01 0.13957000e+00
- 2 -213 239 240 0.19395273e-01 0.72014632e-02 0.26262619e+01 0.72244001e+00
- 2 213 241 242 0.73722588e-01 -0.97283065e-01 0.31845385e+02 0.76993244e+00
- 2 -213 243 244 -0.12411228e+00 -0.69899350e-01 0.88177469e+01 0.69964058e+00
- 2 -2114 245 246 -0.41697194e+00 0.37162884e-02 0.48811150e+02 0.11817236e+01
- 1 211 0 0 0.64195109e+00 -0.24652588e+00 0.49255963e+02 0.13957000e+00
- 2 2114 247 248 0.11168065e+01 -0.10353986e+00 0.70626635e+03 0.12874501e+01
- 2 92 121 172 -0.13605100e+02 0.54721417e+02 -0.64523762e+04 0.20697473e+03
- 2 213 249 250 -0.87274353e+00 0.11263557e+02 -0.13299976e+03 0.81805568e+00
- 2 -213 251 252 -0.83563500e+00 0.12025414e+02 -0.14180293e+03 0.84806083e+00
- 2 111 253 254 0.34972966e+00 0.74844802e+01 -0.78409856e+02 0.13498000e+00
- 2 113 255 256 0.36970699e-01 0.38118100e+01 -0.44630527e+02 0.10586229e+01
- 2 223 257 259 -0.24018767e+00 0.38569529e+01 -0.59400491e+02 0.79297284e+00
- 2 213 260 261 0.60972109e+00 0.49398306e+01 -0.54940523e+02 0.77870967e+00
- 2 111 262 263 0.12402769e+00 0.39651177e-01 -0.18691216e+01 0.13498000e+00
- 2 113 264 265 -0.50152698e+01 0.53560056e+01 -0.81161938e+02 0.72768884e+00
- 2 -213 266 267 -0.24382066e+01 0.30679089e+01 -0.51907408e+02 0.74978201e+00
- 2 213 268 269 -0.36406669e+01 0.40549101e+01 -0.64514216e+02 0.85757905e+00
- 2 111 270 271 -0.13459751e+01 0.50763168e+00 -0.14301647e+02 0.13498000e+00
- 2 311 272 272 -0.70950398e+00 0.11526745e+01 -0.12820159e+02 0.49767000e+00
- 2 -323 273 274 -0.14069010e+01 0.19215062e+01 -0.30578881e+02 0.88563299e+00
- 1 211 0 0 -0.85335310e+00 0.22747321e+00 -0.16896118e+02 0.13957000e+00
- 1 -211 0 0 -0.71286695e+00 0.56477607e+00 -0.20763895e+02 0.13957000e+00
- 2 113 275 276 -0.13892463e+01 0.75484681e+00 -0.24216152e+02 0.83094184e+00
- 2 113 277 278 -0.57121141e+00 0.70167384e+00 -0.53193996e+02 0.68299740e+00
- 1 211 0 0 -0.41090940e+00 0.22480007e+00 -0.72629944e+01 0.13957000e+00
- 1 -211 0 0 -0.50073928e+00 0.90125006e+00 -0.38504720e+02 0.13957000e+00
- 2 223 279 281 -0.80110269e+00 -0.10135956e+01 -0.33574490e+02 0.77861806e+00
- 2 223 282 284 -0.11443850e+00 0.30858394e+00 -0.18591671e+02 0.77853349e+00
- 1 211 0 0 0.69679236e+00 -0.17368019e+00 -0.72667894e+01 0.13957000e+00
- 2 313 285 286 0.16093831e+01 -0.81721253e+00 -0.28423031e+02 0.89170055e+00
- 2 -311 287 287 0.42851678e+00 -0.15137262e+01 -0.42705898e+02 0.49767000e+00
- 2 113 288 289 0.13231964e+01 0.59719630e+00 -0.40312815e+02 0.74599849e+00
- 1 -211 0 0 0.92187497e+00 -0.42061051e+00 -0.15017620e+02 0.13957000e+00
- 1 211 0 0 0.47030798e-01 -0.86233101e-01 -0.10901493e+02 0.13957000e+00
- 2 313 290 291 0.17228593e+01 -0.29136933e+00 -0.37193859e+02 0.10226827e+01
- 2 -313 292 293 0.27270343e+01 0.10650218e+01 -0.20170809e+03 0.89312912e+00
- 2 -213 294 295 0.11763511e+01 0.79220465e+00 -0.50929957e+02 0.74855452e+00
- 2 213 296 297 0.12580563e+01 -0.20050143e+00 -0.11158895e+03 0.85579003e+00
- 2 311 298 298 0.28719392e+00 0.71718525e-03 -0.28623802e+02 0.49767000e+00
- 2 -311 299 299 0.54632711e+00 -0.26310479e-01 -0.48979177e+02 0.49767000e+00
- 2 113 300 301 0.49928257e+00 -0.24483275e+00 -0.52061613e+02 0.55582284e+00
- 1 -211 0 0 0.12017536e+01 -0.87025622e+00 -0.14246727e+03 0.13957000e+00
- 2 223 302 304 -0.78682968e+00 -0.15294118e+01 -0.96864199e+02 0.79008361e+00
- 2 2224 305 306 -0.25378201e+01 -0.15457888e+01 -0.18034137e+03 0.13000233e+01
- 2 -213 307 308 -0.97275663e-01 -0.87425048e+00 -0.63908230e+02 0.68924669e+00
- 1 -2212 0 0 -0.29947773e+01 -0.11043858e+01 -0.26196873e+03 0.93827000e+00
- 2 223 309 311 -0.13784509e+01 -0.12021816e+01 -0.31374666e+03 0.78093982e+00
- 1 211 0 0 -0.89093940e+00 -0.69787173e+00 -0.13624037e+03 0.13957000e+00
- 2 -213 312 313 0.19187508e+00 0.86953972e-01 -0.17334715e+03 0.80622815e+00
- 1 211 0 0 0.15562887e+00 -0.26757775e-01 -0.10184238e+02 0.13957000e+00
- 2 -213 314 315 0.56492351e+00 -0.16448124e+00 -0.15681660e+03 0.79864311e+00
- 2 213 316 317 0.30983339e+00 -0.39487139e+00 -0.24346521e+02 0.75257493e+00
- 2 313 318 319 0.51849189e+00 0.11792769e+01 -0.22308546e+03 0.83096199e+00
- 1 -321 0 0 -0.62763650e-01 0.18526529e-01 -0.13114725e+03 0.49360000e+00
- 2 323 320 321 0.96188710e-01 0.12278241e+00 -0.61894759e+02 0.91979031e+00
- 2 -323 322 323 0.22620590e+00 0.52489396e+00 -0.18564453e+03 0.90771664e+00
- 1 211 0 0 -0.42353766e+00 0.71161104e-01 -0.28227790e+03 0.13957000e+00
- 2 2114 324 325 0.25195621e+00 0.51119601e+00 -0.17227858e+04 0.11728984e+01
- 1 211 0 0 -0.45495371e+00 -0.21592139e+00 -0.62725457e+03 0.13957000e+00
- 1 -321 0 0 -0.16527609e+01 -0.99093781e+00 0.77970160e+02 0.49360000e+00
- 1 211 0 0 -0.54643377e-01 0.67729375e-01 0.45205169e+01 0.13957000e+00
- 1 22 0 0 -0.55175600e+00 -0.19761419e+00 0.12759891e+02 0.00000000e+00
- 1 22 0 0 -0.24231397e-01 -0.14548091e-01 0.22803963e+00 0.00000000e+00
- 1 211 0 0 0.20896864e-01 -0.27082885e+00 0.11385345e+02 0.13957000e+00
- 1 -211 0 0 0.11842538e+00 0.18981370e-01 0.18586796e+02 0.13957000e+00
- 2 111 326 327 -0.20249293e+00 -0.27273661e+00 0.38389845e+02 0.13498000e+00
- 1 22 0 0 -0.54646815e-01 0.33285550e-01 0.74250890e+01 0.00000000e+00
- 1 22 0 0 -0.71166751e+00 -0.56753044e-01 0.72233520e+02 0.00000000e+00
- 2 -3122 328 329 0.11858124e+02 0.36607558e+01 -0.21388377e+02 0.11156800e+01
- 2 313 330 331 0.25590063e+02 0.77724961e+01 -0.49027183e+02 0.86511578e+00
- 1 2112 0 0 0.20106361e+02 0.56038333e+01 -0.36248107e+02 0.93957000e+00
- 1 -211 0 0 0.29454997e+01 0.62165738e+00 -0.51406378e+01 0.13957000e+00
- 1 -211 0 0 0.23389745e+00 0.37073781e+00 -0.67152769e+00 0.13957000e+00
- 1 211 0 0 0.11465409e+01 0.78016026e+00 -0.16695785e+01 0.13957000e+00
- 2 111 332 333 0.12685056e+01 0.87663706e+00 -0.25057347e+01 0.13498000e+00
- 1 -2112 0 0 0.84036054e-01 0.38871599e+00 -0.38307958e+01 0.93957000e+00
- 1 211 0 0 -0.11882489e+00 -0.20062808e+00 -0.12124563e+01 0.13957000e+00
- 1 -211 0 0 -0.71112432e-01 0.72967271e-01 -0.12088249e+01 0.13957000e+00
- 2 111 334 335 0.29136937e-01 -0.50616639e+00 -0.69456015e+00 0.13498000e+00
- 1 -211 0 0 0.42366243e+00 0.79403221e+00 -0.13382611e+01 0.13957000e+00
- 2 111 336 337 0.21250575e+00 0.24481763e+01 -0.45425409e+01 0.13498000e+00
- 2 310 338 339 0.11300290e+00 0.11215760e+00 -0.89671527e+00 0.49767000e+00
- 1 321 0 0 0.23999873e+00 0.21293826e+00 -0.13379777e+01 0.49360000e+00
- 1 -211 0 0 -0.27598297e+00 0.53772635e+00 -0.95641640e+00 0.13957000e+00
- 1 22 0 0 0.10013254e-01 0.31260189e-01 -0.47646961e-01 0.00000000e+00
- 1 22 0 0 0.45088705e+00 0.16793676e+00 -0.27967996e+00 0.00000000e+00
- 1 211 0 0 -0.41215031e-01 0.27643774e-01 -0.32848571e+00 0.13957000e+00
- 1 -211 0 0 -0.67852576e-01 0.96219492e-01 -0.43599059e+00 0.13957000e+00
- 2 111 340 341 -0.45968706e+00 -0.18334619e+00 -0.22862088e+00 0.13498000e+00
- 1 22 0 0 0.16357553e+00 -0.13926262e+00 0.60893091e+00 0.00000000e+00
- 1 22 0 0 0.32472094e-01 -0.75276179e-01 0.82231763e-01 0.00000000e+00
- 2 -3122 342 343 -0.11615056e+01 0.58771890e+00 0.45801607e+00 0.11156800e+01
- 1 22 0 0 -0.10204864e+00 -0.33848328e-01 0.49442310e-01 0.00000000e+00
- 2 -311 344 344 -0.79815542e+00 0.40012928e-01 0.71110070e+00 0.49767000e+00
- 1 -211 0 0 -0.50769914e+00 0.42150313e+00 0.74442792e+00 0.13957000e+00
- 1 2212 0 0 -0.41621056e+00 -0.25597531e+00 0.11661358e+01 0.93827000e+00
- 1 211 0 0 -0.10569742e+00 0.11667180e+00 0.15438215e+00 0.13957000e+00
- 1 -211 0 0 -0.41939033e+00 0.80713626e+00 0.48195504e+01 0.13957000e+00
- 2 111 345 346 -0.12219304e+00 0.38952199e+00 0.74377418e+00 0.13498000e+00
- 1 22 0 0 -0.47199552e+00 0.21289220e+00 0.62661359e+01 0.00000000e+00
- 1 11 0 0 -0.89987157e-01 0.11298333e+00 0.19600935e+01 0.51000000e-03
- 1 -11 0 0 -0.10841579e-03 0.42578422e-03 0.41486604e-02 0.51000000e-03
- 1 211 0 0 -0.15087125e+00 0.52260649e+00 0.29191756e+01 0.13957000e+00
- 2 111 347 348 0.34088220e+00 0.45342105e+00 0.67080189e+01 0.13498000e+00
- 1 22 0 0 -0.99655044e+00 0.25350058e+01 0.21291260e+02 0.00000000e+00
- 1 22 0 0 -0.11409225e+00 0.22964802e+00 0.17467988e+01 0.00000000e+00
- 1 321 0 0 0.42622948e+00 0.12537549e+00 0.78294849e+01 0.49360000e+00
- 1 -211 0 0 -0.31945601e-01 -0.14466569e-01 0.87787407e+01 0.13957000e+00
- 1 211 0 0 -0.36303496e+00 -0.25089362e+00 0.53679628e+01 0.13957000e+00
- 1 -211 0 0 0.31362730e+00 -0.25106824e+00 0.92140254e+01 0.13957000e+00
- 1 22 0 0 0.73802129e+00 -0.10727783e+01 0.19346276e+02 0.00000000e+00
- 1 22 0 0 0.14761613e+00 -0.22244065e+00 0.31562305e+01 0.00000000e+00
- 2 -311 349 349 0.74615624e+00 -0.17449127e+00 0.67695764e+01 0.49767000e+00
- 2 111 350 351 0.96623558e+00 0.27780911e+00 0.73889321e+01 0.13498000e+00
- 2 310 352 353 0.95014356e+00 -0.17331395e+01 0.18143084e+02 0.49767000e+00
- 1 22 0 0 0.43136077e+00 0.63065376e-01 0.59145734e+01 0.00000000e+00
- 1 22 0 0 0.30697494e+00 0.49953312e+00 0.40858959e+01 0.00000000e+00
- 1 211 0 0 -0.15395333e+00 -0.63622072e+00 0.20487821e+01 0.13957000e+00
- 1 -211 0 0 0.23882551e+00 -0.13490458e+00 0.34093003e+01 0.13957000e+00
- 1 321 0 0 0.25557999e+00 0.17001007e+00 0.50219208e+00 0.49360000e+00
- 1 -211 0 0 -0.18861796e+00 -0.20579979e+00 0.28181947e+00 0.13957000e+00
- 1 22 0 0 0.68190062e-01 -0.44532629e-01 0.11504840e+00 0.00000000e+00
- 1 22 0 0 0.85518279e-01 0.69242777e-01 0.40658635e-01 0.00000000e+00
- 1 -211 0 0 0.38017905e-01 -0.46073377e-01 0.25010530e+01 0.13957000e+00
- 2 111 354 355 -0.19261438e+00 0.14376785e+00 0.25680861e+00 0.13498000e+00
- 1 -211 0 0 0.58404797e-01 0.30972321e+00 0.86179132e+00 0.13957000e+00
- 2 111 356 357 -0.39009524e-01 -0.30252175e+00 0.17644705e+01 0.13498000e+00
- 1 211 0 0 -0.18730138e+00 -0.29580486e+00 0.21850361e+02 0.13957000e+00
- 2 111 358 359 0.26102396e+00 0.19852180e+00 0.99950239e+01 0.13498000e+00
- 1 -211 0 0 0.66140241e-02 -0.55254068e-01 0.40865402e+00 0.13957000e+00
- 2 111 360 361 -0.13072630e+00 -0.14645282e-01 0.84090929e+01 0.13498000e+00
- 1 -2212 0 0 -0.35806184e+00 0.77118375e-01 0.46013883e+02 0.93827000e+00
- 1 211 0 0 -0.58910106e-01 -0.73402087e-01 0.27972664e+01 0.13957000e+00
- 1 2112 0 0 0.11404159e+01 -0.23476859e+00 0.65595883e+03 0.93957000e+00
- 2 111 362 363 -0.23609384e-01 0.13122873e+00 0.50307520e+02 0.13498000e+00
- 1 211 0 0 -0.89094182e+00 0.66096828e+01 -0.78038450e+02 0.13957000e+00
- 2 111 364 365 0.18198286e-01 0.46538745e+01 -0.54961310e+02 0.13498000e+00
- 1 -211 0 0 -0.73673888e+00 0.10386158e+02 -0.12526832e+03 0.13957000e+00
- 2 111 366 367 -0.98896115e-01 0.16392559e+01 -0.16534613e+02 0.13498000e+00
- 1 22 0 0 0.61034262e-01 0.13292626e+01 -0.14475618e+02 0.00000000e+00
- 1 22 0 0 0.28869540e+00 0.61552176e+01 -0.63934238e+02 0.00000000e+00
- 1 -211 0 0 -0.37647092e+00 0.66204635e+00 -0.81713259e+01 0.13957000e+00
- 1 211 0 0 0.41344162e+00 0.31497636e+01 -0.36459201e+02 0.13957000e+00
- 1 211 0 0 -0.15025956e+00 0.11412275e+01 -0.21880575e+02 0.13957000e+00
- 1 -211 0 0 0.63352033e-01 0.12212374e+01 -0.17881107e+02 0.13957000e+00
- 2 111 368 369 -0.15328014e+00 0.14944880e+01 -0.19638808e+02 0.13498000e+00
- 1 211 0 0 0.20112351e+00 0.27461051e+01 -0.26615437e+02 0.13957000e+00
- 2 111 370 371 0.40859759e+00 0.21937255e+01 -0.28325086e+02 0.13498000e+00
- 1 22 0 0 0.71585717e-02 -0.41467123e-01 -0.29769198e+00 0.00000000e+00
- 1 22 0 0 0.11686912e+00 0.81118299e-01 -0.15714296e+01 0.00000000e+00
- 1 -211 0 0 -0.18802205e+00 0.22579030e+00 -0.40560954e+01 0.13957000e+00
- 1 211 0 0 -0.48272478e+01 0.51302153e+01 -0.77105843e+02 0.13957000e+00
- 1 -211 0 0 -0.17060386e+01 0.19032698e+01 -0.37360556e+02 0.13957000e+00
- 2 111 372 373 -0.73216795e+00 0.11646391e+01 -0.14546851e+02 0.13498000e+00
- 1 211 0 0 -0.54108527e+00 0.10807282e+01 -0.13513629e+02 0.13957000e+00
- 2 111 374 375 -0.30995817e+01 0.29741819e+01 -0.51000587e+02 0.13498000e+00
- 1 22 0 0 -0.81347826e+00 0.37540088e+00 -0.87395363e+01 0.00000000e+00
- 1 22 0 0 -0.53249683e+00 0.13223081e+00 -0.55621103e+01 0.00000000e+00
- 1 130 0 0 -0.70950398e+00 0.11526745e+01 -0.12820159e+02 0.49767000e+00
- 1 -321 0 0 -0.67920620e+00 0.62144115e+00 -0.12343778e+02 0.49360000e+00
- 2 111 376 377 -0.72769481e+00 0.13000651e+01 -0.18235103e+02 0.13498000e+00
- 1 -211 0 0 -0.64581621e+00 0.74371704e+00 -0.11328310e+02 0.13957000e+00
- 1 211 0 0 -0.74343011e+00 0.11129769e-01 -0.12887842e+02 0.13957000e+00
- 1 -211 0 0 0.81464943e-01 0.29921767e+00 -0.20285098e+02 0.13957000e+00
- 1 211 0 0 -0.65267635e+00 0.40245617e+00 -0.32908898e+02 0.13957000e+00
- 1 211 0 0 -0.23174189e+00 -0.39474927e-01 -0.99497565e+01 0.13957000e+00
- 1 -211 0 0 -0.13611373e+00 -0.48150008e+00 -0.93738362e+01 0.13957000e+00
- 2 111 378 379 -0.43324708e+00 -0.49262056e+00 -0.14250898e+02 0.13498000e+00
- 1 211 0 0 -0.98771754e-01 0.27105787e+00 -0.10890294e+02 0.13957000e+00
- 1 -211 0 0 -0.18109466e+00 -0.12934474e-01 -0.27055094e+01 0.13957000e+00
- 2 111 380 381 0.16542791e+00 0.50460553e-01 -0.49958679e+01 0.13498000e+00
- 1 321 0 0 0.93965778e+00 -0.25853660e+00 -0.18384011e+02 0.49360000e+00
- 1 -211 0 0 0.66972533e+00 -0.55867593e+00 -0.10039020e+02 0.13957000e+00
- 2 310 382 383 0.42851678e+00 -0.15137262e+01 -0.42705898e+02 0.49767000e+00
- 1 211 0 0 0.72464094e+00 0.12998506e+00 -0.27200925e+02 0.13957000e+00
- 1 -211 0 0 0.59855544e+00 0.46721123e+00 -0.13111890e+02 0.13957000e+00
- 1 321 0 0 0.51615358e+00 -0.26577742e+00 -0.18444807e+02 0.49360000e+00
- 1 -211 0 0 0.12067057e+01 -0.25591908e-01 -0.18749052e+02 0.13957000e+00
- 2 -311 384 384 0.88857702e+00 0.27841752e+00 -0.67437664e+02 0.49767000e+00
- 2 111 385 386 0.18384572e+01 0.78660424e+00 -0.13427042e+03 0.13498000e+00
- 1 -211 0 0 0.85850405e-01 0.24530156e+00 -0.17924072e+02 0.13957000e+00
- 2 111 387 388 0.10905007e+01 0.54690310e+00 -0.33005885e+02 0.13498000e+00
- 1 211 0 0 0.12800204e+01 -0.17226455e-01 -0.87620221e+02 0.13957000e+00
- 2 111 389 390 -0.21964149e-01 -0.18327497e+00 -0.23968731e+02 0.13498000e+00
- 2 310 391 392 0.28719392e+00 0.71718525e-03 -0.28623802e+02 0.49767000e+00
- 2 310 393 394 0.54632711e+00 -0.26310479e-01 -0.48979177e+02 0.49767000e+00
- 1 211 0 0 0.27694543e+00 0.32652972e-02 -0.11065929e+02 0.13957000e+00
- 1 -211 0 0 0.22233714e+00 -0.24809804e+00 -0.40995684e+02 0.13957000e+00
- 1 -211 0 0 -0.46577956e+00 -0.71183156e+00 -0.55641646e+02 0.13957000e+00
- 1 211 0 0 -0.26137351e+00 -0.33818370e+00 -0.14076779e+02 0.13957000e+00
- 2 111 395 396 -0.59676611e-01 -0.47939652e+00 -0.27145773e+02 0.13498000e+00
- 1 2212 0 0 -0.20616895e+01 -0.15358193e+01 -0.14701936e+03 0.93827000e+00
- 1 211 0 0 -0.47613051e+00 -0.99695283e-02 -0.33322008e+02 0.13957000e+00
- 1 -211 0 0 -0.23772530e+00 -0.82973760e+00 -0.43463458e+02 0.13957000e+00
- 2 111 397 398 0.14044964e+00 -0.44512876e-01 -0.20444772e+02 0.13498000e+00
- 1 -211 0 0 -0.45732101e+00 -0.24298646e+00 -0.11807451e+03 0.13957000e+00
- 1 211 0 0 -0.78396206e+00 -0.86569301e+00 -0.17575584e+03 0.13957000e+00
- 2 111 399 400 -0.13716787e+00 -0.93502132e-01 -0.19916303e+02 0.13498000e+00
- 1 -211 0 0 0.13846593e-01 -0.33011971e+00 -0.69685683e+02 0.13957000e+00
- 2 111 401 402 0.17802849e+00 0.41707368e+00 -0.10366147e+03 0.13498000e+00
- 1 -211 0 0 0.44998196e+00 -0.43923351e+00 -0.87786662e+02 0.13957000e+00
- 2 111 403 404 0.11494155e+00 0.27475227e+00 -0.69029937e+02 0.13498000e+00
- 1 211 0 0 0.32020728e+00 -0.43764678e+00 -0.23352393e+02 0.13957000e+00
- 2 111 405 406 -0.10373890e-01 0.42775385e-01 -0.99412755e+00 0.13498000e+00
- 1 321 0 0 0.56527720e+00 0.68406260e+00 -0.15144712e+03 0.49360000e+00
- 1 -211 0 0 -0.46785311e-01 0.49521427e+00 -0.71638335e+02 0.13957000e+00
- 1 321 0 0 -0.24611428e+00 0.10827806e+00 -0.39617313e+02 0.49360000e+00
- 2 111 407 408 0.34230299e+00 0.14504349e-01 -0.22277446e+02 0.13498000e+00
- 2 -311 409 409 0.37451704e-01 0.52269104e+00 -0.16778121e+03 0.49767000e+00
- 1 -211 0 0 0.18875420e+00 0.22029164e-02 -0.17863318e+02 0.13957000e+00
- 1 2112 0 0 0.19561245e+00 0.44182742e+00 -0.16368975e+04 0.93957000e+00
- 2 111 410 411 0.56343760e-01 0.69368588e-01 -0.85888306e+02 0.13498000e+00
- 1 22 0 0 -0.19213448e+00 -0.16589824e+00 0.29498882e+02 0.00000000e+00
- 1 22 0 0 -0.10358449e-01 -0.10683836e+00 0.88909631e+01 0.00000000e+00
- 1 -2212 0 0 0.10949148e+02 0.34315463e+01 -0.19774590e+02 0.93827000e+00
- 1 211 0 0 0.90897515e+00 0.22920948e+00 -0.16137875e+01 0.13957000e+00
- 1 321 0 0 0.11596717e+02 0.33064201e+01 -0.22093910e+02 0.49360000e+00
- 1 -211 0 0 0.13993345e+02 0.44660760e+01 -0.26933274e+02 0.13957000e+00
- 1 22 0 0 0.12388419e+01 0.82559001e+00 -0.24153919e+01 0.00000000e+00
- 1 22 0 0 0.29663772e-01 0.51047051e-01 -0.90342857e-01 0.00000000e+00
- 1 22 0 0 0.14627788e-01 -0.11669844e+00 -0.78294757e-01 0.00000000e+00
- 1 22 0 0 0.14509148e-01 -0.38946796e+00 -0.61626540e+00 0.00000000e+00
- 1 22 0 0 0.14064958e+00 0.20046066e+01 -0.36253945e+01 0.00000000e+00
- 1 22 0 0 0.71856174e-01 0.44356962e+00 -0.91714638e+00 0.00000000e+00
- 1 -211 0 0 0.22957920e+00 -0.53726104e-01 -0.52153044e+00 0.13957000e+00
- 1 211 0 0 -0.11657630e+00 0.16588370e+00 -0.37518483e+00 0.13957000e+00
- 1 22 0 0 -0.24777174e+00 -0.16992875e+00 -0.14157205e+00 0.00000000e+00
- 1 22 0 0 -0.21191531e+00 -0.13417446e-01 -0.87048829e-01 0.00000000e+00
- 1 -2212 0 0 -0.10720632e+01 0.44151206e+00 0.42641865e+00 0.93827000e+00
- 1 211 0 0 -0.89442427e-01 0.14620684e+00 0.31597417e-01 0.13957000e+00
- 1 130 0 0 -0.79815542e+00 0.40012928e-01 0.71110070e+00 0.49767000e+00
- 1 22 0 0 0.20184824e-01 0.11709891e+00 0.26119292e+00 0.00000000e+00
- 1 22 0 0 -0.14237787e+00 0.27242308e+00 0.48258126e+00 0.00000000e+00
- 1 22 0 0 0.30833240e+00 0.40072396e+00 0.53368788e+01 0.00000000e+00
- 1 22 0 0 0.32549795e-01 0.52697084e-01 0.13711401e+01 0.00000000e+00
- 1 130 0 0 0.74615624e+00 -0.17449127e+00 0.67695764e+01 0.49767000e+00
- 1 22 0 0 0.44450922e+00 0.61095630e-01 0.34154269e+01 0.00000000e+00
- 1 22 0 0 0.52172636e+00 0.21671348e+00 0.39735053e+01 0.00000000e+00
- 2 111 412 413 0.47884010e+00 -0.12127214e+01 0.12669548e+02 0.13498000e+00
- 2 111 414 415 0.47130346e+00 -0.52041813e+00 0.54735361e+01 0.13498000e+00
- 1 22 0 0 -0.18151046e+00 0.61329611e-01 0.19262076e+00 0.00000000e+00
- 1 22 0 0 -0.11103918e-01 0.82438237e-01 0.64187858e-01 0.00000000e+00
- 1 22 0 0 0.12983710e-01 -0.42812596e-01 0.59287966e+00 0.00000000e+00
- 1 22 0 0 -0.51993234e-01 -0.25970915e+00 0.11715909e+01 0.00000000e+00
- 1 22 0 0 0.66620068e-02 0.68476838e-01 0.18258189e+01 0.00000000e+00
- 1 22 0 0 0.25436196e+00 0.13004496e+00 0.81692051e+01 0.00000000e+00
- 1 22 0 0 -0.15193013e+00 0.13332420e-01 0.71253100e+01 0.00000000e+00
- 1 22 0 0 0.21203833e-01 -0.27977703e-01 0.12837828e+01 0.00000000e+00
- 1 22 0 0 -0.65313946e-01 0.26060484e-01 0.25915353e+02 0.00000000e+00
- 1 22 0 0 0.41704562e-01 0.10516824e+00 0.24392167e+02 0.00000000e+00
- 1 22 0 0 -0.43516603e-01 0.35325016e+01 -0.41622211e+02 0.00000000e+00
- 1 22 0 0 0.61714889e-01 0.11213729e+01 -0.13339098e+02 0.00000000e+00
- 1 22 0 0 -0.95881076e-01 0.13396822e+01 -0.12982455e+02 0.00000000e+00
- 1 22 0 0 -0.30150391e-02 0.29957371e+00 -0.35521574e+01 0.00000000e+00
- 1 22 0 0 -0.32266536e-02 -0.21135351e-02 -0.79653644e-01 0.00000000e+00
- 1 22 0 0 -0.15005348e+00 0.14966016e+01 -0.19559155e+02 0.00000000e+00
- 1 22 0 0 0.28130514e+00 0.12227399e+01 -0.16432009e+02 0.00000000e+00
- 1 22 0 0 0.12729245e+00 0.97098565e+00 -0.11893077e+02 0.00000000e+00
- 1 22 0 0 -0.44976488e+00 0.75890239e+00 -0.86660545e+01 0.00000000e+00
- 1 22 0 0 -0.28240307e+00 0.40573672e+00 -0.58807970e+01 0.00000000e+00
- 1 22 0 0 -0.23368136e+01 0.22672813e+01 -0.37988331e+02 0.00000000e+00
- 1 22 0 0 -0.76276811e+00 0.70690061e+00 -0.13012256e+02 0.00000000e+00
- 1 22 0 0 -0.21430640e+00 0.36257723e+00 -0.44516914e+01 0.00000000e+00
- 1 22 0 0 -0.51338841e+00 0.93748784e+00 -0.13783411e+02 0.00000000e+00
- 1 22 0 0 -0.41388878e+00 -0.40178212e+00 -0.12204200e+02 0.00000000e+00
- 1 22 0 0 -0.19358298e-01 -0.90838446e-01 -0.20466980e+01 0.00000000e+00
- 1 22 0 0 0.17241225e+00 0.68536274e-01 -0.36816295e+01 0.00000000e+00
- 1 22 0 0 -0.69843418e-02 -0.18075721e-01 -0.13142384e+01 0.00000000e+00
- 1 -211 0 0 0.31125992e+00 -0.10621894e+01 -0.33960128e+02 0.13957000e+00
- 1 211 0 0 0.11725687e+00 -0.45153682e+00 -0.87457701e+01 0.13957000e+00
- 2 310 416 417 0.88857702e+00 0.27841752e+00 -0.67437664e+02 0.49767000e+00
- 1 22 0 0 0.61983018e+00 0.27276597e+00 -0.49822594e+02 0.00000000e+00
- 1 22 0 0 0.12186271e+01 0.51383828e+00 -0.84447829e+02 0.00000000e+00
- 1 22 0 0 0.13953099e+00 0.28020718e-01 -0.44373042e+01 0.00000000e+00
- 1 22 0 0 0.95096974e+00 0.51888238e+00 -0.28568580e+02 0.00000000e+00
- 1 22 0 0 0.31597514e-01 0.67956732e-03 -0.56630861e+01 0.00000000e+00
- 1 22 0 0 -0.53561663e-01 -0.18395454e+00 -0.18305645e+02 0.00000000e+00
- 2 111 418 419 0.12733831e+00 -0.12768868e+00 -0.56956079e+01 0.13498000e+00
- 2 111 420 421 0.15985561e+00 0.12840586e+00 -0.22928194e+02 0.13498000e+00
- 2 111 422 423 0.42121985e+00 0.62865681e-01 -0.20594455e+02 0.13498000e+00
- 2 111 424 425 0.12510726e+00 -0.89176160e-01 -0.28384723e+02 0.13498000e+00
- 1 22 0 0 0.32757932e-01 -0.17095297e+00 -0.11536675e+02 0.00000000e+00
- 1 22 0 0 -0.92434542e-01 -0.30844355e+00 -0.15609098e+02 0.00000000e+00
- 1 22 0 0 0.10159909e+00 -0.40028341e-01 -0.64682059e+01 0.00000000e+00
- 1 22 0 0 0.38850555e-01 -0.44845349e-02 -0.13976566e+02 0.00000000e+00
- 1 22 0 0 -0.53961500e-01 -0.94196483e-01 -0.15400841e+02 0.00000000e+00
- 1 22 0 0 -0.83206365e-01 0.69435064e-03 -0.45154621e+01 0.00000000e+00
- 1 22 0 0 0.15063787e+00 0.19665247e+00 -0.48505443e+02 0.00000000e+00
- 1 22 0 0 0.27390612e-01 0.22042122e+00 -0.55156023e+02 0.00000000e+00
- 1 22 0 0 0.47866796e-01 0.10899260e-01 -0.66978348e+01 0.00000000e+00
- 1 22 0 0 0.67074757e-01 0.26385301e+00 -0.62332102e+02 0.00000000e+00
- 1 22 0 0 0.33349197e-01 -0.32277896e-01 -0.53005490e+00 0.00000000e+00
- 1 22 0 0 -0.43723087e-01 0.75053281e-01 -0.46407265e+00 0.00000000e+00
- 1 22 0 0 -0.34644247e-02 -0.59269026e-02 -0.68650699e-01 0.00000000e+00
- 1 22 0 0 0.34576741e+00 0.20431252e-01 -0.22208795e+02 0.00000000e+00
- 2 310 426 427 0.37451704e-01 0.52269104e+00 -0.16778121e+03 0.49767000e+00
- 1 22 0 0 0.29749249e-01 0.10929455e+00 -0.63688669e+02 0.00000000e+00
- 1 22 0 0 0.26594511e-01 -0.39925959e-01 -0.22199638e+02 0.00000000e+00
- 1 22 0 0 0.10860641e+00 -0.43692957e+00 0.41252979e+01 0.00000000e+00
- 1 22 0 0 0.37023370e+00 -0.77579182e+00 0.85442504e+01 0.00000000e+00
- 1 22 0 0 0.18630846e+00 -0.17466592e+00 0.15358807e+01 0.00000000e+00
- 1 22 0 0 0.28499500e+00 -0.34575221e+00 0.39376554e+01 0.00000000e+00
- 1 -211 0 0 0.57949389e-01 0.72346473e-01 -0.67935750e+01 0.13957000e+00
- 1 211 0 0 0.83062764e+00 0.20607104e+00 -0.60644089e+02 0.13957000e+00
- 1 22 0 0 -0.12692429e-01 -0.37982670e-01 -0.23321187e+01 0.00000000e+00
- 1 22 0 0 0.14003074e+00 -0.89706009e-01 -0.33634892e+01 0.00000000e+00
- 1 22 0 0 0.75832963e-01 0.35161229e-01 -0.38786387e+01 0.00000000e+00
- 1 22 0 0 0.84022642e-01 0.93244634e-01 -0.19049556e+02 0.00000000e+00
- 1 22 0 0 0.40805253e+00 0.67537141e-01 -0.17777578e+02 0.00000000e+00
- 1 22 0 0 0.13167320e-01 -0.46714599e-02 -0.28168767e+01 0.00000000e+00
- 1 22 0 0 -0.24665251e-01 0.16000472e-02 -0.60318836e+01 0.00000000e+00
- 1 22 0 0 0.14977251e+00 -0.90776207e-01 -0.22352839e+02 0.00000000e+00
- 1 -211 0 0 -0.12211415e+00 0.12774482e+00 -0.30807934e+02 0.13957000e+00
- 1 211 0 0 0.15956585e+00 0.39494622e+00 -0.13697327e+03 0.13957000e+00
- 387
- 2 25 2 3 -0.43718508e+02 -0.59904997e+02 -0.60677203e+03 0.12499855e+03
- 2 23 6 9 -0.27320219e+02 -0.60917650e+02 -0.37086387e+03 0.88748141e+02
- 2 23 4 5 -0.16398289e+02 0.10126533e+01 -0.23590816e+03 0.12342711e+02
- 1 13 0 0 -0.16115973e+02 0.13323977e+01 -0.14610372e+03 0.10566000e+00
- 1 -13 0 0 -0.28231609e+00 -0.31974439e+00 -0.89804442e+02 0.10566000e+00
- 1 13 0 0 -0.27845768e+02 -0.75139737e+02 -0.35901834e+03 0.10566000e+00
- 1 22 0 0 0.10986914e-01 -0.29922436e+00 -0.12851680e+01 0.00000000e+00
- 1 -13 0 0 0.51464167e+00 0.14496800e+02 -0.10542685e+02 0.10566000e+00
- 1 22 0 0 -0.79828021e-04 0.24510237e-01 -0.17677080e-01 0.00000000e+00
- 2 2 47 47 -0.21488864e+01 0.37833595e+01 0.12399863e+02 0.33000000e+00
- 2 21 47 47 -0.18094099e+01 0.74146731e+01 0.10521946e+02 0.00000000e+00
- 2 21 47 47 -0.37581226e+00 0.33640144e+01 0.57678080e+01 0.00000000e+00
- 2 21 47 47 0.11343351e+00 0.12343980e+01 0.34883873e+01 0.00000000e+00
- 2 21 47 47 0.28515129e+00 0.74494168e+00 0.26385308e+01 0.00000000e+00
- 2 21 47 47 0.77529800e+00 0.95686072e+00 -0.24695916e+01 0.00000000e+00
- 2 21 47 47 0.35972643e+01 0.17656459e+01 -0.13587618e+02 0.00000000e+00
- 2 21 47 47 0.18478230e+01 0.14210737e+01 -0.56814362e+01 0.00000000e+00
- 2 21 47 47 0.14712136e+02 0.87358442e+01 -0.21261234e+02 0.00000000e+00
- 2 21 47 47 0.12918990e+02 0.90291830e+01 -0.21738077e+02 0.00000000e+00
- 2 21 47 47 -0.39751761e+01 -0.44177747e+00 -0.89465798e+01 0.00000000e+00
- 2 21 47 47 -0.12324349e+01 0.12064872e+00 -0.21173326e+01 0.00000000e+00
- 2 21 47 47 -0.18851963e+01 0.14656607e+00 -0.75150223e+02 0.00000000e+00
- 2 2203 47 47 0.13017123e+00 0.22372232e+01 -0.50552365e+04 0.77133000e+00
- 2 -2 81 81 -0.12225339e+01 0.71629087e+01 0.17357989e+02 0.33000000e+00
- 2 21 81 81 -0.84650025e+01 0.69261197e+01 0.18091353e+02 0.00000000e+00
- 2 21 81 81 -0.43582410e+01 0.39115833e+01 0.40458297e+01 0.00000000e+00
- 2 21 81 81 0.15681906e+00 0.11151332e+00 0.54226790e+00 0.00000000e+00
- 2 21 81 81 -0.10317664e+01 0.77621963e+00 -0.77828930e+00 0.00000000e+00
- 2 21 81 81 -0.16322979e+01 0.12320762e+01 0.27395444e+02 0.00000000e+00
- 2 21 81 81 -0.42786341e+00 -0.44242499e+00 0.19911535e+02 0.00000000e+00
- 2 21 81 81 0.54095397e+01 0.26638074e+00 0.20938894e+03 0.00000000e+00
- 2 21 81 81 0.10143254e+02 -0.13193848e+01 0.33641896e+03 0.00000000e+00
- 2 1 81 81 0.64039036e+01 -0.27091077e+01 0.26661533e+03 0.33000000e+00
- 2 1 106 106 -0.11034756e+01 0.10360675e+01 -0.41732115e+01 0.33000000e+00
- 2 21 106 106 -0.14846104e+01 -0.46321107e+00 -0.56997655e+03 0.00000000e+00
- 2 21 106 106 0.12324349e+01 -0.12064872e+00 -0.22134418e+03 0.00000000e+00
- 2 21 106 106 0.14846104e+01 0.46321107e+00 -0.41427238e+02 0.00000000e+00
- 2 21 106 106 0.18652864e+01 -0.12380113e+01 -0.26820433e+02 0.00000000e+00
- 2 21 106 106 0.39751761e+01 0.44177747e+00 -0.14511024e+01 0.00000000e+00
- 2 21 106 106 -0.18652864e+01 0.12380113e+01 0.53687117e+01 0.00000000e+00
- 2 2203 106 106 0.18867437e+01 0.31385602e-01 0.60358417e+04 0.77133000e+00
- 2 -1 144 144 -0.37283470e+00 -0.90146128e+00 -0.71281005e+01 0.33000000e+00
- 2 21 144 144 -0.14311203e+01 -0.22542778e+01 -0.33635412e+02 0.00000000e+00
- 2 21 144 144 -0.11503104e+01 -0.10056073e+01 -0.41929881e+02 0.00000000e+00
- 2 21 144 144 0.82640758e+01 0.33305769e+01 -0.13957845e+03 0.00000000e+00
- 2 1 144 144 0.44886556e+01 0.29186458e+01 -0.74591024e+02 0.33000000e+00
- 2 92 48 80 0.22953351e+02 0.40512655e+02 -0.51713721e+04 0.95579061e+03
- 2 331 152 153 -0.63680488e+00 0.19703934e+01 0.41598510e+01 0.95916929e+00
- 2 223 154 156 -0.16331288e+01 0.24810713e+01 0.72675585e+01 0.77352669e+00
- 2 3212 157 158 -0.90859591e+00 0.52690399e+01 0.10778361e+02 0.11925500e+01
- 2 -3212 159 160 -0.55083815e+00 0.27031313e+01 0.44686285e+01 0.11925500e+01
- 2 2224 161 162 -0.23947253e+00 0.22347447e+01 0.35764358e+01 0.12035220e+01
- 2 -213 163 164 -0.37694190e-02 0.79848402e+00 0.76434819e+00 0.67456163e+00
- 1 -2112 0 0 0.13698092e+00 0.49775428e+00 0.77011954e+00 0.93957000e+00
- 2 111 165 166 0.37429125e-01 0.98187774e+00 0.25340619e+01 0.13498000e+00
- 1 2112 0 0 0.37138285e+01 0.25531301e+01 -0.12477366e+02 0.93957000e+00
- 2 -213 167 168 0.60096304e+00 0.23332521e+00 -0.86124273e+00 0.40684461e+00
- 2 -1114 169 170 0.30883310e+01 0.12223626e+01 -0.57004319e+01 0.12024185e+01
- 1 2112 0 0 0.57378808e+01 0.36349406e+01 -0.88071885e+01 0.93957000e+00
- 2 111 171 172 0.26000978e+01 0.17136353e+01 -0.74547401e+01 0.13498000e+00
- 1 -2112 0 0 0.33272949e+01 0.27378186e+01 -0.60755325e+01 0.93957000e+00
- 2 -213 173 174 0.11726410e+02 0.71673395e+01 -0.17536280e+02 0.78764406e+00
- 2 213 175 176 0.18677064e+01 0.16496726e+01 -0.40793769e+01 0.60735316e+00
- 1 -211 0 0 0.38579785e+00 -0.10557765e+00 -0.33167520e+00 0.13957000e+00
- 2 113 177 178 -0.25276649e+01 0.58949794e+00 -0.61798097e+01 0.72086074e+00
- 2 111 179 180 0.18009755e+00 -0.20004165e+00 -0.96777773e+00 0.13498000e+00
- 2 221 181 182 0.19986455e+00 -0.23673592e+00 -0.97013230e+00 0.54745000e+00
- 2 213 183 184 -0.43080069e+00 0.59792215e+00 -0.56756754e+01 0.50187453e+00
- 2 223 185 187 -0.12056848e+01 0.21300301e+00 -0.20600537e+01 0.78678784e+00
- 2 223 188 190 -0.17777944e+01 -0.64756313e+00 -0.45123740e+02 0.78424034e+00
- 1 -211 0 0 -0.71072049e-01 0.39430485e+00 -0.16100640e+02 0.13957000e+00
- 2 223 191 193 -0.27351807e+00 -0.21353385e-01 -0.33931574e+02 0.85270986e+00
- 1 211 0 0 0.22867917e+00 0.14895899e+00 -0.76281692e+01 0.13957000e+00
- 1 -211 0 0 -0.44797330e+00 -0.48710793e+00 -0.22771483e+03 0.13957000e+00
- 2 111 194 195 0.19180297e+00 0.13121765e+00 -0.14044149e+03 0.13498000e+00
- 2 111 196 197 -0.45893653e+00 -0.14401417e+00 -0.40197350e+02 0.13498000e+00
- 1 211 0 0 0.11503420e+00 0.19360237e-01 -0.72442137e+02 0.13957000e+00
- 2 221 198 199 -0.45058751e-01 0.12080906e+01 -0.10253026e+04 0.54745000e+00
- 1 2112 0 0 -0.11166607e+00 0.77302591e+00 -0.26370878e+04 0.93957000e+00
- 1 211 0 0 0.13793108e+00 0.43094628e+00 -0.88054384e+03 0.13957000e+00
- 2 92 82 105 0.49758117e+01 0.15915884e+02 0.89898936e+03 0.13548419e+03
- 1 -321 0 0 -0.34246439e+00 0.23105550e+01 0.48621963e+01 0.49360000e+00
- 2 -3322 200 201 -0.15489847e+01 0.36321110e+01 0.93728628e+01 0.13149000e+01
- 2 -323 202 203 -0.26511549e+01 0.21676809e+01 0.59133168e+01 0.89330873e+00
- 2 2214 204 205 -0.14256373e+01 0.23256518e+01 0.52181758e+01 0.12949650e+01
- 2 223 206 208 -0.52008201e+00 0.13299153e+01 0.16706508e+01 0.79743110e+00
- 1 211 0 0 -0.39963709e+01 0.28587655e+01 0.76138588e+01 0.13957000e+00
- 2 -323 209 210 -0.12341779e+01 0.83661982e+00 0.23199969e+01 0.90021015e+00
- 1 321 0 0 -0.14726187e+01 0.19840166e+01 0.19928646e+01 0.49360000e+00
- 1 -211 0 0 -0.94937486e+00 0.67820428e+00 0.76733729e+00 0.13957000e+00
- 2 111 211 212 -0.12372169e+00 -0.29251575e+00 -0.38335031e+00 0.13498000e+00
- 2 113 213 214 -0.84433409e+00 0.10374121e+01 0.15925235e+01 0.74592020e+00
- 1 211 0 0 0.15841039e+00 0.15513121e+00 0.97556465e+00 0.13957000e+00
- 1 -211 0 0 0.39455451e+00 -0.12672228e+00 0.27125639e+00 0.13957000e+00
- 1 211 0 0 -0.88003225e+00 0.32980306e+00 0.48696053e+01 0.13957000e+00
- 2 223 215 216 0.34531139e+00 0.69021363e-01 0.33265051e+01 0.78095899e+00
- 2 221 217 218 -0.89628823e+00 0.69183241e-01 0.53361534e+01 0.54745000e+00
- 1 -2212 0 0 0.28535754e+00 -0.12794849e+00 0.53849787e+01 0.93827000e+00
- 1 211 0 0 -0.87878758e-01 0.22421430e+00 0.11460939e+02 0.13957000e+00
- 2 1114 219 220 0.82529185e-01 0.20576383e+00 0.36615387e+02 0.12400618e+01
- 2 113 221 222 0.29039500e+00 0.17410494e+00 0.28354956e+02 0.80399648e+00
- 2 213 223 224 0.53743087e+01 -0.87281391e+00 0.18087867e+03 0.73842285e+00
- 2 -323 225 226 0.16872669e+01 0.47380149e-01 0.83079124e+02 0.87546918e+00
- 2 313 227 228 0.74169129e+01 -0.83381929e+00 0.25116303e+03 0.93123180e+00
- 2 113 229 230 0.59138859e+01 -0.22658306e+01 0.24633276e+03 0.76923948e+00
- 2 92 107 143 0.59908791e+01 0.13885818e+01 0.51760177e+04 0.45779638e+04
- 2 223 231 233 -0.12549618e+01 0.10760660e+01 -0.80545244e+01 0.78317310e+00
- 2 113 234 235 0.17641885e-01 -0.14906350e-01 -0.61792410e+01 0.79232917e+00
- 2 111 236 237 0.34334070e-01 0.31534756e+00 -0.25558162e+02 0.13498000e+00
- 2 311 238 238 -0.10175858e+00 -0.73356527e+00 -0.55910389e+02 0.49767000e+00
- 2 -323 239 240 -0.56380481e+00 0.54012157e+00 -0.10531660e+03 0.85122896e+00
- 1 211 0 0 0.16683122e+00 -0.37649016e+00 -0.55914897e+02 0.13957000e+00
- 2 -213 241 242 0.95930404e+00 0.22764464e+00 -0.12197541e+03 0.82364410e+00
- 1 211 0 0 -0.20633613e+00 -0.50449888e+00 -0.22900157e+02 0.13957000e+00
- 1 -211 0 0 -0.49998628e+00 0.35619110e+00 -0.11697192e+03 0.13957000e+00
- 2 113 243 244 0.13593103e+00 0.40193171e-01 -0.10221245e+03 0.71652513e+00
- 1 2212 0 0 0.56843674e+00 -0.24901106e+00 -0.70341044e+02 0.93827000e+00
- 1 -2212 0 0 -0.20962453e-01 0.15757415e-01 -0.56192988e+02 0.93827000e+00
- 2 213 245 246 0.39653595e+00 -0.29591428e+00 -0.22321743e+02 0.81848142e+00
- 2 111 247 248 -0.13128267e+00 -0.17217885e+00 -0.46936561e+01 0.13498000e+00
- 2 -213 249 250 0.13046219e+01 0.50788215e-01 -0.68810216e+02 0.80130687e+00
- 1 2212 0 0 0.67515427e-01 -0.48579993e-01 -0.52053882e+01 0.93827000e+00
- 1 -2112 0 0 0.57775367e+00 -0.49160014e+00 -0.63110233e+01 0.93957000e+00
- 2 -213 251 252 0.43390090e+00 -0.34593044e-02 -0.29574285e+01 0.76805068e+00
- 2 223 253 254 0.73034078e+00 -0.27337610e-01 -0.23725340e+01 0.77174623e+00
- 2 213 255 256 0.54942697e+00 0.66628380e+00 -0.10985597e+01 0.63808862e+00
- 1 -211 0 0 -0.43763960e-01 -0.24404351e+00 -0.12195494e+01 0.13957000e+00
- 2 111 257 258 0.96665945e+00 -0.80686395e-01 -0.71114362e+00 0.13498000e+00
- 2 113 259 260 -0.36440852e+00 0.39933040e+00 -0.74378751e+00 0.50485567e+00
- 2 323 261 262 0.91893296e+00 -0.60940574e+00 -0.15603819e+00 0.87101422e+00
- 2 -323 263 264 0.57495657e-01 0.32759577e+00 0.26130854e+00 0.82535719e+00
- 2 111 265 266 -0.20295301e+00 -0.36432313e-01 0.13629763e+00 0.13498000e+00
- 2 111 267 268 0.52338036e+00 0.19658058e+00 0.91167072e-01 0.13498000e+00
- 2 323 269 270 0.49765266e+00 0.40152597e+00 0.13471406e+01 0.98039527e+00
- 2 221 271 272 -0.43135473e+00 -0.35080549e+00 0.12648600e+01 0.54745000e+00
- 2 -313 273 274 -0.44081244e+00 0.10348902e+01 0.42803786e+01 0.86830340e+00
- 2 -213 275 276 -0.31443114e+00 -0.72171812e+00 0.63325325e+01 0.68796580e+00
- 2 113 277 278 -0.31219224e-01 0.71961949e+00 0.79255655e+01 0.71265686e+00
- 2 3222 279 280 -0.23863260e+00 0.94410685e-01 0.38318959e+03 0.11893700e+01
- 2 -3222 281 282 -0.15496057e+00 0.35681008e+00 0.40746717e+03 0.11893700e+01
- 2 111 283 284 0.44276184e+00 -0.60926698e+00 0.72567216e+03 0.13498000e+00
- 1 211 0 0 0.53525501e+00 0.38065438e+00 0.92716250e+03 0.13957000e+00
- 1 2212 0 0 0.11077956e+01 -0.24132875e+00 0.35750159e+04 0.93827000e+00
- 2 92 145 151 0.97984661e+01 0.20878765e+01 -0.29686287e+03 0.17505415e+02
- 2 -313 285 286 -0.20956677e+01 -0.18499074e+01 -0.45258741e+02 0.87518132e+00
- 2 323 287 288 0.99380358e+00 -0.10100096e+01 -0.16719935e+02 0.10718628e+01
- 1 -211 0 0 -0.79628052e+00 -0.90202998e+00 -0.27201929e+02 0.13957000e+00
- 2 223 289 291 0.31316417e+00 0.23080907e+00 -0.17185187e+02 0.77891950e+00
- 1 211 0 0 0.18510792e+01 0.49862072e+00 -0.21584258e+02 0.13957000e+00
- 2 -213 292 293 0.39199186e+01 0.27778100e+01 -0.80633662e+02 0.77605886e+00
- 2 331 294 296 0.56124487e+01 0.23425837e+01 -0.88279157e+02 0.95781911e+00
- 1 22 0 0 0.38507759e-02 0.18547561e+00 0.44356936e+00 0.00000000e+00
- 2 113 297 298 -0.64065566e+00 0.17849178e+01 0.37162816e+01 0.87969026e+00
- 1 211 0 0 -0.47129104e+00 0.56632542e+00 0.23419008e+01 0.13957000e+00
- 1 -211 0 0 -0.39338464e+00 0.58030687e+00 0.12042236e+01 0.13957000e+00
- 2 111 299 300 -0.76845308e+00 0.13344390e+01 0.37214341e+01 0.13498000e+00
- 2 3122 301 302 -0.87019445e+00 0.47214187e+01 0.97385094e+01 0.11156800e+01
- 1 22 0 0 -0.38401462e-01 0.54762125e+00 0.10398519e+01 0.00000000e+00
- 2 -3122 303 304 -0.43885677e+00 0.24765038e+01 0.40489953e+01 0.11156800e+01
- 1 22 0 0 -0.11198138e+00 0.22662746e+00 0.41963322e+00 0.00000000e+00
- 1 2212 0 0 -0.13756538e+00 0.16893228e+01 0.24032078e+01 0.93827000e+00
- 1 211 0 0 -0.10190715e+00 0.54542183e+00 0.11732280e+01 0.13957000e+00
- 1 -211 0 0 0.28194924e+00 0.36658590e+00 0.21744340e+00 0.13957000e+00
- 2 111 305 306 -0.28571866e+00 0.43189813e+00 0.54690479e+00 0.13498000e+00
- 1 22 0 0 0.86938771e-01 0.58549424e+00 0.14729501e+01 0.00000000e+00
- 1 22 0 0 -0.49509647e-01 0.39638351e+00 0.10611119e+01 0.00000000e+00
- 1 -211 0 0 0.36194450e+00 0.17850194e+00 -0.29655282e+00 0.13957000e+00
- 2 111 307 308 0.23901854e+00 0.54823268e-01 -0.56468991e+00 0.13498000e+00
- 1 -2112 0 0 0.20838700e+01 0.73808527e+00 -0.40690225e+01 0.93957000e+00
- 1 211 0 0 0.10044609e+01 0.48427730e+00 -0.16314094e+01 0.13957000e+00
- 1 22 0 0 0.20189032e+01 0.12621241e+01 -0.57048188e+01 0.00000000e+00
- 1 22 0 0 0.58119460e+00 0.45151125e+00 -0.17499213e+01 0.00000000e+00
- 1 -211 0 0 0.73847828e+00 0.54433676e+00 -0.13772994e+01 0.13957000e+00
- 2 111 309 310 0.10987932e+02 0.66230028e+01 -0.16158981e+02 0.13498000e+00
- 1 211 0 0 0.13202406e+01 0.99309134e+00 -0.30701331e+01 0.13957000e+00
- 2 111 311 312 0.54746586e+00 0.65658122e+00 -0.10092438e+01 0.13498000e+00
- 1 -211 0 0 -0.89983709e+00 0.39736091e+00 -0.30163370e+01 0.13957000e+00
- 1 211 0 0 -0.16278279e+01 0.19213703e+00 -0.31634726e+01 0.13957000e+00
- 1 22 0 0 0.17344652e+00 -0.10007408e+00 -0.61215934e+00 0.00000000e+00
- 1 22 0 0 0.66510386e-02 -0.99967573e-01 -0.35561838e+00 0.00000000e+00
- 1 22 0 0 0.16994970e+00 0.31848827e-01 -0.26837662e-01 0.00000000e+00
- 1 22 0 0 0.29914848e-01 -0.26858475e+00 -0.94329464e+00 0.00000000e+00
- 1 211 0 0 -0.41097805e+00 0.59929506e+00 -0.43368667e+01 0.13957000e+00
- 2 111 313 314 -0.19822644e-01 -0.13729089e-02 -0.13388086e+01 0.13498000e+00
- 1 -211 0 0 -0.53996230e-01 -0.11913695e+00 -0.24467596e+00 0.13957000e+00
- 1 211 0 0 -0.39928557e+00 0.25479022e+00 -0.75856487e+00 0.13957000e+00
- 2 111 315 316 -0.75240299e+00 0.77349736e-01 -0.10568128e+01 0.13498000e+00
- 1 -211 0 0 -0.28766731e+00 -0.26499878e+00 -0.14836883e+02 0.13957000e+00
- 1 211 0 0 -0.83377170e+00 -0.24102936e+00 -0.15725766e+02 0.13957000e+00
- 2 111 317 318 -0.65635538e+00 -0.14153498e+00 -0.14561091e+02 0.13498000e+00
- 1 211 0 0 -0.29238691e+00 0.20345661e+00 -0.22894834e+02 0.13957000e+00
- 1 -211 0 0 0.10289257e+00 -0.64088613e-01 -0.68788301e+01 0.13957000e+00
- 2 111 319 320 -0.84023734e-01 -0.16072138e+00 -0.41579104e+01 0.13498000e+00
- 1 22 0 0 0.21790442e-02 -0.14368128e-01 -0.20870256e+01 0.00000000e+00
- 1 22 0 0 0.18962393e+00 0.14558578e+00 -0.13835446e+03 0.00000000e+00
- 1 22 0 0 -0.95100114e-01 -0.15508311e-01 -0.13137385e+02 0.00000000e+00
- 1 22 0 0 -0.36383641e+00 -0.12850586e+00 -0.27059965e+02 0.00000000e+00
- 1 22 0 0 -0.15139092e+00 0.17023280e+00 -0.32718579e+03 0.00000000e+00
- 1 22 0 0 0.10633216e+00 0.10378578e+01 -0.69811682e+03 0.00000000e+00
- 2 -3122 321 322 -0.12929389e+01 0.29762983e+01 0.80462073e+01 0.11156800e+01
- 2 111 323 324 -0.25604577e+00 0.65581274e+00 0.13266555e+01 0.13498000e+00
- 2 -311 325 325 -0.95052764e+00 0.92629919e+00 0.26525315e+01 0.49767000e+00
- 1 -211 0 0 -0.17006273e+01 0.12413817e+01 0.32607853e+01 0.13957000e+00
- 1 2212 0 0 -0.10103945e+01 0.17702624e+01 0.44594402e+01 0.93827000e+00
- 2 111 326 327 -0.41524281e+00 0.55538941e+00 0.75873564e+00 0.13498000e+00
- 1 -211 0 0 -0.17400067e+00 0.78130742e+00 0.85813843e+00 0.13957000e+00
- 1 211 0 0 0.45121962e-01 0.25305699e-01 0.20887155e+00 0.13957000e+00
- 2 111 328 329 -0.39120330e+00 0.52330214e+00 0.60364087e+00 0.13498000e+00
- 1 -321 0 0 -0.33451112e+00 0.35825570e+00 0.73552968e+00 0.49360000e+00
- 2 111 330 331 -0.89966683e+00 0.47836412e+00 0.15844673e+01 0.13498000e+00
- 1 22 0 0 -0.70701690e-01 -0.11088382e+00 -0.68016939e-01 0.00000000e+00
- 1 22 0 0 -0.53020000e-01 -0.18163193e+00 -0.31533338e+00 0.00000000e+00
- 1 211 0 0 0.57348057e-01 0.73118144e-01 0.36362779e+00 0.13957000e+00
- 1 -211 0 0 -0.90168215e+00 0.96429399e+00 0.12288957e+01 0.13957000e+00
- 1 22 0 0 -0.23934996e+00 0.86809497e-01 0.10944283e+01 0.00000000e+00
- 2 111 332 333 0.58466135e+00 -0.17788133e-01 0.22320768e+01 0.13498000e+00
- 1 22 0 0 -0.23789017e+00 0.16174533e+00 0.28827793e+01 0.00000000e+00
- 1 22 0 0 -0.65839805e+00 -0.92562094e-01 0.24533741e+01 0.00000000e+00
- 1 2112 0 0 0.12537380e+00 0.38888921e+00 0.30339747e+02 0.93957000e+00
- 1 -211 0 0 -0.42844614e-01 -0.18312538e+00 0.62756397e+01 0.13957000e+00
- 1 211 0 0 0.40923994e-01 -0.19090364e+00 0.19351295e+02 0.13957000e+00
- 1 -211 0 0 0.24947100e+00 0.36500859e+00 0.90036616e+01 0.13957000e+00
- 1 211 0 0 0.22493698e+01 -0.70506054e+00 0.76213960e+02 0.13957000e+00
- 2 111 334 335 0.31249389e+01 -0.16775337e+00 0.10466471e+03 0.13498000e+00
- 2 -311 336 336 0.50415081e+00 0.43583449e-01 0.30208974e+02 0.49767000e+00
- 1 -211 0 0 0.11831161e+01 0.37967002e-02 0.52870150e+02 0.13957000e+00
- 1 321 0 0 0.37814502e+01 -0.15927810e+00 0.13187668e+03 0.49360000e+00
- 1 -211 0 0 0.36354628e+01 -0.67454119e+00 0.11928635e+03 0.13957000e+00
- 1 211 0 0 0.61157492e+00 -0.43697398e-01 0.24196013e+02 0.13957000e+00
- 1 -211 0 0 0.53023110e+01 -0.22221332e+01 0.22213674e+03 0.13957000e+00
- 1 -211 0 0 -0.17223963e-01 0.17035099e+00 -0.12757525e+01 0.13957000e+00
- 1 211 0 0 -0.89047489e+00 0.44625808e+00 -0.44382036e+01 0.13957000e+00
- 2 111 337 338 -0.34726295e+00 0.45945687e+00 -0.23405683e+01 0.13498000e+00
- 1 211 0 0 0.61070170e-01 -0.31308557e-01 -0.22334540e+00 0.13957000e+00
- 1 -211 0 0 -0.43428285e-01 0.16402208e-01 -0.59558956e+01 0.13957000e+00
- 1 22 0 0 0.67850116e-01 0.28999887e+00 -0.20690587e+02 0.00000000e+00
- 1 22 0 0 -0.33516045e-01 0.25348691e-01 -0.48675741e+01 0.00000000e+00
- 2 310 339 340 -0.10175858e+00 -0.73356527e+00 -0.55910389e+02 0.49767000e+00
- 2 -311 341 341 -0.20993331e+00 0.51250337e+00 -0.79946462e+02 0.49767000e+00
- 1 -211 0 0 -0.35387150e+00 0.27618200e-01 -0.25370135e+02 0.13957000e+00
- 1 -211 0 0 0.24130371e-01 -0.12869971e+00 -0.79871522e+01 0.13957000e+00
- 2 111 342 343 0.93517367e+00 0.35634435e+00 -0.11398826e+03 0.13498000e+00
- 1 211 0 0 0.14439507e+00 0.34145737e+00 -0.51672630e+02 0.13957000e+00
- 1 -211 0 0 -0.84640427e-02 -0.30126420e+00 -0.50539816e+02 0.13957000e+00
- 1 211 0 0 0.60876663e+00 -0.32291793e+00 -0.16147968e+02 0.13957000e+00
- 2 111 344 345 -0.21223068e+00 0.27003645e-01 -0.61737752e+01 0.13498000e+00
- 1 22 0 0 -0.82137152e-01 -0.80418154e-01 -0.12283774e+01 0.00000000e+00
- 1 22 0 0 -0.49145515e-01 -0.91760698e-01 -0.34652787e+01 0.00000000e+00
- 1 -211 0 0 0.56823969e+00 -0.66087064e-01 -0.47379188e+02 0.13957000e+00
- 2 111 346 347 0.73638220e+00 0.11687528e+00 -0.21431027e+02 0.13498000e+00
- 1 -211 0 0 0.36142276e+00 -0.13239044e+00 -0.63761888e+00 0.13957000e+00
- 2 111 348 349 0.72478139e-01 0.12893114e+00 -0.23198096e+01 0.13498000e+00
- 1 -211 0 0 0.84989108e+00 -0.92785044e-01 -0.18797669e+01 0.13957000e+00
- 1 211 0 0 -0.11955030e+00 0.65447434e-01 -0.49276714e+00 0.13957000e+00
- 1 211 0 0 0.61328772e+00 0.42556965e+00 -0.62137393e+00 0.13957000e+00
- 2 111 350 351 -0.63860757e-01 0.24071416e+00 -0.47718582e+00 0.13498000e+00
- 1 22 0 0 0.68386389e+00 -0.11762464e+00 -0.51667962e+00 0.00000000e+00
- 1 22 0 0 0.28279555e+00 0.36938240e-01 -0.19446400e+00 0.00000000e+00
- 1 -211 0 0 -0.17233791e+00 -0.10727194e-01 -0.85557143e-01 0.13957000e+00
- 1 211 0 0 -0.19207061e+00 0.41005760e+00 -0.65823037e+00 0.13957000e+00
- 2 311 352 352 0.26687209e+00 -0.12327310e+00 -0.10081138e+00 0.49767000e+00
- 1 211 0 0 0.65206087e+00 -0.48613264e+00 -0.55226806e-01 0.13957000e+00
- 2 -311 353 353 -0.90450959e-01 0.26370460e-01 0.24739520e+00 0.49767000e+00
- 1 -211 0 0 0.14794662e+00 0.30122530e+00 0.13913340e-01 0.13957000e+00
- 1 22 0 0 -0.14499701e+00 -0.59765410e-01 0.15071238e+00 0.00000000e+00
- 1 22 0 0 -0.57956005e-01 0.23333097e-01 -0.14414750e-01 0.00000000e+00
- 1 22 0 0 0.19008822e+00 0.29348767e-01 -0.19574039e-01 0.00000000e+00
- 1 22 0 0 0.33329214e+00 0.16723181e+00 0.11074111e+00 0.00000000e+00
- 1 321 0 0 0.64590630e+00 0.13239376e+00 0.83947731e+00 0.49360000e+00
- 2 111 354 355 -0.14825364e+00 0.26913221e+00 0.50766328e+00 0.13498000e+00
- 1 22 0 0 -0.32201801e+00 0.66998767e-01 0.38746160e+00 0.00000000e+00
- 1 22 0 0 -0.10933672e+00 -0.41780426e+00 0.87739844e+00 0.00000000e+00
- 2 -311 356 356 -0.19018483e+00 0.71095389e+00 0.19877852e+01 0.49767000e+00
- 2 111 357 358 -0.25062761e+00 0.32393635e+00 0.22925934e+01 0.13498000e+00
- 1 -211 0 0 0.10141236e+00 -0.41783948e+00 0.40139331e+01 0.13957000e+00
- 2 111 359 360 -0.41584350e+00 -0.30387864e+00 0.23185994e+01 0.13498000e+00
- 1 -211 0 0 -0.23333013e+00 0.22917766e+00 0.15187639e+01 0.13957000e+00
- 1 211 0 0 0.20211091e+00 0.49044183e+00 0.64068016e+01 0.13957000e+00
- 1 2212 0 0 -0.21522802e+00 0.82772924e-01 0.36901727e+03 0.93827000e+00
- 2 111 361 362 -0.23404589e-01 0.11637762e-01 0.14172317e+02 0.13498000e+00
- 1 -2212 0 0 -0.19374268e+00 0.47313596e+00 0.35195785e+03 0.93827000e+00
- 2 111 363 364 0.38782110e-01 -0.11632588e+00 0.55509319e+02 0.13498000e+00
- 1 22 0 0 0.33818991e+00 -0.35679589e+00 0.47574003e+03 0.00000000e+00
- 1 22 0 0 0.10457194e+00 -0.25247110e+00 0.24993212e+03 0.00000000e+00
- 2 -311 365 365 -0.16185578e+01 -0.12056247e+01 -0.29021749e+02 0.49767000e+00
- 2 111 366 367 -0.47710997e+00 -0.64428275e+00 -0.16236992e+02 0.13498000e+00
- 1 321 0 0 0.27224588e+00 -0.78319498e+00 -0.11098518e+02 0.49360000e+00
- 2 111 368 369 0.72155771e+00 -0.22681458e+00 -0.56214170e+01 0.13498000e+00
- 1 -211 0 0 0.22285576e+00 0.19713371e+00 -0.10488822e+02 0.13957000e+00
- 1 211 0 0 -0.94424078e-01 -0.37365921e-01 -0.46022227e+01 0.13957000e+00
- 2 111 370 371 0.18473249e+00 0.71041283e-01 -0.20941423e+01 0.13498000e+00
- 1 -211 0 0 0.33136205e+01 0.25978201e+01 -0.71299941e+02 0.13957000e+00
- 2 111 372 373 0.60629808e+00 0.17998985e+00 -0.93337207e+01 0.13498000e+00
- 1 -211 0 0 0.11980359e+01 0.39779690e+00 -0.18697384e+02 0.13957000e+00
- 1 211 0 0 0.59787886e+00 0.26340913e+00 -0.79915446e+01 0.13957000e+00
- 2 221 374 375 0.38165340e+01 0.16813776e+01 -0.61590229e+02 0.54745000e+00
- 1 -211 0 0 -0.81053873e+00 0.13765007e+01 0.25945135e+01 0.13957000e+00
- 1 211 0 0 0.16988308e+00 0.40841705e+00 0.11217681e+01 0.13957000e+00
- 1 22 0 0 -0.75522363e+00 0.12622926e+01 0.35790455e+01 0.00000000e+00
- 1 22 0 0 -0.13229453e-01 0.72146423e-01 0.14238864e+00 0.00000000e+00
- 1 2212 0 0 -0.73964977e+00 0.39869493e+01 0.84484005e+01 0.93827000e+00
- 1 -211 0 0 -0.13054467e+00 0.73446932e+00 0.12901089e+01 0.13957000e+00
- 1 -2212 0 0 -0.44602246e+00 0.22939313e+01 0.37727512e+01 0.93827000e+00
- 1 211 0 0 0.71656853e-02 0.18257245e+00 0.27624411e+00 0.13957000e+00
- 1 22 0 0 -0.82532927e-01 0.40995921e-01 0.12397229e+00 0.00000000e+00
- 1 22 0 0 -0.20318573e+00 0.39090221e+00 0.42293250e+00 0.00000000e+00
- 1 22 0 0 0.51835476e-01 -0.43473714e-01 -0.11678688e+00 0.00000000e+00
- 1 22 0 0 0.18718306e+00 0.98296982e-01 -0.44790304e+00 0.00000000e+00
- 1 22 0 0 0.60019970e+01 0.35530327e+01 -0.88457297e+01 0.00000000e+00
- 1 22 0 0 0.49859350e+01 0.30699700e+01 -0.73132511e+01 0.00000000e+00
- 1 22 0 0 0.24589637e+00 0.22396395e+00 -0.46478241e+00 0.00000000e+00
- 1 22 0 0 0.30156949e+00 0.43261726e+00 -0.54446142e+00 0.00000000e+00
- 1 22 0 0 0.49082747e-01 0.24273972e-01 -0.80978347e+00 0.00000000e+00
- 1 22 0 0 -0.68905391e-01 -0.25646881e-01 -0.52902517e+00 0.00000000e+00
- 1 22 0 0 -0.20510317e+00 0.82272411e-01 -0.30137746e+00 0.00000000e+00
- 1 22 0 0 -0.54729981e+00 -0.49226752e-02 -0.75543538e+00 0.00000000e+00
- 1 22 0 0 -0.49486675e+00 -0.13104819e+00 -0.98174296e+01 0.00000000e+00
- 1 22 0 0 -0.16148863e+00 -0.10486789e-01 -0.47436614e+01 0.00000000e+00
- 1 22 0 0 -0.54372145e-01 -0.10337361e+00 -0.12549083e+01 0.00000000e+00
- 1 22 0 0 -0.29651589e-01 -0.57347766e-01 -0.29030021e+01 0.00000000e+00
- 1 -2112 0 0 -0.96953567e+00 0.22343379e+01 0.61722575e+01 0.93957000e+00
- 2 111 376 377 -0.32340325e+00 0.74196037e+00 0.18739498e+01 0.13498000e+00
- 1 22 0 0 -0.14097932e+00 0.44585080e+00 0.75372541e+00 0.00000000e+00
- 1 22 0 0 -0.11506646e+00 0.20996193e+00 0.57293007e+00 0.00000000e+00
- 2 310 378 379 -0.95052764e+00 0.92629919e+00 0.26525315e+01 0.49767000e+00
- 1 22 0 0 -0.36753274e+00 0.54119300e+00 0.68022218e+00 0.00000000e+00
- 1 22 0 0 -0.47710068e-01 0.14196412e-01 0.78513462e-01 0.00000000e+00
- 1 22 0 0 -0.16044584e+00 0.16385285e+00 0.13716036e+00 0.00000000e+00
- 1 22 0 0 -0.23075746e+00 0.35944929e+00 0.46648050e+00 0.00000000e+00
- 1 22 0 0 -0.23601228e+00 0.17167347e+00 0.53855828e+00 0.00000000e+00
- 1 22 0 0 -0.66365455e+00 0.30669065e+00 0.10459090e+01 0.00000000e+00
- 1 22 0 0 -0.20201948e-02 0.12662542e-01 0.49651270e-01 0.00000000e+00
- 1 22 0 0 0.58668155e+00 -0.30450675e-01 0.21824255e+01 0.00000000e+00
- 1 22 0 0 0.29698040e+01 -0.13840222e+00 0.10003810e+03 0.00000000e+00
- 1 22 0 0 0.15513490e+00 -0.29351140e-01 0.46266124e+01 0.00000000e+00
- 2 310 380 381 0.50415081e+00 0.43583449e-01 0.30208974e+02 0.49767000e+00
- 1 22 0 0 -0.10718944e+00 0.63882050e-01 -0.39085731e+00 0.00000000e+00
- 1 22 0 0 -0.24007351e+00 0.39557482e+00 -0.19497110e+01 0.00000000e+00
- 2 111 382 383 -0.16455641e+00 -0.65224530e+00 -0.49931356e+02 0.13498000e+00
- 2 111 384 385 0.62797829e-01 -0.81319968e-01 -0.59790326e+01 0.13498000e+00
- 1 130 0 0 -0.20993331e+00 0.51250337e+00 -0.79946462e+02 0.49767000e+00
- 1 22 0 0 0.63256587e+00 0.18852310e+00 -0.79308961e+02 0.00000000e+00
- 1 22 0 0 0.30260780e+00 0.16782126e+00 -0.34679302e+02 0.00000000e+00
- 1 22 0 0 -0.18482000e+00 0.24794029e-01 -0.34460570e+01 0.00000000e+00
- 1 22 0 0 -0.27410686e-01 0.22096155e-02 -0.27277182e+01 0.00000000e+00
- 1 22 0 0 0.10639055e+00 0.45345388e-01 -0.23268488e+01 0.00000000e+00
- 1 22 0 0 0.62999165e+00 0.71529891e-01 -0.19104179e+02 0.00000000e+00
- 1 22 0 0 0.13673221e-01 0.67414250e-01 -0.18296895e+01 0.00000000e+00
- 1 22 0 0 0.58804918e-01 0.61516885e-01 -0.49012013e+00 0.00000000e+00
- 1 22 0 0 0.10142417e-01 0.66833623e-02 -0.12534763e+00 0.00000000e+00
- 1 22 0 0 -0.74003174e-01 0.23403080e+00 -0.35183819e+00 0.00000000e+00
- 1 130 0 0 0.26687209e+00 -0.12327310e+00 -0.10081138e+00 0.49767000e+00
- 1 130 0 0 -0.90450959e-01 0.26370460e-01 0.24739520e+00 0.49767000e+00
- 1 22 0 0 -0.94413106e-01 0.21945672e+00 0.46754036e+00 0.00000000e+00
- 1 22 0 0 -0.53840535e-01 0.49675493e-01 0.40122916e-01 0.00000000e+00
- 1 130 0 0 -0.19018483e+00 0.71095389e+00 0.19877852e+01 0.49767000e+00
- 1 22 0 0 -0.19379850e+00 0.26273357e+00 0.14615471e+01 0.00000000e+00
- 1 22 0 0 -0.56829105e-01 0.61202780e-01 0.83104634e+00 0.00000000e+00
- 1 22 0 0 -0.21499687e+00 -0.19459598e+00 0.15566265e+01 0.00000000e+00
- 1 22 0 0 -0.20084662e+00 -0.10928265e+00 0.76197289e+00 0.00000000e+00
- 1 22 0 0 0.50935491e-01 0.27186298e-01 0.45330107e+01 0.00000000e+00
- 1 22 0 0 -0.74340081e-01 -0.15548537e-01 0.96393058e+01 0.00000000e+00
- 1 22 0 0 -0.14401564e-01 -0.12171457e+00 0.44621040e+02 0.00000000e+00
- 1 22 0 0 0.53183674e-01 0.53886906e-02 0.10888279e+02 0.00000000e+00
- 2 310 386 387 -0.16185578e+01 -0.12056247e+01 -0.29021749e+02 0.49767000e+00
- 1 22 0 0 -0.30737489e-01 -0.26119743e-01 -0.40855465e+00 0.00000000e+00
- 1 22 0 0 -0.44637248e+00 -0.61816301e+00 -0.15828437e+02 0.00000000e+00
- 1 22 0 0 0.25616210e+00 -0.11373905e+00 -0.16719836e+01 0.00000000e+00
- 1 22 0 0 0.46539560e+00 -0.11307553e+00 -0.39494334e+01 0.00000000e+00
- 1 22 0 0 0.20032322e+00 0.43267210e-01 -0.19054001e+01 0.00000000e+00
- 1 22 0 0 -0.15590727e-01 0.27774073e-01 -0.18874219e+00 0.00000000e+00
- 1 22 0 0 0.40777375e+00 0.16399322e+00 -0.70613292e+01 0.00000000e+00
- 1 22 0 0 0.19852433e+00 0.15996629e-01 -0.22723916e+01 0.00000000e+00
- 1 22 0 0 0.36450584e+01 0.15775073e+01 -0.56447613e+02 0.00000000e+00
- 1 22 0 0 0.17147557e+00 0.10387031e+00 -0.51426159e+01 0.00000000e+00
- 1 22 0 0 -0.21880342e+00 0.38472492e+00 0.89652315e+00 0.00000000e+00
- 1 22 0 0 -0.10459983e+00 0.35723545e+00 0.97742667e+00 0.00000000e+00
- 1 211 0 0 -0.11215144e+00 0.94211766e-01 0.21477009e+00 0.13957000e+00
- 1 -211 0 0 -0.83837620e+00 0.83208742e+00 0.24377614e+01 0.13957000e+00
- 1 211 0 0 0.35514413e+00 0.16589114e+00 0.12919420e+02 0.13957000e+00
- 1 -211 0 0 0.14900668e+00 -0.12230769e+00 0.17289554e+02 0.13957000e+00
- 1 22 0 0 -0.52343355e-01 -0.38774045e+00 -0.25064306e+02 0.00000000e+00
- 1 22 0 0 -0.11221305e+00 -0.26450485e+00 -0.24867050e+02 0.00000000e+00
- 1 22 0 0 0.29351271e-01 -0.15236458e-01 -0.47832711e+01 0.00000000e+00
- 1 22 0 0 0.33446558e-01 -0.66083511e-01 -0.11957615e+01 0.00000000e+00
- 1 -211 0 0 -0.12798922e+01 -0.11104931e+01 -0.23724881e+02 0.13957000e+00
- 1 211 0 0 -0.33866558e+00 -0.95131589e-01 -0.52968684e+01 0.13957000e+00
- 359
- 2 25 2 3 -0.95128240e+02 -0.24008425e+02 0.11651266e+04 0.12499782e+03
- 2 23 4 5 -0.43775776e+02 0.13842790e+02 0.39569342e+03 0.17491773e+02
- 2 23 6 11 -0.51352463e+02 -0.37851214e+02 0.76943321e+03 0.88951567e+02
- 1 13 0 0 -0.14554365e+02 0.13895053e+01 0.71082519e+02 0.10566000e+00
- 1 -13 0 0 -0.29221412e+02 0.12453284e+02 0.32461090e+03 0.10566000e+00
- 1 11 0 0 -0.42928430e+02 -0.40247795e+02 0.76485871e+03 0.51000000e-03
- 1 22 0 0 -0.19484008e-01 -0.18084614e-01 0.34197344e+00 0.00000000e+00
- 1 22 0 0 -0.12003319e-03 0.27093580e-02 -0.30765869e-03 0.00000000e+00
- 1 22 0 0 -0.61817717e-03 0.72218209e-03 0.36318687e-02 0.00000000e+00
- 1 -11 0 0 -0.84032614e+01 0.24110762e+01 0.42289246e+01 0.51000000e-03
- 1 22 0 0 -0.54962831e-03 0.15750768e-03 0.27951101e-03 0.00000000e+00
- 2 1 52 52 0.81002861e+01 0.18807417e+02 0.78134494e+03 0.33000000e+00
- 2 21 52 52 0.12786376e+02 0.32730991e+02 0.12428073e+04 0.00000000e+00
- 2 21 52 52 0.32988398e+01 0.55308375e+01 0.20070989e+03 0.00000000e+00
- 2 21 52 52 -0.15841490e+00 -0.97481854e+00 0.34143325e+02 0.00000000e+00
- 2 21 52 52 0.12488654e+00 0.22463992e+00 0.62558526e+01 0.00000000e+00
- 2 21 52 52 0.19188292e+01 -0.26494303e+01 0.33810237e+02 0.00000000e+00
- 2 21 52 52 -0.73463031e+00 0.41774297e+01 0.26861688e+02 0.00000000e+00
- 2 21 52 52 -0.79087011e+00 0.10008553e+01 0.96764884e+01 0.00000000e+00
- 2 21 52 52 0.11886552e+00 -0.82545000e-01 0.20085807e+01 0.00000000e+00
- 2 21 52 52 0.32408827e+01 0.14845075e+01 0.16320318e+02 0.00000000e+00
- 2 21 52 52 -0.42873274e+00 0.40822177e+01 0.10319265e+02 0.00000000e+00
- 2 21 52 52 0.14947699e+01 0.39548950e+01 0.46323794e+01 0.00000000e+00
- 2 21 52 52 -0.10727387e+00 0.28159517e+01 -0.52077209e+01 0.00000000e+00
- 2 21 52 52 0.14191883e+01 -0.24869087e+01 -0.33955500e+01 0.00000000e+00
- 2 21 52 52 -0.14947699e+01 -0.39548950e+01 -0.10269903e+01 0.00000000e+00
- 2 21 52 52 0.10727387e+00 -0.28159517e+01 0.17205479e+02 0.00000000e+00
- 2 21 52 52 0.42873274e+00 -0.40822177e+01 0.27841864e+02 0.00000000e+00
- 2 21 52 52 -0.76563706e+00 0.43419732e+00 0.57169644e+02 0.00000000e+00
- 2 2101 52 52 0.33259764e+01 -0.80029940e+00 0.15884590e+04 0.57933000e+00
- 2 2 104 104 0.46318211e+02 -0.26898438e+02 -0.21905010e+03 0.33000000e+00
- 2 21 104 104 0.85084873e+01 -0.33680163e+01 -0.36303751e+02 0.00000000e+00
- 2 21 104 104 0.11030315e+02 -0.37725321e+01 -0.49452292e+02 0.00000000e+00
- 2 21 104 104 0.75735601e+00 -0.28721649e+00 -0.19587990e+01 0.00000000e+00
- 2 21 104 104 0.35228889e+00 -0.20216250e+00 -0.53963830e+00 0.00000000e+00
- 2 21 104 104 0.94696728e+00 -0.66119638e+00 0.95786656e-01 0.00000000e+00
- 2 21 104 104 -0.16025631e+00 0.11618701e+00 0.71301106e-01 0.00000000e+00
- 2 21 104 104 0.76563706e+00 -0.43419732e+00 -0.73719534e+01 0.00000000e+00
- 2 21 104 104 0.79083645e+00 0.76591041e+00 -0.72922728e+01 0.00000000e+00
- 2 21 104 104 -0.14191883e+01 0.24869087e+01 -0.26522003e+02 0.00000000e+00
- 2 21 104 104 -0.32408827e+01 -0.14845075e+01 -0.59874686e+02 0.00000000e+00
- 2 21 104 104 -0.79083645e+00 -0.76591041e+00 -0.29117626e+02 0.00000000e+00
- 2 21 104 104 0.31648541e+01 0.14124282e+01 -0.56406352e+03 0.00000000e+00
- 2 21 104 104 -0.31648541e+01 -0.14124282e+01 -0.16816180e+04 0.00000000e+00
- 2 2203 104 104 -0.61527379e+00 0.11167217e+01 -0.38766071e+04 0.77133000e+00
- 2 1 127 127 -0.82773756e+00 -0.76723914e+00 -0.96802304e+01 0.00000000e+00
- 2 -1 127 127 0.82773756e+00 0.76723914e+00 -0.40763564e+02 0.00000000e+00
- 2 21 131 131 -0.25233932e+01 -0.18140203e+01 0.13610335e+04 0.00000000e+00
- 2 21 131 131 0.25233932e+01 0.18140203e+01 0.39826034e+03 0.00000000e+00
- 2 21 139 139 0.55852977e+00 0.87653318e+00 -0.34852339e+03 0.00000000e+00
- 2 21 139 139 -0.55852977e+00 -0.87653318e+00 -0.15785395e+02 0.00000000e+00
- 2 92 53 103 0.31884578e+02 0.57396874e+02 0.40499359e+04 0.48244689e+03
- 2 -213 144 145 0.73024325e+01 0.17612283e+02 0.70735301e+03 0.74557027e+00
- 2 323 146 147 0.68804083e+01 0.17665625e+02 0.66929600e+03 0.86747125e+00
- 2 -323 148 149 0.42322699e+01 0.73490436e+01 0.31431256e+03 0.89069137e+00
- 2 221 150 152 0.41711523e+01 0.12013154e+02 0.43412460e+03 0.54745000e+00
- 2 111 153 154 0.65921199e+00 0.12093193e+01 0.60288072e+02 0.13498000e+00
- 1 321 0 0 0.18722195e+00 -0.10405244e+00 0.29795233e+02 0.49360000e+00
- 1 -321 0 0 0.18406103e+00 0.27933305e-01 0.74135609e+01 0.49360000e+00
- 1 2212 0 0 0.44580638e+00 -0.22664800e+00 0.17815111e+02 0.93827000e+00
- 1 -2112 0 0 0.10895493e+01 -0.23230381e+00 0.25245424e+02 0.93957000e+00
- 2 2114 155 156 0.17944730e+00 0.13069257e+00 0.11291435e+02 0.12215128e+01
- 2 111 157 158 -0.39476284e+00 -0.20219220e+00 0.15247172e+02 0.13498000e+00
- 2 -2214 159 160 0.84446880e+00 0.70030907e+00 0.91911303e+01 0.12527753e+01
- 2 113 161 162 -0.68227997e+00 0.19543133e+00 0.11386712e+02 0.72676045e+00
- 2 113 163 164 0.51223808e+00 0.13390384e+00 0.60641509e+01 0.88898686e+00
- 2 113 165 166 0.14840355e+00 0.20546861e+01 0.15928181e+02 0.10261386e+01
- 2 223 167 169 0.74791184e+00 0.71886227e+00 0.53243250e+01 0.77765132e+00
- 2 213 170 171 0.25436023e+00 0.14465095e+01 0.70048371e+01 0.74165562e+00
- 2 313 172 173 -0.13920538e+00 0.44968619e+00 0.43129390e+01 0.81984161e+00
- 1 -321 0 0 0.52615817e+00 0.28100985e+00 0.16174853e+01 0.49360000e+00
- 2 213 174 175 0.34731759e+00 0.86440647e+00 0.53200410e+01 0.74894978e+00
- 2 311 176 176 0.45108879e+00 0.90393522e+00 0.16976185e+01 0.49767000e+00
- 2 -311 177 177 0.46615974e+00 0.17662533e+01 0.19242451e+01 0.49767000e+00
- 1 -211 0 0 -0.11396404e+00 0.10825285e+01 0.34995789e+01 0.13957000e+00
- 1 211 0 0 0.75984887e+00 0.17529131e+01 0.24503611e+01 0.13957000e+00
- 2 113 178 179 -0.65373579e+00 0.84963559e+00 -0.29084043e+00 0.74469397e+00
- 2 313 180 181 0.39040015e+00 0.28310422e+00 -0.37316882e+00 0.89737918e+00
- 2 3122 182 183 -0.16677191e+00 0.11699919e+01 -0.11260534e+01 0.11156800e+01
- 1 -2212 0 0 0.35050444e+00 0.18682894e+00 -0.17627909e+01 0.93827000e+00
- 2 111 184 185 0.22881965e+00 -0.25522735e+00 -0.95384915e+00 0.13498000e+00
- 2 213 186 187 0.19820833e+00 -0.38511682e-01 -0.50877827e+00 0.56375186e+00
- 2 221 188 189 -0.17523881e+00 0.93753011e-01 -0.32471585e+00 0.54745000e+00
- 2 311 190 190 0.88543758e+00 -0.18384819e+01 -0.19629096e+01 0.49767000e+00
- 2 -323 191 192 -0.10207644e+01 -0.19245035e+01 -0.94640814e+00 0.92304048e+00
- 2 213 193 194 0.65477116e-02 -0.20613134e+00 0.54488912e+00 0.78828858e+00
- 2 311 195 195 0.18277301e-01 -0.15767588e+01 0.42524202e+01 0.49767000e+00
- 2 -313 196 197 -0.98160548e-01 -0.36286949e-01 0.96880027e+00 0.81035144e+00
- 2 1114 198 199 -0.19160481e+00 -0.19201917e+00 0.94875390e+00 0.11340197e+01
- 2 -1114 200 201 0.13118142e+00 -0.18470994e+01 0.87497962e+01 0.11377414e+01
- 2 -213 202 203 -0.96905730e-01 -0.68144704e+00 0.60469314e+01 0.72324453e+00
- 2 223 204 206 0.49361452e+00 -0.47318889e-01 0.29972861e+01 0.78397868e+00
- 1 321 0 0 -0.10309152e+00 -0.91359695e+00 0.70033980e+01 0.49360000e+00
- 1 -321 0 0 0.32151313e-01 -0.16150976e+01 0.15649226e+02 0.49360000e+00
- 2 213 207 208 0.15904828e+00 0.31702312e+00 0.55140967e+01 0.79894272e+00
- 2 -213 209 210 -0.70969315e+00 -0.37914438e+00 0.21594421e+02 0.71836526e+00
- 1 211 0 0 -0.31692014e+00 -0.50241412e+00 0.56896972e+01 0.13957000e+00
- 2 223 211 213 0.56191635e+00 -0.15738068e+00 0.43974302e+02 0.81657432e+00
- 2 311 214 214 0.15019634e+00 -0.52463550e-01 0.26751838e+02 0.49767000e+00
- 2 -313 215 216 -0.24132980e+00 -0.26635540e+00 0.49807226e+02 0.89295615e+00
- 1 -211 0 0 0.96873657e-01 0.42278631e-01 0.12357153e+02 0.13957000e+00
- 2 2214 217 218 0.94347714e+00 0.40635091e-01 0.66281491e+03 0.12723069e+01
- 2 223 219 221 0.19528361e+01 -0.64942759e+00 0.81461653e+03 0.77344080e+00
- 2 92 105 126 0.63243662e+02 -0.33388449e+02 -0.65596047e+04 0.37690003e+03
- 1 2212 0 0 0.21889690e+02 -0.12885607e+02 -0.10507575e+03 0.93827000e+00
- 1 -2112 0 0 0.26589565e+02 -0.14625533e+02 -0.12361835e+03 0.93957000e+00
- 2 111 222 223 0.20790167e+01 -0.50223314e+00 -0.81505473e+01 0.13498000e+00
- 2 223 224 226 0.16007910e+02 -0.66160594e+01 -0.70077249e+02 0.77742513e+00
- 2 113 227 228 0.78543047e+00 0.10204554e+00 -0.71153967e-01 0.82684661e+00
- 1 -211 0 0 0.38391864e+00 -0.71220120e+00 -0.11905352e+01 0.13957000e+00
- 2 2224 229 230 0.28275435e+00 0.92947493e+00 -0.40564064e+01 0.12550770e+01
- 2 -2224 231 232 0.47041349e+00 -0.14500961e+00 -0.77018422e+01 0.12709648e+01
- 2 113 233 234 0.32245090e+00 -0.81212248e-01 -0.46850419e+01 0.79511046e+00
- 2 213 235 236 -0.26499669e+00 0.84660457e+00 -0.11494719e+02 0.79428174e+00
- 2 3112 237 238 -0.23518930e+01 0.66678082e+00 -0.35781179e+02 0.11974400e+01
- 2 -3112 239 240 -0.27913942e+00 -0.50354438e+00 -0.20131378e+02 0.11974400e+01
- 2 -213 241 242 -0.73118642e+00 -0.13323998e+00 -0.38444956e+02 0.76195456e+00
- 2 113 243 244 -0.88725985e+00 -0.17121603e+00 -0.17355623e+02 0.70834241e+00
- 2 213 245 246 0.32032554e+00 -0.23646983e+00 -0.65561741e+02 0.10240515e+01
- 2 -213 247 248 0.83360925e+00 -0.16544286e+00 -0.20003886e+03 0.74571780e+00
- 2 323 249 250 0.62924338e+00 0.78331199e+00 -0.19836591e+03 0.91824036e+00
- 2 333 251 252 0.37723338e+00 -0.27144366e+00 -0.47504029e+03 0.10182606e+01
- 2 3122 253 254 -0.10532911e+01 -0.33331191e+00 -0.68263468e+03 0.11156800e+01
- 1 -2112 0 0 -0.11641543e+01 -0.35842173e+00 -0.63172456e+03 0.93957000e+00
- 1 2112 0 0 -0.16178011e+00 0.53162466e+00 -0.20727769e+04 0.93957000e+00
- 2 213 255 256 -0.83419877e+00 0.49265447e+00 -0.17856270e+04 0.76704322e+00
- 2 92 128 130 0.00000000e+00 0.00000000e+00 -0.50443794e+02 0.28632147e+01
- 2 -213 257 258 -0.21752129e+00 0.11304138e+00 -0.12433506e+02 0.10977288e+01
- 1 211 0 0 0.51796467e+00 0.16798956e-01 -0.30088440e+02 0.13957000e+00
- 2 221 259 260 -0.30044338e+00 -0.12984033e+00 -0.79218478e+01 0.54745000e+00
- 2 92 132 138 0.00000000e+00 0.00000000e+00 0.17592938e+04 0.74261978e+01
- 2 313 261 262 0.57980431e+00 0.41570385e+00 0.24677487e+03 0.84856717e+00
- 1 211 0 0 -0.29118240e+00 0.27363503e+00 0.62438101e+02 0.13957000e+00
- 2 -213 263 264 0.58379977e+00 -0.75483844e+00 0.30456965e+03 0.75019854e+00
- 1 211 0 0 0.33465874e+00 0.10202972e+01 0.25589097e+03 0.13957000e+00
- 1 -211 0 0 -0.68865542e+00 -0.57478277e-01 0.82645291e+02 0.13957000e+00
- 2 -313 265 266 0.13205678e+00 -0.71905525e+00 0.68487211e+03 0.86928522e+00
- 2 221 267 269 -0.65048177e+00 -0.17826415e+00 0.12210283e+03 0.54745000e+00
- 2 92 140 143 0.00000000e+00 0.00000000e+00 -0.36430878e+03 0.51024310e+01
- 1 -321 0 0 -0.28216533e+00 -0.70838090e+00 -0.48958039e+02 0.49360000e+00
- 2 323 270 271 0.98466372e+00 0.92204272e-01 -0.15697333e+03 0.86864658e+00
- 2 -323 272 273 -0.84494687e+00 0.72385483e+00 -0.12600640e+03 0.88072777e+00
- 2 323 274 275 0.14244848e+00 -0.10767821e+00 -0.32371013e+02 0.92816508e+00
- 1 -211 0 0 0.31482111e+01 0.68222757e+01 0.27260874e+03 0.13957000e+00
- 2 111 276 277 0.41542214e+01 0.10790007e+02 0.43474427e+03 0.13498000e+00
- 2 311 278 278 0.52868665e+01 0.13398495e+02 0.49978307e+03 0.49767000e+00
- 1 211 0 0 0.15935418e+01 0.42671304e+01 0.16951293e+03 0.13957000e+00
- 2 -311 279 279 0.38815894e+01 0.65228284e+01 0.28563421e+03 0.49767000e+00
- 1 -211 0 0 0.35068043e+00 0.82621519e+00 0.28678345e+02 0.13957000e+00
- 1 -211 0 0 0.16535339e+01 0.49713021e+01 0.17630368e+03 0.13957000e+00
- 1 211 0 0 0.57851066e+00 0.16265391e+01 0.61531387e+02 0.13957000e+00
- 2 111 280 281 0.19391078e+01 0.54153133e+01 0.19628952e+03 0.13498000e+00
- 1 22 0 0 0.59803059e-02 0.26545717e-02 0.93723238e+00 0.00000000e+00
- 1 22 0 0 0.65323168e+00 0.12066647e+01 0.59350840e+02 0.00000000e+00
- 1 2112 0 0 0.20517047e+00 0.19172788e+00 0.10826972e+02 0.93957000e+00
- 2 111 282 283 -0.25723170e-01 -0.61035316e-01 0.46446253e+00 0.13498000e+00
- 1 22 0 0 -0.12966115e+00 -0.88760198e-01 0.35243694e+01 0.00000000e+00
- 1 22 0 0 -0.26510168e+00 -0.11343201e+00 0.11722803e+02 0.00000000e+00
- 1 -2112 0 0 0.51500014e+00 0.27188600e+00 0.62994714e+01 0.93957000e+00
- 1 -211 0 0 0.32946867e+00 0.42842307e+00 0.28916589e+01 0.13957000e+00
- 1 -211 0 0 -0.63949388e+00 0.37793222e+00 0.96522479e+01 0.13957000e+00
- 1 211 0 0 -0.42786089e-01 -0.18250089e+00 0.17344639e+01 0.13957000e+00
- 1 -211 0 0 0.52648238e+00 0.20315762e+00 0.19534062e+01 0.13957000e+00
- 1 211 0 0 -0.14244302e-01 -0.69253785e-01 0.41107447e+01 0.13957000e+00
- 1 -211 0 0 0.56893197e+00 0.10814618e+01 0.81690474e+01 0.13957000e+00
- 1 211 0 0 -0.42052841e+00 0.97322434e+00 0.77591336e+01 0.13957000e+00
- 1 211 0 0 -0.53538847e-01 0.37019870e-01 0.10367633e+01 0.13957000e+00
- 1 -211 0 0 0.40171558e+00 0.34885012e+00 0.27067912e+01 0.13957000e+00
- 2 111 284 285 0.39973511e+00 0.33299228e+00 0.15807705e+01 0.13498000e+00
- 1 211 0 0 -0.16338454e+00 0.88575870e+00 0.44995203e+01 0.13957000e+00
- 2 111 286 287 0.41774477e+00 0.56075083e+00 0.25053168e+01 0.13498000e+00
- 1 321 0 0 -0.26704587e+00 0.45069208e+00 0.28184014e+01 0.49360000e+00
- 1 -211 0 0 0.12784049e+00 -0.10058906e-02 0.14945377e+01 0.13957000e+00
- 1 211 0 0 0.20930642e+00 0.16078493e+00 0.53805611e+00 0.13957000e+00
- 2 111 288 289 0.13801117e+00 0.70362153e+00 0.47819849e+01 0.13498000e+00
- 1 130 0 0 0.45108879e+00 0.90393522e+00 0.16976185e+01 0.49767000e+00
- 1 130 0 0 0.46615974e+00 0.17662533e+01 0.19242451e+01 0.49767000e+00
- 1 -211 0 0 -0.33696944e+00 0.15972348e+00 0.17589662e+00 0.13957000e+00
- 1 211 0 0 -0.31676635e+00 0.68991211e+00 -0.46673704e+00 0.13957000e+00
- 1 321 0 0 0.42491825e+00 -0.46070536e-01 -0.29912620e+00 0.49360000e+00
- 1 -211 0 0 -0.34518103e-01 0.32917475e+00 -0.74042620e-01 0.13957000e+00
- 1 2112 0 0 -0.15458666e+00 0.10638629e+01 -0.11016589e+01 0.93957000e+00
- 2 111 290 291 -0.12185252e-01 0.10612900e+00 -0.24394515e-01 0.13498000e+00
- 1 22 0 0 0.15241841e+00 -0.16642531e+00 -0.78655284e+00 0.00000000e+00
- 1 22 0 0 0.76401236e-01 -0.88802043e-01 -0.16729631e+00 0.00000000e+00
- 1 211 0 0 0.30181322e+00 -0.17150345e+00 -0.25620874e+00 0.13957000e+00
- 2 111 292 293 -0.10360489e+00 0.13299177e+00 -0.25256953e+00 0.13498000e+00
- 1 22 0 0 0.14966090e+00 -0.11682826e+00 -0.15037075e+00 0.00000000e+00
- 1 22 0 0 -0.32489972e+00 0.21058127e+00 -0.17434511e+00 0.00000000e+00
- 2 310 294 295 0.88543758e+00 -0.18384819e+01 -0.19629096e+01 0.49767000e+00
- 1 -321 0 0 -0.79697812e+00 -0.86918216e+00 -0.53318543e+00 0.49360000e+00
- 2 111 296 297 -0.22378629e+00 -0.10553213e+01 -0.41322271e+00 0.13498000e+00
- 1 211 0 0 0.35796506e+00 -0.10305215e+00 0.15038454e+00 0.13957000e+00
- 2 111 298 299 -0.35141735e+00 -0.10307919e+00 0.39450459e+00 0.13498000e+00
- 2 310 300 301 0.18277301e-01 -0.15767588e+01 0.42524202e+01 0.49767000e+00
- 1 -321 0 0 -0.12655274e+00 0.17881064e+00 0.51994989e+00 0.49360000e+00
- 1 211 0 0 0.28392194e-01 -0.21509759e+00 0.44885038e+00 0.13957000e+00
- 1 2112 0 0 -0.26828240e+00 -0.21993367e+00 0.85118334e+00 0.93957000e+00
- 1 -211 0 0 0.76677591e-01 0.27914500e-01 0.97570557e-01 0.13957000e+00
- 1 -2112 0 0 0.17634114e+00 -0.16096773e+01 0.79853688e+01 0.93957000e+00
- 1 211 0 0 -0.45159728e-01 -0.23742202e+00 0.76442739e+00 0.13957000e+00
- 1 -211 0 0 -0.29367811e+00 -0.55619877e+00 0.52067503e+01 0.13957000e+00
- 2 111 302 303 0.19677238e+00 -0.12524827e+00 0.84018104e+00 0.13498000e+00
- 1 -211 0 0 0.27465119e+00 -0.21237227e+00 0.19846505e+01 0.13957000e+00
- 1 211 0 0 0.22550449e+00 0.14757185e+00 0.86656732e+00 0.13957000e+00
- 2 111 304 305 -0.65411527e-02 0.17481526e-01 0.14606827e+00 0.13498000e+00
- 1 211 0 0 -0.11105120e+00 0.49169490e+00 0.31086621e+01 0.13957000e+00
- 2 111 306 307 0.27009948e+00 -0.17467178e+00 0.24054347e+01 0.13498000e+00
- 1 -211 0 0 -0.33599435e+00 -0.53826494e+00 0.12572805e+02 0.13957000e+00
- 2 111 308 309 -0.37369880e+00 0.15912055e+00 0.90216158e+01 0.13498000e+00
- 1 211 0 0 0.48697507e-01 0.85306418e-02 0.22225723e+02 0.13957000e+00
- 1 -211 0 0 0.71983899e-01 -0.16451885e+00 0.79039014e+01 0.13957000e+00
- 2 111 310 311 0.44123495e+00 -0.13924763e-02 0.13844677e+02 0.13498000e+00
- 1 130 0 0 0.15019634e+00 -0.52463550e-01 0.26751838e+02 0.49767000e+00
- 2 -311 312 312 -0.18895450e+00 -0.35612498e-01 0.43668995e+02 0.49767000e+00
- 2 111 313 314 -0.52375300e-01 -0.23074290e+00 0.61382306e+01 0.13498000e+00
- 1 2112 0 0 0.93954482e+00 0.45211050e-02 0.64283934e+03 0.93957000e+00
- 1 211 0 0 0.39323151e-02 0.36113986e-01 0.19975568e+02 0.13957000e+00
- 1 211 0 0 0.68529593e+00 -0.14209867e+00 0.31118932e+03 0.13957000e+00
- 1 -211 0 0 0.53737865e+00 -0.46193165e+00 0.26792082e+03 0.13957000e+00
- 2 111 315 316 0.73016154e+00 -0.45397266e-01 0.23550640e+03 0.13498000e+00
- 1 22 0 0 0.10073255e+01 -0.24431184e+00 -0.36852177e+01 0.00000000e+00
- 1 22 0 0 0.10716911e+01 -0.25792130e+00 -0.44653297e+01 0.00000000e+00
- 1 -211 0 0 0.46429581e+01 -0.19764901e+01 -0.19348894e+02 0.13957000e+00
- 1 211 0 0 0.60287580e+01 -0.23792451e+01 -0.27212617e+02 0.13957000e+00
- 2 111 317 318 0.53361942e+01 -0.22603242e+01 -0.23515739e+02 0.13498000e+00
- 1 211 0 0 0.53900787e+00 -0.28480178e+00 -0.18930058e+00 0.13957000e+00
- 1 -211 0 0 0.24642260e+00 0.38684732e+00 0.11814661e+00 0.13957000e+00
- 1 2212 0 0 0.30955333e+00 0.46227472e+00 -0.29964344e+01 0.93827000e+00
- 1 211 0 0 -0.26798982e-01 0.46720021e+00 -0.10599720e+01 0.13957000e+00
- 1 -2212 0 0 0.28441033e+00 0.14038164e+00 -0.53241815e+01 0.93827000e+00
- 1 -211 0 0 0.18600317e+00 -0.28539125e+00 -0.23776606e+01 0.13957000e+00
- 1 -211 0 0 0.47842974e+00 -0.26103082e+00 -0.25817499e+01 0.13957000e+00
- 1 211 0 0 -0.15597885e+00 0.17981858e+00 -0.21032920e+01 0.13957000e+00
- 1 211 0 0 0.51783005e-01 0.16367122e+00 -0.69288276e+00 0.13957000e+00
- 2 111 319 320 -0.31677969e+00 0.68293335e+00 -0.10801836e+02 0.13498000e+00
- 1 2112 0 0 -0.19689048e+01 0.74757598e+00 -0.30088466e+02 0.93957000e+00
- 1 -211 0 0 -0.38298821e+00 -0.80795156e-01 -0.56927128e+01 0.13957000e+00
- 1 -2112 0 0 -0.30663803e+00 -0.22218617e+00 -0.15145556e+02 0.93957000e+00
- 1 211 0 0 0.27498608e-01 -0.28135821e+00 -0.49858223e+01 0.13957000e+00
- 1 -211 0 0 0.12358607e+00 0.44650048e-02 -0.59631016e+01 0.13957000e+00
- 2 111 321 322 -0.85477249e+00 -0.13770498e+00 -0.32481854e+02 0.13498000e+00
- 1 211 0 0 -0.10836714e+00 0.17948161e+00 -0.58544348e+01 0.13957000e+00
- 1 -211 0 0 -0.77889271e+00 -0.35069764e+00 -0.11501189e+02 0.13957000e+00
- 1 211 0 0 0.43203575e-02 -0.35274836e+00 -0.89425344e+01 0.13957000e+00
- 2 111 323 324 0.31600518e+00 0.11627853e+00 -0.56619207e+02 0.13498000e+00
- 1 -211 0 0 0.30454282e-02 0.11376953e+00 -0.15161747e+02 0.13957000e+00
- 2 111 325 326 0.83056383e+00 -0.27921239e+00 -0.18487712e+03 0.13498000e+00
- 2 311 327 327 0.13562409e+00 0.18507392e+00 -0.63363842e+02 0.49767000e+00
- 1 211 0 0 0.49361928e+00 0.59823807e+00 -0.13500207e+03 0.13957000e+00
- 1 321 0 0 0.96944713e-01 -0.39640393e-01 -0.20196774e+03 0.49360000e+00
- 1 -321 0 0 0.28028866e+00 -0.23180327e+00 -0.27307255e+03 0.49360000e+00
- 1 2112 0 0 -0.87272254e+00 -0.20769247e+00 -0.59851614e+03 0.93957000e+00
- 2 111 328 329 -0.18056852e+00 -0.12561944e+00 -0.84118541e+02 0.13498000e+00
- 1 211 0 0 -0.66245584e+00 0.67127377e+00 -0.13661531e+04 0.13957000e+00
- 2 111 330 331 -0.17174293e+00 -0.17861930e+00 -0.41947396e+03 0.13498000e+00
- 1 -211 0 0 -0.64217590e+00 -0.26364114e-01 -0.71603957e+01 0.13957000e+00
- 2 111 332 333 0.42465462e+00 0.13940549e+00 -0.52731107e+01 0.13498000e+00
- 1 22 0 0 -0.24552201e+00 0.13419181e+00 -0.19975483e+01 0.00000000e+00
- 1 22 0 0 -0.54921370e-01 -0.26403214e+00 -0.59242995e+01 0.00000000e+00
- 1 321 0 0 0.21470057e+00 0.43020824e+00 0.18243219e+03 0.49360000e+00
- 1 -211 0 0 0.36510374e+00 -0.14504383e-01 0.64342682e+02 0.13957000e+00
- 1 -211 0 0 -0.13196864e+00 -0.82197556e-01 0.37917242e+02 0.13957000e+00
- 2 111 334 335 0.71576841e+00 -0.67264088e+00 0.26665241e+03 0.13498000e+00
- 2 -311 336 336 -0.13603902e+00 -0.64563552e+00 0.50626830e+03 0.49767000e+00
- 2 111 337 338 0.26809580e+00 -0.73419727e-01 0.17860381e+03 0.13498000e+00
- 2 111 339 340 -0.14701492e+00 0.91389006e-01 0.36110028e+02 0.13498000e+00
- 2 111 341 342 -0.19927805e+00 -0.52039437e-01 0.29959186e+02 0.13498000e+00
- 2 111 343 344 -0.30418880e+00 -0.21761372e+00 0.56033618e+02 0.13498000e+00
- 2 311 345 345 0.95779286e+00 0.10043790e+00 -0.11088342e+03 0.49767000e+00
- 1 211 0 0 0.26870861e-01 -0.82336278e-02 -0.46089911e+02 0.13957000e+00
- 1 -321 0 0 -0.58170055e+00 0.65791633e+00 -0.11286083e+03 0.49360000e+00
- 2 111 346 347 -0.26324632e+00 0.65938506e-01 -0.13145562e+02 0.13498000e+00
- 1 321 0 0 0.21118615e+00 0.17067376e-01 -0.11188059e+02 0.49360000e+00
- 2 111 348 349 -0.68737671e-01 -0.12474558e+00 -0.21182954e+02 0.13498000e+00
- 1 22 0 0 0.11591525e+01 0.30224976e+01 0.12400638e+03 0.00000000e+00
- 1 22 0 0 0.29950689e+01 0.77675093e+01 0.31073789e+03 0.00000000e+00
- 2 310 350 351 0.52868665e+01 0.13398495e+02 0.49978307e+03 0.49767000e+00
- 2 310 352 353 0.38815894e+01 0.65228284e+01 0.28563421e+03 0.49767000e+00
- 1 22 0 0 0.18268409e+01 0.50483079e+01 0.18218861e+03 0.00000000e+00
- 1 22 0 0 0.11226698e+00 0.36700540e+00 0.14100917e+02 0.00000000e+00
- 1 22 0 0 -0.27913943e-01 0.30368930e-01 0.27207912e+00 0.00000000e+00
- 1 22 0 0 0.21907728e-02 -0.91404246e-01 0.19238342e+00 0.00000000e+00
- 1 22 0 0 0.24164565e+00 0.15274178e+00 0.68294598e+00 0.00000000e+00
- 1 22 0 0 0.15808946e+00 0.18025050e+00 0.89782449e+00 0.00000000e+00
- 1 22 0 0 0.13538004e+00 0.27615413e+00 0.12207696e+01 0.00000000e+00
- 1 22 0 0 0.28236473e+00 0.28459670e+00 0.12845472e+01 0.00000000e+00
- 1 22 0 0 0.73292782e-01 0.46236429e+00 0.26834443e+01 0.00000000e+00
- 1 22 0 0 0.64718387e-01 0.24125724e+00 0.20985406e+01 0.00000000e+00
- 1 22 0 0 0.56350019e-01 0.77938865e-01 -0.11198718e-02 0.00000000e+00
- 1 22 0 0 -0.68535271e-01 0.28190135e-01 -0.23274643e-01 0.00000000e+00
- 1 22 0 0 -0.37372039e-01 0.14127179e+00 -0.19806216e+00 0.00000000e+00
- 1 22 0 0 -0.66232846e-01 -0.82800202e-02 -0.54507368e-01 0.00000000e+00
- 1 211 0 0 0.52030587e+00 -0.13400818e+01 -0.15506498e+01 0.13957000e+00
- 1 -211 0 0 0.36513172e+00 -0.49840010e+00 -0.41225983e+00 0.13957000e+00
- 1 22 0 0 -0.14564918e-01 -0.37446110e-01 0.94138591e-02 0.00000000e+00
- 1 22 0 0 -0.20922137e+00 -0.10178752e+01 -0.42263657e+00 0.00000000e+00
- 1 22 0 0 -0.22736871e+00 -0.12956351e+00 0.24032947e+00 0.00000000e+00
- 1 22 0 0 -0.12404864e+00 0.26484320e-01 0.15417512e+00 0.00000000e+00
- 1 -211 0 0 -0.71253205e-01 -0.13421658e+01 0.32475113e+01 0.13957000e+00
- 1 211 0 0 0.89530506e-01 -0.23459305e+00 0.10049088e+01 0.13957000e+00
- 1 22 0 0 0.12245017e+00 -0.14046352e-01 0.27184796e+00 0.00000000e+00
- 1 22 0 0 0.74322217e-01 -0.11120192e+00 0.56833307e+00 0.00000000e+00
- 1 22 0 0 0.31378261e-02 0.73871315e-01 0.54764958e-01 0.00000000e+00
- 1 22 0 0 -0.96789788e-02 -0.56389789e-01 0.91303315e-01 0.00000000e+00
- 1 22 0 0 0.10415989e+00 -0.14766969e+00 0.12488560e+01 0.00000000e+00
- 1 22 0 0 0.16593959e+00 -0.27002088e-01 0.11565787e+01 0.00000000e+00
- 1 22 0 0 -0.49502599e-01 -0.20523233e-01 0.16009607e+01 0.00000000e+00
- 1 22 0 0 -0.32419620e+00 0.17964378e+00 0.74206551e+01 0.00000000e+00
- 1 22 0 0 0.33765304e+00 -0.45445441e-01 0.91568995e+01 0.00000000e+00
- 1 22 0 0 0.10358191e+00 0.44052964e-01 0.46877775e+01 0.00000000e+00
- 1 130 0 0 -0.18895450e+00 -0.35612498e-01 0.43668995e+02 0.49767000e+00
- 1 22 0 0 -0.22613124e-01 -0.34480509e-01 0.31863077e+00 0.00000000e+00
- 1 22 0 0 -0.29762176e-01 -0.19626239e+00 0.58195999e+01 0.00000000e+00
- 1 22 0 0 0.48439282e+00 -0.91943485e-01 0.16112816e+03 0.00000000e+00
- 1 22 0 0 0.24576872e+00 0.46546219e-01 0.74378236e+02 0.00000000e+00
- 1 22 0 0 0.69427552e+00 -0.24528672e+00 -0.29858861e+01 0.00000000e+00
- 1 22 0 0 0.46419187e+01 -0.20150375e+01 -0.20529853e+02 0.00000000e+00
- 1 22 0 0 -0.14684495e+00 0.34216812e+00 -0.62854894e+01 0.00000000e+00
- 1 22 0 0 -0.16993474e+00 0.34076523e+00 -0.45163465e+01 0.00000000e+00
- 1 22 0 0 -0.12592349e+00 -0.45259250e-01 -0.36328056e+01 0.00000000e+00
- 1 22 0 0 -0.72884899e+00 -0.92445730e-01 -0.28849049e+02 0.00000000e+00
- 1 22 0 0 0.20821995e+00 0.12423673e+00 -0.31675876e+02 0.00000000e+00
- 1 22 0 0 0.10778523e+00 -0.79582036e-02 -0.24943331e+02 0.00000000e+00
- 1 22 0 0 0.58639418e+00 -0.19472415e+00 -0.14234198e+03 0.00000000e+00
- 1 22 0 0 0.24416965e+00 -0.84488245e-01 -0.42535134e+02 0.00000000e+00
- 1 130 0 0 0.13562409e+00 0.18507392e+00 -0.63363842e+02 0.49767000e+00
- 1 22 0 0 -0.19560502e+00 -0.11747312e+00 -0.67219966e+02 0.00000000e+00
- 1 22 0 0 0.15036495e-01 -0.81463192e-02 -0.16898576e+02 0.00000000e+00
- 1 22 0 0 -0.12908018e+00 -0.19392606e+00 -0.32136822e+03 0.00000000e+00
- 1 22 0 0 -0.42662744e-01 0.15306762e-01 -0.98105744e+02 0.00000000e+00
- 1 22 0 0 0.40724158e+00 0.10110165e+00 -0.45127234e+01 0.00000000e+00
- 1 22 0 0 0.17413035e-01 0.38303846e-01 -0.76038723e+00 0.00000000e+00
- 1 22 0 0 0.43201421e-01 -0.93109951e-01 0.24181126e+02 0.00000000e+00
- 1 22 0 0 0.67256698e+00 -0.57953093e+00 0.24247128e+03 0.00000000e+00
- 2 310 354 355 -0.13603902e+00 -0.64563552e+00 0.50626830e+03 0.49767000e+00
- 1 22 0 0 0.11799698e+00 -0.13727447e-01 0.11530847e+03 0.00000000e+00
- 1 22 0 0 0.15009882e+00 -0.59692280e-01 0.63295341e+02 0.00000000e+00
- 1 22 0 0 -0.88274845e-01 0.91151472e-01 0.13634739e+02 0.00000000e+00
- 1 22 0 0 -0.58740071e-01 0.23753430e-03 0.22475289e+02 0.00000000e+00
- 1 22 0 0 -0.13668987e-01 -0.36381515e-01 0.11643843e+02 0.00000000e+00
- 1 22 0 0 -0.18560906e+00 -0.15657922e-01 0.18315344e+02 0.00000000e+00
- 1 22 0 0 -0.27853642e+00 -0.13968059e+00 0.47258393e+02 0.00000000e+00
- 1 22 0 0 -0.25652380e-01 -0.77933130e-01 0.87752247e+01 0.00000000e+00
- 1 130 0 0 0.95779286e+00 0.10043790e+00 -0.11088342e+03 0.49767000e+00
- 1 22 0 0 -0.14764078e+00 -0.20741800e-01 -0.50354877e+01 0.00000000e+00
- 1 22 0 0 -0.11560554e+00 0.86680306e-01 -0.81100744e+01 0.00000000e+00
- 1 22 0 0 -0.24138933e-01 -0.14275674e+00 -0.14025740e+02 0.00000000e+00
- 1 22 0 0 -0.44598738e-01 0.18011151e-01 -0.71572142e+01 0.00000000e+00
- 1 -211 0 0 0.55140841e+00 0.14766282e+01 0.52761427e+02 0.13957000e+00
- 1 211 0 0 0.47354581e+01 0.11921866e+02 0.44702165e+03 0.13957000e+00
- 2 111 356 357 0.27862508e+01 0.43268149e+01 0.19534616e+03 0.13498000e+00
- 2 111 358 359 0.10953386e+01 0.21960135e+01 0.90288048e+02 0.13498000e+00
- 1 211 0 0 -0.15722770e-02 -0.29255429e+00 0.11206140e+03 0.13957000e+00
- 1 -211 0 0 -0.13446674e+00 -0.35308123e+00 0.39420690e+03 0.13957000e+00
- 1 22 0 0 0.26779153e+01 0.41250497e+01 0.18742057e+03 0.00000000e+00
- 1 22 0 0 0.10833555e+00 0.20176518e+00 0.79255920e+01 0.00000000e+00
- 1 22 0 0 0.95308882e+00 0.19962710e+01 0.80780240e+02 0.00000000e+00
- 1 22 0 0 0.14224979e+00 0.19974249e+00 0.95078086e+01 0.00000000e+00
- 438
- 2 25 2 3 -0.31779441e+02 0.55434146e+02 -0.11295206e+04 0.12494234e+03
- 2 23 4 5 0.41718295e+02 0.81766702e+01 -0.51778179e+03 0.14394024e+02
- 2 23 6 7 -0.73497736e+02 0.47257476e+02 -0.61173883e+03 0.25684494e+02
- 1 13 0 0 0.12777529e+02 0.28937240e+01 -0.24721871e+03 0.10566000e+00
- 1 -13 0 0 0.28940766e+02 0.52829461e+01 -0.27056308e+03 0.10566000e+00
- 1 11 0 0 -0.40980684e+02 0.39040291e+02 -0.42532189e+03 0.51000000e-03
- 1 -11 0 0 -0.32517052e+02 0.82171853e+01 -0.18641694e+03 0.51000000e-03
- 2 4 51 51 -0.19757058e+01 -0.11768335e+01 0.12579883e+03 0.15000000e+01
- 2 21 51 51 0.67369213e+00 0.26547010e+00 0.58238945e+01 0.00000000e+00
- 2 2103 51 51 0.23024305e+00 0.16504540e+00 0.36973602e+04 0.77133000e+00
- 2 1 62 62 0.30274538e+01 -0.23153951e+02 -0.16612358e+04 0.33000000e+00
- 2 21 62 62 0.24734594e+01 -0.13149644e+02 -0.93253689e+03 0.00000000e+00
- 2 21 62 62 -0.13607510e+01 -0.94566090e+00 -0.22071016e+02 0.00000000e+00
- 2 21 62 62 0.10482470e+00 -0.15946020e+01 -0.13644459e+02 0.00000000e+00
- 2 21 62 62 0.16179198e+01 -0.12344895e+01 -0.28875341e+02 0.00000000e+00
- 2 21 62 62 0.28100856e+01 0.27447619e-01 -0.48477104e+02 0.00000000e+00
- 2 2101 62 62 -0.15138724e+01 -0.32123045e+00 -0.30652692e+04 0.57933000e+00
- 2 -3 83 83 0.49783990e+01 -0.92083907e+01 -0.24186756e+01 0.50000000e+00
- 2 21 83 83 0.30914158e+00 0.20122807e+00 -0.13302368e+00 0.00000000e+00
- 2 21 83 83 0.18199297e+01 -0.13330434e+01 -0.18031026e+01 0.00000000e+00
- 2 21 83 83 0.17538944e+01 -0.50315467e+00 -0.18197550e+01 0.00000000e+00
- 2 21 83 83 0.20176323e+02 -0.77538492e+01 -0.30180973e+02 0.00000000e+00
- 2 21 83 83 -0.10482470e+00 0.15946020e+01 -0.34147083e+00 0.00000000e+00
- 2 21 83 83 -0.11852583e+01 0.37073201e+01 0.43698812e+00 0.00000000e+00
- 2 21 83 83 0.47016325e+00 -0.18220402e+00 0.43130411e+01 0.00000000e+00
- 2 21 83 83 0.11852583e+01 -0.37073201e+01 0.29905791e+03 0.00000000e+00
- 2 21 83 83 0.17926410e+00 -0.28181386e+00 0.72996297e+02 0.00000000e+00
- 2 21 83 83 0.85296560e+00 -0.17950066e+00 0.46314585e+03 0.00000000e+00
- 2 21 83 83 0.26247452e+00 0.21921822e+00 0.10689776e+03 0.00000000e+00
- 2 21 83 83 -0.47016325e+00 0.18220402e+00 0.22138640e+03 0.00000000e+00
- 2 21 83 83 -0.11823502e+01 -0.24962060e+00 0.19455428e+01 0.00000000e+00
- 2 21 83 83 -0.57448553e-01 0.55699271e+00 0.10113591e+02 0.00000000e+00
- 2 21 83 83 0.62125684e+00 -0.50260158e+00 0.12033216e+02 0.00000000e+00
- 2 21 83 83 0.45908862e+00 -0.26610405e+00 0.16664471e+01 0.00000000e+00
- 2 21 83 83 -0.45141425e-01 0.12699092e+01 0.24421816e+03 0.00000000e+00
- 2 21 83 83 -0.34798850e-01 -0.73542559e+00 0.17148795e+03 0.00000000e+00
- 2 21 83 83 0.74833144e+00 0.32313771e-01 0.23281692e+03 0.00000000e+00
- 2 2 83 83 -0.68245480e+00 0.42874255e+00 0.10488995e+04 0.33000000e+00
- 2 1 129 129 -0.10284575e+01 -0.31726873e+00 -0.46841372e+01 0.00000000e+00
- 2 -1 129 129 0.10284575e+01 0.31726873e+00 -0.25528593e+02 0.00000000e+00
- 2 21 133 133 -0.26304807e+01 -0.25592622e+01 0.22351485e+03 0.00000000e+00
- 2 21 133 133 -0.85296560e+00 0.17950066e+00 0.15868492e+02 0.00000000e+00
- 2 21 133 133 -0.16179198e+01 0.12344895e+01 0.14984531e+02 0.00000000e+00
- 2 21 133 133 -0.43017949e-01 0.62436209e+00 0.25602219e+01 0.00000000e+00
- 2 21 133 133 -0.17926410e+00 0.28181386e+00 0.80953616e+00 0.00000000e+00
- 2 21 133 133 -0.26247452e+00 -0.21921822e+00 -0.85570141e-01 0.00000000e+00
- 2 21 133 133 -0.28100856e+01 -0.27447619e-01 -0.49869153e+01 0.00000000e+00
- 2 21 133 133 0.13607510e+01 0.94566090e+00 -0.32533377e+01 0.00000000e+00
- 2 21 133 133 0.26304807e+01 0.25592622e+01 -0.56195534e+01 0.00000000e+00
- 2 21 133 133 0.43017949e-01 -0.62436209e+00 0.43489301e+01 0.00000000e+00
- 2 92 52 61 -0.10717706e+01 -0.74631797e+00 0.38289829e+04 0.23912909e+02
- 2 413 155 156 -0.50073041e+00 -0.13745791e+00 0.55461370e+02 0.20100000e+01
- 2 113 157 158 -0.33928777e+00 -0.85159107e+00 0.93941719e+02 0.81507788e+00
- 2 -213 159 160 -0.63772002e+00 -0.97140520e-02 0.63855823e+02 0.75959909e+00
- 1 2112 0 0 -0.56021961e-01 0.51619788e-01 0.69233961e+02 0.93957000e+00
- 2 213 161 162 -0.64925069e+00 -0.12411001e+00 0.20434983e+03 0.68285195e+00
- 1 -2212 0 0 0.85490717e+00 0.33783295e-01 0.20094137e+03 0.93827000e+00
- 2 323 163 164 0.63533894e-01 0.21823278e+00 0.67963391e+02 0.87551969e+00
- 2 -323 165 166 -0.39774588e+00 -0.49382671e+00 0.52707843e+03 0.86701605e+00
- 2 2114 167 168 0.29164127e+00 0.65148248e+00 0.18405084e+04 0.11655625e+01
- 1 211 0 0 0.29890378e+00 -0.84736564e-01 0.70564863e+03 0.13957000e+00
- 2 92 63 82 0.71591197e+01 -0.40372130e+02 -0.57721098e+04 0.69910275e+02
- 2 311 169 169 0.32755452e+01 -0.19511115e+02 -0.13832051e+04 0.49767000e+00
- 2 -313 170 171 0.10987265e+01 -0.10874754e+02 -0.76901846e+03 0.71845558e+00
- 1 -211 0 0 0.51440163e+00 -0.30947325e+01 -0.27190116e+03 0.13957000e+00
- 2 213 172 173 0.32687828e+00 -0.19485260e+01 -0.99526712e+02 0.76539369e+00
- 1 -211 0 0 -0.49722090e+00 -0.37427223e+00 -0.16807058e+02 0.13957000e+00
- 1 211 0 0 0.12517298e+00 -0.80735383e+00 -0.52521355e+02 0.13957000e+00
- 2 111 174 175 -0.52063210e+00 -0.49506983e+00 -0.83235035e+01 0.13498000e+00
- 2 -213 176 177 0.17724090e+00 -0.78184508e+00 -0.19801991e+02 0.10678187e+01
- 1 321 0 0 0.57248188e+00 -0.94373576e+00 -0.14917621e+02 0.49360000e+00
- 2 -323 178 179 0.33516737e+00 -0.61642886e+00 -0.17030035e+02 0.89018648e+00
- 2 213 180 181 0.12807204e+01 -0.43397040e+00 -0.16191973e+02 0.90720895e+00
- 2 313 182 183 0.11943651e+01 -0.17348177e+00 -0.65912234e+02 0.90244117e+00
- 2 -313 184 185 0.78573278e-01 0.26669920e+00 -0.10189748e+03 0.79858613e+00
- 2 223 186 188 0.22640930e+00 -0.13358292e+00 -0.27031122e+02 0.74242528e+00
- 2 -213 189 190 -0.56483704e-01 -0.28286009e+00 -0.15489369e+03 0.73423882e+00
- 2 323 191 192 0.38265536e-01 0.43107937e-01 -0.24536549e+03 0.82728828e+00
- 1 -321 0 0 -0.15318938e+00 -0.25769281e-02 -0.19179289e+02 0.49360000e+00
- 1 211 0 0 0.26417197e+00 -0.24443889e+00 -0.95280637e+02 0.13957000e+00
- 2 1114 193 194 -0.54450903e+00 0.30493811e+00 -0.12167485e+04 0.13619945e+01
- 2 213 195 196 -0.57696544e+00 -0.26813111e+00 -0.11765564e+04 0.88476665e+00
- 2 92 84 128 0.30054050e+02 -0.16710498e+02 0.28547186e+04 0.74606016e+03
- 2 311 197 197 0.24729788e+01 -0.41911606e+01 -0.10617876e+01 0.49767000e+00
- 2 213 198 199 0.27232874e+01 -0.46445387e+01 -0.11782257e+01 0.76190438e+00
- 1 -211 0 0 0.62335723e+00 -0.31071490e+00 -0.10182668e+01 0.13957000e+00
- 2 111 200 201 0.23438274e+00 -0.69584402e+00 -0.51399595e+00 0.13498000e+00
- 2 223 202 204 0.26773739e+01 -0.67985875e+00 -0.28628600e+01 0.78007595e+00
- 2 113 205 206 0.89966983e+01 -0.38638128e+01 -0.12892784e+02 0.95103327e+00
- 2 -313 207 208 0.31432966e+01 -0.81553348e+00 -0.42895616e+01 0.88961188e+00
- 1 321 0 0 0.21983700e+01 -0.14691336e+01 -0.39690324e+01 0.49360000e+00
- 2 223 209 211 0.55205785e+01 -0.13525332e+01 -0.77080167e+01 0.78423324e+00
- 2 -213 212 213 0.15061970e+00 0.10127337e+00 -0.42909496e+00 0.73707502e+00
- 2 113 214 215 -0.53196827e+00 0.89356376e+00 -0.44300164e+00 0.80678550e+00
- 2 213 216 217 0.19546721e+00 0.98988841e+00 0.44360156e+00 0.75287672e+00
- 2 113 218 219 0.26338558e-01 0.67025582e-01 0.34881125e+00 0.71912738e+00
- 2 113 220 221 -0.38647997e+00 0.17907052e+01 -0.75081941e-01 0.57478460e+00
- 2 -213 222 223 0.61040175e-01 0.94608500e+00 0.87449807e+00 0.74398417e+00
- 2 213 224 225 0.27052500e+00 -0.42686961e+00 0.72664023e+01 0.73157717e+00
- 2 -213 226 227 -0.66176888e+00 0.85231774e-01 0.17895112e+02 0.10761037e+01
- 1 211 0 0 0.49211969e+00 -0.26100345e+00 0.90315657e+01 0.13957000e+00
- 2 223 228 230 -0.21290181e+00 -0.56065496e+00 0.61642777e+02 0.78086981e+00
- 2 -323 231 232 0.45319059e+00 -0.90241740e+00 0.37730670e+02 0.85271478e+00
- 1 321 0 0 0.32662291e+00 0.19267894e+00 0.98912828e+02 0.49360000e+00
- 2 -323 233 234 0.12454625e+00 -0.60824986e-01 0.40772121e+02 0.74495605e+00
- 2 323 235 236 0.81063546e+00 -0.17446262e+01 0.20478421e+03 0.87666338e+00
- 1 -211 0 0 0.39086967e+00 -0.17568366e+00 0.95475823e+02 0.13957000e+00
- 2 -313 237 238 -0.10025180e+00 0.13290304e+00 0.15051981e+03 0.84718570e+00
- 2 313 239 240 -0.26530496e-01 -0.14006543e+00 0.16549721e+03 0.81214640e+00
- 2 213 241 242 0.43081403e+00 -0.21298936e+00 0.76844707e+02 0.78656579e+00
- 2 113 243 244 -0.11961473e+00 -0.87646842e-01 0.69726625e+02 0.86923263e+00
- 2 331 245 247 -0.16419616e+00 -0.87408363e-01 0.72050269e+02 0.95776285e+00
- 2 -213 248 249 0.82855502e-01 0.26262549e+00 0.46293824e+02 0.90124592e+00
- 2 111 250 251 -0.96334225e+00 -0.21217268e+00 0.75033454e+01 0.13498000e+00
- 2 111 252 253 0.76052733e+00 0.25374399e+00 0.35482777e+01 0.13498000e+00
- 1 -2112 0 0 -0.38964013e+00 -0.32034834e-01 0.96323222e+01 0.93957000e+00
- 1 2212 0 0 -0.15466709e+00 -0.64070828e+00 0.54734660e+01 0.93827000e+00
- 1 -211 0 0 -0.12908644e+00 0.87702947e-01 0.65850534e+00 0.13957000e+00
- 2 213 254 255 0.50805496e+00 0.41934903e+00 0.17719760e+02 0.68556887e+00
- 2 113 256 257 -0.27326044e+00 -0.30182340e+00 0.16826538e+02 0.75481099e+00
- 2 -213 258 259 0.60595103e+00 0.12955745e+00 0.41320355e+02 0.66466538e+00
- 2 -313 260 261 -0.89126099e-01 0.18988819e+00 0.24393293e+02 0.90961303e+00
- 2 313 262 263 -0.30881061e+00 -0.12488179e-01 0.12515850e+03 0.87688977e+00
- 2 213 264 265 0.29328250e+00 0.24387504e+00 0.12974629e+03 0.75021462e+00
- 2 113 266 267 0.23216236e+00 0.33902532e-01 0.81178261e+02 0.72133068e+00
- 2 111 268 269 -0.37791385e+00 0.32344436e+00 0.31372619e+03 0.13498000e+00
- 2 113 270 271 0.31628606e+00 0.56177924e-01 0.46537585e+03 0.86788021e+00
- 2 221 272 274 -0.17862341e+00 -0.27572079e-01 0.49278847e+03 0.54745000e+00
- 2 92 130 132 0.00000000e+00 0.00000000e+00 -0.30212730e+02 0.29608726e+01
- 2 -213 275 276 0.28322073e+00 0.80343152e-01 -0.13432151e+02 0.10369690e+01
- 2 221 277 279 0.46093640e+00 -0.19519051e+00 -0.80362237e+01 0.54745000e+00
- 2 213 280 281 -0.74415713e+00 0.11484736e+00 -0.87443555e+01 0.78494349e+00
- 2 92 134 154 -0.43619585e+01 0.23947990e+01 0.24814119e+03 0.12723492e+03
- 2 2224 282 283 0.66030847e+00 0.11770404e+01 0.37104564e+00 0.12489268e+01
- 2 -213 284 285 -0.10796449e+00 -0.73704389e+00 0.10844000e+01 0.76195499e+00
- 2 -2114 286 287 -0.19090903e+00 0.29551933e+00 0.10176432e+01 0.12078128e+01
- 2 221 288 289 0.28587166e+00 -0.97073967e-01 0.54386317e+01 0.54745000e+00
- 2 113 290 291 -0.14489960e+01 -0.11721262e+01 0.99101856e+02 0.71074045e+00
- 2 311 292 292 -0.98160998e+00 -0.56991900e+00 0.82187190e+02 0.49767000e+00
- 2 -311 293 293 -0.30119373e+00 -0.47240825e+00 0.10264263e+02 0.49767000e+00
- 2 111 294 296 -0.29874256e-01 0.19814380e-01 0.17116138e+02 0.13498000e+00
- 2 111 297 298 -0.92445875e+00 0.31731259e+00 0.17987026e+02 0.13498000e+00
- 2 331 299 301 -0.60319941e+00 0.11481170e+00 0.90311931e+01 0.95791545e+00
- 1 2112 0 0 -0.12652950e+00 0.27535004e-01 0.30163909e+01 0.93957000e+00
- 1 -211 0 0 -0.11721067e+01 0.53124271e+00 0.98735034e+01 0.13957000e+00
- 2 -3114 302 303 -0.25406927e+00 0.76935435e+00 0.36738018e+01 0.13536075e+01
- 2 -313 304 305 0.27528348e+00 0.25571687e+00 -0.76981925e+00 0.85295652e+00
- 1 -211 0 0 -0.63447113e+00 0.28251071e+00 -0.50153729e+00 0.13957000e+00
- 2 213 306 307 -0.72498519e+00 0.73928035e-01 -0.16692828e+01 0.87031591e+00
- 2 113 308 309 -0.84064716e+00 -0.60704515e+00 -0.10940822e+01 0.86397798e+00
- 1 -211 0 0 0.41431588e+00 0.59438482e+00 -0.23332678e+01 0.13957000e+00
- 2 2224 310 311 0.90937858e+00 0.84791982e+00 -0.32344808e+01 0.12898604e+01
- 2 -3224 312 313 0.11873179e+01 0.60047960e+00 -0.17317155e+01 0.13795484e+01
- 1 -321 0 0 0.24658010e+00 0.14284519e+00 -0.68770780e+00 0.49360000e+00
- 2 421 314 317 -0.42582077e+00 -0.11485300e+00 0.51108808e+02 0.18645000e+01
- 1 211 0 0 -0.74909644e-01 -0.22604909e-01 0.43525620e+01 0.13957000e+00
- 1 -211 0 0 -0.53563193e+00 -0.79386602e+00 0.79409600e+02 0.13957000e+00
- 1 211 0 0 0.19634415e+00 -0.57725044e-01 0.14532119e+02 0.13957000e+00
- 1 -211 0 0 -0.46119695e+00 -0.24485937e+00 0.53312534e+02 0.13957000e+00
- 2 111 318 319 -0.17652308e+00 0.23514532e+00 0.10543289e+02 0.13498000e+00
- 1 211 0 0 -0.63398678e+00 -0.17703480e+00 0.19417234e+03 0.13957000e+00
- 2 111 320 321 -0.15263908e-01 0.52924797e-01 0.10177485e+02 0.13498000e+00
- 2 311 322 322 0.12730165e+00 0.40755171e+00 0.52587088e+02 0.49767000e+00
- 1 211 0 0 -0.63767756e-01 -0.18931893e+00 0.15376303e+02 0.13957000e+00
- 2 -311 323 323 -0.18995222e+00 -0.44435071e-01 0.32510485e+03 0.49767000e+00
- 1 -211 0 0 -0.20779366e+00 -0.44939164e+00 0.20197358e+03 0.13957000e+00
- 1 2112 0 0 0.24226125e+00 0.44748377e+00 0.12571250e+04 0.93957000e+00
- 2 111 324 325 0.49380019e-01 0.20399871e+00 0.58338338e+03 0.13498000e+00
- 2 310 326 327 0.32755452e+01 -0.19511115e+02 -0.13832051e+04 0.49767000e+00
- 1 -321 0 0 0.10177086e+01 -0.90714101e+01 -0.64654655e+03 0.49360000e+00
- 1 211 0 0 0.81017892e-01 -0.18033439e+01 -0.12247191e+03 0.13957000e+00
- 1 211 0 0 0.45494290e+00 -0.71807961e+00 -0.46226632e+02 0.13957000e+00
- 2 111 328 329 -0.12806462e+00 -0.12304464e+01 -0.53300080e+02 0.13498000e+00
- 1 22 0 0 -0.30582931e+00 -0.37342357e+00 -0.57526253e+01 0.00000000e+00
- 1 22 0 0 -0.21480279e+00 -0.12164626e+00 -0.25708782e+01 0.00000000e+00
- 1 -211 0 0 -0.18733261e+00 -0.88544987e+00 -0.12193852e+02 0.13957000e+00
- 2 111 330 331 0.36457351e+00 0.10360479e+00 -0.76081393e+01 0.13498000e+00
- 2 -311 332 332 0.23089109e+00 -0.26592533e+00 -0.60358322e+01 0.49767000e+00
- 1 -211 0 0 0.10427628e+00 -0.35050353e+00 -0.10994202e+02 0.13957000e+00
- 1 211 0 0 0.71408351e-01 -0.65642136e-01 -0.60381951e+01 0.13957000e+00
- 2 111 333 334 0.12093120e+01 -0.36832827e+00 -0.10153778e+02 0.13498000e+00
- 2 311 335 335 0.12264269e+01 -0.21577699e+00 -0.62077994e+02 0.49767000e+00
- 2 111 336 337 -0.32061875e-01 0.42295226e-01 -0.38342403e+01 0.13498000e+00
- 2 -311 338 338 -0.14839033e+00 0.13838742e+00 -0.74404200e+02 0.49767000e+00
- 2 111 339 340 0.22696361e+00 0.12831178e+00 -0.27493280e+02 0.13498000e+00
- 1 -211 0 0 0.22800228e+00 -0.19325929e+00 -0.70050192e+01 0.13957000e+00
- 1 211 0 0 -0.79799217e-01 -0.68984654e-01 -0.11379144e+02 0.13957000e+00
- 2 111 341 342 0.78206238e-01 0.12866102e+00 -0.86469579e+01 0.13498000e+00
- 1 -211 0 0 0.16637472e+00 -0.43547703e+00 -0.93539898e+02 0.13957000e+00
- 2 111 343 344 -0.22285842e+00 0.15261695e+00 -0.61353797e+02 0.13498000e+00
- 2 311 345 345 -0.17953047e+00 -0.92704976e-01 -0.15939596e+03 0.49767000e+00
- 1 211 0 0 0.21779601e+00 0.13581291e+00 -0.85969530e+02 0.13957000e+00
- 1 2112 0 0 -0.35223929e+00 0.35411689e+00 -0.65045428e+03 0.93957000e+00
- 1 -211 0 0 -0.19226974e+00 -0.49178772e-01 -0.56629427e+03 0.13957000e+00
- 1 211 0 0 -0.62507264e+00 -0.41593256e+00 -0.62541831e+03 0.13957000e+00
- 2 111 346 347 0.48107205e-01 0.14780146e+00 -0.55113812e+03 0.13498000e+00
- 2 310 348 349 0.24729788e+01 -0.41911606e+01 -0.10617876e+01 0.49767000e+00
- 1 211 0 0 0.23914898e+01 -0.43507723e+01 -0.99306559e+00 0.13957000e+00
- 2 111 350 351 0.33179762e+00 -0.29376635e+00 -0.18516013e+00 0.13498000e+00
- 1 22 0 0 0.90740656e-01 -0.11462484e+00 -0.12560412e+00 0.00000000e+00
- 1 22 0 0 0.14364209e+00 -0.58121917e+00 -0.38839183e+00 0.00000000e+00
- 1 211 0 0 0.99081840e+00 -0.31704779e+00 -0.11483554e+01 0.13957000e+00
- 1 -211 0 0 0.26809576e+00 0.85872951e-01 -0.20906713e+00 0.13957000e+00
- 2 111 352 353 0.14184597e+01 -0.44868391e+00 -0.15054375e+01 0.13498000e+00
- 1 211 0 0 0.75363513e+01 -0.31001204e+01 -0.10188944e+02 0.13957000e+00
- 1 -211 0 0 0.14603470e+01 -0.76369245e+00 -0.27038398e+01 0.13957000e+00
- 1 -321 0 0 0.11035138e+01 -0.41033249e+00 -0.14721824e+01 0.49360000e+00
- 1 211 0 0 0.20397828e+01 -0.40520100e+00 -0.28173793e+01 0.13957000e+00
- 1 -211 0 0 0.66376328e+00 -0.37056638e-01 -0.71983462e+00 0.13957000e+00
- 1 211 0 0 0.80759007e+00 -0.22632410e+00 -0.11592524e+01 0.13957000e+00
- 2 111 354 355 0.40492252e+01 -0.10891524e+01 -0.58289297e+01 0.13498000e+00
- 1 -211 0 0 0.41576661e+00 0.13440940e+00 -0.23738468e+00 0.13957000e+00
- 2 111 356 357 -0.26514691e+00 -0.33136023e-01 -0.19171028e+00 0.13498000e+00
- 1 211 0 0 -0.25924203e+00 0.17412689e-01 -0.34731593e+00 0.13957000e+00
- 1 -211 0 0 -0.27272624e+00 0.87615107e+00 -0.95685708e-01 0.13957000e+00
- 1 211 0 0 0.37984438e+00 0.34385040e+00 0.36648138e+00 0.13957000e+00
- 2 111 358 359 -0.18437717e+00 0.64603801e+00 0.77120180e-01 0.13498000e+00
- 1 -211 0 0 -0.24914349e+00 0.12590755e+00 0.37398771e+00 0.13957000e+00
- 1 211 0 0 0.27548205e+00 -0.58881966e-01 -0.25176459e-01 0.13957000e+00
- 1 211 0 0 0.35551777e-01 0.30358513e+00 0.12067743e+00 0.13957000e+00
- 1 -211 0 0 -0.42203174e+00 0.14871201e+01 -0.19575937e+00 0.13957000e+00
- 1 -211 0 0 0.29339961e+00 0.86070248e+00 0.62230010e+00 0.13957000e+00
- 2 111 360 361 -0.23235943e+00 0.85382522e-01 0.25219797e+00 0.13498000e+00
- 1 211 0 0 0.48480808e+00 -0.18276710e+00 0.45428011e+01 0.13957000e+00
- 2 111 362 363 -0.21428308e+00 -0.24410251e+00 0.27236012e+01 0.13498000e+00
- 1 -211 0 0 -0.74397513e+00 -0.27634237e+00 0.90042071e+01 0.13957000e+00
- 2 111 364 365 0.82206251e-01 0.36157414e+00 0.88909049e+01 0.13498000e+00
- 1 -211 0 0 -0.28240794e+00 -0.12351227e+00 0.13322284e+02 0.13957000e+00
- 1 211 0 0 -0.79821226e-01 -0.30916098e+00 0.28262210e+02 0.13957000e+00
- 2 111 366 367 0.14932736e+00 -0.12798171e+00 0.20058282e+02 0.13498000e+00
- 2 -311 368 368 0.25101269e+00 -0.26125406e+00 0.14640998e+02 0.49767000e+00
- 1 -211 0 0 0.20217791e+00 -0.64116334e+00 0.23089672e+02 0.13957000e+00
- 2 -311 369 369 0.18526032e+00 -0.11332344e+00 0.36447728e+02 0.49767000e+00
- 1 -211 0 0 -0.60714070e-01 0.52498449e-01 0.43243934e+01 0.13957000e+00
- 2 311 370 370 0.74976189e+00 -0.96460158e+00 0.12897528e+03 0.49767000e+00
- 1 211 0 0 0.60873563e-01 -0.78002466e+00 0.75808939e+02 0.13957000e+00
- 1 -321 0 0 -0.10051187e+00 -0.11835070e+00 0.67699176e+02 0.49360000e+00
- 1 211 0 0 0.26006862e-03 0.25125374e+00 0.82820630e+02 0.13957000e+00
- 2 311 371 371 0.34333494e-01 0.11634239e+00 0.88245570e+02 0.49767000e+00
- 2 111 372 373 -0.60863990e-01 -0.25640781e+00 0.77251644e+02 0.13498000e+00
- 1 211 0 0 0.20756101e-01 -0.36621328e-01 0.56484934e+02 0.13957000e+00
- 2 111 374 375 0.41005793e+00 -0.17636803e+00 0.20359774e+02 0.13498000e+00
- 1 211 0 0 -0.30724716e+00 -0.24013786e+00 0.17772836e+02 0.13957000e+00
- 1 -211 0 0 0.18763243e+00 0.15249102e+00 0.51953788e+02 0.13957000e+00
- 1 -211 0 0 0.11842442e+00 0.94482665e-03 0.11526110e+02 0.13957000e+00
- 1 211 0 0 -0.23708870e-01 0.74483612e-01 0.10415277e+02 0.13957000e+00
- 2 221 376 377 -0.25891171e+00 -0.16283680e+00 0.50108882e+02 0.54745000e+00
- 1 -211 0 0 0.30221898e+00 0.14018810e+00 0.76354068e+01 0.13957000e+00
- 2 111 378 379 -0.21936347e+00 0.12243739e+00 0.38658417e+02 0.13498000e+00
- 1 22 0 0 -0.16462925e+00 0.17919245e-02 0.15230131e+01 0.00000000e+00
- 1 22 0 0 -0.79871300e+00 -0.21396461e+00 0.59803323e+01 0.00000000e+00
- 1 22 0 0 0.43239470e+00 0.19955189e+00 0.19035513e+01 0.00000000e+00
- 1 22 0 0 0.32813263e+00 0.54192102e-01 0.16447264e+01 0.00000000e+00
- 1 211 0 0 -0.98215975e-01 0.30102173e-01 0.17202423e+01 0.13957000e+00
- 2 111 380 381 0.60627094e+00 0.38924686e+00 0.15999517e+02 0.13498000e+00
- 1 211 0 0 0.22817722e+00 -0.81171329e-01 0.42863060e+01 0.13957000e+00
- 1 -211 0 0 -0.50143766e+00 -0.22065208e+00 0.12540232e+02 0.13957000e+00
- 1 -211 0 0 0.60540203e+00 0.29194270e+00 0.28591718e+02 0.13957000e+00
- 2 111 382 383 0.54900473e-03 -0.16238525e+00 0.12728637e+02 0.13498000e+00
- 1 -321 0 0 0.16564345e+00 0.16225264e-01 0.19066175e+02 0.49360000e+00
- 1 211 0 0 -0.25476955e+00 0.17366293e+00 0.53271178e+01 0.13957000e+00
- 1 321 0 0 -0.24876797e+00 0.20777307e-01 0.11959647e+03 0.49360000e+00
- 1 -211 0 0 -0.60042640e-01 -0.33265487e-01 0.55620290e+01 0.13957000e+00
- 1 211 0 0 0.22443469e+00 -0.19100916e+00 0.32417272e+02 0.13957000e+00
- 2 111 384 385 0.68847809e-01 0.43488421e+00 0.97329016e+02 0.13498000e+00
- 1 -211 0 0 0.38449922e+00 0.16224976e+00 0.67099223e+02 0.13957000e+00
- 1 211 0 0 -0.15233686e+00 -0.12834723e+00 0.14079038e+02 0.13957000e+00
- 1 22 0 0 -0.17992521e-01 0.75089715e-01 0.40801079e+02 0.00000000e+00
- 1 22 0 0 -0.35992133e+00 0.24835465e+00 0.27292511e+03 0.00000000e+00
- 1 -211 0 0 0.19537384e+00 0.25647346e+00 0.74794777e+02 0.13957000e+00
- 1 211 0 0 0.12091222e+00 -0.20029554e+00 0.39058107e+03 0.13957000e+00
- 2 111 386 387 -0.72044862e-01 -0.17101414e-02 0.17795958e+03 0.13498000e+00
- 2 111 388 389 0.14571978e-01 0.68861952e-01 0.61352205e+02 0.13498000e+00
- 2 111 390 391 -0.12115053e+00 -0.94723890e-01 0.25347668e+03 0.13498000e+00
- 1 -211 0 0 -0.37384692e+00 0.59600562e-01 -0.55689387e+01 0.13957000e+00
- 2 111 392 393 0.65706765e+00 0.20742590e-01 -0.78632121e+01 0.13498000e+00
- 1 211 0 0 0.70756703e-01 0.61754690e-01 -0.25682825e+01 0.13957000e+00
- 1 -211 0 0 0.20819456e+00 -0.15285691e+00 -0.36250163e+01 0.13957000e+00
- 2 111 394 395 0.18198514e+00 -0.10408829e+00 -0.18429250e+01 0.13498000e+00
- 1 211 0 0 -0.47758433e+00 0.31043947e+00 -0.30295604e+01 0.13957000e+00
- 2 111 396 397 -0.26657280e+00 -0.19559211e+00 -0.57147952e+01 0.13498000e+00
- 1 2212 0 0 0.77755294e+00 0.94712891e+00 0.34392077e+00 0.93827000e+00
- 1 211 0 0 -0.11724448e+00 0.22991145e+00 0.27124870e-01 0.13957000e+00
- 1 -211 0 0 -0.23683333e+00 -0.79189329e+00 0.10088474e+01 0.13957000e+00
- 2 111 398 399 0.12886884e+00 0.54849400e-01 0.75552673e-01 0.13498000e+00
- 1 -2112 0 0 -0.76503829e-02 0.14985061e+00 0.93863562e+00 0.93957000e+00
- 2 111 400 401 -0.18325865e+00 0.14566872e+00 0.79007598e-01 0.13498000e+00
- 1 22 0 0 0.12049489e+00 -0.97799391e-01 0.50462686e+01 0.00000000e+00
- 1 22 0 0 0.16537677e+00 0.72542395e-03 0.39236318e+00 0.00000000e+00
- 1 211 0 0 -0.83368816e-01 -0.37143129e+00 0.20059079e+02 0.13957000e+00
- 1 -211 0 0 -0.13656271e+01 -0.80069488e+00 0.79042776e+02 0.13957000e+00
- 1 130 0 0 -0.98160998e+00 -0.56991900e+00 0.82187190e+02 0.49767000e+00
- 2 310 402 403 -0.30119373e+00 -0.47240825e+00 0.10264263e+02 0.49767000e+00
- 1 22 0 0 0.50424402e-01 -0.70164737e-03 0.57109123e+01 0.00000000e+00
- 1 -11 0 0 -0.70507829e-01 0.26427553e-01 0.10576460e+02 0.51000000e-03
- 1 11 0 0 -0.97908293e-02 -0.59115256e-02 0.82876619e+00 0.51000000e-03
- 1 22 0 0 -0.69684149e+00 0.27083021e+00 0.14554730e+02 0.00000000e+00
- 1 22 0 0 -0.22761725e+00 0.46482375e-01 0.34322953e+01 0.00000000e+00
- 2 111 404 405 -0.22593149e-01 -0.38500296e-01 0.27259399e+01 0.13498000e+00
- 2 111 406 407 -0.11698266e+00 0.92123804e-01 0.16812695e+01 0.13498000e+00
- 2 221 408 410 -0.46362361e+00 0.61188192e-01 0.46239837e+01 0.54745000e+00
- 2 -3122 411 412 -0.32204108e+00 0.63012713e+00 0.34395785e+01 0.11156800e+01
- 1 211 0 0 0.67971813e-01 0.13922722e+00 0.23422334e+00 0.13957000e+00
- 1 -321 0 0 -0.43372699e-01 0.58318996e-02 -0.33272080e+00 0.49360000e+00
- 1 211 0 0 0.31865617e+00 0.24988497e+00 -0.43709844e+00 0.13957000e+00
- 1 211 0 0 -0.42702395e+00 0.37633947e+00 -0.13465889e+01 0.13957000e+00
- 2 111 413 414 -0.29796124e+00 -0.30241144e+00 -0.32269384e+00 0.13498000e+00
- 1 211 0 0 0.20991724e-01 -0.13821006e+00 0.69264861e-01 0.13957000e+00
- 1 -211 0 0 -0.86163888e+00 -0.46883509e+00 -0.11633471e+01 0.13957000e+00
- 1 2212 0 0 0.51100983e+00 0.82472588e+00 -0.22145213e+01 0.93827000e+00
- 1 211 0 0 0.39836875e+00 0.23193942e-01 -0.10199596e+01 0.13957000e+00
- 2 -3122 415 416 0.81009244e+00 0.32934620e+00 -0.14201850e+01 0.11156800e+01
- 1 -211 0 0 0.37722545e+00 0.27113340e+00 -0.31153050e+00 0.13957000e+00
- 1 -321 0 0 0.92943615e-02 0.21679237e-01 0.43079392e+01 0.49360000e+00
- 1 211 0 0 -0.28246583e+00 -0.16774149e-01 0.32278494e+02 0.13957000e+00
- 2 111 417 418 -0.15111353e+00 -0.11240705e+00 0.52369328e+01 0.13498000e+00
- 2 111 419 420 -0.15357783e-02 -0.73510402e-02 0.92854417e+01 0.13498000e+00
- 1 22 0 0 -0.10205671e+00 0.39953977e-01 0.45593281e+01 0.00000000e+00
- 1 22 0 0 -0.74466363e-01 0.19519134e+00 0.59839607e+01 0.00000000e+00
- 1 22 0 0 0.42961479e-01 -0.24073374e-01 0.33974777e+01 0.00000000e+00
- 1 22 0 0 -0.58225387e-01 0.76998171e-01 0.67800073e+01 0.00000000e+00
- 2 310 421 422 0.12730165e+00 0.40755171e+00 0.52587088e+02 0.49767000e+00
- 2 310 423 424 -0.18995222e+00 -0.44435071e-01 0.32510485e+03 0.49767000e+00
- 1 22 0 0 0.86099224e-01 0.10396795e+00 0.39664463e+03 0.00000000e+00
- 1 22 0 0 -0.36719205e-01 0.10003075e+00 0.18673875e+03 0.00000000e+00
- 1 -211 0 0 0.35021295e+00 -0.26361921e+01 -0.18840230e+03 0.13957000e+00
- 1 211 0 0 0.29253323e+01 -0.16874923e+02 -0.11948028e+04 0.13957000e+00
- 1 22 0 0 -0.49251583e-01 -0.11874658e+00 -0.47909863e+01 0.00000000e+00
- 1 22 0 0 -0.78813032e-01 -0.11116998e+01 -0.48509094e+02 0.00000000e+00
- 1 22 0 0 0.13966467e+00 0.78399511e-01 -0.42473933e+01 0.00000000e+00
- 1 22 0 0 0.22490884e+00 0.25205282e-01 -0.33607460e+01 0.00000000e+00
- 1 130 0 0 0.23089109e+00 -0.26592533e+00 -0.60358322e+01 0.49767000e+00
- 1 22 0 0 0.82303961e+00 -0.21511530e+00 -0.63769360e+01 0.00000000e+00
- 1 22 0 0 0.38627241e+00 -0.15321297e+00 -0.37768417e+01 0.00000000e+00
- 1 130 0 0 0.12264269e+01 -0.21577699e+00 -0.62077994e+02 0.49767000e+00
- 1 22 0 0 -0.64982673e-01 0.35917098e-01 -0.35492057e+01 0.00000000e+00
- 1 22 0 0 0.32920797e-01 0.63781280e-02 -0.28503468e+00 0.00000000e+00
- 1 130 0 0 -0.14839033e+00 0.13838742e+00 -0.74404200e+02 0.49767000e+00
- 1 22 0 0 0.22274811e+00 0.13702557e+00 -0.21932434e+02 0.00000000e+00
- 1 22 0 0 0.42155051e-02 -0.87137897e-02 -0.55608465e+01 0.00000000e+00
- 1 22 0 0 0.10307147e+00 0.42859381e-01 -0.52748289e+01 0.00000000e+00
- 1 22 0 0 -0.24865229e-01 0.85801642e-01 -0.33721290e+01 0.00000000e+00
- 1 22 0 0 -0.90578366e-01 0.10073411e+00 -0.42135573e+02 0.00000000e+00
- 1 22 0 0 -0.13228005e+00 0.51882833e-01 -0.19218224e+02 0.00000000e+00
- 1 130 0 0 -0.17953047e+00 -0.92704976e-01 -0.15939596e+03 0.49767000e+00
- 1 22 0 0 -0.18570002e-01 0.12775572e+00 -0.28354866e+03 0.00000000e+00
- 1 22 0 0 0.66677208e-01 0.20045732e-01 -0.26758946e+03 0.00000000e+00
- 1 211 0 0 0.14092146e+01 -0.27165187e+01 -0.55992343e+00 0.13957000e+00
- 1 -211 0 0 0.10637642e+01 -0.14746419e+01 -0.50186416e+00 0.13957000e+00
- 1 22 0 0 0.17469216e+00 -0.11595147e+00 -0.15274742e+00 0.00000000e+00
- 1 22 0 0 0.15710546e+00 -0.17781488e+00 -0.32412709e-01 0.00000000e+00
- 1 22 0 0 0.86797139e+00 -0.21493107e+00 -0.85376910e+00 0.00000000e+00
- 1 22 0 0 0.55048834e+00 -0.23375285e+00 -0.65166835e+00 0.00000000e+00
- 1 22 0 0 0.31925470e+01 -0.86923663e+00 -0.46904519e+01 0.00000000e+00
- 1 22 0 0 0.85667816e+00 -0.21991581e+00 -0.11384778e+01 0.00000000e+00
- 1 22 0 0 -0.26839794e+00 -0.14539201e-01 -0.14566266e+00 0.00000000e+00
- 1 22 0 0 0.32510324e-02 -0.18596823e-01 -0.46047620e-01 0.00000000e+00
- 1 22 0 0 -0.18192552e+00 0.59477844e+00 0.34601568e-01 0.00000000e+00
- 1 22 0 0 -0.24516444e-02 0.51259565e-01 0.42518612e-01 0.00000000e+00
- 1 22 0 0 -0.75153735e-01 0.96163471e-01 0.13444826e+00 0.00000000e+00
- 1 22 0 0 -0.15720570e+00 -0.10780949e-01 0.11774971e+00 0.00000000e+00
- 1 22 0 0 0.11744723e-01 -0.54850821e-01 0.36971809e+00 0.00000000e+00
- 1 22 0 0 -0.22602780e+00 -0.18925169e+00 0.23538831e+01 0.00000000e+00
- 1 22 0 0 -0.81758402e-02 0.24870829e-01 0.17976168e+01 0.00000000e+00
- 1 22 0 0 0.90382091e-01 0.33670331e+00 0.70932881e+01 0.00000000e+00
- 1 22 0 0 0.16735940e+00 -0.89918745e-01 0.17893512e+02 0.00000000e+00
- 1 22 0 0 -0.18032037e-01 -0.38062966e-01 0.21647704e+01 0.00000000e+00
- 2 310 425 426 0.25101269e+00 -0.26125406e+00 0.14640998e+02 0.49767000e+00
- 1 130 0 0 0.18526032e+00 -0.11332344e+00 0.36447728e+02 0.49767000e+00
- 1 130 0 0 0.74976189e+00 -0.96460158e+00 0.12897528e+03 0.49767000e+00
- 1 130 0 0 0.34333494e-01 0.11634239e+00 0.88245570e+02 0.49767000e+00
- 1 22 0 0 0.20783473e-01 -0.11611706e+00 0.20836795e+02 0.00000000e+00
- 1 22 0 0 -0.81647463e-01 -0.14029075e+00 0.56414849e+02 0.00000000e+00
- 1 22 0 0 0.20316402e+00 -0.16012051e+00 0.11056104e+02 0.00000000e+00
- 1 22 0 0 0.20689390e+00 -0.16247519e-01 0.93036697e+01 0.00000000e+00
- 1 22 0 0 -0.27416798e+00 -0.33414133e+00 0.28969194e+02 0.00000000e+00
- 1 22 0 0 0.15256267e-01 0.17130452e+00 0.21139688e+02 0.00000000e+00
- 1 22 0 0 -0.57749591e-01 0.26139207e-01 0.20066087e+02 0.00000000e+00
- 1 22 0 0 -0.16161388e+00 0.96298183e-01 0.18592330e+02 0.00000000e+00
- 1 22 0 0 0.18593963e+00 0.17904627e+00 0.48170845e+01 0.00000000e+00
- 1 22 0 0 0.42033131e+00 0.21020059e+00 0.11182433e+02 0.00000000e+00
- 1 22 0 0 -0.19213109e-01 -0.17812228e+00 0.11947102e+02 0.00000000e+00
- 1 22 0 0 0.19762113e-01 0.15737028e-01 0.78153485e+00 0.00000000e+00
- 1 22 0 0 0.54919314e-01 0.51577750e-01 0.19243864e+02 0.00000000e+00
- 1 22 0 0 0.13928495e-01 0.38330646e+00 0.78085151e+02 0.00000000e+00
- 1 22 0 0 -0.10931074e+00 -0.17851040e-01 0.11777628e+03 0.00000000e+00
- 1 22 0 0 0.37265880e-01 0.16140899e-01 0.60183301e+02 0.00000000e+00
- 1 22 0 0 0.28908387e-01 0.51098033e-03 0.47812826e+02 0.00000000e+00
- 1 22 0 0 -0.14336409e-01 0.68350972e-01 0.13539380e+02 0.00000000e+00
- 1 22 0 0 -0.13636023e+00 -0.33297899e-01 0.18569164e+03 0.00000000e+00
- 1 22 0 0 0.15209695e-01 -0.61425991e-01 0.67785041e+02 0.00000000e+00
- 1 22 0 0 0.59966715e+00 -0.21124133e-01 -0.70102088e+01 0.00000000e+00
- 1 22 0 0 0.57400498e-01 0.41866723e-01 -0.85300330e+00 0.00000000e+00
- 1 22 0 0 0.68087702e-01 -0.20007132e-01 -0.11653948e+01 0.00000000e+00
- 1 22 0 0 0.11389743e+00 -0.84081160e-01 -0.67753011e+00 0.00000000e+00
- 1 22 0 0 -0.32840509e-01 -0.74621010e-01 -0.20987102e+01 0.00000000e+00
- 1 22 0 0 -0.23373229e+00 -0.12097110e+00 -0.36160850e+01 0.00000000e+00
- 1 22 0 0 0.82537644e-01 0.41024491e-01 -0.26363581e-01 0.00000000e+00
- 1 22 0 0 0.46331193e-01 0.13824909e-01 0.10191625e+00 0.00000000e+00
- 1 22 0 0 -0.18843776e+00 0.10102340e+00 0.94824544e-01 0.00000000e+00
- 1 22 0 0 0.51791129e-02 0.44645322e-01 -0.15816946e-01 0.00000000e+00
- 1 -211 0 0 -0.24035772e-01 -0.34459287e+00 0.70520697e+01 0.13957000e+00
- 1 211 0 0 -0.27715796e+00 -0.12781538e+00 0.32121934e+01 0.13957000e+00
- 1 22 0 0 -0.69681567e-01 0.12274734e-01 0.11398301e+01 0.00000000e+00
- 1 22 0 0 0.47088419e-01 -0.50775030e-01 0.15861098e+01 0.00000000e+00
- 1 22 0 0 0.16649716e-01 0.50466217e-01 0.28020561e+00 0.00000000e+00
- 1 22 0 0 -0.13363237e+00 0.41657586e-01 0.14010639e+01 0.00000000e+00
- 1 211 0 0 -0.10156020e+00 0.69746272e-01 0.16418260e+01 0.13957000e+00
- 1 -211 0 0 -0.15193799e+00 -0.94230861e-01 0.18982939e+01 0.13957000e+00
- 2 111 427 428 -0.21012541e+00 0.85672781e-01 0.10838638e+01 0.13498000e+00
- 1 -2112 0 0 -0.18999520e+00 0.47947863e+00 0.29496854e+01 0.93957000e+00
- 2 111 429 430 -0.13204588e+00 0.15064850e+00 0.48989313e+00 0.13498000e+00
- 1 22 0 0 -0.21470167e+00 -0.21472341e+00 -0.30037406e+00 0.00000000e+00
- 1 22 0 0 -0.83259568e-01 -0.87688032e-01 -0.22319783e-01 0.00000000e+00
- 1 -2212 0 0 0.67565446e+00 0.37218017e+00 -0.12728489e+01 0.93827000e+00
- 1 211 0 0 0.13443798e+00 -0.42833966e-01 -0.14733612e+00 0.13957000e+00
- 1 22 0 0 -0.70705371e-01 -0.41000221e-01 0.38828465e+01 0.00000000e+00
- 1 22 0 0 -0.80408154e-01 -0.71406827e-01 0.13540863e+01 0.00000000e+00
- 1 22 0 0 0.59567014e-01 -0.55355002e-02 0.25287174e+01 0.00000000e+00
- 1 22 0 0 -0.61102792e-01 -0.18155400e-02 0.67567243e+01 0.00000000e+00
- 2 111 431 432 0.17650403e+00 0.40617665e+00 0.46856653e+02 0.13498000e+00
- 2 111 433 434 -0.49202383e-01 0.13750520e-02 0.57304351e+01 0.13498000e+00
- 2 111 435 436 -0.30175162e+00 -0.56498604e-01 0.16348624e+03 0.13498000e+00
- 2 111 437 438 0.11179940e+00 0.12063534e-01 0.16161861e+03 0.13498000e+00
- 1 211 0 0 0.10052688e+00 -0.11952188e+00 0.20925488e+01 0.13957000e+00
- 1 -211 0 0 0.15048581e+00 -0.14173218e+00 0.12548450e+02 0.13957000e+00
- 1 22 0 0 -0.71777767e-01 -0.18651086e-01 0.17088768e+00 0.00000000e+00
- 1 22 0 0 -0.13834764e+00 0.10432387e+00 0.91297608e+00 0.00000000e+00
- 1 22 0 0 -0.84822453e-02 0.36279312e-01 0.25213910e+00 0.00000000e+00
- 1 22 0 0 -0.12356364e+00 0.11436919e+00 0.23775403e+00 0.00000000e+00
- 1 22 0 0 0.17282186e+00 0.32681791e+00 0.33247459e+02 0.00000000e+00
- 1 22 0 0 0.36821777e-02 0.79358746e-01 0.13609194e+02 0.00000000e+00
- 1 22 0 0 -0.42425063e-01 -0.12955820e-01 0.55291621e+00 0.00000000e+00
- 1 22 0 0 -0.67773196e-02 0.14330872e-01 0.51775189e+01 0.00000000e+00
- 1 22 0 0 -0.43433126e-01 0.11319589e-01 0.88930614e+01 0.00000000e+00
- 1 22 0 0 -0.25831849e+00 -0.67818194e-01 0.15459318e+03 0.00000000e+00
- 1 22 0 0 0.11156526e+00 0.48265449e-01 0.84986776e+02 0.00000000e+00
- 1 22 0 0 0.23413321e-03 -0.36201915e-01 0.76631836e+02 0.00000000e+00
- 786
- 2 25 2 3 -0.35732409e+02 0.24838619e+01 -0.35193555e+03 0.12500106e+03
- 2 23 4 5 -0.69007132e+02 0.27697903e+02 -0.21336667e+03 0.24181537e+02
- 2 23 6 7 0.33274723e+02 -0.25214041e+02 -0.13856887e+03 0.30722215e+02
- 1 13 0 0 -0.37118453e+02 0.40310714e+01 -0.84143591e+02 0.10566000e+00
- 1 -13 0 0 -0.31888680e+02 0.23666831e+02 -0.12922308e+03 0.10566000e+00
- 1 11 0 0 0.28684493e+02 -0.63689130e+01 -0.10639916e+03 0.51000000e-03
- 1 -11 0 0 0.45902305e+01 -0.18845128e+02 -0.32169710e+02 0.51000000e-03
- 2 3 92 92 0.30541715e+01 -0.16782041e+01 0.20170966e+01 0.50000000e+00
- 2 21 92 92 0.93420485e+00 0.19421277e+00 0.82785613e+01 0.00000000e+00
- 2 2203 92 92 0.15058410e+01 -0.13137353e+00 0.30081912e+04 0.77133000e+00
- 2 -3 108 108 0.50976687e+01 0.29630397e+01 0.21899777e+02 0.50000000e+00
- 2 21 108 108 -0.39876352e+01 0.10483701e+01 0.12531547e+03 0.00000000e+00
- 2 21 108 108 -0.13183206e+01 0.31366831e+00 0.22419753e+02 0.00000000e+00
- 2 21 108 108 -0.88340892e+00 -0.87304684e+00 0.19025796e+02 0.00000000e+00
- 2 21 108 108 -0.10654257e+01 0.13059100e+01 0.53281952e+02 0.00000000e+00
- 2 21 108 108 -0.38551330e+01 0.52877663e+01 0.23945516e+03 0.00000000e+00
- 2 21 108 108 -0.20582950e+00 0.13419369e+01 0.64022055e+02 0.00000000e+00
- 2 21 108 108 -0.10465018e+01 0.92513267e+00 0.23404763e+03 0.00000000e+00
- 2 21 108 108 -0.33075386e+00 -0.45306929e+00 0.18326469e+03 0.00000000e+00
- 2 21 108 108 0.27971762e+00 0.24174299e+00 0.85780482e+03 0.00000000e+00
- 2 21 108 108 0.12961314e+01 0.61933799e+00 0.41479235e+03 0.00000000e+00
- 2 21 108 108 0.10654257e+01 -0.13059100e+01 0.32214117e+03 0.00000000e+00
- 2 21 108 108 0.12288974e+01 0.58351028e+00 0.11242718e+03 0.00000000e+00
- 2 21 108 108 0.24808122e+01 -0.24907063e+00 0.27088292e+03 0.00000000e+00
- 2 21 108 108 0.37256596e+01 -0.24837555e+01 0.34217869e+03 0.00000000e+00
- 2 21 108 108 0.17394619e+01 -0.22022732e+01 0.17194065e+03 0.00000000e+00
- 2 21 108 108 0.10465018e+01 -0.92513267e+00 0.40903511e+02 0.00000000e+00
- 2 21 108 108 0.91065043e+00 -0.11178521e+01 0.19677639e+02 0.00000000e+00
- 2 21 108 108 0.39876352e+01 -0.10483701e+01 0.72573015e+02 0.00000000e+00
- 2 21 108 108 0.88340892e+00 0.87304684e+00 0.11212208e+02 0.00000000e+00
- 2 21 108 108 0.13829323e+01 0.47693601e+01 0.46517146e+02 0.00000000e+00
- 2 21 108 108 -0.33505514e+00 0.47847672e+00 0.86629666e+01 0.00000000e+00
- 2 21 108 108 -0.91065043e+00 0.11178521e+01 0.13085762e+02 0.00000000e+00
- 2 21 108 108 -0.44627457e+00 0.65468206e+01 0.25487040e+02 0.00000000e+00
- 2 21 108 108 -0.57999988e+00 0.51441326e+01 0.87844088e+01 0.00000000e+00
- 2 21 108 108 -0.26868609e+00 0.24724148e+01 0.25293208e+01 0.00000000e+00
- 2 21 108 108 -0.37256596e+01 0.24837555e+01 0.52306437e+01 0.00000000e+00
- 2 21 108 108 -0.36984102e+01 0.19076840e+01 0.13480408e+01 0.00000000e+00
- 2 21 108 108 -0.44844822e+01 -0.11657210e+01 0.11602029e+02 0.00000000e+00
- 2 21 108 108 -0.12288974e+01 -0.58351028e+00 0.27655135e+01 0.00000000e+00
- 2 21 108 108 -0.27971762e+00 -0.24174299e+00 0.88696962e+00 0.00000000e+00
- 2 21 108 108 -0.12961314e+01 -0.61933799e+00 0.49706028e+01 0.00000000e+00
- 2 21 108 108 -0.44278838e+00 -0.20199394e+01 0.30574801e+01 0.00000000e+00
- 2 21 108 108 0.57999988e+00 -0.51441326e+01 0.88619894e+01 0.00000000e+00
- 2 21 108 108 0.44627457e+00 -0.65468206e+01 0.22227631e+02 0.00000000e+00
- 2 21 108 108 0.53093154e+00 -0.15661139e+01 0.94522737e+01 0.00000000e+00
- 2 21 108 108 0.36984102e+01 -0.19076840e+01 0.23211105e+02 0.00000000e+00
- 2 21 108 108 0.22161687e+01 -0.14902872e+01 0.28970300e+00 0.00000000e+00
- 2 21 108 108 0.61511062e+00 -0.91180304e+00 0.13906492e+01 0.00000000e+00
- 2 21 108 108 0.29326370e+01 -0.18416039e+01 0.15414575e+01 0.00000000e+00
- 2 21 108 108 0.19864268e+01 -0.11306496e+01 0.15409226e+01 0.00000000e+00
- 2 21 108 108 0.33871149e+01 -0.15766169e+01 0.67817681e+01 0.00000000e+00
- 2 2 108 108 0.39889232e+02 -0.27197068e+02 0.95100504e+02 0.33000000e+00
- 2 2 185 185 -0.86728493e+00 0.17823354e+00 -0.30456003e+02 0.33000000e+00
- 2 2101 185 185 0.11849004e+01 0.18229208e+01 -0.23448562e+04 0.57933000e+00
- 2 -2 192 192 -0.81045000e+00 0.17024494e+01 -0.47296379e+02 0.33000000e+00
- 2 21 192 192 0.38736940e+01 0.12544436e+01 -0.18280282e+04 0.00000000e+00
- 2 21 192 192 -0.30158335e+01 -0.73165834e+01 -0.12774761e+04 0.00000000e+00
- 2 21 192 192 -0.14199508e+01 -0.34247519e+01 -0.26720387e+03 0.00000000e+00
- 2 21 192 192 0.20582950e+00 -0.13419369e+01 -0.40315059e+02 0.00000000e+00
- 2 21 192 192 -0.38736940e+01 -0.12544436e+01 -0.13995385e+03 0.00000000e+00
- 2 21 192 192 -0.56518600e+01 -0.16793884e+00 -0.38090224e+02 0.00000000e+00
- 2 21 192 192 -0.24808122e+01 0.24907063e+00 -0.95073919e+01 0.00000000e+00
- 2 21 192 192 -0.13829323e+01 -0.47693601e+01 -0.26904038e+02 0.00000000e+00
- 2 21 192 192 -0.92857659e-01 -0.15048407e+01 -0.56625910e+01 0.00000000e+00
- 2 21 192 192 0.26868609e+00 -0.24724148e+01 -0.67874731e+01 0.00000000e+00
- 2 21 192 192 0.33505514e+00 -0.47847672e+00 -0.15174811e+01 0.00000000e+00
- 2 21 192 192 0.26870430e+00 -0.12129481e+01 -0.20780675e+01 0.00000000e+00
- 2 21 192 192 0.38551330e+01 -0.52877663e+01 -0.26413005e+01 0.00000000e+00
- 2 21 192 192 0.59981403e+01 -0.16774564e+02 -0.43454578e+01 0.00000000e+00
- 2 21 192 192 0.13183206e+01 -0.31366831e+00 0.52140086e+00 0.00000000e+00
- 2 21 192 192 0.44844822e+01 0.11657210e+01 0.11333145e+01 0.00000000e+00
- 2 21 192 192 0.56518600e+01 0.16793884e+00 0.87936483e+01 0.00000000e+00
- 2 21 192 192 0.33075386e+00 0.45306929e+00 0.61716462e+00 0.00000000e+00
- 2 21 192 192 0.14199508e+01 0.34247519e+01 0.34427413e+01 0.00000000e+00
- 2 21 192 192 0.30158335e+01 0.73165834e+01 0.59643733e+01 0.00000000e+00
- 2 21 192 192 0.92857659e-01 0.15048407e+01 0.20263115e+00 0.00000000e+00
- 2 21 192 192 -0.53093154e+00 0.15661139e+01 -0.52055201e+00 0.00000000e+00
- 2 21 192 192 -0.17394619e+01 0.22022732e+01 -0.30832103e+01 0.00000000e+00
- 2 21 192 192 -0.59981403e+01 0.16774564e+02 -0.27321652e+02 0.00000000e+00
- 2 21 192 192 0.44278838e+00 0.20199394e+01 -0.16102110e+02 0.00000000e+00
- 2 21 192 192 -0.26870430e+00 0.12129481e+01 -0.20836941e+02 0.00000000e+00
- 2 21 192 192 -0.17726792e+01 0.30769831e+00 -0.15411393e+02 0.00000000e+00
- 2 21 192 192 -0.27113237e+01 0.37327126e+01 -0.46203104e+02 0.00000000e+00
- 2 1 192 192 -0.20909329e+02 0.22572478e+02 -0.34043710e+03 0.33000000e+00
- 2 1 272 272 0.99580939e+00 0.27346664e+00 -0.48812619e+01 0.00000000e+00
- 2 -1 272 272 -0.99580939e+00 -0.27346664e+00 0.13243875e+01 0.00000000e+00
- 2 1 276 276 0.26741554e+00 0.67590321e+00 -0.13747067e+01 0.00000000e+00
- 2 -1 276 276 -0.26741554e+00 -0.67590321e+00 -0.42852256e+02 0.00000000e+00
- 2 21 280 280 0.15973652e+01 -0.10590981e+00 0.29918755e+01 0.00000000e+00
- 2 21 280 280 -0.15973652e+01 0.10590981e+00 -0.39913372e+01 0.00000000e+00
- 2 92 93 107 0.54942174e+01 -0.16153649e+01 0.30184869e+04 0.11235212e+03
- 1 -321 0 0 0.67499462e+00 -0.43621636e+00 0.63674291e+00 0.49360000e+00
- 2 221 285 287 0.48257266e+00 -0.70198839e-01 0.42862719e+00 0.54745000e+00
- 2 223 288 290 0.92001161e+00 -0.48930382e+00 0.17987790e+01 0.78192605e+00
- 2 213 291 292 0.93826824e+00 -0.10111944e+00 0.21888238e+01 0.76693030e+00
- 2 313 293 294 0.19493096e+00 -0.12820098e+00 0.32910980e+01 0.92549916e+00
- 1 -321 0 0 0.15998126e+00 0.85458950e-02 0.66467569e+00 0.49360000e+00
- 1 211 0 0 -0.47224659e-01 0.21200908e-01 0.19427052e+00 0.13957000e+00
- 2 -213 295 296 0.53874172e+00 -0.95014962e+00 0.33177184e+02 0.73897981e+00
- 2 213 297 298 -0.72367310e+00 0.56357557e+00 0.38984331e+02 0.60118944e+00
- 2 -213 299 300 0.46981417e+00 -0.95605485e-01 0.57115967e+02 0.70724085e+00
- 2 213 301 302 0.61987469e+00 0.15480224e-01 0.30138463e+02 0.67881500e+00
- 2 223 303 305 -0.17738696e+00 0.12780539e-01 0.44807358e+02 0.78481365e+00
- 2 223 306 308 0.41607965e-01 0.10588558e+00 0.30316057e+03 0.78046257e+00
- 1 2112 0 0 -0.19626727e+00 -0.49635331e+00 0.10175462e+04 0.93957000e+00
- 1 211 0 0 0.15979715e+01 0.42431427e+00 0.14843538e+04 0.13957000e+00
- 2 92 109 184 0.51017448e+02 -0.24177553e+02 0.39045923e+04 0.50911450e+03
- 2 311 309 309 0.35156836e+01 0.18692605e+01 0.15407962e+02 0.49767000e+00
- 1 211 0 0 0.13959524e+00 0.18299141e+00 0.29730804e+00 0.13957000e+00
- 2 -323 310 311 0.30427779e+00 0.42483547e+00 0.14899101e+02 0.93077036e+00
- 2 313 312 313 0.33978969e+00 0.54354081e+00 0.55523575e+01 0.88064325e+00
- 2 113 314 315 -0.73252643e+00 0.16236208e-01 0.12864135e+02 0.70694512e+00
- 2 111 316 317 -0.10067913e+01 0.52584530e+00 0.47400853e+02 0.13498000e+00
- 2 213 318 319 -0.99897060e+00 -0.29166373e+00 0.20268894e+02 0.71850280e+00
- 2 -213 320 321 -0.94872474e+00 0.11184836e+01 0.35540814e+02 0.83903863e+00
- 2 113 322 323 -0.14502106e+01 0.36694403e+00 0.57255612e+02 0.84997491e+00
- 2 331 324 326 -0.48522489e+00 0.37918745e+00 0.36814037e+02 0.95772320e+00
- 2 113 327 328 -0.13333280e+01 0.11032078e+01 0.62701115e+02 0.87742006e+00
- 2 -313 329 330 -0.97492460e+00 0.12414883e+01 0.62620661e+02 0.89961865e+00
- 2 -3322 331 332 -0.25104203e+00 0.85965169e+00 0.74929358e+02 0.13149000e+01
- 2 3212 333 334 -0.23947040e+01 0.17715616e+01 0.14953087e+03 0.11925500e+01
- 2 331 335 337 -0.79917561e+00 0.10815560e+01 0.84498107e+02 0.95774449e+00
- 2 213 338 339 -0.23477875e+00 -0.55198773e-01 0.22312601e+03 0.87049091e+00
- 2 113 340 341 0.84180137e+00 0.58322457e+00 0.29608390e+03 0.39141489e+00
- 2 -213 342 343 0.38532487e+00 0.10143453e+01 0.19745691e+03 0.84043530e+00
- 1 211 0 0 -0.48848493e+00 -0.68852667e+00 0.36773583e+03 0.13957000e+00
- 2 223 344 346 0.72585564e+00 -0.60567778e+00 0.40228051e+03 0.78018600e+00
- 1 -211 0 0 0.49427723e+00 0.36956513e+00 0.18264622e+03 0.13957000e+00
- 2 223 347 349 0.12536938e+01 0.54099360e+00 0.14909603e+03 0.79168639e+00
- 2 111 350 351 0.73144258e+00 -0.66903582e+00 0.16776913e+03 0.13498000e+00
- 1 211 0 0 0.61910720e+00 -0.32730384e+00 0.11369847e+03 0.13957000e+00
- 2 -213 352 353 0.11423833e+01 0.27807086e-01 0.84571048e+02 0.55967857e+00
- 1 211 0 0 0.21301218e+00 -0.51100894e+00 0.46517315e+02 0.13957000e+00
- 2 221 354 356 0.28254088e+01 -0.12692118e+01 0.22210809e+03 0.54745000e+00
- 2 -323 357 358 0.10442045e+01 -0.99981323e+00 0.16984335e+03 0.93816105e+00
- 2 333 359 360 0.16253793e+01 -0.80516110e+00 0.82954040e+02 0.10308035e+01
- 2 311 361 361 0.42468676e+00 -0.72989736e+00 0.60407117e+02 0.49767000e+00
- 2 111 362 363 0.98483133e+00 -0.99500546e+00 0.39620918e+02 0.13498000e+00
- 2 113 364 365 0.22764063e+01 -0.47424447e+00 0.41924537e+02 0.74935933e+00
- 1 211 0 0 -0.18352512e+00 0.37128928e-01 0.49380474e+01 0.13957000e+00
- 2 -213 366 367 0.15058971e+01 -0.74144370e+00 0.40422440e+02 0.67755718e+00
- 1 211 0 0 0.79409418e+00 -0.53290600e+00 0.94945814e+01 0.13957000e+00
- 2 331 368 370 0.11365970e+01 0.15887492e+01 0.25073512e+02 0.95789251e+00
- 1 -211 0 0 0.89824980e-01 -0.15548019e+00 0.13762296e+01 0.13957000e+00
- 2 221 371 373 -0.11433705e+00 0.99673767e+00 0.12902426e+02 0.54745000e+00
- 2 -313 374 375 0.57110701e+00 0.33585445e+01 0.27228470e+02 0.89180610e+00
- 2 -3214 376 377 0.41529388e-01 0.30140286e+01 0.21133716e+02 0.13670924e+01
- 2 2114 378 379 -0.60339175e+00 0.10827214e+01 0.80961070e+01 0.11954584e+01
- 2 213 380 381 -0.31920782e+00 0.38822022e+01 0.12319154e+02 0.58681512e+00
- 1 -211 0 0 -0.18726564e+00 0.33882614e+00 0.70707697e+00 0.13957000e+00
- 2 221 382 384 0.25468611e+00 0.15141930e+01 0.26898318e+01 0.54745000e+00
- 2 -1114 385 386 -0.10132781e+01 0.21839719e+01 0.49587013e+01 0.13343498e+01
- 1 -211 0 0 -0.67414150e+00 0.61325716e+00 0.12467572e+01 0.13957000e+00
- 1 2112 0 0 -0.14117890e+00 0.61345267e+00 0.25766036e+01 0.93957000e+00
- 2 213 387 388 -0.91425633e+00 0.25373491e+01 0.21959504e+01 0.84208318e+00
- 2 221 389 391 -0.44867043e+00 0.86902489e+00 0.10363236e+01 0.54745000e+00
- 2 -323 392 393 -0.30737279e+01 0.13917396e+01 0.32517423e+01 0.86765020e+00
- 2 323 394 395 -0.14454108e+01 0.95746173e+00 0.15995063e+01 0.89333134e+00
- 1 -2212 0 0 -0.56777593e+00 -0.21811828e+00 0.99296400e+00 0.93827000e+00
- 2 313 396 397 -0.17003590e+01 0.10320527e+00 0.29864387e+01 0.93925207e+00
- 2 3212 398 399 -0.24702942e+01 -0.90257473e+00 0.69857631e+01 0.11925500e+01
- 2 331 400 402 -0.15496618e+01 -0.51034665e+00 0.41978117e+01 0.95767527e+00
- 1 211 0 0 -0.40674505e+00 -0.11835154e+01 0.23951134e+01 0.13957000e+00
- 1 -2212 0 0 -0.38722732e+00 -0.10486483e+01 0.23951954e+01 0.93827000e+00
- 1 2112 0 0 -0.19805106e+00 -0.11350991e+01 0.29461503e+01 0.93957000e+00
- 2 213 403 404 -0.19221964e+00 -0.13757340e+01 0.56886321e+01 0.72325401e+00
- 2 223 405 407 -0.36695552e+00 -0.45472951e+01 0.88550175e+01 0.76809485e+00
- 2 111 408 409 0.10244532e+00 -0.65830060e+00 0.13765336e+01 0.13498000e+00
- 2 111 410 411 0.37911340e+00 -0.14902636e+01 0.63494350e+01 0.13498000e+00
- 2 113 412 413 -0.27644098e+00 -0.18415383e+01 0.70756765e+01 0.58004461e+00
- 1 -211 0 0 0.92341975e+00 -0.11620345e+01 0.42033937e+01 0.13957000e+00
- 2 213 414 415 0.17103730e+01 -0.18805886e+01 0.17884050e+02 0.81565799e+00
- 2 223 416 418 0.83206266e+00 -0.89625509e+00 0.55408243e+01 0.78397304e+00
- 1 -211 0 0 0.10566182e+01 -0.42083925e+00 0.48261153e+01 0.13957000e+00
- 2 113 419 420 0.13900001e+01 -0.11689777e+01 0.98475441e+00 0.81366140e+00
- 2 223 421 423 0.59821738e+00 -0.15738967e+00 0.19923991e+01 0.75732768e+00
- 2 -311 424 424 0.22832931e+01 -0.12698027e+01 0.13123767e+01 0.49767000e+00
- 2 313 425 426 0.51254772e+00 -0.83591816e+00 0.60194092e+00 0.88716151e+00
- 2 213 427 428 0.21255512e+01 -0.14159375e+01 0.21363761e+01 0.57076728e+00
- 2 -2224 429 430 0.22753198e+01 -0.12271729e+01 0.31642567e+01 0.13008842e+01
- 2 213 431 432 0.21484332e+01 -0.13562647e+01 0.46713909e+01 0.82589457e+00
- 2 2214 433 434 0.69436978e+01 -0.46450711e+01 0.15513918e+02 0.12735709e+01
- 2 113 435 436 0.32788466e+02 -0.22081608e+02 0.77848024e+02 0.67176045e+00
- 2 92 186 191 0.31761548e+00 0.20011543e+01 -0.23753122e+04 0.84048335e+01
- 1 211 0 0 -0.15029744e+00 0.49102622e-01 -0.15826840e+02 0.13957000e+00
- 1 -211 0 0 -0.56316123e+00 0.24548153e-01 -0.42013497e+02 0.13957000e+00
- 2 213 437 438 0.28945246e+00 -0.18493475e+00 -0.74972421e+02 0.76625356e+00
- 2 -213 439 440 0.20855731e+00 0.62150370e+00 -0.19697244e+03 0.74716539e+00
- 2 113 441 442 0.22523362e-01 0.24558173e+00 -0.28270178e+03 0.11239265e+01
- 1 2212 0 0 0.51054103e+00 0.12453529e+01 -0.17628252e+04 0.93827000e+00
- 2 92 193 271 -0.21096872e+02 0.21307902e+02 -0.41470482e+04 0.84354010e+03
- 2 113 443 444 -0.75853354e+00 0.49998629e+00 -0.48771427e+02 0.75207616e+00
- 2 331 445 447 -0.21536681e+00 0.94728230e+00 -0.70041805e+02 0.95689668e+00
- 2 111 448 449 0.35566795e+00 0.18965429e+00 -0.89670775e+01 0.13498000e+00
- 2 -213 450 451 0.63876500e+00 0.10290368e+00 -0.36362339e+03 0.83688661e+00
- 2 223 452 454 0.87604087e+00 0.57777876e+00 -0.45969789e+03 0.78277299e+00
- 2 113 455 456 0.15087322e+01 0.27650021e+00 -0.73099292e+03 0.71005377e+00
- 2 -313 457 458 -0.30305232e+00 -0.37995690e+00 -0.28638581e+03 0.87785161e+00
- 1 321 0 0 -0.64819412e+00 -0.12932230e+01 -0.19982807e+03 0.49360000e+00
- 2 113 459 460 -0.23269035e+00 -0.27577477e+01 -0.41618691e+03 0.72834510e+00
- 1 -211 0 0 -0.35167817e+00 0.71051788e-01 -0.23991157e+02 0.13957000e+00
- 1 211 0 0 -0.12344320e+00 -0.34705475e-01 -0.24186494e+02 0.13957000e+00
- 1 -211 0 0 -0.67862994e+00 -0.22893297e+01 -0.33199001e+03 0.13957000e+00
- 2 -2214 461 462 0.64065676e-01 -0.13843728e+01 -0.85840540e+02 0.12165307e+01
- 2 223 463 465 -0.14464838e+01 -0.91000574e+00 -0.20707188e+03 0.78005447e+00
- 2 2224 466 467 -0.91600296e+00 -0.69883399e+00 -0.94696676e+02 0.13213368e+01
- 1 -2212 0 0 -0.34932145e+00 -0.46422910e+00 -0.50584722e+02 0.93827000e+00
- 1 2212 0 0 0.15813192e+00 -0.12013535e+01 -0.77317939e+02 0.93827000e+00
- 1 -211 0 0 -0.46581265e+00 -0.65415909e+00 -0.27572033e+02 0.13957000e+00
- 2 113 468 469 -0.11099073e+01 -0.55264416e+00 -0.34395434e+02 0.78922059e+00
- 2 223 470 472 -0.94471078e+00 -0.19938778e+00 -0.37044892e+02 0.78178445e+00
- 2 111 473 474 -0.30397223e+00 -0.21954774e+00 -0.25934461e+01 0.13498000e+00
- 2 221 475 476 -0.70427721e+00 -0.11005654e+00 -0.11921735e+02 0.54745000e+00
- 2 -313 477 478 -0.10992298e+01 0.31583868e-01 -0.13701049e+02 0.85430445e+00
- 2 221 479 481 -0.82515279e+00 0.48721715e+00 -0.11332872e+02 0.54745000e+00
- 2 311 482 482 -0.29313003e+01 -0.49023505e+00 -0.17625173e+02 0.49767000e+00
- 2 111 483 484 -0.12479829e+01 -0.16198731e+00 -0.59379711e+01 0.13498000e+00
- 1 -2112 0 0 -0.91488251e+00 -0.83612325e+00 -0.73459535e+01 0.93957000e+00
- 2 -213 485 486 0.61689501e-01 -0.82903675e+00 -0.58987310e+01 0.62713378e+00
- 2 2224 487 488 -0.10503013e+01 -0.23704936e+01 -0.12747955e+02 0.12394145e+01
- 2 223 489 491 0.14160964e+00 -0.92871703e+00 -0.32688753e+01 0.77962885e+00
- 2 -213 492 493 -0.45300285e+00 -0.13707404e+01 -0.62782229e+01 0.77602668e+00
- 2 213 494 495 0.68255988e-01 -0.18086205e+01 -0.55449819e+01 0.77132902e+00
- 2 111 496 497 -0.17565154e+00 0.26093088e+00 -0.11892729e+01 0.13498000e+00
- 2 -213 498 499 0.65483251e+00 -0.22860377e+01 -0.45107868e+01 0.10937514e+01
- 1 -2112 0 0 0.11210026e+01 -0.13253127e+01 -0.75620638e+00 0.93957000e+00
- 2 113 500 501 0.12871463e+01 -0.14728509e+01 -0.16354555e+01 0.73477639e+00
- 1 2112 0 0 0.39220821e+00 -0.19073031e+01 -0.10062445e+01 0.93957000e+00
- 2 223 502 504 0.19641474e+01 -0.59086554e+01 -0.17213558e+01 0.79505289e+00
- 2 113 505 506 0.11051139e+01 -0.12665341e+01 -0.10238228e+00 0.76344566e+00
- 1 -2112 0 0 0.96184674e+00 -0.14440918e+01 -0.93476905e+00 0.93957000e+00
- 1 2112 0 0 0.28850521e+01 -0.63823677e+01 -0.14992282e+01 0.93957000e+00
- 2 223 507 509 0.41241218e+00 -0.11328994e+01 -0.63634947e+00 0.78655665e+00
- 1 211 0 0 0.80290698e+00 -0.22919753e+00 0.51231985e+00 0.13957000e+00
- 2 -213 510 511 0.11043200e+01 -0.53104703e+00 0.40792096e+00 0.79310725e+00
- 1 211 0 0 0.12991312e+01 -0.13870908e+00 0.39454444e+00 0.13957000e+00
- 1 -2212 0 0 0.94199544e+00 0.66298479e+00 0.17401266e+01 0.93827000e+00
- 2 213 512 513 0.14409627e+01 -0.14308468e+00 0.23487845e+01 0.10790621e+01
- 2 3114 514 515 0.16706336e+01 0.18987244e+00 0.71041218e+00 0.13950578e+01
- 2 313 516 517 0.23285069e+01 0.19207415e+01 0.21370574e+01 0.92581182e+00
- 1 -2112 0 0 0.83886313e+00 0.11390648e+01 0.21969477e+01 0.93957000e+00
- 1 2212 0 0 0.13961715e+01 0.13674771e+01 0.15109377e+01 0.93827000e+00
- 1 -211 0 0 -0.27416413e-01 0.14535217e+00 0.82633992e-01 0.13957000e+00
- 1 211 0 0 0.22750637e-02 0.85199716e-01 0.31653846e+00 0.13957000e+00
- 1 -211 0 0 0.34095422e+00 0.76780353e+00 0.39288301e+00 0.13957000e+00
- 2 -1114 518 519 0.13996813e+01 0.61742900e+00 0.19676672e+01 0.12353175e+01
- 1 -211 0 0 0.41797637e+00 0.70008597e+00 0.24680539e+00 0.13957000e+00
- 1 2212 0 0 0.95369883e+00 0.31956786e+01 0.31907167e+01 0.93827000e+00
- 2 113 520 521 0.46622426e+00 0.96349771e+00 0.57225369e+00 0.75165209e+00
- 2 223 522 524 -0.45053890e+00 0.64710722e+00 -0.35468232e+00 0.78359603e+00
- 2 113 525 526 0.41297836e-01 0.11994042e+01 0.51912671e+00 0.47168399e+00
- 2 223 527 529 -0.41433149e+00 0.13856000e+01 -0.63503580e-01 0.77869147e+00
- 1 -211 0 0 0.38005587e-01 -0.52590865e-01 -0.81635631e+00 0.13957000e+00
- 2 223 530 532 0.17715809e+00 0.21820142e+01 -0.20881493e+01 0.78719983e+00
- 1 211 0 0 -0.52975066e+00 0.24195939e+00 -0.63796106e+00 0.13957000e+00
- 2 -213 533 534 -0.13542950e+01 0.32971176e+01 -0.45471590e+01 0.76929920e+00
- 2 111 535 536 -0.75120896e+00 0.25984408e+01 -0.38253055e+01 0.13498000e+00
- 1 211 0 0 -0.27668994e+00 0.60072311e+00 -0.86015050e+00 0.13957000e+00
- 2 -213 537 538 -0.12084993e+01 0.20417068e+01 -0.39443315e+01 0.73454260e+00
- 2 113 539 540 -0.17666364e+01 0.52122416e+01 -0.77092805e+01 0.74356248e+00
- 2 213 541 542 -0.39845912e+00 0.29734759e+01 -0.59694116e+01 0.79079496e+00
- 1 -211 0 0 -0.29119609e+00 0.17596975e+00 -0.48950343e+01 0.13957000e+00
- 2 221 543 544 -0.34586489e+00 0.10093855e+01 -0.47201230e+01 0.54745000e+00
- 2 113 545 546 0.41832424e+00 0.43706220e+00 -0.93304749e+01 0.84546646e+00
- 1 211 0 0 -0.20619066e+01 0.16813589e+01 -0.19436473e+02 0.13957000e+00
- 2 -323 547 548 -0.18680595e+01 0.32565001e+01 -0.46224129e+02 0.95645707e+00
- 2 311 549 549 -0.48140398e+01 0.46495016e+01 -0.75920547e+02 0.49767000e+00
- 2 111 550 551 -0.34933093e+00 0.10013873e+01 -0.11705527e+02 0.13498000e+00
- 2 213 552 553 -0.93663921e+01 0.89509835e+01 -0.13581093e+03 0.91086145e+00
- 2 -213 554 555 -0.73084823e+01 0.87320749e+01 -0.13006030e+03 0.74316379e+00
- 2 92 273 275 0.00000000e+00 0.00000000e+00 -0.35568744e+01 0.56409563e+01
- 2 113 556 557 0.72887330e+00 0.24394583e+00 -0.39092698e+01 0.71831163e+00
- 2 221 558 559 -0.14474854e+00 0.20125568e+00 -0.91660152e+00 0.54745000e+00
- 2 113 560 561 -0.58412476e+00 -0.44520151e+00 0.12689970e+01 0.41688170e+00
- 2 92 277 279 0.00000000e+00 0.00000000e+00 -0.44226963e+02 0.40659512e+01
- 1 -211 0 0 0.32677350e+00 0.46021555e+00 -0.11676401e+01 0.13957000e+00
- 2 111 562 563 -0.10212037e+00 0.93517297e-02 -0.35700474e+00 0.13498000e+00
- 2 213 564 565 -0.22465313e+00 -0.46956728e+00 -0.42702318e+02 0.84597299e+00
- 2 92 281 284 0.00000000e+00 0.00000000e+00 -0.99946175e+00 0.76284647e+01
- 1 211 0 0 -0.28284155e+00 -0.18055436e-01 -0.12979202e+00 0.13957000e+00
- 2 113 566 567 0.19812171e+01 -0.14771627e-01 0.23126825e+01 0.72353195e+00
- 2 223 568 570 -0.13392991e+01 -0.11964219e+00 -0.24022458e+01 0.75933507e+00
- 2 -213 571 572 -0.35907647e+00 0.15246925e+00 -0.78010645e+00 0.10516304e+01
- 1 -211 0 0 -0.12038145e-01 0.30150395e-01 0.75448179e-01 0.13957000e+00
- 1 211 0 0 0.23562970e+00 0.83247107e-02 0.12541042e+00 0.13957000e+00
- 2 111 573 574 0.25898111e+00 -0.10867394e+00 0.22776859e+00 0.13498000e+00
- 1 -211 0 0 0.39096644e+00 -0.39344209e+00 0.66872195e+00 0.13957000e+00
- 1 211 0 0 0.67192190e-01 0.88449495e-01 0.14701638e+00 0.13957000e+00
- 2 111 575 576 0.46185298e+00 -0.18431123e+00 0.98304067e+00 0.13498000e+00
- 1 211 0 0 0.38169835e+00 -0.38928195e+00 0.12008036e+01 0.13957000e+00
- 2 111 577 578 0.55656989e+00 0.28816251e+00 0.98802027e+00 0.13498000e+00
- 1 321 0 0 0.23417102e+00 -0.36247522e+00 0.19397452e+01 0.49360000e+00
- 1 -211 0 0 -0.39240057e-01 0.23427423e+00 0.13513528e+01 0.13957000e+00
- 1 -211 0 0 0.63034676e+00 -0.78954280e+00 0.30279072e+02 0.13957000e+00
- 2 111 579 580 -0.91605040e-01 -0.16060683e+00 0.28981116e+01 0.13498000e+00
- 1 211 0 0 -0.33287147e+00 -0.34407534e-01 0.15148840e+02 0.13957000e+00
- 2 111 581 582 -0.39080163e+00 0.59798311e+00 0.23835491e+02 0.13498000e+00
- 1 -211 0 0 0.55403386e+00 -0.62018869e-01 0.27799839e+02 0.13957000e+00
- 2 111 583 584 -0.84219684e-01 -0.33586616e-01 0.29316128e+02 0.13498000e+00
- 1 211 0 0 0.49486343e-02 0.18520666e+00 0.12133464e+02 0.13957000e+00
- 2 111 585 586 0.61492605e+00 -0.16972643e+00 0.18004999e+02 0.13498000e+00
- 1 -211 0 0 -0.53854692e-01 0.20926619e+00 0.21471897e+02 0.13957000e+00
- 1 211 0 0 -0.11818571e+00 -0.42904404e-01 0.38228732e+01 0.13957000e+00
- 2 111 587 588 -0.53465611e-02 -0.15358125e+00 0.19512588e+02 0.13498000e+00
- 1 211 0 0 0.24601657e-01 0.39761496e-01 0.10370900e+03 0.13957000e+00
- 1 -211 0 0 0.11092383e+00 0.24643485e+00 0.15105832e+03 0.13957000e+00
- 2 111 589 590 -0.93917521e-01 -0.18031076e+00 0.48393251e+02 0.13498000e+00
- 1 130 0 0 0.35156836e+01 0.18692605e+01 0.15407962e+02 0.49767000e+00
- 2 -311 591 591 0.38007053e+00 0.12139090e+00 0.12181910e+02 0.49767000e+00
- 1 -211 0 0 -0.75792739e-01 0.30344456e+00 0.27171908e+01 0.13957000e+00
- 1 321 0 0 0.17305675e+00 0.59353459e+00 0.32439619e+01 0.49360000e+00
- 1 -211 0 0 0.16673294e+00 -0.49993787e-01 0.23083956e+01 0.13957000e+00
- 1 -211 0 0 -0.82462988e+00 -0.42595507e-01 0.10185091e+02 0.13957000e+00
- 1 211 0 0 0.92103444e-01 0.58831715e-01 0.26790438e+01 0.13957000e+00
- 1 22 0 0 -0.49187312e+00 0.26987078e+00 0.20655968e+02 0.00000000e+00
- 1 22 0 0 -0.51491819e+00 0.25597452e+00 0.26744885e+02 0.00000000e+00
- 1 211 0 0 -0.73044515e+00 0.10910038e-01 0.87606564e+01 0.13957000e+00
- 2 111 592 593 -0.26852545e+00 -0.30257377e+00 0.11508237e+02 0.13498000e+00
- 1 -211 0 0 -0.50888752e+00 0.80273011e-01 0.14089894e+02 0.13957000e+00
- 2 111 594 595 -0.43983723e+00 0.10382106e+01 0.21450920e+02 0.13498000e+00
- 1 211 0 0 -0.12066013e+01 0.56154460e+00 0.39765538e+02 0.13957000e+00
- 1 -211 0 0 -0.24360935e+00 -0.19460056e+00 0.17490074e+02 0.13957000e+00
- 1 211 0 0 -0.92873646e-01 0.17092209e+00 0.11144933e+02 0.13957000e+00
- 1 -211 0 0 -0.17977640e+00 0.13430180e+00 0.10846905e+02 0.13957000e+00
- 2 221 596 598 -0.21257484e+00 0.73963564e-01 0.14822200e+02 0.54745000e+00
- 1 211 0 0 -0.83451770e+00 0.19623756e+00 0.33766246e+02 0.13957000e+00
- 1 -211 0 0 -0.49881034e+00 0.90697022e+00 0.28934868e+02 0.13957000e+00
- 1 -321 0 0 -0.69350629e+00 0.44611873e+00 0.32275143e+02 0.49360000e+00
- 1 211 0 0 -0.28141831e+00 0.79536954e+00 0.30345518e+02 0.13957000e+00
- 2 -3122 599 600 -0.25136695e+00 0.71884028e+00 0.57826014e+02 0.11156800e+01
- 2 111 601 602 0.32492529e-03 0.14081141e+00 0.17103344e+02 0.13498000e+00
- 2 3122 603 604 -0.22398009e+01 0.16944420e+01 0.14402957e+03 0.11156800e+01
- 1 22 0 0 -0.15490309e+00 0.77119644e-01 0.55013012e+01 0.00000000e+00
- 1 211 0 0 -0.22863953e+00 0.17730642e+00 0.14981976e+02 0.13957000e+00
- 1 -211 0 0 -0.18719442e+00 0.27013250e+00 0.29069797e+02 0.13957000e+00
- 2 221 605 607 -0.38334166e+00 0.63411713e+00 0.40446334e+02 0.54745000e+00
- 1 211 0 0 0.36240693e-01 -0.16623071e+00 0.19258658e+03 0.13957000e+00
- 2 111 608 609 -0.27101945e+00 0.11103193e+00 0.30539425e+02 0.13498000e+00
- 1 211 0 0 0.64558405e+00 0.44498522e+00 0.24283045e+03 0.13957000e+00
- 1 -211 0 0 0.19621733e+00 0.13823935e+00 0.53253442e+02 0.13957000e+00
- 1 -211 0 0 0.26456343e+00 0.10210799e+01 0.12455037e+03 0.13957000e+00
- 2 111 610 611 0.12076144e+00 -0.67346285e-02 0.72906539e+02 0.13498000e+00
- 1 -211 0 0 0.55300528e+00 -0.39001823e+00 0.27968085e+03 0.13957000e+00
- 1 211 0 0 0.14515440e+00 -0.96483593e-01 0.29857571e+02 0.13957000e+00
- 2 111 612 613 0.27695963e-01 -0.11917596e+00 0.92742090e+02 0.13498000e+00
- 1 -211 0 0 0.62638898e+00 0.38747046e+00 0.52691138e+02 0.13957000e+00
- 1 211 0 0 0.11420888e+00 0.10730760e+00 0.38525330e+02 0.13957000e+00
- 2 111 614 615 0.51309597e+00 0.46215545e-01 0.57879566e+02 0.13498000e+00
- 1 22 0 0 0.32461921e+00 -0.23926005e+00 0.76682634e+02 0.00000000e+00
- 1 22 0 0 0.40682336e+00 -0.42977577e+00 0.91086500e+02 0.00000000e+00
- 1 -211 0 0 0.10534571e+00 0.63832366e-01 0.68541418e+01 0.13957000e+00
- 2 111 616 617 0.10370376e+01 -0.36025280e-01 0.77716906e+02 0.13498000e+00
- 2 111 618 619 0.51106429e+00 -0.19627361e+00 0.48009773e+02 0.13498000e+00
- 2 111 620 621 0.81108211e+00 -0.31643281e+00 0.60570877e+02 0.13498000e+00
- 2 111 622 623 0.15032624e+01 -0.75650542e+00 0.11352744e+03 0.13498000e+00
- 2 -311 624 624 0.48548558e+00 -0.36639869e+00 0.10740464e+03 0.49767000e+00
- 1 -211 0 0 0.55871888e+00 -0.63341454e+00 0.62438715e+02 0.13957000e+00
- 1 -321 0 0 0.85304748e+00 -0.45429952e+00 0.37848821e+02 0.49360000e+00
- 1 321 0 0 0.77233181e+00 -0.35086158e+00 0.45105219e+02 0.49360000e+00
- 2 310 625 626 0.42468676e+00 -0.72989736e+00 0.60407117e+02 0.49767000e+00
- 1 22 0 0 0.58973631e+00 -0.54082694e+00 0.21058126e+02 0.00000000e+00
- 1 22 0 0 0.39509503e+00 -0.45417852e+00 0.18562793e+02 0.00000000e+00
- 1 -211 0 0 0.33659072e+00 0.15769461e+00 0.63676190e+01 0.13957000e+00
- 1 211 0 0 0.19398156e+01 -0.63193909e+00 0.35556918e+02 0.13957000e+00
- 1 -211 0 0 0.63250890e+00 -0.19951387e+00 0.22777201e+02 0.13957000e+00
- 2 111 627 628 0.87338818e+00 -0.54192982e+00 0.17645239e+02 0.13498000e+00
- 1 -211 0 0 0.33330783e+00 0.34109424e+00 0.77510098e+01 0.13957000e+00
- 1 211 0 0 0.27541666e+00 0.26905166e+00 0.43502844e+01 0.13957000e+00
- 2 221 629 631 0.52787252e+00 0.97860327e+00 0.12972218e+02 0.54745000e+00
- 2 111 632 633 0.75912297e-01 0.38118446e+00 0.58130528e+01 0.13498000e+00
- 2 111 634 635 -0.18482854e+00 0.38106567e+00 0.43823078e+01 0.13498000e+00
- 2 111 636 637 -0.54208077e-02 0.23448755e+00 0.27070656e+01 0.13498000e+00
- 1 -321 0 0 0.29293554e+00 0.28773830e+01 0.23625772e+02 0.49360000e+00
- 1 211 0 0 0.27817147e+00 0.48116149e+00 0.36026978e+01 0.13957000e+00
- 2 -3122 638 639 0.37022750e-01 0.20801419e+01 0.14526901e+02 0.11156800e+01
- 2 111 640 641 0.45066376e-02 0.93388676e+00 0.66068144e+01 0.13498000e+00
- 1 2112 0 0 -0.32852655e+00 0.91448211e+00 0.58513713e+01 0.93957000e+00
- 2 111 642 643 -0.27486520e+00 0.16823925e+00 0.22447357e+01 0.13498000e+00
- 1 211 0 0 0.70813536e-01 0.11656635e+01 0.31876055e+01 0.13957000e+00
- 2 111 644 645 -0.39002135e+00 0.27165387e+01 0.91315480e+01 0.13498000e+00
- 2 111 646 647 0.50273293e-01 0.58737926e+00 0.12430416e+01 0.13498000e+00
- 2 111 648 649 -0.14742766e-01 0.35737206e+00 0.54124178e+00 0.13498000e+00
- 2 111 650 651 0.21915559e+00 0.56944172e+00 0.90554847e+00 0.13498000e+00
- 1 -2112 0 0 -0.11170641e+01 0.20974420e+01 0.46717427e+01 0.93957000e+00
- 1 211 0 0 0.10378602e+00 0.86529839e-01 0.28695856e+00 0.13957000e+00
- 1 211 0 0 -0.27976805e+00 0.11277980e+01 0.47987704e+00 0.13957000e+00
- 2 111 652 653 -0.63448828e+00 0.14095511e+01 0.17160734e+01 0.13498000e+00
- 2 111 654 655 -0.88666631e-01 0.36529501e+00 0.28465136e+00 0.13498000e+00
- 2 111 656 657 -0.33244487e+00 0.30959568e+00 0.47365348e+00 0.13498000e+00
- 2 111 658 659 -0.27558936e-01 0.19413420e+00 0.27801878e+00 0.13498000e+00
- 2 -311 660 660 -0.22220786e+01 0.98143413e+00 0.19701628e+01 0.49767000e+00
- 1 -211 0 0 -0.85164927e+00 0.41030546e+00 0.12815795e+01 0.13957000e+00
- 2 311 661 661 -0.13005760e+01 0.58658635e+00 0.11028074e+01 0.49767000e+00
- 1 211 0 0 -0.14483475e+00 0.37087538e+00 0.49669893e+00 0.13957000e+00
- 2 311 662 662 -0.12083286e+01 0.10297775e+00 0.26396039e+01 0.49767000e+00
- 2 111 663 664 -0.49203041e+00 0.22752072e-03 0.34683480e+00 0.13498000e+00
- 2 3122 665 666 -0.22815278e+01 -0.87118411e+00 0.63276408e+01 0.11156800e+01
- 1 22 0 0 -0.18876634e+00 -0.31390620e-01 0.65812239e+00 0.00000000e+00
- 2 111 667 668 -0.76136526e-01 -0.30244379e-01 0.23175285e+00 0.13498000e+00
- 2 111 669 670 -0.62650282e+00 -0.21668646e+00 0.14246574e+01 0.13498000e+00
- 2 221 671 672 -0.84702248e+00 -0.26341582e+00 0.25414015e+01 0.54745000e+00
- 1 211 0 0 -0.12509465e+00 -0.13587339e+00 0.18287687e+01 0.13957000e+00
- 2 111 673 674 -0.67124987e-01 -0.12398606e+01 0.38598633e+01 0.13498000e+00
- 1 211 0 0 -0.42048516e-01 -0.29628751e+01 0.57016029e+01 0.13957000e+00
- 1 -211 0 0 -0.21116604e+00 -0.75111244e+00 0.17626787e+01 0.13957000e+00
- 2 111 675 676 -0.11374097e+00 -0.83330761e+00 0.13907359e+01 0.13498000e+00
- 1 22 0 0 0.42431441e-02 -0.33683063e+00 0.58093830e+00 0.00000000e+00
- 1 22 0 0 0.98202179e-01 -0.32146998e+00 0.79559533e+00 0.00000000e+00
- 1 22 0 0 0.33235869e+00 -0.10629116e+01 0.46104073e+01 0.00000000e+00
- 1 22 0 0 0.46754713e-01 -0.42735201e+00 0.17390277e+01 0.00000000e+00
- 1 211 0 0 -0.21595769e+00 -0.17465949e+01 0.62434922e+01 0.13957000e+00
- 1 -211 0 0 -0.60483291e-01 -0.94943405e-01 0.83218432e+00 0.13957000e+00
- 1 211 0 0 0.11725246e+01 -0.17295964e+01 0.14206538e+02 0.13957000e+00
- 2 111 677 678 0.53784839e+00 -0.15099219e+00 0.36775123e+01 0.13498000e+00
- 1 -211 0 0 0.97131451e-01 0.27497657e-01 0.11511342e+01 0.13957000e+00
- 1 211 0 0 0.67104526e+00 -0.73201013e+00 0.33812943e+01 0.13957000e+00
- 2 111 679 680 0.63885951e-01 -0.19174262e+00 0.10083958e+01 0.13498000e+00
- 1 -211 0 0 0.12474758e+01 -0.73098478e+00 0.95468954e+00 0.13957000e+00
- 1 211 0 0 0.14252430e+00 -0.43799293e+00 0.30064870e-01 0.13957000e+00
- 1 -211 0 0 0.26033131e+00 0.11064871e+00 0.57296403e+00 0.13957000e+00
- 1 211 0 0 -0.64783192e-01 0.66103906e-02 0.31459099e+00 0.13957000e+00
- 2 111 681 682 0.40266926e+00 -0.27464878e+00 0.11048441e+01 0.13498000e+00
- 2 310 683 684 0.22832931e+01 -0.12698027e+01 0.13123767e+01 0.49767000e+00
- 1 321 0 0 0.61118726e+00 -0.53407366e+00 0.30928357e+00 0.49360000e+00
- 1 -211 0 0 -0.98639547e-01 -0.30184450e+00 0.29265735e+00 0.13957000e+00
- 1 211 0 0 0.19073792e+01 -0.11410726e+01 0.19429324e+01 0.13957000e+00
- 2 111 685 686 0.21817201e+00 -0.27486494e+00 0.19344370e+00 0.13498000e+00
- 1 -2212 0 0 0.13698413e+01 -0.72703306e+00 0.23292943e+01 0.93827000e+00
- 1 -211 0 0 0.90547849e+00 -0.50013985e+00 0.83496246e+00 0.13957000e+00
- 1 211 0 0 0.19946662e+01 -0.10581113e+01 0.36119028e+01 0.13957000e+00
- 2 111 687 688 0.15376699e+00 -0.29815337e+00 0.10594880e+01 0.13498000e+00
- 1 2212 0 0 0.47749204e+01 -0.29634771e+01 0.10759655e+02 0.93827000e+00
- 2 111 689 690 0.21687774e+01 -0.16815941e+01 0.47542630e+01 0.13498000e+00
- 1 211 0 0 0.16121033e+02 -0.10535283e+02 0.37593390e+02 0.13957000e+00
- 1 -211 0 0 0.16667433e+02 -0.11546325e+02 0.40254634e+02 0.13957000e+00
- 1 211 0 0 -0.19886590e+00 -0.20844184e-01 -0.38982398e+02 0.13957000e+00
- 2 111 691 692 0.48831835e+00 -0.16409057e+00 -0.35990023e+02 0.13498000e+00
- 1 -211 0 0 0.31535131e-01 0.34238560e+00 -0.16654674e+03 0.13957000e+00
- 2 111 693 694 0.17702218e+00 0.27911810e+00 -0.30425697e+02 0.13498000e+00
- 1 211 0 0 0.52258882e+00 0.11626842e+00 -0.18936562e+03 0.13957000e+00
- 1 -211 0 0 -0.50006546e+00 0.12931331e+00 -0.93336164e+02 0.13957000e+00
- 1 211 0 0 -0.19050407e+00 0.37742996e+00 -0.32896907e+02 0.13957000e+00
- 1 -211 0 0 -0.56802947e+00 0.12255633e+00 -0.15874520e+02 0.13957000e+00
- 1 211 0 0 -0.11194314e+00 0.20872496e+00 -0.74741895e+01 0.13957000e+00
- 1 -211 0 0 -0.24782817e-01 0.14310035e+00 -0.12379519e+02 0.13957000e+00
- 2 221 695 696 -0.78640855e-01 0.59545699e+00 -0.50188096e+02 0.54745000e+00
- 1 22 0 0 0.33927976e+00 0.17978541e+00 -0.74018662e+01 0.00000000e+00
- 1 22 0 0 0.16388192e-01 0.98688779e-02 -0.15652113e+01 0.00000000e+00
- 1 -211 0 0 0.55818264e+00 0.38807884e+00 -0.28821431e+03 0.13957000e+00
- 2 111 697 698 0.80582361e-01 -0.28517517e+00 -0.75409074e+02 0.13498000e+00
- 1 -211 0 0 0.61481574e+00 0.21507741e+00 -0.17183017e+03 0.13957000e+00
- 1 211 0 0 0.24453497e+00 0.25808799e+00 -0.15896158e+03 0.13957000e+00
- 2 111 699 700 0.16690159e-01 0.10461337e+00 -0.12890613e+03 0.13498000e+00
- 1 -211 0 0 0.12134705e+01 -0.57730847e-01 -0.53246597e+03 0.13957000e+00
- 1 211 0 0 0.29526175e+00 0.33423106e+00 -0.19852695e+03 0.13957000e+00
- 2 -311 701 701 -0.47332966e+00 -0.18557162e+00 -0.20684567e+03 0.49767000e+00
- 2 111 702 703 0.17027734e+00 -0.19438528e+00 -0.79540140e+02 0.13498000e+00
- 1 211 0 0 0.56567094e-01 -0.19229782e+01 -0.31401850e+03 0.13957000e+00
- 1 -211 0 0 -0.28925745e+00 -0.83476951e+00 -0.10216841e+03 0.13957000e+00
- 1 -2112 0 0 0.12798580e+00 -0.94752845e+00 -0.55024364e+02 0.93957000e+00
- 1 -211 0 0 -0.63920125e-01 -0.43684438e+00 -0.30816176e+02 0.13957000e+00
- 1 -211 0 0 -0.58813796e+00 -0.23814183e+00 -0.84685404e+02 0.13957000e+00
- 1 211 0 0 -0.19303103e-02 -0.12152392e+00 -0.15889560e+02 0.13957000e+00
- 2 111 704 705 -0.85641552e+00 -0.55033999e+00 -0.10649691e+03 0.13498000e+00
- 1 2212 0 0 -0.73438701e+00 -0.77197477e+00 -0.88767518e+02 0.93827000e+00
- 1 211 0 0 -0.18161595e+00 0.73140787e-01 -0.59291579e+01 0.13957000e+00
- 1 211 0 0 -0.18949483e+00 0.12771524e+00 -0.10699956e+02 0.13957000e+00
- 1 -211 0 0 -0.92041242e+00 -0.68035939e+00 -0.23695478e+02 0.13957000e+00
- 1 -211 0 0 -0.26968106e+00 -0.26065342e+00 -0.98520105e+01 0.13957000e+00
- 1 211 0 0 -0.47780888e+00 0.64017675e-01 -0.11577793e+02 0.13957000e+00
- 2 111 706 708 -0.19722084e+00 -0.27520368e-02 -0.15615088e+02 0.13498000e+00
- 1 22 0 0 -0.24664536e+00 -0.16942821e+00 -0.16153742e+01 0.00000000e+00
- 1 22 0 0 -0.57326878e-01 -0.50119526e-01 -0.97807195e+00 0.00000000e+00
- 1 22 0 0 -0.14624905e+00 -0.19708283e+00 -0.64707377e+01 0.00000000e+00
- 1 22 0 0 -0.55802816e+00 0.87026286e-01 -0.54509977e+01 0.00000000e+00
- 1 -321 0 0 -0.10324456e+01 -0.10136308e+00 -0.10167345e+02 0.49360000e+00
- 1 211 0 0 -0.66784242e-01 0.13294694e+00 -0.35337045e+01 0.13957000e+00
- 2 111 709 710 -0.10483752e+00 0.29300237e-01 -0.19345196e+01 0.13498000e+00
- 2 111 711 712 -0.48872459e+00 0.16674895e+00 -0.53947884e+01 0.13498000e+00
- 2 111 713 714 -0.23159069e+00 0.29116796e+00 -0.40035640e+01 0.13498000e+00
- 2 310 715 716 -0.29313003e+01 -0.49023505e+00 -0.17625173e+02 0.49767000e+00
- 1 22 0 0 -0.10327643e+01 -0.18336170e+00 -0.48586555e+01 0.00000000e+00
- 1 22 0 0 -0.21521863e+00 0.21374385e-01 -0.10793156e+01 0.00000000e+00
- 1 -211 0 0 -0.23903383e+00 -0.35352524e+00 -0.30687140e+01 0.13957000e+00
- 2 111 717 718 0.30072333e+00 -0.47551151e+00 -0.28300170e+01 0.13498000e+00
- 1 2212 0 0 -0.60748994e+00 -0.18212730e+01 -0.10128554e+02 0.93827000e+00
- 1 211 0 0 -0.44281132e+00 -0.54922064e+00 -0.26194006e+01 0.13957000e+00
- 1 -211 0 0 -0.63960071e-01 -0.46345347e+00 -0.17779746e+01 0.13957000e+00
- 1 211 0 0 0.21903993e+00 -0.37837111e+00 -0.69009078e+00 0.13957000e+00
- 2 111 719 720 -0.13470220e-01 -0.86892447e-01 -0.80080988e+00 0.13498000e+00
- 1 -211 0 0 0.13658166e+00 -0.39715348e+00 -0.11126925e+01 0.13957000e+00
- 2 111 721 722 -0.58958450e+00 -0.97358692e+00 -0.51655304e+01 0.13498000e+00
- 1 211 0 0 0.39153455e+00 -0.10626264e+01 -0.33565341e+01 0.13957000e+00
- 2 111 723 724 -0.32327857e+00 -0.74599413e+00 -0.21884478e+01 0.13498000e+00
- 1 22 0 0 -0.15191991e+00 0.13473516e+00 -0.87083641e+00 0.00000000e+00
- 1 22 0 0 -0.23731630e-01 0.12619572e+00 -0.31843647e+00 0.00000000e+00
- 1 -211 0 0 0.48933279e+00 -0.34281014e+00 -0.69006329e+00 0.13957000e+00
- 2 111 725 726 0.16549972e+00 -0.19432275e+01 -0.38207235e+01 0.13498000e+00
- 1 211 0 0 0.47199924e+00 -0.10214381e+01 -0.74258770e+00 0.13957000e+00
- 1 -211 0 0 0.81514703e+00 -0.45141288e+00 -0.89286781e+00 0.13957000e+00
- 1 211 0 0 0.12058406e+00 -0.68886684e+00 -0.13193224e+00 0.13957000e+00
- 1 -211 0 0 0.35351788e+00 -0.66803142e+00 -0.18175050e+00 0.13957000e+00
- 2 111 727 728 0.14900454e+01 -0.45517571e+01 -0.14076731e+01 0.13498000e+00
- 1 -211 0 0 0.29665415e+00 -0.81990126e+00 0.11338414e+00 0.13957000e+00
- 1 211 0 0 0.80845970e+00 -0.44663288e+00 -0.21576642e+00 0.13957000e+00
- 1 211 0 0 0.38452026e+00 -0.74665883e+00 -0.50321451e+00 0.13957000e+00
- 1 -211 0 0 -0.60354956e-01 -0.77542858e-02 -0.74005915e-01 0.13957000e+00
- 2 111 729 730 0.88246877e-01 -0.37848628e+00 -0.59129046e-01 0.13498000e+00
- 1 -211 0 0 0.10799856e+01 -0.23837289e+00 0.42222964e+00 0.13957000e+00
- 2 111 731 732 0.24334401e-01 -0.29267414e+00 -0.14308680e-01 0.13498000e+00
- 1 211 0 0 0.11642218e+01 -0.25607387e+00 0.96321493e+00 0.13957000e+00
- 2 111 733 734 0.27674090e+00 0.11298918e+00 0.13855695e+01 0.13498000e+00
- 2 3122 735 736 0.12342099e+01 0.15449181e+00 0.75909993e+00 0.11156800e+01
- 1 -211 0 0 0.43642369e+00 0.35380631e-01 -0.48687755e-01 0.13957000e+00
- 1 321 0 0 0.15856712e+01 0.15425943e+01 0.18305681e+01 0.49360000e+00
- 1 -211 0 0 0.74283561e+00 0.37814725e+00 0.30648930e+00 0.13957000e+00
- 1 -2112 0 0 0.12778465e+01 0.35820539e+00 0.17845014e+01 0.93957000e+00
- 1 211 0 0 0.12183480e+00 0.25922361e+00 0.18316579e+00 0.13957000e+00
- 1 -211 0 0 0.44131659e+00 0.16747990e+00 0.14496624e+00 0.13957000e+00
- 1 211 0 0 0.24907670e-01 0.79601781e+00 0.42728746e+00 0.13957000e+00
- 1 211 0 0 -0.25806959e+00 0.49830072e+00 -0.30830410e+00 0.13957000e+00
- 1 -211 0 0 -0.92891001e-01 0.56499259e-02 -0.18605255e+00 0.13957000e+00
- 2 111 737 738 -0.99578317e-01 0.14315657e+00 0.13967433e+00 0.13498000e+00
- 1 -211 0 0 0.11205025e+00 0.62746743e+00 0.45101663e+00 0.13957000e+00
- 1 211 0 0 -0.70752412e-01 0.57193682e+00 0.68110083e-01 0.13957000e+00
- 1 211 0 0 -0.23633635e+00 0.15067126e+00 -0.26289607e-01 0.13957000e+00
- 1 -211 0 0 -0.13599741e+00 0.62411465e+00 0.15847715e+00 0.13957000e+00
- 2 111 739 740 -0.41997723e-01 0.61081404e+00 -0.19569113e+00 0.13498000e+00
- 1 -211 0 0 -0.11954002e+00 0.93800878e+00 -0.68524613e+00 0.13957000e+00
- 1 211 0 0 0.25536539e-01 0.14934804e+00 -0.32101235e+00 0.13957000e+00
- 2 111 741 742 0.27116156e+00 0.10946574e+01 -0.10818908e+01 0.13498000e+00
- 1 -211 0 0 -0.28165860e+00 0.27679496e+00 -0.73871091e+00 0.13957000e+00
- 2 111 743 744 -0.10726364e+01 0.30203227e+01 -0.38084481e+01 0.13498000e+00
- 1 22 0 0 -0.21570546e+00 0.62602312e+00 -0.10198641e+01 0.00000000e+00
- 1 22 0 0 -0.53550351e+00 0.19724177e+01 -0.28054413e+01 0.00000000e+00
- 1 -211 0 0 -0.42357133e-01 0.24017469e+00 -0.83276921e+00 0.13957000e+00
- 2 111 745 746 -0.11661422e+01 0.18015321e+01 -0.31115623e+01 0.13498000e+00
- 1 -211 0 0 -0.90413320e+00 0.30883972e+01 -0.39603260e+01 0.13957000e+00
- 1 211 0 0 -0.86250321e+00 0.21238444e+01 -0.37489544e+01 0.13957000e+00
- 1 211 0 0 -0.11505538e+00 0.22557917e+01 -0.49424606e+01 0.13957000e+00
- 2 111 747 748 -0.28340375e+00 0.71768413e+00 -0.10269510e+01 0.13498000e+00
- 1 22 0 0 0.35283141e-01 0.66382000e+00 -0.30903010e+01 0.00000000e+00
- 1 22 0 0 -0.38114803e+00 0.34556549e+00 -0.16298220e+01 0.00000000e+00
- 1 -211 0 0 0.17051986e+00 0.61894368e+00 -0.47358514e+01 0.13957000e+00
- 1 211 0 0 0.24780439e+00 -0.18188148e+00 -0.45946235e+01 0.13957000e+00
- 1 -321 0 0 -0.45288202e+00 0.93488349e+00 -0.13094651e+02 0.49360000e+00
- 2 111 749 750 -0.14151775e+01 0.23216166e+01 -0.33129478e+02 0.13498000e+00
- 2 310 751 752 -0.48140398e+01 0.46495016e+01 -0.75920547e+02 0.49767000e+00
- 1 22 0 0 -0.28058312e+00 0.62186588e+00 -0.77409285e+01 0.00000000e+00
- 1 22 0 0 -0.68747811e-01 0.37952145e+00 -0.39645981e+01 0.00000000e+00
- 1 211 0 0 -0.27078203e+01 0.23013739e+01 -0.33966079e+02 0.13957000e+00
- 2 111 753 754 -0.66585718e+01 0.66496096e+01 -0.10184485e+03 0.13498000e+00
- 1 -211 0 0 -0.59995453e+01 0.67496193e+01 -0.10274093e+03 0.13957000e+00
- 2 111 755 756 -0.13089371e+01 0.19824556e+01 -0.27319367e+02 0.13498000e+00
- 1 -211 0 0 0.12198512e+00 0.35506567e+00 -0.11586250e+01 0.13957000e+00
- 1 211 0 0 0.60688819e+00 -0.11111984e+00 -0.27506448e+01 0.13957000e+00
- 1 22 0 0 -0.31499570e+00 -0.38208925e-02 -0.35637420e+00 0.00000000e+00
- 1 22 0 0 0.17024716e+00 0.20507657e+00 -0.56022732e+00 0.00000000e+00
- 1 -211 0 0 -0.42961988e+00 -0.39058086e+00 0.72492894e+00 0.13957000e+00
- 1 211 0 0 -0.15450488e+00 -0.54620646e-01 0.54406803e+00 0.13957000e+00
- 1 22 0 0 -0.53940654e-01 -0.58251508e-01 -0.11822802e+00 0.00000000e+00
- 1 22 0 0 -0.48179713e-01 0.67603238e-01 -0.23877672e+00 0.00000000e+00
- 1 211 0 0 0.17964188e+00 -0.89579564e-01 -0.27103656e+02 0.13957000e+00
- 2 111 757 758 -0.40429501e+00 -0.37998772e+00 -0.15598662e+02 0.13498000e+00
- 1 211 0 0 0.17080468e+01 -0.23568295e+00 0.19400276e+01 0.13957000e+00
- 1 -211 0 0 0.27317038e+00 0.22091132e+00 0.37265492e+00 0.13957000e+00
- 1 211 0 0 -0.39884087e+00 -0.64084119e-01 -0.11542461e+01 0.13957000e+00
- 1 -211 0 0 -0.37362874e+00 0.14353116e+00 -0.47416456e+00 0.13957000e+00
- 2 111 759 760 -0.56682951e+00 -0.19908923e+00 -0.77383505e+00 0.13498000e+00
- 1 -211 0 0 0.87440148e-01 -0.37570254e+00 -0.21598150e+00 0.13957000e+00
- 2 111 761 762 -0.44651662e+00 0.52817179e+00 -0.56412494e+00 0.13498000e+00
- 1 22 0 0 0.10406372e+00 0.40501230e-02 0.25177157e-01 0.00000000e+00
- 1 22 0 0 0.15491739e+00 -0.11272407e+00 0.20259143e+00 0.00000000e+00
- 1 22 0 0 0.25862505e+00 -0.14431632e+00 0.69163360e+00 0.00000000e+00
- 1 22 0 0 0.20322793e+00 -0.39994905e-01 0.29140707e+00 0.00000000e+00
- 1 22 0 0 0.34295334e+00 0.24205142e+00 0.70067025e+00 0.00000000e+00
- 1 22 0 0 0.21361655e+00 0.46111091e-01 0.28735002e+00 0.00000000e+00
- 1 22 0 0 -0.72961126e-01 -0.12340053e+00 0.12022498e+01 0.00000000e+00
- 1 22 0 0 -0.18643915e-01 -0.37206301e-01 0.16958618e+01 0.00000000e+00
- 1 22 0 0 -0.35973490e+00 0.59435949e+00 0.22526834e+02 0.00000000e+00
- 1 22 0 0 -0.31066729e-01 0.36236221e-02 0.13086578e+01 0.00000000e+00
- 1 22 0 0 -0.40484465e-01 0.59218205e-02 0.21627343e+01 0.00000000e+00
- 1 22 0 0 -0.43735219e-01 -0.39508436e-01 0.27153394e+02 0.00000000e+00
- 1 22 0 0 0.94845418e-01 -0.67213377e-01 0.42580043e+01 0.00000000e+00
- 1 22 0 0 0.52008064e+00 -0.10251305e+00 0.13746994e+02 0.00000000e+00
- 1 22 0 0 0.41964134e-01 -0.10934983e+00 0.16290872e+02 0.00000000e+00
- 1 22 0 0 -0.47310695e-01 -0.44231420e-01 0.32217161e+01 0.00000000e+00
- 1 22 0 0 0.12530832e-02 0.16252559e-01 0.86425473e+01 0.00000000e+00
- 1 22 0 0 -0.95170605e-01 -0.19656332e+00 0.39750703e+02 0.00000000e+00
- 2 310 763 764 0.38007053e+00 0.12139090e+00 0.12181910e+02 0.49767000e+00
- 1 22 0 0 -0.12028788e+00 -0.22587588e+00 0.76806210e+01 0.00000000e+00
- 1 22 0 0 -0.14823757e+00 -0.76697889e-01 0.38276164e+01 0.00000000e+00
- 1 22 0 0 -0.37365057e+00 0.84255844e+00 0.16488598e+02 0.00000000e+00
- 1 22 0 0 -0.66186659e-01 0.19565217e+00 0.49623223e+01 0.00000000e+00
- 2 111 765 766 -0.44254415e-01 0.65296203e-01 0.59061886e+01 0.13498000e+00
- 2 111 767 768 -0.13847804e-01 0.27748202e-01 0.13805907e+01 0.13498000e+00
- 2 111 769 770 -0.15447262e+00 -0.19080840e-01 0.75354203e+01 0.13498000e+00
- 1 -2112 0 0 -0.21079859e+00 0.62310348e+00 0.53718139e+02 0.93957000e+00
- 2 111 771 772 -0.40568367e-01 0.95736799e-01 0.41078755e+01 0.13498000e+00
- 1 22 0 0 -0.41098235e-01 0.86123795e-01 0.14124454e+02 0.00000000e+00
- 1 22 0 0 0.41423161e-01 0.54687616e-01 0.29788900e+01 0.00000000e+00
- 1 2212 0 0 -0.17845328e+01 0.14561116e+01 0.12079592e+03 0.93827000e+00
- 1 -211 0 0 -0.45526807e+00 0.23833033e+00 0.23233648e+02 0.13957000e+00
- 1 -211 0 0 -0.19590201e+00 0.81372128e-01 0.97024546e+01 0.13957000e+00
- 1 211 0 0 -0.16265547e+00 0.35817619e+00 0.21825721e+02 0.13957000e+00
- 2 111 773 774 -0.24784191e-01 0.19456881e+00 0.89181589e+01 0.13498000e+00
- 1 22 0 0 -0.27202958e-01 0.50790647e-02 0.92707248e+01 0.00000000e+00
- 1 22 0 0 -0.24381649e+00 0.10595287e+00 0.21268701e+02 0.00000000e+00
- 1 22 0 0 0.17098130e-01 0.19582063e-01 0.46675657e+02 0.00000000e+00
- 1 22 0 0 0.10366331e+00 -0.26316692e-01 0.26230882e+02 0.00000000e+00
- 1 22 0 0 -0.45795182e-01 -0.79880414e-01 0.36006834e+02 0.00000000e+00
- 1 22 0 0 0.73491145e-01 -0.39295543e-01 0.56735257e+02 0.00000000e+00
- 1 22 0 0 0.38299203e+00 0.70783551e-01 0.47680011e+02 0.00000000e+00
- 1 22 0 0 0.13010394e+00 -0.24568006e-01 0.10199555e+02 0.00000000e+00
- 1 22 0 0 0.70845792e+00 -0.25270315e-01 0.57527756e+02 0.00000000e+00
- 1 22 0 0 0.32857969e+00 -0.10754965e-01 0.20189150e+02 0.00000000e+00
- 1 22 0 0 0.44394326e+00 -0.17756819e+00 0.36980928e+02 0.00000000e+00
- 1 22 0 0 0.67121030e-01 -0.18705417e-01 0.11028845e+02 0.00000000e+00
- 1 22 0 0 0.10246099e+00 -0.90083178e-01 0.85460034e+01 0.00000000e+00
- 1 22 0 0 0.70862112e+00 -0.22634963e+00 0.52024873e+02 0.00000000e+00
- 1 22 0 0 0.43501935e+00 -0.15193235e+00 0.31349728e+02 0.00000000e+00
- 1 22 0 0 0.10682431e+01 -0.60457308e+00 0.82177716e+02 0.00000000e+00
- 1 130 0 0 0.48548558e+00 -0.36639869e+00 0.10740464e+03 0.49767000e+00
- 2 111 775 776 0.40835099e+00 -0.40289194e+00 0.45131549e+02 0.13498000e+00
- 2 111 777 778 0.16335771e-01 -0.32700541e+00 0.15275568e+02 0.13498000e+00
- 1 22 0 0 0.82801832e+00 -0.47172190e+00 0.16296916e+02 0.00000000e+00
- 1 22 0 0 0.45369864e-01 -0.70207926e-01 0.13483226e+01 0.00000000e+00
- 1 211 0 0 0.12598252e+00 0.45678840e+00 0.52803211e+01 0.13957000e+00
- 1 -211 0 0 0.35522399e+00 0.41203029e+00 0.61241434e+01 0.13957000e+00
- 2 111 779 780 0.46666007e-01 0.10978458e+00 0.15677537e+01 0.13498000e+00
- 1 22 0 0 0.26643936e-02 0.29816200e+00 0.45109848e+01 0.00000000e+00
- 1 22 0 0 0.73247904e-01 0.83022452e-01 0.13020681e+01 0.00000000e+00
- 1 22 0 0 -0.20152930e+00 0.30956822e+00 0.35006923e+01 0.00000000e+00
- 1 22 0 0 0.16700761e-01 0.71497450e-01 0.88161543e+00 0.00000000e+00
- 1 22 0 0 -0.65532349e-02 0.24827535e+00 0.26580462e+01 0.00000000e+00
- 1 22 0 0 0.11324272e-02 -0.13787805e-01 0.49019380e-01 0.00000000e+00
- 1 -2212 0 0 0.15265633e-01 0.17338349e+01 0.11532024e+02 0.93827000e+00
- 1 211 0 0 0.21757117e-01 0.34630698e+00 0.29948777e+01 0.13957000e+00
- 1 22 0 0 0.37379780e-01 0.77170545e+00 0.51407559e+01 0.00000000e+00
- 1 22 0 0 -0.32873143e-01 0.16218131e+00 0.14660585e+01 0.00000000e+00
- 1 22 0 0 -0.26767378e+00 0.15489867e+00 0.22272767e+01 0.00000000e+00
- 1 22 0 0 -0.71914184e-02 0.13340582e-01 0.17458986e-01 0.00000000e+00
- 1 22 0 0 -0.26221153e-01 0.28457663e+00 0.10925774e+01 0.00000000e+00
- 1 22 0 0 -0.36380020e+00 0.24319621e+01 0.80389707e+01 0.00000000e+00
- 1 22 0 0 0.46297108e-01 0.38984908e+00 0.96009458e+00 0.00000000e+00
- 1 22 0 0 0.39761851e-02 0.19753018e+00 0.28294700e+00 0.00000000e+00
- 1 22 0 0 -0.16225807e-01 0.23555930e+00 0.45742558e+00 0.00000000e+00
- 1 22 0 0 0.14830406e-02 0.12181275e+00 0.83816200e-01 0.00000000e+00
- 1 22 0 0 -0.12724888e-01 0.31015369e-01 0.88501927e-01 0.00000000e+00
- 1 22 0 0 0.23188047e+00 0.53842635e+00 0.81704654e+00 0.00000000e+00
- 1 22 0 0 -0.63012788e+00 0.13929139e+01 0.16686498e+01 0.00000000e+00
- 1 22 0 0 -0.43603988e-02 0.16637227e-01 0.47423615e-01 0.00000000e+00
- 1 22 0 0 -0.10129518e+00 0.17663581e+00 0.10271713e+00 0.00000000e+00
- 1 22 0 0 0.12628552e-01 0.18865920e+00 0.18193424e+00 0.00000000e+00
- 1 22 0 0 0.78524879e-02 0.18584676e-01 0.29808153e-02 0.00000000e+00
- 1 22 0 0 -0.34029735e+00 0.29101100e+00 0.47067266e+00 0.00000000e+00
- 1 22 0 0 0.35286879e-01 0.16359446e+00 0.18190559e+00 0.00000000e+00
- 1 22 0 0 -0.62845814e-01 0.30539740e-01 0.96113192e-01 0.00000000e+00
- 1 130 0 0 -0.22220786e+01 0.98143413e+00 0.19701628e+01 0.49767000e+00
- 2 310 781 782 -0.13005760e+01 0.58658635e+00 0.11028074e+01 0.49767000e+00
- 2 310 783 784 -0.12083286e+01 0.10297775e+00 0.26396039e+01 0.49767000e+00
- 1 22 0 0 -0.64344035e-01 0.81468467e-02 0.11076745e+00 0.00000000e+00
- 1 22 0 0 -0.42768637e+00 -0.79193260e-02 0.23606735e+00 0.00000000e+00
- 1 2212 0 0 -0.19012394e+01 -0.75426683e+00 0.50607251e+01 0.93827000e+00
- 1 -211 0 0 -0.38028845e+00 -0.11691728e+00 0.12669157e+01 0.13957000e+00
- 1 22 0 0 -0.65682691e-01 0.26661234e-01 0.20456994e+00 0.00000000e+00
- 1 22 0 0 -0.10453835e-01 -0.56905613e-01 0.27182901e-01 0.00000000e+00
- 1 22 0 0 -0.21204465e+00 -0.91000436e-02 0.48228262e+00 0.00000000e+00
- 1 22 0 0 -0.41445817e+00 -0.20758641e+00 0.94237478e+00 0.00000000e+00
- 1 22 0 0 -0.32697113e+00 -0.21724670e+00 0.17857478e+01 0.00000000e+00
- 1 22 0 0 -0.52005135e+00 -0.46169115e-01 0.75565366e+00 0.00000000e+00
- 1 22 0 0 -0.46985864e-01 -0.12064896e+00 0.41785570e+00 0.00000000e+00
- 1 22 0 0 -0.20139123e-01 -0.11192117e+01 0.34420076e+01 0.00000000e+00
- 1 22 0 0 0.26226566e-01 -0.57205859e-01 0.11332871e+00 0.00000000e+00
- 1 22 0 0 -0.13996754e+00 -0.77610175e+00 0.12774072e+01 0.00000000e+00
- 1 22 0 0 0.44832577e-01 -0.49476702e-01 0.30041553e+00 0.00000000e+00
- 1 22 0 0 0.49301582e+00 -0.10151548e+00 0.33770968e+01 0.00000000e+00
- 1 22 0 0 -0.13669607e-01 0.14664209e-01 0.50725428e-01 0.00000000e+00
- 1 22 0 0 0.77555558e-01 -0.20640682e+00 0.95767037e+00 0.00000000e+00
- 1 22 0 0 0.30957321e+00 -0.18466669e+00 0.93095151e+00 0.00000000e+00
- 1 22 0 0 0.93096050e-01 -0.89982090e-01 0.17389257e+00 0.00000000e+00
- 1 -211 0 0 0.91365350e+00 -0.73817086e+00 0.62312258e+00 0.13957000e+00
- 1 211 0 0 0.13696396e+01 -0.53163184e+00 0.68925413e+00 0.13957000e+00
- 1 22 0 0 0.12489421e+00 -0.13068925e+00 0.25353643e-01 0.00000000e+00
- 1 22 0 0 0.93277793e-01 -0.14417568e+00 0.16809006e+00 0.00000000e+00
- 1 22 0 0 0.17100330e+00 -0.20651627e+00 0.76802179e+00 0.00000000e+00
- 1 22 0 0 -0.17236313e-01 -0.91637096e-01 0.29146625e+00 0.00000000e+00
- 1 22 0 0 0.18465995e+01 -0.14696866e+01 0.41562585e+01 0.00000000e+00
- 1 22 0 0 0.32217797e+00 -0.21190752e+00 0.59800443e+00 0.00000000e+00
- 1 22 0 0 0.46583405e-02 -0.14593482e-01 -0.31580230e+01 0.00000000e+00
- 1 22 0 0 0.48366001e+00 -0.14949708e+00 -0.32832000e+02 0.00000000e+00
- 1 22 0 0 0.26289652e-01 0.16474322e+00 -0.13138154e+02 0.00000000e+00
- 1 22 0 0 0.15073252e+00 0.11437488e+00 -0.17287543e+02 0.00000000e+00
- 1 22 0 0 -0.59869606e-01 0.27937163e+00 -0.41221610e+02 0.00000000e+00
- 1 22 0 0 -0.18771249e-01 0.31608536e+00 -0.89664858e+01 0.00000000e+00
- 1 22 0 0 0.47490303e-01 -0.34643411e-01 -0.25055589e+02 0.00000000e+00
- 1 22 0 0 0.33092058e-01 -0.25053176e+00 -0.50353485e+02 0.00000000e+00
- 1 22 0 0 0.15254347e-01 0.10240389e+00 -0.12885835e+03 0.00000000e+00
- 1 22 0 0 0.14358115e-02 0.22094756e-02 -0.47778454e-01 0.00000000e+00
- 2 310 785 786 -0.47332966e+00 -0.18557162e+00 -0.20684567e+03 0.49767000e+00
- 1 22 0 0 0.16533741e+00 -0.18299441e+00 -0.57288073e+02 0.00000000e+00
- 1 22 0 0 0.49399347e-02 -0.11390875e-01 -0.22252067e+02 0.00000000e+00
- 1 22 0 0 -0.70339427e+00 -0.42708587e+00 -0.90589636e+02 0.00000000e+00
- 1 22 0 0 -0.15302126e+00 -0.12325412e+00 -0.15907276e+02 0.00000000e+00
- 1 22 0 0 -0.89664770e-01 -0.14559652e-01 -0.30304879e+01 0.00000000e+00
- 1 11 0 0 -0.78004547e-01 0.78047639e-02 -0.95147217e+01 0.51000000e-03
- 1 -11 0 0 -0.29551523e-01 0.40028516e-02 -0.30698788e+01 0.51000000e-03
- 1 22 0 0 -0.11230259e+00 0.55342663e-01 -0.10649271e+01 0.00000000e+00
- 1 22 0 0 0.74650718e-02 -0.26042426e-01 -0.86959250e+00 0.00000000e+00
- 1 22 0 0 -0.74161167e-01 0.79743509e-01 -0.12601196e+01 0.00000000e+00
- 1 22 0 0 -0.41456342e+00 0.87005438e-01 -0.41346688e+01 0.00000000e+00
- 1 22 0 0 -0.28537230e-01 0.28214442e-01 -0.10716398e+01 0.00000000e+00
- 1 22 0 0 -0.20305346e+00 0.26295352e+00 -0.29319243e+01 0.00000000e+00
- 1 211 0 0 -0.24033212e+01 -0.51008528e+00 -0.14838757e+02 0.13957000e+00
- 1 -211 0 0 -0.52797910e+00 0.19850237e-01 -0.27864154e+01 0.13957000e+00
- 1 22 0 0 0.39284322e-01 -0.17416188e+00 -0.79466071e+00 0.00000000e+00
- 1 22 0 0 0.26143901e+00 -0.30134963e+00 -0.20353563e+01 0.00000000e+00
- 1 22 0 0 0.40608384e-01 -0.13337313e-01 -0.83972555e-01 0.00000000e+00
- 1 22 0 0 -0.54078604e-01 -0.73555134e-01 -0.71683732e+00 0.00000000e+00
- 1 22 0 0 -0.32881126e+00 -0.41378141e+00 -0.24143781e+01 0.00000000e+00
- 1 22 0 0 -0.26077324e+00 -0.55980551e+00 -0.27511523e+01 0.00000000e+00
- 1 22 0 0 -0.76766668e-01 -0.11669157e+00 -0.26171263e+00 0.00000000e+00
- 1 22 0 0 -0.24651190e+00 -0.62930256e+00 -0.19267351e+01 0.00000000e+00
- 1 22 0 0 0.17428722e+00 -0.16361546e+01 -0.32926740e+01 0.00000000e+00
- 1 22 0 0 -0.87874976e-02 -0.30707293e+00 -0.52804952e+00 0.00000000e+00
- 1 22 0 0 0.13757999e+01 -0.43025516e+01 -0.13313252e+01 0.00000000e+00
- 1 22 0 0 0.11424549e+00 -0.24920553e+00 -0.76347842e-01 0.00000000e+00
- 1 22 0 0 0.53908989e-01 -0.17387427e+00 -0.94603306e-01 0.00000000e+00
- 1 22 0 0 0.34337888e-01 -0.20461201e+00 0.35474260e-01 0.00000000e+00
- 1 22 0 0 -0.41795947e-01 -0.21727037e+00 0.54107507e-02 0.00000000e+00
- 1 22 0 0 0.66130348e-01 -0.75403776e-01 -0.19719431e-01 0.00000000e+00
- 1 22 0 0 0.11694480e+00 0.15154457e-01 0.81055265e+00 0.00000000e+00
- 1 22 0 0 0.15979610e+00 0.97834727e-01 0.57501689e+00 0.00000000e+00
- 1 2212 0 0 0.11568401e+01 0.73730924e-01 0.66099945e+00 0.93827000e+00
- 1 -211 0 0 0.77369838e-01 0.80760888e-01 0.98100485e-01 0.13957000e+00
- 1 22 0 0 -0.26398093e-01 -0.25450379e-01 0.21210469e-01 0.00000000e+00
- 1 22 0 0 -0.73180224e-01 0.16860695e+00 0.11846386e+00 0.00000000e+00
- 1 22 0 0 -0.27346437e-01 0.54836761e+00 -0.12847594e+00 0.00000000e+00
- 1 22 0 0 -0.14651286e-01 0.62446438e-01 -0.67215181e-01 0.00000000e+00
- 1 22 0 0 0.10351943e+00 0.68448838e+00 -0.68023671e+00 0.00000000e+00
- 1 22 0 0 0.16764213e+00 0.41016900e+00 -0.40165411e+00 0.00000000e+00
- 1 22 0 0 -0.92286108e-01 0.33190419e+00 -0.46402677e+00 0.00000000e+00
- 1 22 0 0 -0.98035031e+00 0.26884185e+01 -0.33444213e+01 0.00000000e+00
- 1 22 0 0 -0.40080427e+00 0.54501645e+00 -0.89694971e+00 0.00000000e+00
- 1 22 0 0 -0.76533794e+00 0.12565156e+01 -0.22146126e+01 0.00000000e+00
- 1 22 0 0 -0.22567503e+00 0.50201219e+00 -0.81715012e+00 0.00000000e+00
- 1 22 0 0 -0.57728721e-01 0.21567195e+00 -0.20980091e+00 0.00000000e+00
- 1 22 0 0 -0.28858515e+00 0.52561847e+00 -0.79192031e+01 0.00000000e+00
- 1 22 0 0 -0.11265924e+01 0.17959982e+01 -0.25210275e+02 0.00000000e+00
- 1 -211 0 0 -0.15031650e+01 0.17122527e+01 -0.26180527e+02 0.13957000e+00
- 1 211 0 0 -0.33108749e+01 0.29372489e+01 -0.49740020e+02 0.13957000e+00
- 1 22 0 0 -0.31827083e+01 0.32017759e+01 -0.48148965e+02 0.00000000e+00
- 1 22 0 0 -0.34758635e+01 0.34478337e+01 -0.53695882e+02 0.00000000e+00
- 1 22 0 0 -0.12977360e+01 0.19636929e+01 -0.26870974e+02 0.00000000e+00
- 1 22 0 0 -0.11201105e-01 0.18762706e-01 -0.44839231e+00 0.00000000e+00
- 1 22 0 0 -0.35176608e-01 0.34743329e-02 -0.14733221e+01 0.00000000e+00
- 1 22 0 0 -0.36911840e+00 -0.38346205e+00 -0.14125340e+02 0.00000000e+00
- 1 22 0 0 -0.16638587e-01 0.17490311e-01 -0.24443062e-01 0.00000000e+00
- 1 22 0 0 -0.55019092e+00 -0.21657954e+00 -0.74939199e+00 0.00000000e+00
- 1 22 0 0 -0.45145869e+00 0.53152172e+00 -0.55294483e+00 0.00000000e+00
- 1 22 0 0 0.49420682e-02 -0.33499355e-02 -0.11180112e-01 0.00000000e+00
- 1 211 0 0 0.11605691e+00 0.20934043e+00 0.34377544e+01 0.13957000e+00
- 1 -211 0 0 0.26401362e+00 -0.87949530e-01 0.87441561e+01 0.13957000e+00
- 1 22 0 0 0.43490195e-01 -0.50581377e-02 0.17453684e+01 0.00000000e+00
- 1 22 0 0 -0.87744610e-01 0.70354340e-01 0.41608202e+01 0.00000000e+00
- 1 22 0 0 -0.89341347e-02 -0.42490189e-01 0.96734637e+00 0.00000000e+00
- 1 22 0 0 -0.49136697e-02 0.70238390e-01 0.41324430e+00 0.00000000e+00
- 1 22 0 0 -0.13857775e+00 -0.52788413e-01 0.42168782e+01 0.00000000e+00
- 1 22 0 0 -0.15894879e-01 0.33707573e-01 0.33185420e+01 0.00000000e+00
- 1 22 0 0 -0.38287474e-01 0.97193195e-01 0.15436344e+01 0.00000000e+00
- 1 22 0 0 -0.22808935e-02 -0.14563968e-02 0.25642411e+01 0.00000000e+00
- 1 22 0 0 0.17870146e-01 0.90940309e-01 0.64162867e+01 0.00000000e+00
- 1 22 0 0 -0.42654337e-01 0.10362850e+00 0.25018722e+01 0.00000000e+00
- 1 22 0 0 0.23403724e+00 -0.15210233e+00 0.24431117e+02 0.00000000e+00
- 1 22 0 0 0.17431374e+00 -0.25078961e+00 0.20700432e+02 0.00000000e+00
- 1 22 0 0 0.15564162e-01 -0.29191135e+00 0.10765829e+02 0.00000000e+00
- 1 22 0 0 0.77160937e-03 -0.35094062e-01 0.45097394e+01 0.00000000e+00
- 1 22 0 0 -0.31418261e-01 -0.47121428e-02 0.55080106e+00 0.00000000e+00
- 1 22 0 0 0.78084269e-01 0.11449673e+00 0.10169527e+01 0.00000000e+00
- 1 -211 0 0 -0.11419712e+01 0.49600445e+00 0.10503957e+01 0.13957000e+00
- 1 211 0 0 -0.15860478e+00 0.90581900e-01 0.52411708e-01 0.13957000e+00
- 1 211 0 0 -0.52376386e+00 0.73712551e-02 0.71366658e+00 0.13957000e+00
- 1 -211 0 0 -0.68456470e+00 0.95606494e-01 0.19259373e+01 0.13957000e+00
- 1 211 0 0 -0.89362196e-01 -0.54401010e-01 -0.12315526e+03 0.13957000e+00
- 1 -211 0 0 -0.38396746e+00 -0.13117061e+00 -0.83690409e+02 0.13957000e+00
- 661
- 2 25 2 3 -0.13002781e+02 0.11685944e+01 -0.41677747e+03 0.12500682e+03
- 2 23 4 6 -0.16528833e+02 -0.25795938e+02 -0.26699871e+03 0.69052733e+02
- 2 23 7 10 0.35260519e+01 0.26964532e+02 -0.14977876e+03 0.41703433e+02
- 1 11 0 0 -0.78944530e+01 0.91614835e+01 -0.51121424e+01 0.51000000e-03
- 1 -11 0 0 -0.86343796e+01 -0.34957420e+02 -0.26188656e+03 0.51000000e-03
- 1 22 0 0 -0.11779414e-06 -0.17058513e-05 -0.10281639e-04 0.00000000e+00
- 1 -11 0 0 -0.23347182e+01 0.14746683e+02 -0.14075613e+03 0.51000000e-03
- 1 22 0 0 0.56913469e-02 -0.41564089e-03 0.68359882e-02 0.00000000e+00
- 1 11 0 0 0.58550408e+01 0.12218186e+02 -0.90294062e+01 0.51000000e-03
- 1 22 0 0 0.37972567e-04 0.79134840e-04 -0.61308621e-04 0.00000000e+00
- 2 2 80 80 0.14972968e+02 0.96031941e+01 -0.28663096e+02 0.33000000e+00
- 2 2203 80 80 -0.17636317e+01 0.90241799e+00 -0.27760177e+04 0.77133000e+00
- 2 -2 92 92 0.18976987e+01 -0.49066068e+00 -0.19307790e+01 0.33000000e+00
- 2 21 92 92 -0.10449862e+01 0.48710539e+00 -0.15706170e+01 0.00000000e+00
- 2 21 92 92 0.19311983e+00 0.51540882e+00 -0.95215199e+00 0.00000000e+00
- 2 21 92 92 -0.21590740e+01 -0.21873226e+00 -0.52863807e+01 0.00000000e+00
- 2 21 92 92 -0.50817561e+01 -0.28484906e+01 0.70152086e+00 0.00000000e+00
- 2 21 92 92 0.10565811e+01 -0.26667927e+01 0.24934367e+01 0.00000000e+00
- 2 21 92 92 0.20903691e+00 -0.72871898e+00 0.98307214e+00 0.00000000e+00
- 2 21 92 92 0.42614915e+00 -0.11177137e+01 0.13505857e+01 0.00000000e+00
- 2 21 92 92 0.29091711e+01 -0.26032218e+01 0.35562729e+02 0.00000000e+00
- 2 21 92 92 0.42906867e+01 -0.30258429e+01 0.13017919e+03 0.00000000e+00
- 2 21 92 92 0.12839035e+01 -0.27751886e+01 0.98867216e+02 0.00000000e+00
- 2 21 92 92 -0.18511876e+01 -0.42523601e+01 0.66343804e+02 0.00000000e+00
- 2 21 92 92 -0.41896390e+01 -0.44728809e+01 0.10243069e+03 0.00000000e+00
- 2 21 92 92 -0.46484802e+00 -0.33561563e+00 0.74244087e+01 0.00000000e+00
- 2 21 92 92 -0.29091711e+01 0.26032218e+01 0.21161498e+03 0.00000000e+00
- 2 21 92 92 0.72554696e+00 -0.34670467e+00 -0.33195719e+01 0.00000000e+00
- 2 21 92 92 0.27872348e+00 -0.14727702e+01 -0.23752594e+01 0.00000000e+00
- 2 2 92 92 0.98927243e+00 0.24487887e+00 0.18291537e+03 0.33000000e+00
- 2 1 140 140 0.81829542e+00 -0.13179307e+01 -0.12813012e+02 0.33000000e+00
- 2 21 140 140 -0.21320279e+01 -0.43154523e+00 -0.30864318e+02 0.00000000e+00
- 2 21 140 140 -0.20546794e+01 -0.77860126e-01 -0.42831479e+02 0.00000000e+00
- 2 21 140 140 -0.19814826e+01 -0.16560548e+01 -0.10700698e+03 0.00000000e+00
- 2 21 140 140 0.24622885e-01 -0.86163033e+00 -0.19665073e+01 0.00000000e+00
- 2 21 140 140 0.86822038e+00 -0.46697063e+01 -0.27329428e+02 0.00000000e+00
- 2 21 140 140 -0.20842273e+01 -0.18120554e+01 -0.10531893e+03 0.00000000e+00
- 2 21 140 140 -0.86822038e+00 0.46697063e+01 -0.21029331e+04 0.00000000e+00
- 2 21 140 140 0.20842273e+01 0.18120554e+01 -0.68639498e+02 0.00000000e+00
- 2 21 140 140 0.50817561e+01 0.28484906e+01 -0.56774451e+02 0.00000000e+00
- 2 21 140 140 0.21590740e+01 0.21873226e+00 -0.27540063e+01 0.00000000e+00
- 2 21 140 140 0.93344664e+00 0.14512663e+00 -0.68014399e+00 0.00000000e+00
- 2 21 140 140 0.41896390e+01 0.44728809e+01 -0.14823631e+01 0.00000000e+00
- 2 21 140 140 0.72210021e+00 0.33920518e-01 0.72018100e+00 0.00000000e+00
- 2 21 140 140 0.18511876e+01 0.42523601e+01 0.18459645e+02 0.00000000e+00
- 2 21 140 140 -0.42906867e+01 0.30258429e+01 0.40394622e+02 0.00000000e+00
- 2 21 140 140 -0.93344664e+00 -0.14512663e+00 0.86790516e+01 0.00000000e+00
- 2 -2 140 140 0.71210997e+00 0.23021544e+01 -0.52178977e+00 0.33000000e+00
- 2 -1 193 193 0.15690207e+00 -0.34562835e+01 -0.56138016e+02 0.33000000e+00
- 2 21 193 193 0.25894682e+01 -0.32951477e+01 -0.27375569e+02 0.00000000e+00
- 2 21 193 193 -0.10263062e+01 -0.15498846e+00 -0.36880668e+02 0.00000000e+00
- 2 1 193 193 0.26564581e+00 0.39973646e+00 -0.10212682e+04 0.33000000e+00
- 2 2 204 204 0.15923018e+01 -0.52953618e+00 0.13267611e+01 0.33000000e+00
- 2 21 204 204 -0.15087521e+00 -0.67584616e-01 -0.54258818e+00 0.00000000e+00
- 2 21 204 204 -0.11076464e+01 -0.26216736e+00 0.20414689e+02 0.00000000e+00
- 2 21 204 204 -0.18784523e+00 -0.25547819e+01 0.45006297e+02 0.00000000e+00
- 2 21 204 204 -0.79739462e+00 -0.14919120e+00 0.53687198e+01 0.00000000e+00
- 2 2101 204 204 0.57603946e-01 0.63971669e+00 0.22258147e+04 0.57933000e+00
- 2 2 217 217 0.91393682e+00 0.29453137e-01 0.10020817e+04 0.00000000e+00
- 2 21 217 217 -0.38409742e+00 0.32620480e+00 0.56076635e+03 0.00000000e+00
- 2 -2 217 217 -0.91393682e+00 -0.29453137e-01 0.17283602e+00 0.00000000e+00
- 2 21 229 229 0.20151230e+01 -0.29205400e+01 0.17454064e+04 0.00000000e+00
- 2 21 229 229 -0.29145657e+00 -0.61552618e+00 0.23154993e+03 0.00000000e+00
- 2 21 229 229 -0.59902771e+00 -0.16654167e+00 0.48568466e+02 0.00000000e+00
- 2 21 229 229 -0.10565811e+01 0.26667927e+01 0.58549532e+00 0.00000000e+00
- 2 21 229 229 -0.42614915e+00 0.11177137e+01 -0.35622963e+00 0.00000000e+00
- 2 21 229 229 -0.24622885e-01 0.86163033e+00 -0.41107455e+00 0.00000000e+00
- 2 21 229 229 -0.20903691e+00 0.72871898e+00 -0.83791656e+00 0.00000000e+00
- 2 21 229 229 -0.12839035e+01 0.27751886e+01 -0.37243287e+01 0.00000000e+00
- 2 21 229 229 -0.20151230e+01 0.29205400e+01 -0.22179902e+02 0.00000000e+00
- 2 21 229 229 0.46484802e+00 0.33561563e+00 0.40613204e+01 0.00000000e+00
- 2 21 229 229 0.11167514e+01 0.25394840e+00 0.31503329e+02 0.00000000e+00
- 2 21 229 229 0.38409742e+00 -0.32620480e+00 0.29000497e+02 0.00000000e+00
- 2 21 229 229 0.59902771e+00 0.16654167e+00 0.48505836e+02 0.00000000e+00
- 2 21 229 229 0.29145657e+00 0.61552618e+00 0.56176861e+02 0.00000000e+00
- 2 21 258 258 -0.91234676e+00 -0.25486694e+01 0.51741565e+01 0.00000000e+00
- 2 21 258 258 -0.72210021e+00 -0.33920518e-01 0.10015731e+01 0.00000000e+00
- 2 21 258 258 -0.11167514e+01 -0.25394840e+00 0.12406541e+01 0.00000000e+00
- 2 21 258 258 0.91234676e+00 0.25486694e+01 -0.43312272e+01 0.00000000e+00
- 2 92 81 91 0.13209336e+02 0.10505612e+02 -0.28046807e+04 0.16792604e+03
- 2 113 270 271 0.36636846e+01 0.16893351e+01 -0.69955571e+01 0.92129604e+00
- 2 111 272 273 0.11995662e+01 0.14600119e+01 -0.27656217e+01 0.13498000e+00
- 2 113 274 275 0.83415599e+01 0.55995434e+01 -0.16634406e+02 0.76227385e+00
- 1 211 0 0 0.78645738e-01 -0.33735557e+00 -0.26843644e+01 0.13957000e+00
- 2 313 276 277 0.14418482e+01 0.89660953e+00 -0.42361812e+01 0.10917338e+01
- 1 -321 0 0 0.65060745e+00 0.28486806e+00 -0.21469640e+02 0.49360000e+00
- 2 113 278 279 -0.33513295e+00 0.41610037e+00 -0.11881858e+02 0.78180873e+00
- 1 211 0 0 -0.18169919e+00 -0.24868932e+00 -0.63779063e+02 0.13957000e+00
- 2 111 280 281 -0.18532907e+00 0.23855353e+00 -0.38102571e+02 0.13498000e+00
- 1 2212 0 0 -0.11817969e+00 0.87234048e-01 -0.10239239e+04 0.93827000e+00
- 2 223 282 284 -0.13462351e+01 0.41940093e+00 -0.16122076e+04 0.77649015e+00
- 2 92 93 139 -0.34407721e+01 -0.23505079e+02 0.82543224e+03 0.26280052e+03
- 2 223 285 287 -0.45948035e+00 0.10688048e+00 -0.12074071e+01 0.78083503e+00
- 2 -213 288 289 0.13363942e+01 0.12927490e+00 -0.16691549e+01 0.96540958e+00
- 1 211 0 0 -0.87227753e-02 -0.50721101e+00 -0.10863288e+01 0.13957000e+00
- 2 113 290 291 -0.62096701e+00 -0.74854362e-01 -0.16841343e+01 0.64743529e+00
- 2 113 292 293 -0.49973185e+00 0.42265391e+00 -0.32605958e+00 0.61801814e+00
- 2 -213 294 295 -0.42377092e+00 -0.14907242e+00 -0.19058471e+00 0.10294067e+01
- 2 223 296 298 -0.59924227e+00 -0.44160394e+00 -0.79518439e+00 0.78023630e+00
- 2 -2114 299 300 -0.20945782e+01 -0.21155853e+00 -0.20715182e+01 0.12498554e+01
- 1 2212 0 0 -0.53639117e+00 -0.83362963e+00 -0.31725043e+00 0.93827000e+00
- 2 113 301 302 -0.14184192e+01 -0.58322225e+00 0.27248434e+00 0.77837189e+00
- 2 331 303 304 -0.15502569e+00 -0.16995111e+01 0.14419329e+01 0.95777445e+00
- 1 -211 0 0 -0.74034740e-01 -0.43586742e+00 0.64800902e+00 0.13957000e+00
- 1 -2112 0 0 0.29182513e+00 -0.11614671e+01 0.17564658e+01 0.93957000e+00
- 1 2112 0 0 0.52254174e+00 -0.10843415e+01 0.10794366e+01 0.93957000e+00
- 1 211 0 0 0.10290069e+01 -0.12390627e+01 0.14141415e+02 0.13957000e+00
- 2 -213 305 306 0.74933314e+00 -0.55885248e+00 0.14032831e+02 0.85295871e+00
- 2 213 307 308 0.10586685e+01 -0.78062010e+00 0.77293929e+01 0.76225504e+00
- 2 -323 309 310 0.22835674e+01 -0.22441448e+01 0.63821513e+02 0.92899416e+00
- 1 321 0 0 0.17085728e+01 -0.27576959e+01 0.86591250e+02 0.49360000e+00
- 2 -323 311 312 0.79997194e+00 -0.41005858e+00 0.30670551e+02 0.10547099e+01
- 2 311 313 313 0.25251260e+00 -0.87672883e+00 0.15863146e+02 0.49767000e+00
- 2 -1114 314 315 -0.15720400e+01 -0.18740520e+01 0.60115848e+02 0.11882068e+01
- 2 -213 316 317 -0.65218767e+00 -0.16823684e+01 0.30756185e+02 0.78327733e+00
- 2 2114 318 319 -0.10510283e+00 -0.65717787e+00 0.33325523e+02 0.12408520e+01
- 2 331 320 322 -0.15218244e+01 -0.18417526e+01 0.50124918e+02 0.95665414e+00
- 1 211 0 0 0.69493215e-01 -0.22126058e+00 0.13331382e+01 0.13957000e+00
- 2 113 323 324 -0.12989192e+01 -0.19253062e+01 0.51788683e+02 0.72635878e+00
- 1 -211 0 0 -0.45940281e+00 0.16572721e+00 0.88618073e+01 0.13957000e+00
- 2 213 325 326 -0.77008011e+00 0.10658263e-01 0.39921555e+02 0.88197280e+00
- 1 -211 0 0 -0.58746260e+00 0.37024647e-01 0.35072598e+02 0.13957000e+00
- 2 213 327 328 -0.14463174e+00 0.38118269e+00 0.18416919e+02 0.77016577e+00
- 2 -323 329 330 -0.10157722e+01 0.60761049e+00 0.37974818e+02 0.72772405e+00
- 1 321 0 0 -0.15162416e+00 -0.93604899e-02 0.25252003e+02 0.49360000e+00
- 2 113 331 332 -0.31845618e-01 0.51746829e+00 0.15190095e+02 0.71114008e+00
- 2 111 333 334 -0.86195243e-01 -0.56785009e+00 0.14716361e+01 0.13498000e+00
- 1 -2212 0 0 -0.15261462e+00 0.75898426e+00 0.37611798e+01 0.93827000e+00
- 2 111 335 336 -0.20757005e+00 -0.18507699e+00 0.20757549e+01 0.13498000e+00
- 2 3214 337 338 0.42179088e+00 -0.32941633e+00 0.33339427e+01 0.14049121e+01
- 2 313 339 340 0.46591529e+00 -0.58619734e-01 -0.18044146e+01 0.88049719e+00
- 2 113 341 342 -0.24040616e+00 -0.52113700e+00 -0.37302628e+00 0.77385033e+00
- 2 213 343 344 -0.49911317e-01 -0.19204243e+00 -0.15820465e+01 0.80847765e+00
- 2 223 345 347 0.47250838e+00 -0.49508218e+00 -0.47045186e+00 0.78582303e+00
- 2 -2224 348 349 -0.12113802e+00 -0.74069249e+00 0.73054034e+00 0.11117828e+01
- 2 213 350 351 0.54845871e+00 0.81715840e+00 0.47491346e+01 0.75751255e+00
- 1 2212 0 0 0.68796010e-01 -0.56517944e+00 0.38163435e+02 0.93827000e+00
- 1 -211 0 0 -0.53822130e-01 0.14507734e-01 0.69847638e+02 0.13957000e+00
- 1 211 0 0 0.59278620e+00 0.44166732e+00 0.68694024e+02 0.13957000e+00
- 2 92 141 192 0.50999086e+01 0.12809361e+02 -0.24936625e+04 0.86876483e+03
- 1 -211 0 0 0.48036395e+00 -0.65294741e+00 -0.87704112e+01 0.13957000e+00
- 1 211 0 0 0.21834177e+00 -0.45195006e+00 -0.29050511e+01 0.13957000e+00
- 2 -213 352 353 -0.14806998e+01 0.15239347e-01 -0.19737629e+02 0.79104935e+00
- 2 323 354 355 -0.26009734e+01 -0.81021907e+00 -0.76199329e+02 0.87411102e+00
- 2 -323 356 357 -0.65470527e+00 -0.75005344e+00 -0.32707555e+02 0.87473197e+00
- 1 2212 0 0 -0.30875779e+00 -0.19854042e+00 -0.22825681e+02 0.93827000e+00
- 1 -2212 0 0 -0.52196743e+00 -0.89487808e+00 -0.23596525e+02 0.93827000e+00
- 2 221 358 360 -0.36632341e+00 -0.55339889e+00 -0.42597135e+01 0.54745000e+00
- 2 323 361 362 0.43267355e+00 -0.16026409e+01 -0.18027921e+02 0.88399852e+00
- 1 -321 0 0 -0.12778733e-01 -0.53612745e+00 -0.23281760e+01 0.49360000e+00
- 2 113 363 364 -0.10918469e+00 -0.11985824e+01 -0.84497742e+01 0.93613794e+00
- 2 111 365 366 -0.30870663e+00 -0.90768710e+00 -0.11391225e+02 0.13498000e+00
- 2 221 367 368 -0.16171453e-01 -0.30365102e+00 -0.10080391e+02 0.54745000e+00
- 2 113 369 370 -0.19297064e+00 -0.65505010e+00 -0.28128032e+02 0.89988493e+00
- 1 211 0 0 0.20926664e+00 0.93887801e-01 -0.22703081e+01 0.13957000e+00
- 1 -211 0 0 -0.33877157e+00 0.75556856e-01 -0.53510968e+01 0.13957000e+00
- 2 213 371 372 0.35302744e+00 0.96962730e-01 -0.35209392e+02 0.10721773e+01
- 2 -213 373 374 -0.11585031e+01 -0.13417428e+01 -0.10619902e+03 0.74207444e+00
- 2 111 375 376 0.95686665e-01 0.11070383e+00 -0.34978935e+02 0.13498000e+00
- 1 321 0 0 -0.76275307e+00 0.74943225e+00 -0.52931870e+03 0.49360000e+00
- 2 -313 377 378 0.23543101e-01 0.20446528e+01 -0.51585658e+03 0.88837703e+00
- 2 -213 379 380 -0.22735859e+00 0.15177807e+01 -0.92713921e+03 0.87489245e+00
- 1 211 0 0 0.49445547e+00 0.10438808e+01 -0.18904515e+02 0.13957000e+00
- 2 2114 381 382 0.27649948e+01 0.13554860e+01 -0.48012012e+02 0.13241610e+01
- 1 -211 0 0 0.84556258e-01 -0.13506075e+00 -0.99825603e+01 0.13957000e+00
- 2 -1114 383 384 0.14620059e+01 0.16898709e+01 -0.33442101e+02 0.11568380e+01
- 2 223 385 387 0.11236481e+01 0.66317558e+00 -0.11566460e+02 0.78239159e+00
- 1 -211 0 0 0.15042935e+01 -0.23090744e+00 -0.56228734e+01 0.13957000e+00
- 1 321 0 0 0.29930530e+00 -0.22919901e+00 -0.21112948e+01 0.49360000e+00
- 2 -311 388 388 0.29611492e+00 0.75835681e+00 -0.94980396e+00 0.49767000e+00
- 2 111 389 390 0.84553279e-01 0.19222609e+00 -0.35642978e+00 0.13498000e+00
- 2 1114 391 392 0.13244008e+01 0.10937425e+01 -0.21181666e+01 0.12453121e+01
- 1 211 0 0 0.29159913e+00 -0.20137141e+00 -0.76849498e-01 0.13957000e+00
- 1 -2212 0 0 0.21167309e+01 0.17091135e+01 -0.16871713e+01 0.93827000e+00
- 2 113 393 394 0.11732885e+01 -0.90428739e-01 0.35663443e-01 0.83499263e+00
- 2 223 395 397 0.51833200e+00 0.10305185e+01 0.91550632e-01 0.79991326e+00
- 2 113 398 399 0.12563070e+00 0.11611794e+00 0.46744804e+00 0.76444173e+00
- 2 113 400 401 0.13726328e+01 0.12706018e+01 0.13542157e+01 0.84299107e+00
- 2 113 402 403 0.78047792e+00 0.61532466e+00 0.21882722e+01 0.73144445e+00
- 2 213 404 405 0.18093047e+00 0.97189622e+00 0.65236811e+01 0.82569428e+00
- 1 2112 0 0 -0.11300675e+01 0.18380560e+01 0.11166145e+02 0.93957000e+00
- 1 -211 0 0 0.52111401e+00 0.65194906e+00 0.84810569e+01 0.13957000e+00
- 2 -1114 406 407 -0.13526862e+01 0.11547864e+01 0.12601783e+02 0.11332046e+01
- 2 223 408 410 -0.80080851e+00 0.70177720e+00 0.84059480e+01 0.79009873e+00
- 2 113 411 412 -0.55997249e+00 -0.88631235e-01 0.57228212e+01 0.81031391e+00
- 2 111 413 414 -0.35316599e+00 0.11537311e+01 0.53714072e+01 0.13498000e+00
- 2 -213 415 416 -0.92309266e-01 0.58395168e-01 0.22630617e+01 0.83216851e+00
- 1 211 0 0 -0.75744748e-01 0.85318789e-01 -0.38253584e+00 0.13957000e+00
- 1 -211 0 0 -0.15586408e+00 0.78534832e+00 0.13608329e+01 0.13957000e+00
- 1 321 0 0 0.53810413e+00 0.31998765e+00 0.26478679e+00 0.49360000e+00
- 2 -311 417 417 0.66780625e-01 0.11527537e+01 0.43054174e+00 0.49767000e+00
- 1 -211 0 0 -0.25569953e+00 -0.47420272e+00 0.55169115e+00 0.13957000e+00
- 2 92 194 203 0.19857098e+01 -0.65066831e+01 -0.11416624e+04 0.31004380e+02
- 1 211 0 0 0.41137265e+00 -0.36268487e+01 -0.51511985e+02 0.13957000e+00
- 2 111 418 419 0.12649001e+00 -0.14626348e+00 -0.47454598e+01 0.13498000e+00
- 2 113 420 421 0.44069693e+00 -0.98087001e+00 -0.69704189e+01 0.77059074e+00
- 2 221 422 423 0.48892557e+00 -0.74945401e+00 -0.10808172e+02 0.54745000e+00
- 2 223 424 426 0.10577600e+01 -0.11155870e+01 -0.21619261e+02 0.76313829e+00
- 2 -213 427 428 -0.37244491e+00 -0.14282371e-01 -0.63141005e+01 0.70835010e+00
- 2 113 429 430 -0.18392719e+00 -0.15066711e+00 -0.68001148e+02 0.76839974e+00
- 2 -313 431 432 0.15823002e+00 -0.51503483e-01 -0.76547065e+02 0.94607365e+00
- 2 313 433 434 -0.21534332e-01 0.30144369e+00 -0.41527604e+03 0.90357241e+00
- 2 221 435 437 -0.11985888e+00 0.27349377e-01 -0.47986876e+03 0.54745000e+00
- 2 92 205 216 -0.59385574e+00 -0.29235445e+01 0.22973886e+04 0.98515192e+02
- 2 223 438 440 0.88136179e+00 -0.52361512e+00 0.45572776e+00 0.78045421e+00
- 2 113 441 442 -0.99373705e-01 0.22629659e+00 0.10931709e+01 0.78819529e+00
- 1 2212 0 0 0.25213398e+00 -0.25651555e+00 0.16939444e+01 0.93827000e+00
- 1 -2212 0 0 0.20860265e+00 -0.30361706e+00 0.81263230e+00 0.93827000e+00
- 2 113 443 444 -0.55321197e+00 -0.82062561e+00 0.14791053e+02 0.71947432e+00
- 2 111 445 446 -0.49070686e+00 -0.73969393e+00 0.16285191e+02 0.13498000e+00
- 1 321 0 0 -0.55145547e+00 -0.72314106e+00 0.11557591e+02 0.49360000e+00
- 1 -321 0 0 0.13003669e+00 0.33418277e+00 0.74619670e+02 0.49360000e+00
- 2 213 447 448 -0.76291255e-01 -0.67913694e+00 0.13831832e+02 0.80404801e+00
- 2 111 449 450 -0.39432803e+00 0.18415754e+00 0.17814259e+03 0.13498000e+00
- 2 111 451 452 0.19781335e+00 0.44103967e-01 0.11818594e+02 0.13498000e+00
- 1 2112 0 0 -0.98436906e-01 0.33405985e+00 0.19722866e+04 0.93957000e+00
- 2 92 218 228 -0.38409742e+00 0.32620480e+00 0.15630209e+04 0.48694370e+02
- 2 113 453 454 0.41168195e+00 0.10555040e+01 0.72938754e+03 0.79250374e+00
- 1 211 0 0 0.17989696e+00 -0.88071494e+00 0.51811466e+03 0.13957000e+00
- 1 -211 0 0 -0.84113680e-01 -0.31425295e+00 0.14459347e+03 0.13957000e+00
- 2 2224 455 456 0.17112757e+00 0.49433871e+00 0.73819856e+02 0.11858443e+01
- 1 -211 0 0 -0.12163260e-01 -0.15598405e+00 0.92311909e+01 0.13957000e+00
- 1 -2212 0 0 -0.35214088e+00 0.13184267e+00 0.36827231e+02 0.93827000e+00
- 2 111 457 458 0.39521882e+00 0.17602989e+00 0.42852605e+02 0.13498000e+00
- 2 221 459 461 0.68133640e-03 0.20920988e+00 0.45479639e+01 0.54745000e+00
- 2 113 462 463 -0.52774834e+00 -0.35744326e+00 0.13366147e+01 0.71964595e+00
- 2 213 464 465 -0.22049204e+00 -0.21133186e+00 0.19370228e+01 0.83473024e+00
- 1 -211 0 0 -0.34604585e+00 0.17900675e+00 0.37271881e+00 0.13957000e+00
- 2 92 230 257 -0.10345968e+01 0.84134036e+01 0.21678487e+04 0.51585838e+03
- 2 111 466 467 -0.17260426e+00 -0.27084203e+00 -0.65415920e+00 0.13498000e+00
- 2 111 468 469 0.32508922e-01 0.14948823e+01 -0.38878371e+01 0.13498000e+00
- 1 -211 0 0 -0.15145907e+00 0.62208996e-01 -0.10771163e+01 0.13957000e+00
- 2 113 470 471 -0.85187451e+00 0.26208919e+00 -0.17091221e+01 0.69391162e+00
- 2 213 472 473 0.10601539e+00 0.28258954e+00 -0.62408857e+00 0.10330925e+01
- 1 -211 0 0 -0.52498896e+00 0.81997782e+00 -0.77860699e+01 0.13957000e+00
- 1 -2112 0 0 0.21412362e+00 -0.15769789e+00 -0.12690861e+01 0.93957000e+00
- 2 3122 474 475 -0.76166869e+00 0.45134846e+00 -0.21685098e+01 0.11156800e+01
- 2 323 476 477 0.47987817e+00 0.60128245e+00 0.13494486e+01 0.87620576e+00
- 2 -213 478 479 0.39461823e+00 -0.10369091e-02 0.20559692e+02 0.77598551e+00
- 1 -2112 0 0 0.53952623e+00 0.29448362e+00 0.39296715e+02 0.93957000e+00
- 1 2112 0 0 0.20536318e+00 0.21623498e+00 0.59099977e+02 0.93957000e+00
- 2 223 480 482 0.12981498e+01 -0.20061373e+00 0.21916405e+03 0.81163498e+00
- 2 -313 483 484 0.43586900e+00 -0.70355352e+00 0.14586237e+03 0.90736608e+00
- 2 323 485 486 0.84892399e-01 -0.96748244e+00 0.66803792e+03 0.83345731e+00
- 2 -213 487 488 0.12354709e+00 -0.37398207e+00 0.15032076e+03 0.63247887e+00
- 2 -313 489 490 -0.15667187e+00 -0.19940426e+00 0.38001194e+03 0.90428118e+00
- 2 311 491 491 0.99459834e+00 -0.15229766e+01 0.47770591e+03 0.49767000e+00
- 1 211 0 0 -0.61188748e+00 0.58359125e+00 0.87335941e+01 0.13957000e+00
- 1 -2212 0 0 0.76975957e-01 -0.61730784e-01 0.10257168e+02 0.93827000e+00
- 1 2112 0 0 0.43080992e+00 0.31238459e-01 0.30922765e+01 0.93957000e+00
- 2 113 492 493 -0.87335528e+00 0.39273957e-01 0.96387159e+01 0.73966830e+00
- 2 -313 494 495 0.64315044e-01 0.15387584e+01 0.70781182e+00 0.87051204e+00
- 2 323 496 497 -0.94424267e-01 0.97865274e+00 0.30754476e+00 0.86813978e+00
- 1 -211 0 0 -0.98105054e+00 0.11861275e+01 -0.66846664e+00 0.13957000e+00
- 2 213 498 499 -0.34681230e+00 0.11014113e+01 -0.22933260e+01 0.70221599e+00
- 2 113 500 501 -0.41848862e+00 0.13611212e+01 -0.10965746e+01 0.72959355e+00
- 2 223 502 503 -0.57050224e+00 0.15674518e+01 -0.30628370e+01 0.74963537e+00
- 2 92 259 269 -0.18388516e+01 -0.28786892e+00 0.30851565e+01 0.13394622e+02
- 2 313 504 505 -0.55998265e+00 0.38567233e+00 0.67402613e-01 0.88749722e+00
- 1 211 0 0 0.49684612e+00 -0.39004060e+00 -0.21689853e+00 0.13957000e+00
- 2 -2224 506 507 -0.36191341e+00 -0.13489666e+00 0.32283888e+00 0.12296717e+01
- 2 113 508 509 -0.70789447e+00 0.32450304e-01 0.18556982e+01 0.76809568e+00
- 2 2224 510 511 -0.42261887e+00 -0.84683372e+00 0.13173556e+01 0.11834536e+01
- 2 -213 512 513 0.23862908e+00 -0.13111567e-01 0.33601270e+00 0.68197300e+00
- 2 331 514 516 -0.11040962e+01 0.11281624e+00 0.10363391e+01 0.95747586e+00
- 1 211 0 0 0.21516787e+00 0.15956420e+00 -0.46457661e+00 0.13957000e+00
- 2 -213 517 518 0.32247348e+00 0.81751161e+00 -0.66324949e+00 0.80678300e+00
- 2 213 519 520 -0.49221037e+00 -0.72946565e+00 -0.25467533e+00 0.85998076e+00
- 1 -321 0 0 0.53674784e+00 0.31846460e+00 -0.25109053e+00 0.49360000e+00
- 1 -211 0 0 0.12019284e+00 0.24772945e+00 -0.58181781e+00 0.13957000e+00
- 1 211 0 0 0.35434918e+01 0.14416057e+01 -0.64137393e+01 0.13957000e+00
- 1 22 0 0 0.17065672e+00 0.28830199e+00 -0.49803892e+00 0.00000000e+00
- 1 22 0 0 0.10289095e+01 0.11717099e+01 -0.22675827e+01 0.00000000e+00
- 1 211 0 0 0.33115205e+00 0.20620590e+00 -0.58870988e+00 0.13957000e+00
- 1 -211 0 0 0.80104079e+01 0.53933375e+01 -0.16045696e+02 0.13957000e+00
- 2 311 521 521 0.91428683e+00 0.87900575e+00 -0.36312021e+01 0.49767000e+00
- 2 111 522 523 0.52756132e+00 0.17603777e-01 -0.60497902e+00 0.13498000e+00
- 1 -211 0 0 -0.38801129e-01 0.33277220e+00 -0.20509507e+01 0.13957000e+00
- 1 211 0 0 -0.29633182e+00 0.83328167e-01 -0.98309071e+01 0.13957000e+00
- 1 22 0 0 0.19073629e-01 0.15069656e-01 -0.16585974e+01 0.00000000e+00
- 1 22 0 0 -0.20440269e+00 0.22348388e+00 -0.36443973e+02 0.00000000e+00
- 1 -211 0 0 -0.80758059e+00 0.39040915e+00 -0.87543173e+03 0.13957000e+00
- 1 211 0 0 -0.33823693e+00 0.16410718e+00 -0.52288324e+03 0.13957000e+00
- 2 111 524 525 -0.20041754e+00 -0.13511541e+00 -0.21389266e+03 0.13498000e+00
- 1 211 0 0 -0.20118968e+00 0.47761430e-01 -0.77076830e+00 0.13957000e+00
- 1 -211 0 0 -0.13790786e+00 -0.16872653e+00 -0.17988730e+00 0.13957000e+00
- 2 111 526 527 -0.12038281e+00 0.22784558e+00 -0.25675145e+00 0.13498000e+00
- 1 -211 0 0 -0.22847440e-01 -0.90088123e-01 -0.53518725e+00 0.13957000e+00
- 2 111 528 529 0.13592417e+01 0.21936303e+00 -0.11339677e+01 0.13498000e+00
- 1 211 0 0 -0.40463608e+00 0.45150106e-01 -0.37756507e+00 0.13957000e+00
- 1 -211 0 0 -0.21633093e+00 -0.12000447e+00 -0.13065692e+01 0.13957000e+00
- 1 211 0 0 -0.15141722e+00 -0.10963949e+00 -0.10013238e-01 0.13957000e+00
- 1 -211 0 0 -0.34831463e+00 0.53229340e+00 -0.31604634e+00 0.13957000e+00
- 1 -211 0 0 -0.66743032e+00 0.28317212e-01 -0.35614882e+00 0.13957000e+00
- 2 111 530 531 0.24365940e+00 -0.17738963e+00 0.16556411e+00 0.13498000e+00
- 1 211 0 0 0.19314933e-01 -0.92485279e-01 -0.58428427e-02 0.13957000e+00
- 1 -211 0 0 -0.25575867e+00 0.21450741e-01 -0.12524684e+00 0.13957000e+00
- 2 111 532 533 -0.36279853e+00 -0.37056941e+00 -0.66409471e+00 0.13498000e+00
- 1 -2212 0 0 -0.16201876e+01 -0.38180829e+00 -0.14757436e+01 0.93827000e+00
- 1 211 0 0 -0.47439066e+00 0.17024977e+00 -0.59577457e+00 0.13957000e+00
- 1 -211 0 0 -0.11083877e+01 -0.50010607e+00 -0.10262653e+00 0.13957000e+00
- 1 211 0 0 -0.31003150e+00 -0.83116177e-01 0.37511087e+00 0.13957000e+00
- 1 22 0 0 -0.10428783e+00 -0.47929644e+00 0.24168561e+00 0.00000000e+00
- 2 113 534 535 -0.50737864e-01 -0.12202147e+01 0.12002473e+01 0.78571727e+00
- 1 -211 0 0 0.63280122e-01 -0.15051003e-01 0.69584280e+01 0.13957000e+00
- 2 111 536 537 0.68605301e+00 -0.54380148e+00 0.70744026e+01 0.13498000e+00
- 1 211 0 0 0.57835260e+00 -0.29385539e+00 0.55451764e+01 0.13957000e+00
- 2 111 538 539 0.48031586e+00 -0.48676472e+00 0.21842165e+01 0.13498000e+00
- 1 -321 0 0 0.64000297e+00 -0.86419043e+00 0.22992772e+02 0.49360000e+00
- 2 111 540 541 0.16435644e+01 -0.13799544e+01 0.40828741e+02 0.13498000e+00
- 1 -321 0 0 0.58110434e+00 -0.28106879e+00 0.28584664e+02 0.49360000e+00
- 2 111 542 543 0.21886760e+00 -0.12898980e+00 0.20858876e+01 0.13498000e+00
- 1 130 0 0 0.25251260e+00 -0.87672883e+00 0.15863146e+02 0.49767000e+00
- 1 -2112 0 0 -0.14666613e+01 -0.16720918e+01 0.50396928e+02 0.93957000e+00
- 1 211 0 0 -0.10537874e+00 -0.20196020e+00 0.97189206e+01 0.13957000e+00
- 1 -211 0 0 -0.79319020e+00 -0.11904477e+01 0.22788605e+02 0.13957000e+00
- 2 111 544 545 0.14100253e+00 -0.49192071e+00 0.79675802e+01 0.13498000e+00
- 1 2112 0 0 -0.55113941e-01 -0.53649533e+00 0.31765081e+02 0.93957000e+00
- 2 111 546 547 -0.49988886e-01 -0.12068253e+00 0.15604422e+01 0.13498000e+00
- 1 -211 0 0 -0.21557471e+00 -0.36006116e+00 0.11398202e+02 0.13957000e+00
- 1 211 0 0 -0.34956784e+00 -0.23186780e+00 0.75167090e+01 0.13957000e+00
- 2 221 548 550 -0.95668184e+00 -0.12498236e+01 0.31210007e+02 0.54745000e+00
- 1 211 0 0 -0.63796550e+00 -0.50166918e+00 0.13885765e+02 0.13957000e+00
- 1 -211 0 0 -0.66095370e+00 -0.14236370e+01 0.37902918e+02 0.13957000e+00
- 1 211 0 0 -0.53940227e+00 -0.39629580e+00 0.23763472e+02 0.13957000e+00
- 2 111 551 552 -0.23067784e+00 0.40695407e+00 0.16158082e+02 0.13498000e+00
- 1 211 0 0 -0.25055817e+00 0.28821715e+00 0.42829312e+01 0.13957000e+00
- 2 111 553 554 0.10592643e+00 0.92965536e-01 0.14133988e+02 0.13498000e+00
- 2 -311 555 555 -0.74537186e+00 0.50979737e+00 0.32265164e+02 0.49767000e+00
- 1 -211 0 0 -0.27040035e+00 0.97813112e-01 0.57096537e+01 0.13957000e+00
- 1 -211 0 0 -0.61752625e-01 0.62065523e+00 0.88603886e+01 0.13957000e+00
- 1 211 0 0 0.29907007e-01 -0.10318694e+00 0.63297067e+01 0.13957000e+00
- 1 22 0 0 0.10501224e-01 -0.19772467e-01 0.17235386e-01 0.00000000e+00
- 1 22 0 0 -0.96696467e-01 -0.54807762e+00 0.14544007e+01 0.00000000e+00
- 1 22 0 0 -0.16418956e+00 -0.67591337e-01 0.14181339e+01 0.00000000e+00
- 1 22 0 0 -0.43380493e-01 -0.11748565e+00 0.65762098e+00 0.00000000e+00
- 2 3122 556 557 0.54498565e+00 -0.21191843e+00 0.25560126e+01 0.11156800e+01
- 2 111 558 559 -0.12319477e+00 -0.11749790e+00 0.77793011e+00 0.13498000e+00
- 1 321 0 0 0.39030009e+00 -0.12979984e+00 -0.17721536e+01 0.49360000e+00
- 1 -211 0 0 0.75615203e-01 0.71180109e-01 -0.32260998e-01 0.13957000e+00
- 1 211 0 0 0.21339462e+00 -0.36567713e+00 -0.76896071e-01 0.13957000e+00
- 1 -211 0 0 -0.45380077e+00 -0.15545986e+00 -0.29613021e+00 0.13957000e+00
- 1 211 0 0 0.21695545e-01 -0.29043699e+00 -0.15729214e+01 0.13957000e+00
- 2 111 560 561 -0.71606862e-01 0.98394563e-01 -0.91250968e-02 0.13498000e+00
- 1 -211 0 0 0.18805297e+00 -0.26183431e+00 0.11457909e-01 0.13957000e+00
- 1 211 0 0 -0.57061607e-01 -0.20951683e+00 -0.23167948e+00 0.13957000e+00
- 2 111 562 563 0.34151702e+00 -0.23731040e-01 -0.25023028e+00 0.13498000e+00
- 1 -2212 0 0 -0.97759752e-01 -0.59187084e+00 0.50622436e+00 0.93827000e+00
- 1 -211 0 0 -0.23378268e-01 -0.14882165e+00 0.22431598e+00 0.13957000e+00
- 1 211 0 0 0.53888773e+00 0.87134343e+00 0.45238165e+01 0.13957000e+00
- 2 111 564 565 0.95709830e-02 -0.54185036e-01 0.22531815e+00 0.13498000e+00
- 1 -211 0 0 -0.15402193e+00 0.15638125e+00 -0.60888132e+01 0.13957000e+00
- 2 111 566 567 -0.13266779e+01 -0.14114190e+00 -0.13648816e+02 0.13498000e+00
- 2 311 568 568 -0.12213455e+01 -0.61929565e+00 -0.40945749e+02 0.49767000e+00
- 1 211 0 0 -0.13796280e+01 -0.19092342e+00 -0.35253581e+02 0.13957000e+00
- 2 -311 569 569 -0.21695060e+00 -0.56563169e+00 -0.23974318e+02 0.49767000e+00
- 1 -211 0 0 -0.43775468e+00 -0.18442175e+00 -0.87332373e+01 0.13957000e+00
- 2 111 570 571 -0.20976842e+00 -0.37620572e+00 -0.21929003e+01 0.13498000e+00
- 2 111 572 573 0.26455501e-01 -0.92545032e-01 -0.88087123e+00 0.13498000e+00
- 2 111 574 575 -0.18301049e+00 -0.84648129e-01 -0.11859420e+01 0.13498000e+00
- 2 311 576 576 0.18926046e+00 -0.14798553e+01 -0.14791861e+02 0.49767000e+00
- 1 211 0 0 0.24341308e+00 -0.12278556e+00 -0.32360600e+01 0.13957000e+00
- 1 -211 0 0 0.18754658e+00 -0.11593756e+01 -0.61268554e+01 0.13957000e+00
- 1 211 0 0 -0.29673127e+00 -0.39206798e-01 -0.23229187e+01 0.13957000e+00
- 1 22 0 0 -0.46187823e-01 -0.17296563e+00 -0.28000459e+01 0.00000000e+00
- 1 22 0 0 -0.26251881e+00 -0.73472147e+00 -0.85911793e+01 0.00000000e+00
- 1 22 0 0 0.44048835e-01 -0.28656406e+00 -0.21811374e+01 0.00000000e+00
- 1 22 0 0 -0.60220288e-01 -0.17086956e-01 -0.78992539e+01 0.00000000e+00
- 1 -211 0 0 0.32723938e+00 -0.25021128e+00 -0.13781212e+02 0.13957000e+00
- 1 211 0 0 -0.52021002e+00 -0.40483881e+00 -0.14346819e+02 0.13957000e+00
- 1 211 0 0 0.53118396e+00 0.45261144e+00 -0.22921276e+02 0.13957000e+00
- 2 111 577 578 -0.17815651e+00 -0.35564871e+00 -0.12288116e+02 0.13498000e+00
- 1 -211 0 0 -0.27543120e+00 -0.68355054e+00 -0.56636865e+02 0.13957000e+00
- 2 111 579 580 -0.88307191e+00 -0.65819230e+00 -0.49562153e+02 0.13498000e+00
- 1 22 0 0 -0.15127904e-02 0.10133346e+00 -0.18310307e+02 0.00000000e+00
- 1 22 0 0 0.97199455e-01 0.93703680e-02 -0.16668628e+02 0.00000000e+00
- 1 -321 0 0 0.64260704e-01 0.12653427e+01 -0.25628731e+03 0.49360000e+00
- 1 211 0 0 -0.40717603e-01 0.77931003e+00 -0.25956926e+03 0.13957000e+00
- 1 -211 0 0 0.29148877e+00 0.85384476e+00 -0.48698358e+03 0.13957000e+00
- 2 111 581 582 -0.51884736e+00 0.66393595e+00 -0.44015563e+03 0.13498000e+00
- 1 2212 0 0 0.23442159e+01 0.12259755e+01 -0.44191792e+02 0.93827000e+00
- 1 -211 0 0 0.42077893e+00 0.12951044e+00 -0.38202195e+01 0.13957000e+00
- 1 -2112 0 0 0.99390284e+00 0.12950986e+01 -0.25926347e+02 0.93957000e+00
- 1 211 0 0 0.46810301e+00 0.39477234e+00 -0.75157541e+01 0.13957000e+00
- 1 -211 0 0 0.35642243e+00 0.43163360e+00 -0.56515735e+01 0.13957000e+00
- 1 211 0 0 0.27458871e+00 0.25865339e+00 -0.27135078e+01 0.13957000e+00
- 2 111 583 584 0.49263692e+00 -0.27111408e-01 -0.32013783e+01 0.13498000e+00
- 1 130 0 0 0.29611492e+00 0.75835681e+00 -0.94980396e+00 0.49767000e+00
- 1 22 0 0 0.10357101e-01 0.58553576e-02 0.11213143e-01 0.00000000e+00
- 1 22 0 0 0.74196178e-01 0.18637074e+00 -0.36764293e+00 0.00000000e+00
- 1 2112 0 0 0.12961848e+01 0.10160136e+01 -0.21081861e+01 0.93957000e+00
- 1 -211 0 0 0.28215954e-01 0.77728888e-01 -0.99804061e-02 0.13957000e+00
- 1 211 0 0 0.11061800e+01 -0.94147401e-01 0.28057709e+00 0.13957000e+00
- 1 -211 0 0 0.67108562e-01 0.37186619e-02 -0.24491365e+00 0.13957000e+00
- 1 -211 0 0 0.17880440e+00 0.48211146e+00 0.13602472e+00 0.13957000e+00
- 1 211 0 0 -0.19725017e-01 -0.20980297e-02 0.96854623e-01 0.13957000e+00
- 2 111 585 586 0.35925261e+00 0.55050506e+00 -0.14132871e+00 0.13498000e+00
- 1 211 0 0 0.69161316e-01 -0.28617108e+00 0.84106295e-01 0.13957000e+00
- 1 -211 0 0 0.56469381e-01 0.40228901e+00 0.38334175e+00 0.13957000e+00
- 1 211 0 0 0.25133876e+00 0.75016985e+00 0.45501237e+00 0.13957000e+00
- 1 -211 0 0 0.11212940e+01 0.52043198e+00 0.89920337e+00 0.13957000e+00
- 1 211 0 0 -0.79782680e-01 0.22306667e+00 0.56911343e+00 0.13957000e+00
- 1 -211 0 0 0.86026060e+00 0.39225799e+00 0.16191588e+01 0.13957000e+00
- 1 211 0 0 0.36445281e+00 0.93950864e+00 0.58481352e+01 0.13957000e+00
- 2 111 587 588 -0.18352233e+00 0.32387576e-01 0.67554599e+00 0.13498000e+00
- 1 -2112 0 0 -0.10831255e+01 0.80092470e+00 0.97265381e+01 0.93957000e+00
- 1 211 0 0 -0.26956063e+00 0.35386173e+00 0.28752450e+01 0.13957000e+00
- 1 -211 0 0 -0.56116878e+00 0.42795925e+00 0.36687635e+01 0.13957000e+00
- 1 211 0 0 -0.16788148e+00 0.12941223e+00 0.11395331e+01 0.13957000e+00
- 2 111 589 590 -0.71758246e-01 0.14440572e+00 0.35976513e+01 0.13498000e+00
- 1 -211 0 0 -0.50288978e+00 -0.35991304e+00 0.29405821e+01 0.13957000e+00
- 1 211 0 0 -0.57082708e-01 0.27128181e+00 0.27822392e+01 0.13957000e+00
- 1 22 0 0 -0.28988550e+00 0.10727706e+01 0.48970491e+01 0.00000000e+00
- 1 22 0 0 -0.63280490e-01 0.80960556e-01 0.47435813e+00 0.00000000e+00
- 1 -211 0 0 0.79604130e-01 -0.17837019e+00 0.19489816e+01 0.13957000e+00
- 2 111 591 592 -0.17191340e+00 0.23676536e+00 0.31408010e+00 0.13498000e+00
- 1 130 0 0 0.66780625e-01 0.11527537e+01 0.43054174e+00 0.49767000e+00
- 1 22 0 0 -0.24664598e-01 -0.36514516e-02 -0.79820949e+00 0.00000000e+00
- 1 22 0 0 0.15115461e+00 -0.14261203e+00 -0.39472503e+01 0.00000000e+00
- 1 -211 0 0 -0.10386734e+00 -0.32405682e+00 -0.10705180e+01 0.13957000e+00
- 1 211 0 0 0.54456427e+00 -0.65681319e+00 -0.58999009e+01 0.13957000e+00
- 1 22 0 0 0.57791958e+00 -0.61515445e+00 -0.75958707e+01 0.00000000e+00
- 1 22 0 0 -0.88994017e-01 -0.13429956e+00 -0.32123011e+01 0.00000000e+00
- 1 211 0 0 0.19133048e+00 -0.35349820e+00 -0.36076523e+01 0.13957000e+00
- 1 -211 0 0 0.19405596e+00 -0.34630340e+00 -0.79362688e+01 0.13957000e+00
- 2 111 593 594 0.67237354e+00 -0.41578538e+00 -0.10075340e+02 0.13498000e+00
- 1 -211 0 0 -0.12784597e-01 -0.15045093e+00 -0.56759149e+00 0.13957000e+00
- 2 111 595 596 -0.35966032e+00 0.13616856e+00 -0.57465090e+01 0.13498000e+00
- 1 211 0 0 -0.20855853e+00 -0.42159209e+00 -0.37094334e+02 0.13957000e+00
- 1 -211 0 0 0.24631335e-01 0.27092499e+00 -0.30906814e+02 0.13957000e+00
- 1 -321 0 0 0.92362650e-01 -0.14846296e+00 -0.72534074e+02 0.49360000e+00
- 1 211 0 0 0.65867369e-01 0.96959474e-01 -0.40129916e+01 0.13957000e+00
- 1 321 0 0 0.13458060e+00 -0.87219575e-03 -0.31557384e+03 0.49360000e+00
- 1 -211 0 0 -0.15611493e+00 0.30231589e+00 -0.99702193e+02 0.13957000e+00
- 1 211 0 0 -0.24703986e-01 0.17665028e+00 -0.16397207e+03 0.13957000e+00
- 1 -211 0 0 -0.62534289e-01 -0.95715853e-01 -0.17401998e+03 0.13957000e+00
- 2 111 597 598 -0.32620601e-01 -0.53585050e-01 -0.14187672e+03 0.13498000e+00
- 1 211 0 0 0.60120355e+00 -0.30665607e+00 -0.13859531e-01 0.13957000e+00
- 1 -211 0 0 0.15836241e-01 -0.67249877e-01 0.14979387e+00 0.13957000e+00
- 2 111 599 600 0.26432200e+00 -0.14970917e+00 0.31979343e+00 0.13498000e+00
- 1 -211 0 0 0.13896551e-01 -0.20081964e+00 0.76251867e+00 0.13957000e+00
- 1 211 0 0 -0.11327026e+00 0.42711623e+00 0.33065226e+00 0.13957000e+00
- 1 -211 0 0 -0.20659861e+00 -0.58240858e+00 0.49256293e+01 0.13957000e+00
- 1 211 0 0 -0.34661336e+00 -0.23821703e+00 0.98654236e+01 0.13957000e+00
- 1 22 0 0 -0.31178739e+00 -0.55364850e+00 0.10820721e+02 0.00000000e+00
- 1 22 0 0 -0.17891947e+00 -0.18604543e+00 0.54644706e+01 0.00000000e+00
- 1 211 0 0 0.16344845e+00 -0.15952837e-01 0.11587880e+01 0.13957000e+00
- 2 111 601 602 -0.23973971e+00 -0.66318411e+00 0.12673044e+02 0.13498000e+00
- 1 22 0 0 -0.83364154e-02 0.39662774e-01 0.22790810e+02 0.00000000e+00
- 1 22 0 0 -0.38599161e+00 0.14449477e+00 0.15535178e+03 0.00000000e+00
- 1 22 0 0 0.17738389e+00 0.67678347e-01 0.75239949e+01 0.00000000e+00
- 1 22 0 0 0.20429453e-01 -0.23574381e-01 0.42945994e+01 0.00000000e+00
- 1 -211 0 0 0.26964507e+00 0.70055176e+00 0.63184882e+03 0.13957000e+00
- 1 211 0 0 0.14203688e+00 0.35495221e+00 0.97538723e+02 0.13957000e+00
- 1 2212 0 0 0.24474019e+00 0.54649028e+00 0.59471650e+02 0.93827000e+00
- 1 211 0 0 -0.73612626e-01 -0.52151574e-01 0.14348207e+02 0.13957000e+00
- 1 22 0 0 0.10982530e+00 0.15875368e-01 0.67364132e+01 0.00000000e+00
- 1 22 0 0 0.28539352e+00 0.16015453e+00 0.36116192e+02 0.00000000e+00
- 2 111 603 604 -0.11392782e+00 0.11111053e+00 0.23449104e+01 0.13498000e+00
- 2 111 605 606 0.11355997e+00 0.12040624e+00 0.11719241e+01 0.13498000e+00
- 2 111 607 608 0.10491843e-02 -0.22306891e-01 0.10311295e+01 0.13498000e+00
- 1 211 0 0 -0.42845227e+00 -0.20231201e-01 0.11271944e+01 0.13957000e+00
- 1 -211 0 0 -0.99296071e-01 -0.33721206e+00 0.20942034e+00 0.13957000e+00
- 1 211 0 0 -0.42169013e+00 0.68089530e-01 0.63657392e+00 0.13957000e+00
- 2 111 609 610 0.20119809e+00 -0.27942139e+00 0.13004489e+01 0.13498000e+00
- 1 22 0 0 -0.14677510e+00 -0.17967129e+00 -0.32982282e+00 0.00000000e+00
- 1 22 0 0 -0.25829154e-01 -0.91170743e-01 -0.32433637e+00 0.00000000e+00
- 1 22 0 0 0.66297949e-01 0.42742972e+00 -0.10604121e+01 0.00000000e+00
- 1 22 0 0 -0.33789027e-01 0.10674526e+01 -0.28274249e+01 0.00000000e+00
- 1 -211 0 0 -0.35022830e+00 -0.44422854e-01 -0.11997558e+01 0.13957000e+00
- 1 211 0 0 -0.50164621e+00 0.30651204e+00 -0.50936632e+00 0.13957000e+00
- 1 211 0 0 -0.43424340e+00 0.19490717e+00 -0.18431748e+00 0.13957000e+00
- 2 111 611 612 0.54025880e+00 0.87682362e-01 -0.43977109e+00 0.13498000e+00
- 1 2212 0 0 -0.55629945e+00 0.43809545e+00 -0.17754222e+01 0.93827000e+00
- 1 -211 0 0 -0.20536925e+00 0.13253010e-01 -0.39308757e+00 0.13957000e+00
- 2 311 613 613 0.11840940e+00 0.57219456e+00 0.78248014e+00 0.49767000e+00
- 1 211 0 0 0.36146878e+00 0.29087887e-01 0.56696846e+00 0.13957000e+00
- 1 -211 0 0 0.10659022e+00 0.11481835e+00 0.17226142e+02 0.13957000e+00
- 2 111 614 615 0.28802801e+00 -0.11585526e+00 0.33335502e+01 0.13498000e+00
- 1 211 0 0 0.65579065e-01 0.94597483e-01 0.16414509e+02 0.13957000e+00
- 1 -211 0 0 0.81772612e+00 -0.13326048e+00 0.10633137e+03 0.13957000e+00
- 2 111 616 617 0.41484461e+00 -0.16195073e+00 0.96418175e+02 0.13498000e+00
- 1 -321 0 0 0.18685870e+00 -0.72021016e-01 0.67939201e+02 0.49360000e+00
- 1 211 0 0 0.24901031e+00 -0.63153251e+00 0.77923167e+02 0.13957000e+00
- 2 311 618 618 0.18484585e+00 -0.65609275e+00 0.56109930e+03 0.49767000e+00
- 1 211 0 0 -0.99953448e-01 -0.31138969e+00 0.10693862e+03 0.13957000e+00
- 1 -211 0 0 0.52304810e-02 -0.47770203e+00 0.12527399e+03 0.13957000e+00
- 2 111 619 620 0.11831661e+00 0.10371997e+00 0.25046768e+02 0.13498000e+00
- 2 -311 621 621 0.96423914e-01 -0.36968127e-01 0.13799613e+03 0.49767000e+00
- 2 111 622 623 -0.25309578e+00 -0.16243613e+00 0.24201581e+03 0.13498000e+00
- 2 310 624 625 0.99459834e+00 -0.15229766e+01 0.47770591e+03 0.49767000e+00
- 1 211 0 0 -0.36040559e+00 -0.30823905e+00 0.50300426e+01 0.13957000e+00
- 1 -211 0 0 -0.51294969e+00 0.34751301e+00 0.46086733e+01 0.13957000e+00
- 2 -311 626 626 0.36096110e-01 0.15014523e+01 0.75751494e+00 0.49767000e+00
- 2 111 627 628 0.28218933e-01 0.37306111e-01 -0.49703116e-01 0.13498000e+00
- 2 311 629 629 0.15067502e-01 0.43056107e+00 0.39020372e+00 0.49767000e+00
- 1 211 0 0 -0.10949177e+00 0.54809167e+00 -0.82658952e-01 0.13957000e+00
- 1 211 0 0 -0.42151629e-01 0.80020782e+00 -0.18925725e+01 0.13957000e+00
- 2 111 630 631 -0.30466067e+00 0.30120344e+00 -0.40075344e+00 0.13498000e+00
- 1 211 0 0 0.76928018e-02 0.10199043e+00 0.48496948e-01 0.13957000e+00
- 1 -211 0 0 -0.42618142e+00 0.12591307e+01 -0.11450715e+01 0.13957000e+00
- 1 22 0 0 -0.13322991e+00 -0.42126278e-01 -0.13128982e+00 0.00000000e+00
- 2 111 632 633 -0.43727233e+00 0.16095780e+01 -0.29315471e+01 0.13498000e+00
- 2 311 634 634 -0.10834092e+00 0.38957565e+00 -0.15495370e-01 0.49767000e+00
- 2 111 635 636 -0.45164173e+00 -0.39033198e-02 0.82897982e-01 0.13498000e+00
- 1 -2212 0 0 -0.34078753e+00 -0.25799006e+00 0.42520625e+00 0.93827000e+00
- 1 -211 0 0 -0.21125885e-01 0.12309340e+00 -0.10236737e+00 0.13957000e+00
- 1 211 0 0 0.11644027e+00 -0.83803462e-01 0.38917184e+00 0.13957000e+00
- 1 -211 0 0 -0.82433474e+00 0.11625377e+00 0.14665263e+01 0.13957000e+00
- 1 2212 0 0 -0.37183942e+00 -0.87962879e+00 0.12779033e+01 0.93827000e+00
- 1 211 0 0 -0.50779454e-01 0.32795069e-01 0.39452303e-01 0.13957000e+00
- 1 -211 0 0 0.32994818e+00 -0.19987030e+00 0.36277354e+00 0.13957000e+00
- 2 111 637 638 -0.91319106e-01 0.18675873e+00 -0.26760833e-01 0.13498000e+00
- 2 111 639 640 -0.21992483e+00 -0.54210485e-01 0.34157741e+00 0.13498000e+00
- 2 111 641 642 -0.96759322e-01 0.69039887e-01 0.23406944e+00 0.13498000e+00
- 2 221 643 645 -0.78741206e+00 0.97986839e-01 0.46069222e+00 0.54745000e+00
- 1 -211 0 0 0.56606094e+00 0.48964246e+00 -0.39117583e+00 0.13957000e+00
- 2 111 646 647 -0.24358746e+00 0.32786915e+00 -0.27207366e+00 0.13498000e+00
- 1 211 0 0 -0.53955073e+00 -0.10175025e+00 -0.65980265e-02 0.13957000e+00
- 2 111 648 649 0.47340360e-01 -0.62771540e+00 -0.24807731e+00 0.13498000e+00
- 1 130 0 0 0.91428683e+00 0.87900575e+00 -0.36312021e+01 0.49767000e+00
- 1 22 0 0 0.36271163e+00 0.50282514e-01 -0.33590072e+00 0.00000000e+00
- 1 22 0 0 0.16484969e+00 -0.32678738e-01 -0.26907830e+00 0.00000000e+00
- 1 22 0 0 -0.11880235e+00 -0.11017398e-01 -0.69126975e+02 0.00000000e+00
- 1 22 0 0 -0.81615186e-01 -0.12409801e+00 -0.14476568e+03 0.00000000e+00
- 1 22 0 0 -0.68504718e-01 0.11791664e+00 -0.44571037e-01 0.00000000e+00
- 1 22 0 0 -0.51878093e-01 0.10992894e+00 -0.21218041e+00 0.00000000e+00
- 1 22 0 0 0.12383688e+01 0.18059921e+00 -0.98182733e+00 0.00000000e+00
- 1 22 0 0 0.12087287e+00 0.38763816e-01 -0.15214034e+00 0.00000000e+00
- 1 22 0 0 0.22082321e+00 -0.19990220e+00 0.15405610e+00 0.00000000e+00
- 1 22 0 0 0.22836191e-01 0.22512565e-01 0.11508015e-01 0.00000000e+00
- 1 22 0 0 -0.11214165e+00 -0.16433508e+00 -0.16751950e+00 0.00000000e+00
- 1 22 0 0 -0.25065688e+00 -0.20623433e+00 -0.49657520e+00 0.00000000e+00
- 1 -211 0 0 -0.28460907e+00 -0.46807837e+00 0.19213556e+00 0.13957000e+00
- 1 211 0 0 0.23387120e+00 -0.75213628e+00 0.10081118e+01 0.13957000e+00
- 1 22 0 0 0.38323011e+00 -0.21917356e+00 0.34255705e+01 0.00000000e+00
- 1 22 0 0 0.30282290e+00 -0.32462792e+00 0.36488322e+01 0.00000000e+00
- 1 22 0 0 0.37406879e+00 -0.42351435e+00 0.19121944e+01 0.00000000e+00
- 1 22 0 0 0.10624707e+00 -0.63250367e-01 0.27202205e+00 0.00000000e+00
- 1 22 0 0 0.15330110e+01 -0.12593974e+01 0.37125536e+02 0.00000000e+00
- 1 22 0 0 0.11055339e+00 -0.12055701e+00 0.37032047e+01 0.00000000e+00
- 1 22 0 0 0.14931267e+00 -0.91939274e-01 0.18167947e+01 0.00000000e+00
- 1 22 0 0 0.69554935e-01 -0.37050522e-01 0.26909286e+00 0.00000000e+00
- 1 22 0 0 0.61961227e-01 -0.36438354e+00 0.62945734e+01 0.00000000e+00
- 1 22 0 0 0.79041304e-01 -0.12753716e+00 0.16730068e+01 0.00000000e+00
- 1 22 0 0 -0.41010030e-01 0.19790881e-01 0.47452973e+00 0.00000000e+00
- 1 22 0 0 -0.89788558e-02 -0.14047342e+00 0.10859124e+01 0.00000000e+00
- 2 111 650 651 -0.46206802e+00 -0.78968197e+00 0.16197727e+02 0.13498000e+00
- 2 111 652 653 -0.30579001e+00 -0.26864139e+00 0.77655161e+01 0.13498000e+00
- 2 111 654 655 -0.18882381e+00 -0.19150025e+00 0.72467635e+01 0.13498000e+00
- 1 22 0 0 -0.14954232e+00 0.15877525e+00 0.87989263e+01 0.00000000e+00
- 1 22 0 0 -0.81135522e-01 0.24817881e+00 0.73591559e+01 0.00000000e+00
- 1 22 0 0 0.94871723e-01 0.11997737e+00 0.13211865e+02 0.00000000e+00
- 1 22 0 0 0.11054707e-01 -0.27011835e-01 0.92212247e+00 0.00000000e+00
- 2 310 656 657 -0.74537186e+00 0.50979737e+00 0.32265164e+02 0.49767000e+00
- 1 2212 0 0 0.40876110e+00 -0.90786964e-01 0.20153532e+01 0.93827000e+00
- 1 -211 0 0 0.13622455e+00 -0.12113147e+00 0.54065943e+00 0.13957000e+00
- 1 22 0 0 -0.95576543e-01 -0.14771436e+00 0.64907835e+00 0.00000000e+00
- 1 22 0 0 -0.27618229e-01 0.30216467e-01 0.12885176e+00 0.00000000e+00
- 1 22 0 0 -0.54228982e-01 0.12815812e+00 -0.29046317e-01 0.00000000e+00
- 1 22 0 0 -0.17377880e-01 -0.29763559e-01 0.19921220e-01 0.00000000e+00
- 1 22 0 0 0.13252649e+00 -0.47421244e-01 -0.37083186e-01 0.00000000e+00
- 1 22 0 0 0.20899053e+00 0.23690204e-01 -0.21314710e+00 0.00000000e+00
- 1 22 0 0 -0.29401544e-01 0.36564602e-01 0.76786894e-01 0.00000000e+00
- 1 22 0 0 0.38972527e-01 -0.90749638e-01 0.14853126e+00 0.00000000e+00
- 1 22 0 0 -0.11290231e+01 -0.79969904e-01 -0.11809323e+02 0.00000000e+00
- 1 22 0 0 -0.19765481e+00 -0.61172001e-01 -0.18394929e+01 0.00000000e+00
- 1 130 0 0 -0.12213455e+01 -0.61929565e+00 -0.40945749e+02 0.49767000e+00
- 1 130 0 0 -0.21695060e+00 -0.56563169e+00 -0.23974318e+02 0.49767000e+00
- 1 22 0 0 -0.17852744e+00 -0.28714443e+00 -0.13940010e+01 0.00000000e+00
- 1 22 0 0 -0.31240977e-01 -0.89061292e-01 -0.79889930e+00 0.00000000e+00
- 1 22 0 0 0.25592745e-02 0.28899189e-01 -0.35116140e+00 0.00000000e+00
- 1 22 0 0 0.23896226e-01 -0.12144422e+00 -0.52970983e+00 0.00000000e+00
- 1 22 0 0 -0.20705532e-01 0.11348896e-01 -0.25130265e-01 0.00000000e+00
- 1 22 0 0 -0.16230496e+00 -0.95997025e-01 -0.11608117e+01 0.00000000e+00
- 1 130 0 0 0.18926046e+00 -0.14798553e+01 -0.14791861e+02 0.49767000e+00
- 1 22 0 0 -0.14402737e+00 -0.17111857e+00 -0.79020266e+01 0.00000000e+00
- 1 22 0 0 -0.34129142e-01 -0.18453013e+00 -0.43860897e+01 0.00000000e+00
- 1 22 0 0 -0.53239486e+00 -0.33253748e+00 -0.26198286e+02 0.00000000e+00
- 1 22 0 0 -0.35067705e+00 -0.32565482e+00 -0.23363867e+02 0.00000000e+00
- 1 22 0 0 -0.26740055e+00 0.44525182e+00 -0.25903691e+03 0.00000000e+00
- 1 22 0 0 -0.25144681e+00 0.21868413e+00 -0.18111872e+03 0.00000000e+00
- 1 22 0 0 0.46345378e+00 0.92378474e-02 -0.28336988e+01 0.00000000e+00
- 1 22 0 0 0.29183144e-01 -0.36349256e-01 -0.36767950e+00 0.00000000e+00
- 1 22 0 0 0.84723817e-01 0.60032305e-01 -0.53786711e-01 0.00000000e+00
- 1 22 0 0 0.27452880e+00 0.49047276e+00 -0.87541995e-01 0.00000000e+00
- 1 22 0 0 -0.11350191e+00 -0.45501573e-01 0.30509201e+00 0.00000000e+00
- 1 22 0 0 -0.70020429e-01 0.77889149e-01 0.37045398e+00 0.00000000e+00
- 1 22 0 0 -0.18666041e-01 -0.25143652e-01 0.69876463e+00 0.00000000e+00
- 1 22 0 0 -0.53092206e-01 0.16954937e+00 0.28988867e+01 0.00000000e+00
- 1 22 0 0 -0.17537750e+00 0.16360475e+00 0.19037176e+00 0.00000000e+00
- 1 22 0 0 0.34641081e-02 0.73160615e-01 0.12370834e+00 0.00000000e+00
- 1 22 0 0 0.22661920e+00 -0.21730637e+00 -0.38799204e+01 0.00000000e+00
- 1 22 0 0 0.44575435e+00 -0.19847901e+00 -0.61954198e+01 0.00000000e+00
- 1 22 0 0 -0.29619002e+00 0.61061219e-01 -0.38336178e+01 0.00000000e+00
- 1 22 0 0 -0.63470295e-01 0.75107340e-01 -0.19128912e+01 0.00000000e+00
- 1 22 0 0 -0.40754337e-01 -0.95874067e-01 -0.90276188e+02 0.00000000e+00
- 1 22 0 0 0.81337359e-02 0.42289017e-01 -0.51600527e+02 0.00000000e+00
- 1 22 0 0 0.27873010e+00 -0.12999071e+00 0.30212257e+00 0.00000000e+00
- 1 22 0 0 -0.14408106e-01 -0.19718465e-01 0.17670858e-01 0.00000000e+00
- 1 22 0 0 -0.14965530e+00 -0.52561921e+00 0.89245714e+01 0.00000000e+00
- 1 22 0 0 -0.90084405e-01 -0.13756490e+00 0.37484721e+01 0.00000000e+00
- 1 22 0 0 -0.90079844e-01 0.75576153e-01 0.79238015e+00 0.00000000e+00
- 1 22 0 0 -0.23847975e-01 0.35534378e-01 0.15525302e+01 0.00000000e+00
- 1 22 0 0 0.10369084e+00 0.56342875e-01 0.41272424e+00 0.00000000e+00
- 1 22 0 0 0.98691276e-02 0.64063366e-01 0.75919982e+00 0.00000000e+00
- 1 22 0 0 0.53510179e-01 0.31105200e-01 0.45212842e+00 0.00000000e+00
- 1 22 0 0 -0.52460994e-01 -0.53412092e-01 0.57900109e+00 0.00000000e+00
- 1 22 0 0 0.17235260e-01 -0.28139770e-01 0.35642834e+00 0.00000000e+00
- 1 22 0 0 0.18396283e+00 -0.25128162e+00 0.94402056e+00 0.00000000e+00
- 1 22 0 0 0.42493661e+00 0.42824739e-01 -0.39958813e+00 0.00000000e+00
- 1 22 0 0 0.11532219e+00 0.44857623e-01 -0.40182954e-01 0.00000000e+00
- 1 130 0 0 0.11840940e+00 0.57219456e+00 0.78248014e+00 0.49767000e+00
- 1 22 0 0 0.49160656e-01 0.59184639e-02 0.10994057e+01 0.00000000e+00
- 1 22 0 0 0.23886736e+00 -0.12177372e+00 0.22341445e+01 0.00000000e+00
- 1 22 0 0 0.91540562e-01 -0.16600755e-02 0.30287992e+02 0.00000000e+00
- 1 22 0 0 0.32330404e+00 -0.16029066e+00 0.66130183e+02 0.00000000e+00
- 1 130 0 0 0.18484585e+00 -0.65609275e+00 0.56109930e+03 0.49767000e+00
- 1 22 0 0 0.46238754e-01 -0.29922737e-01 0.60096023e+01 0.00000000e+00
- 1 22 0 0 0.72077857e-01 0.13364270e+00 0.19037166e+02 0.00000000e+00
- 2 310 658 659 0.96423914e-01 -0.36968127e-01 0.13799613e+03 0.49767000e+00
- 1 22 0 0 -0.21780663e+00 -0.15291590e+00 0.23278637e+03 0.00000000e+00
- 1 22 0 0 -0.35289149e-01 -0.95202305e-02 0.92294418e+01 0.00000000e+00
- 1 211 0 0 0.11817953e+00 -0.21647502e+00 0.10374478e+03 0.13957000e+00
- 1 -211 0 0 0.87641881e+00 -0.13065015e+01 0.37396113e+03 0.13957000e+00
- 1 130 0 0 0.36096110e-01 0.15014523e+01 0.75751494e+00 0.49767000e+00
- 1 22 0 0 0.51174106e-01 0.73827494e-01 -0.58542977e-01 0.00000000e+00
- 1 22 0 0 -0.22955172e-01 -0.36521384e-01 0.88398618e-02 0.00000000e+00
- 1 130 0 0 0.15067502e-01 0.43056107e+00 0.39020372e+00 0.49767000e+00
- 1 22 0 0 -0.30137101e+00 0.23593990e+00 -0.32680072e+00 0.00000000e+00
- 1 22 0 0 -0.32896589e-02 0.65263539e-01 -0.73952720e-01 0.00000000e+00
- 1 22 0 0 -0.14876099e-01 0.20341489e+00 -0.40059097e+00 0.00000000e+00
- 1 22 0 0 -0.42239623e+00 0.14061632e+01 -0.25309562e+01 0.00000000e+00
- 1 130 0 0 -0.10834092e+00 0.38957565e+00 -0.15495370e-01 0.49767000e+00
- 1 22 0 0 -0.13485134e-01 0.57828236e-02 -0.23437289e-01 0.00000000e+00
- 1 22 0 0 -0.43815660e+00 -0.96861433e-02 0.10633527e+00 0.00000000e+00
- 1 22 0 0 -0.58097355e-01 0.69547972e-01 0.51764974e-01 0.00000000e+00
- 1 22 0 0 -0.33221751e-01 0.11721076e+00 -0.78525806e-01 0.00000000e+00
- 1 22 0 0 -0.20024588e+00 -0.33711181e-01 0.19269553e+00 0.00000000e+00
- 1 22 0 0 -0.19678943e-01 -0.20499304e-01 0.14888188e+00 0.00000000e+00
- 1 22 0 0 -0.93421371e-01 -0.15676664e-02 0.19043193e+00 0.00000000e+00
- 1 22 0 0 -0.33379513e-02 0.70607554e-01 0.43637511e-01 0.00000000e+00
- 1 -211 0 0 -0.16318783e+00 0.16913522e-01 0.51710794e-01 0.13957000e+00
- 1 211 0 0 -0.17795605e+00 0.93161238e-01 0.30918396e-01 0.13957000e+00
- 2 111 660 661 -0.44626818e+00 -0.12087921e-01 0.37806303e+00 0.13498000e+00
- 1 22 0 0 -0.23364043e+00 0.32156264e+00 -0.28679369e+00 0.00000000e+00
- 1 22 0 0 -0.99470261e-02 0.63065051e-02 0.14720035e-01 0.00000000e+00
- 1 22 0 0 0.20252185e-01 -0.15727324e-01 0.66840002e-02 0.00000000e+00
- 1 22 0 0 0.27088175e-01 -0.61198807e+00 -0.25476131e+00 0.00000000e+00
- 1 22 0 0 -0.29401810e+00 -0.38770249e+00 0.91460445e+01 0.00000000e+00
- 1 22 0 0 -0.16804992e+00 -0.40197948e+00 0.70516829e+01 0.00000000e+00
- 1 22 0 0 -0.20799110e+00 -0.24590864e+00 0.52893157e+01 0.00000000e+00
- 1 22 0 0 -0.97798903e-01 -0.22732759e-01 0.24762005e+01 0.00000000e+00
- 1 22 0 0 -0.45417557e-01 -0.14160989e+00 0.37625766e+01 0.00000000e+00
- 1 22 0 0 -0.14340625e+00 -0.49890364e-01 0.34841869e+01 0.00000000e+00
- 1 -211 0 0 -0.22648084e-01 0.42957554e-01 0.66603429e+01 0.13957000e+00
- 1 211 0 0 -0.72272378e+00 0.46683982e+00 0.25604821e+02 0.13957000e+00
- 1 -211 0 0 0.10083730e+00 -0.25183625e-01 0.12596088e+03 0.13957000e+00
- 1 211 0 0 -0.44133886e-02 -0.11784501e-01 0.12035247e+02 0.13957000e+00
- 1 22 0 0 -0.75353188e-01 0.43146589e-01 0.10627993e+00 0.00000000e+00
- 1 22 0 0 -0.37091499e+00 -0.55234509e-01 0.27178310e+00 0.00000000e+00
- 673
- 2 25 2 3 0.32199297e+03 0.62600949e+02 -0.90086839e+03 0.12499925e+03
- 2 23 4 5 0.39291418e+02 0.92945444e+01 -0.16880609e+03 0.22122317e+02
- 2 23 6 9 0.28270155e+03 0.53306405e+02 -0.73206230e+03 0.91567123e+02
- 1 13 0 0 -0.12960423e+01 -0.23113287e+01 -0.36866159e+01 0.10566000e+00
- 1 -13 0 0 0.40587460e+02 0.11605873e+02 -0.16511947e+03 0.10566000e+00
- 1 13 0 0 0.33027916e+02 -0.18094511e+02 -0.54459187e+02 0.10566000e+00
- 1 22 0 0 0.71682149e-03 -0.42819799e-03 -0.12181143e-02 0.00000000e+00
- 1 -13 0 0 0.24830852e+03 0.71070881e+02 -0.67406491e+03 0.10566000e+00
- 1 22 0 0 0.13643949e+01 0.33046331e+00 -0.35369907e+01 0.00000000e+00
- 2 1 92 92 -0.25887345e+03 0.44646688e+01 0.99905091e+03 0.33000000e+00
- 2 21 92 92 -0.18620116e+02 0.73660388e+00 0.70479920e+02 0.00000000e+00
- 2 21 92 92 -0.18504950e+01 -0.16427463e+01 0.12344455e+02 0.00000000e+00
- 2 21 92 92 -0.22947691e+01 -0.99536799e+00 0.10420624e+02 0.00000000e+00
- 2 21 92 92 -0.38408292e+02 -0.12835310e+02 0.18494004e+03 0.00000000e+00
- 2 21 92 92 -0.44153416e+02 -0.16825034e+02 0.21095554e+03 0.00000000e+00
- 2 21 92 92 -0.27525249e+01 0.41690238e+00 0.11077761e+02 0.00000000e+00
- 2 21 92 92 -0.23053878e+01 0.15936429e+01 0.12903942e+02 0.00000000e+00
- 2 21 92 92 -0.45622056e+00 0.11976304e+01 0.27321194e+01 0.00000000e+00
- 2 21 92 92 -0.11359378e+01 0.15116986e+01 0.36461462e+01 0.00000000e+00
- 2 21 92 92 -0.22724157e+01 0.11173137e+01 0.34531692e+01 0.00000000e+00
- 2 21 92 92 -0.69856428e+00 -0.26232408e+00 0.75976431e+00 0.00000000e+00
- 2 21 92 92 0.82035444e+00 -0.68926147e+00 -0.50805061e+00 0.00000000e+00
- 2 21 92 92 0.45622056e+00 -0.11976304e+01 -0.17071320e+00 0.00000000e+00
- 2 21 92 92 0.23053878e+01 -0.15936429e+01 0.37880948e+01 0.00000000e+00
- 2 21 92 92 0.15268352e+01 -0.85189383e+00 0.44903920e+01 0.00000000e+00
- 2 21 92 92 0.66092889e+00 -0.11959740e+01 0.74673212e+01 0.00000000e+00
- 2 21 92 92 0.21928424e+01 0.37108549e-01 0.15125420e+02 0.00000000e+00
- 2 21 92 92 0.22724157e+01 -0.11173137e+01 0.21376770e+02 0.00000000e+00
- 2 21 92 92 0.21849722e+01 -0.69721567e+00 0.25474583e+02 0.00000000e+00
- 2 21 92 92 0.64979545e+00 0.54105751e+01 0.48381666e+02 0.00000000e+00
- 2 21 92 92 -0.21849722e+01 0.69721567e+00 0.54228779e+02 0.00000000e+00
- 2 21 92 92 -0.19959732e+00 0.43220084e+00 0.16207074e+02 0.00000000e+00
- 2 21 92 92 0.69856428e+00 0.26232408e+00 0.38667458e+02 0.00000000e+00
- 2 21 92 92 0.19959732e+00 -0.43220084e+00 0.12103103e+02 0.00000000e+00
- 2 21 92 92 0.17577823e+01 -0.34241381e+01 0.17915446e+03 0.00000000e+00
- 2 21 92 92 -0.21042238e+01 -0.33529789e+01 0.24484953e+03 0.00000000e+00
- 2 21 92 92 -0.17577823e+01 0.34241381e+01 0.51756931e+03 0.00000000e+00
- 2 21 92 92 -0.61574931e+00 0.42078121e+00 0.26055771e+03 0.00000000e+00
- 2 21 92 92 -0.93446149e+00 -0.87530448e+00 0.14801489e+01 0.00000000e+00
- 2 21 92 92 -0.46978707e+00 -0.14624383e+00 0.10710986e+01 0.00000000e+00
- 2 21 92 92 -0.13289168e+01 -0.16146637e+01 0.10508517e+02 0.00000000e+00
- 2 21 92 92 -0.17133638e+01 0.15564705e+01 0.31744041e+02 0.00000000e+00
- 2 21 92 92 -0.39128158e+01 -0.97775415e+00 0.59225090e+02 0.00000000e+00
- 2 21 92 92 -0.58960349e+00 -0.25837800e+00 0.15420851e+01 0.00000000e+00
- 2 21 92 92 -0.10121696e+00 -0.10886188e+00 0.10374382e+03 0.00000000e+00
- 2 21 92 92 0.83902290e+00 0.11915094e+01 0.13715720e+03 0.00000000e+00
- 2 21 92 92 0.65256999e+00 -0.79278751e+00 0.45159786e+02 0.00000000e+00
- 2 21 92 92 0.42664098e+00 0.29837859e+00 0.51733691e+02 0.00000000e+00
- 2 21 92 92 -0.32914023e+01 -0.15143180e+01 0.63519145e+03 0.00000000e+00
- 2 21 92 92 -0.18285584e+00 -0.40428722e+00 0.48799776e+01 0.00000000e+00
- 2 2203 92 92 0.21190159e+01 0.18049135e+01 0.28779164e+04 0.77133000e+00
- 2 1 181 181 0.13003369e+01 -0.33726332e+00 -0.14450620e+02 0.33000000e+00
- 2 21 181 181 0.17930449e+01 -0.13214029e+01 -0.39658936e+01 0.00000000e+00
- 2 21 181 181 0.11811775e+02 0.26840352e+01 -0.32073620e+02 0.00000000e+00
- 2 21 181 181 0.54804451e-01 0.26897226e+01 -0.13912554e+02 0.00000000e+00
- 2 21 181 181 -0.66092889e+00 0.11959740e+01 -0.11502508e+01 0.00000000e+00
- 2 21 181 181 0.73385149e+00 0.20241320e+01 -0.18933711e+01 0.00000000e+00
- 2 21 181 181 0.89936910e+01 0.38163506e+00 -0.12149257e+02 0.00000000e+00
- 2 21 181 181 0.27525249e+01 -0.41690238e+00 -0.29678432e+01 0.00000000e+00
- 2 21 181 181 0.39762776e+00 0.23974730e+00 -0.15015478e+01 0.00000000e+00
- 2 21 181 181 0.61574931e+00 -0.42078121e+00 -0.33485260e+01 0.00000000e+00
- 2 21 181 181 0.11359378e+01 -0.15116986e+01 -0.45901777e+01 0.00000000e+00
- 2 21 181 181 -0.54804451e-01 -0.26897226e+01 -0.40378953e+01 0.00000000e+00
- 2 21 181 181 -0.21928424e+01 -0.37108549e-01 -0.37899419e+01 0.00000000e+00
- 2 21 181 181 -0.82035444e+00 0.68926147e+00 -0.21244560e+01 0.00000000e+00
- 2 21 181 181 -0.15268352e+01 0.85189383e+00 -0.57327973e+01 0.00000000e+00
- 2 21 181 181 -0.89936910e+01 -0.38163506e+00 -0.10867565e+03 0.00000000e+00
- 2 21 181 181 -0.39762776e+00 -0.23974730e+00 -0.99170701e+01 0.00000000e+00
- 2 21 181 181 -0.73385149e+00 -0.20241320e+01 -0.28858024e+02 0.00000000e+00
- 2 21 181 181 -0.64979545e+00 -0.54105751e+01 -0.18583971e+03 0.00000000e+00
- 2 21 181 181 0.21042238e+01 0.33529789e+01 -0.14463146e+03 0.00000000e+00
- 2 21 181 181 -0.11253037e+00 0.96852573e+00 -0.17740990e+03 0.00000000e+00
- 2 21 181 181 0.11253037e+00 -0.96852573e+00 -0.13901985e+03 0.00000000e+00
- 2 21 181 181 -0.65120007e+00 -0.29704635e+00 -0.62786544e+02 0.00000000e+00
- 2 21 181 181 -0.15461040e+00 -0.35281406e+00 -0.71689515e+02 0.00000000e+00
- 2 21 181 181 -0.67903771e-01 0.20116544e+00 -0.32065866e+03 0.00000000e+00
- 2 21 181 181 0.30973639e+01 0.24096826e+01 -0.99893793e+03 0.00000000e+00
- 2 21 181 181 -0.14285705e+00 -0.81527142e-01 -0.11837416e+02 0.00000000e+00
- 2 2103 181 181 0.13788777e+01 -0.60950171e+00 -0.24055791e+04 0.77133000e+00
- 2 -1 241 241 0.33877560e+00 -0.72660858e+00 -0.18375913e+02 0.33000000e+00
- 2 21 241 241 -0.94171554e-01 0.31085240e+00 -0.35385812e+01 0.00000000e+00
- 2 21 241 241 0.27116761e+01 -0.14379956e+01 -0.30373458e+02 0.00000000e+00
- 2 21 241 241 0.61462555e+01 -0.32784839e+01 -0.38896961e+02 0.00000000e+00
- 2 21 241 241 0.24449873e+01 -0.12545615e+01 -0.73726310e+02 0.00000000e+00
- 2 21 241 241 0.17117412e+01 -0.19279112e+01 -0.55877060e+02 0.00000000e+00
- 2 21 241 241 0.21671274e+01 -0.36270485e+01 -0.13244000e+03 0.00000000e+00
- 2 21 241 241 0.32878248e+01 -0.95364258e+01 -0.29582262e+03 0.00000000e+00
- 2 21 241 241 0.58956213e+01 -0.79407057e+01 -0.27947915e+03 0.00000000e+00
- 2 2 241 241 0.77200848e+01 -0.65388760e+01 -0.31158098e+03 0.33000000e+00
- 2 21 260 260 -0.74079645e+00 -0.22182254e+00 -0.16175792e+01 0.00000000e+00
- 2 21 260 260 0.74079645e+00 0.22182254e+00 -0.16755090e+02 0.00000000e+00
- 2 92 93 180 -0.37344539e+03 -0.27231555e+02 0.69328806e+04 0.78827245e+03
- 1 -211 0 0 -0.34729226e+02 0.56434756e+00 0.13442713e+03 0.13957000e+00
- 2 213 264 265 -0.35311612e+02 0.68257443e+00 0.13539881e+03 0.80773133e+00
- 2 311 266 266 -0.27893265e+02 0.11699238e+00 0.10808589e+03 0.49767000e+00
- 2 -311 267 267 -0.35303249e+02 0.11458123e+01 0.13591686e+03 0.49767000e+00
- 2 113 268 269 -0.11820027e+03 0.19602594e+01 0.45568351e+03 0.80988451e+00
- 2 -213 270 271 -0.99973256e+01 -0.14528111e+00 0.39813989e+02 0.75222663e+00
- 1 211 0 0 -0.29163052e+00 0.81027711e-01 0.73894430e+00 0.13957000e+00
- 2 -213 272 273 -0.88192572e+01 0.31163813e+00 0.34642855e+02 0.58672145e+00
- 2 331 274 276 -0.55139581e+01 -0.45552421e+00 0.21797584e+02 0.95775323e+00
- 1 321 0 0 -0.12660936e+01 -0.30749008e+00 0.52861822e+01 0.49360000e+00
- 2 -311 277 277 -0.23322111e+01 -0.87865810e+00 0.10721937e+02 0.49767000e+00
- 1 2112 0 0 -0.70729717e+01 -0.17904349e+01 0.35063916e+02 0.93957000e+00
- 1 -2212 0 0 -0.10786448e+02 -0.36383001e+01 0.48543232e+02 0.93827000e+00
- 1 211 0 0 -0.40164536e+01 -0.11357429e+01 0.20874716e+02 0.13957000e+00
- 2 -213 278 279 -0.16464549e+02 -0.64652730e+01 0.79617198e+02 0.10425859e+01
- 2 113 280 281 -0.69433127e+01 -0.24876194e+01 0.32682668e+02 0.79196893e+00
- 1 211 0 0 -0.58609875e+00 -0.48197228e+00 0.33689986e+01 0.13957000e+00
- 2 331 282 284 -0.33304041e+02 -0.11213941e+02 0.15993539e+03 0.95777040e+00
- 2 313 285 286 -0.11717606e+01 -0.27361584e+00 0.63244268e+01 0.89796007e+00
- 2 -313 287 288 -0.23045095e+01 -0.13375421e+00 0.98321187e+01 0.87211337e+00
- 2 113 289 290 -0.12054157e+01 -0.59302418e+00 0.67407500e+01 0.79726626e+00
- 2 221 291 293 -0.24383711e+01 0.25265457e+00 0.87519533e+01 0.54745000e+00
- 2 113 294 295 -0.77618212e+00 -0.54006031e+00 0.75662178e+01 0.78404188e+00
- 1 2112 0 0 -0.28363799e+01 0.84573644e+00 0.79807042e+01 0.93957000e+00
- 1 -2112 0 0 -0.12136850e+01 0.80020728e+00 0.41185327e+01 0.93957000e+00
- 2 -213 296 297 -0.74258029e+00 0.48692207e+00 0.32953047e+01 0.72359127e+00
- 2 223 298 300 -0.16284465e-01 0.76917067e+00 0.13707618e+01 0.79513952e+00
- 2 213 301 302 -0.17045779e+01 0.12448766e+01 0.32962792e+01 0.77088281e+00
- 2 -213 303 304 0.42478755e+00 -0.72069601e+00 -0.85625168e-01 0.76310180e+00
- 2 113 305 306 0.26823812e+00 -0.12624861e+01 0.14829713e+01 0.72214508e+00
- 2 323 307 308 0.63364731e+00 -0.58002856e+00 0.20794277e-01 0.85663327e+00
- 2 -313 309 310 0.16379500e+01 -0.98764465e+00 0.28935424e+01 0.10499082e+01
- 2 111 311 312 -0.16193455e+00 -0.20498588e-01 0.69348752e+00 0.13498000e+00
- 2 -213 313 314 0.69053628e+00 -0.70781105e+00 0.41546440e+01 0.76354136e+00
- 2 213 315 316 0.11519683e+01 -0.57623428e+00 0.55927712e+01 0.82109906e+00
- 1 2112 0 0 0.57125672e+00 -0.61353714e-01 0.80412180e+01 0.93957000e+00
- 1 -2112 0 0 0.26807938e+01 -0.78389113e+00 0.15651036e+02 0.93957000e+00
- 2 331 317 319 0.54362880e+00 -0.42615951e+00 0.10040538e+02 0.95771784e+00
- 2 223 320 322 0.19928898e+01 -0.46597399e+00 0.13746000e+02 0.79970574e+00
- 2 -213 323 324 0.94185132e+00 -0.65591555e+00 0.14279115e+02 0.73754212e+00
- 1 211 0 0 0.45939010e+00 0.22431512e+01 0.17966117e+02 0.13957000e+00
- 1 -211 0 0 0.37653622e+00 0.24391646e+00 0.12635160e+02 0.13957000e+00
- 1 2212 0 0 -0.19648000e+00 0.21752571e+01 0.27602612e+02 0.93827000e+00
- 1 -2212 0 0 -0.36869553e+00 0.24704583e+00 0.16227453e+02 0.93827000e+00
- 1 211 0 0 -0.60050375e+00 -0.26401202e-01 0.69758082e+01 0.13957000e+00
- 2 311 325 325 -0.41074474e-01 0.11474257e+01 0.26532163e+02 0.49767000e+00
- 2 -323 326 327 -0.55400179e+00 -0.65974855e+00 0.43979839e+02 0.92211498e+00
- 2 111 328 329 0.10319445e+01 0.42516340e+00 0.53879871e+02 0.13498000e+00
- 2 113 330 331 0.44690962e+00 -0.19451709e+01 0.98373376e+02 0.76515521e+00
- 2 213 332 333 -0.54769558e+00 -0.15225540e+01 0.99672658e+02 0.96184904e+00
- 2 311 334 334 -0.50731388e-01 -0.38275851e+00 0.61201639e+02 0.49767000e+00
- 2 -313 335 336 0.21548624e+00 -0.98138802e+00 0.56718710e+02 0.87904642e+00
- 1 -211 0 0 -0.25954527e+00 -0.54366863e+00 0.21062571e+02 0.13957000e+00
- 2 2224 337 338 -0.10057803e+01 0.13620481e+00 0.18887661e+03 0.13255146e+01
- 2 -2224 339 340 -0.82819827e+00 0.53318961e+00 0.28738305e+03 0.12582083e+01
- 2 213 341 342 -0.37897180e+00 0.14258536e+01 0.12079051e+03 0.90788632e+00
- 2 223 343 345 -0.22520174e+00 -0.47404560e-01 0.11606233e+03 0.78231793e+00
- 2 -213 346 347 -0.56561330e+00 0.13778428e+00 0.59108054e+02 0.66774789e+00
- 2 213 348 349 -0.84100289e+00 0.47398913e+00 0.27196997e+02 0.75607785e+00
- 1 -211 0 0 0.56942893e+00 -0.31997528e+00 0.79675096e+01 0.13957000e+00
- 1 211 0 0 -0.24139865e+00 -0.35232541e+00 0.11795338e+02 0.13957000e+00
- 2 2114 350 351 -0.58725446e+00 0.19208763e+00 0.39260076e+01 0.11627413e+01
- 1 -211 0 0 0.43142958e-01 0.63222797e-01 0.36803725e+01 0.13957000e+00
- 2 -1114 352 353 -0.39337202e+00 -0.68002994e+00 0.11010773e+02 0.12664205e+01
- 1 2112 0 0 -0.10415996e+00 -0.22173571e+00 0.27820623e+01 0.93957000e+00
- 2 111 354 355 -0.20162655e+00 0.25990346e+00 0.43821052e+01 0.13498000e+00
- 2 -3122 356 357 -0.10965813e+01 0.80429581e-01 0.76470479e+01 0.11156800e+01
- 2 333 358 359 -0.25352982e+01 -0.10086097e+01 0.30324661e+02 0.10199099e+01
- 2 -323 360 361 -0.54380635e+00 -0.57819108e+00 0.84307657e+01 0.89188294e+00
- 2 113 362 363 -0.83011941e+00 0.69625508e+00 0.17327804e+02 0.78076462e+00
- 2 323 364 365 -0.15213633e+01 0.86817429e-01 0.46863825e+02 0.95446956e+00
- 2 -313 366 367 0.12024045e+00 -0.82298096e-01 0.23783764e+02 0.92356733e+00
- 1 2212 0 0 -0.56043989e+00 -0.31862819e+00 0.29937435e+02 0.93827000e+00
- 2 -2224 368 369 0.68102632e+00 0.35531564e+00 0.29698426e+02 0.11000424e+01
- 1 211 0 0 -0.35980210e+00 -0.57389318e+00 0.11634600e+02 0.13957000e+00
- 2 221 370 372 0.17847465e+00 0.40565995e+00 0.15534829e+02 0.54745000e+00
- 2 -213 373 374 0.41832092e+00 0.62390280e+00 0.21952932e+03 0.70295188e+00
- 2 2224 375 376 -0.56725868e+00 0.36047173e-01 0.14243620e+03 0.11996373e+01
- 1 -211 0 0 -0.30422779e+00 -0.93345430e-01 0.57559152e+02 0.13957000e+00
- 1 -2112 0 0 -0.19323102e-01 -0.86854244e+00 0.10240520e+03 0.93957000e+00
- 2 113 377 378 -0.57721561e+00 -0.28879265e+00 0.76392593e+02 0.96024077e+00
- 2 223 379 381 -0.81391550e+00 -0.11010667e+00 0.14507746e+03 0.77515050e+00
- 2 -213 382 383 -0.21426884e+00 -0.67864497e+00 0.26757328e+03 0.86527527e+00
- 2 323 384 385 0.14998988e+00 0.14027181e+00 0.80435751e+02 0.88965290e+00
- 2 -323 386 387 0.22427603e+00 0.22598219e+00 0.27715442e+03 0.10327753e+01
- 2 213 388 389 -0.27241452e+00 0.30918575e+00 0.22392024e+03 0.92834758e+00
- 2 2114 390 391 0.16921613e+01 0.88804136e+00 0.20799300e+04 0.12436564e+01
- 1 211 0 0 0.20721851e-01 0.27719413e-01 0.53106785e+02 0.13957000e+00
- 2 92 182 240 0.19122506e+02 0.58837012e+00 -0.47735296e+04 0.33620139e+03
- 1 -211 0 0 0.14684178e+01 -0.52231834e-01 -0.12429185e+02 0.13957000e+00
- 2 113 392 393 0.31695294e+00 -0.62224317e+00 -0.27216249e+01 0.40920146e+00
- 2 223 394 396 0.10034642e+01 0.22026269e+00 -0.26705667e+01 0.78872908e+00
- 2 223 397 399 0.39540002e+01 0.83288422e+00 -0.10890342e+02 0.78620904e+00
- 2 223 400 402 0.13075420e+01 -0.43449549e+00 -0.49139070e+01 0.78038571e+00
- 1 211 0 0 -0.24061440e-01 0.10720847e+00 -0.89136516e-01 0.13957000e+00
- 1 -211 0 0 0.35169842e+00 -0.11901354e+00 -0.18310635e+01 0.13957000e+00
- 2 221 403 404 0.30979210e+01 0.69485077e+00 -0.78917499e+01 0.54745000e+00
- 1 321 0 0 0.27610891e+01 0.81050073e+00 -0.83771953e+01 0.49360000e+00
- 2 221 405 407 0.10440963e+01 0.10821489e+01 -0.59180185e+01 0.54745000e+00
- 2 -311 408 408 -0.42854338e+00 0.65276927e+00 -0.12543970e+01 0.49767000e+00
- 1 -211 0 0 -0.17601959e+00 0.42363011e+00 -0.46478988e+00 0.13957000e+00
- 1 211 0 0 -0.35931004e-01 0.99493194e-01 -0.67755224e+00 0.13957000e+00
- 2 -213 409 410 0.23539401e-01 0.43498149e+00 -0.28946763e+01 0.65324252e+00
- 1 211 0 0 0.70192343e+00 0.22826572e+00 -0.86468072e+00 0.13957000e+00
- 1 2112 0 0 0.66265396e+00 0.11241413e+01 -0.32894697e+01 0.93957000e+00
- 1 -2212 0 0 0.21410016e+00 0.51367018e+00 -0.12010988e+01 0.93827000e+00
- 2 2214 411 412 0.29780796e+01 0.58982386e+00 -0.34561109e+01 0.12661414e+01
- 2 113 413 414 0.80162634e+00 -0.20462814e+00 -0.21597313e+01 0.83915094e+00
- 1 -2112 0 0 0.32150049e+01 0.92901628e+00 -0.43997072e+01 0.93957000e+00
- 2 223 415 417 0.27238557e+01 -0.17269843e+00 -0.38846851e+01 0.79245201e+00
- 2 111 418 419 0.52036124e+00 -0.25430401e-01 -0.89562820e+00 0.13498000e+00
- 1 -211 0 0 0.26523661e+00 0.18400165e-01 -0.65868233e+00 0.13957000e+00
- 2 223 420 422 0.10923513e+01 -0.75892921e+00 -0.37431865e+01 0.77676500e+00
- 2 111 423 424 0.93482810e+00 -0.11982741e+01 -0.26060837e+01 0.13498000e+00
- 2 213 425 426 -0.34981997e+00 -0.35303097e+00 -0.20510798e+01 0.77851265e+00
- 2 -213 427 428 -0.15434984e+00 -0.10883921e+01 -0.23177717e+01 0.71847553e+00
- 2 223 429 431 -0.79774310e+00 -0.17434675e+00 -0.34127705e+01 0.78679068e+00
- 2 213 432 433 -0.19469384e+00 0.27369112e-01 -0.31696147e+00 0.49449043e+00
- 2 313 434 435 -0.32371109e+00 -0.64890159e+00 -0.23454741e+01 0.88626122e+00
- 2 333 436 437 -0.17649743e+01 0.81290899e+00 -0.68643541e+01 0.10090320e+01
- 2 -323 438 439 -0.98715779e+00 -0.23532452e+00 -0.58609613e+01 0.89083554e+00
- 2 213 440 441 -0.12029530e+01 0.18508590e+00 -0.12759274e+02 0.83969796e+00
- 2 2114 442 443 -0.27970864e+01 0.13772006e+00 -0.38875087e+02 0.12005694e+01
- 2 -2114 444 445 -0.17787909e+01 -0.15030993e+01 -0.29567908e+02 0.11879562e+01
- 1 -211 0 0 -0.18604361e+01 0.39329198e+00 -0.19853897e+02 0.13957000e+00
- 2 111 446 447 -0.18153167e+01 -0.66274469e+00 -0.25632346e+02 0.13498000e+00
- 2 223 448 450 -0.14746244e+00 -0.33827287e+00 -0.18981714e+02 0.77960607e+00
- 2 223 451 453 -0.87438243e+00 -0.22186341e+01 -0.66913743e+02 0.77841816e+00
- 1 211 0 0 0.43455213e+00 -0.19849117e+00 -0.24803695e+02 0.13957000e+00
- 2 -213 454 455 0.13860395e+00 -0.40151685e+00 -0.14815854e+02 0.51600402e+00
- 2 213 456 457 -0.79968304e-01 0.25378902e+00 -0.30192109e+02 0.78364324e+00
- 1 -211 0 0 0.68776770e-01 -0.64288065e+00 -0.11735946e+02 0.13957000e+00
- 1 211 0 0 -0.25476862e+00 0.28071639e+00 -0.26565524e+02 0.13957000e+00
- 2 113 458 459 0.65723326e+00 -0.99989089e+00 -0.42350352e+02 0.76243423e+00
- 1 -211 0 0 0.63835626e+00 0.18270904e+00 -0.23679479e+02 0.13957000e+00
- 2 213 460 461 -0.15368567e+00 0.16574885e+00 -0.57051039e+02 0.81126135e+00
- 2 -213 462 463 0.50925081e-01 0.37652068e+00 -0.52277179e+02 0.84615634e+00
- 2 213 464 465 0.12336475e+00 0.73730905e+00 -0.63252684e+02 0.91125541e+00
- 2 311 466 466 0.31952066e+00 -0.43754258e-02 -0.58935819e+02 0.49767000e+00
- 2 3122 467 468 -0.10163117e+01 -0.32560956e-01 -0.19926422e+03 0.11156800e+01
- 1 -2212 0 0 0.22484292e+00 0.20363722e+00 -0.17855451e+03 0.93827000e+00
- 1 2212 0 0 0.10440695e+01 0.22680286e+00 -0.32052450e+03 0.93827000e+00
- 1 -2212 0 0 0.16962796e+00 0.53056595e+00 -0.28421067e+03 0.93827000e+00
- 1 321 0 0 0.43165295e+00 0.15417882e+00 -0.19609616e+03 0.49360000e+00
- 2 -323 469 470 0.69143858e+00 0.78544465e+00 -0.31371381e+03 0.86308202e+00
- 2 113 471 472 0.97066907e+00 -0.14827367e+00 -0.65790970e+03 0.69210496e+00
- 1 2212 0 0 0.11566628e+01 -0.31927051e+00 -0.16593594e+04 0.93827000e+00
- 2 111 473 474 -0.21836541e+00 -0.69524528e-01 -0.23230034e+03 0.13498000e+00
- 2 92 242 259 0.32329922e+02 -0.35957764e+02 -0.12401110e+04 0.37144933e+02
- 2 213 475 476 0.13085055e+00 -0.43404216e+00 -0.12395153e+02 0.87206251e+00
- 2 331 477 478 0.20771494e+01 -0.87330774e+00 -0.24802563e+02 0.95770741e+00
- 1 -211 0 0 0.40958707e+00 -0.52664456e+00 -0.63190793e+01 0.13957000e+00
- 2 113 479 480 0.20702702e+01 -0.13037556e+01 -0.13096823e+02 0.81630248e+00
- 1 211 0 0 0.17002576e+01 -0.56128320e+00 -0.21952002e+02 0.13957000e+00
- 2 113 481 482 0.10977375e+01 -0.91771472e+00 -0.19998264e+02 0.70028188e+00
- 2 -213 483 484 0.15388012e+01 0.46559634e-02 -0.17281657e+02 0.10485581e+01
- 2 113 485 486 0.12544092e+01 -0.13056647e+01 -0.22037374e+02 0.77386760e+00
- 2 111 487 488 0.19889715e+00 -0.10648869e+01 -0.25630674e+02 0.13498000e+00
- 2 -313 489 490 0.74457365e+00 -0.41956863e+00 -0.14918537e+02 0.90310121e+00
- 2 311 491 491 0.44157237e+00 -0.37442028e+00 -0.25948075e+02 0.49767000e+00
- 2 -1114 492 493 0.13468009e+01 -0.12647541e+01 -0.43704651e+02 0.12152021e+01
- 1 2112 0 0 0.19766994e+01 -0.28321763e+01 -0.93883086e+02 0.93957000e+00
- 2 -213 494 495 0.17748284e+01 -0.43051548e+01 -0.14174514e+03 0.63189554e+00
- 2 221 496 497 0.23796198e+01 -0.33340490e+01 -0.10907354e+03 0.54745000e+00
- 1 -2112 0 0 0.20781768e+01 -0.49511077e+01 -0.16928356e+03 0.93957000e+00
- 1 2112 0 0 0.63518557e+01 -0.73535788e+01 -0.28033040e+03 0.93957000e+00
- 2 213 498 499 0.47578356e+01 -0.41403111e+01 -0.19771044e+03 0.70638415e+00
- 2 92 261 263 0.00000000e+00 0.00000000e+00 -0.18372670e+02 0.26712329e+01
- 1 -321 0 0 0.34088901e+00 0.16436621e+00 -0.27719719e+01 0.49360000e+00
- 2 313 500 501 -0.20580570e+00 -0.21292325e-01 -0.47970998e+01 0.90123816e+00
- 2 213 502 503 -0.13508332e+00 -0.14307388e+00 -0.10803598e+02 0.85973182e+00
- 1 211 0 0 -0.16529455e+02 0.53202976e+00 0.62155988e+02 0.13957000e+00
- 2 111 504 505 -0.18782157e+02 0.15054468e+00 0.73242817e+02 0.13498000e+00
- 2 310 506 507 -0.27893265e+02 0.11699238e+00 0.10808589e+03 0.49767000e+00
- 1 130 0 0 -0.35303249e+02 0.11458123e+01 0.13591686e+03 0.49767000e+00
- 1 211 0 0 -0.84097215e+02 0.13556790e+01 0.32286059e+03 0.13957000e+00
- 1 -211 0 0 -0.34103051e+02 0.60458045e+00 0.13282292e+03 0.13957000e+00
- 1 -211 0 0 -0.15200066e+01 0.25117444e-01 0.51969499e+01 0.13957000e+00
- 2 111 508 509 -0.84773189e+01 -0.17039855e+00 0.34617039e+02 0.13498000e+00
- 1 -211 0 0 -0.65529069e+01 0.27437171e+00 0.24848045e+02 0.13957000e+00
- 2 111 510 511 -0.22663503e+01 0.37266423e-01 0.97948104e+01 0.13498000e+00
- 1 -211 0 0 -0.13509507e+01 0.12234332e-01 0.52167481e+01 0.13957000e+00
- 1 211 0 0 -0.11769223e+01 -0.25574298e+00 0.48964152e+01 0.13957000e+00
- 2 221 512 514 -0.29860850e+01 -0.21201556e+00 0.11684421e+02 0.54745000e+00
- 1 130 0 0 -0.23322111e+01 -0.87865810e+00 0.10721937e+02 0.49767000e+00
- 1 -211 0 0 -0.17267667e+01 -0.37828582e+00 0.80070559e+01 0.13957000e+00
- 2 111 515 516 -0.14737782e+02 -0.60869871e+01 0.71610142e+02 0.13498000e+00
- 1 -211 0 0 -0.11982956e+01 -0.71478653e+00 0.59047778e+01 0.13957000e+00
- 1 211 0 0 -0.57450172e+01 -0.17728328e+01 0.26777891e+02 0.13957000e+00
- 2 111 517 518 -0.96147785e+01 -0.33440503e+01 0.46967153e+02 0.13498000e+00
- 2 111 519 520 -0.76076168e+01 -0.25480350e+01 0.36143012e+02 0.13498000e+00
- 2 221 521 522 -0.16081645e+02 -0.53218556e+01 0.76825230e+02 0.54745000e+00
- 1 321 0 0 -0.29106275e+00 -0.42185520e-01 0.21620049e+01 0.49360000e+00
- 1 -211 0 0 -0.88069783e+00 -0.23143032e+00 0.41624218e+01 0.13957000e+00
- 1 -321 0 0 -0.11764943e+01 -0.80615056e-01 0.62175441e+01 0.49360000e+00
- 1 211 0 0 -0.11280152e+01 -0.53139156e-01 0.36145746e+01 0.13957000e+00
- 1 -211 0 0 -0.68408187e+00 -0.39613916e-01 0.20653224e+01 0.13957000e+00
- 1 211 0 0 -0.52133387e+00 -0.55341026e+00 0.46754277e+01 0.13957000e+00
- 1 -211 0 0 -0.12753623e+01 0.70240170e-01 0.44898825e+01 0.13957000e+00
- 1 211 0 0 -0.80223678e+00 0.13131575e+00 0.25734977e+01 0.13957000e+00
- 2 111 523 524 -0.36077207e+00 0.51098647e-01 0.16885731e+01 0.13498000e+00
- 1 -211 0 0 -0.65880648e+00 -0.17872953e-01 0.39611294e+01 0.13957000e+00
- 1 211 0 0 -0.11737564e+00 -0.52218735e+00 0.36050884e+01 0.13957000e+00
- 1 -211 0 0 -0.80480038e+00 0.35736288e+00 0.30281900e+01 0.13957000e+00
- 2 111 525 526 0.62220090e-01 0.12955919e+00 0.26711465e+00 0.13498000e+00
- 1 -211 0 0 -0.14337679e+00 -0.18845867e-01 0.33449481e+00 0.13957000e+00
- 1 211 0 0 0.18301623e+00 0.31575279e+00 0.57510548e+00 0.13957000e+00
- 2 111 527 528 -0.55923906e-01 0.47226375e+00 0.46116150e+00 0.13498000e+00
- 1 211 0 0 -0.49915975e-01 0.25640199e+00 0.28172774e+00 0.13957000e+00
- 2 111 529 530 -0.16546619e+01 0.98847457e+00 0.30145514e+01 0.13498000e+00
- 1 -211 0 0 0.11928824e+00 -0.37293267e+00 0.30454660e+00 0.13957000e+00
- 2 111 531 532 0.30549932e+00 -0.34776334e+00 -0.39017177e+00 0.13498000e+00
- 1 211 0 0 -0.16346052e+00 -0.50021033e+00 0.31925165e+00 0.13957000e+00
- 1 -211 0 0 0.43169864e+00 -0.76227577e+00 0.11637197e+01 0.13957000e+00
- 2 311 533 533 0.59536230e+00 -0.55462170e+00 0.20713621e+00 0.49767000e+00
- 1 211 0 0 0.38285004e-01 -0.25406861e-01 -0.18634193e+00 0.13957000e+00
- 2 -311 534 534 0.12187520e+01 -0.87157793e+00 0.15795906e+01 0.49767000e+00
- 2 111 535 536 0.41919806e+00 -0.11606671e+00 0.13139518e+01 0.13498000e+00
- 1 22 0 0 -0.48835712e-01 0.54011353e-01 0.18275683e+00 0.00000000e+00
- 1 22 0 0 -0.11309884e+00 -0.74509942e-01 0.51073069e+00 0.00000000e+00
- 1 -211 0 0 -0.13322809e+00 -0.13724214e+00 0.87287679e+00 0.13957000e+00
- 2 111 537 538 0.82376436e+00 -0.57056891e+00 0.32817672e+01 0.13498000e+00
- 1 211 0 0 0.28872366e+00 0.16327579e+00 0.18108991e+01 0.13957000e+00
- 2 111 539 540 0.86324464e+00 -0.73951007e+00 0.37818721e+01 0.13498000e+00
- 1 211 0 0 0.47897632e-02 -0.66744685e-01 0.93215910e+00 0.13957000e+00
- 1 -211 0 0 0.33853500e+00 -0.12091429e+00 0.34963403e+01 0.13957000e+00
- 2 221 541 543 0.20030404e+00 -0.23850053e+00 0.56120388e+01 0.54745000e+00
- 1 -211 0 0 0.13953125e+01 -0.22861051e+00 0.92230221e+01 0.13957000e+00
- 1 211 0 0 0.58391772e-01 0.29974183e-01 0.10724287e+01 0.13957000e+00
- 2 111 544 545 0.53918556e+00 -0.26733766e+00 0.34505489e+01 0.13498000e+00
- 1 -211 0 0 0.76327708e+00 -0.50659146e+00 0.71301478e+01 0.13957000e+00
- 2 111 546 547 0.17857424e+00 -0.14932409e+00 0.71489674e+01 0.13498000e+00
- 1 130 0 0 -0.41074474e-01 0.11474257e+01 0.26532163e+02 0.49767000e+00
- 2 -311 548 548 -0.67637953e-01 -0.51060055e+00 0.28911911e+02 0.49767000e+00
- 1 -211 0 0 -0.48636384e+00 -0.14914800e+00 0.15067927e+02 0.13957000e+00
- 1 22 0 0 0.12945999e+00 0.72429843e-02 0.63021043e+01 0.00000000e+00
- 1 22 0 0 0.90248452e+00 0.41792041e+00 0.47577767e+02 0.00000000e+00
- 1 -211 0 0 0.59652263e+00 -0.16603520e+01 0.76946371e+02 0.13957000e+00
- 1 211 0 0 -0.14961301e+00 -0.28481889e+00 0.21427005e+02 0.13957000e+00
- 1 211 0 0 -0.15571914e+00 -0.49552717e+00 0.13576081e+02 0.13957000e+00
- 2 111 549 550 -0.39197643e+00 -0.10270269e+01 0.86096577e+02 0.13498000e+00
- 1 130 0 0 -0.50731388e-01 -0.38275851e+00 0.61201639e+02 0.49767000e+00
- 2 -311 551 551 0.35184344e+00 -0.49465867e+00 0.39362304e+02 0.49767000e+00
- 2 111 552 553 -0.13635719e+00 -0.48672935e+00 0.17356406e+02 0.13498000e+00
- 1 2212 0 0 -0.76178186e+00 -0.20039797e+00 0.14574420e+03 0.93827000e+00
- 1 211 0 0 -0.24399846e+00 0.33660279e+00 0.43132412e+02 0.13957000e+00
- 1 -2212 0 0 -0.41791962e+00 0.52558314e+00 0.19323892e+03 0.93827000e+00
- 1 -211 0 0 -0.41027865e+00 0.76064689e-02 0.94144138e+02 0.13957000e+00
- 1 211 0 0 -0.54867726e+00 0.43958305e+00 0.45376467e+02 0.13957000e+00
- 2 111 554 555 0.16970546e+00 0.98627050e+00 0.75414047e+02 0.13498000e+00
- 1 211 0 0 -0.37577841e+00 -0.27402361e-01 0.36790369e+02 0.13957000e+00
- 1 -211 0 0 0.75889315e-01 -0.31084715e-01 0.30962673e+02 0.13957000e+00
- 2 111 556 557 0.74687360e-01 0.11082516e-01 0.48309287e+02 0.13498000e+00
- 1 -211 0 0 0.21026287e-02 0.20945587e+00 0.10202596e+02 0.13957000e+00
- 2 111 558 559 -0.56771593e+00 -0.71671596e-01 0.48905457e+02 0.13498000e+00
- 1 211 0 0 -0.83558487e+00 0.15111572e+00 0.17214456e+02 0.13957000e+00
- 2 111 560 561 -0.54180196e-02 0.32287340e+00 0.99825416e+01 0.13498000e+00
- 1 2112 0 0 -0.41099957e+00 0.19698446e-01 0.28555957e+01 0.93957000e+00
- 2 111 562 563 -0.17625490e+00 0.17238919e+00 0.10704119e+01 0.13498000e+00
- 1 -2112 0 0 -0.12090131e+00 -0.34941601e+00 0.65008878e+01 0.93957000e+00
- 1 211 0 0 -0.27247071e+00 -0.33061393e+00 0.45098849e+01 0.13957000e+00
- 1 22 0 0 -0.21467706e+00 0.20395523e+00 0.38258725e+01 0.00000000e+00
- 1 22 0 0 0.13050514e-01 0.55948231e-01 0.55623271e+00 0.00000000e+00
- 1 -2112 0 0 -0.94105915e+00 0.16914985e+00 0.64185591e+01 0.93957000e+00
- 2 111 564 565 -0.15552212e+00 -0.88720273e-01 0.12284887e+01 0.13498000e+00
- 1 130 0 0 -0.12433103e+01 -0.50252272e+00 0.13777473e+02 0.49767000e+00
- 2 310 566 567 -0.12919880e+01 -0.50608698e+00 0.16547188e+02 0.49767000e+00
- 2 -311 568 568 -0.44073155e+00 -0.47803856e+00 0.79763897e+01 0.49767000e+00
- 1 -211 0 0 -0.10307480e+00 -0.10015252e+00 0.45437603e+00 0.13957000e+00
- 1 211 0 0 -0.20444650e+00 -0.37081709e-01 0.72760842e+01 0.13957000e+00
- 1 -211 0 0 -0.62567290e+00 0.73333679e+00 0.10051720e+02 0.13957000e+00
- 1 321 0 0 -0.11048235e+01 -0.16456600e+00 0.38417396e+02 0.49360000e+00
- 2 111 569 570 -0.41653976e+00 0.25138343e+00 0.84464290e+01 0.13498000e+00
- 1 -321 0 0 -0.80210874e-01 0.17787197e+00 0.17666267e+02 0.49360000e+00
- 1 211 0 0 0.20045132e+00 -0.26017007e+00 0.61174966e+01 0.13957000e+00
- 1 -2212 0 0 0.51530372e+00 0.24515137e+00 0.24608030e+02 0.93827000e+00
- 1 -211 0 0 0.16572260e+00 0.11016427e+00 0.50903957e+01 0.13957000e+00
- 2 111 571 572 0.40849910e-02 -0.25566327e-01 0.25020930e+01 0.13498000e+00
- 2 111 573 574 0.13832573e+00 0.35369638e+00 0.89879662e+01 0.13498000e+00
- 2 111 575 576 0.36063922e-01 0.77529892e-01 0.40447701e+01 0.13498000e+00
- 1 -211 0 0 0.32734252e+00 0.50067278e+00 0.83574346e+02 0.13957000e+00
- 2 111 577 578 0.90978399e-01 0.12323001e+00 0.13595497e+03 0.13498000e+00
- 1 2212 0 0 -0.39701135e+00 -0.10699563e+00 0.12514676e+03 0.93827000e+00
- 1 211 0 0 -0.17024732e+00 0.14304281e+00 0.17289437e+02 0.13957000e+00
- 1 -211 0 0 -0.59725181e+00 -0.57305646e+00 0.56190589e+02 0.13957000e+00
- 1 211 0 0 0.20036201e-01 0.28426380e+00 0.20202004e+02 0.13957000e+00
- 1 211 0 0 -0.25565616e+00 0.64696503e-01 0.79764398e+02 0.13957000e+00
- 1 -211 0 0 -0.49089906e+00 -0.12300306e+00 0.56107979e+02 0.13957000e+00
- 2 111 579 580 -0.67360281e-01 -0.51800106e-01 0.92050834e+01 0.13498000e+00
- 1 -211 0 0 -0.13886131e+00 -0.67886194e-02 0.13769752e+02 0.13957000e+00
- 2 111 581 582 -0.75407531e-01 -0.67185635e+00 0.25380353e+03 0.13498000e+00
- 2 311 583 583 -0.81915481e-01 0.24996985e+00 0.64870778e+02 0.49767000e+00
- 1 211 0 0 0.23190536e+00 -0.10969803e+00 0.15564972e+02 0.13957000e+00
- 2 -311 584 584 0.14061400e+00 -0.18863479e+00 0.97423681e+02 0.49767000e+00
- 1 -211 0 0 0.83662028e-01 0.41461698e+00 0.17973074e+03 0.13957000e+00
- 1 211 0 0 -0.53750501e+00 0.17937573e+00 0.89005552e+02 0.13957000e+00
- 2 111 585 586 0.26509049e+00 0.12981002e+00 0.13491469e+03 0.13498000e+00
- 1 2212 0 0 0.16503346e+01 0.77344248e+00 0.19917483e+04 0.93827000e+00
- 1 -211 0 0 0.41826666e-01 0.11459888e+00 0.88181651e+02 0.13957000e+00
- 1 211 0 0 0.17016379e+00 -0.87198957e-01 -0.74967129e+00 0.13957000e+00
- 1 -211 0 0 0.14678916e+00 -0.53504422e+00 -0.19719536e+01 0.13957000e+00
- 1 211 0 0 0.43741079e+00 -0.44413865e-01 -0.71911629e+00 0.13957000e+00
- 1 -211 0 0 0.49896687e+00 0.24166660e+00 -0.10149100e+01 0.13957000e+00
- 2 111 587 588 0.67086571e-01 0.23009948e-01 -0.93654043e+00 0.13498000e+00
- 1 -211 0 0 0.24301790e+01 0.56945234e+00 -0.66036483e+01 0.13957000e+00
- 1 211 0 0 0.13181404e+01 0.15904122e+00 -0.33176155e+01 0.13957000e+00
- 2 111 589 590 0.20568083e+00 0.10439066e+00 -0.96907843e+00 0.13498000e+00
- 1 -211 0 0 0.39956969e+00 -0.22413124e-01 -0.71620977e+00 0.13957000e+00
- 1 211 0 0 0.58935836e+00 -0.24364328e+00 -0.21481914e+01 0.13957000e+00
- 2 111 591 592 0.31861394e+00 -0.16843908e+00 -0.20495059e+01 0.13498000e+00
- 1 22 0 0 0.22135465e+01 0.69750235e+00 -0.60820785e+01 0.00000000e+00
- 1 22 0 0 0.88437459e+00 -0.26515764e-02 -0.18096714e+01 0.00000000e+00
- 2 111 593 594 0.32236161e+00 0.43013878e+00 -0.19742223e+01 0.13498000e+00
- 2 111 595 596 0.35750531e+00 0.45397068e+00 -0.19115647e+01 0.13498000e+00
- 2 111 597 598 0.36422943e+00 0.19803946e+00 -0.20322315e+01 0.13498000e+00
- 1 130 0 0 -0.42854338e+00 0.65276927e+00 -0.12543970e+01 0.49767000e+00
- 1 -211 0 0 0.20437615e+00 0.49099824e+00 -0.21462930e+01 0.13957000e+00
- 2 111 599 600 -0.18083675e+00 -0.56016744e-01 -0.74838331e+00 0.13498000e+00
- 1 2212 0 0 0.18374870e+01 0.26365856e+00 -0.19689272e+01 0.93827000e+00
- 2 111 601 602 0.11405925e+01 0.32616530e+00 -0.14871837e+01 0.13498000e+00
- 1 211 0 0 0.87509195e+00 -0.31379965e+00 -0.20028542e+01 0.13957000e+00
- 1 -211 0 0 -0.73465605e-01 0.10917150e+00 -0.15687703e+00 0.13957000e+00
- 1 211 0 0 0.15420606e+01 -0.38683816e-01 -0.18311281e+01 0.13957000e+00
- 1 -211 0 0 0.32304253e+00 0.50351534e-01 -0.82873720e+00 0.13957000e+00
- 2 111 603 604 0.85875259e+00 -0.18436615e+00 -0.12248198e+01 0.13498000e+00
- 1 22 0 0 0.43807965e+00 0.20348786e-01 -0.67435557e+00 0.00000000e+00
- 1 22 0 0 0.82281599e-01 -0.45779187e-01 -0.22127263e+00 0.00000000e+00
- 1 211 0 0 0.38462252e+00 -0.37353238e+00 -0.11020677e+01 0.13957000e+00
- 1 -211 0 0 0.19639429e+00 -0.26176840e+00 -0.56037109e+00 0.13957000e+00
- 2 111 605 606 0.51133448e+00 -0.12362843e+00 -0.20807478e+01 0.13498000e+00
- 1 22 0 0 0.35738447e+00 -0.36306457e+00 -0.82140416e+00 0.00000000e+00
- 1 22 0 0 0.57744363e+00 -0.83520950e+00 -0.17846795e+01 0.00000000e+00
- 1 211 0 0 -0.49749400e-01 0.16573089e+00 -0.10627977e+01 0.13957000e+00
- 2 111 607 608 -0.30007057e+00 -0.51876186e+00 -0.98828204e+00 0.13498000e+00
- 1 -211 0 0 -0.28146328e+00 -0.27225215e+00 -0.42552520e+00 0.13957000e+00
- 2 111 609 610 0.12711343e+00 -0.81613991e+00 -0.18922465e+01 0.13498000e+00
- 1 -211 0 0 -0.37129866e+00 0.91422066e-02 -0.63031365e+00 0.13957000e+00
- 1 211 0 0 -0.40093530e-01 0.42719205e-01 -0.83589269e+00 0.13957000e+00
- 2 111 611 612 -0.38635091e+00 -0.22620817e+00 -0.19465641e+01 0.13498000e+00
- 1 211 0 0 -0.75132618e-02 0.12357849e+00 -0.31877204e+00 0.13957000e+00
- 2 111 613 614 -0.18718058e+00 -0.96209379e-01 0.18105686e-02 0.13498000e+00
- 1 321 0 0 -0.40114449e+00 -0.44664624e+00 -0.21515299e+01 0.49360000e+00
- 1 -211 0 0 0.77433401e-01 -0.20225534e+00 -0.19394423e+00 0.13957000e+00
- 1 130 0 0 -0.72919793e+00 0.31806508e+00 -0.29498822e+01 0.49767000e+00
- 2 310 615 616 -0.10357764e+01 0.49484391e+00 -0.39144718e+01 0.49767000e+00
- 1 -321 0 0 -0.10361652e+01 -0.13841500e+00 -0.46672095e+01 0.49360000e+00
- 2 111 617 618 0.49007401e-01 -0.96909526e-01 -0.11937517e+01 0.13498000e+00
- 1 211 0 0 -0.40940556e+00 0.51697140e-01 -0.82959895e+01 0.13957000e+00
- 2 111 619 620 -0.79354744e+00 0.13338876e+00 -0.44632846e+01 0.13498000e+00
- 1 2112 0 0 -0.24510833e+01 0.46095374e-01 -0.35667847e+02 0.93957000e+00
- 2 111 621 622 -0.34600307e+00 0.91624687e-01 -0.32072407e+01 0.13498000e+00
- 1 -2112 0 0 -0.14090271e+01 -0.98560709e+00 -0.22940394e+02 0.93957000e+00
- 2 111 623 624 -0.36976380e+00 -0.51749223e+00 -0.66275137e+01 0.13498000e+00
- 1 22 0 0 -0.17443190e+01 -0.65717389e+00 -0.24443568e+02 0.00000000e+00
- 1 22 0 0 -0.70997735e-01 -0.55707956e-02 -0.11887779e+01 0.00000000e+00
- 1 211 0 0 -0.20134537e+00 -0.21424036e+00 -0.47183445e+01 0.13957000e+00
- 1 -211 0 0 0.75953608e-01 0.68923181e-01 -0.24973771e+01 0.13957000e+00
- 2 111 625 626 -0.22070677e-01 -0.19295569e+00 -0.11765992e+02 0.13498000e+00
- 1 211 0 0 -0.56460316e+00 -0.78289721e+00 -0.29827708e+02 0.13957000e+00
- 1 -211 0 0 -0.31866101e+00 -0.11403738e+01 -0.29718507e+02 0.13957000e+00
- 2 111 627 628 0.88817338e-02 -0.29536309e+00 -0.73675282e+01 0.13498000e+00
- 1 -211 0 0 0.27239199e+00 -0.12313865e+00 -0.68540255e+01 0.13957000e+00
- 2 111 629 630 -0.13378805e+00 -0.27837820e+00 -0.79618283e+01 0.13498000e+00
- 1 211 0 0 -0.11788939e+00 0.80613691e-01 -0.19003816e+01 0.13957000e+00
- 2 111 631 632 0.37921084e-01 0.17317532e+00 -0.28291727e+02 0.13498000e+00
- 1 211 0 0 0.77557455e+00 -0.73363932e+00 -0.29337362e+02 0.13957000e+00
- 1 -211 0 0 -0.11834128e+00 -0.26625157e+00 -0.13012990e+02 0.13957000e+00
- 1 211 0 0 0.31133564e+00 0.73802586e-01 -0.23021394e+02 0.13957000e+00
- 2 111 633 634 -0.46502131e+00 0.91946263e-01 -0.34029646e+02 0.13498000e+00
- 1 -211 0 0 0.22817568e+00 -0.15362195e+00 -0.26606064e+02 0.13957000e+00
- 2 111 635 636 -0.17725060e+00 0.53014262e+00 -0.25671115e+02 0.13498000e+00
- 1 211 0 0 0.36484726e+00 0.20678313e-02 -0.22973330e+02 0.13957000e+00
- 2 111 637 638 -0.24148251e+00 0.73524121e+00 -0.40279353e+02 0.13498000e+00
- 2 310 639 640 0.31952066e+00 -0.43754258e-02 -0.58935819e+02 0.49767000e+00
- 1 2212 0 0 -0.98673491e+00 -0.54605135e-01 -0.17655640e+03 0.93827000e+00
- 1 -211 0 0 -0.29576789e-01 0.22044179e-01 -0.22707821e+02 0.13957000e+00
- 1 -321 0 0 0.15885312e+00 0.21287542e+00 -0.13909237e+03 0.49360000e+00
- 2 111 641 642 0.53258546e+00 0.57256923e+00 -0.17462144e+03 0.13498000e+00
- 1 211 0 0 0.77022209e-01 -0.20094081e-02 -0.25716032e+03 0.13957000e+00
- 1 -211 0 0 0.89364686e+00 -0.14626426e+00 -0.40074938e+03 0.13957000e+00
- 1 22 0 0 -0.82047357e-01 -0.91424420e-01 -0.13213024e+03 0.00000000e+00
- 1 22 0 0 -0.13631805e+00 0.21899892e-01 -0.10017009e+03 0.00000000e+00
- 1 211 0 0 0.56646385e-01 -0.50911202e-01 -0.10150157e+02 0.13957000e+00
- 2 111 643 644 0.74204166e-01 -0.38313096e+00 -0.22449960e+01 0.13498000e+00
- 1 22 0 0 0.14521461e-01 -0.48552880e-01 -0.58481112e+00 0.00000000e+00
- 2 113 645 646 0.20626280e+01 -0.82475486e+00 -0.24217752e+02 0.90115920e+00
- 1 -211 0 0 0.60512466e+00 -0.74089014e+00 -0.39339366e+01 0.13957000e+00
- 1 211 0 0 0.14651455e+01 -0.56286547e+00 -0.91628868e+01 0.13957000e+00
- 1 -211 0 0 0.22518987e+00 -0.16219728e+00 -0.82776263e+01 0.13957000e+00
- 1 211 0 0 0.87254760e+00 -0.75551743e+00 -0.11720638e+02 0.13957000e+00
- 1 -211 0 0 0.22979188e-01 0.25373186e+00 -0.17836461e+01 0.13957000e+00
- 2 111 647 648 0.15158220e+01 -0.24907590e+00 -0.15498011e+02 0.13498000e+00
- 1 -211 0 0 0.30292416e+00 0.12313283e-01 -0.42851460e+01 0.13957000e+00
- 1 211 0 0 0.95148507e+00 -0.13179779e+01 -0.17752228e+02 0.13957000e+00
- 1 22 0 0 0.17568625e+00 -0.82342395e+00 -0.21030103e+02 0.00000000e+00
- 1 22 0 0 0.23210894e-01 -0.24146294e+00 -0.46005705e+01 0.00000000e+00
- 1 -321 0 0 0.70215092e+00 -0.36612351e+00 -0.14366787e+02 0.49360000e+00
- 1 211 0 0 0.42422736e-01 -0.53445119e-01 -0.55174973e+00 0.13957000e+00
- 1 130 0 0 0.44157237e+00 -0.37442028e+00 -0.25948075e+02 0.49767000e+00
- 1 -2112 0 0 0.76745678e+00 -0.83125492e+00 -0.30304523e+02 0.93957000e+00
- 1 211 0 0 0.57934409e+00 -0.43349922e+00 -0.13400129e+02 0.13957000e+00
- 1 -211 0 0 0.84924597e+00 -0.27692685e+01 -0.88979684e+02 0.13957000e+00
- 2 111 649 650 0.92558239e+00 -0.15358863e+01 -0.52765458e+02 0.13498000e+00
- 1 22 0 0 0.14272703e+01 -0.20500693e+01 -0.59288059e+02 0.00000000e+00
- 1 22 0 0 0.95234949e+00 -0.12839797e+01 -0.49785479e+02 0.00000000e+00
- 1 211 0 0 0.18094340e+01 -0.18612615e+01 -0.74000795e+02 0.13957000e+00
- 2 111 651 652 0.29484016e+01 -0.22790496e+01 -0.12370965e+03 0.13498000e+00
- 2 311 653 653 -0.52207725e-02 -0.27955494e+00 -0.29922299e+01 0.49767000e+00
- 2 111 654 655 -0.20058492e+00 0.25826262e+00 -0.18048699e+01 0.13498000e+00
- 1 211 0 0 -0.11418435e+00 -0.48233721e+00 -0.66033314e+01 0.13957000e+00
- 2 111 656 657 -0.20898967e-01 0.33926333e+00 -0.42002666e+01 0.13498000e+00
- 1 22 0 0 -0.17309798e+02 0.10431480e+00 0.67452388e+02 0.00000000e+00
- 1 22 0 0 -0.14723591e+01 0.46229872e-01 0.57904288e+01 0.00000000e+00
- 1 -211 0 0 -0.18638341e+02 -0.93476283e-01 0.71905420e+02 0.13957000e+00
- 1 211 0 0 -0.92549236e+01 0.21046866e+00 0.36180467e+02 0.13957000e+00
- 1 22 0 0 -0.50335374e+01 -0.35885732e-01 0.20596884e+02 0.00000000e+00
- 1 22 0 0 -0.34437815e+01 -0.13451282e+00 0.14020154e+02 0.00000000e+00
- 1 22 0 0 -0.18718360e+00 -0.29839114e-02 0.98595272e+00 0.00000000e+00
- 1 22 0 0 -0.20791667e+01 0.40250334e-01 0.88088577e+01 0.00000000e+00
- 1 -211 0 0 -0.78231953e+00 -0.34635514e-01 0.29292743e+01 0.13957000e+00
- 1 211 0 0 -0.11118063e+01 -0.20000991e+00 0.48365473e+01 0.13957000e+00
- 2 111 658 659 -0.10919592e+01 0.22629865e-01 0.39185990e+01 0.13498000e+00
- 1 22 0 0 -0.14644193e+02 -0.60551099e+01 0.71203826e+02 0.00000000e+00
- 1 22 0 0 -0.93589151e-01 -0.31877207e-01 0.40631607e+00 0.00000000e+00
- 1 22 0 0 -0.92219695e-01 -0.21450958e-01 0.47708532e+00 0.00000000e+00
- 1 22 0 0 -0.95225588e+01 -0.33225994e+01 0.46490068e+02 0.00000000e+00
- 1 22 0 0 -0.62836517e+01 -0.21392699e+01 0.30079265e+02 0.00000000e+00
- 1 22 0 0 -0.13239651e+01 -0.40876507e+00 0.60637472e+01 0.00000000e+00
- 1 22 0 0 -0.20525596e+01 -0.48965218e+00 0.94955522e+01 0.00000000e+00
- 1 22 0 0 -0.14029086e+02 -0.48322034e+01 0.67329677e+02 0.00000000e+00
- 1 22 0 0 -0.14039813e+00 0.21432511e-01 0.97496184e+00 0.00000000e+00
- 1 22 0 0 -0.22037394e+00 0.29666136e-01 0.71361129e+00 0.00000000e+00
- 1 22 0 0 -0.21750442e-01 0.10006182e+00 0.18214665e+00 0.00000000e+00
- 1 22 0 0 0.83970531e-01 0.29497365e-01 0.84967995e-01 0.00000000e+00
- 1 22 0 0 0.12888724e-01 0.18950606e+00 0.10821551e+00 0.00000000e+00
- 1 22 0 0 -0.68812630e-01 0.28275769e+00 0.35294599e+00 0.00000000e+00
- 1 22 0 0 -0.15992453e+00 0.11870420e+00 0.24899067e+00 0.00000000e+00
- 1 22 0 0 -0.14947374e+01 0.86977037e+00 0.27655608e+01 0.00000000e+00
- 1 22 0 0 0.18048332e+00 -0.28623265e+00 -0.31316301e+00 0.00000000e+00
- 1 22 0 0 0.12501600e+00 -0.61530683e-01 -0.77008756e-01 0.00000000e+00
- 2 310 660 661 0.59536230e+00 -0.55462170e+00 0.20713621e+00 0.49767000e+00
- 1 130 0 0 0.12187520e+01 -0.87157793e+00 0.15795906e+01 0.49767000e+00
- 1 22 0 0 0.36973743e+00 -0.51085061e-01 0.11025920e+01 0.00000000e+00
- 1 22 0 0 0.49460632e-01 -0.64981653e-01 0.21135985e+00 0.00000000e+00
- 1 22 0 0 0.73470099e+00 -0.50406305e+00 0.30404676e+01 0.00000000e+00
- 1 22 0 0 0.89063375e-01 -0.66505863e-01 0.24129963e+00 0.00000000e+00
- 1 22 0 0 0.40039536e+00 -0.38751896e+00 0.20526215e+01 0.00000000e+00
- 1 22 0 0 0.46284928e+00 -0.35199111e+00 0.17292506e+01 0.00000000e+00
- 2 111 662 663 0.15637061e+00 -0.15413632e+00 0.17286992e+01 0.13498000e+00
- 2 111 664 665 -0.39283056e-01 -0.12761279e+00 0.20533478e+01 0.13498000e+00
- 2 111 666 667 0.83216491e-01 0.43248579e-01 0.18299919e+01 0.13498000e+00
- 1 22 0 0 0.11739200e+00 -0.67141264e-01 0.11396771e+01 0.00000000e+00
- 1 22 0 0 0.42179356e+00 -0.20019640e+00 0.23108717e+01 0.00000000e+00
- 1 22 0 0 0.33283345e-01 -0.62166021e-01 0.39084817e+01 0.00000000e+00
- 1 22 0 0 0.14529090e+00 -0.87158072e-01 0.32404857e+01 0.00000000e+00
- 1 130 0 0 -0.67637953e-01 -0.51060055e+00 0.28911911e+02 0.49767000e+00
- 1 22 0 0 -0.39696779e+00 -0.98839365e+00 0.81531099e+02 0.00000000e+00
- 1 22 0 0 0.49913596e-02 -0.38633220e-01 0.45654780e+01 0.00000000e+00
- 1 130 0 0 0.35184344e+00 -0.49465867e+00 0.39362304e+02 0.49767000e+00
- 1 22 0 0 -0.14510125e+00 -0.27521094e+00 0.10009034e+02 0.00000000e+00
- 1 22 0 0 0.87440561e-02 -0.21151841e+00 0.73473722e+01 0.00000000e+00
- 1 22 0 0 0.37296935e-01 0.46848667e+00 0.31421470e+02 0.00000000e+00
- 1 22 0 0 0.13240853e+00 0.51778384e+00 0.43992578e+02 0.00000000e+00
- 1 22 0 0 0.32012835e-02 -0.45775045e-01 0.28505775e+02 0.00000000e+00
- 1 22 0 0 0.71486077e-01 0.56857561e-01 0.19803513e+02 0.00000000e+00
- 1 22 0 0 -0.54229167e+00 -0.35263450e-01 0.44987815e+02 0.00000000e+00
- 1 22 0 0 -0.25424264e-01 -0.36408146e-01 0.39176422e+01 0.00000000e+00
- 1 22 0 0 -0.46757830e-01 0.19498067e+00 0.44693060e+01 0.00000000e+00
- 1 22 0 0 0.41339811e-01 0.12789273e+00 0.55132356e+01 0.00000000e+00
- 1 22 0 0 -0.37360814e-01 0.13636307e-01 0.46056675e-01 0.00000000e+00
- 1 22 0 0 -0.13889408e+00 0.15875288e+00 0.10243552e+01 0.00000000e+00
- 1 22 0 0 -0.16865546e+00 -0.10843670e+00 0.11048464e+01 0.00000000e+00
- 1 22 0 0 0.13133337e-01 0.19716429e-01 0.12364236e+00 0.00000000e+00
- 2 111 668 669 -0.52243400e+00 -0.11574889e+00 0.85989485e+01 0.13498000e+00
- 2 111 670 671 -0.76955396e+00 -0.39033808e+00 0.79482394e+01 0.13498000e+00
- 1 130 0 0 -0.44073155e+00 -0.47803856e+00 0.79763897e+01 0.49767000e+00
- 1 22 0 0 -0.53205071e-01 0.88805507e-01 0.13823628e+01 0.00000000e+00
- 1 22 0 0 -0.36333469e+00 0.16257792e+00 0.70640661e+01 0.00000000e+00
- 1 22 0 0 -0.61684022e-01 -0.15251491e-02 0.15352521e+01 0.00000000e+00
- 1 22 0 0 0.65769013e-01 -0.24041178e-01 0.96684090e+00 0.00000000e+00
- 1 22 0 0 0.10291762e+00 0.30073221e+00 0.83014481e+01 0.00000000e+00
- 1 22 0 0 0.35408113e-01 0.52964172e-01 0.68651809e+00 0.00000000e+00
- 1 22 0 0 0.81190137e-01 0.39449668e-01 0.30983881e+01 0.00000000e+00
- 1 22 0 0 -0.45126214e-01 0.38080224e-01 0.94638193e+00 0.00000000e+00
- 1 22 0 0 0.12280309e+00 0.92694871e-01 0.11742815e+03 0.00000000e+00
- 1 22 0 0 -0.31824688e-01 0.30535142e-01 0.18526821e+02 0.00000000e+00
- 1 22 0 0 0.38862292e-02 -0.21171871e-01 0.22073931e+00 0.00000000e+00
- 1 22 0 0 -0.71246511e-01 -0.30628235e-01 0.89843441e+01 0.00000000e+00
- 1 22 0 0 -0.47464275e-02 -0.32898887e+00 0.14495182e+03 0.00000000e+00
- 1 22 0 0 -0.70661104e-01 -0.34286748e+00 0.10885170e+03 0.00000000e+00
- 2 310 672 673 -0.81915481e-01 0.24996985e+00 0.64870778e+02 0.49767000e+00
- 1 130 0 0 0.14061400e+00 -0.18863479e+00 0.97423681e+02 0.49767000e+00
- 1 22 0 0 0.30913865e-01 -0.28359387e-01 0.16871747e+02 0.00000000e+00
- 1 22 0 0 0.23417663e+00 0.15816941e+00 0.11804295e+03 0.00000000e+00
- 1 22 0 0 0.68593145e-01 0.72833473e-01 -0.53771672e+00 0.00000000e+00
- 1 22 0 0 -0.15065744e-02 -0.49823524e-01 -0.39882370e+00 0.00000000e+00
- 1 22 0 0 0.93081425e-01 -0.11055074e-01 -0.22217905e+00 0.00000000e+00
- 1 22 0 0 0.11259940e+00 0.11544573e+00 -0.74689939e+00 0.00000000e+00
- 1 22 0 0 0.49792681e-01 -0.89283252e-01 -0.65643146e+00 0.00000000e+00
- 1 22 0 0 0.26882126e+00 -0.79155832e-01 -0.13930745e+01 0.00000000e+00
- 1 22 0 0 0.29346826e+00 0.35459359e+00 -0.14857061e+01 0.00000000e+00
- 1 22 0 0 0.28893345e-01 0.75545190e-01 -0.48851620e+00 0.00000000e+00
- 1 22 0 0 0.35237811e+00 0.45125127e+00 -0.17790633e+01 0.00000000e+00
- 1 22 0 0 0.51272054e-02 0.27194118e-02 -0.13250136e+00 0.00000000e+00
- 1 22 0 0 0.27138031e+00 0.17047970e+00 -0.12567130e+01 0.00000000e+00
- 1 22 0 0 0.92849120e-01 0.27559759e-01 -0.77551848e+00 0.00000000e+00
- 1 22 0 0 -0.89506975e-01 -0.23126688e-01 -0.14117562e+00 0.00000000e+00
- 1 22 0 0 -0.91329773e-01 -0.32890057e-01 -0.60720769e+00 0.00000000e+00
- 1 22 0 0 0.10793508e+01 0.32779592e+00 -0.14432227e+01 0.00000000e+00
- 1 22 0 0 0.61241738e-01 -0.16306182e-02 -0.43961010e-01 0.00000000e+00
- 1 22 0 0 0.79821867e+00 -0.20463773e+00 -0.11520717e+01 0.00000000e+00
- 1 22 0 0 0.60533921e-01 0.20271579e-01 -0.72748082e-01 0.00000000e+00
- 1 22 0 0 0.24167272e+00 -0.12282551e+00 -0.94315411e+00 0.00000000e+00
- 1 22 0 0 0.26966176e+00 -0.80292136e-03 -0.11375937e+01 0.00000000e+00
- 1 22 0 0 -0.52018236e-01 -0.11240042e+00 -0.11494424e+00 0.00000000e+00
- 1 22 0 0 -0.24805233e+00 -0.40636144e+00 -0.87333779e+00 0.00000000e+00
- 1 22 0 0 0.14623705e+00 -0.68707046e+00 -0.16633585e+01 0.00000000e+00
- 1 22 0 0 -0.19123615e-01 -0.12906945e+00 -0.22888798e+00 0.00000000e+00
- 1 22 0 0 -0.25524934e+00 -0.76300255e-01 -0.10200159e+01 0.00000000e+00
- 1 22 0 0 -0.13110157e+00 -0.14990791e+00 -0.92654820e+00 0.00000000e+00
- 1 22 0 0 -0.11288387e+00 -0.62145207e-01 -0.65129918e-01 0.00000000e+00
- 1 22 0 0 -0.74296711e-01 -0.34064173e-01 0.66940487e-01 0.00000000e+00
- 1 -211 0 0 -0.88057181e+00 0.41550126e+00 -0.26746136e+01 0.13957000e+00
- 1 211 0 0 -0.15520460e+00 0.79342651e-01 -0.12398582e+01 0.13957000e+00
- 1 22 0 0 0.24290977e-01 -0.96631544e-01 -0.11607819e+01 0.00000000e+00
- 1 22 0 0 0.24716424e-01 -0.27798224e-03 -0.32969831e-01 0.00000000e+00
- 1 22 0 0 -0.13391429e+00 0.47070707e-01 -0.10694076e+01 0.00000000e+00
- 1 22 0 0 -0.65963316e+00 0.86318056e-01 -0.33938770e+01 0.00000000e+00
- 1 22 0 0 -0.26364972e+00 0.47840862e-01 -0.27679809e+01 0.00000000e+00
- 1 22 0 0 -0.82353351e-01 0.43783825e-01 -0.43925977e+00 0.00000000e+00
- 1 22 0 0 -0.23721541e+00 -0.42444282e+00 -0.51879012e+01 0.00000000e+00
- 1 22 0 0 -0.13254839e+00 -0.93049412e-01 -0.14396125e+01 0.00000000e+00
- 1 22 0 0 -0.53229574e-01 -0.89061164e-01 -0.31809069e+01 0.00000000e+00
- 1 22 0 0 0.31158897e-01 -0.10389453e+00 -0.85850854e+01 0.00000000e+00
- 1 22 0 0 0.17130279e-01 -0.11556719e+00 -0.44997477e+01 0.00000000e+00
- 1 22 0 0 -0.82485447e-02 -0.17979591e+00 -0.28677805e+01 0.00000000e+00
- 1 22 0 0 -0.72615262e-01 -0.22912011e+00 -0.69211947e+01 0.00000000e+00
- 1 22 0 0 -0.61172784e-01 -0.49258091e-01 -0.10406336e+01 0.00000000e+00
- 1 22 0 0 0.23265558e-01 -0.10219660e-01 -0.12878423e+01 0.00000000e+00
- 1 22 0 0 0.14655525e-01 0.18339498e+00 -0.27003885e+02 0.00000000e+00
- 1 22 0 0 -0.25227419e+00 -0.14523091e-01 -0.19155217e+02 0.00000000e+00
- 1 22 0 0 -0.21274712e+00 0.10646935e+00 -0.14874428e+02 0.00000000e+00
- 1 22 0 0 -0.12077547e+00 0.49245471e+00 -0.22472985e+02 0.00000000e+00
- 1 22 0 0 -0.56475131e-01 0.37687918e-01 -0.31981304e+01 0.00000000e+00
- 1 22 0 0 0.46349438e-02 0.13902319e+00 -0.62587124e+01 0.00000000e+00
- 1 22 0 0 -0.24611745e+00 0.59621802e+00 -0.34020641e+02 0.00000000e+00
- 1 211 0 0 0.29672369e+00 -0.13532031e+00 -0.47662500e+02 0.13957000e+00
- 1 -211 0 0 0.22796963e-01 0.13094488e+00 -0.11273319e+02 0.13957000e+00
- 1 22 0 0 0.45452834e+00 0.48960968e+00 -0.13676550e+03 0.00000000e+00
- 1 22 0 0 0.78057121e-01 0.82959549e-01 -0.37855941e+02 0.00000000e+00
- 1 22 0 0 0.10569517e+00 -0.19198171e+00 -0.12102087e+01 0.00000000e+00
- 1 22 0 0 -0.31491003e-01 -0.19114924e+00 -0.10347873e+01 0.00000000e+00
- 1 -211 0 0 0.20867227e+00 0.15397901e+00 -0.26933016e+01 0.13957000e+00
- 1 211 0 0 0.18539557e+01 -0.97873387e+00 -0.21524451e+02 0.13957000e+00
- 1 22 0 0 0.62128278e+00 -0.39806066e-01 -0.65108982e+01 0.00000000e+00
- 1 22 0 0 0.89453920e+00 -0.20926983e+00 -0.89871131e+01 0.00000000e+00
- 1 22 0 0 0.74779911e+00 -0.11463252e+01 -0.39277786e+02 0.00000000e+00
- 1 22 0 0 0.17778328e+00 -0.38956111e+00 -0.13487673e+02 0.00000000e+00
- 1 22 0 0 0.16028560e+01 -0.12605481e+01 -0.69840203e+02 0.00000000e+00
- 1 22 0 0 0.13455456e+01 -0.10185015e+01 -0.53869443e+02 0.00000000e+00
- 1 130 0 0 -0.52207725e-02 -0.27955494e+00 -0.29922299e+01 0.49767000e+00
- 1 22 0 0 -0.49388269e-02 0.10311564e+00 -0.47203424e+00 0.00000000e+00
- 1 22 0 0 -0.19564610e+00 0.15514698e+00 -0.13328357e+01 0.00000000e+00
- 1 22 0 0 0.38463009e-01 0.32837665e-01 -0.42138593e+00 0.00000000e+00
- 1 22 0 0 -0.59361975e-01 0.30642566e+00 -0.37788806e+01 0.00000000e+00
- 1 22 0 0 -0.14766829e+00 -0.38626741e-01 0.62414434e+00 0.00000000e+00
- 1 22 0 0 -0.94429091e+00 0.61256606e-01 0.32944546e+01 0.00000000e+00
- 1 211 0 0 0.18700456e+00 -0.43106966e+00 0.19335972e+00 0.13957000e+00
- 1 -211 0 0 0.40835774e+00 -0.12355204e+00 0.13776488e-01 0.13957000e+00
- 1 22 0 0 0.12454395e+00 -0.17095032e+00 0.16081380e+01 0.00000000e+00
- 1 22 0 0 0.31826654e-01 0.16813998e-01 0.12056113e+00 0.00000000e+00
- 1 22 0 0 -0.69317703e-01 -0.47354397e-01 0.14812217e+01 0.00000000e+00
- 1 22 0 0 0.30034647e-01 -0.80258395e-01 0.57212604e+00 0.00000000e+00
- 1 22 0 0 0.55696249e-03 0.34048842e-01 0.10545358e+00 0.00000000e+00
- 1 22 0 0 0.82659528e-01 0.91997375e-02 0.17245383e+01 0.00000000e+00
- 1 22 0 0 -0.25133020e+00 -0.22386448e-01 0.31165722e+01 0.00000000e+00
- 1 22 0 0 -0.27110380e+00 -0.93362446e-01 0.54823763e+01 0.00000000e+00
- 1 22 0 0 -0.62632286e+00 -0.26103462e+00 0.59610908e+01 0.00000000e+00
- 1 22 0 0 -0.14323109e+00 -0.12930346e+00 0.19871487e+01 0.00000000e+00
- 1 211 0 0 0.89921860e-01 0.66219175e-01 0.94189310e+01 0.13957000e+00
- 1 -211 0 0 -0.17183734e+00 0.18375067e+00 0.55451847e+02 0.13957000e+00
- 694
- 2 25 2 3 -0.14607921e+01 0.72786140e+01 0.45305143e+03 0.12499921e+03
- 2 23 6 10 0.89743698e+01 0.47302285e+01 0.26700600e+03 0.72499143e+02
- 2 23 4 5 -0.10435162e+02 0.25483855e+01 0.18604543e+03 0.50887284e+02
- 1 13 0 0 0.18599986e+02 0.36831935e+01 0.11274522e+03 0.10566000e+00
- 1 -13 0 0 -0.29035148e+02 -0.11348079e+01 0.73300203e+02 0.10566000e+00
- 1 22 0 0 -0.29354729e+01 0.19571481e+01 0.19330317e+02 0.00000000e+00
- 1 -13 0 0 0.35285981e+02 -0.12074582e+02 0.95542339e+02 0.10566000e+00
- 1 22 0 0 0.23262517e-01 -0.15458657e-01 0.48360651e-01 0.00000000e+00
- 1 13 0 0 -0.23399388e+02 0.14863118e+02 0.15208496e+03 0.10566000e+00
- 1 22 0 0 -0.13138807e-04 0.28219552e-05 0.22037009e-04 0.00000000e+00
- 2 2 81 81 0.37383255e+01 0.33835415e+02 0.12320741e+04 0.33000000e+00
- 2 21 81 81 -0.63471581e+00 0.56240133e-01 0.94941700e+01 0.00000000e+00
- 2 21 81 81 -0.18062346e+01 0.11365462e+01 0.20234155e+02 0.00000000e+00
- 2 21 81 81 0.35531702e+01 -0.15068168e+01 0.40408172e+02 0.00000000e+00
- 2 21 81 81 0.21622900e+01 -0.48910147e+00 0.13230153e+02 0.00000000e+00
- 2 21 81 81 0.31347602e+01 0.40067736e+00 0.23366380e+02 0.00000000e+00
- 2 21 81 81 -0.13619423e+01 0.55859814e+00 0.78790432e+01 0.00000000e+00
- 2 21 81 81 -0.17615164e+01 -0.28943118e-01 0.44385945e+01 0.00000000e+00
- 2 21 81 81 -0.13602691e+01 -0.94951858e+00 0.69992020e+01 0.00000000e+00
- 2 21 81 81 -0.12776022e+00 -0.96549155e+00 0.55305656e+01 0.00000000e+00
- 2 21 81 81 0.40452463e+00 0.36466017e+00 0.11559875e+03 0.00000000e+00
- 2 21 81 81 0.51743918e+01 0.28936524e+01 0.31221553e+03 0.00000000e+00
- 2 21 81 81 0.33294253e+00 0.21900135e+01 0.27816535e+02 0.00000000e+00
- 2 21 81 81 0.41745085e+01 0.22367870e+01 0.48946198e+02 0.00000000e+00
- 2 21 81 81 0.67937509e+00 0.18658373e+01 0.53358864e+01 0.00000000e+00
- 2 21 81 81 0.47684986e+00 0.17875446e+01 0.18780191e+01 0.00000000e+00
- 2 21 81 81 0.28346665e+01 0.37822464e+00 0.73773312e+01 0.00000000e+00
- 2 21 81 81 0.30053329e+00 -0.71970729e+00 0.12310522e+01 0.00000000e+00
- 2 21 81 81 0.33200442e+01 -0.23531122e+01 0.22350138e+01 0.00000000e+00
- 2 21 81 81 0.22940266e+00 -0.32988642e+01 -0.67442875e+01 0.00000000e+00
- 2 21 81 81 -0.47684986e+00 -0.17875446e+01 -0.38630981e+01 0.00000000e+00
- 2 21 81 81 0.11494446e+01 -0.11338235e+01 -0.75150643e+01 0.00000000e+00
- 2 21 81 81 0.37729904e+01 -0.10567040e+01 -0.19191269e+03 0.00000000e+00
- 2 21 81 81 -0.37729904e+01 0.10567040e+01 -0.45421239e+02 0.00000000e+00
- 2 21 81 81 -0.11494446e+01 0.11338235e+01 -0.16131621e+02 0.00000000e+00
- 2 21 81 81 -0.39168605e+00 -0.71041844e+00 0.52668277e+00 0.00000000e+00
- 2 21 81 81 0.34218296e+00 -0.40804811e+00 0.38425095e+00 0.00000000e+00
- 2 21 81 81 0.70896987e+00 0.11970924e+01 -0.32676852e+00 0.00000000e+00
- 2 21 81 81 -0.48205382e+00 -0.11178236e+01 -0.52723174e+00 0.00000000e+00
- 2 21 81 81 0.69256340e+00 0.35644351e-01 -0.49950952e+00 0.00000000e+00
- 2 21 81 81 0.25288032e-02 -0.19945939e+00 -0.44145389e+03 0.00000000e+00
- 2 2101 81 81 0.32451019e+00 -0.27888627e+01 -0.46039243e+04 0.57933000e+00
- 2 2 153 153 -0.11527899e+01 0.27702256e+01 -0.64248593e+03 0.33000000e+00
- 2 21 153 153 -0.53261326e+00 -0.40328317e+00 -0.69671445e+02 0.00000000e+00
- 2 21 153 153 -0.40201316e+00 -0.31577739e+00 -0.10985944e+03 0.00000000e+00
- 2 21 153 153 -0.51893630e-01 0.29499220e+00 -0.69228933e+00 0.00000000e+00
- 2 21 153 153 0.48158293e+00 -0.49427725e+00 -0.55143553e+01 0.00000000e+00
- 2 21 153 153 0.15293008e+01 0.22446744e+00 -0.53920434e+01 0.00000000e+00
- 2 21 153 153 -0.22940266e+00 0.32988642e+01 -0.24211525e+02 0.00000000e+00
- 2 21 153 153 -0.30606309e+01 0.11969284e+01 -0.15991063e+02 0.00000000e+00
- 2 21 153 153 -0.33200442e+01 0.23531122e+01 -0.19548518e+01 0.00000000e+00
- 2 21 153 153 -0.28346665e+01 -0.37822464e+00 0.14539835e+01 0.00000000e+00
- 2 21 153 153 -0.51743918e+01 -0.28936524e+01 0.11674141e+02 0.00000000e+00
- 2 21 153 153 -0.67937509e+00 -0.18658373e+01 0.60107429e+01 0.00000000e+00
- 2 21 153 153 -0.33294253e+00 -0.21900135e+01 0.71830809e+01 0.00000000e+00
- 2 21 153 153 -0.40452463e+00 -0.36466017e+00 0.67804772e+01 0.00000000e+00
- 2 21 153 153 -0.41745085e+01 -0.22367870e+01 0.18470480e+03 0.00000000e+00
- 2 21 153 153 -0.90781640e+01 0.16418322e+01 0.15782052e+03 0.00000000e+00
- 2 21 153 153 -0.27341000e+01 0.31400412e+01 0.11302689e+03 0.00000000e+00
- 2 21 153 153 -0.20404095e+01 0.12454665e+01 0.88056498e+02 0.00000000e+00
- 2 21 153 153 -0.14442512e+01 0.31503517e+01 0.10477989e+03 0.00000000e+00
- 2 21 153 153 -0.68717639e-01 0.61432981e+01 0.22363492e+03 0.00000000e+00
- 2 21 153 153 0.16491864e+02 -0.33491136e+02 0.17321565e+03 0.00000000e+00
- 2 21 153 153 0.73775825e+00 -0.65593305e+01 0.39320881e+02 0.00000000e+00
- 2 21 153 153 -0.36036689e+01 -0.77654272e+01 0.63312854e+02 0.00000000e+00
- 2 21 153 153 -0.32994082e+01 -0.59114895e+01 0.56367555e+02 0.00000000e+00
- 2 21 153 153 0.81220926e+00 0.79335960e+00 0.26286334e+03 0.00000000e+00
- 2 2101 153 153 -0.91701614e+00 0.20234275e+00 0.31174234e+04 0.57933000e+00
- 2 2 221 221 0.52221827e+01 -0.26976836e+00 -0.14118253e+02 0.00000000e+00
- 2 21 221 221 0.30606309e+01 -0.11969284e+01 -0.38172964e+01 0.00000000e+00
- 2 -2 221 221 -0.52221827e+01 0.26976836e+00 -0.75629170e+01 0.00000000e+00
- 2 1 230 230 0.15875634e+01 -0.53765897e-01 0.18693089e+02 0.00000000e+00
- 2 -1 230 230 -0.15875634e+01 0.53765897e-01 -0.14302012e+01 0.00000000e+00
- 2 21 239 239 0.45756258e+00 0.17887879e+01 -0.16896420e+03 0.00000000e+00
- 2 21 239 239 -0.45756258e+00 -0.17887879e+01 -0.56813654e+03 0.00000000e+00
- 2 21 244 244 -0.73037624e+00 0.88911029e+00 -0.69790550e+01 0.00000000e+00
- 2 21 244 244 -0.30053329e+00 0.71970729e+00 -0.41127765e+01 0.00000000e+00
- 2 21 244 244 0.73037624e+00 -0.88911029e+00 -0.28611772e+01 0.00000000e+00
- 2 21 248 248 -0.15818477e+00 -0.29416364e+00 -0.58208694e-01 0.00000000e+00
- 2 21 248 248 0.15818477e+00 0.29416364e+00 -0.44396002e+01 0.00000000e+00
- 2 92 82 152 0.24183512e+02 0.31613221e+02 -0.34311199e+04 0.63487861e+04
- 2 221 251 252 0.88493017e+00 0.86892918e+01 0.30920712e+03 0.54745000e+00
- 1 2212 0 0 0.14903592e+01 0.13933370e+02 0.50838363e+03 0.93827000e+00
- 1 -2212 0 0 0.78982272e+00 0.42164661e+01 0.14985850e+03 0.93827000e+00
- 2 113 253 254 -0.27521987e+00 0.25649781e+01 0.11119034e+03 0.76531795e+00
- 2 113 255 256 0.37720097e+00 0.23507402e+01 0.93732397e+02 0.10754047e+01
- 1 211 0 0 0.10372155e+00 0.10174683e+01 0.27184243e+02 0.13957000e+00
- 2 311 257 257 -0.11072016e+01 0.14318226e+01 0.27742632e+02 0.49767000e+00
- 2 3122 258 259 0.29628474e-01 -0.93334625e-01 0.23086368e+02 0.11156800e+01
- 1 -2212 0 0 -0.40596831e+00 0.83540975e+00 0.11075402e+02 0.93827000e+00
- 1 2212 0 0 0.14159921e+01 -0.72873264e+00 0.18213976e+02 0.93827000e+00
- 2 111 260 261 0.81470838e+00 0.34544675e+00 0.57160017e+01 0.13498000e+00
- 1 -2212 0 0 0.13616880e+01 -0.44478511e+00 0.15972381e+02 0.93827000e+00
- 2 223 262 264 0.29405788e+01 -0.69076033e+00 0.28066336e+02 0.78209517e+00
- 2 213 265 266 0.68148320e+00 0.62461867e+00 0.82399890e+01 0.83758918e+00
- 2 113 267 268 0.16271254e+00 -0.37474027e+00 0.50940790e+01 0.76315750e+00
- 2 311 269 269 -0.30856699e+00 0.23438334e+00 0.22311728e+01 0.49767000e+00
- 2 -313 270 271 -0.18020454e+01 -0.67826930e+00 0.70522746e+01 0.77224703e+00
- 2 -213 272 273 -0.40846049e+00 -0.39966089e-01 0.50650164e+01 0.79826712e+00
- 1 211 0 0 -0.30129589e-01 -0.24095579e+00 0.99362617e+00 0.13957000e+00
- 2 223 274 275 -0.11090606e+01 -0.22616468e-01 0.64436130e+01 0.78261141e+00
- 2 113 276 277 0.28851936e-01 -0.76943711e+00 0.21114547e+02 0.11453319e+01
- 2 111 278 279 0.52761553e-01 -0.88155788e-01 0.29721734e+01 0.13498000e+00
- 2 3114 280 281 0.16788148e+01 0.16862050e+01 0.14795212e+03 0.13800563e+01
- 2 311 282 282 0.10222706e+01 0.11680104e-01 0.42019910e+02 0.49767000e+00
- 2 -1114 283 284 0.15884070e+01 0.12185785e+01 0.15254687e+03 0.12512426e+01
- 2 311 285 285 0.11623247e+00 0.17568442e+00 0.10739030e+02 0.49767000e+00
- 2 -323 286 287 0.14021332e+01 0.81176372e+00 0.49106324e+02 0.94287741e+00
- 2 3222 288 289 0.15165499e+01 0.17896274e+01 0.31826309e+02 0.11893700e+01
- 2 -3212 290 291 -0.19483607e+00 0.43835861e+00 0.76891321e+01 0.11925500e+01
- 2 1114 292 293 0.12693129e+01 0.92566612e+00 0.13051476e+02 0.12747315e+01
- 1 211 0 0 0.14720662e+01 0.88195904e+00 0.12170380e+02 0.13957000e+00
- 1 -2212 0 0 -0.49045276e+00 0.57402026e+00 0.10851648e+02 0.93827000e+00
- 2 323 294 295 0.63299314e+00 0.69421410e+00 0.41802976e+01 0.70864937e+00
- 2 221 296 298 0.15926365e+01 0.90708885e+00 0.48154962e+01 0.54745000e+00
- 2 -323 299 300 0.28400501e+00 -0.35124691e+00 0.29659186e+01 0.89756360e+00
- 2 113 301 302 0.17659995e+01 0.98739738e+00 0.15188510e+01 0.79376469e+00
- 1 2212 0 0 0.85702264e+00 0.15587974e+00 0.28007045e+01 0.93827000e+00
- 1 -2212 0 0 0.16355228e+01 -0.13338444e+01 0.24988234e+01 0.93827000e+00
- 1 211 0 0 0.62899316e+00 -0.86658279e+00 -0.11067225e-02 0.13957000e+00
- 1 -211 0 0 0.31840280e+00 -0.36778061e+00 -0.19803878e+01 0.13957000e+00
- 1 211 0 0 -0.91672306e-02 -0.45710256e+00 0.39023506e+00 0.13957000e+00
- 2 113 303 304 0.50758553e+00 -0.14356488e+01 -0.13180850e+01 0.76394334e+00
- 2 111 305 306 -0.27297465e+00 -0.14473599e+00 -0.64176631e+00 0.13498000e+00
- 1 -211 0 0 0.71592942e+00 -0.39957951e+00 -0.37938488e+01 0.13957000e+00
- 2 221 307 309 -0.16668223e+00 -0.53299224e+00 -0.13116957e+01 0.54745000e+00
- 1 211 0 0 0.15894671e+00 0.72086521e-01 -0.73604940e+00 0.13957000e+00
- 2 223 310 312 -0.74166059e+00 -0.13417940e+01 -0.25136346e+01 0.77784538e+00
- 2 1114 313 314 0.68845018e+00 -0.41369321e+00 -0.12824335e+02 0.13387514e+01
- 1 211 0 0 0.64981416e+00 -0.87859983e+00 -0.15371729e+02 0.13957000e+00
- 1 -2212 0 0 0.22940811e+00 -0.35962354e+00 -0.72207014e+01 0.93827000e+00
- 2 213 315 316 0.19082830e+00 -0.38185638e+00 -0.21968185e+02 0.81625142e+00
- 2 221 317 319 0.93040012e+00 -0.48091615e+00 -0.25220721e+02 0.54745000e+00
- 2 -213 320 321 0.61048455e-01 0.51602167e+00 -0.20595389e+02 0.78908389e+00
- 2 223 322 324 0.92513881e+00 -0.84383553e+00 -0.52498263e+02 0.77671977e+00
- 2 213 325 326 0.66470591e+00 0.33001779e+00 -0.45571298e+02 0.71845367e+00
- 2 313 327 328 -0.11917963e+01 0.33848763e+00 -0.14771377e+02 0.71286446e+00
- 2 -311 329 329 -0.16046714e+01 0.54122470e+00 -0.20441050e+02 0.49767000e+00
- 1 -211 0 0 -0.15949281e+00 0.80812789e-01 -0.78928432e+01 0.13957000e+00
- 1 211 0 0 -0.35409412e+00 0.21827144e+00 -0.75094358e+00 0.13957000e+00
- 2 223 330 332 -0.75445244e+00 0.71435076e+00 -0.12534387e+02 0.78142676e+00
- 2 223 333 335 -0.51859253e+00 -0.52181270e+00 -0.58584566e+00 0.78029452e+00
- 2 -213 336 337 0.27336270e+00 0.50220363e+00 -0.23530285e+00 0.82326460e+00
- 2 223 338 340 0.63598515e-01 -0.25307723e+00 0.19997247e+00 0.78544290e+00
- 2 223 341 343 -0.33361041e+00 -0.34235427e+00 -0.52529110e+00 0.76999145e+00
- 2 111 344 345 0.69445228e+00 0.25158385e+00 0.24697265e+00 0.13498000e+00
- 2 213 346 347 0.43080579e+00 -0.81107171e+00 -0.80992374e+00 0.69217229e+00
- 1 -211 0 0 0.72764734e-01 0.34440791e+00 -0.16555242e+01 0.13957000e+00
- 2 113 348 349 -0.14332770e+00 -0.23229806e+00 -0.61196776e+02 0.76289485e+00
- 2 213 350 351 0.48493345e+00 -0.56117271e+00 -0.83085520e+03 0.66497298e+00
- 2 -213 352 353 -0.53608637e+00 -0.12936280e+01 -0.26799050e+04 0.40315280e+00
- 1 2212 0 0 0.44408709e+00 -0.10213661e+01 -0.14715995e+04 0.93827000e+00
- 2 92 154 220 -0.25482817e+02 -0.38414614e+02 0.37418567e+04 0.40399481e+04
- 2 213 354 355 -0.38058102e+00 0.23437527e+01 -0.48228823e+03 0.75510671e+00
- 2 223 356 358 -0.11832224e+01 -0.16572411e+00 -0.23541323e+03 0.78592537e+00
- 2 313 359 360 -0.34083772e+00 -0.51933653e-01 -0.72134621e+02 0.90344127e+00
- 2 3122 361 362 0.37237357e+00 0.44883799e+00 -0.19245914e+02 0.11156800e+01
- 1 -2112 0 0 -0.99059085e-01 -0.49273990e+00 -0.11378739e+02 0.93957000e+00
- 1 -211 0 0 -0.17927911e+00 -0.29300163e-02 -0.12723606e+01 0.13957000e+00
- 2 223 363 365 0.77583911e+00 0.44586741e+00 -0.90964923e+01 0.77706748e+00
- 2 213 366 367 0.42526358e+00 -0.40983663e+00 -0.54117173e+01 0.62430535e+00
- 2 111 368 369 0.60625043e-01 0.13375213e+01 -0.76956637e+01 0.13498000e+00
- 2 311 370 370 0.55458276e-01 0.29222683e+00 -0.25483421e+01 0.49767000e+00
- 2 -313 371 372 -0.35499689e+00 0.13971286e+01 -0.79996458e+01 0.87035093e+00
- 2 111 373 374 -0.58515322e+00 0.29583472e+00 -0.36457853e+01 0.13498000e+00
- 2 311 375 375 -0.34136670e+00 0.52164746e+00 -0.58016572e+01 0.49767000e+00
- 1 -321 0 0 -0.41471418e+00 -0.14050359e+00 -0.10776149e+01 0.49360000e+00
- 2 213 376 377 -0.11494760e+01 0.70792965e+00 -0.53464640e+01 0.71906384e+00
- 2 113 378 379 -0.38593256e+00 0.20915829e+00 -0.26206863e+01 0.78810313e+00
- 2 223 380 382 -0.14341960e+01 0.10170050e+01 -0.63992510e+00 0.78404511e+00
- 2 -213 383 384 -0.93728917e+00 0.73973496e+00 -0.12786108e+01 0.65375215e+00
- 2 331 385 386 -0.98826807e+00 0.18309355e+00 -0.23040445e+00 0.95812994e+00
- 1 211 0 0 -0.48096732e+00 -0.47266285e+00 0.49432177e+00 0.13957000e+00
- 2 -213 387 388 -0.17189312e+01 0.47140299e+00 0.49801554e+00 0.57486476e+00
- 2 213 389 390 -0.32898903e+01 -0.15342584e+01 0.70685781e+01 0.70337521e+00
- 1 -211 0 0 -0.33366070e+00 -0.12676047e+01 0.21599787e+01 0.13957000e+00
- 2 213 391 392 -0.20462128e+01 -0.20669514e+01 0.80523106e+01 0.92570231e+00
- 1 2112 0 0 -0.42554631e+00 -0.62883354e-01 0.80151145e+01 0.93957000e+00
- 1 -2212 0 0 -0.22506492e+00 -0.21770701e+00 0.55779071e+01 0.93827000e+00
- 2 213 393 394 -0.30953851e+00 -0.13336896e+01 0.61129432e+01 0.85225419e+00
- 2 3214 395 396 -0.27889682e+00 -0.57316813e+00 0.13477071e+02 0.13553072e+01
- 2 111 397 398 -0.10613769e+01 -0.63999068e+00 0.17197782e+02 0.13498000e+00
- 2 -3222 399 400 -0.69535385e+00 -0.19416109e+00 0.32690052e+02 0.11893700e+01
- 1 2212 0 0 -0.41974770e+00 -0.24125664e+00 0.41897678e+02 0.93827000e+00
- 2 111 401 402 -0.15716136e+01 -0.13155730e+01 0.46257868e+02 0.13498000e+00
- 2 -2214 403 404 -0.44164671e+01 0.79422935e+00 0.92890553e+02 0.12136090e+01
- 2 213 405 406 -0.11952467e+01 0.97791220e+00 0.61684173e+02 0.80181201e+00
- 2 2114 407 408 -0.34983133e+01 0.10951311e+01 0.77763727e+02 0.11972137e+01
- 2 -323 409 410 -0.12059507e+01 0.84476863e+00 0.43303633e+02 0.89365718e+00
- 2 -3314 411 412 -0.20418793e+01 0.11547068e+01 0.63543407e+02 0.15287595e+01
- 2 331 413 415 -0.93192462e+00 0.25918927e+01 0.84353000e+02 0.95769529e+00
- 2 -323 416 417 -0.14740264e+01 0.17788751e+01 0.67577191e+02 0.91174883e+00
- 2 111 418 419 -0.99020021e-01 0.12113962e+01 0.50996307e+02 0.13498000e+00
- 1 211 0 0 -0.11573998e+01 0.22821141e+01 0.71614997e+02 0.13957000e+00
- 1 -211 0 0 0.28738472e+00 0.14606492e-01 0.19162907e+02 0.13957000e+00
- 2 223 420 422 0.62671714e-01 0.15463103e+01 0.73797445e+02 0.77417910e+00
- 2 111 423 425 0.31817819e+00 0.30738705e+00 0.39186376e+01 0.13498000e+00
- 2 213 426 427 -0.31504249e+00 -0.56196678e+00 0.52382001e+01 0.75161093e+00
- 1 -211 0 0 0.14891052e+01 -0.16875121e+01 0.11360754e+02 0.13957000e+00
- 1 211 0 0 0.16917797e+01 -0.48174816e+01 0.23767614e+02 0.13957000e+00
- 2 -213 428 429 0.42866162e+01 -0.74747017e+01 0.42447171e+02 0.70831289e+00
- 2 213 430 431 0.67801287e+00 -0.21124677e+01 0.98035688e+01 0.65694006e+00
- 2 -213 432 433 0.91768319e+00 -0.21127848e+01 0.11856484e+02 0.63467952e+00
- 1 211 0 0 0.51506551e+01 -0.10291921e+02 0.53143273e+02 0.13957000e+00
- 2 313 434 435 0.21570762e+01 -0.56684640e+01 0.33681146e+02 0.90561656e+00
- 1 -321 0 0 0.27890868e-01 -0.12945178e+01 0.63532025e+01 0.49360000e+00
- 1 211 0 0 -0.33213505e+00 -0.57665422e+00 0.23323513e+01 0.13957000e+00
- 2 313 436 437 -0.53399969e+00 -0.39230855e+01 0.27176119e+02 0.85833631e+00
- 2 -313 438 439 -0.35634506e+00 -0.18627841e+01 0.16366885e+02 0.87131814e+00
- 2 311 440 440 -0.13033274e+01 -0.39820781e+01 0.33539326e+02 0.49767000e+00
- 2 -313 441 442 -0.99643377e+00 -0.10896744e+01 0.12644057e+02 0.87868703e+00
- 2 -213 443 444 -0.20730413e+01 -0.46524073e+01 0.39313082e+02 0.74375836e+00
- 2 213 445 446 -0.20732338e+00 -0.58601911e+00 0.13234727e+02 0.72781678e+00
- 1 -211 0 0 -0.12489782e+00 -0.26380958e+00 0.15437467e+02 0.13957000e+00
- 2 213 447 448 -0.24971171e+00 0.70315331e+00 0.37763422e+02 0.80455316e+00
- 2 223 449 451 0.55622586e+00 -0.80852303e+00 0.15878310e+03 0.77079890e+00
- 2 -213 452 453 -0.69964808e+00 0.70362729e+00 0.11940467e+03 0.77268478e+00
- 1 211 0 0 0.51203914e+00 -0.43246238e+00 0.12899214e+03 0.13957000e+00
- 1 -211 0 0 0.19884398e+00 0.38487697e+00 0.11715212e+04 0.13957000e+00
- 1 2212 0 0 -0.66323325e+00 0.16614776e+00 0.17427173e+04 0.93827000e+00
- 2 92 222 229 0.30606309e+01 -0.11969284e+01 -0.25498466e+02 0.14027481e+02
- 2 213 454 455 0.19609153e+01 -0.71002978e-01 -0.48556673e+01 0.75912242e+00
- 2 221 456 458 0.32056646e+01 -0.58040736e+00 -0.68011543e+01 0.54745000e+00
- 2 111 459 460 0.12977398e+01 -0.18186106e+00 -0.49151126e+01 0.13498000e+00
- 2 311 461 461 0.16562211e+00 -0.23358711e+00 -0.72037972e+00 0.49767000e+00
- 2 -323 462 463 0.50230599e+00 0.96609981e-01 -0.26873855e+00 0.69551907e+00
- 1 2212 0 0 -0.52881893e+00 -0.20027334e+00 -0.15919615e+01 0.93827000e+00
- 1 -2112 0 0 -0.31730291e+01 0.23840135e+00 -0.52066616e+01 0.93957000e+00
- 2 -213 464 465 -0.36976879e+00 -0.26480791e+00 -0.11387906e+01 0.70401216e+00
- 2 92 231 238 0.00000000e+00 0.00000000e+00 0.17262888e+02 0.11777760e+02
- 2 -213 466 467 0.65620440e+00 0.92039561e-01 0.81085405e+01 0.84127991e+00
- 2 2224 468 469 0.65752018e+00 0.37050658e+00 0.49878064e+01 0.12669929e+01
- 2 223 470 472 -0.36119943e+00 -0.54075399e-01 0.56315060e+00 0.77481185e+00
- 2 -2224 473 474 -0.67843303e-01 -0.43289516e+00 0.20593433e+01 0.11844573e+01
- 1 211 0 0 0.23548038e+00 0.27021237e-01 0.15224972e+01 0.13957000e+00
- 2 111 475 476 -0.10337225e+01 -0.60171089e-01 -0.30238672e+00 0.13498000e+00
- 2 111 477 478 -0.14008073e+00 0.37721437e+00 -0.32441621e+00 0.13498000e+00
- 2 221 479 480 0.53641041e-01 -0.31964010e+00 0.64835311e+00 0.54745000e+00
- 2 92 240 243 0.00000000e+00 0.00000000e+00 -0.73710074e+03 0.43925978e+01
- 1 211 0 0 0.59534247e+00 0.57082133e+00 -0.27086927e+03 0.13957000e+00
- 2 113 481 482 0.69483965e-01 -0.74519403e+00 -0.13788371e+03 0.59436836e+00
- 2 311 483 483 -0.35643208e+00 0.11014545e+01 -0.16429679e+03 0.49767000e+00
- 1 -321 0 0 -0.30839436e+00 -0.92708183e+00 -0.16405097e+03 0.49360000e+00
- 2 92 245 247 -0.30053329e+00 0.71970729e+00 -0.13953009e+02 0.32300711e+01
- 2 -213 484 485 -0.26842147e+00 0.61452660e+00 -0.36586134e+01 0.81575105e+00
- 2 -311 486 486 0.32855405e+00 -0.57172861e+00 -0.20123659e+01 0.49767000e+00
- 2 323 487 488 -0.36066587e+00 0.67690930e+00 -0.82820294e+01 0.84139138e+00
- 2 92 249 250 0.00000000e+00 0.00000000e+00 -0.44978088e+01 0.16507894e+01
- 2 111 489 490 -0.30465425e+00 0.26991722e+00 -0.34331891e+00 0.13498000e+00
- 2 113 491 492 0.30465425e+00 -0.26991722e+00 -0.41544899e+01 0.75357228e+00
- 1 22 0 0 0.38673154e+00 0.26624279e+01 0.10334566e+03 0.00000000e+00
- 1 22 0 0 0.49819864e+00 0.60268639e+01 0.20586146e+03 0.00000000e+00
- 1 -211 0 0 -0.30910004e-01 0.19160110e+01 0.69492447e+02 0.13957000e+00
- 1 211 0 0 -0.24430987e+00 0.64896709e+00 0.41697892e+02 0.13957000e+00
- 1 -211 0 0 0.49865230e+00 0.41789481e+00 0.21404244e+02 0.13957000e+00
- 1 211 0 0 -0.12145133e+00 0.19328454e+01 0.72328153e+02 0.13957000e+00
- 1 130 0 0 -0.11072016e+01 0.14318226e+01 0.27742632e+02 0.49767000e+00
- 1 2212 0 0 0.12364643e-01 -0.64982812e-01 0.21534704e+02 0.93827000e+00
- 1 -211 0 0 0.17263832e-01 -0.28351813e-01 0.15516647e+01 0.13957000e+00
- 1 22 0 0 0.26270772e+00 0.15043581e+00 0.16201299e+01 0.00000000e+00
- 1 22 0 0 0.55200067e+00 0.19501094e+00 0.40958718e+01 0.00000000e+00
- 1 -211 0 0 0.94389823e+00 -0.10755729e+00 0.73899717e+01 0.13957000e+00
- 1 211 0 0 0.38344608e+00 0.25109396e-01 0.45472267e+01 0.13957000e+00
- 2 111 493 494 0.16132344e+01 -0.60831244e+00 0.16129137e+02 0.13498000e+00
- 1 211 0 0 0.23140884e+00 0.24378520e+00 0.92647526e+00 0.13957000e+00
- 2 111 495 496 0.45007436e+00 0.38083346e+00 0.73135138e+01 0.13498000e+00
- 1 -211 0 0 -0.15245446e+00 -0.46532694e+00 0.29642849e+01 0.13957000e+00
- 1 211 0 0 0.31516699e+00 0.90586663e-01 0.21297942e+01 0.13957000e+00
- 2 310 497 498 -0.30856699e+00 0.23438334e+00 0.22311728e+01 0.49767000e+00
- 1 -321 0 0 -0.16195394e+01 -0.45326516e+00 0.60006303e+01 0.49360000e+00
- 1 211 0 0 -0.18250604e+00 -0.22500414e+00 0.10516444e+01 0.13957000e+00
- 1 -211 0 0 -0.18089258e+00 0.32876288e+00 0.16002858e+01 0.13957000e+00
- 2 111 499 500 -0.22756790e+00 -0.36872897e+00 0.34647305e+01 0.13498000e+00
- 1 211 0 0 -0.87455189e+00 -0.29130970e+00 0.52305985e+01 0.13957000e+00
- 1 -211 0 0 -0.23450874e+00 0.26869323e+00 0.12130145e+01 0.13957000e+00
- 1 -211 0 0 0.39077944e+00 -0.83107681e+00 0.17291070e+02 0.13957000e+00
- 1 211 0 0 -0.36192750e+00 0.61639695e-01 0.38234763e+01 0.13957000e+00
- 1 22 0 0 -0.76926289e-02 -0.99159953e-01 0.22612314e+01 0.00000000e+00
- 1 22 0 0 0.60454182e-01 0.11004165e-01 0.71094197e+00 0.00000000e+00
- 2 3122 501 502 0.15042579e+01 0.16566623e+01 0.12903029e+03 0.11156800e+01
- 1 -211 0 0 0.17455690e+00 0.29542679e-01 0.18921824e+02 0.13957000e+00
- 1 130 0 0 0.10222706e+01 0.11680104e-01 0.42019910e+02 0.49767000e+00
- 1 -2112 0 0 0.15999211e+01 0.11675621e+01 0.13682106e+03 0.93957000e+00
- 1 211 0 0 -0.11514115e-01 0.51016328e-01 0.15725810e+02 0.13957000e+00
- 1 130 0 0 0.11623247e+00 0.17568442e+00 0.10739030e+02 0.49767000e+00
- 1 -321 0 0 0.11122514e+01 0.29556779e+00 0.30011284e+02 0.49360000e+00
- 2 111 503 504 0.28988180e+00 0.51619593e+00 0.19095040e+02 0.13498000e+00
- 1 2112 0 0 0.14118113e+01 0.16476265e+01 0.27031810e+02 0.93957000e+00
- 1 211 0 0 0.10473866e+00 0.14200093e+00 0.47944991e+01 0.13957000e+00
- 2 -3122 505 506 -0.22075973e+00 0.48071607e+00 0.74464102e+01 0.11156800e+01
- 1 22 0 0 0.25923662e-01 -0.42357458e-01 0.24272188e+00 0.00000000e+00
- 1 2112 0 0 0.13122819e+01 0.94701521e+00 0.11850599e+02 0.93957000e+00
- 1 -211 0 0 -0.42968991e-01 -0.21349094e-01 0.12008766e+01 0.13957000e+00
- 2 311 507 507 0.35052636e+00 0.58211368e+00 0.30175531e+01 0.49767000e+00
- 1 211 0 0 0.28246679e+00 0.11210042e+00 0.11627446e+01 0.13957000e+00
- 1 211 0 0 0.53158691e+00 0.42339672e+00 0.18327788e+01 0.13957000e+00
- 1 -211 0 0 0.81077666e+00 0.36262945e+00 0.20291485e+01 0.13957000e+00
- 2 111 508 509 0.25027289e+00 0.12106267e+00 0.95356891e+00 0.13498000e+00
- 2 -311 510 510 -0.46147933e-01 -0.21118153e-01 0.17906746e+01 0.49767000e+00
- 1 -211 0 0 0.33015295e+00 -0.33012876e+00 0.11752441e+01 0.13957000e+00
- 1 -211 0 0 0.98305416e+00 0.91986915e+00 0.77067344e+00 0.13957000e+00
- 1 211 0 0 0.78294536e+00 0.67528232e-01 0.74817753e+00 0.13957000e+00
- 1 -211 0 0 0.42170776e+00 -0.11506447e+01 -0.61584996e+00 0.13957000e+00
- 1 211 0 0 0.85877767e-01 -0.28500410e+00 -0.70223506e+00 0.13957000e+00
- 1 22 0 0 -0.21332428e+00 -0.41093962e-01 -0.42934106e+00 0.00000000e+00
- 1 22 0 0 -0.59650372e-01 -0.10364203e+00 -0.21242525e+00 0.00000000e+00
- 1 22 0 0 0.76647273e-01 -0.10080432e-01 -0.35507431e-01 0.00000000e+00
- 1 211 0 0 -0.47553467e-01 -0.12069920e+00 -0.50382993e+00 0.13957000e+00
- 1 -211 0 0 -0.19577603e+00 -0.40221260e+00 -0.77235838e+00 0.13957000e+00
- 1 211 0 0 -0.14885928e+00 -0.41045899e+00 -0.11716378e+01 0.13957000e+00
- 1 -211 0 0 -0.18886566e+00 -0.12280973e+00 -0.33949335e+00 0.13957000e+00
- 2 111 511 512 -0.40393565e+00 -0.80852530e+00 -0.10025034e+01 0.13498000e+00
- 1 2112 0 0 0.43801291e+00 -0.82228924e-01 -0.10669922e+02 0.93957000e+00
- 1 -211 0 0 0.25043726e+00 -0.33146428e+00 -0.21544132e+01 0.13957000e+00
- 1 211 0 0 -0.18435511e+00 -0.74932017e-01 -0.22885504e+01 0.13957000e+00
- 2 111 513 514 0.37518341e+00 -0.30692436e+00 -0.19679635e+02 0.13498000e+00
- 2 111 515 516 0.62807897e+00 -0.28735718e+00 -0.16003476e+02 0.13498000e+00
- 2 111 517 518 0.83621634e-01 -0.13583067e+00 -0.36454940e+01 0.13498000e+00
- 2 111 519 520 0.21869952e+00 -0.57728304e-01 -0.55717514e+01 0.13498000e+00
- 1 -211 0 0 0.21898891e+00 0.30657134e+00 -0.42385189e+01 0.13957000e+00
- 2 111 521 522 -0.15794046e+00 0.20945033e+00 -0.16356870e+02 0.13498000e+00
- 1 211 0 0 0.19729943e+00 -0.46787635e+00 -0.14059327e+02 0.13957000e+00
- 1 -211 0 0 0.53306093e+00 -0.12426883e+00 -0.22806030e+02 0.13957000e+00
- 2 111 523 524 0.19477845e+00 -0.25169034e+00 -0.15632906e+02 0.13498000e+00
- 1 211 0 0 0.21851381e+00 0.45425689e+00 -0.18443416e+02 0.13957000e+00
- 2 111 525 526 0.44619210e+00 -0.12423910e+00 -0.27127882e+02 0.13498000e+00
- 2 311 527 527 -0.80182913e+00 0.33847455e+00 -0.94556354e+01 0.49767000e+00
- 2 111 528 529 -0.38996714e+00 0.13077744e-04 -0.53157419e+01 0.13498000e+00
- 1 130 0 0 -0.16046714e+01 0.54122470e+00 -0.20441050e+02 0.49767000e+00
- 1 211 0 0 0.63108679e-02 0.21601067e+00 -0.16650799e+01 0.13957000e+00
- 1 -211 0 0 -0.22214299e+00 -0.12373723e-01 -0.28397451e+01 0.13957000e+00
- 2 111 530 531 -0.53862031e+00 0.51071381e+00 -0.80295618e+01 0.13498000e+00
- 1 211 0 0 0.60845092e-01 -0.59765176e-01 -0.97676936e-03 0.13957000e+00
- 1 -211 0 0 -0.15782487e+00 -0.26582713e+00 -0.60251560e-01 0.13957000e+00
- 2 111 532 533 -0.42161276e+00 -0.19622039e+00 -0.52461733e+00 0.13498000e+00
- 1 -211 0 0 0.19535902e+00 0.31780826e+00 0.26201378e+00 0.13957000e+00
- 2 111 534 535 0.78003677e-01 0.18439536e+00 -0.49731663e+00 0.13498000e+00
- 1 -211 0 0 -0.46312068e-01 0.85284779e-01 -0.59371386e-01 0.13957000e+00
- 1 211 0 0 0.10453151e+00 -0.13680926e+00 0.34841700e+00 0.13957000e+00
- 2 111 536 537 0.53790683e-02 -0.20155275e+00 -0.89073146e-01 0.13498000e+00
- 1 211 0 0 -0.16305762e+00 0.10017691e+00 -0.40494932e-02 0.13957000e+00
- 1 -211 0 0 -0.16102137e+00 -0.38717744e+00 -0.26411452e+00 0.13957000e+00
- 2 111 538 539 -0.95314117e-02 -0.55353740e-01 -0.25712709e+00 0.13498000e+00
- 1 22 0 0 0.35604173e+00 0.59058912e-01 0.13462911e+00 0.00000000e+00
- 1 22 0 0 0.33841055e+00 0.19252494e+00 0.11234353e+00 0.00000000e+00
- 1 211 0 0 0.37474635e-01 0.25216309e-01 -0.31977710e+00 0.13957000e+00
- 2 111 540 541 0.39333115e+00 -0.83628802e+00 -0.49014665e+00 0.13498000e+00
- 1 -211 0 0 -0.21710276e+00 -0.38201777e+00 -0.54246401e+02 0.13957000e+00
- 1 211 0 0 0.73775062e-01 0.14971971e+00 -0.69503754e+01 0.13957000e+00
- 1 211 0 0 0.91011431e-01 -0.24631327e+00 -0.10822355e+03 0.13957000e+00
- 2 111 542 543 0.39392202e+00 -0.31485944e+00 -0.72263165e+03 0.13498000e+00
- 1 -211 0 0 -0.47590357e+00 -0.80024263e+00 -0.17710173e+04 0.13957000e+00
- 2 111 544 545 -0.60182800e-01 -0.49338539e+00 -0.90888773e+03 0.13498000e+00
- 1 211 0 0 -0.26834524e+00 0.50659093e+00 -0.16631133e+03 0.13957000e+00
- 2 111 546 547 -0.11223578e+00 0.18371618e+01 -0.31597690e+03 0.13498000e+00
- 1 -211 0 0 -0.86701358e+00 0.88370657e-02 -0.13481514e+03 0.13957000e+00
- 1 211 0 0 -0.28699354e-01 0.20143971e-01 -0.15506598e+02 0.13957000e+00
- 2 111 548 549 -0.28750944e+00 -0.19470515e+00 -0.85091492e+02 0.13498000e+00
- 2 311 550 550 -0.42324669e+00 -0.26115054e+00 -0.54076807e+02 0.49767000e+00
- 2 111 551 552 0.82408964e-01 0.20921689e+00 -0.18057814e+02 0.13498000e+00
- 1 2212 0 0 0.28063750e+00 0.47175476e+00 -0.17101434e+02 0.93827000e+00
- 1 -211 0 0 0.91736075e-01 -0.22916767e-01 -0.21444798e+01 0.13957000e+00
- 1 -211 0 0 0.37548901e+00 0.13094723e+00 -0.47236665e+01 0.13957000e+00
- 1 211 0 0 0.40482723e+00 0.10363117e+00 -0.21991192e+01 0.13957000e+00
- 2 111 553 554 -0.44771355e-02 0.21128902e+00 -0.21737066e+01 0.13498000e+00
- 1 211 0 0 -0.19448035e-01 -0.24577508e+00 -0.32508045e+01 0.13957000e+00
- 2 111 555 556 0.44471161e+00 -0.16406155e+00 -0.21609128e+01 0.13498000e+00
- 1 22 0 0 0.53893950e-03 0.11200179e+01 -0.64179703e+01 0.00000000e+00
- 1 22 0 0 0.60086104e-01 0.21750343e+00 -0.12776934e+01 0.00000000e+00
- 2 310 557 558 0.55458276e-01 0.29222683e+00 -0.25483421e+01 0.49767000e+00
- 1 -321 0 0 -0.25284526e+00 0.61458371e+00 -0.30277533e+01 0.49360000e+00
- 1 211 0 0 -0.10215163e+00 0.78254488e+00 -0.49718925e+01 0.13957000e+00
- 1 22 0 0 -0.13285094e-01 0.29309049e-01 -0.94191559e-01 0.00000000e+00
- 1 22 0 0 -0.57186812e+00 0.26652567e+00 -0.35515938e+01 0.00000000e+00
- 1 130 0 0 -0.34136670e+00 0.52164746e+00 -0.58016572e+01 0.49767000e+00
- 1 211 0 0 -0.13305918e+00 0.40019935e+00 -0.12373344e+01 0.13957000e+00
- 2 111 559 560 -0.10164168e+01 0.30773030e+00 -0.41091296e+01 0.13498000e+00
- 1 -211 0 0 0.11966473e+00 0.80531699e-01 -0.17278237e+00 0.13957000e+00
- 1 211 0 0 -0.50559728e+00 0.12862659e+00 -0.24479039e+01 0.13957000e+00
- 1 211 0 0 -0.51741845e+00 0.47351976e+00 -0.20403046e+00 0.13957000e+00
- 1 -211 0 0 -0.35478550e-01 -0.32116774e-01 -0.51760476e-01 0.13957000e+00
- 2 111 561 562 -0.88129903e+00 0.57560198e+00 -0.38413417e+00 0.13498000e+00
- 1 -211 0 0 -0.87262483e+00 0.41155184e+00 -0.76097719e+00 0.13957000e+00
- 2 111 563 564 -0.64664343e-01 0.32818313e+00 -0.51763357e+00 0.13498000e+00
- 1 22 0 0 -0.17632871e+00 0.13802258e+00 0.50331746e-01 0.00000000e+00
- 2 113 565 566 -0.81193935e+00 0.45070962e-01 -0.28073620e+00 0.80484099e+00
- 1 -211 0 0 -0.87511090e+00 -0.18167155e-01 0.27592850e+00 0.13957000e+00
- 2 111 567 568 -0.84382026e+00 0.48957015e+00 0.22208704e+00 0.13498000e+00
- 1 211 0 0 -0.23428579e+01 -0.12951415e+01 0.55978469e+01 0.13957000e+00
- 2 111 569 570 -0.94703248e+00 -0.23911684e+00 0.14707313e+01 0.13498000e+00
- 1 211 0 0 -0.36630685e-01 0.15015244e-01 0.25510682e+00 0.13957000e+00
- 2 111 571 572 -0.20095821e+01 -0.20819666e+01 0.77972037e+01 0.13498000e+00
- 1 211 0 0 -0.27277137e+00 -0.12699541e+01 0.59730506e+01 0.13957000e+00
- 2 111 573 574 -0.36767143e-01 -0.63735473e-01 0.13989262e+00 0.13498000e+00
- 2 3122 575 576 -0.20734056e+00 -0.29071488e+00 0.11014257e+02 0.11156800e+01
- 2 111 577 578 -0.71556258e-01 -0.28245325e+00 0.24628141e+01 0.13498000e+00
- 1 22 0 0 -0.28766900e+00 -0.17862444e+00 0.55747852e+01 0.00000000e+00
- 1 22 0 0 -0.77370789e+00 -0.46136624e+00 0.11622997e+02 0.00000000e+00
- 1 -2212 0 0 -0.34429173e+00 -0.11883576e+00 0.23031903e+02 0.93827000e+00
- 2 111 579 580 -0.35106212e+00 -0.75325331e-01 0.96581490e+01 0.13498000e+00
- 1 22 0 0 -0.81394043e+00 -0.69565045e+00 0.22660256e+02 0.00000000e+00
- 1 22 0 0 -0.75767322e+00 -0.61992258e+00 0.23597613e+02 0.00000000e+00
- 1 -2212 0 0 -0.27125895e+01 0.47794359e+00 0.58808767e+02 0.93827000e+00
- 2 111 581 582 -0.17038776e+01 0.31628576e+00 0.34081787e+02 0.13498000e+00
- 1 211 0 0 -0.82738697e+00 0.72924160e+00 0.29089349e+02 0.13957000e+00
- 2 111 583 584 -0.36785972e+00 0.24867060e+00 0.32594824e+02 0.13498000e+00
- 1 2112 0 0 -0.33496670e+01 0.94991908e+00 0.73368420e+02 0.93957000e+00
- 2 111 585 586 -0.14864632e+00 0.14521207e+00 0.43953076e+01 0.13498000e+00
- 1 -321 0 0 -0.85802348e+00 0.25123768e+00 0.25749128e+02 0.49360000e+00
- 2 111 587 588 -0.34792719e+00 0.59353095e+00 0.17554504e+02 0.13498000e+00
- 2 -3322 589 590 -0.18460802e+01 0.95500621e+00 0.53014972e+02 0.13149000e+01
- 1 211 0 0 -0.19579914e+00 0.19970059e+00 0.10528435e+02 0.13957000e+00
- 2 111 591 592 -0.30038776e+00 0.68145761e+00 0.23001512e+02 0.13498000e+00
- 2 111 593 594 -0.27792715e+00 0.40401559e+00 0.12384351e+02 0.13498000e+00
- 2 221 595 596 -0.35360971e+00 0.15064195e+01 0.48967137e+02 0.54745000e+00
- 2 -311 597 597 -0.50607546e+00 0.48906165e+00 0.21917170e+02 0.49767000e+00
- 1 -211 0 0 -0.96795092e+00 0.12898135e+01 0.45660021e+02 0.13957000e+00
- 1 22 0 0 -0.10557116e+00 0.52480577e+00 0.21339140e+02 0.00000000e+00
- 1 22 0 0 0.65511390e-02 0.68659038e+00 0.29657167e+02 0.00000000e+00
- 1 -211 0 0 -0.10115466e+00 0.75868268e+00 0.41276733e+02 0.13957000e+00
- 1 211 0 0 0.11733864e+00 0.72714532e+00 0.24541894e+02 0.13957000e+00
- 2 111 598 599 0.46487728e-01 0.60482262e-01 0.79788179e+01 0.13498000e+00
- 1 22 0 0 0.44730192e-04 0.44969360e-01 0.59886611e+00 0.00000000e+00
- 1 -11 0 0 0.19573173e+00 0.16053565e+00 0.20439385e+01 0.51000000e-03
- 1 11 0 0 0.12240173e+00 0.10188204e+00 0.12758330e+01 0.51000000e-03
- 1 211 0 0 -0.10844603e+00 -0.29085820e-01 0.24603826e+00 0.13957000e+00
- 2 111 600 601 -0.20659646e+00 -0.53288096e+00 0.49921619e+01 0.13498000e+00
- 1 -211 0 0 0.36065700e+00 -0.42633607e+00 0.29914613e+01 0.13957000e+00
- 2 111 602 603 0.39259592e+01 -0.70483656e+01 0.39455709e+02 0.13498000e+00
- 1 211 0 0 0.49159062e+00 -0.15325285e+01 0.57901002e+01 0.13957000e+00
- 2 111 604 605 0.18642225e+00 -0.57993921e+00 0.40134686e+01 0.13498000e+00
- 1 -211 0 0 0.41402364e+00 -0.76751547e+00 0.59215137e+01 0.13957000e+00
- 2 111 606 607 0.50365955e+00 -0.13452694e+01 0.59349707e+01 0.13498000e+00
- 1 321 0 0 0.15840105e+01 -0.42754115e+01 0.26779177e+02 0.49360000e+00
- 1 -211 0 0 0.57306569e+00 -0.13930525e+01 0.69019687e+01 0.13957000e+00
- 1 321 0 0 -0.30866182e+00 -0.20071146e+01 0.12519038e+02 0.49360000e+00
- 1 -211 0 0 -0.22533787e+00 -0.19159709e+01 0.14657081e+02 0.13957000e+00
- 2 -311 608 608 -0.64071926e-02 -0.10897487e+01 0.10865556e+02 0.49767000e+00
- 2 111 609 610 -0.34993787e+00 -0.77303536e+00 0.55013287e+01 0.13498000e+00
- 1 130 0 0 -0.13033274e+01 -0.39820781e+01 0.33539326e+02 0.49767000e+00
- 2 -311 611 611 -0.57678408e+00 -0.32929164e+00 0.54770308e+01 0.49767000e+00
- 2 111 612 613 -0.41964970e+00 -0.76038274e+00 0.71670266e+01 0.13498000e+00
- 1 -211 0 0 -0.17456321e+00 -0.41486407e+00 0.50793192e+01 0.13957000e+00
- 2 111 614 615 -0.18984781e+01 -0.42375433e+01 0.34233763e+02 0.13498000e+00
- 1 211 0 0 -0.73969684e-01 0.55994748e-01 0.63226085e+01 0.13957000e+00
- 2 111 616 617 -0.13335370e+00 -0.64201386e+00 0.69121184e+01 0.13498000e+00
- 1 211 0 0 -0.32063118e+00 0.91117396e-01 0.68671107e+01 0.13957000e+00
- 2 111 618 619 0.70919472e-01 0.61203592e+00 0.30896311e+02 0.13498000e+00
- 1 211 0 0 0.83803885e-03 -0.12846399e+00 0.20313238e+02 0.13957000e+00
- 1 -211 0 0 0.42749259e+00 -0.29704650e+00 0.48185433e+02 0.13957000e+00
- 2 111 620 621 0.12789523e+00 -0.38301254e+00 0.90284430e+02 0.13498000e+00
- 1 -211 0 0 0.59354184e-01 0.34818689e+00 0.26128852e+02 0.13957000e+00
- 2 111 622 623 -0.75900227e+00 0.35544040e+00 0.93275818e+02 0.13498000e+00
- 1 211 0 0 0.33413519e+00 0.21779453e+00 -0.13387260e+01 0.13957000e+00
- 2 111 624 625 0.16267801e+01 -0.28879751e+00 -0.35169413e+01 0.13498000e+00
- 2 111 626 627 0.16950371e+01 -0.26144355e+00 -0.33332980e+01 0.13498000e+00
- 2 111 628 629 0.67271422e+00 -0.18112882e+00 -0.13752959e+01 0.13498000e+00
- 2 111 630 631 0.83791323e+00 -0.13783498e+00 -0.20925604e+01 0.13498000e+00
- 1 22 0 0 0.41335339e+00 -0.21164318e-01 -0.13586421e+01 0.00000000e+00
- 1 22 0 0 0.88438638e+00 -0.16069674e+00 -0.35564705e+01 0.00000000e+00
- 1 130 0 0 0.16562211e+00 -0.23358711e+00 -0.72037972e+00 0.49767000e+00
- 2 -311 632 632 0.33369234e+00 0.16136043e-01 -0.81041598e-01 0.49767000e+00
- 1 -211 0 0 0.16861365e+00 0.80473938e-01 -0.18769695e+00 0.13957000e+00
- 1 -211 0 0 -0.17005460e-01 -0.24908808e+00 -0.91128473e-01 0.13957000e+00
- 2 111 633 634 -0.35276333e+00 -0.15719830e-01 -0.10476621e+01 0.13498000e+00
- 1 -211 0 0 0.23242463e+00 -0.34795739e+00 0.30033419e+01 0.13957000e+00
- 2 111 635 636 0.42377977e+00 0.43999695e+00 0.51051987e+01 0.13498000e+00
- 1 2212 0 0 0.22974165e+00 0.18098674e+00 0.35014861e+01 0.93827000e+00
- 1 211 0 0 0.42777853e+00 0.18951984e+00 0.14863203e+01 0.13957000e+00
- 1 -211 0 0 -0.13951430e+00 -0.14230268e+00 0.43152186e+00 0.13957000e+00
- 1 211 0 0 0.58611219e-01 -0.23901621e-01 -0.38252274e-01 0.13957000e+00
- 2 111 637 638 -0.28029635e+00 0.11212891e+00 0.16988101e+00 0.13498000e+00
- 1 -2212 0 0 -0.10653465e+00 -0.52933946e+00 0.16825989e+01 0.93827000e+00
- 1 -211 0 0 0.38691342e-01 0.96444300e-01 0.37674442e+00 0.13957000e+00
- 1 22 0 0 -0.24572844e+00 0.41841962e-01 -0.59477107e-01 0.00000000e+00
- 1 22 0 0 -0.78799409e+00 -0.10201305e+00 -0.24290961e+00 0.00000000e+00
- 1 22 0 0 -0.43278173e-01 0.25374010e+00 -0.25603462e+00 0.00000000e+00
- 1 22 0 0 -0.96802559e-01 0.12347427e+00 -0.68381593e-01 0.00000000e+00
- 1 22 0 0 0.16691714e+00 -0.21707693e+00 0.34769207e-01 0.00000000e+00
- 1 22 0 0 -0.11327610e+00 -0.10256317e+00 0.61358390e+00 0.00000000e+00
- 1 -211 0 0 0.15860136e+00 -0.53044794e+00 -0.57045292e+02 0.13957000e+00
- 1 211 0 0 -0.89117395e-01 -0.21474610e+00 -0.80838416e+02 0.13957000e+00
- 2 310 639 640 -0.35643208e+00 0.11014545e+01 -0.16429679e+03 0.49767000e+00
- 1 -211 0 0 0.56998091e-01 0.12569933e+00 -0.14751769e+00 0.13957000e+00
- 2 111 641 643 -0.32541956e+00 0.48882727e+00 -0.35110957e+01 0.13498000e+00
- 1 130 0 0 0.32855405e+00 -0.57172861e+00 -0.20123659e+01 0.49767000e+00
- 2 311 644 644 -0.34046857e+00 0.43935355e+00 -0.39997849e+01 0.49767000e+00
- 1 211 0 0 -0.20197292e-01 0.23755575e+00 -0.42822445e+01 0.13957000e+00
- 1 22 0 0 -0.20335919e+00 0.20940771e+00 -0.31197272e+00 0.00000000e+00
- 1 22 0 0 -0.10129506e+00 0.60509513e-01 -0.31346192e-01 0.00000000e+00
- 1 211 0 0 0.52562341e+00 -0.22219323e+00 -0.30274616e+01 0.13957000e+00
- 1 -211 0 0 -0.22096916e+00 -0.47723989e-01 -0.11270283e+01 0.13957000e+00
- 1 22 0 0 0.13663056e+01 -0.51925731e+00 0.14094308e+02 0.00000000e+00
- 1 22 0 0 0.24692885e+00 -0.89055130e-01 0.20348297e+01 0.00000000e+00
- 1 22 0 0 0.13386285e+00 0.19718690e+00 0.27003132e+01 0.00000000e+00
- 1 22 0 0 0.31621151e+00 0.18364657e+00 0.46132005e+01 0.00000000e+00
- 2 111 645 646 -0.71090939e-01 -0.42159498e-01 0.22478007e+00 0.13498000e+00
- 2 111 647 648 -0.23747605e+00 0.27654284e+00 0.20063927e+01 0.13498000e+00
- 1 22 0 0 -0.12836855e+00 -0.26783703e+00 0.27290266e+01 0.00000000e+00
- 1 22 0 0 -0.99199353e-01 -0.10089194e+00 0.73570392e+00 0.00000000e+00
- 1 2212 0 0 0.12273220e+01 0.14560914e+01 0.10590401e+03 0.93827000e+00
- 1 -211 0 0 0.27693593e+00 0.20057097e+00 0.23126282e+02 0.13957000e+00
- 1 22 0 0 0.27018960e+00 0.36916746e+00 0.14953873e+02 0.00000000e+00
- 1 22 0 0 0.19692203e-01 0.14702847e+00 0.41411667e+01 0.00000000e+00
- 1 -2112 0 0 -0.95422251e-01 0.44977396e+00 0.61592511e+01 0.93957000e+00
- 2 111 649 650 -0.12533748e+00 0.30942110e-01 0.12871591e+01 0.13498000e+00
- 2 310 651 652 0.35052636e+00 0.58211368e+00 0.30175531e+01 0.49767000e+00
- 1 22 0 0 0.68938891e-01 0.46924811e-01 0.12007751e+00 0.00000000e+00
- 1 22 0 0 0.18133400e+00 0.74137861e-01 0.83349140e+00 0.00000000e+00
- 2 310 653 654 -0.46147933e-01 -0.21118153e-01 0.17906746e+01 0.49767000e+00
- 1 22 0 0 -0.18776333e+00 -0.28195230e+00 -0.30139606e+00 0.00000000e+00
- 1 22 0 0 -0.21617232e+00 -0.52657300e+00 -0.70110737e+00 0.00000000e+00
- 1 22 0 0 0.20271818e+00 -0.18430334e+00 -0.13576368e+02 0.00000000e+00
- 1 22 0 0 0.17246523e+00 -0.12262102e+00 -0.61032667e+01 0.00000000e+00
- 1 22 0 0 0.31095429e-01 -0.20831633e-01 -0.39191132e+00 0.00000000e+00
- 1 22 0 0 0.59698354e+00 -0.26652554e+00 -0.15611565e+02 0.00000000e+00
- 1 22 0 0 -0.11692833e-01 0.95498634e-02 -0.63588186e-01 0.00000000e+00
- 1 22 0 0 0.95314466e-01 -0.14538054e+00 -0.35819058e+01 0.00000000e+00
- 1 22 0 0 0.91315080e-01 -0.45415266e-01 -0.11924804e+01 0.00000000e+00
- 1 22 0 0 0.12738444e+00 -0.12313038e-01 -0.43792709e+01 0.00000000e+00
- 1 22 0 0 -0.13749112e+00 0.19182266e+00 -0.15959140e+02 0.00000000e+00
- 1 22 0 0 -0.20449342e-01 0.17627661e-01 -0.39772983e+00 0.00000000e+00
- 1 22 0 0 0.92183594e-01 -0.21961437e+00 -0.10862539e+02 0.00000000e+00
- 1 22 0 0 0.10259486e+00 -0.32075972e-01 -0.47703662e+01 0.00000000e+00
- 1 22 0 0 0.44890649e+00 -0.12147187e+00 -0.25231345e+02 0.00000000e+00
- 1 22 0 0 -0.27143911e-02 -0.27672351e-02 -0.18965371e+01 0.00000000e+00
- 2 310 655 656 -0.80182913e+00 0.33847455e+00 -0.94556354e+01 0.49767000e+00
- 1 22 0 0 -0.11984220e+00 0.62220972e-01 -0.18587002e+01 0.00000000e+00
- 1 22 0 0 -0.27012494e+00 -0.62207894e-01 -0.34570417e+01 0.00000000e+00
- 1 22 0 0 -0.45371537e+00 0.47419136e+00 -0.66637078e+01 0.00000000e+00
- 1 22 0 0 -0.84904945e-01 0.36522453e-01 -0.13658540e+01 0.00000000e+00
- 1 22 0 0 -0.33805364e+00 -0.21142596e+00 -0.44533291e+00 0.00000000e+00
- 1 22 0 0 -0.83559114e-01 0.15205567e-01 -0.79284423e-01 0.00000000e+00
- 1 22 0 0 0.11443174e-01 0.92672378e-01 -0.88675180e-01 0.00000000e+00
- 1 22 0 0 0.66560503e-01 0.91722987e-01 -0.40864145e+00 0.00000000e+00
- 1 22 0 0 -0.57891490e-01 -0.76929214e-01 -0.66207457e-01 0.00000000e+00
- 1 22 0 0 0.63270558e-01 -0.12462353e+00 -0.22865689e-01 0.00000000e+00
- 1 22 0 0 -0.14430798e-01 -0.81448257e-01 -0.25619608e+00 0.00000000e+00
- 1 22 0 0 0.48993858e-02 0.26094516e-01 -0.93101369e-03 0.00000000e+00
- 1 22 0 0 0.52489077e-02 -0.10352532e+00 -0.71254732e-01 0.00000000e+00
- 1 22 0 0 0.38808224e+00 -0.73276270e+00 -0.41889191e+00 0.00000000e+00
- 1 22 0 0 0.34096454e-01 -0.34532759e-01 -0.14636902e+03 0.00000000e+00
- 1 22 0 0 0.35982557e+00 -0.28032668e+00 -0.57626263e+03 0.00000000e+00
- 1 22 0 0 -0.85104849e-01 -0.27031859e+00 -0.58090193e+03 0.00000000e+00
- 1 22 0 0 0.24922049e-01 -0.22306680e+00 -0.32798580e+03 0.00000000e+00
- 1 22 0 0 -0.45955984e-01 0.58300856e+00 -0.11130727e+03 0.00000000e+00
- 1 22 0 0 -0.66279798e-01 0.12541532e+01 -0.20466962e+03 0.00000000e+00
- 1 22 0 0 -0.13682028e+00 -0.85883452e-01 -0.55283133e+02 0.00000000e+00
- 1 22 0 0 -0.15068916e+00 -0.10882170e+00 -0.29808360e+02 0.00000000e+00
- 2 310 657 658 -0.42324669e+00 -0.26115054e+00 -0.54076807e+02 0.49767000e+00
- 1 22 0 0 0.10752670e+00 0.10702239e+00 -0.88156998e+01 0.00000000e+00
- 1 22 0 0 -0.25117738e-01 0.10219450e+00 -0.92421147e+01 0.00000000e+00
- 1 22 0 0 0.23615138e-01 0.16137573e+00 -0.10165744e+01 0.00000000e+00
- 1 22 0 0 -0.28092274e-01 0.49913289e-01 -0.11571322e+01 0.00000000e+00
- 1 22 0 0 0.42752534e+00 -0.13490181e+00 -0.20936095e+01 0.00000000e+00
- 1 22 0 0 0.17186276e-01 -0.29159746e-01 -0.67303215e-01 0.00000000e+00
- 2 111 659 660 0.13081107e+00 0.99747314e-01 -0.20098042e+01 0.13498000e+00
- 2 111 661 662 -0.75352792e-01 0.19247952e+00 -0.53853791e+00 0.13498000e+00
- 1 22 0 0 -0.35290059e+00 0.40930421e-01 -0.13353115e+01 0.00000000e+00
- 1 22 0 0 -0.66351624e+00 0.26679988e+00 -0.27738181e+01 0.00000000e+00
- 1 22 0 0 -0.62763400e+00 0.38954674e+00 -0.20501453e+00 0.00000000e+00
- 1 22 0 0 -0.25366503e+00 0.18605524e+00 -0.17911964e+00 0.00000000e+00
- 1 22 0 0 -0.24272092e-01 -0.11173644e-02 -0.67384972e-01 0.00000000e+00
- 1 22 0 0 -0.40392251e-01 0.32930049e+00 -0.45024860e+00 0.00000000e+00
- 1 -211 0 0 -0.80839744e+00 -0.14405613e+00 -0.28670946e-01 0.13957000e+00
- 1 211 0 0 -0.35419124e-02 0.18912709e+00 -0.25206525e+00 0.13957000e+00
- 1 22 0 0 -0.38671263e+00 0.20403883e+00 0.16608778e+00 0.00000000e+00
- 1 22 0 0 -0.45710763e+00 0.28553132e+00 0.55999259e-01 0.00000000e+00
- 1 22 0 0 -0.47204358e+00 -0.68479474e-01 0.79773865e+00 0.00000000e+00
- 1 22 0 0 -0.47498890e+00 -0.17063736e+00 0.67299261e+00 0.00000000e+00
- 1 22 0 0 -0.16032560e+01 -0.17300195e+01 0.62879371e+01 0.00000000e+00
- 1 22 0 0 -0.40632615e+00 -0.35194715e+00 0.15092666e+01 0.00000000e+00
- 1 22 0 0 -0.11975019e-01 0.38716341e-01 0.12297330e-01 0.00000000e+00
- 1 22 0 0 -0.24792123e-01 -0.10245181e+00 0.12759529e+00 0.00000000e+00
- 1 2212 0 0 -0.18978307e+00 -0.23368107e+00 0.83772882e+01 0.93827000e+00
- 1 -211 0 0 -0.17557491e-01 -0.57033804e-01 0.26369691e+01 0.13957000e+00
- 1 22 0 0 0.20212846e-02 0.12049770e-01 0.37889327e-01 0.00000000e+00
- 1 22 0 0 -0.73577543e-01 -0.29450302e+00 0.24249248e+01 0.00000000e+00
- 1 22 0 0 -0.13003776e+00 -0.95537081e-01 0.42488637e+01 0.00000000e+00
- 1 22 0 0 -0.22102435e+00 0.20211750e-01 0.54092853e+01 0.00000000e+00
- 1 22 0 0 -0.82652910e+00 0.18332347e+00 0.17834684e+02 0.00000000e+00
- 1 22 0 0 -0.87734850e+00 0.13296230e+00 0.16247102e+02 0.00000000e+00
- 1 22 0 0 -0.72126073e-02 -0.27797739e-04 0.73469596e-01 0.00000000e+00
- 1 22 0 0 -0.36064711e+00 0.24869840e+00 0.32521354e+02 0.00000000e+00
- 1 22 0 0 -0.12377766e+00 0.13912290e+00 0.42851079e+01 0.00000000e+00
- 1 22 0 0 -0.24868661e-01 0.60891766e-02 0.11019968e+00 0.00000000e+00
- 1 22 0 0 -0.15583102e+00 0.21267504e+00 0.82698309e+01 0.00000000e+00
- 1 22 0 0 -0.19209617e+00 0.38085592e+00 0.92846734e+01 0.00000000e+00
- 2 -3122 663 664 -0.14448656e+01 0.79663229e+00 0.45335864e+02 0.11156800e+01
- 2 111 665 666 -0.40121456e+00 0.15837392e+00 0.76791079e+01 0.13498000e+00
- 1 22 0 0 -0.61481913e-01 0.11660936e+00 0.27403613e+01 0.00000000e+00
- 1 22 0 0 -0.23890585e+00 0.56484825e+00 0.20261150e+02 0.00000000e+00
- 1 22 0 0 -0.22076726e+00 0.39090247e+00 0.10680410e+02 0.00000000e+00
- 1 22 0 0 -0.57159892e-01 0.13113122e-01 0.17039414e+01 0.00000000e+00
- 1 22 0 0 -0.10624189e+00 0.85988419e-01 0.16890633e+01 0.00000000e+00
- 1 22 0 0 -0.24736782e+00 0.14204311e+01 0.47278074e+02 0.00000000e+00
- 2 310 667 668 -0.50607546e+00 0.48906165e+00 0.21917170e+02 0.49767000e+00
- 1 22 0 0 0.89799217e-02 0.29837632e-03 0.33329741e-01 0.00000000e+00
- 1 22 0 0 0.37507806e-01 0.60183885e-01 0.79454882e+01 0.00000000e+00
- 1 22 0 0 -0.13324636e-01 -0.26886891e-01 0.96720441e-01 0.00000000e+00
- 1 22 0 0 -0.19327182e+00 -0.50599407e+00 0.48954414e+01 0.00000000e+00
- 1 22 0 0 0.14040208e-01 -0.41278402e-01 0.18510287e+00 0.00000000e+00
- 1 22 0 0 0.39119190e+01 -0.70070872e+01 0.39270606e+02 0.00000000e+00
- 1 22 0 0 0.18481847e+00 -0.45291289e+00 0.34165811e+01 0.00000000e+00
- 1 22 0 0 0.16037790e-02 -0.12702633e+00 0.59688751e+00 0.00000000e+00
- 1 22 0 0 0.35701331e+00 -0.95859655e+00 0.44742005e+01 0.00000000e+00
- 1 22 0 0 0.14664624e+00 -0.38667280e+00 0.14607703e+01 0.00000000e+00
- 2 310 669 670 -0.64071926e-02 -0.10897487e+01 0.10865556e+02 0.49767000e+00
- 1 22 0 0 -0.30682120e+00 -0.72110738e+00 0.48117211e+01 0.00000000e+00
- 1 22 0 0 -0.43116666e-01 -0.51927989e-01 0.68960766e+00 0.00000000e+00
- 2 310 671 672 -0.57678408e+00 -0.32929164e+00 0.54770308e+01 0.49767000e+00
- 1 22 0 0 -0.43215710e-01 -0.19204557e-01 0.43367388e+00 0.00000000e+00
- 1 22 0 0 -0.37643398e+00 -0.74117818e+00 0.67333527e+01 0.00000000e+00
- 1 22 0 0 -0.12516229e+01 -0.26829022e+01 0.21474501e+02 0.00000000e+00
- 1 22 0 0 -0.64685515e+00 -0.15546411e+01 0.12759262e+02 0.00000000e+00
- 1 22 0 0 -0.12056117e-01 -0.33162315e+00 0.38450964e+01 0.00000000e+00
- 1 22 0 0 -0.12129758e+00 -0.31039071e+00 0.30670221e+01 0.00000000e+00
- 1 22 0 0 0.10162213e+00 0.53823579e+00 0.25829463e+02 0.00000000e+00
- 1 22 0 0 -0.30702655e-01 0.73800130e-01 0.50668486e+01 0.00000000e+00
- 1 22 0 0 0.71017544e-01 -0.35107741e+00 0.79466665e+02 0.00000000e+00
- 1 22 0 0 0.56877687e-01 -0.31935131e-01 0.10817765e+02 0.00000000e+00
- 1 22 0 0 -0.22080310e+00 0.38593289e-01 0.25573437e+02 0.00000000e+00
- 1 22 0 0 -0.53819917e+00 0.31684711e+00 0.67702382e+02 0.00000000e+00
- 1 22 0 0 0.13764160e+00 0.98529708e-02 -0.25844019e+00 0.00000000e+00
- 1 22 0 0 0.14891385e+01 -0.29865048e+00 -0.32585011e+01 0.00000000e+00
- 1 22 0 0 0.16286188e+01 -0.23766275e+00 -0.31380717e+01 0.00000000e+00
- 1 22 0 0 0.66418297e-01 -0.23780807e-01 -0.19522624e+00 0.00000000e+00
- 1 22 0 0 0.24251550e+00 -0.34764568e-02 -0.52223701e+00 0.00000000e+00
- 1 22 0 0 0.43019872e+00 -0.17765237e+00 -0.85305891e+00 0.00000000e+00
- 1 22 0 0 0.25559766e+00 0.10664745e-01 -0.54043529e+00 0.00000000e+00
- 1 22 0 0 0.58231557e+00 -0.14849973e+00 -0.15521251e+01 0.00000000e+00
- 2 310 673 674 0.33369234e+00 0.16136043e-01 -0.81041598e-01 0.49767000e+00
- 1 22 0 0 -0.90364238e-01 -0.61262892e-01 -0.24895326e+00 0.00000000e+00
- 1 22 0 0 -0.26239909e+00 0.45543062e-01 -0.79870885e+00 0.00000000e+00
- 1 22 0 0 0.31302395e+00 0.38892492e+00 0.43243561e+01 0.00000000e+00
- 1 22 0 0 0.11075583e+00 0.51072032e-01 0.78084258e+00 0.00000000e+00
- 1 22 0 0 -0.25382508e+00 0.44526240e-01 0.13993100e+00 0.00000000e+00
- 1 22 0 0 -0.26471270e-01 0.67602665e-01 0.29950011e-01 0.00000000e+00
- 1 211 0 0 -0.36607318e+00 0.49949040e+00 -0.92073883e+02 0.13957000e+00
- 1 -211 0 0 0.96410974e-02 0.60196413e+00 -0.72222911e+02 0.13957000e+00
- 1 22 0 0 -0.25456778e-01 0.92091830e-01 -0.81966746e+00 0.00000000e+00
- 1 -11 0 0 -0.18257134e-01 0.25963054e-01 -0.13195601e+00 0.51000000e-03
- 1 11 0 0 -0.28170565e+00 0.37077238e+00 -0.25594722e+01 0.51000000e-03
- 2 310 675 676 -0.34046857e+00 0.43935355e+00 -0.39997849e+01 0.49767000e+00
- 1 22 0 0 0.64166063e-02 -0.61054313e-01 0.39007851e-01 0.00000000e+00
- 1 22 0 0 -0.77507546e-01 0.18894815e-01 0.18577222e+00 0.00000000e+00
- 1 22 0 0 -0.15238482e+00 0.13950292e+00 0.14413541e+01 0.00000000e+00
- 1 22 0 0 -0.85091235e-01 0.13703992e+00 0.56503864e+00 0.00000000e+00
- 1 22 0 0 -0.15422153e+00 0.29642764e-01 0.10388055e+01 0.00000000e+00
- 1 22 0 0 0.28884054e-01 0.12993460e-02 0.24835368e+00 0.00000000e+00
- 2 111 677 678 0.37056195e-01 0.37262023e+00 0.10063642e+01 0.13498000e+00
- 2 111 679 680 0.31347016e+00 0.20949345e+00 0.20111889e+01 0.13498000e+00
- 1 -211 0 0 -0.67509342e-01 -0.93675960e-01 0.24116202e+00 0.13957000e+00
- 1 211 0 0 0.21361409e-01 0.72557807e-01 0.15495126e+01 0.13957000e+00
- 1 211 0 0 -0.74073077e+00 0.19360669e+00 -0.80236143e+01 0.13957000e+00
- 1 -211 0 0 -0.61098359e-01 0.14486786e+00 -0.14320211e+01 0.13957000e+00
- 2 111 681 682 0.15005138e-01 -0.96204203e-01 -0.66861127e+01 0.13498000e+00
- 2 111 683 684 -0.43825182e+00 -0.16494634e+00 -0.47390694e+02 0.13498000e+00
- 1 22 0 0 0.75071622e-01 -0.16770395e-01 -0.10099700e+01 0.00000000e+00
- 1 22 0 0 0.55739447e-01 0.11651771e+00 -0.99983424e+00 0.00000000e+00
- 1 22 0 0 -0.37955768e-01 0.10381708e+00 -0.44391606e+00 0.00000000e+00
- 1 22 0 0 -0.37397024e-01 0.88662437e-01 -0.94621853e-01 0.00000000e+00
- 1 -2112 0 0 -0.13254444e+01 0.70759608e+00 0.42284036e+02 0.93957000e+00
- 2 111 685 686 -0.11942125e+00 0.89036209e-01 0.30518282e+01 0.13498000e+00
- 1 22 0 0 -0.18236273e-01 0.51088695e-01 0.91819959e+00 0.00000000e+00
- 1 22 0 0 -0.38297829e+00 0.10728522e+00 0.67609083e+01 0.00000000e+00
- 2 111 687 688 -0.18734327e+00 -0.19163748e-01 0.80196076e+01 0.13498000e+00
- 2 111 689 690 -0.31873219e+00 0.50822540e+00 0.13897562e+02 0.13498000e+00
- 1 211 0 0 0.67820246e-01 -0.81906702e+00 0.62710693e+01 0.13957000e+00
- 1 -211 0 0 -0.74227438e-01 -0.27068169e+00 0.45944866e+01 0.13957000e+00
- 1 -211 0 0 -0.28550607e+00 -0.38745804e+00 0.32030961e+01 0.13957000e+00
- 1 211 0 0 -0.29127801e+00 0.58166395e-01 0.22739346e+01 0.13957000e+00
- 1 211 0 0 0.28219298e+00 0.19205614e+00 -0.41633436e-01 0.13957000e+00
- 1 -211 0 0 0.51499353e-01 -0.17592010e+00 -0.39408161e-01 0.13957000e+00
- 2 111 691 692 -0.16527561e+00 0.44035592e+00 -0.21052368e+01 0.13498000e+00
- 2 111 693 694 -0.17519296e+00 -0.10023659e-02 -0.18945481e+01 0.13498000e+00
- 1 22 0 0 -0.10246117e-02 0.21611598e+00 0.39793412e+00 0.00000000e+00
- 1 22 0 0 0.38080807e-01 0.15650426e+00 0.60843005e+00 0.00000000e+00
- 1 22 0 0 0.29885458e+00 0.20673600e+00 0.16664405e+01 0.00000000e+00
- 1 22 0 0 0.14615584e-01 0.27574420e-02 0.34474843e+00 0.00000000e+00
- 1 22 0 0 0.56792095e-01 -0.50865047e-01 -0.54509196e+01 0.00000000e+00
- 1 22 0 0 -0.41786957e-01 -0.45339156e-01 -0.12351931e+01 0.00000000e+00
- 1 22 0 0 -0.39567214e+00 -0.18875329e+00 -0.42997087e+02 0.00000000e+00
- 1 22 0 0 -0.42579682e-01 0.23806952e-01 -0.43936070e+01 0.00000000e+00
- 1 22 0 0 0.30264100e-01 0.10914994e-01 0.49262191e+00 0.00000000e+00
- 1 22 0 0 -0.14968535e+00 0.78121215e-01 0.25592063e+01 0.00000000e+00
- 1 22 0 0 -0.49544152e-01 0.38348667e-01 0.11354599e+01 0.00000000e+00
- 1 22 0 0 -0.13779912e+00 -0.57512416e-01 0.68841477e+01 0.00000000e+00
- 1 22 0 0 -0.10232632e+00 0.11617902e+00 0.49197300e+01 0.00000000e+00
- 1 22 0 0 -0.21640587e+00 0.39204637e+00 0.89778319e+01 0.00000000e+00
- 1 22 0 0 -0.12465360e+00 0.34445429e+00 -0.13438693e+01 0.00000000e+00
- 1 22 0 0 -0.40622007e-01 0.95901633e-01 -0.76136751e+00 0.00000000e+00
- 1 22 0 0 -0.11725910e+00 0.47943765e-01 -0.15196231e+01 0.00000000e+00
- 1 22 0 0 -0.57933862e-01 -0.48946131e-01 -0.37492495e+00 0.00000000e+00
- 913
- 2 25 3 4 0.10721734e+02 -0.24593603e+02 0.95785836e+03 0.12500034e+03
- 1 22 0 0 0.21867070e-01 -0.22159843e+00 0.15501910e+03 0.00000000e+00
- 2 23 7 9 -0.10582488e+01 0.23685478e+01 0.33161380e+03 0.31702306e+02
- 2 23 5 6 0.11779982e+02 -0.26962150e+02 0.62624456e+03 0.88969795e+02
- 1 11 0 0 0.40216655e+02 -0.27861722e+02 0.19532671e+03 0.51000000e-03
- 1 -11 0 0 -0.28436672e+02 0.89957123e+00 0.43091785e+03 0.51000000e-03
- 1 -11 0 0 -0.15376074e+01 0.14858418e+02 0.92746846e+02 0.51000000e-03
- 1 11 0 0 0.47935659e+00 -0.12489859e+02 0.23886676e+03 0.51000000e-03
- 1 22 0 0 0.20191773e-05 -0.11678037e-04 0.19924090e-03 0.00000000e+00
- 2 2 110 110 -0.11707919e+01 0.58830768e+01 -0.71964868e+01 0.33000000e+00
- 2 21 110 110 -0.44328114e+00 0.40923287e+00 -0.98252173e+00 0.00000000e+00
- 2 21 110 110 -0.11826269e+01 0.12407176e+01 -0.58984641e+01 0.00000000e+00
- 2 21 110 110 -0.13040566e+02 0.29642780e+01 -0.59342161e+02 0.00000000e+00
- 2 21 110 110 -0.22541959e+00 0.29644081e+00 -0.79687085e+00 0.00000000e+00
- 2 21 110 110 0.35236098e+00 0.12385403e+01 -0.27085441e+01 0.00000000e+00
- 2 21 110 110 0.57599461e+01 0.77474319e+00 0.24530681e+01 0.00000000e+00
- 2 21 110 110 0.13006904e+00 0.50230613e+00 0.31838422e+00 0.00000000e+00
- 2 21 110 110 0.14326884e+01 0.24178017e+00 -0.50811224e+02 0.00000000e+00
- 2 2203 110 110 0.10949906e+00 -0.52809564e+00 -0.95638569e+03 0.77133000e+00
- 2 -2 141 141 0.48585475e-02 0.66540018e+01 -0.59254463e+01 0.33000000e+00
- 2 21 141 141 -0.13173853e+00 0.15011111e+01 -0.75377118e+00 0.00000000e+00
- 2 21 141 141 -0.10251431e+00 0.12280719e+01 -0.33112299e+01 0.00000000e+00
- 2 21 141 141 -0.63288693e-01 -0.17527589e+00 0.12949957e+01 0.00000000e+00
- 2 21 141 141 0.36765545e+00 -0.57138429e+00 0.36282381e+01 0.00000000e+00
- 2 21 141 141 0.95780124e-01 0.30421163e+01 0.14380996e+02 0.00000000e+00
- 2 21 141 141 0.74969212e-01 0.12242068e+01 0.31297501e+01 0.00000000e+00
- 2 21 141 141 -0.24191502e+01 0.27172786e+00 0.45313222e+00 0.00000000e+00
- 2 21 141 141 0.10607816e+00 -0.78992323e-01 -0.30464006e+00 0.00000000e+00
- 2 21 141 141 0.14144051e+01 0.17653308e+01 0.86175852e+00 0.00000000e+00
- 2 21 141 141 0.79743203e-01 -0.84826337e+00 -0.12303816e+01 0.00000000e+00
- 2 21 141 141 0.16888369e+01 -0.28246517e+01 -0.53233588e+01 0.00000000e+00
- 2 21 141 141 0.38111432e+01 -0.29469271e-01 -0.46207110e+01 0.00000000e+00
- 2 21 141 141 0.66980877e+00 0.90345028e+00 -0.16815790e+01 0.00000000e+00
- 2 21 141 141 0.28490634e+01 0.40804207e+01 -0.14555421e+02 0.00000000e+00
- 2 21 141 141 0.11474419e+01 0.20867357e+01 -0.10628004e+02 0.00000000e+00
- 2 21 141 141 0.13044253e+01 0.35202778e+00 -0.35662008e+01 0.00000000e+00
- 2 21 141 141 0.18757427e+01 0.52761913e+00 -0.57224256e+01 0.00000000e+00
- 2 21 141 141 0.12356444e+02 -0.28399003e+01 -0.51941747e+02 0.00000000e+00
- 2 21 141 141 0.12025224e+01 -0.51150990e+00 -0.66440336e+01 0.00000000e+00
- 2 21 141 141 0.20715543e+01 -0.25723474e+01 -0.21088760e+02 0.00000000e+00
- 2 21 141 141 -0.11474419e+01 -0.20867357e+01 -0.26444379e+02 0.00000000e+00
- 2 21 141 141 0.23325641e+01 0.10404859e+00 -0.18891698e+02 0.00000000e+00
- 2 21 141 141 0.98290894e+01 0.32804328e+00 -0.11407331e+03 0.00000000e+00
- 2 21 141 141 0.45302737e+00 0.60083523e+00 -0.13652816e+02 0.00000000e+00
- 2 21 141 141 0.34382085e+00 0.31092867e+00 -0.21743560e+02 0.00000000e+00
- 2 21 141 141 0.14882269e+02 0.14715569e+00 -0.67368496e+03 0.00000000e+00
- 2 21 141 141 0.73439004e+01 -0.51070896e+01 -0.70579957e+03 0.00000000e+00
- 2 21 141 141 0.10948348e+02 0.23099908e+01 -0.12510248e+04 0.00000000e+00
- 2 21 141 141 0.46371841e+00 -0.66467288e+00 -0.41280311e+03 0.00000000e+00
- 2 21 141 141 -0.23325641e+01 -0.10404859e+00 -0.27836762e+03 0.00000000e+00
- 2 21 141 141 -0.20715543e+01 0.25723474e+01 -0.57729857e+02 0.00000000e+00
- 2 21 141 141 -0.66758490e+01 0.90480671e+01 -0.10659464e+03 0.00000000e+00
- 2 21 141 141 -0.40994771e+01 0.43270166e+01 -0.43839065e+02 0.00000000e+00
- 2 21 141 141 -0.73439004e+01 0.51070896e+01 -0.33332084e+02 0.00000000e+00
- 2 21 141 141 -0.10948348e+02 -0.23099908e+01 -0.53233010e+02 0.00000000e+00
- 2 21 141 141 -0.11917263e+01 0.92171501e+00 -0.35148928e+01 0.00000000e+00
- 2 21 141 141 -0.71832926e+00 0.69323223e+00 -0.22916613e+01 0.00000000e+00
- 2 21 141 141 -0.16888369e+01 0.28246517e+01 -0.52494778e+01 0.00000000e+00
- 2 21 141 141 -0.20406027e+01 0.32601163e+01 -0.14661303e+01 0.00000000e+00
- 2 21 141 141 -0.79743203e-01 0.84826337e+00 -0.20233366e+00 0.00000000e+00
- 2 21 141 141 -0.12025224e+01 0.51150990e+00 0.98537304e+00 0.00000000e+00
- 2 21 141 141 -0.18757427e+01 -0.52761913e+00 0.33338901e+01 0.00000000e+00
- 2 21 141 141 -0.45302737e+00 -0.60083523e+00 0.74327947e+00 0.00000000e+00
- 2 21 141 141 -0.34382085e+00 -0.31092867e+00 0.68455356e+00 0.00000000e+00
- 2 21 141 141 -0.13044253e+01 -0.35202778e+00 0.23948452e+01 0.00000000e+00
- 2 21 141 141 -0.14882269e+02 -0.14715569e+00 0.28029771e+02 0.00000000e+00
- 2 21 141 141 -0.16110609e+01 0.23599211e+01 0.12675855e+02 0.00000000e+00
- 2 21 141 141 -0.10484113e+01 0.56151438e+00 0.41578112e+01 0.00000000e+00
- 2 21 141 141 -0.12356444e+02 0.28399003e+01 0.41341662e+02 0.00000000e+00
- 2 21 141 141 -0.98290894e+01 -0.32804328e+00 0.35493936e+02 0.00000000e+00
- 2 21 141 141 -0.25361743e+01 -0.96702869e+00 0.13084816e+02 0.00000000e+00
- 2 21 141 141 -0.27434966e+01 -0.88898536e+00 0.15688048e+02 0.00000000e+00
- 2 21 141 141 -0.16071952e+01 -0.14623697e+01 0.12318990e+02 0.00000000e+00
- 2 21 141 141 -0.28490634e+01 -0.40804207e+01 0.26540153e+02 0.00000000e+00
- 2 21 141 141 0.61690454e+00 0.10226883e+01 0.11966600e+02 0.00000000e+00
- 2 21 141 141 -0.77346848e+00 0.11238514e+01 0.22959013e+02 0.00000000e+00
- 2 21 141 141 -0.22002573e+00 0.47606550e+00 0.15062485e+02 0.00000000e+00
- 2 21 141 141 -0.11989747e+00 0.74903411e+00 0.24764346e+02 0.00000000e+00
- 2 21 141 141 -0.61690454e+00 -0.10226883e+01 0.38229755e+02 0.00000000e+00
- 2 21 141 141 -0.38111432e+01 0.29469271e-01 0.25945971e+03 0.00000000e+00
- 2 21 141 141 -0.16031721e+01 -0.17121597e+00 0.14893745e+03 0.00000000e+00
- 2 21 141 141 0.77346848e+00 -0.11238514e+01 0.91516061e+03 0.00000000e+00
- 2 2 141 141 -0.80351613e+00 -0.11209273e+01 0.25599354e+03 0.33000000e+00
- 2 2 277 277 0.63026696e+00 -0.13124238e+01 0.83092652e+01 0.00000000e+00
- 2 -2 277 277 -0.63026696e+00 0.13124238e+01 -0.40047950e+02 0.00000000e+00
- 2 2103 287 287 0.11462124e+01 -0.16856457e+01 0.33574909e+04 0.77133000e+00
- 2 21 287 287 -0.19503334e+01 -0.21818938e+00 0.16935904e+02 0.00000000e+00
- 2 21 287 287 0.27434966e+01 0.88898536e+00 0.19063569e+03 0.00000000e+00
- 2 21 287 287 0.16110609e+01 -0.23599211e+01 0.12696331e+03 0.00000000e+00
- 2 21 287 287 0.20406027e+01 -0.32601163e+01 0.81443494e+02 0.00000000e+00
- 2 21 287 287 0.10484113e+01 -0.56151438e+00 0.20354723e+02 0.00000000e+00
- 2 21 287 287 0.11917263e+01 -0.92171501e+00 0.12611843e+02 0.00000000e+00
- 2 21 287 287 0.66758490e+01 -0.90480671e+01 0.41588612e+02 0.00000000e+00
- 2 21 287 287 0.40994771e+01 -0.43270166e+01 0.71941479e+01 0.00000000e+00
- 2 21 287 287 0.22002573e+00 -0.47606550e+00 0.73742531e+00 0.00000000e+00
- 2 21 287 287 0.11989747e+00 -0.74903411e+00 0.65498982e+00 0.00000000e+00
- 2 21 287 287 0.16031721e+01 0.17121597e+00 0.45790273e+00 0.00000000e+00
- 2 21 287 287 0.11973867e+01 0.35193491e+00 0.77737445e+00 0.00000000e+00
- 2 21 287 287 0.25361743e+01 0.96702869e+00 0.14612770e+01 0.00000000e+00
- 2 21 287 287 0.16071952e+01 0.14623697e+01 0.21656779e+00 0.00000000e+00
- 2 1 287 287 -0.20489690e+00 -0.43970871e-01 -0.17937783e+04 0.33000000e+00
- 2 21 326 326 0.89041326e+00 -0.91762239e+00 -0.61477109e+02 0.00000000e+00
- 2 21 326 326 0.71832926e+00 -0.69323223e+00 -0.22587461e+02 0.00000000e+00
- 2 21 326 326 -0.66980877e+00 -0.90345028e+00 -0.15819131e+01 0.00000000e+00
- 2 21 326 326 -0.11973867e+01 -0.35193491e+00 -0.19001896e+01 0.00000000e+00
- 2 21 326 326 -0.89041326e+00 0.91762239e+00 -0.13322574e+01 0.00000000e+00
- 2 21 341 341 0.59368775e+00 -0.84219591e+00 0.66956759e+02 0.00000000e+00
- 2 21 341 341 -0.46371841e+00 0.66467288e+00 0.19528316e+01 0.00000000e+00
- 2 21 341 341 -0.59368775e+00 0.84219591e+00 0.19209379e+01 0.00000000e+00
- 2 92 111 140 -0.82781216e+01 0.13023020e+02 -0.10813505e+04 0.17491168e+03
- 2 213 346 347 -0.10330909e+01 0.31771624e+01 -0.45006260e+01 0.75383681e+00
- 2 331 348 350 -0.43328983e+00 0.12897954e+01 -0.27637856e+01 0.95766464e+00
- 2 223 351 353 -0.21878111e+00 0.68245396e+00 -0.21613462e+01 0.78532241e+00
- 2 223 354 356 -0.49911617e+00 0.67395312e+00 -0.27035364e+01 0.78608104e+00
- 2 313 357 358 -0.19047468e+01 0.69000855e+00 -0.78419359e+01 0.95824861e+00
- 1 -321 0 0 -0.20628718e+00 0.62129963e+00 -0.12502256e+01 0.49360000e+00
- 2 223 359 361 -0.47656025e+01 0.13249747e+01 -0.19679756e+02 0.78542294e+00
- 1 211 0 0 -0.55868196e+00 0.65021073e+00 -0.26591831e+01 0.13957000e+00
- 2 -213 362 363 -0.15754869e+01 0.33983230e+00 -0.10081353e+02 0.71974774e+00
- 1 211 0 0 -0.20459083e+01 0.67302209e+00 -0.85861961e+01 0.13957000e+00
- 1 -211 0 0 -0.46991838e+00 0.37191233e+00 -0.21868340e+01 0.13957000e+00
- 2 223 364 366 -0.15510830e+01 0.54677407e+00 -0.79270934e+01 0.78257471e+00
- 2 223 367 369 0.42289003e-01 0.57518983e-01 -0.17160870e+01 0.77052553e+00
- 1 211 0 0 -0.61613918e-01 -0.83124647e-01 -0.23262508e+00 0.13957000e+00
- 2 113 370 371 -0.97160652e-01 0.51782618e+00 -0.17369740e+00 0.61416948e+00
- 2 -213 372 373 -0.87953215e-01 -0.79909723e-01 -0.84863183e+00 0.82402936e+00
- 1 211 0 0 0.69350662e-01 -0.12551458e+00 -0.15933584e+00 0.13957000e+00
- 1 -211 0 0 0.16584719e+01 0.24102236e+00 -0.47474439e+00 0.13957000e+00
- 2 3222 374 375 0.10041787e+01 0.45532105e+00 0.75401746e+00 0.11893700e+01
- 1 -211 0 0 0.33785098e+00 0.69733460e+00 -0.13949648e+00 0.13957000e+00
- 2 -3212 376 377 0.21137297e+01 0.42074399e+00 0.68961384e+00 0.11925500e+01
- 2 213 378 379 0.70685984e+00 0.49265109e+00 -0.17101494e+01 0.73281734e+00
- 2 -213 380 381 0.14043053e+00 -0.61862961e+00 -0.46728099e+00 0.49734514e+00
- 2 323 382 383 -0.43935000e+00 0.41360531e+00 -0.44862627e+01 0.84403375e+00
- 2 333 384 385 0.50032880e+00 0.27509969e+00 -0.35028806e+02 0.10152145e+01
- 2 3324 386 387 0.56600899e+00 -0.70623171e+00 -0.16472726e+03 0.15378422e+01
- 2 -3222 388 389 -0.14631799e+00 0.79455250e-01 -0.21692622e+02 0.11893700e+01
- 2 111 390 391 0.54645288e+00 0.30382551e+00 -0.19793054e+03 0.13498000e+00
- 2 2224 392 393 0.22565511e+00 -0.22298279e+00 -0.23306429e+03 0.12983475e+01
- 2 223 394 396 -0.95339914e-01 -0.13639007e+00 -0.34760044e+03 0.78982563e+00
- 2 92 142 276 -0.26538352e+02 0.32885847e+02 -0.20474814e+04 0.55436755e+04
- 1 -211 0 0 -0.15731558e+00 0.31085725e+01 -0.22300981e+01 0.13957000e+00
- 1 211 0 0 0.99885878e-01 0.67655693e+00 -0.11718710e+01 0.13957000e+00
- 1 -321 0 0 -0.14117023e+00 0.17234320e+01 -0.19369140e+01 0.49360000e+00
- 2 323 397 398 -0.27416978e+00 0.13625840e+01 -0.18377078e+01 0.83038281e+00
- 2 223 399 401 0.33219947e+00 0.12845349e+01 -0.52351049e+00 0.77733965e+00
- 2 -213 402 403 0.46059557e+00 0.14318753e+00 -0.37447248e-02 0.71518440e+00
- 1 -2112 0 0 -0.20006709e+00 0.65804092e+00 -0.93598930e-01 0.93957000e+00
- 1 2112 0 0 -0.31990590e+00 -0.27792081e-01 -0.88769935e+00 0.93957000e+00
- 1 211 0 0 0.75690194e+00 0.33854632e+00 0.14660320e+01 0.13957000e+00
- 2 221 404 406 -0.65489309e+00 0.10529244e+00 0.38568523e+01 0.54745000e+00
- 1 -211 0 0 -0.23775217e+00 -0.23890538e-01 0.23118228e+01 0.13957000e+00
- 2 -1114 407 408 0.34278294e-01 0.15310175e+01 0.49939116e+01 0.12588146e+01
- 2 1114 409 410 -0.15366105e-01 0.14741535e+01 0.70972158e+01 0.12545963e+01
- 1 211 0 0 -0.32599106e-01 -0.97583512e-01 0.27465204e-01 0.13957000e+00
- 2 111 411 412 0.39051868e-01 -0.24237674e+00 0.78843505e+00 0.13498000e+00
- 2 113 413 414 -0.53391420e+00 0.12149982e+01 0.49327344e+00 0.82718514e+00
- 2 -2214 415 416 -0.34936500e+00 0.86957302e+00 0.81477693e+00 0.12305455e+01
- 2 2114 417 418 0.11691887e+00 -0.38206372e+00 -0.11282637e+01 0.12280104e+01
- 1 211 0 0 -0.25137596e+00 0.20488932e+00 0.18026931e+00 0.13957000e+00
- 2 223 419 421 0.12359584e+01 -0.75281612e+00 -0.10420141e+01 0.77853756e+00
- 2 111 422 423 -0.16552123e+00 0.16602000e+00 -0.31411410e+00 0.13498000e+00
- 2 113 424 425 0.13897359e+00 -0.36001703e+00 -0.54070871e+00 0.86904761e+00
- 2 -213 426 427 0.44786945e+00 -0.23058830e+00 -0.14212100e+01 0.68402070e+00
- 2 223 428 430 0.26500267e+01 -0.13231586e+01 -0.33091509e+01 0.74894515e+00
- 2 113 431 432 0.52134927e+00 0.49933832e+00 -0.17980235e+01 0.94259019e+00
- 2 213 433 434 0.18174889e+01 0.18522657e+00 -0.34173630e+01 0.94215499e+00
- 2 -2224 435 436 0.18434203e+01 0.24719039e+01 -0.11537604e+02 0.11475804e+01
- 2 111 437 438 0.82459493e+00 0.47487194e+00 -0.23864924e+01 0.13498000e+00
- 2 2224 439 440 0.17641490e+01 0.91668895e+00 -0.53317209e+01 0.12343673e+01
- 1 -211 0 0 0.55507388e+00 -0.58829893e-01 -0.11836494e+01 0.13957000e+00
- 2 223 441 443 0.21309006e+01 0.25264277e+01 -0.14000971e+02 0.78210334e+00
- 2 213 444 445 0.17225511e+01 -0.55685349e+00 -0.73490360e+01 0.58099096e+00
- 2 -213 446 447 0.28735580e+01 -0.46539612e+00 -0.12759067e+02 0.83752178e+00
- 2 -313 448 449 0.27540620e+01 -0.20981808e+00 -0.10352106e+02 0.96389498e+00
- 2 221 450 451 0.66341368e+00 -0.16176498e+00 -0.22558220e+01 0.54745000e+00
- 2 -3222 452 453 0.51499651e+01 -0.22837495e+01 -0.26571864e+02 0.11893700e+01
- 1 211 0 0 0.17045610e+00 0.14496766e+00 -0.32891539e+01 0.13957000e+00
- 2 2114 454 455 0.96297051e+00 -0.91007294e+00 -0.99552887e+01 0.12664171e+01
- 1 211 0 0 0.26697578e+00 -0.76126380e+00 -0.12791013e+02 0.13957000e+00
- 2 113 456 457 0.13067893e+01 -0.23787421e+00 -0.88368223e+01 0.70153625e+00
- 2 113 458 459 0.74611857e+00 -0.11555265e+01 -0.11909693e+02 0.60154567e+00
- 1 -2212 0 0 0.13552796e+00 -0.76578867e+00 -0.12132647e+02 0.93827000e+00
- 2 3122 460 461 0.33447838e+01 0.96456922e+00 -0.40428273e+02 0.11156800e+01
- 2 -3224 462 463 0.17320285e+01 -0.23056434e+00 -0.26075832e+02 0.13865862e+01
- 2 223 464 466 0.43621098e+01 0.17497961e+00 -0.66163054e+02 0.78092635e+00
- 2 2224 467 468 0.10654177e+01 0.10322723e+00 -0.22157257e+02 0.13080907e+01
- 2 221 469 471 0.11766095e+01 0.71396056e-01 -0.50090689e+02 0.54745000e+00
- 1 -211 0 0 0.22238619e+01 -0.43785617e+00 -0.86384762e+02 0.13957000e+00
- 1 211 0 0 0.27441081e-01 0.74066565e-01 -0.22251459e+01 0.13957000e+00
- 2 -213 472 473 0.47200662e+01 0.97257833e+00 -0.21261855e+03 0.78178083e+00
- 2 213 474 475 0.50663582e+01 -0.27303842e+00 -0.24002517e+03 0.71308892e+00
- 1 -211 0 0 0.14247820e+01 -0.11004314e+01 -0.10739853e+03 0.13957000e+00
- 2 213 476 477 0.15520511e+01 -0.49655683e+00 -0.12573946e+03 0.74691961e+00
- 2 -213 478 479 0.17323921e+01 -0.80143671e+00 -0.15075131e+03 0.70666419e+00
- 1 211 0 0 0.46079607e+01 -0.67325557e+00 -0.26050367e+03 0.13957000e+00
- 1 -2212 0 0 0.25012380e+01 -0.91779177e+00 -0.43069807e+03 0.93827000e+00
- 1 2112 0 0 0.25011253e+01 0.59785339e+00 -0.30765237e+03 0.93957000e+00
- 1 211 0 0 0.17150664e+01 -0.41349503e+00 -0.20046308e+03 0.13957000e+00
- 2 -213 480 481 0.93541438e+00 0.28399280e+00 -0.12966460e+03 0.72005051e+00
- 2 223 482 484 0.28314104e+01 0.82245401e+00 -0.40635538e+03 0.79203690e+00
- 2 113 485 486 0.16165029e+00 -0.43258772e+00 -0.99126423e+02 0.82646288e+00
- 2 221 487 489 0.20125420e+00 0.22318477e-02 -0.21702189e+03 0.54745000e+00
- 2 223 490 492 -0.74256011e+00 -0.18724906e+00 -0.10659024e+03 0.79542174e+00
- 1 211 0 0 -0.43929968e-01 -0.18010767e+00 -0.11665460e+02 0.13957000e+00
- 2 111 493 494 0.43341809e+00 0.39545867e+00 -0.28220592e+02 0.13498000e+00
- 2 -213 495 496 -0.67622958e+00 -0.25295856e+00 -0.71836203e+02 0.57997255e+00
- 2 111 497 498 -0.59377189e+00 0.33129054e+00 -0.29159958e+02 0.13498000e+00
- 2 -313 499 500 -0.10160695e+01 0.16001420e+01 -0.42090236e+02 0.90603129e+00
- 2 313 501 502 -0.29375570e+00 0.98467706e-01 -0.15263051e+02 0.88900864e+00
- 1 211 0 0 -0.41766283e+00 -0.15786402e+00 -0.24153239e+02 0.13957000e+00
- 1 -211 0 0 0.37501867e-01 0.56386363e+00 -0.45472513e+01 0.13957000e+00
- 2 113 503 504 -0.13543806e+01 0.23953509e+01 -0.33732274e+02 0.51763885e+00
- 2 223 505 507 -0.15091089e+01 0.14678240e+01 -0.24584585e+02 0.77942005e+00
- 2 -313 508 509 -0.32209431e+01 0.31161160e+01 -0.44264854e+02 0.89049442e+00
- 1 321 0 0 -0.26582143e+01 0.38931104e+01 -0.41782399e+02 0.49360000e+00
- 1 -211 0 0 -0.23876227e+00 0.75494557e+00 -0.38658961e+01 0.13957000e+00
- 2 113 510 511 -0.37040703e+01 0.23845652e+01 -0.20875124e+02 0.67332100e+00
- 2 -2114 512 513 -0.16702416e+01 0.81153920e+00 -0.10636231e+02 0.11896614e+01
- 2 223 514 516 -0.27021553e+01 0.20625822e+00 -0.17121244e+02 0.79818296e+00
- 2 2114 517 518 -0.80165979e+00 0.64790541e+00 -0.11365595e+02 0.11908873e+01
- 2 -2114 519 520 -0.57608158e+01 0.17460867e+01 -0.21745724e+02 0.12364626e+01
- 2 -213 521 522 -0.22379934e+01 -0.36190655e-01 -0.10369249e+02 0.78294564e+00
- 1 2212 0 0 -0.20589847e+01 -0.29787589e+00 -0.92912660e+01 0.93827000e+00
- 2 213 523 524 -0.91174714e+00 -0.98098488e-01 -0.40498786e+01 0.70288394e+00
- 1 -321 0 0 -0.48743036e+00 0.12704699e+00 -0.31750093e+01 0.49360000e+00
- 2 313 525 526 -0.17041359e+01 0.12770748e+01 -0.39316868e+01 0.88723795e+00
- 2 223 527 529 -0.64896164e+00 0.55459218e+00 -0.20466105e+01 0.78021122e+00
- 2 223 530 532 -0.11744628e+01 0.15359793e+01 -0.81556916e+00 0.76689293e+00
- 2 223 533 534 -0.45207247e+00 0.13608034e+01 -0.43983282e+01 0.73785536e+00
- 1 211 0 0 -0.28483620e+00 -0.21716699e+00 -0.14386457e+00 0.13957000e+00
- 1 -211 0 0 -0.11473625e+01 0.11739541e+01 -0.45267269e+00 0.13957000e+00
- 1 211 0 0 -0.40129660e+00 -0.75392051e-01 0.26457842e+00 0.13957000e+00
- 2 223 535 537 -0.20586266e+00 0.12215898e+01 -0.10565601e+00 0.77887546e+00
- 2 223 538 540 -0.87943785e+00 0.26419810e+00 0.26253760e+00 0.78417422e+00
- 1 -321 0 0 -0.17787419e+00 -0.43040320e+00 0.25432314e+00 0.49360000e+00
- 2 313 541 542 -0.64375427e+00 0.35392377e-01 0.85592852e+00 0.86384420e+00
- 1 211 0 0 0.52614679e-02 0.13958296e+00 -0.14390835e+00 0.13957000e+00
- 2 113 543 544 -0.19536115e+01 0.22457345e+00 0.19214292e+01 0.74458990e+00
- 2 331 545 547 -0.32873881e+01 -0.53809068e+00 0.67679557e+01 0.95783106e+00
- 2 113 548 549 -0.15111532e+01 0.89710705e-01 0.28309443e+01 0.43104228e+00
- 1 -211 0 0 -0.46206259e+01 -0.35459636e+00 0.96585701e+01 0.13957000e+00
- 1 211 0 0 -0.32148429e+01 0.34526031e+00 0.57164797e+01 0.13957000e+00
- 2 -213 550 551 -0.35557587e+01 0.69978532e-01 0.68022196e+01 0.72846254e+00
- 1 211 0 0 -0.30071639e+00 0.45325662e+00 0.34172445e+01 0.13957000e+00
- 1 -321 0 0 -0.91111828e+00 0.53040671e+00 0.47938080e+01 0.49360000e+00
- 2 221 552 554 -0.16044084e+01 0.10263064e+01 0.58323068e+01 0.54745000e+00
- 2 323 555 556 -0.39497987e+01 0.10415414e+01 0.13075688e+02 0.94116290e+00
- 2 -213 557 558 -0.35868114e+01 0.53940736e+00 0.14884212e+02 0.75438803e+00
- 2 113 559 560 -0.73023405e+00 0.27742044e+00 0.32575750e+01 0.45526954e+00
- 2 -311 561 561 -0.54652605e+01 0.29794413e+00 0.19122356e+02 0.49767000e+00
- 1 321 0 0 -0.19565836e+01 0.27349476e+00 0.73569478e+01 0.49360000e+00
- 2 111 562 563 -0.83934349e+00 0.16494391e+00 0.37390782e+01 0.13498000e+00
- 2 221 564 565 -0.33212795e+01 0.12571377e+00 0.12978262e+02 0.54745000e+00
- 2 -2114 566 567 -0.19919839e+01 -0.77907177e+00 0.10343506e+02 0.11461731e+01
- 2 223 568 570 -0.38267915e+01 -0.10451656e+01 0.17273428e+02 0.80916990e+00
- 2 1114 571 572 -0.21003039e+01 -0.14821765e+01 0.13500669e+02 0.12761692e+01
- 2 111 573 574 -0.36868842e+00 -0.62799528e+00 0.46479097e+01 0.13498000e+00
- 1 -2112 0 0 -0.68821996e+00 -0.47088858e+00 0.57443060e+01 0.93957000e+00
- 2 213 575 576 -0.14132367e+01 -0.71309694e+00 0.11673663e+02 0.77654196e+00
- 2 1114 577 578 -0.28679757e+00 -0.85928523e+00 0.10618212e+02 0.13662311e+01
- 2 -313 579 580 -0.12294695e+01 0.45232831e+00 0.15915000e+02 0.85422591e+00
- 2 333 581 582 -0.53538632e-01 0.19915045e+00 0.16753247e+02 0.10229744e+01
- 2 323 583 584 -0.84164367e+00 -0.43770290e+00 0.18429047e+02 0.90278099e+00
- 1 -211 0 0 0.48714008e+00 0.54414080e+00 0.84152981e+01 0.13957000e+00
- 1 211 0 0 -0.27711601e+00 0.61942455e+00 0.22252042e+02 0.13957000e+00
- 2 -3224 585 586 -0.19422844e+01 0.28284851e+00 0.13381586e+03 0.13695158e+01
- 2 3222 587 588 -0.12359990e+01 0.70288634e-01 0.19925572e+03 0.11893700e+01
- 2 -213 589 590 -0.65180530e+00 -0.59230142e+00 0.77253604e+02 0.68946884e+00
- 2 111 591 592 -0.12232940e+00 -0.46987290e+00 0.35399664e+02 0.13498000e+00
- 2 113 593 594 -0.70312987e+00 0.39301166e-01 0.13424538e+03 0.97147059e+00
- 1 211 0 0 -0.45137974e+00 0.33773382e+00 0.16730272e+03 0.13957000e+00
- 1 -211 0 0 -0.20667447e+00 -0.98325025e+00 0.81528798e+02 0.13957000e+00
- 2 223 595 597 -0.38668697e+00 -0.45405821e+00 0.22720691e+03 0.77392448e+00
- 2 213 598 599 -0.11541875e+00 -0.70105058e+00 0.52670151e+03 0.10594057e+01
- 2 111 600 601 -0.50327728e-01 -0.14449088e+00 0.26685980e+02 0.13498000e+00
- 2 92 278 286 0.00000000e+00 0.00000000e+00 -0.31738685e+02 0.36686522e+02
- 2 111 602 603 0.27326194e+00 -0.32809240e+00 0.16185548e+01 0.13498000e+00
- 2 113 604 605 -0.99134030e-02 -0.10238383e+00 0.97082335e+00 0.70602520e+00
- 2 113 606 607 0.48974449e+00 -0.18730484e+00 0.18049347e+01 0.62176345e+00
- 2 111 608 609 -0.39339364e+00 -0.22265008e+00 0.51211013e+00 0.13498000e+00
- 2 323 610 611 0.33179146e+00 -0.35094584e+00 0.29172014e+01 0.98156744e+00
- 2 3122 612 613 -0.21157073e+00 -0.63651495e-01 -0.42147518e+01 0.11156800e+01
- 1 -2212 0 0 -0.91671962e-01 0.47695715e+00 -0.56376700e+01 0.93827000e+00
- 1 211 0 0 0.65269493e-01 0.10375710e+00 -0.15292299e+01 0.13957000e+00
- 1 -211 0 0 -0.45351764e+00 0.67431423e+00 -0.28180658e+02 0.13957000e+00
- 2 92 288 325 0.25685458e+02 -0.19809721e+02 0.20657459e+04 0.52730523e+04
- 2 -213 614 615 0.37016670e+00 -0.10426728e+01 0.23748892e+04 0.10321660e+01
- 2 2224 616 617 0.84506986e+00 -0.57366563e+00 0.60163111e+03 0.12400027e+01
- 1 -2212 0 0 -0.22621152e-01 -0.30508523e+00 0.85279365e+02 0.93827000e+00
- 2 213 618 619 -0.18487203e+00 0.93111972e-01 0.10259732e+03 0.69425979e+00
- 2 2114 620 621 -0.27900598e+00 -0.17617209e+00 0.71494891e+02 0.11539771e+01
- 2 -323 622 623 0.88648649e-01 0.27297753e+00 0.91702798e+02 0.88557688e+00
- 2 313 624 625 -0.37445866e+00 -0.41852490e+00 0.17401456e+02 0.88066529e+00
- 1 -2112 0 0 0.11546020e+01 0.71065894e+00 0.99345857e+02 0.93957000e+00
- 1 321 0 0 -0.80518053e+00 0.48262649e+00 0.26041798e+02 0.49360000e+00
- 2 3112 626 627 0.10925253e+01 -0.14941478e+01 0.46869686e+02 0.11974400e+01
- 2 111 628 629 0.46045183e-01 -0.32133076e+00 0.17078504e+02 0.13498000e+00
- 2 111 630 631 0.19358196e+00 0.19865496e+00 0.53588118e+02 0.13498000e+00
- 2 111 632 633 0.32139867e+00 0.41996037e+00 0.26020633e+02 0.13498000e+00
- 1 211 0 0 0.10663992e+01 -0.10651907e+01 0.43435528e+02 0.13957000e+00
- 2 -213 634 635 0.85647566e+00 -0.96636768e+00 0.45169499e+02 0.77190832e+00
- 2 113 636 637 0.57902884e+00 -0.10683442e+01 0.28400232e+02 0.87574934e+00
- 1 211 0 0 0.79324645e+00 -0.59895977e+00 0.11954034e+02 0.13957000e+00
- 2 -213 638 639 0.31249849e+00 -0.79298141e+00 0.25709076e+02 0.74375569e+00
- 1 211 0 0 0.25647629e+00 -0.57637468e+00 0.14316081e+02 0.13957000e+00
- 1 -211 0 0 0.13277427e+00 -0.30562685e+00 0.41237700e+01 0.13957000e+00
- 2 -313 640 641 0.48247823e+00 -0.75872641e+00 0.49312684e+01 0.87370333e+00
- 2 311 642 642 0.13018608e+01 -0.91384438e+00 0.13891921e+02 0.49767000e+00
- 2 -313 643 644 0.41107060e+01 -0.55958092e+01 0.30646637e+02 0.95040325e+00
- 2 323 645 646 0.11353312e+01 -0.94228354e+00 0.71818697e+01 0.83557006e+00
- 1 -2212 0 0 0.32878612e+01 -0.44003842e+01 0.89042119e+01 0.93827000e+00
- 1 2112 0 0 0.24438547e+01 -0.16832252e+01 0.26402127e+01 0.93957000e+00
- 1 211 0 0 0.47383174e+00 0.41728760e+00 0.24743400e-01 0.13957000e+00
- 2 -323 647 648 0.10664432e+01 -0.50404783e+00 0.22430215e+01 0.89790459e+00
- 2 311 649 649 0.13141680e+01 0.51093370e+00 0.38406409e+00 0.49767000e+00
- 2 213 650 651 0.10381430e+01 0.66087481e+00 0.22280981e+00 0.88809137e+00
- 1 -321 0 0 0.24108798e+01 0.96991315e-01 0.92595678e+00 0.49360000e+00
- 2 311 652 652 -0.37300863e+00 0.68484402e+00 -0.16115385e+01 0.49767000e+00
- 2 -313 653 654 0.75931023e+00 0.17340716e+00 -0.63306011e+00 0.97983982e+00
- 2 311 655 655 0.35855460e+00 0.13724248e+00 -0.39467809e+01 0.49767000e+00
- 2 -311 656 656 -0.79225791e+00 0.25173992e+00 -0.87409144e+01 0.49767000e+00
- 2 313 657 658 0.65201670e+00 0.20355290e+00 -0.31434596e+03 0.89322211e+00
- 2 113 659 660 -0.18931845e+00 -0.93612109e+00 -0.58358748e+03 0.79045611e+00
- 2 223 661 663 -0.23819589e+00 0.31530087e+00 -0.88043408e+03 0.77955311e+00
- 2 92 327 340 -0.11488662e+01 -0.19486174e+01 -0.88878930e+02 0.14979742e+02
- 1 -211 0 0 0.21230261e+00 0.45500129e-01 -0.18879807e+01 0.13957000e+00
- 2 223 664 666 -0.49056830e+00 -0.22661028e+00 -0.18481089e+02 0.78388680e+00
- 2 223 667 669 0.30809513e+00 -0.37122592e+00 -0.18749716e+02 0.78949319e+00
- 2 213 670 671 0.52061363e+00 -0.46394012e+00 -0.99406214e+01 0.68914826e+00
- 1 -211 0 0 0.35258514e+00 -0.16376733e-01 -0.60775869e+01 0.13957000e+00
- 1 211 0 0 0.11818781e+00 -0.74095763e-01 -0.65183300e+00 0.13957000e+00
- 2 111 672 673 -0.94449567e+00 -0.48899711e+00 -0.12352009e+02 0.13498000e+00
- 1 -211 0 0 0.21826656e+00 -0.17543550e+00 -0.39104406e+01 0.13957000e+00
- 1 211 0 0 0.39040938e+00 0.57668832e+00 -0.54882944e+01 0.13957000e+00
- 2 221 674 675 -0.80076556e+00 -0.66758419e+00 -0.21086513e+01 0.54745000e+00
- 2 221 676 677 0.10790268e+00 0.59057112e+00 -0.19099500e+01 0.54745000e+00
- 2 311 678 678 -0.22983981e+00 -0.60371741e+00 -0.34062016e+01 0.49767000e+00
- 2 -323 679 680 -0.12917826e+01 -0.10981533e+00 -0.33223012e+01 0.78073408e+00
- 1 211 0 0 0.38022274e+00 0.36421344e-01 -0.59225572e+00 0.13957000e+00
- 2 92 342 345 -0.46371841e+00 0.66467288e+00 0.70830528e+02 0.77592239e+01
- 2 223 681 683 0.35598483e+00 0.83428307e-01 0.39179675e+01 0.78477028e+00
- 2 213 684 685 -0.89524968e+00 0.93240936e+00 0.38987003e+01 0.78435004e+00
- 2 -323 686 687 0.66954836e+00 -0.82398727e-01 0.47362713e+02 0.81373529e+00
- 2 313 688 689 -0.59400192e+00 -0.26876606e+00 0.15651147e+02 0.89485594e+00
- 1 211 0 0 -0.28742941e+00 0.87371106e+00 -0.77760721e+00 0.13957000e+00
- 2 111 690 691 -0.74566147e+00 0.23034514e+01 -0.37230188e+01 0.13498000e+00
- 2 111 692 693 0.74055626e-01 0.16562270e+00 -0.25734756e+00 0.13498000e+00
- 2 111 694 695 -0.21079809e-01 0.13279530e+00 -0.39575896e+00 0.13498000e+00
- 2 221 696 697 -0.48626565e+00 0.99137742e+00 -0.21106790e+01 0.54745000e+00
- 1 211 0 0 -0.70181228e-01 -0.56178371e-01 -0.34893939e+00 0.13957000e+00
- 1 -211 0 0 0.90227747e-01 0.27622772e+00 -0.97685794e+00 0.13957000e+00
- 2 111 698 699 -0.23882763e+00 0.46240461e+00 -0.83554885e+00 0.13498000e+00
- 1 -211 0 0 -0.26063389e+00 0.38694214e-01 -0.66106775e+00 0.13957000e+00
- 1 211 0 0 -0.13724779e+00 0.51361217e+00 -0.18472163e+01 0.13957000e+00
- 2 111 700 701 -0.10123449e+00 0.12164674e+00 -0.19525236e+00 0.13498000e+00
- 1 321 0 0 -0.18365486e+01 0.73846166e+00 -0.75593426e+01 0.49360000e+00
- 1 -211 0 0 -0.68198192e-01 -0.48453111e-01 -0.28259328e+00 0.13957000e+00
- 1 -211 0 0 -0.18165010e+01 0.52170627e+00 -0.78227117e+01 0.13957000e+00
- 1 211 0 0 -0.13589095e+01 0.50725310e+00 -0.64552785e+01 0.13957000e+00
- 2 111 702 703 -0.15901920e+01 0.29601535e+00 -0.54017658e+01 0.13498000e+00
- 1 -211 0 0 -0.13610710e+01 0.40703487e+00 -0.71138087e+01 0.13957000e+00
- 2 111 704 705 -0.21441590e+00 -0.67202565e-01 -0.29675446e+01 0.13498000e+00
- 1 211 0 0 -0.27338613e+00 0.12938033e+00 -0.19768841e+01 0.13957000e+00
- 1 -211 0 0 -0.10034467e+01 0.45548537e+00 -0.38794814e+01 0.13957000e+00
- 2 111 706 707 -0.27425013e+00 -0.38091632e-01 -0.20707278e+01 0.13498000e+00
- 1 211 0 0 -0.10161404e+00 0.56702493e-03 -0.11045151e+00 0.13957000e+00
- 1 -211 0 0 0.23786443e+00 -0.62104524e-01 -0.91487547e+00 0.13957000e+00
- 2 111 708 709 -0.93961385e-01 0.11905648e+00 -0.69076002e+00 0.13498000e+00
- 1 211 0 0 -0.77391929e-01 0.69170408e-01 -0.29454163e+00 0.13957000e+00
- 1 -211 0 0 -0.19768724e-01 0.44865577e+00 0.12084423e+00 0.13957000e+00
- 1 -211 0 0 0.17385966e+00 0.25996788e+00 -0.55350267e+00 0.13957000e+00
- 2 111 710 711 -0.26181288e+00 -0.33987760e+00 -0.29512916e+00 0.13498000e+00
- 1 2212 0 0 0.84272120e+00 0.28198452e+00 0.78827272e+00 0.93827000e+00
- 2 111 712 713 0.16145749e+00 0.17333653e+00 -0.34255261e-01 0.13498000e+00
- 2 -3122 714 715 0.21075212e+01 0.37135858e+00 0.67655834e+00 0.11156800e+01
- 1 22 0 0 0.62084672e-02 0.49385414e-01 0.13055500e-01 0.00000000e+00
- 1 211 0 0 0.70270119e+00 0.31483318e+00 -0.16386343e+01 0.13957000e+00
- 2 111 716 717 0.41586481e-02 0.17781792e+00 -0.71515116e-01 0.13498000e+00
- 1 -211 0 0 0.41595735e-01 0.53795976e-02 -0.22692164e-01 0.13957000e+00
- 2 111 718 719 0.98834794e-01 -0.62400921e+00 -0.44458882e+00 0.13498000e+00
- 1 321 0 0 -0.16927385e+00 0.31723258e+00 -0.38000743e+01 0.49360000e+00
- 2 111 720 721 -0.27007615e+00 0.96372729e-01 -0.68618843e+00 0.13498000e+00
- 1 130 0 0 0.18372802e+00 0.11883484e+00 -0.18913827e+02 0.49767000e+00
- 2 310 722 723 0.31660079e+00 0.15626485e+00 -0.16114980e+02 0.49767000e+00
- 2 3322 724 725 0.49705943e+00 -0.64992917e+00 -0.12895746e+03 0.13149000e+01
- 2 111 726 727 0.68949559e-01 -0.56302538e-01 -0.35769797e+02 0.13498000e+00
- 1 -2112 0 0 -0.24165947e+00 -0.29881490e-01 -0.19449703e+02 0.93957000e+00
- 1 -211 0 0 0.95341472e-01 0.10933674e+00 -0.22429190e+01 0.13957000e+00
- 1 22 0 0 0.36787990e+00 0.24855669e+00 -0.12326895e+03 0.00000000e+00
- 1 22 0 0 0.17857298e+00 0.55268819e-01 -0.74661592e+02 0.00000000e+00
- 1 2212 0 0 -0.11497704e+00 -0.16621258e+00 -0.15920096e+03 0.93827000e+00
- 1 211 0 0 0.34063214e+00 -0.56770206e-01 -0.73863336e+02 0.13957000e+00
- 1 211 0 0 -0.52577867e-01 -0.25305417e+00 -0.17757529e+03 0.13957000e+00
- 1 -211 0 0 -0.15756669e+00 0.18692140e-02 -0.42671139e+02 0.13957000e+00
- 2 111 728 729 0.11480464e+00 0.11479488e+00 -0.12735400e+03 0.13498000e+00
- 2 311 730 730 0.13420675e-01 0.72448415e+00 -0.12298882e+01 0.49767000e+00
- 1 211 0 0 -0.28759046e+00 0.63809982e+00 -0.60781955e+00 0.13957000e+00
- 1 211 0 0 0.32272635e+00 0.63598528e+00 -0.15453271e+00 0.13957000e+00
- 1 -211 0 0 -0.34162353e-01 0.38036868e+00 -0.40745906e+00 0.13957000e+00
- 2 111 731 732 0.43635472e-01 0.26818090e+00 0.38481276e-01 0.13498000e+00
- 1 -211 0 0 0.22070181e-01 0.29686995e-01 -0.28009800e+00 0.13957000e+00
- 2 111 733 734 0.43852539e+00 0.11350054e+00 0.27635327e+00 0.13498000e+00
- 2 111 735 736 -0.39385892e-01 0.60821136e-01 0.57045150e+00 0.13498000e+00
- 2 111 737 739 -0.11902651e+00 0.32591749e-01 0.67831894e+00 0.13498000e+00
- 2 111 740 741 -0.49648068e+00 0.11879560e-01 0.26080819e+01 0.13498000e+00
- 1 -2112 0 0 -0.16315329e+00 0.92001512e+00 0.33733357e+01 0.93957000e+00
- 1 211 0 0 0.19743159e+00 0.61100241e+00 0.16205759e+01 0.13957000e+00
- 1 2112 0 0 -0.49102833e-01 0.78705404e+00 0.48125153e+01 0.93957000e+00
- 1 -211 0 0 0.33736728e-01 0.68709941e+00 0.22847005e+01 0.13957000e+00
- 1 22 0 0 0.73234371e-01 -0.15188063e+00 0.36027579e+00 0.00000000e+00
- 1 22 0 0 -0.34182503e-01 -0.90496101e-01 0.42815926e+00 0.00000000e+00
- 1 211 0 0 -0.65347071e+00 0.11391216e+01 0.55361626e+00 0.13957000e+00
- 1 -211 0 0 0.11955651e+00 0.75876593e-01 -0.60342821e-01 0.13957000e+00
- 1 -2112 0 0 -0.44970661e+00 0.73782023e+00 0.51057201e+00 0.93957000e+00
- 1 -211 0 0 0.10034162e+00 0.13175279e+00 0.30420492e+00 0.13957000e+00
- 1 2212 0 0 0.14898976e+00 -0.38797617e+00 -0.11787571e+01 0.93827000e+00
- 1 -211 0 0 -0.32070895e-01 0.59124521e-02 0.50493398e-01 0.13957000e+00
- 1 -211 0 0 0.46175577e+00 -0.11270280e-01 -0.19194487e+00 0.13957000e+00
- 1 211 0 0 0.34629600e+00 -0.21585204e+00 -0.46959385e+00 0.13957000e+00
- 2 111 742 743 0.42790663e+00 -0.52569379e+00 -0.38047538e+00 0.13498000e+00
- 1 22 0 0 -0.60722793e-01 0.24379953e-02 -0.14407715e+00 0.00000000e+00
- 1 22 0 0 -0.10479844e+00 0.16358200e+00 -0.17003696e+00 0.00000000e+00
- 1 211 0 0 -0.33261678e+00 -0.24767523e+00 -0.17727271e+00 0.13957000e+00
- 1 -211 0 0 0.47159037e+00 -0.11234180e+00 -0.36343600e+00 0.13957000e+00
- 1 -211 0 0 0.43589567e+00 -0.40333847e+00 -0.11877487e+01 0.13957000e+00
- 2 111 744 745 0.11973779e-01 0.17275017e+00 -0.23346127e+00 0.13498000e+00
- 1 211 0 0 0.62189154e+00 -0.27017815e+00 -0.51837012e+00 0.13957000e+00
- 1 -211 0 0 0.59452934e+00 -0.42136739e+00 -0.67578086e+00 0.13957000e+00
- 2 111 746 747 0.14336058e+01 -0.63161308e+00 -0.21149999e+01 0.13498000e+00
- 1 211 0 0 0.63484726e+00 0.14690292e+00 -0.15511963e+01 0.13957000e+00
- 1 -211 0 0 -0.11349800e+00 0.35243540e+00 -0.24682723e+00 0.13957000e+00
- 1 211 0 0 0.40179122e+00 0.36422677e+00 -0.56392636e+00 0.13957000e+00
- 2 111 748 749 0.14156977e+01 -0.17900020e+00 -0.28534366e+01 0.13498000e+00
- 1 -2212 0 0 0.13961832e+01 0.20176454e+01 -0.88317501e+01 0.93827000e+00
- 1 -211 0 0 0.44723707e+00 0.45425845e+00 -0.27058535e+01 0.13957000e+00
- 1 22 0 0 0.58417895e+00 0.38528784e+00 -0.16278045e+01 0.00000000e+00
- 1 22 0 0 0.24041597e+00 0.89584105e-01 -0.75868788e+00 0.00000000e+00
- 1 2212 0 0 0.14241214e+01 0.49593119e+00 -0.38811775e+01 0.93827000e+00
- 1 211 0 0 0.34002753e+00 0.42075776e+00 -0.14505433e+01 0.13957000e+00
- 1 -211 0 0 0.10915743e+01 0.10803607e+01 -0.71973240e+01 0.13957000e+00
- 1 211 0 0 0.59914742e+00 0.72002119e+00 -0.29637945e+01 0.13957000e+00
- 2 111 750 751 0.44017886e+00 0.72604578e+00 -0.38398527e+01 0.13498000e+00
- 1 211 0 0 0.11863735e+01 -0.41464563e+00 -0.40462010e+01 0.13957000e+00
- 2 111 752 753 0.53617760e+00 -0.14220785e+00 -0.33028350e+01 0.13498000e+00
- 1 -211 0 0 0.65686996e+00 0.63166086e-01 -0.18702319e+01 0.13957000e+00
- 2 111 754 755 0.22166880e+01 -0.52856220e+00 -0.10888835e+02 0.13498000e+00
- 2 -311 756 756 0.86592122e+00 0.88318226e-01 -0.39025567e+01 0.49767000e+00
- 2 111 757 758 0.18881407e+01 -0.29813631e+00 -0.64495490e+01 0.13498000e+00
- 1 22 0 0 0.29013304e+00 -0.17931526e+00 -0.39588972e+00 0.00000000e+00
- 1 22 0 0 0.37328064e+00 0.17550288e-01 -0.18599323e+01 0.00000000e+00
- 1 -2212 0 0 0.49530185e+01 -0.21520306e+01 -0.25083858e+02 0.93827000e+00
- 2 111 759 760 0.19694654e+00 -0.13171885e+00 -0.14880057e+01 0.13498000e+00
- 1 2112 0 0 0.53384567e+00 -0.62807138e+00 -0.57735088e+01 0.93957000e+00
- 2 111 761 762 0.42912484e+00 -0.28200157e+00 -0.41817799e+01 0.13498000e+00
- 1 211 0 0 0.12251197e+01 -0.32022733e+00 -0.82931113e+01 0.13957000e+00
- 1 -211 0 0 0.81669573e-01 0.82353125e-01 -0.54371097e+00 0.13957000e+00
- 1 211 0 0 0.33034143e+00 -0.77368711e+00 -0.52389485e+01 0.13957000e+00
- 1 -211 0 0 0.41577714e+00 -0.38183936e+00 -0.66707442e+01 0.13957000e+00
- 1 2112 0 0 0.29143838e+01 0.74557055e+00 -0.35378412e+02 0.93957000e+00
- 2 111 763 764 0.43039999e+00 0.21899866e+00 -0.50498601e+01 0.13498000e+00
- 2 -3122 765 766 0.13133779e+01 -0.29122720e+00 -0.18582969e+02 0.11156800e+01
- 1 -211 0 0 0.41865062e+00 0.60662856e-01 -0.74928632e+01 0.13957000e+00
- 1 211 0 0 0.58283352e+00 -0.98275359e-01 -0.10943989e+02 0.13957000e+00
- 1 -211 0 0 0.13050722e+01 0.16243526e+00 -0.17154246e+02 0.13957000e+00
- 2 111 767 768 0.24742041e+01 0.11081971e+00 -0.38064820e+02 0.13498000e+00
- 1 2212 0 0 0.52429828e+00 0.78984166e-01 -0.11738112e+02 0.93827000e+00
- 1 211 0 0 0.54111938e+00 0.24243060e-01 -0.10419146e+02 0.13957000e+00
- 1 -211 0 0 0.99713173e-01 0.44316384e-01 -0.68737303e+01 0.13957000e+00
- 1 211 0 0 0.40455966e+00 -0.52968828e-01 -0.15782822e+02 0.13957000e+00
- 2 111 769 770 0.67233668e+00 0.80048500e-01 -0.27434136e+02 0.13498000e+00
- 1 -211 0 0 0.83998463e+00 -0.77616250e-01 -0.41170286e+02 0.13957000e+00
- 2 111 771 772 0.38800816e+01 0.10501946e+01 -0.17144826e+03 0.13498000e+00
- 1 211 0 0 0.10170937e+01 -0.27834196e+00 -0.44569428e+02 0.13957000e+00
- 2 111 773 774 0.40492646e+01 0.53035409e-02 -0.19545575e+03 0.13498000e+00
- 1 211 0 0 0.10985767e+01 -0.27518263e+00 -0.61015132e+02 0.13957000e+00
- 2 111 775 776 0.45347437e+00 -0.22137420e+00 -0.64724324e+02 0.13498000e+00
- 1 -211 0 0 0.77216303e+00 -0.70264522e+00 -0.71850366e+02 0.13957000e+00
- 2 111 777 778 0.96022905e+00 -0.98791495e-01 -0.78900947e+02 0.13498000e+00
- 1 -211 0 0 0.43375098e+00 -0.16915531e+00 -0.38305766e+02 0.13957000e+00
- 2 111 779 780 0.50166340e+00 0.45314811e+00 -0.91358835e+02 0.13498000e+00
- 1 211 0 0 0.17369410e+00 0.16746972e+00 -0.47472921e+02 0.13957000e+00
- 1 -211 0 0 0.21670973e+01 0.55905992e+00 -0.29930488e+03 0.13957000e+00
- 2 111 781 782 0.49061898e+00 0.95924366e-01 -0.59577578e+02 0.13498000e+00
- 1 211 0 0 0.44309480e+00 -0.88273877e-01 -0.43577522e+02 0.13957000e+00
- 1 -211 0 0 -0.28144451e+00 -0.34431385e+00 -0.55548901e+02 0.13957000e+00
- 1 211 0 0 0.14592243e+00 -0.76273814e-01 -0.95216478e+02 0.13957000e+00
- 1 -211 0 0 0.11100196e+00 -0.27488631e-01 -0.66537388e+02 0.13957000e+00
- 2 111 783 784 -0.55670193e-01 0.10599429e+00 -0.55268022e+02 0.13498000e+00
- 1 211 0 0 -0.30590992e+00 -0.32199677e+00 -0.43662347e+02 0.13957000e+00
- 1 -211 0 0 -0.45076886e-02 0.98105458e-01 -0.23522402e+02 0.13957000e+00
- 2 111 785 786 -0.43214251e+00 0.36642257e-01 -0.39405490e+02 0.13498000e+00
- 1 22 0 0 0.42407504e+00 0.37449272e+00 -0.25272851e+02 0.00000000e+00
- 1 22 0 0 0.93430543e-02 0.20965951e-01 -0.29477411e+01 0.00000000e+00
- 1 -211 0 0 -0.30222863e-01 -0.12351995e+00 -0.29721026e+02 0.13957000e+00
- 2 111 787 788 -0.64600672e+00 -0.12943861e+00 -0.42115177e+02 0.13498000e+00
- 1 22 0 0 -0.97016244e-01 0.10552465e+00 -0.48625569e+01 0.00000000e+00
- 1 22 0 0 -0.49675564e+00 0.22576589e+00 -0.24297401e+02 0.00000000e+00
- 1 -321 0 0 -0.32372597e+00 0.81093127e+00 -0.24522327e+02 0.49360000e+00
- 1 211 0 0 -0.69234357e+00 0.78921076e+00 -0.17567909e+02 0.13957000e+00
- 1 321 0 0 -0.68056928e-01 -0.78621868e-01 -0.53126183e+01 0.49360000e+00
- 1 -211 0 0 -0.22569877e+00 0.17708957e+00 -0.99504326e+01 0.13957000e+00
- 1 211 0 0 -0.10276276e+01 0.14206847e+01 -0.22042137e+02 0.13957000e+00
- 1 -211 0 0 -0.32675303e+00 0.97466617e+00 -0.11690137e+02 0.13957000e+00
- 1 -211 0 0 -0.35019007e+00 0.47264607e+00 -0.64382667e+01 0.13957000e+00
- 1 211 0 0 -0.19826602e+00 0.80363208e-01 -0.15942057e+01 0.13957000e+00
- 2 111 789 790 -0.96065286e+00 0.91481475e+00 -0.16552113e+02 0.13498000e+00
- 1 -321 0 0 -0.25116648e+01 0.26071367e+01 -0.33382639e+02 0.49360000e+00
- 1 211 0 0 -0.70927825e+00 0.50897936e+00 -0.10882216e+02 0.13957000e+00
- 1 -211 0 0 -0.20437109e+01 0.15488813e+01 -0.10979673e+02 0.13957000e+00
- 1 211 0 0 -0.16603594e+01 0.83568393e+00 -0.98954509e+01 0.13957000e+00
- 1 -2112 0 0 -0.15678941e+01 0.74395635e+00 -0.88725425e+01 0.93957000e+00
- 2 111 791 792 -0.10234746e+00 0.67582847e-01 -0.17636880e+01 0.13498000e+00
- 1 -211 0 0 -0.11036272e+01 0.96533942e-01 -0.69170348e+01 0.13957000e+00
- 1 211 0 0 -0.13828543e+01 -0.73318727e-01 -0.85492034e+01 0.13957000e+00
- 2 111 793 794 -0.21567378e+00 0.18304300e+00 -0.16550059e+01 0.13498000e+00
- 1 2212 0 0 -0.70063658e+00 0.43657476e+00 -0.79371596e+01 0.93827000e+00
- 1 -211 0 0 -0.10102321e+00 0.21133066e+00 -0.34284356e+01 0.13957000e+00
- 1 -2112 0 0 -0.40914846e+01 0.11595765e+01 -0.14697089e+02 0.93957000e+00
- 2 111 795 796 -0.16693312e+01 0.58651015e+00 -0.70486353e+01 0.13498000e+00
- 1 -211 0 0 -0.14619563e+01 0.18865282e-01 -0.50448875e+01 0.13957000e+00
- 2 111 797 798 -0.77603711e+00 -0.55055937e-01 -0.53243612e+01 0.13498000e+00
- 1 211 0 0 -0.60817579e-01 0.13468446e+00 -0.34333729e+00 0.13957000e+00
- 2 111 799 800 -0.85092956e+00 -0.23278295e+00 -0.37065413e+01 0.13498000e+00
- 1 321 0 0 -0.10261851e+01 0.45020487e+00 -0.19536533e+01 0.49360000e+00
- 1 -211 0 0 -0.67795082e+00 0.82686991e+00 -0.19780335e+01 0.13957000e+00
- 1 211 0 0 -0.38008290e-01 0.16730865e+00 -0.74632995e+00 0.13957000e+00
- 1 -211 0 0 0.27961384e-03 0.30232350e-01 -0.10737605e+00 0.13957000e+00
- 2 111 801 802 -0.61123297e+00 0.35705118e+00 -0.11929045e+01 0.13498000e+00
- 1 -211 0 0 -0.35882854e+00 0.45360256e+00 -0.20531829e+00 0.13957000e+00
- 1 211 0 0 -0.63374410e+00 0.39672378e+00 -0.27574853e+00 0.13957000e+00
- 2 111 803 804 -0.18189015e+00 0.68565301e+00 -0.33450233e+00 0.13498000e+00
- 1 22 0 0 -0.33481691e+00 0.13412970e+00 -0.12518983e+01 0.00000000e+00
- 2 111 805 806 -0.11725556e+00 0.12266737e+01 -0.31464299e+01 0.13498000e+00
- 1 -211 0 0 -0.28970082e+00 0.69658767e+00 -0.56406113e-01 0.13957000e+00
- 1 211 0 0 0.11327022e+00 0.32572888e+00 0.13236437e+00 0.13957000e+00
- 2 111 807 808 -0.29432063e-01 0.19927328e+00 -0.18161427e+00 0.13498000e+00
- 1 -211 0 0 -0.58585793e+00 0.33003601e+00 0.10727705e+00 0.13957000e+00
- 1 211 0 0 -0.26676985e+00 0.34842669e-01 -0.99386658e-02 0.13957000e+00
- 2 111 809 810 -0.26810066e-01 -0.10068057e+00 0.16519921e+00 0.13498000e+00
- 1 321 0 0 -0.71974622e+00 0.75903070e-01 0.56495892e+00 0.49360000e+00
- 1 -211 0 0 0.75991955e-01 -0.40510693e-01 0.29096960e+00 0.13957000e+00
- 1 -211 0 0 -0.11731287e+01 0.44151499e+00 0.97024352e+00 0.13957000e+00
- 1 211 0 0 -0.78048281e+00 -0.21694155e+00 0.95118571e+00 0.13957000e+00
- 1 211 0 0 -0.37991728e+00 -0.25023259e-01 0.10928568e+01 0.13957000e+00
- 1 -211 0 0 -0.57202750e+00 -0.17315621e+00 0.10198758e+01 0.13957000e+00
- 2 221 811 813 -0.23354434e+01 -0.33991121e+00 0.46552231e+01 0.54745000e+00
- 1 -211 0 0 -0.72173398e+00 -0.11496709e+00 0.12483497e+01 0.13957000e+00
- 1 211 0 0 -0.78941927e+00 0.20467780e+00 0.15825946e+01 0.13957000e+00
- 1 -211 0 0 -0.22696286e+01 -0.11533648e+00 0.37023972e+01 0.13957000e+00
- 2 111 814 815 -0.12861301e+01 0.18531501e+00 0.30998225e+01 0.13498000e+00
- 1 22 0 0 -0.10329520e+01 0.60831048e+00 0.44237244e+01 0.00000000e+00
- 1 -11 0 0 -0.13225111e+00 0.97728983e-01 0.32611642e+00 0.51000000e-03
- 1 11 0 0 -0.43920535e+00 0.32026694e+00 0.10824661e+01 0.51000000e-03
- 2 311 816 816 -0.18260450e+01 0.50873670e+00 0.70967790e+01 0.49767000e+00
- 1 211 0 0 -0.21237537e+01 0.53280467e+00 0.59789086e+01 0.13957000e+00
- 1 -211 0 0 -0.32780183e+01 0.30780004e+00 0.13164741e+02 0.13957000e+00
- 2 111 817 818 -0.30879314e+00 0.23160733e+00 0.17194707e+01 0.13498000e+00
- 1 211 0 0 -0.37208832e+00 0.25810901e+00 0.12546652e+01 0.13957000e+00
- 1 -211 0 0 -0.35814573e+00 0.19311432e-01 0.20029099e+01 0.13957000e+00
- 1 130 0 0 -0.54652605e+01 0.29794413e+00 0.19122356e+02 0.49767000e+00
- 1 22 0 0 -0.75313384e+00 0.10397475e+00 0.33030900e+01 0.00000000e+00
- 1 22 0 0 -0.86209654e-01 0.60969161e-01 0.43598811e+00 0.00000000e+00
- 1 22 0 0 -0.89734152e+00 0.22783081e+00 0.42072561e+01 0.00000000e+00
- 1 22 0 0 -0.24239380e+01 -0.10211705e+00 0.87710060e+01 0.00000000e+00
- 1 -2212 0 0 -0.19185072e+01 -0.75500512e+00 0.97607738e+01 0.93827000e+00
- 1 211 0 0 -0.73476775e-01 -0.24066651e-01 0.58273167e+00 0.13957000e+00
- 1 211 0 0 -0.10011225e+01 -0.39770575e+00 0.44956122e+01 0.13957000e+00
- 1 -211 0 0 -0.20606845e+01 -0.23516848e+00 0.92672980e+01 0.13957000e+00
- 2 111 819 820 -0.76498453e+00 -0.41229139e+00 0.35105180e+01 0.13498000e+00
- 1 2112 0 0 -0.11067533e+01 -0.81487445e+00 0.79060241e+01 0.93957000e+00
- 1 -211 0 0 -0.99355061e+00 -0.66730207e+00 0.55946452e+01 0.13957000e+00
- 1 22 0 0 -0.30875090e+00 -0.52786398e+00 0.35315966e+01 0.00000000e+00
- 1 22 0 0 -0.59937523e-01 -0.10013130e+00 0.11163131e+01 0.00000000e+00
- 1 211 0 0 -0.80561274e+00 -0.24020877e+00 0.38359021e+01 0.13957000e+00
- 2 111 821 822 -0.60762396e+00 -0.47288817e+00 0.78377611e+01 0.13498000e+00
- 1 2112 0 0 -0.36520891e+00 -0.85892461e+00 0.71193491e+01 0.93957000e+00
- 1 -211 0 0 0.78411340e-01 -0.36062191e-03 0.34988625e+01 0.13957000e+00
- 1 -321 0 0 -0.53815120e+00 0.29571860e+00 0.62043612e+01 0.49360000e+00
- 1 211 0 0 -0.69131831e+00 0.15660971e+00 0.97106392e+01 0.13957000e+00
- 1 321 0 0 -0.10104343e+00 0.13864020e-01 0.93431816e+01 0.49360000e+00
- 1 -321 0 0 0.47504799e-01 0.18528643e+00 0.74100652e+01 0.49360000e+00
- 1 321 0 0 -0.14121365e+00 -0.22297392e+00 0.87063617e+01 0.49360000e+00
- 2 111 823 824 -0.70043002e+00 -0.21472898e+00 0.97226857e+01 0.13498000e+00
- 2 -3122 825 826 -0.14270243e+01 0.31013689e+00 0.95591040e+02 0.11156800e+01
- 1 -211 0 0 -0.51526005e+00 -0.27288381e-01 0.38224817e+02 0.13957000e+00
- 1 2112 0 0 -0.78935877e+00 -0.11666287e-01 0.13129582e+03 0.93957000e+00
- 1 211 0 0 -0.44664020e+00 0.81954921e-01 0.67959898e+02 0.13957000e+00
- 1 -211 0 0 -0.11498785e+00 -0.47820593e+00 0.26351061e+02 0.13957000e+00
- 2 111 827 828 -0.53681744e+00 -0.11409549e+00 0.50902543e+02 0.13498000e+00
- 1 22 0 0 -0.13491775e+00 -0.47200617e+00 0.34667669e+02 0.00000000e+00
- 1 22 0 0 0.12588343e-01 0.21332705e-02 0.73199451e+00 0.00000000e+00
- 1 211 0 0 -0.86960130e+00 -0.17114350e+00 0.99295031e+02 0.13957000e+00
- 1 -211 0 0 0.16647144e+00 0.21044467e+00 0.34950347e+02 0.13957000e+00
- 1 -211 0 0 -0.40678130e+00 -0.10017138e+00 0.81383564e+02 0.13957000e+00
- 1 211 0 0 0.24040288e-01 -0.85121439e-01 0.25980324e+02 0.13957000e+00
- 2 111 829 830 -0.39459598e-02 -0.26876538e+00 0.11984302e+03 0.13498000e+00
- 1 211 0 0 -0.67840684e-01 0.22514200e+00 0.20415158e+03 0.13957000e+00
- 2 111 831 832 -0.47578067e-01 -0.92619258e+00 0.32254992e+03 0.13498000e+00
- 1 22 0 0 -0.49588444e-01 -0.94140941e-01 0.79464441e+01 0.00000000e+00
- 1 22 0 0 -0.73928466e-03 -0.50349937e-01 0.18739536e+02 0.00000000e+00
- 1 22 0 0 0.55017247e-01 -0.16605198e+00 0.69097561e+00 0.00000000e+00
- 1 22 0 0 0.21824469e+00 -0.16204041e+00 0.92757915e+00 0.00000000e+00
- 1 211 0 0 -0.10430693e+00 -0.23893538e+00 0.94040114e+00 0.13957000e+00
- 1 -211 0 0 0.94393531e-01 0.13655155e+00 0.30422213e-01 0.13957000e+00
- 1 -211 0 0 -0.29160789e-01 0.29090510e-01 0.85348161e+00 0.13957000e+00
- 1 211 0 0 0.51890528e+00 -0.21639535e+00 0.95145310e+00 0.13957000e+00
- 1 22 0 0 -0.30458962e+00 -0.19386566e+00 0.31898786e+00 0.00000000e+00
- 1 22 0 0 -0.88804024e-01 -0.28784417e-01 0.19312227e+00 0.00000000e+00
- 2 311 833 833 -0.10989073e+00 -0.30344699e+00 0.20122363e+01 0.49767000e+00
- 1 211 0 0 0.44168218e+00 -0.47498852e-01 0.90496507e+00 0.13957000e+00
- 1 2212 0 0 -0.15950082e+00 -0.17125134e-01 -0.38960878e+01 0.93827000e+00
- 1 -211 0 0 -0.52069910e-01 -0.46526361e-01 -0.31866403e+00 0.13957000e+00
- 1 -211 0 0 -0.16492948e+00 -0.73417353e+00 0.17373229e+04 0.13957000e+00
- 2 111 834 836 0.53509617e+00 -0.30849924e+00 0.63756634e+03 0.13498000e+00
- 1 2212 0 0 0.83923468e+00 -0.37173067e+00 0.43982457e+03 0.93827000e+00
- 1 211 0 0 0.58351731e-02 -0.20193496e+00 0.16180653e+03 0.13957000e+00
- 1 211 0 0 -0.24766814e-01 0.28370279e+00 0.81979623e+02 0.13957000e+00
- 2 111 837 838 -0.16010522e+00 -0.19059082e+00 0.20617696e+02 0.13498000e+00
- 1 2112 0 0 -0.10749960e+00 -0.69028404e-01 0.53079684e+02 0.93957000e+00
- 2 111 839 840 -0.17150638e+00 -0.10714369e+00 0.18415207e+02 0.13498000e+00
- 2 -311 841 841 0.16407764e+00 -0.50109937e-02 0.36095682e+02 0.49767000e+00
- 1 -211 0 0 -0.75428995e-01 0.27798852e+00 0.55607115e+02 0.13957000e+00
- 1 321 0 0 -0.48696946e+00 -0.21151402e+00 0.14594197e+02 0.49360000e+00
- 1 -211 0 0 0.11251080e+00 -0.20701089e+00 0.28072592e+01 0.13957000e+00
- 1 2112 0 0 0.79319990e+00 -0.94039804e+00 0.30776799e+02 0.93957000e+00
- 1 -211 0 0 0.29932544e+00 -0.55374973e+00 0.16092887e+02 0.13957000e+00
- 1 22 0 0 0.15162634e-01 -0.26438837e+00 0.15538081e+02 0.00000000e+00
- 1 22 0 0 0.30882550e-01 -0.56942395e-01 0.15404232e+01 0.00000000e+00
- 1 22 0 0 0.19148710e+00 0.16086251e+00 0.50977837e+02 0.00000000e+00
- 1 22 0 0 0.20948617e-02 0.37792454e-01 0.26102810e+01 0.00000000e+00
- 1 22 0 0 0.30637788e+00 0.42948122e+00 0.25339288e+02 0.00000000e+00
- 1 22 0 0 0.15020785e-01 -0.95208480e-02 0.68134479e+00 0.00000000e+00
- 1 -211 0 0 0.29146146e+00 -0.43491542e+00 0.29771225e+02 0.13957000e+00
- 2 111 842 843 0.56501419e+00 -0.53145226e+00 0.15398274e+02 0.13498000e+00
- 1 211 0 0 0.46768211e-01 -0.91459835e+00 0.17765458e+02 0.13957000e+00
- 1 -211 0 0 0.53226063e+00 -0.15374581e+00 0.10634773e+02 0.13957000e+00
- 1 -211 0 0 0.89061835e-01 -0.48835592e+00 0.21407203e+02 0.13957000e+00
- 2 111 844 845 0.22343666e+00 -0.30462549e+00 0.43018735e+01 0.13498000e+00
- 1 -321 0 0 0.22816826e+00 -0.38806040e+00 0.17671618e+01 0.49360000e+00
- 1 211 0 0 0.25430997e+00 -0.37066601e+00 0.31641067e+01 0.13957000e+00
- 1 130 0 0 0.13018608e+01 -0.91384438e+00 0.13891921e+02 0.49767000e+00
- 1 -321 0 0 0.11063084e+01 -0.15877861e+01 0.87268918e+01 0.49360000e+00
- 1 211 0 0 0.30043976e+01 -0.40080231e+01 0.21919745e+02 0.13957000e+00
- 2 311 846 846 0.71671205e+00 -0.33306583e+00 0.43592698e+01 0.49767000e+00
- 1 211 0 0 0.41861913e+00 -0.60921772e+00 0.28225999e+01 0.13957000e+00
- 1 -321 0 0 0.54308457e+00 -0.27485098e+00 0.17664362e+01 0.49360000e+00
- 2 111 847 848 0.52335865e+00 -0.22919685e+00 0.47658525e+00 0.13498000e+00
- 2 310 849 850 0.13141680e+01 0.51093370e+00 0.38406409e+00 0.49767000e+00
- 1 211 0 0 0.22678781e+00 -0.11941535e+00 -0.16549880e+00 0.13957000e+00
- 2 111 851 852 0.81135520e+00 0.78029016e+00 0.38830861e+00 0.13498000e+00
- 2 310 853 854 -0.37300863e+00 0.68484402e+00 -0.16115385e+01 0.49767000e+00
- 1 -321 0 0 0.33963541e+00 -0.53936417e-01 -0.67433041e+00 0.49360000e+00
- 1 211 0 0 0.41967483e+00 0.22734358e+00 0.41270300e-01 0.13957000e+00
- 2 310 855 856 0.35855460e+00 0.13724248e+00 -0.39467809e+01 0.49767000e+00
- 2 310 857 858 -0.79225791e+00 0.25173992e+00 -0.87409144e+01 0.49767000e+00
- 2 311 859 859 0.57326239e+00 0.41058248e+00 -0.23349379e+03 0.49767000e+00
- 2 111 860 861 0.78754310e-01 -0.20702958e+00 -0.80852171e+02 0.13498000e+00
- 1 -211 0 0 -0.18232531e+00 -0.13756016e+00 -0.31003897e+03 0.13957000e+00
- 1 211 0 0 -0.69931436e-02 -0.79856093e+00 -0.27354851e+03 0.13957000e+00
- 1 -211 0 0 -0.10518166e+00 0.44829154e+00 -0.61662709e+03 0.13957000e+00
- 1 211 0 0 -0.26322949e-01 -0.46631673e-01 -0.75727791e+02 0.13957000e+00
- 2 111 862 863 -0.10669127e+00 -0.86358994e-01 -0.18807920e+03 0.13498000e+00
- 1 211 0 0 -0.10863171e+00 0.65527518e-01 -0.60033957e+01 0.13957000e+00
- 1 -211 0 0 0.86551324e-01 -0.10169897e+00 -0.46900721e+01 0.13957000e+00
- 2 111 864 865 -0.46848791e+00 -0.19043882e+00 -0.77876212e+01 0.13498000e+00
- 1 211 0 0 0.23523950e-01 0.44582625e-01 -0.13638541e+01 0.13957000e+00
- 1 -211 0 0 -0.43640364e-01 -0.38687815e-02 -0.60076868e+01 0.13957000e+00
- 2 111 866 867 0.32821155e+00 -0.41193976e+00 -0.11378175e+02 0.13498000e+00
- 1 211 0 0 0.17616177e+00 -0.10417834e+00 -0.89869439e+00 0.13957000e+00
- 2 111 868 869 0.34445186e+00 -0.35976178e+00 -0.90419270e+01 0.13498000e+00
- 1 22 0 0 -0.20239589e+00 -0.14489335e+00 -0.34301398e+01 0.00000000e+00
- 1 22 0 0 -0.74209978e+00 -0.34410375e+00 -0.89218692e+01 0.00000000e+00
- 1 22 0 0 -0.29819460e+00 -0.41672803e+00 -0.15085028e+01 0.00000000e+00
- 1 22 0 0 -0.50257096e+00 -0.25085616e+00 -0.60014848e+00 0.00000000e+00
- 1 22 0 0 -0.52593229e-01 0.27405509e+00 -0.15317009e+01 0.00000000e+00
- 1 22 0 0 0.16049591e+00 0.31651603e+00 -0.37824912e+00 0.00000000e+00
- 1 130 0 0 -0.22983981e+00 -0.60371741e+00 -0.34062016e+01 0.49767000e+00
- 2 -311 870 870 -0.57362148e+00 0.61444294e-01 -0.16937058e+01 0.49767000e+00
- 1 -211 0 0 -0.71816112e+00 -0.17125962e+00 -0.16285954e+01 0.13957000e+00
- 1 211 0 0 0.17786429e+00 -0.22998534e+00 0.12016955e+01 0.13957000e+00
- 1 -211 0 0 0.17518254e-01 0.29053260e+00 0.16085291e+01 0.13957000e+00
- 2 111 871 872 0.16060228e+00 0.22881052e-01 0.11077428e+01 0.13498000e+00
- 1 211 0 0 -0.32785781e+00 0.20960470e+00 0.22645697e+01 0.13957000e+00
- 2 111 873 874 -0.56739187e+00 0.72280466e+00 0.16341306e+01 0.13498000e+00
- 2 -311 875 875 0.74099229e+00 -0.99789291e-01 0.39489015e+02 0.49767000e+00
- 1 -211 0 0 -0.71443936e-01 0.17390564e-01 0.78736983e+01 0.13957000e+00
- 2 311 876 876 -0.36645554e+00 -0.46790013e+00 0.11245765e+02 0.49767000e+00
- 2 111 877 878 -0.22754638e+00 0.19913407e+00 0.44053827e+01 0.13498000e+00
- 1 22 0 0 -0.65715271e+00 0.18613128e+01 -0.30439040e+01 0.00000000e+00
- 1 22 0 0 -0.88508764e-01 0.44213860e+00 -0.67911485e+00 0.00000000e+00
- 1 22 0 0 0.22598778e-02 0.15179723e+00 -0.15668945e+00 0.00000000e+00
- 1 22 0 0 0.71795749e-01 0.13825463e-01 -0.10065811e+00 0.00000000e+00
- 1 22 0 0 0.46997754e-01 0.44934282e-01 -0.23471092e+00 0.00000000e+00
- 1 22 0 0 -0.68077563e-01 0.87861016e-01 -0.16104804e+00 0.00000000e+00
- 1 22 0 0 -0.55707820e-01 0.51748706e+00 -0.54987082e+00 0.00000000e+00
- 1 22 0 0 -0.43055783e+00 0.47389036e+00 -0.15608082e+01 0.00000000e+00
- 1 22 0 0 -0.22083456e-01 0.18158034e+00 -0.28450015e+00 0.00000000e+00
- 1 22 0 0 -0.21674418e+00 0.28082427e+00 -0.55104870e+00 0.00000000e+00
- 1 22 0 0 -0.68735878e-01 0.39838787e-01 -0.98560392e-02 0.00000000e+00
- 1 22 0 0 -0.32498615e-01 0.81807951e-01 -0.18539632e+00 0.00000000e+00
- 1 22 0 0 -0.34844564e-01 0.12999408e-02 -0.65058323e-01 0.00000000e+00
- 1 22 0 0 -0.15553474e+01 0.29471541e+00 -0.53367075e+01 0.00000000e+00
- 1 22 0 0 -0.48158725e-01 0.41316129e-01 -0.67872459e+00 0.00000000e+00
- 1 22 0 0 -0.16625717e+00 -0.10851869e+00 -0.22888200e+01 0.00000000e+00
- 1 22 0 0 -0.10948947e+00 -0.12478259e-01 -0.41398098e+00 0.00000000e+00
- 1 22 0 0 -0.16476066e+00 -0.25613373e-01 -0.16567468e+01 0.00000000e+00
- 1 22 0 0 -0.63011320e-01 0.11749180e+00 -0.66889933e+00 0.00000000e+00
- 1 22 0 0 -0.30950065e-01 0.15646814e-02 -0.21860691e-01 0.00000000e+00
- 1 22 0 0 -0.83413677e-01 -0.18711716e+00 -0.19428791e+00 0.00000000e+00
- 1 22 0 0 -0.17839920e+00 -0.15276044e+00 -0.10084125e+00 0.00000000e+00
- 1 22 0 0 0.66849374e-01 0.12274186e+00 0.38723023e-01 0.00000000e+00
- 1 22 0 0 0.94608121e-01 0.50594675e-01 -0.72978284e-01 0.00000000e+00
- 1 -2112 0 0 0.18106984e+01 0.24616187e+00 0.49855490e+00 0.93957000e+00
- 2 111 879 880 0.29682281e+00 0.12519670e+00 0.17800344e+00 0.13498000e+00
- 1 22 0 0 0.98133442e-02 -0.33324951e-02 -0.51022498e-01 0.00000000e+00
- 1 22 0 0 -0.56546962e-02 0.18115041e+00 -0.20492618e-01 0.00000000e+00
- 1 22 0 0 -0.23499585e-02 -0.11017345e+00 -0.14082841e+00 0.00000000e+00
- 1 22 0 0 0.10118475e+00 -0.51383575e+00 -0.30376041e+00 0.00000000e+00
- 1 22 0 0 -0.27504730e+00 0.11422909e+00 -0.65565296e+00 0.00000000e+00
- 1 22 0 0 0.49711493e-02 -0.17856357e-01 -0.30535473e-01 0.00000000e+00
- 1 211 0 0 0.25059216e-01 0.75523149e-02 -0.10121850e+02 0.13957000e+00
- 1 -211 0 0 0.29154157e+00 0.14871253e+00 -0.59931303e+01 0.13957000e+00
- 2 3122 881 882 0.53163329e+00 -0.49504500e+00 -0.10617600e+03 0.11156800e+01
- 2 111 883 884 -0.34573856e-01 -0.15488418e+00 -0.22781461e+02 0.13498000e+00
- 1 22 0 0 0.68628555e-01 -0.44691429e-01 -0.35521028e+02 0.00000000e+00
- 1 22 0 0 0.32100467e-03 -0.11611109e-01 -0.24876924e+00 0.00000000e+00
- 1 22 0 0 0.70578825e-02 0.88871882e-01 -0.77808459e+02 0.00000000e+00
- 1 22 0 0 0.10774676e+00 0.25923003e-01 -0.49545546e+02 0.00000000e+00
- 2 310 885 886 0.13420675e-01 0.72448415e+00 -0.12298882e+01 0.49767000e+00
- 1 22 0 0 -0.11678806e-01 0.20231297e+00 0.69722106e-01 0.00000000e+00
- 1 22 0 0 0.55314279e-01 0.65867928e-01 -0.31240829e-01 0.00000000e+00
- 1 22 0 0 0.32824001e+00 0.12858543e+00 0.16211149e+00 0.00000000e+00
- 1 22 0 0 0.11028538e+00 -0.15084889e-01 0.11424179e+00 0.00000000e+00
- 1 22 0 0 -0.49644507e-01 0.33820998e-01 0.55435299e+00 0.00000000e+00
- 1 22 0 0 0.10258615e-01 0.27000138e-01 0.16098516e-01 0.00000000e+00
- 1 22 0 0 -0.64343821e-01 0.49658849e-01 0.20730138e+00 0.00000000e+00
- 1 11 0 0 -0.68350437e-01 -0.20879369e-01 0.43996184e+00 0.51000000e-03
- 1 -11 0 0 0.13667745e-01 0.38122694e-02 0.31055721e-01 0.51000000e-03
- 1 22 0 0 -0.40679157e+00 -0.31359854e-01 0.18990290e+01 0.00000000e+00
- 1 22 0 0 -0.89689114e-01 0.43239413e-01 0.70905289e+00 0.00000000e+00
- 1 22 0 0 0.20570438e+00 -0.30259775e+00 -0.13617090e+00 0.00000000e+00
- 1 22 0 0 0.22220225e+00 -0.22309604e+00 -0.24430448e+00 0.00000000e+00
- 1 22 0 0 0.23559404e-01 0.24896560e-02 -0.10295917e+00 0.00000000e+00
- 1 22 0 0 -0.11585626e-01 0.17026052e+00 -0.13050210e+00 0.00000000e+00
- 1 22 0 0 0.11894070e+01 -0.57372286e+00 -0.17444008e+01 0.00000000e+00
- 1 22 0 0 0.24419881e+00 -0.57890221e-01 -0.37059908e+00 0.00000000e+00
- 1 22 0 0 0.68745276e+00 -0.23617743e-01 -0.13155097e+01 0.00000000e+00
- 1 22 0 0 0.72824493e+00 -0.15538246e+00 -0.15379269e+01 0.00000000e+00
- 1 22 0 0 0.25606718e+00 0.34153934e+00 -0.16790169e+01 0.00000000e+00
- 1 22 0 0 0.18411168e+00 0.38450644e+00 -0.21608358e+01 0.00000000e+00
- 1 22 0 0 0.81904960e-01 -0.57475231e-01 -0.84597743e+00 0.00000000e+00
- 1 22 0 0 0.45427264e+00 -0.84732623e-01 -0.24568576e+01 0.00000000e+00
- 1 22 0 0 0.17543220e+01 -0.39178976e+00 -0.83396578e+01 0.00000000e+00
- 1 22 0 0 0.46236600e+00 -0.13677244e+00 -0.25491769e+01 0.00000000e+00
- 2 310 887 888 0.86592122e+00 0.88318226e-01 -0.39025567e+01 0.49767000e+00
- 1 22 0 0 0.17275813e+01 -0.27159628e+00 -0.60201272e+01 0.00000000e+00
- 1 22 0 0 0.16055947e+00 -0.26540031e-01 -0.42942182e+00 0.00000000e+00
- 1 22 0 0 0.21073339e+00 -0.10471032e+00 -0.11761809e+01 0.00000000e+00
- 1 22 0 0 -0.13786844e-01 -0.27008528e-01 -0.31182478e+00 0.00000000e+00
- 1 22 0 0 -0.18842357e-03 -0.29666378e-01 -0.14767220e+00 0.00000000e+00
- 1 22 0 0 0.42931326e+00 -0.25233519e+00 -0.40341077e+01 0.00000000e+00
- 1 22 0 0 0.37105191e+00 0.22089620e+00 -0.47033839e+01 0.00000000e+00
- 1 22 0 0 0.59348078e-01 -0.18975332e-02 -0.34647621e+00 0.00000000e+00
- 1 -2212 0 0 0.10682246e+01 -0.28849969e+00 -0.16354322e+02 0.93827000e+00
- 1 211 0 0 0.24515332e+00 -0.27275054e-02 -0.22286468e+01 0.13957000e+00
- 1 22 0 0 0.15475912e+01 0.38739812e-02 -0.23747828e+02 0.00000000e+00
- 1 22 0 0 0.92661288e+00 0.10694573e+00 -0.14316992e+02 0.00000000e+00
- 1 22 0 0 0.19621043e+00 0.76745316e-01 -0.97596560e+01 0.00000000e+00
- 1 22 0 0 0.47612625e+00 0.33031845e-02 -0.17674480e+02 0.00000000e+00
- 1 22 0 0 0.45698901e+00 0.12362688e+00 -0.22122676e+02 0.00000000e+00
- 1 22 0 0 0.34230926e+01 0.92656771e+00 -0.14932559e+03 0.00000000e+00
- 1 22 0 0 0.28363551e+00 0.39861323e-02 -0.12128639e+02 0.00000000e+00
- 1 22 0 0 0.37656291e+01 0.13174086e-02 -0.18332711e+03 0.00000000e+00
- 1 22 0 0 0.36914105e+00 -0.13344662e+00 -0.53703647e+02 0.00000000e+00
- 1 22 0 0 0.84333322e-01 -0.87927576e-01 -0.11020677e+02 0.00000000e+00
- 1 22 0 0 0.14720080e+00 0.28330485e-01 -0.10491273e+02 0.00000000e+00
- 1 22 0 0 0.81302825e+00 -0.12712198e+00 -0.68409674e+02 0.00000000e+00
- 1 22 0 0 0.24495710e+00 0.31033767e+00 -0.53619139e+02 0.00000000e+00
- 1 22 0 0 0.25670631e+00 0.14281044e+00 -0.37739696e+02 0.00000000e+00
- 1 22 0 0 0.12887485e+00 0.50384303e-02 -0.22632112e+02 0.00000000e+00
- 1 22 0 0 0.36174412e+00 0.90885936e-01 -0.36945467e+02 0.00000000e+00
- 1 22 0 0 -0.20168603e-02 -0.24369783e-01 -0.19693981e+02 0.00000000e+00
- 1 22 0 0 -0.53653333e-01 0.13036407e+00 -0.35574042e+02 0.00000000e+00
- 1 22 0 0 -0.14227231e+00 -0.41435251e-01 -0.16158115e+02 0.00000000e+00
- 1 22 0 0 -0.28987020e+00 0.78077507e-01 -0.23247375e+02 0.00000000e+00
- 1 22 0 0 -0.55311913e+00 -0.69180429e-01 -0.33159076e+02 0.00000000e+00
- 1 22 0 0 -0.92887593e-01 -0.60258176e-01 -0.89561016e+01 0.00000000e+00
- 1 22 0 0 -0.46921205e+00 0.46963923e+00 -0.74659099e+01 0.00000000e+00
- 1 22 0 0 -0.49144080e+00 0.44517552e+00 -0.90862032e+01 0.00000000e+00
- 1 22 0 0 0.12037599e-01 -0.16487073e-01 -0.57627303e-01 0.00000000e+00
- 1 22 0 0 -0.11438506e+00 0.84069920e-01 -0.17060607e+01 0.00000000e+00
- 1 22 0 0 -0.64525191e-01 0.12137197e+00 -0.99894917e+00 0.00000000e+00
- 1 22 0 0 -0.15114858e+00 0.61671030e-01 -0.65605675e+00 0.00000000e+00
- 1 22 0 0 -0.68469290e+00 0.29788735e+00 -0.31295065e+01 0.00000000e+00
- 1 22 0 0 -0.98463833e+00 0.28862280e+00 -0.39191288e+01 0.00000000e+00
- 1 22 0 0 -0.49711800e+00 0.15141699e-02 -0.30059930e+01 0.00000000e+00
- 1 22 0 0 -0.27891911e+00 -0.56570107e-01 -0.23183682e+01 0.00000000e+00
- 1 22 0 0 -0.78280376e+00 -0.24660428e+00 -0.33368067e+01 0.00000000e+00
- 1 22 0 0 -0.68125799e-01 0.13821322e-01 -0.36973462e+00 0.00000000e+00
- 1 22 0 0 -0.42577947e+00 0.26931033e+00 -0.72596564e+00 0.00000000e+00
- 1 22 0 0 -0.18545349e+00 0.87740851e-01 -0.46693888e+00 0.00000000e+00
- 1 22 0 0 -0.29711851e-01 0.28944348e-01 -0.47738219e-01 0.00000000e+00
- 1 22 0 0 -0.15217830e+00 0.65670866e+00 -0.28676411e+00 0.00000000e+00
- 1 22 0 0 -0.10798167e-01 0.58511764e-01 -0.88599499e-01 0.00000000e+00
- 1 22 0 0 -0.10645740e+00 0.11681619e+01 -0.30578304e+01 0.00000000e+00
- 1 22 0 0 -0.65534082e-02 0.17125792e+00 -0.19916092e+00 0.00000000e+00
- 1 22 0 0 -0.22878655e-01 0.28015362e-01 0.17546643e-01 0.00000000e+00
- 1 22 0 0 -0.10146166e-01 -0.99947376e-01 0.35350764e-01 0.00000000e+00
- 1 22 0 0 -0.16663900e-01 -0.73319605e-03 0.12984845e+00 0.00000000e+00
- 2 111 889 890 -0.67223020e+00 -0.84195957e-01 0.13315677e+01 0.13498000e+00
- 2 111 891 892 -0.12653581e+01 -0.20271948e+00 0.22372222e+01 0.13498000e+00
- 2 111 893 894 -0.39785506e+00 -0.52995775e-01 0.10864332e+01 0.13498000e+00
- 1 22 0 0 -0.76923473e+00 0.76024273e-01 0.16932138e+01 0.00000000e+00
- 1 22 0 0 -0.51689540e+00 0.10929074e+00 0.14066087e+01 0.00000000e+00
- 2 310 895 896 -0.18260450e+01 0.50873670e+00 0.70967790e+01 0.49767000e+00
- 1 22 0 0 -0.13053307e+00 0.18166928e+00 0.95970317e+00 0.00000000e+00
- 1 22 0 0 -0.17826008e+00 0.49938045e-01 0.75976750e+00 0.00000000e+00
- 1 22 0 0 -0.72187684e+00 -0.36077083e+00 0.33298086e+01 0.00000000e+00
- 1 22 0 0 -0.43107690e-01 -0.51520560e-01 0.18070944e+00 0.00000000e+00
- 1 22 0 0 -0.24442625e+00 -0.19582080e+00 0.38766268e+01 0.00000000e+00
- 1 22 0 0 -0.36319771e+00 -0.27706737e+00 0.39611344e+01 0.00000000e+00
- 1 22 0 0 -0.38744288e+00 -0.18842112e+00 0.56543310e+01 0.00000000e+00
- 1 22 0 0 -0.31298713e+00 -0.26307856e-01 0.40683547e+01 0.00000000e+00
- 1 -2212 0 0 -0.12982102e+01 0.20895930e+00 0.86805806e+02 0.93827000e+00
- 1 211 0 0 -0.12881414e+00 0.10117759e+00 0.87852334e+01 0.13957000e+00
- 1 22 0 0 -0.36479265e+00 -0.47883746e-01 0.38647017e+02 0.00000000e+00
- 1 22 0 0 -0.17202479e+00 -0.66211739e-01 0.12255526e+02 0.00000000e+00
- 1 22 0 0 0.28603780e-01 -0.25514171e+00 0.93042163e+02 0.00000000e+00
- 1 22 0 0 -0.32549740e-01 -0.13623671e-01 0.26800859e+02 0.00000000e+00
- 1 22 0 0 -0.83471220e-01 -0.80588537e+00 0.28501628e+03 0.00000000e+00
- 1 22 0 0 0.35893154e-01 -0.12030720e+00 0.37533643e+02 0.00000000e+00
- 2 310 897 898 -0.10989073e+00 -0.30344699e+00 0.20122363e+01 0.49767000e+00
- 1 22 0 0 0.30233691e+00 -0.11472584e+00 0.28695494e+03 0.00000000e+00
- 1 11 0 0 0.21053560e+00 -0.16832827e+00 0.31352754e+03 0.51000000e-03
- 1 -11 0 0 0.22223659e-01 -0.25445128e-01 0.37083870e+02 0.51000000e-03
- 1 22 0 0 -0.51806902e-01 -0.14316102e+00 0.14520626e+02 0.00000000e+00
- 1 22 0 0 -0.10829832e+00 -0.47429799e-01 0.60970701e+01 0.00000000e+00
- 1 22 0 0 0.19690318e-02 -0.13060637e-01 0.61754453e+01 0.00000000e+00
- 1 22 0 0 -0.17347542e+00 -0.94083052e-01 0.12239762e+02 0.00000000e+00
- 1 130 0 0 0.16407764e+00 -0.50109937e-02 0.36095682e+02 0.49767000e+00
- 1 22 0 0 0.31503889e-01 -0.39110768e-02 0.10852783e+01 0.00000000e+00
- 1 22 0 0 0.53351030e+00 -0.52754119e+00 0.14312995e+02 0.00000000e+00
- 1 22 0 0 0.15333752e+00 -0.18994727e+00 0.33942981e+01 0.00000000e+00
- 1 22 0 0 0.70099135e-01 -0.11467822e+00 0.90757536e+00 0.00000000e+00
- 2 310 899 900 0.71671205e+00 -0.33306583e+00 0.43592698e+01 0.49767000e+00
- 1 22 0 0 0.48020711e+00 -0.23075648e+00 0.47367006e+00 0.00000000e+00
- 1 22 0 0 0.43151538e-01 0.15596334e-02 0.29151868e-02 0.00000000e+00
- 1 211 0 0 0.91367936e+00 0.31826436e+00 0.66067857e-01 0.13957000e+00
- 1 -211 0 0 0.40048869e+00 0.19266935e+00 0.31799624e+00 0.13957000e+00
- 1 22 0 0 0.73755982e+00 0.65713184e+00 0.36407606e+00 0.00000000e+00
- 1 22 0 0 0.73795378e-01 0.12315832e+00 0.24232550e-01 0.00000000e+00
- 1 -211 0 0 -0.45423792e-01 -0.41860846e-02 -0.20793630e+00 0.13957000e+00
- 1 211 0 0 -0.32758484e+00 0.68903010e+00 -0.14036022e+01 0.13957000e+00
- 1 -211 0 0 0.43107098e+00 0.11269979e+00 -0.27819905e+01 0.13957000e+00
- 1 211 0 0 -0.72516383e-01 0.24542685e-01 -0.11647904e+01 0.13957000e+00
- 1 211 0 0 -0.28963497e+00 0.38892420e-01 -0.16692156e+01 0.13957000e+00
- 1 -211 0 0 -0.50262295e+00 0.21284750e+00 -0.70716987e+01 0.13957000e+00
- 1 130 0 0 0.57326239e+00 0.41058248e+00 -0.23349379e+03 0.49767000e+00
- 1 22 0 0 0.10205329e+00 -0.17385533e+00 -0.52491631e+02 0.00000000e+00
- 1 22 0 0 -0.23298982e-01 -0.33174249e-01 -0.28360540e+02 0.00000000e+00
- 1 22 0 0 -0.36521096e-01 -0.64311112e-01 -0.33765897e+02 0.00000000e+00
- 1 22 0 0 -0.70170179e-01 -0.22047882e-01 -0.15431330e+03 0.00000000e+00
- 1 22 0 0 -0.38887219e+00 -0.11926384e+00 -0.67015179e+01 0.00000000e+00
- 1 22 0 0 -0.79615719e-01 -0.71174986e-01 -0.10861033e+01 0.00000000e+00
- 1 22 0 0 0.30351865e+00 -0.34402509e+00 -0.10499082e+02 0.00000000e+00
- 1 22 0 0 0.24692895e-01 -0.67914674e-01 -0.87909294e+00 0.00000000e+00
- 1 22 0 0 0.18273227e+00 -0.17830707e+00 -0.34503130e+01 0.00000000e+00
- 1 22 0 0 0.16171959e+00 -0.18145471e+00 -0.55916140e+01 0.00000000e+00
- 1 130 0 0 -0.57362148e+00 0.61444294e-01 -0.16937058e+01 0.49767000e+00
- 1 22 0 0 0.21796025e-01 0.29105757e-01 0.60453408e+00 0.00000000e+00
- 1 22 0 0 0.13880626e+00 -0.62247046e-02 0.50320876e+00 0.00000000e+00
- 1 22 0 0 -0.33662998e+00 0.38908243e+00 0.78564588e+00 0.00000000e+00
- 1 22 0 0 -0.23076189e+00 0.33372223e+00 0.84848467e+00 0.00000000e+00
- 1 130 0 0 0.74099229e+00 -0.99789291e-01 0.39489015e+02 0.49767000e+00
- 2 310 901 902 -0.36645554e+00 -0.46790013e+00 0.11245765e+02 0.49767000e+00
- 1 22 0 0 0.53090488e-03 0.49319791e-01 0.11316819e+01 0.00000000e+00
- 1 22 0 0 -0.22807728e+00 0.14981428e+00 0.32737008e+01 0.00000000e+00
- 1 22 0 0 0.11273652e+00 0.10991857e+00 0.42970742e-01 0.00000000e+00
- 1 22 0 0 0.18408629e+00 0.15278131e-01 0.13503270e+00 0.00000000e+00
- 1 2112 0 0 0.55646250e+00 -0.41292702e+00 -0.95813267e+02 0.93957000e+00
- 2 111 903 904 -0.24829210e-01 -0.82117973e-01 -0.10362733e+02 0.13498000e+00
- 1 22 0 0 -0.49283286e-01 -0.67304345e-01 -0.17554767e+02 0.00000000e+00
- 1 22 0 0 0.14709430e-01 -0.87579835e-01 -0.52266940e+01 0.00000000e+00
- 1 -211 0 0 -0.18153344e+00 0.49477414e+00 -0.81083751e+00 0.13957000e+00
- 1 211 0 0 0.19495412e+00 0.22971001e+00 -0.41905073e+00 0.13957000e+00
- 1 -211 0 0 0.47192820e+00 -0.15272383e+00 -0.18169202e+01 0.13957000e+00
- 1 211 0 0 0.39399302e+00 0.24104206e+00 -0.20856365e+01 0.13957000e+00
- 1 22 0 0 -0.45201762e+00 -0.58537336e-01 0.74922922e+00 0.00000000e+00
- 1 22 0 0 -0.22021258e+00 -0.25658621e-01 0.58233845e+00 0.00000000e+00
- 1 22 0 0 -0.80074917e-01 -0.31570594e-01 0.21450965e+00 0.00000000e+00
- 1 22 0 0 -0.11852832e+01 -0.17114888e+00 0.20227126e+01 0.00000000e+00
- 1 22 0 0 -0.66520395e-01 0.40702477e-01 0.23577862e+00 0.00000000e+00
- 1 22 0 0 -0.33133466e+00 -0.93698252e-01 0.85065459e+00 0.00000000e+00
- 1 -211 0 0 -0.11484637e+01 0.12790375e+00 0.39375113e+01 0.13957000e+00
- 1 211 0 0 -0.67758127e+00 0.38083295e+00 0.31592677e+01 0.13957000e+00
- 2 111 905 906 -0.21083549e+00 -0.42388652e-01 0.59456009e+00 0.13498000e+00
- 2 111 907 908 0.10094476e+00 -0.26105834e+00 0.14176762e+01 0.13498000e+00
- 2 111 909 910 0.26851313e+00 -0.35412854e+00 0.20700111e+01 0.13498000e+00
- 2 111 911 913 0.44819892e+00 0.21062717e-01 0.22892587e+01 0.13498000e+00
- 1 211 0 0 -0.37250021e+00 -0.14530661e+00 0.60406200e+01 0.13957000e+00
- 1 -211 0 0 0.60446741e-02 -0.32259352e+00 0.52051447e+01 0.13957000e+00
- 1 22 0 0 0.48357687e-01 -0.44368074e-01 -0.66355061e+01 0.00000000e+00
- 1 22 0 0 -0.73186898e-01 -0.37749899e-01 -0.37272272e+01 0.00000000e+00
- 1 22 0 0 0.55988345e-02 -0.28105162e-01 0.13926579e+00 0.00000000e+00
- 1 22 0 0 -0.21643432e+00 -0.14283490e-01 0.45529429e+00 0.00000000e+00
- 1 22 0 0 0.61646551e-03 0.15179998e-01 0.43385651e-01 0.00000000e+00
- 1 22 0 0 0.10032829e+00 -0.27623833e+00 0.13742906e+01 0.00000000e+00
- 1 22 0 0 0.21837927e+00 -0.21463177e+00 0.15856335e+01 0.00000000e+00
- 1 22 0 0 0.50133859e-01 -0.13949677e+00 0.48437765e+00 0.00000000e+00
- 1 22 0 0 0.97548655e-01 -0.51091604e-01 0.50335791e+00 0.00000000e+00
- 1 11 0 0 0.31562097e+00 0.62000580e-01 0.16012432e+01 0.51000000e-03
- 1 -11 0 0 0.35029292e-01 0.10153741e-01 0.18465754e+00 0.51000000e-03
- 425
- 2 25 2 3 -0.14971166e+02 0.31752742e+01 0.30491422e+03 0.12500265e+03
- 2 23 6 9 0.58242602e+00 0.47873527e+01 0.79701162e+02 0.37208865e+02
- 2 23 4 5 -0.15553592e+02 -0.16120785e+01 0.22521306e+03 0.86631826e+02
- 1 13 0 0 -0.38868766e+02 -0.23026838e+02 0.18600866e+03 0.10566000e+00
- 1 -13 0 0 0.23315174e+02 0.21414759e+02 0.39204398e+02 0.10566000e+00
- 1 11 0 0 -0.89909113e+01 -0.60257335e+01 0.68052554e+02 0.51000000e-03
- 1 22 0 0 -0.16165228e+00 -0.11125666e+00 0.11681562e+01 0.00000000e+00
- 1 -11 0 0 0.95337966e+01 0.10698524e+02 0.10263863e+02 0.51000000e-03
- 1 22 0 0 0.20119299e+00 0.22581880e+00 0.21658903e+00 0.00000000e+00
- 2 3 63 63 0.31606661e+01 -0.67366623e+00 0.34892965e+01 0.50000000e+00
- 2 21 63 63 0.47061495e+00 -0.11813607e+01 0.43452462e+01 0.00000000e+00
- 2 21 63 63 -0.69470351e+00 0.24929903e+00 0.38020000e+01 0.00000000e+00
- 2 21 63 63 -0.83207126e+00 -0.58858156e+00 0.45022725e+02 0.00000000e+00
- 2 21 63 63 0.88248747e+00 0.14188290e+01 0.72233969e+02 0.00000000e+00
- 2 21 63 63 0.83207126e+00 0.58858156e+00 0.44326373e+02 0.00000000e+00
- 2 21 63 63 0.15859577e+01 0.82552363e-01 0.84575816e+01 0.00000000e+00
- 2 21 63 63 0.70265620e+00 0.87578959e+00 0.55193649e+00 0.00000000e+00
- 2 21 63 63 0.34600843e+00 0.37445828e+00 -0.45989601e+00 0.00000000e+00
- 2 21 63 63 0.15602217e+01 -0.62457490e+00 -0.13620900e+01 0.00000000e+00
- 2 21 63 63 0.26926487e+00 -0.10108877e+01 -0.18184539e+02 0.00000000e+00
- 2 21 63 63 -0.99089027e+00 0.32116550e+00 -0.17010978e+03 0.00000000e+00
- 2 21 63 63 -0.72996447e+00 -0.17620152e+01 -0.42654942e+03 0.00000000e+00
- 2 21 63 63 -0.86389952e-01 -0.33254235e+00 -0.52744192e+03 0.00000000e+00
- 2 21 63 63 0.99089027e+00 -0.32116550e+00 -0.53342833e+03 0.00000000e+00
- 2 21 63 63 0.72996447e+00 0.17620152e+01 -0.80032698e+02 0.00000000e+00
- 2 21 63 63 0.86389952e-01 0.33254235e+00 -0.52292874e+01 0.00000000e+00
- 2 21 63 63 -0.26926487e+00 0.10108877e+01 -0.16952833e+02 0.00000000e+00
- 2 21 63 63 -0.77297611e+00 -0.38430889e+00 -0.49809970e+01 0.00000000e+00
- 2 21 63 63 -0.35684965e+00 -0.43900920e-01 -0.55182665e+00 0.00000000e+00
- 2 21 63 63 0.18967675e+01 -0.71931523e+00 -0.48097973e+02 0.00000000e+00
- 2 21 63 63 -0.95214747e+00 -0.11633553e+01 -0.15688317e+02 0.00000000e+00
- 2 -3 63 63 0.79165252e+00 0.16901602e+01 -0.34692570e+03 0.50000000e+00
- 2 -3 107 107 0.81290626e+00 -0.60934306e+00 0.18769301e+01 0.50000000e+00
- 2 21 107 107 0.84869411e-01 -0.35748995e+00 0.32459623e+02 0.00000000e+00
- 2 21 107 107 -0.10404435e+00 0.49083550e+00 0.79751158e+02 0.00000000e+00
- 2 2 107 107 -0.19814148e+00 -0.12638151e+01 0.31420021e+04 0.33000000e+00
- 2 1 116 116 0.28675737e+00 0.46621019e+00 0.54015362e+00 0.33000000e+00
- 2 21 116 116 0.31519911e+00 0.48685055e+00 0.19875279e+01 0.00000000e+00
- 2 21 116 116 0.33089078e+01 -0.14432090e+01 0.12694428e+02 0.00000000e+00
- 2 21 116 116 0.32633046e+01 -0.11471919e+00 0.10336879e+02 0.00000000e+00
- 2 21 116 116 -0.34600843e+00 -0.37445828e+00 -0.54310193e+00 0.00000000e+00
- 2 21 116 116 -0.15602217e+01 0.62457490e+00 -0.10803741e+01 0.00000000e+00
- 2 21 116 116 -0.15859577e+01 -0.82552363e-01 0.46963102e+00 0.00000000e+00
- 2 21 116 116 -0.88248747e+00 -0.14188290e+01 0.15475877e+01 0.00000000e+00
- 2 21 116 116 -0.70265620e+00 -0.87578959e+00 0.50854755e+01 0.00000000e+00
- 2 21 116 116 -0.86521534e+00 0.85153662e+00 0.27297950e+01 0.00000000e+00
- 2 21 116 116 0.36105226e+00 0.88315824e+00 0.15585531e+02 0.00000000e+00
- 2 21 116 116 0.10906158e+01 0.18387358e+01 0.17406923e+02 0.00000000e+00
- 2 21 116 116 0.45458911e+00 -0.30523707e+00 0.10043587e+02 0.00000000e+00
- 2 21 116 116 0.43797466e+01 0.20532662e+01 0.78580702e+02 0.00000000e+00
- 2 21 116 116 0.42791806e+00 -0.17139507e+00 0.18736295e+01 0.00000000e+00
- 2 21 116 116 -0.31025789e+00 0.94929565e+00 0.20480408e+02 0.00000000e+00
- 2 2101 116 116 0.61342953e+00 -0.11003566e+01 0.30572973e+04 0.57933000e+00
- 2 -1 146 146 -0.12226697e+01 -0.13419689e+01 -0.52501439e+00 0.33000000e+00
- 2 21 146 146 -0.46601992e+00 -0.90207294e+00 0.49610392e+00 0.00000000e+00
- 2 21 146 146 -0.18133188e+00 0.78648905e+00 0.83160728e+00 0.00000000e+00
- 2 21 146 146 -0.27061232e-01 -0.71151542e+00 -0.20493864e+01 0.00000000e+00
- 2 21 146 146 -0.56367679e+00 0.10787120e+01 -0.28658851e+01 0.00000000e+00
- 2 21 146 146 -0.29811215e+00 -0.10220700e+01 -0.10803322e+01 0.00000000e+00
- 2 2 146 146 -0.38373073e+00 -0.12200238e+01 -0.75421759e+02 0.33000000e+00
- 2 3 160 160 -0.36326697e+00 0.55253100e+00 -0.35044467e+02 0.50000000e+00
- 2 2101 160 160 0.10123743e+01 -0.82323096e+00 -0.46666145e+04 0.57933000e+00
- 2 92 64 106 0.86203558e+01 -0.99393644e-01 -0.20137665e+04 0.12724163e+04
- 2 333 167 168 0.91364750e+00 -0.25644894e+00 0.22916370e+01 0.10188285e+01
- 2 -313 169 170 -0.48214654e+00 -0.17227666e-01 0.17863931e+01 0.79214950e+00
- 1 -211 0 0 0.81590197e+00 -0.49535250e+00 0.42425082e+01 0.13957000e+00
- 2 111 171 172 0.17156333e+01 -0.84214814e+00 0.23972025e+01 0.13498000e+00
- 2 213 173 174 0.14190343e+00 -0.25531685e+00 0.16306882e+01 0.47165567e+00
- 2 223 175 177 -0.37333191e+00 -0.47401569e+00 0.10427792e+02 0.78401691e+00
- 2 331 178 180 0.50430780e+00 0.11690009e+01 0.55734512e+02 0.95762947e+00
- 2 331 181 182 0.51730216e-01 -0.48347066e-01 0.28877531e+02 0.95767457e+00
- 2 111 183 185 -0.20523715e+00 0.43796203e+00 0.65965265e+01 0.13498000e+00
- 1 2212 0 0 0.10162170e+01 -0.22576634e+00 0.13884478e+02 0.93827000e+00
- 2 221 186 188 0.58727160e-02 0.23574239e+00 0.11653715e+02 0.54745000e+00
- 2 -2224 189 190 0.64104939e+00 0.36723209e+00 0.24769425e+02 0.13054962e+01
- 1 211 0 0 -0.48128940e+00 0.39415508e+00 0.10910108e+02 0.13957000e+00
- 2 113 191 192 0.10833903e+01 0.60626954e-01 0.31533541e+01 0.79019270e+00
- 2 223 193 195 0.28276858e+00 0.33139930e+00 0.28417189e+01 0.78543150e+00
- 1 -211 0 0 -0.71323544e-01 -0.20691863e+00 0.47168895e+00 0.13957000e+00
- 1 2212 0 0 0.14324546e+01 0.10646494e+00 -0.45721668e+00 0.93827000e+00
- 1 -2212 0 0 -0.81533633e-01 0.51837103e+00 -0.13062476e+01 0.93827000e+00
- 2 113 196 197 0.40042216e+00 -0.58314041e+00 -0.45587684e+01 0.72696213e+00
- 2 323 198 199 0.95248974e+00 0.87061759e-01 -0.13763921e+01 0.80797953e+00
- 2 3122 200 201 -0.53102129e+00 -0.26064618e+00 -0.20761847e+02 0.11156800e+01
- 1 -2212 0 0 -0.48957010e+00 -0.18313560e+00 -0.38873112e+02 0.93827000e+00
- 2 323 202 203 0.58915138e+00 0.50489308e+00 -0.29074874e+02 0.10031114e+01
- 2 -313 204 205 -0.56363770e+00 -0.83033495e+00 -0.10863217e+03 0.85941006e+00
- 2 223 206 208 0.19996856e+00 -0.90631333e+00 -0.23413701e+03 0.78278791e+00
- 2 113 209 210 0.25486616e-01 -0.24055114e+00 -0.23517008e+03 0.11354511e+01
- 2 -213 211 212 -0.82208965e+00 -0.44603734e-01 -0.21737837e+03 0.73134918e+00
- 2 113 213 214 0.40580269e+00 -0.29401154e+00 -0.25793222e+03 0.76280828e+00
- 2 111 215 216 -0.33825542e+00 -0.50475954e+00 -0.80903068e+02 0.13498000e+00
- 2 323 217 218 0.15061710e+00 0.43844121e+00 -0.21750151e+03 0.88703324e+00
- 2 -323 219 220 0.74103677e+00 0.19784012e+00 -0.12287487e+03 0.92731777e+00
- 2 213 221 222 0.64551807e+00 0.36180725e+00 -0.85658449e+02 0.83862205e+00
- 2 -213 223 224 -0.49401903e+00 0.20270725e+00 -0.43498269e+02 0.72437598e+00
- 1 321 0 0 0.44926338e+00 0.20691695e+00 -0.44369631e+02 0.49360000e+00
- 2 -323 225 226 -0.42370043e+00 0.61862697e+00 -0.17273839e+02 0.85513267e+00
- 2 213 227 228 -0.56251382e+00 0.72636195e-01 -0.97123267e+01 0.10464857e+01
- 2 -213 229 230 0.26895687e+00 0.91040909e+00 -0.28539336e+02 0.69359678e+00
- 2 213 231 232 0.68809771e-01 -0.14759533e+01 -0.10746382e+02 0.87655231e+00
- 1 2112 0 0 0.50152833e+00 -0.63359265e-01 -0.42668946e+02 0.93957000e+00
- 2 111 233 234 0.21768123e+00 0.86134958e-01 -0.40407356e+01 0.13498000e+00
- 1 -2212 0 0 -0.65469934e+00 -0.66236973e+00 -0.29714950e+02 0.93827000e+00
- 2 221 235 237 0.13520681e+00 -0.13200655e+00 -0.22022805e+02 0.54745000e+00
- 1 321 0 0 0.83790855e+00 0.15949039e+01 -0.28625233e+03 0.49360000e+00
- 2 92 108 115 0.59558985e+00 -0.17398126e+01 0.32560899e+04 0.45544662e+02
- 2 323 238 239 0.18294605e+00 -0.52872938e+00 0.20197426e+01 0.74743492e+00
- 1 -211 0 0 0.62175193e+00 -0.17960508e+00 0.47206726e+01 0.13957000e+00
- 2 -311 240 240 0.10231323e+00 0.12783806e+00 0.35333837e+01 0.49767000e+00
- 2 323 241 242 -0.26076021e+00 0.51519442e+00 0.46860076e+02 0.92034110e+00
- 2 -213 243 244 0.14110165e+00 -0.66799202e+00 0.44269231e+02 0.75291555e+00
- 2 -1114 245 246 0.76781137e-01 -0.27556721e+00 0.27713903e+03 0.11837454e+01
- 2 1114 247 248 0.72851946e-01 0.41069670e+00 0.52111115e+03 0.12267659e+01
- 1 211 0 0 -0.34139588e+00 -0.11416480e+01 0.23564366e+04 0.13957000e+00
- 2 92 117 145 0.82487156e+01 0.22670821e+01 0.32350361e+04 0.23386337e+03
- 2 111 249 250 0.50750815e+00 0.14875598e+00 0.11996993e+01 0.13498000e+00
- 2 -213 251 252 0.30792285e+00 0.23616936e+00 0.18154067e+01 0.77700662e+00
- 1 211 0 0 0.69531718e+00 0.12828203e+00 0.20586341e+01 0.13957000e+00
- 1 -211 0 0 -0.62800110e-01 -0.14160648e+00 0.27217236e+00 0.13957000e+00
- 2 323 253 254 0.15285997e+01 0.33236413e+00 0.71090413e+01 0.84921146e+00
- 2 3322 255 256 0.19835805e+01 -0.68780552e+00 0.63024712e+01 0.13149000e+01
- 2 -3122 257 258 0.81166163e+00 -0.52403213e+00 0.29129005e+01 0.11156800e+01
- 1 -211 0 0 0.61331845e+00 -0.24321853e+00 0.22347278e+01 0.13957000e+00
- 1 211 0 0 0.57005104e+00 -0.10411512e+00 0.28062918e+00 0.13957000e+00
- 2 -213 259 260 -0.21040712e+00 0.40265248e+00 0.71216684e+00 0.98877075e+00
- 2 323 261 262 -0.96143295e+00 0.52618269e+00 0.15833060e+00 0.90077062e+00
- 2 -323 263 264 -0.10504678e+01 -0.11469903e+01 0.20253421e+00 0.89664901e+00
- 2 213 265 266 -0.63978473e+00 -0.17380331e+00 -0.80707145e-02 0.76383547e+00
- 2 311 267 267 -0.71136954e+00 -0.44644766e-01 0.13972299e+00 0.49767000e+00
- 2 -313 268 269 -0.61023282e+00 -0.43763301e+00 0.29822934e+01 0.87203614e+00
- 1 -211 0 0 -0.40870151e+00 -0.41499163e-01 0.22196765e+00 0.13957000e+00
- 2 213 270 271 -0.57075210e+00 -0.26573468e+00 0.36986350e+01 0.77185976e+00
- 2 -213 272 273 0.42275319e-01 -0.12071730e+00 0.65540345e+01 0.75837569e+00
- 2 213 274 275 0.25678719e+00 0.13940590e+01 0.10174298e+02 0.75453532e+00
- 2 -213 276 277 -0.39063999e-01 -0.13584522e+00 0.36103595e+01 0.81434052e+00
- 2 3212 278 279 0.24775367e+01 0.22220263e+01 0.50392360e+02 0.11925500e+01
- 2 -3312 280 281 0.13951075e+01 0.20614967e+00 0.20088694e+02 0.13213000e+01
- 2 -323 282 283 0.14547266e+01 0.10911152e+01 0.43507320e+02 0.87599246e+00
- 2 113 284 285 0.18442609e+00 0.10160279e-01 0.81689777e+01 0.78436124e+00
- 2 323 286 287 0.19481804e+00 0.23775950e+00 0.25339673e+02 0.88092228e+00
- 2 3122 288 289 -0.13938721e+00 -0.35987973e-01 0.12178101e+03 0.11156800e+01
- 1 -2112 0 0 0.13368823e+00 0.46170666e+00 0.42431914e+03 0.93957000e+00
- 2 -213 290 291 0.70197638e-01 -0.39841170e+00 0.25210357e+03 0.57186812e+00
- 1 2212 0 0 0.42559267e+00 -0.62825609e+00 0.22367034e+04 0.93827000e+00
- 2 92 147 159 -0.31426024e+01 -0.33324501e+01 -0.80614666e+02 0.30859029e+02
- 1 -2112 0 0 -0.63443006e+00 -0.93995579e+00 0.47155969e+00 0.93957000e+00
- 1 -211 0 0 -0.31486420e+00 0.13457795e+00 -0.12007351e-01 0.13957000e+00
- 2 2214 292 293 -0.70968739e+00 -0.80401018e+00 -0.53820190e+00 0.10938854e+01
- 2 213 294 295 -0.91308647e-01 -0.16754883e+00 -0.34322189e+00 0.70118034e+00
- 1 -211 0 0 -0.32434990e+00 -0.38106439e+00 -0.30803323e-02 0.13957000e+00
- 2 223 296 298 0.21561148e+00 0.73022494e+00 -0.82464007e+00 0.78370252e+00
- 2 213 299 300 -0.75386121e+00 -0.27703104e+00 -0.13900731e+01 0.87736544e+00
- 1 -321 0 0 -0.10773798e+00 0.78610927e+00 -0.30918670e+01 0.49360000e+00
- 2 323 301 302 -0.44183053e+00 -0.63124631e+00 -0.13572218e+02 0.89043859e+00
- 2 111 303 304 0.29841857e+00 -0.10994414e+01 -0.50299793e+01 0.13498000e+00
- 1 -2212 0 0 -0.40052675e+00 -0.23589830e-01 -0.11933626e+02 0.93827000e+00
- 2 223 305 307 0.59888334e-01 -0.39816135e+00 -0.27632420e+02 0.77332817e+00
- 1 2212 0 0 0.62075908e-01 -0.26131314e+00 -0.16714891e+02 0.93827000e+00
- 2 92 161 166 0.64910737e+00 -0.27069995e+00 -0.47016590e+04 0.96824518e+01
- 2 -313 308 309 -0.56373913e+00 0.32470765e+00 -0.14872545e+03 0.93511424e+00
- 1 -211 0 0 0.20295500e+00 -0.78285558e-02 -0.35787545e+02 0.13957000e+00
- 2 323 310 311 -0.24771315e+00 0.18652975e+00 -0.12200076e+03 0.92197972e+00
- 1 -321 0 0 0.42722901e+00 -0.30696885e-02 -0.58602218e+03 0.49360000e+00
- 1 321 0 0 -0.26936556e-01 -0.13500701e+00 -0.70725835e+03 0.49360000e+00
- 2 3122 312 313 0.85731220e+00 -0.63603210e+00 -0.31018647e+04 0.11156800e+01
- 1 321 0 0 0.50671734e+00 -0.23131762e+00 0.13727503e+01 0.49360000e+00
- 1 -321 0 0 0.40693015e+00 -0.25131324e-01 0.91888670e+00 0.49360000e+00
- 2 -311 314 314 -0.25978664e+00 0.68829528e-01 0.15534007e+01 0.49767000e+00
- 2 111 315 316 -0.22235990e+00 -0.86057194e-01 0.23299243e+00 0.13498000e+00
- 1 22 0 0 0.10226282e+01 -0.57285524e+00 0.14933968e+01 0.00000000e+00
- 1 22 0 0 0.69300510e+00 -0.26929289e+00 0.90380572e+00 0.00000000e+00
- 1 211 0 0 0.10144150e+00 -0.32945414e+00 0.13443706e+01 0.13957000e+00
- 2 111 317 318 0.40461926e-01 0.74137285e-01 0.28631757e+00 0.13498000e+00
- 1 -211 0 0 -0.18217930e+00 -0.13500369e+00 0.12147644e+01 0.13957000e+00
- 1 211 0 0 -0.18406100e+00 -0.24974913e+00 0.36998114e+01 0.13957000e+00
- 2 111 319 320 -0.70916143e-02 -0.89262872e-01 0.55132162e+01 0.13498000e+00
- 1 -211 0 0 0.89557528e-01 0.45189455e+00 0.16819252e+02 0.13957000e+00
- 1 211 0 0 0.42437924e-01 0.30359371e-01 0.37940702e+01 0.13957000e+00
- 2 221 321 322 0.37231235e+00 0.68674701e+00 0.35121189e+02 0.54745000e+00
- 1 22 0 0 0.83433942e-01 0.13966701e-01 0.35121511e+00 0.00000000e+00
- 2 113 323 324 -0.31703726e-01 -0.62313767e-01 0.28526316e+02 0.57687201e+00
- 1 22 0 0 -0.24538435e-01 0.43360762e-01 0.29907320e+00 0.00000000e+00
- 1 -11 0 0 -0.26820385e-01 0.44614479e-01 0.75144687e+00 0.51000000e-03
- 1 11 0 0 -0.15387833e+00 0.34998679e+00 0.55460064e+01 0.51000000e-03
- 2 111 325 326 0.41664750e-01 0.96549977e-01 0.68718694e+01 0.13498000e+00
- 2 111 327 328 -0.21427569e-01 0.38869245e-02 0.11586897e+01 0.13498000e+00
- 2 111 329 330 -0.14364464e-01 0.13530549e+00 0.36231558e+01 0.13498000e+00
- 1 -2212 0 0 0.78151853e+00 0.29827427e+00 0.22701955e+02 0.93827000e+00
- 1 -211 0 0 -0.14046913e+00 0.68957817e-01 0.20674699e+01 0.13957000e+00
- 1 -211 0 0 0.82494601e+00 0.15614313e+00 0.29158929e+01 0.13957000e+00
- 1 211 0 0 0.25844431e+00 -0.95516174e-01 0.23746129e+00 0.13957000e+00
- 1 -211 0 0 0.53126840e-01 0.79337413e-01 0.20118503e+00 0.13957000e+00
- 1 211 0 0 -0.11551288e+00 -0.10469402e-01 0.93779085e+00 0.13957000e+00
- 2 111 331 332 0.34515461e+00 0.26253129e+00 0.17027430e+01 0.13498000e+00
- 1 -211 0 0 0.39743078e-01 -0.60282175e+00 -0.25315038e+01 0.13957000e+00
- 1 211 0 0 0.36067909e+00 0.19681339e-01 -0.20272647e+01 0.13957000e+00
- 1 321 0 0 0.57484654e+00 0.43895047e-01 -0.12012728e+01 0.49360000e+00
- 2 111 333 334 0.37764320e+00 0.43166712e-01 -0.17511933e+00 0.13498000e+00
- 1 2112 0 0 -0.45568810e+00 -0.11554952e+00 -0.17144767e+02 0.93957000e+00
- 2 111 335 336 -0.75333193e-01 -0.14509666e+00 -0.36170800e+01 0.13498000e+00
- 1 321 0 0 0.65418167e+00 0.23538792e+00 -0.14961702e+02 0.49360000e+00
- 2 111 337 338 -0.65030281e-01 0.26950516e+00 -0.14113173e+02 0.13498000e+00
- 1 -321 0 0 -0.46086469e+00 -0.38770194e+00 -0.49503001e+02 0.49360000e+00
- 1 211 0 0 -0.10277300e+00 -0.44263301e+00 -0.59129172e+02 0.13957000e+00
- 1 211 0 0 0.16693878e+00 -0.39957924e+00 -0.48608385e+02 0.13957000e+00
- 1 -211 0 0 0.98856013e-01 -0.15148576e+00 -0.73192948e+02 0.13957000e+00
- 2 111 339 340 -0.65826226e-01 -0.35524833e+00 -0.11233568e+03 0.13498000e+00
- 1 211 0 0 -0.46929577e+00 -0.75859732e-01 -0.60408221e+02 0.13957000e+00
- 1 -211 0 0 0.49478238e+00 -0.16469140e+00 -0.17476186e+03 0.13957000e+00
- 1 -211 0 0 -0.25623579e+00 -0.15064536e+00 -0.14506764e+03 0.13957000e+00
- 2 111 341 342 -0.56585386e+00 0.10604163e+00 -0.72310736e+02 0.13498000e+00
- 1 -211 0 0 0.41532970e+00 -0.22019829e+00 -0.24683950e+03 0.13957000e+00
- 1 211 0 0 -0.95270157e-02 -0.73813251e-01 -0.11092721e+02 0.13957000e+00
- 1 22 0 0 -0.15260328e+00 -0.34593498e+00 -0.48907965e+02 0.00000000e+00
- 1 22 0 0 -0.18565213e+00 -0.15882456e+00 -0.31995102e+02 0.00000000e+00
- 2 311 343 343 0.68074529e-01 -0.31894194e-01 -0.10825615e+03 0.49767000e+00
- 1 211 0 0 0.82542575e-01 0.47033540e+00 -0.10924537e+03 0.13957000e+00
- 2 -311 344 344 0.54162255e+00 0.39734729e+00 -0.70681074e+02 0.49767000e+00
- 1 -211 0 0 0.19941421e+00 -0.19950717e+00 -0.52193793e+02 0.13957000e+00
- 1 211 0 0 0.69323998e-02 -0.17706162e+00 -0.98797547e+01 0.13957000e+00
- 2 111 345 346 0.63858567e+00 0.53886887e+00 -0.75778694e+02 0.13498000e+00
- 1 -211 0 0 -0.37287280e+00 -0.16479222e+00 -0.29983250e+02 0.13957000e+00
- 2 111 347 348 -0.12114623e+00 0.36749947e+00 -0.13515020e+02 0.13498000e+00
- 2 -311 349 349 -0.13414373e+00 0.10171622e+00 -0.73553577e+01 0.49767000e+00
- 1 -211 0 0 -0.28955670e+00 0.51691075e+00 -0.99184814e+01 0.13957000e+00
- 1 211 0 0 -0.71901703e+00 -0.27741042e+00 -0.62461380e+01 0.13957000e+00
- 2 111 350 351 0.15650321e+00 0.35004662e+00 -0.34661887e+01 0.13498000e+00
- 1 -211 0 0 0.19391409e+00 0.48263249e+00 -0.75077989e+01 0.13957000e+00
- 2 111 352 353 0.75042778e-01 0.42777660e+00 -0.21031537e+02 0.13498000e+00
- 1 211 0 0 0.40821149e+00 -0.55760127e+00 -0.35936244e+01 0.13957000e+00
- 2 111 354 355 -0.33940172e+00 -0.91835206e+00 -0.71527581e+01 0.13498000e+00
- 1 22 0 0 0.11936859e+00 0.99708404e-01 -0.17570673e+01 0.00000000e+00
- 1 22 0 0 0.98312637e-01 -0.13573446e-01 -0.22836683e+01 0.00000000e+00
- 1 22 0 0 -0.16596539e-02 -0.20116554e-03 -0.13701397e-01 0.00000000e+00
- 1 211 0 0 -0.84927477e-01 -0.22812066e+00 -0.13553112e+02 0.13957000e+00
- 1 -211 0 0 0.22179394e+00 0.96315278e-01 -0.84559909e+01 0.13957000e+00
- 2 311 356 356 0.15044546e+00 -0.27755243e+00 0.95885051e+00 0.49767000e+00
- 1 211 0 0 0.32500593e-01 -0.25117696e+00 0.10608921e+01 0.13957000e+00
- 1 130 0 0 0.10231323e+00 0.12783806e+00 0.35333837e+01 0.49767000e+00
- 2 311 357 357 -0.29171942e+00 0.30293745e+00 0.42558811e+02 0.49767000e+00
- 1 211 0 0 0.30959209e-01 0.21225697e+00 0.43012651e+01 0.13957000e+00
- 1 -211 0 0 0.58974170e-02 -0.15337348e+00 0.30528941e+02 0.13957000e+00
- 2 111 358 360 0.13520423e+00 -0.51461854e+00 0.13740290e+02 0.13498000e+00
- 1 -2112 0 0 0.67454067e-01 -0.38321266e+00 0.25224459e+03 0.93957000e+00
- 1 211 0 0 0.93270704e-02 0.10764545e+00 0.24894444e+02 0.13957000e+00
- 1 2112 0 0 0.22829543e+00 0.34675285e+00 0.36085995e+03 0.93957000e+00
- 1 -211 0 0 -0.15544349e+00 0.63943842e-01 0.16025120e+03 0.13957000e+00
- 1 22 0 0 0.20592290e+00 0.50013279e-01 0.64559266e+00 0.00000000e+00
- 1 22 0 0 0.30158525e+00 0.98742697e-01 0.55410666e+00 0.00000000e+00
- 1 -211 0 0 -0.20630597e+00 -0.26357041e-01 0.33937292e+00 0.13957000e+00
- 2 111 361 362 0.51422882e+00 0.26252641e+00 0.14760338e+01 0.13498000e+00
- 2 311 363 363 0.57822999e+00 0.96405583e-02 0.28230107e+01 0.49767000e+00
- 1 211 0 0 0.95036968e+00 0.32272357e+00 0.42860306e+01 0.13957000e+00
- 2 3122 364 365 0.16191414e+01 -0.53455710e+00 0.55328163e+01 0.11156800e+01
- 2 111 366 367 0.36443909e+00 -0.15324842e+00 0.76965493e+00 0.13498000e+00
- 1 -2212 0 0 0.56402444e+00 -0.43222564e+00 0.23042690e+01 0.93827000e+00
- 1 211 0 0 0.24763719e+00 -0.91806482e-01 0.60863143e+00 0.13957000e+00
- 1 -211 0 0 -0.54529433e+00 0.24972420e+00 0.18403138e+00 0.13957000e+00
- 2 111 368 369 0.33488721e+00 0.15292827e+00 0.52813546e+00 0.13498000e+00
- 2 311 370 370 -0.72075359e+00 0.61598274e+00 -0.44389092e-01 0.49767000e+00
- 1 211 0 0 -0.24067936e+00 -0.89800051e-01 0.20271969e+00 0.13957000e+00
- 2 -311 371 371 -0.77151506e+00 -0.84987199e+00 0.42569691e+00 0.49767000e+00
- 1 -211 0 0 -0.27895271e+00 -0.29711828e+00 -0.22316271e+00 0.13957000e+00
- 1 211 0 0 -0.30519381e+00 0.22374309e+00 0.18125262e+00 0.13957000e+00
- 2 111 372 373 -0.33459091e+00 -0.39754641e+00 -0.18932334e+00 0.13498000e+00
- 1 130 0 0 -0.71136954e+00 -0.44644766e-01 0.13972299e+00 0.49767000e+00
- 1 -321 0 0 -0.30452040e+00 -0.47084007e+00 0.14922385e+01 0.49360000e+00
- 1 211 0 0 -0.30571242e+00 0.33207062e-01 0.14900549e+01 0.13957000e+00
- 1 211 0 0 -0.19450444e+00 0.10352670e+00 0.34283297e+00 0.13957000e+00
- 2 111 374 375 -0.37624766e+00 -0.36926138e+00 0.33558020e+01 0.13498000e+00
- 1 -211 0 0 0.27349709e-01 0.51240580e-02 0.61801651e+01 0.13957000e+00
- 2 111 376 377 0.14925610e-01 -0.12584136e+00 0.37386941e+00 0.13498000e+00
- 1 211 0 0 0.71915287e-01 0.13545392e+01 0.90546411e+01 0.13957000e+00
- 2 111 378 379 0.18487190e+00 0.39519814e-01 0.11196572e+01 0.13498000e+00
- 1 -211 0 0 -0.30883562e+00 0.10582997e+00 0.25606244e+01 0.13957000e+00
- 2 111 380 381 0.26977162e+00 -0.24167518e+00 0.10497350e+01 0.13498000e+00
- 2 3122 382 383 0.24408371e+01 0.21506992e+01 0.49773381e+02 0.11156800e+01
- 1 22 0 0 0.36699592e-01 0.71327107e-01 0.61897891e+00 0.00000000e+00
- 2 -3122 384 385 0.13448657e+01 0.21564897e+00 0.17461822e+02 0.11156800e+01
- 1 211 0 0 0.50241798e-01 -0.94993086e-02 0.26268722e+01 0.13957000e+00
- 2 -311 386 386 0.12837148e+01 0.81563535e+00 0.30446262e+02 0.49767000e+00
- 1 -211 0 0 0.17101183e+00 0.27547989e+00 0.13061058e+02 0.13957000e+00
- 1 -211 0 0 -0.27441297e+00 -0.37661307e-01 0.39640896e+01 0.13957000e+00
- 1 211 0 0 0.45883906e+00 0.47821586e-01 0.42048882e+01 0.13957000e+00
- 2 311 387 387 0.24939192e+00 0.91430869e-01 0.23219175e+02 0.49767000e+00
- 1 211 0 0 -0.54573877e-01 0.14632863e+00 0.21204981e+01 0.13957000e+00
- 1 2212 0 0 -0.80968001e-01 -0.53961561e-01 0.92777129e+02 0.93827000e+00
- 1 -211 0 0 -0.58419208e-01 0.17973588e-01 0.29003878e+02 0.13957000e+00
- 1 -211 0 0 -0.15077072e+00 -0.29959818e-01 0.12560254e+03 0.13957000e+00
- 2 111 388 389 0.22096836e+00 -0.36845188e+00 0.12650102e+03 0.13498000e+00
- 1 2212 0 0 -0.62596707e+00 -0.61406921e+00 -0.45588243e+00 0.93827000e+00
- 2 111 390 391 -0.83720320e-01 -0.18994097e+00 -0.82319471e-01 0.13498000e+00
- 1 211 0 0 0.62347270e-01 0.22356208e+00 -0.54514626e-01 0.13957000e+00
- 2 111 392 393 -0.15365592e+00 -0.39111091e+00 -0.28870727e+00 0.13498000e+00
- 1 211 0 0 0.63408920e-01 -0.20692388e-01 -0.21971609e+00 0.13957000e+00
- 1 -211 0 0 -0.92712382e-01 0.42231937e+00 -0.45609541e+00 0.13957000e+00
- 2 111 394 395 0.24491495e+00 0.32859795e+00 -0.14882856e+00 0.13498000e+00
- 1 211 0 0 -0.79754264e-01 -0.39293659e-01 -0.98118188e+00 0.13957000e+00
- 2 111 396 397 -0.67410694e+00 -0.23773738e+00 -0.40889117e+00 0.13498000e+00
- 2 311 398 398 -0.55666271e+00 -0.62478960e+00 -0.10273264e+02 0.49767000e+00
- 1 211 0 0 0.11483218e+00 -0.64567015e-02 -0.32989541e+01 0.13957000e+00
- 1 22 0 0 0.15719785e+00 -0.34957736e+00 -0.17766626e+01 0.00000000e+00
- 1 22 0 0 0.14122072e+00 -0.74986403e+00 -0.32533167e+01 0.00000000e+00
- 1 211 0 0 -0.40777724e-01 -0.37182149e+00 -0.10113643e+02 0.13957000e+00
- 1 -211 0 0 -0.11853845e-01 0.14494533e+00 -0.64270985e+01 0.13957000e+00
- 2 111 399 400 0.11251990e+00 -0.17128518e+00 -0.11091678e+02 0.13498000e+00
- 1 -321 0 0 -0.69410769e+00 0.12161111e+00 -0.11255964e+03 0.49360000e+00
- 1 211 0 0 0.13036855e+00 0.20309654e+00 -0.36165813e+02 0.13957000e+00
- 2 311 401 401 -0.11513868e+00 -0.36586327e-01 -0.10552521e+03 0.49767000e+00
- 1 211 0 0 -0.13257447e+00 0.22311608e+00 -0.16475556e+02 0.13957000e+00
- 1 2212 0 0 0.83946115e+00 -0.58722968e+00 -0.27106881e+04 0.93827000e+00
- 1 -211 0 0 0.17851047e-01 -0.48802422e-01 -0.39117665e+03 0.13957000e+00
- 1 130 0 0 -0.25978664e+00 0.68829528e-01 0.15534007e+01 0.49767000e+00
- 1 22 0 0 -0.22454434e+00 -0.61727912e-01 0.23983463e+00 0.00000000e+00
- 1 22 0 0 0.21844400e-02 -0.24329282e-01 -0.68422004e-02 0.00000000e+00
- 1 22 0 0 0.13509493e-01 0.40218475e-01 0.47033183e-02 0.00000000e+00
- 1 22 0 0 0.26952433e-01 0.33918810e-01 0.28161425e+00 0.00000000e+00
- 1 22 0 0 0.51015711e-01 -0.47977667e-01 0.13901320e+01 0.00000000e+00
- 1 22 0 0 -0.58107326e-01 -0.41285205e-01 0.41230841e+01 0.00000000e+00
- 1 22 0 0 0.25844661e-01 -0.73576306e-01 0.72782217e+01 0.00000000e+00
- 1 22 0 0 0.34646768e+00 0.76032332e+00 0.27842968e+02 0.00000000e+00
- 1 -211 0 0 -0.23012096e+00 -0.15376345e+00 0.18340833e+02 0.13957000e+00
- 1 211 0 0 0.19841723e+00 0.91449683e-01 0.10185483e+02 0.13957000e+00
- 1 22 0 0 0.91665244e-02 0.93551116e-01 0.21902522e+01 0.00000000e+00
- 1 22 0 0 0.32498225e-01 0.29988604e-02 0.46816171e+01 0.00000000e+00
- 1 22 0 0 0.41628200e-01 -0.23258303e-01 0.80661793e+00 0.00000000e+00
- 1 22 0 0 -0.63055769e-01 0.27145227e-01 0.35207173e+00 0.00000000e+00
- 1 22 0 0 -0.45293021e-01 0.13841444e+00 0.33728843e+01 0.00000000e+00
- 1 22 0 0 0.30928556e-01 -0.31089559e-02 0.25027158e+00 0.00000000e+00
- 1 22 0 0 0.17883515e+00 0.12406439e+00 0.11128485e+01 0.00000000e+00
- 1 22 0 0 0.16631947e+00 0.13846690e+00 0.58989451e+00 0.00000000e+00
- 1 22 0 0 0.16643428e+00 0.21348240e-01 -0.15153175e+00 0.00000000e+00
- 1 22 0 0 0.21120892e+00 0.21818472e-01 -0.23587582e-01 0.00000000e+00
- 1 22 0 0 -0.11290300e+00 -0.12405555e+00 -0.27098882e+01 0.00000000e+00
- 1 22 0 0 0.37569804e-01 -0.21041109e-01 -0.90719184e+00 0.00000000e+00
- 1 22 0 0 -0.85312501e-02 0.94945683e-01 -0.81219615e+01 0.00000000e+00
- 1 22 0 0 -0.56499031e-01 0.17455947e+00 -0.59912112e+01 0.00000000e+00
- 1 22 0 0 -0.74870453e-01 -0.22412146e+00 -0.87026308e+02 0.00000000e+00
- 1 22 0 0 0.90442268e-02 -0.13112687e+00 -0.25309369e+02 0.00000000e+00
- 1 22 0 0 -0.46601546e+00 0.12906440e+00 -0.62941558e+02 0.00000000e+00
- 1 22 0 0 -0.99838398e-01 -0.23022768e-01 -0.93691781e+01 0.00000000e+00
- 2 310 402 403 0.68074529e-01 -0.31894194e-01 -0.10825615e+03 0.49767000e+00
- 2 310 404 405 0.54162255e+00 0.39734729e+00 -0.70681074e+02 0.49767000e+00
- 1 22 0 0 0.28901264e+00 0.31705981e+00 -0.41939416e+02 0.00000000e+00
- 1 22 0 0 0.34957302e+00 0.22180907e+00 -0.33839278e+02 0.00000000e+00
- 1 22 0 0 -0.13752978e+00 0.30496606e+00 -0.12243746e+02 0.00000000e+00
- 1 22 0 0 0.16383549e-01 0.62533409e-01 -0.12712734e+01 0.00000000e+00
- 1 130 0 0 -0.13414373e+00 0.10171622e+00 -0.73553577e+01 0.49767000e+00
- 1 22 0 0 0.13574027e+00 0.15693783e+00 -0.20558447e+01 0.00000000e+00
- 1 22 0 0 0.20762938e-01 0.19310879e+00 -0.14103440e+01 0.00000000e+00
- 1 22 0 0 0.52878638e-01 0.14794116e+00 -0.50243362e+01 0.00000000e+00
- 1 22 0 0 0.22164140e-01 0.27983544e+00 -0.16007200e+02 0.00000000e+00
- 1 22 0 0 -0.14351279e+00 -0.44133538e+00 -0.29175688e+01 0.00000000e+00
- 1 22 0 0 -0.19588893e+00 -0.47701669e+00 -0.42351893e+01 0.00000000e+00
- 1 130 0 0 0.15044546e+00 -0.27755243e+00 0.95885051e+00 0.49767000e+00
- 2 310 406 407 -0.29171942e+00 0.30293745e+00 0.42558811e+02 0.49767000e+00
- 1 22 0 0 0.23080057e-01 -0.17219720e+00 0.60582994e+01 0.00000000e+00
- 1 -11 0 0 0.85251967e-01 -0.24280735e+00 0.53322181e+01 0.51000000e-03
- 1 11 0 0 0.26872207e-01 -0.99613997e-01 0.23497726e+01 0.51000000e-03
- 1 22 0 0 0.10825234e+00 0.35453525e-02 0.21299417e+00 0.00000000e+00
- 1 22 0 0 0.40597648e+00 0.25898105e+00 0.12630396e+01 0.00000000e+00
- 1 130 0 0 0.57822999e+00 0.96405583e-02 0.28230107e+01 0.49767000e+00
- 1 2212 0 0 0.13842817e+01 -0.42486471e+00 0.44150394e+01 0.93827000e+00
- 1 -211 0 0 0.23485975e+00 -0.10969239e+00 0.11177769e+01 0.13957000e+00
- 1 22 0 0 0.22837341e+00 -0.32942252e-01 0.35982896e+00 0.00000000e+00
- 1 22 0 0 0.13606568e+00 -0.12030617e+00 0.40982597e+00 0.00000000e+00
- 1 22 0 0 0.10407925e+00 -0.36115917e-02 0.21214587e+00 0.00000000e+00
- 1 22 0 0 0.23080796e+00 0.15653987e+00 0.31598959e+00 0.00000000e+00
- 2 310 408 409 -0.72075359e+00 0.61598274e+00 -0.44389092e-01 0.49767000e+00
- 1 130 0 0 -0.77151506e+00 -0.84987199e+00 0.42569691e+00 0.49767000e+00
- 1 22 0 0 -0.23027413e+00 -0.30533880e+00 -0.76395927e-01 0.00000000e+00
- 1 22 0 0 -0.10431679e+00 -0.92207611e-01 -0.11292741e+00 0.00000000e+00
- 1 22 0 0 -0.83296935e-01 -0.16442167e-01 0.46483733e+00 0.00000000e+00
- 1 22 0 0 -0.29295073e+00 -0.35281921e+00 0.28909647e+01 0.00000000e+00
- 1 22 0 0 0.33708127e-01 -0.49152037e-01 0.30991270e+00 0.00000000e+00
- 1 22 0 0 -0.18782517e-01 -0.76689322e-01 0.63956714e-01 0.00000000e+00
- 1 22 0 0 0.45215984e-02 -0.17986612e-02 -0.29875969e-02 0.00000000e+00
- 1 22 0 0 0.18035030e+00 0.41318475e-01 0.11226448e+01 0.00000000e+00
- 1 22 0 0 0.11286216e+00 -0.63377734e-01 0.55429636e+00 0.00000000e+00
- 1 22 0 0 0.15690947e+00 -0.17829745e+00 0.49543868e+00 0.00000000e+00
- 1 2112 0 0 0.22537251e+01 0.20425057e+01 0.45761462e+02 0.93957000e+00
- 2 111 410 411 0.18711198e+00 0.10819349e+00 0.40119190e+01 0.13498000e+00
- 1 -2112 0 0 0.13002865e+01 0.21177197e+00 0.16138443e+02 0.93957000e+00
- 2 111 412 413 0.44579232e-01 0.38770009e-02 0.13233787e+01 0.13498000e+00
- 2 310 414 415 0.12837148e+01 0.81563535e+00 0.30446262e+02 0.49767000e+00
- 2 310 416 417 0.24939192e+00 0.91430869e-01 0.23219175e+02 0.49767000e+00
- 1 22 0 0 0.10156631e+00 -0.27458744e+00 0.92306873e+02 0.00000000e+00
- 1 22 0 0 0.11940205e+00 -0.93864438e-01 0.34194150e+02 0.00000000e+00
- 1 22 0 0 -0.89300527e-02 -0.16386156e+00 -0.32314796e-01 0.00000000e+00
- 1 22 0 0 -0.74790267e-01 -0.26079406e-01 -0.50004674e-01 0.00000000e+00
- 1 22 0 0 -0.12255784e+00 -0.20349377e+00 -0.94714173e-01 0.00000000e+00
- 1 22 0 0 -0.31098081e-01 -0.18761714e+00 -0.19399309e+00 0.00000000e+00
- 1 22 0 0 0.22531328e+00 0.33863229e+00 -0.15193727e+00 0.00000000e+00
- 1 22 0 0 0.19601664e-01 -0.10034332e-01 0.31087061e-02 0.00000000e+00
- 1 22 0 0 -0.28245184e+00 -0.41288917e-01 -0.12001332e+00 0.00000000e+00
- 1 22 0 0 -0.39165511e+00 -0.19644846e+00 -0.28887785e+00 0.00000000e+00
- 2 310 418 419 -0.55666271e+00 -0.62478960e+00 -0.10273264e+02 0.49767000e+00
- 1 22 0 0 0.82190997e-01 -0.17107939e+00 -0.10642105e+02 0.00000000e+00
- 1 22 0 0 0.30328907e-01 -0.20578948e-03 -0.44957337e+00 0.00000000e+00
- 2 310 420 421 -0.11513868e+00 -0.36586327e-01 -0.10552521e+03 0.49767000e+00
- 1 -211 0 0 -0.19268577e-01 -0.14530313e+00 -0.21816167e+02 0.13957000e+00
- 1 211 0 0 0.87343106e-01 0.11340894e+00 -0.86439982e+02 0.13957000e+00
- 2 111 422 423 0.16304744e+00 -0.58136351e-01 -0.14525202e+02 0.13498000e+00
- 2 111 424 425 0.37857511e+00 0.45548364e+00 -0.56155872e+02 0.13498000e+00
- 1 211 0 0 -0.29735094e+00 0.36413955e+00 0.29209956e+02 0.13957000e+00
- 1 -211 0 0 0.56315180e-02 -0.61202103e-01 0.13348855e+02 0.13957000e+00
- 1 211 0 0 -0.50549012e+00 0.17195169e+00 0.34071087e-01 0.13957000e+00
- 1 -211 0 0 -0.21526347e+00 0.44403105e+00 -0.78460179e-01 0.13957000e+00
- 1 22 0 0 0.15833444e+00 0.13789910e+00 0.35639314e+01 0.00000000e+00
- 1 22 0 0 0.28777537e-01 -0.29705601e-01 0.44798754e+00 0.00000000e+00
- 1 22 0 0 0.75878898e-01 0.45019554e-01 0.71425763e+00 0.00000000e+00
- 1 22 0 0 -0.31299666e-01 -0.41142554e-01 0.60912109e+00 0.00000000e+00
- 1 -211 0 0 0.39379659e+00 0.55936043e-01 0.83111754e+01 0.13957000e+00
- 1 211 0 0 0.88991820e+00 0.75969931e+00 0.22135086e+02 0.13957000e+00
- 1 -211 0 0 0.17926599e+00 -0.62109765e-02 0.20177021e+02 0.13957000e+00
- 1 211 0 0 0.70125931e-01 0.97641845e-01 0.30421531e+01 0.13957000e+00
- 1 211 0 0 -0.27867504e-01 -0.12371945e-01 -0.21145611e+01 0.13957000e+00
- 1 -211 0 0 -0.52879520e+00 -0.61241766e+00 -0.81587024e+01 0.13957000e+00
- 1 211 0 0 -0.31961194e-01 -0.20887725e+00 -0.69694911e+02 0.13957000e+00
- 1 -211 0 0 -0.83177484e-01 0.17229092e+00 -0.35830296e+02 0.13957000e+00
- 1 22 0 0 0.38183727e-01 0.35979609e-01 -0.59641294e+01 0.00000000e+00
- 1 22 0 0 0.12486372e+00 -0.94115960e-01 -0.85610724e+01 0.00000000e+00
- 1 22 0 0 0.17346792e+00 0.24354728e+00 -0.22372267e+02 0.00000000e+00
- 1 22 0 0 0.20510719e+00 0.21193637e+00 -0.33783606e+02 0.00000000e+00
- 466
- 2 25 2 3 -0.47240559e+01 0.49029958e+02 -0.18082403e+03 0.12500706e+03
- 2 23 4 5 0.19442727e+02 0.43964635e+02 -0.63329847e+02 0.26665023e+02
- 2 23 6 8 -0.24166783e+02 0.50653228e+01 -0.11749418e+03 0.74728926e+02
- 1 13 0 0 0.14961941e+02 0.43303863e+02 -0.42328840e+02 0.10566000e+00
- 1 -13 0 0 0.44807857e+01 0.66077210e+00 -0.21001007e+02 0.10566000e+00
- 1 -11 0 0 0.17656678e+02 0.46600292e+01 -0.17460997e+01 0.51000000e-03
- 1 11 0 0 -0.41638449e+02 0.40643651e+00 -0.11520247e+03 0.51000000e-03
- 1 22 0 0 -0.18501215e+00 -0.11429159e-02 -0.54561323e+00 0.00000000e+00
- 2 1 59 59 -0.18734173e+01 -0.77372747e+01 -0.65269088e+02 0.33000000e+00
- 2 21 59 59 -0.14968005e+00 -0.48174991e+00 -0.91550202e+01 0.00000000e+00
- 2 21 59 59 0.38995508e+00 -0.59564883e+00 -0.25869666e+01 0.00000000e+00
- 2 -5 59 59 0.68861925e+01 -0.12883298e+01 -0.14815449e+03 0.48000000e+01
- 2 -1 66 66 -0.14773354e+01 -0.31497511e+01 -0.29209142e+02 0.33000000e+00
- 2 21 66 66 -0.21803423e+01 -0.95537773e+01 -0.12205048e+03 0.00000000e+00
- 2 21 66 66 -0.80685645e+00 -0.23108583e+01 -0.21284563e+02 0.00000000e+00
- 2 21 66 66 0.53527208e+00 -0.26020103e+01 -0.66076704e+02 0.00000000e+00
- 2 21 66 66 0.32180476e+01 -0.63880810e+01 -0.26835783e+02 0.00000000e+00
- 2 21 66 66 0.29498473e+01 -0.41119577e+01 -0.20487751e+02 0.00000000e+00
- 2 21 66 66 0.53470374e+01 -0.58525407e+01 -0.25143197e+02 0.00000000e+00
- 2 21 66 66 -0.50488227e+00 0.30104176e+00 -0.17148896e+01 0.00000000e+00
- 2 21 66 66 -0.20663834e+01 0.10568694e+01 -0.50593800e+01 0.00000000e+00
- 2 21 66 66 -0.11666146e+00 -0.43381116e+00 -0.27309213e+00 0.00000000e+00
- 2 21 66 66 -0.16831930e+02 0.38940918e+01 0.19334824e+02 0.00000000e+00
- 2 21 66 66 -0.24074653e+01 0.26363122e+01 0.72806791e+01 0.00000000e+00
- 2 21 66 66 0.16831930e+02 -0.38940918e+01 0.25666073e+03 0.00000000e+00
- 2 2 66 66 -0.66572950e+00 0.51831834e+00 0.10283838e+04 0.33000000e+00
- 2 5 110 110 0.12078999e+01 -0.20530616e+01 -0.62690789e+02 0.48000000e+01
- 2 21 110 110 -0.84396431e+00 -0.70299089e+00 -0.20257072e+02 0.00000000e+00
- 2 21 110 110 0.12392909e+01 -0.94359803e+00 -0.71013541e+02 0.00000000e+00
- 2 -1 110 110 -0.75683658e+00 -0.36989729e+00 -0.17900843e+03 0.33000000e+00
- 2 1 116 116 0.22772798e+00 0.81175088e-01 -0.13861915e+03 0.33000000e+00
- 2 2103 116 116 0.43270516e+00 0.24221312e+00 -0.55221518e+04 0.77133000e+00
- 2 2103 119 119 -0.75883220e+00 0.82498926e+00 0.49722204e+04 0.77133000e+00
- 2 21 119 119 -0.10891505e+01 -0.27283209e+00 0.91771846e+02 0.00000000e+00
- 2 21 119 119 0.11753526e+00 -0.25208033e+00 0.55207365e+02 0.00000000e+00
- 2 21 119 119 -0.40560954e+01 -0.37748358e+01 0.37086205e+03 0.00000000e+00
- 2 21 119 119 0.18141958e+00 0.13930182e+00 0.83101069e+02 0.00000000e+00
- 2 21 119 119 0.12908194e+00 0.40005361e+00 0.72462983e+01 0.00000000e+00
- 2 21 119 119 0.71228471e+00 -0.35587729e+00 0.60313684e+01 0.00000000e+00
- 2 21 119 119 0.81448143e-01 0.42675562e-01 0.36693818e+00 0.00000000e+00
- 2 21 119 119 -0.37783306e-01 -0.12511314e+00 0.23609430e+00 0.00000000e+00
- 2 21 119 119 0.45061660e+00 0.16556523e+00 0.56019064e+00 0.00000000e+00
- 2 21 119 119 0.41066799e+01 -0.51280559e+01 0.26737396e+01 0.00000000e+00
- 2 21 119 119 0.29413320e+01 -0.41576012e-01 0.78572972e+01 0.00000000e+00
- 2 21 119 119 0.17082564e+01 0.36404795e+00 0.69572696e+01 0.00000000e+00
- 2 21 119 119 -0.20992709e+01 -0.51071383e-02 0.40418153e+02 0.00000000e+00
- 2 21 119 119 0.60929311e+00 0.13588053e+01 0.87409741e+01 0.00000000e+00
- 2 21 119 119 -0.18831730e+01 0.11642931e+01 -0.50447924e+01 0.00000000e+00
- 2 21 119 119 -0.23827103e+01 0.60228124e+00 -0.15042258e+02 0.00000000e+00
- 2 21 119 119 -0.19596157e+01 0.25408024e+01 -0.82873736e+01 0.00000000e+00
- 2 21 119 119 -0.34887371e+01 0.12090365e+01 -0.72423481e+01 0.00000000e+00
- 2 21 119 119 -0.42388958e+01 0.15981799e+01 -0.12603948e+02 0.00000000e+00
- 2 21 119 119 0.13245314e+01 -0.21184133e+01 -0.28026235e+01 0.00000000e+00
- 2 21 119 119 0.11666146e+00 0.43381116e+00 -0.46933628e+00 0.00000000e+00
- 2 21 119 119 0.24074653e+01 -0.26363122e+01 -0.17643265e+02 0.00000000e+00
- 2 21 119 119 0.50488227e+00 -0.30104176e+00 -0.48486710e+01 0.00000000e+00
- 2 21 119 119 0.20663834e+01 -0.10568694e+01 -0.93448993e+02 0.00000000e+00
- 2 2 119 119 0.67602714e+00 -0.66277910e-01 -0.80609260e+02 0.33000000e+00
- 2 92 60 65 0.52530502e+01 -0.10103003e+02 -0.22516557e+03 0.15758088e+02
- 1 -211 0 0 -0.57648393e+00 -0.31528778e+01 -0.25489946e+02 0.13957000e+00
- 2 223 170 172 0.35896270e+00 -0.99627122e+00 -0.12842348e+02 0.79649111e+00
- 1 2212 0 0 -0.10181198e+01 -0.28848883e+01 -0.26094558e+02 0.93827000e+00
- 2 223 173 175 -0.24521531e+00 -0.70586196e+00 -0.19129644e+02 0.83319948e+00
- 2 -3212 176 177 0.12585847e+01 -0.85096041e+00 -0.21668078e+02 0.11925500e+01
- 2 531 178 180 0.54753218e+01 -0.15121436e+01 -0.11994099e+03 0.53693000e+01
- 2 92 67 109 0.18245484e+01 -0.29890246e+02 0.99352500e+03 0.13072527e+04
- 2 223 181 183 -0.85954288e+00 -0.29523186e+01 -0.32100822e+02 0.77886296e+00
- 2 -311 184 184 -0.49172454e+00 -0.17286308e+01 -0.20204974e+02 0.49767000e+00
- 1 321 0 0 -0.85791192e+00 -0.28388198e+01 -0.36215606e+02 0.49360000e+00
- 1 -211 0 0 0.13597516e+00 -0.12302965e+01 -0.13494548e+02 0.13957000e+00
- 2 -313 185 186 -0.17392857e+01 -0.46751713e+01 -0.57234347e+02 0.89773058e+00
- 2 -3214 187 188 -0.18494930e+00 -0.26400753e+01 -0.45007383e+02 0.13779859e+01
- 2 2114 189 190 -0.60316022e-01 -0.17148392e+01 -0.12692311e+02 0.11677445e+01
- 2 -313 191 192 0.10793312e+01 -0.14405650e+01 -0.25198157e+02 0.97615051e+00
- 2 323 193 194 0.86253163e+00 -0.62912668e+00 -0.56386533e+01 0.88440214e+00
- 2 -213 195 196 0.10017291e+01 -0.30697297e+01 -0.13009994e+02 0.78330633e+00
- 2 213 197 198 0.37961869e+01 -0.50112984e+01 -0.22650701e+02 0.88565524e+00
- 2 -213 199 200 0.13169059e+01 -0.27788882e+01 -0.12800209e+02 0.64470376e+00
- 2 -1114 201 202 0.14590663e+01 -0.11106410e+01 -0.68726525e+01 0.12600665e+01
- 2 223 203 205 -0.49948202e-02 0.24443837e-01 -0.23795954e+01 0.77333806e+00
- 2 1114 206 207 0.11612354e+01 -0.10389415e+01 -0.43366651e+01 0.11313165e+01
- 2 213 208 209 -0.45297376e+00 -0.34975622e+00 -0.29639073e+01 0.76873123e+00
- 2 -323 210 211 -0.15223698e+00 0.28184854e-01 -0.41874358e+00 0.86274091e+00
- 2 311 212 212 -0.56042229e-01 -0.24920510e+00 -0.10178466e+01 0.49767000e+00
- 1 211 0 0 -0.25821563e+00 -0.35389398e+00 -0.89082423e-01 0.13957000e+00
- 2 223 213 215 -0.28143033e+00 0.77166388e+00 -0.12507922e+01 0.78711207e+00
- 1 -211 0 0 -0.75087267e+00 0.31933440e+00 -0.15710220e+01 0.13957000e+00
- 2 113 216 217 -0.23719415e+00 0.24285000e+00 0.13253873e+00 0.85637768e+00
- 2 111 218 219 -0.21704479e+01 0.40380956e+00 0.25757455e+01 0.13498000e+00
- 2 223 220 222 -0.45348379e+01 0.77232691e+00 0.47020461e+01 0.78314347e+00
- 2 -311 223 223 -0.14456134e+01 0.21237503e+00 0.16199652e+01 0.49767000e+00
- 2 311 224 224 -0.25086478e+01 0.10388410e+01 0.35896945e+01 0.49767000e+00
- 2 113 225 226 -0.29982566e+01 0.60617807e+00 0.36790702e+01 0.10973420e+01
- 2 -2114 227 228 -0.17044345e+01 0.15313540e+01 0.36138387e+01 0.11502513e+01
- 2 223 229 231 -0.18111480e+01 0.31597642e+00 0.27383506e+01 0.78485910e+00
- 1 2212 0 0 -0.12156312e+01 0.37887019e+00 0.35546736e+01 0.93827000e+00
- 2 223 232 234 0.14138528e+01 0.19282071e+00 0.14573581e+02 0.79359184e+00
- 1 -321 0 0 0.16653708e+00 -0.49698169e+00 0.16366825e+02 0.49360000e+00
- 2 323 235 236 0.25044160e+01 0.12823786e+00 0.36788452e+02 0.83272888e+00
- 2 -2224 237 238 0.20664490e+01 -0.96662254e+00 0.35074591e+02 0.13094245e+01
- 2 2224 239 240 0.20668727e+01 -0.47379235e+00 0.32558047e+02 0.12966018e+01
- 1 -211 0 0 0.60731221e+01 -0.10869783e+01 0.89001076e+02 0.13957000e+00
- 2 213 241 242 0.16594559e+01 -0.12231988e+00 0.31206421e+02 0.91570705e+00
- 1 -2212 0 0 0.55581757e+00 -0.36751686e+00 0.15052069e+03 0.93827000e+00
- 1 2212 0 0 -0.75082175e+00 0.30866328e+00 0.12953786e+03 0.93827000e+00
- 2 111 243 244 0.15778649e+00 -0.58733340e+00 0.16444622e+03 0.13498000e+00
- 1 -321 0 0 0.23992037e+00 0.34288025e+00 0.10719184e+03 0.49360000e+00
- 2 311 245 245 -0.29027983e+00 -0.19039949e-01 0.28282476e+03 0.49767000e+00
- 1 211 0 0 -0.74833135e-01 0.42372639e+00 0.19437671e+03 0.13957000e+00
- 2 92 111 115 0.84638993e+00 -0.40695478e+01 -0.33296983e+03 0.12951639e+02
- 2 -531 246 247 0.80645927e+00 -0.22793263e+01 -0.72034608e+02 0.53693000e+01
- 2 -323 248 249 0.72673529e-01 -0.12233909e+01 -0.51703845e+02 0.93392281e+00
- 2 111 250 251 0.30373480e+00 0.18427697e+00 -0.24251165e+02 0.13498000e+00
- 2 323 252 253 -0.30191281e+00 -0.45320183e+00 -0.70389586e+02 0.87625638e+00
- 2 -313 254 255 -0.34564854e-01 -0.29790574e+00 -0.11459063e+03 0.90246359e+00
- 2 92 117 118 0.66043314e+00 0.32338821e+00 -0.56607709e+04 0.26749238e+01
- 2 1114 256 257 0.63420654e+00 -0.22962886e+00 -0.18094686e+04 0.13608491e+01
- 1 211 0 0 0.26226601e-01 0.55301707e+00 -0.38513023e+04 0.13957000e+00
- 2 92 120 169 -0.38603657e+01 -0.52905492e+01 0.54062082e+04 0.23937929e+04
- 2 111 258 259 0.26403832e+00 -0.32066782e+00 0.13265028e+04 0.13498000e+00
- 1 2112 0 0 -0.92163704e+00 0.55368891e+00 0.15406334e+04 0.93957000e+00
- 2 -313 260 261 0.51834922e-01 0.11321185e-01 0.95373318e+03 0.85747444e+00
- 2 311 262 262 -0.60678559e+00 0.76921325e+00 0.72009408e+03 0.49767000e+00
- 1 -2112 0 0 -0.69397347e+00 -0.78268769e+00 0.84944812e+02 0.93957000e+00
- 1 2112 0 0 -0.44851072e+00 -0.64432090e+00 0.37503664e+03 0.93957000e+00
- 2 221 263 264 -0.28433851e+00 0.17246381e+00 0.14141615e+03 0.54745000e+00
- 2 -311 265 265 -0.10360722e+01 -0.93062919e+00 0.14709793e+03 0.49767000e+00
- 1 321 0 0 -0.53883033e-02 -0.62202183e+00 0.45779892e+02 0.49360000e+00
- 2 111 266 267 -0.60449262e-01 0.20636289e-01 0.27101084e+02 0.13498000e+00
- 2 111 268 269 -0.32452583e+00 0.39235629e+00 0.20608694e+02 0.13498000e+00
- 1 -321 0 0 0.74912281e-01 -0.65785445e+00 0.31528347e+02 0.49360000e+00
- 2 323 270 271 -0.36974659e+00 -0.34018448e+00 0.45628347e+02 0.86733267e+00
- 2 113 272 273 -0.13240488e+01 -0.88198197e+00 0.11123911e+03 0.75840783e+00
- 2 -2214 274 275 0.11147841e+01 0.25570696e+00 0.89438723e+01 0.13101925e+01
- 2 111 276 277 -0.25095781e+00 -0.63317269e+00 0.19546185e+01 0.13498000e+00
- 1 2112 0 0 0.69245577e+00 -0.30786022e+00 0.55338244e+01 0.93957000e+00
- 2 213 278 279 0.12557750e+01 -0.18043425e+01 0.72516561e+00 0.74543375e+00
- 2 113 280 281 0.11206430e+01 -0.61386332e-01 0.12241478e+01 0.75970036e+00
- 2 -213 282 283 0.71176280e+00 -0.71853765e+00 0.20320080e+01 0.74923100e+00
- 2 213 284 285 0.11729732e+01 -0.86598200e+00 0.95310505e+00 0.97941769e+00
- 1 -211 0 0 0.36908116e+00 -0.45091387e+00 0.10142264e+01 0.13957000e+00
- 2 213 286 287 0.70763315e+00 -0.42312569e+00 0.18703723e+01 0.74630893e+00
- 2 221 288 289 0.81798096e+00 0.11476214e+00 0.93468440e+00 0.54745000e+00
- 2 113 290 291 0.13470327e+01 0.36452877e+00 0.60816655e+01 0.77569889e+00
- 1 -211 0 0 0.52434273e+00 -0.62904984e+00 0.20402229e+01 0.13957000e+00
- 1 211 0 0 -0.11857140e+01 0.39915684e+00 0.15616229e+02 0.13957000e+00
- 2 111 292 293 0.10949138e+01 0.77707828e+00 0.78142420e+01 0.13498000e+00
- 2 221 294 296 -0.30648513e+00 -0.20789482e+00 0.14139857e+02 0.54745000e+00
- 1 -211 0 0 -0.99090784e+00 0.56841771e+00 0.56473596e+01 0.13957000e+00
- 2 213 297 298 0.12132279e+00 -0.28129585e+00 0.27502627e+01 0.78425047e+00
- 2 111 299 300 0.41593002e+00 -0.21122458e+00 0.26296207e+01 0.13498000e+00
- 1 -211 0 0 -0.25781907e+00 0.80251032e+00 0.20558989e+00 0.13957000e+00
- 2 213 301 302 -0.21601894e+00 0.19866562e+00 -0.97716167e+00 0.74907019e+00
- 1 -321 0 0 -0.48131096e+00 0.31753466e+00 -0.17915689e+01 0.49360000e+00
- 2 311 303 303 -0.86034282e+00 -0.29312423e+00 -0.20536384e+01 0.49767000e+00
- 2 -1114 304 305 -0.84231954e+00 0.13720627e+01 -0.68220031e+01 0.11464692e+01
- 1 -211 0 0 -0.44692411e+01 0.22330515e+01 -0.12050454e+02 0.13957000e+00
- 2 3122 306 307 -0.75750566e+00 0.99967710e-01 -0.18677850e+01 0.11156800e+01
- 2 313 308 309 -0.65632320e+00 -0.18529923e+00 -0.80336437e+01 0.90128743e+00
- 1 211 0 0 -0.14115165e+01 0.11543237e+01 -0.30735225e+01 0.13957000e+00
- 2 221 310 312 -0.27032014e+01 0.18422587e+01 -0.70184203e+01 0.54745000e+00
- 2 113 313 314 -0.81612071e+00 -0.11055280e+01 -0.57370039e+01 0.87812331e+00
- 2 -323 315 316 0.52638722e+00 0.59153999e-01 -0.10632829e+01 0.91528781e+00
- 2 311 317 317 0.61080436e+00 -0.70116184e+00 -0.19714485e+01 0.49767000e+00
- 1 -2112 0 0 0.15028819e+01 -0.21812477e+01 -0.15820953e+02 0.93957000e+00
- 1 2212 0 0 0.10482201e+01 -0.52324793e-02 -0.49347992e+01 0.93827000e+00
- 2 113 318 319 0.14256200e+01 -0.64983754e+00 -0.34898441e+02 0.72326951e+00
- 1 -211 0 0 0.11243030e+00 -0.59245043e+00 -0.46254850e+02 0.13957000e+00
- 2 213 320 321 0.13371346e+01 -0.28039282e+00 -0.92878338e+02 0.79796536e+00
- 1 211 0 0 -0.51313284e-01 -0.62004098e-01 -0.17440252e+01 0.13957000e+00
- 1 -211 0 0 0.31426134e+00 -0.76377649e+00 -0.10015702e+02 0.13957000e+00
- 2 111 322 323 0.96014647e-01 -0.17049064e+00 -0.10826206e+01 0.13498000e+00
- 1 211 0 0 -0.38886642e-01 -0.30718602e+00 -0.31220050e+01 0.13957000e+00
- 1 -211 0 0 -0.27740835e+00 -0.35693573e+00 -0.14030909e+02 0.13957000e+00
- 2 111 324 325 0.71079691e-01 -0.41740208e-01 -0.19767300e+01 0.13498000e+00
- 2 -3122 326 327 0.11732918e+01 -0.76201973e+00 -0.20854438e+02 0.11156800e+01
- 1 22 0 0 0.85292967e-01 -0.88940677e-01 -0.81364035e+00 0.00000000e+00
- 2 433 328 329 0.17006796e+01 -0.52427925e+00 -0.78160690e+02 0.21124000e+01
- 2 113 330 331 0.21235305e+01 -0.39747714e+00 -0.24303429e+02 0.73583091e+00
- 2 -213 332 333 0.16511117e+01 -0.59038720e+00 -0.17476872e+02 0.62046207e+00
- 1 211 0 0 -0.17071616e+00 -0.11116337e+01 -0.10379393e+02 0.13957000e+00
- 1 -211 0 0 -0.49622524e+00 -0.15992798e+01 -0.18914541e+02 0.13957000e+00
- 2 111 334 335 -0.19260148e+00 -0.24140507e+00 -0.28068880e+01 0.13498000e+00
- 1 130 0 0 -0.49172454e+00 -0.17286308e+01 -0.20204974e+02 0.49767000e+00
- 2 -311 336 336 -0.68263010e+00 -0.18771428e+01 -0.25589358e+02 0.49767000e+00
- 2 111 337 338 -0.10566556e+01 -0.27980285e+01 -0.31644989e+02 0.13498000e+00
- 2 -3122 339 340 0.39778945e-02 -0.23066417e+01 -0.37110085e+02 0.11156800e+01
- 2 111 341 342 -0.18892719e+00 -0.33343366e+00 -0.78972977e+01 0.13498000e+00
- 1 2212 0 0 -0.15135478e+00 -0.13180415e+01 -0.92306738e+01 0.93827000e+00
- 1 -211 0 0 0.91038762e-01 -0.39679772e+00 -0.34616369e+01 0.13957000e+00
- 2 -311 343 343 0.35058060e+00 -0.86943491e+00 -0.10564409e+02 0.49767000e+00
- 2 111 344 345 0.72875056e+00 -0.57113012e+00 -0.14633748e+02 0.13498000e+00
- 2 311 346 346 0.88361601e+00 -0.37601342e+00 -0.40633221e+01 0.49767000e+00
- 1 211 0 0 -0.21084375e-01 -0.25311327e+00 -0.15753311e+01 0.13957000e+00
- 1 -211 0 0 0.36003950e+00 -0.55246446e+00 -0.37060826e+01 0.13957000e+00
- 2 111 347 348 0.64168961e+00 -0.25172653e+01 -0.93039118e+01 0.13498000e+00
- 1 211 0 0 0.16090956e+01 -0.27755149e+01 -0.10913087e+02 0.13957000e+00
- 2 111 349 350 0.21870912e+01 -0.22357835e+01 -0.11737614e+02 0.13498000e+00
- 1 -211 0 0 0.86487843e+00 -0.12436258e+01 -0.68637791e+01 0.13957000e+00
- 2 111 351 352 0.45202742e+00 -0.15352623e+01 -0.59364296e+01 0.13498000e+00
- 1 -2112 0 0 0.90870292e+00 -0.90800516e+00 -0.54762831e+01 0.93957000e+00
- 1 211 0 0 0.55036334e+00 -0.20263585e+00 -0.13963694e+01 0.13957000e+00
- 1 -211 0 0 0.37113983e-01 -0.48335795e-01 -0.51109381e+00 0.13957000e+00
- 1 211 0 0 0.23765661e+00 0.56367087e-01 -0.59744542e+00 0.13957000e+00
- 2 111 353 354 -0.27976542e+00 0.16412545e-01 -0.12710561e+01 0.13498000e+00
- 1 2112 0 0 0.11291993e+01 -0.88435172e+00 -0.38828345e+01 0.93957000e+00
- 1 -211 0 0 0.32036069e-01 -0.15458975e+00 -0.45383057e+00 0.13957000e+00
- 1 211 0 0 -0.25975305e+00 -0.47978834e+00 -0.11419621e+01 0.13957000e+00
- 2 111 355 356 -0.19322071e+00 0.13003212e+00 -0.18219451e+01 0.13498000e+00
- 2 -311 357 357 -0.12447957e+00 0.16693346e+00 -0.36656404e-01 0.49767000e+00
- 1 -211 0 0 -0.27757410e-01 -0.13874860e+00 -0.38208718e+00 0.13957000e+00
- 1 130 0 0 -0.56042229e-01 -0.24920510e+00 -0.10178466e+01 0.49767000e+00
- 1 -211 0 0 -0.16998009e+00 0.23505951e+00 -0.74615879e+00 0.13957000e+00
- 1 211 0 0 -0.15109009e+00 0.44261031e+00 -0.19558438e+00 0.13957000e+00
- 2 111 358 359 0.39639846e-01 0.93994058e-01 -0.30904899e+00 0.13498000e+00
- 1 -211 0 0 0.11778830e+00 -0.23171057e+00 -0.40328115e-01 0.13957000e+00
- 1 211 0 0 -0.35498245e+00 0.47456057e+00 0.17286685e+00 0.13957000e+00
- 1 22 0 0 -0.11827761e+01 0.21620992e+00 0.15054132e+01 0.00000000e+00
- 1 22 0 0 -0.98767174e+00 0.18759963e+00 0.10703323e+01 0.00000000e+00
- 1 -211 0 0 -0.16963896e+01 0.42756217e+00 0.20505763e+01 0.13957000e+00
- 1 211 0 0 -0.21370647e+01 0.33497132e+00 0.18301061e+01 0.13957000e+00
- 2 111 360 361 -0.70138360e+00 0.97934219e-02 0.82136372e+00 0.13498000e+00
- 1 130 0 0 -0.14456134e+01 0.21237503e+00 0.16199652e+01 0.49767000e+00
- 1 130 0 0 -0.25086478e+01 0.10388410e+01 0.35896945e+01 0.49767000e+00
- 1 -211 0 0 -0.23978185e+01 0.24205691e+00 0.33282585e+01 0.13957000e+00
- 1 211 0 0 -0.60043815e+00 0.36412116e+00 0.35081176e+00 0.13957000e+00
- 1 -2112 0 0 -0.15906401e+01 0.13721441e+01 0.34297684e+01 0.93957000e+00
- 2 111 362 363 -0.11379441e+00 0.15920990e+00 0.18407029e+00 0.13498000e+00
- 1 -211 0 0 -0.46229335e+00 -0.96383747e-01 0.10194537e+01 0.13957000e+00
- 1 211 0 0 -0.61695640e+00 0.22065155e+00 0.10143903e+01 0.13957000e+00
- 2 111 364 365 -0.73189829e+00 0.19170862e+00 0.70450667e+00 0.13498000e+00
- 1 211 0 0 0.53528937e+00 0.20967776e+00 0.54496862e+01 0.13957000e+00
- 1 -211 0 0 0.29678813e+00 0.17192065e+00 0.47685010e+01 0.13957000e+00
- 2 111 366 367 0.58177525e+00 -0.18877770e+00 0.43553943e+01 0.13498000e+00
- 1 321 0 0 0.92181916e+00 -0.89160455e-02 0.13810420e+02 0.49360000e+00
- 2 111 368 369 0.15825969e+01 0.13715390e+00 0.22978032e+02 0.13498000e+00
- 1 -2212 0 0 0.13933191e+01 -0.59042010e+00 0.20386649e+02 0.93827000e+00
- 1 -211 0 0 0.67312987e+00 -0.37620244e+00 0.14687941e+02 0.13957000e+00
- 1 2212 0 0 0.20726124e+01 -0.44939373e+00 0.29292349e+02 0.93827000e+00
- 1 211 0 0 -0.57397502e-02 -0.24398627e-01 0.32656978e+01 0.13957000e+00
- 1 211 0 0 0.18540041e+00 0.28157480e+00 0.58935700e+01 0.13957000e+00
- 2 111 370 371 0.14740555e+01 -0.40389468e+00 0.25312851e+02 0.13498000e+00
- 1 22 0 0 0.17405368e+00 -0.43950841e+00 0.12979001e+03 0.00000000e+00
- 1 22 0 0 -0.16267190e-01 -0.14782499e+00 0.34656217e+02 0.00000000e+00
- 1 130 0 0 -0.29027983e+00 -0.19039949e-01 0.28282476e+03 0.49767000e+00
- 2 433 372 373 -0.58615598e+00 -0.11295930e+01 -0.52571391e+02 0.21124000e+01
- 2 -431 374 375 0.13926153e+01 -0.11497334e+01 -0.19463217e+02 0.19685000e+01
- 2 -311 376 376 0.24000400e+00 -0.38723289e+00 -0.24002068e+02 0.49767000e+00
- 1 -211 0 0 -0.16733048e+00 -0.83615796e+00 -0.27701777e+02 0.13957000e+00
- 1 22 0 0 0.24328449e+00 0.13483921e+00 -0.21700299e+02 0.00000000e+00
- 1 22 0 0 0.60450309e-01 0.49437760e-01 -0.25508664e+01 0.00000000e+00
- 1 321 0 0 -0.16103565e-01 -0.37345454e-01 -0.28493373e+02 0.49360000e+00
- 2 111 377 378 -0.28580924e+00 -0.41585637e+00 -0.41896213e+02 0.13498000e+00
- 2 -311 379 379 0.13113503e+00 -0.99661154e-01 -0.97879272e+02 0.49767000e+00
- 2 111 380 381 -0.16569988e+00 -0.19824459e+00 -0.16711355e+02 0.13498000e+00
- 1 2112 0 0 0.80358936e+00 -0.32424246e+00 -0.15540477e+04 0.93957000e+00
- 1 -211 0 0 -0.16938282e+00 0.94613604e-01 -0.25542092e+03 0.13957000e+00
- 1 22 0 0 0.72009975e-01 -0.15376474e+00 0.38356528e+03 0.00000000e+00
- 1 22 0 0 0.19202835e+00 -0.16690307e+00 0.94293752e+03 0.00000000e+00
- 2 -311 382 382 0.23351779e-01 0.25824484e+00 0.71284840e+03 0.49767000e+00
- 2 111 383 384 0.28483144e-01 -0.24692365e+00 0.24088478e+03 0.13498000e+00
- 2 310 385 386 -0.60678559e+00 0.76921325e+00 0.72009408e+03 0.49767000e+00
- 1 22 0 0 -0.24412641e+00 -0.19517094e-01 0.23286451e+02 0.00000000e+00
- 1 22 0 0 -0.40212104e-01 0.19198091e+00 0.11812970e+03 0.00000000e+00
- 2 310 387 388 -0.10360722e+01 -0.93062919e+00 0.14709793e+03 0.49767000e+00
- 1 22 0 0 -0.36130187e-01 -0.36493305e-01 0.21599561e+02 0.00000000e+00
- 1 22 0 0 -0.24319075e-01 0.57129593e-01 0.55015228e+01 0.00000000e+00
- 1 22 0 0 -0.12255959e+00 0.15233861e+00 0.10641743e+02 0.00000000e+00
- 1 22 0 0 -0.20196624e+00 0.24001768e+00 0.99669511e+01 0.00000000e+00
- 2 311 389 389 -0.47214827e+00 -0.12610023e+00 0.37127644e+02 0.49767000e+00
- 1 211 0 0 0.10240167e+00 -0.21408425e+00 0.85007035e+01 0.13957000e+00
- 1 -211 0 0 -0.30604665e+00 -0.17487965e+00 0.11687572e+02 0.13957000e+00
- 1 211 0 0 -0.10180022e+01 -0.70710232e+00 0.99551538e+02 0.13957000e+00
- 1 -2112 0 0 0.89352702e+00 0.41232062e+00 0.60286788e+01 0.93957000e+00
- 1 -211 0 0 0.22125706e+00 -0.15661366e+00 0.29151934e+01 0.13957000e+00
- 1 22 0 0 -0.17608312e+00 -0.29370581e+00 0.10848813e+01 0.00000000e+00
- 1 22 0 0 -0.74874685e-01 -0.33946688e+00 0.86973720e+00 0.00000000e+00
- 1 211 0 0 0.54256457e+00 -0.11690827e+01 0.14055684e+00 0.13957000e+00
- 2 111 390 391 0.71321043e+00 -0.63525978e+00 0.58460877e+00 0.13498000e+00
- 1 211 0 0 0.88808955e+00 -0.27417911e+00 0.11282854e+01 0.13957000e+00
- 1 -211 0 0 0.23255345e+00 0.21279278e+00 0.95862368e-01 0.13957000e+00
- 1 -211 0 0 0.30100219e+00 -0.35362168e+00 0.30480742e+00 0.13957000e+00
- 2 111 392 393 0.41076061e+00 -0.36491598e+00 0.17272005e+01 0.13498000e+00
- 1 211 0 0 0.39798696e+00 -0.99529835e-01 -0.13344428e+00 0.13957000e+00
- 2 111 394 395 0.77498621e+00 -0.76645216e+00 0.10865493e+01 0.13498000e+00
- 1 211 0 0 0.33613363e+00 -0.43289170e+00 0.16000400e+01 0.13957000e+00
- 2 111 396 397 0.37149952e+00 0.97660074e-02 0.27033223e+00 0.13498000e+00
- 1 22 0 0 0.72545444e+00 -0.35756993e-01 0.93694243e+00 0.00000000e+00
- 1 22 0 0 0.92526527e-01 0.15051914e+00 -0.22580322e-02 0.00000000e+00
- 1 211 0 0 0.13575380e+01 0.42110289e+00 0.51688316e+01 0.13957000e+00
- 1 -211 0 0 -0.10505325e-01 -0.56574124e-01 0.91283392e+00 0.13957000e+00
- 1 22 0 0 0.72520769e+00 0.58756951e+00 0.52967798e+01 0.00000000e+00
- 1 22 0 0 0.36970615e+00 0.18950877e+00 0.25174622e+01 0.00000000e+00
- 2 111 398 399 -0.15327317e-02 -0.70251935e-01 0.53330632e+01 0.13498000e+00
- 2 111 400 401 -0.16728592e+00 -0.15690335e+00 0.36808876e+01 0.13498000e+00
- 2 111 402 403 -0.13766647e+00 0.19260458e-01 0.51259063e+01 0.13498000e+00
- 1 211 0 0 -0.30562617e+00 -0.18631652e+00 0.12671637e+01 0.13957000e+00
- 2 111 404 405 0.42694896e+00 -0.94979328e-01 0.14830991e+01 0.13498000e+00
- 1 22 0 0 0.22023663e-01 0.14596852e-01 0.26145943e+00 0.00000000e+00
- 1 22 0 0 0.39390636e+00 -0.22582144e+00 0.23681613e+01 0.00000000e+00
- 1 211 0 0 -0.30725957e+00 -0.18279273e+00 -0.54645658e+00 0.13957000e+00
- 2 111 406 407 0.91240622e-01 0.38145835e+00 -0.43070509e+00 0.13498000e+00
- 2 310 408 409 -0.86034282e+00 -0.29312423e+00 -0.20536384e+01 0.49767000e+00
- 1 -2112 0 0 -0.61795245e+00 0.11385929e+01 -0.51148423e+01 0.93957000e+00
- 1 211 0 0 -0.22436709e+00 0.23346974e+00 -0.17071609e+01 0.13957000e+00
- 1 2112 0 0 -0.60027767e+00 0.18052794e+00 -0.15818578e+01 0.93957000e+00
- 2 111 410 411 -0.15722799e+00 -0.80560230e-01 -0.28592721e+00 0.13498000e+00
- 1 321 0 0 -0.76377030e+00 -0.20047655e+00 -0.72412566e+01 0.49360000e+00
- 1 -211 0 0 0.10744710e+00 0.15177321e-01 -0.79238716e+00 0.13957000e+00
- 2 111 412 413 -0.49299356e+00 0.38140949e+00 -0.14566153e+01 0.13498000e+00
- 2 111 414 415 -0.18670106e+01 0.12408874e+01 -0.47510258e+01 0.13498000e+00
- 2 111 416 417 -0.34319725e+00 0.21996181e+00 -0.81077919e+00 0.13498000e+00
- 1 211 0 0 -0.94910241e-01 0.11559686e+00 -0.79662302e+00 0.13957000e+00
- 1 -211 0 0 -0.72121047e+00 -0.12211248e+01 -0.49403809e+01 0.13957000e+00
- 1 -321 0 0 0.11876836e-01 0.15111610e+00 -0.55772854e+00 0.49360000e+00
- 2 111 418 419 0.51451039e+00 -0.91962098e-01 -0.50555434e+00 0.13498000e+00
- 1 130 0 0 0.61080436e+00 -0.70116184e+00 -0.19714485e+01 0.49767000e+00
- 1 -211 0 0 0.79467544e+00 -0.45205024e+00 -0.13325469e+02 0.13957000e+00
- 1 211 0 0 0.63094458e+00 -0.19778730e+00 -0.21572972e+02 0.13957000e+00
- 1 211 0 0 0.88492943e+00 -0.24450366e-01 -0.75162373e+02 0.13957000e+00
- 2 111 420 421 0.45220514e+00 -0.25594245e+00 -0.17715964e+02 0.13498000e+00
- 1 22 0 0 0.72285989e-01 -0.13319356e+00 -0.46205892e+00 0.00000000e+00
- 1 22 0 0 0.23728657e-01 -0.37297076e-01 -0.62056163e+00 0.00000000e+00
- 1 22 0 0 -0.22805348e-01 0.31453217e-01 -0.43878822e+00 0.00000000e+00
- 1 22 0 0 0.93885038e-01 -0.73193425e-01 -0.15379418e+01 0.00000000e+00
- 1 -2112 0 0 0.93701497e+00 -0.61805206e+00 -0.18218732e+02 0.93957000e+00
- 2 111 422 423 0.23627679e+00 -0.14396767e+00 -0.26357063e+01 0.13498000e+00
- 2 431 424 425 0.15367238e+01 -0.48120311e+00 -0.75828760e+02 0.19685000e+01
- 1 22 0 0 0.16395587e+00 -0.43076145e-01 -0.23319305e+01 0.00000000e+00
- 1 211 0 0 0.11473341e+01 -0.49667713e+00 -0.15611809e+02 0.13957000e+00
- 1 -211 0 0 0.97619634e+00 0.99199990e-01 -0.86916200e+01 0.13957000e+00
- 1 -211 0 0 0.14034145e+01 -0.67127119e+00 -0.15136262e+02 0.13957000e+00
- 2 111 426 427 0.24769728e+00 0.80883991e-01 -0.23406100e+01 0.13498000e+00
- 1 22 0 0 -0.72208185e-01 -0.19422997e+00 -0.18029529e+01 0.00000000e+00
- 1 22 0 0 -0.12039330e+00 -0.47175107e-01 -0.10039351e+01 0.00000000e+00
- 2 310 428 429 -0.68263010e+00 -0.18771428e+01 -0.25589358e+02 0.49767000e+00
- 1 22 0 0 -0.88032420e+00 -0.23856900e+01 -0.26412764e+02 0.00000000e+00
- 1 22 0 0 -0.17633137e+00 -0.41233844e+00 -0.52322251e+01 0.00000000e+00
- 1 -2212 0 0 0.52009913e-01 -0.19670094e+01 -0.32872284e+02 0.93827000e+00
- 1 211 0 0 -0.48032018e-01 -0.33963228e+00 -0.42378011e+01 0.13957000e+00
- 1 22 0 0 -0.84783353e-01 -0.75132519e-01 -0.33575749e+01 0.00000000e+00
- 1 22 0 0 -0.10414384e+00 -0.25830114e+00 -0.45397228e+01 0.00000000e+00
- 2 310 430 431 0.35058060e+00 -0.86943491e+00 -0.10564409e+02 0.49767000e+00
- 1 22 0 0 0.49994928e+00 -0.40149421e+00 -0.91043983e+01 0.00000000e+00
- 1 22 0 0 0.22880128e+00 -0.16963592e+00 -0.55293501e+01 0.00000000e+00
- 1 130 0 0 0.88361601e+00 -0.37601342e+00 -0.40633221e+01 0.49767000e+00
- 1 22 0 0 0.45998542e+00 -0.19918839e+01 -0.74251273e+01 0.00000000e+00
- 1 22 0 0 0.18170420e+00 -0.52538136e+00 -0.18787845e+01 0.00000000e+00
- 1 22 0 0 0.16285386e+01 -0.15796797e+01 -0.84698523e+01 0.00000000e+00
- 1 22 0 0 0.55855264e+00 -0.65610377e+00 -0.32677615e+01 0.00000000e+00
- 1 22 0 0 0.35590406e+00 -0.12019919e+01 -0.48511608e+01 0.00000000e+00
- 1 22 0 0 0.96123365e-01 -0.33327043e+00 -0.10852688e+01 0.00000000e+00
- 1 22 0 0 0.44635862e-02 -0.16893205e-01 -0.28095424e-01 0.00000000e+00
- 1 22 0 0 -0.28422900e+00 0.33305750e-01 -0.12429607e+01 0.00000000e+00
- 1 22 0 0 0.25545231e-02 0.47572620e-01 -0.18430467e+00 0.00000000e+00
- 1 22 0 0 -0.19577523e+00 0.82459500e-01 -0.16376404e+01 0.00000000e+00
- 2 310 432 433 -0.12447957e+00 0.16693346e+00 -0.36656404e-01 0.49767000e+00
- 1 22 0 0 -0.23340993e-01 0.29117831e-01 -0.82272894e-02 0.00000000e+00
- 1 22 0 0 0.62980839e-01 0.64876227e-01 -0.30082170e+00 0.00000000e+00
- 1 22 0 0 -0.45169284e+00 -0.37497079e-01 0.59675489e+00 0.00000000e+00
- 1 22 0 0 -0.24969076e+00 0.47290501e-01 0.22460884e+00 0.00000000e+00
- 1 22 0 0 0.17522355e-01 -0.62153516e-02 0.42520886e-01 0.00000000e+00
- 1 22 0 0 -0.13131677e+00 0.16542525e+00 0.14154940e+00 0.00000000e+00
- 1 22 0 0 -0.59709421e+00 0.10279713e+00 0.57910782e+00 0.00000000e+00
- 1 22 0 0 -0.13480408e+00 0.88911490e-01 0.12539885e+00 0.00000000e+00
- 1 22 0 0 0.57010277e+00 -0.16085919e+00 0.42261520e+01 0.00000000e+00
- 1 22 0 0 0.11672490e-01 -0.27918514e-01 0.12924230e+00 0.00000000e+00
- 1 22 0 0 0.82022733e+00 0.60696991e-02 0.12097864e+02 0.00000000e+00
- 1 22 0 0 0.76236955e+00 0.13108420e+00 0.10880168e+02 0.00000000e+00
- 1 22 0 0 0.44069436e+00 -0.66398350e-01 0.68467199e+01 0.00000000e+00
- 1 22 0 0 0.10333612e+01 -0.33749633e+00 0.18466131e+02 0.00000000e+00
- 2 431 434 435 -0.55281942e+00 -0.10168377e+01 -0.45893574e+02 0.19685000e+01
- 1 22 0 0 -0.33336559e-01 -0.11275526e+00 -0.66778162e+01 0.00000000e+00
- 2 -323 436 437 0.47701778e+00 -0.58499277e+00 -0.59654545e+01 0.88341678e+00
- 2 313 438 439 0.91559747e+00 -0.56474059e+00 -0.13497763e+02 0.86431625e+00
- 2 310 440 441 0.24000400e+00 -0.38723289e+00 -0.24002068e+02 0.49767000e+00
- 1 22 0 0 -0.29625949e+00 -0.38761167e+00 -0.40453919e+02 0.00000000e+00
- 1 22 0 0 0.10450249e-01 -0.28244707e-01 -0.14422941e+01 0.00000000e+00
- 1 130 0 0 0.13113503e+00 -0.99661154e-01 -0.97879272e+02 0.49767000e+00
- 1 22 0 0 -0.88167573e-01 -0.57003075e-01 -0.10234560e+02 0.00000000e+00
- 1 22 0 0 -0.77532311e-01 -0.14124151e+00 -0.64767950e+01 0.00000000e+00
- 1 130 0 0 0.23351779e-01 0.25824484e+00 0.71284840e+03 0.49767000e+00
- 1 22 0 0 0.62034250e-02 -0.22266772e+00 0.15533303e+03 0.00000000e+00
- 1 22 0 0 0.22279719e-01 -0.24255930e-01 0.85551742e+02 0.00000000e+00
- 1 211 0 0 -0.24477892e+00 0.21272220e+00 0.37862179e+03 0.13957000e+00
- 1 -211 0 0 -0.36200666e+00 0.55649104e+00 0.34147228e+03 0.13957000e+00
- 1 211 0 0 -0.83575164e-01 -0.41843744e-01 0.15309854e+02 0.13957000e+00
- 1 -211 0 0 -0.95249704e+00 -0.88878545e+00 0.13178807e+03 0.13957000e+00
- 2 310 442 443 -0.47214827e+00 -0.12610023e+00 0.37127644e+02 0.49767000e+00
- 1 22 0 0 0.41491769e+00 -0.28204268e+00 0.28482738e+00 0.00000000e+00
- 1 22 0 0 0.29829274e+00 -0.35321709e+00 0.29978139e+00 0.00000000e+00
- 1 22 0 0 0.31578022e+00 -0.32016694e+00 0.12374286e+01 0.00000000e+00
- 1 22 0 0 0.94980394e-01 -0.44749038e-01 0.48977192e+00 0.00000000e+00
- 1 22 0 0 0.38338187e+00 -0.31960644e+00 0.56994855e+00 0.00000000e+00
- 1 22 0 0 0.39160434e+00 -0.44684572e+00 0.51660078e+00 0.00000000e+00
- 1 22 0 0 0.17622417e+00 0.71172137e-01 0.14362255e+00 0.00000000e+00
- 1 22 0 0 0.19527534e+00 -0.61406130e-01 0.12670968e+00 0.00000000e+00
- 1 22 0 0 0.27676898e-01 0.15002575e-01 0.33254347e+01 0.00000000e+00
- 1 22 0 0 -0.29209629e-01 -0.85254510e-01 0.20076285e+01 0.00000000e+00
- 1 22 0 0 -0.15168309e-01 0.71485827e-02 0.10437929e+01 0.00000000e+00
- 1 22 0 0 -0.15211761e+00 -0.16405193e+00 0.26370948e+01 0.00000000e+00
- 1 22 0 0 0.45067173e-02 0.29050799e-01 0.21961779e+01 0.00000000e+00
- 1 22 0 0 -0.14217319e+00 -0.97903418e-02 0.29297284e+01 0.00000000e+00
- 1 22 0 0 0.20727532e+00 -0.10697239e+00 0.87117004e+00 0.00000000e+00
- 1 22 0 0 0.21967364e+00 0.11993061e-01 0.61192904e+00 0.00000000e+00
- 1 22 0 0 0.10826649e+00 0.16303735e+00 -0.20364424e+00 0.00000000e+00
- 1 22 0 0 -0.17025870e-01 0.21842100e+00 -0.22706085e+00 0.00000000e+00
- 1 -211 0 0 -0.82025709e+00 -0.19640971e+00 -0.17962017e+01 0.13957000e+00
- 1 211 0 0 -0.40085730e-01 -0.96714514e-01 -0.25743669e+00 0.13957000e+00
- 1 22 0 0 -0.88195351e-01 -0.60459505e-01 -0.26733931e+00 0.00000000e+00
- 1 22 0 0 -0.69032637e-01 -0.20100725e-01 -0.18587902e-01 0.00000000e+00
- 1 22 0 0 -0.93218009e-01 0.92685998e-01 -0.45619180e+00 0.00000000e+00
- 1 22 0 0 -0.39977556e+00 0.28872349e+00 -0.10004235e+01 0.00000000e+00
- 1 22 0 0 -0.94999987e+00 0.56379677e+00 -0.22512813e+01 0.00000000e+00
- 1 22 0 0 -0.91701073e+00 0.67709067e+00 -0.24997445e+01 0.00000000e+00
- 1 22 0 0 -0.28136829e+00 0.21064531e+00 -0.57836023e+00 0.00000000e+00
- 1 22 0 0 -0.61828958e-01 0.93164984e-02 -0.23241896e+00 0.00000000e+00
- 1 22 0 0 0.16709391e+00 -0.77073358e-01 -0.11657497e+00 0.00000000e+00
- 1 22 0 0 0.34741648e+00 -0.14888740e-01 -0.38897937e+00 0.00000000e+00
- 1 22 0 0 0.28812379e+00 -0.20128366e+00 -0.13524224e+02 0.00000000e+00
- 1 22 0 0 0.16408134e+00 -0.54658793e-01 -0.41917407e+01 0.00000000e+00
- 1 22 0 0 0.15129826e+00 -0.33994283e-01 -0.99135574e+00 0.00000000e+00
- 1 22 0 0 0.84978528e-01 -0.10997339e+00 -0.16443506e+01 0.00000000e+00
- 2 333 444 445 0.82816258e+00 0.18277109e+00 -0.41941210e+02 0.10196457e+01
- 2 213 446 447 0.70856118e+00 -0.66397420e+00 -0.33887549e+02 0.72557806e+00
- 1 22 0 0 0.87466316e-01 0.16324587e-01 -0.13836030e+01 0.00000000e+00
- 1 22 0 0 0.16023096e+00 0.64559405e-01 -0.95700703e+00 0.00000000e+00
- 1 -211 0 0 -0.44509391e-01 -0.14802516e+00 -0.29365035e+01 0.13957000e+00
- 1 211 0 0 -0.63812071e+00 -0.17291177e+01 -0.22652854e+02 0.13957000e+00
- 1 211 0 0 0.39219592e+00 -0.64821803e+00 -0.87655935e+01 0.13957000e+00
- 1 -211 0 0 -0.41615326e-01 -0.22121688e+00 -0.17988151e+01 0.13957000e+00
- 1 -211 0 0 -0.17810360e+00 0.36965730e-01 0.14554299e+00 0.13957000e+00
- 1 211 0 0 0.53624023e-01 0.12996773e+00 -0.18219939e+00 0.13957000e+00
- 2 323 448 449 -0.32160390e+00 0.76552082e-01 -0.16359378e+02 0.77928053e+00
- 2 -313 450 451 -0.23121552e+00 -0.10933898e+01 -0.29534196e+02 0.90175412e+00
- 2 -311 452 452 0.50183803e-01 -0.36936680e+00 -0.24833504e+01 0.49767000e+00
- 1 -211 0 0 0.42683398e+00 -0.21562597e+00 -0.34821041e+01 0.13957000e+00
- 1 321 0 0 0.43860476e+00 -0.14157098e+00 -0.50124041e+01 0.49360000e+00
- 1 -211 0 0 0.47699271e+00 -0.42316960e+00 -0.84853585e+01 0.13957000e+00
- 2 111 453 454 0.20833963e+00 -0.21988133e+00 -0.67756605e+01 0.13498000e+00
- 2 111 455 456 0.31664375e-01 -0.16735156e+00 -0.17226408e+02 0.13498000e+00
- 1 211 0 0 -0.15072227e+00 -0.18042024e+00 0.85939762e+01 0.13957000e+00
- 1 -211 0 0 -0.32142600e+00 0.54320014e-01 0.28533668e+02 0.13957000e+00
- 1 130 0 0 0.43592904e+00 0.17927980e+00 -0.19614932e+02 0.49767000e+00
- 2 310 457 458 0.39223355e+00 0.34912954e-02 -0.22326279e+02 0.49767000e+00
- 1 211 0 0 0.42393235e+00 -0.22590721e+00 -0.77621467e+01 0.13957000e+00
- 2 111 459 460 0.28462883e+00 -0.43806699e+00 -0.26125403e+02 0.13498000e+00
- 2 311 461 461 -0.76499139e-01 -0.88355583e-01 -0.88098648e+01 0.49767000e+00
- 1 211 0 0 -0.24510476e+00 0.16490766e+00 -0.75495132e+01 0.13957000e+00
- 2 -311 462 462 -0.19157952e-01 -0.97871575e+00 -0.26368169e+02 0.49767000e+00
- 2 111 463 464 -0.21205757e+00 -0.11467404e+00 -0.31660276e+01 0.13498000e+00
- 2 310 465 466 0.50183803e-01 -0.36936680e+00 -0.24833504e+01 0.49767000e+00
- 1 22 0 0 0.22467346e+00 -0.20701009e+00 -0.65600807e+01 0.00000000e+00
- 1 22 0 0 -0.16333829e-01 -0.12871239e-01 -0.21557987e+00 0.00000000e+00
- 1 22 0 0 -0.42347147e-01 -0.17770956e-01 -0.53683649e+01 0.00000000e+00
- 1 22 0 0 0.74011522e-01 -0.14958060e+00 -0.11858043e+02 0.00000000e+00
- 1 -211 0 0 0.29866525e+00 -0.55526177e-01 -0.19755767e+02 0.13957000e+00
- 1 211 0 0 0.93568300e-01 0.59017473e-01 -0.25705117e+01 0.13957000e+00
- 1 22 0 0 0.44660876e-01 -0.16626820e+00 -0.68613298e+01 0.00000000e+00
- 1 22 0 0 0.23996795e+00 -0.27179879e+00 -0.19264073e+02 0.00000000e+00
- 1 130 0 0 -0.76499139e-01 -0.88355583e-01 -0.88098648e+01 0.49767000e+00
- 1 130 0 0 -0.19157952e-01 -0.97871575e+00 -0.26368169e+02 0.49767000e+00
- 1 22 0 0 -0.21919613e+00 -0.78218928e-01 -0.29180092e+01 0.00000000e+00
- 1 22 0 0 0.71385684e-02 -0.36455114e-01 -0.24801844e+00 0.00000000e+00
- 1 211 0 0 0.22174523e+00 -0.24498114e+00 -0.12301585e+01 0.13957000e+00
- 1 -211 0 0 -0.17156143e+00 -0.12438566e+00 -0.12531919e+01 0.13957000e+00
- 954
- 2 25 2 3 -0.53271748e+02 0.45331067e+01 -0.44955815e+03 0.12500155e+03
- 2 23 4 8 -0.16012536e+02 0.55662145e+01 -0.11063307e+03 0.32908330e+02
- 2 23 9 12 -0.37259212e+02 -0.10331078e+01 -0.33892508e+03 0.91391773e+02
- 1 11 0 0 0.72852487e+01 0.24387449e+01 -0.69981009e+01 0.51000000e-03
- 1 22 0 0 -0.71162344e+01 0.11188855e+01 -0.33061533e+02 0.00000000e+00
- 1 22 0 0 -0.18938821e+00 0.17242149e-01 -0.81774235e+00 0.00000000e+00
- 1 -11 0 0 -0.15992161e+02 0.19913419e+01 -0.69755689e+02 0.51000000e-03
- 1 22 0 0 -0.78648694e-06 0.10709404e-06 -0.37753485e-05 0.00000000e+00
- 1 11 0 0 0.13089079e+02 -0.96579940e+01 -0.31410815e+02 0.51000000e-03
- 1 22 0 0 0.48236756e-06 -0.40788893e-06 -0.12807096e-05 0.00000000e+00
- 1 -11 0 0 -0.33459075e+02 0.31482340e+02 -0.13051156e+03 0.51000000e-03
- 1 22 0 0 -0.16889217e+02 -0.22857453e+02 -0.17700271e+03 0.00000000e+00
- 2 2 100 100 -0.28159814e+01 0.87708741e+00 -0.27039052e+03 0.33000000e+00
- 2 21 100 100 0.58833230e+00 0.86584019e-01 -0.69572181e+01 0.00000000e+00
- 2 21 100 100 0.48513991e+00 0.10751117e+01 -0.92296711e+01 0.00000000e+00
- 2 21 100 100 -0.18195321e+00 0.45480695e+01 -0.84585411e+03 0.00000000e+00
- 2 21 100 100 -0.36409478e+01 -0.36587818e+01 -0.84104773e+03 0.00000000e+00
- 2 21 100 100 0.18195321e+00 -0.45480695e+01 -0.20052530e+03 0.00000000e+00
- 2 21 100 100 0.10790268e+01 -0.13266678e+01 -0.61538596e+02 0.00000000e+00
- 2 21 100 100 -0.88341584e+00 -0.59270293e+01 -0.11803017e+03 0.00000000e+00
- 2 21 100 100 0.20863119e+00 -0.52511423e+01 -0.77608330e+02 0.00000000e+00
- 2 21 100 100 -0.37073988e+01 -0.40395780e+01 -0.18961580e+02 0.00000000e+00
- 2 21 100 100 -0.23444517e+01 -0.76460272e+01 -0.26024062e+02 0.00000000e+00
- 2 21 100 100 0.51197497e+01 -0.43636345e+00 -0.14350773e+02 0.00000000e+00
- 2 21 100 100 0.48411842e+01 -0.34789862e+01 -0.12399007e+02 0.00000000e+00
- 2 21 100 100 0.10424456e+01 -0.84257404e+01 -0.56859718e+01 0.00000000e+00
- 2 21 100 100 0.13657592e+01 -0.18566228e+01 0.40761285e+00 0.00000000e+00
- 2 21 100 100 0.37073988e+01 0.40395780e+01 -0.98623734e+00 0.00000000e+00
- 2 21 100 100 0.19119489e+01 0.29977067e+01 -0.61040753e+00 0.00000000e+00
- 2 21 100 100 0.80132033e+00 -0.25116586e+00 0.15994102e+01 0.00000000e+00
- 2 21 100 100 0.26203733e+01 -0.45978969e+01 0.72765049e+02 0.00000000e+00
- 2 21 100 100 0.44037757e+01 -0.48569047e+01 0.14467863e+03 0.00000000e+00
- 2 21 100 100 -0.39576070e+00 0.10332235e+01 0.27768919e+02 0.00000000e+00
- 2 21 100 100 -0.44037757e+01 0.48569047e+01 0.15973923e+03 0.00000000e+00
- 2 21 100 100 -0.19264053e+01 0.14876098e+01 0.58048481e+02 0.00000000e+00
- 2 21 100 100 -0.21204837e+01 0.31360081e+00 0.61442017e+02 0.00000000e+00
- 2 21 100 100 -0.17293547e+01 0.58706805e+00 0.19403095e+02 0.00000000e+00
- 2 21 100 100 -0.36085805e+01 -0.20512538e+01 0.85620116e+01 0.00000000e+00
- 2 21 100 100 -0.51197497e+01 0.43636345e+00 0.12355195e+02 0.00000000e+00
- 2 21 100 100 -0.13657592e+01 0.18566228e+01 0.36457669e+01 0.00000000e+00
- 2 21 100 100 -0.26203733e+01 0.45978969e+01 0.69721420e+01 0.00000000e+00
- 2 21 100 100 -0.20863119e+00 0.52511423e+01 0.43991216e+01 0.00000000e+00
- 2 21 100 100 -0.42212264e+01 -0.26813825e+01 0.34282501e+01 0.00000000e+00
- 2 21 100 100 -0.21609803e+01 -0.35644492e+00 -0.42962310e+01 0.00000000e+00
- 2 21 100 100 -0.13437411e+02 -0.58425488e+01 -0.24341814e+02 0.00000000e+00
- 2 21 100 100 0.40013015e+00 0.19048905e+00 -0.34736389e+00 0.00000000e+00
- 2 21 100 100 0.13792134e+02 0.30091688e+01 -0.25979346e+02 0.00000000e+00
- 2 21 100 100 0.15002769e+02 0.18299441e+01 -0.21056083e+02 0.00000000e+00
- 2 21 100 100 0.13345165e+01 0.46073648e+00 -0.44395968e+00 0.00000000e+00
- 2 21 100 100 0.26255551e+01 0.87045563e+00 0.10662998e+01 0.00000000e+00
- 2 21 100 100 0.33708249e+02 0.72533168e+00 0.56230419e+01 0.00000000e+00
- 2 21 100 100 0.92521507e+00 0.21454843e-01 -0.26263068e+00 0.00000000e+00
- 2 21 100 100 0.30304547e-02 -0.13411867e+01 0.93458589e-01 0.00000000e+00
- 2 21 100 100 -0.90743318e-01 0.36249253e+00 0.13281763e+01 0.00000000e+00
- 2 21 100 100 0.66646865e+00 0.31973564e+00 0.20264281e+03 0.00000000e+00
- 2 21 100 100 0.11454168e+01 -0.15476284e+01 0.50142209e+02 0.00000000e+00
- 2 2101 100 100 0.47684216e-01 -0.44037824e+00 0.30031631e+04 0.57933000e+00
- 2 1 224 224 -0.30000173e+01 0.23905762e+01 -0.75669569e+02 0.00000000e+00
- 2 21 224 224 -0.96438346e+00 0.39298427e+00 -0.26363986e+02 0.00000000e+00
- 2 21 224 224 0.96438346e+00 -0.39298427e+00 -0.14145021e+03 0.00000000e+00
- 2 -1 224 224 0.30000173e+01 -0.23905762e+01 -0.15669234e+04 0.00000000e+00
- 2 1 230 230 -0.10014774e+01 0.58683966e+00 0.14695605e+02 0.00000000e+00
- 2 21 230 230 -0.80132033e+00 0.25116586e+00 -0.71868686e+01 0.00000000e+00
- 2 -1 230 230 0.10014774e+01 -0.58683966e+00 -0.31054774e+02 0.00000000e+00
- 2 2 246 246 -0.82584502e+00 -0.23902371e+00 0.14138664e+03 0.33000000e+00
- 2 21 246 246 -0.65143070e+00 0.10015874e+01 0.33396491e+01 0.00000000e+00
- 2 21 246 246 0.51919132e+00 0.37247919e+00 0.94433364e+00 0.00000000e+00
- 2 21 246 246 0.23341581e+00 -0.22429766e-01 0.32395186e+00 0.00000000e+00
- 2 21 246 246 -0.83841451e+00 0.13722032e+01 -0.53032402e+00 0.00000000e+00
- 2 21 246 246 -0.31408684e+00 0.34571709e+00 0.38220170e+00 0.00000000e+00
- 2 21 246 246 0.24804437e+01 0.87939566e+00 0.72699356e+00 0.00000000e+00
- 2 21 246 246 0.31869395e+00 0.33317474e+00 0.14260784e+00 0.00000000e+00
- 2 21 246 246 -0.12561860e+01 -0.13083185e+00 0.71644216e+00 0.00000000e+00
- 2 21 246 246 -0.10790268e+01 0.13266678e+01 -0.17446724e+01 0.00000000e+00
- 2 21 246 246 -0.48411842e+01 0.34789862e+01 -0.16393712e+02 0.00000000e+00
- 2 21 246 246 -0.10424456e+01 0.84257404e+01 -0.14707380e+02 0.00000000e+00
- 2 21 246 246 0.88341584e+00 0.59270293e+01 -0.18543908e+02 0.00000000e+00
- 2 21 246 246 0.42212264e+01 0.26813825e+01 -0.39205249e+02 0.00000000e+00
- 2 21 246 246 0.36409478e+01 0.36587818e+01 -0.16264108e+03 0.00000000e+00
- 2 21 246 246 0.23444517e+01 0.76460272e+01 -0.24106696e+03 0.00000000e+00
- 2 21 246 246 0.31023155e+00 -0.50766553e+01 -0.22956440e+02 0.00000000e+00
- 2 21 246 246 0.26023626e+01 -0.10995802e+01 -0.18665189e+02 0.00000000e+00
- 2 21 246 246 -0.46137380e-01 -0.42725798e+00 -0.92318144e+02 0.00000000e+00
- 2 21 246 246 0.51233025e+00 0.90342685e-01 -0.64870953e+01 0.00000000e+00
- 2 2101 246 246 -0.19923456e+01 -0.22326328e+01 -0.14152770e+04 0.57933000e+00
- 2 21 301 301 -0.49535505e+01 -0.69003126e+00 0.94483825e+03 0.00000000e+00
- 2 21 301 301 0.19264053e+01 -0.14876098e+01 0.33196903e+03 0.00000000e+00
- 2 21 301 301 0.17293547e+01 -0.58706805e+00 0.40822201e+03 0.00000000e+00
- 2 21 301 301 0.21204837e+01 -0.31360081e+00 0.39438290e+03 0.00000000e+00
- 2 21 301 301 0.36085805e+01 0.20512538e+01 0.16505660e+03 0.00000000e+00
- 2 21 301 301 0.49535505e+01 0.69003126e+00 0.90843406e+02 0.00000000e+00
- 2 21 301 301 0.39576070e+00 -0.10332235e+01 0.47682405e+02 0.00000000e+00
- 2 21 301 301 -0.39349103e+00 -0.53620058e+00 0.37037542e+02 0.00000000e+00
- 2 21 301 301 -0.19119489e+01 -0.29977067e+01 0.27430643e+03 0.00000000e+00
- 2 21 322 322 0.27916214e+01 0.35443171e+01 0.55269683e+02 0.00000000e+00
- 2 21 322 322 0.39349103e+00 0.53620058e+00 0.85382974e+01 0.00000000e+00
- 2 21 322 322 -0.27916214e+01 -0.35443171e+01 0.17424051e+03 0.00000000e+00
- 2 21 334 334 -0.20071343e+01 0.29518556e+00 0.82319644e+00 0.00000000e+00
- 2 21 334 334 0.20071343e+01 -0.29518556e+00 -0.94759497e+01 0.00000000e+00
- 2 92 101 223 0.41024824e+02 -0.28727421e+02 0.12623470e+04 0.63885011e+04
- 2 323 341 342 -0.15370391e+01 0.63655659e+00 -0.18610279e+03 0.93197908e+00
- 2 -313 343 344 0.37811413e-01 0.45997752e+00 -0.25781537e+02 0.93717214e+00
- 1 -211 0 0 -0.51035950e+00 -0.23832064e+00 -0.13276958e+02 0.13957000e+00
- 2 2214 345 346 -0.31774479e+00 0.81907547e+00 -0.55925421e+02 0.13483534e+01
- 2 -2214 347 348 0.38647945e+00 0.58446108e+00 -0.46250451e+02 0.12362478e+01
- 2 213 349 350 0.19340822e+00 0.25011918e+00 -0.47878326e+02 0.11333319e+01
- 2 -213 351 352 -0.21842946e+00 0.65974173e+00 -0.95877865e+02 0.71628326e+00
- 1 211 0 0 -0.62488848e-01 -0.18849480e+00 -0.41246968e+01 0.13957000e+00
- 2 113 353 354 0.27852368e+00 0.12813128e+01 -0.26872930e+03 0.80727096e+00
- 2 113 355 356 -0.50757774e+00 0.50677446e+00 -0.73555072e+02 0.74617279e+00
- 2 113 357 358 -0.88982689e-01 0.44350522e+00 -0.20796921e+03 0.73114752e+00
- 2 111 359 360 -0.10019195e-01 -0.19854110e+00 -0.16117284e+03 0.13498000e+00
- 2 223 361 363 -0.61546606e+00 0.32966319e+00 -0.10769867e+03 0.72575318e+00
- 2 111 364 365 -0.92273222e+00 -0.97470537e+00 -0.25376574e+03 0.13498000e+00
- 1 -211 0 0 0.27199727e+00 0.35008000e-01 -0.46709429e+02 0.13957000e+00
- 2 213 366 367 -0.72144372e+00 -0.68700957e+00 -0.15786117e+03 0.37766907e+00
- 2 313 368 369 -0.11163666e+00 -0.83158850e+00 -0.71982119e+02 0.91898874e+00
- 2 -323 370 371 -0.10219240e+01 -0.23911531e+01 -0.22066116e+03 0.85522644e+00
- 2 111 372 373 0.63825226e+00 -0.22671653e+00 -0.62985842e+02 0.13498000e+00
- 2 111 374 375 -0.15497044e+00 -0.33985621e+01 -0.10081137e+03 0.13498000e+00
- 2 113 376 377 -0.12775216e+00 -0.93523814e+00 -0.46528165e+02 0.83034900e+00
- 2 331 378 379 0.17983026e+00 -0.42575260e+01 -0.75621881e+02 0.95772411e+00
- 2 111 380 381 -0.28932140e+00 -0.98579636e+00 -0.23234956e+02 0.13498000e+00
- 2 323 382 383 -0.42946708e-02 -0.18061103e+01 -0.27300607e+02 0.88210208e+00
- 2 333 384 385 0.58887251e+00 -0.29093670e+01 -0.44202362e+02 0.10197679e+01
- 2 -311 386 386 -0.10730263e+01 -0.11646242e+01 -0.95710945e+01 0.49767000e+00
- 2 221 387 388 -0.10995030e+01 -0.13477876e+01 -0.67546147e+01 0.54745000e+00
- 2 221 389 391 -0.90109524e+00 -0.15777391e+01 -0.58198745e+01 0.54745000e+00
- 2 113 392 393 -0.12528137e+01 -0.28662193e+01 -0.11839715e+02 0.78840686e+00
- 2 113 394 395 -0.11910259e+00 -0.55420514e+00 -0.34285833e+01 0.84772654e+00
- 2 221 396 397 -0.13353856e+01 -0.32125361e+01 -0.10624851e+02 0.54745000e+00
- 1 -211 0 0 -0.19332939e+00 -0.88314858e+00 -0.29468749e+01 0.13957000e+00
- 2 223 398 400 0.36886635e+01 -0.94299437e+00 -0.98645704e+01 0.77790448e+00
- 1 211 0 0 0.23849325e+00 -0.36412494e+00 -0.92480974e+00 0.13957000e+00
- 1 -211 0 0 0.51076747e+00 -0.44069911e+00 -0.10701483e+01 0.13957000e+00
- 2 221 401 403 0.94457463e+00 0.10608538e+00 -0.28606419e+01 0.54745000e+00
- 1 321 0 0 0.17400790e+01 -0.13496687e+01 -0.55946280e+01 0.49360000e+00
- 2 -313 404 405 0.19678602e+01 -0.19400567e+01 -0.45546586e+01 0.93818581e+00
- 1 -211 0 0 -0.36875680e-02 -0.39450685e-01 0.19235248e+00 0.13957000e+00
- 2 111 406 407 0.38033838e+00 -0.33794849e+01 -0.27962490e+01 0.13498000e+00
- 2 113 408 409 0.78497446e+00 -0.31623910e+00 -0.14037740e+01 0.10436817e+01
- 2 223 410 412 0.74686844e+00 -0.10341709e+01 -0.97010561e+00 0.78444879e+00
- 2 223 413 415 0.66777316e-01 -0.12806512e+01 -0.37340756e+00 0.78911434e+00
- 2 213 416 417 0.12386310e+00 -0.16717823e+01 -0.73972269e+00 0.95388290e+00
- 2 113 418 419 0.38831404e+00 -0.48916085e+00 -0.46110009e+00 0.86957999e+00
- 2 3112 420 421 0.16099359e+01 0.70874360e+00 -0.26722547e+00 0.11974400e+01
- 2 -3312 422 423 0.89230551e+00 0.13334953e+01 -0.21915872e+00 0.13213000e+01
- 2 3114 424 425 0.33393020e+01 0.25355514e+01 -0.15362084e+00 0.13652177e+01
- 2 -3112 426 427 0.48754370e+00 0.81056114e+00 0.51801566e+00 0.11974400e+01
- 2 333 428 429 0.36914738e+00 -0.23184699e+00 0.14227087e+01 0.10231968e+01
- 2 333 430 431 0.58472610e-01 0.25737661e+00 0.63253804e+01 0.10195013e+01
- 2 -313 432 433 0.10583492e+01 -0.20257051e+01 0.30195772e+02 0.88123691e+00
- 2 223 434 436 0.62820372e+00 -0.67845928e+00 0.21778286e+02 0.78933684e+00
- 1 -211 0 0 0.17272806e+01 -0.15567515e+01 0.43762696e+02 0.13957000e+00
- 1 211 0 0 0.15311144e+01 -0.24250776e+01 0.36346729e+02 0.13957000e+00
- 2 1114 437 438 0.58953427e+00 -0.12983324e+01 0.40866605e+02 0.12827164e+01
- 1 -2112 0 0 0.69018305e+00 0.22911419e+00 0.35913855e+02 0.93957000e+00
- 2 213 439 440 0.34738919e+00 -0.89116151e+00 0.23126197e+02 0.80596245e+00
- 2 223 441 443 -0.34156686e+01 0.28940096e+01 0.11127881e+03 0.78849512e+00
- 2 331 444 446 -0.17286036e+01 0.22493893e+01 0.79937139e+02 0.95724271e+00
- 2 -213 447 448 -0.23520187e+01 0.20405911e+01 0.65791560e+02 0.78215199e+00
- 2 323 449 450 -0.10796405e+01 0.24468257e+00 0.23066327e+02 0.88095107e+00
- 2 3214 451 452 -0.14924769e+01 -0.47930615e+00 0.93930034e+01 0.13590893e+01
- 2 -2114 453 454 -0.28861833e+00 -0.22730385e+00 0.75449907e+01 0.13075847e+01
- 2 113 455 456 -0.15573511e+01 -0.45241390e+00 0.74960941e+01 0.79878301e+00
- 2 113 457 458 -0.65212134e+00 0.37371529e+00 0.48395221e+01 0.68533047e+00
- 1 -211 0 0 -0.10688247e+01 -0.42128116e+00 0.45434911e+01 0.13957000e+00
- 2 111 459 460 -0.17634722e+01 -0.32146791e+00 0.31293947e+01 0.13498000e+00
- 2 331 461 463 -0.69694241e+00 -0.18581697e+00 0.20984200e+01 0.95770667e+00
- 2 223 464 466 -0.25916890e+01 0.25087801e+01 0.72269330e+01 0.75333611e+00
- 2 323 467 468 -0.17171865e+01 0.87508049e+00 0.27008126e+01 0.88677700e+00
- 2 -313 469 470 -0.79499968e+00 0.18597639e+01 0.36096906e+01 0.10721574e+01
- 2 -213 471 472 -0.60336362e+00 0.10066357e+01 0.13664039e+01 0.72893465e+00
- 1 211 0 0 -0.58983278e+00 0.13650229e+01 0.23116005e+01 0.13957000e+00
- 2 111 473 474 -0.13338581e+01 0.41445239e+01 0.39898688e+01 0.13498000e+00
- 1 -211 0 0 -0.83911916e+00 -0.15611624e+01 0.10248723e+01 0.13957000e+00
- 2 213 475 476 -0.53279472e+00 0.55357990e+00 0.76198498e+00 0.78502091e+00
- 2 113 477 478 -0.21431854e+01 -0.16634298e+01 0.89688891e+00 0.93834597e+00
- 2 111 479 480 -0.25214468e+00 0.26586741e+00 -0.65897499e-01 0.13498000e+00
- 2 111 481 482 0.68085720e-01 -0.34348883e-01 -0.16257072e+00 0.13498000e+00
- 2 111 483 484 -0.59059391e+00 -0.26135868e+00 -0.88920727e+00 0.13498000e+00
- 2 -213 485 486 -0.25978829e+01 -0.83043789e+00 -0.47407588e+01 0.77638034e+00
- 2 213 487 488 -0.15027536e+01 -0.10735316e+01 -0.30347847e+01 0.73041370e+00
- 2 221 489 491 -0.38993956e+01 -0.13864179e+01 -0.57608606e+01 0.54745000e+00
- 1 2112 0 0 -0.14748100e+01 -0.56347089e+00 -0.33676124e+01 0.93957000e+00
- 1 -2112 0 0 -0.21778301e+01 -0.88067483e+00 -0.40431041e+01 0.93957000e+00
- 1 2112 0 0 -0.62016338e-01 0.38215691e+00 -0.30619500e+01 0.93957000e+00
- 2 223 492 494 -0.10238317e+01 -0.12176355e+01 -0.23574252e+01 0.77990132e+00
- 1 -2212 0 0 0.18392428e+00 0.82346834e+00 -0.20569636e+01 0.93827000e+00
- 1 321 0 0 0.44342247e+00 -0.75864168e+00 -0.22738077e+01 0.49360000e+00
- 2 -313 495 496 0.50999101e+01 0.13221358e+01 -0.99721140e+01 0.90030909e+00
- 2 -213 497 498 0.33612297e+01 0.18679211e+00 -0.46319994e+01 0.76383864e+00
- 1 211 0 0 0.13475720e+01 0.52129141e+00 -0.12515109e+01 0.13957000e+00
- 1 -211 0 0 0.21807379e+01 0.18368693e-03 -0.41940606e+01 0.13957000e+00
- 2 223 499 501 0.40688464e+01 0.64383207e+00 -0.73231622e+01 0.79097164e+00
- 2 323 502 503 0.65707438e+01 0.11202786e+01 -0.10912728e+02 0.95156797e+00
- 1 -321 0 0 0.41279283e+01 0.58108285e+00 -0.40315211e+01 0.49360000e+00
- 2 323 504 505 0.30796332e+00 0.55532550e+00 -0.52247149e+00 0.89642197e+00
- 2 3212 506 507 0.45251630e+01 0.43905637e+00 0.68290493e-01 0.11925500e+01
- 2 113 508 509 0.14577402e+01 0.16566634e+00 0.37644388e+00 0.50684328e+00
- 1 -2212 0 0 0.66280004e+01 0.39140139e+00 0.64875977e+00 0.93827000e+00
- 1 211 0 0 0.62678461e+01 0.14214186e+00 0.12888513e+01 0.13957000e+00
- 2 2114 510 511 0.92550293e+01 0.65168485e+00 0.18873926e+01 0.12764221e+01
- 2 223 512 514 0.60227066e+01 0.13407204e-01 0.66943867e+00 0.78689650e+00
- 2 -3122 515 516 0.24031064e+01 -0.10918228e+01 0.86082841e+00 0.11156800e+01
- 1 -321 0 0 0.34666717e+00 0.49380750e+00 0.18091351e+00 0.49360000e+00
- 1 2112 0 0 0.23437166e+00 0.19818103e+00 0.16106305e+01 0.93957000e+00
- 1 211 0 0 0.77419118e+00 -0.54244156e+00 -0.12003877e+00 0.13957000e+00
- 1 -2112 0 0 0.15978000e+00 -0.33059036e+00 0.77195374e+00 0.93957000e+00
- 2 3112 517 518 -0.51522115e+00 0.11314814e+00 0.16054480e+02 0.11974400e+01
- 2 -3122 519 520 0.89670740e+00 0.17357829e+00 0.40221846e+02 0.11156800e+01
- 2 323 521 522 -0.20792298e+00 -0.46960771e-01 0.48606659e+02 0.99633675e+00
- 2 -313 523 524 0.53531126e+00 -0.30781517e+00 0.51057605e+02 0.92227636e+00
- 1 -211 0 0 0.11258531e+00 0.13620179e+00 0.17016550e+02 0.13957000e+00
- 2 111 525 526 -0.32158422e-01 -0.15644873e+00 0.53046256e+01 0.13498000e+00
- 2 113 527 528 0.47228956e+00 -0.11955849e+00 0.59253209e+02 0.73533357e+00
- 2 223 529 531 0.28470892e-01 -0.25747357e+00 0.99317048e+02 0.78198846e+00
- 2 113 532 533 0.16714909e+00 -0.80161028e+00 0.14056079e+03 0.67280315e+00
- 2 213 534 535 -0.39007898e+00 0.72811325e+00 0.24508549e+03 0.88734537e+00
- 1 -211 0 0 0.68781320e+00 -0.64803655e+00 0.14038362e+03 0.13957000e+00
- 2 323 536 537 -0.31873566e+00 0.52128128e+00 0.48627165e+03 0.87814912e+00
- 2 -313 538 539 0.33602027e+00 -0.75960399e+00 0.78633729e+03 0.87662458e+00
- 1 2112 0 0 -0.44729550e-01 -0.28132740e-01 0.11190781e+04 0.93957000e+00
- 2 92 225 229 0.00000000e+00 0.00000000e+00 -0.18104071e+04 0.21381548e+02
- 2 1114 540 541 -0.20351017e+01 0.11668345e+01 -0.57157841e+02 0.12655597e+01
- 2 213 542 543 -0.13820541e+01 0.14131949e+01 -0.46630888e+02 0.90238861e+00
- 1 -2112 0 0 0.16287477e+00 -0.18981400e+00 -0.64590914e+02 0.93957000e+00
- 2 -213 544 545 0.40474841e+00 -0.36819049e+00 -0.30457940e+03 0.75853109e+00
- 2 213 546 547 0.28495327e+01 -0.20220250e+01 -0.13374481e+04 0.77429822e+00
- 2 92 231 245 -0.80132033e+00 0.25116586e+00 -0.23546038e+02 0.47534864e+02
- 2 313 548 549 -0.43913786e+00 0.46582313e+00 0.60083943e+01 0.88936061e+00
- 2 -313 550 551 -0.30210367e+00 -0.26117835e+00 0.31857399e+01 0.90559644e+00
- 2 -213 552 553 -0.14833006e+00 0.22823811e-01 0.17024048e+01 0.81801380e+00
- 1 211 0 0 0.51006032e-01 -0.80378224e-01 -0.11579736e+00 0.13957000e+00
- 2 311 554 554 -0.19834175e+00 0.27876529e+00 0.59805658e-02 0.49767000e+00
- 2 -323 555 556 0.19620786e+00 0.54472757e+00 0.56627108e+00 0.80622068e+00
- 1 211 0 0 -0.28984796e+00 -0.26460306e+00 0.63813903e+00 0.13957000e+00
- 2 2114 557 558 0.26157988e+00 0.14545572e+00 -0.36380559e+00 0.11612782e+01
- 2 223 559 561 -0.32472318e+00 -0.27754802e+00 0.53413524e+00 0.78368642e+00
- 1 -2112 0 0 0.47833534e+00 -0.88138609e-01 -0.54394843e+00 0.93957000e+00
- 1 -211 0 0 -0.80041120e+00 0.41609091e+00 -0.44713771e+01 0.13957000e+00
- 2 3212 562 563 0.42681727e+00 -0.47717390e+00 -0.50020896e+01 0.11925500e+01
- 2 -3212 564 565 0.44981817e+00 -0.49646788e+00 -0.16789271e+02 0.11925500e+01
- 1 211 0 0 -0.12866255e+00 -0.11679437e+00 -0.38964722e+01 0.13957000e+00
- 2 111 566 567 -0.33526660e-01 0.43976184e+00 -0.50043410e+01 0.13498000e+00
- 2 92 247 300 0.51796084e+01 0.28311103e+02 -0.19025744e+04 0.11235346e+04
- 2 111 568 569 0.78072390e-01 0.16718808e+00 0.14272636e+02 0.13498000e+00
- 2 213 570 571 -0.75933391e+00 -0.27683618e+00 0.81519513e+02 0.85540200e+00
- 2 -213 572 573 0.15785597e+00 0.33668339e+00 0.38124804e+02 0.75726019e+00
- 1 2212 0 0 -0.42425674e-01 0.26670709e+00 0.38432123e+01 0.93827000e+00
- 2 113 574 575 -0.15633685e+00 0.98807700e-01 0.18843223e+01 0.66506186e+00
- 1 -2212 0 0 -0.10183658e+00 0.19970916e-01 0.21727922e+01 0.93827000e+00
- 1 211 0 0 -0.46504525e+00 0.49771218e-01 0.30757360e+01 0.13957000e+00
- 2 111 576 577 0.33441806e+00 0.70981714e+00 0.66994496e+00 0.13498000e+00
- 2 113 578 579 -0.48790186e+00 0.26458357e+00 0.12281296e+00 0.59342766e+00
- 2 113 580 581 0.56801875e+00 0.68216332e+00 0.21593630e+00 0.69134773e+00
- 2 1114 582 583 0.41251695e+00 0.10288708e+01 0.68044405e+00 0.12275926e+01
- 1 211 0 0 -0.15449820e+01 0.44427904e+00 -0.57360204e+00 0.13957000e+00
- 1 -2212 0 0 0.17292914e+01 0.10646465e+01 -0.63376014e+00 0.93827000e+00
- 1 211 0 0 0.11895611e+00 -0.71226838e-01 0.90523378e-01 0.13957000e+00
- 2 221 584 585 -0.84094443e+00 -0.21902051e+00 -0.65513879e-01 0.54745000e+00
- 1 -211 0 0 -0.49110378e+00 0.46373684e+00 -0.48842266e+00 0.13957000e+00
- 2 213 586 587 -0.23785283e+01 0.21189144e+01 -0.84102121e+01 0.66526631e+00
- 2 223 588 589 -0.40004853e+00 0.46545963e+00 -0.58195756e+00 0.77394344e+00
- 2 223 590 592 -0.22088461e+01 0.33498369e+01 -0.10220112e+02 0.78628482e+00
- 2 111 593 594 0.86983222e-01 0.14790522e+01 -0.22877206e+01 0.13498000e+00
- 1 -211 0 0 -0.36767242e+00 0.10260421e+01 -0.28599821e+01 0.13957000e+00
- 2 223 595 597 0.21633772e+00 0.21939508e+01 -0.66860078e+01 0.78046379e+00
- 1 321 0 0 -0.11730356e+00 0.37615589e+01 -0.68323094e+01 0.49360000e+00
- 2 -313 598 599 0.20531038e+00 0.60584646e+00 -0.60172981e+01 0.89270219e+00
- 2 311 600 600 0.75159111e+00 0.16643347e+01 -0.56326629e+01 0.49767000e+00
- 2 -323 601 602 0.79476731e+00 0.10446623e+01 -0.15401071e+02 0.85095587e+00
- 2 213 603 604 0.40201070e+00 0.13323292e+01 -0.65941240e+01 0.10102698e+01
- 1 -211 0 0 0.38793219e-01 0.70570053e+00 -0.27753979e+01 0.13957000e+00
- 2 111 605 606 0.13592648e+01 0.52857917e+00 -0.16927319e+02 0.13498000e+00
- 2 223 607 609 0.12388294e+01 0.86159638e+00 -0.23170692e+02 0.77720258e+00
- 2 2114 610 611 0.15257736e+01 0.27314902e+01 -0.95280974e+02 0.11153525e+01
- 2 -2114 612 613 0.89017090e+00 0.85499668e+00 -0.42090184e+02 0.11253752e+01
- 2 223 614 616 0.16145021e+01 0.24172493e+01 -0.87239664e+02 0.79036842e+00
- 2 213 617 618 0.75639044e+00 0.17041666e+01 -0.46860901e+02 0.83130017e+00
- 2 113 619 620 0.46175358e+00 0.13219980e+01 -0.50574040e+02 0.78790260e+00
- 2 -213 621 622 -0.31955288e+00 0.68696985e+00 -0.15976622e+02 0.72229653e+00
- 2 213 623 624 0.36171531e+00 -0.57599425e+00 -0.13426758e+02 0.82394166e+00
- 2 223 625 627 0.40068061e+00 0.34866219e+00 -0.12550144e+02 0.78318106e+00
- 2 113 628 629 -0.46819998e-02 -0.60837290e+00 -0.20188402e+02 0.85508082e+00
- 2 223 630 632 0.12631506e+00 -0.69973124e+00 -0.23461112e+01 0.78325815e+00
- 1 -211 0 0 0.46565761e+00 -0.17631145e+01 -0.15292889e+02 0.13957000e+00
- 2 223 633 635 0.11228635e+01 -0.95371621e+00 -0.80085810e+01 0.78394692e+00
- 2 221 636 638 -0.26937708e+00 -0.58128364e+00 -0.10265991e+02 0.54745000e+00
- 2 111 639 640 0.51978565e+00 -0.13611561e-01 -0.54399412e+01 0.13498000e+00
- 2 213 641 642 0.18957558e+00 0.45149347e-01 -0.88158717e+01 0.70298367e+00
- 1 -211 0 0 0.90636259e-01 0.20180498e+00 -0.94135401e+01 0.13957000e+00
- 2 2224 643 644 0.18249326e+00 -0.63633596e+00 -0.43495162e+02 0.12247942e+01
- 2 221 645 647 0.29295431e+00 -0.29917850e+00 -0.13455969e+02 0.54745000e+00
- 2 -2224 648 649 -0.13234320e+00 0.33925952e+00 -0.70872137e+02 0.12866750e+01
- 1 211 0 0 0.17479257e+00 -0.46821438e+00 -0.10847964e+03 0.13957000e+00
- 1 -211 0 0 0.94231299e-01 0.52558264e-01 -0.69643691e+01 0.13957000e+00
- 2 213 650 651 0.27772569e+00 -0.37976766e+00 -0.69972678e+02 0.98238359e+00
- 2 1114 652 653 -0.11701101e+01 -0.15736520e+01 -0.78061959e+03 0.13132272e+01
- 2 213 654 655 -0.60305166e+00 -0.82342533e-02 -0.39545871e+03 0.82618854e+00
- 2 92 302 321 0.74751449e+01 -0.49041557e+01 0.26943386e+04 0.36619592e+02
- 1 -211 0 0 -0.62500632e-01 -0.90352525e-01 0.33605412e+02 0.13957000e+00
- 2 213 656 657 -0.37990706e+00 -0.22744994e+00 0.99273911e+02 0.65737637e+00
- 1 -2212 0 0 0.25972090e+01 -0.12506798e+01 0.53038415e+03 0.93827000e+00
- 1 2212 0 0 0.96675743e+00 -0.42315929e+00 0.16584721e+03 0.93827000e+00
- 1 -211 0 0 0.35065179e+00 -0.38188238e-01 0.10679595e+03 0.13957000e+00
- 1 211 0 0 0.10837600e+01 -0.52928879e+00 0.20667913e+03 0.13957000e+00
- 2 223 658 660 0.79754305e+00 0.15414059e+00 0.89635160e+02 0.75813314e+00
- 2 -213 661 662 0.22935547e+01 0.71591855e+00 0.96187850e+02 0.63347645e+00
- 2 223 663 665 0.87999043e+00 0.77409886e+00 0.28037948e+02 0.78079711e+00
- 2 111 666 667 0.23666880e+01 0.27355228e+00 0.66300915e+02 0.13498000e+00
- 2 113 668 669 0.65291014e+00 0.15481043e+00 0.35144819e+02 0.88069790e+00
- 2 -313 670 671 0.10210507e+01 -0.14531633e+00 0.37556173e+02 0.95584049e+00
- 1 321 0 0 -0.17146651e+00 0.12361860e+00 0.11759443e+02 0.49360000e+00
- 2 -213 672 673 0.68068556e+00 -0.83351124e+00 0.49615589e+02 0.71593319e+00
- 1 211 0 0 -0.36390908e+00 -0.18392135e+00 0.49085655e+02 0.13957000e+00
- 2 -213 674 675 0.34084647e-02 -0.35240510e+00 0.33329940e+02 0.87583250e+00
- 1 -2112 0 0 -0.17981492e+00 -0.39742812e+00 0.72801946e+02 0.93957000e+00
- 1 2112 0 0 -0.16391519e+01 -0.24131652e+01 0.26933415e+03 0.93957000e+00
- 2 113 676 677 -0.18707477e+01 -0.26226092e+00 0.35848606e+03 0.86154180e+00
- 2 213 678 679 -0.15515666e+01 0.46831867e-01 0.35447716e+03 0.10521755e+01
- 2 92 323 333 0.39349103e+00 0.53620058e+00 0.23804849e+03 0.11281580e+02
- 2 213 680 681 0.49397129e-01 0.33487432e+00 0.13827182e+02 0.62105812e+00
- 2 111 682 683 0.19087721e-01 0.13648143e+00 0.10139935e+01 0.13498000e+00
- 2 111 684 685 -0.17074138e+00 -0.34256931e+00 0.44090260e+02 0.13498000e+00
- 2 113 686 687 0.35681520e+00 -0.82575269e-01 0.76282701e+01 0.80544021e+00
- 1 -211 0 0 -0.16644219e+00 -0.91343843e+00 0.46138222e+02 0.13957000e+00
- 2 213 688 689 -0.60412780e+00 0.13533133e+00 0.31315354e+02 0.76584244e+00
- 1 -211 0 0 -0.48810610e+00 -0.16061663e+00 0.10106653e+02 0.13957000e+00
- 1 211 0 0 0.96207474e+00 0.82863799e+00 0.19241164e+02 0.13957000e+00
- 2 -213 690 691 0.46368510e+00 0.81232510e+00 0.15105902e+02 0.77487820e+00
- 2 223 692 694 -0.55480511e+00 -0.44651587e+00 0.34938793e+02 0.76024919e+00
- 2 113 695 696 0.52665373e+00 0.23426591e+00 0.14642692e+02 0.79972570e+00
- 2 92 335 340 0.00000000e+00 0.00000000e+00 -0.86527532e+01 0.81403756e+01
- 2 111 697 698 0.14723815e+00 0.16247462e+00 0.14388728e+00 0.13498000e+00
- 2 223 699 701 0.13482202e+01 -0.35275205e+00 -0.51358296e+01 0.78331440e+00
- 1 -2112 0 0 -0.30489452e+00 -0.10901665e+00 -0.91649972e+00 0.93957000e+00
- 2 223 702 704 -0.20557100e+00 0.59191219e+00 -0.25474511e+01 0.78859236e+00
- 1 2212 0 0 -0.16962587e-01 0.27046100e+00 -0.11709374e+00 0.93827000e+00
- 1 -211 0 0 -0.96803029e+00 -0.56307911e+00 -0.79766324e-01 0.13957000e+00
- 2 311 705 705 -0.12490938e+01 0.75762246e+00 -0.14020201e+03 0.49767000e+00
- 1 211 0 0 -0.28794536e+00 -0.12106588e+00 -0.45900771e+02 0.13957000e+00
- 1 -321 0 0 0.10043092e+00 0.31441932e+00 -0.88772207e+01 0.49360000e+00
- 1 211 0 0 -0.62619508e-01 0.14555819e+00 -0.16904316e+02 0.13957000e+00
- 1 2212 0 0 -0.19210861e+00 0.96973685e+00 -0.45385325e+02 0.93827000e+00
- 2 111 706 707 -0.12563618e+00 -0.15066138e+00 -0.10540096e+02 0.13498000e+00
- 1 -2212 0 0 0.30907247e+00 0.41247931e+00 -0.43102750e+02 0.93827000e+00
- 2 111 708 709 0.77406983e-01 0.17198177e+00 -0.31477006e+01 0.13498000e+00
- 1 211 0 0 -0.12500295e+00 -0.69317968e-01 -0.16488810e+01 0.13957000e+00
- 2 111 710 711 0.31841117e+00 0.31943715e+00 -0.46229445e+02 0.13498000e+00
- 1 -211 0 0 0.38777446e-01 0.21033127e+00 -0.92045220e+01 0.13957000e+00
- 2 111 712 713 -0.25720691e+00 0.44941047e+00 -0.86673342e+02 0.13498000e+00
- 1 -211 0 0 0.30203158e+00 0.21885558e+00 -0.42300727e+02 0.13957000e+00
- 1 211 0 0 -0.23507899e-01 0.10624572e+01 -0.22642857e+03 0.13957000e+00
- 1 211 0 0 -0.32623690e+00 -0.19181188e-01 -0.13963051e+02 0.13957000e+00
- 1 -211 0 0 -0.18134084e+00 0.52595565e+00 -0.59592022e+02 0.13957000e+00
- 1 211 0 0 0.12723171e+00 0.77019193e-01 -0.14665504e+03 0.13957000e+00
- 1 -211 0 0 -0.21621440e+00 0.36648603e+00 -0.61314166e+02 0.13957000e+00
- 1 22 0 0 0.83092851e-02 -0.12318339e-02 -0.51138506e+02 0.00000000e+00
- 1 22 0 0 -0.18328480e-01 -0.19730927e+00 -0.11003434e+03 0.00000000e+00
- 1 -211 0 0 -0.22481436e+00 0.20851317e+00 -0.41206870e+02 0.13957000e+00
- 1 211 0 0 -0.13485392e+00 0.23296594e+00 -0.45845872e+02 0.13957000e+00
- 2 111 714 715 -0.25579778e+00 -0.11181592e+00 -0.20645928e+02 0.13498000e+00
- 1 22 0 0 -0.33686438e+00 -0.27838550e+00 -0.88852871e+02 0.00000000e+00
- 1 22 0 0 -0.58586784e+00 -0.69631987e+00 -0.16491287e+03 0.00000000e+00
- 1 211 0 0 -0.22377078e+00 -0.36975386e+00 -0.75930991e+02 0.13957000e+00
- 2 111 716 717 -0.49767294e+00 -0.31725571e+00 -0.81930175e+02 0.13498000e+00
- 1 321 0 0 -0.15623742e+00 -0.16350568e+00 -0.25992663e+02 0.49360000e+00
- 1 -211 0 0 0.44600753e-01 -0.66808282e+00 -0.45989456e+02 0.13957000e+00
- 1 -321 0 0 -0.56832974e+00 -0.15439325e+01 -0.11985062e+03 0.49360000e+00
- 2 111 718 719 -0.45359428e+00 -0.84722064e+00 -0.10081054e+03 0.13498000e+00
- 1 22 0 0 0.27476297e+00 -0.16290001e+00 -0.26748993e+02 0.00000000e+00
- 1 22 0 0 0.36348929e+00 -0.63816513e-01 -0.36236849e+02 0.00000000e+00
- 1 22 0 0 -0.11850437e+00 -0.24618748e+01 -0.74776717e+02 0.00000000e+00
- 1 22 0 0 -0.36466069e-01 -0.93668730e+00 -0.26034649e+02 0.00000000e+00
- 1 -211 0 0 -0.10743738e+00 -0.91680832e+00 -0.45151836e+02 0.13957000e+00
- 1 211 0 0 -0.20314778e-01 -0.18429815e-01 -0.13763286e+01 0.13957000e+00
- 1 22 0 0 0.59946080e-02 -0.21270346e-01 -0.27729723e+01 0.00000000e+00
- 2 113 720 721 0.17383565e+00 -0.42362557e+01 -0.72848908e+02 0.62309858e+00
- 1 22 0 0 -0.30591809e-01 -0.45855049e-01 -0.19509828e+01 0.00000000e+00
- 1 22 0 0 -0.25872959e+00 -0.93994131e+00 -0.21283974e+02 0.00000000e+00
- 1 321 0 0 -0.64274205e-01 -0.61452383e+00 -0.90796088e+01 0.49360000e+00
- 2 111 722 723 0.59979534e-01 -0.11915865e+01 -0.18220999e+02 0.13498000e+00
- 1 130 0 0 0.32800961e+00 -0.12109274e+01 -0.18967039e+02 0.49767000e+00
- 2 310 724 725 0.26086290e+00 -0.16984396e+01 -0.25235323e+02 0.49767000e+00
- 2 310 726 727 -0.10730263e+01 -0.11646242e+01 -0.95710945e+01 0.49767000e+00
- 1 22 0 0 -0.76737938e+00 -0.11515161e+01 -0.44642801e+01 0.00000000e+00
- 1 22 0 0 -0.33212361e+00 -0.19627151e+00 -0.22903346e+01 0.00000000e+00
- 1 -211 0 0 -0.36742343e+00 -0.55873755e+00 -0.20783794e+01 0.13957000e+00
- 1 211 0 0 -0.21999185e+00 -0.21663172e+00 -0.91579294e+00 0.13957000e+00
- 2 111 728 729 -0.31367996e+00 -0.80236978e+00 -0.28257022e+01 0.13498000e+00
- 1 -211 0 0 -0.64643561e+00 -0.21262526e+01 -0.90066485e+01 0.13957000e+00
- 1 211 0 0 -0.60637813e+00 -0.73996671e+00 -0.28330665e+01 0.13957000e+00
- 1 -211 0 0 0.13987823e+00 0.74322087e-01 -0.17197414e+01 0.13957000e+00
- 1 211 0 0 -0.25898082e+00 -0.62852723e+00 -0.17088419e+01 0.13957000e+00
- 1 22 0 0 -0.11988564e+01 -0.31418888e+01 -0.10271968e+02 0.00000000e+00
- 1 22 0 0 -0.13652924e+00 -0.70647357e-01 -0.35288293e+00 0.00000000e+00
- 1 211 0 0 0.19733695e+01 -0.37134377e+00 -0.48773861e+01 0.13957000e+00
- 1 -211 0 0 0.99658732e+00 -0.13389484e+00 -0.25961625e+01 0.13957000e+00
- 2 111 730 731 0.71870668e+00 -0.43775576e+00 -0.23910218e+01 0.13498000e+00
- 2 111 732 733 0.40998291e+00 0.97197037e-01 -0.15882316e+01 0.13498000e+00
- 2 111 734 735 0.24131903e+00 0.61860381e-01 -0.47467018e+00 0.13498000e+00
- 2 111 736 737 0.29327268e+00 -0.52972040e-01 -0.79774016e+00 0.13498000e+00
- 1 -321 0 0 0.12938546e+01 -0.14870861e+01 -0.26939184e+01 0.49360000e+00
- 1 211 0 0 0.67400557e+00 -0.45297051e+00 -0.18607402e+01 0.13957000e+00
- 1 22 0 0 0.29077865e+00 -0.27732104e+01 -0.22299280e+01 0.00000000e+00
- 1 22 0 0 0.89559730e-01 -0.60627449e+00 -0.56632095e+00 0.00000000e+00
- 1 211 0 0 0.36285770e+00 0.34589480e+00 -0.37463408e+00 0.13957000e+00
- 1 -211 0 0 0.42211675e+00 -0.66213390e+00 -0.10291399e+01 0.13957000e+00
- 1 -211 0 0 0.63297409e-01 -0.13934753e+00 -0.32816643e+00 0.13957000e+00
- 1 211 0 0 0.39576944e+00 -0.69972406e+00 -0.24577267e+00 0.13957000e+00
- 2 111 738 739 0.28780159e+00 -0.19509927e+00 -0.39616652e+00 0.13498000e+00
- 1 -211 0 0 0.22881285e+00 -0.76257532e+00 -0.43860669e+00 0.13957000e+00
- 1 211 0 0 -0.71508897e-01 -0.15684916e+00 -0.31346291e-01 0.13957000e+00
- 2 111 740 741 -0.90526637e-01 -0.36122670e+00 0.96545426e-01 0.13498000e+00
- 1 211 0 0 -0.12894905e+00 0.35737009e-01 -0.11564825e+00 0.13957000e+00
- 2 111 742 743 0.25281215e+00 -0.17075193e+01 -0.62407444e+00 0.13498000e+00
- 1 211 0 0 -0.12603044e+00 -0.50248458e+00 -0.25637070e+00 0.13957000e+00
- 1 -211 0 0 0.51434448e+00 0.13323737e-01 -0.20472939e+00 0.13957000e+00
- 1 2112 0 0 0.13509485e+01 0.71042223e+00 -0.37526798e+00 0.93957000e+00
- 1 -211 0 0 0.25898738e+00 -0.16786309e-02 0.10804251e+00 0.13957000e+00
- 2 -3122 744 745 0.83929307e+00 0.10378881e+01 -0.24967339e+00 0.11156800e+01
- 1 211 0 0 0.53012436e-01 0.29560723e+00 0.30514670e-01 0.13957000e+00
- 2 3122 746 747 0.24409585e+01 0.18136123e+01 0.14301709e-01 0.11156800e+01
- 1 -211 0 0 0.89834344e+00 0.72193909e+00 -0.16792255e+00 0.13957000e+00
- 1 -2112 0 0 0.18981333e+00 0.62386220e+00 0.43996531e+00 0.93957000e+00
- 1 211 0 0 0.29773037e+00 0.18669894e+00 0.78050352e-01 0.13957000e+00
- 1 321 0 0 0.23225710e+00 -0.17988064e+00 0.93075421e+00 0.49360000e+00
- 1 -321 0 0 0.13689028e+00 -0.51966342e-01 0.49195454e+00 0.49360000e+00
- 1 -321 0 0 -0.97087417e-01 0.13152600e+00 0.30230202e+01 0.49360000e+00
- 1 321 0 0 0.15556003e+00 0.12585061e+00 0.33023601e+01 0.49360000e+00
- 1 -321 0 0 0.30229314e+00 -0.10718966e+01 0.16136095e+02 0.49360000e+00
- 1 211 0 0 0.75605610e+00 -0.95380854e+00 0.14059678e+02 0.13957000e+00
- 1 211 0 0 0.11373361e+00 -0.19251235e-01 0.52222540e+01 0.13957000e+00
- 1 -211 0 0 -0.50674509e-01 -0.25339212e+00 0.39866657e+01 0.13957000e+00
- 2 111 748 749 0.56514462e+00 -0.40581592e+00 0.12569367e+02 0.13498000e+00
- 1 2112 0 0 0.58824077e+00 -0.82041898e+00 0.33356952e+02 0.93957000e+00
- 1 -211 0 0 0.12935086e-02 -0.47791340e+00 0.75096530e+01 0.13957000e+00
- 1 211 0 0 -0.46125811e-01 -0.59962830e+00 0.74388060e+01 0.13957000e+00
- 2 111 750 751 0.39351500e+00 -0.29153322e+00 0.15687391e+02 0.13498000e+00
- 1 -211 0 0 -0.91674601e+00 0.97161648e+00 0.30354256e+02 0.13957000e+00
- 1 211 0 0 -0.15714509e+01 0.14413954e+01 0.56511297e+02 0.13957000e+00
- 2 111 752 753 -0.92747167e+00 0.48099766e+00 0.24413261e+02 0.13498000e+00
- 2 111 754 755 -0.21552897e+00 0.36418432e+00 0.10094538e+02 0.13498000e+00
- 2 111 756 757 -0.77822793e+00 0.84353766e+00 0.31455878e+02 0.13498000e+00
- 2 221 758 760 -0.73484670e+00 0.10416673e+01 0.38386723e+02 0.54745000e+00
- 1 -211 0 0 -0.14552424e+00 0.42008064e+00 0.10718514e+02 0.13957000e+00
- 2 111 761 762 -0.22064945e+01 0.16205104e+01 0.55073046e+02 0.13498000e+00
- 2 311 763 763 -0.10966583e+01 0.12044361e+00 0.18542855e+02 0.49767000e+00
- 1 211 0 0 0.17017796e-01 0.12423896e+00 0.45234726e+01 0.13957000e+00
- 2 3122 764 765 -0.14903202e+01 -0.36349340e+00 0.85819099e+01 0.11156800e+01
- 2 111 766 767 -0.21566658e-02 -0.11581275e+00 0.81109352e+00 0.13498000e+00
- 1 -2212 0 0 -0.13863809e+00 -0.17610534e+00 0.39881016e+01 0.93827000e+00
- 1 211 0 0 -0.14998024e+00 -0.51198513e-01 0.35568892e+01 0.13957000e+00
- 1 -211 0 0 -0.29436770e+00 -0.44868329e-02 0.58323356e+00 0.13957000e+00
- 1 211 0 0 -0.12629834e+01 -0.44792707e+00 0.69128606e+01 0.13957000e+00
- 1 -211 0 0 -0.65799529e+00 0.37162904e+00 0.46305676e+01 0.13957000e+00
- 1 211 0 0 0.58739520e-02 0.20862501e-02 0.20895454e+00 0.13957000e+00
- 1 22 0 0 -0.17094508e+01 -0.31599050e+00 0.30731646e+01 0.00000000e+00
- 1 22 0 0 -0.54021464e-01 -0.54774101e-02 0.56230112e-01 0.00000000e+00
- 2 111 768 769 -0.18091435e+00 -0.49029822e-02 0.76018872e+00 0.13498000e+00
- 2 111 770 771 -0.22750629e+00 -0.25418360e-01 0.54010610e+00 0.13498000e+00
- 2 221 772 774 -0.28852177e+00 -0.15549563e+00 0.79812515e+00 0.54745000e+00
- 1 -211 0 0 -0.13936882e+01 0.13559202e+01 0.33825763e+01 0.13957000e+00
- 1 211 0 0 -0.27177251e+00 0.15411704e+00 0.73978671e+00 0.13957000e+00
- 2 111 775 776 -0.92622820e+00 0.99874278e+00 0.31045700e+01 0.13498000e+00
- 2 311 777 777 -0.13387262e+01 0.79398345e+00 0.24729938e+01 0.49767000e+00
- 1 211 0 0 -0.37846027e+00 0.81097041e-01 0.22781882e+00 0.13957000e+00
- 2 -311 778 778 -0.82396903e+00 0.10792665e+01 0.18814566e+01 0.49767000e+00
- 2 111 779 780 0.28969355e-01 0.78049739e+00 0.17282340e+01 0.13498000e+00
- 1 -211 0 0 0.12748867e+00 0.28017695e+00 0.27151766e+00 0.13957000e+00
- 2 111 781 782 -0.73085228e+00 0.72645877e+00 0.10948862e+01 0.13498000e+00
- 1 22 0 0 -0.73073827e+00 0.20664550e+01 0.20422368e+01 0.00000000e+00
- 1 22 0 0 -0.60311985e+00 0.20780689e+01 0.19476320e+01 0.00000000e+00
- 1 211 0 0 -0.48024913e+00 0.21321073e+00 0.79757275e+00 0.13957000e+00
- 2 111 783 784 -0.52545587e-01 0.34036917e+00 -0.35587773e-01 0.13498000e+00
- 1 -211 0 0 -0.13464278e+01 -0.14518911e+01 0.36989811e+00 0.13957000e+00
- 1 211 0 0 -0.79675761e+00 -0.21153873e+00 0.52699080e+00 0.13957000e+00
- 1 22 0 0 -0.33455450e-01 0.10231478e+00 0.20512328e-01 0.00000000e+00
- 1 22 0 0 -0.21868923e+00 0.16355263e+00 -0.86409827e-01 0.00000000e+00
- 1 22 0 0 -0.15688164e-01 0.15359653e-01 0.11786688e-01 0.00000000e+00
- 1 22 0 0 0.83773884e-01 -0.49708535e-01 -0.17435741e+00 0.00000000e+00
- 1 22 0 0 -0.11840447e-01 -0.56736391e-02 0.30047667e-02 0.00000000e+00
- 1 22 0 0 -0.57875347e+00 -0.25568504e+00 -0.89221203e+00 0.00000000e+00
- 1 -211 0 0 -0.47568383e+00 -0.33190213e+00 -0.15176721e+01 0.13957000e+00
- 2 111 785 786 -0.21221991e+01 -0.49853576e+00 -0.32230867e+01 0.13498000e+00
- 1 211 0 0 -0.19155242e+00 0.29596362e-01 -0.60632337e+00 0.13957000e+00
- 2 111 787 788 -0.13112012e+01 -0.11031280e+01 -0.24284613e+01 0.13498000e+00
- 1 -211 0 0 -0.69906326e+00 -0.31318930e+00 -0.10753982e+01 0.13957000e+00
- 1 211 0 0 -0.21953144e+01 -0.62547075e+00 -0.32029987e+01 0.13957000e+00
- 2 111 789 790 -0.10050180e+01 -0.44775781e+00 -0.14824638e+01 0.13498000e+00
- 1 -211 0 0 -0.27610979e+00 -0.64105131e+00 -0.72323957e+00 0.13957000e+00
- 1 211 0 0 -0.25552636e+00 -0.37544154e+00 -0.90036937e+00 0.13957000e+00
- 2 111 791 792 -0.49219558e+00 -0.20114265e+00 -0.73381628e+00 0.13498000e+00
- 2 -311 793 793 0.19815514e+01 0.47177142e+00 -0.43118267e+01 0.49767000e+00
- 2 111 794 795 0.31183587e+01 0.85036442e+00 -0.56602873e+01 0.13498000e+00
- 1 -211 0 0 0.30950691e+01 0.19146567e+00 -0.38877856e+01 0.13957000e+00
- 2 111 796 797 0.26616063e+00 -0.46735647e-02 -0.74421375e+00 0.13498000e+00
- 1 211 0 0 0.21265428e+01 0.31593546e+00 -0.33909125e+01 0.13957000e+00
- 1 -211 0 0 0.16458022e+01 0.27827642e+00 -0.34834410e+01 0.13957000e+00
- 2 111 798 800 0.29650130e+00 0.49620189e-01 -0.44880859e+00 0.13498000e+00
- 2 311 801 801 0.42755727e+01 0.41790205e+00 -0.67953964e+01 0.49767000e+00
- 1 211 0 0 0.22951712e+01 0.70237654e+00 -0.41173317e+01 0.13957000e+00
- 2 311 802 802 0.37518966e+00 0.40388945e+00 -0.63065024e+00 0.49767000e+00
- 1 211 0 0 -0.67226343e-01 0.15143605e+00 0.10817875e+00 0.13957000e+00
- 2 3122 803 804 0.41772663e+01 0.33540963e+00 0.81851911e-01 0.11156800e+01
- 1 22 0 0 0.34789670e+00 0.10364673e+00 -0.13561419e-01 0.00000000e+00
- 1 211 0 0 0.95006086e+00 0.28077113e+00 0.34141139e+00 0.13957000e+00
- 1 -211 0 0 0.50767933e+00 -0.11510479e+00 0.35032489e-01 0.13957000e+00
- 1 2212 0 0 0.54634936e+01 0.35443925e+00 0.12702617e+01 0.93827000e+00
- 1 -211 0 0 0.37915357e+01 0.29724560e+00 0.61713087e+00 0.13957000e+00
- 1 -211 0 0 0.22027910e+01 -0.17097168e+00 0.22780540e+00 0.13957000e+00
- 1 211 0 0 0.76310899e+00 0.12387394e-01 0.24764758e+00 0.13957000e+00
- 2 111 805 806 0.30568067e+01 0.17199149e+00 0.19398569e+00 0.13498000e+00
- 1 -2212 0 0 0.21352416e+01 -0.97078210e+00 0.66495012e+00 0.93827000e+00
- 1 211 0 0 0.26786482e+00 -0.12104069e+00 0.19587830e+00 0.13957000e+00
- 1 2112 0 0 -0.40031410e+00 0.25258080e+00 0.11682269e+02 0.93957000e+00
- 1 -211 0 0 -0.11490705e+00 -0.13943266e+00 0.43722109e+01 0.13957000e+00
- 1 -2112 0 0 0.68692333e+00 0.63412924e-01 0.31429004e+02 0.93957000e+00
- 2 111 807 808 0.20978406e+00 0.11016536e+00 0.87928424e+01 0.13498000e+00
- 1 321 0 0 -0.36281041e+00 0.45645700e-01 0.19221397e+02 0.49360000e+00
- 2 111 809 810 0.15488743e+00 -0.92606471e-01 0.29385262e+02 0.13498000e+00
- 1 -321 0 0 0.45489673e+00 -0.29595301e+00 0.23202442e+02 0.49360000e+00
- 1 211 0 0 0.80414535e-01 -0.11862159e-01 0.27855163e+02 0.13957000e+00
- 1 22 0 0 0.37768111e-01 -0.18369802e-01 0.54976314e+00 0.00000000e+00
- 1 22 0 0 -0.69926533e-01 -0.13807893e+00 0.47548625e+01 0.00000000e+00
- 1 -211 0 0 -0.84996722e-01 -0.44200526e-01 0.31803894e+02 0.13957000e+00
- 1 211 0 0 0.55728628e+00 -0.75357959e-01 0.27449315e+02 0.13957000e+00
- 1 211 0 0 0.37926577e-01 -0.79627764e-02 0.50595531e+01 0.13957000e+00
- 1 -211 0 0 0.69776274e-01 -0.27616191e+00 0.46641075e+02 0.13957000e+00
- 2 111 811 812 -0.79231959e-01 0.26651118e-01 0.47616420e+02 0.13498000e+00
- 1 -211 0 0 0.18694058e+00 -0.56850996e+00 0.12567860e+03 0.13957000e+00
- 1 211 0 0 -0.19791484e-01 -0.23310032e+00 0.14882187e+02 0.13957000e+00
- 1 211 0 0 0.82160991e-01 0.21306784e+00 0.19071405e+02 0.13957000e+00
- 2 111 813 814 -0.47223997e+00 0.51504542e+00 0.22601408e+03 0.13498000e+00
- 2 311 815 815 -0.17683371e+00 0.27036292e-01 0.27217331e+03 0.49767000e+00
- 1 211 0 0 -0.14190195e+00 0.49424499e+00 0.21409834e+03 0.13957000e+00
- 2 -311 816 816 0.43627172e+00 -0.62229367e+00 0.48610683e+03 0.49767000e+00
- 2 111 817 818 -0.10025144e+00 -0.13731032e+00 0.30023046e+03 0.13498000e+00
- 1 2112 0 0 -0.18215136e+01 0.85177441e+00 -0.44090884e+02 0.93957000e+00
- 1 -211 0 0 -0.21358810e+00 0.31506014e+00 -0.13066957e+02 0.13957000e+00
- 1 211 0 0 -0.99557814e+00 0.42437437e+00 -0.21144008e+02 0.13957000e+00
- 2 111 819 820 -0.38647600e+00 0.98882055e+00 -0.25486880e+02 0.13498000e+00
- 1 -211 0 0 0.52686592e+00 -0.44640523e+00 -0.26540201e+03 0.13957000e+00
- 2 111 821 822 -0.12211751e+00 0.78214743e-01 -0.39177392e+02 0.13498000e+00
- 1 211 0 0 0.14013406e+01 -0.84430968e+00 -0.49967415e+03 0.13957000e+00
- 2 111 823 824 0.14481920e+01 -0.11777153e+01 -0.83777392e+03 0.13498000e+00
- 1 321 0 0 -0.48492914e+00 0.12031564e+00 0.44123262e+01 0.49360000e+00
- 1 -211 0 0 0.45791286e-01 0.34550750e+00 0.15960681e+01 0.13957000e+00
- 2 -311 825 825 0.35108830e-01 -0.20404470e+00 0.11868302e+01 0.49767000e+00
- 2 111 826 827 -0.33721250e+00 -0.57133650e-01 0.19989097e+01 0.13498000e+00
- 1 -211 0 0 0.52014269e-01 0.30993494e+00 0.12990657e+01 0.13957000e+00
- 2 111 828 829 -0.20034433e+00 -0.28711113e+00 0.40333906e+00 0.13498000e+00
- 1 130 0 0 -0.19834175e+00 0.27876529e+00 0.59805658e-02 0.49767000e+00
- 1 -321 0 0 0.17981299e+00 0.53604481e+00 0.64129994e+00 0.49360000e+00
- 2 111 830 831 0.16394870e-01 0.86827586e-02 -0.75028867e-01 0.13498000e+00
- 1 2112 0 0 0.26295348e+00 0.23303189e-01 -0.42026442e+00 0.93957000e+00
- 2 111 832 833 -0.13735979e-02 0.12215253e+00 0.56458838e-01 0.13498000e+00
- 1 211 0 0 -0.22069957e+00 -0.25356005e+00 0.53679231e+00 0.13957000e+00
- 1 -211 0 0 0.73193729e-02 0.98804106e-01 0.34599427e-01 0.13957000e+00
- 2 111 834 835 -0.11134298e+00 -0.12279208e+00 -0.37256501e-01 0.13498000e+00
- 2 3122 836 837 0.42863543e+00 -0.52321036e+00 -0.48828677e+01 0.11156800e+01
- 1 22 0 0 -0.18181648e-02 0.46036458e-01 -0.11922195e+00 0.00000000e+00
- 2 -3122 838 839 0.43935558e+00 -0.49869161e+00 -0.15140188e+02 0.11156800e+01
- 1 22 0 0 0.10462594e-01 0.22237377e-02 -0.16490832e+01 0.00000000e+00
- 1 22 0 0 0.29044404e-01 0.11707488e+00 -0.19088468e+01 0.00000000e+00
- 1 22 0 0 -0.62571064e-01 0.32268695e+00 -0.30954942e+01 0.00000000e+00
- 1 22 0 0 0.34983254e-01 0.48498448e-01 0.94154751e+01 0.00000000e+00
- 1 22 0 0 0.43089135e-01 0.11868963e+00 0.48571607e+01 0.00000000e+00
- 1 211 0 0 -0.57135249e+00 -0.52479526e+00 0.66463895e+02 0.13957000e+00
- 2 111 840 841 -0.18798142e+00 0.24795909e+00 0.15055617e+02 0.13498000e+00
- 1 -211 0 0 0.17050979e+00 0.40035165e+00 0.11717099e+02 0.13957000e+00
- 2 111 842 843 -0.12653819e-01 -0.63668261e-01 0.26407705e+02 0.13498000e+00
- 1 -211 0 0 -0.26166257e-01 0.28073239e+00 0.45392770e+00 0.13957000e+00
- 1 211 0 0 -0.13017060e+00 -0.18192469e+00 0.14303946e+01 0.13957000e+00
- 1 22 0 0 0.40653026e-01 0.14076367e+00 0.67561828e-01 0.00000000e+00
- 1 22 0 0 0.29376503e+00 0.56905347e+00 0.60238313e+00 0.00000000e+00
- 1 -211 0 0 -0.13358271e+00 0.32890951e+00 0.19571293e+00 0.13957000e+00
- 1 211 0 0 -0.35431915e+00 -0.64325938e-01 -0.72899968e-01 0.13957000e+00
- 1 -211 0 0 0.42093232e+00 0.33921508e-01 0.11102375e+00 0.13957000e+00
- 1 211 0 0 0.14708643e+00 0.64824181e+00 0.10491255e+00 0.13957000e+00
- 1 2112 0 0 0.11676584e+00 0.80554115e+00 0.61570333e+00 0.93957000e+00
- 1 -211 0 0 0.29575111e+00 0.22332967e+00 0.64740714e-01 0.13957000e+00
- 1 22 0 0 -0.18631072e+00 0.17277914e+00 -0.79048602e-01 0.00000000e+00
- 1 22 0 0 -0.65463372e+00 -0.39179965e+00 0.13534722e-01 0.00000000e+00
- 1 211 0 0 -0.34626129e+00 0.44757587e+00 -0.10597962e+01 0.13957000e+00
- 2 111 844 845 -0.20322670e+01 0.16713386e+01 -0.73504159e+01 0.13498000e+00
- 1 22 0 0 -0.13085908e+00 0.30360714e+00 0.13111782e+00 0.00000000e+00
- 2 111 846 847 -0.26918945e+00 0.16185248e+00 -0.71307538e+00 0.13498000e+00
- 1 211 0 0 -0.41543492e+00 0.53516786e+00 -0.21067915e+01 0.13957000e+00
- 1 -211 0 0 -0.91669187e+00 0.16927848e+01 -0.51513865e+01 0.13957000e+00
- 2 111 848 849 -0.87671935e+00 0.11218842e+01 -0.29619345e+01 0.13498000e+00
- 1 22 0 0 0.60631076e-01 0.10602541e+01 -0.17473237e+01 0.00000000e+00
- 1 22 0 0 0.26352146e-01 0.41879810e+00 -0.54039681e+00 0.00000000e+00
- 1 211 0 0 0.21581837e+00 0.84972430e+00 -0.19618633e+01 0.13957000e+00
- 1 -211 0 0 0.12090523e+00 0.53690178e+00 -0.22734904e+01 0.13957000e+00
- 2 111 850 851 -0.12038588e+00 0.80732468e+00 -0.24506541e+01 0.13498000e+00
- 1 -321 0 0 0.40663132e+00 0.30042321e+00 -0.38255472e+01 0.49360000e+00
- 1 211 0 0 -0.20132095e+00 0.30542326e+00 -0.21917508e+01 0.13957000e+00
- 2 310 852 853 0.75159111e+00 0.16643347e+01 -0.56326629e+01 0.49767000e+00
- 2 -311 854 854 0.33252130e+00 0.35595549e+00 -0.84214792e+01 0.49767000e+00
- 1 -211 0 0 0.46224601e+00 0.68870677e+00 -0.69795919e+01 0.13957000e+00
- 1 211 0 0 -0.92462821e-01 0.11692911e+01 -0.46142618e+01 0.13957000e+00
- 2 111 855 856 0.49447352e+00 0.16303809e+00 -0.19798622e+01 0.13498000e+00
- 1 22 0 0 0.37829182e+00 0.20355819e+00 -0.46100543e+01 0.00000000e+00
- 1 22 0 0 0.98097295e+00 0.32502097e+00 -0.12317265e+02 0.00000000e+00
- 1 211 0 0 0.59639494e-01 -0.36772982e-01 -0.18713707e+01 0.13957000e+00
- 1 -211 0 0 0.32076414e+00 0.42380430e+00 -0.74787495e+01 0.13957000e+00
- 2 111 857 858 0.85842573e+00 0.47456506e+00 -0.13820572e+02 0.13498000e+00
- 1 2112 0 0 0.14320442e+01 0.23996950e+01 -0.83280818e+02 0.93957000e+00
- 2 111 859 860 0.93729359e-01 0.33179522e+00 -0.12000156e+02 0.13498000e+00
- 1 -2212 0 0 0.64658799e+00 0.59972426e+00 -0.33557532e+02 0.93827000e+00
- 1 211 0 0 0.24358291e+00 0.25527242e+00 -0.85326522e+01 0.13957000e+00
- 1 211 0 0 0.33180288e+00 0.59637965e+00 -0.25882914e+02 0.13957000e+00
- 1 -211 0 0 0.53013114e+00 0.50929494e+00 -0.24348276e+02 0.13957000e+00
- 2 111 861 862 0.75256803e+00 0.13115747e+01 -0.37008474e+02 0.13498000e+00
- 1 211 0 0 0.68937739e+00 0.17180014e+01 -0.40345075e+02 0.13957000e+00
- 2 111 863 864 0.67013043e-01 -0.13834837e-01 -0.65158261e+01 0.13498000e+00
- 1 211 0 0 0.44662181e-01 0.10216716e+01 -0.38408584e+02 0.13957000e+00
- 1 -211 0 0 0.41709140e+00 0.30032636e+00 -0.12165456e+02 0.13957000e+00
- 1 -211 0 0 -0.28964146e+00 0.50896618e+00 -0.56846503e+01 0.13957000e+00
- 2 111 865 866 -0.29911421e-01 0.17800367e+00 -0.10291971e+02 0.13498000e+00
- 1 211 0 0 0.26934698e+00 -0.72207839e+00 -0.12015954e+02 0.13957000e+00
- 2 111 867 868 0.92368331e-01 0.14608414e+00 -0.14108049e+01 0.13498000e+00
- 1 -211 0 0 0.28777669e+00 0.31413493e+00 -0.57135335e+01 0.13957000e+00
- 1 211 0 0 -0.95588100e-01 -0.26945381e-01 -0.46486306e+01 0.13957000e+00
- 2 111 869 870 0.20849202e+00 0.61472642e-01 -0.21879795e+01 0.13498000e+00
- 1 211 0 0 0.17821613e+00 0.13883415e+00 -0.45872705e+01 0.13957000e+00
- 1 -211 0 0 -0.18289813e+00 -0.74720705e+00 -0.15601131e+02 0.13957000e+00
- 1 211 0 0 0.25031497e+00 -0.97392199e-01 -0.10555389e+01 0.13957000e+00
- 1 -211 0 0 -0.22608503e-01 -0.49582311e+00 -0.93111740e+00 0.13957000e+00
- 2 111 871 872 -0.10139140e+00 -0.10651593e+00 -0.35945493e+00 0.13498000e+00
- 1 211 0 0 0.50966224e+00 -0.56876529e+00 -0.34093029e+01 0.13957000e+00
- 1 -211 0 0 0.31458644e+00 -0.30023698e+00 -0.36027862e+01 0.13957000e+00
- 2 111 873 874 0.29861478e+00 -0.84713934e-01 -0.99649185e+00 0.13498000e+00
- 2 111 875 876 -0.13705313e+00 -0.25484682e+00 -0.49507193e+01 0.13498000e+00
- 2 111 877 878 -0.18458599e-01 -0.94074760e-01 -0.31906309e+01 0.13498000e+00
- 2 111 879 880 -0.11386535e+00 -0.23236206e+00 -0.21246410e+01 0.13498000e+00
- 1 22 0 0 0.43883003e+00 0.29871890e-01 -0.41677452e+01 0.00000000e+00
- 1 22 0 0 0.80955628e-01 -0.43483451e-01 -0.12721960e+01 0.00000000e+00
- 1 211 0 0 -0.16968997e+00 -0.11929848e+00 -0.17456585e+01 0.13957000e+00
- 2 111 881 882 0.35926555e+00 0.16444783e+00 -0.70702132e+01 0.13498000e+00
- 1 2212 0 0 0.19071306e+00 -0.29932093e+00 -0.35136274e+02 0.93827000e+00
- 1 211 0 0 -0.82198025e-02 -0.33701504e+00 -0.83588874e+01 0.13957000e+00
- 1 -211 0 0 0.86152468e-01 -0.69975209e-01 -0.16114405e+01 0.13957000e+00
- 1 211 0 0 0.15648282e+00 -0.17653737e+00 -0.81916131e+01 0.13957000e+00
- 2 111 883 884 0.50319019e-01 -0.52665926e-01 -0.36529158e+01 0.13498000e+00
- 1 -2212 0 0 -0.14539598e+00 0.49680168e+00 -0.49629079e+02 0.93827000e+00
- 1 -211 0 0 0.13052776e-01 -0.15754216e+00 -0.21243059e+02 0.13957000e+00
- 1 211 0 0 -0.25868253e+00 0.10160024e+00 -0.31156439e+02 0.13957000e+00
- 2 111 885 886 0.53640822e+00 -0.48136790e+00 -0.38816239e+02 0.13498000e+00
- 1 2112 0 0 -0.94705963e+00 -0.97995523e+00 -0.62882296e+03 0.93957000e+00
- 1 -211 0 0 -0.22305047e+00 -0.59369679e+00 -0.15179663e+03 0.13957000e+00
- 1 211 0 0 0.82464057e-01 0.21059646e+00 -0.71117596e+02 0.13957000e+00
- 2 111 887 888 -0.68551572e+00 -0.21883072e+00 -0.32434111e+03 0.13498000e+00
- 1 211 0 0 -0.47961329e+00 -0.31324493e+00 0.66140617e+02 0.13957000e+00
- 2 111 889 890 0.99706231e-01 0.85794991e-01 0.33133295e+02 0.13498000e+00
- 1 211 0 0 0.10349142e+00 0.16104640e+00 0.19038246e+02 0.13957000e+00
- 1 -211 0 0 0.31934071e+00 -0.55229722e-01 0.51448326e+02 0.13957000e+00
- 2 111 891 892 0.37471092e+00 0.48323914e-01 0.19148587e+02 0.13498000e+00
- 1 -211 0 0 0.87169872e+00 0.24153686e+00 0.26390417e+02 0.13957000e+00
- 2 111 893 894 0.14218560e+01 0.47438169e+00 0.69797433e+02 0.13498000e+00
- 1 211 0 0 0.30928490e+00 0.34793997e+00 0.13232428e+02 0.13957000e+00
- 1 -211 0 0 0.46538776e+00 0.13403369e+00 0.10946428e+02 0.13957000e+00
- 2 111 895 896 0.10531777e+00 0.29212521e+00 0.38590925e+01 0.13498000e+00
- 1 22 0 0 0.78756876e+00 0.28691708e-01 0.22286978e+02 0.00000000e+00
- 1 22 0 0 0.15791192e+01 0.24486057e+00 0.44013938e+02 0.00000000e+00
- 1 211 0 0 0.68654577e+00 0.38871118e+00 0.29359689e+02 0.13957000e+00
- 1 -211 0 0 -0.33635625e-01 -0.23390076e+00 0.57851294e+01 0.13957000e+00
- 1 -321 0 0 0.43162502e+00 -0.39385663e-01 0.27297456e+02 0.49360000e+00
- 1 211 0 0 0.58942573e+00 -0.10593067e+00 0.10258717e+02 0.13957000e+00
- 1 -211 0 0 0.93634757e-01 -0.16443197e+00 0.23760723e+02 0.13957000e+00
- 2 111 897 898 0.58705081e+00 -0.66907927e+00 0.25854867e+02 0.13498000e+00
- 1 -211 0 0 0.31768986e+00 0.20230342e-01 0.71116396e+01 0.13957000e+00
- 2 111 899 900 -0.31428140e+00 -0.37263544e+00 0.26218300e+02 0.13498000e+00
- 1 -211 0 0 -0.19664789e+00 -0.89138805e-01 0.10866961e+03 0.13957000e+00
- 1 211 0 0 -0.16740998e+01 -0.17312212e+00 0.24981645e+03 0.13957000e+00
- 1 211 0 0 -0.33905426e+00 0.55604485e-01 0.19281543e+03 0.13957000e+00
- 2 111 901 902 -0.12125123e+01 -0.87726186e-02 0.16166173e+03 0.13498000e+00
- 1 211 0 0 0.25789868e+00 0.15180103e+00 0.10076323e+02 0.13957000e+00
- 2 111 903 904 -0.20850155e+00 0.18307329e+00 0.37508593e+01 0.13498000e+00
- 1 22 0 0 -0.19057512e-01 0.15088112e+00 0.78994105e+00 0.00000000e+00
- 1 22 0 0 0.38145233e-01 -0.14399692e-01 0.22405241e+00 0.00000000e+00
- 1 22 0 0 -0.10065103e-01 -0.16488978e+00 0.16413929e+02 0.00000000e+00
- 1 22 0 0 -0.16067628e+00 -0.17767953e+00 0.27676330e+02 0.00000000e+00
- 1 211 0 0 0.12723984e+00 0.26991240e+00 0.52414177e+01 0.13957000e+00
- 1 -211 0 0 0.22957536e+00 -0.35248767e+00 0.23868523e+01 0.13957000e+00
- 1 211 0 0 -0.56603103e-01 -0.15089059e+00 0.17200135e+02 0.13957000e+00
- 2 111 905 906 -0.54752470e+00 0.28622193e+00 0.14115219e+02 0.13498000e+00
- 1 -211 0 0 0.86066899e-01 0.26332164e+00 0.98604316e+01 0.13957000e+00
- 2 111 907 908 0.37761820e+00 0.54900346e+00 0.52454702e+01 0.13498000e+00
- 1 211 0 0 -0.22749788e+00 -0.34303395e+00 0.16207201e+02 0.13957000e+00
- 1 -211 0 0 -0.15161839e+00 -0.58483511e-01 0.15631082e+02 0.13957000e+00
- 2 111 909 910 -0.17568884e+00 -0.44998410e-01 0.31005103e+01 0.13498000e+00
- 1 211 0 0 -0.80605969e-01 -0.14392857e+00 0.54555852e+01 0.13957000e+00
- 1 -211 0 0 0.60725970e+00 0.37819448e+00 0.91871072e+01 0.13957000e+00
- 1 22 0 0 0.15561390e+00 0.83872618e-01 0.11452891e+00 0.00000000e+00
- 1 22 0 0 -0.83757455e-02 0.78602002e-01 0.29358376e-01 0.00000000e+00
- 1 211 0 0 0.19435923e+00 -0.12134387e+00 -0.42236025e+00 0.13957000e+00
- 1 -211 0 0 0.37213253e+00 -0.21204330e+00 -0.20735687e+01 0.13957000e+00
- 2 111 911 912 0.78172847e+00 -0.19364882e-01 -0.26399007e+01 0.13498000e+00
- 1 211 0 0 -0.14109002e+00 0.17803817e+00 -0.41410118e+00 0.13957000e+00
- 1 -211 0 0 -0.15828697e+00 0.47616461e+00 -0.14313995e+01 0.13957000e+00
- 2 111 913 914 0.93806002e-01 -0.62290586e-01 -0.70195038e+00 0.13498000e+00
- 2 310 915 916 -0.12490938e+01 0.75762246e+00 -0.14020201e+03 0.49767000e+00
- 1 22 0 0 -0.30609536e-01 -0.31311843e-01 -0.59381900e+01 0.00000000e+00
- 1 22 0 0 -0.95026643e-01 -0.11934954e+00 -0.46019062e+01 0.00000000e+00
- 1 22 0 0 0.47643547e-01 0.58519611e-02 -0.32888631e+00 0.00000000e+00
- 1 22 0 0 0.29763437e-01 0.16612981e+00 -0.28188143e+01 0.00000000e+00
- 1 22 0 0 0.27870939e+00 0.32649658e+00 -0.41237394e+02 0.00000000e+00
- 1 22 0 0 0.39701786e-01 -0.70594274e-02 -0.49920517e+01 0.00000000e+00
- 1 22 0 0 -0.12523710e+00 0.17284335e+00 -0.25911381e+02 0.00000000e+00
- 1 22 0 0 -0.13196981e+00 0.27656712e+00 -0.60761962e+02 0.00000000e+00
- 1 22 0 0 0.67186303e-02 -0.24026030e-01 -0.35507539e+01 0.00000000e+00
- 1 22 0 0 -0.26251641e+00 -0.87789892e-01 -0.17095174e+02 0.00000000e+00
- 1 22 0 0 -0.39833910e+00 -0.18705541e+00 -0.56967690e+02 0.00000000e+00
- 1 22 0 0 -0.99333840e-01 -0.13020030e+00 -0.24962485e+02 0.00000000e+00
- 1 22 0 0 -0.39158874e+00 -0.74173642e+00 -0.91959793e+02 0.00000000e+00
- 1 22 0 0 -0.62005539e-01 -0.10548422e+00 -0.88507439e+01 0.00000000e+00
- 1 211 0 0 -0.88710627e-01 -0.32737325e+01 -0.55876078e+02 0.13957000e+00
- 1 -211 0 0 0.26254628e+00 -0.96252316e+00 -0.16972831e+02 0.13957000e+00
- 1 22 0 0 -0.11803544e-01 -0.19539040e+00 -0.23609252e+01 0.00000000e+00
- 1 22 0 0 0.71783078e-01 -0.99619609e+00 -0.15860073e+02 0.00000000e+00
- 1 -211 0 0 -0.10183527e+00 -0.53874052e+00 -0.81199267e+01 0.13957000e+00
- 1 211 0 0 0.36269817e+00 -0.11596991e+01 -0.17115397e+02 0.13957000e+00
- 1 -211 0 0 -0.73824942e+00 -0.58699827e+00 -0.47372692e+01 0.13957000e+00
- 1 211 0 0 -0.33477693e+00 -0.57762593e+00 -0.48338253e+01 0.13957000e+00
- 1 22 0 0 -0.18756965e+00 -0.52494578e+00 -0.16058584e+01 0.00000000e+00
- 1 22 0 0 -0.12611031e+00 -0.27742401e+00 -0.12198438e+01 0.00000000e+00
- 1 22 0 0 -0.47670335e-02 -0.63915519e-02 -0.10183502e-01 0.00000000e+00
- 1 22 0 0 0.72347371e+00 -0.43136421e+00 -0.23808383e+01 0.00000000e+00
- 1 22 0 0 0.10310226e-01 0.19104298e-01 -0.22242708e+00 0.00000000e+00
- 1 22 0 0 0.39967268e+00 0.78092739e-01 -0.13658045e+01 0.00000000e+00
- 1 22 0 0 0.25386495e+00 0.75400081e-01 -0.44635214e+00 0.00000000e+00
- 1 22 0 0 -0.12545916e-01 -0.13539700e-01 -0.28318043e-01 0.00000000e+00
- 1 22 0 0 0.18320518e-01 -0.18644516e-01 -0.11451623e-01 0.00000000e+00
- 1 22 0 0 0.27495217e+00 -0.34327524e-01 -0.78628854e+00 0.00000000e+00
- 1 22 0 0 -0.10799304e-01 -0.27266169e-01 -0.20820076e-01 0.00000000e+00
- 1 22 0 0 0.29860090e+00 -0.16783310e+00 -0.37534644e+00 0.00000000e+00
- 1 22 0 0 -0.25965013e-01 -0.18706144e+00 0.11488191e+00 0.00000000e+00
- 1 22 0 0 -0.64561624e-01 -0.17416526e+00 -0.18336483e-01 0.00000000e+00
- 1 22 0 0 0.22326591e+00 -0.10650735e+01 -0.39933926e+00 0.00000000e+00
- 1 22 0 0 0.29546241e-01 -0.64244582e+00 -0.22473517e+00 0.00000000e+00
- 1 -2212 0 0 0.58616434e+00 0.84464536e+00 -0.20514020e+00 0.93827000e+00
- 1 211 0 0 0.25312873e+00 0.19324275e+00 -0.44533195e-01 0.13957000e+00
- 1 2212 0 0 0.21246890e+01 0.15882435e+01 -0.83930061e-01 0.93827000e+00
- 1 -211 0 0 0.31626954e+00 0.22536879e+00 0.98231771e-01 0.13957000e+00
- 1 22 0 0 0.45730053e+00 -0.28085435e+00 0.87954838e+01 0.00000000e+00
- 1 22 0 0 0.10784409e+00 -0.12496157e+00 0.37738830e+01 0.00000000e+00
- 1 22 0 0 0.27492869e+00 -0.23742299e+00 0.96893591e+01 0.00000000e+00
- 1 22 0 0 0.11858632e+00 -0.54110230e-01 0.59980323e+01 0.00000000e+00
- 1 22 0 0 -0.70086049e+00 0.39261851e+00 0.17472932e+02 0.00000000e+00
- 1 22 0 0 -0.22661118e+00 0.88379146e-01 0.69403292e+01 0.00000000e+00
- 1 22 0 0 -0.47838617e-03 -0.62307279e-02 0.68121997e+00 0.00000000e+00
- 1 22 0 0 -0.21505058e+00 0.37041504e+00 0.94133177e+01 0.00000000e+00
- 1 22 0 0 -0.73953373e+00 0.74996306e+00 0.29058805e+02 0.00000000e+00
- 1 22 0 0 -0.38694207e-01 0.93574599e-01 0.23970730e+01 0.00000000e+00
- 2 111 917 918 -0.37307698e-01 0.23373200e+00 0.80278187e+01 0.13498000e+00
- 2 111 919 920 -0.30427759e+00 0.48266213e+00 0.16014908e+02 0.13498000e+00
- 2 111 921 922 -0.39326141e+00 0.32527314e+00 0.14343996e+02 0.13498000e+00
- 1 22 0 0 -0.10778674e+01 0.71186601e+00 0.25550705e+02 0.00000000e+00
- 1 22 0 0 -0.11286271e+01 0.90864441e+00 0.29522341e+02 0.00000000e+00
- 2 310 923 924 -0.10966583e+01 0.12044361e+00 0.18542855e+02 0.49767000e+00
- 1 2112 0 0 -0.13232953e+01 -0.41417212e+00 0.76801770e+01 0.93957000e+00
- 2 111 925 926 -0.16702499e+00 0.50678723e-01 0.90173289e+00 0.13498000e+00
- 1 22 0 0 0.31958138e-01 0.15390129e-01 0.28029125e+00 0.00000000e+00
- 1 22 0 0 -0.34114804e-01 -0.13120288e+00 0.53080227e+00 0.00000000e+00
- 1 22 0 0 -0.19417237e+00 -0.29006569e-01 0.62744902e+00 0.00000000e+00
- 1 22 0 0 0.13258021e-01 0.24103586e-01 0.13273970e+00 0.00000000e+00
- 1 22 0 0 -0.19801496e-01 0.28799471e-01 0.22432792e-01 0.00000000e+00
- 1 22 0 0 -0.20770480e+00 -0.54217831e-01 0.51767331e+00 0.00000000e+00
- 2 111 927 928 -0.54415662e-02 -0.56970642e-01 0.29032221e+00 0.13498000e+00
- 2 111 929 930 -0.15033123e+00 0.38904346e-01 0.10553185e+00 0.13498000e+00
- 2 111 931 932 -0.13274897e+00 -0.13742934e+00 0.40227109e+00 0.13498000e+00
- 1 22 0 0 -0.63325974e+00 0.69315272e+00 0.22881040e+01 0.00000000e+00
- 1 22 0 0 -0.29296845e+00 0.30559007e+00 0.81646604e+00 0.00000000e+00
- 1 130 0 0 -0.13387262e+01 0.79398345e+00 0.24729938e+01 0.49767000e+00
- 2 310 933 934 -0.82396903e+00 0.10792665e+01 0.18814566e+01 0.49767000e+00
- 1 22 0 0 0.53992179e-01 0.60548013e+00 0.14419755e+01 0.00000000e+00
- 1 22 0 0 -0.25022824e-01 0.17501726e+00 0.28625849e+00 0.00000000e+00
- 1 22 0 0 -0.46644164e+00 0.53961422e+00 0.70616067e+00 0.00000000e+00
- 1 22 0 0 -0.26441065e+00 0.18684454e+00 0.38872555e+00 0.00000000e+00
- 1 22 0 0 0.43059770e-01 0.13650976e+00 0.29858075e-02 0.00000000e+00
- 1 22 0 0 -0.95605357e-01 0.20385941e+00 -0.38573581e-01 0.00000000e+00
- 1 22 0 0 -0.59548939e+00 -0.16120203e+00 -0.81236678e+00 0.00000000e+00
- 1 22 0 0 -0.15267097e+01 -0.33733373e+00 -0.24107199e+01 0.00000000e+00
- 1 22 0 0 -0.26234387e+00 -0.22559250e+00 -0.58852814e+00 0.00000000e+00
- 1 22 0 0 -0.10488573e+01 -0.87753551e+00 -0.18399331e+01 0.00000000e+00
- 1 22 0 0 -0.13397178e+00 -0.74539862e-01 -0.13848098e+00 0.00000000e+00
- 1 22 0 0 -0.87104620e+00 -0.37321795e+00 -0.13439828e+01 0.00000000e+00
- 1 22 0 0 -0.12476581e+00 -0.11035027e+00 -0.17822768e+00 0.00000000e+00
- 1 22 0 0 -0.36742977e+00 -0.90792378e-01 -0.55558860e+00 0.00000000e+00
- 2 310 935 936 0.19815514e+01 0.47177142e+00 -0.43118267e+01 0.49767000e+00
- 1 22 0 0 0.17807420e+00 0.81678515e-01 -0.33657387e+00 0.00000000e+00
- 1 22 0 0 0.29402845e+01 0.76868590e+00 -0.53237134e+01 0.00000000e+00
- 1 22 0 0 0.22957476e+00 0.90468217e-02 -0.72022569e+00 0.00000000e+00
- 1 22 0 0 0.36585867e-01 -0.13720386e-01 -0.23988063e-01 0.00000000e+00
- 1 22 0 0 0.37172717e-01 0.33778602e-01 -0.15648355e+00 0.00000000e+00
- 1 -11 0 0 0.17020169e+00 0.13914143e-01 -0.21396966e+00 0.51000000e-03
- 1 11 0 0 0.89126889e-01 0.19274439e-02 -0.78355373e-01 0.51000000e-03
- 1 130 0 0 0.42755727e+01 0.41790205e+00 -0.67953964e+01 0.49767000e+00
- 1 130 0 0 0.37518966e+00 0.40388945e+00 -0.63065024e+00 0.49767000e+00
- 1 2112 0 0 0.35555832e+01 0.24449414e+00 -0.25963218e-01 0.93957000e+00
- 2 111 937 938 0.62168311e+00 0.90915489e-01 0.10781513e+00 0.13498000e+00
- 1 22 0 0 0.30412758e+01 0.17953602e+00 0.18760545e+00 0.00000000e+00
- 1 22 0 0 0.15530882e-01 -0.75445330e-02 0.63802423e-02 0.00000000e+00
- 1 22 0 0 0.18542139e+00 0.13097470e+00 0.83430772e+01 0.00000000e+00
- 1 22 0 0 0.24362675e-01 -0.20809336e-01 0.44976525e+00 0.00000000e+00
- 1 22 0 0 -0.13730911e-01 -0.39351769e-01 0.32722190e+01 0.00000000e+00
- 1 22 0 0 0.16861834e+00 -0.53254702e-01 0.26113043e+02 0.00000000e+00
- 1 22 0 0 0.35216890e-01 -0.10076358e-01 0.82740531e+01 0.00000000e+00
- 1 22 0 0 -0.11444885e+00 0.36727476e-01 0.39342367e+02 0.00000000e+00
- 1 22 0 0 -0.74529852e-02 -0.60507132e-02 0.71987909e+01 0.00000000e+00
- 1 22 0 0 -0.46478699e+00 0.52109613e+00 0.21881529e+03 0.00000000e+00
- 2 310 939 940 -0.17683371e+00 0.27036292e-01 0.27217331e+03 0.49767000e+00
- 1 130 0 0 0.43627172e+00 -0.62229367e+00 0.48610683e+03 0.49767000e+00
- 1 22 0 0 -0.73380946e-01 -0.16098990e+00 0.26844081e+03 0.00000000e+00
- 1 22 0 0 -0.26870496e-01 0.23679582e-01 0.31789647e+02 0.00000000e+00
- 1 22 0 0 -0.28423621e+00 0.60092807e+00 -0.16978181e+02 0.00000000e+00
- 1 22 0 0 -0.10223979e+00 0.38789248e+00 -0.85086984e+01 0.00000000e+00
- 1 22 0 0 -0.49369763e-01 -0.31357871e-01 -0.17817945e+02 0.00000000e+00
- 1 22 0 0 -0.72747748e-01 0.10957261e+00 -0.21359447e+02 0.00000000e+00
- 1 22 0 0 0.59479721e+00 -0.49139172e+00 -0.37627866e+03 0.00000000e+00
- 1 22 0 0 0.85339481e+00 -0.68632359e+00 -0.46149526e+03 0.00000000e+00
- 1 130 0 0 0.35108830e-01 -0.20404470e+00 0.11868302e+01 0.49767000e+00
- 1 22 0 0 -0.26203888e+00 -0.63278568e-01 0.17931128e+01 0.00000000e+00
- 1 22 0 0 -0.75173622e-01 0.61449180e-02 0.20579691e+00 0.00000000e+00
- 1 22 0 0 -0.72130004e-01 -0.18701722e+00 0.15224290e+00 0.00000000e+00
- 1 22 0 0 -0.12821433e+00 -0.10009391e+00 0.25109616e+00 0.00000000e+00
- 1 22 0 0 -0.43807916e-01 -0.10450923e-03 -0.83323406e-01 0.00000000e+00
- 1 22 0 0 0.60202786e-01 0.87872678e-02 0.82945386e-02 0.00000000e+00
- 1 22 0 0 -0.66737515e-01 0.60631693e-01 0.13782296e-01 0.00000000e+00
- 1 22 0 0 0.65363917e-01 0.61520833e-01 0.42676542e-01 0.00000000e+00
- 1 22 0 0 0.35603602e-02 -0.88001377e-01 0.85535149e-02 0.00000000e+00
- 1 22 0 0 -0.11490334e+00 -0.34790699e-01 -0.45810016e-01 0.00000000e+00
- 1 2212 0 0 0.41833924e+00 -0.50803538e+00 -0.40312481e+01 0.93827000e+00
- 1 -211 0 0 0.10296196e-01 -0.15174978e-01 -0.85161955e+00 0.13957000e+00
- 1 -2212 0 0 0.30339465e+00 -0.35619437e+00 -0.11551649e+02 0.93827000e+00
- 1 211 0 0 0.13596093e+00 -0.14249725e+00 -0.35885387e+01 0.13957000e+00
- 1 22 0 0 -0.79733998e-01 0.20213607e+00 0.85663169e+01 0.00000000e+00
- 1 22 0 0 -0.10824742e+00 0.45823016e-01 0.64893005e+01 0.00000000e+00
- 1 22 0 0 -0.38866154e-02 0.22191805e-01 0.17326186e+02 0.00000000e+00
- 1 22 0 0 -0.87672031e-02 -0.85860066e-01 0.90815187e+01 0.00000000e+00
- 1 22 0 0 -0.25504245e+00 0.20898321e+00 -0.10609755e+01 0.00000000e+00
- 1 22 0 0 -0.17772246e+01 0.14623554e+01 -0.62894404e+01 0.00000000e+00
- 1 22 0 0 -0.84222288e-01 0.23965261e-04 -0.28501056e+00 0.00000000e+00
- 1 22 0 0 -0.18496716e+00 0.16182852e+00 -0.42806482e+00 0.00000000e+00
- 1 22 0 0 -0.87970975e+00 0.11216138e+01 -0.29436401e+01 0.00000000e+00
- 1 22 0 0 0.29903957e-02 0.27033628e-03 -0.18294361e-01 0.00000000e+00
- 1 22 0 0 -0.83395971e-02 0.35634971e+00 -0.12229387e+01 0.00000000e+00
- 1 22 0 0 -0.11204629e+00 0.45097497e+00 -0.12277153e+01 0.00000000e+00
- 1 211 0 0 0.47703486e+00 0.61289162e+00 -0.20921527e+01 0.13957000e+00
- 1 -211 0 0 0.27455624e+00 0.10514431e+01 -0.35405101e+01 0.13957000e+00
- 2 310 941 942 0.33252130e+00 0.35595549e+00 -0.84214792e+01 0.49767000e+00
- 1 22 0 0 0.28549891e+00 0.65217600e-01 -0.13344642e+01 0.00000000e+00
- 1 22 0 0 0.20897461e+00 0.97820485e-01 -0.64539804e+00 0.00000000e+00
- 1 22 0 0 0.43399691e+00 0.28602611e+00 -0.65390014e+01 0.00000000e+00
- 1 22 0 0 0.42442882e+00 0.18853896e+00 -0.72815705e+01 0.00000000e+00
- 1 22 0 0 0.32117312e-01 0.24742849e+00 -0.98671129e+01 0.00000000e+00
- 1 22 0 0 0.61612047e-01 0.84366725e-01 -0.21330435e+01 0.00000000e+00
- 1 22 0 0 0.24033986e+00 0.52982008e+00 -0.13343209e+02 0.00000000e+00
- 1 22 0 0 0.51222818e+00 0.78175462e+00 -0.23665265e+02 0.00000000e+00
- 1 22 0 0 0.85388245e-01 -0.25186414e-01 -0.23281844e+01 0.00000000e+00
- 1 22 0 0 -0.18375203e-01 0.11351577e-01 -0.41876417e+01 0.00000000e+00
- 1 22 0 0 -0.48953156e-01 0.14199256e+00 -0.96540851e+01 0.00000000e+00
- 1 22 0 0 0.19041736e-01 0.36011112e-01 -0.63788614e+00 0.00000000e+00
- 1 22 0 0 0.91721085e-02 0.53787540e-01 -0.91440445e+00 0.00000000e+00
- 1 22 0 0 0.83196223e-01 0.92296603e-01 -0.49640046e+00 0.00000000e+00
- 1 22 0 0 -0.34026593e-02 0.41623285e-01 -0.28438423e+00 0.00000000e+00
- 1 22 0 0 0.21189468e+00 0.19849357e-01 -0.19035953e+01 0.00000000e+00
- 1 22 0 0 -0.28387992e-02 -0.10024939e+00 -0.19666077e+00 0.00000000e+00
- 1 22 0 0 -0.98552604e-01 -0.62665399e-02 -0.16279417e+00 0.00000000e+00
- 1 22 0 0 0.12629663e+00 0.10373295e-01 -0.55089793e+00 0.00000000e+00
- 1 22 0 0 0.17231815e+00 -0.95087229e-01 -0.44559392e+00 0.00000000e+00
- 1 22 0 0 -0.47974836e-01 0.38721096e-03 -0.89679421e+00 0.00000000e+00
- 1 22 0 0 -0.89078297e-01 -0.25523403e+00 -0.40539251e+01 0.00000000e+00
- 1 22 0 0 -0.43667777e-01 -0.11935571e+00 -0.27036895e+01 0.00000000e+00
- 1 22 0 0 0.25209178e-01 0.25280954e-01 -0.48694142e+00 0.00000000e+00
- 1 22 0 0 0.25154717e-01 -0.52767311e-01 -0.64219820e+00 0.00000000e+00
- 1 22 0 0 -0.13902006e+00 -0.17959475e+00 -0.14824428e+01 0.00000000e+00
- 1 22 0 0 0.81681919e-01 -0.15500871e-01 -0.18290241e+01 0.00000000e+00
- 1 22 0 0 0.27758363e+00 0.17994870e+00 -0.52411890e+01 0.00000000e+00
- 1 22 0 0 0.96530920e-01 -0.43545515e-01 -0.26433464e+01 0.00000000e+00
- 1 22 0 0 -0.46211901e-01 -0.91204106e-02 -0.10095694e+01 0.00000000e+00
- 1 22 0 0 0.29986034e+00 -0.33671616e+00 -0.26193250e+02 0.00000000e+00
- 1 22 0 0 0.23654788e+00 -0.14465175e+00 -0.12622989e+02 0.00000000e+00
- 1 22 0 0 -0.23012113e+00 -0.28672419e-01 -0.12526991e+03 0.00000000e+00
- 1 22 0 0 -0.45539459e+00 -0.19015830e+00 -0.19907120e+03 0.00000000e+00
- 1 22 0 0 0.91591701e-01 0.42348219e-01 0.10322136e+02 0.00000000e+00
- 1 22 0 0 0.81145297e-02 0.43446772e-01 0.22811159e+02 0.00000000e+00
- 1 22 0 0 0.11219873e+00 -0.31668876e-01 0.78747691e+01 0.00000000e+00
- 1 22 0 0 0.26251219e+00 0.79992790e-01 0.11273818e+02 0.00000000e+00
- 1 22 0 0 0.27962038e-01 0.31948345e-01 0.20974486e+01 0.00000000e+00
- 1 22 0 0 0.13938940e+01 0.44243334e+00 0.67699984e+02 0.00000000e+00
- 1 22 0 0 0.64039091e-01 0.26014574e+00 0.26052860e+01 0.00000000e+00
- 1 22 0 0 0.41278681e-01 0.31979469e-01 0.12538065e+01 0.00000000e+00
- 1 22 0 0 0.51768130e+00 -0.50993276e+00 0.20792914e+02 0.00000000e+00
- 1 22 0 0 0.69369507e-01 -0.15914652e+00 0.50619527e+01 0.00000000e+00
- 1 22 0 0 -0.23093963e+00 -0.17480072e+00 0.16046653e+02 0.00000000e+00
- 1 22 0 0 -0.83341770e-01 -0.19783471e+00 0.10171647e+02 0.00000000e+00
- 1 22 0 0 -0.36282605e+00 -0.56598771e-01 0.52840214e+02 0.00000000e+00
- 1 22 0 0 -0.84968627e+00 0.47826152e-01 0.10882152e+03 0.00000000e+00
- 1 22 0 0 -0.19293597e+00 0.20492713e+00 0.34660549e+01 0.00000000e+00
- 1 22 0 0 -0.15565578e-01 -0.21853843e-01 0.28480441e+00 0.00000000e+00
- 1 22 0 0 -0.94154493e-01 -0.27672886e-02 0.23248845e+01 0.00000000e+00
- 1 22 0 0 -0.45337021e+00 0.28898922e+00 0.11790335e+02 0.00000000e+00
- 1 22 0 0 0.10819239e+00 0.25924381e+00 0.19261453e+01 0.00000000e+00
- 1 22 0 0 0.26942581e+00 0.28975965e+00 0.33193249e+01 0.00000000e+00
- 1 22 0 0 -0.70723425e-01 0.36922685e-01 0.17131402e+01 0.00000000e+00
- 1 22 0 0 -0.10496542e+00 -0.81921095e-01 0.13873700e+01 0.00000000e+00
- 1 22 0 0 0.25877530e+00 0.24614735e-01 -0.10771218e+01 0.00000000e+00
- 1 22 0 0 0.52295317e+00 -0.43979617e-01 -0.15627789e+01 0.00000000e+00
- 1 22 0 0 0.94057733e-01 -0.85968563e-01 -0.67827366e+00 0.00000000e+00
- 1 22 0 0 -0.25173085e-03 0.23677976e-01 -0.23676718e-01 0.00000000e+00
- 2 111 943 944 -0.33337524e+00 0.36382191e+00 -0.60128512e+02 0.13498000e+00
- 2 111 945 946 -0.91571855e+00 0.39380055e+00 -0.80073503e+02 0.13498000e+00
- 1 22 0 0 -0.71462553e-01 0.21757232e+00 0.61909423e+01 0.00000000e+00
- 1 22 0 0 0.34154855e-01 0.16159683e-01 0.18368764e+01 0.00000000e+00
- 1 22 0 0 -0.10442354e+00 0.27659111e+00 0.90108940e+01 0.00000000e+00
- 1 22 0 0 -0.19985405e+00 0.20607102e+00 0.70040144e+01 0.00000000e+00
- 1 22 0 0 -0.61738996e-01 -0.34102166e-03 0.20591431e+01 0.00000000e+00
- 1 22 0 0 -0.33152241e+00 0.32561416e+00 0.12284852e+02 0.00000000e+00
- 2 111 947 948 -0.72117455e+00 0.27338376e+00 0.12040651e+02 0.13498000e+00
- 2 111 949 950 -0.37548376e+00 -0.15294014e+00 0.65022039e+01 0.13498000e+00
- 1 22 0 0 -0.16418643e+00 0.48161982e-01 0.90635037e+00 0.00000000e+00
- 1 22 0 0 -0.28385660e-02 0.25167408e-02 -0.46174733e-02 0.00000000e+00
- 1 22 0 0 0.17267625e-01 -0.82448839e-01 0.95037402e-01 0.00000000e+00
- 1 22 0 0 -0.22709191e-01 0.25478197e-01 0.19528480e+00 0.00000000e+00
- 1 22 0 0 -0.15824908e-02 -0.34893015e-01 0.38995317e-01 0.00000000e+00
- 1 22 0 0 -0.14874873e+00 0.73797360e-01 0.66536537e-01 0.00000000e+00
- 1 22 0 0 0.16523818e-01 -0.64940781e-01 0.13580355e+00 0.00000000e+00
- 1 22 0 0 -0.14927279e+00 -0.72488554e-01 0.26646753e+00 0.00000000e+00
- 1 211 0 0 -0.14006649e+00 0.94183150e-01 0.16365428e+00 0.13957000e+00
- 1 -211 0 0 -0.68390254e+00 0.98508340e+00 0.17178023e+01 0.13957000e+00
- 1 -211 0 0 0.51173331e+00 0.53399631e-01 -0.79039774e+00 0.13957000e+00
- 1 211 0 0 0.14698181e+01 0.41837179e+00 -0.35214290e+01 0.13957000e+00
- 1 22 0 0 0.18321709e+00 0.31007303e-01 -0.29740983e-01 0.00000000e+00
- 1 22 0 0 0.43846602e+00 0.59908186e-01 0.13755611e+00 0.00000000e+00
- 1 -211 0 0 0.33744038e-01 -0.92778192e-01 0.42533736e+02 0.13957000e+00
- 1 211 0 0 -0.21057775e+00 0.11981448e+00 0.22963957e+03 0.13957000e+00
- 2 111 951 952 0.56276836e-01 0.31934348e+00 -0.57792018e+01 0.13498000e+00
- 2 111 953 954 0.27624446e+00 0.36612013e-01 -0.26422774e+01 0.13498000e+00
- 1 22 0 0 -0.15777170e+00 0.26626423e+00 -0.38451581e+02 0.00000000e+00
- 1 22 0 0 -0.17560353e+00 0.97557679e-01 -0.21676931e+02 0.00000000e+00
- 1 22 0 0 -0.12602461e+00 0.86870077e-01 -0.15612426e+02 0.00000000e+00
- 1 22 0 0 -0.78969394e+00 0.30693047e+00 -0.64461077e+02 0.00000000e+00
- 1 22 0 0 -0.52076259e-01 0.19006066e-02 0.13932152e+01 0.00000000e+00
- 1 22 0 0 -0.66909829e+00 0.27148315e+00 0.10647436e+02 0.00000000e+00
- 1 22 0 0 -0.64463378e-01 -0.33038144e-01 0.21752832e+01 0.00000000e+00
- 1 22 0 0 -0.31102038e+00 -0.11990200e+00 0.43269207e+01 0.00000000e+00
- 1 22 0 0 0.22023897e-01 0.13059089e+00 -0.35348145e+01 0.00000000e+00
- 1 22 0 0 0.34252940e-01 0.18875259e+00 -0.22443873e+01 0.00000000e+00
- 1 22 0 0 0.22160155e+00 0.84306386e-01 -0.20176813e+01 0.00000000e+00
- 1 22 0 0 0.54642915e-01 -0.47694374e-01 -0.62459616e+00 0.00000000e+00
- 575
- 2 25 2 3 0.21933898e+03 0.11262811e+03 0.10250392e+03 0.12502844e+03
- 2 23 4 5 0.15131185e+03 0.84907342e+02 0.49149295e+02 0.89340944e+02
- 2 23 6 8 0.68027129e+02 0.27720768e+02 0.53354624e+02 0.22739035e+02
- 1 11 0 0 0.77078745e+02 0.55044942e+02 -0.18459347e+02 0.51000000e-03
- 1 -11 0 0 0.74233107e+02 0.29862399e+02 0.67608642e+02 0.51000000e-03
- 1 -13 0 0 0.97085101e+01 0.10532943e+02 0.18886557e+02 0.10566000e+00
- 1 13 0 0 0.58315779e+02 0.17187988e+02 0.34465512e+02 0.10566000e+00
- 1 22 0 0 0.28394213e-02 -0.16240073e-03 0.25553421e-02 0.00000000e+00
- 1 2212 0 0 -0.64188118e+00 -0.87207091e+00 -0.23702661e+04 0.93827000e+00
- 2 2 79 79 -0.62004435e+01 -0.32847016e+01 0.16410949e+03 0.33000000e+00
- 2 21 79 79 -0.19769064e+01 -0.20902673e+00 0.47997559e+02 0.00000000e+00
- 2 21 79 79 -0.10140893e+02 -0.18528087e+01 0.27765076e+03 0.00000000e+00
- 2 21 79 79 -0.19643745e+02 -0.24085987e+01 0.44042164e+03 0.00000000e+00
- 2 21 79 79 -0.12721811e+03 -0.13703145e+02 0.29609835e+04 0.00000000e+00
- 2 21 79 79 -0.15870103e+01 0.96140795e+00 0.17767119e+02 0.00000000e+00
- 2 21 79 79 -0.20442332e+01 0.76669319e+00 0.27488157e+02 0.00000000e+00
- 2 21 79 79 -0.31949550e+01 0.15670247e+01 0.57367478e+02 0.00000000e+00
- 2 21 79 79 -0.28375484e+00 0.60757619e+00 0.65035034e+01 0.00000000e+00
- 2 21 79 79 -0.72877307e+00 0.16586356e+00 0.23577493e+01 0.00000000e+00
- 2 21 79 79 -0.31569948e+01 -0.11444941e+01 -0.81614144e-02 0.00000000e+00
- 2 21 79 79 -0.10377843e+02 0.57670061e+01 -0.63375037e+00 0.00000000e+00
- 2 21 79 79 -0.27332670e+01 0.65899248e+01 -0.38631285e+01 0.00000000e+00
- 2 21 79 79 0.26725466e+01 0.30124339e+01 -0.80808669e+00 0.00000000e+00
- 2 21 79 79 0.28375484e+00 -0.60757619e+00 0.53930092e+00 0.00000000e+00
- 2 21 79 79 0.20029295e+01 -0.13027700e+01 0.13948599e+01 0.00000000e+00
- 2 21 79 79 0.20442332e+01 -0.76669319e+00 0.27113021e+01 0.00000000e+00
- 2 21 79 79 0.10377843e+02 -0.57670061e+01 0.19425944e+02 0.00000000e+00
- 2 21 79 79 0.12589649e+01 -0.26001717e+01 0.14783308e+02 0.00000000e+00
- 2 21 79 79 0.31949550e+01 -0.15670247e+01 0.14984406e+02 0.00000000e+00
- 2 21 79 79 0.68735366e+01 -0.38961235e+00 0.25670600e+02 0.00000000e+00
- 2 21 79 79 0.28514707e+01 0.24867901e+01 0.16011454e+02 0.00000000e+00
- 2 21 79 79 0.59688707e+00 0.77417451e+00 0.14679076e+02 0.00000000e+00
- 2 21 79 79 0.33291185e+01 0.23725544e+01 0.84982520e+02 0.00000000e+00
- 2 21 79 79 0.16535970e+01 -0.14084955e+00 0.17040387e+03 0.00000000e+00
- 2 21 79 79 -0.59688707e+00 -0.77417451e+00 0.30214358e+02 0.00000000e+00
- 2 21 79 79 -0.16535970e+01 0.14084955e+00 0.11566421e+03 0.00000000e+00
- 2 21 79 79 -0.12589649e+01 0.26001717e+01 0.90890947e+03 0.00000000e+00
- 2 21 79 79 0.49069605e+00 0.77822277e+00 0.16142901e+03 0.00000000e+00
- 2 21 79 79 0.47599609e+00 -0.12069215e+01 0.14383153e+03 0.00000000e+00
- 2 2103 79 79 0.10891460e+01 0.25613632e+01 0.10351689e+04 0.77133000e+00
- 2 -2 144 144 -0.28160006e+02 -0.41978322e+02 -0.80639010e+02 0.33000000e+00
- 2 21 144 144 -0.21536403e+02 -0.31097756e+02 -0.61883375e+02 0.00000000e+00
- 2 21 144 144 -0.37576920e+01 -0.66465820e+01 -0.12532430e+02 0.00000000e+00
- 2 21 144 144 -0.19083467e+01 -0.30044355e+01 -0.82777940e+01 0.00000000e+00
- 2 21 144 144 -0.78240552e+01 -0.13117231e+02 -0.28939011e+02 0.00000000e+00
- 2 21 144 144 0.29631490e+01 -0.10312282e+01 -0.15003833e+01 0.00000000e+00
- 2 21 144 144 -0.49560241e-01 -0.37060105e+00 -0.46892295e+00 0.00000000e+00
- 2 21 144 144 -0.26725466e+01 -0.30124339e+01 -0.26677349e+02 0.00000000e+00
- 2 21 144 144 -0.33291185e+01 -0.23725544e+01 -0.29392143e+02 0.00000000e+00
- 2 21 144 144 -0.28514707e+01 -0.24867901e+01 -0.10362693e+02 0.00000000e+00
- 2 21 144 144 -0.68735366e+01 0.38961235e+00 -0.13338367e+02 0.00000000e+00
- 2 21 144 144 0.31569948e+01 0.11444941e+01 -0.11102063e+02 0.00000000e+00
- 2 21 144 144 -0.71768099e+00 0.12957269e+01 -0.39710086e+01 0.00000000e+00
- 2 21 144 144 -0.97235523e+00 0.69059204e+00 -0.65683677e+01 0.00000000e+00
- 2 21 144 144 -0.20029295e+01 0.13027700e+01 -0.13861541e+02 0.00000000e+00
- 2 21 144 144 -0.37090043e+00 0.28519644e+00 -0.51506225e+01 0.00000000e+00
- 2 21 144 144 -0.83145824e+00 0.40854124e+01 -0.59012107e+02 0.00000000e+00
- 2 21 144 144 0.83145824e+00 -0.40854124e+01 -0.95189194e+02 0.00000000e+00
- 2 21 144 144 0.27332670e+01 -0.65899248e+01 -0.22762575e+03 0.00000000e+00
- 2 21 144 144 0.71768099e+00 -0.12957269e+01 -0.18896200e+03 0.00000000e+00
- 2 21 144 144 0.97235523e+00 -0.69059204e+00 -0.20242368e+03 0.00000000e+00
- 2 21 144 144 0.99071872e+00 0.56711000e+00 -0.57533536e+03 0.00000000e+00
- 2 21 144 144 0.29957070e+00 0.16908181e+01 -0.27037110e+03 0.00000000e+00
- 2 21 144 144 0.63843524e+00 0.89021442e+00 -0.13966851e+03 0.00000000e+00
- 2 21 144 144 0.30418365e+00 0.20705897e+01 -0.11299241e+03 0.00000000e+00
- 2 21 144 144 0.99603369e+00 0.15222687e+00 -0.48822939e+02 0.00000000e+00
- 2 21 144 144 0.28418626e+01 0.11937138e+01 -0.87256538e+02 0.00000000e+00
- 2 21 144 144 0.20605911e+01 0.11524369e+00 -0.11184490e+03 0.00000000e+00
- 2 21 144 144 0.13939032e+01 0.10595584e+01 -0.84280141e+02 0.00000000e+00
- 2 21 144 144 -0.63950038e+00 -0.58367912e-01 -0.23775458e+01 0.00000000e+00
- 2 21 144 144 -0.59764645e+00 -0.54578160e+00 -0.99988523e+02 0.00000000e+00
- 2 2 144 144 -0.71077963e+00 -0.10230732e+01 -0.18199827e+04 0.33000000e+00
- 2 21 212 212 0.14924052e+01 0.98746701e+00 -0.33243857e+00 0.00000000e+00
- 2 21 212 212 0.72877307e+00 -0.16586356e+00 -0.42925979e+00 0.00000000e+00
- 2 21 212 212 0.37090043e+00 -0.28519644e+00 -0.92133638e-01 0.00000000e+00
- 2 21 212 212 -0.29957070e+00 -0.16908181e+01 -0.23213003e+01 0.00000000e+00
- 2 21 212 212 -0.14924052e+01 -0.98746701e+00 -0.20615043e+02 0.00000000e+00
- 2 21 212 212 -0.99071872e+00 -0.56711000e+00 -0.25790159e+02 0.00000000e+00
- 2 92 80 143 -0.15360070e+03 -0.65735181e+01 0.67581379e+04 0.76455140e+03
- 2 223 224 226 -0.47641503e+01 -0.14394777e+01 0.12318536e+03 0.76560388e+00
- 1 211 0 0 -0.32435013e+01 -0.10534057e+01 0.81313479e+02 0.13957000e+00
- 1 -211 0 0 -0.20951052e-01 -0.21807786e+00 0.93249513e+01 0.13957000e+00
- 1 211 0 0 -0.11820448e+02 -0.25461050e+01 0.28619601e+03 0.13957000e+00
- 2 -213 227 228 -0.11170267e+02 -0.13493300e+01 0.25591783e+03 0.77171447e+00
- 1 321 0 0 -0.10780898e+02 -0.82517100e+00 0.24958405e+03 0.49360000e+00
- 2 -311 229 229 -0.62158428e+01 -0.92314032e+00 0.16283906e+03 0.49767000e+00
- 2 111 230 231 -0.52689407e+01 -0.72638069e+00 0.11656167e+03 0.13498000e+00
- 2 223 232 234 -0.38234347e+02 -0.45365323e+01 0.89841025e+03 0.76864943e+00
- 2 223 235 237 -0.18589127e+02 -0.20111926e+01 0.43002164e+03 0.78314649e+00
- 1 -211 0 0 -0.44120440e+02 -0.47908723e+01 0.10196409e+04 0.13957000e+00
- 2 113 238 239 -0.88452287e+01 -0.79410827e+00 0.21661177e+03 0.70389161e+00
- 2 113 240 241 -0.18467745e+01 0.46092603e+00 0.27877273e+02 0.79256839e+00
- 2 213 242 243 -0.33328777e+01 0.10149984e+01 0.67168518e+02 0.72405946e+00
- 2 311 244 244 -0.13028875e+01 0.63003719e+00 0.12604996e+02 0.49767000e+00
- 2 -313 245 246 -0.31471035e+01 0.14742283e+01 0.39111080e+02 0.91222810e+00
- 2 113 247 248 0.19917494e+00 0.16839898e+00 0.37359824e+01 0.88585421e+00
- 1 -211 0 0 -0.10040511e+01 0.74372412e-01 0.24614415e+01 0.13957000e+00
- 1 211 0 0 -0.63575218e+00 -0.38451889e+00 -0.43715274e+00 0.13957000e+00
- 2 -213 249 250 -0.11519044e+01 -0.31045450e+00 0.10631366e+00 0.78971351e+00
- 2 111 251 252 -0.59409792e+01 0.32287620e+01 0.14867488e+00 0.13498000e+00
- 2 2114 253 254 -0.67682700e+00 0.17860708e+00 -0.50064403e+00 0.12448773e+01
- 1 211 0 0 -0.45444157e+01 0.37258952e+01 -0.12057914e+01 0.13957000e+00
- 2 -2214 255 256 -0.10271878e+01 0.19776281e+01 -0.11528255e+01 0.12350841e+01
- 2 223 257 259 -0.28832446e+00 0.30025166e+00 -0.28601976e-01 0.76323606e+00
- 2 213 260 261 -0.67995658e+00 0.18275545e+01 -0.95937821e+00 0.54582521e+00
- 2 111 262 263 0.32650798e+00 0.13273558e+01 -0.35173024e+00 0.13498000e+00
- 1 -211 0 0 -0.41105094e+00 0.72489458e-01 0.27168645e+00 0.13957000e+00
- 1 211 0 0 0.18996321e+01 0.21397764e+01 -0.51999990e+00 0.13957000e+00
- 2 113 264 265 0.13787562e+01 -0.16802119e+01 0.13775399e+01 0.80133770e+00
- 1 -211 0 0 0.95797377e+00 0.25468309e+00 0.64943380e+00 0.13957000e+00
- 2 111 266 267 0.41212606e+01 -0.24143628e+01 0.73718621e+01 0.13498000e+00
- 2 213 268 269 0.20094713e+01 -0.94760936e+00 0.32553228e+01 0.89801503e+00
- 1 -211 0 0 0.30514442e+00 0.21566526e+00 0.31534645e+00 0.13957000e+00
- 2 111 270 271 0.11961400e+01 -0.13825494e+01 0.26783376e+01 0.13498000e+00
- 2 2224 272 273 0.35129307e+01 -0.20320411e+01 0.77961369e+01 0.11862011e+01
- 1 -211 0 0 0.10585917e+00 -0.29788369e+00 0.55743061e+00 0.13957000e+00
- 1 -2112 0 0 0.11139631e+01 -0.93752679e+00 0.61011819e+01 0.93957000e+00
- 2 311 274 274 0.53460958e+00 -0.30041434e+00 0.28044312e+01 0.49767000e+00
- 2 3222 275 276 0.23418102e+01 -0.12221807e+01 0.82431115e+01 0.11893700e+01
- 2 -323 277 278 0.30448489e+01 -0.11916882e+01 0.13326862e+02 0.87197158e+00
- 2 -3212 279 280 0.11386701e+01 0.71541950e-01 0.70613981e+01 0.11925500e+01
- 2 -213 281 282 0.16605081e+01 -0.14154322e-01 0.71223797e+01 0.79311690e+00
- 2 213 283 284 0.34444250e+01 0.20391563e+00 0.15385418e+02 0.82265287e+00
- 2 -213 285 286 0.18601258e+01 0.48897761e+00 0.17643174e+02 0.91998038e+00
- 2 111 287 288 -0.13745199e-01 0.11365967e+01 0.45705179e+01 0.13498000e+00
- 2 113 289 290 0.18520904e+01 0.12258835e+01 0.32642804e+02 0.76242024e+00
- 2 2214 291 292 0.74444865e+00 0.89352126e+00 0.30676796e+02 0.13024890e+01
- 1 -211 0 0 0.46162443e+00 -0.49105482e+00 0.14560621e+02 0.13957000e+00
- 2 -1114 293 294 0.15977608e+01 0.40386374e+00 0.10013920e+03 0.12863820e+01
- 2 221 295 296 -0.40077970e+00 0.48560388e+00 0.10584588e+02 0.54745000e+00
- 1 -211 0 0 0.33064510e-01 -0.12143745e+00 0.38856224e+02 0.13957000e+00
- 1 211 0 0 0.11656387e+00 0.61840214e-01 0.14216156e+03 0.13957000e+00
- 2 313 297 298 -0.45238873e+00 -0.85478346e-01 0.10795177e+03 0.99274034e+00
- 1 -321 0 0 0.25915889e+00 -0.38799079e-01 0.53196133e+02 0.49360000e+00
- 2 111 299 300 -0.35775149e+00 0.61653336e+00 0.13548334e+03 0.13498000e+00
- 2 2224 301 302 -0.64403925e+00 0.23042633e+00 0.15695623e+03 0.12188480e+01
- 2 -213 303 304 -0.48611447e-01 0.23107587e+00 0.18539777e+03 0.76538360e+00
- 2 -3214 305 306 -0.28398124e+00 0.15992944e+00 0.29311132e+03 0.14066190e+01
- 2 -311 307 307 0.80547157e+00 0.13986379e+01 0.32440163e+03 0.49767000e+00
- 2 223 308 310 -0.24048231e-01 0.23657918e+00 0.33288389e+03 0.77707620e+00
- 1 -211 0 0 0.20959795e+00 0.76974126e+00 0.18524190e+03 0.13957000e+00
- 2 111 311 312 0.21914096e-01 0.29083560e+00 0.14933243e+03 0.13498000e+00
- 2 2214 313 314 0.43537070e+00 0.51550785e+00 0.36036304e+03 0.11721696e+01
- 2 92 145 211 -0.64905782e+02 -0.10247353e+03 -0.44407985e+04 0.57372620e+03
- 2 -213 315 316 -0.17211884e+02 -0.25357136e+02 -0.49801894e+02 0.72073980e+00
- 1 211 0 0 -0.31586322e+02 -0.47016287e+02 -0.90419833e+02 0.13957000e+00
- 1 -321 0 0 -0.23284896e+01 -0.30521976e+01 -0.71512883e+01 0.49360000e+00
- 2 -3114 317 318 -0.71314285e+01 -0.12084859e+02 -0.25556693e+02 0.14198129e+01
- 2 223 319 321 -0.88992217e+00 -0.22248048e+01 -0.57648585e+01 0.77961301e+00
- 2 1114 322 323 -0.20373918e+01 -0.31043658e+01 -0.62021758e+01 0.12366152e+01
- 2 -313 324 325 -0.12388171e+01 -0.29063398e+01 -0.65787568e+01 0.91588895e+00
- 1 321 0 0 0.71745232e+00 0.80323163e-01 -0.86481891e+00 0.49360000e+00
- 2 111 326 327 -0.24437348e+00 -0.28666762e+00 0.19673160e-01 0.13498000e+00
- 2 113 328 329 0.17218995e+01 -0.40923851e+00 -0.21763873e+01 0.75610373e+00
- 2 223 330 331 -0.11492054e+01 -0.17588099e+01 -0.76072536e+01 0.77643813e+00
- 1 -211 0 0 0.12221756e+00 0.10566254e+00 -0.11212798e+00 0.13957000e+00
- 2 111 332 333 0.19460272e+00 -0.35678167e+00 -0.36337719e+01 0.13498000e+00
- 1 211 0 0 -0.14353774e+01 -0.12120579e+01 -0.97734249e+01 0.13957000e+00
- 1 -211 0 0 -0.71574301e+00 -0.25301246e+00 -0.57854777e+01 0.13957000e+00
- 2 111 334 335 -0.19465632e+00 -0.37393290e-01 -0.84771255e+00 0.13498000e+00
- 2 -3214 336 337 -0.16284243e+01 -0.15031489e+01 -0.98492336e+01 0.13507724e+01
- 2 213 338 339 -0.95207134e+00 -0.81407789e+00 -0.64516639e+01 0.78728299e+00
- 2 3114 340 341 -0.24936590e+01 -0.77381630e+00 -0.11610477e+02 0.13796063e+01
- 1 211 0 0 0.32297173e-01 -0.38640088e+00 -0.45867326e+01 0.13957000e+00
- 2 -2224 342 343 -0.32554737e+01 -0.90371536e+00 -0.98984268e+01 0.13228433e+01
- 1 211 0 0 -0.13480541e+00 -0.35565042e+00 -0.29178819e+00 0.13957000e+00
- 2 2114 344 345 -0.14774465e+01 -0.71716042e-02 -0.49394875e+01 0.11479641e+01
- 1 211 0 0 0.48899372e+00 -0.27460134e+00 -0.25544200e+01 0.13957000e+00
- 2 -213 346 347 -0.64102542e+00 -0.31117224e-01 -0.20108226e+01 0.67606532e+00
- 2 -313 348 349 -0.12958694e+01 0.52292597e+00 -0.39124449e+01 0.10048507e+01
- 1 321 0 0 0.39319511e+00 0.75937262e+00 -0.20431255e+01 0.49360000e+00
- 2 -3122 350 351 0.75815325e+00 0.20216033e+00 -0.39339377e+01 0.11156800e+01
- 1 -321 0 0 -0.52185845e-01 0.12086331e+01 -0.68425809e+01 0.49360000e+00
- 2 2214 352 353 -0.91341304e+00 0.77243368e+00 -0.12009309e+02 0.11751261e+01
- 2 -213 354 355 -0.12777866e+01 0.93625796e+00 -0.71149362e+01 0.64717310e+00
- 2 213 356 357 -0.70960187e+00 0.10330529e+01 -0.10651604e+02 0.75870999e+00
- 2 223 358 360 -0.88128281e+00 0.12357239e+01 -0.21286056e+02 0.79180280e+00
- 1 -211 0 0 0.37427733e+00 0.52942932e+00 -0.10342877e+02 0.13957000e+00
- 2 223 361 363 -0.52428038e+00 0.52367095e+00 -0.17993567e+02 0.78781425e+00
- 1 211 0 0 0.45035167e-01 0.22332882e+00 -0.66701472e+01 0.13957000e+00
- 1 -211 0 0 0.18176558e+00 0.32350438e+00 -0.32932396e+01 0.13957000e+00
- 2 223 364 366 0.52929361e-01 -0.20258682e+01 -0.60744436e+02 0.78448386e+00
- 2 -313 367 368 0.19930630e+01 -0.22855718e+01 -0.88436092e+02 0.95100314e+00
- 2 313 369 370 -0.27762565e-02 -0.27285034e+01 -0.93691888e+02 0.89432770e+00
- 2 223 371 373 0.74856980e+00 -0.69861753e+00 -0.38748559e+02 0.78842478e+00
- 2 223 374 376 0.51797362e+00 -0.18188302e+01 -0.16375085e+03 0.83738690e+00
- 2 221 377 379 0.47065672e+00 -0.47616963e+00 -0.42062785e+02 0.54745000e+00
- 2 -313 380 381 0.64218588e+00 -0.87421012e+00 -0.99430929e+02 0.92752914e+00
- 2 313 382 383 0.37803312e+00 -0.10850340e+00 -0.14231592e+03 0.94801652e+00
- 1 -2112 0 0 -0.27382462e+00 0.34228801e+00 -0.23928227e+03 0.93957000e+00
- 2 113 384 385 0.11076637e+01 0.63492390e+00 -0.16284198e+03 0.76391328e+00
- 1 2112 0 0 0.41760774e+00 0.34389291e+00 -0.15599987e+03 0.93957000e+00
- 2 221 386 388 0.29368499e+00 0.25099741e+00 -0.46201391e+02 0.54745000e+00
- 1 211 0 0 -0.10451282e+00 0.68646381e-01 -0.20872930e+02 0.13957000e+00
- 1 -321 0 0 0.10054842e+01 0.29898128e+00 -0.17981986e+03 0.49360000e+00
- 2 323 389 390 -0.36907788e-01 0.30811165e+00 -0.88594554e+02 0.89321652e+00
- 1 -211 0 0 0.48477474e+00 0.42705443e+00 -0.16201809e+02 0.13957000e+00
- 1 211 0 0 -0.72687486e-01 0.23025623e+00 -0.42173038e+02 0.13957000e+00
- 1 -211 0 0 0.30472036e+00 0.22910324e+00 -0.35070381e+02 0.13957000e+00
- 2 111 391 392 0.83794751e+00 0.45223312e+00 -0.73567920e+02 0.13498000e+00
- 2 223 393 395 0.68807430e+00 0.88269498e+00 -0.79458284e+02 0.78056270e+00
- 2 -2114 396 397 0.12346030e+01 0.54298862e+00 -0.74493873e+02 0.12384994e+01
- 1 211 0 0 0.38826603e+00 0.11472119e+01 -0.51763882e+02 0.13957000e+00
- 2 1114 398 399 0.19736569e+01 0.37806849e+00 -0.85517025e+02 0.13169663e+01
- 2 113 400 401 0.71365663e-01 -0.18571657e+00 -0.13062455e+02 0.75515046e+00
- 2 223 402 403 0.84042102e+00 -0.31241731e+00 -0.41668950e+02 0.77318807e+00
- 2 331 404 406 0.35735525e-01 0.35343706e+00 -0.19572041e+02 0.95767369e+00
- 2 221 407 409 -0.40038137e+00 0.68876828e+00 -0.30113920e+02 0.54745000e+00
- 2 223 410 412 -0.19643700e+00 -0.41679400e+00 -0.60069531e+02 0.78642240e+00
- 2 -311 413 413 0.15986503e-01 -0.92713185e+00 -0.17834534e+03 0.49767000e+00
- 2 323 414 415 -0.95061161e+00 -0.54168545e+00 -0.16363820e+04 0.91827342e+00
- 2 92 213 223 -0.19061592e+00 -0.27089881e+01 -0.49580334e+02 0.17215305e+02
- 1 -211 0 0 -0.21948866e+00 -0.21960412e+00 -0.13292103e+01 0.13957000e+00
- 2 223 416 418 -0.27820027e-02 0.18115776e+00 -0.41891336e+01 0.78116234e+00
- 2 113 419 420 -0.87523806e-01 -0.16339374e+00 -0.97419161e+00 0.76138459e+00
- 2 111 421 422 0.74239973e+00 -0.11127128e-01 0.13120420e-01 0.13498000e+00
- 2 111 423 424 0.17790600e+00 -0.29334950e+00 -0.16188161e+00 0.13498000e+00
- 1 321 0 0 0.97871245e+00 0.39725056e+00 -0.10072161e+01 0.49360000e+00
- 2 -313 425 426 0.67805920e+00 -0.61808539e+00 -0.18381768e+01 0.97077002e+00
- 2 -213 427 428 -0.99684853e+00 -0.25909031e+00 -0.47861288e+01 0.69795124e+00
- 2 3224 429 430 -0.10118831e+01 -0.93053289e+00 -0.16919679e+02 0.13878951e+01
- 2 313 431 432 0.41960230e+00 -0.18045109e+00 -0.14820925e+01 0.81916424e+00
- 1 -2112 0 0 -0.86876953e+00 -0.61176231e+00 -0.16905745e+02 0.93957000e+00
- 1 211 0 0 -0.11107205e+01 -0.26828120e+00 0.24893159e+02 0.13957000e+00
- 1 -211 0 0 -0.26484717e+01 -0.83547598e+00 0.65823351e+02 0.13957000e+00
- 2 111 433 434 -0.10049581e+01 -0.33572047e+00 0.32468846e+02 0.13498000e+00
- 1 -211 0 0 -0.10379030e+02 -0.13862045e+01 0.23895912e+03 0.13957000e+00
- 2 111 435 436 -0.79123743e+00 0.36874549e-01 0.16958706e+02 0.13498000e+00
- 2 310 437 438 -0.62158428e+01 -0.92314032e+00 0.16283906e+03 0.49767000e+00
- 1 22 0 0 -0.41939583e+00 -0.88070477e-01 0.98656214e+01 0.00000000e+00
- 1 22 0 0 -0.48495449e+01 -0.63831021e+00 0.10669605e+03 0.00000000e+00
- 1 211 0 0 -0.24061837e+02 -0.28797832e+01 0.56043240e+03 0.13957000e+00
- 1 -211 0 0 -0.28594073e+01 -0.28823195e+00 0.68629337e+02 0.13957000e+00
- 2 111 439 440 -0.11313102e+02 -0.13685171e+01 0.26934852e+03 0.13498000e+00
- 1 -211 0 0 -0.78965207e+01 -0.86102887e+00 0.18655467e+03 0.13957000e+00
- 1 211 0 0 -0.22980546e+01 -0.91778617e-01 0.52240668e+02 0.13957000e+00
- 2 111 441 442 -0.83945520e+01 -0.10583851e+01 0.19122630e+03 0.13498000e+00
- 1 -211 0 0 -0.59659361e+01 -0.23723107e+00 0.14424750e+03 0.13957000e+00
- 1 211 0 0 -0.28792927e+01 -0.55687720e+00 0.72364267e+02 0.13957000e+00
- 1 211 0 0 -0.11813933e+01 0.51265437e+00 0.14132043e+02 0.13957000e+00
- 1 -211 0 0 -0.66538115e+00 -0.51728341e-01 0.13745230e+02 0.13957000e+00
- 1 211 0 0 -0.31419273e+00 0.37533441e-01 0.10072899e+02 0.13957000e+00
- 2 111 443 444 -0.30186850e+01 0.97746496e+00 0.57095619e+02 0.13498000e+00
- 2 310 445 446 -0.13028875e+01 0.63003719e+00 0.12604996e+02 0.49767000e+00
- 1 -321 0 0 -0.21380234e+01 0.13025665e+01 0.29004941e+02 0.49360000e+00
- 1 211 0 0 -0.10090802e+01 0.17166178e+00 0.10106139e+02 0.13957000e+00
- 1 211 0 0 -0.29564701e-01 -0.92458924e-01 0.10843050e+00 0.13957000e+00
- 1 -211 0 0 0.22873964e+00 0.26085790e+00 0.36275519e+01 0.13957000e+00
- 1 -211 0 0 -0.10699971e+00 -0.31490029e+00 0.12253399e+00 0.13957000e+00
- 2 111 447 448 -0.10449047e+01 0.44457907e-02 -0.16220329e-01 0.13498000e+00
- 1 22 0 0 -0.13497963e+01 0.69053781e+00 0.75056329e-01 0.00000000e+00
- 1 22 0 0 -0.45911829e+01 0.25382242e+01 0.73618553e-01 0.00000000e+00
- 1 2212 0 0 -0.38185062e+00 -0.70566068e-01 -0.31855823e+00 0.93827000e+00
- 1 -211 0 0 -0.29497638e+00 0.24917315e+00 -0.18208580e+00 0.13957000e+00
- 1 -2112 0 0 -0.74133554e+00 0.18530672e+01 -0.98407619e+00 0.93957000e+00
- 1 -211 0 0 -0.28585225e+00 0.12456086e+00 -0.16874933e+00 0.13957000e+00
- 1 -211 0 0 0.91462504e-01 0.13905909e+00 -0.60652934e-01 0.13957000e+00
- 1 211 0 0 -0.24508873e-01 -0.10731274e+00 0.19433189e-01 0.13957000e+00
- 2 111 449 450 -0.35527809e+00 0.26850531e+00 0.12617769e-01 0.13498000e+00
- 1 211 0 0 -0.50577880e+00 0.10988536e+01 -0.35422314e+00 0.13957000e+00
- 2 111 451 452 -0.17417778e+00 0.72870089e+00 -0.60515506e+00 0.13498000e+00
- 1 22 0 0 0.33244566e+00 0.13032417e+01 -0.32994345e+00 0.00000000e+00
- 1 22 0 0 -0.59376841e-02 0.24114049e-01 -0.21786788e-01 0.00000000e+00
- 1 -211 0 0 0.24843302e+00 -0.13848995e+00 -0.28310013e-01 0.13957000e+00
- 1 211 0 0 0.11303231e+01 -0.15417219e+01 0.14058499e+01 0.13957000e+00
- 1 22 0 0 0.13752175e+01 -0.74302597e+00 0.23513396e+01 0.00000000e+00
- 1 22 0 0 0.27460431e+01 -0.16713368e+01 0.50205225e+01 0.00000000e+00
- 1 211 0 0 0.15403586e+01 -0.41534016e+00 0.17473514e+01 0.13957000e+00
- 2 111 453 454 0.46911261e+00 -0.53226920e+00 0.15079714e+01 0.13498000e+00
- 1 22 0 0 0.23032923e+00 -0.30382979e+00 0.47480520e+00 0.00000000e+00
- 1 22 0 0 0.96581074e+00 -0.10787196e+01 0.22035324e+01 0.00000000e+00
- 1 2212 0 0 0.30408536e+01 -0.19077944e+01 0.70430421e+01 0.93827000e+00
- 1 211 0 0 0.47207708e+00 -0.12424666e+00 0.75309478e+00 0.13957000e+00
- 2 310 455 456 0.53460958e+00 -0.30041434e+00 0.28044312e+01 0.49767000e+00
- 1 2212 0 0 0.19012609e+01 -0.78472964e+00 0.63443640e+01 0.93827000e+00
- 2 111 457 458 0.44054921e+00 -0.43745106e+00 0.18987474e+01 0.13498000e+00
- 2 -311 459 459 0.19523783e+01 -0.49951268e+00 0.77435094e+01 0.49767000e+00
- 1 -211 0 0 0.10924706e+01 -0.69217554e+00 0.55833531e+01 0.13957000e+00
- 2 -3122 460 461 0.10725993e+01 0.13741382e+00 0.65405544e+01 0.11156800e+01
- 1 22 0 0 0.66070794e-01 -0.65871874e-01 0.52084364e+00 0.00000000e+00
- 1 -211 0 0 0.28717730e+00 0.26480142e+00 0.12308762e+01 0.13957000e+00
- 2 111 462 463 0.13733308e+01 -0.27895574e+00 0.58915035e+01 0.13498000e+00
- 1 211 0 0 0.56146582e+00 0.24328287e+00 0.36703088e+01 0.13957000e+00
- 2 111 464 465 0.28829592e+01 -0.39367247e-01 0.11715109e+02 0.13498000e+00
- 1 -211 0 0 0.12453910e+01 0.19817213e+00 0.76653030e+01 0.13957000e+00
- 2 111 466 467 0.61473482e+00 0.29080549e+00 0.99778709e+01 0.13498000e+00
- 1 22 0 0 0.23616774e-01 0.70160144e+00 0.25766096e+01 0.00000000e+00
- 1 22 0 0 -0.37361974e-01 0.43499522e+00 0.19939083e+01 0.00000000e+00
- 1 -211 0 0 0.14340013e+01 0.12328379e+01 0.27641226e+02 0.13957000e+00
- 1 211 0 0 0.41808908e+00 -0.69544525e-02 0.50015779e+01 0.13957000e+00
- 1 2212 0 0 0.54167353e+00 0.40286955e+00 0.17392614e+02 0.93827000e+00
- 2 111 468 469 0.20277512e+00 0.49065171e+00 0.13284182e+02 0.13498000e+00
- 1 -2112 0 0 0.78339258e+00 0.27607924e+00 0.61133710e+02 0.93957000e+00
- 1 211 0 0 0.81436825e+00 0.12778450e+00 0.39005492e+02 0.13957000e+00
- 1 22 0 0 -0.42016117e+00 0.21596071e+00 0.87796434e+01 0.00000000e+00
- 1 22 0 0 0.19381472e-01 0.26964317e+00 0.18049445e+01 0.00000000e+00
- 1 321 0 0 -0.14252417e+00 -0.33583038e+00 0.80056337e+02 0.49360000e+00
- 1 -211 0 0 -0.30986455e+00 0.25035203e+00 0.27895438e+02 0.13957000e+00
- 1 22 0 0 -0.29473709e+00 0.58308557e+00 0.12013637e+03 0.00000000e+00
- 1 22 0 0 -0.63014406e-01 0.33447795e-01 0.15346966e+02 0.00000000e+00
- 1 2212 0 0 -0.69054690e+00 0.32434853e+00 0.14340699e+03 0.93827000e+00
- 1 211 0 0 0.46507644e-01 -0.93922199e-01 0.13549248e+02 0.13957000e+00
- 1 -211 0 0 0.19852439e+00 -0.17879772e+00 0.63339782e+02 0.13957000e+00
- 2 111 470 471 -0.24713584e+00 0.40987359e+00 0.12205799e+03 0.13498000e+00
- 2 -3122 472 473 -0.22820284e+00 0.28151341e+00 0.27615453e+03 0.11156800e+01
- 2 111 474 475 -0.55778403e-01 -0.12158397e+00 0.16956784e+02 0.13498000e+00
- 1 130 0 0 0.80547157e+00 0.13986379e+01 0.32440163e+03 0.49767000e+00
- 1 211 0 0 0.61206587e-01 0.10067499e+00 0.28423817e+02 0.13957000e+00
- 1 -211 0 0 0.12208266e+00 0.10966050e+00 0.88687218e+02 0.13957000e+00
- 2 111 476 477 -0.20733748e+00 0.26243693e-01 0.21577285e+03 0.13498000e+00
- 1 22 0 0 0.21386278e-03 0.82703592e-01 0.76640016e+02 0.00000000e+00
- 1 22 0 0 0.21700233e-01 0.20813200e+00 0.72692409e+02 0.00000000e+00
- 1 2112 0 0 0.39170290e+00 0.25325390e+00 0.29008788e+03 0.93957000e+00
- 1 211 0 0 0.43667798e-01 0.26225395e+00 0.70275157e+02 0.13957000e+00
- 1 -211 0 0 -0.16411009e+01 -0.27203293e+01 -0.51575860e+01 0.13957000e+00
- 2 111 478 479 -0.15570783e+02 -0.22636806e+02 -0.44644308e+02 0.13498000e+00
- 2 -3122 480 481 -0.57337377e+01 -0.97457795e+01 -0.21091114e+02 0.11156800e+01
- 1 211 0 0 -0.13976908e+01 -0.23390792e+01 -0.44655791e+01 0.13957000e+00
- 1 211 0 0 -0.16630819e+00 -0.25105373e+00 -0.83695073e+00 0.13957000e+00
- 1 -211 0 0 -0.54870349e+00 -0.17677231e+01 -0.44958227e+01 0.13957000e+00
- 2 111 482 483 -0.17491049e+00 -0.20602796e+00 -0.43208504e+00 0.13498000e+00
- 1 2112 0 0 -0.18291844e+01 -0.28955503e+01 -0.53519483e+01 0.93957000e+00
- 1 -211 0 0 -0.20820735e+00 -0.20881550e+00 -0.85022747e+00 0.13957000e+00
- 1 -321 0 0 -0.56718589e+00 -0.19122591e+01 -0.36761792e+01 0.49360000e+00
- 1 211 0 0 -0.67163125e+00 -0.99408071e+00 -0.29025776e+01 0.13957000e+00
- 1 22 0 0 0.15162819e-01 -0.30387176e-02 -0.18424708e-02 0.00000000e+00
- 1 22 0 0 -0.25953630e+00 -0.28362890e+00 0.21515631e-01 0.00000000e+00
- 1 211 0 0 0.11043960e+01 -0.31921185e-01 -0.90180851e+00 0.13957000e+00
- 1 -211 0 0 0.61750352e+00 -0.37731732e+00 -0.12745788e+01 0.13957000e+00
- 1 211 0 0 -0.52986142e+00 -0.24974466e+00 -0.21214537e+01 0.13957000e+00
- 1 -211 0 0 -0.61934398e+00 -0.15090652e+01 -0.54857999e+01 0.13957000e+00
- 1 22 0 0 0.86895284e-01 -0.21966084e+00 -0.15542486e+01 0.00000000e+00
- 1 22 0 0 0.10770744e+00 -0.13712083e+00 -0.20795233e+01 0.00000000e+00
- 1 22 0 0 -0.68649544e-01 -0.81141885e-01 -0.36110689e+00 0.00000000e+00
- 1 22 0 0 -0.12600678e+00 0.43748594e-01 -0.48660566e+00 0.00000000e+00
- 2 -3122 484 485 -0.13953266e+01 -0.14617390e+01 -0.90993282e+01 0.11156800e+01
- 2 111 486 487 -0.23309770e+00 -0.41409907e-01 -0.74990538e+00 0.13498000e+00
- 1 211 0 0 -0.38512008e+00 -0.47307227e+00 -0.15559216e+01 0.13957000e+00
- 2 111 488 489 -0.56695126e+00 -0.34100562e+00 -0.48957423e+01 0.13498000e+00
- 2 3122 490 491 -0.23197556e+01 -0.84827032e+00 -0.10422944e+02 0.11156800e+01
- 1 -211 0 0 -0.17390345e+00 0.74454019e-01 -0.11875327e+01 0.13957000e+00
- 1 -2212 0 0 -0.19054252e+01 -0.38833456e+00 -0.64151412e+01 0.93827000e+00
- 1 -211 0 0 -0.13500485e+01 -0.51538080e+00 -0.34832856e+01 0.13957000e+00
- 1 2112 0 0 -0.12464035e+01 0.53633227e-01 -0.45054977e+01 0.93957000e+00
- 2 111 492 493 -0.23104301e+00 -0.60804831e-01 -0.43398985e+00 0.13498000e+00
- 1 -211 0 0 0.91190696e-01 -0.69619333e-01 -0.49950768e+00 0.13957000e+00
- 2 111 494 495 -0.73221611e+00 0.38502109e-01 -0.15113149e+01 0.13498000e+00
- 2 -311 496 496 -0.20551182e+00 0.18720300e+00 -0.14032964e+01 0.49767000e+00
- 2 111 497 498 -0.10903576e+01 0.33572297e+00 -0.25091484e+01 0.13498000e+00
- 1 -2212 0 0 0.70165931e+00 0.94589517e-01 -0.32891270e+01 0.93827000e+00
- 1 211 0 0 0.56493942e-01 0.10757081e+00 -0.64481069e+00 0.13957000e+00
- 1 2212 0 0 -0.54940801e+00 0.65305977e+00 -0.88114193e+01 0.93827000e+00
- 2 111 499 500 -0.36400503e+00 0.11937390e+00 -0.31978901e+01 0.13498000e+00
- 1 -211 0 0 -0.12436033e+01 0.72841124e+00 -0.63506111e+01 0.13957000e+00
- 2 111 501 502 -0.34183349e-01 0.20784672e+00 -0.76432513e+00 0.13498000e+00
- 1 211 0 0 -0.94465783e-01 0.72083612e+00 -0.63844725e+01 0.13957000e+00
- 2 111 503 504 -0.61513609e+00 0.31221680e+00 -0.42671311e+01 0.13498000e+00
- 1 211 0 0 -0.46759791e+00 0.40272328e+00 -0.84820784e+01 0.13957000e+00
- 1 -211 0 0 -0.32997135e+00 0.79578757e+00 -0.91505359e+01 0.13957000e+00
- 2 111 505 506 -0.83713549e-01 0.37213061e-01 -0.36534414e+01 0.13498000e+00
- 1 211 0 0 -0.16107768e+00 0.19910579e+00 -0.47148063e+01 0.13957000e+00
- 1 -211 0 0 -0.47613811e+00 0.30301670e+00 -0.83169542e+01 0.13957000e+00
- 2 111 507 508 0.11293541e+00 0.21548459e-01 -0.49618064e+01 0.13498000e+00
- 1 -211 0 0 0.55587209e-01 -0.34692002e+00 -0.61173433e+01 0.13957000e+00
- 1 211 0 0 -0.12410115e+00 -0.58501403e+00 -0.20213697e+02 0.13957000e+00
- 2 111 509 510 0.12144330e+00 -0.10939341e+01 -0.34413396e+02 0.13498000e+00
- 1 -321 0 0 0.11875519e+01 -0.16586138e+01 -0.66151833e+02 0.49360000e+00
- 1 211 0 0 0.80551114e+00 -0.62695802e+00 -0.22284259e+02 0.13957000e+00
- 1 321 0 0 0.27518162e+00 -0.16257609e+01 -0.53682402e+02 0.49360000e+00
- 1 -211 0 0 -0.27795787e+00 -0.11027426e+01 -0.40009485e+02 0.13957000e+00
- 1 211 0 0 0.89367117e-01 -0.12473258e+00 -0.10562347e+02 0.13957000e+00
- 1 -211 0 0 0.54786293e+00 -0.34908926e+00 -0.24299090e+02 0.13957000e+00
- 2 111 511 512 0.11133975e+00 -0.22479569e+00 -0.38871222e+01 0.13498000e+00
- 1 211 0 0 0.37703840e+00 -0.64125172e+00 -0.68971247e+02 0.13957000e+00
- 1 -211 0 0 -0.13360836e+00 -0.25218317e+00 -0.19274983e+02 0.13957000e+00
- 2 111 513 514 0.27454359e+00 -0.92539535e+00 -0.75504618e+02 0.13498000e+00
- 2 111 515 516 0.20489091e+00 -0.45160117e-01 -0.13443234e+02 0.13498000e+00
- 2 111 517 518 0.69440301e-01 -0.30742538e+00 -0.17260409e+02 0.13498000e+00
- 2 111 519 520 0.19632552e+00 -0.12358413e+00 -0.11359142e+02 0.13498000e+00
- 2 -311 521 521 0.35954302e+00 -0.88141864e+00 -0.65623173e+02 0.49767000e+00
- 2 111 522 523 0.28264287e+00 0.72085262e-02 -0.33807755e+02 0.13498000e+00
- 1 321 0 0 0.56521320e+00 -0.15016680e+00 -0.12001108e+03 0.49360000e+00
- 1 -211 0 0 -0.18718009e+00 0.41663403e-01 -0.22304837e+02 0.13957000e+00
- 1 211 0 0 0.28365765e+00 0.21038729e+00 -0.19297503e+02 0.13957000e+00
- 1 -211 0 0 0.82400610e+00 0.42453661e+00 -0.14354447e+03 0.13957000e+00
- 1 -211 0 0 0.11137954e+00 0.99133105e-01 -0.73073532e+01 0.13957000e+00
- 1 211 0 0 0.18207365e-01 0.76167610e-01 -0.12157160e+02 0.13957000e+00
- 2 111 524 525 0.16409808e+00 0.75696691e-01 -0.26736878e+02 0.13498000e+00
- 2 311 526 526 -0.77882086e-01 -0.63926945e-01 -0.36758513e+02 0.49767000e+00
- 1 211 0 0 0.40974298e-01 0.37203860e+00 -0.51836041e+02 0.13957000e+00
- 1 22 0 0 0.43103401e+00 0.29628056e+00 -0.37270898e+02 0.00000000e+00
- 1 22 0 0 0.40691350e+00 0.15595256e+00 -0.36297023e+02 0.00000000e+00
- 1 211 0 0 0.41007793e+00 0.22360375e+00 -0.37663011e+02 0.13957000e+00
- 1 -211 0 0 -0.38361092e-01 0.63520159e-01 -0.81058749e+01 0.13957000e+00
- 2 111 527 528 0.31635747e+00 0.59557107e+00 -0.33689399e+02 0.13498000e+00
- 1 -2112 0 0 0.77468688e+00 0.47351382e+00 -0.60543330e+02 0.93957000e+00
- 2 111 529 530 0.45991615e+00 0.69474808e-01 -0.13950543e+02 0.13498000e+00
- 1 2112 0 0 0.15484062e+01 0.12194414e-02 -0.67197217e+02 0.93957000e+00
- 1 -211 0 0 0.42525075e+00 0.37684905e+00 -0.18319808e+02 0.13957000e+00
- 1 211 0 0 0.32888532e+00 -0.29762301e+00 -0.82927387e+01 0.13957000e+00
- 1 -211 0 0 -0.25751965e+00 0.11190644e+00 -0.47697161e+01 0.13957000e+00
- 1 22 0 0 0.23314013e+00 0.10846335e+00 -0.23361759e+02 0.00000000e+00
- 2 111 531 532 0.60728089e+00 -0.42088065e+00 -0.18307192e+02 0.13498000e+00
- 2 111 533 534 0.44787484e-01 0.10947329e+00 -0.46428414e+01 0.13498000e+00
- 2 111 535 536 -0.97401717e-01 -0.78358787e-01 -0.41826119e+01 0.13498000e+00
- 2 221 537 539 0.88349758e-01 0.32232256e+00 -0.10746588e+02 0.54745000e+00
- 2 111 540 541 -0.26676359e+00 0.17214823e+00 -0.84191961e+01 0.13498000e+00
- 2 111 542 543 -0.23937519e-01 0.26772638e+00 -0.11412504e+02 0.13498000e+00
- 2 111 544 545 -0.10968026e+00 0.24889367e+00 -0.10282220e+02 0.13498000e+00
- 1 -211 0 0 -0.20568605e+00 -0.26675485e+00 -0.15935552e+02 0.13957000e+00
- 1 211 0 0 0.18237179e+00 -0.14211397e+00 -0.22147569e+02 0.13957000e+00
- 2 111 546 547 -0.17312275e+00 -0.79251875e-02 -0.21986409e+02 0.13498000e+00
- 1 130 0 0 0.15986503e-01 -0.92713185e+00 -0.17834534e+03 0.49767000e+00
- 1 321 0 0 -0.85955868e+00 -0.16013039e+00 -0.10676381e+04 0.49360000e+00
- 2 111 548 549 -0.91052933e-01 -0.38155506e+00 -0.56874396e+03 0.13498000e+00
- 1 -211 0 0 0.26229753e+00 0.14329638e+00 -0.13495537e+01 0.13957000e+00
- 1 211 0 0 -0.40370931e-01 -0.64651735e-01 -0.14056847e+01 0.13957000e+00
- 2 111 550 551 -0.22470861e+00 0.10251312e+00 -0.14338953e+01 0.13498000e+00
- 1 -211 0 0 0.63972044e-01 0.15247170e+00 -0.81096999e+00 0.13957000e+00
- 1 211 0 0 -0.15149585e+00 -0.31586544e+00 -0.16322162e+00 0.13957000e+00
- 1 22 0 0 0.33739137e+00 -0.60187741e-01 -0.32498249e-01 0.00000000e+00
- 1 22 0 0 0.40500836e+00 0.49060613e-01 0.45618668e-01 0.00000000e+00
- 1 22 0 0 0.89783640e-01 -0.23513991e+00 -0.15757377e+00 0.00000000e+00
- 1 22 0 0 0.88122364e-01 -0.58209588e-01 -0.43078455e-02 0.00000000e+00
- 1 -321 0 0 0.21000194e+00 -0.49424216e-01 -0.10753893e+01 0.49360000e+00
- 1 211 0 0 0.46805726e+00 -0.56866117e+00 -0.76278757e+00 0.13957000e+00
- 1 -211 0 0 -0.94938318e+00 -0.33217014e-01 -0.40424765e+01 0.13957000e+00
- 2 111 552 553 -0.47465355e-01 -0.22587329e+00 -0.74365226e+00 0.13498000e+00
- 2 3122 554 555 -0.94816431e+00 -0.62380207e+00 -0.14725621e+02 0.11156800e+01
- 1 211 0 0 -0.63718765e-01 -0.30673082e+00 -0.21940575e+01 0.13957000e+00
- 1 321 0 0 0.89330015e-01 -0.19208432e+00 -0.11305066e+01 0.49360000e+00
- 1 -211 0 0 0.33027228e+00 0.11633222e-01 -0.35158586e+00 0.13957000e+00
- 1 22 0 0 -0.30772132e+00 -0.16144933e+00 0.96887860e+01 0.00000000e+00
- 1 22 0 0 -0.69723674e+00 -0.17427114e+00 0.22780060e+02 0.00000000e+00
- 1 22 0 0 -0.77048433e+00 0.14794324e-01 0.16531253e+02 0.00000000e+00
- 1 22 0 0 -0.20753105e-01 0.22080226e-01 0.42745290e+00 0.00000000e+00
- 1 211 0 0 -0.20486398e+01 -0.34281057e+00 0.58748534e+02 0.13957000e+00
- 1 -211 0 0 -0.41672031e+01 -0.58032974e+00 0.10409052e+03 0.13957000e+00
- 1 22 0 0 -0.65424251e+01 -0.84734199e+00 0.15679358e+03 0.00000000e+00
- 1 22 0 0 -0.47706768e+01 -0.52117516e+00 0.11255494e+03 0.00000000e+00
- 1 22 0 0 -0.97381560e-01 -0.17240292e-01 0.19467338e+01 0.00000000e+00
- 1 22 0 0 -0.82971704e+01 -0.10411448e+01 0.18927957e+03 0.00000000e+00
- 1 22 0 0 -0.16677296e+01 0.46982876e+00 0.31286726e+02 0.00000000e+00
- 1 22 0 0 -0.13509553e+01 0.50763620e+00 0.25808894e+02 0.00000000e+00
- 1 -211 0 0 -0.23864239e+00 0.26930852e+00 0.39486263e+01 0.13957000e+00
- 1 211 0 0 -0.10642451e+01 0.36072867e+00 0.86563692e+01 0.13957000e+00
- 1 22 0 0 -0.74122601e+00 0.63761507e-01 -0.17459028e-02 0.00000000e+00
- 1 22 0 0 -0.30367867e+00 -0.59315716e-01 -0.14474426e-01 0.00000000e+00
- 1 22 0 0 -0.13854912e+00 0.91330079e-01 -0.59747653e-01 0.00000000e+00
- 1 22 0 0 -0.21672896e+00 0.17717523e+00 0.72365422e-01 0.00000000e+00
- 1 22 0 0 -0.10956190e+00 0.61821914e+00 -0.54362437e+00 0.00000000e+00
- 1 22 0 0 -0.64615879e-01 0.11048175e+00 -0.61530689e-01 0.00000000e+00
- 1 22 0 0 0.29532992e+00 -0.42504921e+00 0.11072862e+01 0.00000000e+00
- 1 22 0 0 0.17378270e+00 -0.10721999e+00 0.40068517e+00 0.00000000e+00
- 1 -211 0 0 0.32379024e+00 -0.38114727e+00 0.16929009e+01 0.13957000e+00
- 1 211 0 0 0.21081934e+00 0.80732933e-01 0.11115303e+01 0.13957000e+00
- 1 22 0 0 0.31814224e+00 -0.24541738e+00 0.10771060e+01 0.00000000e+00
- 1 22 0 0 0.12240698e+00 -0.19203368e+00 0.82164149e+00 0.00000000e+00
- 2 310 556 557 0.19523783e+01 -0.49951268e+00 0.77435094e+01 0.49767000e+00
- 1 -2112 0 0 0.85582672e+00 0.98763116e-01 0.49674819e+01 0.93957000e+00
- 2 111 558 559 0.21677256e+00 0.38650708e-01 0.15730726e+01 0.13498000e+00
- 1 22 0 0 0.36164407e+00 -0.15565378e-01 0.15847478e+01 0.00000000e+00
- 1 22 0 0 0.10116867e+01 -0.26339037e+00 0.43067557e+01 0.00000000e+00
- 1 22 0 0 0.23739120e+01 0.19111285e-01 0.96404935e+01 0.00000000e+00
- 1 22 0 0 0.50904722e+00 -0.58478532e-01 0.20746153e+01 0.00000000e+00
- 1 22 0 0 0.57533454e+00 0.27418742e+00 0.96857170e+01 0.00000000e+00
- 1 22 0 0 0.39400273e-01 0.16618070e-01 0.29215389e+00 0.00000000e+00
- 1 22 0 0 0.22858428e-03 0.12575457e+00 0.38720389e+01 0.00000000e+00
- 1 22 0 0 0.20254654e+00 0.36489714e+00 0.94121434e+01 0.00000000e+00
- 1 22 0 0 -0.40199687e-01 0.18567258e+00 0.52548331e+02 0.00000000e+00
- 1 22 0 0 -0.20693615e+00 0.22420101e+00 0.69509658e+02 0.00000000e+00
- 1 -2112 0 0 -0.11328163e+00 0.22788841e+00 0.24570305e+03 0.93957000e+00
- 2 111 560 561 -0.11492121e+00 0.53625005e-01 0.30451478e+02 0.13498000e+00
- 1 22 0 0 -0.73939903e-01 -0.21882255e-01 0.10354327e+02 0.00000000e+00
- 1 22 0 0 0.18161500e-01 -0.99701717e-01 0.66024573e+01 0.00000000e+00
- 1 22 0 0 -0.22477650e+00 0.14010814e-01 0.18715815e+03 0.00000000e+00
- 1 22 0 0 0.17439025e-01 0.12232879e-01 0.28614703e+02 0.00000000e+00
- 1 22 0 0 -0.13785495e+02 -0.19990160e+02 -0.39395395e+02 0.00000000e+00
- 1 22 0 0 -0.17852882e+01 -0.26466466e+01 -0.52489135e+01 0.00000000e+00
- 1 -2212 0 0 -0.47686418e+01 -0.79705963e+01 -0.17474075e+02 0.93827000e+00
- 1 211 0 0 -0.96509590e+00 -0.17751832e+01 -0.36170391e+01 0.13957000e+00
- 1 22 0 0 -0.91476173e-01 -0.50419123e-01 -0.74125285e-01 0.00000000e+00
- 1 22 0 0 -0.83434319e-01 -0.15560884e+00 -0.35795975e+00 0.00000000e+00
- 1 -2212 0 0 -0.12014361e+01 -0.12497358e+01 -0.73748845e+01 0.93827000e+00
- 1 211 0 0 -0.19389051e+00 -0.21200324e+00 -0.17244437e+01 0.13957000e+00
- 1 22 0 0 0.16351522e-01 -0.14025572e-01 -0.62697412e-01 0.00000000e+00
- 1 22 0 0 -0.24944922e+00 -0.27384335e-01 -0.68720796e+00 0.00000000e+00
- 1 22 0 0 -0.34466235e+00 -0.13065034e+00 -0.25711020e+01 0.00000000e+00
- 1 22 0 0 -0.22228891e+00 -0.21035528e+00 -0.23246402e+01 0.00000000e+00
- 1 2112 0 0 -0.19647267e+01 -0.75002218e+00 -0.92619605e+01 0.93957000e+00
- 2 111 562 563 -0.35502892e+00 -0.98248144e-01 -0.11609833e+01 0.13498000e+00
- 1 22 0 0 -0.15291111e+00 -0.18338861e-01 -0.37853035e+00 0.00000000e+00
- 1 22 0 0 -0.78131902e-01 -0.42465970e-01 -0.55459498e-01 0.00000000e+00
- 1 22 0 0 -0.16872919e+00 0.24950152e-02 -0.48940062e+00 0.00000000e+00
- 1 22 0 0 -0.56348692e+00 0.36007094e-01 -0.10219143e+01 0.00000000e+00
- 2 310 564 565 -0.20551182e+00 0.18720300e+00 -0.14032964e+01 0.49767000e+00
- 1 22 0 0 -0.54832896e+00 0.18896454e+00 -0.11192037e+01 0.00000000e+00
- 1 22 0 0 -0.54202866e+00 0.14675843e+00 -0.13899448e+01 0.00000000e+00
- 1 22 0 0 -0.63748768e-01 0.74383579e-01 -0.10069665e+01 0.00000000e+00
- 1 22 0 0 -0.30025627e+00 0.44990326e-01 -0.21909236e+01 0.00000000e+00
- 1 22 0 0 0.65493042e-02 -0.17962207e-01 -0.87540017e-01 0.00000000e+00
- 1 22 0 0 -0.40732653e-01 0.22580892e+00 -0.67678511e+00 0.00000000e+00
- 1 22 0 0 -0.11665473e+00 0.10061821e+00 -0.12295853e+01 0.00000000e+00
- 1 22 0 0 -0.49848136e+00 0.21159859e+00 -0.30375458e+01 0.00000000e+00
- 1 22 0 0 -0.11154919e+00 0.57923448e-01 -0.25512095e+01 0.00000000e+00
- 1 22 0 0 0.27835639e-01 -0.20710387e-01 -0.11022319e+01 0.00000000e+00
- 1 22 0 0 0.30273067e-01 -0.55361918e-01 -0.20772842e+01 0.00000000e+00
- 1 22 0 0 0.82662347e-01 0.76910377e-01 -0.28845222e+01 0.00000000e+00
- 1 22 0 0 -0.11862367e-01 -0.16667546e+00 -0.64942817e+01 0.00000000e+00
- 1 22 0 0 0.13330567e+00 -0.92725865e+00 -0.27919114e+02 0.00000000e+00
- 1 22 0 0 0.87119199e-01 -0.18009303e+00 -0.20541060e+01 0.00000000e+00
- 1 22 0 0 0.24220554e-01 -0.44702661e-01 -0.18330162e+01 0.00000000e+00
- 1 22 0 0 0.27843716e+00 -0.88454866e+00 -0.70080175e+02 0.00000000e+00
- 1 22 0 0 -0.38935737e-02 -0.40846687e-01 -0.54244424e+01 0.00000000e+00
- 1 22 0 0 0.49500920e-01 0.12868895e-02 -0.97226494e+00 0.00000000e+00
- 1 22 0 0 0.15538998e+00 -0.46447006e-01 -0.12470969e+02 0.00000000e+00
- 1 22 0 0 0.10436852e+00 -0.18318433e+00 -0.95695141e+01 0.00000000e+00
- 1 22 0 0 -0.34928222e-01 -0.12424105e+00 -0.76908950e+01 0.00000000e+00
- 1 22 0 0 0.11946577e-02 -0.48688033e-01 -0.36949837e+01 0.00000000e+00
- 1 22 0 0 0.19513086e+00 -0.74896095e-01 -0.76641584e+01 0.00000000e+00
- 2 310 566 567 0.35954302e+00 -0.88141864e+00 -0.65623173e+02 0.49767000e+00
- 1 22 0 0 0.12110703e+00 -0.63031815e-01 -0.13709219e+02 0.00000000e+00
- 1 22 0 0 0.16153584e+00 0.70240341e-01 -0.20098536e+02 0.00000000e+00
- 1 22 0 0 0.77427084e-01 -0.34859162e-01 -0.95757800e+01 0.00000000e+00
- 1 22 0 0 0.86670997e-01 0.11055585e+00 -0.17161098e+02 0.00000000e+00
- 1 130 0 0 -0.77882086e-01 -0.63926945e-01 -0.36758513e+02 0.49767000e+00
- 1 22 0 0 0.20175172e+00 0.46123374e+00 -0.22541386e+02 0.00000000e+00
- 1 22 0 0 0.11460575e+00 0.13433733e+00 -0.11148013e+02 0.00000000e+00
- 1 22 0 0 0.34460385e+00 0.10899251e+00 -0.10807236e+02 0.00000000e+00
- 1 22 0 0 0.11531230e+00 -0.39517703e-01 -0.31433065e+01 0.00000000e+00
- 1 22 0 0 0.54718032e+00 -0.41900746e+00 -0.16456553e+02 0.00000000e+00
- 1 22 0 0 0.60100567e-01 -0.18731900e-02 -0.18506390e+01 0.00000000e+00
- 1 22 0 0 0.33438994e-02 0.13024172e+00 -0.37531498e+01 0.00000000e+00
- 1 22 0 0 0.41443584e-01 -0.20768427e-01 -0.88969156e+00 0.00000000e+00
- 1 22 0 0 -0.49518240e-01 0.26231290e-01 -0.21973656e+01 0.00000000e+00
- 1 22 0 0 -0.47883477e-01 -0.10459008e+00 -0.19852463e+01 0.00000000e+00
- 2 111 568 569 0.65604498e-01 0.76663429e-01 -0.29385510e+01 0.13498000e+00
- 2 111 570 571 -0.90389506e-02 0.37326032e-01 -0.10114564e+01 0.13498000e+00
- 2 111 572 573 0.31784211e-01 0.20833310e+00 -0.67965802e+01 0.13498000e+00
- 1 22 0 0 -0.34914941e-01 -0.46592965e-02 -0.21500373e+01 0.00000000e+00
- 1 22 0 0 -0.23184865e+00 0.17680753e+00 -0.62691588e+01 0.00000000e+00
- 1 22 0 0 0.25072947e-01 0.12513333e-01 -0.25489406e+01 0.00000000e+00
- 1 22 0 0 -0.49010466e-01 0.25521305e+00 -0.88635631e+01 0.00000000e+00
- 1 22 0 0 0.26456802e-01 0.10347780e-01 -0.11643618e+01 0.00000000e+00
- 1 22 0 0 -0.13613706e+00 0.23854589e+00 -0.91178586e+01 0.00000000e+00
- 1 22 0 0 -0.12889888e-01 -0.20292015e-01 -0.58476016e+00 0.00000000e+00
- 1 22 0 0 -0.16023286e+00 0.12366828e-01 -0.21401649e+02 0.00000000e+00
- 1 22 0 0 -0.89580133e-01 -0.20548699e+00 -0.24189026e+03 0.00000000e+00
- 1 22 0 0 -0.14728005e-02 -0.17606808e+00 -0.32685370e+03 0.00000000e+00
- 1 22 0 0 -0.41824222e-01 0.59796014e-01 -0.69693915e+00 0.00000000e+00
- 1 22 0 0 -0.18288438e+00 0.42717105e-01 -0.73695615e+00 0.00000000e+00
- 1 22 0 0 -0.93434666e-01 -0.16647917e+00 -0.49608053e+00 0.00000000e+00
- 1 22 0 0 0.45969311e-01 -0.59394124e-01 -0.24757173e+00 0.00000000e+00
- 1 2112 0 0 -0.70995596e+00 -0.46580241e+00 -0.11104228e+02 0.93957000e+00
- 2 111 574 575 -0.23820835e+00 -0.15799965e+00 -0.36213929e+01 0.13498000e+00
- 1 -211 0 0 0.14767109e+01 -0.33144266e+00 0.63209721e+01 0.13957000e+00
- 1 211 0 0 0.47566738e+00 -0.16807002e+00 0.14225372e+01 0.13957000e+00
- 1 22 0 0 0.76238478e-01 0.67176908e-01 0.41703011e+00 0.00000000e+00
- 1 22 0 0 0.14053409e+00 -0.28526200e-01 0.11560424e+01 0.00000000e+00
- 1 22 0 0 -0.14583020e+00 0.48222077e-01 0.24685072e+02 0.00000000e+00
- 1 22 0 0 0.30908988e-01 0.54029277e-02 0.57664055e+01 0.00000000e+00
- 1 22 0 0 -0.29415333e+00 -0.24632744e-01 -0.92251127e+00 0.00000000e+00
- 1 22 0 0 -0.60875585e-01 -0.73615400e-01 -0.23847202e+00 0.00000000e+00
- 1 211 0 0 0.96478562e-01 -0.26857203e-01 -0.49472926e+00 0.13957000e+00
- 1 -211 0 0 -0.30199039e+00 0.21406020e+00 -0.90856717e+00 0.13957000e+00
- 1 211 0 0 0.22074634e+00 -0.80060460e+00 -0.56704930e+02 0.13957000e+00
- 1 -211 0 0 0.13879668e+00 -0.80814038e-01 -0.89182433e+01 0.13957000e+00
- 1 22 0 0 0.38358685e-02 -0.29817247e-01 -0.22020655e+00 0.00000000e+00
- 1 22 0 0 0.61768629e-01 0.10648068e+00 -0.27183444e+01 0.00000000e+00
- 1 22 0 0 0.38094798e-01 0.47200687e-01 -0.21950021e+00 0.00000000e+00
- 1 22 0 0 -0.47133749e-01 -0.98746552e-02 -0.79195622e+00 0.00000000e+00
- 1 22 0 0 0.14260615e-01 -0.17493023e-01 -0.45022594e+00 0.00000000e+00
- 1 22 0 0 0.17523596e-01 0.22582612e+00 -0.63463542e+01 0.00000000e+00
- 1 22 0 0 -0.58511317e-01 -0.49240370e-01 -0.18131226e+01 0.00000000e+00
- 1 22 0 0 -0.17969703e+00 -0.10875928e+00 -0.18082703e+01 0.00000000e+00
- 1002
- 2 25 2 3 -0.63294647e+01 -0.24937334e+02 0.15937847e+03 0.12499880e+03
- 2 23 6 10 0.22350328e+01 -0.11660822e+02 0.46905383e+02 0.32461765e+02
- 2 23 4 5 -0.85644975e+01 -0.13276512e+02 0.11247309e+03 0.91598656e+02
- 1 13 0 0 -0.30988966e+02 -0.22436021e+02 0.11533949e+03 0.10566000e+00
- 1 -13 0 0 0.22424468e+02 0.91595085e+01 -0.28664018e+01 0.10566000e+00
- 1 13 0 0 0.47663696e+01 0.26483682e+01 -0.30182048e+01 0.10566000e+00
- 1 22 0 0 0.19640322e+00 -0.40324364e+00 0.23584153e+01 0.00000000e+00
- 1 22 0 0 -0.66904851e+00 -0.32570793e+01 0.11127695e+02 0.00000000e+00
- 1 -13 0 0 -0.20586161e+01 -0.10648357e+02 0.36435493e+02 0.10566000e+00
- 1 22 0 0 -0.75435550e-04 -0.51076094e-03 0.19848636e-02 0.00000000e+00
- 2 1 130 130 0.15331606e+01 -0.31347942e+01 0.75874165e+02 0.00000000e+00
- 2 -1 130 130 -0.15331606e+01 0.31347942e+01 0.10338441e+02 0.00000000e+00
- 2 2103 137 137 0.12177233e+01 0.24364557e+00 0.22184987e+04 0.77133000e+00
- 2 21 137 137 -0.68093573e+00 -0.77349363e+00 0.10060350e+02 0.00000000e+00
- 2 21 137 137 -0.14811738e+00 -0.23586233e-01 0.43935331e+00 0.00000000e+00
- 2 21 137 137 0.37565103e+01 0.34712664e+01 0.10136995e+02 0.00000000e+00
- 2 21 137 137 0.31979480e+00 -0.31351236e-01 0.21003388e+01 0.00000000e+00
- 2 21 137 137 -0.49971151e+01 -0.70774640e+01 0.24718017e+03 0.00000000e+00
- 2 21 137 137 -0.57346754e+00 -0.18244718e+01 0.13602332e+03 0.00000000e+00
- 2 21 137 137 0.15121452e+00 -0.31040245e+01 0.18139700e+03 0.00000000e+00
- 2 21 137 137 0.15802836e+01 -0.11065746e+01 0.97550883e+02 0.00000000e+00
- 2 21 137 137 0.12139548e+01 -0.16576470e+00 0.37447133e+02 0.00000000e+00
- 2 21 137 137 0.14680744e+01 -0.48121541e+00 0.51134044e+02 0.00000000e+00
- 2 21 137 137 0.35450689e+00 0.13264823e-01 0.28617479e+02 0.00000000e+00
- 2 21 137 137 -0.52930330e+00 -0.12120415e+01 0.11590478e+04 0.00000000e+00
- 2 21 137 137 0.40129444e-01 0.91630308e+00 0.86539430e+02 0.00000000e+00
- 2 21 137 137 -0.15802836e+01 0.11065746e+01 0.20750190e+03 0.00000000e+00
- 2 21 137 137 -0.36563375e+00 0.25405555e+00 0.15032342e+02 0.00000000e+00
- 2 21 137 137 -0.32128453e+00 0.13971367e+00 0.18224744e+02 0.00000000e+00
- 2 21 137 137 -0.35450689e+00 -0.13264823e-01 0.10929501e+02 0.00000000e+00
- 2 21 137 137 -0.15461894e+01 -0.28698944e+00 0.49279632e+02 0.00000000e+00
- 2 21 137 137 -0.40444463e+01 0.82547164e+00 0.10159023e+03 0.00000000e+00
- 2 21 137 137 -0.14680744e+01 0.48121541e+00 0.19048485e+02 0.00000000e+00
- 2 21 137 137 -0.65786178e+01 0.74773945e+01 0.17007673e+03 0.00000000e+00
- 2 21 137 137 0.57346754e+00 0.18244718e+01 0.24722533e+02 0.00000000e+00
- 2 21 137 137 0.52930330e+00 0.12120415e+01 0.17024717e+02 0.00000000e+00
- 2 21 137 137 0.49971151e+01 0.70774640e+01 0.12773198e+03 0.00000000e+00
- 2 21 137 137 0.48869585e+01 0.23227101e+01 0.58636577e+02 0.00000000e+00
- 2 21 137 137 0.18889372e+01 -0.32693540e+00 0.18110876e+02 0.00000000e+00
- 2 21 137 137 0.52557696e+01 0.70728120e+00 0.24157035e+02 0.00000000e+00
- 2 21 137 137 0.22011705e+01 0.93466016e+00 0.38330717e+01 0.00000000e+00
- 2 21 137 137 0.37220343e+01 0.29496936e+01 0.93614162e+01 0.00000000e+00
- 2 21 137 137 0.48132054e+00 0.16383270e+01 0.30113631e+01 0.00000000e+00
- 2 21 137 137 -0.15121452e+00 0.31040245e+01 0.58231703e+01 0.00000000e+00
- 2 21 137 137 -0.25533050e+00 0.29169771e+01 0.49597377e+01 0.00000000e+00
- 2 21 137 137 -0.16133620e+01 0.42211079e+01 0.93483715e+01 0.00000000e+00
- 2 21 137 137 -0.17544576e+01 0.95703139e+00 0.25318906e+01 0.00000000e+00
- 2 21 137 137 -0.10672369e+01 0.65133302e+00 -0.23794969e-01 0.00000000e+00
- 2 21 137 137 -0.12139548e+01 0.16576470e+00 -0.45656884e+00 0.00000000e+00
- 2 21 137 137 -0.44810635e+01 0.32106387e+01 -0.47762587e+01 0.00000000e+00
- 2 21 137 137 -0.18889372e+01 0.32693540e+00 -0.31869203e+01 0.00000000e+00
- 2 21 137 137 -0.13173531e+00 0.42144486e+00 -0.40898961e+00 0.00000000e+00
- 2 21 137 137 0.10873168e+01 0.25641542e+01 -0.22629468e+01 0.00000000e+00
- 2 21 137 137 0.37923454e+01 0.82617142e+01 -0.80301108e+01 0.00000000e+00
- 2 21 137 137 0.12313667e+01 0.14555462e+01 -0.20436615e+01 0.00000000e+00
- 2 21 137 137 -0.45749180e+00 0.24275594e+01 -0.45128029e+01 0.00000000e+00
- 2 21 137 137 -0.10030980e+01 0.28235819e+01 -0.11824162e+02 0.00000000e+00
- 2 21 137 137 0.71617792e+00 0.18104519e+01 -0.13213551e+02 0.00000000e+00
- 2 21 137 137 0.25959546e+01 -0.24564698e+01 -0.33295611e+02 0.00000000e+00
- 2 21 137 137 0.61177176e+01 0.11888033e+01 -0.86613298e+02 0.00000000e+00
- 2 21 137 137 0.86237134e+01 0.77609038e+00 -0.11153524e+03 0.00000000e+00
- 2 21 137 137 0.26029214e+01 0.39984628e+01 -0.11274666e+03 0.00000000e+00
- 2 21 137 137 0.33561324e+00 0.20308204e+01 -0.10727591e+03 0.00000000e+00
- 2 21 137 137 0.28742922e+00 0.74535398e+00 -0.80686398e+02 0.00000000e+00
- 2 21 137 137 0.11459306e+01 0.20839293e+01 -0.33294953e+03 0.00000000e+00
- 2 21 137 137 0.10806410e+01 0.12296470e+01 -0.11478370e+04 0.00000000e+00
- 2 21 137 137 -0.10393724e+01 -0.10227008e+01 -0.17747387e+03 0.00000000e+00
- 2 21 137 137 -0.61177176e+01 -0.11888033e+01 -0.28739011e+03 0.00000000e+00
- 2 21 137 137 -0.10806410e+01 -0.12296470e+01 -0.39294162e+02 0.00000000e+00
- 2 21 137 137 -0.33561324e+00 -0.20308204e+01 -0.44124287e+02 0.00000000e+00
- 2 21 137 137 -0.52557696e+01 -0.70728120e+00 -0.22247595e+02 0.00000000e+00
- 2 21 137 137 -0.10873168e+01 -0.25641542e+01 -0.17435484e+02 0.00000000e+00
- 2 21 137 137 -0.37923454e+01 -0.82617142e+01 -0.23138791e+02 0.00000000e+00
- 2 21 137 137 -0.41755203e+00 0.49215217e+00 -0.78943537e+00 0.00000000e+00
- 2 21 137 137 0.43983182e+00 -0.10381367e+01 -0.10921504e+01 0.00000000e+00
- 2 21 137 137 -0.14436178e+00 0.15284829e+00 0.23756974e+00 0.00000000e+00
- 2 21 137 137 -0.57805329e+00 0.58709599e+00 -0.31423957e+01 0.00000000e+00
- 2 21 137 137 0.15735023e+01 0.62593013e+00 -0.13299620e+03 0.00000000e+00
- 2 21 137 137 0.13855877e+01 -0.11182316e+01 -0.93215987e+02 0.00000000e+00
- 2 2 137 137 -0.10019860e+01 0.19161309e+00 -0.72772044e+03 0.33000000e+00
- 2 2 268 268 0.12719693e+01 0.26133251e+00 0.10161283e+04 0.33000000e+00
- 2 21 268 268 -0.14355515e+00 0.18613617e+00 0.21907049e+02 0.00000000e+00
- 2 21 268 268 -0.78790757e+00 0.88353829e+00 0.20276790e+02 0.00000000e+00
- 2 21 268 268 -0.34173706e+00 0.46508056e+00 0.15572514e+01 0.00000000e+00
- 2 21 268 268 -0.84494540e+00 0.40559746e-02 0.41636280e+01 0.00000000e+00
- 2 21 268 268 -0.13559777e+01 0.52169574e+00 0.26586363e+02 0.00000000e+00
- 2 21 268 268 -0.43021053e+00 0.38083083e+00 0.26159240e+01 0.00000000e+00
- 2 21 268 268 0.17309999e+01 0.48220912e+01 0.32089073e+02 0.00000000e+00
- 2 21 268 268 0.13313199e+01 0.78509393e+01 0.42815306e+02 0.00000000e+00
- 2 21 268 268 -0.37220343e+01 -0.29496936e+01 0.56494294e+02 0.00000000e+00
- 2 21 268 268 -0.26029214e+01 -0.39984628e+01 0.42661111e+02 0.00000000e+00
- 2 21 268 268 -0.71617792e+00 -0.18104519e+01 0.93591942e+01 0.00000000e+00
- 2 21 268 268 -0.40129444e-01 -0.91630308e+00 0.43567896e+01 0.00000000e+00
- 2 21 268 268 0.13173531e+00 -0.42144486e+00 0.27881481e+01 0.00000000e+00
- 2 21 268 268 0.65786178e+01 -0.74773945e+01 0.69076289e+02 0.00000000e+00
- 2 21 268 268 -0.25959546e+01 0.24564698e+01 0.14192850e+02 0.00000000e+00
- 2 21 268 268 -0.35762159e+01 -0.44021711e+00 0.15487033e+02 0.00000000e+00
- 2 21 268 268 -0.48869585e+01 -0.23227101e+01 0.17285039e+02 0.00000000e+00
- 2 21 268 268 -0.12313667e+01 -0.14555462e+01 0.25980436e+01 0.00000000e+00
- 2 21 268 268 -0.86237134e+01 -0.77609038e+00 0.87729723e+01 0.00000000e+00
- 2 21 268 268 -0.22011705e+01 -0.93466016e+00 0.46366280e+00 0.00000000e+00
- 2 21 268 268 -0.11459306e+01 -0.20839293e+01 -0.11649381e+01 0.00000000e+00
- 2 21 268 268 -0.28742922e+00 -0.74535398e+00 -0.76103829e+00 0.00000000e+00
- 2 21 268 268 -0.48132054e+00 -0.16383270e+01 -0.17400691e+00 0.00000000e+00
- 2 21 268 268 0.10030980e+01 -0.28235819e+01 0.38269010e+00 0.00000000e+00
- 2 21 268 268 0.16133620e+01 -0.42211079e+01 0.19336171e+01 0.00000000e+00
- 2 21 268 268 0.45749180e+00 -0.24275594e+01 0.37216457e+01 0.00000000e+00
- 2 21 268 268 0.36563375e+00 -0.25405555e+00 0.48163641e+00 0.00000000e+00
- 2 21 268 268 0.17544576e+01 -0.95703139e+00 0.26996971e+01 0.00000000e+00
- 2 21 268 268 0.35762159e+01 0.44021711e+00 0.34762462e+01 0.00000000e+00
- 2 21 268 268 0.10672369e+01 -0.65133302e+00 0.38680875e+00 0.00000000e+00
- 2 21 268 268 0.40444463e+01 -0.82547164e+00 0.87765857e+00 0.00000000e+00
- 2 21 268 268 0.15461894e+01 0.28698944e+00 -0.87000730e+00 0.00000000e+00
- 2 21 268 268 0.32128453e+00 -0.13971367e+00 -0.36014856e+00 0.00000000e+00
- 2 21 268 268 0.44810635e+01 -0.32106387e+01 -0.30529158e+01 0.00000000e+00
- 2 21 268 268 0.25533050e+00 -0.29169771e+01 -0.69410342e+01 0.00000000e+00
- 2 21 268 268 -0.29559641e+00 0.37694132e+00 -0.76359685e+00 0.00000000e+00
- 2 21 268 268 0.33106654e+00 0.86716094e+01 -0.10325528e+01 0.00000000e+00
- 2 21 268 268 -0.34282182e+00 -0.42882090e+00 -0.13946895e-01 0.00000000e+00
- 2 21 268 268 -0.53719685e+00 -0.47930973e+00 0.39144438e+00 0.00000000e+00
- 2 21 268 268 -0.28021306e+00 -0.48765156e+00 -0.54068031e+03 0.00000000e+00
- 2 21 268 268 0.92177511e+00 -0.72792879e+00 -0.20003419e+03 0.00000000e+00
- 2 21 268 268 0.93361285e+00 0.18950246e+00 -0.61219800e+02 0.00000000e+00
- 2 2101 268 268 -0.55306140e+00 -0.33246071e+00 -0.22780949e+04 0.57933000e+00
- 2 21 351 351 0.18203376e+01 0.14396465e+01 -0.12688287e+03 0.00000000e+00
- 2 21 351 351 0.10393724e+01 0.10227008e+01 -0.86937496e+02 0.00000000e+00
- 2 21 351 351 -0.18203376e+01 -0.14396465e+01 0.10324416e+03 0.00000000e+00
- 2 21 380 380 0.51828560e+00 -0.67883550e+00 -0.63055973e+00 0.00000000e+00
- 2 21 380 380 -0.51828560e+00 0.67883550e+00 0.11452999e+01 0.00000000e+00
- 2 92 131 136 0.00000000e+00 0.00000000e+00 0.86212606e+02 0.10633270e+02
- 2 223 385 387 0.95794555e+00 -0.12438665e+01 0.35469488e+02 0.77273930e+00
- 1 2112 0 0 0.19559890e+00 -0.10578261e+01 0.32385645e+02 0.93957000e+00
- 1 -2212 0 0 0.21015875e-01 0.52514060e-01 0.62231578e+01 0.93827000e+00
- 2 213 388 389 0.91440762e-01 0.34563525e+00 0.20350603e+01 0.56485732e+00
- 2 -213 390 391 -0.22412971e+00 0.55573383e+00 0.53384867e+01 0.87010568e+00
- 1 211 0 0 -0.10418714e+01 0.13478095e+01 0.47607678e+01 0.13957000e+00
- 2 92 138 267 0.95977313e+01 0.44971430e+02 0.15336066e+04 0.86928880e+04
- 1 -211 0 0 0.30020069e+00 0.52006638e+00 0.67428799e+03 0.13957000e+00
- 2 2224 392 393 0.26641558e+00 -0.62114320e+00 0.12432172e+04 0.11183825e+01
- 2 -213 394 395 0.82571467e+00 0.29002102e+00 0.25214358e+03 0.90711411e+00
- 2 111 396 397 -0.42929933e+00 0.14809923e+00 0.31757690e+02 0.13498000e+00
- 1 211 0 0 0.10675776e+00 -0.27181106e+00 0.96449763e+01 0.13957000e+00
- 2 111 398 399 0.11244592e+00 -0.13345603e+00 0.94600598e+00 0.13498000e+00
- 2 223 400 402 -0.52667210e+00 0.63388238e-02 0.10949156e+02 0.73012699e+00
- 1 -211 0 0 0.11898798e+00 0.20383888e+00 0.22750374e+01 0.13957000e+00
- 2 223 403 405 0.12396076e+01 -0.70649351e-01 0.44557297e+01 0.75462802e+00
- 2 221 406 408 0.49801786e+00 0.11985096e+01 0.29207688e+01 0.54745000e+00
- 2 -311 409 409 0.10541478e+00 0.88206735e-01 0.32595460e+01 0.49767000e+00
- 2 323 410 411 0.82170622e+00 0.88403184e+00 0.26124016e+01 0.89414712e+00
- 2 -323 412 413 0.55073275e+00 0.32694853e+00 0.29582608e+01 0.88995931e+00
- 1 321 0 0 -0.77208747e+00 -0.96957624e+00 0.33584336e+02 0.49360000e+00
- 2 -213 414 415 -0.15144886e+00 -0.24654325e+00 0.24444872e+02 0.83558809e+00
- 2 223 416 418 -0.80165709e+00 -0.12354327e+01 0.41293799e+02 0.78115714e+00
- 2 213 419 420 -0.48763919e+00 -0.66901333e+00 0.25837952e+02 0.74474934e+00
- 2 -213 421 422 -0.71524345e-01 -0.47507362e+00 0.34129473e+02 0.81088784e+00
- 2 111 423 424 -0.14268819e+01 -0.25906909e+01 0.90229175e+02 0.13498000e+00
- 2 111 425 426 -0.85567875e+00 -0.48536755e+00 0.47082145e+02 0.13498000e+00
- 2 113 427 428 -0.16051000e+00 -0.19437145e+01 0.78807955e+02 0.80992835e+00
- 1 211 0 0 0.75178547e-01 -0.11807450e+00 0.89432533e+01 0.13957000e+00
- 2 -2214 429 430 0.56799672e+00 -0.15985477e+01 0.10474218e+03 0.11691895e+01
- 2 213 431 432 0.75794673e+00 -0.10929848e+01 0.62156760e+02 0.77197076e+00
- 1 2112 0 0 0.45432198e+00 -0.81283907e+00 0.92420039e+02 0.93957000e+00
- 2 -323 433 434 0.90082598e+00 -0.32641307e+00 0.85525265e+02 0.90851428e+00
- 1 321 0 0 0.63410821e+00 0.22326903e+00 0.19214828e+02 0.49360000e+00
- 2 -323 435 436 0.49139898e+00 -0.10248902e+01 0.76672344e+02 0.87480295e+00
- 2 -3114 437 438 -0.37300295e+00 -0.10437479e+01 0.91182262e+03 0.14008419e+01
- 2 111 439 440 -0.22996559e-01 0.36426610e+00 0.47905223e+02 0.13498000e+00
- 2 1114 441 442 -0.33048703e+00 0.15281665e+00 0.28882364e+03 0.12408502e+01
- 2 111 443 444 0.17162944e+00 0.52747850e-01 0.77485008e+01 0.13498000e+00
- 1 -2112 0 0 -0.16127758e+01 0.73146218e+00 0.10500559e+03 0.93957000e+00
- 1 2112 0 0 -0.96438306e+00 0.30429970e+00 0.80805677e+02 0.93957000e+00
- 2 331 445 446 -0.18453216e+01 0.86036364e+00 0.62003665e+02 0.95770738e+00
- 1 211 0 0 -0.21523810e+00 -0.21439798e+00 0.13018660e+02 0.13957000e+00
- 1 -211 0 0 -0.23295085e+00 0.29539392e+00 0.86715019e+01 0.13957000e+00
- 2 113 447 448 -0.22809394e+01 0.46043689e+00 0.50990026e+02 0.43371341e+00
- 2 213 449 450 -0.90933953e+00 0.15430145e+01 0.32217755e+02 0.81877965e+00
- 2 -213 451 452 -0.17808853e+01 0.21836854e+01 0.45913045e+02 0.74967119e+00
- 2 221 453 455 -0.84498535e+00 0.73453343e+00 0.39715611e+02 0.54745000e+00
- 2 223 456 458 -0.38821766e+01 0.25259123e+01 0.75716281e+02 0.78533180e+00
- 2 213 459 460 -0.39633962e+00 0.19586125e+01 0.30737055e+02 0.63097913e+00
- 2 111 461 462 -0.26419990e+00 -0.65062220e-01 0.52084100e+01 0.13498000e+00
- 2 -213 463 464 0.30202413e+01 0.47528191e+01 0.79524118e+02 0.80989362e+00
- 2 113 465 466 0.11028551e+01 0.10538788e+01 0.31787979e+02 0.84896786e+00
- 2 223 467 469 0.41427961e+01 0.39517591e+01 0.69945217e+02 0.74104755e+00
- 2 113 470 471 0.12001001e+01 0.65087865e+00 0.16744877e+02 0.74732492e+00
- 1 211 0 0 0.47522148e+00 0.18806240e+00 0.62969182e+01 0.13957000e+00
- 2 -2224 472 473 0.33845074e+01 0.49477357e+00 0.21806617e+02 0.11753892e+01
- 1 211 0 0 0.57620758e+00 0.32960283e+00 0.69093679e+01 0.13957000e+00
- 1 2212 0 0 0.51179623e+00 0.96531865e-01 0.37735062e+01 0.93827000e+00
- 2 -2224 474 475 0.14081345e+01 0.47534097e+00 0.57443669e+01 0.10921932e+01
- 1 211 0 0 -0.11898264e+00 -0.28615906e-01 0.60106434e+00 0.13957000e+00
- 1 2112 0 0 0.27616341e+01 0.88272578e+00 0.11207199e+02 0.93957000e+00
- 1 211 0 0 0.67431387e+00 0.31180009e+00 0.21404168e+01 0.13957000e+00
- 2 -323 476 477 0.81195795e+00 0.31475046e+00 0.36421372e+01 0.88047977e+00
- 2 311 478 478 0.14248945e+01 0.89779886e+00 0.46735928e+01 0.49767000e+00
- 2 223 479 481 0.16623815e+01 0.14077876e+01 0.37343092e+01 0.79030828e+00
- 2 -311 482 482 0.39956621e+00 0.70194738e+00 0.21770022e+01 0.49767000e+00
- 2 313 483 484 -0.56639903e+00 0.29381300e+01 0.55470261e+01 0.91159046e+00
- 2 111 485 486 0.18735141e+00 0.99815228e+00 0.19374879e+01 0.13498000e+00
- 1 211 0 0 -0.22423403e+00 0.95862243e+00 0.18105823e+01 0.13957000e+00
- 1 -211 0 0 0.12054700e+00 0.54083351e+00 0.18637636e+01 0.13957000e+00
- 2 113 487 488 -0.65235843e+00 0.18265976e+01 0.25353989e+01 0.10154137e+01
- 2 213 489 490 -0.65821095e+00 0.67946687e+00 0.11549519e+01 0.65258501e+00
- 1 -2212 0 0 -0.77575959e+00 0.32474735e+01 0.64544013e+01 0.93827000e+00
- 2 223 491 493 -0.62940680e+00 0.23723137e+00 0.10432286e+01 0.79024694e+00
- 1 2112 0 0 -0.12734042e+01 0.76635150e+00 0.11212396e+01 0.93957000e+00
- 1 211 0 0 -0.11827071e+00 0.87719159e-01 -0.26057410e+00 0.13957000e+00
- 2 111 494 495 -0.17494015e+00 0.24991372e+00 -0.33970535e+00 0.13498000e+00
- 2 -213 496 497 -0.42239957e+01 0.20121972e+01 -0.30497357e+01 0.10125953e+01
- 2 223 498 500 -0.11713805e+01 0.14535353e+01 -0.31177242e+01 0.78756693e+00
- 1 211 0 0 -0.61547977e+00 0.57110002e+00 -0.11915396e+01 0.13957000e+00
- 1 -211 0 0 -0.12483477e+00 -0.12608850e+00 -0.41212984e-01 0.13957000e+00
- 1 211 0 0 -0.41117706e+00 0.11726430e+01 -0.78826515e+00 0.13957000e+00
- 2 111 501 502 0.23402697e+00 0.72295098e+00 -0.51740515e+00 0.13498000e+00
- 1 -211 0 0 0.15511975e+01 0.34568092e+01 -0.35737395e+01 0.13957000e+00
- 1 211 0 0 0.35901582e+00 0.25279061e+00 -0.55196346e+00 0.13957000e+00
- 2 223 503 505 0.54623238e+00 0.71334081e+00 -0.19621283e+01 0.79271472e+00
- 2 -213 506 507 0.17507114e+01 0.58818465e+01 -0.52061509e+01 0.97491604e+00
- 1 211 0 0 0.27732573e-01 0.12713124e+00 -0.13271229e-01 0.13957000e+00
- 1 -321 0 0 0.13444252e+00 0.58552883e+00 -0.17185181e+01 0.49360000e+00
- 2 323 508 509 0.21308731e-01 0.28067631e+01 -0.97526238e+01 0.90332911e+00
- 1 -2212 0 0 0.10520047e+00 0.37163592e+00 -0.21263049e+01 0.93827000e+00
- 2 223 510 512 -0.26986149e-01 0.21205377e+01 -0.79005404e+01 0.78938296e+00
- 1 2112 0 0 0.12030281e+00 0.82756423e+00 -0.79166034e+01 0.93957000e+00
- 2 223 513 515 0.14915950e+01 -0.89995378e+00 -0.18691721e+02 0.78408721e+00
- 2 -3122 516 517 0.42759298e+01 0.97468416e+00 -0.62924661e+02 0.11156800e+01
- 2 3212 518 519 0.25086351e+01 -0.11975908e+01 -0.33986721e+02 0.11925500e+01
- 2 223 520 522 0.20780163e+01 0.78435145e+00 -0.23966312e+02 0.78900679e+00
- 2 213 523 524 0.18189394e+01 0.14517973e+00 -0.40426247e+02 0.66872779e+00
- 2 -323 525 526 0.56350384e+01 0.14463472e+01 -0.74818270e+02 0.86788116e+00
- 2 313 527 528 0.10944833e+01 0.11862780e+01 -0.67778375e+02 0.88697227e+00
- 1 211 0 0 -0.50165122e+00 0.10244073e+01 -0.48318803e+02 0.13957000e+00
- 1 -211 0 0 0.12156829e+01 0.12188138e+01 -0.73068227e+02 0.13957000e+00
- 2 221 529 531 0.33594132e+00 0.26531114e+00 -0.17259892e+02 0.54745000e+00
- 1 -2112 0 0 0.93929742e+00 0.16881568e+01 -0.17918417e+03 0.93957000e+00
- 1 2212 0 0 0.43195904e-01 0.34914847e+00 -0.41062726e+02 0.93827000e+00
- 1 -211 0 0 0.39510453e+00 0.32814567e+00 -0.71751947e+02 0.13957000e+00
- 1 -2112 0 0 0.74674980e+00 0.12706107e+01 -0.28482411e+03 0.93957000e+00
- 1 2112 0 0 0.43096232e+00 0.13777562e+01 -0.58916736e+03 0.93957000e+00
- 2 -313 532 533 -0.25099909e+00 -0.61491675e+00 -0.34040714e+03 0.85981701e+00
- 2 313 534 535 -0.95917715e+00 0.76515205e+00 -0.17481123e+03 0.90572466e+00
- 2 113 536 537 -0.29645725e+01 -0.23438282e+01 -0.19530865e+03 0.82616339e+00
- 2 213 538 539 -0.20395815e+01 0.38580768e+00 -0.75593758e+02 0.74617272e+00
- 2 -213 540 541 -0.98810202e+00 -0.14496627e+01 -0.89048196e+02 0.84144833e+00
- 2 213 542 543 -0.16841446e+01 -0.14474126e+01 -0.49436646e+02 0.78992174e+00
- 2 -213 544 545 -0.49106027e+00 -0.83000727e+00 -0.85721699e+01 0.90300042e+00
- 2 113 546 547 -0.85611174e+00 0.16527110e+00 -0.67779621e+01 0.80339776e+00
- 2 213 548 549 -0.11116690e+01 -0.75286208e+00 -0.92404498e+01 0.78914978e+00
- 1 -321 0 0 -0.56776290e+00 -0.14521397e+00 -0.46796678e+01 0.49360000e+00
- 2 -3224 550 551 -0.13299665e+01 -0.92882543e+00 -0.85124070e+01 0.13756973e+01
- 2 323 552 553 -0.23084030e+01 -0.29010967e+01 -0.10480245e+02 0.86474642e+00
- 2 3214 554 555 -0.11111220e+01 -0.28761774e+01 -0.13343058e+02 0.13939367e+01
- 2 213 556 557 -0.13723687e+01 -0.23867238e+01 -0.62216813e+01 0.86459101e+00
- 2 221 558 559 -0.97976694e+00 -0.78551203e+00 -0.40658157e+01 0.54745000e+00
- 1 -211 0 0 0.46862209e+00 -0.83089179e+00 -0.10885244e+01 0.13957000e+00
- 2 -2114 560 561 -0.10702884e+00 0.21557467e-01 -0.11169896e+01 0.12162104e+01
- 1 211 0 0 -0.22518976e+00 -0.37207337e+00 -0.15982519e+01 0.13957000e+00
- 2 1114 562 563 0.42556547e+00 0.37842900e+00 -0.33480641e+01 0.12651265e+01
- 1 -2112 0 0 -0.31208655e+00 0.16154143e+00 -0.16388669e+02 0.93957000e+00
- 1 2212 0 0 0.21318455e+00 0.45598507e+00 -0.16564938e+02 0.93827000e+00
- 2 113 564 565 0.77767969e+00 -0.70454498e+00 -0.78153103e+02 0.70569307e+00
- 2 111 566 567 -0.24766248e+00 0.31096266e+00 -0.80834287e+01 0.13498000e+00
- 2 -323 568 569 0.90138837e+00 -0.23019360e+00 -0.10660200e+03 0.10281893e+01
- 2 311 570 570 -0.16568248e+00 0.97452078e-01 -0.11892542e+03 0.49767000e+00
- 2 -311 571 571 0.91423693e+00 -0.10098972e+01 -0.15991675e+03 0.49767000e+00
- 2 313 572 573 -0.54987805e+00 0.85932936e+00 -0.22424273e+03 0.77391960e+00
- 1 211 0 0 -0.29737485e+00 0.80708496e-02 -0.22360067e+03 0.13957000e+00
- 2 92 269 350 -0.43076391e+01 -0.21056797e+02 -0.16691368e+04 0.42457279e+04
- 2 113 574 575 0.55748246e+00 0.18271839e+00 0.48294192e+03 0.78011833e+00
- 2 221 576 578 0.19135849e+00 0.64178577e+00 0.24834670e+03 0.54745000e+00
- 1 211 0 0 0.18450346e+00 -0.50515405e+00 0.15912013e+03 0.13957000e+00
- 1 -211 0 0 0.20049302e+00 0.95129702e-01 0.27913502e+02 0.13957000e+00
- 2 2224 579 580 -0.11012125e+00 0.41518181e+00 0.62116020e+02 0.12842582e+01
- 2 223 581 583 0.13427403e+00 0.39163828e+00 0.42992711e+02 0.78541318e+00
- 2 -2214 584 585 -0.44100665e+00 -0.19496060e+00 0.24635678e+02 0.12923644e+01
- 2 221 586 588 -0.77492823e+00 0.59963481e+00 0.12365894e+02 0.54745000e+00
- 2 -213 589 590 -0.48775127e+00 0.79555542e+00 0.64858893e+01 0.80828093e+00
- 2 213 591 592 -0.15143348e-02 0.81124937e+00 0.13943032e+02 0.86533605e+00
- 2 223 593 595 -0.17579706e+01 0.71439575e+00 0.17352714e+02 0.78175226e+00
- 2 111 596 597 -0.41763635e+00 0.85114479e+00 0.76618008e+01 0.13498000e+00
- 1 2112 0 0 0.15971755e+01 0.44372059e+01 0.27797698e+02 0.93957000e+00
- 1 -2212 0 0 0.84422245e+00 0.31063874e+01 0.19894364e+02 0.93827000e+00
- 2 111 598 599 0.50963021e+00 0.19193753e+01 0.10052571e+02 0.13498000e+00
- 1 211 0 0 -0.75932809e+00 -0.53772761e+00 0.63684232e+01 0.13957000e+00
- 2 -213 600 601 -0.18858421e+00 0.44605349e+00 0.63519865e+01 0.76093108e+00
- 1 211 0 0 0.66161056e-01 0.19600447e+00 0.31680122e+01 0.13957000e+00
- 2 111 602 603 -0.32728897e+00 -0.35090379e-01 0.76173883e+01 0.13498000e+00
- 2 221 604 605 -0.10524523e+01 -0.21768224e+01 0.24738603e+02 0.54745000e+00
- 2 111 606 607 -0.83499477e+00 -0.82618697e+00 0.76490429e+01 0.13498000e+00
- 2 -213 608 609 0.39154958e-01 -0.89760291e+00 0.47633011e+01 0.73085622e+00
- 1 211 0 0 -0.84610525e+00 -0.90919265e+00 0.15237956e+02 0.13957000e+00
- 2 113 610 611 -0.16944301e+01 -0.17669077e+01 0.28762687e+02 0.54116191e+00
- 2 221 612 614 -0.30258223e-01 -0.12822832e+01 0.86917264e+01 0.54745000e+00
- 2 -213 615 616 -0.18651234e+00 -0.28625913e+00 0.63193695e+01 0.41884561e+00
- 2 213 617 618 0.73542041e+00 -0.16219898e+01 0.12500764e+02 0.70788301e+00
- 2 113 619 620 0.16507628e+01 -0.17238357e+01 0.17755350e+02 0.86282280e+00
- 2 221 621 623 0.96060375e+00 -0.27545499e+01 0.15363578e+02 0.54745000e+00
- 2 -213 624 625 0.12294553e+01 -0.89254108e+00 0.12556459e+02 0.61215059e+00
- 2 111 626 627 0.61384508e+00 -0.83641793e+00 0.78668497e+01 0.13498000e+00
- 1 211 0 0 0.15642670e-02 -0.94869055e-01 0.52508865e+00 0.13957000e+00
- 2 113 628 629 -0.43012663e+00 -0.61646132e-01 0.22311323e+01 0.70587751e+00
- 1 -211 0 0 -0.14503692e+01 0.10116481e+01 0.12853656e+02 0.13957000e+00
- 2 2224 630 631 -0.18796849e+01 -0.18076021e+00 0.81566392e+01 0.12258869e+01
- 2 331 632 634 -0.11699090e+01 -0.38909982e+00 0.42631152e+01 0.95784296e+00
- 2 -2224 635 636 -0.11059574e+01 0.12037080e+00 0.44494704e+01 0.11799499e+01
- 2 113 637 638 -0.15681077e+01 -0.35814174e+00 0.52686274e+01 0.80305128e+00
- 1 211 0 0 -0.31257502e+01 -0.12710639e+01 0.12621381e+02 0.13957000e+00
- 2 1114 639 640 -0.43677644e+01 -0.48379332e+00 0.49710009e+01 0.12309934e+01
- 2 113 641 642 -0.16825954e+01 -0.13072731e+01 0.24365158e+01 0.71999457e+00
- 1 -2112 0 0 -0.41655434e+01 -0.74205032e+00 0.39085161e+01 0.93957000e+00
- 2 111 643 644 -0.54086050e+00 -0.60849746e-01 -0.22890256e+00 0.13498000e+00
- 2 213 645 646 -0.81080268e+00 -0.13249734e+01 -0.37272001e+00 0.65925469e+00
- 2 313 647 648 -0.78629811e+00 -0.38748915e+00 0.31286153e+00 0.90338312e+00
- 2 3122 649 650 -0.38776200e+00 -0.16032788e+01 0.22073008e+00 0.11156800e+01
- 1 -2112 0 0 -0.46835936e+00 -0.19217396e+01 -0.38613502e+00 0.93957000e+00
- 2 -213 651 652 0.59997485e+00 -0.11031265e+01 0.60657247e-01 0.82494214e+00
- 2 113 653 654 0.41060667e+00 -0.12498139e+01 0.15220448e+00 0.86177354e+00
- 2 3222 655 656 0.20927030e+00 -0.19274373e+01 0.66648641e+00 0.11893700e+01
- 2 -3222 657 658 0.10056780e+01 -0.25111584e+01 0.19879683e+01 0.11893700e+01
- 2 223 659 661 0.10736576e+01 -0.12903220e+01 0.14344634e+01 0.78116977e+00
- 2 213 662 663 0.63343581e+00 -0.10282237e+01 0.25321590e+01 0.74343700e+00
- 2 331 664 665 0.13916086e+01 0.24888987e-01 0.15039005e+01 0.95770103e+00
- 2 223 666 668 0.34803481e+01 -0.64749337e+00 0.10471635e+01 0.77919113e+00
- 2 -213 669 670 0.66945274e+00 -0.12726789e+01 0.37396344e+00 0.60804679e+00
- 2 111 671 673 0.23263546e+01 0.68689151e+00 0.17361030e+01 0.13498000e+00
- 2 111 674 675 0.48869614e+00 -0.16256032e+01 -0.74741209e+00 0.13498000e+00
- 1 2212 0 0 0.39059262e+01 -0.81694282e+00 -0.20532520e-01 0.93827000e+00
- 1 -2212 0 0 0.57271413e+00 -0.94411226e+00 -0.22486091e+01 0.93827000e+00
- 1 211 0 0 0.34141729e-01 0.20187306e+00 0.63277079e-01 0.13957000e+00
- 2 -213 676 677 0.25255618e+01 -0.17734785e+01 -0.28308968e+01 0.82673302e+00
- 2 331 678 679 0.26313344e-01 -0.35894195e+00 -0.91783869e+00 0.95778992e+00
- 2 113 680 681 0.29529492e+00 -0.86554371e+00 -0.24465007e+01 0.78638998e+00
- 2 213 682 683 -0.12456503e+00 0.78402659e+00 -0.40224268e+00 0.86538690e+00
- 1 -211 0 0 0.10109215e+00 0.64470865e+00 0.12762739e+00 0.13957000e+00
- 2 323 684 685 0.33553594e+00 0.40914763e+00 -0.30142812e+00 0.74049908e+00
- 2 -323 686 687 -0.31534372e+00 0.12371813e+01 -0.43856166e+00 0.81007946e+00
- 2 213 688 689 -0.81804285e-01 0.10124127e+01 -0.82227173e+00 0.81811534e+00
- 2 111 690 691 -0.20004978e+00 0.40382958e+00 -0.40672848e-01 0.13498000e+00
- 2 113 692 693 0.87062852e+00 0.19945297e+01 0.27947140e+00 0.87470262e+00
- 2 -213 694 695 -0.78439651e+00 0.46651148e+00 0.55870838e-01 0.70414166e+00
- 1 321 0 0 -0.11685440e+00 0.77563317e+00 -0.17910389e+01 0.49360000e+00
- 2 -323 696 697 -0.16593468e+00 0.44409190e+00 -0.96806081e+00 0.85312485e+00
- 2 213 698 699 0.29364769e+00 -0.87965432e+00 -0.13925041e+01 0.86336081e+00
- 1 -211 0 0 -0.46268984e+00 0.17230724e+00 -0.94085103e+01 0.13957000e+00
- 2 213 700 701 -0.14625963e+00 -0.75450093e+00 -0.27207973e+03 0.10146692e+01
- 2 223 702 703 0.59860853e+00 0.52379009e+00 -0.11613883e+03 0.78144313e+00
- 1 2112 0 0 0.52095025e+00 -0.70838048e+00 -0.67523120e+03 0.93957000e+00
- 1 -2212 0 0 -0.25087595e-01 -0.47490584e+00 -0.18980790e+03 0.93827000e+00
- 2 213 704 705 0.27132528e+00 -0.46637082e-01 -0.19591265e+03 0.76522796e+00
- 1 2112 0 0 -0.19081087e+00 0.13940562e+00 -0.16177738e+04 0.93957000e+00
- 2 92 352 379 0.10393724e+01 0.10227008e+01 -0.11057621e+03 0.29721783e+03
- 2 113 706 707 0.49763402e+00 -0.12677855e+00 0.97548329e+01 0.67648140e+00
- 1 211 0 0 -0.49214834e+00 -0.31930135e+00 0.16698158e+00 0.13957000e+00
- 2 111 708 709 0.35909352e+00 0.19768363e+00 0.40310041e+00 0.13498000e+00
- 2 331 710 712 -0.67577250e+00 0.17645351e+00 -0.13680878e+01 0.95771476e+00
- 2 113 713 714 0.64719864e+00 -0.17799204e+00 -0.22004099e+01 0.62023330e+00
- 1 -211 0 0 -0.15421327e+00 -0.11566416e+00 -0.30756677e+00 0.13957000e+00
- 2 213 715 716 0.96668415e+00 0.51074292e+00 -0.21443201e+02 0.81353867e+00
- 2 113 717 718 0.11644920e+00 0.44473554e+00 -0.68353246e+02 0.78929300e+00
- 2 111 719 720 0.19565727e+00 0.34672201e+00 -0.28788388e+02 0.13498000e+00
- 2 -213 721 722 0.11536550e+01 0.12251366e+01 -0.73041654e+02 0.95624458e+00
- 1 211 0 0 0.16308759e+00 0.30375044e+00 -0.27619207e+01 0.13957000e+00
- 2 -323 723 724 -0.12981211e+00 -0.60549447e+00 -0.30721706e+01 0.93160864e+00
- 2 331 725 727 0.14027551e+00 0.30009781e+00 -0.78533888e+01 0.95782927e+00
- 2 313 728 729 -0.24513306e+00 -0.15167620e+00 -0.11231584e+01 0.90250804e+00
- 2 113 730 731 0.19947224e+00 0.54737939e+00 -0.11493113e+01 0.43457980e+00
- 2 -313 732 733 0.56302310e+00 0.24850593e+00 0.28005201e+00 0.91449098e+00
- 2 311 734 734 -0.74064227e+00 -0.27174439e+00 0.19454116e+01 0.49767000e+00
- 1 211 0 0 0.26061489e+00 -0.48131818e-01 -0.21275441e+00 0.13957000e+00
- 2 -213 735 736 0.40249598e+00 -0.69564603e-01 0.11686097e+01 0.50757843e+00
- 2 -1114 737 738 -0.76593444e-01 -0.88850166e-01 0.71491151e+01 0.11712867e+01
- 2 223 739 741 -0.62736772e+00 -0.10928175e+00 0.30120420e+01 0.78599210e+00
- 2 2114 742 743 0.98145137e-01 0.11761554e+00 0.26638128e+02 0.13030803e+01
- 2 -213 744 745 -0.76094810e+00 -0.10826918e+01 0.29421920e+02 0.78756588e+00
- 2 213 746 747 -0.84151375e-01 -0.42274140e-01 0.34466078e+01 0.55224201e+00
- 2 111 748 749 -0.85323799e-01 -0.49172055e-01 0.25562022e+01 0.13498000e+00
- 2 -213 750 751 0.18698969e+00 0.79070208e-01 0.60195077e+01 0.77359764e+00
- 2 213 752 753 -0.58486223e+00 -0.41344971e+00 0.44558673e+01 0.83890378e+00
- 2 -213 754 755 -0.25413531e+00 0.19687443e+00 0.46806701e+01 0.76651155e+00
- 2 92 381 384 0.00000000e+00 0.00000000e+00 0.51474012e+00 0.24365326e+01
- 1 211 0 0 0.15479978e+00 -0.20482766e+00 -0.23065679e+00 0.13957000e+00
- 1 -211 0 0 -0.11763369e+00 0.35508385e+00 -0.11453447e+00 0.13957000e+00
- 2 111 756 757 -0.39120711e+00 -0.37452495e-01 -0.10008596e+00 0.13498000e+00
- 2 113 758 759 0.35404103e+00 -0.11280370e+00 0.96001734e+00 0.75270475e+00
- 1 -211 0 0 0.43600507e+00 -0.54481012e+00 0.11694677e+02 0.13957000e+00
- 1 211 0 0 0.37483777e+00 -0.70010354e+00 0.17984127e+02 0.13957000e+00
- 2 111 760 761 0.14710270e+00 0.10471573e-02 0.57906837e+01 0.13498000e+00
- 1 211 0 0 0.29029271e+00 0.23951924e+00 0.13469679e+01 0.13957000e+00
- 2 111 762 763 -0.19885195e+00 0.10611601e+00 0.68809238e+00 0.13498000e+00
- 1 -211 0 0 -0.14298941e+00 -0.15072363e+00 0.62444268e+00 0.13957000e+00
- 2 111 764 765 -0.81140297e-01 0.70645746e+00 0.47140440e+01 0.13498000e+00
- 1 2212 0 0 0.31331448e+00 -0.57010171e+00 0.11355788e+04 0.93827000e+00
- 1 211 0 0 -0.46898904e-01 -0.51041487e-01 0.10763836e+03 0.13957000e+00
- 1 -211 0 0 0.37178848e+00 -0.15032610e+00 0.41804421e+02 0.13957000e+00
- 2 111 766 767 0.45392620e+00 0.44034712e+00 0.21033916e+03 0.13498000e+00
- 1 22 0 0 -0.22714710e+00 0.10764757e-01 0.13865755e+02 0.00000000e+00
- 1 22 0 0 -0.20215223e+00 0.13733448e+00 0.17891935e+02 0.00000000e+00
- 1 22 0 0 0.81158559e-01 -0.62894707e-01 0.79693996e+00 0.00000000e+00
- 1 22 0 0 0.31287362e-01 -0.70561322e-01 0.14906602e+00 0.00000000e+00
- 1 211 0 0 -0.34801885e+00 -0.10215347e+00 0.28547463e+01 0.13957000e+00
- 1 -211 0 0 0.34111691e-01 0.21399594e-01 0.33280625e+01 0.13957000e+00
- 2 111 768 769 -0.21276493e+00 0.87092695e-01 0.47663469e+01 0.13498000e+00
- 1 211 0 0 0.48532687e+00 0.35327826e-01 0.93436922e+00 0.13957000e+00
- 1 -211 0 0 0.63772361e+00 -0.99399254e-02 0.26227769e+01 0.13957000e+00
- 2 111 770 771 0.11655712e+00 -0.96037251e-01 0.89858353e+00 0.13498000e+00
- 2 111 772 773 0.23467567e+00 0.40996727e+00 0.12218907e+01 0.13498000e+00
- 2 111 774 775 0.15386100e+00 0.58429063e+00 0.98800771e+00 0.13498000e+00
- 2 111 776 777 0.10948119e+00 0.20425170e+00 0.71087036e+00 0.13498000e+00
- 1 130 0 0 0.10541478e+00 0.88206735e-01 0.32595460e+01 0.49767000e+00
- 2 311 778 778 0.80689822e+00 0.51170523e+00 0.21394176e+01 0.49767000e+00
- 1 211 0 0 0.14808007e-01 0.37232662e+00 0.47298398e+00 0.13957000e+00
- 2 -311 779 779 0.21163179e+00 0.33515245e+00 0.11939565e+01 0.49767000e+00
- 1 -211 0 0 0.33910095e+00 -0.82039251e-02 0.17643044e+01 0.13957000e+00
- 1 -211 0 0 -0.18249675e+00 0.26151897e+00 0.80253477e+01 0.13957000e+00
- 2 111 780 781 0.31047886e-01 -0.50806223e+00 0.16419524e+02 0.13498000e+00
- 1 -211 0 0 -0.27688263e+00 -0.17252779e+00 0.99138895e+01 0.13957000e+00
- 1 211 0 0 -0.15619165e+00 -0.14823276e+00 0.34362789e+01 0.13957000e+00
- 2 111 782 783 -0.36858281e+00 -0.91467220e+00 0.27943631e+02 0.13498000e+00
- 1 211 0 0 -0.32024705e+00 -0.56095965e+00 0.98356652e+01 0.13957000e+00
- 2 111 784 785 -0.16739214e+00 -0.10805367e+00 0.16002287e+02 0.13498000e+00
- 1 -211 0 0 0.17726836e+00 0.13437362e+00 0.77224277e+01 0.13957000e+00
- 2 111 786 787 -0.24879271e+00 -0.60944724e+00 0.26407045e+02 0.13498000e+00
- 1 22 0 0 -0.96288910e+00 -0.18001498e+01 0.63983389e+02 0.00000000e+00
- 1 22 0 0 -0.46399277e+00 -0.79054109e+00 0.26245785e+02 0.00000000e+00
- 1 22 0 0 -0.47139617e+00 -0.32544482e+00 0.25176847e+02 0.00000000e+00
- 1 22 0 0 -0.38428258e+00 -0.15992273e+00 0.21905298e+02 0.00000000e+00
- 1 211 0 0 -0.11096924e+00 -0.18400588e+01 0.62624669e+02 0.13957000e+00
- 1 -211 0 0 -0.49540764e-01 -0.10365570e+00 0.16183286e+02 0.13957000e+00
- 1 -2212 0 0 0.29382104e+00 -0.11558845e+01 0.74019299e+02 0.93827000e+00
- 2 111 788 789 0.27417568e+00 -0.44266320e+00 0.30722879e+02 0.13498000e+00
- 1 211 0 0 -0.10364133e+00 -0.31701925e+00 0.17746118e+02 0.13957000e+00
- 2 111 790 791 0.86158806e+00 -0.77596558e+00 0.44410641e+02 0.13498000e+00
- 2 -311 792 792 0.54244524e+00 0.10110538e+00 0.45707612e+02 0.49767000e+00
- 1 -211 0 0 0.35838074e+00 -0.42751845e+00 0.39817654e+02 0.13957000e+00
- 2 -311 793 793 0.36392979e-01 -0.60144934e+00 0.47792004e+02 0.49767000e+00
- 1 -211 0 0 0.45500600e+00 -0.42344085e+00 0.28880341e+02 0.13957000e+00
- 2 -3122 794 795 -0.10126926e+00 -0.86622953e+00 0.77486815e+03 0.11156800e+01
- 1 211 0 0 -0.27173369e+00 -0.17751833e+00 0.13695447e+03 0.13957000e+00
- 1 22 0 0 0.39803216e-01 0.40021839e-01 0.53025908e+01 0.00000000e+00
- 1 22 0 0 -0.62799775e-01 0.32424426e+00 0.42602632e+02 0.00000000e+00
- 1 2112 0 0 -0.16829373e+00 -0.10252540e+00 0.21394679e+03 0.93957000e+00
- 1 -211 0 0 -0.16219330e+00 0.25534205e+00 0.74876851e+02 0.13957000e+00
- 1 22 0 0 -0.59475363e-03 0.41898916e-01 0.78512408e+00 0.00000000e+00
- 1 22 0 0 0.17222419e+00 0.10848934e-01 0.69633767e+01 0.00000000e+00
- 1 22 0 0 -0.94119703e-02 0.11946032e-02 0.24133021e+00 0.00000000e+00
- 2 113 796 797 -0.18359096e+01 0.85916904e+00 0.61762334e+02 0.95454927e+00
- 1 -211 0 0 -0.74327860e+00 0.18588593e+00 0.13939762e+02 0.13957000e+00
- 1 211 0 0 -0.15376608e+01 0.27455096e+00 0.37050265e+02 0.13957000e+00
- 1 211 0 0 -0.76755105e+00 0.77894741e+00 0.23016295e+02 0.13957000e+00
- 2 111 798 799 -0.14178849e+00 0.76406705e+00 0.92014597e+01 0.13498000e+00
- 1 -211 0 0 -0.97411889e+00 0.16811709e+01 0.29130843e+02 0.13957000e+00
- 2 111 800 801 -0.80676638e+00 0.50251456e+00 0.16782202e+02 0.13498000e+00
- 1 -211 0 0 -0.47937895e+00 0.45635420e+00 0.21254664e+02 0.13957000e+00
- 1 211 0 0 -0.77882559e-01 0.16474538e+00 0.83789424e+01 0.13957000e+00
- 2 111 802 803 -0.28772383e+00 0.11343385e+00 0.10082004e+02 0.13498000e+00
- 1 -211 0 0 -0.24256242e+01 0.17187804e+01 0.47638125e+02 0.13957000e+00
- 1 211 0 0 -0.50044053e+00 0.36567738e+00 0.83281294e+01 0.13957000e+00
- 2 111 804 805 -0.95611185e+00 0.44145448e+00 0.19750027e+02 0.13498000e+00
- 1 211 0 0 -0.25728341e+00 0.29224164e+00 0.69084832e+01 0.13957000e+00
- 2 111 806 807 -0.13905620e+00 0.16663709e+01 0.23828572e+02 0.13498000e+00
- 1 22 0 0 0.82793077e-02 -0.27408036e-01 0.46867040e+00 0.00000000e+00
- 1 22 0 0 -0.27247920e+00 -0.37654185e-01 0.47397396e+01 0.00000000e+00
- 1 -211 0 0 0.38035570e+00 0.32616394e+00 0.90152789e+01 0.13957000e+00
- 2 111 808 809 0.26398856e+01 0.44266551e+01 0.70508839e+02 0.13498000e+00
- 1 211 0 0 0.10350784e+01 0.62509123e+00 0.26623230e+02 0.13957000e+00
- 1 -211 0 0 0.67776748e-01 0.42878758e+00 0.51647489e+01 0.13957000e+00
- 1 -211 0 0 0.88885947e+00 0.88494281e+00 0.13004196e+02 0.13957000e+00
- 1 211 0 0 0.26960566e+01 0.26159187e+01 0.47254045e+02 0.13957000e+00
- 2 111 810 811 0.55788006e+00 0.45089760e+00 0.96869763e+01 0.13498000e+00
- 1 211 0 0 0.11026955e+01 0.57041115e+00 0.16001938e+02 0.13957000e+00
- 1 -211 0 0 0.97404536e-01 0.80467506e-01 0.74293870e+00 0.13957000e+00
- 1 -2212 0 0 0.31347617e+01 0.56727807e+00 0.20140630e+02 0.93827000e+00
- 1 -211 0 0 0.24974571e+00 -0.72504493e-01 0.16659871e+01 0.13957000e+00
- 1 -2212 0 0 0.12256172e+01 0.42517724e+00 0.51803064e+01 0.93827000e+00
- 1 -211 0 0 0.18251725e+00 0.50163726e-01 0.56406054e+00 0.13957000e+00
- 2 -311 812 812 0.52356146e+00 -0.73329031e-02 0.27809607e+01 0.49767000e+00
- 1 -211 0 0 0.28839649e+00 0.32208337e+00 0.86117648e+00 0.13957000e+00
- 2 310 813 814 0.14248945e+01 0.89779886e+00 0.46735928e+01 0.49767000e+00
- 1 -211 0 0 0.37373563e+00 0.55879129e+00 0.14101889e+01 0.13957000e+00
- 1 211 0 0 0.10244319e+01 0.65431847e+00 0.15490259e+01 0.13957000e+00
- 2 111 815 816 0.26421400e+00 0.19467780e+00 0.77509440e+00 0.13498000e+00
- 1 130 0 0 0.39956621e+00 0.70194738e+00 0.21770022e+01 0.49767000e+00
- 1 321 0 0 -0.37536460e+00 0.15038731e+01 0.23717704e+01 0.49360000e+00
- 1 -211 0 0 -0.19103442e+00 0.14342569e+01 0.31752557e+01 0.13957000e+00
- 1 22 0 0 0.31538188e-01 0.47731040e+00 0.83059237e+00 0.00000000e+00
- 1 22 0 0 0.15581322e+00 0.52084188e+00 0.11068955e+01 0.00000000e+00
- 1 211 0 0 -0.42780498e+00 0.49603454e+00 0.29744356e+00 0.13957000e+00
- 1 -211 0 0 -0.22455345e+00 0.13305630e+01 0.22379553e+01 0.13957000e+00
- 1 211 0 0 -0.29165815e+00 0.36853630e-01 0.63971700e+00 0.13957000e+00
- 2 111 817 818 -0.36655280e+00 0.64261324e+00 0.51523490e+00 0.13498000e+00
- 1 -211 0 0 -0.10772398e+00 0.31166226e+00 0.57665662e+00 0.13957000e+00
- 1 211 0 0 -0.33448732e+00 0.37822451e-02 0.40060873e+00 0.13957000e+00
- 2 111 819 820 -0.18719551e+00 -0.78213137e-01 0.65963263e-01 0.13498000e+00
- 1 22 0 0 -0.46657707e-01 0.11346081e+00 -0.52965164e-01 0.00000000e+00
- 1 22 0 0 -0.12828244e+00 0.13645291e+00 -0.28674018e+00 0.00000000e+00
- 1 -211 0 0 -0.60112455e-01 0.80443340e-02 -0.17562481e+00 0.13957000e+00
- 2 111 821 822 -0.41638832e+01 0.20041528e+01 -0.28741109e+01 0.13498000e+00
- 1 211 0 0 -0.33199951e+00 0.20517093e+00 -0.90618740e+00 0.13957000e+00
- 1 -211 0 0 -0.17138247e-01 0.14358376e+00 -0.23922623e+00 0.13957000e+00
- 2 111 823 824 -0.82224275e+00 0.11047806e+01 -0.19723106e+01 0.13498000e+00
- 1 22 0 0 -0.10216665e-01 0.25664746e-02 -0.31985405e-02 0.00000000e+00
- 1 22 0 0 0.24424364e+00 0.72038450e+00 -0.51420661e+00 0.00000000e+00
- 1 211 0 0 0.22150034e+00 0.48157996e+00 -0.90733561e+00 0.13957000e+00
- 1 -211 0 0 -0.75799122e-01 0.10111761e+00 -0.18938024e+00 0.13957000e+00
- 2 111 825 826 0.40053117e+00 0.13064324e+00 -0.86541246e+00 0.13498000e+00
- 1 -211 0 0 0.15679591e+01 0.38297340e+01 -0.36717388e+01 0.13957000e+00
- 2 111 827 828 0.18275229e+00 0.20521125e+01 -0.15344120e+01 0.13498000e+00
- 1 321 0 0 0.17171858e+00 0.12948773e+01 -0.39787696e+01 0.49360000e+00
- 2 111 829 830 -0.15040984e+00 0.15118857e+01 -0.57738542e+01 0.13498000e+00
- 1 211 0 0 -0.13862647e+00 0.55636846e+00 -0.23569530e+01 0.13957000e+00
- 1 -211 0 0 0.22603603e+00 0.66848685e+00 -0.30309587e+01 0.13957000e+00
- 2 111 831 832 -0.11439571e+00 0.89568239e+00 -0.25126287e+01 0.13498000e+00
- 1 211 0 0 0.27614334e+00 -0.34975474e+00 -0.44195683e+01 0.13957000e+00
- 1 -211 0 0 0.84039636e+00 -0.40939714e+00 -0.11714533e+02 0.13957000e+00
- 2 111 833 834 0.37505532e+00 -0.14080190e+00 -0.25576195e+01 0.13498000e+00
- 1 -2112 0 0 0.40320210e+01 0.91225876e+00 -0.58783174e+02 0.93957000e+00
- 2 111 835 836 0.24390879e+00 0.62425404e-01 -0.41414867e+01 0.13498000e+00
- 2 3122 837 838 0.23968210e+01 -0.11564629e+01 -0.33225569e+02 0.11156800e+01
- 1 22 0 0 0.11181411e+00 -0.41127848e-01 -0.76115176e+00 0.00000000e+00
- 1 -211 0 0 0.95457851e+00 0.19545373e+00 -0.83118401e+01 0.13957000e+00
- 1 211 0 0 0.21432666e+00 0.15407608e+00 -0.50849767e+01 0.13957000e+00
- 2 111 839 840 0.90911112e+00 0.43482164e+00 -0.10569496e+02 0.13498000e+00
- 1 211 0 0 0.51470160e+00 0.20579246e+00 -0.81593684e+01 0.13957000e+00
- 2 111 841 842 0.13042378e+01 -0.60612734e-01 -0.32266878e+02 0.13498000e+00
- 2 -311 843 843 0.45364563e+01 0.91975779e+00 -0.59573464e+02 0.49767000e+00
- 1 -211 0 0 0.10985821e+01 0.52658943e+00 -0.15244806e+02 0.13957000e+00
- 1 321 0 0 0.37091723e+00 0.46961126e+00 -0.22553723e+02 0.49360000e+00
- 1 -211 0 0 0.72356606e+00 0.71666674e+00 -0.45224653e+02 0.13957000e+00
- 1 211 0 0 0.29653204e-01 -0.55543371e-01 -0.45015220e+01 0.13957000e+00
- 1 -211 0 0 0.22071338e+00 0.21702801e+00 -0.92229024e+01 0.13957000e+00
- 2 111 844 845 0.85574740e-01 0.10382650e+00 -0.35354672e+01 0.13498000e+00
- 2 -311 846 846 -0.19494151e+00 -0.71392506e+00 -0.25710848e+03 0.49767000e+00
- 2 111 847 848 -0.56057576e-01 0.99008312e-01 -0.83298667e+02 0.13498000e+00
- 1 321 0 0 -0.95411610e+00 0.84257637e+00 -0.15581337e+03 0.49360000e+00
- 1 -211 0 0 -0.50610524e-02 -0.77424321e-01 -0.18997864e+02 0.13957000e+00
- 1 -211 0 0 -0.17369438e+01 -0.17186247e+01 -0.13705716e+03 0.13957000e+00
- 1 211 0 0 -0.12276286e+01 -0.62520354e+00 -0.58251493e+02 0.13957000e+00
- 1 211 0 0 -0.19815530e+01 0.42337089e+00 -0.72519575e+02 0.13957000e+00
- 2 111 849 850 -0.58028446e-01 -0.37563215e-01 -0.30741831e+01 0.13498000e+00
- 1 -211 0 0 -0.75113339e-01 -0.40253287e+00 -0.37046625e+02 0.13957000e+00
- 2 111 851 852 -0.91298868e+00 -0.10471299e+01 -0.52001571e+02 0.13498000e+00
- 1 211 0 0 -0.12986781e+01 -0.10486381e+01 -0.29117996e+02 0.13957000e+00
- 2 111 853 854 -0.38546649e+00 -0.39877444e+00 -0.20318650e+02 0.13498000e+00
- 1 -211 0 0 0.15457734e+00 -0.34948324e+00 -0.14967486e+01 0.13957000e+00
- 2 111 855 856 -0.64563761e+00 -0.48052403e+00 -0.70754214e+01 0.13498000e+00
- 1 -211 0 0 -0.12820210e+00 -0.26153700e+00 -0.22189223e+01 0.13957000e+00
- 1 211 0 0 -0.72790963e+00 0.42680810e+00 -0.45590399e+01 0.13957000e+00
- 1 211 0 0 -0.63304681e+00 -0.64628047e+00 -0.38922137e+01 0.13957000e+00
- 2 111 857 858 -0.47862223e+00 -0.10658161e+00 -0.53482362e+01 0.13498000e+00
- 2 -3122 859 860 -0.12319657e+01 -0.10026553e+01 -0.77484732e+01 0.11156800e+01
- 1 -211 0 0 -0.98000875e-01 0.73829880e-01 -0.76393374e+00 0.13957000e+00
- 1 321 0 0 -0.15101534e+01 -0.16231045e+01 -0.56802604e+01 0.49360000e+00
- 2 111 861 862 -0.79824955e+00 -0.12779922e+01 -0.47999843e+01 0.13498000e+00
- 2 3122 863 864 -0.82032387e+00 -0.19260947e+01 -0.89100710e+01 0.11156800e+01
- 2 111 865 866 -0.29079810e+00 -0.95008274e+00 -0.44329865e+01 0.13498000e+00
- 1 211 0 0 -0.11498038e+01 -0.22748934e+01 -0.51241239e+01 0.13957000e+00
- 2 111 867 868 -0.22256495e+00 -0.11183043e+00 -0.10975574e+01 0.13498000e+00
- 1 22 0 0 -0.91070896e+00 -0.64341442e+00 -0.27858751e+01 0.00000000e+00
- 1 22 0 0 -0.69057982e-01 -0.14209761e+00 -0.12799407e+01 0.00000000e+00
- 1 -2112 0 0 0.88993604e-01 0.11306321e+00 -0.98088723e+00 0.93957000e+00
- 2 111 869 870 -0.19602244e+00 -0.91505742e-01 -0.13610239e+00 0.13498000e+00
- 1 2112 0 0 0.48615136e+00 0.30566185e+00 -0.32443841e+01 0.93957000e+00
- 1 -211 0 0 -0.60585885e-01 0.72767146e-01 -0.10368000e+00 0.13957000e+00
- 1 211 0 0 0.59925986e+00 -0.28548966e+00 -0.29042092e+02 0.13957000e+00
- 1 -211 0 0 0.17841983e+00 -0.41905532e+00 -0.49111012e+02 0.13957000e+00
- 1 22 0 0 -0.12013506e+00 0.25028553e+00 -0.56125282e+01 0.00000000e+00
- 1 22 0 0 -0.12752742e+00 0.60677125e-01 -0.24709005e+01 0.00000000e+00
- 1 -321 0 0 0.59537421e+00 0.23269942e+00 -0.56745632e+02 0.49360000e+00
- 2 111 871 872 0.30601416e+00 -0.46289302e+00 -0.49856369e+02 0.13498000e+00
- 1 130 0 0 -0.16568248e+00 0.97452078e-01 -0.11892542e+03 0.49767000e+00
- 1 130 0 0 0.91423693e+00 -0.10098972e+01 -0.15991675e+03 0.49767000e+00
- 1 321 0 0 -0.53913605e+00 0.72995475e+00 -0.15771320e+03 0.49360000e+00
- 1 -211 0 0 -0.10741996e-01 0.12937462e+00 -0.66529525e+02 0.13957000e+00
- 1 211 0 0 -0.15545868e-01 0.32401681e+00 0.22253200e+03 0.13957000e+00
- 1 -211 0 0 0.57302833e+00 -0.14129842e+00 0.26040992e+03 0.13957000e+00
- 1 211 0 0 0.16912713e+00 0.11867776e+00 0.92986837e+02 0.13957000e+00
- 1 -211 0 0 -0.80451470e-02 0.31725448e+00 0.77174305e+02 0.13957000e+00
- 2 111 873 874 0.30276504e-01 0.20585353e+00 0.78185561e+02 0.13498000e+00
- 1 2212 0 0 0.15161534e+00 0.25929358e+00 0.39532974e+02 0.93827000e+00
- 1 211 0 0 -0.26173658e+00 0.15588823e+00 0.22583046e+02 0.13957000e+00
- 1 211 0 0 -0.43681807e-01 0.38789085e+00 0.18773500e+02 0.13957000e+00
- 1 -211 0 0 -0.11601866e-01 0.43954393e-01 0.33059864e+01 0.13957000e+00
- 2 111 875 876 0.18955771e+00 -0.40206963e-01 0.20913225e+02 0.13498000e+00
- 1 -2212 0 0 -0.42181371e-01 -0.18793625e+00 0.16821487e+02 0.93827000e+00
- 2 111 877 878 -0.39882527e+00 -0.70243559e-02 0.78141905e+01 0.13498000e+00
- 2 111 879 880 -0.21101779e+00 0.86630537e-01 0.28875172e+01 0.13498000e+00
- 2 111 881 882 -0.40738571e+00 0.47358308e+00 0.76420028e+01 0.13498000e+00
- 2 111 883 884 -0.15652473e+00 0.39421190e-01 0.18363742e+01 0.13498000e+00
- 1 -211 0 0 0.41373372e-01 0.64803278e+00 0.32130911e+01 0.13957000e+00
- 2 111 885 886 -0.52912464e+00 0.14752263e+00 0.32727982e+01 0.13498000e+00
- 1 211 0 0 -0.22549461e-01 0.75405166e+00 0.59833709e+01 0.13957000e+00
- 2 111 887 888 0.21035127e-01 0.57197716e-01 0.79596611e+01 0.13498000e+00
- 1 -211 0 0 -0.79041984e+00 0.45957640e+00 0.69344863e+01 0.13957000e+00
- 1 211 0 0 -0.45498013e+00 0.28088704e+00 0.65550404e+01 0.13957000e+00
- 2 111 889 890 -0.51257063e+00 -0.26067690e-01 0.38631875e+01 0.13498000e+00
- 1 22 0 0 -0.90907109e-01 0.20461689e+00 0.13895260e+01 0.00000000e+00
- 1 22 0 0 -0.32672924e+00 0.64652790e+00 0.62722749e+01 0.00000000e+00
- 1 22 0 0 0.43358187e+00 0.16460477e+01 0.88431567e+01 0.00000000e+00
- 1 22 0 0 0.76048341e-01 0.27332765e+00 0.12094140e+01 0.00000000e+00
- 1 -211 0 0 -0.25257829e+00 0.34344538e+00 0.16402605e+01 0.13957000e+00
- 2 111 891 892 0.63994074e-01 0.10260810e+00 0.47117260e+01 0.13498000e+00
- 1 22 0 0 -0.15745423e+00 0.80910934e-02 0.22894075e+01 0.00000000e+00
- 1 22 0 0 -0.16983474e+00 -0.43181472e-01 0.53279809e+01 0.00000000e+00
- 1 22 0 0 -0.17611921e+00 -0.90479196e+00 0.10491046e+02 0.00000000e+00
- 1 22 0 0 -0.87633310e+00 -0.12720304e+01 0.14247557e+02 0.00000000e+00
- 1 22 0 0 -0.52995948e+00 -0.49569367e+00 0.43033597e+01 0.00000000e+00
- 1 22 0 0 -0.30503529e+00 -0.33049330e+00 0.33456832e+01 0.00000000e+00
- 1 -211 0 0 0.23082360e+00 -0.75202784e+00 0.25654532e+01 0.13957000e+00
- 2 111 893 894 -0.19166864e+00 -0.14557508e+00 0.21978479e+01 0.13498000e+00
- 1 211 0 0 -0.68449915e+00 -0.45091198e+00 0.83495335e+01 0.13957000e+00
- 1 -211 0 0 -0.10099310e+01 -0.13159957e+01 0.20413153e+02 0.13957000e+00
- 1 22 0 0 -0.13475198e+00 -0.30156608e-01 0.85746888e+00 0.00000000e+00
- 1 11 0 0 0.63466687e-02 -0.96938651e-01 0.60263282e+00 0.51000000e-03
- 1 -11 0 0 0.98147084e-01 -0.11551879e+01 0.72316247e+01 0.51000000e-03
- 1 -211 0 0 0.55829931e-01 -0.17618321e+00 0.21597354e+01 0.13957000e+00
- 2 111 895 896 -0.24234227e+00 -0.11007592e+00 0.41596341e+01 0.13498000e+00
- 1 211 0 0 0.50805994e+00 -0.55964198e+00 0.66722783e+01 0.13957000e+00
- 2 111 897 898 0.22736047e+00 -0.10623478e+01 0.58284860e+01 0.13498000e+00
- 1 -211 0 0 0.11836034e+01 -0.12400475e+01 0.97053439e+01 0.13957000e+00
- 1 211 0 0 0.46715945e+00 -0.48378826e+00 0.80500057e+01 0.13957000e+00
- 2 111 899 900 0.35904397e+00 -0.67665402e+00 0.42855534e+01 0.13498000e+00
- 2 111 901 902 0.16609543e+00 -0.87126749e+00 0.43534185e+01 0.13498000e+00
- 2 111 903 904 0.43546436e+00 -0.12066284e+01 0.67246059e+01 0.13498000e+00
- 1 -211 0 0 0.13371385e+00 -0.32630509e+00 0.38071818e+01 0.13957000e+00
- 2 111 905 906 0.10957415e+01 -0.56623599e+00 0.87492767e+01 0.13498000e+00
- 1 22 0 0 0.61602017e+00 -0.83744113e+00 0.78638565e+01 0.00000000e+00
- 1 22 0 0 -0.21750868e-02 0.10232002e-02 0.29932759e-02 0.00000000e+00
- 1 -211 0 0 -0.14295783e+00 0.28708438e+00 0.80621455e+00 0.13957000e+00
- 1 211 0 0 -0.28716880e+00 -0.34873051e+00 0.14249177e+01 0.13957000e+00
- 1 2212 0 0 -0.18149603e+01 -0.57001680e-01 0.71805739e+01 0.93827000e+00
- 1 211 0 0 -0.64724641e-01 -0.12375853e+00 0.97606527e+00 0.13957000e+00
- 1 211 0 0 -0.20156675e+00 -0.16349157e+00 0.60480237e+00 0.13957000e+00
- 1 -211 0 0 -0.34397264e+00 -0.69229899e-01 0.76592588e+00 0.13957000e+00
- 2 221 907 908 -0.62436965e+00 -0.15637835e+00 0.28923870e+01 0.54745000e+00
- 1 -2212 0 0 -0.65391891e+00 0.83799624e-01 0.31983928e+01 0.93827000e+00
- 1 -211 0 0 -0.45203852e+00 0.36571176e-01 0.12510776e+01 0.13957000e+00
- 1 -211 0 0 -0.26567772e+00 -0.35907849e+00 0.17796882e+01 0.13957000e+00
- 1 211 0 0 -0.13024300e+01 0.93674848e-03 0.34889392e+01 0.13957000e+00
- 1 2112 0 0 -0.29750945e+01 -0.37658220e+00 0.31574689e+01 0.93957000e+00
- 1 -211 0 0 -0.13926698e+01 -0.10721111e+00 0.18135320e+01 0.13957000e+00
- 1 211 0 0 -0.15217359e+01 -0.13402825e+01 0.22309556e+01 0.13957000e+00
- 1 -211 0 0 -0.16085952e+00 0.33009423e-01 0.20556017e+00 0.13957000e+00
- 1 22 0 0 -0.50446623e+00 -0.20484142e-01 -0.21945859e+00 0.00000000e+00
- 1 22 0 0 -0.36394267e-01 -0.40365603e-01 -0.94439766e-02 0.00000000e+00
- 1 211 0 0 -0.53178925e+00 -0.36366075e+00 -0.24089749e-01 0.13957000e+00
- 2 111 909 910 -0.27901343e+00 -0.96131269e+00 -0.34863026e+00 0.13498000e+00
- 1 321 0 0 -0.38164282e+00 -0.76526378e-01 -0.86036304e-01 0.49360000e+00
- 1 -211 0 0 -0.40465529e+00 -0.31096277e+00 0.39889783e+00 0.13957000e+00
- 1 2212 0 0 -0.24919942e+00 -0.13049711e+01 0.24785371e+00 0.93827000e+00
- 1 -211 0 0 -0.13856258e+00 -0.29830765e+00 -0.27123634e-01 0.13957000e+00
- 1 -211 0 0 0.76003260e+00 -0.84218608e+00 -0.68572139e-01 0.13957000e+00
- 2 111 911 912 -0.16005775e+00 -0.26094042e+00 0.12922939e+00 0.13498000e+00
- 1 211 0 0 0.29154337e+00 -0.10151250e+01 0.45211574e+00 0.13957000e+00
- 1 -211 0 0 0.11906330e+00 -0.23468893e+00 -0.29991126e+00 0.13957000e+00
- 1 2112 0 0 0.34033204e-01 -0.15366547e+01 0.39512392e+00 0.93957000e+00
- 1 211 0 0 0.17523710e+00 -0.39078261e+00 0.27136249e+00 0.13957000e+00
- 1 -2112 0 0 0.83149245e+00 -0.19895683e+01 0.13678072e+01 0.93957000e+00
- 1 -211 0 0 0.17418551e+00 -0.52159017e+00 0.62016110e+00 0.13957000e+00
- 1 -211 0 0 0.18013480e+00 0.93255352e-02 0.16633654e+00 0.13957000e+00
- 1 211 0 0 0.41595729e+00 -0.62852837e+00 0.77672583e+00 0.13957000e+00
- 2 111 913 914 0.47756549e+00 -0.67111918e+00 0.49140100e+00 0.13498000e+00
- 1 211 0 0 0.57620718e+00 -0.92940453e+00 0.24860725e+01 0.13957000e+00
- 2 111 915 916 0.57228633e-01 -0.98819160e-01 0.46086508e-01 0.13498000e+00
- 1 22 0 0 0.31497810e+00 0.18622180e+00 0.27023464e+00 0.00000000e+00
- 2 113 917 918 0.10766305e+01 -0.16133281e+00 0.12336659e+01 0.74709695e+00
- 1 -211 0 0 0.16146269e+01 -0.23313748e+00 0.35841190e+00 0.13957000e+00
- 1 211 0 0 0.14913258e+01 -0.21431460e+00 0.65939268e+00 0.13957000e+00
- 2 111 919 920 0.37439532e+00 -0.20004128e+00 0.29358915e-01 0.13498000e+00
- 1 -211 0 0 0.26955886e+00 -0.54594911e+00 0.43752017e+00 0.13957000e+00
- 2 111 921 922 0.39989388e+00 -0.72672980e+00 -0.63556736e-01 0.13498000e+00
- 1 22 0 0 0.21206884e+01 0.62680942e+00 0.16276742e+01 0.00000000e+00
- 1 -11 0 0 0.19643567e+00 0.57374213e-01 0.10340393e+00 0.51000000e-03
- 1 11 0 0 0.92306117e-02 0.27078712e-02 0.50248100e-02 0.51000000e-03
- 1 22 0 0 0.39752918e-02 -0.13359101e+00 -0.69737116e-01 0.00000000e+00
- 1 22 0 0 0.48472085e+00 -0.14920122e+01 -0.67767497e+00 0.00000000e+00
- 1 -211 0 0 0.14966497e+00 -0.19272668e+00 -0.53173496e+00 0.13957000e+00
- 2 111 923 924 0.23758969e+01 -0.15807518e+01 -0.22991618e+01 0.13498000e+00
- 1 22 0 0 0.40425774e-01 0.16307495e-02 -0.15043076e-01 0.00000000e+00
- 2 113 925 926 -0.14112430e-01 -0.36057270e+00 -0.90279562e+00 0.90954406e+00
- 1 211 0 0 -0.54896035e-01 -0.30421950e+00 -0.22870895e+00 0.13957000e+00
- 1 -211 0 0 0.35019096e+00 -0.56132422e+00 -0.22177917e+01 0.13957000e+00
- 1 211 0 0 -0.22045268e+00 0.19050911e+00 0.19980236e+00 0.13957000e+00
- 2 111 927 928 0.95887654e-01 0.59351748e+00 -0.60204505e+00 0.13498000e+00
- 2 311 929 929 0.31478370e+00 0.24722894e+00 -0.36390975e+00 0.49767000e+00
- 1 211 0 0 0.20752237e-01 0.16191869e+00 0.62481624e-01 0.13957000e+00
- 1 -321 0 0 -0.30538040e+00 0.11066339e+01 -0.19200207e+00 0.49360000e+00
- 2 111 930 931 -0.99633256e-02 0.13054740e+00 -0.24655959e+00 0.13498000e+00
- 1 211 0 0 0.30850439e+00 0.32890108e+00 -0.14258730e+00 0.13957000e+00
- 2 111 932 933 -0.39030868e+00 0.68351163e+00 -0.67968444e+00 0.13498000e+00
- 1 22 0 0 -0.21072424e+00 0.30530514e+00 -0.39792477e-01 0.00000000e+00
- 1 22 0 0 0.10674462e-01 0.98524445e-01 -0.88037050e-03 0.00000000e+00
- 1 211 0 0 -0.61345040e-02 0.29787374e+00 -0.20394343e+00 0.13957000e+00
- 1 -211 0 0 0.87676302e+00 0.16966560e+01 0.48341483e+00 0.13957000e+00
- 1 -211 0 0 -0.84191180e-01 0.29313226e+00 0.22122227e+00 0.13957000e+00
- 2 111 934 935 -0.70020533e+00 0.17337921e+00 -0.16535143e+00 0.13498000e+00
- 1 -321 0 0 -0.23082723e+00 0.49502264e+00 -0.96842520e+00 0.49360000e+00
- 2 111 936 937 0.64892552e-01 -0.50930742e-01 0.36438913e-03 0.13498000e+00
- 1 211 0 0 0.54472032e+00 -0.63376913e+00 -0.71953245e+00 0.13957000e+00
- 2 111 938 939 -0.25107264e+00 -0.24588519e+00 -0.67297163e+00 0.13498000e+00
- 1 211 0 0 -0.36305295e-01 -0.55390777e+00 -0.58240726e+02 0.13957000e+00
- 2 111 940 941 -0.10995433e+00 -0.20059316e+00 -0.21383900e+03 0.13498000e+00
- 1 -211 0 0 -0.14340138e+00 0.23191671e-01 -0.26918312e+02 0.13957000e+00
- 1 211 0 0 0.74200991e+00 0.50059842e+00 -0.89220521e+02 0.13957000e+00
- 1 211 0 0 0.27680578e+00 -0.37709783e-01 -0.18950718e+03 0.13957000e+00
- 2 111 942 943 -0.54804985e-02 -0.89272990e-02 -0.64054706e+01 0.13498000e+00
- 1 -211 0 0 0.26479659e+00 0.50904638e-01 0.14943057e+01 0.13957000e+00
- 1 211 0 0 0.23283742e+00 -0.17768319e+00 0.82605272e+01 0.13957000e+00
- 1 22 0 0 0.71117429e-01 0.66237327e-01 0.31014481e-01 0.00000000e+00
- 1 22 0 0 0.28797609e+00 0.13144630e+00 0.37208593e+00 0.00000000e+00
- 2 111 944 945 -0.29238277e+00 0.13057849e+00 -0.38228399e+00 0.13498000e+00
- 2 111 946 947 -0.21261422e+00 0.16806537e-02 -0.39918556e+00 0.13498000e+00
- 2 221 948 950 -0.17077551e+00 0.44194363e-01 -0.58661827e+00 0.54745000e+00
- 1 211 0 0 0.51999514e+00 -0.36292315e+00 -0.15913927e+01 0.13957000e+00
- 1 -211 0 0 0.12720350e+00 0.18493111e+00 -0.60901716e+00 0.13957000e+00
- 1 211 0 0 0.48512201e+00 -0.10889146e+00 -0.57762694e+01 0.13957000e+00
- 2 111 951 952 0.48156214e+00 0.61963438e+00 -0.15666931e+02 0.13498000e+00
- 1 -211 0 0 -0.28988355e+00 0.33539597e+00 -0.31288497e+02 0.13957000e+00
- 1 211 0 0 0.40633275e+00 0.10933957e+00 -0.37064749e+02 0.13957000e+00
- 1 22 0 0 0.78906843e-03 0.76297872e-01 -0.83790394e+01 0.00000000e+00
- 1 22 0 0 0.19486821e+00 0.27042414e+00 -0.20409348e+02 0.00000000e+00
- 1 -211 0 0 -0.45260192e-01 -0.93607588e-02 -0.13003808e+02 0.13957000e+00
- 2 111 953 954 0.11989152e+01 0.12344974e+01 -0.60037846e+02 0.13498000e+00
- 2 -311 955 955 -0.32234264e+00 -0.64548347e+00 -0.24652491e+01 0.49767000e+00
- 1 -211 0 0 0.19253053e+00 0.39989002e-01 -0.60692151e+00 0.13957000e+00
- 2 111 956 957 0.85023304e-01 -0.26199490e-01 -0.78848606e+00 0.13498000e+00
- 2 111 958 959 0.39583569e-01 -0.67919391e-01 -0.13844422e+01 0.13498000e+00
- 2 221 960 962 0.15668635e-01 0.39421669e+00 -0.56804606e+01 0.54745000e+00
- 1 321 0 0 -0.23183861e+00 0.11484625e+00 -0.99842343e+00 0.49360000e+00
- 1 -211 0 0 -0.13294459e-01 -0.26652246e+00 -0.12473493e+00 0.13957000e+00
- 1 211 0 0 -0.26276026e-01 0.30113060e+00 -0.35379298e+00 0.13957000e+00
- 1 -211 0 0 0.22574826e+00 0.24624880e+00 -0.79551828e+00 0.13957000e+00
- 1 -321 0 0 0.47892948e+00 0.45417162e+00 0.12806901e+00 0.49360000e+00
- 1 211 0 0 0.84093624e-01 -0.20566569e+00 0.15198300e+00 0.13957000e+00
- 2 310 963 964 -0.74064227e+00 -0.27174439e+00 0.19454116e+01 0.49767000e+00
- 1 -211 0 0 0.33785235e+00 -0.22534924e+00 0.85997358e+00 0.13957000e+00
- 2 111 965 966 0.64643627e-01 0.15578464e+00 0.30863617e+00 0.13498000e+00
- 1 -2112 0 0 -0.91149971e-01 -0.23524714e+00 0.60484363e+01 0.93957000e+00
- 1 211 0 0 0.14556527e-01 0.14639697e+00 0.11006787e+01 0.13957000e+00
- 1 211 0 0 -0.65304081e+00 -0.12231355e+00 0.21254375e+01 0.13957000e+00
- 1 -211 0 0 0.18030778e-02 0.96656156e-02 0.18877981e+00 0.13957000e+00
- 2 111 967 968 0.23870018e-01 0.33661814e-02 0.69782469e+00 0.13498000e+00
- 1 2212 0 0 0.24931165e-01 -0.11844432e+00 0.23630323e+02 0.93827000e+00
- 1 -211 0 0 0.73213972e-01 0.23605986e+00 0.30078052e+01 0.13957000e+00
- 1 -211 0 0 -0.18876328e+00 -0.13178649e+00 0.12745637e+02 0.13957000e+00
- 2 111 969 970 -0.57218482e+00 -0.95090533e+00 0.16676283e+02 0.13498000e+00
- 1 211 0 0 -0.20339106e+00 -0.13884986e+00 0.10819051e+01 0.13957000e+00
- 2 111 971 972 0.11923968e+00 0.96575725e-01 0.23647026e+01 0.13498000e+00
- 1 22 0 0 -0.44805139e-01 0.37499001e-01 0.14979039e+01 0.00000000e+00
- 1 22 0 0 -0.40518661e-01 -0.86671056e-01 0.10582983e+01 0.00000000e+00
- 1 -211 0 0 -0.16237922e+00 -0.22154067e+00 0.28708015e+01 0.13957000e+00
- 2 111 973 974 0.34936892e+00 0.30061088e+00 0.31487062e+01 0.13498000e+00
- 1 211 0 0 -0.70481444e+00 -0.52006407e+00 0.37828058e+01 0.13957000e+00
- 2 111 975 976 0.11995221e+00 0.10661436e+00 0.67306143e+00 0.13498000e+00
- 1 -211 0 0 0.42559541e-01 0.57021654e-01 0.38172634e+01 0.13957000e+00
- 2 111 977 978 -0.29669485e+00 0.13985278e+00 0.86340672e+00 0.13498000e+00
- 1 22 0 0 -0.37068309e+00 -0.68282321e-01 -0.10151080e+00 0.00000000e+00
- 1 22 0 0 -0.20524029e-01 0.30829827e-01 0.14248406e-02 0.00000000e+00
- 1 -211 0 0 0.31619599e+00 0.24079535e+00 0.68639197e+00 0.13957000e+00
- 1 211 0 0 0.37845037e-01 -0.35359905e+00 0.27362537e+00 0.13957000e+00
- 1 22 0 0 0.75978394e-01 -0.33948285e-01 0.46250321e+01 0.00000000e+00
- 1 22 0 0 0.71124308e-01 0.34995442e-01 0.11656516e+01 0.00000000e+00
- 1 22 0 0 -0.28147616e-01 -0.72170866e-02 0.26346061e+00 0.00000000e+00
- 1 22 0 0 -0.17070433e+00 0.11333310e+00 0.42463177e+00 0.00000000e+00
- 1 22 0 0 -0.46680599e-01 0.25345543e+00 0.21394370e+01 0.00000000e+00
- 1 22 0 0 -0.34459697e-01 0.45300203e+00 0.25746070e+01 0.00000000e+00
- 1 22 0 0 0.38577111e-01 0.45203784e-01 0.36594833e+02 0.00000000e+00
- 1 22 0 0 0.41534908e+00 0.39514333e+00 0.17374433e+03 0.00000000e+00
- 1 22 0 0 -0.33816654e-01 0.17277048e-01 0.21784823e+01 0.00000000e+00
- 1 22 0 0 -0.17894828e+00 0.69815647e-01 0.25878646e+01 0.00000000e+00
- 1 22 0 0 0.94715168e-01 -0.52010483e-01 0.82858481e+00 0.00000000e+00
- 1 22 0 0 0.21841957e-01 -0.44026768e-01 0.69998728e-01 0.00000000e+00
- 1 22 0 0 0.30615533e-01 0.47780618e-01 0.58395289e-01 0.00000000e+00
- 1 22 0 0 0.20406014e+00 0.36218665e+00 0.11634954e+01 0.00000000e+00
- 1 22 0 0 0.90118682e-01 0.47320103e+00 0.68921591e+00 0.00000000e+00
- 1 22 0 0 0.63742313e-01 0.11108960e+00 0.29879180e+00 0.00000000e+00
- 1 22 0 0 -0.14880544e-01 0.25372334e-01 0.20516008e-01 0.00000000e+00
- 1 22 0 0 0.12436173e+00 0.17887936e+00 0.69035436e+00 0.00000000e+00
- 2 310 979 980 0.80689822e+00 0.51170523e+00 0.21394176e+01 0.49767000e+00
- 1 130 0 0 0.21163179e+00 0.33515245e+00 0.11939565e+01 0.49767000e+00
- 1 22 0 0 -0.17561166e-01 -0.40638915e+00 0.13850416e+02 0.00000000e+00
- 1 22 0 0 0.48609052e-01 -0.10167308e+00 0.25691088e+01 0.00000000e+00
- 1 22 0 0 -0.10905036e+00 -0.43770247e+00 0.13379988e+02 0.00000000e+00
- 1 22 0 0 -0.25953244e+00 -0.47696973e+00 0.14563642e+02 0.00000000e+00
- 1 22 0 0 -0.84829630e-03 -0.49364937e-01 0.16923346e+01 0.00000000e+00
- 1 22 0 0 -0.16654384e+00 -0.58688736e-01 0.14309952e+02 0.00000000e+00
- 1 22 0 0 -0.31991958e-01 -0.18594043e+00 0.58434924e+01 0.00000000e+00
- 1 22 0 0 -0.21680075e+00 -0.42350681e+00 0.20563553e+02 0.00000000e+00
- 1 22 0 0 0.20681134e+00 -0.33941949e+00 0.19629088e+02 0.00000000e+00
- 1 22 0 0 0.67364336e-01 -0.10324371e+00 0.11093791e+02 0.00000000e+00
- 1 22 0 0 0.25262302e+00 -0.30161430e+00 0.13790896e+02 0.00000000e+00
- 1 22 0 0 0.60896504e+00 -0.47435127e+00 0.30619745e+02 0.00000000e+00
- 2 310 981 982 0.54244524e+00 0.10110538e+00 0.45707612e+02 0.49767000e+00
- 2 310 983 984 0.36392979e-01 -0.60144934e+00 0.47792004e+02 0.49767000e+00
- 1 -2212 0 0 -0.59118191e-01 -0.82259728e+00 0.71967753e+03 0.93827000e+00
- 1 211 0 0 -0.42151065e-01 -0.43632251e-01 0.55190617e+02 0.13957000e+00
- 1 -211 0 0 -0.31901037e+00 0.38300086e+00 0.78734647e+01 0.13957000e+00
- 1 211 0 0 -0.15168992e+01 0.47616818e+00 0.53888870e+02 0.13957000e+00
- 1 22 0 0 -0.11564784e+00 0.27595540e+00 0.33033574e+01 0.00000000e+00
- 1 22 0 0 -0.26140645e-01 0.48811165e+00 0.58981024e+01 0.00000000e+00
- 1 22 0 0 -0.61861287e-02 0.23337819e-01 0.67817378e+00 0.00000000e+00
- 1 22 0 0 -0.80058025e+00 0.47917674e+00 0.16104028e+02 0.00000000e+00
- 1 22 0 0 -0.13711154e+00 0.36489589e-02 0.57540004e+01 0.00000000e+00
- 1 22 0 0 -0.15061229e+00 0.10978489e+00 0.43280039e+01 0.00000000e+00
- 1 22 0 0 -0.78774908e+00 0.41783088e+00 0.16559831e+02 0.00000000e+00
- 1 22 0 0 -0.16836277e+00 0.23623606e-01 0.31901961e+01 0.00000000e+00
- 1 22 0 0 -0.10558572e-01 0.29332378e+00 0.35225880e+01 0.00000000e+00
- 1 22 0 0 -0.12849763e+00 0.13730471e+01 0.20305984e+02 0.00000000e+00
- 1 22 0 0 0.15364779e+01 0.26768652e+01 0.42783680e+02 0.00000000e+00
- 1 22 0 0 0.11034077e+01 0.17497899e+01 0.27725159e+02 0.00000000e+00
- 1 22 0 0 0.33795437e+00 0.35109853e+00 0.67198331e+01 0.00000000e+00
- 1 22 0 0 0.21992569e+00 0.99799063e-01 0.29671432e+01 0.00000000e+00
- 1 130 0 0 0.52356146e+00 -0.73329031e-02 0.27809607e+01 0.49767000e+00
- 1 -211 0 0 0.94951776e+00 0.75954271e+00 0.29465247e+01 0.13957000e+00
- 1 211 0 0 0.47537672e+00 0.13825616e+00 0.17270681e+01 0.13957000e+00
- 1 22 0 0 0.68624977e-01 0.13234200e+00 0.30381395e+00 0.00000000e+00
- 1 22 0 0 0.19558903e+00 0.62335803e-01 0.47128045e+00 0.00000000e+00
- 1 22 0 0 -0.31294127e+00 0.42710882e+00 0.34829681e+00 0.00000000e+00
- 1 22 0 0 -0.53611531e-01 0.21550441e+00 0.16693809e+00 0.00000000e+00
- 1 22 0 0 -0.56634849e-01 -0.70542581e-01 0.80192494e-01 0.00000000e+00
- 1 22 0 0 -0.13056066e+00 -0.76705561e-02 -0.14229231e-01 0.00000000e+00
- 1 22 0 0 -0.36476870e+01 0.17919637e+01 -0.25613165e+01 0.00000000e+00
- 1 22 0 0 -0.51619621e+00 0.21218916e+00 -0.31279440e+00 0.00000000e+00
- 1 22 0 0 -0.13933617e+00 0.25190522e+00 -0.34626403e+00 0.00000000e+00
- 1 22 0 0 -0.68290658e+00 0.85287541e+00 -0.16260466e+01 0.00000000e+00
- 1 22 0 0 0.28647620e+00 0.11940841e+00 -0.73773074e+00 0.00000000e+00
- 1 22 0 0 0.11405497e+00 0.11234825e-01 -0.12768171e+00 0.00000000e+00
- 1 22 0 0 0.42132744e-01 0.98434029e+00 -0.67098892e+00 0.00000000e+00
- 1 22 0 0 0.14061954e+00 0.10677722e+01 -0.86342311e+00 0.00000000e+00
- 1 22 0 0 -0.17007912e+00 0.13954090e+01 -0.53918741e+01 0.00000000e+00
- 1 22 0 0 0.19669273e-01 0.11647670e+00 -0.38198004e+00 0.00000000e+00
- 1 22 0 0 0.23006856e-01 0.58584860e-01 -0.13549957e+00 0.00000000e+00
- 1 22 0 0 -0.13740256e+00 0.83709753e+00 -0.23771292e+01 0.00000000e+00
- 1 22 0 0 0.11142731e+00 -0.96724823e-01 -0.68414271e+00 0.00000000e+00
- 1 22 0 0 0.26362801e+00 -0.44077079e-01 -0.18734768e+01 0.00000000e+00
- 1 22 0 0 0.49759608e-01 0.53789779e-01 -0.59087951e+00 0.00000000e+00
- 1 22 0 0 0.19414918e+00 0.86356250e-02 -0.35506072e+01 0.00000000e+00
- 1 2212 0 0 0.20249785e+01 -0.94766512e+00 -0.26820654e+02 0.93827000e+00
- 1 -211 0 0 0.37184248e+00 -0.20879781e+00 -0.64049148e+01 0.13957000e+00
- 1 22 0 0 0.84054144e+00 0.42471990e+00 -0.10081984e+02 0.00000000e+00
- 1 22 0 0 0.68569675e-01 0.10101744e-01 -0.48751186e+00 0.00000000e+00
- 1 22 0 0 0.99297288e-01 0.19112570e-01 -0.32442413e+01 0.00000000e+00
- 1 22 0 0 0.12049405e+01 -0.79725304e-01 -0.29022637e+02 0.00000000e+00
- 2 310 985 986 0.45364563e+01 0.91975779e+00 -0.59573464e+02 0.49767000e+00
- 1 22 0 0 0.11684034e+00 0.49548398e-01 -0.25339872e+01 0.00000000e+00
- 1 22 0 0 -0.31265603e-01 0.54278100e-01 -0.10014800e+01 0.00000000e+00
- 1 130 0 0 -0.19494151e+00 -0.71392506e+00 -0.25710848e+03 0.49767000e+00
- 1 22 0 0 0.25585137e-01 0.78417387e-01 -0.54984901e+02 0.00000000e+00
- 1 22 0 0 -0.81642713e-01 0.20590925e-01 -0.28313766e+02 0.00000000e+00
- 1 22 0 0 -0.59306915e-01 0.32108848e-01 -0.85935440e+00 0.00000000e+00
- 1 22 0 0 0.12784689e-02 -0.69672064e-01 -0.22148287e+01 0.00000000e+00
- 1 22 0 0 -0.51890077e+00 -0.62217140e+00 -0.32668298e+02 0.00000000e+00
- 1 22 0 0 -0.39408791e+00 -0.42495845e+00 -0.19333273e+02 0.00000000e+00
- 1 22 0 0 -0.21194586e+00 -0.31043435e+00 -0.13120646e+02 0.00000000e+00
- 1 22 0 0 -0.17352063e+00 -0.88340089e-01 -0.71980046e+01 0.00000000e+00
- 1 22 0 0 -0.13198719e+00 -0.37138691e-01 -0.12761575e+01 0.00000000e+00
- 1 22 0 0 -0.51365042e+00 -0.44338534e+00 -0.57992639e+01 0.00000000e+00
- 1 22 0 0 -0.41428317e-01 -0.11821295e-01 -0.19277962e+00 0.00000000e+00
- 1 22 0 0 -0.43719391e+00 -0.94760312e-01 -0.51554566e+01 0.00000000e+00
- 1 -2112 0 0 -0.10709036e+01 -0.94367473e+00 -0.65214687e+01 0.93957000e+00
- 2 111 987 988 -0.16106204e+00 -0.58980575e-01 -0.12270046e+01 0.13498000e+00
- 1 22 0 0 -0.51456878e+00 -0.71834059e+00 -0.29259201e+01 0.00000000e+00
- 1 22 0 0 -0.28368078e+00 -0.55965161e+00 -0.18740642e+01 0.00000000e+00
- 1 2112 0 0 -0.56788192e+00 -0.14982088e+01 -0.69957978e+01 0.93957000e+00
- 2 111 989 990 -0.25244195e+00 -0.42788587e+00 -0.19142733e+01 0.13498000e+00
- 1 22 0 0 -0.12030654e+00 -0.47861779e+00 -0.19152384e+01 0.00000000e+00
- 1 22 0 0 -0.17049157e+00 -0.47146494e+00 -0.25177481e+01 0.00000000e+00
- 1 22 0 0 0.13736040e-01 0.16819486e-02 -0.18599672e-01 0.00000000e+00
- 1 22 0 0 -0.23630099e+00 -0.11351238e+00 -0.10789578e+01 0.00000000e+00
- 1 22 0 0 -0.86888324e-02 0.23915146e-01 -0.43315197e-01 0.00000000e+00
- 1 22 0 0 -0.18733361e+00 -0.11542089e+00 -0.92787195e-01 0.00000000e+00
- 1 22 0 0 0.29354187e+00 -0.35262863e+00 -0.38746271e+02 0.00000000e+00
- 1 22 0 0 0.12472292e-01 -0.11026439e+00 -0.11110098e+02 0.00000000e+00
- 1 22 0 0 0.30633862e-01 0.23375754e-01 0.44285987e+01 0.00000000e+00
- 1 22 0 0 -0.35735800e-03 0.18247777e+00 0.73756962e+02 0.00000000e+00
- 1 22 0 0 0.91553173e-01 0.14585077e-01 0.14878532e+02 0.00000000e+00
- 1 22 0 0 0.98004534e-01 -0.54792040e-01 0.60346931e+01 0.00000000e+00
- 1 22 0 0 -0.24280277e+00 -0.68169512e-01 0.49951224e+01 0.00000000e+00
- 1 22 0 0 -0.15602250e+00 0.61145156e-01 0.28190680e+01 0.00000000e+00
- 1 22 0 0 -0.21504995e+00 0.60985942e-01 0.27830476e+01 0.00000000e+00
- 1 22 0 0 0.40321557e-02 0.25644595e-01 0.10446961e+00 0.00000000e+00
- 1 22 0 0 -0.35707100e+00 0.32851147e+00 0.59129953e+01 0.00000000e+00
- 1 22 0 0 -0.50314702e-01 0.14507161e+00 0.17290075e+01 0.00000000e+00
- 1 22 0 0 -0.58389655e-02 -0.27489217e-01 0.65075322e+00 0.00000000e+00
- 1 22 0 0 -0.15068577e+00 0.66910407e-01 0.11856209e+01 0.00000000e+00
- 1 22 0 0 -0.51371705e+00 0.11294281e+00 0.29771010e+01 0.00000000e+00
- 1 22 0 0 -0.15407590e-01 0.34579821e-01 0.29569719e+00 0.00000000e+00
- 1 22 0 0 0.20199027e-01 0.54301922e-01 0.12181497e+01 0.00000000e+00
- 1 22 0 0 0.83609941e-03 0.28957938e-02 0.67415114e+01 0.00000000e+00
- 1 22 0 0 -0.45701537e+00 -0.27613129e-02 0.36285723e+01 0.00000000e+00
- 1 22 0 0 -0.55555261e-01 -0.23306378e-01 0.23461517e+00 0.00000000e+00
- 1 22 0 0 0.28286909e-01 0.13040279e+00 0.31424082e+01 0.00000000e+00
- 1 22 0 0 0.35707165e-01 -0.27794684e-01 0.15693178e+01 0.00000000e+00
- 1 22 0 0 -0.17848485e+00 -0.75632536e-01 0.12916805e+01 0.00000000e+00
- 1 22 0 0 -0.13183788e-01 -0.69942541e-01 0.90616742e+00 0.00000000e+00
- 1 22 0 0 -0.12342810e+00 -0.10243920e+00 0.16261742e+01 0.00000000e+00
- 1 22 0 0 -0.11891417e+00 -0.76367114e-02 0.25334599e+01 0.00000000e+00
- 1 22 0 0 0.15158053e-01 -0.40384185e-01 0.12580982e+00 0.00000000e+00
- 1 22 0 0 0.21220241e+00 -0.10219636e+01 0.57026762e+01 0.00000000e+00
- 1 22 0 0 0.32302225e+00 -0.60138531e+00 0.40087798e+01 0.00000000e+00
- 1 22 0 0 0.36021716e-01 -0.75268714e-01 0.27677361e+00 0.00000000e+00
- 1 22 0 0 0.48319013e-01 -0.50167228e+00 0.26951991e+01 0.00000000e+00
- 1 22 0 0 0.11777641e+00 -0.36959521e+00 0.16582194e+01 0.00000000e+00
- 1 22 0 0 0.93070671e-01 -0.44316536e+00 0.22884186e+01 0.00000000e+00
- 1 22 0 0 0.34239369e+00 -0.76346305e+00 0.44361874e+01 0.00000000e+00
- 1 22 0 0 0.78908671e+00 -0.42756499e+00 0.67515925e+01 0.00000000e+00
- 1 22 0 0 0.30665475e+00 -0.13867100e+00 0.19976842e+01 0.00000000e+00
- 1 22 0 0 -0.18726822e+00 0.19101650e+00 0.66030211e+00 0.00000000e+00
- 1 22 0 0 -0.43710142e+00 -0.34739485e+00 0.22320849e+01 0.00000000e+00
- 1 22 0 0 -0.29140049e+00 -0.90119936e+00 -0.34106843e+00 0.00000000e+00
- 1 22 0 0 0.12387057e-01 -0.60113331e-01 -0.75618320e-02 0.00000000e+00
- 1 22 0 0 -0.12881465e+00 -0.22717829e+00 0.48340175e-01 0.00000000e+00
- 1 22 0 0 -0.31243096e-01 -0.33762128e-01 0.80889212e-01 0.00000000e+00
- 1 22 0 0 0.25799412e+00 -0.47371141e+00 0.31615102e+00 0.00000000e+00
- 1 22 0 0 0.21957137e+00 -0.19740777e+00 0.17524998e+00 0.00000000e+00
- 1 22 0 0 0.74959464e-01 -0.92523342e-01 0.80330434e-01 0.00000000e+00
- 1 22 0 0 -0.17730831e-01 -0.62958183e-02 -0.34243926e-01 0.00000000e+00
- 1 211 0 0 0.55251991e+00 -0.10045560e+00 0.11033348e+01 0.13957000e+00
- 1 -211 0 0 0.52411059e+00 -0.60877214e-01 0.13033101e+00 0.13957000e+00
- 1 22 0 0 0.13460792e+00 -0.98588131e-01 -0.50041009e-01 0.00000000e+00
- 1 22 0 0 0.23978740e+00 -0.10145315e+00 0.79399924e-01 0.00000000e+00
- 1 22 0 0 0.32670046e+00 -0.52443307e+00 0.20962027e-02 0.00000000e+00
- 1 22 0 0 0.73193425e-01 -0.20229673e+00 -0.65652939e-01 0.00000000e+00
- 1 22 0 0 0.50489650e+00 -0.30694173e+00 -0.54018648e+00 0.00000000e+00
- 1 22 0 0 0.18710004e+01 -0.12738101e+01 -0.17589754e+01 0.00000000e+00
- 1 211 0 0 0.11832090e+00 0.14052265e+00 -0.73289576e+00 0.13957000e+00
- 1 -211 0 0 -0.13243333e+00 -0.50109535e+00 -0.16989986e+00 0.13957000e+00
- 1 22 0 0 0.16003666e-01 0.14810834e+00 -0.23763682e+00 0.00000000e+00
- 1 22 0 0 0.79883988e-01 0.44540914e+00 -0.36440822e+00 0.00000000e+00
- 1 130 0 0 0.31478370e+00 0.24722894e+00 -0.36390975e+00 0.49767000e+00
- 1 22 0 0 -0.13799887e-01 -0.45214293e-02 -0.13239956e+00 0.00000000e+00
- 1 22 0 0 0.38365615e-02 0.13506882e+00 -0.11416003e+00 0.00000000e+00
- 1 22 0 0 -0.18697802e+00 0.44373525e+00 -0.45277180e+00 0.00000000e+00
- 1 22 0 0 -0.20333066e+00 0.23977638e+00 -0.22691263e+00 0.00000000e+00
- 1 22 0 0 -0.47831300e+00 0.17258062e+00 -0.14850372e+00 0.00000000e+00
- 1 22 0 0 -0.22189233e+00 0.79859721e-03 -0.16847713e-01 0.00000000e+00
- 1 22 0 0 0.82435675e-01 -0.12301190e-01 0.46558929e-01 0.00000000e+00
- 1 22 0 0 -0.17543124e-01 -0.38629552e-01 -0.46194540e-01 0.00000000e+00
- 1 22 0 0 -0.16003290e-01 0.68734428e-02 -0.33203408e-02 0.00000000e+00
- 1 22 0 0 -0.23506935e+00 -0.25275863e+00 -0.66965129e+00 0.00000000e+00
- 1 22 0 0 -0.13253198e+00 -0.20347465e+00 -0.19484805e+03 0.00000000e+00
- 1 22 0 0 0.22577648e-01 0.28814864e-02 -0.18990949e+02 0.00000000e+00
- 1 22 0 0 -0.50069259e-01 -0.43877868e-01 -0.47395099e+01 0.00000000e+00
- 1 22 0 0 0.44588761e-01 0.34950569e-01 -0.16659606e+01 0.00000000e+00
- 1 22 0 0 -0.56449075e-03 -0.13112670e-01 -0.49749098e-01 0.00000000e+00
- 1 22 0 0 -0.29181827e+00 0.14369116e+00 -0.33253490e+00 0.00000000e+00
- 1 22 0 0 0.16521406e-01 0.14437598e-01 -0.43061677e-01 0.00000000e+00
- 1 22 0 0 -0.22913563e+00 -0.12756945e-01 -0.35612388e+00 0.00000000e+00
- 2 111 991 992 -0.18054979e+00 0.45957703e-01 -0.37216120e+00 0.13498000e+00
- 2 111 993 994 -0.11606848e-01 0.67370244e-01 -0.50152353e-01 0.13498000e+00
- 2 111 995 996 0.21381131e-01 -0.69133584e-01 -0.16430472e+00 0.13498000e+00
- 1 22 0 0 0.82966608e-01 0.39533976e-01 -0.16332833e+01 0.00000000e+00
- 1 22 0 0 0.39859553e+00 0.58010040e+00 -0.14033648e+02 0.00000000e+00
- 1 22 0 0 0.95649873e-01 0.52557504e-01 -0.35950148e+01 0.00000000e+00
- 1 22 0 0 0.11032654e+01 0.11819399e+01 -0.56442832e+02 0.00000000e+00
- 1 130 0 0 -0.32234264e+00 -0.64548347e+00 -0.24652491e+01 0.49767000e+00
- 1 22 0 0 0.43544347e-01 -0.72031372e-01 -0.27224479e+00 0.00000000e+00
- 1 22 0 0 0.41478957e-01 0.45831881e-01 -0.51624127e+00 0.00000000e+00
- 1 22 0 0 0.30195679e-01 -0.99105169e-01 -0.12706101e+01 0.00000000e+00
- 1 22 0 0 0.93878903e-02 0.31185778e-01 -0.11383209e+00 0.00000000e+00
- 2 111 997 998 0.19289832e-01 0.40403361e-01 -0.89330765e+00 0.13498000e+00
- 2 111 999 1000 0.11626442e+00 0.23074052e+00 -0.32811907e+01 0.13498000e+00
- 2 111 1001 1002 -0.11988562e+00 0.12307281e+00 -0.15059622e+01 0.13498000e+00
- 1 -211 0 0 -0.58539561e+00 -0.27336233e+00 0.17533441e+01 0.13957000e+00
- 1 211 0 0 -0.15524666e+00 0.16179387e-02 0.19206744e+00 0.13957000e+00
- 1 22 0 0 -0.42262668e-01 0.52207071e-01 0.94962350e-01 0.00000000e+00
- 1 22 0 0 0.10690630e+00 0.10357757e+00 0.21367381e+00 0.00000000e+00
- 1 22 0 0 0.40693881e-01 0.37517142e-01 0.63707785e+00 0.00000000e+00
- 1 22 0 0 -0.16823862e-01 -0.34150961e-01 0.60746839e-01 0.00000000e+00
- 1 22 0 0 -0.16819214e-01 -0.10000519e-01 0.13795421e+00 0.00000000e+00
- 1 22 0 0 -0.55536560e+00 -0.94090481e+00 0.16538329e+02 0.00000000e+00
- 1 22 0 0 0.11018235e+00 0.11277642e+00 0.23165784e+01 0.00000000e+00
- 1 22 0 0 0.90573288e-02 -0.16200698e-01 0.48124254e-01 0.00000000e+00
- 1 22 0 0 0.23142930e+00 0.22845878e+00 0.25503270e+01 0.00000000e+00
- 1 22 0 0 0.11793962e+00 0.72152101e-01 0.59837918e+00 0.00000000e+00
- 1 22 0 0 0.14623439e+00 0.10742956e+00 0.55092968e+00 0.00000000e+00
- 1 22 0 0 -0.26282187e-01 -0.81520300e-03 0.12213175e+00 0.00000000e+00
- 1 22 0 0 -0.27346951e+00 0.86104276e-01 0.62013229e+00 0.00000000e+00
- 1 22 0 0 -0.23225344e-01 0.53748503e-01 0.24327444e+00 0.00000000e+00
- 1 -211 0 0 0.14086450e+00 0.26520834e+00 0.46172498e+00 0.13957000e+00
- 1 211 0 0 0.66603372e+00 0.24649689e+00 0.16776926e+01 0.13957000e+00
- 1 211 0 0 -0.28978313e-01 -0.12704821e-01 0.79952641e+01 0.13957000e+00
- 1 -211 0 0 0.57142356e+00 0.11381020e+00 0.37712347e+02 0.13957000e+00
- 1 -211 0 0 -0.57439869e-01 -0.58840731e-01 0.19581696e+02 0.13957000e+00
- 1 211 0 0 0.93832848e-01 -0.54260861e+00 0.28210308e+02 0.13957000e+00
- 1 211 0 0 0.12867996e+01 0.16586334e+00 -0.14907364e+02 0.13957000e+00
- 1 -211 0 0 0.32496568e+01 0.75389445e+00 -0.44666100e+02 0.13957000e+00
- 1 22 0 0 0.54558233e-02 0.24127479e-01 -0.66857756e-01 0.00000000e+00
- 1 22 0 0 -0.16651787e+00 -0.83108054e-01 -0.11601468e+01 0.00000000e+00
- 1 22 0 0 -0.13417046e+00 -0.12332231e+00 -0.83463535e+00 0.00000000e+00
- 1 22 0 0 -0.11827149e+00 -0.30456356e+00 -0.10796379e+01 0.00000000e+00
- 1 22 0 0 -0.20200923e+00 0.39607675e-01 -0.34991440e+00 0.00000000e+00
- 1 22 0 0 0.21459433e-01 0.63500273e-02 -0.22246802e-01 0.00000000e+00
- 1 22 0 0 0.15008678e-01 0.10283065e+00 -0.49379882e-01 0.00000000e+00
- 1 22 0 0 -0.26615526e-01 -0.35460402e-01 -0.77247003e-03 0.00000000e+00
- 1 22 0 0 0.19756353e-01 -0.10241220e+00 -0.16003793e+00 0.00000000e+00
- 1 22 0 0 0.16247779e-02 0.33278621e-01 -0.42667940e-02 0.00000000e+00
- 1 22 0 0 -0.24193064e-01 0.74648339e-01 -0.66602012e+00 0.00000000e+00
- 1 22 0 0 0.43482896e-01 -0.34244978e-01 -0.22728753e+00 0.00000000e+00
- 1 22 0 0 -0.74850606e-02 0.91872024e-02 -0.21409587e-01 0.00000000e+00
- 1 22 0 0 0.12374948e+00 0.22155331e+00 -0.32597811e+01 0.00000000e+00
- 1 22 0 0 -0.61379396e-01 0.89264739e-02 -0.19786336e+00 0.00000000e+00
- 1 22 0 0 -0.58506222e-01 0.11414634e+00 -0.13080989e+01 0.00000000e+00
- 440
- 2 25 2 3 -0.24863236e+02 0.18687137e+03 -0.17076395e+03 0.12499412e+03
- 2 23 4 5 0.47161588e+01 0.84366036e+02 -0.79099561e+02 0.30081079e+02
- 2 23 6 9 -0.29579395e+02 0.10250533e+03 -0.91664387e+02 0.83986502e+02
- 1 11 0 0 -0.92361811e+01 0.65911867e+02 -0.58371746e+02 0.51000000e-03
- 1 -11 0 0 0.13952340e+02 0.18454169e+02 -0.20727814e+02 0.51000000e-03
- 1 -11 0 0 0.29032156e+02 0.23187882e+02 -0.24947266e+02 0.51000000e-03
- 1 22 0 0 -0.12885545e+01 0.17448996e+01 -0.14670235e+01 0.00000000e+00
- 1 11 0 0 -0.56404290e+02 0.76330118e+02 -0.64203925e+02 0.51000000e-03
- 1 22 0 0 -0.91870594e+00 0.12424308e+01 -0.10461733e+01 0.00000000e+00
- 2 323 67 68 0.80583915e+00 -0.11127659e+01 -0.42336924e+04 0.89707336e+00
- 2 4 69 69 0.10591237e+03 -0.12886322e+03 -0.76177094e+03 0.15000000e+01
- 2 21 69 69 0.28861598e+01 -0.38179052e+01 -0.20413867e+02 0.00000000e+00
- 2 21 69 69 0.16071987e+01 -0.31271716e+01 -0.14688201e+02 0.00000000e+00
- 2 21 69 69 -0.65247073e+00 -0.51500209e+00 -0.24658609e+01 0.00000000e+00
- 2 21 69 69 -0.49587260e+01 -0.28463134e+01 -0.11005475e+02 0.00000000e+00
- 2 21 69 69 -0.20465618e+01 0.70274544e+00 -0.18229887e+01 0.00000000e+00
- 2 21 69 69 -0.30232931e+00 0.64122913e+00 -0.12979947e+01 0.00000000e+00
- 2 21 69 69 0.46537137e+00 -0.21004346e+01 -0.75357281e+00 0.00000000e+00
- 2 21 69 69 0.11989020e+01 -0.42974967e+00 -0.11247647e+00 0.00000000e+00
- 2 21 69 69 0.15189407e+01 -0.62677482e+00 -0.51459318e+02 0.00000000e+00
- 2 21 69 69 -0.10567024e+01 0.36851391e+00 -0.63228198e+02 0.00000000e+00
- 2 21 69 69 -0.15189407e+01 0.62677482e+00 -0.14609998e+03 0.00000000e+00
- 2 21 69 69 0.25624452e+00 0.62082085e+00 -0.21325410e+03 0.00000000e+00
- 2 21 69 69 0.16188450e+00 0.16333289e+00 -0.83424846e+00 0.00000000e+00
- 2 21 69 69 -0.44149729e+00 -0.17999426e+00 -0.23824161e+02 0.00000000e+00
- 2 21 69 69 -0.11124475e+01 0.26854241e+01 -0.10139936e+03 0.00000000e+00
- 2 21 69 69 0.19965580e+00 0.49966232e+00 -0.23636585e+01 0.00000000e+00
- 2 2101 69 69 0.43395834e+00 -0.44057760e+00 -0.10464006e+04 0.57933000e+00
- 2 1 103 103 -0.36234208e+02 -0.32547734e+02 0.19135042e+03 0.33000000e+00
- 2 21 103 103 -0.17908291e+02 -0.13344421e+02 0.95512424e+02 0.00000000e+00
- 2 21 103 103 -0.76524466e+01 -0.36260717e+01 0.27842205e+02 0.00000000e+00
- 2 21 103 103 -0.43928365e+01 -0.22612578e+01 0.16737878e+02 0.00000000e+00
- 2 21 103 103 -0.16421032e+02 -0.10912488e+02 0.72681308e+02 0.00000000e+00
- 2 21 103 103 -0.12678384e+02 -0.72125713e+01 0.51043227e+02 0.00000000e+00
- 2 21 103 103 -0.41417856e+01 -0.12215981e+01 0.11504149e+02 0.00000000e+00
- 2 21 103 103 -0.97217337e-01 0.69316199e-01 -0.11774295e+00 0.00000000e+00
- 2 21 103 103 -0.11989020e+01 0.42974967e+00 0.43818417e+01 0.00000000e+00
- 2 21 103 103 0.49587260e+01 0.28463134e+01 0.24410992e+02 0.00000000e+00
- 2 21 103 103 0.10567024e+01 -0.36851391e+00 0.15860282e+02 0.00000000e+00
- 2 21 103 103 -0.46537137e+00 0.21004346e+01 0.82001286e+02 0.00000000e+00
- 2 21 103 103 -0.40029107e+00 0.10313284e+00 0.11809196e+03 0.00000000e+00
- 2 21 103 103 -0.20764821e+00 -0.24713011e+00 -0.19485708e+00 0.00000000e+00
- 2 21 103 103 0.54944454e-01 0.72350785e-01 0.10991709e+00 0.00000000e+00
- 2 21 103 103 0.23371704e+00 0.52762164e-01 0.33270618e+00 0.00000000e+00
- 2 21 103 103 0.21751575e+01 0.19957736e+01 0.41228511e+02 0.00000000e+00
- 2 21 103 103 0.58433406e+01 0.28177599e+01 0.77686150e+02 0.00000000e+00
- 2 21 103 103 0.23673592e+01 0.45129341e+01 0.53290433e+02 0.00000000e+00
- 2 21 103 103 0.55119528e+01 0.10809328e+02 0.10625317e+03 0.00000000e+00
- 2 21 103 103 0.89157529e-01 0.95180751e+00 0.12743674e+02 0.00000000e+00
- 2 21 103 103 0.31740615e+00 0.17851373e+00 0.45982771e+01 0.00000000e+00
- 2 21 103 103 -0.55717764e-01 -0.96244598e-01 0.15727025e+00 0.00000000e+00
- 2 21 103 103 -0.14587276e+00 0.34405392e+00 0.56807577e+01 0.00000000e+00
- 2 21 103 103 0.65505442e+00 -0.13087459e+01 0.32470809e+02 0.00000000e+00
- 2 21 103 103 0.48847059e+00 -0.24887132e+01 0.61846231e+03 0.00000000e+00
- 2 21 103 103 -0.64578350e+00 -0.86038866e+00 0.25039578e+03 0.00000000e+00
- 2 21 103 103 -0.43132804e-01 0.59698652e+00 0.43112053e+02 0.00000000e+00
- 2 21 103 103 -0.19068569e+00 0.40281434e+00 0.10570768e+02 0.00000000e+00
- 2 2101 103 103 -0.18589320e+01 0.11598185e+01 0.49315789e+04 0.57933000e+00
- 2 2 158 158 0.25200700e+01 0.83657304e+00 -0.18844709e+02 0.00000000e+00
- 2 21 158 158 0.20465618e+01 -0.70274544e+00 -0.16148998e+02 0.00000000e+00
- 2 -2 158 158 -0.25200700e+01 -0.83657304e+00 -0.17713855e+02 0.00000000e+00
- 2 21 165 165 -0.14004457e+01 -0.33272425e+01 0.71980652e+01 0.00000000e+00
- 2 21 165 165 -0.25624452e+00 -0.62082085e+00 0.36735163e+01 0.00000000e+00
- 2 21 165 165 0.30232931e+00 -0.64122913e+00 0.22289392e+01 0.00000000e+00
- 2 21 165 165 0.40029107e+00 -0.10313284e+00 0.98220397e+00 0.00000000e+00
- 2 21 165 165 0.14004457e+01 0.33272425e+01 0.64995495e+01 0.00000000e+00
- 1 321 0 0 0.84241804e+00 -0.10102471e+01 -0.40275115e+04 0.49360000e+00
- 2 111 173 174 -0.36578884e-01 -0.10251874e+00 -0.20618093e+03 0.13498000e+00
- 2 92 70 102 0.10255101e+03 -0.13663864e+03 -0.24631950e+04 0.30444098e+03
- 2 411 175 177 0.79663366e+02 -0.97326476e+02 -0.57327155e+03 0.18693000e+01
- 2 313 178 179 0.10009958e+02 -0.12482517e+02 -0.72830822e+02 0.88435560e+00
- 1 -321 0 0 0.17658179e+02 -0.22493598e+02 -0.13282014e+03 0.49360000e+00
- 2 111 180 181 0.95989672e+00 -0.56108330e+00 -0.27546638e+01 0.13498000e+00
- 1 211 0 0 0.12436108e+00 -0.37122047e+00 -0.24761588e+01 0.13957000e+00
- 2 -213 182 183 0.10006072e+01 -0.17365396e+01 -0.82046775e+01 0.45477658e+00
- 1 2212 0 0 0.42163880e-01 -0.60815185e+00 -0.38225655e+01 0.93827000e+00
- 1 -2212 0 0 -0.37960096e+00 -0.14428641e+01 -0.39889048e+01 0.93827000e+00
- 1 211 0 0 -0.16724012e+01 -0.33421005e+00 -0.37319213e+01 0.13957000e+00
- 1 -211 0 0 -0.96591360e+00 -0.96897455e+00 -0.25409992e+01 0.13957000e+00
- 2 331 184 186 -0.19409824e+01 0.47647625e+00 -0.33520192e+01 0.95788612e+00
- 2 2224 187 188 -0.60906536e+00 -0.18246236e+01 -0.21551568e+01 0.13287350e+01
- 2 -2224 189 190 -0.10123914e+01 0.67395643e+00 -0.15959350e+01 0.11104334e+01
- 2 213 191 192 0.10526208e+01 -0.58044038e+00 -0.62728384e+00 0.87356206e+00
- 2 113 193 194 -0.29028211e+00 -0.60028254e+00 -0.19244677e+00 0.58099923e+00
- 2 311 195 195 0.40422879e+00 0.10511691e+00 -0.24309492e+01 0.49767000e+00
- 2 -323 196 197 0.55394631e+00 -0.54101437e+00 -0.27008532e+02 0.89399587e+00
- 1 211 0 0 -0.11971707e-01 -0.49407220e-01 -0.97017517e+01 0.13957000e+00
- 2 313 198 199 0.24354935e+00 0.65746431e+00 -0.27946021e+02 0.85731753e+00
- 2 -311 200 200 -0.66516290e+00 -0.32467838e+00 -0.14903222e+02 0.49767000e+00
- 2 313 201 202 -0.10004069e+01 -0.24991717e+00 -0.54947617e+02 0.97435297e+00
- 1 -321 0 0 0.87163087e+00 0.59316749e+00 -0.10890785e+03 0.49360000e+00
- 1 211 0 0 0.21675255e+00 -0.24305736e+00 -0.12943337e+02 0.13957000e+00
- 2 -213 203 204 -0.11593445e+01 0.26038035e+00 -0.99900758e+02 0.82562125e+00
- 1 2112 0 0 0.30254483e+00 0.42845526e+00 -0.43265993e+02 0.93957000e+00
- 2 331 205 206 -0.33764472e-01 0.17079046e+00 -0.69602447e+02 0.95774512e+00
- 2 -1114 207 208 -0.70587976e+00 0.13344188e+01 -0.60243957e+02 0.13005178e+01
- 1 -211 0 0 0.26144431e+00 -0.22903375e+00 -0.74262358e+01 0.13957000e+00
- 2 113 209 210 -0.32958043e+00 0.68564215e+00 -0.15833191e+02 0.69315569e+00
- 2 213 211 212 -0.51825882e+00 0.91734553e+00 -0.60264140e+02 0.86615765e+00
- 2 -213 213 214 -0.28079527e+00 0.25399327e+00 -0.16045856e+02 0.89395143e+00
- 2 2224 215 216 0.86139710e+00 -0.56541738e-01 -0.91884996e+03 0.11953645e+01
- 1 -211 0 0 -0.99836503e-01 -0.17121940e+00 -0.98607985e+02 0.13957000e+00
- 2 92 104 157 -0.80986549e+02 -0.47052028e+02 0.68997768e+04 0.50983726e+03
- 2 111 217 218 -0.23656304e+02 -0.21903038e+02 0.12719934e+03 0.13498000e+00
- 2 -213 219 220 -0.18792824e+02 -0.15292458e+02 0.99293858e+02 0.10217399e+01
- 2 213 221 222 -0.46819993e+01 -0.35036552e+01 0.21219211e+02 0.67055796e+00
- 1 -211 0 0 -0.10679406e+02 -0.67040801e+01 0.52308851e+02 0.13957000e+00
- 2 213 223 224 -0.16289764e+02 -0.98741158e+01 0.66499140e+02 0.77107795e+00
- 2 111 225 226 -0.52109704e+00 -0.94922547e-01 0.27714507e+01 0.13498000e+00
- 1 -211 0 0 -0.29333666e+01 -0.17387607e+01 0.10589575e+02 0.13957000e+00
- 1 211 0 0 -0.10679918e+02 -0.68599051e+01 0.45730232e+02 0.13957000e+00
- 1 -211 0 0 -0.16109162e+01 -0.66013673e+00 0.75128951e+01 0.13957000e+00
- 1 2112 0 0 -0.47710639e+01 -0.18492232e+01 0.16764726e+02 0.93957000e+00
- 2 -2114 227 228 -0.45044272e+01 -0.23808263e+01 0.16158568e+02 0.13204450e+01
- 2 213 229 230 -0.72748865e+00 0.25253007e+00 0.19869699e+01 0.89400367e+00
- 2 -213 231 232 -0.16445143e+00 -0.12850138e+00 0.37975115e+01 0.51910908e+00
- 1 211 0 0 0.80853489e+00 0.64127308e+00 0.20060197e+01 0.13957000e+00
- 1 -211 0 0 0.76376034e+00 0.63579711e+00 0.48090532e+01 0.13957000e+00
- 2 213 233 234 0.53066702e+00 -0.15828195e+00 0.60272969e+01 0.57812259e+00
- 2 113 235 236 0.65523830e+00 0.78124328e+00 0.33194730e+01 0.77944351e+00
- 2 223 237 239 0.10788295e+01 0.90773702e+00 0.15844760e+02 0.74680268e+00
- 2 313 240 241 -0.83985385e-01 0.46552904e+00 0.21526820e+02 0.88842776e+00
- 2 333 242 243 0.81241422e+00 0.69624455e+00 0.17023568e+02 0.10160456e+01
- 2 -311 244 244 -0.49845822e+00 -0.11699340e-01 0.22404436e+02 0.49767000e+00
- 1 -211 0 0 0.94235360e+00 -0.23563457e+00 0.20311535e+02 0.13957000e+00
- 2 213 245 246 -0.34698646e+00 0.47950235e+00 0.27704912e+02 0.90305185e+00
- 2 -213 247 248 -0.22791987e+00 0.71603942e+00 0.34543013e+02 0.81496667e+00
- 1 211 0 0 -0.60798179e-02 -0.53509355e+00 0.47033621e+02 0.13957000e+00
- 2 221 249 250 -0.17713722e+00 0.79669611e+00 0.11492821e+02 0.54745000e+00
- 1 -211 0 0 -0.14983018e+00 -0.49906017e+00 0.16179834e+01 0.13957000e+00
- 2 213 251 252 -0.90296763e-01 -0.30045578e-01 0.10111346e+01 0.46015948e+00
- 2 331 253 255 0.23552429e+00 0.18219493e+00 0.31182119e+01 0.95783388e+00
- 1 -211 0 0 0.57814250e-01 -0.60077418e+00 0.34311778e+01 0.13957000e+00
- 2 223 256 258 0.16268608e+01 0.12500744e+01 0.24643696e+02 0.78283776e+00
- 2 213 259 260 0.85321435e+00 0.50284321e+00 0.50015568e+01 0.61865353e+00
- 2 113 261 262 -0.13443392e+00 0.58072285e+00 0.70341174e+01 0.79356633e+00
- 2 111 263 264 0.24377739e+01 0.13639618e+01 0.25615250e+02 0.13498000e+00
- 2 313 265 266 0.93890974e+00 0.26543793e+01 0.35037748e+02 0.88065896e+00
- 2 -323 267 268 0.21345933e+01 0.30850016e+01 0.35955966e+02 0.90854069e+00
- 1 211 0 0 0.33219410e+01 0.19160381e+01 0.46928592e+02 0.13957000e+00
- 2 -213 269 270 0.25494821e+01 0.37063856e+01 0.44003891e+02 0.11055509e+01
- 1 321 0 0 0.14298971e+01 0.27612318e+01 0.34572469e+02 0.49360000e+00
- 2 -323 271 272 0.16218928e+01 0.41932541e+01 0.38856615e+02 0.86749152e+00
- 2 111 273 274 0.17434396e+00 -0.86080121e+00 0.14783330e+02 0.13498000e+00
- 2 331 275 277 0.49853730e-01 -0.85390395e+00 0.64117318e+02 0.95768808e+00
- 1 2212 0 0 0.43318311e+00 0.30529033e+00 0.41307720e+02 0.93827000e+00
- 2 -3122 278 279 -0.55148560e-01 -0.86662308e+00 0.20902285e+03 0.11156800e+01
- 2 -313 280 281 -0.56083577e+00 -0.61039929e+00 0.15941198e+03 0.84635947e+00
- 2 223 282 283 0.32687104e+00 -0.85373142e+00 0.25206892e+03 0.77292068e+00
- 2 113 284 285 0.15379740e-01 -0.72003215e+00 0.93620664e+02 0.69183272e+00
- 2 311 286 286 -0.16924611e+00 0.38866610e+00 0.99005345e+02 0.49767000e+00
- 2 -323 287 288 -0.18284246e+00 0.25340762e+00 0.23573161e+03 0.92054384e+00
- 2 213 289 290 -0.43077450e+00 0.25224033e+00 0.35479285e+03 0.91113959e+00
- 1 -211 0 0 -0.31142469e+00 0.23882645e+00 0.67394602e+02 0.13957000e+00
- 2 323 291 292 -0.75560184e-02 -0.85418262e-02 0.10005305e+04 0.97134169e+00
- 2 3112 293 294 -0.99626032e-01 -0.18647468e+00 0.48620490e+03 0.11974400e+01
- 1 211 0 0 -0.12402748e+01 0.96158108e+00 0.28090762e+04 0.13957000e+00
- 2 92 159 164 0.20465618e+01 -0.70274544e+00 -0.52707561e+02 0.71621790e+01
- 1 321 0 0 0.94650621e+00 -0.28078153e-01 -0.64596444e+01 0.49360000e+00
- 2 -311 295 295 0.25376475e+01 0.53323039e+00 -0.20403133e+02 0.49767000e+00
- 2 -213 296 297 0.55593971e+00 -0.45343034e+00 -0.71652239e+01 0.63214090e+00
- 1 211 0 0 -0.73921351e+00 -0.56177939e+00 -0.59548095e+01 0.13957000e+00
- 2 223 298 300 -0.13085636e+01 -0.36344969e+00 -0.98034745e+01 0.78471172e+00
- 1 -211 0 0 0.54245513e-01 0.17076174e+00 -0.29212756e+01 0.13957000e+00
- 2 92 166 172 0.44637586e+00 -0.13651828e+01 0.20582274e+02 0.92875946e+01
- 1 321 0 0 0.17746816e+00 0.41763648e+00 0.81497019e+00 0.49360000e+00
- 2 -323 301 302 0.11479259e-01 -0.36641584e+00 0.11593154e+01 0.93819304e+00
- 1 321 0 0 -0.93636642e+00 -0.13721163e+01 0.42802866e+01 0.49360000e+00
- 2 -311 303 303 0.32358955e+00 -0.41721454e+00 0.23295978e+01 0.49767000e+00
- 2 3112 304 305 -0.41474886e+00 -0.83983527e+00 0.34410562e+01 0.11974400e+01
- 2 -313 306 307 0.10285665e+01 0.12567240e+01 0.42688899e+01 0.89861107e+00
- 2 -3324 308 309 0.25638773e+00 -0.43961401e-01 0.42881581e+01 0.15308700e+01
- 1 22 0 0 -0.14522841e-02 -0.26578274e-01 -0.15663803e+03 0.00000000e+00
- 1 22 0 0 -0.35126600e-01 -0.75940470e-01 -0.49542908e+02 0.00000000e+00
- 2 333 310 311 0.42937025e+02 -0.52975555e+02 -0.30901644e+03 0.10312869e+01
- 1 211 0 0 0.21104093e+02 -0.25266958e+02 -0.15045624e+03 0.13957000e+00
- 2 111 312 313 0.15622249e+02 -0.19083963e+02 -0.11379887e+03 0.13498000e+00
- 2 311 314 314 0.67244140e+01 -0.80968284e+01 -0.46892721e+02 0.49767000e+00
- 2 111 315 316 0.32855436e+01 -0.43856887e+01 -0.25938101e+02 0.13498000e+00
- 1 22 0 0 0.79568576e+00 -0.51835670e+00 -0.22981343e+01 0.00000000e+00
- 1 22 0 0 0.16421096e+00 -0.42726599e-01 -0.45652946e+00 0.00000000e+00
- 1 -211 0 0 0.35366436e+00 -0.56626482e+00 -0.21285099e+01 0.13957000e+00
- 2 111 317 318 0.64694285e+00 -0.11702748e+01 -0.60761676e+01 0.13498000e+00
- 1 211 0 0 -0.25208007e+00 -0.40604781e-01 -0.48313739e+00 0.13957000e+00
- 1 -211 0 0 -0.49763440e+00 0.40842742e-01 -0.94878782e+00 0.13957000e+00
- 2 221 319 321 -0.11912679e+01 0.47623829e+00 -0.19200940e+01 0.54745000e+00
- 1 2212 0 0 -0.31258326e+00 -0.10873843e+01 -0.17218962e+01 0.93827000e+00
- 1 211 0 0 -0.29648210e+00 -0.73723934e+00 -0.43326063e+00 0.13957000e+00
- 1 -2212 0 0 -0.75730621e+00 0.49978000e+00 -0.13185069e+01 0.93827000e+00
- 1 -211 0 0 -0.25508517e+00 0.17417643e+00 -0.27742810e+00 0.13957000e+00
- 1 211 0 0 0.48519720e+00 -0.62408604e+00 -0.64194729e+00 0.13957000e+00
- 2 111 322 323 0.56742358e+00 0.43645658e-01 0.14663456e-01 0.13498000e+00
- 1 -211 0 0 -0.10241087e+00 -0.62353631e+00 -0.16841892e+00 0.13957000e+00
- 1 211 0 0 -0.18787124e+00 0.23253771e-01 -0.24027848e-01 0.13957000e+00
- 2 310 324 325 0.40422879e+00 0.10511691e+00 -0.24309492e+01 0.49767000e+00
- 2 -311 326 326 0.43474462e+00 -0.56234534e-01 -0.15743601e+02 0.49767000e+00
- 1 -211 0 0 0.11920169e+00 -0.48477984e+00 -0.11264931e+02 0.13957000e+00
- 2 311 327 327 0.43999521e-01 0.27350230e+00 -0.99958119e+01 0.49767000e+00
- 2 111 328 329 0.19954983e+00 0.38396201e+00 -0.17950209e+02 0.13498000e+00
- 1 130 0 0 -0.66516290e+00 -0.32467838e+00 -0.14903222e+02 0.49767000e+00
- 1 321 0 0 -0.60850830e+00 0.16502086e+00 -0.25920122e+02 0.49360000e+00
- 1 -211 0 0 -0.39189860e+00 -0.41493802e+00 -0.29027495e+02 0.13957000e+00
- 1 -211 0 0 -0.41496374e+00 -0.27252845e+00 -0.40161401e+02 0.13957000e+00
- 2 111 330 331 -0.74438073e+00 0.53290880e+00 -0.59739357e+02 0.13498000e+00
- 1 22 0 0 -0.13012177e-01 0.15800855e+00 -0.17702722e+02 0.00000000e+00
- 2 113 332 333 -0.20752295e-01 0.12781912e-01 -0.51899725e+02 0.79516899e+00
- 1 -2112 0 0 -0.27485837e+00 0.82252266e+00 -0.33979875e+02 0.93957000e+00
- 1 211 0 0 -0.43102140e+00 0.51189612e+00 -0.26264082e+02 0.13957000e+00
- 1 -211 0 0 -0.23249522e+00 -0.76151772e-02 -0.67324944e+01 0.13957000e+00
- 1 211 0 0 -0.97085210e-01 0.69325732e+00 -0.91006967e+01 0.13957000e+00
- 1 211 0 0 -0.11763858e+00 0.50034925e+00 -0.45994122e+02 0.13957000e+00
- 2 111 334 335 -0.40062024e+00 0.41699627e+00 -0.14270018e+02 0.13498000e+00
- 1 -211 0 0 -0.53077446e+00 0.29268375e+00 -0.79612274e+01 0.13957000e+00
- 2 111 336 337 0.24997919e+00 -0.38690473e-01 -0.80846288e+01 0.13498000e+00
- 1 2212 0 0 0.53619232e+00 -0.17278237e+00 -0.64259843e+03 0.93827000e+00
- 1 211 0 0 0.32520478e+00 0.11624063e+00 -0.27625152e+03 0.13957000e+00
- 1 22 0 0 -0.77866548e+01 -0.71454775e+01 0.41870145e+02 0.00000000e+00
- 1 22 0 0 -0.15869649e+02 -0.14757560e+02 0.85329192e+02 0.00000000e+00
- 1 -211 0 0 -0.14522837e+02 -0.11376653e+02 0.76527463e+02 0.13957000e+00
- 2 111 338 339 -0.42699870e+01 -0.39158047e+01 0.22766395e+02 0.13498000e+00
- 1 211 0 0 -0.13268572e+01 -0.92107042e+00 0.68927796e+01 0.13957000e+00
- 2 111 340 341 -0.33551421e+01 -0.25825848e+01 0.14326431e+02 0.13498000e+00
- 1 211 0 0 -0.68547682e+00 -0.46605633e+00 0.27211057e+01 0.13957000e+00
- 2 111 342 343 -0.15604287e+02 -0.94080595e+01 0.63778034e+02 0.13498000e+00
- 1 22 0 0 -0.94501903e-01 -0.58799547e-01 0.77898215e+00 0.00000000e+00
- 1 22 0 0 -0.42659514e+00 -0.36123000e-01 0.19924686e+01 0.00000000e+00
- 1 -2112 0 0 -0.30969497e+01 -0.19741404e+01 0.11486162e+02 0.93957000e+00
- 2 111 344 345 -0.14074775e+01 -0.40668598e+00 0.46724059e+01 0.13498000e+00
- 1 211 0 0 -0.29025174e+00 0.48858765e+00 0.14657622e+01 0.13957000e+00
- 2 111 346 347 -0.43723692e+00 -0.23605757e+00 0.52120769e+00 0.13498000e+00
- 1 -211 0 0 -0.24295360e+00 -0.12045723e+00 0.12678581e+01 0.13957000e+00
- 2 111 348 349 0.78502170e-01 -0.80441504e-02 0.25296534e+01 0.13498000e+00
- 1 211 0 0 0.19803707e+00 -0.22562991e+00 0.44005154e+01 0.13957000e+00
- 2 111 350 351 0.33262994e+00 0.67347969e-01 0.16267815e+01 0.13498000e+00
- 1 -211 0 0 0.49956262e+00 0.48526290e-01 0.13977023e+01 0.13957000e+00
- 1 211 0 0 0.15567568e+00 0.73271699e+00 0.19217707e+01 0.13957000e+00
- 1 -211 0 0 0.40761364e+00 0.26164723e+00 0.58758480e+01 0.13957000e+00
- 1 211 0 0 0.64339947e+00 0.56116704e+00 0.68595178e+01 0.13957000e+00
- 2 111 352 353 0.27816342e-01 0.84922751e-01 0.31093942e+01 0.13498000e+00
- 2 311 354 354 -0.45152073e-01 0.85247066e-01 0.16275672e+02 0.49767000e+00
- 2 111 355 356 -0.38833313e-01 0.38028198e+00 0.52511489e+01 0.13498000e+00
- 1 130 0 0 0.39196134e+00 0.36111345e+00 0.73314598e+01 0.49767000e+00
- 2 310 357 358 0.42045287e+00 0.33513110e+00 0.96921086e+01 0.49767000e+00
- 2 310 359 360 -0.49845822e+00 -0.11699340e-01 0.22404436e+02 0.49767000e+00
- 1 211 0 0 0.22490522e+00 0.18869449e+00 0.44790763e+01 0.13957000e+00
- 2 111 361 362 -0.57189168e+00 0.29080786e+00 0.23225835e+02 0.13498000e+00
- 1 -211 0 0 -0.29015942e+00 0.78373942e+00 0.32574621e+02 0.13957000e+00
- 2 111 363 364 0.62239546e-01 -0.67700005e-01 0.19683920e+01 0.13498000e+00
- 1 22 0 0 -0.26461163e+00 0.14314205e+00 0.25549333e+01 0.00000000e+00
- 1 22 0 0 0.87474409e-01 0.65355405e+00 0.89378876e+01 0.00000000e+00
- 1 211 0 0 -0.13555551e+00 0.70408615e-01 0.85934708e+00 0.13957000e+00
- 2 111 365 366 0.45258745e-01 -0.10045419e+00 0.15178752e+00 0.13498000e+00
- 1 -211 0 0 -0.49212724e-01 -0.36301256e-01 0.70742887e+00 0.13957000e+00
- 1 211 0 0 0.12198837e+00 0.33964867e-01 0.10182527e+01 0.13957000e+00
- 2 221 367 369 0.16274865e+00 0.18453132e+00 0.13925303e+01 0.54745000e+00
- 1 211 0 0 0.43660216e+00 0.90634561e-01 0.45346627e+01 0.13957000e+00
- 1 -211 0 0 0.95454048e+00 0.78327728e+00 0.13339188e+02 0.13957000e+00
- 2 111 370 371 0.23571816e+00 0.37616251e+00 0.67698452e+01 0.13498000e+00
- 1 211 0 0 0.30492817e+00 0.50092665e+00 0.25306880e+01 0.13957000e+00
- 2 111 372 373 0.54828617e+00 0.19165585e-02 0.24708688e+01 0.13498000e+00
- 1 -211 0 0 0.30229514e+00 0.18564849e+00 0.23463438e+01 0.13957000e+00
- 1 211 0 0 -0.43672906e+00 0.39507435e+00 0.46877736e+01 0.13957000e+00
- 1 22 0 0 0.21886237e+01 0.12261544e+01 0.23357466e+02 0.00000000e+00
- 1 22 0 0 0.24915018e+00 0.13780741e+00 0.22577846e+01 0.00000000e+00
- 1 321 0 0 0.47927702e+00 0.20111667e+01 0.23414932e+02 0.49360000e+00
- 1 -211 0 0 0.45963272e+00 0.64321256e+00 0.11622816e+02 0.13957000e+00
- 2 -311 374 374 0.13726942e+01 0.18053440e+01 0.19178334e+02 0.49767000e+00
- 1 -211 0 0 0.76189909e+00 0.12796575e+01 0.16777632e+02 0.13957000e+00
- 1 -211 0 0 0.12784055e+01 0.19651529e+01 0.17795880e+02 0.13957000e+00
- 2 111 375 376 0.12710766e+01 0.17412327e+01 0.26208011e+02 0.13498000e+00
- 1 -321 0 0 0.61929150e+00 0.20431829e+01 0.20026768e+02 0.49360000e+00
- 2 111 377 378 0.10026013e+01 0.21500712e+01 0.18829847e+02 0.13498000e+00
- 1 22 0 0 -0.45675190e-03 0.32472684e-02 0.22012227e+00 0.00000000e+00
- 1 22 0 0 0.17480071e+00 -0.86404848e+00 0.14563208e+02 0.00000000e+00
- 1 -211 0 0 -0.41405286e-02 0.13771105e-01 0.64948245e+01 0.13957000e+00
- 1 211 0 0 -0.28041009e-01 -0.23351374e+00 0.20344321e+02 0.13957000e+00
- 2 221 379 381 0.82035268e-01 -0.63416132e+00 0.37278172e+02 0.54745000e+00
- 1 -2212 0 0 -0.46004813e-01 -0.62887282e+00 0.15879348e+03 0.93827000e+00
- 1 211 0 0 -0.91437466e-02 -0.23775026e+00 0.50229371e+02 0.13957000e+00
- 1 -321 0 0 -0.32712269e+00 -0.68171556e+00 0.12003665e+03 0.49360000e+00
- 1 211 0 0 -0.23371308e+00 0.71316277e-01 0.39375329e+02 0.13957000e+00
- 1 22 0 0 0.33955233e+00 -0.94848385e+00 0.19492958e+03 0.00000000e+00
- 2 111 382 383 -0.12681282e-01 0.94752429e-01 0.57139334e+02 0.13498000e+00
- 1 211 0 0 0.13539899e+00 -0.69763069e+00 0.53549204e+02 0.13957000e+00
- 1 -211 0 0 -0.12001925e+00 -0.22401466e-01 0.40071460e+02 0.13957000e+00
- 1 130 0 0 -0.16924611e+00 0.38866610e+00 0.99005345e+02 0.49767000e+00
- 1 -321 0 0 -0.29631627e+00 0.39167570e+00 0.20523581e+03 0.49360000e+00
- 2 111 384 385 0.11347381e+00 -0.13826808e+00 0.30495805e+02 0.13498000e+00
- 1 211 0 0 -0.42343546e+00 0.24853412e+00 0.34681115e+03 0.13957000e+00
- 2 111 386 387 -0.73390390e-02 0.37062096e-02 0.79816991e+01 0.13498000e+00
- 1 321 0 0 0.18198881e+00 0.11615269e+00 0.88739797e+03 0.49360000e+00
- 2 111 388 389 -0.18954483e+00 -0.12469451e+00 0.11313249e+03 0.13498000e+00
- 1 2112 0 0 -0.18266657e+00 -0.30884806e+00 0.42198898e+03 0.93957000e+00
- 1 -211 0 0 0.83040533e-01 0.12237338e+00 0.64215914e+02 0.13957000e+00
- 2 310 390 391 0.25376475e+01 0.53323039e+00 -0.20403133e+02 0.49767000e+00
- 1 -211 0 0 -0.21354289e-01 -0.47247996e-01 -0.28660707e+01 0.13957000e+00
- 2 111 392 393 0.57729400e+00 -0.40618235e+00 -0.42991533e+01 0.13498000e+00
- 1 -211 0 0 -0.51356121e+00 0.16097428e+00 -0.39484898e+01 0.13957000e+00
- 1 211 0 0 -0.27864817e+00 -0.27391732e+00 -0.25572930e+01 0.13957000e+00
- 2 111 394 395 -0.51635421e+00 -0.25050664e+00 -0.32976917e+01 0.13498000e+00
- 1 -321 0 0 0.22178424e+00 -0.48531715e+00 0.89617042e+00 0.49360000e+00
- 2 111 396 397 -0.21030498e+00 0.11890131e+00 0.26314501e+00 0.13498000e+00
- 1 130 0 0 0.32358955e+00 -0.41721454e+00 0.23295978e+01 0.49767000e+00
- 1 2112 0 0 -0.34956981e+00 -0.61917597e+00 0.31612815e+01 0.93957000e+00
- 1 -211 0 0 -0.65179051e-01 -0.22065930e+00 0.27977470e+00 0.13957000e+00
- 2 -311 398 398 0.69602771e+00 0.77696311e+00 0.34625278e+01 0.49767000e+00
- 2 111 399 400 0.33253874e+00 0.47976090e+00 0.80636210e+00 0.13498000e+00
- 2 -3312 401 402 0.19440189e+00 -0.16201812e+00 0.35121064e+01 0.13213000e+01
- 1 -211 0 0 0.61985847e-01 0.11805672e+00 0.77605170e+00 0.13957000e+00
- 1 130 0 0 0.25933653e+02 -0.31989595e+02 -0.18699093e+03 0.49767000e+00
- 2 310 403 404 0.17003372e+02 -0.20985960e+02 -0.12202551e+03 0.49767000e+00
- 1 22 0 0 0.95236081e+01 -0.11714231e+02 -0.69463328e+02 0.00000000e+00
- 1 22 0 0 0.60986404e+01 -0.73697315e+01 -0.44335539e+02 0.00000000e+00
- 1 130 0 0 0.67244140e+01 -0.80968284e+01 -0.46892721e+02 0.49767000e+00
- 1 22 0 0 0.76811239e+00 -0.10608397e+01 -0.64613180e+01 0.00000000e+00
- 1 22 0 0 0.25174312e+01 -0.33248490e+01 -0.19476783e+02 0.00000000e+00
- 1 22 0 0 0.58391368e+00 -0.11188269e+01 -0.57499222e+01 0.00000000e+00
- 1 22 0 0 0.63029170e-01 -0.51447826e-01 -0.32624540e+00 0.00000000e+00
- 1 -211 0 0 -0.38368031e+00 0.19218886e+00 -0.40578067e+00 0.13957000e+00
- 1 211 0 0 -0.48259455e+00 0.10059770e+00 -0.83457642e+00 0.13957000e+00
- 2 111 405 406 -0.32499308e+00 0.18345174e+00 -0.67973692e+00 0.13498000e+00
- 1 22 0 0 0.26100886e+00 0.58996608e-01 -0.48197187e-01 0.00000000e+00
- 1 22 0 0 0.30641471e+00 -0.15350950e-01 0.62860643e-01 0.00000000e+00
- 2 111 407 408 0.42271069e+00 -0.15940684e-01 -0.19940053e+01 0.13498000e+00
- 2 111 409 410 -0.18481904e-01 0.12105759e+00 -0.43694388e+00 0.13498000e+00
- 2 310 411 412 0.43474462e+00 -0.56234534e-01 -0.15743601e+02 0.49767000e+00
- 1 130 0 0 0.43999521e-01 0.27350230e+00 -0.99958119e+01 0.49767000e+00
- 1 22 0 0 0.14020544e+00 0.36439631e+00 -0.15710111e+02 0.00000000e+00
- 1 22 0 0 0.59344396e-01 0.19565703e-01 -0.22400978e+01 0.00000000e+00
- 1 22 0 0 -0.18504798e+00 0.14390807e+00 -0.11827429e+02 0.00000000e+00
- 1 22 0 0 -0.55933275e+00 0.38900073e+00 -0.47911928e+02 0.00000000e+00
- 1 211 0 0 0.28053466e+00 0.10978556e+00 -0.39141395e+02 0.13957000e+00
- 1 -211 0 0 -0.30128696e+00 -0.97003652e-01 -0.12758330e+02 0.13957000e+00
- 1 22 0 0 -0.13661208e+00 0.90607189e-01 -0.29305526e+01 0.00000000e+00
- 1 22 0 0 -0.26400815e+00 0.32638909e+00 -0.11339466e+02 0.00000000e+00
- 1 22 0 0 0.38371705e-01 0.39124461e-01 -0.10046358e+01 0.00000000e+00
- 1 22 0 0 0.21160749e+00 -0.77814934e-01 -0.70799930e+01 0.00000000e+00
- 1 22 0 0 -0.64451878e-01 -0.46094751e-01 0.36545934e+00 0.00000000e+00
- 1 22 0 0 -0.42055351e+01 -0.38697099e+01 0.22400936e+02 0.00000000e+00
- 1 22 0 0 -0.41314221e+00 -0.32113657e+00 0.16195106e+01 0.00000000e+00
- 1 22 0 0 -0.29419999e+01 -0.22614482e+01 0.12706920e+02 0.00000000e+00
- 1 22 0 0 -0.19802841e+01 -0.12066181e+01 0.79591328e+01 0.00000000e+00
- 1 22 0 0 -0.13624003e+02 -0.82014414e+01 0.55818902e+02 0.00000000e+00
- 1 22 0 0 -0.49769633e+00 -0.20912534e+00 0.17722716e+01 0.00000000e+00
- 1 22 0 0 -0.90978114e+00 -0.19756064e+00 0.29001342e+01 0.00000000e+00
- 1 22 0 0 -0.12707722e+00 -0.12873383e+00 0.23944020e+00 0.00000000e+00
- 1 22 0 0 -0.31015969e+00 -0.10732375e+00 0.28176750e+00 0.00000000e+00
- 1 22 0 0 -0.15390088e-01 -0.21452553e-01 0.11608096e+00 0.00000000e+00
- 1 22 0 0 0.93892258e-01 0.13408403e-01 0.24135724e+01 0.00000000e+00
- 1 22 0 0 0.16658614e+00 0.32619869e-01 0.11216716e+01 0.00000000e+00
- 1 22 0 0 0.16604380e+00 0.34728099e-01 0.50510992e+00 0.00000000e+00
- 1 22 0 0 0.80418985e-01 0.54303942e-01 0.22279053e+01 0.00000000e+00
- 1 22 0 0 -0.52602643e-01 0.30618808e-01 0.88148892e+00 0.00000000e+00
- 1 130 0 0 -0.45152073e-01 0.85247066e-01 0.16275672e+02 0.49767000e+00
- 1 22 0 0 0.47950443e-01 0.15870663e+00 0.19275540e+01 0.00000000e+00
- 1 22 0 0 -0.86783755e-01 0.22157535e+00 0.33235949e+01 0.00000000e+00
- 1 211 0 0 0.30519252e+00 0.28763809e+00 0.39586547e+01 0.13957000e+00
- 1 -211 0 0 0.11526036e+00 0.47493008e-01 0.57334538e+01 0.13957000e+00
- 2 111 413 414 -0.50487440e+00 -0.10627808e+00 0.18274851e+02 0.13498000e+00
- 2 111 415 416 0.64161770e-02 0.94578742e-01 0.41295848e+01 0.13498000e+00
- 1 22 0 0 -0.11503455e+00 0.12083725e+00 0.65933314e+01 0.00000000e+00
- 1 22 0 0 -0.45685713e+00 0.16997061e+00 0.16632504e+02 0.00000000e+00
- 1 22 0 0 0.41617184e-01 -0.69050099e-02 0.16403275e+01 0.00000000e+00
- 1 22 0 0 0.20622362e-01 -0.60794995e-01 0.32806451e+00 0.00000000e+00
- 1 22 0 0 0.35152146e-01 -0.88284541e-01 0.18439480e-01 0.00000000e+00
- 1 22 0 0 0.10106599e-01 -0.12169652e-01 0.13334804e+00 0.00000000e+00
- 2 111 417 418 0.10332343e+00 0.13766680e+00 0.65851378e+00 0.13498000e+00
- 2 111 419 420 -0.37864944e-01 0.66630692e-01 0.55913925e+00 0.13498000e+00
- 2 111 421 422 0.97290163e-01 -0.19766173e-01 0.17487732e+00 0.13498000e+00
- 1 22 0 0 0.60948676e-01 0.11123369e+00 0.29473143e+01 0.00000000e+00
- 1 22 0 0 0.17476948e+00 0.26492882e+00 0.38225309e+01 0.00000000e+00
- 1 22 0 0 0.11968962e+00 0.22221146e-01 0.81348304e+00 0.00000000e+00
- 1 22 0 0 0.42859656e+00 -0.20304587e-01 0.16573857e+01 0.00000000e+00
- 1 130 0 0 0.13726942e+01 0.18053440e+01 0.19178334e+02 0.49767000e+00
- 1 22 0 0 0.34663318e+00 0.47494810e+00 0.64391334e+01 0.00000000e+00
- 1 22 0 0 0.92444344e+00 0.12662846e+01 0.19768877e+02 0.00000000e+00
- 1 22 0 0 0.52942019e+00 0.10950422e+01 0.10173838e+02 0.00000000e+00
- 1 22 0 0 0.47318108e+00 0.10550290e+01 0.86560093e+01 0.00000000e+00
- 1 22 0 0 0.77274468e-01 -0.74779757e-01 0.27915985e+01 0.00000000e+00
- 1 211 0 0 0.78666530e-01 -0.84628351e-01 0.14663488e+02 0.13957000e+00
- 1 -211 0 0 -0.73905730e-01 -0.47475322e+00 0.19823086e+02 0.13957000e+00
- 1 22 0 0 -0.66879131e-01 0.18027460e-01 0.19771975e+02 0.00000000e+00
- 1 22 0 0 0.54197848e-01 0.76724969e-01 0.37367359e+02 0.00000000e+00
- 1 22 0 0 0.76420711e-01 -0.13507707e+00 0.28788273e+02 0.00000000e+00
- 1 22 0 0 0.37053099e-01 -0.31910022e-02 0.17075324e+01 0.00000000e+00
- 1 22 0 0 -0.12849282e-01 0.65803344e-01 0.52835858e+01 0.00000000e+00
- 1 22 0 0 0.55102428e-02 -0.62097134e-01 0.26981133e+01 0.00000000e+00
- 1 22 0 0 -0.16954395e+00 -0.12767719e+00 0.11119388e+03 0.00000000e+00
- 1 22 0 0 -0.20000884e-01 0.29826774e-02 0.19386154e+01 0.00000000e+00
- 2 111 423 424 0.10030251e+01 0.58861696e-02 -0.78335561e+01 0.13498000e+00
- 2 111 425 426 0.15346224e+01 0.52734422e+00 -0.12569577e+02 0.13498000e+00
- 1 22 0 0 0.45682375e+00 -0.37299991e+00 -0.37061058e+01 0.00000000e+00
- 1 22 0 0 0.12047025e+00 -0.33182439e-01 -0.59304742e+00 0.00000000e+00
- 1 22 0 0 -0.49612016e+00 -0.26618505e+00 -0.31101996e+01 0.00000000e+00
- 1 22 0 0 -0.20234052e-01 0.15678404e-01 -0.18749211e+00 0.00000000e+00
- 1 22 0 0 -0.64047328e-01 0.68682152e-01 0.23728014e-01 0.00000000e+00
- 1 22 0 0 -0.14625765e+00 0.50219158e-01 0.23941700e+00 0.00000000e+00
- 2 310 427 428 0.69602771e+00 0.77696311e+00 0.34625278e+01 0.49767000e+00
- 1 22 0 0 -0.11502471e-01 0.18440129e-01 0.16379131e-01 0.00000000e+00
- 1 22 0 0 0.34404122e+00 0.46132077e+00 0.78998297e+00 0.00000000e+00
- 2 -3122 429 430 0.27520600e+00 -0.63365460e-01 0.31241131e+01 0.11156800e+01
- 1 211 0 0 -0.80804116e-01 -0.98652662e-01 0.38799329e+00 0.13957000e+00
- 2 111 431 432 0.56123034e+01 -0.72332893e+01 -0.41393334e+02 0.13498000e+00
- 2 111 433 434 0.11391069e+02 -0.13752670e+02 -0.80632175e+02 0.13498000e+00
- 1 22 0 0 -0.30612757e+00 0.20421941e+00 -0.61747500e+00 0.00000000e+00
- 1 22 0 0 -0.18865513e-01 -0.20767677e-01 -0.62261915e-01 0.00000000e+00
- 1 22 0 0 0.32362274e+00 0.46426267e-01 -0.14629637e+01 0.00000000e+00
- 1 22 0 0 0.99087951e-01 -0.62366951e-01 -0.53104159e+00 0.00000000e+00
- 1 22 0 0 0.53785361e-01 0.37457030e-01 -0.10706565e+00 0.00000000e+00
- 1 22 0 0 -0.72267265e-01 0.83600561e-01 -0.32987823e+00 0.00000000e+00
- 1 211 0 0 -0.44751527e-01 -0.72447640e-01 -0.37994180e+01 0.13957000e+00
- 1 -211 0 0 0.47949615e+00 0.16213106e-01 -0.11944183e+02 0.13957000e+00
- 1 22 0 0 -0.22796987e+00 -0.84056828e-01 0.10521001e+02 0.00000000e+00
- 1 22 0 0 -0.27690452e+00 -0.22221254e-01 0.77538501e+01 0.00000000e+00
- 1 22 0 0 0.17397035e-01 -0.28152779e-01 0.44320567e+00 0.00000000e+00
- 1 22 0 0 -0.10980858e-01 0.12273152e+00 0.36863791e+01 0.00000000e+00
- 1 22 0 0 0.94247213e-01 0.90099064e-01 0.61538472e+00 0.00000000e+00
- 1 22 0 0 0.90762158e-02 0.47567737e-01 0.43129052e-01 0.00000000e+00
- 1 22 0 0 -0.14253737e-01 0.10654877e+00 0.42370940e+00 0.00000000e+00
- 1 22 0 0 -0.23611207e-01 -0.39918082e-01 0.13542985e+00 0.00000000e+00
- 1 22 0 0 -0.26248492e-01 0.51286930e-03 0.82590053e-01 0.00000000e+00
- 1 22 0 0 0.12353866e+00 -0.20279042e-01 0.92287262e-01 0.00000000e+00
- 1 22 0 0 0.57468477e-01 -0.28536432e-01 -0.39577492e+00 0.00000000e+00
- 1 22 0 0 0.94555663e+00 0.34422601e-01 -0.74377812e+01 0.00000000e+00
- 1 22 0 0 0.52068975e+00 0.11768751e+00 -0.43254822e+01 0.00000000e+00
- 1 22 0 0 0.10139327e+01 0.40965672e+00 -0.82440952e+01 0.00000000e+00
- 2 111 435 436 0.92261661e-01 0.25032615e+00 0.14400422e+01 0.13498000e+00
- 2 111 437 438 0.60376604e+00 0.52663697e+00 0.20224855e+01 0.13498000e+00
- 1 -2112 0 0 0.25715936e+00 -0.44035030e-01 0.23694544e+01 0.93957000e+00
- 2 111 439 440 0.18046638e-01 -0.19330430e-01 0.75465868e+00 0.13498000e+00
- 1 22 0 0 0.76047059e+00 -0.10524040e+01 -0.57966009e+01 0.00000000e+00
- 1 22 0 0 0.48518328e+01 -0.61808853e+01 -0.35596733e+02 0.00000000e+00
- 1 22 0 0 0.92948213e+01 -0.11284236e+02 -0.65854575e+02 0.00000000e+00
- 1 22 0 0 0.20962473e+01 -0.24684339e+01 -0.14777600e+02 0.00000000e+00
- 1 22 0 0 0.11951326e+00 0.22260207e+00 0.11078834e+01 0.00000000e+00
- 1 22 0 0 -0.27251601e-01 0.27724081e-01 0.33215889e+00 0.00000000e+00
- 1 22 0 0 0.60882652e+00 0.52087929e+00 0.19727973e+01 0.00000000e+00
- 1 22 0 0 -0.50604800e-02 0.57576792e-02 0.49688237e-01 0.00000000e+00
- 1 22 0 0 0.58003084e-01 -0.29731548e-01 0.18891836e+00 0.00000000e+00
- 1 22 0 0 -0.39956446e-01 0.10401118e-01 0.56574032e+00 0.00000000e+00
- 389
- 2 25 2 3 0.11366775e+02 -0.19323885e+02 0.22796250e+03 0.12500645e+03
- 2 23 4 6 0.32313005e+01 -0.26079304e+02 0.21259966e+03 0.90564873e+02
- 2 23 7 10 0.81354746e+01 0.67554188e+01 0.15362847e+02 0.21387601e+02
- 1 11 0 0 0.31839124e+02 -0.47883280e+02 0.14445960e+03 0.51000000e-03
- 1 -11 0 0 -0.28354381e+02 0.21376339e+02 0.67591377e+02 0.51000000e-03
- 1 22 0 0 -0.25344243e+00 0.42763724e+00 0.54867714e+00 0.00000000e+00
- 1 11 0 0 -0.62683097e+00 0.77056028e+01 -0.27720543e+01 0.51000000e-03
- 1 22 0 0 -0.11810063e-07 0.20399538e-06 -0.12592152e-07 0.00000000e+00
- 1 -11 0 0 0.38344100e+01 -0.31553102e+00 0.78860617e+01 0.51000000e-03
- 1 22 0 0 0.49278956e+01 -0.63465317e+00 0.10248839e+02 0.00000000e+00
- 2 2101 38 38 -0.46945282e+00 0.54206633e+00 0.47826019e+04 0.57933000e+00
- 2 21 38 38 -0.40009401e+00 0.12123150e+01 0.11283660e+02 0.00000000e+00
- 2 21 38 38 -0.56981866e+01 0.12763713e+02 0.43575261e+02 0.00000000e+00
- 2 21 38 38 -0.27631122e+01 0.27426763e+01 0.64774030e+01 0.00000000e+00
- 2 21 38 38 0.12092424e+01 -0.10946622e+01 0.89499840e+01 0.00000000e+00
- 2 21 38 38 -0.19253580e+01 -0.23857520e+01 -0.40503580e+01 0.00000000e+00
- 2 21 38 38 0.13910982e+01 -0.33148896e+01 -0.39638999e+02 0.00000000e+00
- 2 21 38 38 0.52373768e+00 -0.22812825e+01 -0.16575906e+01 0.00000000e+00
- 2 2 38 38 0.70343830e+00 -0.20370122e+00 -0.63458028e+03 0.33000000e+00
- 2 2 89 89 -0.77498326e+00 0.10042516e+01 0.38569408e+02 0.33000000e+00
- 2 21 89 89 0.27427093e+00 -0.32940203e+00 0.14466315e+01 0.00000000e+00
- 2 21 89 89 0.50852122e+00 -0.72382585e-02 0.71327007e+01 0.00000000e+00
- 2 21 89 89 -0.20650523e+01 -0.11785931e+01 0.40361502e+03 0.00000000e+00
- 2 21 89 89 -0.17653961e+00 0.97955122e+00 0.75493897e+02 0.00000000e+00
- 2 21 89 89 -0.18246256e+01 0.59552147e+00 0.41858229e+02 0.00000000e+00
- 2 21 89 89 -0.24046379e+00 0.27379685e+00 0.22621147e+01 0.00000000e+00
- 2 21 89 89 -0.82558034e+00 -0.13492899e+01 0.11988698e+03 0.00000000e+00
- 2 21 89 89 -0.24034100e+01 -0.57719443e+00 0.11570117e+04 0.00000000e+00
- 2 21 89 89 0.24034100e+01 0.57719443e+00 0.37687236e+02 0.00000000e+00
- 2 21 89 89 0.19253580e+01 0.23857520e+01 0.11319946e+02 0.00000000e+00
- 2 21 89 89 0.82558034e+00 0.13492899e+01 0.96333113e+00 0.00000000e+00
- 2 21 89 89 -0.13910982e+01 0.33148896e+01 -0.20152349e+02 0.00000000e+00
- 2 21 89 89 -0.34346439e-01 0.44058529e+01 -0.35394161e+01 0.00000000e+00
- 2 21 89 89 -0.37139380e+00 -0.71267357e+00 0.62548700e-01 0.00000000e+00
- 2 21 89 89 -0.94877995e+00 0.17180668e+01 -0.73780727e+02 0.00000000e+00
- 2 21 89 89 0.86185488e-01 -0.76105527e+00 -0.14793850e+02 0.00000000e+00
- 2 2101 89 89 0.10948591e+01 -0.34531791e+00 -0.61859668e+04 0.57933000e+00
- 2 92 39 88 -0.74286870e+01 0.79804831e+01 0.41729610e+04 0.36419132e+04
- 1 2112 0 0 -0.31678040e+00 0.10414860e+00 0.34131431e+04 0.93957000e+00
- 2 221 138 139 -0.74261340e-01 0.38441885e+00 0.26313668e+03 0.54745000e+00
- 2 111 140 141 -0.14375134e+00 -0.27706983e+00 0.36218252e+03 0.13498000e+00
- 2 -313 142 143 0.31450065e+00 0.40318965e+00 0.26566970e+03 0.87890259e+00
- 2 313 144 145 -0.63561524e+00 0.70155862e-01 0.28042057e+03 0.92914727e+00
- 1 211 0 0 0.35272493e+00 0.38999047e+00 0.28191149e+02 0.13957000e+00
- 2 -2224 146 147 0.29402969e+00 -0.83926225e-01 0.59521943e+02 0.11784141e+01
- 2 223 148 150 0.18162463e+00 0.10536732e+00 0.37371685e+02 0.81005027e+00
- 2 2224 151 152 -0.88257532e+00 -0.18452379e+00 0.46622162e+02 0.11878921e+01
- 2 -323 153 154 0.15591060e+00 0.77585769e+00 0.14726815e+02 0.91838184e+00
- 2 331 155 156 -0.66368528e+00 0.82841135e+00 0.90040534e+01 0.95754838e+00
- 2 311 157 157 -0.10472265e+00 -0.22691164e+00 0.87173249e+01 0.49767000e+00
- 2 213 158 159 -0.40900435e+00 0.62503139e+00 0.58848226e+01 0.91763859e+00
- 2 221 160 162 0.10652344e-01 0.10505371e+01 0.36480974e+01 0.54745000e+00
- 2 -323 163 164 -0.19934399e+01 0.38759515e+01 0.15689307e+02 0.90422175e+00
- 2 311 165 165 -0.21814540e+00 0.33601611e+00 0.15308581e+01 0.49767000e+00
- 2 111 166 167 -0.94432616e+00 0.96899040e+00 0.34435338e+01 0.13498000e+00
- 2 113 168 169 -0.16063317e+01 0.33840095e+01 0.10158112e+02 0.88328340e+00
- 2 113 170 171 -0.10074302e+00 0.14339976e+01 0.60235508e+01 0.78181716e+00
- 2 113 172 173 -0.39342024e+00 0.32865937e+00 0.31170221e+01 0.83736300e+00
- 2 -311 174 174 -0.33003195e+00 0.67721449e+00 0.30646316e+01 0.49767000e+00
- 1 321 0 0 0.24961187e+00 0.73143495e+00 0.29444146e+01 0.49360000e+00
- 2 111 175 176 -0.32707666e+00 0.19725855e+00 0.17807686e+01 0.13498000e+00
- 2 113 177 178 -0.75384550e+00 0.64434881e+00 0.24058334e+01 0.77821677e+00
- 2 -323 179 180 -0.13893432e+00 0.10492552e+00 0.13138203e+01 0.10256729e+01
- 2 323 181 182 -0.47035520e+00 -0.70689632e+00 0.10054432e+01 0.87406438e+00
- 2 113 183 184 0.53571630e+00 -0.18579648e-01 0.47377679e+00 0.73228817e+00
- 1 -2212 0 0 -0.69667700e-01 -0.19366017e-01 0.10713008e+00 0.93827000e+00
- 2 111 185 186 -0.38721454e+00 -0.61009654e+00 -0.39157320e+00 0.13498000e+00
- 2 2214 187 188 -0.26918240e+00 -0.19243739e+00 -0.21869808e+00 0.12174732e+01
- 2 223 189 191 -0.24516207e-01 -0.12596932e+01 -0.32236199e+01 0.78936923e+00
- 2 111 192 193 -0.26403543e+00 0.80280070e-01 -0.29652796e+01 0.13498000e+00
- 2 -213 194 195 0.25729113e+00 -0.57029734e+00 -0.67745869e+01 0.70441411e+00
- 2 113 196 197 0.62039042e-01 -0.26963301e+00 -0.18753880e+01 0.75234988e+00
- 2 221 198 200 -0.46646378e+00 -0.83931117e+00 -0.56730153e+01 0.54745000e+00
- 2 223 201 203 0.34322998e+00 -0.34275936e+00 -0.34991599e+01 0.77513146e+00
- 1 211 0 0 0.12929943e+00 -0.47914514e+00 -0.53857925e+01 0.13957000e+00
- 2 -213 204 205 0.66958021e-01 -0.99763891e+00 -0.35195401e+01 0.84777641e+00
- 2 223 206 208 0.41702388e+00 -0.73165678e+00 -0.31508048e+01 0.80589434e+00
- 2 213 209 210 0.31757566e+00 0.37787832e-02 -0.38853648e+01 0.51267508e+00
- 2 221 211 212 -0.15159341e+00 -0.33861885e+00 -0.28124957e+01 0.54745000e+00
- 2 -213 213 214 -0.20672766e+00 -0.39775904e+00 -0.12562864e+01 0.59698207e+00
- 2 223 215 217 -0.11424403e+00 0.38345779e+00 -0.49558095e+01 0.78806653e+00
- 1 211 0 0 0.15864714e+00 -0.31531786e+00 -0.31527003e+01 0.13957000e+00
- 2 113 218 219 0.78463883e+00 -0.65223466e+00 -0.28156142e+01 0.70180779e+00
- 1 -211 0 0 -0.42978748e+00 -0.33582336e-01 -0.29705288e+02 0.13957000e+00
- 1 211 0 0 0.79931770e+00 -0.21707900e+00 -0.16898953e+02 0.13957000e+00
- 1 -211 0 0 -0.54215204e+00 -0.32040060e+00 -0.55702164e+02 0.13957000e+00
- 2 223 220 222 -0.44752478e+00 0.66695286e+00 -0.87251695e+02 0.78077095e+00
- 1 211 0 0 0.10206766e+01 -0.48896680e+00 -0.43322405e+03 0.13957000e+00
- 2 92 90 137 -0.39380882e+01 0.11343402e+02 -0.44009235e+04 0.69193458e+04
- 2 323 223 224 -0.70328897e+00 0.74781997e+00 0.28067854e+02 0.87637624e+00
- 2 -311 225 225 -0.23372438e+00 -0.14311399e+00 0.86853492e+01 0.49767000e+00
- 2 -213 226 227 -0.35366093e-01 -0.98290253e-01 0.45630351e+02 0.75698799e+00
- 1 2212 0 0 0.14571952e-01 -0.17440867e+00 0.24320290e+02 0.93827000e+00
- 1 -2112 0 0 0.31674715e+00 -0.30708304e-01 0.18466738e+02 0.93957000e+00
- 1 -211 0 0 0.23697008e+00 -0.20206787e+00 0.68866715e+02 0.13957000e+00
- 2 223 228 230 -0.62575616e+00 0.38755703e+00 0.85292478e+02 0.78304071e+00
- 2 331 231 232 -0.11029907e+01 -0.23065803e+00 0.18257934e+03 0.95741748e+00
- 2 221 233 235 -0.24149820e+00 -0.49407336e-02 0.26006554e+02 0.54745000e+00
- 1 2212 0 0 -0.20247668e+00 0.17863729e+00 0.23294880e+02 0.93827000e+00
- 1 -2212 0 0 -0.67550659e+00 0.23886825e+00 0.55953154e+02 0.93827000e+00
- 2 331 236 237 -0.11650593e+01 0.11680153e+00 0.60507749e+02 0.95785888e+00
- 2 213 238 239 -0.37384871e-01 -0.13293579e+00 0.31634653e+02 0.98971060e+00
- 2 221 240 242 -0.10068632e+01 -0.25740941e+00 0.93387556e+02 0.54745000e+00
- 2 311 243 243 -0.40833976e+00 -0.70261325e+00 0.49869777e+03 0.49767000e+00
- 2 333 244 245 -0.12822537e+01 0.53803366e-01 0.29950308e+03 0.10166489e+01
- 2 333 246 247 0.28959271e+00 -0.50379411e+00 0.13869672e+03 0.10235312e+01
- 2 333 248 249 0.21895474e-01 -0.10833188e-02 0.66658336e+02 0.10174803e+01
- 2 -323 250 251 0.54772940e-01 0.62867816e+00 0.65470579e+02 0.78948185e+00
- 2 113 252 253 0.12657639e+00 0.90769682e-01 0.18883314e+02 0.83554558e+00
- 2 221 254 255 0.74201874e+00 0.17274521e+00 0.77704763e+01 0.54745000e+00
- 2 213 256 257 0.16700359e+00 -0.27264029e+00 0.19192422e+02 0.74587855e+00
- 1 -211 0 0 0.15101965e+00 0.55968326e+00 0.38655519e+01 0.13957000e+00
- 2 111 258 259 0.32230806e+00 0.15331637e+00 0.57201515e+01 0.13498000e+00
- 2 213 260 261 0.44595089e+00 0.37835522e-01 0.31850635e+01 0.82793690e+00
- 2 113 262 263 0.62194095e+00 0.58533803e+00 0.97228304e+01 0.71144066e+00
- 2 111 264 265 0.92653335e+00 0.11469866e+01 0.39828611e+01 0.13498000e+00
- 2 -213 266 267 0.14066367e+00 0.28280619e-01 0.11406550e+01 0.80800855e+00
- 1 321 0 0 0.48358993e+00 0.14788089e+01 0.11818928e+01 0.49360000e+00
- 2 221 268 269 -0.68047837e-01 -0.34106010e+00 -0.49064318e+00 0.54745000e+00
- 1 -321 0 0 0.19880912e+00 0.34051962e+00 -0.11116622e+00 0.49360000e+00
- 2 323 270 271 0.55419453e-01 0.49367943e+00 -0.10401946e+01 0.85785553e+00
- 2 -313 272 273 -0.34960841e-01 -0.10029780e+00 -0.35736869e+01 0.93521874e+00
- 2 1114 274 275 -0.56710820e+00 0.20326214e+01 -0.55174763e+01 0.11792790e+01
- 2 -1114 276 277 -0.19508627e+00 0.80074551e+00 -0.54169793e+01 0.12513538e+01
- 1 -211 0 0 -0.53120534e+00 0.70016993e+00 -0.18062010e+01 0.13957000e+00
- 1 211 0 0 0.97802540e-01 0.14803490e+01 -0.18228247e+01 0.13957000e+00
- 2 113 278 279 -0.55099836e-01 0.26001575e+00 -0.19417474e+01 0.74963583e+00
- 1 2112 0 0 -0.45467292e+00 0.41944885e+00 -0.60036664e+00 0.93957000e+00
- 2 213 280 281 0.14775028e+00 0.69921279e+00 -0.15423782e+01 0.72833241e+00
- 2 -2224 282 283 -0.79522662e-01 0.49239702e+00 -0.19454062e+01 0.12926078e+01
- 2 323 284 285 0.11202883e-01 -0.13893716e+00 -0.19133194e+01 0.88585948e+00
- 2 -313 286 287 -0.64574417e+00 0.28337035e+00 -0.13289879e+02 0.88788031e+00
- 1 2112 0 0 0.30549836e-01 0.32447752e+00 -0.11357176e+02 0.93957000e+00
- 1 -321 0 0 -0.11867229e+00 0.41399585e-02 -0.88639810e+01 0.49360000e+00
- 2 -3114 288 289 -0.68396924e-01 0.10503880e+01 -0.41788796e+02 0.13780251e+01
- 2 113 290 291 -0.91393985e-01 -0.11786251e+01 -0.15205594e+03 0.62492312e+00
- 1 2112 0 0 0.10886420e+01 -0.13047840e+00 -0.60422107e+04 0.93957000e+00
- 1 22 0 0 0.46500722e-01 -0.11203655e+00 0.96811692e+02 0.00000000e+00
- 1 22 0 0 -0.12076206e+00 0.49645541e+00 0.16632499e+03 0.00000000e+00
- 1 22 0 0 -0.56823357e-01 -0.10006408e+00 0.71340725e+02 0.00000000e+00
- 1 22 0 0 -0.86927978e-01 -0.17700576e+00 0.29084179e+03 0.00000000e+00
- 1 -321 0 0 -0.41621749e-01 0.18391785e+00 0.10373527e+03 0.49360000e+00
- 1 211 0 0 0.35612240e+00 0.21927180e+00 0.16193443e+03 0.13957000e+00
- 2 311 292 292 -0.42997898e+00 -0.23388359e+00 0.14196422e+03 0.49767000e+00
- 2 111 293 294 -0.20563626e+00 0.30403945e+00 0.13845635e+03 0.13498000e+00
- 1 -2212 0 0 0.26020570e+00 -0.19314340e+00 0.54824186e+02 0.93827000e+00
- 1 -211 0 0 0.33823993e-01 0.10921718e+00 0.46977574e+01 0.13957000e+00
- 1 -211 0 0 0.21620888e+00 -0.25746299e-01 0.77222763e+01 0.13957000e+00
- 1 211 0 0 -0.30742690e-01 -0.38919427e-02 0.25723468e+02 0.13957000e+00
- 2 111 295 296 -0.38415551e-02 0.13500556e+00 0.39259412e+01 0.13498000e+00
- 1 2212 0 0 -0.61456671e+00 -0.87101578e-02 0.38479916e+02 0.93827000e+00
- 1 211 0 0 -0.26800861e+00 -0.17581363e+00 0.81422462e+01 0.13957000e+00
- 1 -321 0 0 0.40829364e+00 0.51016712e+00 0.94836570e+01 0.49360000e+00
- 2 111 297 298 -0.25238303e+00 0.26569057e+00 0.52431582e+01 0.13498000e+00
- 1 22 0 0 -0.38578368e+00 0.27067323e+00 0.22691453e+01 0.00000000e+00
- 2 113 299 300 -0.27790160e+00 0.55773812e+00 0.67349081e+01 0.69478193e+00
- 2 310 301 302 -0.10472265e+00 -0.22691164e+00 0.87173249e+01 0.49767000e+00
- 1 211 0 0 0.21950667e+00 0.86696435e-01 0.25201024e+01 0.13957000e+00
- 2 111 303 304 -0.62851102e+00 0.53833496e+00 0.33647202e+01 0.13498000e+00
- 2 111 305 306 -0.98557535e-01 0.28250595e+00 0.11886734e+01 0.13498000e+00
- 2 111 307 308 0.15079119e+00 0.34901295e+00 0.10292240e+01 0.13498000e+00
- 2 111 309 310 -0.41581310e-01 0.41901819e+00 0.14302000e+01 0.13498000e+00
- 2 -311 311 311 -0.13948407e+01 0.27955655e+01 0.10155112e+02 0.49767000e+00
- 1 -211 0 0 -0.59859921e+00 0.10803860e+01 0.55341948e+01 0.13957000e+00
- 1 130 0 0 -0.21814540e+00 0.33601611e+00 0.15308581e+01 0.49767000e+00
- 1 22 0 0 -0.16018161e+00 0.12784852e+00 0.64165482e+00 0.00000000e+00
- 1 22 0 0 -0.78414454e+00 0.84114188e+00 0.28018790e+01 0.00000000e+00
- 1 -211 0 0 -0.28552458e+00 0.50200360e+00 0.92353666e+00 0.13957000e+00
- 1 211 0 0 -0.13208071e+01 0.28820059e+01 0.92345755e+01 0.13957000e+00
- 1 211 0 0 0.56112804e-01 0.42098339e+00 0.79615350e+00 0.13957000e+00
- 1 -211 0 0 -0.15685582e+00 0.10130142e+01 0.52273973e+01 0.13957000e+00
- 1 211 0 0 -0.60399556e+00 0.34866363e+00 0.25416353e+01 0.13957000e+00
- 1 -211 0 0 0.21057532e+00 -0.20004262e-01 0.57538683e+00 0.13957000e+00
- 2 310 312 313 -0.33003195e+00 0.67721449e+00 0.30646316e+01 0.49767000e+00
- 1 22 0 0 -0.29117441e+00 0.11344944e+00 0.14393973e+01 0.00000000e+00
- 1 22 0 0 -0.35902249e-01 0.83809114e-01 0.34137126e+00 0.00000000e+00
- 1 -211 0 0 -0.71611161e+00 0.28716639e+00 0.20369693e+01 0.13957000e+00
- 1 211 0 0 -0.37733897e-01 0.35718241e+00 0.36886410e+00 0.13957000e+00
- 1 -321 0 0 -0.27529623e+00 -0.22702789e-01 0.13295434e+01 0.49360000e+00
- 2 111 314 315 0.13636191e+00 0.12762830e+00 -0.15723085e-01 0.13498000e+00
- 2 311 316 316 -0.56086226e+00 -0.64634402e+00 0.99331552e+00 0.49767000e+00
- 1 211 0 0 0.90507061e-01 -0.60552301e-01 0.12127719e-01 0.13957000e+00
- 1 211 0 0 0.23983965e-01 0.20372486e+00 0.36040226e+00 0.13957000e+00
- 1 -211 0 0 0.51173233e+00 -0.22230451e+00 0.11337453e+00 0.13957000e+00
- 1 22 0 0 -0.54790608e-01 -0.11233347e+00 -0.15380242e-01 0.00000000e+00
- 1 22 0 0 -0.33242393e+00 -0.49776306e+00 -0.37619295e+00 0.00000000e+00
- 1 2212 0 0 -0.32593781e-01 -0.25749507e+00 -0.22951822e+00 0.93827000e+00
- 2 111 317 318 -0.23658862e+00 0.65057681e-01 0.10820141e-01 0.13498000e+00
- 1 211 0 0 -0.81497774e-01 -0.67233699e+00 -0.18762235e+01 0.13957000e+00
- 1 -211 0 0 0.36556153e-01 -0.60663189e+00 -0.11690223e+01 0.13957000e+00
- 2 111 319 320 0.20425415e-01 0.19275723e-01 -0.17837415e+00 0.13498000e+00
- 1 22 0 0 -0.19209056e+00 0.50984525e-02 -0.22711997e+01 0.00000000e+00
- 1 22 0 0 -0.71944870e-01 0.75181617e-01 -0.69407994e+00 0.00000000e+00
- 1 -211 0 0 0.50334217e-01 -0.29223649e+00 -0.98162127e+00 0.13957000e+00
- 2 111 321 322 0.20695692e+00 -0.27806085e+00 -0.57929657e+01 0.13498000e+00
- 1 -211 0 0 -0.25843198e+00 -0.24418855e+00 -0.13854571e+01 0.13957000e+00
- 1 211 0 0 0.32047102e+00 -0.25444456e-01 -0.48993094e+00 0.13957000e+00
- 1 -211 0 0 -0.24230083e+00 -0.36235121e+00 -0.25074257e+01 0.13957000e+00
- 1 211 0 0 0.32711615e-01 -0.17102804e+00 -0.10039404e+01 0.13957000e+00
- 2 111 323 324 -0.25687457e+00 -0.30593191e+00 -0.21616492e+01 0.13498000e+00
- 1 211 0 0 -0.49479642e-01 -0.67116734e-01 -0.18654165e+00 0.13957000e+00
- 1 -211 0 0 0.64325336e-01 -0.19894338e+00 -0.14090981e+01 0.13957000e+00
- 2 111 325 326 0.32838428e+00 -0.76699248e-01 -0.19035202e+01 0.13498000e+00
- 1 -211 0 0 0.28703995e+00 -0.54516029e-01 -0.10814845e+01 0.13957000e+00
- 2 111 327 328 -0.22008193e+00 -0.94312288e+00 -0.24380555e+01 0.13498000e+00
- 1 -211 0 0 0.34366455e+00 -0.59615993e+00 -0.22663386e+01 0.13957000e+00
- 1 211 0 0 0.73843955e-01 -0.92956359e-01 -0.14405742e+00 0.13957000e+00
- 2 111 329 330 -0.48462350e-03 -0.42540494e-01 -0.74040873e+00 0.13498000e+00
- 1 211 0 0 0.15524451e+00 0.20531586e+00 -0.14636511e+01 0.13957000e+00
- 2 111 331 332 0.16233115e+00 -0.20153708e+00 -0.24217136e+01 0.13498000e+00
- 1 22 0 0 -0.12403254e+00 -0.32580247e-01 -0.22020390e+01 0.00000000e+00
- 1 22 0 0 -0.27560875e-01 -0.30603860e+00 -0.61045666e+00 0.00000000e+00
- 1 -211 0 0 -0.35482568e+00 -0.38844688e+00 -0.95971720e+00 0.13957000e+00
- 2 111 333 334 0.14809802e+00 -0.93121613e-02 -0.29656917e+00 0.13498000e+00
- 1 -211 0 0 -0.10672082e+00 0.27013509e+00 -0.26732250e+01 0.13957000e+00
- 1 211 0 0 -0.16134643e+00 0.16931243e+00 -0.83296885e+00 0.13957000e+00
- 2 111 335 336 0.15382322e+00 -0.55989727e-01 -0.14496157e+01 0.13498000e+00
- 1 -211 0 0 0.17119246e+00 0.77866905e-01 -0.29058720e+00 0.13957000e+00
- 1 211 0 0 0.61344638e+00 -0.73010157e+00 -0.25250270e+01 0.13957000e+00
- 1 211 0 0 -0.21589703e+00 0.38807767e+00 -0.29585956e+02 0.13957000e+00
- 1 -211 0 0 0.12352350e+00 0.13267677e+00 -0.22993739e+02 0.13957000e+00
- 2 111 337 338 -0.35515125e+00 0.14619842e+00 -0.34672001e+02 0.13498000e+00
- 1 321 0 0 -0.22945506e+00 0.49964431e+00 0.19971892e+02 0.49360000e+00
- 2 111 339 340 -0.47383390e+00 0.24817566e+00 0.80959616e+01 0.13498000e+00
- 2 310 341 342 -0.23372438e+00 -0.14311399e+00 0.86853492e+01 0.49767000e+00
- 1 -211 0 0 -0.45978560e-01 0.13804938e-01 0.17986156e+01 0.13957000e+00
- 2 111 343 344 0.10612467e-01 -0.11209519e+00 0.43831736e+02 0.13498000e+00
- 1 211 0 0 -0.18137765e+00 0.20770820e+00 0.15921895e+02 0.13957000e+00
- 1 -211 0 0 -0.45575741e+00 0.27286571e+00 0.48086426e+02 0.13957000e+00
- 2 111 345 346 0.11378902e-01 -0.93016877e-01 0.21284157e+02 0.13498000e+00
- 1 22 0 0 -0.34467808e+00 0.14879444e+00 0.41273824e+02 0.00000000e+00
- 2 113 347 348 -0.75831265e+00 -0.37945247e+00 0.14130552e+03 0.70044212e+00
- 2 111 349 350 -0.18017175e+00 -0.79069506e-01 0.15541107e+02 0.13498000e+00
- 2 111 351 352 -0.92192094e-01 0.13733108e-01 0.41414312e+01 0.13498000e+00
- 2 111 353 354 0.30865651e-01 0.60395664e-01 0.63240162e+01 0.13498000e+00
- 1 22 0 0 -0.58802914e+00 -0.21280513e-01 0.22839187e+02 0.00000000e+00
- 2 113 355 356 -0.57703014e+00 0.13808204e+00 0.37668562e+02 0.70824974e+00
- 1 211 0 0 -0.34441479e+00 -0.36528360e+00 0.11692229e+02 0.13957000e+00
- 2 111 357 358 0.30702992e+00 0.23234782e+00 0.19942424e+02 0.13498000e+00
- 1 211 0 0 -0.24922871e+00 -0.74004954e-01 0.15195407e+02 0.13957000e+00
- 1 -211 0 0 -0.23231222e+00 -0.10672146e+00 0.24695264e+02 0.13957000e+00
- 2 111 359 360 -0.52532225e+00 -0.76682998e-01 0.53496885e+02 0.13498000e+00
- 2 310 361 362 -0.40833976e+00 -0.70261325e+00 0.49869777e+03 0.49767000e+00
- 1 -321 0 0 -0.48968607e+00 -0.26895563e-01 0.11704427e+03 0.49360000e+00
- 1 321 0 0 -0.79256762e+00 0.80698928e-01 0.18245880e+03 0.49360000e+00
- 1 130 0 0 0.13183576e+00 -0.12361325e+00 0.66189914e+02 0.49767000e+00
- 2 310 363 364 0.15775696e+00 -0.38018086e+00 0.72506801e+02 0.49767000e+00
- 1 130 0 0 0.39749135e-01 0.31819759e-01 0.27062383e+02 0.49767000e+00
- 2 310 365 366 -0.17853662e-01 -0.32903078e-01 0.39595953e+02 0.49767000e+00
- 2 -311 367 367 0.12757436e+00 0.20919998e+00 0.32090872e+02 0.49767000e+00
- 1 -211 0 0 -0.72801421e-01 0.41947818e+00 0.33379706e+02 0.13957000e+00
- 1 211 0 0 0.14031001e-01 0.87173673e-01 0.73890408e+00 0.13957000e+00
- 1 -211 0 0 0.11254539e+00 0.35960087e-02 0.18144410e+02 0.13957000e+00
- 1 22 0 0 -0.26184624e-01 0.12371658e+00 0.49806330e+00 0.00000000e+00
- 1 22 0 0 0.76820337e+00 0.49028632e-01 0.72724130e+01 0.00000000e+00
- 1 211 0 0 -0.21172327e+00 0.67727284e-02 0.33526008e+01 0.13957000e+00
- 2 111 368 369 0.37872686e+00 -0.27941302e+00 0.15839821e+02 0.13498000e+00
- 1 22 0 0 0.18295600e+00 0.15590100e+00 0.38844985e+01 0.00000000e+00
- 1 22 0 0 0.13935207e+00 -0.25846273e-02 0.18356530e+01 0.00000000e+00
- 1 211 0 0 0.24846129e+00 -0.27795749e+00 0.24861694e+01 0.13957000e+00
- 2 111 370 371 0.19748960e+00 0.31579301e+00 0.69889407e+00 0.13498000e+00
- 1 -211 0 0 0.31534999e+00 0.43046687e+00 0.28229607e+01 0.13957000e+00
- 1 211 0 0 0.30659096e+00 0.15487116e+00 0.68998696e+01 0.13957000e+00
- 1 22 0 0 0.61438559e+00 0.68689118e+00 0.23495833e+01 0.00000000e+00
- 1 22 0 0 0.31214776e+00 0.46009539e+00 0.16332778e+01 0.00000000e+00
- 1 -211 0 0 0.71097402e-01 -0.32585115e+00 0.26424241e+00 0.13957000e+00
- 2 111 372 373 0.69566272e-01 0.35413177e+00 0.87641255e+00 0.13498000e+00
- 1 22 0 0 0.15259091e+00 0.49673684e-01 -0.17916430e-01 0.00000000e+00
- 1 22 0 0 -0.22063875e+00 -0.39073379e+00 -0.47272676e+00 0.00000000e+00
- 2 311 374 374 0.11856040e+00 0.34060739e+00 -0.10537898e+01 0.49767000e+00
- 1 211 0 0 -0.63140949e-01 0.15307204e+00 0.13595202e-01 0.13957000e+00
- 1 -321 0 0 -0.21376100e-01 -0.13064788e-01 -0.34598628e+01 0.49360000e+00
- 1 211 0 0 -0.13584741e-01 -0.87233013e-01 -0.11382405e+00 0.13957000e+00
- 1 2112 0 0 -0.52897284e+00 0.18475803e+01 -0.45433126e+01 0.93957000e+00
- 1 -211 0 0 -0.38135354e-01 0.18504112e+00 -0.97416367e+00 0.13957000e+00
- 1 -2112 0 0 -0.18442816e+00 0.37064453e+00 -0.33177770e+01 0.93957000e+00
- 1 211 0 0 -0.10658110e-01 0.43010098e+00 -0.20992023e+01 0.13957000e+00
- 1 -211 0 0 0.19237847e-01 -0.45089946e-01 -0.23793055e-01 0.13957000e+00
- 1 211 0 0 -0.74337683e-01 0.30510570e+00 -0.19179543e+01 0.13957000e+00
- 1 211 0 0 -0.14746424e+00 0.65191156e+00 -0.11551653e+01 0.13957000e+00
- 2 111 375 376 0.29521452e+00 0.47301232e-01 -0.38721291e+00 0.13498000e+00
- 1 -2212 0 0 -0.13376291e+00 0.51964017e+00 -0.11488286e+01 0.93827000e+00
- 1 -211 0 0 0.54240245e-01 -0.27243148e-01 -0.79657758e+00 0.13957000e+00
- 1 321 0 0 0.24677748e+00 0.54315397e-01 -0.13348800e+01 0.49360000e+00
- 2 111 377 378 -0.23557460e+00 -0.19325255e+00 -0.57843945e+00 0.13498000e+00
- 2 -311 379 379 -0.31766282e+00 -0.31359867e-01 -0.50208140e+01 0.49767000e+00
- 2 111 380 381 -0.32808135e+00 0.31473022e+00 -0.82690652e+01 0.13498000e+00
- 2 -3122 382 383 -0.89444718e-01 0.11094475e+01 -0.37073711e+02 0.11156800e+01
- 1 211 0 0 0.21047794e-01 -0.59059561e-01 -0.47150848e+01 0.13957000e+00
- 1 -211 0 0 -0.28190173e+00 -0.33755761e+00 -0.56755976e+02 0.13957000e+00
- 1 211 0 0 0.19050774e+00 -0.84106746e+00 -0.95299969e+02 0.13957000e+00
- 1 130 0 0 -0.42997898e+00 -0.23388359e+00 0.14196422e+03 0.49767000e+00
- 1 22 0 0 -0.25650641e-01 0.56139200e-01 0.10218376e+02 0.00000000e+00
- 1 22 0 0 -0.17998562e+00 0.24790025e+00 0.12823797e+03 0.00000000e+00
- 1 22 0 0 0.11790277e-01 -0.22354149e-01 0.25832203e+00 0.00000000e+00
- 1 22 0 0 -0.15631832e-01 0.15735971e+00 0.36676192e+01 0.00000000e+00
- 1 22 0 0 -0.10162710e+00 0.89199962e-01 0.28742599e+01 0.00000000e+00
- 1 22 0 0 -0.15075593e+00 0.17649060e+00 0.23688983e+01 0.00000000e+00
- 1 -211 0 0 -0.47859844e+00 0.33275536e+00 0.41347802e+01 0.13957000e+00
- 1 211 0 0 0.20069685e+00 0.22498276e+00 0.26001278e+01 0.13957000e+00
- 1 211 0 0 0.29839378e-01 -0.30992231e+00 0.59255642e+01 0.13957000e+00
- 1 -211 0 0 -0.13456203e+00 0.83010664e-01 0.27917607e+01 0.13957000e+00
- 1 22 0 0 -0.37671146e+00 0.40604216e+00 0.22554506e+01 0.00000000e+00
- 1 22 0 0 -0.25179956e+00 0.13229280e+00 0.11092697e+01 0.00000000e+00
- 1 22 0 0 -0.95267074e-01 0.83973259e-01 0.54267597e+00 0.00000000e+00
- 1 22 0 0 -0.32904615e-02 0.19853269e+00 0.64599741e+00 0.00000000e+00
- 1 22 0 0 0.39796920e-01 0.69600289e-01 0.40196722e+00 0.00000000e+00
- 1 22 0 0 0.11099427e+00 0.27941266e+00 0.62725683e+00 0.00000000e+00
- 1 22 0 0 0.12769261e-02 0.32504877e+00 0.90171964e+00 0.00000000e+00
- 1 22 0 0 -0.42858236e-01 0.93969418e-01 0.52848037e+00 0.00000000e+00
- 2 310 384 385 -0.13948407e+01 0.27955655e+01 0.10155112e+02 0.49767000e+00
- 1 211 0 0 -0.16461290e+00 0.13869015e+00 0.46336873e+00 0.13957000e+00
- 1 -211 0 0 -0.16541905e+00 0.53852433e+00 0.26012629e+01 0.13957000e+00
- 1 22 0 0 -0.20419828e-01 -0.71089964e-02 0.76520219e-02 0.00000000e+00
- 1 22 0 0 0.15678174e+00 0.13473730e+00 -0.23375106e-01 0.00000000e+00
- 2 310 386 387 -0.56086226e+00 -0.64634402e+00 0.99331552e+00 0.49767000e+00
- 1 22 0 0 -0.19543103e+00 0.80429850e-01 0.54556652e-01 0.00000000e+00
- 1 22 0 0 -0.41157593e-01 -0.15372169e-01 -0.43736512e-01 0.00000000e+00
- 1 22 0 0 -0.45700343e-01 -0.17913940e-01 -0.26753099e-01 0.00000000e+00
- 1 22 0 0 0.66125757e-01 0.37189663e-01 -0.15162105e+00 0.00000000e+00
- 1 22 0 0 0.12477681e+00 -0.24604423e+00 -0.38128439e+01 0.00000000e+00
- 1 22 0 0 0.82180101e-01 -0.32016626e-01 -0.19801217e+01 0.00000000e+00
- 1 22 0 0 -0.36252008e-01 0.86241165e-02 -0.21041295e+00 0.00000000e+00
- 1 22 0 0 -0.22062256e+00 -0.31455603e+00 -0.19512363e+01 0.00000000e+00
- 1 22 0 0 0.11337975e-01 -0.33630352e-01 -0.34643359e+00 0.00000000e+00
- 1 22 0 0 0.31704631e+00 -0.43068896e-01 -0.15570866e+01 0.00000000e+00
- 1 22 0 0 -0.16347172e+00 -0.60655571e+00 -0.14101187e+01 0.00000000e+00
- 1 22 0 0 -0.56610213e-01 -0.33656717e+00 -0.10279369e+01 0.00000000e+00
- 1 22 0 0 -0.21598458e-01 0.45577694e-01 -0.23581814e+00 0.00000000e+00
- 1 22 0 0 0.21113834e-01 -0.88118188e-01 -0.50459059e+00 0.00000000e+00
- 1 22 0 0 0.13243123e+00 -0.12790187e+00 -0.20918357e+01 0.00000000e+00
- 1 22 0 0 0.29899921e-01 -0.73635211e-01 -0.32987797e+00 0.00000000e+00
- 1 22 0 0 0.47592953e-01 -0.11458412e-01 -0.45056833e-02 0.00000000e+00
- 1 22 0 0 0.10050506e+00 0.21462507e-02 -0.29206349e+00 0.00000000e+00
- 1 22 0 0 -0.16953309e-01 -0.34975324e-01 -0.33393623e+00 0.00000000e+00
- 1 22 0 0 0.17077653e+00 -0.21014403e-01 -0.11156795e+01 0.00000000e+00
- 1 22 0 0 -0.18159668e-01 -0.11537098e-01 -0.65142947e+00 0.00000000e+00
- 1 22 0 0 -0.33699158e+00 0.15773552e+00 -0.34020571e+02 0.00000000e+00
- 1 22 0 0 -0.22670384e+00 0.19421725e+00 0.44875434e+01 0.00000000e+00
- 1 22 0 0 -0.24713006e+00 0.53958415e-01 0.36084182e+01 0.00000000e+00
- 1 -211 0 0 -0.23941273e+00 0.11737183e-01 0.70310780e+01 0.13957000e+00
- 1 211 0 0 0.56883478e-02 -0.15485118e+00 0.16542711e+01 0.13957000e+00
- 1 22 0 0 -0.36583635e-01 -0.12033821e+00 0.34529843e+02 0.00000000e+00
- 1 22 0 0 0.47196102e-01 0.82430172e-02 0.93018932e+01 0.00000000e+00
- 1 22 0 0 0.38229320e-01 0.23300376e-01 0.53791644e+01 0.00000000e+00
- 1 22 0 0 -0.26850418e-01 -0.11631725e+00 0.15904993e+02 0.00000000e+00
- 1 -211 0 0 -0.24313835e+00 -0.15978011e+00 0.17755447e+02 0.13957000e+00
- 1 211 0 0 -0.51517430e+00 -0.21967236e+00 0.12355007e+03 0.13957000e+00
- 1 22 0 0 -0.91091548e-01 -0.51826358e-01 0.12419051e+02 0.00000000e+00
- 1 22 0 0 -0.89080207e-01 -0.27243149e-01 0.31220559e+01 0.00000000e+00
- 1 22 0 0 -0.11653716e+00 0.42556006e-01 0.34360556e+01 0.00000000e+00
- 1 22 0 0 0.24345065e-01 -0.28822898e-01 0.70537565e+00 0.00000000e+00
- 1 22 0 0 -0.33157318e-01 0.77772309e-01 0.33902811e+01 0.00000000e+00
- 1 22 0 0 0.64022969e-01 -0.17376645e-01 0.29337350e+01 0.00000000e+00
- 1 211 0 0 -0.55236352e+00 0.22724540e+00 0.17695340e+02 0.13957000e+00
- 1 -211 0 0 -0.24666622e-01 -0.89163359e-01 0.19973222e+02 0.13957000e+00
- 1 22 0 0 0.14863274e-02 0.20874984e-01 0.33522913e+00 0.00000000e+00
- 1 22 0 0 0.30554359e+00 0.21147283e+00 0.19607195e+02 0.00000000e+00
- 1 22 0 0 -0.14536456e-01 -0.31259897e-01 0.39722706e+01 0.00000000e+00
- 1 22 0 0 -0.51078580e+00 -0.45423101e-01 0.49524615e+02 0.00000000e+00
- 1 -211 0 0 0.34041555e-01 -0.20501194e+00 0.91609659e+02 0.13957000e+00
- 1 211 0 0 -0.44238131e+00 -0.49760131e+00 0.40708812e+03 0.13957000e+00
- 1 211 0 0 0.17281122e+00 -0.54620396e-01 0.14609636e+02 0.13957000e+00
- 1 -211 0 0 -0.15054264e-01 -0.32556046e+00 0.57897165e+02 0.13957000e+00
- 1 211 0 0 -0.19357832e-01 -0.10392856e+00 0.35068799e+02 0.13957000e+00
- 1 -211 0 0 0.15041709e-02 0.71025480e-01 0.45271540e+01 0.13957000e+00
- 1 130 0 0 0.12757436e+00 0.20919998e+00 0.32090872e+02 0.49767000e+00
- 1 22 0 0 0.14403152e+00 -0.46696927e-01 0.37662608e+01 0.00000000e+00
- 1 22 0 0 0.23469534e+00 -0.23271610e+00 0.12073560e+02 0.00000000e+00
- 1 22 0 0 0.19702303e+00 0.26190625e+00 0.50423005e+00 0.00000000e+00
- 1 22 0 0 0.46656784e-03 0.53886765e-01 0.19466402e+00 0.00000000e+00
- 1 22 0 0 0.77892259e-01 0.35617244e+00 0.87594315e+00 0.00000000e+00
- 1 22 0 0 -0.83259863e-02 -0.20406753e-02 0.46940687e-03 0.00000000e+00
- 1 130 0 0 0.11856040e+00 0.34060739e+00 -0.10537898e+01 0.49767000e+00
- 1 22 0 0 0.26402730e+00 0.49037747e-02 -0.36463744e+00 0.00000000e+00
- 1 22 0 0 0.31187219e-01 0.42397457e-01 -0.22575465e-01 0.00000000e+00
- 1 22 0 0 -0.59400618e-01 -0.13467259e+00 -0.23943220e+00 0.00000000e+00
- 1 22 0 0 -0.17617398e+00 -0.58579966e-01 -0.33900725e+00 0.00000000e+00
- 2 310 388 389 -0.31766282e+00 -0.31359867e-01 -0.50208140e+01 0.49767000e+00
- 1 22 0 0 -0.30703575e-01 -0.90090524e-02 -0.37713693e+00 0.00000000e+00
- 1 22 0 0 -0.29737777e+00 0.32373927e+00 -0.78919283e+01 0.00000000e+00
- 1 -2212 0 0 0.20725791e-01 0.89243890e+00 -0.30182444e+02 0.93827000e+00
- 1 211 0 0 -0.11017051e+00 0.21700863e+00 -0.68912669e+01 0.13957000e+00
- 1 211 0 0 -0.43426453e+00 0.62323966e+00 0.21101730e+01 0.13957000e+00
- 1 -211 0 0 -0.96057618e+00 0.21723258e+01 0.80449388e+01 0.13957000e+00
- 1 -211 0 0 -0.38657254e+00 -0.43827650e+00 0.36277543e+00 0.13957000e+00
- 1 211 0 0 -0.17428971e+00 -0.20806752e+00 0.63054009e+00 0.13957000e+00
- 1 211 0 0 -0.32207474e+00 0.10267308e+00 -0.39862398e+01 0.13957000e+00
- 1 -211 0 0 0.44119195e-02 -0.13403295e+00 -0.10345742e+01 0.13957000e+00
- 318
- 2 25 2 3 0.16898990e+01 -0.27441619e+01 -0.63852406e+03 0.12501039e+03
- 2 23 4 6 -0.24039143e+02 0.79832808e+01 -0.30506143e+03 0.42592071e+02
- 2 23 7 10 0.25729042e+02 -0.10727443e+02 -0.33346263e+03 0.68645089e+02
- 1 -13 0 0 -0.27176942e+02 0.11672338e+02 -0.30172575e+03 0.10566000e+00
- 1 13 0 0 0.31358933e+01 -0.36730465e+01 -0.33380144e+01 0.10566000e+00
- 1 22 0 0 0.19061831e-02 -0.16010487e-01 0.23288311e-02 0.00000000e+00
- 1 13 0 0 0.38442087e+02 -0.25900144e+02 -0.14827768e+03 0.10566000e+00
- 1 22 0 0 -0.63564987e-02 0.12874905e-01 -0.17343517e+00 0.00000000e+00
- 1 -13 0 0 -0.12706234e+02 0.15159532e+02 -0.18500573e+03 0.10566000e+00
- 1 22 0 0 -0.45437916e-03 0.29429364e-03 -0.57786254e-02 0.00000000e+00
- 2 2 49 49 0.60527169e+00 -0.79894285e+00 -0.93073513e+03 0.33000000e+00
- 2 21 49 49 0.15149444e+01 0.45495297e+00 -0.11521905e+04 0.00000000e+00
- 2 21 49 49 0.72749155e+00 -0.97375167e-01 -0.65956145e+02 0.00000000e+00
- 2 21 49 49 -0.53410726e-01 0.28650142e+01 -0.53217565e+03 0.00000000e+00
- 2 21 49 49 0.62492973e-01 -0.10850388e+01 -0.42418916e+02 0.00000000e+00
- 2 21 49 49 0.58861710e+00 -0.91305111e-01 -0.75162075e+02 0.00000000e+00
- 2 21 49 49 -0.24451748e+00 -0.50725830e+00 -0.22264110e+02 0.00000000e+00
- 2 21 49 49 0.96911678e+00 -0.22667141e+01 -0.14015171e+03 0.00000000e+00
- 2 21 49 49 0.38436028e+00 -0.13735309e+00 -0.58789989e+02 0.00000000e+00
- 2 21 49 49 -0.96911678e+00 0.22667141e+01 -0.66193673e+03 0.00000000e+00
- 2 21 49 49 -0.94930704e+00 0.10216515e+01 -0.26077380e+03 0.00000000e+00
- 2 21 49 49 -0.27895670e+00 0.18367861e+00 -0.14009525e+02 0.00000000e+00
- 2 21 49 49 0.24056772e-01 0.16860497e+01 -0.26685356e+02 0.00000000e+00
- 2 21 49 49 0.18254260e+01 0.22571746e+01 -0.81990537e+01 0.00000000e+00
- 2 21 49 49 0.11340137e-01 0.47657243e+00 -0.18068500e+00 0.00000000e+00
- 2 21 49 49 0.24451748e+00 0.50725830e+00 0.15458311e+01 0.00000000e+00
- 2 21 49 49 -0.50847854e+00 -0.46578411e+00 -0.14131508e+01 0.00000000e+00
- 2 21 49 49 -0.51117191e+00 0.47157834e+00 0.12658742e+00 0.00000000e+00
- 2 21 49 49 0.25431693e+00 -0.23652046e+00 0.39691716e+01 0.00000000e+00
- 2 21 49 49 0.16307725e+01 0.50109760e+00 0.33768131e+01 0.00000000e+00
- 2 21 49 49 0.38823555e+00 0.65119863e+00 0.22122351e+01 0.00000000e+00
- 2 21 49 49 0.52453211e+00 0.19490947e+01 0.22716524e+01 0.00000000e+00
- 2 2101 49 49 -0.10464952e+01 -0.12158900e+01 0.62043202e+04 0.57933000e+00
- 2 2 96 96 -0.17859914e+01 -0.88516969e+00 0.76362178e+03 0.33000000e+00
- 2 21 96 96 -0.85949861e+00 0.11310499e+01 -0.14493154e+01 0.00000000e+00
- 2 21 96 96 -0.38436028e+00 0.13735309e+00 0.31913075e+01 0.00000000e+00
- 2 21 96 96 -0.37235645e+00 0.13093233e+00 0.49248591e+00 0.00000000e+00
- 2 21 96 96 -0.18254260e+01 -0.22571746e+01 0.37851766e+01 0.00000000e+00
- 2 21 96 96 -0.24056772e-01 -0.16860497e+01 0.16191903e+01 0.00000000e+00
- 2 21 96 96 0.27895670e+00 -0.18367861e+00 -0.77076614e-02 0.00000000e+00
- 2 21 96 96 0.37235645e+00 -0.13093233e+00 0.13867831e-01 0.00000000e+00
- 2 21 96 96 0.94930704e+00 -0.10216515e+01 -0.25418101e+01 0.00000000e+00
- 2 21 96 96 -0.11340137e-01 -0.47657243e+00 -0.23081724e+01 0.00000000e+00
- 2 21 96 96 -0.81058510e+00 0.35607597e-01 -0.24722356e+02 0.00000000e+00
- 2 21 96 96 0.39513725e+00 0.64887143e+00 -0.19964268e+02 0.00000000e+00
- 2 21 96 96 -0.56837869e+00 -0.50882817e+00 -0.10066580e+02 0.00000000e+00
- 2 21 96 96 0.15120284e+00 -0.14626911e+00 -0.44832562e+00 0.00000000e+00
- 2 2101 96 96 -0.23889038e+01 -0.43317981e+00 -0.22974712e+04 0.57933000e+00
- 2 92 50 95 0.51940378e+01 0.83898535e+01 0.22247800e+04 0.99687259e+04
- 2 323 130 131 0.68659077e+00 0.10956218e+00 -0.65957267e+03 0.84182884e+00
- 2 -313 132 133 0.78950230e+00 -0.57464256e+00 -0.65798814e+03 0.90834970e+00
- 2 111 134 135 0.11572653e+00 0.13831070e+00 -0.25822384e+03 0.13498000e+00
- 2 -213 136 137 0.25777144e+00 -0.72427584e-01 -0.25489836e+03 0.63006352e+00
- 2 223 138 140 0.16990713e+00 0.65669408e+00 -0.35844534e+03 0.77704408e+00
- 2 213 141 142 0.50986473e+00 0.13230271e+00 -0.16976917e+03 0.79411201e+00
- 2 311 143 143 0.17097181e+00 0.81553787e+00 -0.84304108e+02 0.49767000e+00
- 2 -313 144 145 0.31911886e+00 -0.32516215e+00 -0.10233555e+03 0.92253699e+00
- 1 2112 0 0 0.16904258e+00 0.12113027e+01 -0.13001574e+03 0.93957000e+00
- 1 -2112 0 0 0.65968095e+00 -0.13669656e+01 -0.14486397e+03 0.93957000e+00
- 2 331 146 148 0.70698662e-01 -0.12352496e+01 -0.96951328e+02 0.95768597e+00
- 1 2212 0 0 0.55349788e+00 -0.56113856e+00 -0.12200358e+03 0.93827000e+00
- 1 -2212 0 0 -0.63151731e+00 0.19422272e+00 -0.15007325e+03 0.93827000e+00
- 1 -211 0 0 -0.68860409e+00 0.70372266e+00 -0.23848046e+03 0.13957000e+00
- 1 2212 0 0 -0.22011999e-01 0.33834080e+00 -0.10111166e+03 0.93827000e+00
- 2 213 149 150 -0.70664397e+00 0.11386084e+01 -0.31288357e+03 0.78273880e+00
- 2 -2224 151 152 -0.59970003e-01 0.16736449e+01 -0.10184790e+03 0.12653468e+01
- 1 211 0 0 0.18425821e+00 -0.30034929e+00 -0.89841985e+01 0.13957000e+00
- 2 -213 153 154 -0.97503126e-02 -0.13556533e+00 -0.98812353e+01 0.91848297e+00
- 2 213 155 156 0.24906352e+00 0.43770764e+00 -0.40859012e+01 0.83211490e+00
- 2 113 157 158 0.15208405e+00 0.68186663e+00 -0.10955633e+02 0.63967479e+00
- 2 221 159 161 0.14653269e+00 0.56193506e+00 -0.48987983e+01 0.54745000e+00
- 2 221 162 163 0.27346022e+00 0.76543775e+00 -0.17330311e+01 0.54745000e+00
- 1 -211 0 0 -0.11411860e+00 -0.35843754e+00 -0.12979093e+01 0.13957000e+00
- 2 213 164 165 0.40310008e-01 0.83269399e+00 -0.31804740e+01 0.74522046e+00
- 2 113 166 167 0.57612356e+00 0.31813760e+00 -0.14533603e+00 0.69406896e+00
- 1 -211 0 0 0.21765850e+00 0.40758092e+00 -0.31333585e-01 0.13957000e+00
- 2 213 168 169 -0.43774507e+00 -0.28727427e+00 -0.95525264e+00 0.73624458e+00
- 2 113 170 171 0.93279775e-01 -0.11948173e+00 -0.78002299e+00 0.81240043e+00
- 2 113 172 173 -0.30720019e+00 0.59009875e+00 -0.63261603e+00 0.67907796e+00
- 2 3112 174 175 0.73166030e+00 0.22049733e+00 0.25945082e+01 0.11974400e+01
- 2 311 176 176 -0.72751878e-01 -0.28324440e+00 -0.24579814e+00 0.49767000e+00
- 2 -2114 177 178 0.58422182e+00 0.67093047e+00 0.22020142e+01 0.11954503e+01
- 2 223 179 181 -0.15296448e+00 0.58235764e+00 0.68623352e+00 0.77996397e+00
- 1 2212 0 0 0.36840099e+00 0.49762302e+00 0.19666397e+01 0.93827000e+00
- 2 223 182 184 0.25057650e-01 -0.11464248e-01 0.49870945e+01 0.78763346e+00
- 2 -2214 185 186 0.13639590e+01 0.83338923e+00 0.58069247e+01 0.12971467e+01
- 2 323 187 188 -0.20979008e+00 0.47445920e+00 0.70010756e+01 0.86784685e+00
- 2 3214 189 190 0.62224637e-01 0.33469873e+00 0.21888668e+02 0.13731278e+01
- 2 223 191 193 -0.57314338e-01 -0.44738286e+00 0.92676470e+01 0.80676604e+00
- 2 -2114 194 195 0.32611931e-01 0.22379307e+00 0.12854204e+02 0.12271457e+01
- 2 113 196 197 -0.19832300e+00 0.19331607e+00 0.64272698e+02 0.84691385e+00
- 2 -213 198 199 0.36305286e+00 -0.47494456e+00 0.13301841e+03 0.71341518e+00
- 2 213 200 201 0.23224678e+00 0.43232893e+00 0.63276823e+03 0.70067547e+00
- 2 223 202 204 -0.57925260e+00 -0.80649903e+00 0.25707320e+04 0.78275951e+00
- 1 2112 0 0 -0.72658440e+00 -0.42101906e+00 0.27463098e+04 0.93957000e+00
- 2 92 97 129 -0.68839369e+01 -0.56456915e+01 -0.15862559e+04 0.27044920e+04
- 2 213 205 206 -0.15532089e+01 -0.12008321e+01 0.54988992e+03 0.73264889e+00
- 2 113 207 208 0.10980866e+00 0.19832768e+00 0.10055354e+03 0.61322569e+00
- 2 1114 209 210 -0.22498911e+00 0.19138395e+00 0.34625347e+02 0.12490184e+01
- 2 111 211 212 0.24255277e+00 0.67487183e-01 0.15508818e+02 0.13498000e+00
- 2 -1114 213 214 -0.52686952e+00 -0.14635606e-01 0.47798524e+02 0.12267742e+01
- 2 113 215 216 0.51454919e+00 -0.51227986e+00 0.52315251e+01 0.61834107e+00
- 1 -211 0 0 -0.60130303e+00 0.57257946e+00 0.23557140e+01 0.13957000e+00
- 2 213 217 218 0.36601889e+00 -0.45125830e-01 0.45912223e+01 0.75313850e+00
- 2 3112 219 220 -0.61392638e-01 0.24503181e+00 0.10097190e+01 0.11974400e+01
- 2 -3112 221 222 -0.44382113e+00 0.11418172e+00 0.87968896e+00 0.11974400e+01
- 1 -211 0 0 -0.40663481e-01 0.18132362e+00 0.13799193e+00 0.13957000e+00
- 2 113 223 224 -0.77415363e+00 0.56166580e+00 0.17313139e+01 0.61361025e+00
- 1 211 0 0 -0.20535618e+00 -0.66027085e+00 0.10522846e+01 0.13957000e+00
- 2 223 225 226 -0.29077134e+00 -0.12304293e+00 -0.21707892e-01 0.78965934e+00
- 1 -211 0 0 -0.40739827e+00 -0.21707831e-01 -0.10575626e+00 0.13957000e+00
- 1 211 0 0 0.15990095e+00 0.18921862e-01 0.45961660e+00 0.13957000e+00
- 2 311 227 227 -0.51640516e+00 -0.76964604e+00 0.28759008e+01 0.49767000e+00
- 2 -313 228 229 -0.30192606e+00 -0.43807521e+00 0.25711687e+00 0.89056446e+00
- 2 3112 230 231 -0.25883712e+00 -0.11975335e+01 0.20000882e+01 0.11974400e+01
- 2 -3112 232 233 -0.17705437e+00 -0.94451615e+00 -0.10067714e+01 0.11974400e+01
- 2 -213 234 235 0.15598245e+01 -0.32682931e+00 -0.18300593e+01 0.74717848e+00
- 2 213 236 237 -0.91319062e+00 -0.47949744e+00 -0.30019638e+01 0.71885171e+00
- 2 -213 238 239 0.46507812e+00 -0.20047704e+00 -0.69201058e+01 0.71176292e+00
- 1 211 0 0 -0.75614673e-01 -0.44641566e+00 -0.17823451e+01 0.13957000e+00
- 1 -211 0 0 0.26453785e+00 0.41803812e+00 -0.41365333e+01 0.13957000e+00
- 2 213 240 241 -0.38411399e+00 -0.23232612e+00 -0.89098417e+01 0.81029557e+00
- 2 1114 242 243 -0.25875810e+00 0.10058645e+00 -0.32313899e+02 0.11347119e+01
- 2 -313 244 245 0.39723197e-01 -0.56124382e-01 -0.54242002e+02 0.99442021e+00
- 2 -3112 246 247 0.79967762e-01 -0.17401688e+00 -0.53020883e+02 0.11974400e+01
- 1 -211 0 0 -0.43724167e+00 0.30269967e+00 -0.56273284e+02 0.13957000e+00
- 2 113 248 249 0.63004061e-01 -0.91820175e-01 -0.20002131e+02 0.90008031e+00
- 1 321 0 0 -0.75066799e+00 -0.33323762e+00 -0.64522148e+03 0.49360000e+00
- 2 3122 250 251 -0.15451658e+01 -0.34950839e+00 -0.14684255e+04 0.11156800e+01
- 2 311 252 252 0.14614480e+00 0.47505436e-01 -0.36062974e+03 0.49767000e+00
- 1 211 0 0 0.54044597e+00 0.62056748e-01 -0.29894294e+03 0.13957000e+00
- 1 -321 0 0 0.65720820e+00 -0.12993975e+00 -0.36308149e+03 0.49360000e+00
- 1 211 0 0 0.13229410e+00 -0.44470282e+00 -0.29490665e+03 0.13957000e+00
- 1 22 0 0 0.75831544e-01 0.15359036e+00 -0.16604112e+03 0.00000000e+00
- 1 22 0 0 0.39894984e-01 -0.15279664e-01 -0.92182725e+02 0.00000000e+00
- 1 -211 0 0 0.61420751e-01 -0.29761923e+00 -0.96340327e+02 0.13957000e+00
- 2 111 253 254 0.19635068e+00 0.22519165e+00 -0.15855804e+03 0.13498000e+00
- 1 211 0 0 0.19778741e-01 0.21893035e-01 -0.62335962e+02 0.13957000e+00
- 1 -211 0 0 0.74623636e-01 0.36208798e+00 -0.70805868e+02 0.13957000e+00
- 2 111 255 256 0.75504751e-01 0.27271306e+00 -0.22530351e+03 0.13498000e+00
- 1 211 0 0 0.34863449e+00 -0.14467468e+00 -0.14097746e+03 0.13957000e+00
- 2 111 257 258 0.16123024e+00 0.27697740e+00 -0.28791712e+02 0.13498000e+00
- 1 130 0 0 0.17097181e+00 0.81553787e+00 -0.84304108e+02 0.49767000e+00
- 1 -321 0 0 0.30640066e+00 -0.73779639e-01 -0.89628711e+02 0.49360000e+00
- 1 211 0 0 0.12718197e-01 -0.25138251e+00 -0.12706837e+02 0.13957000e+00
- 1 211 0 0 -0.39300061e-01 -0.22305482e+00 -0.18513286e+02 0.13957000e+00
- 1 -211 0 0 -0.53979920e-01 -0.18810615e+00 -0.26091796e+02 0.13957000e+00
- 2 221 259 261 0.16397864e+00 -0.82408866e+00 -0.52346246e+02 0.54745000e+00
- 1 211 0 0 0.10053103e+00 0.46048319e-01 -0.26757713e+02 0.13957000e+00
- 2 111 262 263 -0.80717501e+00 0.10925601e+01 -0.28612586e+03 0.13498000e+00
- 1 -2212 0 0 0.16770845e-01 0.13825756e+01 -0.70184999e+02 0.93827000e+00
- 1 -211 0 0 -0.76740847e-01 0.29106934e+00 -0.31662906e+02 0.13957000e+00
- 1 -211 0 0 0.34590026e+00 -0.11545337e+00 -0.22209884e+01 0.13957000e+00
- 2 111 264 265 -0.35565057e+00 -0.20111959e-01 -0.76602469e+01 0.13498000e+00
- 1 211 0 0 -0.13462707e-02 0.38890939e+00 -0.36737275e+01 0.13957000e+00
- 2 111 266 267 0.25040979e+00 0.48798247e-01 -0.41217370e+00 0.13498000e+00
- 1 211 0 0 -0.29976334e-01 0.18834099e+00 -0.69562471e+01 0.13957000e+00
- 1 -211 0 0 0.18206039e+00 0.49352565e+00 -0.39993863e+01 0.13957000e+00
- 1 211 0 0 0.45493841e-01 0.50615659e-01 -0.66719731e+00 0.13957000e+00
- 1 -211 0 0 0.16177009e-01 0.40728890e+00 -0.25673566e+01 0.13957000e+00
- 2 111 268 269 0.84861835e-01 0.10403050e+00 -0.16642445e+01 0.13498000e+00
- 1 22 0 0 0.14725564e+00 0.44554791e+00 -0.15095420e+01 0.00000000e+00
- 1 22 0 0 0.12620458e+00 0.31988985e+00 -0.22348912e+00 0.00000000e+00
- 1 211 0 0 -0.19162036e+00 0.10274382e+00 -0.34439740e+00 0.13957000e+00
- 2 111 270 271 0.23193037e+00 0.72995018e+00 -0.28360766e+01 0.13498000e+00
- 1 211 0 0 0.65410807e+00 0.19022683e+00 0.32709882e-01 0.13957000e+00
- 1 -211 0 0 -0.77984510e-01 0.12791077e+00 -0.17804591e+00 0.13957000e+00
- 1 211 0 0 -0.34045889e+00 -0.50780118e+00 -0.65473831e+00 0.13957000e+00
- 2 111 272 273 -0.97286180e-01 0.22052691e+00 -0.30051433e+00 0.13498000e+00
- 1 211 0 0 -0.18365892e+00 -0.67342974e-01 0.52928879e-01 0.13957000e+00
- 1 -211 0 0 0.27693869e+00 -0.52138758e-01 -0.83295187e+00 0.13957000e+00
- 1 -211 0 0 0.17318849e+00 0.29506672e+00 -0.26149217e+00 0.13957000e+00
- 1 211 0 0 -0.48038868e+00 0.29503202e+00 -0.37112386e+00 0.13957000e+00
- 1 2112 0 0 0.46602071e+00 0.32167218e+00 0.18856075e+01 0.93957000e+00
- 1 -211 0 0 0.26563959e+00 -0.10117485e+00 0.70890066e+00 0.13957000e+00
- 1 130 0 0 -0.72751878e-01 -0.28324440e+00 -0.24579814e+00 0.49767000e+00
- 1 -2112 0 0 0.51228617e+00 0.39581464e+00 0.19336495e+01 0.93957000e+00
- 2 111 274 275 0.71935649e-01 0.27511583e+00 0.26836477e+00 0.13498000e+00
- 1 -211 0 0 -0.19352516e+00 0.15319499e+00 -0.30880740e-01 0.13957000e+00
- 1 211 0 0 -0.32001288e-01 0.33081146e+00 0.33438671e+00 0.13957000e+00
- 2 111 276 277 0.72561962e-01 0.98351189e-01 0.38272755e+00 0.13498000e+00
- 1 -211 0 0 -0.59006876e-01 0.17171678e+00 0.25117933e+01 0.13957000e+00
- 1 211 0 0 0.16664851e+00 -0.19954655e-01 0.18223294e+01 0.13957000e+00
- 2 111 278 279 -0.82583986e-01 -0.16322637e+00 0.65297181e+00 0.13498000e+00
- 1 -2112 0 0 0.10507714e+01 0.79888497e+00 0.38996950e+01 0.93957000e+00
- 1 -211 0 0 0.31318766e+00 0.34504256e-01 0.19072297e+01 0.13957000e+00
- 2 311 280 280 -0.40350211e+00 0.26575162e+00 0.48886799e+01 0.49767000e+00
- 1 211 0 0 0.19371202e+00 0.20870759e+00 0.21123956e+01 0.13957000e+00
- 2 3122 281 282 0.64225969e-01 0.47984064e+00 0.18973376e+02 0.11156800e+01
- 2 111 283 284 -0.20013322e-02 -0.14514191e+00 0.29152929e+01 0.13498000e+00
- 1 211 0 0 0.55278464e-01 -0.43608420e-01 0.17161514e+01 0.13957000e+00
- 1 -211 0 0 -0.31492010e+00 -0.78596932e-01 0.29799778e+01 0.13957000e+00
- 2 111 285 286 0.20232730e+00 -0.32517751e+00 0.45715179e+01 0.13498000e+00
- 1 -2212 0 0 -0.19421544e+00 0.19211106e+00 0.10399921e+02 0.93827000e+00
- 1 211 0 0 0.22682737e+00 0.31682009e-01 0.24542834e+01 0.13957000e+00
- 1 -211 0 0 0.29547017e+00 0.17486680e+00 0.23068641e+02 0.13957000e+00
- 1 211 0 0 -0.49379317e+00 0.18449271e-01 0.41204057e+02 0.13957000e+00
- 1 -211 0 0 0.19180971e+00 0.39111168e-01 0.79095233e+02 0.13957000e+00
- 2 111 287 288 0.17124314e+00 -0.51405573e+00 0.53923172e+02 0.13498000e+00
- 1 211 0 0 0.40611907e+00 0.45412253e+00 0.50501482e+03 0.13957000e+00
- 2 111 289 290 -0.17387229e+00 -0.21793595e-01 0.12775341e+03 0.13498000e+00
- 1 211 0 0 -0.33350351e+00 -0.63288401e+00 0.13885131e+04 0.13957000e+00
- 1 -211 0 0 0.24260721e-01 -0.17313550e+00 0.59491915e+03 0.13957000e+00
- 2 111 291 292 -0.27000981e+00 -0.47952849e-03 0.58729983e+03 0.13498000e+00
- 1 211 0 0 0.17477995e-01 -0.94364012e-01 0.46125944e+02 0.13957000e+00
- 2 111 293 294 -0.15706869e+01 -0.11064681e+01 0.50376398e+03 0.13498000e+00
- 1 211 0 0 0.25773222e+00 0.40006755e-01 0.79463782e+02 0.13957000e+00
- 1 -211 0 0 -0.14792356e+00 0.15832092e+00 0.21089755e+02 0.13957000e+00
- 1 2112 0 0 -0.78618470e-01 -0.76808894e-01 0.26289936e+02 0.93957000e+00
- 1 -211 0 0 -0.14637064e+00 0.26819284e+00 0.83354114e+01 0.13957000e+00
- 1 22 0 0 0.13306690e+00 -0.45330098e-02 0.10757032e+02 0.00000000e+00
- 1 22 0 0 0.10948587e+00 0.72020193e-01 0.47517855e+01 0.00000000e+00
- 1 -2112 0 0 -0.26038470e+00 0.14552837e+00 0.32994353e+02 0.93957000e+00
- 1 211 0 0 -0.26648481e+00 -0.16016398e+00 0.14804171e+02 0.13957000e+00
- 1 -211 0 0 0.14025488e+00 -0.50955751e+00 0.33469469e+01 0.13957000e+00
- 1 211 0 0 0.37429431e+00 -0.27223462e-02 0.18845782e+01 0.13957000e+00
- 1 211 0 0 0.18674965e+00 -0.13813572e+00 0.41857199e+01 0.13957000e+00
- 2 111 295 296 0.17926925e+00 0.93009890e-01 0.40550246e+00 0.13498000e+00
- 1 2112 0 0 0.10860895e+00 0.23658170e+00 0.67449828e+00 0.93957000e+00
- 1 -211 0 0 -0.17000159e+00 0.84501142e-02 0.33522068e+00 0.13957000e+00
- 1 -2112 0 0 -0.18193561e+00 0.13737336e+00 0.77589265e+00 0.93957000e+00
- 1 211 0 0 -0.26188551e+00 -0.23191645e-01 0.10379631e+00 0.13957000e+00
- 1 -211 0 0 -0.60032151e-01 -0.73725792e-01 0.29671700e+00 0.13957000e+00
- 1 211 0 0 -0.71412148e+00 0.63539160e+00 0.14345969e+01 0.13957000e+00
- 1 22 0 0 -0.26201112e+00 0.39006740e-01 0.34000970e+00 0.00000000e+00
- 2 111 297 298 -0.28760211e-01 -0.16204967e+00 -0.36171759e+00 0.13498000e+00
- 2 310 299 300 -0.51640516e+00 -0.76964604e+00 0.28759008e+01 0.49767000e+00
- 1 -321 0 0 0.56276854e-01 -0.39962941e+00 0.24252161e+00 0.49360000e+00
- 1 211 0 0 -0.35820292e+00 -0.38445795e-01 0.14595259e-01 0.13957000e+00
- 1 2112 0 0 -0.18116650e+00 -0.11266076e+01 0.15094101e+01 0.93957000e+00
- 1 -211 0 0 -0.77670624e-01 -0.70925869e-01 0.49067802e+00 0.13957000e+00
- 1 -2112 0 0 -0.48619671e-01 -0.62453503e+00 -0.57868617e+00 0.93957000e+00
- 1 211 0 0 -0.12843469e+00 -0.31998113e+00 -0.42808527e+00 0.13957000e+00
- 1 -211 0 0 0.14328391e+01 -0.10613852e+00 -0.16774319e+01 0.13957000e+00
- 2 111 301 302 0.12698544e+00 -0.22069079e+00 -0.15262736e+00 0.13498000e+00
- 1 211 0 0 -0.24890653e+00 0.23824338e-02 -0.15939305e+01 0.13957000e+00
- 2 111 303 304 -0.66428408e+00 -0.48187987e+00 -0.14080332e+01 0.13498000e+00
- 1 -211 0 0 0.57306119e+00 -0.29718843e+00 -0.58064321e+01 0.13957000e+00
- 2 111 305 306 -0.10798307e+00 0.96711384e-01 -0.11136737e+01 0.13498000e+00
- 1 211 0 0 -0.48560596e+00 -0.16250738e-01 -0.30499577e+01 0.13957000e+00
- 2 111 307 308 0.10149197e+00 -0.21607538e+00 -0.58598840e+01 0.13498000e+00
- 1 2112 0 0 -0.29145036e+00 -0.65096870e-02 -0.28370481e+02 0.93957000e+00
- 1 -211 0 0 0.32692266e-01 0.10709614e+00 -0.39434174e+01 0.13957000e+00
- 1 -321 0 0 0.14326049e+00 -0.32992272e+00 -0.43434845e+02 0.49360000e+00
- 1 211 0 0 -0.10353729e+00 0.27379834e+00 -0.10807156e+02 0.13957000e+00
- 1 -2112 0 0 -0.25011274e-01 -0.74324839e-01 -0.48769039e+02 0.93957000e+00
- 1 211 0 0 0.10497904e+00 -0.99692044e-01 -0.42518437e+01 0.13957000e+00
- 1 211 0 0 -0.76259678e-01 0.35079619e+00 -0.61282575e+01 0.13957000e+00
- 1 -211 0 0 0.13926374e+00 -0.44261636e+00 -0.13873874e+02 0.13957000e+00
- 1 2112 0 0 -0.12242502e+01 -0.19340198e+00 -0.11621791e+04 0.93957000e+00
- 2 111 309 310 -0.32091557e+00 -0.15610641e+00 -0.30624638e+03 0.13498000e+00
- 1 130 0 0 0.14614480e+00 0.47505436e-01 -0.36062974e+03 0.49767000e+00
- 1 22 0 0 0.12285657e+00 0.19298787e+00 -0.89524691e+02 0.00000000e+00
- 1 22 0 0 0.73494117e-01 0.32203779e-01 -0.69033345e+02 0.00000000e+00
- 1 22 0 0 -0.32970717e-01 0.27625868e-01 -0.22591183e+02 0.00000000e+00
- 1 22 0 0 0.10847547e+00 0.24508720e+00 -0.20271233e+03 0.00000000e+00
- 1 22 0 0 0.12413566e+00 0.23982092e+00 -0.18550463e+02 0.00000000e+00
- 1 22 0 0 0.37094584e-01 0.37156478e-01 -0.10241248e+02 0.00000000e+00
- 2 111 311 312 -0.89058084e-01 -0.18452635e+00 -0.11996904e+02 0.13498000e+00
- 2 111 313 314 0.17395661e+00 -0.25841553e+00 -0.15882770e+02 0.13498000e+00
- 2 111 315 316 0.79080119e-01 -0.38114677e+00 -0.24466572e+02 0.13498000e+00
- 1 22 0 0 -0.71167013e+00 0.97137257e+00 -0.24357557e+03 0.00000000e+00
- 1 22 0 0 -0.95504874e-01 0.12118755e+00 -0.42550288e+02 0.00000000e+00
- 1 22 0 0 -0.28824769e+00 -0.68802668e-01 -0.56895751e+01 0.00000000e+00
- 1 22 0 0 -0.67402885e-01 0.48690710e-01 -0.19706718e+01 0.00000000e+00
- 1 22 0 0 0.21237203e+00 -0.12853632e-01 -0.27131837e+00 0.00000000e+00
- 1 22 0 0 0.38037754e-01 0.61651879e-01 -0.14085533e+00 0.00000000e+00
- 1 22 0 0 0.27405957e-01 0.31507811e-01 -0.12478160e+01 0.00000000e+00
- 1 22 0 0 0.57455878e-01 0.72522692e-01 -0.41642848e+00 0.00000000e+00
- 1 22 0 0 0.16815756e+00 0.59969361e+00 -0.24623296e+01 0.00000000e+00
- 1 22 0 0 0.63772805e-01 0.13025656e+00 -0.37374698e+00 0.00000000e+00
- 1 22 0 0 -0.10106768e+00 0.64212628e-01 -0.13708140e+00 0.00000000e+00
- 1 22 0 0 0.37815021e-02 0.15631428e+00 -0.16343293e+00 0.00000000e+00
- 1 22 0 0 0.10913709e+00 0.21654855e+00 0.23067298e+00 0.00000000e+00
- 1 22 0 0 -0.37201444e-01 0.58567285e-01 0.37691788e-01 0.00000000e+00
- 1 22 0 0 0.10510304e+00 0.69384856e-01 0.34099477e+00 0.00000000e+00
- 1 22 0 0 -0.32541080e-01 0.28966333e-01 0.41732778e-01 0.00000000e+00
- 1 22 0 0 0.13932290e-01 -0.11975709e+00 0.37852703e+00 0.00000000e+00
- 1 22 0 0 -0.96516276e-01 -0.43469280e-01 0.27444478e+00 0.00000000e+00
- 2 310 317 318 -0.40350211e+00 0.26575162e+00 0.48886799e+01 0.49767000e+00
- 1 2212 0 0 0.48140912e-01 0.48360204e+00 0.15420944e+02 0.93827000e+00
- 1 -211 0 0 0.16085057e-01 -0.37614053e-02 0.35524313e+01 0.13957000e+00
- 1 22 0 0 -0.66205031e-02 -0.13637689e+00 0.29031174e+01 0.00000000e+00
- 1 22 0 0 0.46191710e-02 -0.87650157e-02 0.12175484e-01 0.00000000e+00
- 1 22 0 0 -0.18944166e-01 -0.46662570e-01 0.56707430e+00 0.00000000e+00
- 1 22 0 0 0.22127146e+00 -0.27851494e+00 0.40044436e+01 0.00000000e+00
- 1 22 0 0 0.12088173e-01 -0.79502980e-01 0.44494094e+01 0.00000000e+00
- 1 22 0 0 0.15915497e+00 -0.43455275e+00 0.49473763e+02 0.00000000e+00
- 1 22 0 0 -0.19278589e+00 -0.19075328e-01 0.12307451e+03 0.00000000e+00
- 1 22 0 0 0.18913603e-01 -0.27182668e-02 0.46788984e+01 0.00000000e+00
- 1 22 0 0 -0.49934935e-01 -0.55867110e-01 0.14636950e+03 0.00000000e+00
- 1 22 0 0 -0.22007488e+00 0.55387582e-01 0.44093032e+03 0.00000000e+00
- 1 22 0 0 -0.10924668e+01 -0.82187230e+00 0.36921593e+03 0.00000000e+00
- 1 22 0 0 -0.47822017e+00 -0.28459577e+00 0.13454804e+03 0.00000000e+00
- 1 22 0 0 0.12547079e+00 0.80837480e-01 0.38655955e+00 0.00000000e+00
- 1 22 0 0 0.53798452e-01 0.12172410e-01 0.18942909e-01 0.00000000e+00
- 1 22 0 0 0.12541839e-01 -0.12603840e+00 -0.33616756e+00 0.00000000e+00
- 1 22 0 0 -0.41302050e-01 -0.36011274e-01 -0.25550026e-01 0.00000000e+00
- 1 -211 0 0 -0.38600075e+00 -0.75400768e+00 0.24182345e+01 0.13957000e+00
- 1 211 0 0 -0.13040441e+00 -0.15638357e-01 0.45766626e+00 0.13957000e+00
- 1 22 0 0 0.17867021e-01 -0.91407548e-01 -0.12311012e+00 0.00000000e+00
- 1 22 0 0 0.10911842e+00 -0.12928324e+00 -0.29517241e-01 0.00000000e+00
- 1 22 0 0 -0.36352159e+00 -0.18037361e+00 -0.69015950e+00 0.00000000e+00
- 1 22 0 0 -0.30076250e+00 -0.30150626e+00 -0.71787374e+00 0.00000000e+00
- 1 22 0 0 -0.13394232e+00 0.82067709e-01 -0.10380058e+01 0.00000000e+00
- 1 22 0 0 0.25959254e-01 0.14643676e-01 -0.75667876e-01 0.00000000e+00
- 1 22 0 0 0.11997196e+00 -0.18207059e+00 -0.39438217e+01 0.00000000e+00
- 1 22 0 0 -0.18479985e-01 -0.34004787e-01 -0.19160622e+01 0.00000000e+00
- 1 22 0 0 -0.19570077e+00 -0.33128706e-01 -0.19242456e+03 0.00000000e+00
- 1 22 0 0 -0.12521480e+00 -0.12297770e+00 -0.11382182e+03 0.00000000e+00
- 1 22 0 0 -0.55557580e-01 -0.95918490e-01 -0.95966841e+01 0.00000000e+00
- 1 22 0 0 -0.33500504e-01 -0.88607858e-01 -0.24002202e+01 0.00000000e+00
- 1 22 0 0 -0.15323011e-01 -0.70550381e-01 -0.37934625e+01 0.00000000e+00
- 1 22 0 0 0.18927962e+00 -0.18786515e+00 -0.12089307e+02 0.00000000e+00
- 1 22 0 0 -0.16646847e-01 -0.22225358e+00 -0.14946088e+02 0.00000000e+00
- 1 22 0 0 0.95726966e-01 -0.15889320e+00 -0.95204840e+01 0.00000000e+00
- 1 -211 0 0 -0.44435999e+00 0.28303646e+00 0.40036388e+01 0.13957000e+00
- 1 211 0 0 0.40857881e-01 -0.17284838e-01 0.88504110e+00 0.13957000e+00
- 367
- 2 25 2 3 0.10910602e+02 -0.13926814e+02 -0.25811198e+03 0.12484246e+03
- 2 23 4 8 -0.18771363e+02 -0.56295589e+01 -0.16666792e+03 0.87290489e+02
- 2 23 9 11 0.29681965e+02 -0.82972552e+01 -0.91444059e+02 0.17670896e+02
- 1 13 0 0 -0.11504097e+00 0.38737446e+02 -0.52363137e+02 0.10566000e+00
- 1 22 0 0 -0.12699011e-03 0.44129089e-03 -0.10732786e-02 0.00000000e+00
- 1 22 0 0 0.28877018e-02 -0.17882148e-01 -0.63687040e-01 0.00000000e+00
- 1 -13 0 0 -0.15526196e+02 -0.36949325e+02 -0.95176011e+02 0.10566000e+00
- 1 22 0 0 -0.31328870e+01 -0.74002396e+01 -0.19064010e+02 0.00000000e+00
- 1 -13 0 0 0.21578634e+02 -0.75007478e+01 -0.84006220e+02 0.10566000e+00
- 1 13 0 0 0.69024697e+01 -0.72370018e+00 -0.66115837e+01 0.10566000e+00
- 1 22 0 0 0.12008621e+01 -0.72807257e-01 -0.82625541e+00 0.00000000e+00
- 2 2224 38 39 0.75660148e+00 0.24825207e+00 0.11947925e+04 0.11901485e+01
- 2 2 40 40 0.39053717e-01 -0.11868013e+01 -0.19926476e+03 0.33000000e+00
- 2 21 40 40 -0.15932999e+01 -0.82718102e+01 -0.97461860e+03 0.00000000e+00
- 2 21 40 40 -0.12139444e+02 0.21034714e+02 -0.15965201e+04 0.00000000e+00
- 2 21 40 40 0.77468086e+00 -0.66664417e+00 -0.39568314e+01 0.00000000e+00
- 2 21 40 40 -0.65629796e-01 -0.32748649e+00 -0.30830588e+00 0.00000000e+00
- 2 21 40 40 0.13884052e+01 0.45468746e+00 -0.11532663e+01 0.00000000e+00
- 2 21 40 40 0.12761926e+00 -0.32493577e+00 0.25676831e-01 0.00000000e+00
- 2 21 40 40 -0.19153888e+01 -0.15158208e+00 0.25593470e+02 0.00000000e+00
- 2 21 40 40 0.38858165e+00 -0.51324243e+00 0.14781329e+03 0.00000000e+00
- 2 -2 40 40 -0.10143910e+00 0.78814544e+00 0.16208327e+04 0.33000000e+00
- 2 1 75 75 0.19192824e+00 0.14744940e+00 0.18143867e+04 0.33000000e+00
- 2 21 75 75 -0.44257350e+00 -0.18651769e+00 0.23136096e+00 0.00000000e+00
- 2 21 75 75 0.36986130e+00 0.99981461e+00 0.14284809e+01 0.00000000e+00
- 2 21 75 75 0.73519275e+00 0.24284666e-01 0.43721775e-01 0.00000000e+00
- 2 21 75 75 0.38983841e+01 -0.51815520e+01 0.15000943e+04 0.00000000e+00
- 2 21 75 75 0.36136704e+00 -0.10212941e+01 0.47031428e+03 0.00000000e+00
- 2 21 75 75 -0.38983841e+01 0.51815520e+01 0.19262760e+03 0.00000000e+00
- 2 21 75 75 -0.22212274e+01 0.26931930e+01 0.13482770e+02 0.00000000e+00
- 2 21 75 75 -0.36136704e+00 0.10212941e+01 0.10226792e+01 0.00000000e+00
- 2 21 75 75 0.29501816e+01 0.18308582e+01 -0.38755262e+01 0.00000000e+00
- 2 21 75 75 0.65629796e-01 0.32748649e+00 -0.53572762e+01 0.00000000e+00
- 2 21 75 75 -0.77468086e+00 0.66664417e+00 -0.95423465e+02 0.00000000e+00
- 2 21 75 75 -0.29501816e+01 -0.18308582e+01 -0.79002931e+03 0.00000000e+00
- 2 21 75 75 0.22212274e+01 -0.26931930e+01 -0.48858446e+02 0.00000000e+00
- 2 2103 75 75 0.12842998e+01 0.86435617e+00 -0.30052122e+04 0.77133000e+00
- 1 2212 0 0 0.59902730e+00 0.29364907e+00 0.11050719e+04 0.93827000e+00
- 1 211 0 0 0.15757418e+00 -0.45397007e-01 0.89720603e+02 0.13957000e+00
- 2 92 41 74 -0.13096861e+02 0.10835044e+02 -0.98155675e+03 0.44650470e+04
- 2 323 136 137 -0.86183477e+00 -0.52020553e+01 -0.60731670e+03 0.89431260e+00
- 2 -311 138 138 -0.12066896e+00 -0.15797485e+01 -0.31622985e+03 0.49767000e+00
- 2 111 139 141 0.38730439e-01 0.47107418e+00 -0.17895895e+02 0.13498000e+00
- 2 -213 142 143 -0.73165161e+00 -0.65761619e+00 -0.86475342e+02 0.79571830e+00
- 2 213 144 145 -0.62105922e+00 -0.90929787e+00 -0.24071243e+03 0.92693258e+00
- 2 221 146 148 -0.27120072e+00 0.99950113e+00 -0.70307375e+02 0.54745000e+00
- 1 -211 0 0 -0.18627808e+00 -0.13385150e-01 -0.73410864e+01 0.13957000e+00
- 2 223 149 151 -0.37409167e+01 0.66501593e+01 -0.50428461e+03 0.77903438e+00
- 2 323 152 153 -0.14161376e+01 0.29132459e+01 -0.21984395e+03 0.91034912e+00
- 2 221 154 156 -0.37530171e+01 0.57417121e+01 -0.43294925e+03 0.54745000e+00
- 2 -313 157 158 -0.13980106e+01 0.16374859e+01 -0.15092789e+03 0.89623527e+00
- 1 2112 0 0 -0.29861343e+00 0.34480017e+00 -0.56168096e+02 0.93957000e+00
- 1 -2212 0 0 0.71401577e-01 0.10557927e+01 -0.44764392e+02 0.93827000e+00
- 1 211 0 0 0.49766517e-01 0.53033015e-01 -0.55787802e+00 0.13957000e+00
- 2 111 159 160 -0.16705743e+00 -0.78320311e+00 -0.37170587e+01 0.13498000e+00
- 2 111 161 162 0.48664125e+00 0.19878681e-01 -0.84011433e+00 0.13498000e+00
- 2 223 163 165 -0.30998305e+00 0.36283541e+00 -0.98134859e+01 0.76621830e+00
- 2 111 166 167 0.14614244e+00 0.43694784e+00 -0.15984484e+01 0.13498000e+00
- 2 -213 168 169 0.51813943e+00 -0.49631793e+00 -0.23169757e+01 0.76879111e+00
- 2 223 170 172 0.33085174e+00 -0.27674984e+00 -0.22588912e+00 0.74662538e+00
- 2 223 173 175 0.35921739e+00 0.13046633e+00 -0.53623017e+00 0.78394610e+00
- 1 2212 0 0 0.18477666e+00 -0.28437883e+00 0.31276549e-01 0.93827000e+00
- 2 113 176 177 0.80937262e-01 0.86504897e-01 0.86429073e+00 0.82210809e+00
- 2 -2214 178 179 -0.78408514e+00 0.39033807e+00 0.10973408e+02 0.11967567e+01
- 1 211 0 0 -0.22088368e+00 0.55721881e-01 0.44309994e+00 0.13957000e+00
- 1 -211 0 0 0.11571769e+00 -0.65399743e+00 0.10407299e+02 0.13957000e+00
- 1 321 0 0 0.38627740e-01 -0.14294302e-01 0.29353062e+02 0.49360000e+00
- 2 -313 180 181 -0.31223957e+00 0.23232440e+00 0.12802875e+02 0.95561691e+00
- 2 111 182 183 0.13896433e+00 -0.41097495e+00 0.41087256e+01 0.13498000e+00
- 2 313 184 185 -0.64609022e+00 0.21108234e+00 0.17361729e+02 0.94528794e+00
- 1 -321 0 0 0.11037484e+00 0.90374032e-01 0.29805153e+03 0.49360000e+00
- 2 2214 186 187 0.74076790e-01 -0.40562167e+00 0.42657029e+03 0.13654262e+01
- 2 -2114 188 189 0.27196664e+00 0.62806135e+00 0.66698087e+03 0.13086013e+01
- 2 -213 190 191 -0.27346609e+00 0.11345701e-01 0.31531774e+03 0.51827695e+00
- 2 92 76 135 0.14296575e+01 0.28435178e+01 0.44875580e+02 0.79461221e+04
- 2 111 192 193 -0.16345672e+00 -0.30545089e+00 0.72237189e+03 0.13498000e+00
- 2 -213 194 195 0.19985111e+00 0.65138633e+00 0.60554889e+03 0.89937235e+00
- 2 213 196 197 0.46490414e+00 -0.38792251e-01 0.39142188e+03 0.83655807e+00
- 2 113 198 199 -0.30407089e+00 0.15322254e+00 0.31275178e+02 0.76967290e+00
- 2 223 200 201 -0.11456692e+00 -0.66556144e+00 0.33106144e+02 0.77779492e+00
- 1 2112 0 0 -0.40220309e-01 0.47066095e+00 0.15086055e+02 0.93957000e+00
- 1 -2112 0 0 0.12916597e+00 -0.35535664e-01 0.12417936e+02 0.93957000e+00
- 1 -211 0 0 -0.32517392e+00 -0.23502655e+00 0.94615146e+00 0.13957000e+00
- 1 211 0 0 0.21402368e+00 0.90660636e+00 0.34507123e+01 0.13957000e+00
- 2 113 202 203 0.74961879e+00 -0.37209943e+00 0.41662046e+00 0.54827854e+00
- 2 -213 204 205 -0.73765953e+00 0.18929516e+00 0.58973388e+01 0.67946701e+00
- 1 211 0 0 0.33129574e+00 0.28485478e+00 0.20021094e+01 0.13957000e+00
- 2 113 206 207 -0.16634221e+00 0.18172891e+00 0.53706033e+01 0.72494587e+00
- 2 221 208 210 0.60534902e+00 -0.15231808e+00 0.42002331e+01 0.54745000e+00
- 2 221 211 213 0.88560307e-01 -0.92411077e-01 0.83280828e+01 0.54745000e+00
- 2 313 214 215 -0.33154812e+00 -0.84914112e-01 0.16074306e+02 0.85054753e+00
- 2 -323 216 217 0.14183858e+00 0.15955560e+00 0.90316620e+01 0.78476094e+00
- 2 213 218 219 0.95545829e+00 -0.12789824e+01 0.30661965e+03 0.67093182e+00
- 2 -213 220 221 0.95342543e+00 -0.44301534e+00 0.24962967e+03 0.76714273e+00
- 2 323 222 223 0.42736322e-01 -0.10824882e+01 0.20852194e+03 0.85797794e+00
- 1 -321 0 0 0.38081350e+00 -0.67654295e+00 0.20047908e+03 0.49360000e+00
- 2 111 224 225 0.96481109e+00 -0.99788388e+00 0.48500395e+03 0.13498000e+00
- 1 211 0 0 0.49072269e-01 -0.27984613e-01 0.62138423e+01 0.13957000e+00
- 2 -213 226 227 0.55690522e+00 -0.89487827e+00 0.14950123e+03 0.76278294e+00
- 2 113 228 229 0.14860898e+00 0.35686795e+00 0.25730715e+03 0.89819916e+00
- 2 2214 230 231 -0.11196010e+01 0.42901622e+00 0.50195099e+02 0.12099960e+01
- 2 111 232 233 0.17231800e+00 0.23305180e+00 0.35124566e+02 0.13498000e+00
- 2 -2214 234 235 -0.71050509e+00 0.75124580e+00 0.55061946e+02 0.12381723e+01
- 2 111 236 237 -0.68613392e-01 0.88814661e-01 0.12410283e+02 0.13498000e+00
- 2 2224 238 239 -0.10255203e+01 0.13903171e+01 0.64811391e+02 0.11711558e+01
- 2 -213 240 241 -0.64401402e+00 0.67694006e+00 0.14654040e+02 0.63313113e+00
- 1 -2212 0 0 -0.70337699e+00 0.11887937e+01 0.15372344e+02 0.93827000e+00
- 1 2212 0 0 -0.49156157e+00 0.66763384e+00 0.65715326e+01 0.93827000e+00
- 2 -3122 242 243 -0.14315556e+01 0.13466816e+01 0.77066707e+01 0.11156800e+01
- 1 -321 0 0 0.16725905e+00 0.14800586e+00 0.10229619e+00 0.49360000e+00
- 1 211 0 0 -0.12492949e-01 0.99076048e+00 0.17859023e+00 0.13957000e+00
- 2 331 244 246 0.14211667e+01 0.24203430e-01 -0.82131153e+00 0.95787599e+00
- 2 111 247 248 -0.99937643e-01 0.31110908e+00 -0.79020976e-01 0.13498000e+00
- 1 2112 0 0 0.34057546e+00 0.42736708e+00 -0.17427223e+01 0.93957000e+00
- 2 -3122 249 250 0.12086768e+00 0.11343363e+01 -0.85098711e+00 0.11156800e+01
- 2 -323 251 252 0.85479798e+00 0.21051398e-01 -0.71373512e+01 0.90268759e+00
- 1 211 0 0 0.24771584e-01 -0.14376022e+00 -0.39528884e+00 0.13957000e+00
- 2 113 253 254 0.34534539e-01 0.33546561e-01 -0.77556862e+01 0.74733049e+00
- 2 113 255 256 -0.82129195e+00 0.24921354e+00 -0.82059144e+02 0.10981114e+01
- 2 -213 257 258 -0.17072481e+00 -0.12451949e+00 -0.76901517e+02 0.86362749e+00
- 2 331 259 260 -0.13892284e+00 -0.18258070e+00 -0.11508057e+03 0.95725070e+00
- 2 111 261 262 -0.50212530e+00 -0.29481990e+00 -0.80329986e+02 0.13498000e+00
- 1 211 0 0 -0.11318304e+00 -0.31035956e-01 -0.49022954e+01 0.13957000e+00
- 2 -213 263 264 -0.45000957e+00 0.20286747e+00 -0.12556846e+03 0.78612446e+00
- 2 113 265 266 -0.45559271e+00 -0.87827811e+00 -0.17764118e+03 0.70974672e+00
- 1 211 0 0 -0.44150941e+00 0.22692905e+00 -0.13022185e+03 0.13957000e+00
- 2 113 267 268 -0.32824260e+00 -0.61561022e+00 -0.66870200e+02 0.73122176e+00
- 1 -211 0 0 0.56646518e+00 -0.46802858e+00 -0.14709429e+02 0.13957000e+00
- 2 111 269 270 -0.13194960e+00 -0.66806822e-01 -0.17090497e+01 0.13498000e+00
- 1 211 0 0 -0.23744859e-01 0.76969163e-01 -0.24314024e+01 0.13957000e+00
- 2 113 271 272 0.11368593e+01 -0.11580683e+01 -0.43408139e+02 0.10492586e+01
- 1 -211 0 0 -0.13978083e+00 -0.68278962e+00 -0.12182632e+02 0.13957000e+00
- 2 223 273 275 0.73271980e+00 0.10445403e+00 -0.85178516e+02 0.78109000e+00
- 2 2224 276 277 -0.33629175e+00 -0.28282484e+00 -0.12401187e+03 0.12611317e+01
- 2 -213 278 279 0.14244702e+01 0.10790391e+01 -0.27855469e+04 0.68251625e+00
- 2 311 280 280 -0.16111544e+00 -0.23967441e+01 -0.28140265e+03 0.49767000e+00
- 1 211 0 0 -0.70071933e+00 -0.28053113e+01 -0.32591405e+03 0.13957000e+00
- 2 310 281 282 -0.12066896e+00 -0.15797485e+01 -0.31622985e+03 0.49767000e+00
- 1 22 0 0 -0.33379533e-01 0.30187714e+00 -0.10027751e+02 0.00000000e+00
- 1 11 0 0 0.18421678e-01 0.48151415e-01 -0.22710065e+01 0.51000000e-03
- 1 -11 0 0 0.53688294e-01 0.12104562e+00 -0.55971369e+01 0.51000000e-03
- 1 -211 0 0 -0.46987970e+00 -0.50804937e+00 -0.77443464e+02 0.13957000e+00
- 2 111 283 284 -0.26177191e+00 -0.14956682e+00 -0.90318783e+01 0.13498000e+00
- 1 211 0 0 -0.81966625e+00 -0.64954335e+00 -0.15623504e+03 0.13957000e+00
- 2 111 285 286 0.19860703e+00 -0.25975452e+00 -0.84477382e+02 0.13498000e+00
- 1 -211 0 0 -0.13616571e+00 0.41785994e+00 -0.26474912e+02 0.13957000e+00
- 1 211 0 0 0.90850227e-02 0.42833091e+00 -0.31370132e+02 0.13957000e+00
- 2 111 287 288 -0.14412004e+00 0.15331028e+00 -0.12462331e+02 0.13498000e+00
- 1 211 0 0 -0.12391658e+01 0.19623718e+01 -0.14196292e+03 0.13957000e+00
- 1 -211 0 0 -0.83705726e+00 0.15484364e+01 -0.13284240e+03 0.13957000e+00
- 2 111 289 290 -0.16646937e+01 0.31393511e+01 -0.22947928e+03 0.13498000e+00
- 1 321 0 0 -0.57690196e+00 0.17926664e+01 -0.13643056e+03 0.49360000e+00
- 2 111 291 292 -0.83923564e+00 0.11205795e+01 -0.83413390e+02 0.13498000e+00
- 1 -211 0 0 -0.11681437e+01 0.19368180e+01 -0.15095056e+03 0.13957000e+00
- 1 211 0 0 -0.13356248e+01 0.18673521e+01 -0.13919606e+03 0.13957000e+00
- 2 111 293 294 -0.12492487e+01 0.19375420e+01 -0.14280263e+03 0.13498000e+00
- 1 -321 0 0 -0.55267792e+00 0.45401945e+00 -0.53237142e+02 0.49360000e+00
- 1 211 0 0 -0.84533266e+00 0.11834665e+01 -0.97690750e+02 0.13957000e+00
- 1 22 0 0 -0.45100586e-01 -0.67732486e-01 -0.26511058e+00 0.00000000e+00
- 1 22 0 0 -0.12195684e+00 -0.71547062e+00 -0.34519481e+01 0.00000000e+00
- 1 22 0 0 0.33037265e+00 0.51981022e-01 -0.65942241e+00 0.00000000e+00
- 1 22 0 0 0.15626860e+00 -0.32102341e-01 -0.18069192e+00 0.00000000e+00
- 1 -211 0 0 -0.89927726e-01 0.16624518e+00 -0.10809009e+01 0.13957000e+00
- 1 211 0 0 -0.11764552e+00 -0.78846643e-01 -0.25530312e+01 0.13957000e+00
- 2 111 295 296 -0.10240981e+00 0.27543687e+00 -0.61795538e+01 0.13498000e+00
- 1 22 0 0 0.39572618e-01 0.21078952e+00 -0.53141663e+00 0.00000000e+00
- 1 22 0 0 0.10656982e+00 0.22615832e+00 -0.10670318e+01 0.00000000e+00
- 1 -211 0 0 -0.97544349e-01 0.81266607e-01 -0.30897739e+00 0.13957000e+00
- 2 111 297 298 0.61568378e+00 -0.57758454e+00 -0.20079983e+01 0.13498000e+00
- 1 211 0 0 0.42771258e-01 -0.61596686e-01 0.69145820e-01 0.13957000e+00
- 1 -211 0 0 0.26521835e+00 -0.30415822e+00 -0.58391774e-01 0.13957000e+00
- 2 111 299 300 0.22862133e-01 0.89005067e-01 -0.23664316e+00 0.13498000e+00
- 1 211 0 0 0.49688172e-01 -0.11660526e+00 0.40980766e-01 0.13957000e+00
- 1 -211 0 0 0.19507947e+00 0.10519478e+00 -0.63792328e-01 0.13957000e+00
- 2 111 301 302 0.11444975e+00 0.14187681e+00 -0.51341860e+00 0.13498000e+00
- 1 211 0 0 0.30338052e+00 0.18857207e+00 0.11838762e+00 0.13957000e+00
- 1 -211 0 0 -0.22244326e+00 -0.10206718e+00 0.74590311e+00 0.13957000e+00
- 1 -2212 0 0 -0.42368741e+00 0.37406983e+00 0.83912988e+01 0.93827000e+00
- 2 111 303 304 -0.36039773e+00 0.16268235e-01 0.25821087e+01 0.13498000e+00
- 1 -321 0 0 -0.13328470e+00 0.42164897e+00 0.62913342e+01 0.49360000e+00
- 1 211 0 0 -0.17895487e+00 -0.18932457e+00 0.65115408e+01 0.13957000e+00
- 1 22 0 0 0.91380539e-01 -0.20311045e+00 0.15135971e+01 0.00000000e+00
- 1 22 0 0 0.47583790e-01 -0.20786450e+00 0.25951285e+01 0.00000000e+00
- 1 321 0 0 -0.40472178e+00 -0.13667624e+00 0.12974378e+02 0.49360000e+00
- 1 -211 0 0 -0.24136844e+00 0.34775858e+00 0.43873506e+01 0.13957000e+00
- 1 2212 0 0 -0.14818636e+00 -0.53218743e+00 0.28323438e+03 0.93827000e+00
- 2 111 305 306 0.22226315e+00 0.12656576e+00 0.14333591e+03 0.13498000e+00
- 1 -2112 0 0 0.35434832e+00 0.70548336e+00 0.63202491e+03 0.93957000e+00
- 2 111 307 308 -0.82381674e-01 -0.77422003e-01 0.34955963e+02 0.13498000e+00
- 1 -211 0 0 -0.10846171e+00 -0.18226445e+00 0.89199832e+02 0.13957000e+00
- 2 111 309 310 -0.16500438e+00 0.19361015e+00 0.22611791e+03 0.13498000e+00
- 1 22 0 0 -0.13888458e+00 -0.29672344e+00 0.57470880e+03 0.00000000e+00
- 1 22 0 0 -0.24572145e-01 -0.87274477e-02 0.14766309e+03 0.00000000e+00
- 1 -211 0 0 0.27495283e+00 0.46308632e-01 0.39549801e+03 0.13957000e+00
- 2 111 311 312 -0.75101724e-01 0.60507770e+00 0.21005088e+03 0.13498000e+00
- 1 211 0 0 -0.18827861e-01 -0.21779593e+00 0.25475174e+03 0.13957000e+00
- 2 111 313 314 0.48373200e+00 0.17900368e+00 0.13667014e+03 0.13498000e+00
- 1 211 0 0 -0.44897993e+00 -0.12166806e+00 0.21208984e+02 0.13957000e+00
- 1 -211 0 0 0.14490904e+00 0.27489060e+00 0.10066193e+02 0.13957000e+00
- 1 22 0 0 0.11629827e+00 -0.62256891e+00 0.29092005e+02 0.00000000e+00
- 2 111 315 316 -0.23086519e+00 -0.42992531e-01 0.40141387e+01 0.13498000e+00
- 1 -211 0 0 0.22500606e-01 0.34853558e-02 -0.24703021e-01 0.13957000e+00
- 1 211 0 0 0.72711819e+00 -0.37558478e+00 0.44132348e+00 0.13957000e+00
- 1 -211 0 0 -0.11406852e+00 0.26873158e+00 0.29876583e+01 0.13957000e+00
- 2 111 317 318 -0.62359101e+00 -0.79436418e-01 0.29096805e+01 0.13498000e+00
- 1 211 0 0 -0.91272953e-01 -0.69786425e-01 0.33608549e+00 0.13957000e+00
- 1 -211 0 0 -0.75069256e-01 0.25151534e+00 0.50345178e+01 0.13957000e+00
- 2 111 319 320 0.39680776e+00 -0.15105787e+00 0.25806460e+01 0.13498000e+00
- 2 111 321 322 0.17460731e+00 0.25930574e-01 0.11815739e+01 0.13498000e+00
- 2 111 323 324 0.33933948e-01 -0.27190784e-01 0.43801314e+00 0.13498000e+00
- 1 -211 0 0 0.96503322e-01 -0.12371779e+00 0.25082209e+01 0.13957000e+00
- 1 211 0 0 0.51207909e-01 -0.68735272e-01 0.31377794e+01 0.13957000e+00
- 2 111 325 326 -0.59150924e-01 0.10004199e+00 0.26820825e+01 0.13498000e+00
- 2 311 327 327 0.39547505e-01 -0.56879131e-01 0.73555068e+01 0.49767000e+00
- 2 111 328 329 -0.37109563e+00 -0.28034981e-01 0.87187991e+01 0.13498000e+00
- 2 -311 330 330 0.14313519e+00 0.10577239e+00 0.40555586e+01 0.49767000e+00
- 1 -211 0 0 -0.12966105e-02 0.53783217e-01 0.49761034e+01 0.13957000e+00
- 1 211 0 0 0.35792725e+00 -0.85854233e+00 0.13464885e+03 0.13957000e+00
- 2 111 331 332 0.59753104e+00 -0.42044007e+00 0.17197080e+03 0.13498000e+00
- 1 -211 0 0 0.79330482e+00 -0.88196160e-02 0.17310285e+03 0.13957000e+00
- 2 111 333 334 0.16012061e+00 -0.43419572e+00 0.76526820e+02 0.13498000e+00
- 2 311 335 335 -0.91340746e-01 -0.32924314e+00 0.94048465e+02 0.49767000e+00
- 1 211 0 0 0.13407707e+00 -0.75324511e+00 0.11447347e+03 0.13957000e+00
- 1 22 0 0 0.54095911e+00 -0.65404710e+00 0.29670888e+03 0.00000000e+00
- 1 22 0 0 0.42385198e+00 -0.34383679e+00 0.18829507e+03 0.00000000e+00
- 1 -211 0 0 0.46668559e+00 -0.37996353e+00 0.44677388e+02 0.13957000e+00
- 2 111 336 337 0.90219629e-01 -0.51491474e+00 0.10482384e+03 0.13498000e+00
- 1 211 0 0 -0.85625405e-02 -0.15683389e+00 0.16810314e+03 0.13957000e+00
- 1 -211 0 0 0.15717152e+00 0.51370184e+00 0.89204012e+02 0.13957000e+00
- 1 2112 0 0 -0.79826895e+00 0.49301069e+00 0.42360574e+02 0.93957000e+00
- 1 211 0 0 -0.32133204e+00 -0.63994472e-01 0.78345245e+01 0.13957000e+00
- 1 22 0 0 0.12156632e+00 0.91357977e-01 0.23318369e+02 0.00000000e+00
- 1 22 0 0 0.50751687e-01 0.14169382e+00 0.11806197e+02 0.00000000e+00
- 1 -2212 0 0 -0.38036862e+00 0.43350364e+00 0.32751671e+02 0.93827000e+00
- 2 111 338 339 -0.33013647e+00 0.31774217e+00 0.22310275e+02 0.13498000e+00
- 1 22 0 0 -0.53060927e-01 0.12519261e+00 0.96600643e+01 0.00000000e+00
- 1 22 0 0 -0.15552465e-01 -0.36377949e-01 0.27502183e+01 0.00000000e+00
- 1 2212 0 0 -0.10100973e+01 0.11218558e+01 0.57072882e+02 0.93827000e+00
- 1 211 0 0 -0.15423058e-01 0.26846127e+00 0.77385086e+01 0.13957000e+00
- 1 -211 0 0 -0.13942829e+00 0.35649493e+00 0.30316613e+01 0.13957000e+00
- 2 111 340 341 -0.50458573e+00 0.32044514e+00 0.11622379e+02 0.13498000e+00
- 1 -2212 0 0 -0.12101479e+01 0.12351254e+01 0.64842860e+01 0.93827000e+00
- 1 211 0 0 -0.22140772e+00 0.11155617e+00 0.12223846e+01 0.13957000e+00
- 1 211 0 0 0.37274250e+00 0.58955330e-01 -0.60176445e-01 0.13957000e+00
- 1 -211 0 0 0.20116280e+00 0.94136839e-01 -0.99433896e-01 0.13957000e+00
- 2 221 342 344 0.84726139e+00 -0.12888874e+00 -0.66170119e+00 0.54745000e+00
- 1 22 0 0 0.18468612e-01 0.83389839e-01 0.19050214e-01 0.00000000e+00
- 1 22 0 0 -0.11840626e+00 0.22771924e+00 -0.98071190e-01 0.00000000e+00
- 1 -2212 0 0 0.39492838e-01 0.10647771e+01 -0.75830458e+00 0.93827000e+00
- 1 211 0 0 0.81374845e-01 0.69559220e-01 -0.92682535e-01 0.13957000e+00
- 2 -311 345 345 0.32864523e+00 0.99718228e-01 -0.23720691e+01 0.49767000e+00
- 1 -211 0 0 0.52615275e+00 -0.78666830e-01 -0.47652821e+01 0.13957000e+00
- 1 211 0 0 -0.31261543e+00 -0.32970401e-01 -0.46926409e+01 0.13957000e+00
- 1 -211 0 0 0.34714997e+00 0.66516962e-01 -0.30630453e+01 0.13957000e+00
- 1 -211 0 0 -0.69258335e+00 -0.24802785e+00 -0.30919624e+02 0.13957000e+00
- 1 211 0 0 -0.12870861e+00 0.49724139e+00 -0.51139520e+02 0.13957000e+00
- 1 -211 0 0 -0.65939833e-01 0.26108155e+00 -0.56329122e+02 0.13957000e+00
- 2 111 346 347 -0.10478498e+00 -0.38560104e+00 -0.20572394e+02 0.13498000e+00
- 1 22 0 0 -0.30225871e-01 0.11729722e-01 -0.22603115e+01 0.00000000e+00
- 2 113 348 349 -0.10869696e+00 -0.19431043e+00 -0.11282026e+03 0.92081136e+00
- 1 22 0 0 -0.46652182e+00 -0.28397436e+00 -0.78130381e+02 0.00000000e+00
- 1 22 0 0 -0.35603477e-01 -0.10845541e-01 -0.21996055e+01 0.00000000e+00
- 1 -211 0 0 -0.16420793e+00 0.46760239e+00 -0.72730189e+02 0.13957000e+00
- 2 111 350 351 -0.28580164e+00 -0.26473492e+00 -0.52838266e+02 0.13498000e+00
- 1 211 0 0 -0.58553459e+00 -0.64402500e+00 -0.14825550e+03 0.13957000e+00
- 1 -211 0 0 0.12994188e+00 -0.23425312e+00 -0.29385679e+02 0.13957000e+00
- 1 211 0 0 -0.73985432e-01 -0.55326099e+00 -0.57637110e+02 0.13957000e+00
- 1 -211 0 0 -0.25425717e+00 -0.62349230e-01 -0.92330899e+01 0.13957000e+00
- 1 22 0 0 0.79803449e-02 0.26695046e-01 -0.39053986e+00 0.00000000e+00
- 1 22 0 0 -0.13992995e+00 -0.93501869e-01 -0.13185098e+01 0.00000000e+00
- 1 -211 0 0 0.66941074e+00 -0.71711231e+00 -0.36064936e+02 0.13957000e+00
- 1 211 0 0 0.46744861e+00 -0.44095602e+00 -0.73432027e+01 0.13957000e+00
- 1 -211 0 0 0.31624838e+00 -0.14357574e+00 -0.34969060e+02 0.13957000e+00
- 1 211 0 0 0.20125043e-01 0.12645328e+00 -0.27222715e+02 0.13957000e+00
- 2 111 352 353 0.39634637e+00 0.12157649e+00 -0.22986741e+02 0.13498000e+00
- 1 2212 0 0 -0.42332781e+00 -0.42666861e+00 -0.10643940e+03 0.93827000e+00
- 1 211 0 0 0.87036065e-01 0.14384377e+00 -0.17572473e+02 0.13957000e+00
- 1 -211 0 0 0.29164508e+00 0.20278530e+00 -0.30348935e+03 0.13957000e+00
- 2 111 354 355 0.11328251e+01 0.87625380e+00 -0.24820575e+04 0.13498000e+00
- 2 310 356 357 -0.16111544e+00 -0.23967441e+01 -0.28140265e+03 0.49767000e+00
- 1 211 0 0 0.16121302e-01 -0.42341965e+00 -0.58967023e+02 0.13957000e+00
- 1 -211 0 0 -0.13679026e+00 -0.11563288e+01 -0.25726282e+03 0.13957000e+00
- 1 22 0 0 -0.18408469e+00 -0.58620717e-01 -0.68842907e+01 0.00000000e+00
- 1 22 0 0 -0.77687224e-01 -0.90946107e-01 -0.21475877e+01 0.00000000e+00
- 1 22 0 0 0.19248357e-02 -0.62159509e-02 -0.14833109e+02 0.00000000e+00
- 1 22 0 0 0.19668219e+00 -0.25353857e+00 -0.69644273e+02 0.00000000e+00
- 1 22 0 0 -0.43077393e-01 -0.56680617e-02 -0.98077153e+00 0.00000000e+00
- 1 22 0 0 -0.10104264e+00 0.15897834e+00 -0.11481559e+02 0.00000000e+00
- 1 22 0 0 -0.71270976e+00 0.14503469e+01 -0.10141325e+03 0.00000000e+00
- 1 22 0 0 -0.95198390e+00 0.16890042e+01 -0.12806604e+03 0.00000000e+00
- 1 22 0 0 -0.58723870e+00 0.72078448e+00 -0.52178948e+02 0.00000000e+00
- 1 22 0 0 -0.25199694e+00 0.39979506e+00 -0.31234441e+02 0.00000000e+00
- 1 22 0 0 -0.25749603e+00 0.50548524e+00 -0.35585040e+02 0.00000000e+00
- 1 22 0 0 -0.99175266e+00 0.14320567e+01 -0.10721759e+03 0.00000000e+00
- 1 22 0 0 -0.12405544e-01 0.49785135e-03 -0.11967321e+01 0.00000000e+00
- 1 22 0 0 -0.90004265e-01 0.27493902e+00 -0.49828217e+01 0.00000000e+00
- 1 22 0 0 0.47919919e+00 -0.51113004e+00 -0.17104076e+01 0.00000000e+00
- 1 22 0 0 0.13648459e+00 -0.66454500e-01 -0.29759069e+00 0.00000000e+00
- 1 22 0 0 -0.47446332e-01 0.79166263e-01 -0.13457714e+00 0.00000000e+00
- 1 22 0 0 0.70308465e-01 0.98388047e-02 -0.10206603e+00 0.00000000e+00
- 1 22 0 0 0.25418883e-02 0.10297320e+00 -0.17922195e+00 0.00000000e+00
- 1 22 0 0 0.11190786e+00 0.38903610e-01 -0.33419666e+00 0.00000000e+00
- 1 22 0 0 -0.11138924e+00 0.21951093e-01 0.12756215e+01 0.00000000e+00
- 1 22 0 0 -0.24900849e+00 -0.56828574e-02 0.13064872e+01 0.00000000e+00
- 1 22 0 0 0.18204139e+00 0.32686691e-01 0.83743137e+02 0.00000000e+00
- 1 22 0 0 0.40221767e-01 0.93879067e-01 0.59592776e+02 0.00000000e+00
- 1 22 0 0 -0.49863481e-01 -0.41922973e-01 0.52467687e+01 0.00000000e+00
- 1 22 0 0 -0.32518193e-01 -0.35499031e-01 0.29709195e+02 0.00000000e+00
- 1 22 0 0 -0.15697995e+00 0.13807990e+00 0.13099577e+03 0.00000000e+00
- 1 22 0 0 -0.80244227e-02 0.55530256e-01 0.95122139e+02 0.00000000e+00
- 1 22 0 0 -0.21451873e-01 0.11938766e+00 0.26463413e+02 0.00000000e+00
- 1 22 0 0 -0.53649851e-01 0.48569004e+00 0.18358747e+03 0.00000000e+00
- 1 22 0 0 0.13760520e+00 0.11835106e+00 0.44552579e+02 0.00000000e+00
- 1 22 0 0 0.34612680e+00 0.60652621e-01 0.92117561e+02 0.00000000e+00
- 1 22 0 0 -0.10244435e+00 -0.87279550e-01 0.21119966e+01 0.00000000e+00
- 1 22 0 0 -0.12842083e+00 0.44287019e-01 0.19021421e+01 0.00000000e+00
- 1 22 0 0 -0.22187332e+00 -0.94029332e-01 0.10900132e+01 0.00000000e+00
- 1 22 0 0 -0.40171769e+00 0.14592914e-01 0.18196673e+01 0.00000000e+00
- 1 22 0 0 0.13916660e+00 -0.11385635e-02 0.60401166e+00 0.00000000e+00
- 1 22 0 0 0.25764116e+00 -0.14991931e+00 0.19766343e+01 0.00000000e+00
- 1 22 0 0 0.16590901e+00 0.64996508e-01 0.10404925e+01 0.00000000e+00
- 1 22 0 0 0.86982961e-02 -0.39065934e-01 0.14108146e+00 0.00000000e+00
- 1 22 0 0 0.44389457e-01 0.15374137e-01 0.39888914e+00 0.00000000e+00
- 1 22 0 0 -0.10455509e-01 -0.42564921e-01 0.39123995e-01 0.00000000e+00
- 1 22 0 0 -0.22298508e-01 -0.33031487e-01 0.65330619e+00 0.00000000e+00
- 1 22 0 0 -0.36852415e-01 0.13307347e+00 0.20287763e+01 0.00000000e+00
- 2 310 358 359 0.39547505e-01 -0.56879131e-01 0.73555068e+01 0.49767000e+00
- 1 22 0 0 -0.30779600e+00 -0.71336956e-01 0.65296342e+01 0.00000000e+00
- 1 22 0 0 -0.63299623e-01 0.43301975e-01 0.21891649e+01 0.00000000e+00
- 2 310 360 361 0.14313519e+00 0.10577239e+00 0.40555586e+01 0.49767000e+00
- 1 22 0 0 0.36455431e+00 -0.32347256e+00 0.10542806e+03 0.00000000e+00
- 1 22 0 0 0.23297673e+00 -0.96967511e-01 0.66542739e+02 0.00000000e+00
- 1 22 0 0 0.57584810e-01 -0.29987523e-01 0.97249656e+01 0.00000000e+00
- 1 22 0 0 0.10253580e+00 -0.40420820e+00 0.66801855e+02 0.00000000e+00
- 2 310 362 363 -0.91340746e-01 -0.32924314e+00 0.94048465e+02 0.49767000e+00
- 1 22 0 0 -0.42626652e-02 -0.51501274e-01 0.20417554e+02 0.00000000e+00
- 1 22 0 0 0.94482294e-01 -0.46341346e+00 0.84406290e+02 0.00000000e+00
- 1 22 0 0 -0.25522088e+00 0.28159378e+00 0.20011717e+02 0.00000000e+00
- 1 22 0 0 -0.74915590e-01 0.36148383e-01 0.22985580e+01 0.00000000e+00
- 1 22 0 0 -0.14282563e+00 0.64596048e-01 0.21012396e+01 0.00000000e+00
- 1 22 0 0 -0.36176010e+00 0.25584909e+00 0.95211394e+01 0.00000000e+00
- 1 211 0 0 0.39964491e+00 -0.44974791e-01 -0.29781965e+00 0.13957000e+00
- 1 -211 0 0 0.28194093e+00 0.57204308e-02 -0.75136367e-01 0.13957000e+00
- 2 111 364 365 0.16567555e+00 -0.89634379e-01 -0.28874517e+00 0.13498000e+00
- 2 310 366 367 0.32864523e+00 0.99718228e-01 -0.23720691e+01 0.49767000e+00
- 1 22 0 0 -0.53655538e-01 -0.33139288e+00 -0.18358797e+02 0.00000000e+00
- 1 22 0 0 -0.51129437e-01 -0.54208158e-01 -0.22135976e+01 0.00000000e+00
- 1 -211 0 0 -0.40269234e+00 -0.73226837e-01 -0.92499158e+02 0.13957000e+00
- 1 211 0 0 0.29399537e+00 -0.12108359e+00 -0.20321101e+02 0.13957000e+00
- 1 22 0 0 -0.14606689e+00 -0.22245005e+00 -0.33361255e+02 0.00000000e+00
- 1 22 0 0 -0.13973476e+00 -0.42284867e-01 -0.19477011e+02 0.00000000e+00
- 1 22 0 0 0.37158084e+00 0.85160523e-01 -0.21770448e+02 0.00000000e+00
- 1 22 0 0 0.24765534e-01 0.36415970e-01 -0.12162927e+01 0.00000000e+00
- 1 22 0 0 0.97950677e+00 0.70032192e+00 -0.21127637e+04 0.00000000e+00
- 1 22 0 0 0.15331831e+00 0.17593188e+00 -0.36929384e+03 0.00000000e+00
- 1 -211 0 0 -0.28420896e+00 -0.14581857e+01 -0.16335204e+03 0.13957000e+00
- 1 211 0 0 0.12309352e+00 -0.93855841e+00 -0.11805060e+03 0.13957000e+00
- 1 211 0 0 -0.14846797e+00 0.89487435e-01 0.28400487e+01 0.13957000e+00
- 1 -211 0 0 0.18801548e+00 -0.14636657e+00 0.45154581e+01 0.13957000e+00
- 1 211 0 0 -0.12087075e+00 0.13031494e+00 0.19590367e+01 0.13957000e+00
- 1 -211 0 0 0.26400594e+00 -0.24542558e-01 0.20965219e+01 0.13957000e+00
- 1 211 0 0 0.12558488e+00 -0.28329647e+00 0.56669372e+02 0.13957000e+00
- 1 -211 0 0 -0.21692562e+00 -0.45946665e-01 0.37379093e+02 0.13957000e+00
- 1 22 0 0 0.43916326e-01 -0.67807304e-01 -0.20637111e+00 0.00000000e+00
- 1 22 0 0 0.12175922e+00 -0.21827075e-01 -0.82374055e-01 0.00000000e+00
- 1 -211 0 0 0.39168570e+00 0.32498657e-02 -0.14594832e+01 0.13957000e+00
- 1 211 0 0 -0.63040479e-01 0.96468362e-01 -0.91258588e+00 0.13957000e+00
- 1000
- 2 25 2 3 -0.15518252e+02 -0.86928297e+02 -0.68885261e+03 0.12499941e+03
- 2 23 4 7 0.81474360e+01 -0.38530136e+02 -0.22179998e+03 0.25577575e+02
- 2 23 8 10 -0.23665688e+02 -0.48398162e+02 -0.46705263e+03 0.91298487e+02
- 1 11 0 0 -0.34472483e+01 -0.90718831e+01 -0.84030587e+02 0.51000000e-03
- 1 22 0 0 -0.17806015e+01 -0.44191020e+01 -0.41104425e+02 0.00000000e+00
- 1 -11 0 0 0.13180041e+02 -0.24704007e+02 -0.95485544e+02 0.51000000e-03
- 1 22 0 0 0.19524446e+00 -0.33514373e+00 -0.11794228e+01 0.00000000e+00
- 1 13 0 0 -0.42455334e+01 0.87037964e+01 -0.31788227e+03 0.10566000e+00
- 1 -13 0 0 -0.19413621e+02 -0.57081991e+02 -0.14911786e+03 0.10566000e+00
- 1 22 0 0 -0.65335639e-02 -0.19966958e-01 -0.52504499e-01 0.00000000e+00
- 1 2112 0 0 0.62164585e+00 -0.19537511e+00 0.17105647e+04 0.93957000e+00
- 2 -2 138 138 -0.16435843e+02 0.92599362e+02 0.15903938e+03 0.33000000e+00
- 2 21 138 138 -0.11320582e+01 0.27475670e+01 0.48404333e+01 0.00000000e+00
- 2 21 138 138 0.10627439e+01 0.40868606e+01 0.53405315e+01 0.00000000e+00
- 2 21 138 138 0.89720526e+00 0.70810629e+00 0.24317592e+00 0.00000000e+00
- 2 21 138 138 -0.98742362e+00 0.17764216e-01 -0.37428851e+00 0.00000000e+00
- 2 21 138 138 0.46646244e+00 0.26033869e+01 0.10259665e+02 0.00000000e+00
- 2 21 138 138 0.57500527e+01 0.97999069e+01 0.64252180e+02 0.00000000e+00
- 2 21 138 138 0.36127572e+01 0.38752857e+01 0.27691481e+02 0.00000000e+00
- 2 21 138 138 0.38847946e+01 0.24628690e+01 0.64874973e+02 0.00000000e+00
- 2 21 138 138 0.16596165e+01 0.40608487e+00 0.19082670e+02 0.00000000e+00
- 2 21 138 138 0.90327099e+00 -0.77744087e+00 0.74773378e+01 0.00000000e+00
- 2 21 138 138 0.51760046e+00 -0.49433088e+00 0.22335262e+01 0.00000000e+00
- 2 21 138 138 0.30626839e+01 0.33750386e+00 0.66456504e+01 0.00000000e+00
- 2 21 138 138 0.47614292e+01 0.17261842e+01 0.11120526e+02 0.00000000e+00
- 2 21 138 138 0.25850541e+01 -0.43692092e-01 0.28022103e+01 0.00000000e+00
- 2 21 138 138 0.99950967e+00 0.34133801e+00 0.86430463e+00 0.00000000e+00
- 2 21 138 138 0.12290110e+01 -0.44194549e+00 0.64502941e+00 0.00000000e+00
- 2 21 138 138 0.65498327e+00 0.12999205e+01 0.12632336e+01 0.00000000e+00
- 2 21 138 138 0.28684841e+01 0.59859901e+01 0.22597730e+01 0.00000000e+00
- 2 21 138 138 -0.60937518e+00 0.23744225e+01 -0.17380010e+01 0.00000000e+00
- 2 21 138 138 0.38391167e-01 0.10218284e+01 -0.85694934e+00 0.00000000e+00
- 2 21 138 138 -0.27154355e+00 0.14607804e+01 -0.17903335e+01 0.00000000e+00
- 2 21 138 138 -0.38847946e+01 -0.24628690e+01 -0.18893241e+01 0.00000000e+00
- 2 21 138 138 -0.57500527e+01 -0.97999069e+01 -0.33179167e+01 0.00000000e+00
- 2 21 138 138 -0.46646244e+00 -0.26033869e+01 -0.41222391e+00 0.00000000e+00
- 2 21 138 138 -0.13078309e+01 -0.27988967e+01 0.12392639e+01 0.00000000e+00
- 2 21 138 138 -0.78414102e+00 -0.17130475e+01 0.26259465e+01 0.00000000e+00
- 2 21 138 138 0.20133810e+01 -0.32136160e+01 0.42566709e+01 0.00000000e+00
- 2 21 138 138 -0.58741362e+00 0.22953030e+01 0.24098142e+02 0.00000000e+00
- 2 21 138 138 -0.48668507e+01 0.14404054e+01 0.43697466e+02 0.00000000e+00
- 2 21 138 138 -0.25850541e+01 0.43692092e-01 0.32492409e+02 0.00000000e+00
- 2 21 138 138 -0.16596165e+01 -0.40608487e+00 0.51422765e+02 0.00000000e+00
- 2 21 138 138 -0.36127572e+01 -0.38752857e+01 0.10916603e+03 0.00000000e+00
- 2 21 138 138 -0.23799018e+00 0.16874416e+01 0.55398526e+02 0.00000000e+00
- 2 21 138 138 0.53976639e+00 0.27120998e-01 0.83991223e+02 0.00000000e+00
- 2 21 138 138 0.49752812e+00 0.47532674e-01 0.77707409e+02 0.00000000e+00
- 2 21 138 138 0.27456377e+01 -0.45037068e+00 0.16449524e+03 0.00000000e+00
- 2 21 138 138 0.67975320e+00 -0.72093351e+00 0.54750309e+02 0.00000000e+00
- 2 21 138 138 -0.24366421e-01 -0.71375273e+00 0.24223498e+02 0.00000000e+00
- 2 21 138 138 0.23799018e+00 -0.16874416e+01 0.95041331e+02 0.00000000e+00
- 2 21 138 138 0.58741362e+00 -0.22953030e+01 0.35229594e+03 0.00000000e+00
- 2 21 138 138 -0.65498327e+00 -0.12999205e+01 0.35425902e+03 0.00000000e+00
- 2 21 138 138 -0.49752812e+00 -0.47532674e-01 0.99316711e+02 0.00000000e+00
- 2 21 138 138 -0.27456377e+01 0.45037068e+00 0.10419712e+04 0.00000000e+00
- 2 21 138 138 -0.67975320e+00 0.72093351e+00 0.18027199e+03 0.00000000e+00
- 2 21 138 138 -0.22516563e+00 -0.18332339e+00 0.63390409e+00 0.00000000e+00
- 2 21 138 138 0.73617736e+00 -0.71912648e+00 0.18384865e+02 0.00000000e+00
- 2 21 138 138 -0.26853246e+00 0.23590191e+00 0.15604066e+02 0.00000000e+00
- 2 21 138 138 0.15256360e+01 -0.13350761e+00 0.73194566e+02 0.00000000e+00
- 2 21 138 138 -0.32459549e+00 -0.98376810e-01 0.25204945e+01 0.00000000e+00
- 2 2 138 138 0.20500440e+00 -0.12364823e+00 0.13677568e+04 0.33000000e+00
- 2 2 231 231 0.42720336e+01 -0.38987780e+01 -0.29350317e+03 0.33000000e+00
- 2 21 231 231 0.12730529e+02 -0.70973459e+01 -0.68782244e+03 0.00000000e+00
- 2 21 231 231 0.10554610e+01 -0.11341318e+01 -0.33889333e+02 0.00000000e+00
- 2 21 231 231 0.36828816e+00 -0.49758319e-01 -0.51084682e+01 0.00000000e+00
- 2 21 231 231 0.63064778e+01 -0.18164755e+01 -0.30040880e+02 0.00000000e+00
- 2 21 231 231 0.22084818e+01 -0.18754923e+00 -0.15622691e+02 0.00000000e+00
- 2 21 231 231 0.41913139e+01 -0.10133111e+00 -0.12973342e+02 0.00000000e+00
- 2 21 231 231 0.66785782e+00 0.22684275e-01 -0.48116418e+01 0.00000000e+00
- 2 21 231 231 0.12820243e+01 -0.40548230e+00 -0.70249480e+01 0.00000000e+00
- 2 21 231 231 0.30816874e+01 0.29015918e+01 -0.19485736e+02 0.00000000e+00
- 2 21 231 231 0.32499546e+01 0.46930143e+01 -0.34805284e+02 0.00000000e+00
- 2 21 231 231 0.20945213e+01 0.69714223e+01 -0.60903374e+02 0.00000000e+00
- 2 21 231 231 -0.29450103e+01 0.55162029e+01 -0.28508742e+02 0.00000000e+00
- 2 21 231 231 -0.17759391e+01 0.14191931e+01 -0.22712570e+02 0.00000000e+00
- 2 21 231 231 -0.18309923e+01 0.77110607e+00 -0.26544058e+02 0.00000000e+00
- 2 21 231 231 -0.46351017e+01 -0.33857303e+01 -0.23990859e+02 0.00000000e+00
- 2 21 231 231 -0.30816874e+01 -0.29015918e+01 -0.88427551e+02 0.00000000e+00
- 2 21 231 231 -0.28684841e+01 -0.59859901e+01 -0.17893825e+03 0.00000000e+00
- 2 21 231 231 -0.20945213e+01 -0.69714223e+01 -0.21429233e+03 0.00000000e+00
- 2 21 231 231 -0.38391167e-01 -0.10218284e+01 -0.40485738e+02 0.00000000e+00
- 2 21 231 231 -0.18944290e+01 0.15298373e+01 -0.10214072e+03 0.00000000e+00
- 2 2203 231 231 0.60530194e+00 0.74162543e+00 -0.12918233e+04 0.77133000e+00
- 2 3 278 278 0.62659916e+01 0.37340660e+01 -0.10024631e+02 0.00000000e+00
- 2 21 278 278 0.78414102e+00 0.17130475e+01 -0.26145766e+01 0.00000000e+00
- 2 21 278 278 0.46351017e+01 0.33857303e+01 -0.39217607e+01 0.00000000e+00
- 2 21 278 278 0.23478308e+01 0.92059636e+00 -0.68763196e+00 0.00000000e+00
- 2 21 278 278 0.48668507e+01 -0.14404054e+01 -0.27088153e+01 0.00000000e+00
- 2 21 278 278 0.18309923e+01 -0.77110607e+00 -0.13406150e+01 0.00000000e+00
- 2 21 278 278 0.74398279e+00 0.10207770e-01 -0.11034665e+01 0.00000000e+00
- 2 21 278 278 0.61126991e+01 -0.32486774e+01 -0.12406105e+02 0.00000000e+00
- 2 21 278 278 0.29286428e+01 -0.21233901e+01 -0.40269117e+01 0.00000000e+00
- 2 21 278 278 0.29450103e+01 -0.55162029e+01 -0.64801903e+01 0.00000000e+00
- 2 21 278 278 0.60696583e+00 -0.11762584e+01 -0.38831681e+00 0.00000000e+00
- 2 21 278 278 0.27154355e+00 -0.14607804e+01 -0.76026310e+00 0.00000000e+00
- 2 21 278 278 -0.32499546e+01 -0.46930143e+01 -0.95661723e+01 0.00000000e+00
- 2 21 278 278 -0.34372992e+01 -0.66690490e+00 -0.35325115e+01 0.00000000e+00
- 2 21 278 278 -0.66785782e+00 -0.22684275e-01 -0.43802742e+00 0.00000000e+00
- 2 21 278 278 -0.74470204e+00 0.50533809e-01 -0.23869438e+00 0.00000000e+00
- 2 21 278 278 -0.12290110e+01 0.44194549e+00 0.15183847e+00 0.00000000e+00
- 2 21 278 278 -0.61126991e+01 0.32486774e+01 0.83033104e+00 0.00000000e+00
- 2 21 278 278 -0.51760046e+00 0.49433088e+00 0.22882140e+00 0.00000000e+00
- 2 21 278 278 -0.20133810e+01 0.32136160e+01 0.10915980e+01 0.00000000e+00
- 2 21 278 278 -0.60696583e+00 0.11762584e+01 0.31402742e+01 0.00000000e+00
- 2 21 278 278 -0.47614292e+01 -0.17261842e+01 0.13232443e+02 0.00000000e+00
- 2 -3 278 278 -0.62659916e+01 -0.37340660e+01 0.16147386e+02 0.00000000e+00
- 2 1 319 319 -0.38848429e+01 -0.47670100e+00 -0.15899174e+02 0.00000000e+00
- 2 21 319 319 -0.74398279e+00 -0.10207770e-01 -0.30199461e+01 0.00000000e+00
- 2 21 319 319 -0.17140850e+01 0.78204042e+00 -0.44845322e+01 0.00000000e+00
- 2 21 319 319 0.34372992e+01 0.66690490e+00 -0.10510522e+02 0.00000000e+00
- 2 -1 319 319 0.38848429e+01 0.47670100e+00 -0.14295790e+02 0.00000000e+00
- 2 2 326 326 0.15688803e+01 0.43873800e+00 0.13202301e+02 0.00000000e+00
- 2 -2 326 326 -0.15688803e+01 -0.43873800e+00 0.11629439e+01 0.00000000e+00
- 2 2 331 331 0.10735551e+00 0.10836003e+01 -0.26848336e+02 0.00000000e+00
- 2 -2 331 331 -0.10735551e+00 -0.10836003e+01 -0.64672554e+01 0.00000000e+00
- 2 21 335 335 0.43281792e+00 0.39656623e+01 -0.70853918e+03 0.00000000e+00
- 2 21 335 335 -0.29286428e+01 0.21233901e+01 -0.63090998e+03 0.00000000e+00
- 2 21 335 335 -0.12820243e+01 0.40548230e+00 -0.15514086e+03 0.00000000e+00
- 2 21 335 335 -0.99950967e+00 -0.34133801e+00 -0.12330792e+03 0.00000000e+00
- 2 21 335 335 -0.30626839e+01 -0.33750386e+00 -0.23408442e+03 0.00000000e+00
- 2 21 335 335 -0.23478308e+01 -0.92059636e+00 -0.17376387e+03 0.00000000e+00
- 2 21 335 335 -0.43281792e+00 -0.39656623e+01 -0.18637058e+02 0.00000000e+00
- 2 21 335 335 0.60937518e+00 -0.23744225e+01 -0.71460007e+01 0.00000000e+00
- 2 21 335 335 0.17759391e+01 -0.14191931e+01 -0.54632684e+02 0.00000000e+00
- 2 21 335 335 0.17140850e+01 -0.78204042e+00 -0.11744620e+03 0.00000000e+00
- 2 21 335 335 0.13078309e+01 0.27988967e+01 -0.64614457e+03 0.00000000e+00
- 2 21 359 359 0.16398309e+01 -0.32426915e+00 0.51766507e+02 0.00000000e+00
- 2 21 359 359 0.74470204e+00 -0.50533809e-01 0.17495519e+02 0.00000000e+00
- 2 21 359 359 -0.16398309e+01 0.32426915e+00 0.39300254e+02 0.00000000e+00
- 2 21 364 364 -0.14674277e+01 -0.44354499e+00 -0.20101838e+01 0.00000000e+00
- 2 21 364 364 0.14674277e+01 0.44354499e+00 0.94787222e+01 0.00000000e+00
- 2 21 373 373 0.51007365e+00 0.13791450e+01 0.87074877e+02 0.00000000e+00
- 2 21 373 373 0.24366421e-01 0.71375273e+00 0.73353867e+02 0.00000000e+00
- 2 21 373 373 -0.90327099e+00 0.77744087e+00 0.11612717e+03 0.00000000e+00
- 2 21 373 373 -0.53976639e+00 -0.27120998e-01 0.26434008e+02 0.00000000e+00
- 2 21 373 373 -0.51007365e+00 -0.13791450e+01 0.34078151e+02 0.00000000e+00
- 2 92 139 230 -0.58774320e+01 0.10370012e+03 0.47113729e+04 0.88428935e+03
- 2 -3222 379 380 -0.45858020e+01 0.24163892e+02 0.41765826e+02 0.11893700e+01
- 2 3222 381 382 -0.56009915e+01 0.32134035e+02 0.55687719e+02 0.11893700e+01
- 2 113 383 384 -0.52849822e+01 0.28160880e+02 0.47204349e+02 0.70527236e+00
- 2 113 385 386 -0.15295778e+01 0.10661006e+02 0.18190415e+02 0.85226347e+00
- 2 -323 387 388 0.64099090e+00 0.99764163e+00 0.18498734e+01 0.91784518e+00
- 1 321 0 0 -0.31615209e+00 0.24856934e+01 0.28196006e+01 0.49360000e+00
- 2 -323 389 390 0.28375830e+00 0.82647513e+00 0.12013931e+01 0.93989041e+00
- 2 -3122 391 392 -0.31688948e+00 0.38804682e+00 0.87004590e+00 0.11156800e+01
- 2 223 393 395 0.80767957e+00 0.53130039e+00 0.75352702e+00 0.78689744e+00
- 1 2112 0 0 0.64256405e-01 0.14788079e+01 0.47565553e+01 0.93957000e+00
- 1 211 0 0 -0.50699028e+00 0.36855997e+00 0.50553488e+00 0.13957000e+00
- 2 111 396 397 0.83619712e+00 0.74164292e+00 0.89743081e+01 0.13498000e+00
- 2 -213 398 399 0.20804729e+01 0.36337744e+01 0.24718558e+02 0.72388555e+00
- 2 113 400 401 0.15447651e+01 0.19047726e+01 0.10506334e+02 0.74793896e+00
- 2 213 402 403 0.49659376e+00 0.13842682e+01 0.13663558e+02 0.64812363e+00
- 2 223 404 406 0.11558535e+01 0.12513503e+01 0.87152038e+01 0.78727092e+00
- 2 223 407 409 0.11246888e+01 0.13560373e+01 0.15984709e+02 0.78701533e+00
- 2 113 410 411 0.13854770e+01 0.16028317e+01 0.14472977e+02 0.97519865e+00
- 2 113 412 413 0.19137214e+01 0.17236431e+01 0.22126337e+02 0.77084290e+00
- 2 111 414 415 -0.20068630e+00 0.68964805e+00 0.55868533e+01 0.13498000e+00
- 2 -213 416 417 0.25949157e+01 0.76907642e+00 0.18943549e+02 0.83167720e+00
- 2 223 418 420 0.17908579e+00 0.54091788e+00 0.56418658e+01 0.78001479e+00
- 2 113 421 422 0.14182802e+01 0.69639135e+00 0.21781730e+02 0.78235835e+00
- 1 211 0 0 0.50570769e+00 0.68153270e-02 0.50681579e+01 0.13957000e+00
- 2 111 423 424 0.94876814e-01 -0.32297734e+00 0.20746554e+01 0.13498000e+00
- 2 221 425 426 0.24943408e+01 0.39944475e+00 0.92584410e+01 0.54745000e+00
- 2 111 427 428 -0.10293056e+00 0.23979906e+00 0.48993008e+00 0.13498000e+00
- 2 223 429 431 0.29427978e+01 -0.77990838e-01 0.88165149e+01 0.78450824e+00
- 2 223 432 434 0.64298346e+00 0.34328298e+00 0.12271721e+01 0.78706139e+00
- 1 -321 0 0 0.11988081e+01 0.16470003e+00 0.19379157e+01 0.49360000e+00
- 2 311 435 435 0.29259913e+01 0.32658819e+00 0.59740110e+01 0.49767000e+00
- 1 211 0 0 0.17562872e-01 -0.35386694e-01 0.11950028e+00 0.13957000e+00
- 2 -323 436 437 0.10285958e+01 0.47038823e+00 0.10633722e+01 0.89305597e+00
- 2 333 438 439 0.21025087e+01 0.62995919e+00 0.39188176e+01 0.10155328e+01
- 2 333 440 441 0.46078434e+00 0.54408671e+00 0.75651112e+00 0.10226205e+01
- 2 311 442 442 0.12814477e+01 0.11867282e+01 0.65986810e+00 0.49767000e+00
- 2 223 443 444 0.56779005e+00 0.11020471e+01 0.44005459e+00 0.78220559e+00
- 2 -2214 445 446 0.95941444e+00 0.23010528e+01 0.60304827e+00 0.12211135e+01
- 2 2214 447 448 0.72369831e+00 0.16274949e+01 0.67946845e+00 0.12478131e+01
- 2 213 449 450 -0.46941791e+00 0.21808992e+01 -0.17661636e+01 0.83609277e+00
- 2 -323 451 452 -0.62223374e-01 0.13345608e+01 -0.68791600e+00 0.93336039e+00
- 2 313 453 454 -0.58898802e+00 0.63926352e+00 -0.10053039e+01 0.88840653e+00
- 2 -311 455 455 -0.13374758e+01 -0.13126970e+00 -0.74848061e+00 0.49767000e+00
- 1 321 0 0 -0.48743615e+00 -0.19864888e+01 -0.86116623e+00 0.49360000e+00
- 2 113 456 457 -0.37683411e+01 -0.37591453e+01 -0.17166805e+01 0.64167326e+00
- 2 223 458 460 -0.13945845e+01 -0.34392048e+01 -0.66122305e+00 0.79763417e+00
- 2 113 461 462 -0.11170660e+01 -0.24696063e+01 -0.96948296e+00 0.70413562e+00
- 2 223 463 465 -0.12516196e+01 -0.21483555e+01 -0.42047875e+00 0.76491332e+00
- 1 -321 0 0 0.51950098e-01 -0.27348858e+00 0.53206897e-01 0.49360000e+00
- 2 333 466 467 -0.16039416e+01 -0.40371571e+01 0.18483704e+01 0.10135271e+01
- 2 -3312 468 469 0.33009924e+00 -0.21420048e+01 0.49552769e+01 0.13213000e+01
- 2 3212 470 471 0.67769347e+00 -0.74794711e+00 0.12146276e+01 0.11925500e+01
- 2 -213 472 473 0.17673578e+00 -0.22071787e+00 0.69016077e+01 0.83003269e+00
- 2 221 474 476 -0.96133236e+00 0.12677117e+01 0.11976212e+02 0.54745000e+00
- 2 113 477 478 -0.94064966e-01 0.33922735e+00 0.90096076e+01 0.69014636e+00
- 1 211 0 0 -0.93120576e+00 0.60513681e+00 0.10161198e+02 0.13957000e+00
- 1 -211 0 0 -0.14382092e+01 0.36493922e+00 0.13924829e+02 0.13957000e+00
- 2 213 479 480 -0.20155965e+01 0.16789402e+00 0.18672510e+02 0.91753569e+00
- 2 -213 481 482 -0.15573496e+01 -0.88462040e-01 0.32720013e+02 0.94734510e+00
- 2 113 483 484 -0.34255898e+01 -0.21645205e+01 0.62122979e+02 0.66290022e+00
- 2 223 485 487 -0.12650106e+01 0.51460768e+00 0.61075795e+02 0.77847344e+00
- 2 113 488 489 -0.10877694e+01 -0.15002355e+01 0.51545282e+02 0.10462742e+01
- 2 113 490 491 -0.41764498e+00 -0.10938418e+00 0.32294015e+02 0.72865058e+00
- 2 213 492 493 0.27551710e+00 0.54493881e+00 0.29010339e+02 0.51245324e+00
- 2 221 494 496 -0.31474176e-01 0.15815174e+00 0.27783012e+02 0.54745000e+00
- 2 111 497 498 0.14449416e+01 0.43418468e+00 0.99830020e+02 0.13498000e+00
- 2 113 499 500 0.56128957e+00 -0.12813807e+01 0.91519327e+02 0.89480429e+00
- 1 -2212 0 0 0.11911078e+00 -0.49743892e+00 0.87820638e+02 0.93827000e+00
- 1 2212 0 0 0.18570740e+01 -0.67398951e+00 0.15018745e+03 0.93827000e+00
- 2 -213 501 502 0.85754805e+00 -0.92757149e+00 0.89790801e+02 0.63044728e+00
- 2 -311 503 503 -0.62571096e+00 -0.99532453e+00 0.18371085e+03 0.49767000e+00
- 2 331 504 506 -0.46299353e+00 -0.16100444e+01 0.29047154e+03 0.95786326e+00
- 2 323 507 508 -0.10593173e+00 -0.96204885e-01 0.14361998e+03 0.84868056e+00
- 2 -213 509 510 -0.76388239e+00 -0.81650691e-01 0.46991604e+03 0.87066354e+00
- 1 211 0 0 -0.67634026e+00 -0.58979062e+00 0.15280128e+03 0.13957000e+00
- 2 -213 511 512 -0.54777808e+00 0.63166214e-02 0.32450921e+03 0.81392757e+00
- 2 221 513 514 -0.99745999e+00 0.18771135e+00 0.17495772e+03 0.54745000e+00
- 2 223 515 517 -0.57145936e+00 0.31770486e+00 0.13393296e+03 0.78372846e+00
- 2 -311 518 518 -0.46028612e-01 0.30359366e+00 0.62801578e+02 0.49767000e+00
- 1 321 0 0 -0.22463600e+00 0.11572857e+00 0.10755127e+02 0.49360000e+00
- 1 -211 0 0 0.49328396e+00 -0.14792067e+00 0.10804753e+02 0.13957000e+00
- 2 -313 519 520 -0.27447267e-01 -0.52836929e+00 0.13419397e+02 0.89650129e+00
- 2 311 521 521 0.48320014e+00 -0.26776180e-01 0.42745748e+02 0.49767000e+00
- 1 211 0 0 0.61254764e+00 -0.15351135e+00 0.10516156e+02 0.13957000e+00
- 2 113 522 523 -0.96290035e-01 0.11531372e+00 0.20130536e+02 0.85633653e+00
- 2 223 524 526 0.23750718e+00 -0.18583678e+00 0.80411485e+02 0.77466694e+00
- 2 -213 527 528 0.70922593e-01 0.17532561e+00 0.76689751e+02 0.79470267e+00
- 2 223 529 530 0.48893194e+00 -0.33303958e+00 0.18777215e+03 0.78453855e+00
- 1 211 0 0 -0.64568905e-01 0.56504060e-01 0.73196895e+01 0.13957000e+00
- 1 -2212 0 0 0.42667832e+00 -0.64802800e-01 0.24489464e+03 0.93827000e+00
- 1 2212 0 0 -0.42561537e+00 -0.11903081e+00 0.51514484e+03 0.93827000e+00
- 2 111 531 532 -0.12902197e+00 0.43555237e-02 0.27865893e+03 0.13498000e+00
- 2 92 232 277 0.20949376e+02 -0.10390738e+02 -0.32238555e+04 0.18249203e+03
- 2 213 533 534 0.26203895e+01 -0.16301454e+01 -0.14027532e+03 0.69135248e+00
- 1 2112 0 0 0.65775383e+01 -0.40623699e+01 -0.37755882e+03 0.93957000e+00
- 2 111 535 536 0.25408431e+01 -0.29751537e+01 -0.17616613e+03 0.13498000e+00
- 1 -2212 0 0 0.41546524e+01 -0.22719266e+01 -0.22926628e+03 0.93827000e+00
- 2 213 537 538 0.17075689e+01 -0.10067078e+01 -0.73152897e+02 0.74609592e+00
- 2 113 539 540 0.78051140e+00 -0.10952060e+00 -0.71333067e+01 0.75239066e+00
- 2 221 541 543 0.75778303e+00 -0.38447217e+00 -0.10339792e+02 0.54745000e+00
- 2 -213 544 545 0.10295039e+01 -0.12729872e+00 -0.12543944e+02 0.88259358e+00
- 2 223 546 548 0.18188070e+01 -0.47567019e+00 -0.10436477e+02 0.78019727e+00
- 2 2224 549 550 0.23873175e+01 0.11633802e+00 -0.10541505e+02 0.12194391e+01
- 2 -323 551 552 0.22255962e+01 -0.28485530e+00 -0.11822197e+02 0.97647347e+00
- 2 -3212 553 554 0.32682734e+01 -0.82038936e+00 -0.20661431e+02 0.11925500e+01
- 2 -213 555 556 0.12259010e+01 0.83763870e+00 -0.51066832e+01 0.46650804e+00
- 2 221 557 559 0.30458263e+01 0.48380054e+00 -0.14615238e+02 0.54745000e+00
- 2 213 560 561 0.57176319e+00 0.61803168e+00 -0.58950101e+01 0.92114262e+00
- 2 3114 562 563 0.16484027e+01 0.18087440e+01 -0.18042267e+02 0.13743346e+01
- 1 321 0 0 0.88066916e+00 0.18479942e+01 -0.96179433e+01 0.49360000e+00
- 1 -2212 0 0 0.11822596e+01 0.25237963e+01 -0.22479184e+02 0.93827000e+00
- 2 323 564 565 0.19709046e+01 0.27080980e+01 -0.20426229e+02 0.85155514e+00
- 2 -323 566 567 -0.43718492e+00 0.14791131e+01 -0.14788746e+02 0.85028040e+00
- 2 213 568 569 -0.54203447e+00 0.14594887e+01 -0.75265751e+01 0.57000902e+00
- 2 -213 570 571 0.33147078e+00 0.20395782e+01 -0.15357036e+02 0.76739001e+00
- 2 221 572 574 -0.86380055e+00 0.12434020e+01 -0.17155427e+02 0.54745000e+00
- 2 223 575 577 -0.11157160e+01 0.29633352e+01 -0.18201945e+02 0.78206166e+00
- 2 323 578 579 -0.54883294e+00 0.23608836e+00 -0.88150613e+01 0.89674322e+00
- 2 221 580 581 -0.18167988e+01 0.11821935e+01 -0.19343074e+02 0.54745000e+00
- 2 -311 582 582 -0.86124146e+00 -0.44319469e+00 -0.59775082e+01 0.49767000e+00
- 2 111 583 584 -0.11185172e+01 -0.10738384e+01 -0.54828583e+01 0.13498000e+00
- 1 -211 0 0 -0.69649917e+00 -0.15080196e+00 -0.71480078e+01 0.13957000e+00
- 2 213 585 586 -0.16719701e+01 -0.99404871e+00 -0.10971254e+02 0.60828345e+00
- 2 311 587 587 -0.13058578e+00 -0.89782515e-01 -0.18108278e+01 0.49767000e+00
- 2 -311 588 588 -0.12751079e+01 -0.13336095e+01 -0.33294519e+02 0.49767000e+00
- 2 -213 589 590 -0.55632873e+00 -0.67195514e+00 -0.10138736e+02 0.69506447e+00
- 2 113 591 592 -0.72948953e+00 -0.11697339e+01 -0.42403826e+02 0.54007769e+00
- 1 211 0 0 -0.39005689e+00 -0.40832484e+00 -0.58009126e+01 0.13957000e+00
- 1 -211 0 0 -0.54851359e+00 -0.91723395e+00 -0.32808937e+02 0.13957000e+00
- 2 213 593 594 -0.22748251e+01 -0.41844198e+01 -0.13743870e+03 0.75805467e+00
- 2 2114 595 596 -0.56209547e+00 -0.18924989e+01 -0.61842054e+02 0.12972326e+01
- 2 113 597 598 -0.12219484e+01 -0.17639179e+01 -0.66167809e+02 0.76883679e+00
- 1 -2112 0 0 -0.15013248e+01 -0.37607296e+01 -0.11230759e+03 0.93957000e+00
- 1 -211 0 0 -0.10498215e+01 0.58949831e+00 -0.54143864e+02 0.13957000e+00
- 1 211 0 0 -0.16105146e+00 -0.89128203e+00 -0.12237314e+03 0.13957000e+00
- 2 313 599 600 0.45550630e+00 0.16226934e+00 -0.56517876e+02 0.10879865e+01
- 2 -323 601 602 0.98986532e-01 0.31037895e+00 -0.36192657e+03 0.98164571e+00
- 2 213 603 604 -0.65572489e+00 0.25245187e+00 -0.12678082e+03 0.93543536e+00
- 2 2214 605 606 0.39837057e+00 0.64090481e+00 -0.69125113e+03 0.12319230e+01
- 2 92 279 318 0.47328608e+01 -0.81906643e+01 -0.25415997e+02 0.12950689e+03
- 1 -321 0 0 0.25863172e+01 0.15093882e+01 -0.38794458e+01 0.49360000e+00
- 2 2224 607 608 0.36167660e+01 0.31333877e+01 -0.61637882e+01 0.12447612e+01
- 1 -211 0 0 0.12000462e+01 0.50472743e+00 -0.17929484e+01 0.13957000e+00
- 1 -2112 0 0 0.21747937e+01 0.23572436e+01 -0.22665461e+01 0.93957000e+00
- 1 -211 0 0 0.38153948e+00 -0.10875193e+00 -0.13761325e+00 0.13957000e+00
- 2 113 609 610 0.38652357e+01 0.21202384e+01 -0.33214967e+01 0.96795704e+00
- 1 321 0 0 0.34030005e+01 -0.59732075e+00 -0.15392374e+01 0.49360000e+00
- 2 -323 611 612 0.16726463e+01 -0.78417908e+00 -0.14244110e+01 0.74727806e+00
- 2 2214 613 614 0.37589255e+01 -0.16680279e+01 -0.64680429e+01 0.12707671e+01
- 2 221 615 617 0.23777838e+01 -0.15014292e+01 -0.32330168e+01 0.54745000e+00
- 1 -2112 0 0 0.14419301e+01 -0.13464669e+01 -0.18629673e+01 0.93957000e+00
- 2 223 618 620 0.14187185e+01 -0.12450180e+01 -0.31391578e+01 0.84491683e+00
- 1 -211 0 0 0.12497526e+01 -0.68715073e+00 -0.30502071e+01 0.13957000e+00
- 2 213 621 622 0.13232648e+01 -0.20189518e+01 -0.22328539e+01 0.84366943e+00
- 2 223 623 625 0.11823051e+01 -0.12598637e+01 -0.13825065e+01 0.77718774e+00
- 2 313 626 627 0.97821719e+00 -0.11623233e+01 -0.24214084e+01 0.10399283e+01
- 2 -323 628 629 0.42221816e+00 -0.18390107e+01 -0.22732695e+01 0.91137804e+00
- 2 111 630 631 -0.32189345e+00 -0.25090018e+01 -0.35199584e+01 0.13498000e+00
- 2 113 632 633 -0.38068442e+00 -0.26156775e+00 -0.57901145e-01 0.59680338e+00
- 2 111 634 635 0.30382924e+00 -0.79623710e+00 -0.10188276e+01 0.13498000e+00
- 1 211 0 0 -0.40110883e+00 0.72292445e-01 -0.58553712e+00 0.13957000e+00
- 2 -213 636 637 -0.24199925e+01 -0.27696169e+01 -0.50190839e+01 0.81519528e+00
- 2 113 638 639 -0.13582354e+01 0.60672265e-01 -0.11303246e+01 0.79417267e+00
- 2 213 640 641 -0.65973898e+00 0.21482573e+00 -0.12747138e+01 0.74948706e+00
- 2 -213 642 643 -0.25846046e+01 0.35362588e-01 -0.36678239e+00 0.77022293e+00
- 1 211 0 0 -0.85324726e+00 0.19803778e+00 -0.40945401e+00 0.13957000e+00
- 2 221 644 645 -0.14840246e+01 0.10725574e+01 0.40889165e+00 0.54745000e+00
- 2 111 646 647 -0.11661405e+01 0.37968763e+00 0.13116444e+00 0.13498000e+00
- 2 -213 648 649 -0.18241302e+01 0.16973765e+01 0.10602694e+01 0.69224464e+00
- 1 2212 0 0 0.66590452e-01 0.52662258e+00 0.56018335e+00 0.93827000e+00
- 1 -211 0 0 -0.15712394e+01 0.48155513e+00 0.86290452e+00 0.13957000e+00
- 2 -1114 650 651 -0.13835317e+01 0.14963122e+01 0.54531024e+00 0.11685610e+01
- 2 113 652 653 -0.87546869e+00 0.32598899e+00 0.17102176e+01 0.67080639e+00
- 2 1114 654 655 -0.16735958e+01 -0.53698894e-01 0.25142912e+01 0.13371306e+01
- 2 213 656 657 0.31907337e-01 -0.15500074e+00 0.15178921e+01 0.56191048e+00
- 2 -2214 658 659 -0.99396939e+00 0.14336555e+00 0.27921945e+01 0.11978373e+01
- 1 211 0 0 -0.93731344e+00 -0.34738223e+00 0.14165714e+01 0.13957000e+00
- 2 111 660 661 -0.40670290e+00 0.30128680e-01 0.16944565e+01 0.13498000e+00
- 2 -213 662 663 -0.53224346e+01 -0.27990585e+01 0.12366328e+02 0.68677694e+00
- 1 321 0 0 -0.21048704e+01 -0.64037750e+00 0.69748279e+01 0.49360000e+00
- 2 92 320 325 0.97923140e+00 0.14387376e+01 -0.48209965e+02 0.14060430e+02
- 2 113 664 665 -0.40223825e+01 -0.39991973e+00 -0.15529351e+02 0.79997841e+00
- 2 111 666 667 -0.12964251e+01 0.53160115e+00 -0.61942068e+01 0.13498000e+00
- 1 -211 0 0 -0.69332272e+00 0.45542752e-01 -0.10284826e+01 0.13957000e+00
- 2 111 668 669 0.16620469e+00 -0.34987065e-01 -0.26434282e+01 0.13498000e+00
- 1 321 0 0 0.43484674e+01 0.13552592e+01 -0.14341910e+02 0.49360000e+00
- 2 -313 670 671 0.24766896e+01 -0.58758693e-01 -0.84725868e+01 0.89420290e+00
- 2 92 327 330 0.00000000e+00 0.00000000e+00 0.14365245e+02 0.52775360e+01
- 2 213 672 673 0.97746710e+00 0.32048031e+00 0.89969419e+01 0.76412210e+00
- 2 -213 674 675 0.41971303e+00 0.18018855e+00 0.34074876e+01 0.65581597e+00
- 2 111 676 677 -0.25362159e+00 -0.42567955e-01 0.80046177e+00 0.13498000e+00
- 2 223 678 680 -0.11435585e+01 -0.45810091e+00 0.11603537e+01 0.78321797e+00
- 2 92 332 334 0.00000000e+00 0.00000000e+00 -0.33315592e+02 0.27475361e+01
- 1 2212 0 0 -0.13321272e+00 0.16461175e+00 -0.13086556e+02 0.93827000e+00
- 1 -2212 0 0 -0.16062979e-02 -0.37161836e+00 -0.16396261e+02 0.93827000e+00
- 2 221 681 683 0.13481901e+00 0.20700661e+00 -0.38327751e+01 0.54745000e+00
- 2 92 336 358 -0.52134612e+01 -0.84732511e+00 -0.28697527e+04 0.74481028e+02
- 2 -213 684 685 -0.14169440e-01 -0.12231846e-01 -0.11505684e+02 0.79533045e+00
- 2 213 686 687 -0.59639501e+00 -0.24648025e+01 -0.16468953e+02 0.75137913e+00
- 1 2112 0 0 0.96701096e-01 -0.84596234e+00 -0.45635336e+01 0.93957000e+00
- 1 -2212 0 0 0.32401318e+00 -0.23460783e+01 -0.13847373e+02 0.93827000e+00
- 2 213 688 689 0.77322010e+00 -0.30218458e+00 -0.84448545e+01 0.82490249e+00
- 2 1114 690 691 0.93167865e-01 -0.61717589e+00 -0.19237136e+02 0.12327515e+01
- 2 -3114 692 693 0.11011344e+01 -0.60659594e+00 -0.36274600e+02 0.13792697e+01
- 2 -323 694 695 0.18186791e+00 -0.37811491e+00 -0.37834239e+02 0.88649152e+00
- 1 321 0 0 0.24939354e-01 0.63897316e-01 -0.15415989e+02 0.49360000e+00
- 2 -311 696 696 0.56341381e+00 -0.56146089e+00 -0.25292586e+02 0.49767000e+00
- 2 -213 697 698 0.70137592e+00 0.44087157e+00 -0.10569394e+03 0.72721339e+00
- 1 211 0 0 0.10077518e+01 -0.39226540e-01 -0.14584780e+03 0.13957000e+00
- 1 2112 0 0 -0.61661949e-01 0.26169663e+01 -0.51458673e+03 0.93957000e+00
- 1 -2212 0 0 -0.16538198e+00 0.12433744e+01 -0.28452521e+03 0.93827000e+00
- 1 211 0 0 -0.50537625e-01 0.57291750e+00 -0.18711859e+03 0.13957000e+00
- 1 -211 0 0 0.44035277e+00 0.35846191e+00 -0.65698757e+02 0.13957000e+00
- 2 3222 699 700 -0.71907216e+00 0.13077441e+01 -0.24626197e+03 0.11893700e+01
- 2 -3222 701 702 -0.17929466e+01 0.15316233e+01 -0.51823939e+03 0.11893700e+01
- 2 213 703 704 -0.18686223e+01 0.21880743e+00 -0.18439000e+03 0.58148028e+00
- 2 -213 705 706 -0.29166100e+01 -0.56718426e+00 -0.28347162e+03 0.77694981e+00
- 2 221 707 709 -0.16104969e+01 -0.33868663e+00 -0.97941864e+02 0.54745000e+00
- 2 221 710 712 -0.71905008e+00 -0.17608703e+00 -0.18933455e+02 0.54745000e+00
- 2 213 713 714 -0.64553761e-02 0.53802668e-01 -0.28158464e+02 0.64328262e+00
- 2 92 360 363 0.74470204e+00 -0.50533809e-01 0.10856228e+03 0.40593131e+01
- 2 113 715 716 -0.10663427e+00 -0.10031644e+00 0.33053440e+02 0.75841329e+00
- 2 223 717 718 -0.30506587e+00 0.27808185e+00 0.20021373e+02 0.78366599e+00
- 2 111 719 720 0.95924935e+00 -0.39588953e+00 0.46539180e+02 0.13498000e+00
- 2 223 721 722 0.19715283e+00 0.16759031e+00 0.89482870e+01 0.78461504e+00
- 2 92 365 372 0.00000000e+00 0.00000000e+00 0.74685384e+01 0.95580200e+01
- 2 113 723 724 0.21615387e-01 0.23491103e-01 0.12773074e+01 0.69422634e+00
- 2 313 725 726 0.81314013e+00 -0.49576883e+00 0.22394336e+01 0.86218838e+00
- 2 -313 727 728 -0.34674830e+00 0.53769268e-02 0.14139189e+01 0.90850764e+00
- 2 311 729 729 -0.11898476e+00 0.37564174e+00 0.16260775e+01 0.49767000e+00
- 2 3122 730 731 0.32501003e+00 -0.26603545e+00 0.25527625e+00 0.11156800e+01
- 1 -2112 0 0 -0.20389296e+00 0.47170921e-01 -0.62973068e-01 0.93957000e+00
- 2 -213 732 733 -0.53987051e+00 0.44728052e+00 -0.34529811e+00 0.84563943e+00
- 2 213 734 735 0.49730974e-01 -0.13715692e+00 0.10647959e+01 0.72631294e+00
- 2 92 374 378 -0.14186710e+01 0.14640726e+01 0.33706808e+03 0.59819290e+01
- 1 -211 0 0 -0.93626954e+00 0.66109354e+00 0.82501379e+02 0.13957000e+00
- 2 221 736 738 -0.12354195e+00 -0.13773150e+01 0.71499621e+02 0.54745000e+00
- 1 2212 0 0 -0.46824295e+00 0.71814130e+00 0.67958453e+02 0.93827000e+00
- 2 111 739 740 0.36792831e+00 0.27799324e+00 0.12278267e+02 0.13498000e+00
- 2 -2114 741 742 -0.25854483e+00 0.11841595e+01 0.10283036e+03 0.12228369e+01
- 1 -2212 0 0 -0.30580169e+01 0.15936174e+02 0.27708292e+02 0.93827000e+00
- 2 111 743 744 -0.15277851e+01 0.82277187e+01 0.14057534e+02 0.13498000e+00
- 1 2112 0 0 -0.39962886e+01 0.22751195e+02 0.39163722e+02 0.93957000e+00
- 1 211 0 0 -0.16047030e+01 0.93828394e+01 0.16523997e+02 0.13957000e+00
- 1 -211 0 0 -0.20020416e+01 0.11911339e+02 0.19470200e+02 0.13957000e+00
- 1 211 0 0 -0.32829406e+01 0.16249541e+02 0.27734149e+02 0.13957000e+00
- 1 -211 0 0 -0.77584419e+00 0.43276554e+01 0.67189197e+01 0.13957000e+00
- 1 211 0 0 -0.75373358e+00 0.63333504e+01 0.11471495e+02 0.13957000e+00
- 2 -311 745 745 0.74654299e+00 0.75549220e+00 0.12685812e+01 0.49767000e+00
- 1 -211 0 0 -0.10555209e+00 0.24214943e+00 0.58129225e+00 0.13957000e+00
- 1 -321 0 0 0.10481634e+00 0.14238111e+00 0.72490236e+00 0.49360000e+00
- 2 111 746 747 0.17894197e+00 0.68409402e+00 0.47649073e+00 0.13498000e+00
- 1 -2212 0 0 -0.28726753e+00 0.25602420e+00 0.63762074e+00 0.93827000e+00
- 1 211 0 0 -0.29621944e-01 0.13202262e+00 0.23242516e+00 0.13957000e+00
- 1 -211 0 0 0.69266331e+00 0.45083817e+00 0.49044464e+00 0.13957000e+00
- 1 211 0 0 0.16903403e+00 0.54322938e-02 0.23147079e+00 0.13957000e+00
- 2 111 748 749 -0.54017768e-01 0.75029925e-01 0.31611582e-01 0.13498000e+00
- 1 22 0 0 0.34781713e+00 0.39463093e+00 0.43530845e+01 0.00000000e+00
- 1 22 0 0 0.48837999e+00 0.34701200e+00 0.46212236e+01 0.00000000e+00
- 1 -211 0 0 0.10694292e+01 0.25077963e+01 0.15778981e+02 0.13957000e+00
- 2 111 750 751 0.10110436e+01 0.11259781e+01 0.89395770e+01 0.13498000e+00
- 1 211 0 0 0.39021627e+00 0.10245471e+01 0.46045741e+01 0.13957000e+00
- 1 -211 0 0 0.11545489e+01 0.88022550e+00 0.59017602e+01 0.13957000e+00
- 1 211 0 0 0.35363468e+00 0.95324924e+00 0.11342776e+02 0.13957000e+00
- 2 111 752 753 0.14295908e+00 0.43101901e+00 0.23207819e+01 0.13498000e+00
- 1 211 0 0 0.52731780e+00 0.26044210e+00 0.28631309e+01 0.13957000e+00
- 1 -211 0 0 -0.25636450e-02 0.14794320e+00 0.73211732e+00 0.13957000e+00
- 2 111 754 755 0.63109935e+00 0.84296504e+00 0.51199556e+01 0.13498000e+00
- 1 -211 0 0 0.65734444e+00 0.57102938e+00 0.54729877e+01 0.13957000e+00
- 1 211 0 0 0.40656075e+00 0.54443775e+00 0.77948494e+01 0.13957000e+00
- 2 111 756 757 0.60783570e-01 0.24057019e+00 0.27168716e+01 0.13498000e+00
- 1 211 0 0 0.93137336e+00 0.57697587e+00 0.92541717e+01 0.13957000e+00
- 1 -211 0 0 0.45410359e+00 0.10258558e+01 0.52188053e+01 0.13957000e+00
- 1 211 0 0 0.78539367e+00 0.27507992e+00 0.74632911e+01 0.13957000e+00
- 1 -211 0 0 0.11283277e+01 0.14485631e+01 0.14663046e+02 0.13957000e+00
- 1 22 0 0 -0.44229227e-01 0.15736661e+00 0.88405953e+00 0.00000000e+00
- 1 22 0 0 -0.15645707e+00 0.53228144e+00 0.47027937e+01 0.00000000e+00
- 1 -211 0 0 0.30247007e+00 -0.15963802e-01 0.12094511e+01 0.13957000e+00
- 2 111 758 759 0.22924456e+01 0.78504022e+00 0.17734098e+02 0.13498000e+00
- 1 -211 0 0 -0.10325711e+00 0.95651309e-01 0.30219750e+01 0.13957000e+00
- 1 211 0 0 0.12100457e+00 0.33205748e+00 0.13099252e+01 0.13957000e+00
- 2 111 760 761 0.16133833e+00 0.11320909e+00 0.13099657e+01 0.13498000e+00
- 1 -211 0 0 0.55069522e+00 -0.59484437e-01 0.53494399e+01 0.13957000e+00
- 1 211 0 0 0.86758502e+00 0.75587579e+00 0.16432290e+02 0.13957000e+00
- 1 22 0 0 0.10820657e+00 -0.22116521e+00 0.16963160e+01 0.00000000e+00
- 1 22 0 0 -0.13329756e-01 -0.10181213e+00 0.37833945e+00 0.00000000e+00
- 1 22 0 0 0.43218325e+00 0.22885480e+00 0.23717263e+01 0.00000000e+00
- 1 22 0 0 0.20621575e+01 0.17058995e+00 0.68867147e+01 0.00000000e+00
- 1 22 0 0 -0.10660506e+00 0.25590262e+00 0.46499104e+00 0.00000000e+00
- 1 22 0 0 0.36745039e-02 -0.16103560e-01 0.24939039e-01 0.00000000e+00
- 1 -211 0 0 0.16575013e+01 0.83812612e-01 0.41974519e+01 0.13957000e+00
- 1 211 0 0 0.33448035e+00 -0.13031779e+00 0.11637018e+01 0.13957000e+00
- 2 111 762 763 0.95081615e+00 -0.31485658e-01 0.34553612e+01 0.13498000e+00
- 1 -211 0 0 0.36861528e+00 0.32551538e-01 0.27612673e+00 0.13957000e+00
- 1 211 0 0 -0.57285103e-01 0.32461860e-01 0.42989402e+00 0.13957000e+00
- 2 111 764 765 0.33165328e+00 0.27826958e+00 0.52115137e+00 0.13498000e+00
- 1 130 0 0 0.29259913e+01 0.32658819e+00 0.59740110e+01 0.49767000e+00
- 2 -311 766 766 0.48743600e+00 0.32252164e+00 0.27942924e+00 0.49767000e+00
- 1 -211 0 0 0.54115982e+00 0.14786659e+00 0.78394293e+00 0.13957000e+00
- 1 130 0 0 0.10333243e+01 0.41466454e+00 0.19750100e+01 0.49767000e+00
- 2 310 767 768 0.10691844e+01 0.21529465e+00 0.19438076e+01 0.49767000e+00
- 1 -321 0 0 0.24215632e+00 0.17993921e+00 0.23686281e+00 0.49360000e+00
- 1 321 0 0 0.21862802e+00 0.36414750e+00 0.51964831e+00 0.49360000e+00
- 1 130 0 0 0.12814477e+01 0.11867282e+01 0.65986810e+00 0.49767000e+00
- 1 22 0 0 0.45237890e+00 0.15271570e+00 0.27405986e+00 0.00000000e+00
- 2 111 769 770 0.11541115e+00 0.94933137e+00 0.16599473e+00 0.13498000e+00
- 1 -2212 0 0 0.60369624e+00 0.17934207e+01 0.63520275e+00 0.93827000e+00
- 2 111 771 772 0.35571819e+00 0.50763213e+00 -0.32154488e-01 0.13498000e+00
- 1 2212 0 0 0.66092199e+00 0.12695953e+01 0.30298612e+00 0.93827000e+00
- 2 111 773 774 0.62776316e-01 0.35789965e+00 0.37648234e+00 0.13498000e+00
- 1 211 0 0 0.52225999e-02 0.10297656e+01 -0.40332705e+00 0.13957000e+00
- 2 111 775 776 -0.47464051e+00 0.11511335e+01 -0.13628366e+01 0.13498000e+00
- 2 -311 777 777 -0.30274889e+00 0.83770799e+00 -0.62402359e+00 0.49767000e+00
- 1 -211 0 0 0.24052552e+00 0.49685281e+00 -0.63892415e-01 0.13957000e+00
- 2 311 778 778 -0.18009209e+00 0.19481282e+00 -0.23621198e+00 0.49767000e+00
- 2 111 779 780 -0.40889592e+00 0.44445071e+00 -0.76909193e+00 0.13498000e+00
- 2 310 781 782 -0.13374758e+01 -0.13126970e+00 -0.74848061e+00 0.49767000e+00
- 1 211 0 0 -0.30150643e+01 -0.29832835e+01 -0.11320770e+01 0.13957000e+00
- 1 -211 0 0 -0.75327682e+00 -0.77586182e+00 -0.58460348e+00 0.13957000e+00
- 1 -211 0 0 -0.32934556e+00 -0.53283355e+00 0.73018480e-02 0.13957000e+00
- 1 211 0 0 -0.45235801e+00 -0.17305252e+01 -0.23334933e+00 0.13957000e+00
- 2 111 783 784 -0.61288096e+00 -0.11758460e+01 -0.43517556e+00 0.13498000e+00
- 1 211 0 0 -0.80667822e+00 -0.21132111e+01 -0.59064050e+00 0.13957000e+00
- 1 -211 0 0 -0.31038774e+00 -0.35639520e+00 -0.37884246e+00 0.13957000e+00
- 1 -211 0 0 -0.63617883e+00 -0.75651949e+00 -0.29353630e+00 0.13957000e+00
- 1 211 0 0 -0.75025670e-01 -0.12917374e+00 0.26005774e-01 0.13957000e+00
- 2 111 785 786 -0.54041506e+00 -0.12626622e+01 -0.15294823e+00 0.13498000e+00
- 1 211 0 0 -0.10746729e+01 -0.36017198e+01 0.15711916e+01 0.13957000e+00
- 1 -211 0 0 -0.52926863e+00 -0.43543730e+00 0.27717882e+00 0.13957000e+00
- 2 -3122 787 788 0.34825820e+00 -0.20443972e+01 0.44603908e+01 0.11156800e+01
- 1 211 0 0 -0.18158957e-01 -0.97607641e-01 0.49488606e+00 0.13957000e+00
- 2 3122 789 790 0.58018097e+00 -0.67511129e+00 0.11813462e+01 0.11156800e+01
- 1 22 0 0 0.97512507e-01 -0.72835818e-01 0.33281349e-01 0.00000000e+00
- 1 -211 0 0 -0.17987363e-01 -0.21437563e+00 0.61904293e+00 0.13957000e+00
- 2 111 791 792 0.19472314e+00 -0.63422416e-02 0.62825648e+01 0.13498000e+00
- 1 22 0 0 -0.29724806e+00 0.60638541e+00 0.49747296e+01 0.00000000e+00
- 1 211 0 0 -0.48089020e+00 0.51085243e+00 0.55743890e+01 0.13957000e+00
- 1 -211 0 0 -0.18319410e+00 0.15047384e+00 0.14270929e+01 0.13957000e+00
- 1 -211 0 0 -0.26223262e+00 -0.74996822e-01 0.35950518e+01 0.13957000e+00
- 1 211 0 0 0.16816765e+00 0.41422417e+00 0.54145558e+01 0.13957000e+00
- 1 211 0 0 -0.56783700e+00 0.16261342e+00 0.27927631e+01 0.13957000e+00
- 2 111 793 794 -0.14477595e+01 0.52806059e-02 0.15879747e+02 0.13498000e+00
- 1 -211 0 0 -0.22319619e+00 -0.29913695e+00 0.42889088e+01 0.13957000e+00
- 2 111 795 796 -0.13341534e+01 0.21067491e+00 0.28431104e+02 0.13498000e+00
- 1 211 0 0 -0.44675207e+00 -0.48474704e+00 0.87418697e+01 0.13957000e+00
- 1 -211 0 0 -0.29788377e+01 -0.16797735e+01 0.53381109e+02 0.13957000e+00
- 1 -211 0 0 -0.15317895e+00 0.81821776e-01 0.10073856e+02 0.13957000e+00
- 1 211 0 0 -0.56576354e+00 0.47896227e+00 0.23947883e+02 0.13957000e+00
- 2 111 797 798 -0.54606812e+00 -0.46176372e-01 0.27054056e+02 0.13498000e+00
- 1 -211 0 0 -0.47770584e+00 -0.46394021e+00 0.31525073e+02 0.13957000e+00
- 1 211 0 0 -0.61006358e+00 -0.10362953e+01 0.20020210e+02 0.13957000e+00
- 1 211 0 0 -0.51993207e+00 -0.24029411e+00 0.27339289e+02 0.13957000e+00
- 1 -211 0 0 0.10228708e+00 0.13090993e+00 0.49547253e+01 0.13957000e+00
- 1 211 0 0 0.91444912e-01 0.48833976e+00 0.14778370e+02 0.13957000e+00
- 2 111 799 800 0.18407219e+00 0.56599047e-01 0.14231969e+02 0.13498000e+00
- 1 -211 0 0 -0.42010351e-01 -0.14603089e-01 0.10181892e+02 0.13957000e+00
- 1 211 0 0 0.28182596e-01 -0.47850173e-01 0.56514921e+01 0.13957000e+00
- 2 111 801 802 -0.17646420e-01 0.22060501e+00 0.11949628e+02 0.13498000e+00
- 1 22 0 0 0.60710375e+00 0.25108735e+00 0.44113086e+02 0.00000000e+00
- 1 22 0 0 0.83783781e+00 0.18309734e+00 0.55716934e+02 0.00000000e+00
- 1 211 0 0 0.44828757e+00 -0.11212802e+01 0.87127682e+02 0.13957000e+00
- 1 -211 0 0 0.11300200e+00 -0.16010051e+00 0.43916444e+01 0.13957000e+00
- 1 -211 0 0 0.31929256e+00 -0.60850957e+00 0.32744142e+02 0.13957000e+00
- 2 111 803 805 0.53825549e+00 -0.31906192e+00 0.57046659e+02 0.13498000e+00
- 1 130 0 0 -0.62571096e+00 -0.99532453e+00 0.18371085e+03 0.49767000e+00
- 1 -211 0 0 -0.29695506e-01 -0.30717124e+00 0.43668154e+02 0.13957000e+00
- 1 211 0 0 0.68514992e-01 -0.30307886e+00 0.54090114e+02 0.13957000e+00
- 2 221 806 808 -0.50181302e+00 -0.99979429e+00 0.19271327e+03 0.54745000e+00
- 1 321 0 0 0.14350354e+00 0.41371341e-01 0.69759702e+02 0.49360000e+00
- 2 111 809 810 -0.24943527e+00 -0.13757623e+00 0.73860279e+02 0.13498000e+00
- 1 -211 0 0 -0.15862691e+00 -0.34130509e+00 0.97292366e+02 0.13957000e+00
- 2 111 811 812 -0.60525547e+00 0.25965440e+00 0.37262368e+03 0.13498000e+00
- 1 -211 0 0 0.11541552e+00 0.15901620e+00 0.47211046e+02 0.13957000e+00
- 2 111 813 814 -0.66319360e+00 -0.15269957e+00 0.27729817e+03 0.13498000e+00
- 1 22 0 0 -0.33692839e+00 0.31922625e+00 0.85896012e+02 0.00000000e+00
- 1 22 0 0 -0.66053160e+00 -0.13151489e+00 0.89061710e+02 0.00000000e+00
- 1 -211 0 0 -0.65614921e-01 -0.32882858e-01 0.10078592e+02 0.13957000e+00
- 1 211 0 0 -0.33505881e+00 0.37959635e+00 0.60653059e+02 0.13957000e+00
- 2 111 815 816 -0.17078563e+00 -0.29008638e-01 0.63201308e+02 0.13498000e+00
- 1 130 0 0 -0.46028612e-01 0.30359366e+00 0.62801578e+02 0.49767000e+00
- 2 -311 817 817 0.26310674e+00 -0.28883691e+00 0.90216441e+01 0.49767000e+00
- 2 111 818 819 -0.29055401e+00 -0.23953238e+00 0.43977527e+01 0.13498000e+00
- 1 130 0 0 0.48320014e+00 -0.26776180e-01 0.42745748e+02 0.49767000e+00
- 1 -211 0 0 0.13881922e+00 -0.25515833e+00 0.12955219e+02 0.13957000e+00
- 1 211 0 0 -0.23510925e+00 0.37047205e+00 0.71753169e+01 0.13957000e+00
- 1 -211 0 0 0.33736667e+00 -0.85383234e-01 0.36344007e+02 0.13957000e+00
- 1 211 0 0 0.61385166e-01 0.86194373e-01 0.17145371e+02 0.13957000e+00
- 2 111 820 821 -0.16124466e+00 -0.18664791e+00 0.26922108e+02 0.13498000e+00
- 1 -211 0 0 -0.74332431e-01 0.33113566e+00 0.17660247e+02 0.13957000e+00
- 2 111 822 823 0.14525502e+00 -0.15581005e+00 0.59029504e+02 0.13498000e+00
- 1 22 0 0 0.52639450e+00 -0.22170437e+00 0.66896055e+02 0.00000000e+00
- 2 111 824 825 -0.37462558e-01 -0.11133520e+00 0.12087610e+03 0.13498000e+00
- 1 22 0 0 -0.10289159e+00 0.32585604e-01 0.99623946e+02 0.00000000e+00
- 1 22 0 0 -0.26130383e-01 -0.28230080e-01 0.17903499e+03 0.00000000e+00
- 1 211 0 0 0.24811470e+01 -0.13810862e+01 -0.12820046e+03 0.13957000e+00
- 2 111 826 827 0.13924253e+00 -0.24905923e+00 -0.12074861e+02 0.13498000e+00
- 1 22 0 0 0.46136821e+00 -0.50132019e+00 -0.28720196e+02 0.00000000e+00
- 1 22 0 0 0.20794749e+01 -0.24738335e+01 -0.14744593e+03 0.00000000e+00
- 1 211 0 0 0.17588828e+00 -0.39972230e+00 -0.13654333e+02 0.13957000e+00
- 2 111 828 829 0.15316807e+01 -0.60698547e+00 -0.59498564e+02 0.13498000e+00
- 1 211 0 0 0.10679675e+00 -0.26116834e+00 -0.11826002e+01 0.13957000e+00
- 1 -211 0 0 0.67371465e+00 0.15164774e+00 -0.59507065e+01 0.13957000e+00
- 1 22 0 0 0.50566695e+00 -0.10532359e+00 -0.55851996e+01 0.00000000e+00
- 1 211 0 0 0.21176776e+00 -0.19018793e+00 -0.34114913e+01 0.13957000e+00
- 1 -211 0 0 0.40348320e-01 -0.88960648e-01 -0.13431008e+01 0.13957000e+00
- 1 -211 0 0 0.31134152e+00 0.14645212e+00 -0.78922094e+01 0.13957000e+00
- 2 111 830 831 0.71816242e+00 -0.27375084e+00 -0.46517341e+01 0.13498000e+00
- 1 -211 0 0 0.56015016e+00 -0.22087232e-01 -0.24275406e+01 0.13957000e+00
- 1 211 0 0 0.78589091e+00 -0.13053958e+00 -0.55969873e+01 0.13957000e+00
- 2 111 832 833 0.47276597e+00 -0.32304338e+00 -0.24119489e+01 0.13498000e+00
- 1 2212 0 0 0.21991747e+01 0.24046057e+00 -0.97949960e+01 0.93827000e+00
- 1 211 0 0 0.18814276e+00 -0.12412255e+00 -0.74650853e+00 0.13957000e+00
- 1 -321 0 0 0.12055797e+01 0.17882276e+00 -0.66838994e+01 0.49360000e+00
- 2 111 834 835 0.10200166e+01 -0.46367805e+00 -0.51382973e+01 0.13498000e+00
- 2 -3122 836 837 0.32180683e+01 -0.74983163e+00 -0.20115206e+02 0.11156800e+01
- 1 22 0 0 0.50205056e-01 -0.70557739e-01 -0.54622535e+00 0.00000000e+00
- 1 -211 0 0 0.60907355e+00 0.60914295e+00 -0.32111668e+01 0.13957000e+00
- 2 111 838 839 0.61682750e+00 0.22849575e+00 -0.18955163e+01 0.13498000e+00
- 2 111 840 841 0.54466860e+00 0.38521712e-01 -0.21833050e+01 0.13498000e+00
- 2 111 842 843 0.14973661e+01 0.28559779e+00 -0.71380072e+01 0.13498000e+00
- 2 111 844 845 0.10037916e+01 0.15968104e+00 -0.52939255e+01 0.13498000e+00
- 1 211 0 0 0.73128035e+00 0.70135441e+00 -0.47929870e+01 0.13957000e+00
- 2 111 846 847 -0.15951716e+00 -0.83322722e-01 -0.11020231e+01 0.13498000e+00
- 2 3122 848 849 0.13210918e+01 0.14926658e+01 -0.13472253e+02 0.11156800e+01
- 1 -211 0 0 0.32731086e+00 0.31607827e+00 -0.45700143e+01 0.13957000e+00
- 2 311 850 850 0.14378358e+01 0.23263042e+01 -0.15959233e+02 0.49767000e+00
- 1 211 0 0 0.53306879e+00 0.38179382e+00 -0.44669965e+01 0.13957000e+00
- 2 -311 851 851 -0.90253615e-01 0.84564815e+00 -0.99858062e+01 0.49767000e+00
- 1 -211 0 0 -0.34693130e+00 0.63346497e+00 -0.48029402e+01 0.13957000e+00
- 1 211 0 0 -0.13463851e+00 0.84332409e+00 -0.48735081e+01 0.13957000e+00
- 2 111 852 853 -0.40739597e+00 0.61616459e+00 -0.26530670e+01 0.13498000e+00
- 1 -211 0 0 0.35357037e+00 0.20269885e+01 -0.14613159e+02 0.13957000e+00
- 2 111 854 855 -0.22099586e-01 0.12589626e-01 -0.74387760e+00 0.13498000e+00
- 1 -211 0 0 -0.47227775e+00 0.65667948e+00 -0.77650386e+01 0.13957000e+00
- 1 211 0 0 -0.21653233e+00 0.44641108e+00 -0.61671692e+01 0.13957000e+00
- 2 111 856 857 -0.17499047e+00 0.14031140e+00 -0.32232195e+01 0.13498000e+00
- 1 -211 0 0 -0.76847717e+00 0.21549055e+01 -0.13541705e+02 0.13957000e+00
- 1 211 0 0 -0.31459550e+00 0.69283782e+00 -0.36224922e+01 0.13957000e+00
- 2 111 858 859 -0.32643329e-01 0.11559193e+00 -0.10377474e+01 0.13498000e+00
- 1 321 0 0 -0.31735415e+00 -0.11193985e+00 -0.62287411e+01 0.49360000e+00
- 2 111 860 861 -0.23147879e+00 0.34802821e+00 -0.25863203e+01 0.13498000e+00
- 1 22 0 0 -0.51893441e+00 0.63797353e+00 -0.64650248e+01 0.00000000e+00
- 1 22 0 0 -0.12978644e+01 0.54421996e+00 -0.12878049e+02 0.00000000e+00
- 2 310 862 863 -0.86124146e+00 -0.44319469e+00 -0.59775082e+01 0.49767000e+00
- 1 22 0 0 -0.82716179e+00 -0.73483931e+00 -0.40605514e+01 0.00000000e+00
- 1 22 0 0 -0.29135538e+00 -0.33899912e+00 -0.14223069e+01 0.00000000e+00
- 1 211 0 0 -0.10846998e+01 -0.41006227e+00 -0.54018574e+01 0.13957000e+00
- 2 111 864 865 -0.58727031e+00 -0.58398644e+00 -0.55693971e+01 0.13498000e+00
- 2 310 866 867 -0.13058578e+00 -0.89782515e-01 -0.18108278e+01 0.49767000e+00
- 2 310 868 869 -0.12751079e+01 -0.13336095e+01 -0.33294519e+02 0.49767000e+00
- 1 -211 0 0 -0.70278291e-01 -0.55852897e+00 -0.62715738e+01 0.13957000e+00
- 2 111 870 871 -0.48605044e+00 -0.11342617e+00 -0.38671620e+01 0.13498000e+00
- 1 211 0 0 -0.51802231e+00 -0.81455436e+00 -0.34520561e+02 0.13957000e+00
- 1 -211 0 0 -0.21146722e+00 -0.35517950e+00 -0.78832657e+01 0.13957000e+00
- 1 211 0 0 -0.28640257e+00 -0.93054791e+00 -0.23079191e+02 0.13957000e+00
- 2 111 872 873 -0.19884225e+01 -0.32538719e+01 -0.11435951e+03 0.13498000e+00
- 1 2112 0 0 -0.25678389e+00 -0.11164059e+01 -0.33957945e+02 0.93957000e+00
- 2 111 874 875 -0.30531157e+00 -0.77609304e+00 -0.27884109e+02 0.13498000e+00
- 1 -211 0 0 -0.18114678e+00 -0.81530472e+00 -0.20933301e+02 0.13957000e+00
- 1 211 0 0 -0.10408016e+01 -0.94861319e+00 -0.45234507e+02 0.13957000e+00
- 1 321 0 0 -0.97337352e-01 0.30383445e+00 -0.32791098e+02 0.49360000e+00
- 1 -211 0 0 0.55284365e+00 -0.14156510e+00 -0.23726778e+02 0.13957000e+00
- 2 -311 876 876 -0.74071560e-02 0.28755407e+00 -0.11683955e+03 0.49767000e+00
- 1 -211 0 0 0.10639369e+00 0.22824875e-01 -0.24508703e+03 0.13957000e+00
- 1 211 0 0 -0.70213190e+00 0.12967911e+00 -0.12127105e+03 0.13957000e+00
- 2 111 877 878 0.46407013e-01 0.12277276e+00 -0.55097707e+01 0.13498000e+00
- 1 2212 0 0 0.40395912e+00 0.64962969e+00 -0.66914712e+03 0.93827000e+00
- 2 111 879 880 -0.55885549e-02 -0.87248774e-02 -0.22104005e+02 0.13498000e+00
- 1 2212 0 0 0.23159023e+01 0.21611881e+01 -0.38767822e+01 0.93827000e+00
- 1 211 0 0 0.13008638e+01 0.97219968e+00 -0.22870060e+01 0.13957000e+00
- 1 -211 0 0 0.84151453e+00 0.85633010e+00 -0.64276715e+00 0.13957000e+00
- 1 211 0 0 0.30237212e+01 0.12639083e+01 -0.26787295e+01 0.13957000e+00
- 2 -311 881 881 0.14162827e+01 -0.78313244e+00 -0.12875427e+01 0.49767000e+00
- 1 -211 0 0 0.25636354e+00 -0.10466411e-02 -0.13686834e+00 0.13957000e+00
- 1 2112 0 0 0.35107258e+01 -0.13500263e+01 -0.57912915e+01 0.93957000e+00
- 1 211 0 0 0.24819967e+00 -0.31800159e+00 -0.67675144e+00 0.13957000e+00
- 2 111 882 883 0.30454500e+00 -0.20539519e+00 -0.42450215e+00 0.13498000e+00
- 2 111 884 885 0.54554531e+00 -0.35373167e+00 -0.61747170e+00 0.13498000e+00
- 2 111 886 887 0.15276935e+01 -0.94230232e+00 -0.21910429e+01 0.13498000e+00
- 1 211 0 0 0.88597814e+00 -0.88008936e+00 -0.15134464e+01 0.13957000e+00
- 1 -211 0 0 0.47633330e+00 -0.34891005e+00 -0.13021414e+01 0.13957000e+00
- 2 111 888 889 0.56407056e-01 -0.16018638e-01 -0.32357003e+00 0.13498000e+00
- 1 211 0 0 0.11813467e+01 -0.19775529e+01 -0.22065164e+01 0.13957000e+00
- 2 111 890 891 0.14191813e+00 -0.41398888e-01 -0.26337521e-01 0.13498000e+00
- 1 211 0 0 0.11670749e+00 -0.74474917e-01 -0.17161066e+00 0.13957000e+00
- 1 -211 0 0 0.91143476e+00 -0.84624074e+00 -0.11161585e+01 0.13957000e+00
- 2 111 892 893 0.15416283e+00 -0.33914803e+00 -0.94737404e-01 0.13498000e+00
- 1 321 0 0 0.45280609e+00 -0.55158101e+00 -0.18526947e+01 0.49360000e+00
- 1 -211 0 0 0.52541111e+00 -0.61074226e+00 -0.56871372e+00 0.13957000e+00
- 2 -311 894 894 -0.16946295e-01 -0.76640199e+00 -0.82261243e+00 0.49767000e+00
- 1 -211 0 0 0.43916446e+00 -0.10726087e+01 -0.14506570e+01 0.13957000e+00
- 1 22 0 0 -0.25462322e+00 -0.15098274e+01 -0.21733544e+01 0.00000000e+00
- 1 22 0 0 -0.67270233e-01 -0.99917433e+00 -0.13466040e+01 0.00000000e+00
- 1 211 0 0 -0.16592080e+00 -0.15067508e+00 -0.29122234e+00 0.13957000e+00
- 1 -211 0 0 -0.21476362e+00 -0.11089267e+00 0.23332120e+00 0.13957000e+00
- 1 22 0 0 0.11923450e+00 -0.48955405e+00 -0.62777261e+00 0.00000000e+00
- 1 22 0 0 0.18459473e+00 -0.30668305e+00 -0.39105498e+00 0.00000000e+00
- 1 -211 0 0 -0.72131720e+00 -0.51802542e+00 -0.82909699e+00 0.13957000e+00
- 2 111 895 896 -0.16986753e+01 -0.22515915e+01 -0.41899869e+01 0.13498000e+00
- 1 -211 0 0 -0.13804858e+01 0.15683482e+00 -0.10612858e+01 0.13957000e+00
- 1 211 0 0 0.22250392e-01 -0.96162554e-01 -0.69038818e-01 0.13957000e+00
- 1 211 0 0 -0.79408971e+00 0.19230410e+00 -0.10581127e+01 0.13957000e+00
- 2 111 897 898 0.13435073e+00 0.22521634e-01 -0.21660111e+00 0.13498000e+00
- 1 -211 0 0 -0.21649634e+01 0.17859481e+00 -0.82729350e-01 0.13957000e+00
- 2 111 899 900 -0.41964115e+00 -0.14323223e+00 -0.28405304e+00 0.13498000e+00
- 1 22 0 0 -0.69989509e+00 0.82122128e+00 0.32393559e+00 0.00000000e+00
- 1 22 0 0 -0.78412952e+00 0.25133612e+00 0.84956060e-01 0.00000000e+00
- 1 22 0 0 -0.77691784e+00 0.21406697e+00 0.13855825e+00 0.00000000e+00
- 1 22 0 0 -0.38922261e+00 0.16562066e+00 -0.73938151e-02 0.00000000e+00
- 1 -211 0 0 -0.73575794e+00 0.81287511e+00 0.14469621e+00 0.13957000e+00
- 2 111 901 902 -0.10883723e+01 0.88450143e+00 0.91557315e+00 0.13498000e+00
- 1 -2112 0 0 -0.11983149e+01 0.14686957e+01 0.48875511e+00 0.93957000e+00
- 1 211 0 0 -0.18521676e+00 0.27616498e-01 0.56555122e-01 0.13957000e+00
- 1 211 0 0 0.14582828e-01 0.19405976e+00 0.34720291e+00 0.13957000e+00
- 1 -211 0 0 -0.89005152e+00 0.13192923e+00 0.13630147e+01 0.13957000e+00
- 1 2112 0 0 -0.89033876e+00 0.19455658e+00 0.15692224e+01 0.93957000e+00
- 1 -211 0 0 -0.78325701e+00 -0.24825547e+00 0.94506884e+00 0.13957000e+00
- 1 211 0 0 0.38056091e-01 0.11036239e+00 0.10892967e+01 0.13957000e+00
- 2 111 903 904 -0.61487535e-02 -0.26536313e+00 0.42859538e+00 0.13498000e+00
- 1 -2212 0 0 -0.10138477e+01 0.23136656e+00 0.24891833e+01 0.93827000e+00
- 2 111 905 906 0.19878320e-01 -0.88001002e-01 0.30301128e+00 0.13498000e+00
- 1 22 0 0 -0.18638136e+00 0.81089340e-01 0.77690547e+00 0.00000000e+00
- 1 22 0 0 -0.22032154e+00 -0.50960660e-01 0.91755101e+00 0.00000000e+00
- 1 -211 0 0 -0.48713331e+01 -0.23857670e+01 0.11117012e+02 0.13957000e+00
- 2 111 907 908 -0.45110150e+00 -0.41329147e+00 0.12493162e+01 0.13498000e+00
- 1 -211 0 0 -0.39092601e+01 -0.38118838e+00 -0.14585200e+02 0.13957000e+00
- 1 211 0 0 -0.11312247e+00 -0.18731350e-01 -0.94415137e+00 0.13957000e+00
- 1 22 0 0 -0.12391803e+00 0.93239609e-01 -0.61763889e+00 0.00000000e+00
- 1 22 0 0 -0.11725071e+01 0.43836154e+00 -0.55765679e+01 0.00000000e+00
- 1 22 0 0 -0.10497851e-01 0.27437613e-01 -0.39553528e+00 0.00000000e+00
- 1 22 0 0 0.17670254e+00 -0.62424678e-01 -0.22478929e+01 0.00000000e+00
- 2 -311 909 909 0.13074239e+01 -0.31031306e-01 -0.55016365e+01 0.49767000e+00
- 2 111 910 911 0.11692657e+01 -0.27727388e-01 -0.29709503e+01 0.13498000e+00
- 1 211 0 0 0.94739227e+00 0.11003891e+00 0.56762496e+01 0.13957000e+00
- 2 111 912 913 0.30074831e-01 0.21044140e+00 0.33206924e+01 0.13498000e+00
- 1 -211 0 0 0.10565665e+00 0.27743555e+00 0.25604755e+01 0.13957000e+00
- 2 111 914 915 0.31405638e+00 -0.97246999e-01 0.84701216e+00 0.13498000e+00
- 1 22 0 0 -0.13195327e+00 0.47576559e-02 0.22015441e+00 0.00000000e+00
- 1 22 0 0 -0.12166832e+00 -0.47325610e-01 0.58030736e+00 0.00000000e+00
- 1 -211 0 0 -0.42490542e+00 0.28685110e-01 0.22035380e+00 0.13957000e+00
- 1 211 0 0 -0.40185222e+00 -0.48604316e+00 0.60898288e+00 0.13957000e+00
- 2 111 916 917 -0.31680091e+00 -0.74285729e-03 0.33101707e+00 0.13498000e+00
- 2 111 918 919 0.15799816e+00 -0.39356997e-01 -0.16372685e+01 0.13498000e+00
- 2 111 920 921 -0.54343310e-01 0.14268111e+00 -0.13842666e+01 0.13498000e+00
- 2 111 922 924 0.31164165e-01 0.10368249e+00 -0.81124002e+00 0.13498000e+00
- 1 -211 0 0 0.13632222e+00 0.26890579e+00 -0.86766158e+01 0.13957000e+00
- 2 111 925 926 -0.15049166e+00 -0.28113764e+00 -0.28290682e+01 0.13498000e+00
- 1 211 0 0 -0.62032546e+00 -0.20716875e+01 -0.12218043e+02 0.13957000e+00
- 2 111 927 928 0.23930448e-01 -0.39311498e+00 -0.42509095e+01 0.13498000e+00
- 1 211 0 0 0.64586132e+00 -0.34838684e+00 -0.80723051e+01 0.13957000e+00
- 2 111 929 930 0.12735878e+00 0.46202261e-01 -0.37254939e+00 0.13498000e+00
- 1 2112 0 0 0.21124106e+00 -0.46484878e+00 -0.12599776e+02 0.93957000e+00
- 1 -211 0 0 -0.11807320e+00 -0.15232711e+00 -0.66373602e+01 0.13957000e+00
- 2 -3122 931 932 0.65532612e+00 -0.46443108e+00 -0.25801154e+02 0.11156800e+01
- 1 211 0 0 0.44580826e+00 -0.14216486e+00 -0.10473446e+02 0.13957000e+00
- 2 -311 933 933 0.58726588e-01 -0.47022831e+00 -0.34112036e+02 0.49767000e+00
- 1 -211 0 0 0.12314132e+00 0.92113401e-01 -0.37222027e+01 0.13957000e+00
- 1 130 0 0 0.56341381e+00 -0.56146089e+00 -0.25292586e+02 0.49767000e+00
- 1 -211 0 0 0.56654380e+00 0.47496888e-01 -0.78992282e+02 0.13957000e+00
- 2 111 934 935 0.13483212e+00 0.39337468e+00 -0.26701659e+02 0.13498000e+00
- 1 2212 0 0 -0.64204172e+00 0.85586030e+00 -0.17443108e+03 0.93827000e+00
- 2 111 936 937 -0.77030437e-01 0.45188379e+00 -0.71830890e+02 0.13498000e+00
- 1 -2212 0 0 -0.11544162e+01 0.10497846e+01 -0.37765404e+03 0.93827000e+00
- 2 111 938 939 -0.63853037e+00 0.48183872e+00 -0.14058535e+03 0.13498000e+00
- 1 211 0 0 -0.51004911e+00 -0.15010021e-01 -0.33738204e+02 0.13957000e+00
- 2 111 940 941 -0.13585732e+01 0.23381746e+00 -0.15065179e+03 0.13498000e+00
- 1 -211 0 0 -0.18684578e+01 -0.14883343e-01 -0.18101201e+03 0.13957000e+00
- 2 111 942 943 -0.10481523e+01 -0.55230092e+00 -0.10245961e+03 0.13498000e+00
- 2 111 944 945 -0.18245282e+00 -0.73556708e-01 -0.12742860e+02 0.13498000e+00
- 2 111 946 947 -0.34296040e+00 -0.14198018e+00 -0.22180403e+02 0.13498000e+00
- 2 111 948 949 -0.10850836e+01 -0.12314975e+00 -0.63018601e+02 0.13498000e+00
- 2 111 950 951 -0.47074204e-01 -0.71234433e-01 -0.22945562e+01 0.13498000e+00
- 2 111 952 953 -0.49744795e+00 -0.10932414e+00 -0.12072556e+02 0.13498000e+00
- 2 111 954 955 -0.17452792e+00 0.44715460e-02 -0.45663427e+01 0.13498000e+00
- 1 211 0 0 -0.19307221e+00 0.17673528e+00 -0.21831397e+02 0.13957000e+00
- 2 111 956 957 0.18661684e+00 -0.12293261e+00 -0.63270675e+01 0.13498000e+00
- 1 -211 0 0 0.96456672e-02 -0.15209600e+00 0.30916674e+02 0.13957000e+00
- 1 211 0 0 -0.11627994e+00 0.51779553e-01 0.21367655e+01 0.13957000e+00
- 1 22 0 0 0.84696189e-01 0.40670123e+00 0.12743094e+02 0.00000000e+00
- 2 111 958 959 -0.38976206e+00 -0.12861938e+00 0.72782791e+01 0.13498000e+00
- 1 22 0 0 0.60452537e+00 -0.23689712e+00 0.31877685e+02 0.00000000e+00
- 1 22 0 0 0.35472398e+00 -0.15899241e+00 0.14661495e+02 0.00000000e+00
- 1 22 0 0 0.33003549e+00 0.91499399e-01 0.82914885e+01 0.00000000e+00
- 2 111 960 961 -0.13288266e+00 0.76090908e-01 0.65679851e+00 0.13498000e+00
- 1 -211 0 0 0.22671675e+00 -0.22060376e+00 0.59439375e+00 0.13957000e+00
- 1 211 0 0 -0.20510137e+00 0.24409487e+00 0.68291369e+00 0.13957000e+00
- 2 311 962 962 0.59156383e+00 -0.62520618e+00 0.17627473e+01 0.49767000e+00
- 2 111 963 964 0.22157630e+00 0.12943734e+00 0.47668625e+00 0.13498000e+00
- 1 -321 0 0 -0.47891771e+00 0.29122267e-01 0.72213900e+00 0.49360000e+00
- 1 211 0 0 0.13216942e+00 -0.23745340e-01 0.69177990e+00 0.13957000e+00
- 2 310 965 966 -0.11898476e+00 0.37564174e+00 0.16260775e+01 0.49767000e+00
- 1 2212 0 0 0.27054833e+00 -0.12625979e+00 0.24135043e+00 0.93827000e+00
- 1 -211 0 0 0.54461702e-01 -0.13977566e+00 0.13925825e-01 0.13957000e+00
- 1 -211 0 0 -0.15718686e-01 0.28032752e+00 0.19453916e+00 0.13957000e+00
- 2 111 967 968 -0.52415182e+00 0.16695300e+00 -0.53983727e+00 0.13498000e+00
- 1 211 0 0 -0.21920983e+00 0.72890653e-01 0.14397121e+00 0.13957000e+00
- 2 111 969 970 0.26894080e+00 -0.21004758e+00 0.92082469e+00 0.13498000e+00
- 1 -211 0 0 -0.21363598e+00 -0.56651448e+00 0.29640198e+02 0.13957000e+00
- 1 211 0 0 0.31511398e-01 -0.27489576e+00 0.15476882e+02 0.13957000e+00
- 2 111 971 972 0.58582634e-01 -0.53590477e+00 0.26382540e+02 0.13498000e+00
- 1 22 0 0 0.21876752e+00 0.89557937e-01 0.53206413e+01 0.00000000e+00
- 1 22 0 0 0.14916078e+00 0.18843531e+00 0.69576260e+01 0.00000000e+00
- 1 -2212 0 0 -0.35133241e+00 0.11674393e+01 0.87881786e+02 0.93827000e+00
- 1 211 0 0 0.92787584e-01 0.16720207e-01 0.14948570e+02 0.13957000e+00
- 1 22 0 0 -0.63952989e+00 0.35221882e+01 0.58861444e+01 0.00000000e+00
- 1 22 0 0 -0.88825523e+00 0.47055305e+01 0.81713895e+01 0.00000000e+00
- 1 130 0 0 0.74654299e+00 0.75549220e+00 0.12685812e+01 0.49767000e+00
- 1 22 0 0 -0.19722258e-01 0.10947088e+00 0.60728958e-01 0.00000000e+00
- 1 22 0 0 0.19866422e+00 0.57462314e+00 0.41576177e+00 0.00000000e+00
- 1 22 0 0 0.31500519e-01 0.70400814e-01 0.23387116e-01 0.00000000e+00
- 1 22 0 0 -0.85518287e-01 0.46291118e-02 0.82244661e-02 0.00000000e+00
- 1 22 0 0 0.99706330e-01 0.17981623e+00 0.12027774e+01 0.00000000e+00
- 1 22 0 0 0.91133730e+00 0.94616190e+00 0.77367996e+01 0.00000000e+00
- 1 22 0 0 0.59690259e-01 0.32816678e+00 0.14505792e+01 0.00000000e+00
- 1 22 0 0 0.83268818e-01 0.10285223e+00 0.87020275e+00 0.00000000e+00
- 1 22 0 0 0.19801908e+00 0.27655308e+00 0.19772457e+01 0.00000000e+00
- 1 22 0 0 0.43308027e+00 0.56641196e+00 0.31427099e+01 0.00000000e+00
- 1 22 0 0 0.68531731e-01 0.36539418e-01 0.67010005e+00 0.00000000e+00
- 1 22 0 0 -0.77481605e-02 0.20403078e+00 0.20467715e+01 0.00000000e+00
- 1 22 0 0 0.12308457e+01 0.35694539e+00 0.91570828e+01 0.00000000e+00
- 1 22 0 0 0.10615999e+01 0.42809483e+00 0.85770147e+01 0.00000000e+00
- 1 22 0 0 0.18416892e+00 0.11158456e+00 0.11518538e+01 0.00000000e+00
- 1 22 0 0 -0.22830591e-01 0.16245296e-02 0.15811188e+00 0.00000000e+00
- 1 22 0 0 0.82151921e-01 0.34692007e-01 0.28848538e+00 0.00000000e+00
- 1 22 0 0 0.86866423e+00 -0.66177665e-01 0.31668758e+01 0.00000000e+00
- 1 22 0 0 0.28046733e+00 0.20940916e+00 0.32889972e+00 0.00000000e+00
- 1 22 0 0 0.51185956e-01 0.68860420e-01 0.19225164e+00 0.00000000e+00
- 2 310 973 974 0.48743600e+00 0.32252164e+00 0.27942924e+00 0.49767000e+00
- 2 111 975 976 0.23299204e+00 0.20218540e+00 0.40045378e+00 0.13498000e+00
- 2 111 977 978 0.83619234e+00 0.13109251e-01 0.15433539e+01 0.13498000e+00
- 1 22 0 0 0.25134303e-01 0.11480519e+00 0.65574089e-01 0.00000000e+00
- 1 22 0 0 0.90276844e-01 0.83452617e+00 0.10042064e+00 0.00000000e+00
- 1 22 0 0 0.39656289e-01 0.14680784e+00 -0.32595748e-01 0.00000000e+00
- 1 22 0 0 0.31606191e+00 0.36082428e+00 0.44125987e-03 0.00000000e+00
- 1 22 0 0 0.30558917e-01 0.73228089e-01 0.17818325e-01 0.00000000e+00
- 1 22 0 0 0.32217399e-01 0.28467156e+00 0.35866401e+00 0.00000000e+00
- 1 22 0 0 -0.24495060e+00 0.75904757e+00 -0.89163693e+00 0.00000000e+00
- 1 22 0 0 -0.22968991e+00 0.39208597e+00 -0.47119964e+00 0.00000000e+00
- 2 310 979 980 -0.30274889e+00 0.83770799e+00 -0.62402359e+00 0.49767000e+00
- 2 310 981 982 -0.18009209e+00 0.19481282e+00 -0.23621198e+00 0.49767000e+00
- 1 22 0 0 -0.33232425e+00 0.30857826e+00 -0.64166406e+00 0.00000000e+00
- 1 22 0 0 -0.76571669e-01 0.13587244e+00 -0.12742787e+00 0.00000000e+00
- 1 211 0 0 -0.49899197e+00 0.14553083e+00 -0.25298632e+00 0.13957000e+00
- 1 -211 0 0 -0.83848383e+00 -0.27680052e+00 -0.49549429e+00 0.13957000e+00
- 1 22 0 0 -0.20283851e+00 -0.28458582e+00 -0.15093095e+00 0.00000000e+00
- 1 22 0 0 -0.41004245e+00 -0.89126016e+00 -0.28424462e+00 0.00000000e+00
- 1 22 0 0 -0.54308986e-01 -0.18050138e+00 0.20384128e-01 0.00000000e+00
- 1 22 0 0 -0.48610608e+00 -0.10821608e+01 -0.17333236e+00 0.00000000e+00
- 1 -2212 0 0 0.24988130e+00 -0.15447329e+01 0.33634486e+01 0.93827000e+00
- 1 211 0 0 0.98376901e-01 -0.49966426e+00 0.10969422e+01 0.13957000e+00
- 1 2212 0 0 0.41317786e+00 -0.63017051e+00 0.10284815e+01 0.93827000e+00
- 1 -211 0 0 0.16700311e+00 -0.44940785e-01 0.15286469e+00 0.13957000e+00
- 1 22 0 0 0.12722213e+00 0.42071197e-01 0.25265820e+01 0.00000000e+00
- 1 22 0 0 0.67501013e-01 -0.48413439e-01 0.37559828e+01 0.00000000e+00
- 1 22 0 0 -0.79060176e+00 -0.62295024e-01 0.88425571e+01 0.00000000e+00
- 1 22 0 0 -0.65715778e+00 0.67575630e-01 0.70371896e+01 0.00000000e+00
- 1 22 0 0 -0.84795049e+00 0.18547389e+00 0.17361239e+02 0.00000000e+00
- 1 22 0 0 -0.48620293e+00 0.25201028e-01 0.11069865e+02 0.00000000e+00
- 1 22 0 0 -0.19493876e+00 -0.72471173e-02 0.12917404e+02 0.00000000e+00
- 1 22 0 0 -0.35112936e+00 -0.38929254e-01 0.14136652e+02 0.00000000e+00
- 1 22 0 0 0.13783599e+00 0.96634233e-01 0.11664021e+02 0.00000000e+00
- 1 22 0 0 0.46236201e-01 -0.40035186e-01 0.25679484e+01 0.00000000e+00
- 1 22 0 0 -0.26426117e-01 0.87788132e-01 0.22086008e+01 0.00000000e+00
- 1 22 0 0 0.87796965e-02 0.13281687e+00 0.97410269e+01 0.00000000e+00
- 1 22 0 0 0.21668883e+00 -0.19756845e+00 0.28921186e+02 0.00000000e+00
- 1 11 0 0 0.10086433e+00 -0.44806484e-01 0.92766300e+01 0.51000000e-03
- 1 -11 0 0 0.22070234e+00 -0.76686987e-01 0.18848843e+02 0.51000000e-03
- 1 -211 0 0 -0.18074459e+00 -0.43317168e+00 0.79766917e+02 0.13957000e+00
- 1 211 0 0 -0.26048722e+00 -0.39479715e+00 0.59631081e+02 0.13957000e+00
- 2 111 983 984 -0.60581208e-01 -0.17182545e+00 0.53315277e+02 0.13498000e+00
- 1 22 0 0 -0.24003548e+00 -0.13242802e+00 0.56134269e+02 0.00000000e+00
- 1 22 0 0 -0.93997926e-02 -0.51482063e-02 0.17726009e+02 0.00000000e+00
- 1 22 0 0 -0.26336422e+00 0.17906687e+00 0.16104933e+03 0.00000000e+00
- 1 22 0 0 -0.34189126e+00 0.80587525e-01 0.21157435e+03 0.00000000e+00
- 1 22 0 0 -0.38590368e+00 -0.60666124e-01 0.18235491e+03 0.00000000e+00
- 1 22 0 0 -0.27728992e+00 -0.92033449e-01 0.94943253e+02 0.00000000e+00
- 1 22 0 0 -0.86756956e-01 -0.73526730e-01 0.24399377e+02 0.00000000e+00
- 1 22 0 0 -0.84028671e-01 0.44518091e-01 0.38801931e+02 0.00000000e+00
- 2 310 985 986 0.26310674e+00 -0.28883691e+00 0.90216441e+01 0.49767000e+00
- 1 22 0 0 -0.17941055e+00 -0.21930680e+00 0.28553277e+01 0.00000000e+00
- 1 22 0 0 -0.11114346e+00 -0.20225579e-01 0.15424250e+01 0.00000000e+00
- 1 22 0 0 -0.17037858e+00 -0.16389214e+00 0.26171651e+02 0.00000000e+00
- 1 22 0 0 0.91339251e-02 -0.22755773e-01 0.75045657e+00 0.00000000e+00
- 1 22 0 0 0.14896956e+00 -0.17015056e+00 0.57898518e+02 0.00000000e+00
- 1 22 0 0 -0.37145341e-02 0.14340501e-01 0.11309858e+01 0.00000000e+00
- 1 22 0 0 -0.67188803e-01 -0.96746992e-01 0.11317032e+03 0.00000000e+00
- 1 22 0 0 0.29726246e-01 -0.14588213e-01 0.77057809e+01 0.00000000e+00
- 1 22 0 0 -0.45976988e-02 -0.11892955e+00 -0.38547003e+01 0.00000000e+00
- 1 22 0 0 0.14384023e+00 -0.13012968e+00 -0.82201603e+01 0.00000000e+00
- 1 22 0 0 0.63783561e-01 -0.87776747e-02 -0.16726550e+01 0.00000000e+00
- 1 22 0 0 0.14678971e+01 -0.59820779e+00 -0.57825909e+02 0.00000000e+00
- 1 22 0 0 0.10890008e-01 0.11391415e-01 -0.56803193e-01 0.00000000e+00
- 1 22 0 0 0.70727241e+00 -0.28514225e+00 -0.45949309e+01 0.00000000e+00
- 1 22 0 0 0.20899228e+00 -0.19135595e+00 -0.14119609e+01 0.00000000e+00
- 1 22 0 0 0.26377369e+00 -0.13168743e+00 -0.99998797e+00 0.00000000e+00
- 1 22 0 0 0.75469860e+00 -0.34698638e+00 -0.40670887e+01 0.00000000e+00
- 1 22 0 0 0.26531798e+00 -0.11669167e+00 -0.10712086e+01 0.00000000e+00
- 1 -2212 0 0 0.28868374e+01 -0.62144277e+00 -0.17458475e+02 0.93827000e+00
- 1 211 0 0 0.33123091e+00 -0.12838886e+00 -0.26567312e+01 0.13957000e+00
- 1 22 0 0 0.59595374e+00 0.20483075e+00 -0.17029414e+01 0.00000000e+00
- 1 22 0 0 0.20873761e-01 0.23665004e-01 -0.19257495e+00 0.00000000e+00
- 1 22 0 0 0.15397061e+00 -0.25570382e-01 -0.43903429e+00 0.00000000e+00
- 1 22 0 0 0.39069798e+00 0.64092094e-01 -0.17442707e+01 0.00000000e+00
- 1 22 0 0 0.19838231e+00 0.15277120e-01 -0.11363901e+01 0.00000000e+00
- 1 22 0 0 0.12989838e+01 0.27032067e+00 -0.60016171e+01 0.00000000e+00
- 1 22 0 0 0.96781891e+00 0.12965205e+00 -0.51133243e+01 0.00000000e+00
- 1 22 0 0 0.35972689e-01 0.30028987e-01 -0.18060116e+00 0.00000000e+00
- 1 22 0 0 -0.18049257e+00 -0.91560598e-01 -0.99775701e+00 0.00000000e+00
- 1 22 0 0 0.20975407e-01 0.82378759e-02 -0.10426608e+00 0.00000000e+00
- 1 2212 0 0 0.97988993e+00 0.11637770e+01 -0.10826594e+02 0.93827000e+00
- 1 -211 0 0 0.34120188e+00 0.32888875e+00 -0.26456590e+01 0.13957000e+00
- 1 130 0 0 0.14378358e+01 0.23263042e+01 -0.15959233e+02 0.49767000e+00
- 1 130 0 0 -0.90253615e-01 0.84564815e+00 -0.99858062e+01 0.49767000e+00
- 1 22 0 0 -0.27093563e+00 0.36984959e+00 -0.18613401e+01 0.00000000e+00
- 1 22 0 0 -0.13646033e+00 0.24631500e+00 -0.79172696e+00 0.00000000e+00
- 1 22 0 0 -0.38421776e-01 0.46216036e-01 -0.15281163e+00 0.00000000e+00
- 1 22 0 0 0.16322190e-01 -0.33626410e-01 -0.59106596e+00 0.00000000e+00
- 1 22 0 0 -0.66606478e-01 0.25533711e-02 -0.15553472e+01 0.00000000e+00
- 1 22 0 0 -0.10838399e+00 0.13775803e+00 -0.16678723e+01 0.00000000e+00
- 1 22 0 0 0.15377966e-01 0.77183230e-01 -0.88796631e+00 0.00000000e+00
- 1 22 0 0 -0.48021294e-01 0.38408701e-01 -0.14978108e+00 0.00000000e+00
- 1 22 0 0 -0.21327005e-01 0.14640528e+00 -0.89034278e+00 0.00000000e+00
- 1 22 0 0 -0.21015179e+00 0.20162293e+00 -0.16959775e+01 0.00000000e+00
- 2 111 987 988 -0.57550851e+00 -0.67529407e-01 -0.30461014e+01 0.13498000e+00
- 2 111 989 990 -0.28573295e+00 -0.37566528e+00 -0.29314068e+01 0.13498000e+00
- 1 22 0 0 -0.39997614e+00 -0.41586248e+00 -0.34422841e+01 0.00000000e+00
- 1 22 0 0 -0.18729418e+00 -0.16812396e+00 -0.21271130e+01 0.00000000e+00
- 1 -211 0 0 0.76034200e-01 0.39498605e-02 -0.12889198e+01 0.13957000e+00
- 1 211 0 0 -0.20661998e+00 -0.93732376e-01 -0.52190804e+00 0.13957000e+00
- 1 211 0 0 -0.10670655e+01 -0.88295896e+00 -0.23382265e+02 0.13957000e+00
- 1 -211 0 0 -0.20804237e+00 -0.45065055e+00 -0.99122538e+01 0.13957000e+00
- 1 22 0 0 -0.46481458e+00 -0.12796591e+00 -0.37820799e+01 0.00000000e+00
- 1 22 0 0 -0.21235864e-01 0.14539742e-01 -0.85082116e-01 0.00000000e+00
- 1 22 0 0 -0.51580921e+00 -0.87847798e+00 -0.28870758e+02 0.00000000e+00
- 1 22 0 0 -0.14726133e+01 -0.23753939e+01 -0.85488753e+02 0.00000000e+00
- 1 22 0 0 -0.10899250e+00 -0.13167285e+00 -0.53756560e+01 0.00000000e+00
- 1 22 0 0 -0.19631907e+00 -0.64442019e+00 -0.22508453e+02 0.00000000e+00
- 2 310 991 992 -0.74071560e-02 0.28755407e+00 -0.11683955e+03 0.49767000e+00
- 1 22 0 0 -0.43951631e-01 0.12801648e-01 -0.12450607e+01 0.00000000e+00
- 1 22 0 0 0.90358644e-01 0.10997111e+00 -0.42647101e+01 0.00000000e+00
- 1 22 0 0 0.45485799e-01 0.44440145e-02 -0.18210079e+02 0.00000000e+00
- 1 22 0 0 -0.51074354e-01 -0.13168892e-01 -0.38939266e+01 0.00000000e+00
- 1 130 0 0 0.14162827e+01 -0.78313244e+00 -0.12875427e+01 0.49767000e+00
- 1 22 0 0 0.21947368e+00 -0.11144147e+00 -0.19051936e+00 0.00000000e+00
- 1 22 0 0 0.85071318e-01 -0.93953724e-01 -0.23398279e+00 0.00000000e+00
- 1 22 0 0 0.85238114e-01 -0.58600663e-01 -0.38397373e-01 0.00000000e+00
- 1 22 0 0 0.46030720e+00 -0.29513101e+00 -0.57907432e+00 0.00000000e+00
- 1 22 0 0 0.34256351e+00 -0.18937165e+00 -0.56355842e+00 0.00000000e+00
- 1 22 0 0 0.11851300e+01 -0.75293067e+00 -0.16274845e+01 0.00000000e+00
- 1 22 0 0 0.34734135e-01 -0.75735195e-01 -0.19507284e+00 0.00000000e+00
- 1 22 0 0 0.21672922e-01 0.59716557e-01 -0.12849719e+00 0.00000000e+00
- 1 22 0 0 0.13005375e+00 -0.54336232e-01 0.28960983e-01 0.00000000e+00
- 1 22 0 0 0.11864382e-01 0.12937345e-01 -0.55298503e-01 0.00000000e+00
- 1 22 0 0 0.10551480e+00 -0.24385052e+00 -0.18314652e-02 0.00000000e+00
- 1 22 0 0 0.48648035e-01 -0.95297511e-01 -0.92905938e-01 0.00000000e+00
- 1 130 0 0 -0.16946295e-01 -0.76640199e+00 -0.82261243e+00 0.49767000e+00
- 1 22 0 0 -0.52645035e+00 -0.63894614e+00 -0.13205722e+01 0.00000000e+00
- 1 22 0 0 -0.11722249e+01 -0.16126453e+01 -0.28694147e+01 0.00000000e+00
- 1 22 0 0 0.12650182e+00 -0.20039740e-01 -0.92843385e-01 0.00000000e+00
- 1 22 0 0 0.78489121e-02 0.42561374e-01 -0.12375773e+00 0.00000000e+00
- 1 22 0 0 -0.13769603e+00 0.75728136e-02 -0.47397002e-01 0.00000000e+00
- 1 22 0 0 -0.28194512e+00 -0.15080504e+00 -0.23665603e+00 0.00000000e+00
- 1 22 0 0 -0.68356935e+00 0.53928816e+00 0.49067159e+00 0.00000000e+00
- 1 22 0 0 -0.40480294e+00 0.34521326e+00 0.42490157e+00 0.00000000e+00
- 1 22 0 0 0.61190521e-03 0.12252057e-01 0.13700678e-02 0.00000000e+00
- 1 22 0 0 -0.67606587e-02 -0.27761519e+00 0.42722531e+00 0.00000000e+00
- 1 22 0 0 0.62066304e-02 -0.16921012e-03 -0.13580060e-01 0.00000000e+00
- 1 22 0 0 0.13671690e-01 -0.87831792e-01 0.31659134e+00 0.00000000e+00
- 1 22 0 0 -0.30116406e+00 -0.20515235e+00 0.63946862e+00 0.00000000e+00
- 1 22 0 0 -0.14993744e+00 -0.20813913e+00 0.60984753e+00 0.00000000e+00
- 1 130 0 0 0.13074239e+01 -0.31031306e-01 -0.55016365e+01 0.49767000e+00
- 1 22 0 0 0.52075096e+00 0.54674084e-01 -0.13294452e+01 0.00000000e+00
- 1 22 0 0 0.64851476e+00 -0.82401472e-01 -0.16415051e+01 0.00000000e+00
- 1 22 0 0 -0.49515145e-01 0.41277222e-01 0.77231394e+00 0.00000000e+00
- 1 22 0 0 0.79589976e-01 0.16916418e+00 0.25483784e+01 0.00000000e+00
- 1 22 0 0 0.17021540e+00 -0.11136583e+00 0.39990519e+00 0.00000000e+00
- 1 22 0 0 0.14384098e+00 0.14118826e-01 0.44710697e+00 0.00000000e+00
- 1 22 0 0 -0.85310590e-01 -0.45987135e-01 0.15714156e+00 0.00000000e+00
- 1 22 0 0 -0.23149032e+00 0.45244277e-01 0.17387552e+00 0.00000000e+00
- 1 22 0 0 0.23105647e-02 -0.43398936e-01 -0.17425090e+00 0.00000000e+00
- 1 22 0 0 0.15568759e+00 0.40419392e-02 -0.14630176e+01 0.00000000e+00
- 1 22 0 0 -0.78202140e-01 0.12786846e+00 -0.78013873e+00 0.00000000e+00
- 1 22 0 0 0.23858830e-01 0.14812656e-01 -0.60412783e+00 0.00000000e+00
- 1 22 0 0 0.16018530e-02 0.10082996e+00 -0.77503149e+00 0.00000000e+00
- 1 -11 0 0 0.20394512e-01 -0.28307896e-02 -0.23661191e-01 0.51000000e-03
- 1 11 0 0 0.91677999e-02 0.56833203e-02 -0.12547339e-01 0.51000000e-03
- 1 22 0 0 -0.11279627e+00 -0.22700800e+00 -0.25835773e+01 0.00000000e+00
- 1 22 0 0 -0.37695386e-01 -0.54129639e-01 -0.24549084e+00 0.00000000e+00
- 1 22 0 0 0.79309600e-01 -0.26626595e+00 -0.28797895e+01 0.00000000e+00
- 1 22 0 0 -0.55379152e-01 -0.12684903e+00 -0.13711200e+01 0.00000000e+00
- 1 22 0 0 0.10335237e+00 0.77372563e-01 -0.17574131e+00 0.00000000e+00
- 1 22 0 0 0.24006410e-01 -0.31170301e-01 -0.19680808e+00 0.00000000e+00
- 1 -2212 0 0 0.62359571e+00 -0.35365888e+00 -0.20980863e+02 0.93827000e+00
- 1 211 0 0 0.31730415e-01 -0.11077220e+00 -0.48202906e+01 0.13957000e+00
- 1 130 0 0 0.58726588e-01 -0.47022831e+00 -0.34112036e+02 0.49767000e+00
- 1 22 0 0 0.13990256e+00 0.39127780e+00 -0.26657622e+02 0.00000000e+00
- 1 22 0 0 -0.50704370e-02 0.20968795e-02 -0.44037348e-01 0.00000000e+00
- 1 22 0 0 -0.98044285e-01 0.18960779e+00 -0.34815049e+02 0.00000000e+00
- 1 22 0 0 0.21013848e-01 0.26227600e+00 -0.37015841e+02 0.00000000e+00
- 1 22 0 0 -0.60270823e+00 0.44224113e+00 -0.12390140e+03 0.00000000e+00
- 1 22 0 0 -0.35822135e-01 0.39597594e-01 -0.16683941e+02 0.00000000e+00
- 1 22 0 0 -0.81197720e+00 0.12733034e+00 -0.82591173e+02 0.00000000e+00
- 1 22 0 0 -0.54659598e+00 0.10648712e+00 -0.68060621e+02 0.00000000e+00
- 1 22 0 0 -0.89342729e+00 -0.51881632e+00 -0.90193128e+02 0.00000000e+00
- 1 22 0 0 -0.15472498e+00 -0.33484606e-01 -0.12266479e+02 0.00000000e+00
- 1 22 0 0 -0.19195259e+00 -0.78037413e-01 -0.96904272e+01 0.00000000e+00
- 1 22 0 0 0.94997651e-02 0.44807053e-02 -0.30524333e+01 0.00000000e+00
- 1 22 0 0 -0.33639068e+00 -0.11873495e+00 -0.21678980e+02 0.00000000e+00
- 1 22 0 0 -0.65697184e-02 -0.23245227e-01 -0.50142287e+00 0.00000000e+00
- 1 22 0 0 -0.61414018e+00 -0.10874611e+00 -0.32737941e+02 0.00000000e+00
- 1 22 0 0 -0.47094346e+00 -0.14403632e-01 -0.30280660e+02 0.00000000e+00
- 1 22 0 0 0.89707746e-02 -0.97309372e-01 -0.14584727e+01 0.00000000e+00
- 1 22 0 0 -0.56044978e-01 0.26074939e-01 -0.83608354e+00 0.00000000e+00
- 1 22 0 0 -0.42024002e+00 -0.93010867e-01 -0.11081718e+02 0.00000000e+00
- 1 22 0 0 -0.77207926e-01 -0.16313273e-01 -0.99083765e+00 0.00000000e+00
- 1 22 0 0 0.38097836e-02 -0.32738078e-02 -0.15749842e+01 0.00000000e+00
- 1 22 0 0 -0.17833771e+00 0.77453538e-02 -0.29913585e+01 0.00000000e+00
- 1 22 0 0 0.79358090e-02 -0.68760590e-02 -0.30074453e-01 0.00000000e+00
- 1 22 0 0 0.17868103e+00 -0.11605655e+00 -0.62969931e+01 0.00000000e+00
- 1 22 0 0 -0.85193766e-01 -0.58837637e-01 0.10828167e+01 0.00000000e+00
- 1 22 0 0 -0.30456830e+00 -0.69781738e-01 0.61954624e+01 0.00000000e+00
- 1 22 0 0 -0.13174449e+00 0.16895735e-01 0.33104414e+00 0.00000000e+00
- 1 22 0 0 -0.11381732e-02 0.59195174e-01 0.32575438e+00 0.00000000e+00
- 1 130 0 0 0.59156383e+00 -0.62520618e+00 0.17627473e+01 0.49767000e+00
- 1 22 0 0 0.17419513e+00 0.14779726e+00 0.31966924e+00 0.00000000e+00
- 1 22 0 0 0.47381170e-01 -0.18359915e-01 0.15701701e+00 0.00000000e+00
- 1 211 0 0 -0.11320227e+00 0.25376221e+00 0.14721331e+01 0.13957000e+00
- 1 -211 0 0 -0.57824878e-02 0.12187953e+00 0.15394440e+00 0.13957000e+00
- 1 22 0 0 -0.79598306e-01 0.53464856e-01 -0.16133427e+00 0.00000000e+00
- 1 22 0 0 -0.44455352e+00 0.11348814e+00 -0.37850300e+00 0.00000000e+00
- 1 22 0 0 0.10327722e-01 -0.42125515e-02 0.17638606e+00 0.00000000e+00
- 1 22 0 0 0.25861308e+00 -0.20583503e+00 0.74443863e+00 0.00000000e+00
- 1 22 0 0 -0.27636561e-01 -0.32461983e+00 0.16529041e+02 0.00000000e+00
- 1 22 0 0 0.86219195e-01 -0.21128494e+00 0.98534997e+01 0.00000000e+00
- 1 -211 0 0 0.49655767e+00 0.21856673e+00 0.10422209e+00 0.13957000e+00
- 1 211 0 0 -0.91216711e-02 0.10395491e+00 0.17520715e+00 0.13957000e+00
- 1 22 0 0 0.80305559e-01 0.39786337e-01 0.21609581e+00 0.00000000e+00
- 1 22 0 0 0.15268648e+00 0.16239906e+00 0.18435797e+00 0.00000000e+00
- 1 22 0 0 0.55392093e+00 0.70392672e-01 0.98342431e+00 0.00000000e+00
- 1 22 0 0 0.28227141e+00 -0.57283422e-01 0.55992955e+00 0.00000000e+00
- 1 211 0 0 -0.12225580e+00 0.17831047e+00 0.38589883e-02 0.13957000e+00
- 1 -211 0 0 -0.18049309e+00 0.65939752e+00 -0.62788258e+00 0.13957000e+00
- 1 -211 0 0 -0.24861706e+00 0.17971840e+00 -0.29162691e+00 0.13957000e+00
- 1 211 0 0 0.68524964e-01 0.15094419e-01 0.55414936e-01 0.13957000e+00
- 1 22 0 0 0.16221185e-01 0.11087932e-01 0.19482087e+01 0.00000000e+00
- 1 22 0 0 -0.76802393e-01 -0.18291338e+00 0.51367068e+02 0.00000000e+00
- 2 111 993 994 0.13773436e+00 -0.36199058e+00 0.71341516e+01 0.13498000e+00
- 2 111 995 996 0.12537238e+00 0.73153677e-01 0.18874924e+01 0.13498000e+00
- 1 22 0 0 -0.41236074e+00 -0.63647897e-01 -0.24657546e+01 0.00000000e+00
- 1 22 0 0 -0.16314776e+00 -0.38815106e-02 -0.58034687e+00 0.00000000e+00
- 1 22 0 0 -0.17912140e+00 -0.18770297e+00 -0.12237528e+01 0.00000000e+00
- 1 22 0 0 -0.10661155e+00 -0.18796231e+00 -0.17076539e+01 0.00000000e+00
- 2 111 997 998 0.53113827e-01 0.17835603e-01 -0.11046445e+02 0.13498000e+00
- 2 111 999 1000 -0.60520983e-01 0.26971847e+00 -0.10579310e+03 0.13498000e+00
- 1 22 0 0 0.92873612e-01 -0.29270541e+00 0.44881011e+01 0.00000000e+00
- 1 22 0 0 0.44860750e-01 -0.69285174e-01 0.26460505e+01 0.00000000e+00
- 1 22 0 0 0.89970294e-01 -0.95910023e-03 0.50581540e+00 0.00000000e+00
- 1 22 0 0 0.35402086e-01 0.74112778e-01 0.13816770e+01 0.00000000e+00
- 1 22 0 0 0.82173252e-01 -0.19851410e-01 -0.45015498e+01 0.00000000e+00
- 1 22 0 0 -0.29059425e-01 0.37687014e-01 -0.65448951e+01 0.00000000e+00
- 1 22 0 0 0.74885588e-02 0.14770955e-01 -0.11984512e+01 0.00000000e+00
- 1 22 0 0 -0.68009542e-01 0.25494751e+00 -0.10459465e+03 0.00000000e+00
- 253
- 2 25 2 3 -0.25756741e+02 -0.20624258e+02 -0.15062437e+03 0.12500052e+03
- 2 23 4 5 0.11151378e+00 0.56370165e+01 -0.40089153e+02 0.31132395e+02
- 2 23 6 8 -0.25868255e+02 -0.26261275e+02 -0.11053522e+03 0.90322974e+02
- 1 11 0 0 0.13842408e+02 0.57613018e+01 -0.10075188e+02 0.51000000e-03
- 1 -11 0 0 -0.13730894e+02 -0.12428527e+00 -0.30013965e+02 0.51000000e-03
- 1 13 0 0 0.33793618e+02 -0.10989375e+02 -0.47269901e+02 0.10566000e+00
- 1 -13 0 0 -0.59661259e+02 -0.15271732e+02 -0.63264673e+02 0.10566000e+00
- 1 22 0 0 -0.61383048e-03 -0.16763534e-03 -0.64035193e-03 0.00000000e+00
- 2 3 32 32 -0.48978950e+00 0.41006724e+01 0.42871600e+02 0.50000000e+00
- 2 21 32 32 0.10248032e+01 0.71929486e+00 0.14474720e+02 0.00000000e+00
- 2 21 32 32 0.58248094e+01 0.69396793e+00 0.66312877e+02 0.00000000e+00
- 2 21 32 32 0.12993722e+00 -0.18060212e+00 0.93368441e+01 0.00000000e+00
- 2 21 32 32 -0.53162938e+00 0.17334115e+00 0.30884519e+02 0.00000000e+00
- 2 2101 32 32 0.12393422e+01 -0.12344500e+01 0.61297676e+04 0.57933000e+00
- 2 -4 45 45 0.18642083e+02 -0.75666155e+01 0.60150629e+02 0.15000000e+01
- 2 21 45 45 0.60325968e+00 0.18645440e+00 0.65327173e+00 0.00000000e+00
- 2 21 45 45 -0.14425084e+01 0.26679593e+01 0.31302183e+01 0.00000000e+00
- 2 21 45 45 -0.24633354e+01 0.20475734e+01 0.42891293e+01 0.00000000e+00
- 2 21 45 45 -0.84590374e+00 0.66269821e+00 -0.69247816e-02 0.00000000e+00
- 2 21 45 45 -0.23603594e+01 0.27712945e+01 0.19894481e+01 0.00000000e+00
- 2 21 45 45 -0.16572352e+01 0.10450202e+01 0.21435146e+01 0.00000000e+00
- 2 21 45 45 -0.60295410e+00 0.55918276e-01 -0.19640224e+00 0.00000000e+00
- 2 21 45 45 -0.90213818e+00 0.93839498e+00 0.11118903e+03 0.00000000e+00
- 2 21 45 45 -0.14863030e+01 0.12958868e+01 0.44699710e+03 0.00000000e+00
- 2 2 45 45 0.11993714e+01 -0.12125875e+01 0.45861375e+02 0.33000000e+00
- 2 2 71 71 0.46652537e+01 0.52035110e+01 -0.15954163e+03 0.33000000e+00
- 2 21 71 71 0.43833913e+01 0.70537498e+01 -0.10585162e+03 0.00000000e+00
- 2 21 71 71 0.10926981e+01 0.17275241e+01 -0.37581615e+02 0.00000000e+00
- 2 21 71 71 -0.59699273e+00 -0.11282891e+00 -0.17390121e+02 0.00000000e+00
- 2 21 71 71 0.46999302e+00 0.75567496e+00 -0.29598330e+00 0.00000000e+00
- 2 2203 71 71 -0.13905265e+00 -0.11675940e+01 -0.64985632e+04 0.77133000e+00
- 2 92 33 44 0.71974730e+01 0.42722242e+01 0.62936481e+04 0.80653962e+02
- 2 -323 94 95 -0.26114189e-01 0.33996443e+01 0.42147384e+02 0.75930341e+00
- 2 113 96 97 0.56486279e+00 0.12436304e+01 0.13310126e+02 0.87192674e+00
- 1 211 0 0 0.84688093e+00 0.13277142e-01 0.97071359e+01 0.13957000e+00
- 2 313 98 99 0.13593204e+01 -0.17431656e+00 0.18362597e+02 0.90134624e+00
- 2 -323 100 101 0.27824455e+01 0.10460502e+01 0.41562398e+02 0.90544131e+00
- 2 111 102 103 -0.44396046e+00 0.93793741e-01 0.24353685e+02 0.13498000e+00
- 2 323 104 105 0.21940869e+00 0.48921889e+00 0.19606971e+02 0.88299431e+00
- 1 -321 0 0 0.27538619e+00 -0.51658336e+00 0.40291894e+02 0.49360000e+00
- 2 223 106 107 0.13883065e+00 -0.35638594e-01 0.22366659e+03 0.78526433e+00
- 2 213 108 109 -0.29842987e-01 0.39246988e+00 0.30656703e+02 0.76493066e+00
- 1 -211 0 0 0.43362953e+00 -0.71655580e+00 0.73016070e+03 0.13957000e+00
- 1 2212 0 0 0.10766261e+01 -0.96276616e+00 0.50998220e+04 0.93827000e+00
- 2 92 46 70 0.86839773e+01 0.28919971e+01 0.67620039e+03 0.12053481e+03
- 2 -4214 110 111 0.15133639e+02 -0.59706764e+01 0.48490944e+02 0.25000000e+01
- 2 113 112 113 0.10089108e+01 -0.40590047e+00 0.37413911e+01 0.82246668e+00
- 2 2114 114 115 0.11695183e+01 -0.41397479e+00 0.41572564e+01 0.11600360e+01
- 1 211 0 0 -0.42184283e-01 0.11540792e+00 0.15415240e+00 0.13957000e+00
- 2 -323 116 117 0.99208096e+00 0.89894582e-01 0.25847968e+01 0.84905057e+00
- 2 323 118 119 0.41054070e-01 -0.13205575e+00 0.23367070e+01 0.92043139e+00
- 2 113 120 121 -0.39229413e+00 0.13384916e+01 0.13672571e+01 0.74002758e+00
- 1 -211 0 0 -0.31383678e+00 0.16924311e+00 0.10737124e+01 0.13957000e+00
- 2 -313 122 123 -0.10101509e+01 0.16469024e+01 0.14128438e+01 0.90561412e+00
- 2 323 124 125 -0.24905946e+01 0.19606943e+01 0.33455050e+01 0.85188591e+00
- 1 -211 0 0 -0.13732320e+01 0.66060544e+00 0.10321693e+01 0.13957000e+00
- 2 213 126 127 -0.50293551e+00 0.48431389e+00 0.71252764e+00 0.86281853e+00
- 1 -211 0 0 -0.13931627e+01 0.18630483e+01 0.12606651e+01 0.13957000e+00
- 2 221 128 129 -0.79018281e+00 0.49343991e+00 0.14901200e+01 0.54745000e+00
- 2 221 130 131 0.68073332e-01 0.14100639e+00 0.13386526e+01 0.54745000e+00
- 2 111 132 133 0.22358851e+00 -0.26400889e+00 0.87810141e+01 0.13498000e+00
- 2 223 134 136 -0.60329977e+00 0.27514284e+00 0.21856558e+01 0.78193603e+00
- 2 111 137 138 -0.13174132e+00 0.42801737e+00 0.56840573e+02 0.13498000e+00
- 2 223 139 141 -0.30996001e+00 -0.38808114e+00 0.30386233e+02 0.78254489e+00
- 1 211 0 0 -0.69483625e+00 0.11541628e+01 0.15234570e+03 0.13957000e+00
- 1 -211 0 0 0.77643457e-01 -0.43787602e+00 0.29737380e+02 0.13957000e+00
- 1 211 0 0 -0.19351146e+00 0.90433046e+00 0.13729884e+03 0.13957000e+00
- 2 -2224 142 143 -0.18186645e+00 -0.80843485e+00 0.68589592e+02 0.12503885e+01
- 2 213 144 145 0.26750740e+00 -0.45726540e-01 0.28438641e+02 0.78277961e+00
- 1 2212 0 0 0.12575061e+00 0.34030756e-01 0.87098055e+02 0.93827000e+00
- 2 92 72 93 0.98752906e+01 0.13460037e+02 -0.68192242e+04 0.12612947e+03
- 1 211 0 0 0.26801265e+01 0.32406018e+01 -0.89255693e+02 0.13957000e+00
- 2 331 146 148 0.12655192e+01 0.18456857e+01 -0.48307875e+02 0.95789156e+00
- 2 -213 149 150 0.23315590e+01 0.32931880e+01 -0.60834517e+02 0.77945188e+00
- 2 223 151 152 0.22726687e+01 0.33951584e+01 -0.70304232e+02 0.77993234e+00
- 2 113 153 154 0.85280620e-01 0.24919116e+00 -0.12014808e+02 0.80395494e+00
- 1 211 0 0 0.84148062e+00 0.14293081e+01 -0.19376213e+02 0.13957000e+00
- 2 113 155 156 0.27749096e+00 0.65758484e+00 -0.10103066e+02 0.93986776e+00
- 2 -213 157 158 0.18728942e-01 -0.19548639e+00 -0.33867948e+01 0.72908776e+00
- 1 211 0 0 0.74857608e-01 0.89383055e-01 -0.56460905e+01 0.13957000e+00
- 2 223 159 161 0.15275499e+00 0.41179383e+00 -0.15223772e+01 0.78119386e+00
- 1 -211 0 0 -0.69069035e+00 -0.38043959e+00 -0.48214726e+01 0.13957000e+00
- 2 213 162 163 0.54255948e+00 0.45311280e+00 -0.95157983e+01 0.69514160e+00
- 2 -213 164 165 -0.49055828e-01 0.20408099e+00 -0.53133211e+01 0.72385118e+00
- 1 211 0 0 0.28404219e+00 -0.10244491e+00 -0.16386202e+01 0.13957000e+00
- 2 223 166 168 -0.16765788e+00 -0.10883755e+00 -0.13751737e+02 0.78368238e+00
- 2 1114 169 170 -0.62296461e-01 -0.24838430e+00 -0.35763684e+02 0.12628674e+01
- 2 111 171 172 -0.16174801e+00 0.60778290e+00 -0.35115538e+02 0.13498000e+00
- 2 -1114 173 174 0.70219740e-01 0.18332012e+00 -0.15748268e+03 0.11329073e+01
- 2 113 175 176 0.43964080e+00 -0.26875293e+00 -0.15162315e+03 0.73089082e+00
- 2 -213 177 178 -0.51839342e+00 -0.32333946e+00 -0.10727039e+04 0.53636163e+00
- 2 2214 179 180 -0.18458574e+00 -0.38067114e+00 -0.25151515e+04 0.11903782e+01
- 2 213 181 182 0.37278890e+00 -0.59179847e+00 -0.24955911e+04 0.78428093e+00
- 2 -311 183 183 0.13628280e+00 0.21915028e+01 0.26168446e+02 0.49767000e+00
- 1 -211 0 0 -0.16239699e+00 0.12081415e+01 0.15978938e+02 0.13957000e+00
- 1 -211 0 0 0.58314170e-01 -0.57380646e-01 0.28511231e+01 0.13957000e+00
- 1 211 0 0 0.50654862e+00 0.13010111e+01 0.10459003e+02 0.13957000e+00
- 2 311 184 184 0.82285337e+00 -0.37561392e+00 0.12990398e+02 0.49767000e+00
- 2 111 185 186 0.53646699e+00 0.20129736e+00 0.53721996e+01 0.13498000e+00
- 2 -311 187 187 0.21529961e+01 0.73461185e+00 0.27787226e+02 0.49767000e+00
- 1 -211 0 0 0.62944933e+00 0.31143839e+00 0.13775172e+02 0.13957000e+00
- 1 22 0 0 -0.34675366e+00 0.69132522e-01 0.21348972e+02 0.00000000e+00
- 1 22 0 0 -0.97206799e-01 0.24661219e-01 0.30047127e+01 0.00000000e+00
- 2 311 188 188 0.43505554e-01 0.51517353e-01 0.12565005e+02 0.49767000e+00
- 1 211 0 0 0.17590314e+00 0.43770154e+00 0.70419659e+01 0.13957000e+00
- 1 22 0 0 0.10589041e+00 0.24565251e+00 0.18364132e+03 0.00000000e+00
- 2 111 189 190 0.32940237e-01 -0.28129111e+00 0.40025275e+02 0.13498000e+00
- 1 211 0 0 0.23025022e+00 0.24784566e+00 0.68078519e+01 0.13957000e+00
- 2 111 191 192 -0.26009321e+00 0.14462422e+00 0.23848851e+02 0.13498000e+00
- 2 -4122 193 196 0.14306423e+02 -0.54903904e+01 0.45748526e+02 0.22849000e+01
- 2 111 197 198 0.82721570e+00 -0.48028607e+00 0.27424184e+01 0.13498000e+00
- 1 -211 0 0 0.10405310e+01 -0.43863761e+00 0.36100806e+01 0.13957000e+00
- 1 211 0 0 -0.31620113e-01 0.32737140e-01 0.13131051e+00 0.13957000e+00
- 1 2112 0 0 0.96367258e+00 -0.18030584e+00 0.32581468e+01 0.93957000e+00
- 2 111 199 200 0.20584572e+00 -0.23366895e+00 0.89910956e+00 0.13498000e+00
- 2 -311 201 201 0.81575611e+00 -0.13017327e+00 0.21863444e+01 0.49767000e+00
- 1 -211 0 0 0.17632485e+00 0.22006785e+00 0.39845247e+00 0.13957000e+00
- 2 311 202 202 0.37046939e-01 -0.51575937e-01 0.65114687e+00 0.49767000e+00
- 1 211 0 0 0.40071311e-02 -0.80479817e-01 0.16855601e+01 0.13957000e+00
- 1 -211 0 0 -0.32459036e+00 0.41430493e+00 0.87377663e+00 0.13957000e+00
- 1 211 0 0 -0.67703767e-01 0.92418669e+00 0.49348046e+00 0.13957000e+00
- 1 -321 0 0 -0.35334313e+00 0.87024056e+00 0.45330167e+00 0.49360000e+00
- 1 211 0 0 -0.65680780e+00 0.77666181e+00 0.95954215e+00 0.13957000e+00
- 2 311 203 203 -0.17201595e+01 0.15389899e+01 0.21249583e+01 0.49767000e+00
- 1 211 0 0 -0.77043512e+00 0.42170435e+00 0.12205467e+01 0.13957000e+00
- 1 211 0 0 -0.22850373e-01 0.51440794e+00 0.60737560e+00 0.13957000e+00
- 2 111 204 205 -0.48008514e+00 -0.30094050e-01 0.10515204e+00 0.13498000e+00
- 1 22 0 0 -0.50390898e+00 0.78814065e-01 0.43082721e+00 0.00000000e+00
- 1 22 0 0 -0.28627383e+00 0.41462585e+00 0.10592928e+01 0.00000000e+00
- 1 22 0 0 0.26918330e+00 0.94996991e-01 0.38657312e+00 0.00000000e+00
- 1 22 0 0 -0.20110997e+00 0.46009401e-01 0.95207948e+00 0.00000000e+00
- 1 22 0 0 0.13752124e+00 -0.16312071e+00 0.68388074e+01 0.00000000e+00
- 1 22 0 0 0.86067271e-01 -0.10088818e+00 0.19422066e+01 0.00000000e+00
- 1 211 0 0 -0.16936491e+00 0.18696630e+00 0.66786206e+00 0.13957000e+00
- 1 -211 0 0 -0.46907219e+00 -0.62314656e-01 0.12848118e+01 0.13957000e+00
- 2 111 206 207 0.35137325e-01 0.15049119e+00 0.23298189e+00 0.13498000e+00
- 1 22 0 0 -0.14851311e+00 0.42512943e+00 0.55164186e+02 0.00000000e+00
- 1 22 0 0 0.16771786e-01 0.28879359e-02 0.16763873e+01 0.00000000e+00
- 1 -211 0 0 0.56209544e-01 0.50507640e-01 0.31505181e+01 0.13957000e+00
- 1 211 0 0 -0.15594320e+00 -0.34064379e+00 0.99128266e+01 0.13957000e+00
- 2 111 208 209 -0.21022635e+00 -0.97944990e-01 0.17322889e+02 0.13498000e+00
- 1 -2212 0 0 -0.60051140e-01 -0.35278331e+00 0.43633054e+02 0.93827000e+00
- 1 -211 0 0 -0.12181531e+00 -0.45565154e+00 0.24956538e+02 0.13957000e+00
- 1 211 0 0 -0.11205451e+00 0.14068182e+00 0.19253573e+02 0.13957000e+00
- 2 111 210 211 0.37956190e+00 -0.18640836e+00 0.91850689e+01 0.13498000e+00
- 2 111 212 213 0.44465935e-01 0.20995266e+00 -0.48783437e+01 0.13498000e+00
- 2 111 214 215 0.47350622e+00 0.64422052e+00 -0.14038019e+02 0.13498000e+00
- 2 221 216 217 0.74754709e+00 0.99151252e+00 -0.29391512e+02 0.54745000e+00
- 1 -211 0 0 0.35418333e+00 0.91307227e+00 -0.17670423e+02 0.13957000e+00
- 2 111 218 219 0.19773757e+01 0.23801157e+01 -0.43164093e+02 0.13498000e+00
- 1 22 0 0 0.38686664e+00 0.20733111e+00 -0.58366400e+01 0.00000000e+00
- 2 111 220 221 0.18858020e+01 0.31878272e+01 -0.64467592e+02 0.13498000e+00
- 1 -211 0 0 0.38291907e+00 0.23229243e+00 -0.49786509e+01 0.13957000e+00
- 1 211 0 0 -0.29763845e+00 0.16898731e-01 -0.70361566e+01 0.13957000e+00
- 1 -211 0 0 -0.11347844e-03 0.80589533e+00 -0.62380359e+01 0.13957000e+00
- 1 211 0 0 0.27760444e+00 -0.14831049e+00 -0.38650301e+01 0.13957000e+00
- 1 -211 0 0 -0.62585725e-01 -0.35320650e+00 -0.29910849e+01 0.13957000e+00
- 2 111 222 223 0.81314667e-01 0.15772011e+00 -0.39570986e+00 0.13498000e+00
- 1 211 0 0 -0.92764179e-01 -0.15004324e-01 -0.52134805e+00 0.13957000e+00
- 1 -211 0 0 0.20467951e+00 0.42192090e+00 -0.95019954e+00 0.13957000e+00
- 2 111 224 225 0.40839650e-01 0.48772526e-02 -0.50829563e-01 0.13498000e+00
- 1 211 0 0 0.21044947e+00 -0.82749772e-01 -0.48371512e+01 0.13957000e+00
- 2 111 226 227 0.33211001e+00 0.53586257e+00 -0.46786471e+01 0.13498000e+00
- 1 -211 0 0 0.25294729e+00 0.29229541e+00 -0.28181686e+01 0.13957000e+00
- 2 111 228 229 -0.30200312e+00 -0.88214421e-01 -0.24951525e+01 0.13498000e+00
- 1 -211 0 0 -0.31753389e+00 -0.76986569e-01 -0.42236510e+01 0.13957000e+00
- 1 211 0 0 0.12770459e+00 0.99989661e-01 -0.41823641e+01 0.13957000e+00
- 2 111 230 231 0.22171418e-01 -0.13184064e+00 -0.53457221e+01 0.13498000e+00
- 1 2112 0 0 -0.44352368e-01 0.82462612e-02 -0.30968351e+02 0.93957000e+00
- 1 -211 0 0 -0.17944092e-01 -0.25663056e+00 -0.47953334e+01 0.13957000e+00
- 1 22 0 0 -0.16989288e+00 0.41773122e+00 -0.23363095e+02 0.00000000e+00
- 1 22 0 0 0.81448673e-02 0.19005168e+00 -0.11752443e+02 0.00000000e+00
- 1 -2112 0 0 0.18075791e+00 0.14953534e+00 -0.13359407e+03 0.93957000e+00
- 1 211 0 0 -0.11053817e+00 0.33784779e-01 -0.23888604e+02 0.13957000e+00
- 1 211 0 0 0.59395296e+00 -0.96759441e-01 -0.11352460e+03 0.13957000e+00
- 1 -211 0 0 -0.15431216e+00 -0.17199349e+00 -0.38098549e+02 0.13957000e+00
- 1 -211 0 0 -0.22625324e+00 0.15517877e-01 -0.19269377e+03 0.13957000e+00
- 2 111 232 233 -0.29214018e+00 -0.33885734e+00 -0.88001011e+03 0.13498000e+00
- 1 2212 0 0 -0.10621422e+00 -0.13879131e+00 -0.17158426e+04 0.93827000e+00
- 2 111 234 235 -0.78371518e-01 -0.24187983e+00 -0.79930897e+03 0.13498000e+00
- 1 211 0 0 0.46358157e+00 -0.25880941e+00 -0.20282976e+04 0.13957000e+00
- 2 111 236 237 -0.90792670e-01 -0.33298906e+00 -0.46729350e+03 0.13498000e+00
- 1 130 0 0 0.13628280e+00 0.21915028e+01 0.26168446e+02 0.49767000e+00
- 2 310 238 239 0.82285337e+00 -0.37561392e+00 0.12990398e+02 0.49767000e+00
- 1 22 0 0 0.20090241e+00 0.18834669e-01 0.22029570e+01 0.00000000e+00
- 1 22 0 0 0.33556458e+00 0.18246269e+00 0.31692427e+01 0.00000000e+00
- 1 130 0 0 0.21529961e+01 0.73461185e+00 0.27787226e+02 0.49767000e+00
- 2 310 240 241 0.43505554e-01 0.51517353e-01 0.12565005e+02 0.49767000e+00
- 1 22 0 0 0.19637359e-02 -0.24867272e+00 0.37531746e+02 0.00000000e+00
- 1 22 0 0 0.30976501e-01 -0.32618391e-01 0.24935293e+01 0.00000000e+00
- 1 22 0 0 -0.25644564e-01 0.73541271e-01 0.43196331e+01 0.00000000e+00
- 1 22 0 0 -0.23444864e+00 0.71082950e-01 0.19529218e+02 0.00000000e+00
- 1 -211 0 0 0.72187164e+00 -0.30034963e+00 0.26506582e+01 0.13957000e+00
- 2 213 242 243 0.45901645e+01 -0.15589024e+01 0.14160231e+02 0.71292453e+00
- 1 -211 0 0 0.13363213e+01 -0.64922698e+00 0.48422934e+01 0.13957000e+00
- 2 -3122 244 245 0.76580656e+01 -0.29819114e+01 0.24095343e+02 0.11156800e+01
- 1 22 0 0 0.27291657e+00 -0.20673070e+00 0.11306378e+01 0.00000000e+00
- 1 22 0 0 0.55429913e+00 -0.27355537e+00 0.16117805e+01 0.00000000e+00
- 1 22 0 0 0.56661799e-01 -0.12641022e-01 0.29547876e+00 0.00000000e+00
- 1 22 0 0 0.14918392e+00 -0.22102793e+00 0.60363079e+00 0.00000000e+00
- 1 130 0 0 0.81575611e+00 -0.13017327e+00 0.21863444e+01 0.49767000e+00
- 1 130 0 0 0.37046939e-01 -0.51575937e-01 0.65114687e+00 0.49767000e+00
- 2 310 246 247 -0.17201595e+01 0.15389899e+01 0.21249583e+01 0.49767000e+00
- 1 22 0 0 -0.43574514e-01 0.37975180e-01 0.13653627e-01 0.00000000e+00
- 1 22 0 0 -0.43651062e+00 -0.68069230e-01 0.91498412e-01 0.00000000e+00
- 1 22 0 0 0.85827052e-01 0.10919524e+00 0.17172435e+00 0.00000000e+00
- 1 22 0 0 -0.50689727e-01 0.41295954e-01 0.61257548e-01 0.00000000e+00
- 1 22 0 0 -0.71657011e-01 -0.10487703e+00 0.94840940e+01 0.00000000e+00
- 1 22 0 0 -0.13856934e+00 0.69320383e-02 0.78387946e+01 0.00000000e+00
- 1 22 0 0 0.38771226e+00 -0.18539163e+00 0.91301528e+01 0.00000000e+00
- 1 22 0 0 -0.81503589e-02 -0.10167321e-02 0.54916027e-01 0.00000000e+00
- 1 22 0 0 -0.49039615e-02 0.97660634e-01 -0.10305309e+01 0.00000000e+00
- 1 22 0 0 0.49369897e-01 0.11229202e+00 -0.38478128e+01 0.00000000e+00
- 1 22 0 0 0.22097337e+00 0.30274673e+00 -0.77611040e+01 0.00000000e+00
- 1 22 0 0 0.25253285e+00 0.34147379e+00 -0.62769151e+01 0.00000000e+00
- 1 22 0 0 0.18045250e+00 -0.77644456e-02 -0.23584316e+01 0.00000000e+00
- 1 22 0 0 0.56709459e+00 0.99927697e+00 -0.27033081e+02 0.00000000e+00
- 1 22 0 0 0.83010254e+00 0.10042531e+01 -0.19111329e+02 0.00000000e+00
- 1 22 0 0 0.11472732e+01 0.13758626e+01 -0.24052765e+02 0.00000000e+00
- 1 22 0 0 0.17499335e+00 0.23745902e+00 -0.55139425e+01 0.00000000e+00
- 1 22 0 0 0.17108087e+01 0.29503682e+01 -0.58953649e+02 0.00000000e+00
- 1 22 0 0 0.44667104e-01 0.16354805e+00 -0.23820073e+00 0.00000000e+00
- 1 22 0 0 0.36647563e-01 -0.58279372e-02 -0.15750913e+00 0.00000000e+00
- 1 22 0 0 0.26594415e-02 0.78915739e-02 0.45533116e-01 0.00000000e+00
- 1 22 0 0 0.38180209e-01 -0.30143213e-02 -0.96362679e-01 0.00000000e+00
- 1 22 0 0 0.15990983e-01 0.22734813e-02 -0.43457708e-01 0.00000000e+00
- 1 22 0 0 0.31611903e+00 0.53358909e+00 -0.46351894e+01 0.00000000e+00
- 1 22 0 0 -0.53612828e-01 -0.60472108e-01 -0.93483542e+00 0.00000000e+00
- 1 22 0 0 -0.24839029e+00 -0.27742314e-01 -0.15603171e+01 0.00000000e+00
- 1 22 0 0 -0.27683268e-01 -0.43028496e-01 -0.57074169e+00 0.00000000e+00
- 1 22 0 0 0.49854686e-01 -0.88812146e-01 -0.47749804e+01 0.00000000e+00
- 1 22 0 0 -0.11875479e+00 -0.21652552e+00 -0.55385419e+03 0.00000000e+00
- 1 22 0 0 -0.17338539e+00 -0.12233182e+00 -0.32615592e+03 0.00000000e+00
- 1 22 0 0 -0.77733406e-01 -0.51023153e-01 -0.32831482e+03 0.00000000e+00
- 1 22 0 0 -0.63811199e-03 -0.19085668e+00 -0.47099415e+03 0.00000000e+00
- 1 22 0 0 -0.55047255e-01 -0.32988965e+00 -0.41646333e+03 0.00000000e+00
- 1 22 0 0 -0.35745415e-01 -0.30994029e-02 -0.50830171e+02 0.00000000e+00
- 1 211 0 0 0.15933975e+00 -0.27400995e+00 0.45446946e+01 0.13957000e+00
- 1 -211 0 0 0.66351363e+00 -0.10160397e+00 0.84457029e+01 0.13957000e+00
- 1 -211 0 0 0.20825243e+00 0.64553573e-01 0.47586764e+01 0.13957000e+00
- 1 211 0 0 -0.16474688e+00 -0.13036220e-01 0.78063290e+01 0.13957000e+00
- 1 211 0 0 0.41932449e+01 -0.13334126e+01 0.13147271e+02 0.13957000e+00
- 2 111 248 249 0.39691964e+00 -0.22548979e+00 0.10129601e+01 0.13498000e+00
- 1 -2212 0 0 0.63540059e+01 -0.25509447e+01 0.19866713e+02 0.93827000e+00
- 1 211 0 0 0.13040597e+01 -0.43096667e+00 0.42286294e+01 0.13957000e+00
- 2 111 250 251 -0.55349250e+00 0.45697639e+00 0.42859292e+00 0.13498000e+00
- 2 111 252 253 -0.11666670e+01 0.10820135e+01 0.16963654e+01 0.13498000e+00
- 1 22 0 0 0.37276098e+00 -0.16883250e+00 0.92878754e+00 0.00000000e+00
- 1 22 0 0 0.24158652e-01 -0.56657296e-01 0.84172557e-01 0.00000000e+00
- 1 22 0 0 -0.34905313e+00 0.35871170e+00 0.32982654e+00 0.00000000e+00
- 1 22 0 0 -0.20443938e+00 0.98264684e-01 0.98766380e-01 0.00000000e+00
- 1 22 0 0 -0.57464083e-01 0.19288805e-01 0.58494539e-01 0.00000000e+00
- 1 22 0 0 -0.11092029e+01 0.10627247e+01 0.16378709e+01 0.00000000e+00
- 474
- 2 25 2 3 -0.73358569e+00 0.12678116e+02 -0.17789602e+03 0.12500088e+03
- 2 23 4 5 0.97072384e+00 0.17370664e+02 -0.13232005e+02 0.21682048e+02
- 2 23 6 7 -0.17043095e+01 -0.46925471e+01 -0.16466402e+03 0.88496198e+02
- 1 13 0 0 0.55848777e+01 0.18080514e+02 -0.25055901e+01 0.10566000e+00
- 1 -13 0 0 -0.46141539e+01 -0.70985070e+00 -0.10726415e+02 0.10566000e+00
- 1 13 0 0 0.20108721e+02 0.13098446e+02 -0.45388855e+01 0.10566000e+00
- 1 -13 0 0 -0.21813030e+02 -0.17790993e+02 -0.16012513e+03 0.10566000e+00
- 2 2101 58 58 -0.17868654e+01 -0.82027669e+00 0.41109236e+04 0.57933000e+00
- 2 21 58 58 0.11802457e+01 0.18809989e+01 0.42883025e+03 0.00000000e+00
- 2 21 58 58 -0.24343871e+00 0.34157725e+00 0.87339063e+01 0.00000000e+00
- 2 21 58 58 -0.90530921e+00 0.37613034e+00 0.14911229e+03 0.00000000e+00
- 2 21 58 58 0.10656490e+01 0.35959129e+00 0.10894591e+03 0.00000000e+00
- 2 21 58 58 0.93334184e+00 -0.28080012e+01 0.18402326e+02 0.00000000e+00
- 2 21 58 58 0.11193431e+01 -0.93826584e+00 0.10215391e+02 0.00000000e+00
- 2 21 58 58 0.13263239e+00 0.18721134e+00 0.34817074e-01 0.00000000e+00
- 2 21 58 58 0.26907117e+00 -0.10545649e+01 0.13314655e+01 0.00000000e+00
- 2 21 58 58 0.11159580e+00 -0.21321469e+01 0.58542592e+01 0.00000000e+00
- 2 21 58 58 -0.51359621e+00 -0.13122323e+02 0.24779813e+02 0.00000000e+00
- 2 21 58 58 0.86755287e+00 -0.23991536e+01 0.10280926e+02 0.00000000e+00
- 2 21 58 58 -0.11431448e+01 0.34412453e+00 -0.27685152e+01 0.00000000e+00
- 2 21 58 58 -0.12382764e+01 0.14098192e+01 -0.19723836e+02 0.00000000e+00
- 2 21 58 58 0.75621830e+00 -0.28544601e+01 -0.36297476e+02 0.00000000e+00
- 2 21 58 58 -0.23830783e+01 -0.14026261e+01 -0.82136702e+02 0.00000000e+00
- 2 21 58 58 -0.54212669e+01 -0.36505025e+00 -0.19011317e+03 0.00000000e+00
- 2 21 58 58 -0.43779037e+00 0.18647041e+00 -0.34332989e+02 0.00000000e+00
- 2 21 58 58 -0.24898437e+01 -0.17569372e+00 -0.23000224e+03 0.00000000e+00
- 2 21 58 58 -0.21911754e+01 -0.11506145e+01 -0.19248210e+03 0.00000000e+00
- 2 21 58 58 0.21911754e+01 0.11506145e+01 -0.25086620e+04 0.00000000e+00
- 2 21 58 58 0.20159133e+00 -0.14487452e+01 -0.94012000e+02 0.00000000e+00
- 2 21 58 58 0.13583503e+01 -0.32356077e+00 -0.11799895e+02 0.00000000e+00
- 2 21 58 58 -0.45243574e+00 0.18563046e+01 -0.75369267e+01 0.00000000e+00
- 2 21 58 58 -0.23387584e+01 0.49226799e+01 -0.33308573e+02 0.00000000e+00
- 2 21 58 58 0.21392746e+00 0.16749905e+00 -0.12945836e+01 0.00000000e+00
- 2 2 58 58 0.19456100e+01 0.13016899e+01 -0.13438028e+03 0.33000000e+00
- 2 2 117 117 -0.15959475e+01 -0.14516830e+01 0.46377881e+02 0.33000000e+00
- 2 21 117 117 0.59724190e+00 0.71554534e-01 0.32435484e+03 0.00000000e+00
- 2 21 117 117 0.70389592e+00 0.40169859e+00 0.92547127e+02 0.00000000e+00
- 2 21 117 117 -0.40097360e+00 0.28655904e+00 0.13293426e+03 0.00000000e+00
- 2 21 117 117 -0.43979585e+01 0.94373160e+00 0.63933524e+01 0.00000000e+00
- 2 21 117 117 -0.75621830e+00 0.28544601e+01 0.76930984e+01 0.00000000e+00
- 2 21 117 117 0.25024219e+00 0.56175605e+01 0.22388583e+02 0.00000000e+00
- 2 21 117 117 0.23830783e+01 0.14026261e+01 0.23023610e+02 0.00000000e+00
- 2 21 117 117 0.24615464e+01 0.73363988e+00 0.55281839e+03 0.00000000e+00
- 2 21 117 117 -0.20159133e+00 0.14487452e+01 0.69392782e+03 0.00000000e+00
- 2 21 117 117 -0.24615464e+01 -0.73363988e+00 0.18255872e+03 0.00000000e+00
- 2 21 117 117 0.54212669e+01 0.36505025e+00 0.26573171e+01 0.00000000e+00
- 2 21 117 117 0.43979585e+01 -0.94373160e+00 0.13539286e+01 0.00000000e+00
- 2 21 117 117 -0.25024219e+00 -0.56175605e+01 0.19417277e+01 0.00000000e+00
- 2 21 117 117 -0.23954013e+01 -0.26839760e+01 -0.94042541e+00 0.00000000e+00
- 2 21 117 117 0.12382764e+01 -0.14098192e+01 -0.12701052e+02 0.00000000e+00
- 2 21 117 117 0.11431448e+01 -0.34412453e+00 -0.10692527e+02 0.00000000e+00
- 2 21 117 117 0.24898437e+01 0.17569372e+00 -0.23032291e+02 0.00000000e+00
- 2 21 117 117 0.23954013e+01 0.26839760e+01 -0.69630024e+02 0.00000000e+00
- 2 21 117 117 0.43779037e+00 -0.18647041e+00 -0.33553725e+02 0.00000000e+00
- 2 21 117 117 -0.10151691e+01 -0.76585741e+00 -0.80806626e+02 0.00000000e+00
- 2 21 117 117 -0.11999472e+01 -0.20357245e+00 -0.14604629e+02 0.00000000e+00
- 2 2103 117 117 0.68756940e+00 0.11877951e+01 -0.29657070e+04 0.77133000e+00
- 2 92 59 116 -0.91986749e+01 -0.16510772e+02 0.12985937e+04 0.83623890e+04
- 1 2212 0 0 -0.76980063e+00 -0.16757450e+00 0.21386596e+04 0.93827000e+00
- 1 -2212 0 0 -0.54669891e+00 -0.16648491e+00 0.84127084e+03 0.93827000e+00
- 2 3122 185 186 0.27500648e+00 0.10254790e+00 0.90695046e+03 0.11156800e+01
- 2 -3112 187 188 -0.33740867e+00 0.55105275e+00 0.23645572e+03 0.11974400e+01
- 1 -211 0 0 -0.90516590e-01 0.14201600e-01 0.17448943e+02 0.13957000e+00
- 1 2112 0 0 -0.13940622e-02 -0.10530172e-01 0.21441586e+03 0.93957000e+00
- 1 211 0 0 0.28340463e+00 0.97764079e+00 0.21810012e+03 0.13957000e+00
- 1 -211 0 0 0.87483846e+00 0.22871246e+00 0.89836702e+02 0.13957000e+00
- 2 113 189 190 -0.92648838e+00 0.15057559e+00 0.37109845e+02 0.98573753e+00
- 2 113 191 192 0.20278814e+00 0.49096989e-01 0.59151917e+02 0.64282761e+00
- 1 -2112 0 0 0.32352647e+00 0.45242340e-01 0.32830290e+02 0.93957000e+00
- 1 2112 0 0 -0.83228609e-01 -0.61895772e+00 0.13023788e+02 0.93957000e+00
- 2 113 193 194 0.15743725e+01 -0.94056521e+00 0.17128015e+02 0.81281823e+00
- 2 111 195 196 -0.12566141e+00 -0.11297043e+01 0.54747242e+01 0.13498000e+00
- 2 -313 197 198 0.15723527e+00 -0.65140280e+00 0.24867181e+01 0.86497546e+00
- 1 321 0 0 0.70140610e+00 -0.11928856e+01 0.50933356e+01 0.49360000e+00
- 2 223 199 201 0.25400032e+00 -0.19544343e+00 0.38148832e+01 0.78313340e+00
- 2 223 202 204 -0.47260972e+00 -0.66920222e+01 0.12299119e+02 0.73801674e+00
- 2 -323 205 206 0.49879524e+00 -0.68949356e+01 0.15602645e+02 0.90361479e+00
- 2 313 207 208 0.34214101e-01 -0.83376534e+00 0.25016904e+01 0.81789738e+00
- 2 223 209 211 0.77692033e-02 -0.15974683e+01 0.33943655e+01 0.78122588e+00
- 2 331 212 214 0.46796148e+00 -0.88802662e+00 0.40193794e+01 0.95758887e+00
- 2 111 215 216 0.25244417e+00 -0.11936554e+00 -0.22139703e+00 0.13498000e+00
- 2 113 217 218 -0.95547430e+00 0.15060053e+00 -0.19209630e+01 0.80672383e+00
- 2 213 219 220 -0.10729370e+01 0.16634637e+00 -0.49845945e+01 0.96178684e+00
- 2 223 221 223 0.66286697e+00 0.44230183e-01 -0.75787381e+01 0.77997184e+00
- 2 -213 224 225 0.55220362e-01 -0.87783401e-01 -0.39142288e+01 0.58172523e+00
- 1 211 0 0 -0.45477191e+00 -0.17927903e+00 -0.57279837e+01 0.13957000e+00
- 2 111 226 227 -0.81640686e+00 0.42132692e+00 -0.37124548e+01 0.13498000e+00
- 1 -211 0 0 0.21967205e+00 -0.36102115e+00 -0.32338156e+01 0.13957000e+00
- 1 211 0 0 0.99665423e-02 -0.11692288e+01 -0.27472664e+02 0.13957000e+00
- 2 -213 228 229 -0.58460717e+00 0.41026046e-01 -0.13026853e+02 0.64449079e+00
- 1 211 0 0 0.49010856e-02 -0.10092697e+01 -0.20300996e+02 0.13957000e+00
- 2 -213 230 231 -0.15808090e+01 -0.15509967e+00 -0.42934112e+02 0.79270549e+00
- 1 211 0 0 -0.16957255e+01 -0.41731030e+00 -0.68479247e+02 0.13957000e+00
- 2 -2224 232 233 -0.17239095e+01 0.34548150e-01 -0.10093244e+03 0.11501406e+01
- 1 211 0 0 -0.68487778e-01 -0.22976347e-01 -0.10252017e+02 0.13957000e+00
- 2 2114 234 235 -0.28798200e+01 -0.67100804e+00 -0.15163085e+03 0.11445278e+01
- 2 -313 236 237 -0.16556279e+01 -0.48087915e+00 -0.11731363e+03 0.91452021e+00
- 2 311 238 238 -0.43383236e+00 0.75765170e-01 -0.87676357e+02 0.49767000e+00
- 2 -1114 239 240 -0.57209707e+00 0.13315495e+00 -0.14252545e+03 0.11515291e+01
- 2 1114 241 242 -0.84403679e+00 -0.18936738e+00 -0.27270392e+03 0.11893003e+01
- 2 213 243 244 0.70792243e+00 0.12266755e+00 -0.87028723e+03 0.55476909e+00
- 2 113 245 246 -0.34994995e+00 -0.28842931e+00 -0.16253036e+03 0.79518496e+00
- 2 111 247 248 0.10248173e+01 0.51959784e+00 -0.93687121e+03 0.13498000e+00
- 1 -2212 0 0 0.23007948e+00 -0.16968590e+00 -0.37928199e+02 0.93827000e+00
- 1 211 0 0 0.62259639e+00 -0.35024420e+00 -0.15081967e+03 0.13957000e+00
- 2 3112 249 250 -0.36893225e+00 -0.53898225e-01 -0.10702497e+03 0.11974400e+01
- 2 311 251 251 0.42176638e+00 -0.37449064e+00 -0.17727556e+02 0.49767000e+00
- 2 213 252 253 0.55429393e+00 -0.32893393e+00 -0.16498056e+02 0.81261612e+00
- 1 -211 0 0 0.23261598e+00 0.16829408e+00 -0.31949952e+01 0.13957000e+00
- 2 223 254 256 -0.60472002e+00 0.43862381e+00 -0.10257505e+02 0.77828428e+00
- 2 223 257 258 0.34145897e+00 0.47230109e+00 -0.73311758e+01 0.77832887e+00
- 1 211 0 0 -0.89526978e+00 0.13363726e+01 -0.71683659e+01 0.13957000e+00
- 2 -323 259 260 0.14857992e+00 0.89009219e+00 -0.73670819e+01 0.89870203e+00
- 2 323 261 262 -0.77224412e+00 0.20840495e+01 -0.15683311e+02 0.91961577e+00
- 2 -3222 263 264 -0.25835916e+00 0.16221836e+01 -0.16535886e+02 0.11893700e+01
- 2 3222 265 266 0.15986301e+01 0.10570142e+01 -0.12470696e+03 0.11893700e+01
- 2 92 118 184 0.99322606e+01 0.38326558e+01 -0.11206977e+04 0.52001671e+04
- 1 211 0 0 -0.11945461e+01 -0.11598945e+01 0.31201944e+02 0.13957000e+00
- 2 113 267 268 0.26682454e+00 0.53372931e-01 0.18247248e+03 0.10418474e+01
- 2 -213 269 270 -0.70647734e-01 0.21432005e+00 0.83271172e+02 0.73735239e+00
- 2 221 271 272 -0.27125048e+00 -0.23453269e+00 0.20569453e+02 0.54745000e+00
- 2 213 273 274 0.61199582e+00 0.50812632e+00 0.26084312e+03 0.72769788e+00
- 2 113 275 276 -0.36759632e-01 -0.70606151e-01 0.78436639e+01 0.77014707e+00
- 1 2112 0 0 -0.44849380e+00 -0.27395376e-01 0.42371530e+01 0.93957000e+00
- 2 213 277 278 -0.74613748e-01 0.15184871e+00 0.28792807e+01 0.85373863e+00
- 2 -2214 279 280 -0.19122392e+01 0.49945112e+00 0.60738609e+01 0.11363666e+01
- 1 -211 0 0 -0.16579985e+00 -0.25224166e-01 0.48087309e+00 0.13957000e+00
- 2 213 281 282 -0.12882893e+01 0.17412594e+01 0.42117591e+01 0.90421115e+00
- 2 313 283 284 -0.96834753e+00 0.44438180e-01 0.27346280e+01 0.89781502e+00
- 2 -311 285 285 0.42680855e-01 0.14593238e+01 0.45511437e+01 0.49767000e+00
- 2 -213 286 287 -0.47449042e-02 0.18199961e+01 0.78127530e+01 0.77961938e+00
- 1 211 0 0 -0.18922745e+00 -0.80480676e-01 0.56163664e+00 0.13957000e+00
- 2 331 288 290 0.68632213e+00 0.35504487e+01 0.17193242e+02 0.95780524e+00
- 2 1114 291 292 0.29709938e+00 0.56457060e+00 0.92730731e+01 0.12725956e+01
- 1 -2112 0 0 0.72417287e+00 0.39514747e+00 0.13927711e+02 0.93957000e+00
- 2 111 293 294 0.81799285e+00 0.77068917e+00 0.36283037e+02 0.13498000e+00
- 1 211 0 0 0.24908725e+00 -0.11594648e+00 0.12017779e+03 0.13957000e+00
- 1 -211 0 0 0.39989649e+00 -0.12926673e+00 0.58923518e+02 0.13957000e+00
- 1 2212 0 0 0.28191675e+00 0.34379227e+00 0.34273921e+02 0.93827000e+00
- 1 -2212 0 0 0.29014607e+00 0.74863034e+00 0.14409311e+03 0.93827000e+00
- 2 213 295 296 0.55798969e+00 0.27951610e+00 0.36280723e+03 0.72216545e+00
- 2 -213 297 298 0.49102676e+00 0.28147648e-01 0.18889032e+03 0.72969674e+00
- 2 221 299 300 -0.58228778e+00 0.48200441e+00 0.19255272e+03 0.54745000e+00
- 2 223 301 303 -0.31673996e+00 -0.29948474e+00 0.16174398e+03 0.78146415e+00
- 2 113 304 305 -0.98317611e+00 0.49327650e+00 0.67265044e+02 0.80677433e+00
- 2 111 306 307 0.92657004e-01 -0.37667350e-01 0.21517439e+01 0.13498000e+00
- 1 2212 0 0 -0.17357853e+00 -0.27712183e+00 0.23655432e+02 0.93827000e+00
- 1 -2212 0 0 -0.15578437e+00 -0.45389334e-01 0.16707081e+02 0.93827000e+00
- 2 223 308 310 -0.72368499e+00 0.37337646e+00 0.10882179e+02 0.78007357e+00
- 2 213 311 312 0.69267081e+00 0.11687346e+00 0.21557550e+01 0.57532265e+00
- 2 -213 313 314 0.16522435e+01 -0.59426536e+00 0.11639521e+01 0.65135119e+00
- 2 213 315 316 0.13655357e+01 -0.20037021e-01 0.15193494e+01 0.84850851e+00
- 2 313 317 318 0.29738989e+00 -0.73187295e-02 0.13283037e+01 0.89410625e+00
- 2 -313 319 320 0.30899475e+01 0.88697814e-01 0.13676715e+01 0.92587949e+00
- 2 111 321 322 0.91170032e+00 -0.83965714e+00 0.63396596e+00 0.13498000e+00
- 1 2112 0 0 0.32187481e+00 -0.15506243e+00 0.49179688e+00 0.93957000e+00
- 1 -2112 0 0 0.54718798e+00 -0.52461203e+00 0.62022799e-01 0.93957000e+00
- 1 -211 0 0 0.10513704e+01 -0.27463092e+01 0.98624002e+00 0.13957000e+00
- 1 321 0 0 -0.12488042e+00 -0.36167065e+00 0.48672335e+00 0.49360000e+00
- 2 -323 323 324 -0.88664336e+00 -0.30759151e+01 -0.71368391e+00 0.88495026e+00
- 2 223 325 327 -0.35354483e+00 -0.74760339e+00 -0.36472101e+00 0.78005799e+00
- 2 213 328 329 -0.71443257e+00 -0.19671904e+00 -0.82881786e+00 0.86407764e+00
- 1 -211 0 0 0.40423812e+00 -0.12645323e+00 -0.29380841e+01 0.13957000e+00
- 2 213 330 331 -0.12574211e+00 -0.88946993e+00 -0.16641800e+01 0.79369892e+00
- 2 113 332 333 0.66202993e+00 0.26608330e+00 -0.74374911e+01 0.75455526e+00
- 2 113 334 335 0.10575913e+01 -0.11016663e+01 -0.92677852e+01 0.71485630e+00
- 2 -213 336 337 0.10180762e+01 0.50970477e+00 -0.17213567e+02 0.73696581e+00
- 1 2212 0 0 0.68286011e+00 0.40727790e+00 -0.13018185e+02 0.93827000e+00
- 2 113 338 339 0.10426424e+01 0.24944094e+00 -0.29403396e+02 0.86827985e+00
- 2 -2214 340 341 0.63875200e+00 -0.11196622e+00 -0.28310479e+02 0.12976442e+01
- 2 213 342 343 0.23655023e+00 0.11227696e+00 -0.11930752e+02 0.75319135e+00
- 2 111 344 345 -0.32355764e-01 0.15186997e+00 -0.45655458e+01 0.13498000e+00
- 2 313 346 347 0.11766560e+00 -0.11355636e+00 -0.22240679e+02 0.89934442e+00
- 2 -311 348 348 0.16882633e+00 0.73789140e+00 -0.13814967e+02 0.49767000e+00
- 1 -211 0 0 -0.85560732e-01 -0.14829939e+00 -0.84756167e+01 0.13957000e+00
- 2 111 349 350 -0.75337208e-01 0.26604136e+00 -0.37785987e+01 0.13498000e+00
- 2 111 351 352 0.46130485e+00 -0.32036597e+00 -0.10067882e+03 0.13498000e+00
- 2 331 353 355 -0.74636381e+00 0.86883467e-01 -0.51151836e+02 0.95773049e+00
- 1 321 0 0 0.60520234e-01 -0.22574803e-02 -0.10153713e+02 0.49360000e+00
- 2 -313 356 357 -0.19839352e+00 0.27828128e-01 -0.90467777e+03 0.90622166e+00
- 1 -211 0 0 0.51055963e+00 0.19726632e+00 -0.16076222e+03 0.13957000e+00
- 1 211 0 0 -0.45938740e+00 -0.14549363e+00 -0.14887020e+03 0.13957000e+00
- 1 -211 0 0 0.41569613e+00 0.43935919e-01 -0.22912539e+03 0.13957000e+00
- 2 2214 358 359 0.78071199e-01 0.78055638e+00 -0.14300530e+04 0.13076642e+01
- 1 2212 0 0 0.31310046e+00 0.10611073e+00 0.83134834e+03 0.93827000e+00
- 1 -211 0 0 -0.38093975e-01 -0.35628340e-02 0.75602115e+02 0.13957000e+00
- 1 -2112 0 0 -0.13689558e+00 0.30343773e+00 0.15806180e+03 0.93957000e+00
- 1 211 0 0 -0.20051310e+00 0.24761502e+00 0.78393919e+02 0.13957000e+00
- 1 -211 0 0 -0.67224093e-02 -0.25082241e+00 0.44568066e+01 0.13957000e+00
- 1 211 0 0 -0.91976597e+00 0.40139801e+00 0.32653039e+02 0.13957000e+00
- 1 211 0 0 0.10535897e+00 0.30183548e+00 0.38961662e+02 0.13957000e+00
- 1 -211 0 0 0.97429172e-01 -0.25273849e+00 0.20190255e+02 0.13957000e+00
- 1 -211 0 0 0.11052268e+01 -0.39375901e+00 0.12885899e+02 0.13957000e+00
- 1 211 0 0 0.46914567e+00 -0.54680619e+00 0.42421159e+01 0.13957000e+00
- 1 22 0 0 -0.13841579e+00 -0.64068402e+00 0.31259754e+01 0.00000000e+00
- 1 22 0 0 0.12754384e-01 -0.48902030e+00 0.23487488e+01 0.00000000e+00
- 2 -311 360 360 -0.47719446e-01 -0.64274888e+00 0.15809848e+01 0.49767000e+00
- 2 111 361 362 0.20495471e+00 -0.86539192e-02 0.90573331e+00 0.13498000e+00
- 1 -211 0 0 0.11166278e+00 -0.22858957e+00 0.28868809e+01 0.13957000e+00
- 1 211 0 0 0.25994906e-01 0.12179760e+00 0.50950833e+00 0.13957000e+00
- 2 111 363 364 0.11634264e+00 -0.88651458e-01 0.41849403e+00 0.13498000e+00
- 1 -211 0 0 -0.39830494e+00 -0.33709772e+01 0.64222306e+01 0.13957000e+00
- 1 211 0 0 -0.35421246e-01 -0.22587046e+01 0.42627844e+01 0.13957000e+00
- 2 111 365 366 -0.38883535e-01 -0.10623404e+01 0.16141039e+01 0.13498000e+00
- 2 -311 367 367 0.17037050e+00 -0.47911903e+01 0.10233375e+02 0.49767000e+00
- 1 -211 0 0 0.32842474e+00 -0.21037453e+01 0.53692709e+01 0.13957000e+00
- 2 311 368 368 0.18015653e+00 -0.76868869e+00 0.17814561e+01 0.49767000e+00
- 2 111 369 370 -0.14594243e+00 -0.65076648e-01 0.72023434e+00 0.13498000e+00
- 1 -211 0 0 0.68214090e-01 -0.66532498e+00 0.10384741e+01 0.13957000e+00
- 1 211 0 0 0.14500806e+00 -0.15794449e+00 0.46072069e+00 0.13957000e+00
- 2 111 371 372 -0.20545295e+00 -0.77419888e+00 0.18951707e+01 0.13498000e+00
- 1 211 0 0 0.12676075e+00 -0.14607500e+00 0.49481593e+00 0.13957000e+00
- 1 -211 0 0 0.14139847e+00 -0.36392199e+00 0.95852633e+00 0.13957000e+00
- 2 221 373 375 0.19980227e+00 -0.37802963e+00 0.25660371e+01 0.54745000e+00
- 1 22 0 0 0.14399321e+00 0.47823037e-02 -0.12026572e+00 0.00000000e+00
- 1 22 0 0 0.10845096e+00 -0.12414784e+00 -0.10113131e+00 0.00000000e+00
- 1 -211 0 0 -0.83400405e+00 -0.14457222e+00 -0.16348651e+01 0.13957000e+00
- 1 211 0 0 -0.12147025e+00 0.29517275e+00 -0.28609785e+00 0.13957000e+00
- 1 211 0 0 -0.11181870e+01 0.38333564e+00 -0.41517737e+01 0.13957000e+00
- 2 111 376 377 0.45250035e-01 -0.21698927e+00 -0.83282081e+00 0.13498000e+00
- 1 211 0 0 0.29731988e+00 -0.16015580e+00 -0.20074916e+01 0.13957000e+00
- 1 -211 0 0 0.15254140e+00 0.97349740e-01 -0.43324944e+01 0.13957000e+00
- 2 111 378 379 0.21300569e+00 0.10703625e+00 -0.12387521e+01 0.13498000e+00
- 1 -211 0 0 0.21291063e+00 0.35126950e-01 -0.93732681e+00 0.13957000e+00
- 2 111 380 381 -0.15769027e+00 -0.12291035e+00 -0.29769020e+01 0.13498000e+00
- 1 22 0 0 -0.34154585e+00 0.23845509e+00 -0.18295304e+01 0.00000000e+00
- 1 22 0 0 -0.47486101e+00 0.18287183e+00 -0.18829244e+01 0.00000000e+00
- 1 -211 0 0 -0.15233715e+00 -0.14885030e-01 -0.10409214e+01 0.13957000e+00
- 2 111 382 383 -0.43227001e+00 0.55911076e-01 -0.11985932e+02 0.13498000e+00
- 1 -211 0 0 -0.13195405e+01 0.13209561e+00 -0.35828097e+02 0.13957000e+00
- 2 111 384 385 -0.26126855e+00 -0.28719529e+00 -0.71060158e+01 0.13498000e+00
- 1 -2212 0 0 -0.13000500e+01 0.11341227e+00 -0.73857494e+02 0.93827000e+00
- 1 -211 0 0 -0.42385951e+00 -0.78864121e-01 -0.27074947e+02 0.13957000e+00
- 1 2212 0 0 -0.26323455e+01 -0.49952237e+00 -0.13591191e+03 0.93827000e+00
- 1 -211 0 0 -0.24747448e+00 -0.17148567e+00 -0.15718937e+02 0.13957000e+00
- 1 -321 0 0 -0.15907485e+01 -0.37320218e+00 -0.11180936e+03 0.49360000e+00
- 1 211 0 0 -0.64879429e-01 -0.10767697e+00 -0.55042691e+01 0.13957000e+00
- 1 130 0 0 -0.43383236e+00 0.75765170e-01 -0.87676357e+02 0.49767000e+00
- 1 -2112 0 0 -0.48973885e+00 0.20941593e+00 -0.13120694e+03 0.93957000e+00
- 1 211 0 0 -0.82358219e-01 -0.76260978e-01 -0.11318504e+02 0.13957000e+00
- 1 2112 0 0 -0.79965939e+00 -0.53714337e-01 -0.20869377e+03 0.93957000e+00
- 1 -211 0 0 -0.44377400e-01 -0.13565305e+00 -0.64010151e+02 0.13957000e+00
- 1 211 0 0 0.30792271e+00 0.47564453e-01 -0.62881702e+03 0.13957000e+00
- 2 111 386 387 0.39999972e+00 0.75103101e-01 -0.24147021e+03 0.13498000e+00
- 1 -211 0 0 -0.25953113e-01 -0.47325232e+00 -0.10758413e+03 0.13957000e+00
- 1 211 0 0 -0.32399684e+00 0.18482301e+00 -0.54946223e+02 0.13957000e+00
- 1 22 0 0 0.24913773e+00 0.15101895e+00 -0.28416169e+03 0.00000000e+00
- 1 22 0 0 0.77567956e+00 0.36857889e+00 -0.65270953e+03 0.00000000e+00
- 1 2112 0 0 -0.40296197e+00 -0.20048998e+00 -0.93238208e+02 0.93957000e+00
- 1 -211 0 0 0.34029720e-01 0.14659176e+00 -0.13786763e+02 0.13957000e+00
- 2 310 388 389 0.42176638e+00 -0.37449064e+00 -0.17727556e+02 0.49767000e+00
- 1 211 0 0 0.12866235e+00 -0.68548270e-01 -0.12190251e+02 0.13957000e+00
- 2 111 390 391 0.42563157e+00 -0.26038566e+00 -0.43078048e+01 0.13498000e+00
- 1 -211 0 0 -0.15966758e-01 0.12781063e+00 -0.94419877e+00 0.13957000e+00
- 1 211 0 0 -0.35206164e-01 -0.34201473e-01 -0.27423928e+01 0.13957000e+00
- 2 111 392 393 -0.55354710e+00 0.34501465e+00 -0.65709135e+01 0.13498000e+00
- 1 22 0 0 0.43168295e+00 0.21217551e+00 -0.63311373e+01 0.00000000e+00
- 2 111 394 395 -0.90223977e-01 0.26012558e+00 -0.10000385e+01 0.13498000e+00
- 1 -321 0 0 0.32919884e+00 0.46075921e+00 -0.53107513e+01 0.49360000e+00
- 2 111 396 397 -0.18061891e+00 0.42933298e+00 -0.20563306e+01 0.13498000e+00
- 1 321 0 0 -0.11689607e+00 0.10346640e+01 -0.82039099e+01 0.49360000e+00
- 2 111 398 399 -0.65534805e+00 0.10493855e+01 -0.74794008e+01 0.13498000e+00
- 1 -2112 0 0 -0.20667118e+00 0.14129014e+01 -0.12583981e+02 0.93957000e+00
- 1 -211 0 0 -0.51687982e-01 0.20928212e+00 -0.39519057e+01 0.13957000e+00
- 1 2112 0 0 0.12765459e+01 0.86109261e+00 -0.90052221e+02 0.93957000e+00
- 1 211 0 0 0.32208426e+00 0.19592155e+00 -0.34654738e+02 0.13957000e+00
- 1 -211 0 0 0.31017945e+00 -0.21702059e-01 0.17773841e+03 0.13957000e+00
- 1 211 0 0 -0.43354911e-01 0.75074990e-01 0.47340645e+01 0.13957000e+00
- 1 -211 0 0 -0.53864338e-01 -0.22705490e+00 0.19470239e+02 0.13957000e+00
- 2 111 400 401 -0.16783396e-01 0.44137495e+00 0.63800933e+02 0.13498000e+00
- 1 22 0 0 -0.21582112e+00 0.14169059e+00 0.10632457e+02 0.00000000e+00
- 1 22 0 0 -0.55429364e-01 -0.37622327e+00 0.99369959e+01 0.00000000e+00
- 1 211 0 0 -0.60620820e-01 0.26635808e+00 0.11554838e+03 0.13957000e+00
- 2 111 402 403 0.67261664e+00 0.24176824e+00 0.14529475e+03 0.13498000e+00
- 1 -211 0 0 -0.22203818e+00 -0.21732046e+00 0.65728391e+01 0.13957000e+00
- 1 211 0 0 0.18527855e+00 0.14671431e+00 0.12708248e+01 0.13957000e+00
- 1 211 0 0 -0.39436994e+00 -0.15044038e-01 0.91416840e+00 0.13957000e+00
- 2 111 404 405 0.31975620e+00 0.16689275e+00 0.19651123e+01 0.13498000e+00
- 1 -2212 0 0 -0.16059699e+01 0.50133576e+00 0.54369079e+01 0.93827000e+00
- 2 111 406 407 -0.30626930e+00 -0.18846351e-02 0.63695294e+00 0.13498000e+00
- 1 211 0 0 -0.91661040e+00 0.14629292e+01 0.24891160e+01 0.13957000e+00
- 2 111 408 409 -0.37167885e+00 0.27833022e+00 0.17226431e+01 0.13498000e+00
- 2 311 410 410 -0.30170972e+00 0.46266197e-01 0.17130195e+01 0.49767000e+00
- 2 111 411 412 -0.66663781e+00 -0.18280167e-02 0.10216086e+01 0.13498000e+00
- 1 130 0 0 0.42680855e-01 0.14593238e+01 0.45511437e+01 0.49767000e+00
- 1 -211 0 0 -0.98587150e-01 0.18052116e+01 0.72457226e+01 0.13957000e+00
- 2 111 413 414 0.93842246e-01 0.14784556e-01 0.56703039e+00 0.13498000e+00
- 1 -211 0 0 0.44828607e-01 0.68534063e+00 0.31790414e+01 0.13957000e+00
- 1 211 0 0 0.23264254e+00 0.11628576e+01 0.49251483e+01 0.13957000e+00
- 2 221 415 416 0.40885099e+00 0.17022504e+01 0.90890528e+01 0.54745000e+00
- 1 2112 0 0 0.23675369e+00 0.35702439e+00 0.85889315e+01 0.93957000e+00
- 1 -211 0 0 0.60345697e-01 0.20754621e+00 0.68414160e+00 0.13957000e+00
- 1 22 0 0 0.69582522e+00 0.67099140e+00 0.29549530e+02 0.00000000e+00
- 1 22 0 0 0.12216763e+00 0.99697775e-01 0.67335073e+01 0.00000000e+00
- 1 211 0 0 -0.11696030e+00 0.16739493e+00 0.73956035e+02 0.13957000e+00
- 2 111 417 418 0.67494999e+00 0.11212117e+00 0.28885120e+03 0.13498000e+00
- 1 -211 0 0 0.75296561e-01 0.28172194e+00 0.10715553e+03 0.13957000e+00
- 2 111 419 420 0.41573020e+00 -0.25357430e+00 0.81734792e+02 0.13498000e+00
- 1 22 0 0 0.58435052e-01 0.24226706e+00 0.51258543e+02 0.00000000e+00
- 1 22 0 0 -0.64072283e+00 0.23973734e+00 0.14129417e+03 0.00000000e+00
- 1 -211 0 0 0.25796155e-01 0.73383527e-01 0.73640986e+02 0.13957000e+00
- 1 211 0 0 -0.23700403e+00 -0.62697192e-01 0.40648641e+02 0.13957000e+00
- 2 111 421 422 -0.10553209e+00 -0.31017108e+00 0.47454354e+02 0.13498000e+00
- 1 211 0 0 0.52126165e-01 -0.57451989e-01 0.47652120e+01 0.13957000e+00
- 1 -211 0 0 -0.10353023e+01 0.55072849e+00 0.62499832e+02 0.13957000e+00
- 1 22 0 0 0.83612939e-01 -0.84666676e-01 0.16421859e+01 0.00000000e+00
- 1 22 0 0 0.90440646e-02 0.46999326e-01 0.50955806e+00 0.00000000e+00
- 1 211 0 0 -0.53990856e+00 0.15276239e+00 0.67411810e+01 0.13957000e+00
- 1 -211 0 0 -0.22463117e+00 0.39882984e-01 0.15056945e+01 0.13957000e+00
- 2 111 423 424 0.40854743e-01 0.18073109e+00 0.26353040e+01 0.13498000e+00
- 1 211 0 0 0.54672502e+00 -0.13968835e+00 0.13050871e+01 0.13957000e+00
- 2 111 425 426 0.14594579e+00 0.25656181e+00 0.85066793e+00 0.13498000e+00
- 1 -211 0 0 0.97365446e+00 -0.26272821e+00 0.32627745e+00 0.13957000e+00
- 2 111 427 428 0.67858907e+00 -0.33153714e+00 0.83767463e+00 0.13498000e+00
- 1 211 0 0 0.95968878e+00 -0.93686858e-01 0.48067255e+00 0.13957000e+00
- 2 111 429 430 0.40584696e+00 0.73649838e-01 0.10386768e+01 0.13498000e+00
- 1 321 0 0 0.47550708e+00 -0.17628353e-01 0.11558595e+01 0.49360000e+00
- 1 -211 0 0 -0.17811719e+00 0.10309624e-01 0.17244416e+00 0.13957000e+00
- 2 -311 431 431 0.26036559e+01 -0.52200574e-01 0.89270134e+00 0.49767000e+00
- 2 111 432 433 0.48629161e+00 0.14089839e+00 0.47497018e+00 0.13498000e+00
- 1 22 0 0 0.58840206e+00 -0.47787358e+00 0.43776468e+00 0.00000000e+00
- 1 22 0 0 0.32329826e+00 -0.36178356e+00 0.19620128e+00 0.00000000e+00
- 2 -311 434 434 -0.35378361e+00 -0.98471436e+00 -0.24215438e+00 0.49767000e+00
- 1 -211 0 0 -0.53285976e+00 -0.20912008e+01 -0.47152953e+00 0.13957000e+00
- 1 -211 0 0 -0.42281045e-01 -0.34144103e+00 -0.27462042e-02 0.13957000e+00
- 1 211 0 0 -0.31742695e+00 -0.41628057e+00 -0.40938645e+00 0.13957000e+00
- 2 111 435 436 0.61631665e-02 0.10118203e-01 0.47411648e-01 0.13498000e+00
- 1 211 0 0 0.14296976e+00 0.75494609e-01 -0.25471080e+00 0.13957000e+00
- 2 111 437 438 -0.85740233e+00 -0.27221365e+00 -0.57410706e+00 0.13498000e+00
- 1 211 0 0 0.22029589e+00 -0.74835088e+00 -0.12220585e+01 0.13957000e+00
- 2 111 439 440 -0.34603800e+00 -0.14111905e+00 -0.44212143e+00 0.13498000e+00
- 1 211 0 0 0.26734445e+00 -0.18017545e+00 -0.42119846e+01 0.13957000e+00
- 1 -211 0 0 0.39468548e+00 0.44625875e+00 -0.32255065e+01 0.13957000e+00
- 1 211 0 0 0.11115627e+01 -0.91371767e+00 -0.78869493e+01 0.13957000e+00
- 1 -211 0 0 -0.53971450e-01 -0.18794858e+00 -0.13808359e+01 0.13957000e+00
- 1 -211 0 0 -0.67759056e-01 0.44218025e-01 -0.26341749e+01 0.13957000e+00
- 2 111 441 442 0.10858353e+01 0.46548675e+00 -0.14579393e+02 0.13498000e+00
- 1 211 0 0 0.85131563e+00 0.31434782e+00 -0.13846588e+02 0.13957000e+00
- 1 -211 0 0 0.19132681e+00 -0.64906882e-01 -0.15556808e+02 0.13957000e+00
- 1 -2212 0 0 0.60635271e+00 -0.58636874e-01 -0.27552062e+02 0.93827000e+00
- 2 111 443 444 0.32399292e-01 -0.53329351e-01 -0.75841704e+00 0.13498000e+00
- 1 211 0 0 0.17848532e-02 0.38672407e+00 -0.64080289e+01 0.13957000e+00
- 2 111 445 446 0.23476537e+00 -0.27444712e+00 -0.55227232e+01 0.13498000e+00
- 1 22 0 0 -0.79975769e-01 0.53595562e-01 -0.22557046e+01 0.00000000e+00
- 1 22 0 0 0.47620004e-01 0.98274406e-01 -0.23098412e+01 0.00000000e+00
- 2 311 447 447 -0.46071282e-01 0.10964345e+00 -0.18145297e+02 0.49767000e+00
- 2 111 448 449 0.16373688e+00 -0.22319980e+00 -0.40953824e+01 0.13498000e+00
- 1 130 0 0 0.16882633e+00 0.73789140e+00 -0.13814967e+02 0.49767000e+00
- 1 22 0 0 -0.91185462e-01 0.23450822e+00 -0.26407846e+01 0.00000000e+00
- 1 22 0 0 0.15848254e-01 0.31533140e-01 -0.11378141e+01 0.00000000e+00
- 1 22 0 0 0.36349955e+00 -0.25449347e+00 -0.68239080e+02 0.00000000e+00
- 1 22 0 0 0.97805298e-01 -0.65872497e-01 -0.32439737e+02 0.00000000e+00
- 1 211 0 0 -0.10269083e+00 0.56771238e-01 -0.15672869e+02 0.13957000e+00
- 1 -211 0 0 -0.11440731e+00 0.29889138e-01 -0.11173371e+02 0.13957000e+00
- 2 221 450 452 -0.52926567e+00 0.22309092e-03 -0.24305597e+02 0.54745000e+00
- 1 -321 0 0 0.94306867e-01 0.97395975e-01 -0.34711272e+03 0.49360000e+00
- 1 211 0 0 -0.29270039e+00 -0.69567847e-01 -0.55756506e+03 0.13957000e+00
- 1 2112 0 0 -0.76671517e-01 0.31158116e+00 -0.10436009e+04 0.93957000e+00
- 1 211 0 0 0.15474272e+00 0.46897522e+00 -0.38645211e+03 0.13957000e+00
- 2 310 453 454 -0.47719446e-01 -0.64274888e+00 0.15809848e+01 0.49767000e+00
- 1 22 0 0 0.10983998e-01 -0.12237097e-01 0.52124257e-02 0.00000000e+00
- 1 22 0 0 0.19397071e+00 0.35831781e-02 0.90052089e+00 0.00000000e+00
- 1 22 0 0 0.57925493e-01 0.99962799e-03 0.29217883e+00 0.00000000e+00
- 1 22 0 0 0.58417143e-01 -0.89651086e-01 0.12631520e+00 0.00000000e+00
- 1 22 0 0 -0.11779931e-01 -0.70478978e-01 0.17874828e+00 0.00000000e+00
- 1 22 0 0 -0.27103604e-01 -0.99186144e+00 0.14353557e+01 0.00000000e+00
- 2 310 455 456 0.17037050e+00 -0.47911903e+01 0.10233375e+02 0.49767000e+00
- 1 130 0 0 0.18015653e+00 -0.76868869e+00 0.17814561e+01 0.49767000e+00
- 1 22 0 0 0.19922926e-01 0.96577156e-02 0.14491028e+00 0.00000000e+00
- 1 22 0 0 -0.16586536e+00 -0.74734364e-01 0.57532405e+00 0.00000000e+00
- 1 22 0 0 -0.11776169e+00 -0.56441575e+00 0.14838513e+01 0.00000000e+00
- 1 22 0 0 -0.87691261e-01 -0.20978312e+00 0.41131939e+00 0.00000000e+00
- 2 111 457 458 0.72307781e-01 -0.42751284e-01 0.59436683e+00 0.13498000e+00
- 2 111 459 460 -0.26213835e-01 -0.81100021e-01 0.29906350e+00 0.13498000e+00
- 2 111 461 462 0.15370832e+00 -0.25417833e+00 0.16726068e+01 0.13498000e+00
- 1 22 0 0 0.61219141e-01 -0.76180923e-01 -0.18551247e+00 0.00000000e+00
- 1 22 0 0 -0.15969105e-01 -0.14080834e+00 -0.64730834e+00 0.00000000e+00
- 1 22 0 0 0.87744400e-01 0.31071615e-01 -0.21204452e+00 0.00000000e+00
- 1 22 0 0 0.12526129e+00 0.75964632e-01 -0.10267075e+01 0.00000000e+00
- 1 22 0 0 -0.37572838e-01 -0.11339737e+00 -0.13285792e+01 0.00000000e+00
- 1 22 0 0 -0.12011743e+00 -0.95129829e-02 -0.16483228e+01 0.00000000e+00
- 1 22 0 0 -0.14831037e+00 0.74895891e-01 -0.35556065e+01 0.00000000e+00
- 1 22 0 0 -0.28395964e+00 -0.18984814e-01 -0.84303255e+01 0.00000000e+00
- 1 22 0 0 -0.24888929e+00 -0.29047957e+00 -0.70525460e+01 0.00000000e+00
- 1 22 0 0 -0.12379265e-01 0.32842802e-02 -0.53469878e-01 0.00000000e+00
- 1 22 0 0 0.28916296e+00 0.28949332e-01 -0.13486668e+03 0.00000000e+00
- 1 22 0 0 0.11083676e+00 0.46153769e-01 -0.10660353e+03 0.00000000e+00
- 1 -211 0 0 0.16414766e-01 -0.69860090e-01 -0.16743985e+01 0.13957000e+00
- 1 211 0 0 0.40535161e+00 -0.30463055e+00 -0.16053158e+02 0.13957000e+00
- 1 22 0 0 0.66445177e-01 -0.59709847e-02 -0.33398907e+00 0.00000000e+00
- 1 22 0 0 0.35918640e+00 -0.25441468e+00 -0.39738157e+01 0.00000000e+00
- 1 22 0 0 -0.44403447e+00 0.26425525e+00 -0.45867466e+01 0.00000000e+00
- 1 22 0 0 -0.10951263e+00 0.80759396e-01 -0.19841669e+01 0.00000000e+00
- 1 22 0 0 -0.67813736e-01 0.76260645e-01 -0.54898041e+00 0.00000000e+00
- 1 22 0 0 -0.22410240e-01 0.18386494e+00 -0.45105814e+00 0.00000000e+00
- 1 22 0 0 -0.13525916e-01 0.44153855e-01 -0.80627654e-01 0.00000000e+00
- 1 22 0 0 -0.16709300e+00 0.38517913e+00 -0.19757030e+01 0.00000000e+00
- 1 22 0 0 -0.56357532e+00 0.87426096e+00 -0.65461104e+01 0.00000000e+00
- 1 22 0 0 -0.91772730e-01 0.17512451e+00 -0.93329041e+00 0.00000000e+00
- 1 22 0 0 -0.33301996e-01 0.39753526e+00 0.60772737e+02 0.00000000e+00
- 1 22 0 0 0.16518600e-01 0.43839691e-01 0.30281969e+01 0.00000000e+00
- 1 22 0 0 0.40871891e+00 0.85983225e-01 0.90502902e+02 0.00000000e+00
- 1 22 0 0 0.26389773e+00 0.15578502e+00 0.54791847e+02 0.00000000e+00
- 1 22 0 0 0.57526754e-01 -0.16008976e-01 0.45553889e+00 0.00000000e+00
- 1 22 0 0 0.26222944e+00 0.18290173e+00 0.15095735e+01 0.00000000e+00
- 1 22 0 0 -0.17319814e+00 -0.39498957e-01 0.47178967e+00 0.00000000e+00
- 1 22 0 0 -0.13307116e+00 0.37614322e-01 0.16516326e+00 0.00000000e+00
- 1 22 0 0 -0.25372626e+00 0.14694489e+00 0.12690324e+01 0.00000000e+00
- 1 22 0 0 -0.11795259e+00 0.13138532e+00 0.45361065e+00 0.00000000e+00
- 2 310 463 464 -0.30170972e+00 0.46266197e-01 0.17130195e+01 0.49767000e+00
- 1 22 0 0 -0.27474946e+00 0.68387653e-02 0.30537645e+00 0.00000000e+00
- 1 22 0 0 -0.39188835e+00 -0.86667819e-02 0.71623211e+00 0.00000000e+00
- 1 22 0 0 -0.35987791e-02 0.23267630e-01 0.36847891e+00 0.00000000e+00
- 1 22 0 0 0.97441025e-01 -0.84830742e-02 0.19855147e+00 0.00000000e+00
- 1 22 0 0 -0.12977724e+00 0.40897361e+00 0.24091134e+01 0.00000000e+00
- 1 22 0 0 0.53862822e+00 0.12932768e+01 0.66799394e+01 0.00000000e+00
- 1 22 0 0 0.35047872e-01 0.34794739e-01 0.14306258e+02 0.00000000e+00
- 1 22 0 0 0.63990211e+00 0.77326433e-01 0.27454494e+03 0.00000000e+00
- 1 22 0 0 0.19927186e+00 -0.18238655e+00 0.37329195e+02 0.00000000e+00
- 1 22 0 0 0.21645834e+00 -0.71187749e-01 0.44405597e+02 0.00000000e+00
- 1 22 0 0 -0.36149830e-02 -0.16556221e-02 0.37576039e-01 0.00000000e+00
- 1 22 0 0 -0.10191711e+00 -0.30851545e+00 0.47416778e+02 0.00000000e+00
- 1 22 0 0 0.15744427e-01 0.18345376e+00 0.25398980e+01 0.00000000e+00
- 1 22 0 0 0.25110316e-01 -0.27226699e-02 0.95406006e-01 0.00000000e+00
- 1 22 0 0 0.82940079e-01 0.17218861e+00 0.70686853e+00 0.00000000e+00
- 1 22 0 0 0.63005708e-01 0.84373202e-01 0.14379940e+00 0.00000000e+00
- 1 22 0 0 0.30678974e+00 -0.78374693e-01 0.37120644e+00 0.00000000e+00
- 1 22 0 0 0.37179934e+00 -0.25316245e+00 0.46646819e+00 0.00000000e+00
- 1 22 0 0 0.12206240e+00 0.84994986e-01 0.31738706e+00 0.00000000e+00
- 1 22 0 0 0.28378457e+00 -0.11345148e-01 0.72128976e+00 0.00000000e+00
- 1 130 0 0 0.26036559e+01 -0.52200574e-01 0.89270134e+00 0.49767000e+00
- 1 22 0 0 0.26855722e+00 0.81888107e-01 0.35208188e+00 0.00000000e+00
- 1 22 0 0 0.21773439e+00 0.59010281e-01 0.12288830e+00 0.00000000e+00
- 1 130 0 0 -0.35378361e+00 -0.98471436e+00 -0.24215438e+00 0.49767000e+00
- 1 22 0 0 0.24194412e-01 -0.25411016e-02 -0.43592500e-01 0.00000000e+00
- 1 22 0 0 -0.18031246e-01 0.12659305e-01 0.91004147e-01 0.00000000e+00
- 1 22 0 0 -0.45493205e+00 -0.18594260e+00 -0.24779574e+00 0.00000000e+00
- 1 22 0 0 -0.40247028e+00 -0.86271053e-01 -0.32631132e+00 0.00000000e+00
- 1 22 0 0 -0.40206814e-01 -0.61418864e-01 -0.42098089e-01 0.00000000e+00
- 1 22 0 0 -0.30583118e+00 -0.79700187e-01 -0.40002334e+00 0.00000000e+00
- 1 22 0 0 0.10837910e+01 0.47177145e+00 -0.14461918e+02 0.00000000e+00
- 1 22 0 0 0.20443077e-02 -0.62847051e-02 -0.11747414e+00 0.00000000e+00
- 1 22 0 0 0.77054136e-02 -0.63262158e-01 -0.13948747e+00 0.00000000e+00
- 1 22 0 0 0.24693879e-01 0.99328076e-02 -0.61892958e+00 0.00000000e+00
- 1 22 0 0 0.19252791e+00 -0.21968292e+00 -0.34686109e+01 0.00000000e+00
- 1 22 0 0 0.42237466e-01 -0.54764194e-01 -0.20541124e+01 0.00000000e+00
- 1 130 0 0 -0.46071282e-01 0.10964345e+00 -0.18145297e+02 0.49767000e+00
- 1 22 0 0 0.93788766e-01 -0.21756969e+00 -0.30231916e+01 0.00000000e+00
- 1 22 0 0 0.69948111e-01 -0.56301191e-02 -0.10721908e+01 0.00000000e+00
- 2 111 465 466 -0.44687973e-01 0.46676840e-01 -0.57414148e+01 0.13498000e+00
- 2 111 467 468 -0.15054411e+00 -0.10057731e+00 -0.50216353e+01 0.13498000e+00
- 2 111 469 470 -0.33403359e+00 0.54123560e-01 -0.13542547e+02 0.13498000e+00
- 2 111 471 472 -0.20703240e+00 -0.21178533e+00 0.77938802e+00 0.13498000e+00
- 2 111 473 474 0.15931296e+00 -0.43096355e+00 0.80159679e+00 0.13498000e+00
- 1 -211 0 0 0.18088432e+00 -0.26099652e+01 0.51423633e+01 0.13957000e+00
- 1 211 0 0 -0.10513819e-01 -0.21812252e+01 0.50910112e+01 0.13957000e+00
- 1 22 0 0 0.11203268e+00 -0.40563122e-01 0.45206455e+00 0.00000000e+00
- 1 22 0 0 -0.39724896e-01 -0.21881612e-02 0.14230229e+00 0.00000000e+00
- 1 22 0 0 0.32854594e-01 -0.70681689e-01 0.24887396e+00 0.00000000e+00
- 1 22 0 0 -0.59068429e-01 -0.10418332e-01 0.50189543e-01 0.00000000e+00
- 1 22 0 0 -0.66088351e-02 -0.86177430e-01 0.30755505e+00 0.00000000e+00
- 1 22 0 0 0.16031716e+00 -0.16800090e+00 0.13650518e+01 0.00000000e+00
- 1 -211 0 0 -0.10581707e+00 0.97261666e-01 0.13871966e+01 0.13957000e+00
- 1 211 0 0 -0.19589265e+00 -0.50995469e-01 0.32582291e+00 0.13957000e+00
- 1 22 0 0 -0.67121318e-01 -0.22963907e-01 -0.20552462e+01 0.00000000e+00
- 1 22 0 0 0.22433346e-01 0.69640747e-01 -0.36861686e+01 0.00000000e+00
- 1 22 0 0 -0.13330285e+00 -0.11729600e-01 -0.32736008e+01 0.00000000e+00
- 1 22 0 0 -0.17241259e-01 -0.88847709e-01 -0.17480345e+01 0.00000000e+00
- 1 22 0 0 -0.27826652e+00 -0.91226177e-02 -0.10896502e+02 0.00000000e+00
- 1 22 0 0 -0.55767074e-01 0.63246178e-01 -0.26460453e+01 0.00000000e+00
- 1 22 0 0 -0.10542325e+00 -0.19143632e+00 0.46972642e+00 0.00000000e+00
- 1 22 0 0 -0.10160915e+00 -0.20349018e-01 0.30966160e+00 0.00000000e+00
- 1 22 0 0 0.29114116e-01 -0.20101011e+00 0.24988933e+00 0.00000000e+00
- 1 22 0 0 0.13019884e+00 -0.22995344e+00 0.55170747e+00 0.00000000e+00
- 695
- 2 25 2 3 0.18541417e+02 0.86831240e+01 -0.43123765e+02 0.12500762e+03
- 2 23 6 9 0.28411134e+02 0.16824904e+02 -0.24819186e+02 0.90345619e+02
- 2 23 4 5 -0.98697168e+01 -0.81417803e+01 -0.18304579e+02 0.26258916e+02
- 1 11 0 0 -0.35845765e+01 -0.51018068e+01 0.63189792e+01 0.51000000e-03
- 1 -11 0 0 -0.62851404e+01 -0.30399735e+01 -0.24623558e+02 0.51000000e-03
- 1 13 0 0 0.30875118e+02 0.72923650e+01 0.29987087e+02 0.10566000e+00
- 1 22 0 0 0.72120953e-03 -0.77449682e-03 0.11498862e-02 0.00000000e+00
- 1 -13 0 0 -0.24646910e+01 0.95333036e+01 -0.54807367e+02 0.10566000e+00
- 1 22 0 0 -0.14721530e-04 0.10284166e-04 -0.55825519e-04 0.00000000e+00
- 2 2 84 84 -0.11851089e+02 0.20470447e+02 0.11917549e+03 0.33000000e+00
- 2 21 84 84 -0.69782873e+00 0.26337981e+01 0.14559912e+02 0.00000000e+00
- 2 21 84 84 0.54550592e+00 -0.37404585e+00 0.63627828e+01 0.00000000e+00
- 2 21 84 84 -0.25689243e+00 0.84956184e-01 -0.53199187e-01 0.00000000e+00
- 2 21 84 84 0.96608831e+00 -0.10631701e+01 0.21039765e+00 0.00000000e+00
- 2 21 84 84 0.33713555e+01 -0.85984572e+01 0.56923956e+00 0.00000000e+00
- 2 21 84 84 0.97892736e+00 -0.44413215e+01 -0.28343211e+00 0.00000000e+00
- 2 21 84 84 0.58471922e+00 -0.42582180e+01 -0.60581782e+00 0.00000000e+00
- 2 21 84 84 0.84034646e+00 -0.74374013e+00 0.38029903e+00 0.00000000e+00
- 2 21 84 84 0.52885948e+01 -0.14200969e+01 0.10766889e+03 0.00000000e+00
- 2 21 84 84 0.33211323e+01 -0.38686595e+00 0.11431792e+03 0.00000000e+00
- 2 21 84 84 0.18314753e+01 -0.36833681e+01 0.51894523e+03 0.00000000e+00
- 2 21 84 84 0.42924942e+01 -0.10053013e+01 0.87963922e+03 0.00000000e+00
- 2 21 84 84 0.39262301e+00 -0.58510108e+00 0.92782872e+03 0.00000000e+00
- 2 21 84 84 -0.18314753e+01 0.36833681e+01 0.14539636e+04 0.00000000e+00
- 2 21 84 84 -0.39262301e+00 0.58510108e+00 0.62976883e+02 0.00000000e+00
- 2 21 84 84 -0.69871770e+01 0.29584641e+01 0.67655805e+03 0.00000000e+00
- 2 21 84 84 -0.12368191e+01 -0.74563162e+01 0.14506524e+03 0.00000000e+00
- 2 21 84 84 -0.54729293e+00 -0.75282795e+00 0.50750770e+01 0.00000000e+00
- 2 21 84 84 -0.22117971e+01 0.38898785e+00 0.31858042e+02 0.00000000e+00
- 2 21 84 84 -0.52885948e+01 0.14200969e+01 0.58609450e+02 0.00000000e+00
- 2 21 84 84 0.12368191e+01 0.74563162e+01 0.76729102e+02 0.00000000e+00
- 2 21 84 84 0.37417141e+01 0.45622262e+01 0.19208260e+02 0.00000000e+00
- 2 21 84 84 -0.76894055e+00 0.63707857e+00 0.22275109e+01 0.00000000e+00
- 2 21 84 84 -0.40572260e+01 0.94122450e+01 0.99810988e+01 0.00000000e+00
- 2 21 84 84 -0.69918475e+01 0.21272412e+01 0.59859212e+01 0.00000000e+00
- 2 21 84 84 -0.42924942e+01 0.10053013e+01 0.23741382e+01 0.00000000e+00
- 2 21 84 84 -0.74042951e+00 0.51694994e+00 -0.12052799e+00 0.00000000e+00
- 2 21 84 84 -0.60008064e+00 0.13286502e+01 -0.34047052e+00 0.00000000e+00
- 2 21 84 84 -0.26802848e+01 -0.10982905e+00 -0.19743849e+01 0.00000000e+00
- 2 21 84 84 -0.98716294e+00 -0.56500560e+00 -0.17088720e+01 0.00000000e+00
- 2 21 84 84 -0.37417141e+01 -0.45622262e+01 -0.17521885e+02 0.00000000e+00
- 2 21 84 84 -0.17526145e+01 -0.29168626e+01 -0.29300375e+02 0.00000000e+00
- 2 21 84 84 0.60008064e+00 -0.13286502e+01 -0.14575230e+02 0.00000000e+00
- 2 21 84 84 -0.16405215e+01 -0.44794030e+01 -0.86272259e+02 0.00000000e+00
- 2 21 84 84 0.26842356e+01 -0.36421047e+01 -0.79484967e+03 0.00000000e+00
- 2 21 84 84 -0.29037782e+01 0.24893460e+01 -0.14239560e+04 0.00000000e+00
- 2 21 84 84 0.26802848e+01 0.10982905e+00 -0.14525337e+03 0.00000000e+00
- 2 21 84 84 0.54729293e+00 0.75282795e+00 -0.21213980e+02 0.00000000e+00
- 2 21 84 84 0.16405215e+01 0.44794030e+01 -0.93890452e+02 0.00000000e+00
- 2 21 84 84 -0.26842356e+01 0.36421047e+01 -0.48720503e+02 0.00000000e+00
- 2 21 84 84 -0.33211323e+01 0.38686595e+00 -0.27266604e+02 0.00000000e+00
- 2 21 84 84 -0.15032123e+01 0.34619077e+01 -0.14541734e+02 0.00000000e+00
- 2 21 84 84 0.76894055e+00 -0.63707857e+00 -0.22050830e+01 0.00000000e+00
- 2 21 84 84 0.49778622e+00 -0.30733407e+00 -0.76329875e+00 0.00000000e+00
- 2 21 84 84 0.74042951e+00 -0.51694994e+00 -0.19727012e+01 0.00000000e+00
- 2 21 84 84 0.29037782e+01 -0.24893460e+01 -0.13510369e+02 0.00000000e+00
- 2 21 84 84 0.22117971e+01 -0.38898785e+00 -0.12603991e+02 0.00000000e+00
- 2 21 84 84 0.17526145e+01 0.29168626e+01 -0.79125750e+01 0.00000000e+00
- 2 21 84 84 -0.62764347e+00 0.69588324e+00 -0.73248374e+01 0.00000000e+00
- 2 2203 84 84 -0.92782984e+00 -0.19186750e+01 -0.22994620e+04 0.77133000e+00
- 2 -2 208 208 -0.43526144e+00 -0.13348949e+01 -0.11640557e+00 0.33000000e+00
- 2 21 208 208 0.59456184e+00 0.22044272e+00 -0.39459444e+00 0.00000000e+00
- 2 21 208 208 -0.84187054e-01 -0.70666830e+00 -0.38441806e+01 0.00000000e+00
- 2 21 208 208 -0.60925041e+00 0.22947354e+01 -0.12874585e+04 0.00000000e+00
- 2 21 208 208 0.21954845e+00 0.12441131e+01 -0.36323991e+03 0.00000000e+00
- 2 1 208 208 -0.88489149e+00 -0.11780293e+01 -0.13790235e+03 0.33000000e+00
- 2 2 224 224 -0.92960043e+01 -0.96191984e+01 -0.83046532e+01 0.33000000e+00
- 2 21 224 224 -0.95441796e+00 -0.14751439e+01 -0.56516027e+00 0.00000000e+00
- 2 21 224 224 0.69918475e+01 -0.21272412e+01 -0.60034346e+01 0.00000000e+00
- 2 21 224 224 0.40572260e+01 -0.94122450e+01 0.51549157e+01 0.00000000e+00
- 2 21 224 224 0.15032123e+01 -0.34619077e+01 0.12188747e+02 0.00000000e+00
- 2 21 224 224 0.69871770e+01 -0.29584641e+01 0.28154224e+02 0.00000000e+00
- 2 21 224 224 0.93439239e+00 -0.11046844e+01 0.67211569e+02 0.00000000e+00
- 2 21 224 224 0.42405315e+00 -0.88692546e+00 0.67946036e+01 0.00000000e+00
- 2 21 224 224 0.27814743e-01 0.15630031e+00 0.65277167e+00 0.00000000e+00
- 2 21 224 224 0.67982053e-01 0.16469374e+00 0.61721650e+00 0.00000000e+00
- 2 2101 224 224 -0.14714163e+01 0.10546786e+01 0.12664898e+04 0.57933000e+00
- 2 1 257 257 -0.12805290e+01 -0.16476293e-01 -0.95065807e+00 0.00000000e+00
- 2 21 257 257 -0.49778622e+00 0.30733407e+00 -0.95494710e+00 0.00000000e+00
- 2 21 257 257 0.98716294e+00 0.56500560e+00 -0.12374145e+00 0.00000000e+00
- 2 -1 257 257 0.12805290e+01 0.16476293e-01 0.12524831e+01 0.00000000e+00
- 2 1 263 263 0.15635254e+00 0.47274411e+00 0.18223415e+01 0.00000000e+00
- 2 -1 263 263 -0.15635254e+00 -0.47274411e+00 0.29057901e+03 0.00000000e+00
- 2 92 85 207 -0.27103180e+02 0.19574975e+02 0.17206693e+03 0.10349534e+05
- 2 111 270 271 -0.65720916e+01 0.10700425e+02 0.62562413e+02 0.13498000e+00
- 2 223 272 274 -0.18346760e+01 0.45524129e+01 0.26837325e+02 0.78119589e+00
- 1 211 0 0 -0.59839485e+00 0.18571373e+01 0.85200035e+01 0.13957000e+00
- 2 3112 275 276 -0.25977422e+01 0.31290497e+01 0.21711508e+02 0.11974400e+01
- 2 -3312 277 278 -0.51842739e+00 0.23721101e+01 0.14154630e+02 0.13213000e+01
- 2 -313 279 280 -0.20137692e+00 0.21519368e+00 0.60410633e+01 0.85760004e+00
- 2 -213 281 282 0.77231616e+00 -0.12507666e+01 0.46457437e+00 0.83799829e+00
- 2 111 283 284 0.42874312e+00 -0.38058695e+00 -0.33040579e+00 0.13498000e+00
- 2 223 285 287 0.14662391e+01 -0.43307092e+01 0.20595012e+00 0.70808208e+00
- 1 2212 0 0 0.13136328e+01 -0.41471912e+01 -0.26139953e+00 0.93827000e+00
- 1 -2212 0 0 0.14916258e+01 -0.40135153e+01 0.27549556e+00 0.93827000e+00
- 1 211 0 0 0.86628695e+00 -0.37046299e+01 0.77934310e-02 0.13957000e+00
- 2 111 288 289 0.24178534e+00 -0.21773224e+00 0.99575423e-01 0.13498000e+00
- 1 -211 0 0 -0.42736019e-01 -0.90295652e+00 0.41520497e+00 0.13957000e+00
- 1 321 0 0 0.34984635e+00 0.64358095e-01 0.98485061e+00 0.49360000e+00
- 2 3122 290 291 -0.21540853e+00 0.17549656e+00 0.28915978e+01 0.11156800e+01
- 1 -2112 0 0 0.30887091e+00 -0.99533795e-01 0.51893882e+01 0.93957000e+00
- 2 -213 292 293 0.41430681e+00 -0.32215977e+00 0.12842804e+02 0.97631339e+00
- 2 223 294 296 0.11467608e+01 -0.73967837e+00 0.14909320e+02 0.79280168e+00
- 2 213 297 298 0.31732557e+01 -0.50421553e+00 0.72188925e+02 0.72523895e+00
- 1 -211 0 0 0.75196235e+00 0.96962946e-01 0.17842280e+02 0.13957000e+00
- 2 213 299 300 0.70753282e+00 -0.23659508e+00 0.41068183e+02 0.76634043e+00
- 2 2114 301 302 0.16529374e+01 -0.12845951e+01 0.11761418e+03 0.12218539e+01
- 2 113 303 304 0.60048350e+00 -0.10102302e+01 0.23876848e+03 0.90788668e+00
- 1 -2112 0 0 0.13504544e+01 0.13221209e+00 0.97779982e+02 0.93957000e+00
- 2 221 305 307 0.10471361e+01 -0.66437457e+00 0.13721516e+03 0.54745000e+00
- 2 113 308 309 0.68107200e+00 -0.62854552e+00 0.21329736e+03 0.84494401e+00
- 2 113 310 311 0.79510344e+00 -0.13135905e+01 0.25188411e+03 0.92490910e+00
- 1 -211 0 0 0.17734259e+01 -0.42972857e+00 0.32921806e+03 0.13957000e+00
- 2 221 312 313 0.15564434e+00 -0.43624335e+00 0.37417405e+03 0.54745000e+00
- 2 111 314 315 0.68908283e+00 0.67398540e+00 0.39438851e+03 0.13498000e+00
- 2 113 316 317 -0.79659240e+00 0.10154092e+01 0.82786704e+03 0.59384509e+00
- 1 321 0 0 0.28484043e+00 0.50960903e+00 0.11106946e+03 0.49360000e+00
- 1 -321 0 0 -0.15010614e+01 0.12314836e+01 0.57771339e+03 0.49360000e+00
- 1 2212 0 0 -0.12792310e+01 0.89944084e+00 0.19748172e+03 0.93827000e+00
- 1 -2112 0 0 -0.18756946e+01 0.42539708e+00 0.21485721e+03 0.93957000e+00
- 2 113 318 319 0.11656484e+00 -0.21337024e+00 0.96823701e+02 0.87975541e+00
- 2 111 320 321 -0.36044523e+01 0.21193021e+01 0.28357286e+03 0.13498000e+00
- 1 -211 0 0 0.66589104e-01 -0.52128783e+00 0.43578991e+02 0.13957000e+00
- 2 113 322 323 -0.23758810e+00 0.62602909e+00 0.63913767e+02 0.61933416e+00
- 2 331 324 325 -0.10685144e+01 -0.33938723e+01 0.69465223e+02 0.95791223e+00
- 2 223 326 328 -0.55750575e+00 -0.21817483e+01 0.49542102e+02 0.78213119e+00
- 1 211 0 0 -0.58407059e+00 -0.29012744e+00 0.79061080e+01 0.13957000e+00
- 2 311 329 329 -0.62022323e-01 -0.10783992e+01 0.26212157e+02 0.49767000e+00
- 2 333 330 331 -0.20344705e+01 0.30219745e+00 0.26514291e+02 0.10170370e+01
- 2 -323 332 333 -0.15813931e+01 -0.28235249e+00 0.13404902e+02 0.88654216e+00
- 2 223 334 336 -0.13755018e+01 0.34829620e+00 0.20835777e+02 0.77757073e+00
- 1 2212 0 0 -0.10083993e+01 0.11196017e+01 0.23536836e+02 0.93827000e+00
- 1 -2112 0 0 -0.13241848e+01 0.67307178e+00 0.16889962e+02 0.93957000e+00
- 2 113 337 338 0.43846982e+00 0.21452462e+01 0.21765146e+02 0.65899461e+00
- 1 -211 0 0 0.37226802e+00 0.46700181e+00 0.58061221e+01 0.13957000e+00
- 2 2224 339 340 0.82855603e+00 0.20957232e+01 0.22135293e+02 0.12114860e+01
- 1 -211 0 0 0.40876990e+00 0.96926392e+00 0.50541369e+01 0.13957000e+00
- 1 -2112 0 0 0.74893438e-01 0.16862711e+01 0.13350348e+02 0.93957000e+00
- 2 -213 341 342 0.30504194e+00 0.16690544e+00 0.11868925e+01 0.55864967e+00
- 2 213 343 344 0.10086111e+01 0.21774533e+01 0.10060955e+02 0.72442671e+00
- 2 113 345 346 0.28437322e+00 0.90548817e+00 0.33798816e+01 0.11397785e+01
- 2 223 347 348 0.26880512e+00 0.17415091e+01 0.34628965e+01 0.80312221e+00
- 2 2114 349 350 -0.19766802e+01 0.35869479e+01 0.42507523e+01 0.11293324e+01
- 2 -213 351 352 -0.11638834e+00 0.19133836e+00 0.97268404e+00 0.69505402e+00
- 1 -2112 0 0 -0.22940338e+01 0.31580672e+01 0.43324671e+01 0.93957000e+00
- 1 211 0 0 -0.11683365e+00 0.42110324e+00 0.14733044e+00 0.13957000e+00
- 1 2112 0 0 -0.12590873e+01 0.96320349e+00 0.21348174e+01 0.93957000e+00
- 1 -2212 0 0 -0.21990665e+01 0.79440452e+00 0.15540882e+01 0.93827000e+00
- 2 113 353 354 -0.17912132e+01 0.92554742e+00 0.15999500e+01 0.89207804e+00
- 1 211 0 0 -0.33202006e+01 0.74930006e+00 0.24875738e+01 0.13957000e+00
- 1 -211 0 0 -0.12569781e+01 0.33790360e+00 0.54435713e+00 0.13957000e+00
- 2 213 355 356 -0.28671798e+00 0.10014801e+01 0.34374237e+00 0.69513354e+00
- 1 2112 0 0 -0.27953608e+01 0.19960339e+00 -0.17359319e+01 0.93957000e+00
- 2 -3122 357 358 -0.64761712e+00 0.19967569e+00 -0.79680931e-01 0.11156800e+01
- 2 -311 359 359 -0.11747340e+01 -0.34551758e+00 -0.22325373e+01 0.49767000e+00
- 2 111 360 361 -0.18110848e+00 -0.94130890e-01 -0.13628891e+00 0.13498000e+00
- 2 1114 362 363 -0.27551075e+00 -0.52096703e+00 -0.39471335e+01 0.11888688e+01
- 2 223 364 366 -0.84214077e+00 -0.78076271e+00 -0.20630926e+01 0.78611068e+00
- 1 -2112 0 0 -0.10210441e+01 -0.29928600e-01 -0.20638931e+01 0.93957000e+00
- 1 321 0 0 -0.92195888e+00 -0.58334512e+00 -0.50108948e+01 0.49360000e+00
- 2 333 367 368 -0.52449070e+00 -0.14011665e+01 -0.70030864e+01 0.10192835e+01
- 2 -313 369 370 -0.10453032e+01 -0.79033683e+00 -0.67183121e+01 0.88122064e+00
- 2 -213 371 372 -0.18923710e+00 -0.66944702e+00 -0.70653688e+01 0.93278847e+00
- 1 211 0 0 0.66685031e-01 -0.11529445e+01 -0.61035186e+01 0.13957000e+00
- 2 -213 373 374 -0.13444624e+01 -0.19002891e+01 -0.29808588e+02 0.78541417e+00
- 2 2214 375 376 -0.13584908e+00 -0.14016496e+01 -0.23003807e+02 0.12019502e+01
- 2 113 377 378 -0.91880952e-01 -0.73760619e+00 -0.25777120e+02 0.85454629e+00
- 2 -2214 379 380 -0.57966010e+00 -0.13726501e+01 -0.35816685e+02 0.13023141e+01
- 2 213 381 382 -0.13266138e+00 -0.10785973e+01 -0.35185967e+02 0.85297298e+00
- 1 2112 0 0 0.15812963e+01 -0.17614729e+01 -0.28888880e+03 0.93957000e+00
- 1 -2112 0 0 -0.82049022e+00 0.39450868e+00 -0.16800887e+03 0.93957000e+00
- 2 113 383 384 0.32632522e+00 -0.60427123e+00 -0.23125837e+03 0.77254077e+00
- 2 311 385 385 0.76219210e-01 0.22453831e+00 -0.14770429e+03 0.49767000e+00
- 2 3312 386 387 -0.20047802e+00 -0.60480671e+00 -0.34270952e+03 0.13213000e+01
- 2 -3112 388 389 -0.57814625e-01 -0.22926465e+00 -0.26019403e+03 0.11974400e+01
- 2 313 390 391 -0.43711887e+00 0.86427810e+00 -0.50273323e+03 0.91003333e+00
- 2 -313 392 393 -0.56725362e+00 0.27778581e+00 -0.12432114e+03 0.93970290e+00
- 2 111 394 395 0.12973108e+01 0.28437847e+00 -0.80058025e+02 0.13498000e+00
- 2 113 396 397 0.32568273e+00 -0.63662645e-01 -0.36338117e+02 0.75038337e+00
- 2 223 398 400 -0.35225154e+00 0.11674070e+00 -0.39060440e+02 0.77557152e+00
- 2 1114 401 402 0.14338178e+01 0.16272019e+01 -0.91542531e+02 0.11888469e+01
- 2 113 403 404 0.21952393e+00 0.76579253e+00 -0.32321870e+02 0.10294370e+01
- 2 -1114 405 406 0.11924104e+01 0.14414093e+01 -0.65571579e+02 0.12243395e+01
- 1 -211 0 0 -0.29434282e+00 0.25115157e+00 -0.41102246e+01 0.13957000e+00
- 2 113 407 408 -0.11482408e+01 0.22731985e+01 -0.35291116e+02 0.84005985e+00
- 2 113 409 410 -0.59768997e+00 0.76398483e+00 -0.15742264e+02 0.69148653e+00
- 2 323 411 412 -0.10887191e+00 0.43938979e+00 -0.70325900e+01 0.87078104e+00
- 2 -313 413 414 -0.23939095e+01 0.28289709e+01 -0.33160475e+02 0.88984713e+00
- 2 -213 415 416 -0.79641550e+00 0.12195053e+00 -0.47688014e+01 0.73518558e+00
- 2 213 417 418 -0.78588217e+00 -0.25681331e+00 -0.57614669e+01 0.79046019e+00
- 2 113 419 420 -0.26489842e+00 0.17313750e+01 -0.69503438e+01 0.81968152e+00
- 2 221 421 423 -0.69130683e+00 -0.21276767e+00 -0.26807250e+01 0.54745000e+00
- 2 -213 424 425 0.36576053e+01 -0.15064628e+01 -0.17213786e+02 0.79851709e+00
- 1 211 0 0 0.37313826e+00 -0.11681873e+00 -0.35674352e+00 0.13957000e+00
- 1 2112 0 0 0.88875250e+00 -0.45407378e-01 -0.35872961e+01 0.93957000e+00
- 1 211 0 0 0.93340344e-01 -0.55658673e+00 -0.16024859e+01 0.13957000e+00
- 2 -2214 426 427 0.23401577e+01 -0.21364812e+00 -0.95252283e+01 0.12170574e+01
- 2 223 428 430 0.54309934e+00 0.71133149e+00 -0.47767076e+01 0.79292222e+00
- 2 -213 431 432 0.29416830e-01 0.97548465e+00 -0.27536689e+01 0.90385371e+00
- 1 211 0 0 0.31813324e+00 0.23924200e+00 -0.65534382e+01 0.13957000e+00
- 2 -213 433 434 0.51755553e+00 0.70146384e-01 -0.46480042e+01 0.74423179e+00
- 2 111 435 437 -0.35783860e+00 0.21664934e+00 -0.19965810e+02 0.13498000e+00
- 1 211 0 0 0.23876570e+00 -0.14434392e+00 -0.10377781e+02 0.13957000e+00
- 2 -213 438 439 -0.53856496e+00 0.48515793e+00 -0.30231190e+02 0.69522997e+00
- 1 321 0 0 -0.41223682e+00 -0.39020085e+00 -0.81478218e+03 0.49360000e+00
- 2 3122 440 441 -0.65404765e+00 -0.15269472e+01 -0.13415809e+04 0.11156800e+01
- 1 211 0 0 0.21270414e+00 0.19239095e-01 -0.78733011e+02 0.13957000e+00
- 2 92 209 223 -0.11994801e+01 0.53969864e+00 -0.17929560e+04 0.79470824e+02
- 2 331 442 444 -0.31265450e+00 -0.27181431e+00 -0.44670421e+00 0.95808722e+00
- 2 221 445 447 0.34685745e+00 -0.38937432e+00 -0.10074360e+01 0.54745000e+00
- 2 -323 448 449 -0.31187028e-01 -0.22789474e+00 -0.18444924e+01 0.88205404e+00
- 2 313 450 451 0.17526827e+00 -0.18513636e+00 -0.23340759e+01 0.90292766e+00
- 2 -311 452 452 -0.56142185e+00 -0.49823400e-01 -0.29020377e+01 0.49767000e+00
- 2 323 453 454 0.50038847e+00 -0.24141317e-01 -0.63693707e+01 0.88853412e+00
- 2 -323 455 456 -0.19471931e+00 -0.15787592e+00 -0.32568113e+01 0.94015907e+00
- 2 323 457 458 0.52741562e-01 -0.22904802e+00 -0.82431144e+01 0.86169427e+00
- 2 -213 459 460 0.36035694e+00 0.25551060e-01 -0.15858767e+02 0.79038890e+00
- 2 223 461 463 -0.29451715e+00 -0.34731483e-01 -0.19712770e+02 0.78201511e+00
- 2 223 464 466 -0.54319750e+00 0.64379327e+00 -0.49693222e+03 0.78415226e+00
- 2 213 467 468 0.29437131e+00 0.30470447e+00 -0.89765304e+02 0.43445054e+00
- 2 -3122 469 470 -0.98731441e-01 0.37340261e+00 -0.20591970e+03 0.11156800e+01
- 2 -323 471 472 0.47889436e-01 0.15512841e+01 -0.73383799e+03 0.83355860e+00
- 2 2114 473 474 -0.94092477e+00 -0.78919700e+00 -0.20452519e+03 0.12754316e+01
- 2 92 225 256 0.92718666e+01 -0.29670137e+02 0.13723906e+04 0.37233435e+03
- 1 321 0 0 -0.30794279e+01 -0.38993214e+01 -0.25035472e+01 0.49360000e+00
- 2 -311 475 475 -0.28527810e+01 -0.22842181e+01 -0.28366122e+01 0.49767000e+00
- 2 313 476 477 -0.13920676e+01 -0.26263863e+01 -0.15283212e+01 0.90942461e+00
- 2 -311 478 478 -0.13698616e+01 -0.12971178e+01 -0.15207831e+01 0.49767000e+00
- 2 313 479 480 -0.19128452e+00 -0.98263535e-02 -0.51021416e+00 0.87440645e+00
- 2 -311 481 481 0.25504431e+00 -0.55615406e+00 -0.69801287e+00 0.49767000e+00
- 1 -211 0 0 -0.40036708e-01 -0.12444800e+00 -0.47973078e-01 0.13957000e+00
- 2 113 482 483 0.21311196e+00 -0.67972581e+00 -0.41364021e+00 0.68069053e+00
- 2 223 484 486 0.19229619e+01 -0.65934877e+00 -0.15487921e+01 0.78119978e+00
- 2 113 487 488 -0.63758245e-01 -0.11008023e+01 0.34537485e+00 0.62644443e+00
- 1 321 0 0 0.17875235e+01 -0.58374022e+00 -0.11884913e+01 0.49360000e+00
- 2 3214 489 490 0.20474544e+01 -0.12796672e+01 -0.12084779e+01 0.13992911e+01
- 2 213 491 492 0.57821692e+00 -0.15902897e+01 0.14284013e+01 0.89781700e+00
- 2 -2224 493 494 0.20161144e+01 -0.31477680e+01 0.10579384e+01 0.12667178e+01
- 1 211 0 0 0.41338478e-01 -0.14892201e+01 0.99961152e+00 0.13957000e+00
- 2 113 495 496 0.75157852e+00 -0.82391664e+00 0.26561842e+01 0.93050834e+00
- 1 -211 0 0 0.45562586e+00 -0.12981830e+01 0.20234670e+01 0.13957000e+00
- 2 2114 497 498 0.57559667e+00 -0.57508735e+00 0.21437615e+01 0.11767716e+01
- 2 -313 499 500 0.37358940e+01 -0.31311911e+01 0.17917333e+02 0.89772205e+00
- 2 -3212 501 502 0.70433680e+00 -0.58064076e+00 0.47622227e+01 0.11925500e+01
- 1 211 0 0 0.11384598e+01 -0.33749019e+00 0.44135521e+01 0.13957000e+00
- 2 111 503 504 0.15435373e+01 -0.66886162e+00 0.76813186e+01 0.13498000e+00
- 2 113 505 506 0.10027931e+01 -0.10481941e+01 0.36934274e+02 0.90872507e+00
- 1 -211 0 0 0.58067387e+00 -0.46038361e-01 0.26612133e+01 0.13957000e+00
- 2 113 507 508 0.23609025e-01 0.12531059e+00 0.98509551e+01 0.65929361e+00
- 2 111 509 510 0.63654596e-02 -0.10242405e+01 0.23450192e+02 0.13498000e+00
- 2 113 511 512 -0.75399351e-01 0.21730915e+00 0.11477636e+03 0.66949608e+00
- 2 223 513 515 0.18282242e+00 0.47892682e-01 0.16783137e+02 0.77549847e+00
- 2 323 516 517 -0.19590593e-01 -0.52267537e+00 0.53335564e+02 0.86329992e+00
- 1 -321 0 0 -0.11372391e+00 0.43259205e+00 0.74674605e+02 0.49360000e+00
- 2 2114 518 519 -0.15972005e+00 0.65166253e+00 0.18490676e+03 0.12635565e+01
- 1 211 0 0 -0.93354039e+00 0.23964865e+00 0.82359325e+03 0.13957000e+00
- 2 92 258 262 0.48937672e+00 0.87233968e+00 -0.77686351e+00 0.55064767e+01
- 2 111 520 521 -0.62751346e+00 0.22496468e+00 -0.10890944e+01 0.13498000e+00
- 2 3122 522 523 -0.23662441e+00 -0.34974530e+00 0.11646308e+00 0.11156800e+01
- 2 -3222 524 525 0.56550346e+00 0.27896747e+00 -0.95922667e-01 0.11893700e+01
- 1 211 0 0 -0.32304130e+00 0.16727090e+00 0.40923090e+00 0.13957000e+00
- 2 111 526 527 0.11110524e+01 0.55088192e+00 -0.11754042e+00 0.13498000e+00
- 2 92 264 269 0.00000000e+00 0.00000000e+00 0.29240135e+03 0.62705474e+01
- 1 -211 0 0 -0.58078729e-01 0.98474508e-01 0.39217013e+01 0.13957000e+00
- 1 211 0 0 -0.20646660e+00 -0.86145327e-01 0.64532255e+01 0.13957000e+00
- 2 111 528 529 -0.17506893e+00 -0.32148474e-01 0.72238038e+00 0.13498000e+00
- 1 2112 0 0 0.86241541e+00 0.27122788e+00 0.64417582e+02 0.93957000e+00
- 1 -2112 0 0 -0.95550652e+00 -0.12802567e+00 0.11677532e+03 0.93957000e+00
- 2 221 530 531 0.53270537e+00 -0.12338292e+00 0.10011114e+03 0.54745000e+00
- 1 22 0 0 -0.40969393e+00 0.69048740e+00 0.41585052e+01 0.00000000e+00
- 1 22 0 0 -0.61623976e+01 0.10009938e+02 0.58403907e+02 0.00000000e+00
- 1 211 0 0 -0.11704028e+00 0.27107152e+00 0.13218342e+01 0.13957000e+00
- 1 -211 0 0 -0.10655720e+01 0.27440819e+01 0.15566552e+02 0.13957000e+00
- 2 111 532 533 -0.65206378e+00 0.15372594e+01 0.99489385e+01 0.13498000e+00
- 1 2112 0 0 -0.23237753e+01 0.27477093e+01 0.19922200e+02 0.93957000e+00
- 1 -211 0 0 -0.27396690e+00 0.38134038e+00 0.17893080e+01 0.13957000e+00
- 2 -3122 534 535 -0.38703088e+00 0.22126988e+01 0.12552049e+02 0.11156800e+01
- 1 211 0 0 -0.13139651e+00 0.15941131e+00 0.16025811e+01 0.13957000e+00
- 1 -321 0 0 -0.32275569e+00 0.15468444e+00 0.55010673e+01 0.49360000e+00
- 1 211 0 0 0.12137877e+00 0.60509247e-01 0.53999605e+00 0.13957000e+00
- 1 -211 0 0 0.21043226e+00 -0.96678512e+00 0.74755342e-01 0.13957000e+00
- 2 111 536 537 0.56188390e+00 -0.28398145e+00 0.38981903e+00 0.13498000e+00
- 1 22 0 0 0.36586405e+00 -0.35982913e+00 -0.32805518e+00 0.00000000e+00
- 1 22 0 0 0.62879071e-01 -0.20757814e-01 -0.23506055e-02 0.00000000e+00
- 1 211 0 0 0.11773822e+01 -0.32121695e+01 0.29367929e+00 0.13957000e+00
- 1 -211 0 0 0.96298841e-01 -0.40437290e+00 -0.74778411e-02 0.13957000e+00
- 2 111 538 539 0.19255802e+00 -0.71416688e+00 -0.80251328e-01 0.13498000e+00
- 1 22 0 0 0.35795813e-01 -0.11161757e+00 0.57493280e-01 0.00000000e+00
- 1 22 0 0 0.20598953e+00 -0.10611467e+00 0.42082143e-01 0.00000000e+00
- 1 2212 0 0 -0.15788671e+00 0.74912148e-01 0.25849292e+01 0.93827000e+00
- 1 -211 0 0 -0.57521815e-01 0.10058441e+00 0.30666855e+00 0.13957000e+00
- 1 -211 0 0 0.54232003e+00 0.16725427e+00 0.65965013e+01 0.13957000e+00
- 2 111 540 541 -0.12801322e+00 -0.48941403e+00 0.62463023e+01 0.13498000e+00
- 1 211 0 0 0.27253830e+00 -0.29215345e+00 0.59529393e+01 0.13957000e+00
- 1 -211 0 0 0.61075943e+00 -0.33620025e+00 0.75369879e+01 0.13957000e+00
- 2 111 542 543 0.26346302e+00 -0.11132466e+00 0.14193933e+01 0.13498000e+00
- 1 211 0 0 0.24041256e+01 -0.44004681e+00 0.60026109e+02 0.13957000e+00
- 2 111 544 545 0.76913019e+00 -0.64168714e-01 0.12162816e+02 0.13498000e+00
- 1 211 0 0 0.38664424e+00 0.65449645e-01 0.80879793e+01 0.13957000e+00
- 2 111 546 547 0.32088858e+00 -0.30204472e+00 0.32980203e+02 0.13498000e+00
- 1 2112 0 0 0.13766629e+01 -0.11110975e+01 0.87608267e+02 0.93957000e+00
- 2 111 548 549 0.27627449e+00 -0.17349762e+00 0.30005910e+02 0.13498000e+00
- 1 -211 0 0 0.29356852e+00 -0.60714923e+00 0.19843456e+03 0.13957000e+00
- 1 211 0 0 0.30691498e+00 -0.40308093e+00 0.40333917e+02 0.13957000e+00
- 1 22 0 0 0.13615742e+00 -0.15290312e+00 0.14943672e+02 0.00000000e+00
- 1 211 0 0 0.58815922e+00 -0.42891750e+00 0.95160738e+02 0.13957000e+00
- 1 -211 0 0 0.32281945e+00 -0.82553951e-01 0.27110752e+02 0.13957000e+00
- 1 -211 0 0 0.10309602e-01 -0.53476433e+00 0.81687670e+02 0.13957000e+00
- 1 211 0 0 0.67076240e+00 -0.93781183e-01 0.13160969e+03 0.13957000e+00
- 1 211 0 0 0.44684517e+00 -0.70323429e+00 0.72074992e+02 0.13957000e+00
- 1 -211 0 0 0.34825827e+00 -0.61035621e+00 0.17980912e+03 0.13957000e+00
- 1 22 0 0 0.91414096e-01 0.90554868e-01 0.29745403e+02 0.00000000e+00
- 1 22 0 0 0.64230240e-01 -0.52679822e+00 0.34442865e+03 0.00000000e+00
- 1 22 0 0 0.28022055e+00 0.22359851e+00 0.16893453e+03 0.00000000e+00
- 1 22 0 0 0.40886228e+00 0.45038689e+00 0.22545398e+03 0.00000000e+00
- 1 -211 0 0 -0.25992743e+00 0.16563088e+00 0.33720951e+03 0.13957000e+00
- 1 211 0 0 -0.53666497e+00 0.84977829e+00 0.49065753e+03 0.13957000e+00
- 1 -211 0 0 0.83211591e-01 0.20498480e+00 0.71233174e+02 0.13957000e+00
- 1 211 0 0 0.33353248e-01 -0.41835504e+00 0.25590526e+02 0.13957000e+00
- 1 22 0 0 -0.12188817e+01 0.74552179e+00 0.10093065e+03 0.00000000e+00
- 1 22 0 0 -0.23855706e+01 0.13737803e+01 0.18264221e+03 0.00000000e+00
- 1 211 0 0 -0.24141076e+00 0.17482837e-01 0.23974759e+02 0.13957000e+00
- 1 -211 0 0 0.38226581e-02 0.60854625e+00 0.39939008e+02 0.13957000e+00
- 1 22 0 0 -0.34073552e-01 -0.31260646e+00 0.88039065e+01 0.00000000e+00
- 2 113 550 551 -0.10344408e+01 -0.30812658e+01 0.60661317e+02 0.78206906e+00
- 1 211 0 0 -0.57235140e-01 -0.60694611e+00 0.19011212e+02 0.13957000e+00
- 1 -211 0 0 -0.28345987e+00 -0.10536763e+01 0.17974413e+02 0.13957000e+00
- 2 111 552 553 -0.21681074e+00 -0.52112584e+00 0.12556476e+02 0.13498000e+00
- 2 310 554 555 -0.62022323e-01 -0.10783992e+01 0.26212157e+02 0.49767000e+00
- 1 321 0 0 -0.80746669e+00 0.20498649e+00 0.11109552e+02 0.49360000e+00
- 1 -321 0 0 -0.12270038e+01 0.97210961e-01 0.15404739e+02 0.49360000e+00
- 2 -311 556 556 -0.14561925e+01 -0.18642399e+00 0.12698311e+02 0.49767000e+00
- 1 -211 0 0 -0.12520067e+00 -0.95928505e-01 0.70659144e+00 0.13957000e+00
- 1 -211 0 0 -0.90699955e+00 0.45465410e-01 0.14603244e+02 0.13957000e+00
- 1 211 0 0 -0.18078360e+00 0.22801331e+00 0.32929069e+01 0.13957000e+00
- 2 111 557 558 -0.28771863e+00 0.74817483e-01 0.29396266e+01 0.13498000e+00
- 1 211 0 0 0.37258870e+00 0.19930155e+01 0.20581282e+02 0.13957000e+00
- 1 -211 0 0 0.65881126e-01 0.15223071e+00 0.11838637e+01 0.13957000e+00
- 1 2212 0 0 0.54566400e+00 0.18665661e+01 0.19384377e+02 0.93827000e+00
- 1 211 0 0 0.28289203e+00 0.22915709e+00 0.27509156e+01 0.13957000e+00
- 1 -211 0 0 -0.71698138e-01 0.19914425e+00 0.52374148e+00 0.13957000e+00
- 2 111 559 560 0.37674008e+00 -0.32238813e-01 0.66315103e+00 0.13498000e+00
- 1 211 0 0 0.76669315e+00 0.99578247e+00 0.59104557e+01 0.13957000e+00
- 2 111 561 562 0.24191792e+00 0.11816708e+01 0.41504989e+01 0.13498000e+00
- 1 -211 0 0 0.13105501e+00 -0.19168770e+00 0.13242755e+01 0.13957000e+00
- 1 211 0 0 0.15331820e+00 0.10971759e+01 0.20556062e+01 0.13957000e+00
- 1 22 0 0 -0.25277485e+00 0.91730485e+00 0.17397524e+01 0.00000000e+00
- 2 111 563 564 0.52157998e+00 0.82420429e+00 0.17231442e+01 0.13498000e+00
- 1 2112 0 0 -0.16863505e+01 0.32384553e+01 0.38645945e+01 0.93957000e+00
- 2 111 565 566 -0.29032972e+00 0.34849258e+00 0.38615774e+00 0.13498000e+00
- 1 -211 0 0 0.15058196e+00 -0.85778624e-01 0.67689503e+00 0.13957000e+00
- 2 111 567 568 -0.26697030e+00 0.27711699e+00 0.29578901e+00 0.13498000e+00
- 1 -211 0 0 -0.18245609e+00 -0.13516224e+00 0.13050576e+00 0.13957000e+00
- 1 211 0 0 -0.16087572e+01 0.10607097e+01 0.14694442e+01 0.13957000e+00
- 1 211 0 0 -0.31666226e+00 0.97796458e+00 0.13349959e+00 0.13957000e+00
- 2 111 569 570 0.29944287e-01 0.23515557e-01 0.21024279e+00 0.13498000e+00
- 1 -2112 0 0 -0.56149172e+00 0.84860079e-01 -0.71858931e-02 0.93957000e+00
- 2 111 571 572 -0.86125394e-01 0.11481561e+00 -0.72495038e-01 0.13498000e+00
- 1 130 0 0 -0.11747340e+01 -0.34551758e+00 -0.22325373e+01 0.49767000e+00
- 1 22 0 0 -0.83158590e-01 -0.27822518e-02 0.75627589e-02 0.00000000e+00
- 1 22 0 0 -0.97949888e-01 -0.91348638e-01 -0.14385166e+00 0.00000000e+00
- 1 2112 0 0 -0.68148312e-01 -0.29179535e+00 -0.30244052e+01 0.93957000e+00
- 1 -211 0 0 -0.20736244e+00 -0.22917168e+00 -0.92272828e+00 0.13957000e+00
- 1 -211 0 0 -0.91668237e-01 -0.40468652e+00 -0.44268298e+00 0.13957000e+00
- 1 211 0 0 -0.62889306e+00 -0.24082903e+00 -0.10842400e+01 0.13957000e+00
- 2 111 573 574 -0.12157947e+00 -0.13524716e+00 -0.53616961e+00 0.13498000e+00
- 1 321 0 0 -0.39133250e+00 -0.69711428e+00 -0.35360781e+01 0.49360000e+00
- 1 -321 0 0 -0.13315819e+00 -0.70405225e+00 -0.34670083e+01 0.49360000e+00
- 1 -321 0 0 -0.93741981e+00 -0.79017954e+00 -0.49184006e+01 0.49360000e+00
- 1 211 0 0 -0.10788340e+00 -0.15729248e-03 -0.17999114e+01 0.13957000e+00
- 1 -211 0 0 -0.26859540e+00 -0.24597464e+00 -0.92846511e+00 0.13957000e+00
- 2 111 575 577 0.79358299e-01 -0.42347238e+00 -0.61369037e+01 0.13498000e+00
- 1 -211 0 0 -0.10785935e+01 -0.18608681e+01 -0.25938388e+02 0.13957000e+00
- 2 111 578 579 -0.26586883e+00 -0.39421014e-01 -0.38702001e+01 0.13498000e+00
- 1 2112 0 0 -0.34521104e-01 -0.13311741e+01 -0.21703629e+02 0.93957000e+00
- 1 211 0 0 -0.10132798e+00 -0.70475491e-01 -0.13001778e+01 0.13957000e+00
- 1 -211 0 0 0.75564854e-01 0.46493046e-01 -0.11823468e+02 0.13957000e+00
- 1 211 0 0 -0.16744581e+00 -0.78409924e+00 -0.13953652e+02 0.13957000e+00
- 1 -2212 0 0 -0.46356163e+00 -0.11987126e+01 -0.24356487e+02 0.93827000e+00
- 2 111 580 581 -0.11609847e+00 -0.17393755e+00 -0.11460198e+02 0.13498000e+00
- 1 211 0 0 0.55674855e-02 0.10584971e+00 -0.34880130e+01 0.13957000e+00
- 2 111 582 583 -0.13822886e+00 -0.11844470e+01 -0.31697953e+02 0.13498000e+00
- 1 -211 0 0 0.31993418e+00 -0.73486736e+00 -0.20496294e+03 0.13957000e+00
- 1 211 0 0 0.63910399e-02 0.13059613e+00 -0.26295432e+02 0.13957000e+00
- 2 310 584 585 0.76219210e-01 0.22453831e+00 -0.14770429e+03 0.49767000e+00
- 2 3122 586 587 -0.62609155e-01 -0.46346871e+00 -0.30183226e+03 0.11156800e+01
- 1 -211 0 0 -0.13786886e+00 -0.14133800e+00 -0.40877259e+02 0.13957000e+00
- 1 -2112 0 0 -0.91508825e-01 -0.80196359e-01 -0.23833291e+03 0.93957000e+00
- 1 211 0 0 0.33694201e-01 -0.14906830e+00 -0.21861121e+02 0.13957000e+00
- 1 321 0 0 -0.47716803e+00 0.91441999e+00 -0.47062853e+03 0.49360000e+00
- 1 -211 0 0 0.40049153e-01 -0.50141895e-01 -0.32104696e+02 0.13957000e+00
- 2 -311 588 588 0.27563371e-02 0.88840149e-01 -0.64868393e+02 0.49767000e+00
- 2 111 589 590 -0.57000996e+00 0.18894566e+00 -0.59452743e+02 0.13498000e+00
- 1 22 0 0 0.70585371e+00 0.91067167e-01 -0.41159859e+02 0.00000000e+00
- 1 22 0 0 0.59145705e+00 0.19331130e+00 -0.38898166e+02 0.00000000e+00
- 1 211 0 0 0.43656213e-01 -0.14814889e+00 -0.28179759e+01 0.13957000e+00
- 1 -211 0 0 0.28202652e+00 0.84486248e-01 -0.33520141e+02 0.13957000e+00
- 1 -211 0 0 -0.83631908e-03 0.13192619e-01 -0.17837833e+02 0.13957000e+00
- 1 211 0 0 -0.15754772e+00 -0.11764440e+00 -0.13471235e+02 0.13957000e+00
- 2 111 591 592 -0.19386750e+00 0.22119248e+00 -0.77513711e+01 0.13498000e+00
- 1 2112 0 0 0.96462836e+00 0.13360405e+01 -0.67410666e+02 0.93957000e+00
- 1 -211 0 0 0.46918946e+00 0.29116135e+00 -0.24131865e+02 0.13957000e+00
- 1 -211 0 0 -0.33656622e+00 0.56277289e+00 -0.19945302e+02 0.13957000e+00
- 1 211 0 0 0.55609014e+00 0.20301964e+00 -0.12376569e+02 0.13957000e+00
- 1 -2112 0 0 0.66765457e+00 0.84550587e+00 -0.42142696e+02 0.93957000e+00
- 1 211 0 0 0.52475588e+00 0.59590341e+00 -0.23428883e+02 0.13957000e+00
- 1 211 0 0 -0.74700629e+00 0.14667075e+01 -0.17306247e+02 0.13957000e+00
- 1 -211 0 0 -0.40123448e+00 0.80649096e+00 -0.17984869e+02 0.13957000e+00
- 1 -211 0 0 -0.18317396e+00 0.70264215e+00 -0.10817968e+02 0.13957000e+00
- 1 211 0 0 -0.41451601e+00 0.61342681e-01 -0.49242960e+01 0.13957000e+00
- 2 311 593 593 -0.33823689e+00 0.25927278e+00 -0.49582866e+01 0.49767000e+00
- 1 211 0 0 0.22936499e+00 0.18011701e+00 -0.20743034e+01 0.13957000e+00
- 1 -321 0 0 -0.18810768e+01 0.18421749e+01 -0.24528907e+02 0.49360000e+00
- 1 211 0 0 -0.51283268e+00 0.98679600e+00 -0.86315681e+01 0.13957000e+00
- 1 -211 0 0 -0.21103738e+00 -0.27236294e+00 -0.16868667e+01 0.13957000e+00
- 2 111 594 595 -0.58537812e+00 0.39431347e+00 -0.30819347e+01 0.13498000e+00
- 1 211 0 0 0.67274622e-02 -0.28806424e+00 -0.21645703e+01 0.13957000e+00
- 2 111 596 597 -0.79260963e+00 0.31250932e-01 -0.35968965e+01 0.13498000e+00
- 1 211 0 0 0.21614808e+00 0.49312735e+00 -0.27881855e+01 0.13957000e+00
- 1 -211 0 0 -0.48104650e+00 0.12382476e+01 -0.41621583e+01 0.13957000e+00
- 2 111 598 599 -0.45212037e+00 -0.11184999e+00 -0.11726471e+01 0.13498000e+00
- 2 111 600 601 -0.18571729e+00 -0.76071043e-01 -0.72490719e+00 0.13498000e+00
- 2 111 602 603 -0.53469173e-01 -0.24846640e-01 -0.78317076e+00 0.13498000e+00
- 1 -211 0 0 0.49325362e+00 -0.69249431e-02 -0.16875993e+01 0.13957000e+00
- 2 111 604 605 0.31643516e+01 -0.14995379e+01 -0.15526187e+02 0.13498000e+00
- 1 -2212 0 0 0.18387062e+01 -0.36497275e+00 -0.78848687e+01 0.93827000e+00
- 2 111 606 607 0.50145146e+00 0.15132463e+00 -0.16403595e+01 0.13498000e+00
- 1 211 0 0 0.30523270e+00 0.76582267e-01 -0.14288394e+01 0.13957000e+00
- 1 -211 0 0 -0.99995054e-01 0.98956712e-01 -0.95864188e+00 0.13957000e+00
- 2 111 608 609 0.33786169e+00 0.53579251e+00 -0.23892263e+01 0.13498000e+00
- 1 -211 0 0 0.83575558e-01 0.66059589e+00 -0.25838634e+01 0.13957000e+00
- 2 111 610 611 -0.54158729e-01 0.31488876e+00 -0.16980553e+00 0.13498000e+00
- 1 -211 0 0 0.50485201e+00 -0.14290933e+00 -0.18866451e+01 0.13957000e+00
- 2 111 612 613 0.12703521e-01 0.21305572e+00 -0.27613591e+01 0.13498000e+00
- 1 22 0 0 -0.25443757e-01 0.71355924e-01 -0.29863250e+01 0.00000000e+00
- 1 -11 0 0 -0.32417485e+00 0.14170781e+00 -0.16494156e+02 0.51000000e-03
- 1 11 0 0 -0.82199977e-02 0.35856104e-02 -0.48532933e+00 0.51000000e-03
- 1 -211 0 0 -0.61318226e-02 0.25440169e+00 -0.42739791e+01 0.13957000e+00
- 2 111 614 615 -0.53243313e+00 0.23075625e+00 -0.25957211e+02 0.13498000e+00
- 1 2212 0 0 -0.59680919e+00 -0.13416205e+01 -0.12315747e+04 0.93827000e+00
- 1 -211 0 0 -0.57238454e-01 -0.18532677e+00 -0.11000620e+03 0.13957000e+00
- 2 111 616 617 0.75855694e-01 -0.25211211e-01 -0.11000470e+00 0.13498000e+00
- 2 111 618 619 -0.59686649e-01 -0.10875964e+00 0.42779213e-01 0.13498000e+00
- 2 221 620 621 -0.32882354e+00 -0.13784345e+00 -0.37947872e+00 0.54745000e+00
- 1 -211 0 0 0.25474144e+00 -0.27002903e+00 -0.57227680e+00 0.13957000e+00
- 1 211 0 0 -0.39269596e-01 -0.73620077e-01 -0.22227943e+00 0.13957000e+00
- 2 111 622 623 0.13138560e+00 -0.45725204e-01 -0.21287982e+00 0.13498000e+00
- 2 -311 624 624 -0.13109591e+00 -0.40324606e+00 -0.14808322e+01 0.49767000e+00
- 1 -211 0 0 0.99908886e-01 0.17535132e+00 -0.36366016e+00 0.13957000e+00
- 1 321 0 0 0.33943724e+00 0.25323054e-01 -0.18568838e+01 0.49360000e+00
- 1 -211 0 0 -0.16416897e+00 -0.21045941e+00 -0.47719208e+00 0.13957000e+00
- 1 130 0 0 -0.56142185e+00 -0.49823400e-01 -0.29020377e+01 0.49767000e+00
- 2 311 625 625 0.60844196e+00 0.44326031e-01 -0.42180684e+01 0.49767000e+00
- 1 211 0 0 -0.10805349e+00 -0.68467348e-01 -0.21513023e+01 0.13957000e+00
- 2 -311 626 626 -0.36655307e+00 0.14270411e-01 -0.27615256e+01 0.49767000e+00
- 1 -211 0 0 0.17183376e+00 -0.17214633e+00 -0.49528565e+00 0.13957000e+00
- 1 321 0 0 0.18312632e+00 -0.28185790e-01 -0.69165843e+01 0.49360000e+00
- 2 111 627 628 -0.13038476e+00 -0.20086223e+00 -0.13265302e+01 0.13498000e+00
- 1 -211 0 0 0.58610730e+00 0.30583791e-01 -0.10449297e+02 0.13957000e+00
- 2 111 629 630 -0.22575037e+00 -0.50327311e-02 -0.54094700e+01 0.13498000e+00
- 1 -211 0 0 -0.82827727e-01 0.14539005e-01 -0.21835784e+01 0.13957000e+00
- 1 211 0 0 -0.29333826e+00 -0.23104794e+00 -0.10704520e+02 0.13957000e+00
- 2 111 631 632 0.81648840e-01 0.18177746e+00 -0.68246717e+01 0.13498000e+00
- 1 -211 0 0 -0.20982818e+00 0.53580079e+00 -0.20092341e+03 0.13957000e+00
- 1 211 0 0 -0.24842250e+00 0.13007531e+00 -0.24635251e+03 0.13957000e+00
- 2 111 633 634 -0.84946824e-01 -0.22082829e-01 -0.49656292e+02 0.13498000e+00
- 1 211 0 0 -0.17703288e-01 0.14074103e+00 -0.18945334e+02 0.13957000e+00
- 2 111 635 636 0.31207459e+00 0.16396343e+00 -0.70819970e+02 0.13498000e+00
- 1 -2212 0 0 -0.85184815e-01 0.22127165e+00 -0.17689029e+03 0.93827000e+00
- 1 211 0 0 -0.13546626e-01 0.15213096e+00 -0.29029409e+02 0.13957000e+00
- 2 -311 637 637 -0.10264118e+00 0.14359662e+01 -0.64934175e+03 0.49767000e+00
- 1 -211 0 0 0.15053062e+00 0.11531791e+00 -0.84496240e+02 0.13957000e+00
- 1 2212 0 0 -0.52769832e+00 -0.55421490e+00 -0.11708369e+03 0.93827000e+00
- 1 -211 0 0 -0.41322645e+00 -0.23498210e+00 -0.87441505e+02 0.13957000e+00
- 2 310 638 639 -0.28527810e+01 -0.22842181e+01 -0.28366122e+01 0.49767000e+00
- 2 311 640 640 -0.13018270e+01 -0.25506651e+01 -0.13293964e+01 0.49767000e+00
- 2 111 641 642 -0.90240611e-01 -0.75721225e-01 -0.19892482e+00 0.13498000e+00
- 2 310 643 644 -0.13698616e+01 -0.12971178e+01 -0.15207831e+01 0.49767000e+00
- 1 321 0 0 -0.19652278e+00 -0.69570519e-01 -0.63705691e+00 0.49360000e+00
- 1 -211 0 0 0.52382556e-02 0.59744165e-01 0.12684275e+00 0.13957000e+00
- 1 130 0 0 0.25504431e+00 -0.55615406e+00 -0.69801287e+00 0.49767000e+00
- 1 -211 0 0 0.36076337e+00 -0.16215981e+00 -0.25299781e+00 0.13957000e+00
- 1 211 0 0 -0.14765141e+00 -0.51756600e+00 -0.16064239e+00 0.13957000e+00
- 1 -211 0 0 0.16150146e+00 -0.14028402e+00 -0.23433791e+00 0.13957000e+00
- 1 211 0 0 0.98407854e-01 0.14882676e-02 -0.12115165e+00 0.13957000e+00
- 2 111 645 646 0.16630526e+01 -0.52055302e+00 -0.11933026e+01 0.13498000e+00
- 1 211 0 0 -0.19839410e+00 -0.18686063e+00 -0.29618407e-01 0.13957000e+00
- 1 -211 0 0 0.13463585e+00 -0.91394164e+00 0.37499325e+00 0.13957000e+00
- 2 3122 647 648 0.18009292e+01 -0.12399976e+01 -0.88182301e+00 0.11156800e+01
- 2 111 649 650 0.24652524e+00 -0.39669599e-01 -0.32665485e+00 0.13498000e+00
- 1 211 0 0 0.15523981e+00 -0.60970628e+00 0.10808165e+01 0.13957000e+00
- 2 111 651 652 0.42297710e+00 -0.98058339e+00 0.34758475e+00 0.13498000e+00
- 1 -2212 0 0 0.15103289e+01 -0.19690068e+01 0.79328837e+00 0.93827000e+00
- 1 -211 0 0 0.50578550e+00 -0.11787612e+01 0.26465005e+00 0.13957000e+00
- 1 211 0 0 -0.14045105e+00 0.37707603e-01 0.43857412e+00 0.13957000e+00
- 1 -211 0 0 0.89202956e+00 -0.86162424e+00 0.22176101e+01 0.13957000e+00
- 1 2212 0 0 0.61028543e+00 -0.41147407e+00 0.16333512e+01 0.93827000e+00
- 1 -211 0 0 -0.34688763e-01 -0.16361328e+00 0.51041024e+00 0.13957000e+00
- 1 -321 0 0 0.31688678e+01 -0.23793755e+01 0.13949673e+02 0.49360000e+00
- 1 211 0 0 0.56702623e+00 -0.75181554e+00 0.39676593e+01 0.13957000e+00
- 2 -3122 653 654 0.73296722e+00 -0.55615765e+00 0.44537100e+01 0.11156800e+01
- 1 22 0 0 -0.28630425e-01 -0.24483109e-01 0.30851265e+00 0.00000000e+00
- 1 22 0 0 0.82535277e+00 -0.36848918e+00 0.38149666e+01 0.00000000e+00
- 1 22 0 0 0.71818457e+00 -0.30037245e+00 0.38663520e+01 0.00000000e+00
- 1 211 0 0 -0.78206708e-01 -0.19138710e+00 0.10813792e+02 0.13957000e+00
- 1 -211 0 0 0.10809998e+01 -0.85680701e+00 0.26120482e+02 0.13957000e+00
- 1 211 0 0 0.16645222e+00 0.18083415e+00 0.86837124e+01 0.13957000e+00
- 1 -211 0 0 -0.14284320e+00 -0.55523563e-01 0.11672428e+01 0.13957000e+00
- 1 22 0 0 -0.28208603e-01 -0.17694471e+00 0.51356053e+01 0.00000000e+00
- 1 22 0 0 0.34574062e-01 -0.84729576e+00 0.18314587e+02 0.00000000e+00
- 1 211 0 0 -0.25392157e+00 -0.10326935e+00 0.58966418e+02 0.13957000e+00
- 1 -211 0 0 0.17852222e+00 0.32057850e+00 0.55809946e+02 0.13957000e+00
- 1 -211 0 0 -0.14363536e+00 -0.20580365e+00 0.55176647e+01 0.13957000e+00
- 1 211 0 0 0.13184968e+00 0.69608020e-01 0.38093327e+01 0.13957000e+00
- 2 111 655 656 0.19460809e+00 0.18408831e+00 0.74561400e+01 0.13498000e+00
- 2 311 657 657 -0.20175562e+00 -0.12898643e+00 0.30618928e+02 0.49767000e+00
- 1 211 0 0 0.18216502e+00 -0.39368894e+00 0.22716636e+02 0.13957000e+00
- 1 2112 0 0 0.38754665e-01 0.70682751e+00 0.15963120e+03 0.93957000e+00
- 2 111 658 659 -0.19847471e+00 -0.55164985e-01 0.25275562e+02 0.13498000e+00
- 1 22 0 0 -0.15422983e+00 -0.42335841e-02 -0.24711252e+00 0.00000000e+00
- 1 22 0 0 -0.47328363e+00 0.22919826e+00 -0.84198188e+00 0.00000000e+00
- 1 2112 0 0 -0.22952498e+00 -0.38488125e+00 0.15799650e+00 0.93957000e+00
- 2 111 660 661 -0.70994327e-02 0.35135947e-01 -0.41533415e-01 0.13498000e+00
- 1 -2212 0 0 0.62306568e+00 0.27216804e+00 -0.19136563e+00 0.93827000e+00
- 2 111 662 663 -0.57562213e-01 0.67994316e-02 0.95442959e-01 0.13498000e+00
- 1 22 0 0 0.10831330e+01 0.54418621e+00 -0.93904117e-01 0.00000000e+00
- 1 22 0 0 0.27919413e-01 0.66957158e-02 -0.23636305e-01 0.00000000e+00
- 1 22 0 0 -0.16107199e+00 0.37120706e-02 0.39647049e+00 0.00000000e+00
- 1 22 0 0 -0.13996933e-01 -0.35860545e-01 0.32590988e+00 0.00000000e+00
- 1 22 0 0 0.40326289e+00 -0.33564065e+00 0.69543445e+02 0.00000000e+00
- 1 22 0 0 0.12944247e+00 0.21225773e+00 0.30567695e+02 0.00000000e+00
- 1 22 0 0 -0.40958856e+00 0.94640398e+00 0.57438354e+01 0.00000000e+00
- 1 22 0 0 -0.24247521e+00 0.59085545e+00 0.42051030e+01 0.00000000e+00
- 1 -2112 0 0 -0.42901974e+00 0.19027555e+01 0.11029607e+02 0.93957000e+00
- 2 111 664 665 0.41988861e-01 0.30994334e+00 0.15224413e+01 0.13498000e+00
- 1 22 0 0 0.20227511e+00 -0.71072319e-01 0.20179317e+00 0.00000000e+00
- 1 22 0 0 0.35960879e+00 -0.21290913e+00 0.18802586e+00 0.00000000e+00
- 1 22 0 0 0.20591379e+00 -0.57688901e+00 -0.47373215e-01 0.00000000e+00
- 1 22 0 0 -0.13355765e-01 -0.13727788e+00 -0.32878112e-01 0.00000000e+00
- 1 22 0 0 -0.12565964e+00 -0.45700424e+00 0.52431240e+01 0.00000000e+00
- 1 22 0 0 -0.23535846e-02 -0.32409794e-01 0.10031783e+01 0.00000000e+00
- 1 22 0 0 0.15964666e+00 -0.13578048e+00 0.93098625e+00 0.00000000e+00
- 1 22 0 0 0.10381636e+00 0.24455816e-01 0.48840701e+00 0.00000000e+00
- 1 22 0 0 0.23203777e+00 -0.45408046e-01 0.28934011e+01 0.00000000e+00
- 1 22 0 0 0.53709242e+00 -0.18760668e-01 0.92694151e+01 0.00000000e+00
- 1 22 0 0 0.10110765e+00 -0.20895495e-01 0.82359435e+01 0.00000000e+00
- 1 22 0 0 0.21978093e+00 -0.28114923e+00 0.24744260e+02 0.00000000e+00
- 1 22 0 0 0.23861539e-01 -0.17923520e-01 0.77668999e+00 0.00000000e+00
- 1 22 0 0 0.25241295e+00 -0.15557411e+00 0.29229220e+02 0.00000000e+00
- 1 -211 0 0 -0.72575099e+00 -0.20732037e+01 0.46565368e+02 0.13957000e+00
- 1 211 0 0 -0.30868983e+00 -0.10080621e+01 0.14095949e+02 0.13957000e+00
- 1 22 0 0 -0.17699331e+00 -0.25838494e+00 0.63538872e+01 0.00000000e+00
- 1 22 0 0 -0.39817435e-01 -0.26274089e+00 0.62025892e+01 0.00000000e+00
- 1 -211 0 0 0.13826815e+00 -0.26718528e+00 0.59062775e+01 0.13957000e+00
- 1 211 0 0 -0.20029047e+00 -0.81121391e+00 0.20305879e+02 0.13957000e+00
- 2 310 666 667 -0.14561925e+01 -0.18642399e+00 0.12698311e+02 0.49767000e+00
- 1 22 0 0 -0.20596511e-01 0.45444441e-02 0.42572707e-01 0.00000000e+00
- 1 22 0 0 -0.26712212e+00 0.70273039e-01 0.28970538e+01 0.00000000e+00
- 1 22 0 0 0.10738678e+00 -0.28117453e-01 0.93713557e-01 0.00000000e+00
- 1 22 0 0 0.26935331e+00 -0.41213590e-02 0.56943747e+00 0.00000000e+00
- 1 22 0 0 0.16023749e+00 0.48462255e+00 0.16435181e+01 0.00000000e+00
- 1 22 0 0 0.81680431e-01 0.69704826e+00 0.25069808e+01 0.00000000e+00
- 1 22 0 0 0.30249485e+00 0.54241967e+00 0.98000944e+00 0.00000000e+00
- 1 22 0 0 0.21908513e+00 0.28178462e+00 0.74313473e+00 0.00000000e+00
- 1 22 0 0 -0.25722859e+00 0.35071555e+00 0.33151143e+00 0.00000000e+00
- 1 22 0 0 -0.33101128e-01 -0.22229720e-02 0.54646304e-01 0.00000000e+00
- 1 22 0 0 -0.21967008e+00 0.25392830e+00 0.30086988e+00 0.00000000e+00
- 1 22 0 0 -0.47300228e-01 0.23188686e-01 -0.50808731e-02 0.00000000e+00
- 1 22 0 0 0.22600055e-01 -0.55593806e-01 0.10386089e+00 0.00000000e+00
- 1 22 0 0 0.73442317e-02 0.79109363e-01 0.10638190e+00 0.00000000e+00
- 1 22 0 0 -0.10948537e+00 0.37776281e-01 -0.51450535e-01 0.00000000e+00
- 1 22 0 0 0.23359979e-01 0.77039328e-01 -0.21044503e-01 0.00000000e+00
- 1 22 0 0 -0.12217463e+00 -0.14688475e+00 -0.37893358e+00 0.00000000e+00
- 1 22 0 0 0.59515681e-03 0.11637591e-01 -0.15723603e+00 0.00000000e+00
- 1 22 0 0 0.58448767e-01 -0.49076690e-01 -0.98131080e+00 0.00000000e+00
- 1 11 0 0 0.18738028e-01 -0.30263713e+00 -0.41465262e+01 0.51000000e-03
- 1 -11 0 0 0.21715034e-02 -0.71758562e-01 -0.10090667e+01 0.51000000e-03
- 1 22 0 0 -0.14495099e+00 -0.88086593e-01 -0.23277598e+01 0.00000000e+00
- 1 22 0 0 -0.12091783e+00 0.48665579e-01 -0.15424402e+01 0.00000000e+00
- 1 22 0 0 0.13524668e-01 -0.91005284e-03 -0.27042004e+01 0.00000000e+00
- 1 22 0 0 -0.12962313e+00 -0.17302750e+00 -0.87559975e+01 0.00000000e+00
- 1 22 0 0 0.25670451e-01 -0.25735606e+00 -0.68235880e+01 0.00000000e+00
- 1 22 0 0 -0.16389932e+00 -0.92709092e+00 -0.24874366e+02 0.00000000e+00
- 2 111 668 669 0.10685972e+00 0.31458732e+00 -0.76897017e+02 0.13498000e+00
- 2 111 670 671 -0.30640509e-01 -0.90049003e-01 -0.70807274e+02 0.13498000e+00
- 1 2212 0 0 0.37446753e-01 -0.39550005e+00 -0.24346079e+03 0.93827000e+00
- 1 -211 0 0 -0.10005591e+00 -0.67968661e-01 -0.58371474e+02 0.13957000e+00
- 2 310 672 673 0.27563371e-02 0.88840149e-01 -0.64868393e+02 0.49767000e+00
- 1 22 0 0 -0.19353426e+00 0.32821229e-01 -0.14313213e+02 0.00000000e+00
- 1 22 0 0 -0.37647570e+00 0.15612443e+00 -0.45139530e+02 0.00000000e+00
- 1 22 0 0 0.21148446e-01 0.17712977e-01 -0.65561689e+00 0.00000000e+00
- 1 22 0 0 -0.21501595e+00 0.20347951e+00 -0.70957542e+01 0.00000000e+00
- 2 310 674 675 -0.33823689e+00 0.25927278e+00 -0.49582866e+01 0.49767000e+00
- 1 22 0 0 -0.47040868e-02 0.23987282e-01 -0.53185982e-01 0.00000000e+00
- 1 22 0 0 -0.58067403e+00 0.37032619e+00 -0.30287487e+01 0.00000000e+00
- 1 22 0 0 -0.43221981e+00 0.46178418e-02 -0.22573443e+01 0.00000000e+00
- 1 22 0 0 -0.36038982e+00 0.26633090e-01 -0.13395522e+01 0.00000000e+00
- 1 22 0 0 -0.18593739e+00 -0.60185243e-01 -0.32756018e+00 0.00000000e+00
- 1 22 0 0 -0.26618298e+00 -0.51664746e-01 -0.84508691e+00 0.00000000e+00
- 1 22 0 0 -0.14448961e+00 0.79768039e-02 -0.37426116e+00 0.00000000e+00
- 1 22 0 0 -0.41227681e-01 -0.84047847e-01 -0.35064603e+00 0.00000000e+00
- 1 22 0 0 -0.42386867e-02 0.80718185e-02 0.21369282e-02 0.00000000e+00
- 1 22 0 0 -0.49230487e-01 -0.32918458e-01 -0.78530769e+00 0.00000000e+00
- 1 22 0 0 0.27704509e+01 -0.12690924e+01 -0.13400581e+02 0.00000000e+00
- 1 22 0 0 0.39390076e+00 -0.23044546e+00 -0.21256062e+01 0.00000000e+00
- 1 22 0 0 0.40065726e+00 0.15184707e+00 -0.11645832e+01 0.00000000e+00
- 1 22 0 0 0.10079421e+00 -0.52243951e-03 -0.47577634e+00 0.00000000e+00
- 1 22 0 0 0.32055636e+00 0.52248346e+00 -0.23635589e+01 0.00000000e+00
- 1 22 0 0 0.17305332e-01 0.13309050e-01 -0.25667409e-01 0.00000000e+00
- 1 22 0 0 0.42905834e-01 0.12042481e+00 -0.81393159e-01 0.00000000e+00
- 1 22 0 0 -0.97064563e-01 0.19446395e+00 -0.88412371e-01 0.00000000e+00
- 1 22 0 0 -0.21152550e-01 0.20636168e+00 -0.25759233e+01 0.00000000e+00
- 1 22 0 0 0.33856072e-01 0.66940400e-02 -0.18543585e+00 0.00000000e+00
- 1 22 0 0 -0.93361488e-01 0.97384934e-01 -0.68344616e+01 0.00000000e+00
- 1 22 0 0 -0.43907165e+00 0.13337131e+00 -0.19122749e+02 0.00000000e+00
- 1 22 0 0 0.55708933e-02 -0.69157855e-01 -0.73343891e-01 0.00000000e+00
- 1 22 0 0 0.70284801e-01 0.43946644e-01 -0.36660809e-01 0.00000000e+00
- 1 22 0 0 -0.67529067e-03 -0.97098578e-02 0.69275376e-01 0.00000000e+00
- 1 22 0 0 -0.59011359e-01 -0.99049787e-01 -0.26496163e-01 0.00000000e+00
- 1 22 0 0 0.11041747e+00 0.14278527e-02 0.53974353e-01 0.00000000e+00
- 1 22 0 0 -0.43924101e+00 -0.13927130e+00 -0.43345307e+00 0.00000000e+00
- 1 22 0 0 0.14902449e+00 -0.68851550e-02 -0.14712177e+00 0.00000000e+00
- 1 22 0 0 -0.17638889e-01 -0.38840049e-01 -0.65758044e-01 0.00000000e+00
- 1 130 0 0 -0.13109591e+00 -0.40324606e+00 -0.14808322e+01 0.49767000e+00
- 1 130 0 0 0.60844196e+00 0.44326031e-01 -0.42180684e+01 0.49767000e+00
- 1 130 0 0 -0.36655307e+00 0.14270411e-01 -0.27615256e+01 0.49767000e+00
- 1 22 0 0 -0.12907256e+00 -0.10611208e+00 -0.63061863e+00 0.00000000e+00
- 1 22 0 0 -0.13122037e-02 -0.94750152e-01 -0.69591153e+00 0.00000000e+00
- 1 22 0 0 -0.91189047e-01 0.52085188e-01 -0.30951447e+01 0.00000000e+00
- 1 22 0 0 -0.13456132e+00 -0.57117919e-01 -0.23143252e+01 0.00000000e+00
- 1 22 0 0 0.15214210e-01 0.36148577e-01 -0.36494754e+01 0.00000000e+00
- 1 22 0 0 0.66434630e-01 0.14562888e+00 -0.31751963e+01 0.00000000e+00
- 1 22 0 0 -0.66273584e-01 0.29234424e-01 -0.11838538e+02 0.00000000e+00
- 1 22 0 0 -0.18673240e-01 -0.51317253e-01 -0.37817754e+02 0.00000000e+00
- 1 22 0 0 0.28308126e+00 0.88624011e-01 -0.54898174e+02 0.00000000e+00
- 1 22 0 0 0.28993334e-01 0.75339423e-01 -0.15921795e+02 0.00000000e+00
- 1 130 0 0 -0.10264118e+00 0.14359662e+01 -0.64934175e+03 0.49767000e+00
- 1 -211 0 0 -0.23540463e+01 -0.20278570e+01 -0.23717316e+01 0.13957000e+00
- 1 211 0 0 -0.49873471e+00 -0.25636109e+00 -0.46488063e+00 0.13957000e+00
- 2 310 676 677 -0.13018270e+01 -0.25506651e+01 -0.13293964e+01 0.49767000e+00
- 1 22 0 0 0.23316118e-01 -0.11273489e-01 0.42002934e-02 0.00000000e+00
- 1 22 0 0 -0.11355673e+00 -0.64447735e-01 -0.20312511e+00 0.00000000e+00
- 2 111 678 679 -0.72892088e+00 -0.91355305e+00 -0.76955504e+00 0.13498000e+00
- 2 111 680 681 -0.64094071e+00 -0.38356470e+00 -0.75122805e+00 0.13498000e+00
- 1 22 0 0 0.33640555e+00 -0.77283419e-01 -0.29437413e+00 0.00000000e+00
- 1 22 0 0 0.13266470e+01 -0.44326960e+00 -0.89892844e+00 0.00000000e+00
- 1 2112 0 0 0.14841940e+01 -0.10428644e+01 -0.62744013e+00 0.93957000e+00
- 2 111 682 683 0.31673523e+00 -0.19713323e+00 -0.25438288e+00 0.13498000e+00
- 1 22 0 0 0.12624799e+00 0.41664984e-01 -0.19953636e+00 0.00000000e+00
- 1 22 0 0 0.12027725e+00 -0.81334582e-01 -0.12711849e+00 0.00000000e+00
- 1 22 0 0 0.32347043e+00 -0.74847228e+00 0.32439877e+00 0.00000000e+00
- 1 22 0 0 0.99506678e-01 -0.23211111e+00 0.23185981e-01 0.00000000e+00
- 1 -2212 0 0 0.55894105e+00 -0.50999064e+00 0.39492646e+01 0.93827000e+00
- 1 211 0 0 0.17402617e+00 -0.46167006e-01 0.50444546e+00 0.13957000e+00
- 1 22 0 0 -0.34941315e-02 0.43824210e-02 0.15185806e+01 0.00000000e+00
- 1 22 0 0 0.19810223e+00 0.17970589e+00 0.59375594e+01 0.00000000e+00
- 1 130 0 0 -0.20175562e+00 -0.12898643e+00 0.30618928e+02 0.49767000e+00
- 1 22 0 0 -0.14761217e+00 0.72035625e-02 0.11274807e+02 0.00000000e+00
- 1 22 0 0 -0.50862544e-01 -0.62368548e-01 0.14000756e+02 0.00000000e+00
- 1 22 0 0 -0.12369301e-02 0.86486875e-01 -0.36126826e-01 0.00000000e+00
- 1 22 0 0 -0.58625026e-02 -0.51350928e-01 -0.54065893e-02 0.00000000e+00
- 1 22 0 0 -0.89225964e-01 0.36563298e-01 0.39162261e-01 0.00000000e+00
- 1 22 0 0 0.31663750e-01 -0.29763867e-01 0.56280698e-01 0.00000000e+00
- 1 22 0 0 0.12151188e-01 0.12644739e+00 0.33678028e+00 0.00000000e+00
- 1 22 0 0 0.29837673e-01 0.18349595e+00 0.11856610e+01 0.00000000e+00
- 2 111 684 685 -0.33097944e+00 -0.35027648e-01 0.45931462e+01 0.13498000e+00
- 2 111 686 687 -0.11252130e+01 -0.15139634e+00 0.81051646e+01 0.13498000e+00
- 1 22 0 0 0.12569706e+00 0.19290231e+00 -0.56012822e+02 0.00000000e+00
- 1 22 0 0 -0.18837339e-01 0.12168501e+00 -0.20884195e+02 0.00000000e+00
- 1 22 0 0 0.20635346e-01 -0.20526838e-01 -0.50546920e+02 0.00000000e+00
- 1 22 0 0 -0.51275855e-01 -0.69522165e-01 -0.20260354e+02 0.00000000e+00
- 2 111 688 689 -0.14616845e+00 0.19094734e+00 -0.39854407e+02 0.13498000e+00
- 2 111 690 691 0.14892479e+00 -0.10210719e+00 -0.25013985e+02 0.13498000e+00
- 1 -211 0 0 0.60421060e-01 0.59812700e-02 -0.15931635e+01 0.13957000e+00
- 1 211 0 0 -0.39865795e+00 0.25329151e+00 -0.33651231e+01 0.13957000e+00
- 2 111 692 693 -0.75033703e+00 -0.12838878e+01 -0.47856153e+00 0.13498000e+00
- 2 111 694 695 -0.55148999e+00 -0.12667773e+01 -0.85083485e+00 0.13498000e+00
- 1 22 0 0 -0.14084671e+00 -0.22159647e+00 -0.23310203e+00 0.00000000e+00
- 1 22 0 0 -0.58807417e+00 -0.69195658e+00 -0.53645301e+00 0.00000000e+00
- 1 22 0 0 -0.39431289e+00 -0.15853804e+00 -0.40874806e+00 0.00000000e+00
- 1 22 0 0 -0.24662782e+00 -0.22502666e+00 -0.34247999e+00 0.00000000e+00
- 1 22 0 0 0.18596396e-02 -0.43380990e-01 -0.47541304e-01 0.00000000e+00
- 1 22 0 0 0.31487559e+00 -0.15375224e+00 -0.20684158e+00 0.00000000e+00
- 1 22 0 0 -0.33284940e+00 -0.96813411e-02 0.43361190e+01 0.00000000e+00
- 1 22 0 0 0.18699621e-02 -0.25346307e-01 0.25702715e+00 0.00000000e+00
- 1 22 0 0 -0.10428173e+01 -0.17537375e+00 0.74719056e+01 0.00000000e+00
- 1 22 0 0 -0.82395770e-01 0.23977415e-01 0.63325908e+00 0.00000000e+00
- 1 22 0 0 -0.36702827e-01 -0.62779160e-03 -0.21889479e+01 0.00000000e+00
- 1 22 0 0 -0.10946562e+00 0.19157513e+00 -0.37665459e+02 0.00000000e+00
- 1 22 0 0 0.14202870e+00 -0.98468737e-01 -0.24941322e+02 0.00000000e+00
- 1 22 0 0 0.68960811e-02 -0.36384515e-02 -0.72663633e-01 0.00000000e+00
- 1 22 0 0 -0.90990216e-01 -0.15716762e+00 -0.10657688e+00 0.00000000e+00
- 1 22 0 0 -0.65934682e+00 -0.11267202e+01 -0.37198464e+00 0.00000000e+00
- 1 22 0 0 -0.17591218e+00 -0.53443531e+00 -0.29760590e+00 0.00000000e+00
- 1 22 0 0 -0.37557781e+00 -0.73234202e+00 -0.55322895e+00 0.00000000e+00
- 760
- 1 22 0 0 -0.10734796e+01 -0.15398883e+01 -0.17201543e+02 0.00000000e+00
- 2 25 3 4 0.14203632e+03 -0.18302336e+03 0.84369107e+03 0.12500679e+03
- 2 23 5 7 0.39981784e+02 -0.49989953e+02 0.14305369e+03 0.16954132e+02
- 2 23 8 11 0.10205454e+03 -0.13303341e+03 0.70063737e+03 0.91193021e+02
- 1 -13 0 0 0.25681090e+02 -0.22879782e+02 0.60751838e+02 0.10566000e+00
- 1 13 0 0 0.14293456e+02 -0.27096771e+02 0.82260826e+02 0.10566000e+00
- 1 22 0 0 0.72376573e-02 -0.13400143e-01 0.41028687e-01 0.00000000e+00
- 1 13 0 0 0.87467414e+00 -0.17828559e+02 0.23765915e+03 0.10566000e+00
- 1 22 0 0 0.21495698e-01 -0.26158977e+00 0.37383608e+01 0.00000000e+00
- 1 -13 0 0 0.10103891e+03 -0.11480353e+03 0.45868473e+03 0.10566000e+00
- 1 22 0 0 0.11945832e+00 -0.13973029e+00 0.55513443e+00 0.00000000e+00
- 1 2212 0 0 -0.12784703e+01 0.93541535e+00 -0.10053548e+04 0.93827000e+00
- 2 1 90 90 -0.12209848e+02 0.96579684e+01 0.12926378e+04 0.33000000e+00
- 2 21 90 90 -0.12729945e+01 0.27643757e+01 0.32885516e+03 0.00000000e+00
- 2 21 90 90 -0.19266683e+01 0.18984705e+01 0.30088277e+03 0.00000000e+00
- 2 21 90 90 0.25588799e+00 -0.18832994e+00 0.15557930e+02 0.00000000e+00
- 2 21 90 90 -0.55376276e+01 -0.64362962e-01 0.11578327e+03 0.00000000e+00
- 2 21 90 90 -0.12906320e+01 0.36376341e+01 0.61169480e+02 0.00000000e+00
- 2 21 90 90 0.59553429e+00 0.36635298e+01 0.26208845e+02 0.00000000e+00
- 2 21 90 90 0.20554448e+01 0.17158184e+01 0.28470014e+02 0.00000000e+00
- 2 21 90 90 0.49575745e+00 0.22384656e+01 0.23265472e+03 0.00000000e+00
- 2 21 90 90 0.90334906e+00 -0.67053284e+00 0.99319267e+02 0.00000000e+00
- 2 2101 90 90 -0.14850287e+01 0.23735857e+00 0.26922839e+04 0.57933000e+00
- 2 -1 123 123 -0.10351285e+03 0.14976001e+03 -0.62007974e+02 0.33000000e+00
- 2 21 123 123 -0.58779432e+01 0.49657132e+01 -0.28132324e+01 0.00000000e+00
- 2 21 123 123 -0.44729897e+01 0.53342848e+01 -0.31275120e+01 0.00000000e+00
- 2 21 123 123 -0.17906577e+00 0.55992279e+00 0.14960072e+00 0.00000000e+00
- 2 21 123 123 -0.56058314e-01 0.80906723e+00 0.65771289e+00 0.00000000e+00
- 2 21 123 123 0.30793841e+01 0.42742514e+01 0.48923651e+01 0.00000000e+00
- 2 21 123 123 -0.78731458e+00 0.29312393e+01 -0.53961968e+01 0.00000000e+00
- 2 21 123 123 -0.98827367e+00 0.25384549e+01 -0.21877995e+01 0.00000000e+00
- 2 21 123 123 -0.13969309e+01 -0.41669819e+01 -0.54275728e+02 0.00000000e+00
- 2 21 123 123 -0.22216316e+01 0.57517632e+00 -0.21296982e+02 0.00000000e+00
- 2 21 123 123 0.64473898e-01 0.44983261e+01 -0.68678524e+02 0.00000000e+00
- 2 21 123 123 0.31244928e+01 0.51732524e+01 -0.77136937e+02 0.00000000e+00
- 2 21 123 123 0.85944810e+01 0.19184854e+01 -0.23169196e+03 0.00000000e+00
- 2 21 123 123 0.51294737e+01 0.28198708e+01 -0.20017733e+03 0.00000000e+00
- 2 21 123 123 0.57330790e+00 0.29001171e+01 -0.17286084e+03 0.00000000e+00
- 2 21 123 123 0.44358876e-01 0.31470830e+01 -0.29167399e+03 0.00000000e+00
- 2 21 123 123 0.13969309e+01 0.41669819e+01 -0.13201417e+04 0.00000000e+00
- 2 21 123 123 -0.19390166e+00 -0.11767739e+00 0.26522627e+00 0.00000000e+00
- 2 21 123 123 -0.28791412e-01 0.28706668e+00 -0.19846501e+00 0.00000000e+00
- 2 21 123 123 -0.41609724e+01 0.38116235e+01 -0.49545945e+02 0.00000000e+00
- 2 21 123 123 -0.40124474e+00 0.11452449e+01 -0.62820404e+01 0.00000000e+00
- 2 21 123 123 -0.14235624e+00 -0.10649271e+01 -0.34743278e+01 0.00000000e+00
- 2 21 123 123 -0.74196296e-01 0.13460508e+00 -0.17529256e-01 0.00000000e+00
- 2 21 123 123 -0.14716119e+01 -0.80215721e+00 -0.12870252e+02 0.00000000e+00
- 2 2 123 123 -0.91884156e+00 0.89585313e+00 -0.12386408e+04 0.33000000e+00
- 2 2 187 187 -0.68921259e+01 -0.65341193e+01 -0.33023207e+02 0.00000000e+00
- 2 21 187 187 -0.85944810e+01 -0.19184854e+01 -0.20214815e+02 0.00000000e+00
- 2 21 187 187 -0.51294737e+01 -0.28198708e+01 -0.55351462e+01 0.00000000e+00
- 2 21 187 187 -0.31244928e+01 -0.51732524e+01 -0.23426316e+01 0.00000000e+00
- 2 21 187 187 -0.27151360e+01 -0.27922346e+01 -0.85237070e-01 0.00000000e+00
- 2 21 187 187 -0.20554448e+01 -0.17158184e+01 0.14679728e+01 0.00000000e+00
- 2 21 187 187 -0.59553429e+00 -0.36635298e+01 0.62643442e+00 0.00000000e+00
- 2 21 187 187 0.18554260e+00 -0.29330263e+01 0.30430424e+01 0.00000000e+00
- 2 21 187 187 -0.64473898e-01 -0.44983261e+01 0.93499776e+01 0.00000000e+00
- 2 21 187 187 0.12906320e+01 -0.36376341e+01 0.11355263e+02 0.00000000e+00
- 2 21 187 187 0.11805251e+01 -0.20234189e+00 0.19533803e+01 0.00000000e+00
- 2 21 187 187 -0.18554260e+00 0.29330263e+01 0.22958204e+01 0.00000000e+00
- 2 21 187 187 0.89584743e+00 0.15558861e+01 0.19100901e+01 0.00000000e+00
- 2 21 187 187 0.15163692e+01 0.11865545e+01 0.20055936e+01 0.00000000e+00
- 2 21 187 187 0.27151360e+01 0.27922346e+01 0.94591751e+00 0.00000000e+00
- 2 21 187 187 0.67706232e+00 0.15411262e+00 0.76720681e-01 0.00000000e+00
- 2 21 187 187 0.46282619e+00 0.93290708e-01 -0.58495098e-01 0.00000000e+00
- 2 21 187 187 0.22991099e+01 -0.22036011e+00 -0.25042160e+01 0.00000000e+00
- 2 -2 187 187 0.68921259e+01 0.65341193e+01 -0.28234768e+02 0.00000000e+00
- 2 2 227 227 -0.39123657e+01 -0.56074864e+00 -0.70964184e+03 0.00000000e+00
- 2 21 227 227 -0.89584743e+00 -0.15558861e+01 -0.23349997e+03 0.00000000e+00
- 2 21 227 227 -0.57330790e+00 -0.29001171e+01 -0.25622073e+03 0.00000000e+00
- 2 21 227 227 -0.44358876e-01 -0.31470830e+01 -0.17975086e+03 0.00000000e+00
- 2 21 227 227 0.98827367e+00 -0.25384549e+01 -0.80244829e+02 0.00000000e+00
- 2 21 227 227 0.78731458e+00 -0.29312393e+01 -0.80087853e+02 0.00000000e+00
- 2 21 227 227 0.69209436e+00 -0.12350698e+01 -0.17363718e+02 0.00000000e+00
- 2 21 227 227 0.22216316e+01 -0.57517632e+00 -0.41831301e+02 0.00000000e+00
- 2 -2 227 227 0.39123657e+01 0.56074864e+00 -0.79536217e+02 0.00000000e+00
- 2 21 241 241 -0.22061335e+01 -0.12000991e+01 0.65322234e+03 0.00000000e+00
- 2 21 241 241 0.55690327e+00 -0.52226860e+00 0.58003662e+02 0.00000000e+00
- 2 21 241 241 -0.15163692e+01 -0.11865545e+01 0.29243699e+02 0.00000000e+00
- 2 21 241 241 -0.49575745e+00 -0.22384656e+01 0.19960844e+02 0.00000000e+00
- 2 21 241 241 -0.67706232e+00 -0.15411262e+00 0.43284026e+01 0.00000000e+00
- 2 21 241 241 -0.46282619e+00 -0.93290708e-01 0.20206335e+01 0.00000000e+00
- 2 21 241 241 -0.11805251e+01 0.20234189e+00 0.40051452e+00 0.00000000e+00
- 2 21 241 241 -0.22991099e+01 0.22036011e+00 0.40150635e+00 0.00000000e+00
- 2 21 241 241 0.22061335e+01 0.12000991e+01 -0.53021727e+02 0.00000000e+00
- 2 21 241 241 -0.69209436e+00 0.12350698e+01 0.59037623e+01 0.00000000e+00
- 2 21 241 241 -0.55690327e+00 0.52226860e+00 0.36081909e+02 0.00000000e+00
- 2 21 271 271 0.14951466e+00 0.11863201e+01 -0.99382688e+00 0.00000000e+00
- 2 21 271 271 -0.14951466e+00 -0.11863201e+01 -0.21683278e+03 0.00000000e+00
- 2 92 91 122 -0.19416826e+02 0.24890395e+02 0.51938232e+04 0.84458267e+02
- 2 -213 284 285 -0.45231849e+01 0.44422790e+01 0.54361352e+03 0.76561868e+00
- 2 223 286 287 -0.30120076e+01 0.23395241e+01 0.31740461e+03 0.79018803e+00
- 2 111 288 289 -0.97914114e+00 0.72678139e+00 0.12477888e+03 0.13498000e+00
- 2 111 290 291 -0.85792214e+00 0.92130754e+00 0.86336259e+02 0.13498000e+00
- 2 2114 292 293 -0.15588020e+01 0.16086987e+01 0.27066689e+03 0.12918805e+01
- 2 -1114 294 295 -0.35805717e+01 0.28905255e+01 0.38802472e+03 0.13305735e+01
- 2 113 296 297 -0.47474802e+00 -0.17725014e+00 0.59298873e+02 0.87290227e+00
- 2 -213 298 299 -0.65975102e+00 0.10817684e+00 0.38898070e+02 0.75046825e+00
- 1 211 0 0 -0.68755489e+00 0.10854288e+01 0.60303430e+02 0.13957000e+00
- 2 111 300 301 -0.19283165e+00 -0.68452473e-01 0.38127391e+02 0.13498000e+00
- 2 111 302 303 -0.46033976e+00 -0.11497487e+00 0.26763406e+02 0.13498000e+00
- 2 -213 304 305 -0.90888152e+00 0.36635829e+00 0.28770397e+02 0.80040515e+00
- 2 111 306 307 -0.10095716e+00 0.56035397e+00 0.22880865e+02 0.13498000e+00
- 2 213 308 309 -0.21488038e+01 0.45605648e-01 0.35838110e+02 0.42981955e+00
- 1 -211 0 0 -0.38595815e+00 0.48106788e+00 0.11526855e+02 0.13957000e+00
- 2 323 310 311 -0.84351904e+00 0.40880798e+00 0.27793234e+02 0.89758295e+00
- 2 -311 312 312 -0.45254924e+00 0.17591694e+01 0.16133201e+02 0.49767000e+00
- 2 111 313 314 0.45019016e+00 0.14846535e+01 0.18813357e+02 0.13498000e+00
- 1 -211 0 0 0.15501635e+00 0.58846821e+00 0.92969020e+01 0.13957000e+00
- 1 211 0 0 0.73357668e-01 0.36216281e+00 0.32462032e+01 0.13957000e+00
- 2 -213 315 316 0.51595635e+00 0.59809149e+00 0.13909413e+02 0.70952450e+00
- 2 113 317 318 0.18122698e+00 0.13514250e+01 0.10754553e+02 0.91541095e+00
- 2 213 319 320 0.71727146e+00 0.11876460e+01 0.30972598e+02 0.66754174e+00
- 1 -211 0 0 0.45196087e+00 0.34400304e+00 0.32097767e+02 0.13957000e+00
- 2 213 321 322 0.33011986e+00 0.78957399e+00 0.21764368e+02 0.72619458e+00
- 2 311 323 323 -0.19699308e+00 0.73940593e-01 0.61476629e+02 0.49767000e+00
- 1 -321 0 0 0.57815345e+00 -0.43263188e+00 0.31068896e+03 0.49360000e+00
- 2 213 324 325 -0.70353534e+00 0.15564282e+01 0.27375546e+03 0.88891088e+00
- 2 -213 326 327 0.73254233e+00 -0.54886958e+00 0.22789293e+03 0.11377747e+01
- 2 223 328 330 -0.39898285e+00 0.58727205e-01 0.72637667e+03 0.77707423e+00
- 1 2212 0 0 -0.23911873e+00 -0.22406127e+00 0.78711631e+03 0.93827000e+00
- 2 223 331 332 -0.23646742e+00 0.31743046e+00 0.56850233e+03 0.78823029e+00
- 2 92 124 186 -0.10487807e+03 0.19649489e+03 -0.38185312e+04 0.10924499e+04
- 1 -2112 0 0 -0.63277735e+02 0.92199546e+02 -0.38033713e+02 0.93957000e+00
- 1 2112 0 0 -0.19186194e+02 0.26782057e+02 -0.11773918e+02 0.93957000e+00
- 2 223 333 335 -0.11607346e+02 0.16448597e+02 -0.62276001e+01 0.78397828e+00
- 2 111 336 337 -0.47302620e+01 0.70468784e+01 -0.31754670e+01 0.13498000e+00
- 2 213 338 339 -0.43915506e+01 0.55104303e+01 -0.24735459e+01 0.83883127e+00
- 1 -321 0 0 -0.48500569e+01 0.56929978e+01 -0.24466051e+01 0.49360000e+00
- 2 323 340 341 -0.33033134e+01 0.41117375e+01 -0.19644881e+01 0.91452346e+00
- 2 -213 342 343 -0.82124587e+00 0.75543447e+00 -0.72278881e+00 0.64911543e+00
- 2 223 344 346 -0.23119507e+00 0.42051679e+00 0.25775803e+00 0.77746832e+00
- 2 223 347 349 -0.10440117e+01 0.17769786e+01 -0.59991146e+00 0.78610319e+00
- 2 -311 350 350 -0.42465655e+00 0.49311803e+00 0.53249897e+00 0.49767000e+00
- 1 321 0 0 0.13696267e+01 0.20724210e+01 0.18771235e+01 0.49360000e+00
- 2 221 351 353 0.11136863e+01 0.12849480e+01 0.12040033e+01 0.54745000e+00
- 2 223 354 356 0.18422778e+00 0.66241855e+00 0.96950641e+00 0.78547916e+00
- 2 113 357 358 0.33223311e+00 0.16651097e+01 -0.21593113e+01 0.73883250e+00
- 2 331 359 360 -0.79953355e+00 0.16637889e+01 -0.19011724e+01 0.95775333e+00
- 2 221 361 363 -0.59538235e+00 0.99156588e+00 -0.30219529e+01 0.54745000e+00
- 2 -323 364 365 -0.44657541e+00 0.16525679e+01 -0.23328401e+01 0.84644454e+00
- 2 313 366 367 -0.95569664e+00 -0.23793760e+01 -0.25056983e+02 0.83616977e+00
- 2 213 368 369 -0.36389879e+00 0.38304634e+00 -0.10777365e+02 0.70101250e+00
- 2 221 370 372 -0.10097739e+01 -0.12115638e+01 -0.15613226e+02 0.54745000e+00
- 2 113 373 374 0.18482366e+00 -0.61280231e+00 -0.96325309e+01 0.62099040e+00
- 2 -213 375 376 -0.58528577e+00 0.15652976e+01 -0.27390764e+02 0.10978287e+01
- 2 111 377 378 -0.63189104e-01 0.12952124e+01 -0.21332412e+02 0.13498000e+00
- 2 -2214 379 380 0.33495347e-02 0.53683393e+00 -0.16912602e+02 0.13317373e+01
- 2 213 381 382 0.30022969e+00 0.16333974e+01 -0.25376538e+02 0.76704220e+00
- 1 2112 0 0 0.71669017e+00 0.22611399e+01 -0.32071970e+02 0.93957000e+00
- 2 -311 383 383 0.10741247e+01 0.14290976e+01 -0.24298981e+02 0.49767000e+00
- 1 321 0 0 0.15600761e+01 0.32723578e+00 -0.43704040e+02 0.49360000e+00
- 2 111 384 385 0.42814889e+00 0.12866586e+01 -0.23917416e+02 0.13498000e+00
- 2 -323 386 387 0.24475818e+01 0.66714491e+00 -0.69751486e+02 0.87695957e+00
- 2 313 388 389 0.39175948e+01 0.13226003e+01 -0.12906083e+03 0.81587912e+00
- 2 213 390 391 0.21512827e+01 0.69933993e+00 -0.60248012e+02 0.79625067e+00
- 2 -323 392 393 0.26911103e+01 0.21033730e+01 -0.13144851e+03 0.93968862e+00
- 2 323 394 395 0.53581276e+00 0.11027718e+01 -0.13450234e+03 0.84440440e+00
- 1 -211 0 0 0.45506675e+00 0.17049624e+01 -0.55030925e+02 0.13957000e+00
- 2 213 396 397 0.37537789e-01 0.19622268e+01 -0.21459677e+03 0.80639629e+00
- 2 -213 398 399 0.14514178e+01 0.33465534e+01 -0.84695693e+03 0.85866943e+00
- 1 -2112 0 0 0.27401891e+00 0.51652647e+00 -0.16447613e+03 0.93957000e+00
- 1 2112 0 0 -0.88025889e-01 0.53264110e+00 -0.24431514e+03 0.93957000e+00
- 2 113 400 401 -0.56609760e-01 0.56674100e+00 -0.70486205e+02 0.80863987e+00
- 2 331 402 404 -0.15644672e+00 0.24239914e+00 -0.29212279e+02 0.95784677e+00
- 2 213 405 406 -0.16406033e+00 -0.13315800e+00 -0.29835247e+01 0.75115059e+00
- 1 -2212 0 0 0.53062175e+00 -0.29452312e+00 -0.53375364e+01 0.93827000e+00
- 1 2212 0 0 -0.40721278e+00 0.26039026e+00 -0.28170712e+01 0.93827000e+00
- 2 221 407 408 0.38225470e-01 -0.11339882e+00 -0.16560769e+01 0.54745000e+00
- 1 -211 0 0 -0.61885296e-01 0.46875909e+00 -0.13307384e+01 0.13957000e+00
- 2 111 409 410 -0.19017461e+00 0.21758017e+00 -0.51745505e+00 0.13498000e+00
- 2 -313 411 412 -0.15121161e+01 0.94855424e+00 -0.18484812e+02 0.94234351e+00
- 2 -3224 413 414 -0.49555552e+00 0.61152552e+00 -0.65057675e+01 0.13684553e+01
- 2 2224 415 416 -0.84558653e+00 0.79392656e+00 -0.60519175e+01 0.12977442e+01
- 2 -323 417 418 -0.19325802e+01 0.10844045e+01 -0.19551677e+02 0.96724822e+00
- 2 313 419 420 -0.83119380e-01 0.22406713e-01 -0.97897325e+01 0.86751584e+00
- 1 211 0 0 -0.79146775e-01 -0.54342142e+00 -0.14807639e+01 0.13957000e+00
- 2 -213 421 422 -0.24901581e+00 -0.17250048e-01 -0.28508610e+02 0.86955272e+00
- 2 -2214 423 424 -0.46376018e+00 -0.11498017e+00 -0.10772649e+03 0.12333443e+01
- 1 211 0 0 0.60213263e+00 0.46981026e-01 -0.32700722e+02 0.13957000e+00
- 1 2112 0 0 -0.10315569e+01 0.25830876e+00 -0.32188659e+02 0.93957000e+00
- 1 211 0 0 -0.15126228e+00 -0.75821648e-01 -0.54771038e+01 0.13957000e+00
- 1 -211 0 0 0.14779177e-01 -0.30824450e+00 -0.93083108e+02 0.13957000e+00
- 2 213 425 426 0.21192226e+00 0.36025236e+00 -0.13162930e+03 0.77504250e+00
- 2 -213 427 428 -0.96137119e+00 0.56493064e+00 -0.57182376e+03 0.88045220e+00
- 1 211 0 0 0.11199323e+00 -0.54901140e-01 -0.24072354e+03 0.13957000e+00
- 2 92 188 226 -0.11241528e+02 -0.20859775e+02 -0.56968303e+02 0.14552296e+03
- 2 223 429 431 -0.42910601e+01 -0.38820294e+01 -0.17691655e+02 0.78408452e+00
- 2 213 432 433 -0.31529357e+01 -0.19399646e+01 -0.15762911e+02 0.79144257e+00
- 2 113 434 435 -0.30193857e+01 -0.12723960e+01 -0.77141261e+01 0.78595369e+00
- 2 111 436 437 -0.38361395e+00 -0.58250161e+00 -0.14628472e+01 0.13498000e+00
- 2 111 438 439 -0.36909881e+01 -0.10176552e+01 -0.74727625e+01 0.13498000e+00
- 1 -211 0 0 -0.32484385e+00 0.43355466e-01 -0.61222810e+00 0.13957000e+00
- 2 323 440 441 -0.23197691e+01 -0.87673736e+00 -0.30669314e+01 0.92999610e+00
- 2 -313 442 443 -0.10807649e+01 -0.10346744e+01 -0.12064687e+01 0.99039337e+00
- 2 -213 444 445 -0.95471179e+00 -0.21988553e+01 -0.27027743e+01 0.88310786e+00
- 1 2212 0 0 -0.27902003e+01 -0.17176337e+01 -0.67298386e+00 0.93827000e+00
- 2 -3122 446 447 -0.18118601e+01 -0.11503218e+01 -0.12490378e+01 0.11156800e+01
- 1 -321 0 0 -0.79403804e+00 -0.68441284e+00 -0.35994614e-01 0.49360000e+00
- 1 321 0 0 -0.75591971e+00 -0.13081515e+01 -0.92776239e+00 0.49360000e+00
- 2 333 448 449 -0.23077584e+01 -0.40888266e+01 -0.86982600e-01 0.10165911e+01
- 2 -313 450 451 -0.55036173e+00 -0.20601094e+01 0.20178245e+01 0.84400406e+00
- 2 -213 452 453 -0.93220539e+00 -0.17763045e+01 0.31662210e+01 0.72690708e+00
- 2 213 454 455 0.36403268e-01 -0.17550419e+01 0.58193758e+00 0.74333101e+00
- 2 331 456 457 0.32952544e+00 -0.23509386e+01 0.64490568e+01 0.95778184e+00
- 1 2112 0 0 0.68489096e+00 -0.31298762e+01 0.49912655e+01 0.93957000e+00
- 1 -2212 0 0 0.71881693e+00 -0.14538549e+01 0.43700270e+01 0.93827000e+00
- 2 113 458 459 -0.21410790e+00 -0.53817698e+00 0.25916749e+01 0.65227008e+00
- 2 323 460 461 -0.59027759e-01 0.12681469e+00 0.13337563e+01 0.88203070e+00
- 2 -313 462 463 0.43263407e+00 0.42457184e+00 0.84667279e+00 0.83865130e+00
- 2 -213 464 465 0.86685705e+00 0.22082202e-01 0.22528468e+01 0.80876441e+00
- 2 213 466 467 0.42250639e-01 0.28091564e+00 0.61479000e+00 0.46993193e+00
- 1 -211 0 0 0.78040779e+00 0.77139939e+00 0.13877113e+01 0.13957000e+00
- 1 211 0 0 0.83764874e+00 0.19176363e+01 0.82597544e+00 0.13957000e+00
- 2 311 468 468 0.95837206e+00 0.13584060e+01 0.75835025e+00 0.49767000e+00
- 2 -311 469 469 0.49852986e+00 0.40230525e+00 0.76957335e+00 0.49767000e+00
- 2 223 470 472 0.55159351e+00 0.77521389e+00 0.68533512e+00 0.76790326e+00
- 2 113 473 474 0.96883187e+00 0.24181059e+00 0.14921151e+00 0.76014537e+00
- 1 2112 0 0 0.13076396e+01 0.11277375e+01 -0.25471283e+00 0.93957000e+00
- 1 -2212 0 0 0.67603572e+00 0.19649520e+00 -0.75925892e+00 0.93827000e+00
- 1 211 0 0 0.88881614e+00 -0.17255408e+00 -0.57665505e+00 0.13957000e+00
- 2 111 475 476 0.55165904e+00 0.58258288e+00 -0.11934483e+01 0.13498000e+00
- 2 111 477 478 0.19108835e+01 0.76735346e+00 -0.51345314e+01 0.13498000e+00
- 1 -211 0 0 0.15492544e+00 0.60218102e+00 -0.25381297e+01 0.13957000e+00
- 1 211 0 0 0.45272885e+01 0.40685264e+01 -0.18003105e+02 0.13957000e+00
- 1 -211 0 0 0.46801414e+00 0.42185418e+00 -0.16352271e+01 0.13957000e+00
- 2 92 228 240 0.31758000e+01 -0.14883026e+02 -0.16781773e+04 0.32563740e+02
- 2 213 479 480 -0.20845009e+01 -0.24711345e+00 -0.42224061e+03 0.11360422e+01
- 2 223 481 483 -0.21159727e+01 -0.13310865e+01 -0.41597716e+03 0.77651656e+00
- 1 2112 0 0 -0.35293466e+00 -0.22451657e+01 -0.18455912e+03 0.93957000e+00
- 1 -2212 0 0 -0.19736471e+00 -0.12522329e+01 -0.11678595e+03 0.93827000e+00
- 2 213 484 485 -0.17309310e-01 -0.20049670e+01 -0.12008185e+03 0.80837331e+00
- 2 223 486 488 0.20989594e+00 -0.11019161e+01 -0.76675584e+02 0.82509746e+00
- 1 2112 0 0 0.19329262e+00 -0.11417736e+01 -0.29536730e+02 0.93957000e+00
- 1 -2212 0 0 0.24026188e+00 -0.17475981e+01 -0.77338659e+02 0.93827000e+00
- 2 113 489 490 0.28977978e+00 -0.14952770e+01 -0.52648519e+02 0.76771549e+00
- 1 321 0 0 0.48146066e+00 -0.15507758e+01 -0.48214476e+02 0.49360000e+00
- 2 -313 491 492 0.97103844e+00 -0.42520327e+00 -0.20156541e+02 0.83519722e+00
- 2 223 493 495 0.45211367e+01 -0.43796925e+00 -0.99441060e+02 0.78185343e+00
- 1 -211 0 0 0.10370163e+01 0.98052263e-01 -0.14521066e+02 0.13957000e+00
- 2 92 242 270 -0.73237445e+01 -0.20146516e+01 0.75654554e+03 0.42123497e+03
- 1 -211 0 0 -0.45517180e-01 -0.87360614e-01 -0.10264948e+01 0.13957000e+00
- 2 111 496 497 -0.14395938e+00 0.36316013e+00 0.23973063e+00 0.13498000e+00
- 2 213 498 499 0.14355540e+00 -0.85376442e-02 -0.15171159e+01 0.73501941e+00
- 2 111 500 501 -0.54533600e+00 0.76490363e+00 0.37100677e+01 0.13498000e+00
- 2 -213 502 503 0.64557935e+00 0.23008628e+00 0.16832404e+01 0.65517812e+00
- 2 213 504 505 -0.76390632e+00 0.30203608e+00 0.13862185e+02 0.70164818e+00
- 1 -321 0 0 -0.24034953e+00 0.44057278e-01 0.92288786e+01 0.49360000e+00
- 2 -3224 506 507 -0.94888259e+00 -0.76584453e+00 0.34596961e+03 0.14131017e+01
- 2 2214 508 509 -0.23160799e+00 0.18228022e+00 0.73866101e+02 0.12833902e+01
- 2 221 510 511 -0.69719984e+00 -0.35598526e+00 0.65594015e+02 0.54745000e+00
- 1 211 0 0 0.13809880e+00 -0.36450726e-01 0.44011850e+02 0.13957000e+00
- 2 111 512 513 -0.17573687e+00 -0.26056052e+00 0.21729554e+02 0.13498000e+00
- 2 111 514 515 -0.75352796e+00 -0.16162171e+00 0.11237529e+03 0.13498000e+00
- 2 -213 516 517 -0.71918226e-01 -0.18377605e+00 0.23637965e+02 0.78831604e+00
- 2 213 518 519 0.18956989e+00 -0.57226525e-01 0.14456124e+02 0.75743406e+00
- 2 -213 520 521 -0.51099940e+00 -0.14178864e+01 0.26494586e+02 0.72097059e+00
- 2 -313 522 523 -0.23512149e+00 0.54749361e-01 0.28832815e+02 0.87884439e+00
- 2 -3122 524 525 -0.12487198e+01 -0.18234622e+01 0.17444120e+02 0.11156800e+01
- 2 223 526 528 -0.20893101e+00 -0.76658711e+00 0.23654583e+01 0.77143229e+00
- 2 2214 529 530 -0.90923927e+00 0.89214862e+00 0.22338362e+01 0.11840971e+01
- 2 -213 531 532 -0.10850656e+01 -0.25215215e-01 0.72196410e+00 0.75876076e+00
- 2 213 533 534 -0.17400139e+01 -0.42994224e+00 0.76355403e-01 0.90648280e+00
- 2 -323 535 536 0.33656489e+00 0.96178091e+00 -0.11651872e+02 0.87759069e+00
- 2 -3122 537 538 0.86187372e+00 0.26528100e+00 -0.14483629e+02 0.11156800e+01
- 2 223 539 541 0.12238614e+00 -0.12452597e+00 -0.30083569e+01 0.77767787e+00
- 1 2112 0 0 0.62366603e+00 0.60312815e+00 -0.12924156e+02 0.93957000e+00
- 2 111 542 543 0.21925002e+00 -0.18751381e+00 -0.40807940e+01 0.13498000e+00
- 2 111 544 545 -0.29641257e+00 0.52331792e+00 -0.93007309e+00 0.13498000e+00
- 2 213 546 547 0.24815626e+00 -0.50908458e+00 -0.23657194e+01 0.76515948e+00
- 2 92 272 283 0.00000000e+00 0.00000000e+00 -0.21782661e+03 0.15688985e+02
- 2 223 548 550 0.59935877e-01 0.12082393e+00 -0.55236338e+01 0.78278989e+00
- 2 323 551 552 -0.36425458e+00 0.33458409e+00 -0.54990733e+01 0.86308810e+00
- 2 -323 553 554 0.21482509e+00 0.15665899e+00 -0.43589725e+01 0.90183132e+00
- 2 213 555 556 -0.22333370e+00 0.62820511e+00 -0.23414534e+01 0.57738250e+00
- 1 -211 0 0 0.83317185e-01 -0.34883742e+00 -0.16582357e+01 0.13957000e+00
- 1 211 0 0 0.31139758e-01 0.15274523e-01 -0.20196033e+02 0.13957000e+00
- 1 -211 0 0 0.19980626e+00 0.51689484e-02 -0.40057917e+01 0.13957000e+00
- 2 213 557 558 -0.36257553e+00 -0.32820824e+00 -0.15729925e+02 0.75661242e+00
- 1 -211 0 0 -0.47043737e-01 0.15935928e+00 -0.25016659e+01 0.13957000e+00
- 2 3224 559 560 -0.15774132e+00 -0.40893090e+00 -0.62953427e+02 0.14112848e+01
- 2 323 561 562 0.19028398e+00 0.10700609e-02 -0.96360682e+01 0.87159933e+00
- 2 -2224 563 564 0.37564072e+00 -0.33516837e+00 -0.83422327e+02 0.12987043e+01
- 1 -211 0 0 -0.12250032e+01 0.80082904e+00 0.12166510e+03 0.13957000e+00
- 2 111 565 566 -0.32981817e+01 0.36414500e+01 0.42194842e+03 0.13498000e+00
- 1 22 0 0 -0.40264417e+00 0.19198913e+00 0.60323821e+02 0.00000000e+00
- 2 111 567 568 -0.26093634e+01 0.21475350e+01 0.25708079e+03 0.13498000e+00
- 1 22 0 0 -0.20977605e+00 0.14276580e+00 0.20896929e+02 0.00000000e+00
- 1 22 0 0 -0.76936509e+00 0.58401560e+00 0.10388195e+03 0.00000000e+00
- 1 22 0 0 -0.24387641e+00 0.35033959e+00 0.30565897e+02 0.00000000e+00
- 1 22 0 0 -0.61404573e+00 0.57096794e+00 0.55770362e+02 0.00000000e+00
- 1 2112 0 0 -0.88872457e+00 0.12381385e+01 0.17333852e+03 0.93957000e+00
- 2 111 569 570 -0.67007744e+00 0.37056019e+00 0.97328366e+02 0.13498000e+00
- 1 -2112 0 0 -0.28157044e+01 0.18871543e+01 0.27852677e+03 0.93957000e+00
- 1 211 0 0 -0.76486728e+00 0.10033713e+01 0.10949795e+03 0.13957000e+00
- 1 211 0 0 -0.30853545e+00 -0.46830416e+00 0.25051760e+02 0.13957000e+00
- 1 -211 0 0 -0.16621257e+00 0.29105402e+00 0.34247113e+02 0.13957000e+00
- 1 -211 0 0 -0.31535050e+00 0.27359690e+00 0.95033458e+01 0.13957000e+00
- 2 111 571 572 -0.34440052e+00 -0.16542006e+00 0.29394724e+02 0.13498000e+00
- 1 22 0 0 -0.53413891e-01 0.30478421e-01 0.16407388e+02 0.00000000e+00
- 1 22 0 0 -0.13941776e+00 -0.98930894e-01 0.21720003e+02 0.00000000e+00
- 1 22 0 0 -0.46165458e+00 -0.95986099e-01 0.26149524e+02 0.00000000e+00
- 1 22 0 0 0.13148185e-02 -0.18988770e-01 0.61388204e+00 0.00000000e+00
- 1 -211 0 0 -0.54877895e+00 -0.18138019e+00 0.14220022e+02 0.13957000e+00
- 2 111 573 574 -0.36010257e+00 0.54773847e+00 0.14550375e+02 0.13498000e+00
- 1 22 0 0 0.41181545e-02 0.27923982e+00 0.12640086e+02 0.00000000e+00
- 1 22 0 0 -0.10507531e+00 0.28111415e+00 0.10240779e+02 0.00000000e+00
- 1 211 0 0 -0.14060181e+01 0.10392243e+00 0.21083468e+02 0.13957000e+00
- 2 111 575 576 -0.74278566e+00 -0.58316779e-01 0.14754642e+02 0.13498000e+00
- 2 311 577 577 -0.43145290e+00 0.21425919e+00 0.10027249e+02 0.49767000e+00
- 1 211 0 0 -0.41206615e+00 0.19454879e+00 0.17765985e+02 0.13957000e+00
- 2 310 578 579 -0.45254924e+00 0.17591694e+01 0.16133201e+02 0.49767000e+00
- 1 22 0 0 0.85531357e-01 0.16347566e+00 0.25765748e+01 0.00000000e+00
- 1 22 0 0 0.36465880e+00 0.13211779e+01 0.16236782e+02 0.00000000e+00
- 1 -211 0 0 0.46219371e+00 0.69713715e+00 0.12630372e+02 0.13957000e+00
- 2 111 580 581 0.53762637e-01 -0.99045656e-01 0.12790411e+01 0.13498000e+00
- 1 211 0 0 -0.14931033e+00 0.10064453e+01 0.88994303e+01 0.13957000e+00
- 1 -211 0 0 0.33053731e+00 0.34497971e+00 0.18551230e+01 0.13957000e+00
- 1 211 0 0 0.73727934e+00 0.11849683e+01 0.27965550e+02 0.13957000e+00
- 2 111 582 583 -0.20007887e-01 0.26776134e-02 0.30070474e+01 0.13498000e+00
- 1 211 0 0 -0.50574632e-01 0.49855486e+00 0.15666485e+02 0.13957000e+00
- 2 111 584 585 0.38069449e+00 0.29101913e+00 0.60978835e+01 0.13498000e+00
- 2 310 586 587 -0.19699308e+00 0.73940593e-01 0.61476629e+02 0.49767000e+00
- 1 211 0 0 -0.60495731e+00 0.72310801e+00 0.95764405e+02 0.13957000e+00
- 2 111 588 589 -0.98578031e-01 0.83332020e+00 0.17799106e+03 0.13498000e+00
- 1 -211 0 0 0.41015418e+00 0.28891474e+00 0.10719650e+03 0.13957000e+00
- 2 111 590 591 0.32238815e+00 -0.83778431e+00 0.12069643e+03 0.13498000e+00
- 1 -211 0 0 -0.24192762e+00 0.84519319e-01 0.23604982e+03 0.13957000e+00
- 1 211 0 0 0.91004548e-01 0.16278974e+00 0.24781685e+03 0.13957000e+00
- 2 111 592 593 -0.24805978e+00 -0.18858185e+00 0.24251000e+03 0.13498000e+00
- 1 211 0 0 -0.54465958e-01 0.21271608e+00 0.54379909e+02 0.13957000e+00
- 1 -211 0 0 -0.18200146e+00 0.10471438e+00 0.51412242e+03 0.13957000e+00
- 1 211 0 0 -0.48152039e+01 0.72648332e+01 -0.26558280e+01 0.13957000e+00
- 1 -211 0 0 -0.32711599e+01 0.44716454e+01 -0.15741443e+01 0.13957000e+00
- 2 111 594 595 -0.35209823e+01 0.47121185e+01 -0.19976278e+01 0.13498000e+00
- 1 22 0 0 -0.16337731e+01 0.23224621e+01 -0.10773126e+01 0.00000000e+00
- 1 22 0 0 -0.30964889e+01 0.47244163e+01 -0.20981543e+01 0.00000000e+00
- 1 211 0 0 -0.37919147e+01 0.42812998e+01 -0.20445698e+01 0.13957000e+00
- 2 111 596 597 -0.59963590e+00 0.12291305e+01 -0.42897612e+00 0.13498000e+00
- 2 311 598 598 -0.19102160e+01 0.28580214e+01 -0.12522056e+01 0.49767000e+00
- 1 211 0 0 -0.13930975e+01 0.12537161e+01 -0.71228248e+00 0.13957000e+00
- 1 -211 0 0 -0.48744599e+00 0.14321739e+00 -0.52138907e+00 0.13957000e+00
- 2 111 599 600 -0.33379988e+00 0.61221709e+00 -0.20139973e+00 0.13498000e+00
- 1 211 0 0 -0.11820345e+00 0.15161602e+00 0.29111954e+00 0.13957000e+00
- 1 -211 0 0 -0.52628477e-01 0.34974069e+00 -0.98682239e-01 0.13957000e+00
- 2 111 601 602 -0.60363152e-01 -0.80839924e-01 0.65320738e-01 0.13498000e+00
- 1 211 0 0 -0.26714637e+00 0.66316422e+00 -0.41852300e+00 0.13957000e+00
- 1 -211 0 0 -0.72761161e+00 0.81755601e+00 -0.17016362e+00 0.13957000e+00
- 2 111 603 604 -0.49253737e-01 0.29625841e+00 -0.11224842e-01 0.13498000e+00
- 1 130 0 0 -0.42465655e+00 0.49311803e+00 0.53249897e+00 0.49767000e+00
- 1 -211 0 0 0.57412035e+00 0.51834293e+00 0.47185840e+00 0.13957000e+00
- 1 211 0 0 0.29720648e+00 0.29453160e+00 0.24480296e+00 0.13957000e+00
- 2 111 605 606 0.24235948e+00 0.47207343e+00 0.48734190e+00 0.13498000e+00
- 1 -211 0 0 -0.12622182e+00 -0.35178862e-01 0.24240187e+00 0.13957000e+00
- 1 211 0 0 0.27374759e+00 0.39770526e+00 0.34136624e+00 0.13957000e+00
- 2 111 607 608 0.36702010e-01 0.29989215e+00 0.38573831e+00 0.13498000e+00
- 1 211 0 0 0.46923543e+00 0.14377205e+01 -0.19789075e+01 0.13957000e+00
- 1 -211 0 0 -0.13700233e+00 0.22738923e+00 -0.18040381e+00 0.13957000e+00
- 1 22 0 0 -0.31946711e+00 0.36888640e+00 -0.59918408e+00 0.00000000e+00
- 2 113 609 610 -0.48006644e+00 0.12949025e+01 -0.13019883e+01 0.76105005e+00
- 2 111 611 612 -0.22864515e+00 0.30508989e+00 -0.72204726e+00 0.13498000e+00
- 2 111 613 614 -0.29614751e+00 0.55907411e+00 -0.15799071e+01 0.13498000e+00
- 2 111 615 616 -0.70589700e-01 0.12740188e+00 -0.71999853e+00 0.13498000e+00
- 2 -311 617 617 -0.44789118e+00 0.15410544e+01 -0.22725751e+01 0.49767000e+00
- 1 -211 0 0 0.13157721e-02 0.11151351e+00 -0.60264988e-01 0.13957000e+00
- 2 311 618 618 -0.90272454e+00 -0.19332102e+01 -0.18814956e+02 0.49767000e+00
- 2 111 619 620 -0.52972106e-01 -0.44616584e+00 -0.62420269e+01 0.13498000e+00
- 1 211 0 0 -0.25882419e-01 0.36695675e+00 -0.28155062e+01 0.13957000e+00
- 2 111 621 622 -0.33801637e+00 0.16089594e-01 -0.79618589e+01 0.13498000e+00
- 2 111 623 624 -0.22751401e+00 -0.30286211e+00 -0.30792746e+01 0.13498000e+00
- 2 111 625 626 -0.61633074e+00 -0.69376728e+00 -0.10252014e+02 0.13498000e+00
- 2 111 627 628 -0.16592913e+00 -0.21493440e+00 -0.22819377e+01 0.13498000e+00
- 1 211 0 0 0.23291911e+00 -0.11388066e-01 -0.31255383e+01 0.13957000e+00
- 1 -211 0 0 -0.48095448e-01 -0.60141424e+00 -0.65069926e+01 0.13957000e+00
- 1 -211 0 0 0.29786315e+00 0.58580646e+00 -0.86539810e+01 0.13957000e+00
- 2 111 629 630 -0.88314892e+00 0.97949110e+00 -0.18736783e+02 0.13498000e+00
- 1 22 0 0 -0.33016948e-01 0.15592596e+00 -0.32721059e+01 0.00000000e+00
- 1 22 0 0 -0.30172156e-01 0.11392864e+01 -0.18060306e+02 0.00000000e+00
- 1 -2212 0 0 0.30926500e+00 0.45428756e+00 -0.13367266e+02 0.93827000e+00
- 2 111 631 632 -0.30591546e+00 0.82546366e-01 -0.35453362e+01 0.13498000e+00
- 1 211 0 0 0.43688439e+00 0.87691041e+00 -0.17281833e+02 0.13957000e+00
- 2 111 633 634 -0.13665470e+00 0.75648699e+00 -0.80947046e+01 0.13498000e+00
- 1 130 0 0 0.10741247e+01 0.14290976e+01 -0.24298981e+02 0.49767000e+00
- 1 22 0 0 0.24270683e+00 0.85413475e+00 -0.16501911e+02 0.00000000e+00
- 1 22 0 0 0.18544206e+00 0.43252384e+00 -0.74155051e+01 0.00000000e+00
- 2 -311 635 635 0.23813397e+01 0.63580711e+00 -0.63781247e+02 0.49767000e+00
- 1 -211 0 0 0.66242129e-01 0.31337802e-01 -0.59702393e+01 0.13957000e+00
- 1 321 0 0 0.20287749e+01 0.58078404e+00 -0.61447054e+02 0.49360000e+00
- 1 -211 0 0 0.18888199e+01 0.74181623e+00 -0.67613773e+02 0.13957000e+00
- 1 211 0 0 0.18849700e+01 0.59062818e+00 -0.56348642e+02 0.13957000e+00
- 2 111 636 637 0.26631263e+00 0.10871174e+00 -0.38993696e+01 0.13498000e+00
- 2 -311 638 638 0.90741400e+00 0.58362076e+00 -0.40391553e+02 0.49767000e+00
- 1 -211 0 0 0.17836963e+01 0.15197523e+01 -0.91056958e+02 0.13957000e+00
- 2 311 639 639 0.25677779e+00 0.35033488e+00 -0.51344134e+02 0.49767000e+00
- 1 211 0 0 0.27903497e+00 0.75243692e+00 -0.83158201e+02 0.13957000e+00
- 1 211 0 0 0.20390916e+00 0.11254814e+01 -0.15430851e+03 0.13957000e+00
- 2 111 640 641 -0.16637137e+00 0.83674537e+00 -0.60288255e+02 0.13498000e+00
- 1 -211 0 0 0.13040809e+01 0.32716346e+01 -0.78277102e+03 0.13957000e+00
- 2 111 642 643 0.14733692e+00 0.74918749e-01 -0.64185913e+02 0.13498000e+00
- 1 -211 0 0 -0.27987901e+00 -0.51131653e-01 -0.23709205e+02 0.13957000e+00
- 1 211 0 0 0.22326925e+00 0.61787266e+00 -0.46777001e+02 0.13957000e+00
- 1 211 0 0 0.94672306e-02 0.21070392e+00 -0.83200777e+01 0.13957000e+00
- 1 -211 0 0 0.56746503e-01 -0.17263523e-01 -0.39998352e+01 0.13957000e+00
- 2 221 644 645 -0.22266045e+00 0.48958735e-01 -0.16892366e+02 0.54745000e+00
- 1 211 0 0 0.21035602e+00 0.14554910e+00 -0.99017642e+00 0.13957000e+00
- 2 111 646 647 -0.37441635e+00 -0.27870710e+00 -0.19933483e+01 0.13498000e+00
- 1 22 0 0 -0.60095401e-01 0.50441850e-01 0.27637533e-02 0.00000000e+00
- 1 22 0 0 0.98320871e-01 -0.16384067e+00 -0.16588407e+01 0.00000000e+00
- 1 22 0 0 -0.20258461e-01 0.12258525e+00 -0.20575492e+00 0.00000000e+00
- 1 22 0 0 -0.16991615e+00 0.94994915e-01 -0.31170014e+00 0.00000000e+00
- 2 -311 648 648 -0.12904581e+01 0.10453422e+01 -0.16452055e+02 0.49767000e+00
- 2 111 649 650 -0.22165809e+00 -0.96788007e-01 -0.20327571e+01 0.13498000e+00
- 2 -3122 651 652 -0.24990658e+00 0.38315449e+00 -0.46672518e+01 0.11156800e+01
- 1 -211 0 0 -0.24564893e+00 0.22837104e+00 -0.18385157e+01 0.13957000e+00
- 1 2212 0 0 -0.56291661e+00 0.52210586e+00 -0.33331654e+01 0.93827000e+00
- 1 211 0 0 -0.28266992e+00 0.27182070e+00 -0.27187521e+01 0.13957000e+00
- 2 -311 653 653 -0.82487794e+00 0.38105102e+00 -0.64512842e+01 0.49767000e+00
- 1 -211 0 0 -0.11077023e+01 0.70335351e+00 -0.13100393e+02 0.13957000e+00
- 2 311 654 654 0.17677495e+00 -0.72769796e-01 -0.44940188e+01 0.49767000e+00
- 1 22 0 0 -0.25989433e+00 0.95176509e-01 -0.52957136e+01 0.00000000e+00
- 1 -211 0 0 -0.30989949e+00 0.35715475e+00 -0.17663248e+02 0.13957000e+00
- 2 111 655 656 0.60883676e-01 -0.37440480e+00 -0.10845363e+02 0.13498000e+00
- 1 -2212 0 0 -0.46070328e+00 -0.81674347e-01 -0.10433733e+03 0.93827000e+00
- 2 111 657 658 -0.30569049e-02 -0.33305826e-01 -0.33891588e+01 0.13498000e+00
- 1 211 0 0 0.42669282e+00 0.55504972e-01 -0.87302949e+02 0.13957000e+00
- 2 111 659 660 -0.21477056e+00 0.30474739e+00 -0.44326353e+02 0.13498000e+00
- 1 -211 0 0 -0.92009291e+00 0.34726865e+00 -0.30063193e+03 0.13957000e+00
- 2 111 661 662 -0.41278285e-01 0.21766199e+00 -0.27119183e+03 0.13498000e+00
- 1 -211 0 0 -0.35634062e+00 -0.48932729e+00 -0.20297723e+01 0.13957000e+00
- 1 211 0 0 -0.30758149e+01 -0.27290403e+01 -0.12735937e+02 0.13957000e+00
- 2 111 663 664 -0.85890464e+00 -0.66366181e+00 -0.29259459e+01 0.13498000e+00
- 1 211 0 0 -0.83240089e+00 -0.24116068e+00 -0.45928003e+01 0.13957000e+00
- 2 111 665 666 -0.23205348e+01 -0.16988040e+01 -0.11170110e+02 0.13498000e+00
- 1 -211 0 0 -0.74016739e+00 -0.64636510e+00 -0.25709497e+01 0.13957000e+00
- 1 211 0 0 -0.22792183e+01 -0.62603089e+00 -0.51431764e+01 0.13957000e+00
- 1 22 0 0 -0.24765254e+00 -0.36909527e+00 -0.10734701e+01 0.00000000e+00
- 1 22 0 0 -0.13596141e+00 -0.21340634e+00 -0.38937710e+00 0.00000000e+00
- 1 22 0 0 -0.53424049e+00 -0.13111826e+00 -0.97849524e+00 0.00000000e+00
- 1 22 0 0 -0.31567476e+01 -0.88653692e+00 -0.64942672e+01 0.00000000e+00
- 2 311 667 667 -0.93505609e+00 -0.23387303e+00 -0.15804641e+01 0.49767000e+00
- 1 211 0 0 -0.13847130e+01 -0.64286434e+00 -0.14864673e+01 0.13957000e+00
- 1 -321 0 0 -0.66801267e+00 -0.20676521e+00 -0.63669844e+00 0.49360000e+00
- 1 211 0 0 -0.41275227e+00 -0.82790916e+00 -0.56977025e+00 0.13957000e+00
- 1 -211 0 0 0.12360632e+00 -0.51582560e+00 -0.65402342e+00 0.13957000e+00
- 2 111 668 669 -0.10783181e+01 -0.16830297e+01 -0.20487509e+01 0.13498000e+00
- 1 -2212 0 0 -0.15984118e+01 -0.89793018e+00 -0.10839493e+01 0.93827000e+00
- 1 211 0 0 -0.21344829e+00 -0.25239162e+00 -0.16508854e+00 0.13957000e+00
- 1 321 0 0 -0.10467671e+01 -0.19042088e+01 0.72589420e-01 0.49360000e+00
- 1 -321 0 0 -0.12609913e+01 -0.21846178e+01 -0.15957202e+00 0.49360000e+00
- 1 -321 0 0 -0.45656852e+00 -0.16659779e+01 0.12959929e+01 0.49360000e+00
- 1 211 0 0 -0.93793209e-01 -0.39413145e+00 0.72183163e+00 0.13957000e+00
- 1 -211 0 0 -0.21667624e+00 -0.10138594e+01 0.12411767e+01 0.13957000e+00
- 2 111 670 671 -0.71552916e+00 -0.76244512e+00 0.19250443e+01 0.13498000e+00
- 1 211 0 0 0.28675255e+00 -0.93426378e+00 0.81248072e-01 0.13957000e+00
- 2 111 672 673 -0.25034928e+00 -0.82077816e+00 0.50068951e+00 0.13498000e+00
- 1 22 0 0 0.71769141e-01 -0.22470348e+00 0.35522621e+00 0.00000000e+00
- 2 113 674 675 0.25775630e+00 -0.21262352e+01 0.60938306e+01 0.82798727e+00
- 1 211 0 0 -0.23531487e+00 -0.27964558e+00 0.22485078e+01 0.13957000e+00
- 1 -211 0 0 0.21206972e-01 -0.25853140e+00 0.34316714e+00 0.13957000e+00
- 1 321 0 0 -0.27903939e+00 0.12564255e+00 0.11498605e+01 0.49360000e+00
- 2 111 676 677 0.22001163e+00 0.11721427e-02 0.18389583e+00 0.13498000e+00
- 1 -321 0 0 0.39402478e+00 0.31230134e+00 0.30968678e+00 0.49360000e+00
- 1 211 0 0 0.38609289e-01 0.11227050e+00 0.53698601e+00 0.13957000e+00
- 1 -211 0 0 0.84431248e+00 -0.12486674e+00 0.21558459e+01 0.13957000e+00
- 2 111 678 679 0.22544573e-01 0.14694895e+00 0.97000910e-01 0.13498000e+00
- 1 211 0 0 0.15078345e+00 0.23906721e+00 0.20116683e+00 0.13957000e+00
- 2 111 680 681 -0.10853282e+00 0.41848421e-01 0.41362317e+00 0.13498000e+00
- 1 130 0 0 0.95837206e+00 0.13584060e+01 0.75835025e+00 0.49767000e+00
- 1 130 0 0 0.49852986e+00 0.40230525e+00 0.76957335e+00 0.49767000e+00
- 1 211 0 0 0.31358844e+00 0.32342725e+00 0.59418531e+00 0.13957000e+00
- 1 -211 0 0 0.26266690e+00 0.31115844e+00 0.11380640e+00 0.13957000e+00
- 2 111 682 683 -0.24661832e-01 0.14062821e+00 -0.22656589e-01 0.13498000e+00
- 1 -211 0 0 0.24240811e+00 -0.22994819e+00 -0.45978213e-01 0.13957000e+00
- 1 211 0 0 0.72642376e+00 0.47175878e+00 0.19518972e+00 0.13957000e+00
- 1 22 0 0 0.49483392e+00 0.45808412e+00 -0.94783559e+00 0.00000000e+00
- 1 22 0 0 0.56825121e-01 0.12449877e+00 -0.24561269e+00 0.00000000e+00
- 1 22 0 0 0.13225262e-01 -0.41807247e-02 -0.21538534e-01 0.00000000e+00
- 1 22 0 0 0.18976582e+01 0.77153419e+00 -0.51129929e+01 0.00000000e+00
- 1 211 0 0 -0.43955756e-01 0.13305878e+00 -0.13450946e+02 0.13957000e+00
- 2 111 684 685 -0.20405452e+01 -0.38017223e+00 -0.40878966e+03 0.13498000e+00
- 1 211 0 0 -0.79643384e+00 -0.58955415e+00 -0.16261642e+03 0.13957000e+00
- 1 -211 0 0 -0.12584654e+01 -0.73056380e+00 -0.23565362e+03 0.13957000e+00
- 2 111 686 687 -0.61073421e-01 -0.10968509e-01 -0.17707116e+02 0.13498000e+00
- 1 211 0 0 -0.35611512e+00 -0.14263824e+01 -0.80223847e+02 0.13957000e+00
- 2 111 688 689 0.33880581e+00 -0.57858465e+00 -0.39857999e+02 0.13498000e+00
- 1 211 0 0 0.81536130e-01 -0.33513273e+00 -0.11115356e+02 0.13957000e+00
- 1 -211 0 0 0.25975706e+00 -0.51536970e+00 -0.38202465e+02 0.13957000e+00
- 2 111 690 691 -0.13139725e+00 -0.25141364e+00 -0.27357763e+02 0.13498000e+00
- 1 211 0 0 0.86630421e-01 -0.13517021e+01 -0.37048745e+02 0.13957000e+00
- 1 -211 0 0 0.20314936e+00 -0.14357495e+00 -0.15599774e+02 0.13957000e+00
- 1 -321 0 0 0.96835746e+00 -0.49087227e+00 -0.17411840e+02 0.49360000e+00
- 1 211 0 0 0.26809767e-02 0.65668999e-01 -0.27447007e+01 0.13957000e+00
- 1 -211 0 0 0.30125087e+01 -0.33269911e+00 -0.63488228e+02 0.13957000e+00
- 1 211 0 0 0.28793151e+00 0.71402196e-01 -0.67540286e+01 0.13957000e+00
- 2 111 692 693 0.12206965e+01 -0.17667234e+00 -0.29198803e+02 0.13498000e+00
- 1 22 0 0 -0.14065125e+00 0.17832399e+00 0.11301541e+00 0.00000000e+00
- 1 22 0 0 -0.33081332e-02 0.18483614e+00 0.12671522e+00 0.00000000e+00
- 1 211 0 0 0.15699526e+00 -0.65251691e-01 -0.60825164e-01 0.13957000e+00
- 2 111 694 695 -0.13439861e-01 0.56714047e-01 -0.14562908e+01 0.13498000e+00
- 1 22 0 0 -0.23572231e+00 0.33227239e+00 0.18838854e+01 0.00000000e+00
- 1 22 0 0 -0.30961369e+00 0.43263123e+00 0.18261823e+01 0.00000000e+00
- 1 -211 0 0 -0.69519421e-01 0.98475730e-01 0.18568250e+00 0.13957000e+00
- 2 111 696 697 0.71509878e+00 0.13161055e+00 0.14975579e+01 0.13498000e+00
- 1 211 0 0 -0.80522678e+00 0.15248215e+00 0.91953780e+01 0.13957000e+00
- 2 111 698 699 0.41320462e-01 0.14955394e+00 0.46668074e+01 0.13498000e+00
- 2 -3122 700 701 -0.83366649e+00 -0.40287074e+00 0.25361707e+03 0.11156800e+01
- 1 -211 0 0 -0.11521610e+00 -0.36297380e+00 0.92352540e+02 0.13957000e+00
- 1 2212 0 0 -0.24390346e+00 0.34013635e+00 0.68499973e+02 0.93827000e+00
- 2 111 702 703 0.12295466e-01 -0.15785613e+00 0.53661285e+01 0.13498000e+00
- 1 22 0 0 -0.44651574e-01 -0.19934660e+00 0.66542498e+01 0.00000000e+00
- 1 22 0 0 -0.65254827e+00 -0.15663866e+00 0.58939765e+02 0.00000000e+00
- 1 22 0 0 -0.43340845e-01 -0.49258983e-01 0.19163232e+01 0.00000000e+00
- 1 22 0 0 -0.13239602e+00 -0.21130154e+00 0.19813231e+02 0.00000000e+00
- 1 22 0 0 -0.34982946e+00 -0.65439349e-01 0.42434033e+02 0.00000000e+00
- 1 22 0 0 -0.40369850e+00 -0.96182359e-01 0.69941261e+02 0.00000000e+00
- 1 -211 0 0 -0.16783837e+00 -0.41280124e+00 0.98434547e+01 0.13957000e+00
- 2 111 704 705 0.95920148e-01 0.22902519e+00 0.13794510e+02 0.13498000e+00
- 1 211 0 0 0.47596904e-01 -0.16440115e+00 0.13176230e+02 0.13957000e+00
- 2 111 706 707 0.14197298e+00 0.10717463e+00 0.12798944e+01 0.13498000e+00
- 1 -211 0 0 -0.61091938e+00 -0.13432193e+01 0.24141304e+02 0.13957000e+00
- 2 111 708 709 0.99919982e-01 -0.74667192e-01 0.23532824e+01 0.13498000e+00
- 2 -311 710 710 -0.28891571e+00 0.16655874e+00 0.26644481e+02 0.49767000e+00
- 2 111 711 712 0.53794217e-01 -0.11180938e+00 0.21883331e+01 0.13498000e+00
- 1 -2112 0 0 -0.95493674e+00 -0.14004916e+01 0.13191810e+02 0.93957000e+00
- 2 111 713 714 -0.29378308e+00 -0.42297058e+00 0.42523108e+01 0.13498000e+00
- 1 -211 0 0 0.15473245e+00 -0.51110050e+00 0.13684657e+01 0.13957000e+00
- 1 211 0 0 -0.10371929e+00 -0.33887714e-01 0.35089786e+00 0.13957000e+00
- 2 111 715 716 -0.25994417e+00 -0.22159890e+00 0.64609469e+00 0.13498000e+00
- 1 2212 0 0 -0.73226441e+00 0.80528919e+00 0.21325226e+01 0.93827000e+00
- 2 111 717 718 -0.17697486e+00 0.86859433e-01 0.10131367e+00 0.13498000e+00
- 1 -211 0 0 -0.33321630e+00 -0.12389032e+00 -0.86584425e-01 0.13957000e+00
- 2 111 719 720 -0.75184930e+00 0.98675106e-01 0.80854853e+00 0.13498000e+00
- 1 211 0 0 -0.32124655e+00 -0.24809855e+00 0.34211406e+00 0.13957000e+00
- 2 111 721 722 -0.14187674e+01 -0.18184368e+00 -0.26575866e+00 0.13498000e+00
- 1 -321 0 0 0.58393090e-01 0.84721155e+00 -0.74580894e+01 0.49360000e+00
- 2 111 723 724 0.27817180e+00 0.11456936e+00 -0.41937830e+01 0.13498000e+00
- 1 -2212 0 0 0.75106265e+00 0.25488200e+00 -0.13406682e+02 0.93827000e+00
- 1 211 0 0 0.11081107e+00 0.10399004e-01 -0.10769469e+01 0.13957000e+00
- 1 -211 0 0 0.17144412e+00 0.71234827e-01 -0.44583038e+00 0.13957000e+00
- 1 211 0 0 0.80410170e-01 -0.13402060e+00 -0.20449853e+01 0.13957000e+00
- 2 111 725 726 -0.12946815e+00 -0.61740199e-01 -0.51754123e+00 0.13498000e+00
- 1 22 0 0 0.63936759e-01 -0.11537508e+00 -0.24235841e+01 0.00000000e+00
- 1 22 0 0 0.15531326e+00 -0.72138725e-01 -0.16572099e+01 0.00000000e+00
- 1 22 0 0 -0.16178373e+00 0.15862519e+00 -0.37460974e+00 0.00000000e+00
- 1 22 0 0 -0.13462884e+00 0.36469273e+00 -0.55546335e+00 0.00000000e+00
- 1 211 0 0 0.38476650e+00 -0.72537041e-01 -0.66923906e+00 0.13957000e+00
- 2 111 727 728 -0.13661023e+00 -0.43654754e+00 -0.16964803e+01 0.13498000e+00
- 1 211 0 0 0.25002370e+00 0.39965552e-02 -0.14521849e+01 0.13957000e+00
- 1 -211 0 0 -0.16700986e+00 -0.73448936e-01 -0.26193448e+01 0.13957000e+00
- 2 111 729 730 -0.23077972e-01 0.19027631e+00 -0.14521042e+01 0.13498000e+00
- 2 311 731 731 -0.51202020e+00 0.21812728e+00 -0.37469392e+01 0.49767000e+00
- 1 211 0 0 0.14776562e+00 0.11645681e+00 -0.17521341e+01 0.13957000e+00
- 1 -321 0 0 0.63504698e-01 0.17180286e+00 -0.14409618e+01 0.49360000e+00
- 2 111 732 733 0.15132039e+00 -0.15143872e-01 -0.29180107e+01 0.13498000e+00
- 1 211 0 0 -0.34994109e+00 0.57034882e+00 -0.19227310e+01 0.13957000e+00
- 2 111 734 735 0.12660738e+00 0.57856288e-01 -0.41872242e+00 0.13498000e+00
- 1 211 0 0 -0.17896975e+00 -0.40444263e+00 -0.14151001e+02 0.13957000e+00
- 2 111 736 737 -0.18360579e+00 0.76234396e-01 -0.15789242e+01 0.13498000e+00
- 2 3122 738 739 -0.18985894e+00 -0.55580766e+00 -0.51005019e+02 0.11156800e+01
- 1 211 0 0 0.32117624e-01 0.14687677e+00 -0.11948408e+02 0.13957000e+00
- 2 311 740 740 -0.99258183e-01 0.16111885e+00 -0.55758822e+01 0.49767000e+00
- 1 211 0 0 0.28954217e+00 -0.16004878e+00 -0.40601860e+01 0.13957000e+00
- 1 -2212 0 0 0.44194911e+00 -0.20815311e-01 -0.59066004e+02 0.93827000e+00
- 1 -211 0 0 -0.66308392e-01 -0.31435306e+00 -0.24356323e+02 0.13957000e+00
- 1 22 0 0 -0.23969200e+01 0.27332100e+01 0.31119464e+03 0.00000000e+00
- 1 22 0 0 -0.90126172e+00 0.90823994e+00 0.11075378e+03 0.00000000e+00
- 1 22 0 0 -0.57068142e+00 0.48707600e+00 0.61321481e+02 0.00000000e+00
- 1 22 0 0 -0.20386820e+01 0.16604590e+01 0.19575931e+03 0.00000000e+00
- 1 22 0 0 -0.32791434e+00 0.25039234e+00 0.48057871e+02 0.00000000e+00
- 1 22 0 0 -0.34216310e+00 0.12016785e+00 0.49270495e+02 0.00000000e+00
- 1 22 0 0 -0.13516033e+00 -0.37605970e-01 0.15453781e+02 0.00000000e+00
- 1 22 0 0 -0.20924018e+00 -0.12781409e+00 0.13940943e+02 0.00000000e+00
- 1 22 0 0 -0.11109380e+00 0.28859684e+00 0.64149225e+01 0.00000000e+00
- 1 22 0 0 -0.24900877e+00 0.25914163e+00 0.81354521e+01 0.00000000e+00
- 1 22 0 0 -0.41580326e+00 0.21290042e-01 0.73671209e+01 0.00000000e+00
- 1 22 0 0 -0.32698240e+00 -0.79606821e-01 0.73875209e+01 0.00000000e+00
- 2 310 741 742 -0.43145290e+00 0.21425919e+00 0.10027249e+02 0.49767000e+00
- 2 111 743 744 -0.26171778e+00 0.12520094e+01 0.96070837e+01 0.13498000e+00
- 2 111 745 746 -0.19083145e+00 0.50715995e+00 0.65261170e+01 0.13498000e+00
- 1 22 0 0 0.10608168e-01 0.33108535e-01 0.18557848e+00 0.00000000e+00
- 1 22 0 0 0.43154469e-01 -0.13215419e+00 0.10934626e+01 0.00000000e+00
- 1 22 0 0 0.20165402e-02 -0.10771590e-01 0.18629297e-01 0.00000000e+00
- 1 22 0 0 -0.22024427e-01 0.13449204e-01 0.29884181e+01 0.00000000e+00
- 1 22 0 0 -0.87055449e-02 0.14812971e-01 0.11577757e+00 0.00000000e+00
- 1 22 0 0 0.38940003e+00 0.27620616e+00 0.59821059e+01 0.00000000e+00
- 1 -211 0 0 -0.12564567e+00 -0.87275384e-01 0.11472245e+02 0.13957000e+00
- 1 211 0 0 -0.71347406e-01 0.16121598e+00 0.50004384e+02 0.13957000e+00
- 1 22 0 0 0.12223826e-01 0.45380358e+00 0.98432511e+02 0.00000000e+00
- 1 22 0 0 -0.11080186e+00 0.37951663e+00 0.79558546e+02 0.00000000e+00
- 1 22 0 0 0.28340276e+00 -0.61729250e+00 0.95721057e+02 0.00000000e+00
- 1 22 0 0 0.38985383e-01 -0.22049181e+00 0.24975375e+02 0.00000000e+00
- 1 22 0 0 -0.20858018e+00 -0.18421725e+00 0.17075518e+03 0.00000000e+00
- 1 22 0 0 -0.39479597e-01 -0.43645958e-02 0.71754812e+02 0.00000000e+00
- 1 22 0 0 -0.32614898e+00 0.41914865e+00 -0.14138034e+00 0.00000000e+00
- 1 22 0 0 -0.31948333e+01 0.42929698e+01 -0.18562474e+01 0.00000000e+00
- 1 22 0 0 -0.52346516e+00 0.10489794e+01 -0.31775193e+00 0.00000000e+00
- 1 22 0 0 -0.76170742e-01 0.18015111e+00 -0.11122419e+00 0.00000000e+00
- 2 310 747 748 -0.19102160e+01 0.28580214e+01 -0.12522056e+01 0.49767000e+00
- 1 22 0 0 -0.19699618e-01 0.20355916e-02 0.70331677e-02 0.00000000e+00
- 1 22 0 0 -0.31410026e+00 0.61018149e+00 -0.20843290e+00 0.00000000e+00
- 1 22 0 0 -0.40876530e-01 0.16385422e-01 -0.21438226e-01 0.00000000e+00
- 1 22 0 0 -0.19486622e-01 -0.97225345e-01 0.86758964e-01 0.00000000e+00
- 1 22 0 0 -0.81314669e-01 0.20806795e+00 -0.48307204e-01 0.00000000e+00
- 1 22 0 0 0.32060932e-01 0.88190463e-01 0.37082363e-01 0.00000000e+00
- 1 22 0 0 0.11145438e-01 -0.32937745e-02 -0.29936545e-02 0.00000000e+00
- 1 22 0 0 0.23121404e+00 0.47536721e+00 0.49033556e+00 0.00000000e+00
- 1 22 0 0 -0.18000835e-01 0.19988429e+00 0.31677685e+00 0.00000000e+00
- 1 22 0 0 0.54702845e-01 0.10000786e+00 0.68961460e-01 0.00000000e+00
- 1 211 0 0 -0.38846434e+00 0.10108868e+01 -0.54722051e+00 0.13957000e+00
- 1 -211 0 0 -0.91602099e-01 0.28401565e+00 -0.75476783e+00 0.13957000e+00
- 1 22 0 0 -0.15271285e+00 0.26466395e+00 -0.63770819e+00 0.00000000e+00
- 1 22 0 0 -0.75932301e-01 0.40425932e-01 -0.84339066e-01 0.00000000e+00
- 1 22 0 0 -0.29652584e+00 0.46584142e+00 -0.13087330e+01 0.00000000e+00
- 1 22 0 0 0.37833026e-03 0.93232691e-01 -0.27117413e+00 0.00000000e+00
- 1 22 0 0 -0.10885085e+00 0.69591362e-01 -0.45984387e+00 0.00000000e+00
- 1 22 0 0 0.38261148e-01 0.57810522e-01 -0.26015466e+00 0.00000000e+00
- 1 130 0 0 -0.44789118e+00 0.15410544e+01 -0.22725751e+01 0.49767000e+00
- 1 130 0 0 -0.90272454e+00 -0.19332102e+01 -0.18814956e+02 0.49767000e+00
- 1 22 0 0 -0.24880383e-01 -0.20630176e-01 -0.20212137e+00 0.00000000e+00
- 1 22 0 0 -0.28091723e-01 -0.42553566e+00 -0.60399055e+01 0.00000000e+00
- 1 22 0 0 -0.29789949e-01 0.32090592e-01 -0.18750374e+01 0.00000000e+00
- 1 22 0 0 -0.30822642e+00 -0.16000999e-01 -0.60868214e+01 0.00000000e+00
- 1 22 0 0 -0.17919715e+00 -0.25313297e+00 -0.28211424e+01 0.00000000e+00
- 1 22 0 0 -0.48316863e-01 -0.49729136e-01 -0.25813214e+00 0.00000000e+00
- 1 22 0 0 -0.27175103e+00 -0.39596299e+00 -0.56038048e+01 0.00000000e+00
- 1 22 0 0 -0.34457971e+00 -0.29780429e+00 -0.46482093e+01 0.00000000e+00
- 1 22 0 0 -0.58928353e-01 -0.11682506e+00 -0.61586498e+00 0.00000000e+00
- 1 22 0 0 -0.10700077e+00 -0.98109336e-01 -0.16660728e+01 0.00000000e+00
- 1 22 0 0 -0.60924653e+00 0.75433971e+00 -0.14109123e+02 0.00000000e+00
- 1 22 0 0 -0.27390239e+00 0.22515138e+00 -0.46276603e+01 0.00000000e+00
- 1 22 0 0 -0.36383703e-01 -0.73884465e-02 -0.13944774e+00 0.00000000e+00
- 1 22 0 0 -0.26953176e+00 0.89934813e-01 -0.34058884e+01 0.00000000e+00
- 1 22 0 0 -0.15775603e+00 0.68122396e+00 -0.74737517e+01 0.00000000e+00
- 1 22 0 0 0.21101331e-01 0.75263028e-01 -0.62095290e+00 0.00000000e+00
- 1 130 0 0 0.23813397e+01 0.63580711e+00 -0.63781247e+02 0.49767000e+00
- 1 22 0 0 0.22414125e+00 0.10208724e+00 -0.24616190e+01 0.00000000e+00
- 1 22 0 0 0.42171383e-01 0.66245015e-02 -0.14377507e+01 0.00000000e+00
- 1 130 0 0 0.90741400e+00 0.58362076e+00 -0.40391553e+02 0.49767000e+00
- 1 130 0 0 0.25677779e+00 0.35033488e+00 -0.51344134e+02 0.49767000e+00
- 1 22 0 0 -0.13098693e+00 0.75725617e+00 -0.51151178e+02 0.00000000e+00
- 1 22 0 0 -0.35384443e-01 0.79489200e-01 -0.91370768e+01 0.00000000e+00
- 1 22 0 0 0.22254940e-02 0.29070785e-01 -0.25466556e+01 0.00000000e+00
- 1 22 0 0 0.14511142e+00 0.45847964e-01 -0.61639257e+02 0.00000000e+00
- 1 22 0 0 0.33310009e-01 0.58540774e-01 -0.26475383e+00 0.00000000e+00
- 1 22 0 0 -0.25597046e+00 -0.95820387e-02 -0.16627612e+02 0.00000000e+00
- 1 22 0 0 -0.52584872e-01 -0.46237397e-01 -0.56127888e+00 0.00000000e+00
- 1 22 0 0 -0.32183148e+00 -0.23246970e+00 -0.14320694e+01 0.00000000e+00
- 2 310 749 750 -0.12904581e+01 0.10453422e+01 -0.16452055e+02 0.49767000e+00
- 1 22 0 0 -0.23082205e+00 -0.89367475e-01 -0.20154913e+01 0.00000000e+00
- 1 22 0 0 0.91639617e-02 -0.74205311e-02 -0.17265743e-01 0.00000000e+00
- 1 -2212 0 0 -0.11636707e+00 0.34885931e+00 -0.38026736e+01 0.93827000e+00
- 1 211 0 0 -0.13353951e+00 0.34295173e-01 -0.86457818e+00 0.13957000e+00
- 1 130 0 0 -0.82487794e+00 0.38105102e+00 -0.64512842e+01 0.49767000e+00
- 2 310 751 752 0.17677495e+00 -0.72769796e-01 -0.44940188e+01 0.49767000e+00
- 1 22 0 0 0.49178609e-01 -0.28500647e+00 -0.95283334e+01 0.00000000e+00
- 1 22 0 0 0.11705067e-01 -0.89398325e-01 -0.13170293e+01 0.00000000e+00
- 1 22 0 0 -0.16251789e-01 -0.31375149e-01 -0.21966701e+00 0.00000000e+00
- 1 22 0 0 0.13194884e-01 -0.19306765e-02 -0.31694918e+01 0.00000000e+00
- 1 22 0 0 -0.32260250e-01 0.54608483e-01 -0.15098239e+02 0.00000000e+00
- 1 22 0 0 -0.18251031e+00 0.25013891e+00 -0.29228113e+02 0.00000000e+00
- 1 22 0 0 -0.17086490e-01 0.11940512e+00 -0.74158262e+02 0.00000000e+00
- 1 22 0 0 -0.24191795e-01 0.98256866e-01 -0.19703357e+03 0.00000000e+00
- 1 22 0 0 -0.40932159e+00 -0.38024373e+00 -0.16266598e+01 0.00000000e+00
- 1 22 0 0 -0.44958305e+00 -0.28341808e+00 -0.12992860e+01 0.00000000e+00
- 1 22 0 0 -0.10257767e+01 -0.83430661e+00 -0.51282619e+01 0.00000000e+00
- 1 22 0 0 -0.12947581e+01 -0.86449735e+00 -0.60418484e+01 0.00000000e+00
- 2 310 753 754 -0.93505609e+00 -0.23387303e+00 -0.15804641e+01 0.49767000e+00
- 1 22 0 0 -0.81348307e-01 -0.14435230e+00 -0.22520136e+00 0.00000000e+00
- 1 22 0 0 -0.99696981e+00 -0.15386774e+01 -0.18235495e+01 0.00000000e+00
- 1 22 0 0 -0.71483086e+00 -0.73503841e+00 0.18529504e+01 0.00000000e+00
- 1 22 0 0 -0.69829642e-03 -0.27406708e-01 0.72093966e-01 0.00000000e+00
- 1 22 0 0 -0.35614508e-01 -0.19156642e+00 0.55870982e-01 0.00000000e+00
- 1 22 0 0 -0.21473477e+00 -0.62921174e+00 0.44481852e+00 0.00000000e+00
- 1 211 0 0 0.51206732e+00 -0.10046561e+01 0.28976600e+01 0.13957000e+00
- 1 -211 0 0 -0.25431102e+00 -0.11215791e+01 0.31961706e+01 0.13957000e+00
- 1 22 0 0 0.25617061e-01 -0.83567793e-02 -0.21124516e-01 0.00000000e+00
- 1 22 0 0 0.19439457e+00 0.95289220e-02 0.20502034e+00 0.00000000e+00
- 1 22 0 0 -0.15067703e-02 0.32166631e-01 -0.34237501e-01 0.00000000e+00
- 1 22 0 0 0.24051344e-01 0.11478231e+00 0.13123841e+00 0.00000000e+00
- 1 22 0 0 -0.18831968e-01 -0.18525535e-01 0.39999936e-02 0.00000000e+00
- 1 22 0 0 -0.89700847e-01 0.60373956e-01 0.40962317e+00 0.00000000e+00
- 1 22 0 0 -0.57275808e-02 0.19491908e-01 -0.64974429e-01 0.00000000e+00
- 1 22 0 0 -0.18934251e-01 0.12113630e+00 0.42317840e-01 0.00000000e+00
- 1 22 0 0 -0.18174162e+01 -0.34697034e+00 -0.35559540e+03 0.00000000e+00
- 1 22 0 0 -0.22312894e+00 -0.33201896e-01 -0.53194258e+02 0.00000000e+00
- 1 22 0 0 -0.10327787e+00 0.50305144e-02 -0.12179484e+02 0.00000000e+00
- 1 22 0 0 0.42204446e-01 -0.15999023e-01 -0.55276314e+01 0.00000000e+00
- 1 22 0 0 0.54875165e-01 -0.34708258e-01 -0.55748768e+01 0.00000000e+00
- 1 22 0 0 0.28393064e+00 -0.54387639e+00 -0.34283122e+02 0.00000000e+00
- 1 22 0 0 -0.14102127e+00 -0.25457172e+00 -0.27147533e+02 0.00000000e+00
- 1 22 0 0 0.96240190e-02 0.31580805e-02 -0.21023013e+00 0.00000000e+00
- 1 22 0 0 0.67462532e+00 -0.95907400e-01 -0.14532430e+02 0.00000000e+00
- 1 22 0 0 0.54607119e+00 -0.80764940e-01 -0.14666373e+02 0.00000000e+00
- 1 22 0 0 -0.63689042e-01 -0.87922528e-02 -0.60249334e+00 0.00000000e+00
- 1 22 0 0 0.50249180e-01 0.65506300e-01 -0.85379744e+00 0.00000000e+00
- 1 22 0 0 0.57718512e+00 0.97378925e-01 0.10698401e+01 0.00000000e+00
- 1 22 0 0 0.13791365e+00 0.34231623e-01 0.42771774e+00 0.00000000e+00
- 1 22 0 0 -0.20083872e-01 0.98427973e-02 0.12629483e+00 0.00000000e+00
- 1 22 0 0 0.61404334e-01 0.13971114e+00 0.45405126e+01 0.00000000e+00
- 1 -2212 0 0 -0.63320496e+00 -0.24626909e+00 0.19844109e+03 0.93827000e+00
- 1 211 0 0 -0.20046153e+00 -0.15660165e+00 0.55175987e+02 0.13957000e+00
- 1 22 0 0 -0.11391799e-02 0.17031373e-01 0.14558112e+01 0.00000000e+00
- 1 22 0 0 0.13434646e-01 -0.17488750e+00 0.39103174e+01 0.00000000e+00
- 1 22 0 0 0.13462017e-01 0.32142693e-01 0.56212070e+01 0.00000000e+00
- 1 22 0 0 0.82458131e-01 0.19688250e+00 0.81733030e+01 0.00000000e+00
- 1 22 0 0 -0.67212507e-03 0.11433366e-01 0.52119358e+00 0.00000000e+00
- 1 22 0 0 0.14264511e+00 0.95741261e-01 0.75870085e+00 0.00000000e+00
- 1 22 0 0 0.10528478e+00 -0.66277248e-01 0.10822717e+01 0.00000000e+00
- 1 22 0 0 -0.53647993e-02 -0.83899437e-02 0.12710107e+01 0.00000000e+00
- 1 130 0 0 -0.28891571e+00 0.16655874e+00 0.26644481e+02 0.49767000e+00
- 1 22 0 0 0.99026174e-01 -0.86614118e-01 0.15788737e+01 0.00000000e+00
- 1 22 0 0 -0.45231957e-01 -0.25195262e-01 0.60945943e+00 0.00000000e+00
- 1 22 0 0 -0.13510402e+00 -0.29030465e+00 0.22783368e+01 0.00000000e+00
- 1 22 0 0 -0.15867906e+00 -0.13266594e+00 0.19739740e+01 0.00000000e+00
- 1 22 0 0 -0.14253630e+00 -0.16213349e+00 0.51030990e+00 0.00000000e+00
- 1 22 0 0 -0.11740787e+00 -0.59465407e-01 0.13578479e+00 0.00000000e+00
- 1 22 0 0 -0.51788001e-01 0.75624599e-01 0.97428692e-01 0.00000000e+00
- 1 22 0 0 -0.12518686e+00 0.11234833e-01 0.38849731e-02 0.00000000e+00
- 1 22 0 0 -0.66684697e+00 0.13005095e+00 0.70507813e+00 0.00000000e+00
- 1 22 0 0 -0.85002327e-01 -0.31375841e-01 0.10347039e+00 0.00000000e+00
- 1 22 0 0 -0.89360117e+00 -0.13875032e+00 -0.22920037e+00 0.00000000e+00
- 1 22 0 0 -0.52516623e+00 -0.43093358e-01 -0.36558286e-01 0.00000000e+00
- 1 22 0 0 0.19499499e+00 0.87655979e-01 -0.20406124e+01 0.00000000e+00
- 1 22 0 0 0.83176812e-01 0.26913377e-01 -0.21531706e+01 0.00000000e+00
- 1 22 0 0 -0.91631486e-01 -0.93751914e-01 -0.25661460e+00 0.00000000e+00
- 1 22 0 0 -0.37836669e-01 0.32011715e-01 -0.26092664e+00 0.00000000e+00
- 1 22 0 0 -0.81115998e-01 -0.96707377e-01 -0.33794078e+00 0.00000000e+00
- 1 22 0 0 -0.55494236e-01 -0.33984016e+00 -0.13585395e+01 0.00000000e+00
- 1 22 0 0 0.15602804e-01 -0.80076323e-03 -0.18983612e-01 0.00000000e+00
- 1 22 0 0 -0.38680776e-01 0.19107707e+00 -0.14331206e+01 0.00000000e+00
- 1 130 0 0 -0.51202020e+00 0.21812728e+00 -0.37469392e+01 0.49767000e+00
- 1 22 0 0 0.11479516e+00 -0.70972641e-01 -0.17689858e+01 0.00000000e+00
- 1 22 0 0 0.36525239e-01 0.55828769e-01 -0.11490248e+01 0.00000000e+00
- 1 22 0 0 0.81202672e-01 -0.79070705e-02 -0.83191703e-01 0.00000000e+00
- 1 22 0 0 0.45404710e-01 0.65763359e-01 -0.33553072e+00 0.00000000e+00
- 1 22 0 0 -0.91389354e-01 -0.31940019e-01 -0.72405196e+00 0.00000000e+00
- 1 22 0 0 -0.92216434e-01 0.10817441e+00 -0.85487223e+00 0.00000000e+00
- 1 2112 0 0 -0.19223686e+00 -0.38517555e+00 -0.39461947e+02 0.93957000e+00
- 2 111 755 756 0.23779152e-02 -0.17063211e+00 -0.11543072e+02 0.13498000e+00
- 1 130 0 0 -0.99258183e-01 0.16111885e+00 -0.55758822e+01 0.49767000e+00
- 1 211 0 0 0.23797077e-01 0.15687390e+00 0.34007945e+01 0.13957000e+00
- 1 -211 0 0 -0.45524997e+00 0.57385299e-01 0.66264543e+01 0.13957000e+00
- 1 22 0 0 -0.24777337e+00 0.91740856e+00 0.72681595e+01 0.00000000e+00
- 1 22 0 0 -0.13944412e-01 0.33460086e+00 0.23389242e+01 0.00000000e+00
- 1 22 0 0 -0.18925206e+00 0.36852368e+00 0.44586271e+01 0.00000000e+00
- 1 22 0 0 -0.15793925e-02 0.13863626e+00 0.20674899e+01 0.00000000e+00
- 1 211 0 0 -0.72780501e+00 0.85236489e+00 -0.26885391e+00 0.13957000e+00
- 1 -211 0 0 -0.11824110e+01 0.20056565e+01 -0.98335169e+00 0.13957000e+00
- 1 -211 0 0 -0.10033374e+01 0.66463773e+00 -0.10285646e+02 0.13957000e+00
- 1 211 0 0 -0.28712063e+00 0.38070452e+00 -0.61664091e+01 0.13957000e+00
- 1 -211 0 0 0.26710703e+00 0.50616073e-01 -0.32570789e+01 0.13957000e+00
- 1 211 0 0 -0.90332079e-01 -0.12338587e+00 -0.12369400e+01 0.13957000e+00
- 2 111 757 758 -0.44122446e+00 -0.28171923e+00 -0.10326205e+01 0.13498000e+00
- 2 111 759 760 -0.49383163e+00 0.47846208e-01 -0.54784353e+00 0.13498000e+00
- 1 22 0 0 0.56991475e-01 -0.30174071e-01 -0.27262175e+01 0.00000000e+00
- 1 22 0 0 -0.54613560e-01 -0.14045804e+00 -0.88168542e+01 0.00000000e+00
- 1 22 0 0 -0.35449291e+00 -0.25854402e+00 -0.74859118e+00 0.00000000e+00
- 1 22 0 0 -0.86731555e-01 -0.23175211e-01 -0.28402936e+00 0.00000000e+00
- 1 22 0 0 -0.35229705e+00 -0.28074102e-01 -0.38508718e+00 0.00000000e+00
- 1 22 0 0 -0.14153458e+00 0.75920310e-01 -0.16275636e+00 0.00000000e+00
- 328
- 2 25 2 3 -0.10445059e+02 0.11645111e+02 0.27620939e+03 0.12499832e+03
- 2 23 4 6 -0.31676462e+02 -0.18603586e+01 0.20574233e+03 0.90194734e+02
- 2 23 7 10 0.21231403e+02 0.13505470e+02 0.70467057e+02 0.16883234e+02
- 1 13 0 0 -0.52797339e+02 0.27304174e+02 0.12177487e+03 0.10566000e+00
- 1 -13 0 0 0.21118736e+02 -0.29170169e+02 0.83947145e+02 0.10566000e+00
- 1 22 0 0 0.21408377e-02 0.56357816e-02 0.20311651e-01 0.00000000e+00
- 1 11 0 0 0.38903023e+01 0.70267109e+01 0.73661495e+01 0.51000000e-03
- 1 22 0 0 0.23361753e+01 0.17024448e+01 0.82718488e+01 0.00000000e+00
- 1 -11 0 0 0.14926791e+02 0.47458789e+01 0.54527011e+02 0.51000000e-03
- 1 22 0 0 0.78134292e-01 0.30435074e-01 0.30204736e+00 0.00000000e+00
- 2 1 39 39 -0.29319358e+01 0.19420489e+01 -0.89497214e+03 0.33000000e+00
- 2 2101 39 39 -0.14628582e+01 -0.12058615e+01 -0.36633089e+04 0.57933000e+00
- 2 -1 46 46 0.35397334e+01 -0.26863072e+01 -0.13333591e+04 0.33000000e+00
- 2 21 46 46 -0.13490375e+01 -0.56032311e+00 -0.60027010e+03 0.00000000e+00
- 2 21 46 46 0.24195328e+01 0.17091848e+00 -0.50583216e+01 0.00000000e+00
- 2 21 46 46 0.85398144e+01 0.36572105e+01 -0.30415917e+02 0.00000000e+00
- 2 21 46 46 0.50850484e+00 -0.20409377e+00 -0.18767515e+01 0.00000000e+00
- 2 21 46 46 -0.39296511e+00 -0.22887030e+00 -0.51477639e-01 0.00000000e+00
- 2 21 46 46 -0.41327264e+00 -0.24551084e+00 0.37799772e-01 0.00000000e+00
- 2 21 46 46 -0.55025044e+00 0.13213284e+01 0.12459169e+02 0.00000000e+00
- 2 21 46 46 0.19883572e+01 0.11475578e+00 0.53644103e+01 0.00000000e+00
- 2 21 46 46 0.38074733e+01 0.29957775e+01 0.27883512e+01 0.00000000e+00
- 2 21 46 46 0.58946725e+00 0.13182151e+01 0.29834779e+00 0.00000000e+00
- 2 21 46 46 0.14132214e+01 0.18901206e+01 0.33820971e+01 0.00000000e+00
- 2 21 46 46 -0.15399051e+00 -0.75327097e+00 0.11087561e+02 0.00000000e+00
- 2 21 46 46 0.19067376e+01 -0.30507079e+01 0.26926997e+02 0.00000000e+00
- 2 21 46 46 -0.33946451e+00 0.18150155e+00 0.41564491e+01 0.00000000e+00
- 2 2 46 46 0.41451250e+00 -0.85433011e+00 0.10904745e+04 0.33000000e+00
- 2 2101 87 87 -0.78681649e+00 -0.15185759e+01 0.46463298e+04 0.57933000e+00
- 2 21 87 87 -0.47882558e+00 0.34872048e+00 0.61037158e+03 0.00000000e+00
- 2 21 87 87 0.51714303e+00 0.64665824e+00 0.30397484e+02 0.00000000e+00
- 2 21 87 87 -0.65875358e+00 -0.55773918e+00 0.23371293e+03 0.00000000e+00
- 2 21 87 87 0.55025044e+00 -0.13213284e+01 0.15952143e+02 0.00000000e+00
- 2 21 87 87 -0.74268926e+00 -0.50627740e+00 0.18091396e+01 0.00000000e+00
- 2 21 87 87 0.12231711e-01 -0.11519486e+01 0.23262638e+00 0.00000000e+00
- 2 21 87 87 -0.24595821e+01 -0.36607126e+01 -0.84570433e+00 0.00000000e+00
- 2 21 87 87 -0.23072398e+01 -0.65681584e+01 0.61542541e+01 0.00000000e+00
- 2 2 87 87 -0.73423942e+00 -0.11583503e+01 -0.44798634e+03 0.33000000e+00
- 2 92 40 45 -0.43947940e+01 0.73618736e+00 -0.45582810e+04 0.69699219e+01
- 2 -213 121 122 -0.74949310e+00 0.45501020e+00 -0.46921647e+03 0.80053096e+00
- 1 211 0 0 -0.14043398e+01 0.72396120e+00 -0.39382469e+03 0.13957000e+00
- 2 113 123 124 -0.65387801e+00 0.18894401e+00 -0.50992099e+03 0.73075039e+00
- 1 -211 0 0 -0.42380550e+00 -0.43715140e+00 -0.22010190e+03 0.13957000e+00
- 1 2212 0 0 -0.72828337e+00 0.23454450e+00 -0.10656292e+04 0.93827000e+00
- 2 113 125 126 -0.43499425e+00 -0.42912114e+00 -0.18995878e+04 0.78064254e+00
- 2 92 47 86 0.21928374e+02 0.30664136e+01 -0.81405599e+03 0.30287577e+04
- 1 211 0 0 0.47410854e+00 -0.70199297e+00 -0.28406926e+03 0.13957000e+00
- 2 -213 127 128 0.72135029e+00 -0.60469890e+00 -0.40583818e+03 0.70677351e+00
- 1 211 0 0 0.89307640e+00 -0.10246256e+01 -0.32635520e+03 0.13957000e+00
- 2 331 129 131 0.69854761e+00 0.22253925e+00 -0.37869784e+03 0.95775328e+00
- 2 223 132 134 0.14632601e-01 -0.12523138e+01 -0.20707924e+03 0.78204960e+00
- 2 223 135 137 -0.51770786e+00 0.62887950e+00 -0.24103985e+03 0.78600761e+00
- 2 331 138 140 0.10567498e+00 -0.38310354e+00 -0.51110831e+02 0.95761517e+00
- 1 -2212 0 0 0.10963857e+00 0.15483411e+00 -0.12857908e+02 0.93827000e+00
- 1 2212 0 0 -0.45638579e-01 0.10779017e+00 -0.22729308e+02 0.93827000e+00
- 2 -213 141 142 0.16464842e+01 -0.72414887e+00 -0.79921697e+01 0.70486676e+00
- 2 213 143 144 0.20149297e+01 0.10396324e+01 -0.59911114e+01 0.97879323e+00
- 1 -211 0 0 0.16858298e+01 0.10525312e+01 -0.67332153e+01 0.13957000e+00
- 1 211 0 0 0.53919998e+00 -0.36600829e+00 -0.98268151e+00 0.13957000e+00
- 2 111 145 146 0.11857522e+00 -0.91368070e-01 -0.19145706e+01 0.13498000e+00
- 2 331 147 149 0.27741297e+01 0.13627060e+01 -0.93922061e+01 0.95783647e+00
- 2 -213 150 151 0.25209674e+01 0.80963877e+00 -0.67975162e+01 0.80047448e+00
- 2 213 152 153 -0.30000944e+00 0.26291611e+00 0.13806834e+00 0.73143642e+00
- 2 -213 154 155 -0.52156598e+00 -0.26425094e+00 -0.29613108e+00 0.74981072e+00
- 2 213 156 157 -0.30251800e+00 -0.30983409e-01 0.86219512e+00 0.83557483e+00
- 1 -211 0 0 0.55048247e+00 0.76861525e+00 0.32600444e+00 0.13957000e+00
- 2 223 158 160 -0.11351922e+00 -0.92036837e+00 0.16923201e+01 0.78122313e+00
- 2 111 161 162 0.25838116e+00 0.50779709e+00 0.35946156e+01 0.13498000e+00
- 2 113 163 164 -0.17604823e+00 0.61556782e+00 0.43844599e+01 0.59372601e+00
- 1 -2112 0 0 0.35273740e+00 0.37756739e+00 0.14833119e+01 0.93957000e+00
- 2 -213 165 166 0.67015135e+00 0.40060271e+00 0.18719541e+01 0.73944782e+00
- 2 2224 167 168 0.89948473e+00 0.48894835e+00 0.22203945e+01 0.12078278e+01
- 2 331 169 170 0.73674906e+00 0.10534510e+01 0.11199701e+01 0.95802851e+00
- 1 -211 0 0 0.14082460e+01 0.10639749e+01 0.19208692e+01 0.13957000e+00
- 2 223 171 173 0.24239638e+01 0.20646451e+01 0.15231467e+01 0.78287672e+00
- 2 -3122 174 175 0.40826553e+00 -0.12224214e+00 0.58846689e+01 0.11156800e+01
- 2 -323 176 177 0.33778679e+00 -0.56182945e+00 0.11905734e+02 0.89964594e+00
- 2 2224 178 179 0.78092432e+00 -0.32646540e+00 0.49250540e+01 0.12204890e+01
- 1 -211 0 0 0.18524407e+00 -0.13440748e+01 0.22089018e+02 0.13957000e+00
- 1 211 0 0 -0.18940847e+00 0.26631466e+00 0.23863960e+01 0.13957000e+00
- 2 223 180 182 0.60914636e+00 -0.41049915e+00 0.29632745e+02 0.78188352e+00
- 1 -2212 0 0 0.66715031e-01 -0.73799497e+00 0.11372651e+03 0.93827000e+00
- 1 2212 0 0 -0.24119195e+00 0.21918374e+00 0.11162507e+03 0.93827000e+00
- 1 -211 0 0 -0.50423657e-02 0.10385287e+00 0.81641499e+01 0.13957000e+00
- 2 111 183 184 0.32193894e+00 -0.56997939e+00 0.27587295e+03 0.13498000e+00
- 1 211 0 0 0.13661944e-01 -0.68626743e-01 0.54847163e+03 0.13957000e+00
- 2 92 88 120 -0.70885210e+01 -0.15447712e+02 0.50961279e+04 0.31703139e+04
- 1 2212 0 0 -0.39819488e+00 -0.37726774e+00 0.22286145e+04 0.93827000e+00
- 2 -213 185 186 -0.27797512e+00 -0.39770147e+00 0.22400571e+04 0.71725084e+00
- 1 211 0 0 -0.44712067e-01 -0.78731587e-01 0.36409989e+01 0.13957000e+00
- 1 -211 0 0 0.12512214e+00 -0.41510827e+00 0.29359759e+03 0.13957000e+00
- 1 211 0 0 -0.30570278e+00 0.79932060e-01 0.88191554e+02 0.13957000e+00
- 2 223 187 189 0.60717980e-01 0.17014704e+00 0.31935998e+03 0.78111863e+00
- 2 113 190 191 -0.63195740e+00 0.12558186e-01 0.20683802e+03 0.78205736e+00
- 1 -211 0 0 0.17298738e+00 0.20113915e+00 0.83611861e+01 0.13957000e+00
- 2 223 192 194 0.26317399e+00 -0.35053894e+00 0.10846566e+03 0.78014446e+00
- 1 211 0 0 -0.30717581e+00 0.74484740e-01 0.89438878e+01 0.13957000e+00
- 2 -213 195 196 0.42912320e+00 -0.68380280e+00 0.95363434e+01 0.69695899e+00
- 1 211 0 0 -0.90850335e-01 -0.15640856e+00 0.64171372e+00 0.13957000e+00
- 2 -323 197 198 -0.48226969e+00 -0.94935804e-01 0.11135319e+02 0.87474007e+00
- 2 313 199 200 0.47862197e+00 -0.58882962e+00 0.81711879e+01 0.89327717e+00
- 2 113 201 202 -0.31443395e+00 -0.62318344e+00 0.14979580e+01 0.86473795e+00
- 1 211 0 0 -0.35520115e+00 -0.18622450e+00 0.69004010e+00 0.13957000e+00
- 2 221 203 204 -0.22832335e+00 -0.30294084e+00 0.24190256e+00 0.54745000e+00
- 1 -211 0 0 -0.12083164e-01 0.33897826e-01 -0.74036615e-01 0.13957000e+00
- 2 111 205 206 0.44432916e-02 -0.38417612e+00 0.67222829e+00 0.13498000e+00
- 2 213 207 208 -0.14246760e+01 -0.27682890e+01 -0.55063111e+00 0.86310541e+00
- 1 -211 0 0 -0.12129106e+01 -0.21662858e+01 0.13665029e+01 0.13957000e+00
- 2 223 209 211 -0.57531543e+00 -0.19257293e+01 0.18699391e+01 0.79041479e+00
- 2 213 212 213 -0.25942118e+00 -0.11086983e+01 0.75321999e+00 0.71677678e+00
- 2 221 214 216 -0.34976719e+00 -0.89388066e+00 0.23148960e+00 0.54745000e+00
- 2 -323 217 218 -0.27055722e+00 -0.61698640e+00 -0.90460689e-01 0.88155755e+00
- 2 313 219 220 0.55562284e-01 -0.54522393e+00 0.26234428e+00 0.88192305e+00
- 2 223 221 223 0.66028971e-01 0.32609497e+00 0.39474817e+00 0.74139058e+00
- 2 213 224 225 0.17955118e+00 -0.21248593e+00 -0.22137477e+01 0.74244088e+00
- 1 -211 0 0 -0.35042009e+00 -0.35872595e+00 -0.26465479e+01 0.13957000e+00
- 2 -311 226 226 0.19802759e-01 -0.35323955e+00 -0.93554536e+01 0.49767000e+00
- 2 313 227 228 -0.20172681e+00 0.32351797e+00 -0.13903968e+02 0.90214634e+00
- 2 111 229 230 -0.93168817e+00 -0.41536822e+00 -0.25137753e+03 0.13498000e+00
- 1 211 0 0 0.81706245e-01 -0.66472126e+00 -0.16719519e+03 0.13957000e+00
- 1 -211 0 0 -0.51432530e-01 0.27195731e+00 -0.26518902e+03 0.13957000e+00
- 2 111 231 232 -0.69806057e+00 0.18305289e+00 -0.20402745e+03 0.13498000e+00
- 1 -211 0 0 -0.49281448e+00 0.35259446e-02 -0.45188911e+03 0.13957000e+00
- 1 211 0 0 -0.16106353e+00 0.18541807e+00 -0.58031886e+02 0.13957000e+00
- 1 211 0 0 -0.38896063e+00 -0.17226048e+00 -0.16795553e+04 0.13957000e+00
- 1 -211 0 0 -0.46033624e-01 -0.25686066e+00 -0.22003251e+03 0.13957000e+00
- 1 -211 0 0 0.11158674e+00 -0.58584295e-01 -0.21804895e+02 0.13957000e+00
- 2 111 233 234 0.60976355e+00 -0.54611460e+00 -0.38403329e+03 0.13498000e+00
- 1 -211 0 0 0.11061677e+00 -0.92166633e-01 -0.91152828e+02 0.13957000e+00
- 1 211 0 0 0.16790682e+00 0.18477673e+00 -0.78589947e+02 0.13957000e+00
- 2 221 235 237 0.42002402e+00 0.12992915e+00 -0.20895506e+03 0.54745000e+00
- 1 -211 0 0 0.61461885e-01 -0.72028832e+00 -0.12881822e+03 0.13957000e+00
- 1 211 0 0 -0.66992548e-01 -0.54237403e+00 -0.60267416e+02 0.13957000e+00
- 2 111 238 239 0.20163264e-01 0.10348578e-01 -0.17993605e+02 0.13498000e+00
- 1 -211 0 0 -0.12914445e+00 0.47886964e+00 -0.89550751e+02 0.13957000e+00
- 1 211 0 0 0.19482453e-01 0.73170700e-01 -0.35936740e+02 0.13957000e+00
- 2 111 240 241 -0.40804587e+00 0.76839155e-01 -0.11555236e+03 0.13498000e+00
- 1 211 0 0 0.95836273e-01 -0.11512792e+00 -0.94912361e+01 0.13957000e+00
- 1 -211 0 0 0.11437479e+00 -0.25993312e-01 -0.51097770e+01 0.13957000e+00
- 2 221 242 244 -0.10453608e+00 -0.24198230e+00 -0.36509818e+02 0.54745000e+00
- 1 -211 0 0 0.15134903e+01 -0.76425312e+00 -0.65544341e+01 0.13957000e+00
- 2 111 245 246 0.13299394e+00 0.40104252e-01 -0.14377356e+01 0.13498000e+00
- 1 211 0 0 0.32186282e+00 0.40066370e+00 -0.23783513e+01 0.13957000e+00
- 2 111 247 248 0.16930669e+01 0.63896874e+00 -0.36127601e+01 0.13498000e+00
- 1 22 0 0 0.13207296e+00 -0.75124349e-01 -0.11153656e+01 0.00000000e+00
- 1 22 0 0 -0.13497740e-01 -0.16243721e-01 -0.79920502e+00 0.00000000e+00
- 1 -211 0 0 0.42982578e+00 0.14419983e+00 -0.19080019e+01 0.13957000e+00
- 1 211 0 0 0.60033317e+00 0.24984158e+00 -0.18494494e+01 0.13957000e+00
- 2 221 249 251 0.17439708e+01 0.96866459e+00 -0.56347548e+01 0.54745000e+00
- 1 -211 0 0 0.97582559e+00 0.18334591e+00 -0.16979200e+01 0.13957000e+00
- 2 111 252 253 0.15451418e+01 0.62629286e+00 -0.50995962e+01 0.13498000e+00
- 1 211 0 0 -0.37062424e+00 0.33419416e+00 -0.12426681e+00 0.13957000e+00
- 2 111 254 255 0.70614801e-01 -0.71278041e-01 0.26233515e+00 0.13498000e+00
- 1 -211 0 0 -0.45791518e+00 0.54924634e-02 -0.44492625e+00 0.13957000e+00
- 2 111 256 257 -0.63650807e-01 -0.26974340e+00 0.14879517e+00 0.13498000e+00
- 1 211 0 0 -0.75556428e-01 -0.26501837e+00 0.82837457e+00 0.13957000e+00
- 2 111 258 259 -0.22696157e+00 0.23403497e+00 0.33820545e-01 0.13498000e+00
- 1 211 0 0 -0.13196676e+00 -0.12331198e+00 0.20855327e+00 0.13957000e+00
- 1 -211 0 0 -0.48448969e-01 -0.79939585e+00 0.11708538e+01 0.13957000e+00
- 2 111 260 261 0.66896504e-01 0.23394611e-02 0.31291304e+00 0.13498000e+00
- 1 22 0 0 0.26595999e+00 0.45192270e+00 0.30828387e+01 0.00000000e+00
- 1 22 0 0 -0.75788248e-02 0.55874387e-01 0.51177682e+00 0.00000000e+00
- 1 -211 0 0 0.11511879e+00 0.49738428e+00 0.26310962e+01 0.13957000e+00
- 1 211 0 0 -0.29116702e+00 0.11818353e+00 0.17533637e+01 0.13957000e+00
- 1 -211 0 0 0.16065937e+00 0.20912842e+00 0.13830475e+01 0.13957000e+00
- 2 111 262 263 0.50949198e+00 0.19147429e+00 0.48890657e+00 0.13498000e+00
- 1 2212 0 0 0.74876077e+00 0.26646660e+00 0.14610970e+01 0.93827000e+00
- 1 211 0 0 0.15072396e+00 0.22248175e+00 0.75929744e+00 0.13957000e+00
- 1 22 0 0 0.74029462e-01 0.44939537e-01 0.13659245e+00 0.00000000e+00
- 2 113 264 265 0.66271960e+00 0.10085114e+01 0.98337768e+00 0.89159780e+00
- 1 211 0 0 0.76905031e+00 0.39455158e+00 0.28618983e+00 0.13957000e+00
- 1 -211 0 0 0.10313126e+01 0.10968816e+01 0.96817795e+00 0.13957000e+00
- 2 111 266 267 0.62360092e+00 0.57321187e+00 0.26877890e+00 0.13498000e+00
- 1 -2212 0 0 0.34177315e+00 -0.14566844e+00 0.54513963e+01 0.93827000e+00
- 1 211 0 0 0.66492374e-01 0.23426295e-01 0.43327259e+00 0.13957000e+00
- 2 -311 268 268 0.30215763e-02 -0.11845332e+00 0.69817537e+01 0.49767000e+00
- 1 -211 0 0 0.33476521e+00 -0.44337613e+00 0.49239805e+01 0.13957000e+00
- 1 2212 0 0 0.78655273e+00 -0.21251126e+00 0.36346613e+01 0.93827000e+00
- 1 211 0 0 -0.56284085e-02 -0.11395414e+00 0.12903927e+01 0.13957000e+00
- 1 -211 0 0 0.12571154e+00 -0.32760199e+00 0.17757020e+02 0.13957000e+00
- 1 211 0 0 0.24281923e+00 -0.84435922e-01 0.81253046e+01 0.13957000e+00
- 2 111 269 270 0.24061559e+00 0.15387593e-02 0.37504206e+01 0.13498000e+00
- 1 22 0 0 0.84896862e-01 -0.18191133e+00 0.61582636e+02 0.00000000e+00
- 1 22 0 0 0.23704208e+00 -0.38806806e+00 0.21429032e+03 0.00000000e+00
- 1 -211 0 0 -0.49223751e+00 -0.26416607e+00 0.13932827e+04 0.13957000e+00
- 2 111 271 272 0.21426239e+00 -0.13353540e+00 0.84677445e+03 0.13498000e+00
- 1 211 0 0 -0.13767747e+00 -0.97535923e-02 0.70743479e+02 0.13957000e+00
- 1 -211 0 0 -0.53237804e-01 -0.83170573e-02 0.16058685e+03 0.13957000e+00
- 2 111 273 274 0.25163326e+00 0.18821769e+00 0.88029658e+02 0.13498000e+00
- 1 211 0 0 -0.41508201e+00 0.36085969e+00 0.12705999e+03 0.13957000e+00
- 1 -211 0 0 -0.21687539e+00 -0.34830151e+00 0.79778024e+02 0.13957000e+00
- 1 211 0 0 0.95865740e-01 0.60488783e-01 0.26079843e+02 0.13957000e+00
- 1 -211 0 0 -0.15773690e+00 -0.22266564e+00 0.30701173e+02 0.13957000e+00
- 2 111 275 276 0.32504515e+00 -0.18836208e+00 0.51684644e+02 0.13498000e+00
- 1 -211 0 0 -0.49048157e-01 -0.27173821e+00 0.13947156e+01 0.13957000e+00
- 2 111 277 278 0.47817136e+00 -0.41206460e+00 0.81416278e+01 0.13498000e+00
- 1 -321 0 0 -0.24438934e+00 0.13446683e+00 0.45089091e+01 0.49360000e+00
- 2 111 279 280 -0.23788036e+00 -0.22940264e+00 0.66264096e+01 0.13498000e+00
- 1 321 0 0 0.23170681e+00 -0.36370813e+00 0.29902458e+01 0.49360000e+00
- 1 -211 0 0 0.24691516e+00 -0.22512149e+00 0.51809421e+01 0.13957000e+00
- 1 211 0 0 -0.85438739e-01 -0.71890642e+00 0.69502306e+00 0.13957000e+00
- 1 -211 0 0 -0.22899521e+00 0.95722980e-01 0.80293494e+00 0.13957000e+00
- 1 22 0 0 0.29083215e-01 -0.18337618e+00 -0.14017969e+00 0.00000000e+00
- 1 22 0 0 -0.25740657e+00 -0.11956466e+00 0.38208225e+00 0.00000000e+00
- 1 22 0 0 -0.63540494e-01 -0.18634023e+00 0.29639761e+00 0.00000000e+00
- 1 22 0 0 0.67983785e-01 -0.19783588e+00 0.37583069e+00 0.00000000e+00
- 1 211 0 0 -0.11387775e+01 -0.26024237e+01 -0.62674258e+00 0.13957000e+00
- 2 111 281 282 -0.28589855e+00 -0.16586530e+00 0.76111472e-01 0.13498000e+00
- 1 211 0 0 -0.28600242e+00 -0.14280547e+01 0.12463579e+01 0.13957000e+00
- 1 -211 0 0 -0.14935023e+00 -0.37334280e+00 0.54372644e+00 0.13957000e+00
- 2 111 283 284 -0.13996278e+00 -0.12433174e+00 0.79854805e-01 0.13498000e+00
- 1 211 0 0 -0.37995118e+00 -0.31269183e+00 0.17112881e+00 0.13957000e+00
- 2 111 285 286 0.12053000e+00 -0.79600644e+00 0.58209118e+00 0.13498000e+00
- 2 111 287 288 -0.18986993e-01 -0.14481343e+00 -0.52210945e-01 0.13498000e+00
- 2 111 289 290 -0.28434496e+00 -0.48441279e+00 0.17434675e+00 0.13498000e+00
- 2 111 291 292 -0.46435239e-01 -0.26465444e+00 0.10935380e+00 0.13498000e+00
- 2 -311 293 293 -0.37936523e-01 -0.65389560e+00 0.68303223e-02 0.49767000e+00
- 1 -211 0 0 -0.23262070e+00 0.36909201e-01 -0.97291012e-01 0.13957000e+00
- 2 311 294 294 -0.86648121e-01 -0.80736880e-01 0.20985981e-01 0.49767000e+00
- 2 111 295 296 0.14221041e+00 -0.46448705e+00 0.24135830e+00 0.13498000e+00
- 1 211 0 0 -0.77193702e-01 0.19403844e+00 0.84369553e-01 0.13957000e+00
- 1 -211 0 0 -0.37426195e-01 0.20828063e+00 0.79948511e-02 0.13957000e+00
- 2 111 297 298 0.18064887e+00 -0.76224106e-01 0.30238377e+00 0.13498000e+00
- 1 211 0 0 0.19717207e+00 0.16728054e+00 -0.41803952e+00 0.13957000e+00
- 2 111 299 300 -0.17620891e-01 -0.37976647e+00 -0.17957082e+01 0.13498000e+00
- 1 130 0 0 0.19802759e-01 -0.35323955e+00 -0.93554536e+01 0.49767000e+00
- 1 321 0 0 -0.34310555e+00 0.27026225e-01 -0.72710215e+01 0.49360000e+00
- 1 -211 0 0 0.14137873e+00 0.29649174e+00 -0.66329461e+01 0.13957000e+00
- 1 22 0 0 -0.72467311e+00 -0.38197699e+00 -0.19868322e+03 0.00000000e+00
- 1 22 0 0 -0.20701506e+00 -0.33391223e-01 -0.52694309e+02 0.00000000e+00
- 1 22 0 0 -0.49129921e+00 0.14349862e+00 -0.15984566e+03 0.00000000e+00
- 1 22 0 0 -0.20676136e+00 0.39554267e-01 -0.44181791e+02 0.00000000e+00
- 1 22 0 0 0.55824073e+00 -0.51251609e+00 -0.36756697e+03 0.00000000e+00
- 1 22 0 0 0.51522820e-01 -0.33598516e-01 -0.16466319e+02 0.00000000e+00
- 2 111 301 302 0.23775635e+00 0.73318024e-01 -0.12853922e+03 0.13498000e+00
- 2 111 303 304 -0.37671673e-02 0.37116797e-01 -0.25658473e+02 0.13498000e+00
- 2 111 305 306 0.18603484e+00 0.19494333e-01 -0.54757372e+02 0.13498000e+00
- 1 22 0 0 -0.51945856e-01 0.15607508e-01 -0.11297998e+02 0.00000000e+00
- 1 22 0 0 0.72109119e-01 -0.52589297e-02 -0.66956066e+01 0.00000000e+00
- 1 22 0 0 -0.41413958e+00 0.86855451e-01 -0.11372518e+03 0.00000000e+00
- 1 22 0 0 0.60937063e-02 -0.10016296e-01 -0.18271788e+01 0.00000000e+00
- 2 111 307 308 -0.24504460e-01 -0.16201981e+00 -0.74805510e+01 0.13498000e+00
- 2 111 309 310 -0.12987208e+00 -0.63529253e-01 -0.18220086e+02 0.13498000e+00
- 2 111 311 312 0.49840465e-01 -0.16433237e-01 -0.10809181e+02 0.13498000e+00
- 1 22 0 0 0.33125564e-01 -0.10153190e-01 -0.66925301e-01 0.00000000e+00
- 1 22 0 0 0.99868373e-01 0.50257442e-01 -0.13708103e+01 0.00000000e+00
- 1 22 0 0 0.87149930e+00 0.31311510e+00 -0.19949619e+01 0.00000000e+00
- 1 22 0 0 0.82156756e+00 0.32585364e+00 -0.16177983e+01 0.00000000e+00
- 1 -211 0 0 0.81577325e+00 0.32930473e+00 -0.23052528e+01 0.13957000e+00
- 1 211 0 0 0.46556149e+00 0.22131343e+00 -0.13709062e+01 0.13957000e+00
- 2 111 313 314 0.46263603e+00 0.41804644e+00 -0.19585958e+01 0.13498000e+00
- 1 22 0 0 0.10018971e+01 0.36059073e+00 -0.30916073e+01 0.00000000e+00
- 1 22 0 0 0.54324471e+00 0.26570213e+00 -0.20079888e+01 0.00000000e+00
- 1 22 0 0 0.10110161e+00 -0.84216337e-01 0.18078579e+00 0.00000000e+00
- 1 22 0 0 -0.30486804e-01 0.12938297e-01 0.81549368e-01 0.00000000e+00
- 1 22 0 0 -0.10387243e+00 -0.15631992e+00 0.83975978e-01 0.00000000e+00
- 1 22 0 0 0.40221622e-01 -0.11342348e+00 0.64819195e-01 0.00000000e+00
- 1 22 0 0 -0.14026233e+00 0.51673498e-01 -0.14690448e-02 0.00000000e+00
- 1 22 0 0 -0.86699242e-01 0.18236147e+00 0.35289590e-01 0.00000000e+00
- 1 22 0 0 0.50292612e-01 -0.64439489e-01 0.17652753e+00 0.00000000e+00
- 1 22 0 0 0.16603892e-01 0.66778950e-01 0.13638551e+00 0.00000000e+00
- 1 22 0 0 0.15424144e+00 0.12069865e+00 0.20699524e+00 0.00000000e+00
- 1 22 0 0 0.35525054e+00 0.70775642e-01 0.28191133e+00 0.00000000e+00
- 1 -211 0 0 0.95368985e-02 0.58161547e+00 0.76616319e+00 0.13957000e+00
- 1 211 0 0 0.65318270e+00 0.42689597e+00 0.21721449e+00 0.13957000e+00
- 1 22 0 0 0.87705819e-02 -0.78033175e-02 0.26350274e-02 0.00000000e+00
- 1 22 0 0 0.61483033e+00 0.58101519e+00 0.26614387e+00 0.00000000e+00
- 2 310 315 316 0.30215763e-02 -0.11845332e+00 0.69817537e+01 0.49767000e+00
- 1 22 0 0 0.12992589e+00 0.13284056e-01 0.10883810e+01 0.00000000e+00
- 1 22 0 0 0.11068970e+00 -0.11745297e-01 0.26620396e+01 0.00000000e+00
- 1 22 0 0 0.16741752e+00 -0.14184639e+00 0.53825627e+03 0.00000000e+00
- 1 22 0 0 0.46844875e-01 0.83109893e-02 0.30851819e+03 0.00000000e+00
- 1 22 0 0 0.19187069e+00 0.20096108e+00 0.76195109e+02 0.00000000e+00
- 1 22 0 0 0.59762570e-01 -0.12743390e-01 0.11834550e+02 0.00000000e+00
- 1 22 0 0 0.18464479e+00 -0.16821307e+00 0.37521209e+02 0.00000000e+00
- 1 22 0 0 0.14040036e+00 -0.20149012e-01 0.14163435e+02 0.00000000e+00
- 1 22 0 0 0.16108227e-01 -0.27386052e-01 0.92546348e+00 0.00000000e+00
- 1 22 0 0 0.46206313e+00 -0.38467854e+00 0.72161643e+01 0.00000000e+00
- 1 22 0 0 -0.40912412e-01 -0.60227685e-02 0.17714544e+01 0.00000000e+00
- 1 22 0 0 -0.19696794e+00 -0.22337987e+00 0.48549551e+01 0.00000000e+00
- 1 22 0 0 -0.25851030e+00 -0.18552017e+00 0.49320951e-01 0.00000000e+00
- 1 22 0 0 -0.27388244e-01 0.19654868e-01 0.26790522e-01 0.00000000e+00
- 1 22 0 0 -0.13407527e+00 -0.34829076e-01 0.66063021e-01 0.00000000e+00
- 1 22 0 0 -0.58875122e-02 -0.89502665e-01 0.13791784e-01 0.00000000e+00
- 1 22 0 0 -0.11453106e-01 -0.32913711e+00 0.20282212e+00 0.00000000e+00
- 1 22 0 0 0.13198311e+00 -0.46686933e+00 0.37926906e+00 0.00000000e+00
- 1 22 0 0 -0.20247868e-01 -0.14782887e+00 -0.85630548e-01 0.00000000e+00
- 1 22 0 0 0.12608753e-02 0.30154402e-02 0.33419604e-01 0.00000000e+00
- 1 22 0 0 -0.22644946e+00 -0.29071542e+00 0.15688605e+00 0.00000000e+00
- 1 22 0 0 -0.57895503e-01 -0.19369737e+00 0.17460706e-01 0.00000000e+00
- 1 22 0 0 -0.70463408e-01 -0.12481766e+00 0.10558830e+00 0.00000000e+00
- 1 22 0 0 0.24028169e-01 -0.13983678e+00 0.37654942e-02 0.00000000e+00
- 2 310 317 318 -0.37936523e-01 -0.65389560e+00 0.68303223e-02 0.49767000e+00
- 2 310 319 320 -0.86648121e-01 -0.80736880e-01 0.20985981e-01 0.49767000e+00
- 1 22 0 0 0.15084033e+00 -0.37490638e+00 0.15090090e+00 0.00000000e+00
- 1 22 0 0 -0.86299288e-02 -0.89580678e-01 0.90457403e-01 0.00000000e+00
- 1 22 0 0 0.19456695e+00 -0.93240361e-01 0.27975055e+00 0.00000000e+00
- 1 22 0 0 -0.13918086e-01 0.17016255e-01 0.22633214e-01 0.00000000e+00
- 1 22 0 0 -0.46385347e-01 -0.30464529e+00 -0.15900887e+01 0.00000000e+00
- 1 22 0 0 0.28764456e-01 -0.75121176e-01 -0.20561948e+00 0.00000000e+00
- 1 22 0 0 0.23434573e+00 0.27460306e-01 -0.10298242e+03 0.00000000e+00
- 1 22 0 0 0.34106204e-02 0.45857718e-01 -0.25556793e+02 0.00000000e+00
- 1 22 0 0 -0.16174142e-01 -0.14650028e-01 -0.73177453e+00 0.00000000e+00
- 1 22 0 0 0.12406975e-01 0.51766825e-01 -0.24926698e+02 0.00000000e+00
- 1 22 0 0 0.16249684e+00 -0.25221147e-01 -0.31347160e+02 0.00000000e+00
- 1 22 0 0 0.23537996e-01 0.44715480e-01 -0.23410212e+02 0.00000000e+00
- 1 22 0 0 -0.23714859e-01 -0.15018408e-01 -0.25915168e+00 0.00000000e+00
- 1 22 0 0 -0.78960122e-03 -0.14700140e+00 -0.72213993e+01 0.00000000e+00
- 1 22 0 0 -0.72400690e-01 -0.10389730e+00 -0.10851620e+02 0.00000000e+00
- 1 22 0 0 -0.57471395e-01 0.40368051e-01 -0.73684655e+01 0.00000000e+00
- 1 22 0 0 0.10371984e-01 -0.63900747e-01 -0.28695210e+01 0.00000000e+00
- 1 22 0 0 0.39468481e-01 0.47467510e-01 -0.79396604e+01 0.00000000e+00
- 1 22 0 0 0.35306814e+00 0.31455492e+00 -0.16504168e+01 0.00000000e+00
- 1 22 0 0 0.10956789e+00 0.10349152e+00 -0.30817904e+00 0.00000000e+00
- 1 -211 0 0 -0.71007342e-01 0.13262651e+00 0.22106266e+01 0.13957000e+00
- 1 211 0 0 0.74028918e-01 -0.25107983e+00 0.47711270e+01 0.13957000e+00
- 2 111 321 322 -0.62897089e-02 -0.20214312e+00 -0.19215258e+00 0.13498000e+00
- 2 111 323 324 -0.31646814e-01 -0.45175248e+00 0.19898290e+00 0.13498000e+00
- 2 111 325 326 -0.14139115e+00 -0.14032277e+00 0.17051103e+00 0.13498000e+00
- 2 111 327 328 0.54743029e-01 0.59585895e-01 -0.14952504e+00 0.13498000e+00
- 1 22 0 0 -0.55085910e-01 -0.15835654e+00 -0.17453817e+00 0.00000000e+00
- 1 22 0 0 0.48796201e-01 -0.43786582e-01 -0.17614404e-01 0.00000000e+00
- 1 22 0 0 -0.49895215e-01 -0.41056242e+00 0.13614666e+00 0.00000000e+00
- 1 22 0 0 0.18248400e-01 -0.41190063e-01 0.62836245e-01 0.00000000e+00
- 1 22 0 0 -0.27376734e-01 0.19592606e-01 0.61961368e-01 0.00000000e+00
- 1 22 0 0 -0.11401442e+00 -0.15991538e+00 0.10854966e+00 0.00000000e+00
- 1 22 0 0 0.80615973e-01 0.12859775e-01 -0.14109542e+00 0.00000000e+00
- 1 22 0 0 -0.25872945e-01 0.46726120e-01 -0.84296265e-02 0.00000000e+00
- 574
- 2 25 2 3 -0.42423006e+00 0.78648737e+01 0.78036801e+03 0.12501336e+03
- 2 23 6 8 -0.40904585e+02 -0.22364562e+02 0.43456393e+03 0.22623377e+02
- 2 23 4 5 0.40480355e+02 0.30229435e+02 0.34580408e+03 0.47694281e+02
- 1 11 0 0 0.22350670e+02 -0.10612149e+02 0.12981114e+03 0.51000000e-03
- 1 -11 0 0 0.18129685e+02 0.40841584e+02 0.21599294e+03 0.51000000e-03
- 1 -13 0 0 -0.28798209e+02 -0.16610249e+02 0.38017780e+03 0.10566000e+00
- 1 13 0 0 -0.12093093e+02 -0.57446567e+01 0.54302133e+02 0.10566000e+00
- 1 22 0 0 -0.13283251e-01 -0.96556466e-02 0.84000724e-01 0.00000000e+00
- 2 4 59 59 0.17112977e+01 0.33233310e+00 0.61382149e+02 0.15000000e+01
- 2 2203 59 59 -0.95165797e-01 0.48071948e+00 0.43136551e+04 0.77133000e+00
- 2 -4 66 66 0.65067022e+01 -0.79232129e+01 0.84706023e+03 0.15000000e+01
- 2 21 66 66 -0.27697385e+01 0.19110704e+01 0.72225386e+02 0.00000000e+00
- 2 21 66 66 -0.41509094e+01 -0.28278228e+01 0.61137339e+02 0.00000000e+00
- 2 21 66 66 0.25406099e+00 -0.26216529e+00 0.28359491e+01 0.00000000e+00
- 2 21 66 66 0.24306647e+01 0.49834979e+01 0.49800955e+02 0.00000000e+00
- 2 21 66 66 -0.21514592e+00 0.11997600e+01 0.70964247e+01 0.00000000e+00
- 2 21 66 66 0.36572082e+00 0.56893841e+00 0.17565194e+01 0.00000000e+00
- 2 21 66 66 0.24852453e+01 0.21687229e+01 0.76193149e+01 0.00000000e+00
- 2 21 66 66 0.25400584e+01 0.41439987e+01 0.42360492e+01 0.00000000e+00
- 2 21 66 66 -0.98010074e+00 0.16065963e+01 -0.75037245e+00 0.00000000e+00
- 2 21 66 66 -0.20857137e+00 0.21825651e+01 -0.11817843e+01 0.00000000e+00
- 2 21 66 66 0.20777259e+00 0.16113144e+01 -0.56470734e+01 0.00000000e+00
- 2 21 66 66 0.83337689e+00 0.39553535e+01 -0.16152232e+03 0.00000000e+00
- 2 21 66 66 0.37155195e-01 0.46077659e+00 -0.20693232e+02 0.00000000e+00
- 2 21 66 66 0.36229535e-01 0.31583469e+01 -0.14706735e+03 0.00000000e+00
- 2 21 66 66 -0.36229535e-01 -0.31583469e+01 -0.17821275e+04 0.00000000e+00
- 2 21 66 66 -0.54308044e+00 -0.45027731e+00 -0.51463131e+01 0.00000000e+00
- 2 21 66 66 0.61741087e+00 0.42427715e+00 -0.22206917e+02 0.00000000e+00
- 2 2 66 66 -0.81087527e-01 -0.44062093e+00 -0.58758248e+02 0.33000000e+00
- 2 3 115 115 -0.60791529e+00 0.60252465e+00 -0.62289368e+01 0.50000000e+00
- 2 21 115 115 -0.27134568e+00 0.46924101e-01 -0.29041379e+00 0.00000000e+00
- 2 2101 115 115 0.53528733e+00 -0.71789178e+00 -0.43377253e+04 0.57933000e+00
- 2 -3 125 125 -0.50638773e+00 -0.10262588e+01 -0.12758978e+02 0.50000000e+00
- 2 21 125 125 -0.20587998e+00 0.47075801e+00 0.25531032e+00 0.00000000e+00
- 2 21 125 125 0.68268212e-01 0.15321895e+01 0.38767116e+01 0.00000000e+00
- 2 21 125 125 0.20857137e+00 -0.21825651e+01 -0.13730982e+03 0.00000000e+00
- 2 21 125 125 -0.83337689e+00 -0.39553535e+01 -0.14408134e+03 0.00000000e+00
- 2 21 125 125 -0.20777259e+00 -0.16113144e+01 -0.20781295e+02 0.00000000e+00
- 2 21 125 125 -0.37155195e-01 -0.46077659e+00 -0.39270176e+01 0.00000000e+00
- 2 21 125 125 0.98010074e+00 -0.16065963e+01 -0.26102848e+02 0.00000000e+00
- 2 21 125 125 -0.24852453e+01 -0.21687229e+01 -0.13222694e+01 0.00000000e+00
- 2 21 125 125 -0.25400584e+01 -0.41439987e+01 0.65954237e+01 0.00000000e+00
- 2 21 125 125 -0.24306647e+01 -0.49834979e+01 0.41000870e+02 0.00000000e+00
- 2 21 125 125 0.21514592e+00 -0.11997600e+01 0.10435501e+02 0.00000000e+00
- 2 21 125 125 -0.36572082e+00 -0.56893841e+00 0.86334957e+01 0.00000000e+00
- 2 21 125 125 -0.56774422e+00 -0.58082609e+00 0.15280595e+02 0.00000000e+00
- 2 21 125 125 -0.27927220e+01 -0.11365375e+01 0.10541574e+03 0.00000000e+00
- 2 21 125 125 -0.17914666e+01 -0.78570262e+00 0.89690694e+02 0.00000000e+00
- 2 21 125 125 0.56774422e+00 0.58082609e+00 0.42310499e+02 0.00000000e+00
- 2 21 125 125 0.27927220e+01 0.11365375e+01 0.12863465e+03 0.00000000e+00
- 2 21 125 125 0.17914666e+01 0.78570262e+00 0.57007638e+02 0.00000000e+00
- 2 1 125 125 -0.37286882e-01 -0.17420211e-01 0.77737714e+02 0.33000000e+00
- 2 21 176 176 0.26396292e+01 -0.23455343e+01 -0.81653874e+01 0.00000000e+00
- 2 21 176 176 -0.26396292e+01 0.23455343e+01 -0.63024264e+02 0.00000000e+00
- 2 21 184 184 0.14400782e+01 0.55635342e+00 0.40066419e+02 0.00000000e+00
- 2 21 184 184 -0.14400782e+01 -0.55635342e+00 -0.21533567e+02 0.00000000e+00
- 2 21 207 207 -0.21467984e+00 0.38116273e+00 0.55171311e+01 0.00000000e+00
- 2 21 207 207 0.21467984e+00 -0.38116273e+00 0.14672403e+03 0.00000000e+00
- 2 92 60 65 0.16161319e+01 0.81305258e+00 0.43750372e+04 0.19349890e+02
- 2 431 210 211 0.10222957e+01 0.26703217e-01 0.10745092e+03 0.19685000e+01
- 2 -313 212 213 -0.11517712e-01 -0.24889513e+00 0.55768691e+02 0.89622719e+00
- 2 -213 214 215 0.53005634e+00 0.93435436e+00 0.79193364e+02 0.56375875e+00
- 2 221 216 217 0.13508786e-01 -0.29156219e-01 0.60671526e+02 0.54745000e+00
- 2 221 218 219 -0.28950738e-01 -0.43124833e+00 0.46513915e+03 0.54745000e+00
- 2 2224 220 221 0.90739464e-01 0.56129468e+00 0.36068136e+04 0.11178445e+01
- 2 92 67 114 0.73295340e+01 0.13312772e+02 -0.11513329e+04 0.30559153e+04
- 2 -413 222 223 0.44630047e+01 -0.59382784e+01 0.60276620e+03 0.20100000e+01
- 2 223 224 226 0.16031966e+01 -0.91498377e+00 0.20467834e+03 0.77111327e+00
- 2 113 227 228 -0.47140927e+00 -0.58752233e+00 0.23017532e+02 0.77458329e+00
- 1 211 0 0 -0.73303216e-01 0.42194228e+00 0.39044110e+02 0.13957000e+00
- 1 -211 0 0 -0.46205440e+00 -0.46236103e+00 0.35202707e+01 0.13957000e+00
- 2 213 229 230 -0.13926019e+01 -0.34301947e+00 0.36590713e+02 0.42009200e+00
- 1 -211 0 0 -0.11234400e+01 -0.23464855e+00 0.11109540e+02 0.13957000e+00
- 1 211 0 0 -0.18276918e+00 0.53067302e-01 0.15467317e+02 0.13957000e+00
- 2 -213 231 232 -0.40045887e+00 0.50094568e+00 0.13214017e+02 0.81120567e+00
- 2 213 233 234 -0.17782245e+01 -0.73117967e+00 0.26834708e+02 0.58657413e+00
- 1 -321 0 0 0.63604734e+00 0.10803834e+01 0.13916181e+02 0.49360000e+00
- 2 311 235 235 -0.10256177e+00 -0.23310520e+00 0.32991862e+01 0.49767000e+00
- 2 -313 236 237 -0.49786425e-01 0.13632115e+01 0.12295595e+02 0.89284543e+00
- 2 311 238 238 0.34041203e+00 0.65468899e+00 0.53133939e+01 0.49767000e+00
- 2 221 239 240 0.44944883e+00 -0.15659264e+00 0.37319995e+01 0.54745000e+00
- 2 113 241 242 0.57504531e+00 0.10492323e+01 0.10011007e+02 0.74322265e+00
- 2 -311 243 243 0.66460752e+00 0.94318002e+00 0.72068340e+01 0.49767000e+00
- 2 323 244 245 0.38355673e+00 0.19623916e+01 0.11071056e+02 0.90530785e+00
- 2 -213 246 247 0.82096164e+00 0.10126164e+01 0.27605611e+01 0.73301088e+00
- 2 113 248 249 0.14627250e+01 0.71538203e+00 0.15139174e+01 0.82656306e+00
- 2 213 250 251 0.44882408e+00 0.15488450e+01 0.24801444e+01 0.84152361e+00
- 2 -2214 252 253 0.19450798e+00 0.23758806e+00 0.11537627e+01 0.12282128e+01
- 2 2214 254 255 0.80660598e+00 0.23460229e+01 0.21128336e+01 0.12377186e+01
- 2 -323 256 257 0.13746534e+00 0.15732283e+01 -0.16872094e+00 0.88660459e+00
- 2 323 258 259 -0.63103830e+00 0.12460228e+01 -0.24560377e+01 0.84740506e+00
- 2 -213 260 261 0.63431879e+00 0.11635087e+01 -0.21883039e+01 0.80795110e+00
- 1 -2112 0 0 -0.80920796e+00 0.19802169e+00 -0.45856970e+01 0.93957000e+00
- 1 2112 0 0 -0.19970694e+00 0.88847077e-01 -0.36345595e+01 0.93957000e+00
- 2 223 262 264 0.59930626e+00 0.10140578e+01 -0.18067384e+02 0.78118735e+00
- 1 211 0 0 0.19788744e+00 0.10035099e+01 -0.32789679e+02 0.13957000e+00
- 2 223 265 267 0.37827763e+00 0.13364338e+01 -0.38316951e+02 0.80519799e+00
- 1 -211 0 0 -0.33769971e+00 0.64190070e-02 -0.55885974e+01 0.13957000e+00
- 2 -313 268 269 0.79193767e+00 0.10602460e+01 -0.71864029e+02 0.95515380e+00
- 2 313 270 271 -0.33681992e+00 0.15098085e+01 -0.96219742e+02 0.92125276e+00
- 2 213 272 273 -0.30677465e+00 0.12225140e+01 -0.58976262e+02 0.76993636e+00
- 2 -2214 274 275 0.62368786e+00 -0.11055997e+00 -0.10952366e+03 0.12806142e+01
- 2 213 276 277 -0.40570037e+00 -0.34405236e+00 -0.63146632e+03 0.86439851e+00
- 2 1114 278 279 0.20561958e-01 0.50191264e-01 -0.17055141e+03 0.11587776e+01
- 2 111 280 281 -0.35529319e+00 -0.53226185e+00 -0.18289411e+03 0.13498000e+00
- 1 211 0 0 0.38246200e+00 0.30427444e+00 -0.17853721e+03 0.13957000e+00
- 2 113 282 283 0.51260783e+00 -0.64985782e+00 -0.93819156e+02 0.61304546e+00
- 2 113 284 285 -0.40622614e+00 -0.21602306e+00 -0.10961657e+03 0.77527465e+00
- 1 -211 0 0 0.15492913e+00 -0.53200966e-06 -0.11132551e+03 0.13957000e+00
- 1 211 0 0 -0.81759976e+00 -0.46587636e+00 -0.45581504e+02 0.13957000e+00
- 2 -213 286 287 0.24121113e+00 0.40906959e+00 -0.10357416e+03 0.74851546e+00
- 2 113 288 289 0.10006169e+00 -0.45727755e+00 -0.77428422e+02 0.84808639e+00
- 2 331 290 291 -0.76702720e-02 -0.22508046e+00 -0.22292965e+02 0.95774895e+00
- 2 213 292 293 0.35622224e+00 -0.16019736e+00 -0.32975208e+02 0.74663012e+00
- 2 92 116 124 -0.34397364e+00 -0.68443024e-01 -0.43442446e+04 0.40448105e+02
- 2 -313 294 295 -0.42500283e+00 0.63602564e+00 -0.59687296e+01 0.82921502e+00
- 1 2112 0 0 -0.77665631e+00 0.39418812e+00 -0.14536480e+02 0.93957000e+00
- 1 -2112 0 0 0.53676224e+00 -0.25254509e+00 -0.34626764e+02 0.93957000e+00
- 2 111 296 297 0.51913685e-01 0.26331080e-01 -0.84329697e+02 0.13498000e+00
- 2 313 298 299 -0.12789803e-01 -0.18570968e+00 -0.21458245e+03 0.90863752e+00
- 2 -311 300 300 0.52480791e-01 0.27806679e-01 -0.26584832e+02 0.49767000e+00
- 2 -213 301 302 -0.47474838e+00 -0.34306919e+00 -0.12388223e+04 0.69675195e+00
- 2 213 303 304 0.40164850e+00 0.21465525e+00 -0.39226661e+03 0.75070799e+00
- 1 2112 0 0 0.30241846e+00 -0.58612584e+00 -0.23325268e+04 0.93957000e+00
- 2 92 126 175 -0.81774622e+01 -0.21922255e+02 0.24059127e+03 0.90686191e+03
- 1 321 0 0 -0.30765441e+00 -0.17052835e+00 -0.45346826e+01 0.49360000e+00
- 1 -2212 0 0 -0.35451152e-01 -0.33449186e+00 -0.33267819e+01 0.93827000e+00
- 1 2112 0 0 -0.94894219e-01 -0.31854127e+00 -0.28024467e+01 0.93957000e+00
- 2 113 305 306 0.33516915e-01 -0.35589603e+00 -0.18092267e+01 0.93561450e+00
- 2 -313 307 308 0.40361632e-02 0.17791181e+01 0.24795988e+01 0.92275737e+00
- 2 323 309 310 -0.47464647e+00 -0.52930840e-01 -0.31983233e-01 0.87694884e+00
- 2 111 311 312 -0.33841693e+00 0.14401271e+00 0.22600365e+00 0.13498000e+00
- 1 -211 0 0 0.52262517e+00 -0.32700920e-01 -0.30498074e+00 0.13957000e+00
- 2 -313 313 314 -0.68303214e-01 0.30199717e+00 -0.20988521e+01 0.89695570e+00
- 2 -3122 315 316 0.48274698e+00 0.36257230e+00 -0.51764044e+01 0.11156800e+01
- 2 -213 317 318 -0.61824946e+00 -0.11595382e+01 -0.55945624e+01 0.66065711e+00
- 2 2224 319 320 0.88163948e-01 -0.27941341e-01 -0.53177494e+01 0.11557400e+01
- 2 223 321 323 0.20604746e+00 0.74910138e-02 -0.17569987e+02 0.78136348e+00
- 2 -323 324 325 -0.31708253e+00 -0.78677140e+00 -0.53990042e+02 0.95850743e+00
- 2 323 326 327 0.24751789e-01 -0.17579216e+01 -0.84498122e+02 0.77852057e+00
- 1 -321 0 0 -0.20444461e+00 -0.10915753e+01 -0.42591603e+02 0.49360000e+00
- 2 323 328 329 -0.47163041e+00 -0.25770097e+01 -0.74300841e+02 0.98206209e+00
- 1 -211 0 0 0.59917862e+00 -0.13354779e+01 -0.14462196e+02 0.13957000e+00
- 2 -1114 330 331 0.47965310e+00 -0.18331016e+01 -0.25262231e+02 0.11197056e+01
- 2 -213 332 333 -0.13828177e+01 -0.93364089e+00 -0.13144756e+00 0.72085090e+00
- 2 2114 334 335 -0.70293666e+00 -0.95549256e+00 0.55922829e+00 0.12708297e+01
- 2 113 336 337 -0.10140271e+01 -0.11488668e+01 0.13611253e+01 0.84486530e+00
- 2 213 338 339 -0.23870574e+00 -0.77395237e+00 0.11174261e+01 0.72450785e+00
- 2 113 340 341 -0.43729678e+00 0.91333974e-01 0.12311895e+00 0.60845016e+00
- 2 -213 342 343 -0.34312291e+00 -0.12710192e+01 0.17582926e+01 0.80036789e+00
- 2 111 344 345 -0.20685138e+00 -0.44642128e+00 0.46013314e+01 0.13498000e+00
- 2 213 346 347 -0.62969899e+00 -0.12126094e+01 0.78285825e+01 0.74605074e+00
- 2 223 348 350 -0.10608347e+01 -0.12908126e+01 0.70240250e+01 0.78311043e+00
- 1 -211 0 0 0.10870868e+00 0.25973572e-01 0.38956445e+00 0.13957000e+00
- 2 111 351 352 -0.61775681e-01 -0.83549624e+00 0.27694591e+01 0.13498000e+00
- 2 111 353 354 -0.39613195e+00 -0.43887256e+00 0.80748149e+01 0.13498000e+00
- 2 113 355 356 -0.42736524e+00 -0.11123132e+01 0.10685219e+02 0.78280987e+00
- 2 -313 357 358 -0.10188012e+01 -0.11983403e+01 0.14744917e+02 0.10183427e+01
- 2 333 359 360 -0.83313019e+00 -0.88815402e+00 0.26840588e+02 0.10181136e+01
- 1 321 0 0 -0.10202834e+01 -0.73907024e+00 0.44090671e+02 0.49360000e+00
- 2 113 361 362 -0.62277998e+00 -0.31117436e+00 0.26493248e+02 0.76191985e+00
- 1 -211 0 0 0.30319095e+00 -0.42141699e+00 0.12602988e+02 0.13957000e+00
- 1 211 0 0 -0.22642162e+00 0.33439053e+00 0.17117861e+02 0.13957000e+00
- 2 -213 363 364 -0.46319781e+00 -0.76069835e+00 0.40354789e+02 0.80164596e+00
- 1 211 0 0 -0.53800212e+00 -0.37695799e+00 0.22971522e+02 0.13957000e+00
- 2 -213 365 366 -0.42764616e+00 -0.46020717e-01 0.34436854e+02 0.79622803e+00
- 2 223 367 369 0.30279210e+00 0.25608107e+00 0.27479159e+02 0.78370949e+00
- 2 221 370 372 0.84463554e+00 0.29172080e+00 0.42271429e+02 0.54745000e+00
- 2 113 373 374 0.49296409e+00 0.12187621e+00 0.45677380e+02 0.80182331e+00
- 2 111 375 376 -0.14573765e+00 0.16735205e+00 0.84689219e+01 0.13498000e+00
- 1 211 0 0 0.98085967e-01 -0.17950589e-01 0.66821980e+01 0.13957000e+00
- 1 -211 0 0 0.18494489e+01 0.60042830e+00 0.83803741e+02 0.13957000e+00
- 2 111 377 379 0.47048902e+00 0.54698191e+00 0.22513937e+02 0.13498000e+00
- 1 211 0 0 0.10761445e+00 -0.96244795e-01 0.22500666e+02 0.13957000e+00
- 1 -211 0 0 -0.67773610e-01 0.15636667e+00 0.36346752e+02 0.13957000e+00
- 2 92 177 183 0.00000000e+00 0.00000000e+00 -0.71189652e+02 0.10900339e+02
- 2 323 380 381 -0.29545469e+00 0.44552060e+00 -0.18706417e+02 0.88634865e+00
- 2 -213 382 383 -0.45371072e+00 0.45541753e+00 -0.19274766e+02 0.75075746e+00
- 2 223 384 386 -0.11808422e+01 0.70764643e+00 -0.13112385e+02 0.77787541e+00
- 1 211 0 0 -0.60282341e+00 -0.23427334e-02 -0.43857317e+01 0.13957000e+00
- 1 -211 0 0 0.82066511e+00 -0.39588575e+00 -0.78439796e+01 0.13957000e+00
- 2 223 387 388 0.16065233e+01 -0.10489625e+01 -0.42718517e+01 0.79358161e+00
- 2 -313 389 390 0.10564266e+00 -0.16139358e+00 -0.35945208e+01 0.85567485e+00
- 2 92 185 206 0.00000000e+00 0.00000000e+00 0.18532852e+02 0.58835117e+02
- 2 -313 391 392 0.77540131e-01 0.17996863e-01 0.70537209e+00 0.94179440e+00
- 2 -3214 393 394 -0.14091330e+00 -0.60199186e+00 0.52224632e+01 0.13773920e+01
- 1 211 0 0 0.54259475e+00 0.94827889e+00 0.32811825e+01 0.13957000e+00
- 2 1114 395 396 -0.23861136e+00 -0.35592148e-01 0.27596263e+01 0.12824990e+01
- 2 113 397 398 0.22646023e+00 -0.53714644e+00 0.12413391e+01 0.80184916e+00
- 2 213 399 400 0.44417871e+00 0.50016998e+00 0.89451273e+01 0.84383504e+00
- 2 -3224 401 402 0.77432027e-01 -0.17620143e+00 0.63000244e+01 0.13535059e+01
- 1 211 0 0 -0.38760562e-01 0.61855815e+00 0.22944030e+01 0.13957000e+00
- 2 3112 403 404 0.57383511e+00 -0.45267354e+00 0.30081226e+01 0.11974400e+01
- 2 -313 405 406 -0.73795357e-01 -0.23574150e+00 0.17894284e+01 0.89491775e+00
- 2 313 407 408 0.69987507e-01 0.67193201e+00 0.24335939e+00 0.87127008e+00
- 1 211 0 0 0.67645005e-01 -0.43039197e+00 0.92108244e+00 0.13957000e+00
- 2 -213 409 410 -0.63188627e+00 0.60173940e-01 0.53181867e+00 0.71870920e+00
- 2 -311 411 411 0.10928547e+00 -0.10877131e+00 -0.12814909e+01 0.49767000e+00
- 2 323 412 413 0.14283925e+00 0.26313304e+00 -0.18591703e+01 0.96251805e+00
- 2 -213 414 415 -0.49611264e+00 -0.11098391e+00 -0.46816458e+01 0.76745984e+00
- 2 223 416 418 -0.24593406e+00 0.33312711e+00 -0.25628515e+01 0.78221822e+00
- 2 213 419 420 -0.33340439e+00 -0.66049622e+00 -0.30990268e+01 0.62984360e+00
- 1 -211 0 0 0.59002408e-02 0.21893644e+00 -0.20049522e+00 0.13957000e+00
- 1 -2112 0 0 0.49948067e+00 -0.67883943e+00 -0.23750618e+01 0.93957000e+00
- 2 221 421 422 -0.76994613e+00 0.16870270e+00 -0.10749975e+01 0.54745000e+00
- 1 2112 0 0 0.13218497e+00 0.22782064e+00 -0.15757580e+01 0.93957000e+00
- 2 92 208 209 0.00000000e+00 0.00000000e+00 0.15224116e+03 0.23391021e+01
- 2 -311 423 423 0.26364833e+00 0.23846198e-01 0.12661693e+03 0.49767000e+00
- 2 313 424 425 -0.26364833e+00 -0.23846198e-01 0.25624235e+02 0.88698946e+00
- 2 323 426 427 -0.20252204e+00 0.17766196e+00 0.32186250e+02 0.80264625e+00
- 2 -311 428 428 0.12248178e+01 -0.15095874e+00 0.75264670e+02 0.49767000e+00
- 1 -321 0 0 0.19883744e+00 -0.35612837e-01 0.43629575e+02 0.49360000e+00
- 1 211 0 0 -0.21035516e+00 -0.21328229e+00 0.12139116e+02 0.13957000e+00
- 1 -211 0 0 0.48094257e+00 0.82799004e+00 0.54083839e+02 0.13957000e+00
- 2 111 429 430 0.49113767e-01 0.10636431e+00 0.25109525e+02 0.13498000e+00
- 1 22 0 0 0.11603165e+00 0.43867624e-01 0.32864038e+01 0.00000000e+00
- 1 22 0 0 -0.10252287e+00 -0.73023843e-01 0.57385122e+02 0.00000000e+00
- 1 22 0 0 -0.23358791e+00 -0.30858857e+00 0.37744634e+03 0.00000000e+00
- 1 22 0 0 0.20463717e+00 -0.12265976e+00 0.87692813e+02 0.00000000e+00
- 1 2212 0 0 -0.18350340e-01 0.43137546e+00 0.30407782e+04 0.93827000e+00
- 1 211 0 0 0.10908980e+00 0.12991922e+00 0.56603539e+03 0.13957000e+00
- 2 -411 431 433 0.42112251e+01 -0.55746287e+01 0.56865388e+03 0.18693000e+01
- 2 111 434 435 0.25177968e+00 -0.36364976e+00 0.34112313e+02 0.13498000e+00
- 1 211 0 0 0.54262379e+00 -0.59161028e+00 0.94979595e+02 0.13957000e+00
- 1 -211 0 0 0.75344363e+00 -0.22050299e+00 0.85804935e+02 0.13957000e+00
- 2 111 436 437 0.30712915e+00 -0.10287051e+00 0.23893807e+02 0.13498000e+00
- 1 211 0 0 0.14535561e+00 0.20327896e-01 0.39846368e+01 0.13957000e+00
- 1 -211 0 0 -0.61676488e+00 -0.60785022e+00 0.19032896e+02 0.13957000e+00
- 1 211 0 0 -0.75710767e+00 -0.99535883e-01 0.15997503e+02 0.13957000e+00
- 2 111 438 439 -0.63549426e+00 -0.24348359e+00 0.20593209e+02 0.13498000e+00
- 1 -211 0 0 0.18695155e+00 0.33158939e+00 0.56599318e+01 0.13957000e+00
- 2 111 440 441 -0.58741042e+00 0.16935628e+00 0.75540850e+01 0.13498000e+00
- 1 211 0 0 -0.14191135e+01 -0.37264272e+00 0.20966295e+02 0.13957000e+00
- 2 111 442 443 -0.35911103e+00 -0.35853695e+00 0.58684122e+01 0.13498000e+00
- 1 130 0 0 -0.10256177e+00 -0.23310520e+00 0.32991862e+01 0.49767000e+00
- 1 -321 0 0 -0.20453019e+00 0.94844494e+00 0.10136454e+02 0.49360000e+00
- 1 211 0 0 0.15474376e+00 0.41476656e+00 0.21591406e+01 0.13957000e+00
- 1 130 0 0 0.34041203e+00 0.65468899e+00 0.53133939e+01 0.49767000e+00
- 1 22 0 0 0.53777766e+00 -0.20251988e+00 0.24716371e+01 0.00000000e+00
- 1 22 0 0 -0.88328833e-01 0.45927241e-01 0.12603624e+01 0.00000000e+00
- 1 211 0 0 0.71591107e-01 0.80637764e+00 0.64888806e+01 0.13957000e+00
- 1 -211 0 0 0.50345420e+00 0.24285468e+00 0.35221261e+01 0.13957000e+00
- 2 310 444 445 0.66460752e+00 0.94318002e+00 0.72068340e+01 0.49767000e+00
- 2 311 446 446 0.53056213e+00 0.12901497e+01 0.80331883e+01 0.49767000e+00
- 1 211 0 0 -0.14700540e+00 0.67224192e+00 0.30378673e+01 0.13957000e+00
- 1 -211 0 0 0.29366816e-01 -0.57242279e-01 0.21901960e+00 0.13957000e+00
- 2 111 447 448 0.79159482e+00 0.10698587e+01 0.25415415e+01 0.13498000e+00
- 1 211 0 0 0.99805163e+00 0.84054982e+00 0.96572716e+00 0.13957000e+00
- 1 -211 0 0 0.46467341e+00 -0.12516779e+00 0.54819027e+00 0.13957000e+00
- 1 211 0 0 0.11579005e+00 0.13870217e+01 0.21312484e+01 0.13957000e+00
- 2 111 449 450 0.33303403e+00 0.16182331e+00 0.34889602e+00 0.13498000e+00
- 1 -2212 0 0 0.38019435e+00 0.21338628e+00 0.96267179e+00 0.93827000e+00
- 2 111 451 452 -0.18568638e+00 0.24201784e-01 0.19109088e+00 0.13498000e+00
- 1 2212 0 0 0.85325514e+00 0.18150393e+01 0.15805307e+01 0.93827000e+00
- 2 111 453 454 -0.46649161e-01 0.53098366e+00 0.53230292e+00 0.13498000e+00
- 2 -311 455 455 0.10220876e+00 0.81479952e+00 -0.35680898e+00 0.49767000e+00
- 1 -211 0 0 0.35256582e-01 0.75842879e+00 0.18808804e+00 0.13957000e+00
- 1 321 0 0 -0.45507236e+00 0.12161454e+01 -0.19287195e+01 0.49360000e+00
- 2 111 456 457 -0.17596594e+00 0.29877463e-01 -0.52731826e+00 0.13498000e+00
- 1 -211 0 0 0.89974033e-01 -0.52617312e-01 -0.96734245e-01 0.13957000e+00
- 2 111 458 459 0.54434476e+00 0.12161260e+01 -0.20915697e+01 0.13498000e+00
- 1 -211 0 0 0.18615727e+00 0.48003842e+00 -0.57217510e+01 0.13957000e+00
- 1 211 0 0 0.32805146e+00 0.55779509e+00 -0.79811986e+01 0.13957000e+00
- 2 111 460 461 0.85097535e-01 -0.23775671e-01 -0.43644340e+01 0.13498000e+00
- 1 211 0 0 0.16002335e+00 0.37006760e+00 -0.18743288e+02 0.13957000e+00
- 1 -211 0 0 0.11390964e+00 0.17210821e+00 -0.46183072e+01 0.13957000e+00
- 2 111 462 463 0.10434465e+00 0.79425798e+00 -0.14955356e+02 0.13498000e+00
- 1 -321 0 0 0.14187330e+00 0.68029055e+00 -0.33151328e+02 0.49360000e+00
- 1 211 0 0 0.65006437e+00 0.37995546e+00 -0.38712701e+02 0.13957000e+00
- 1 321 0 0 -0.90655453e-01 0.11719853e+01 -0.82287866e+02 0.49360000e+00
- 1 -211 0 0 -0.24616447e+00 0.33782325e+00 -0.13931877e+02 0.13957000e+00
- 1 211 0 0 -0.15153742e-01 0.36364613e+00 -0.73352062e+01 0.13957000e+00
- 2 111 464 465 -0.29162090e+00 0.85886786e+00 -0.51641055e+02 0.13498000e+00
- 1 -2212 0 0 0.61786122e+00 0.15102268e+00 -0.85474856e+02 0.93827000e+00
- 2 111 466 467 0.58266341e-02 -0.26158265e+00 -0.24048806e+02 0.13498000e+00
- 1 211 0 0 -0.13332160e+00 -0.59200241e+00 -0.38662338e+03 0.13957000e+00
- 2 111 468 469 -0.27237876e+00 0.24795005e+00 -0.24484294e+03 0.13498000e+00
- 1 2112 0 0 0.54996721e-01 0.97704913e-01 -0.16065962e+03 0.93957000e+00
- 1 -211 0 0 -0.34434763e-01 -0.47513649e-01 -0.98917873e+01 0.13957000e+00
- 1 22 0 0 -0.16328857e+00 -0.13350801e+00 -0.55618995e+02 0.00000000e+00
- 1 22 0 0 -0.19200462e+00 -0.39875384e+00 -0.12727512e+03 0.00000000e+00
- 1 211 0 0 0.46184647e+00 -0.21177707e+00 -0.62728635e+02 0.13957000e+00
- 1 -211 0 0 0.50761353e-01 -0.43808075e+00 -0.31090521e+02 0.13957000e+00
- 1 -211 0 0 -0.53511082e-01 0.10448529e+00 -0.66246460e+01 0.13957000e+00
- 1 211 0 0 -0.35271505e+00 -0.32050835e+00 -0.10299192e+03 0.13957000e+00
- 1 -211 0 0 0.45501448e+00 0.41186853e+00 -0.78230004e+02 0.13957000e+00
- 2 111 470 471 -0.21380335e+00 -0.27989443e-02 -0.25344154e+02 0.13498000e+00
- 1 211 0 0 -0.13794400e+00 -0.54236493e-01 -0.56476126e+02 0.13957000e+00
- 1 -211 0 0 0.23800570e+00 -0.40304106e+00 -0.20952296e+02 0.13957000e+00
- 1 22 0 0 0.32161938e+00 -0.15457272e+00 -0.90055079e+01 0.00000000e+00
- 2 113 472 473 -0.32928965e+00 -0.70507745e-01 -0.13287457e+02 0.52506693e+00
- 1 211 0 0 0.39708365e+00 -0.10116215e+00 -0.31478393e+02 0.13957000e+00
- 2 111 474 475 -0.40861401e-01 -0.59035210e-01 -0.14968149e+01 0.13498000e+00
- 1 -321 0 0 -0.21725769e+00 0.49090956e+00 -0.52375760e+01 0.49360000e+00
- 1 211 0 0 -0.20774514e+00 0.14511608e+00 -0.73115358e+00 0.13957000e+00
- 1 22 0 0 0.43348831e-01 -0.33812837e-01 -0.66839569e+02 0.00000000e+00
- 1 22 0 0 0.85648543e-02 0.60143916e-01 -0.17490128e+02 0.00000000e+00
- 2 311 476 476 0.33706336e-02 0.18537603e+00 -0.11754313e+03 0.49767000e+00
- 2 111 477 478 -0.16160437e-01 -0.37108570e+00 -0.97039324e+02 0.13498000e+00
- 2 310 479 480 0.52480791e-01 0.27806679e-01 -0.26584832e+02 0.49767000e+00
- 1 -211 0 0 0.44899242e-01 -0.33324487e+00 -0.41673097e+03 0.13957000e+00
- 2 111 481 482 -0.51964762e+00 -0.98243221e-02 -0.82209132e+03 0.13498000e+00
- 1 211 0 0 0.32624187e+00 0.25748742e+00 -0.37454192e+03 0.13957000e+00
- 2 111 483 484 0.75406634e-01 -0.42832168e-01 -0.17724686e+02 0.13498000e+00
- 1 -211 0 0 -0.55722846e-01 0.27380288e+00 -0.87615422e+00 0.13957000e+00
- 1 211 0 0 0.89239761e-01 -0.62969892e+00 -0.93307252e+00 0.13957000e+00
- 1 -321 0 0 -0.19572087e+00 0.11725899e+01 0.19965073e+01 0.49360000e+00
- 1 211 0 0 0.19975703e+00 0.60652816e+00 0.48309146e+00 0.13957000e+00
- 2 311 485 485 -0.49182803e-01 0.10325269e+00 -0.98956229e-01 0.49767000e+00
- 1 211 0 0 -0.42546367e+00 -0.15618353e+00 0.66972996e-01 0.13957000e+00
- 1 22 0 0 -0.24698287e+00 0.43725734e-01 0.11053590e+00 0.00000000e+00
- 1 22 0 0 -0.91434063e-01 0.10028698e+00 0.11546775e+00 0.00000000e+00
- 2 -311 486 486 -0.14884027e+00 0.38600566e+00 -0.10066370e+01 0.49767000e+00
- 2 111 487 488 0.80537056e-01 -0.84008494e-01 -0.10922151e+01 0.13498000e+00
- 1 -2212 0 0 0.50334064e+00 0.36951819e+00 -0.45653772e+01 0.93827000e+00
- 1 211 0 0 -0.20593654e-01 -0.69458913e-02 -0.61102722e+00 0.13957000e+00
- 1 -211 0 0 -0.61523824e+00 -0.53862028e+00 -0.29097038e+01 0.13957000e+00
- 2 111 489 490 -0.30112197e-02 -0.62091796e+00 -0.26848586e+01 0.13498000e+00
- 1 2212 0 0 -0.66439990e-01 0.36703009e-01 -0.43068459e+01 0.93827000e+00
- 1 211 0 0 0.15460394e+00 -0.64644350e-01 -0.10109035e+01 0.13957000e+00
- 1 211 0 0 0.17691716e+00 0.15989730e+00 -0.69800778e+01 0.13957000e+00
- 1 -211 0 0 0.71223868e-01 -0.28761877e+00 -0.72321954e+01 0.13957000e+00
- 2 111 491 492 -0.42093573e-01 0.13521248e+00 -0.33577141e+01 0.13498000e+00
- 2 -311 493 493 -0.41053559e+00 -0.60089097e+00 -0.27810225e+02 0.49767000e+00
- 1 -211 0 0 0.93453054e-01 -0.18588043e+00 -0.26179817e+02 0.13957000e+00
- 2 311 494 494 -0.31768063e-01 -0.16813000e+01 -0.76816775e+02 0.49767000e+00
- 1 211 0 0 0.56519852e-01 -0.76621576e-01 -0.76813464e+01 0.13957000e+00
- 2 311 495 495 -0.43327030e-01 -0.14274751e+01 -0.47789971e+02 0.49767000e+00
- 1 211 0 0 -0.42830338e+00 -0.11495346e+01 -0.26510870e+02 0.13957000e+00
- 1 -2112 0 0 0.35134691e+00 -0.14917662e+01 -0.21710310e+02 0.93957000e+00
- 1 211 0 0 0.12830619e+00 -0.34133539e+00 -0.35519206e+01 0.13957000e+00
- 1 -211 0 0 -0.24441326e+00 -0.24888249e+00 -0.29407018e+00 0.13957000e+00
- 2 111 496 497 -0.11384044e+01 -0.68475840e+00 0.16262262e+00 0.13498000e+00
- 1 2212 0 0 -0.51226068e+00 -0.10226697e+01 0.39693573e+00 0.93827000e+00
- 1 -211 0 0 -0.19067598e+00 0.67177184e-01 0.16229256e+00 0.13957000e+00
- 1 -211 0 0 -0.51621347e+00 -0.11025747e+01 0.10337111e+01 0.13957000e+00
- 1 211 0 0 -0.49781367e+00 -0.46292076e-01 0.32741425e+00 0.13957000e+00
- 1 211 0 0 -0.24483898e+00 0.13961268e-01 0.22768273e+00 0.13957000e+00
- 2 111 498 499 0.61332392e-02 -0.78791364e+00 0.88974333e+00 0.13498000e+00
- 1 211 0 0 -0.49143974e+00 -0.52786379e-01 -0.17519926e-01 0.13957000e+00
- 1 -211 0 0 0.54142958e-01 0.14412035e+00 0.14063887e+00 0.13957000e+00
- 1 -211 0 0 -0.48721074e+00 -0.52308490e+00 0.11146505e+01 0.13957000e+00
- 2 111 500 501 0.14408783e+00 -0.74793431e+00 0.64364206e+00 0.13498000e+00
- 1 22 0 0 -0.12759179e+00 -0.23804613e+00 0.30990263e+01 0.00000000e+00
- 1 22 0 0 -0.79259592e-01 -0.20837515e+00 0.15023050e+01 0.00000000e+00
- 1 211 0 0 0.13455811e+00 -0.27360014e+00 0.14873239e+01 0.13957000e+00
- 2 111 502 503 -0.76425710e+00 -0.93900926e+00 0.63412586e+01 0.13498000e+00
- 1 211 0 0 -0.16719573e+00 -0.39432848e+00 0.14256833e+01 0.13957000e+00
- 1 -211 0 0 -0.45776642e+00 -0.51137377e+00 0.40023112e+01 0.13957000e+00
- 2 111 504 505 -0.43587260e+00 -0.38511033e+00 0.15960305e+01 0.13498000e+00
- 1 22 0 0 -0.41008657e-01 -0.69611237e+00 0.21114250e+01 0.00000000e+00
- 1 22 0 0 -0.20767024e-01 -0.13938387e+00 0.65803414e+00 0.00000000e+00
- 1 22 0 0 -0.30761803e+00 -0.24580443e+00 0.53596517e+01 0.00000000e+00
- 1 22 0 0 -0.88513917e-01 -0.19306813e+00 0.27151632e+01 0.00000000e+00
- 1 211 0 0 0.15518663e+00 -0.60542050e+00 0.49587939e+01 0.13957000e+00
- 1 -211 0 0 -0.58255186e+00 -0.50689274e+00 0.57264254e+01 0.13957000e+00
- 2 -311 506 506 -0.75414587e+00 -0.87425087e+00 0.74499847e+01 0.49767000e+00
- 2 111 507 508 -0.26465530e+00 -0.32408939e+00 0.72949327e+01 0.13498000e+00
- 1 321 0 0 -0.51535107e+00 -0.51567289e+00 0.16586924e+02 0.49360000e+00
- 1 -321 0 0 -0.31777912e+00 -0.37248112e+00 0.10253664e+02 0.49360000e+00
- 1 -211 0 0 -0.48901202e+00 -0.52691708e+00 0.17199826e+02 0.13957000e+00
- 1 211 0 0 -0.13376796e+00 0.21574272e+00 0.92934223e+01 0.13957000e+00
- 1 -211 0 0 -0.19469702e+00 -0.49669691e+00 0.34374661e+02 0.13957000e+00
- 2 111 509 510 -0.26850079e+00 -0.26400144e+00 0.59801286e+01 0.13498000e+00
- 1 -211 0 0 -0.38799519e+00 -0.28094556e+00 0.12194174e+02 0.13957000e+00
- 2 111 511 512 -0.39650975e-01 0.23492485e+00 0.22242680e+02 0.13498000e+00
- 1 211 0 0 0.27979446e+00 0.16935684e+00 0.88916790e+01 0.13957000e+00
- 1 -211 0 0 0.52700571e-01 -0.15644154e+00 0.61962940e+01 0.13957000e+00
- 2 111 513 514 -0.29702933e-01 0.24316577e+00 0.12391186e+02 0.13498000e+00
- 2 111 515 516 0.51140731e+00 0.18277042e+00 0.20749746e+02 0.13498000e+00
- 2 111 517 518 0.19839233e+00 -0.30998155e-01 0.12496864e+02 0.13498000e+00
- 2 111 519 520 0.13483590e+00 0.13994853e+00 0.90248199e+01 0.13498000e+00
- 1 211 0 0 -0.38511072e-01 0.31540694e+00 0.12828290e+02 0.13957000e+00
- 1 -211 0 0 0.53147517e+00 -0.19353073e+00 0.32849091e+02 0.13957000e+00
- 1 22 0 0 -0.70476264e-01 0.74742220e-01 0.18099667e+01 0.00000000e+00
- 1 22 0 0 -0.75261388e-01 0.92609835e-01 0.66589552e+01 0.00000000e+00
- 1 22 0 0 0.11805510e+00 0.18065014e+00 0.51436689e+01 0.00000000e+00
- 1 -11 0 0 0.10133718e+00 0.10485872e+00 0.50300417e+01 0.51000000e-03
- 1 11 0 0 0.25109673e+00 0.26147304e+00 0.12340227e+02 0.51000000e-03
- 1 321 0 0 -0.39816782e+00 0.40885227e+00 -0.10627821e+02 0.49360000e+00
- 2 111 521 522 0.10271312e+00 0.36668332e-01 -0.80785954e+01 0.13498000e+00
- 1 -211 0 0 -0.35721238e+00 0.56238743e+00 -0.99605278e+01 0.13957000e+00
- 2 111 523 524 -0.96498335e-01 -0.10696990e+00 -0.93142384e+01 0.13498000e+00
- 1 211 0 0 -0.73049736e-01 -0.65171467e-02 -0.18892536e+01 0.13957000e+00
- 1 -211 0 0 -0.58317391e+00 0.33104552e+00 -0.73659200e+01 0.13957000e+00
- 2 111 525 526 -0.52461855e+00 0.38311806e+00 -0.38572115e+01 0.13498000e+00
- 1 22 0 0 0.31885009e+00 -0.64361687e+00 -0.15605459e+01 0.00000000e+00
- 2 111 527 528 0.12876732e+01 -0.40534563e+00 -0.27113058e+01 0.13498000e+00
- 1 -321 0 0 0.29896853e+00 -0.22832214e+00 -0.27913819e+01 0.49360000e+00
- 1 211 0 0 -0.19332587e+00 0.66928565e-01 -0.80313888e+00 0.13957000e+00
- 2 -311 529 529 0.14120120e+00 0.69169366e-01 0.82852159e+00 0.49767000e+00
- 2 111 530 531 -0.63661072e-01 -0.51172503e-01 -0.12314950e+00 0.13498000e+00
- 2 -3122 532 533 -0.11393146e+00 -0.37099995e+00 0.35241794e+01 0.11156800e+01
- 2 111 534 535 -0.26981843e-01 -0.23099191e+00 0.16982838e+01 0.13498000e+00
- 1 2112 0 0 -0.49256117e-02 -0.21952125e+00 0.18694464e+01 0.93957000e+00
- 1 -211 0 0 -0.23368574e+00 0.18392910e+00 0.89017990e+00 0.13957000e+00
- 1 -211 0 0 -0.17618637e+00 -0.44972285e+00 0.91773644e+00 0.13957000e+00
- 1 211 0 0 0.40264660e+00 -0.87423593e-01 0.32360269e+00 0.13957000e+00
- 1 211 0 0 0.18886831e+00 -0.20693376e+00 0.25993262e+01 0.13957000e+00
- 2 111 536 537 0.25531040e+00 0.70710374e+00 0.63458011e+01 0.13498000e+00
- 2 -3122 538 539 0.20089332e+00 -0.84964752e-01 0.48251612e+01 0.11156800e+01
- 1 -211 0 0 -0.12346130e+00 -0.91236678e-01 0.14748632e+01 0.13957000e+00
- 1 2112 0 0 0.38207683e+00 -0.44686786e+00 0.20319855e+01 0.93957000e+00
- 1 -211 0 0 0.19175828e+00 -0.58056773e-02 0.97613711e+00 0.13957000e+00
- 2 -311 540 540 -0.80231862e-01 -0.44551532e+00 0.14025779e+01 0.49767000e+00
- 2 111 541 542 0.64365042e-02 0.20977382e+00 0.38685055e+00 0.13498000e+00
- 1 321 0 0 -0.23483707e-01 0.72378220e+00 0.65297550e-01 0.49360000e+00
- 1 -211 0 0 0.93471213e-01 -0.51850185e-01 0.17806184e+00 0.13957000e+00
- 1 -211 0 0 -0.61386314e+00 -0.19815937e+00 0.42769885e+00 0.13957000e+00
- 2 111 543 544 -0.18023126e-01 0.25833331e+00 0.10411981e+00 0.13498000e+00
- 2 310 545 546 0.10928547e+00 -0.10877131e+00 -0.12814909e+01 0.49767000e+00
- 2 311 547 547 0.22247038e+00 0.12829445e+00 -0.18163942e+01 0.49767000e+00
- 1 211 0 0 -0.79631129e-01 0.13483859e+00 -0.42776114e-01 0.13957000e+00
- 1 -211 0 0 -0.32299555e+00 0.17231418e+00 -0.10282594e+01 0.13957000e+00
- 2 111 548 549 -0.17311709e+00 -0.28329809e+00 -0.36533864e+01 0.13498000e+00
- 1 -211 0 0 0.11329635e+00 0.10376386e+00 -0.64319129e+00 0.13957000e+00
- 1 211 0 0 -0.12964631e+00 0.50479229e-01 -0.18123286e+00 0.13957000e+00
- 2 111 550 551 -0.22958409e+00 0.17888402e+00 -0.17384274e+01 0.13498000e+00
- 1 211 0 0 -0.13741591e+00 -0.54240211e+00 -0.27463353e+01 0.13957000e+00
- 2 111 552 553 -0.19598847e+00 -0.11809410e+00 -0.35269149e+00 0.13498000e+00
- 1 22 0 0 -0.77385772e+00 0.28467490e+00 -0.83001216e+00 0.00000000e+00
- 1 22 0 0 0.39115952e-02 -0.11597220e+00 -0.24498532e+00 0.00000000e+00
- 2 310 554 555 0.26364833e+00 0.23846198e-01 0.12661693e+03 0.49767000e+00
- 1 321 0 0 -0.44768855e+00 0.81959893e-01 0.18356508e+02 0.49360000e+00
- 1 -211 0 0 0.18404022e+00 -0.10580609e+00 0.72677274e+01 0.13957000e+00
- 2 311 556 556 -0.48211422e-03 0.21368085e+00 0.26736512e+02 0.49767000e+00
- 1 211 0 0 -0.20203992e+00 -0.36018891e-01 0.54497386e+01 0.13957000e+00
- 1 130 0 0 0.12248178e+01 -0.15095874e+00 0.75264670e+02 0.49767000e+00
- 1 22 0 0 0.29598702e-01 0.70812545e-01 0.23499717e+02 0.00000000e+00
- 1 22 0 0 0.19515065e-01 0.35551765e-01 0.16098079e+01 0.00000000e+00
- 2 311 557 557 0.39209186e+00 -0.76347027e+00 0.79006785e+02 0.49767000e+00
- 1 -321 0 0 0.13859784e+01 -0.20066514e+01 0.20577868e+03 0.49360000e+00
- 2 311 558 558 0.24331548e+01 -0.28045070e+01 0.28386842e+03 0.49767000e+00
- 1 22 0 0 0.16700667e+00 -0.14367774e+00 0.13669089e+02 0.00000000e+00
- 1 22 0 0 0.84773002e-01 -0.21997202e+00 0.20443224e+02 0.00000000e+00
- 1 22 0 0 -0.59451168e-02 0.94948700e-02 0.26668962e+00 0.00000000e+00
- 1 22 0 0 0.31307427e+00 -0.11236538e+00 0.23627117e+02 0.00000000e+00
- 1 22 0 0 -0.55086000e+00 -0.16715803e+00 0.17949093e+02 0.00000000e+00
- 1 22 0 0 -0.84634253e-01 -0.76325560e-01 0.26441158e+01 0.00000000e+00
- 1 22 0 0 -0.36615453e+00 0.44475596e-01 0.40927926e+01 0.00000000e+00
- 1 22 0 0 -0.22125589e+00 0.12488069e+00 0.34612924e+01 0.00000000e+00
- 1 22 0 0 -0.29658662e+00 -0.35106360e+00 0.53298339e+01 0.00000000e+00
- 1 22 0 0 -0.62524405e-01 -0.74733519e-02 0.53857827e+00 0.00000000e+00
- 2 111 559 560 0.62176343e+00 0.56207607e+00 0.50103266e+01 0.13498000e+00
- 2 111 561 562 0.42844095e-01 0.38110395e+00 0.21965074e+01 0.13498000e+00
- 1 130 0 0 0.53056213e+00 0.12901497e+01 0.80331883e+01 0.49767000e+00
- 1 22 0 0 0.22908284e+00 0.41201782e+00 0.94189416e+00 0.00000000e+00
- 1 22 0 0 0.56251198e+00 0.65784090e+00 0.15996474e+01 0.00000000e+00
- 1 22 0 0 0.28776948e+00 0.12828588e+00 0.34877976e+00 0.00000000e+00
- 1 22 0 0 0.45264542e-01 0.33537423e-01 0.11625442e-03 0.00000000e+00
- 1 22 0 0 0.16446025e-01 -0.17896937e-01 0.18080153e-01 0.00000000e+00
- 1 22 0 0 -0.20213240e+00 0.42098721e-01 0.17301073e+00 0.00000000e+00
- 1 22 0 0 -0.36801982e-01 0.52894136e+00 0.49049612e+00 0.00000000e+00
- 1 22 0 0 -0.98471793e-02 0.20422983e-02 0.41806802e-01 0.00000000e+00
- 1 130 0 0 0.10220876e+00 0.81479952e+00 -0.35680898e+00 0.49767000e+00
- 1 22 0 0 -0.17308409e+00 0.11720151e-01 -0.52659756e+00 0.00000000e+00
- 1 22 0 0 -0.28818497e-02 0.18157312e-01 -0.72069567e-03 0.00000000e+00
- 1 22 0 0 0.14835912e+00 0.33976407e+00 -0.69881266e+00 0.00000000e+00
- 1 22 0 0 0.39598563e+00 0.87636191e+00 -0.13927570e+01 0.00000000e+00
- 1 22 0 0 0.82750159e-02 0.70043587e-02 -0.25721984e-01 0.00000000e+00
- 1 22 0 0 0.76822519e-01 -0.30780030e-01 -0.43387120e+01 0.00000000e+00
- 1 22 0 0 -0.27827812e-01 0.61311647e-01 -0.13517818e+01 0.00000000e+00
- 1 22 0 0 0.13217246e+00 0.73294633e+00 -0.13603574e+02 0.00000000e+00
- 1 22 0 0 -0.25407163e+00 0.80373576e+00 -0.49241360e+02 0.00000000e+00
- 1 22 0 0 -0.37549270e-01 0.55132100e-01 -0.23996958e+01 0.00000000e+00
- 1 22 0 0 0.25452632e-01 -0.24450567e-02 -0.45290582e+01 0.00000000e+00
- 1 22 0 0 -0.19625998e-01 -0.25913759e+00 -0.19519748e+02 0.00000000e+00
- 1 22 0 0 -0.40722620e-01 -0.83308236e-02 -0.16222728e+02 0.00000000e+00
- 1 22 0 0 -0.23165614e+00 0.25628088e+00 -0.22862021e+03 0.00000000e+00
- 1 22 0 0 -0.12528187e+00 -0.56349013e-01 -0.10462845e+02 0.00000000e+00
- 1 22 0 0 -0.88521480e-01 0.53550069e-01 -0.14881309e+02 0.00000000e+00
- 1 211 0 0 -0.99008582e-01 -0.75332231e-01 -0.15068173e+01 0.13957000e+00
- 1 -211 0 0 -0.23028107e+00 0.48244861e-02 -0.11780640e+02 0.13957000e+00
- 1 22 0 0 0.43230904e-01 -0.26746427e-01 -0.28928860e+00 0.00000000e+00
- 1 22 0 0 -0.84092305e-01 -0.32288783e-01 -0.12075263e+01 0.00000000e+00
- 2 310 563 564 0.33706336e-02 0.18537603e+00 -0.11754313e+03 0.49767000e+00
- 1 22 0 0 0.45180537e-01 -0.22694806e+00 -0.66555568e+02 0.00000000e+00
- 1 22 0 0 -0.61340974e-01 -0.14413765e+00 -0.30483756e+02 0.00000000e+00
- 1 -211 0 0 -0.76892368e-02 0.21278799e+00 -0.15932969e+02 0.13957000e+00
- 1 211 0 0 0.60170028e-01 -0.18498131e+00 -0.10651863e+02 0.13957000e+00
- 1 22 0 0 -0.10575016e+00 -0.38438017e-01 -0.24759045e+03 0.00000000e+00
- 1 22 0 0 -0.41389746e+00 0.28613695e-01 -0.57450087e+03 0.00000000e+00
- 1 22 0 0 -0.16098112e-01 -0.37293705e-01 -0.17834558e+01 0.00000000e+00
- 1 22 0 0 0.91504746e-01 -0.55384630e-02 -0.15941230e+02 0.00000000e+00
- 1 130 0 0 -0.49182803e-01 0.10325269e+00 -0.98956229e-01 0.49767000e+00
- 1 130 0 0 -0.14884027e+00 0.38600566e+00 -0.10066370e+01 0.49767000e+00
- 1 22 0 0 -0.26111880e-01 -0.40859037e-01 -0.15493308e+00 0.00000000e+00
- 1 22 0 0 0.10664894e+00 -0.43149456e-01 -0.93728198e+00 0.00000000e+00
- 1 22 0 0 0.13523969e-02 -0.32077064e+00 -0.10923313e+01 0.00000000e+00
- 1 22 0 0 -0.43636166e-02 -0.30014732e+00 -0.15925273e+01 0.00000000e+00
- 1 22 0 0 0.10398997e-01 -0.19723334e-01 -0.88953013e+00 0.00000000e+00
- 1 22 0 0 -0.52492570e-01 0.15493582e+00 -0.24681839e+01 0.00000000e+00
- 1 130 0 0 -0.41053559e+00 -0.60089097e+00 -0.27810225e+02 0.49767000e+00
- 2 310 565 566 -0.31768063e-01 -0.16813000e+01 -0.76816775e+02 0.49767000e+00
- 1 130 0 0 -0.43327030e-01 -0.14274751e+01 -0.47789971e+02 0.49767000e+00
- 1 22 0 0 -0.11002937e+01 -0.62856962e+00 0.14865877e+00 0.00000000e+00
- 1 22 0 0 -0.38110733e-01 -0.56188782e-01 0.13963849e-01 0.00000000e+00
- 1 22 0 0 -0.53770945e-02 -0.32320536e-03 -0.25027021e-02 0.00000000e+00
- 1 22 0 0 0.11510334e-01 -0.78759043e+00 0.89224603e+00 0.00000000e+00
- 1 22 0 0 -0.98276960e-02 -0.25991855e-01 0.13386588e-02 0.00000000e+00
- 1 22 0 0 0.15391553e+00 -0.72194246e+00 0.64230340e+00 0.00000000e+00
- 1 22 0 0 -0.61819421e+00 -0.74879845e+00 0.53459991e+01 0.00000000e+00
- 1 22 0 0 -0.14606289e+00 -0.19021082e+00 0.99525954e+00 0.00000000e+00
- 1 22 0 0 -0.41874530e+00 -0.39625058e+00 0.15341210e+01 0.00000000e+00
- 1 22 0 0 -0.17127294e-01 0.11140256e-01 0.61909475e-01 0.00000000e+00
- 1 130 0 0 -0.75414587e+00 -0.87425087e+00 0.74499847e+01 0.49767000e+00
- 1 22 0 0 -0.20376225e+00 -0.22834962e+00 0.61549288e+01 0.00000000e+00
- 1 22 0 0 -0.60893049e-01 -0.95739768e-01 0.11400039e+01 0.00000000e+00
- 1 22 0 0 -0.16853099e+00 -0.21631236e+00 0.49087665e+01 0.00000000e+00
- 1 22 0 0 -0.99969800e-01 -0.47689087e-01 0.10713621e+01 0.00000000e+00
- 1 22 0 0 -0.84656892e-01 0.97549251e-01 0.10186965e+02 0.00000000e+00
- 1 22 0 0 0.45005917e-01 0.13737560e+00 0.12055715e+02 0.00000000e+00
- 1 22 0 0 -0.77668808e-01 0.88932642e-01 0.50656163e+01 0.00000000e+00
- 1 22 0 0 0.47965875e-01 0.15423312e+00 0.73255695e+01 0.00000000e+00
- 1 22 0 0 0.12304068e+00 0.10881952e+00 0.61351919e+01 0.00000000e+00
- 1 22 0 0 0.38836662e+00 0.73950899e-01 0.14614554e+02 0.00000000e+00
- 1 22 0 0 0.11882052e+00 -0.84692126e-01 0.74228254e+01 0.00000000e+00
- 1 22 0 0 0.79571813e-01 0.53693971e-01 0.50740385e+01 0.00000000e+00
- 1 22 0 0 -0.19551916e-01 0.59232848e-01 0.23245634e+01 0.00000000e+00
- 1 22 0 0 0.15438782e+00 0.80715683e-01 0.67002565e+01 0.00000000e+00
- 1 22 0 0 0.32175937e-01 0.61782410e-01 -0.61732415e+01 0.00000000e+00
- 1 22 0 0 0.70537188e-01 -0.25114078e-01 -0.19053539e+01 0.00000000e+00
- 1 22 0 0 -0.31530195e-01 -0.61859787e-01 -0.14206286e+01 0.00000000e+00
- 1 22 0 0 -0.64968140e-01 -0.45110112e-01 -0.78936098e+01 0.00000000e+00
- 1 22 0 0 -0.32272585e+00 0.16295882e+00 -0.19179238e+01 0.00000000e+00
- 1 22 0 0 -0.20189271e+00 0.22015925e+00 -0.19392877e+01 0.00000000e+00
- 1 22 0 0 0.20195226e+00 -0.29450765e-01 -0.49389722e+00 0.00000000e+00
- 1 22 0 0 0.10857209e+01 -0.37589487e+00 -0.22174086e+01 0.00000000e+00
- 1 130 0 0 0.14120120e+00 0.69169366e-01 0.82852159e+00 0.49767000e+00
- 1 22 0 0 -0.34413662e-01 0.22249889e-01 -0.11331689e+00 0.00000000e+00
- 1 22 0 0 -0.29247410e-01 -0.73422392e-01 -0.98326132e-02 0.00000000e+00
- 1 -2112 0 0 -0.14221918e+00 -0.41157219e+00 0.30206805e+01 0.93957000e+00
- 2 111 567 568 0.28287727e-01 0.40572241e-01 0.50349892e+00 0.13498000e+00
- 1 22 0 0 0.24628260e-01 -0.19779791e+00 0.14524389e+01 0.00000000e+00
- 1 22 0 0 -0.51610103e-01 -0.33193993e-01 0.24584493e+00 0.00000000e+00
- 1 22 0 0 0.25225974e+00 0.53399868e+00 0.49477635e+01 0.00000000e+00
- 1 22 0 0 0.30506573e-02 0.17310506e+00 0.13980376e+01 0.00000000e+00
- 1 -2212 0 0 0.16066729e+00 -0.94500483e-01 0.45068146e+01 0.93827000e+00
- 1 211 0 0 0.40226030e-01 0.95357312e-02 0.31834661e+00 0.13957000e+00
- 2 310 569 570 -0.80231862e-01 -0.44551532e+00 0.14025779e+01 0.49767000e+00
- 1 22 0 0 -0.16727354e-01 0.20374967e-01 0.16774255e+00 0.00000000e+00
- 1 22 0 0 0.23163858e-01 0.18939886e+00 0.21910799e+00 0.00000000e+00
- 1 22 0 0 -0.73048105e-01 0.14631261e+00 0.83221130e-01 0.00000000e+00
- 1 22 0 0 0.55024980e-01 0.11202070e+00 0.20898684e-01 0.00000000e+00
- 1 211 0 0 0.77231878e-01 0.61099389e-02 -0.11411705e+01 0.13957000e+00
- 1 -211 0 0 0.32053588e-01 -0.11488125e+00 -0.14032042e+00 0.13957000e+00
- 1 130 0 0 0.22247038e+00 0.12829445e+00 -0.18163942e+01 0.49767000e+00
- 1 22 0 0 -0.87365101e-01 -0.22596167e+00 -0.29611116e+01 0.00000000e+00
- 1 22 0 0 -0.85751988e-01 -0.57336418e-01 -0.69227477e+00 0.00000000e+00
- 1 22 0 0 -0.60730064e-01 0.10970790e+00 -0.96547422e+00 0.00000000e+00
- 1 22 0 0 -0.16885403e+00 0.69176120e-01 -0.77295317e+00 0.00000000e+00
- 1 22 0 0 -0.14956348e+00 -0.33828495e-01 -0.13802007e+00 0.00000000e+00
- 1 22 0 0 -0.46424997e-01 -0.84265610e-01 -0.21467142e+00 0.00000000e+00
- 1 -211 0 0 -0.28222037e-01 0.93310711e-01 0.75052016e+02 0.13957000e+00
- 1 211 0 0 0.29187037e+00 -0.69464513e-01 0.51564911e+02 0.13957000e+00
- 1 130 0 0 -0.48211422e-03 0.21368085e+00 0.26736512e+02 0.49767000e+00
- 2 310 571 572 0.39209186e+00 -0.76347027e+00 0.79006785e+02 0.49767000e+00
- 2 310 573 574 0.24331548e+01 -0.28045070e+01 0.28386842e+03 0.49767000e+00
- 1 22 0 0 0.37012669e-01 0.68089009e-01 0.66584093e+00 0.00000000e+00
- 1 22 0 0 0.58475076e+00 0.49398706e+00 0.43444857e+01 0.00000000e+00
- 1 22 0 0 -0.25078029e-01 0.29532119e+00 0.16631423e+01 0.00000000e+00
- 1 22 0 0 0.67922124e-01 0.85782763e-01 0.53336510e+00 0.00000000e+00
- 1 -211 0 0 -0.18743164e+00 0.50320373e-02 -0.51987611e+02 0.13957000e+00
- 1 211 0 0 0.19080227e+00 0.18034399e+00 -0.65555517e+02 0.13957000e+00
- 1 211 0 0 -0.97171191e-01 -0.12046550e+01 -0.60843888e+02 0.13957000e+00
- 1 -211 0 0 0.65403128e-01 -0.47664507e+00 -0.15972887e+02 0.13957000e+00
- 1 22 0 0 -0.50217441e-01 0.39083308e-01 0.26475244e+00 0.00000000e+00
- 1 22 0 0 0.78505168e-01 0.14889331e-02 0.23874648e+00 0.00000000e+00
- 1 211 0 0 0.23353998e-01 -0.40667286e+00 0.63238435e+00 0.13957000e+00
- 1 -211 0 0 -0.10358586e+00 -0.38842463e-01 0.77019352e+00 0.13957000e+00
- 1 211 0 0 0.11165868e+00 -0.38874829e+00 0.52398601e+02 0.13957000e+00
- 1 -211 0 0 0.28043319e+00 -0.37472197e+00 0.26608184e+02 0.13957000e+00
- 1 211 0 0 0.12271184e+01 -0.11100097e+01 0.12912528e+03 0.13957000e+00
- 1 -211 0 0 0.12060364e+01 -0.16944973e+01 0.15474313e+03 0.13957000e+00
- 420
- 2 25 2 3 0.14623385e+02 0.11333418e+02 -0.13383374e+03 0.12499337e+03
- 2 23 6 8 0.33544730e+01 0.29941305e+02 -0.73304812e+02 0.59200534e+02
- 2 23 4 5 0.11268912e+02 -0.18607887e+02 -0.60528924e+02 0.55772998e+02
- 1 13 0 0 -0.17539019e+02 -0.16338365e+02 -0.81615193e+01 0.10566000e+00
- 1 -13 0 0 0.28807932e+02 -0.22695219e+01 -0.52367404e+02 0.10566000e+00
- 1 13 0 0 0.53744827e+01 0.97495653e+01 0.88972570e+01 0.10566000e+00
- 1 -13 0 0 -0.38057787e+00 0.35381404e+01 -0.13414198e+02 0.10566000e+00
- 1 22 0 0 -0.16394319e+01 0.16653600e+02 -0.68787871e+02 0.00000000e+00
- 2 2 48 48 -0.37391270e+01 -0.68358602e+00 -0.38289808e+01 0.33000000e+00
- 2 21 48 48 -0.91569908e+00 -0.83545236e+00 -0.15242414e+01 0.00000000e+00
- 2 21 48 48 -0.58518437e+00 -0.41384033e+00 0.42972695e+00 0.00000000e+00
- 2 21 48 48 0.39811071e+01 0.87908507e+01 -0.17046810e+02 0.00000000e+00
- 2 21 48 48 0.43379502e+00 -0.34476977e+00 -0.13492928e+03 0.00000000e+00
- 2 21 48 48 0.20743678e+00 -0.21111398e+00 -0.11605085e+04 0.00000000e+00
- 2 21 48 48 0.10411604e+01 0.34849727e-01 -0.73071942e+03 0.00000000e+00
- 2 2203 48 48 -0.53995223e+00 -0.45719626e+00 -0.35387809e+04 0.77133000e+00
- 2 -2 70 70 -0.68535885e+01 -0.31985876e+01 0.79444745e+00 0.33000000e+00
- 2 21 70 70 -0.12186436e+01 -0.97487280e+00 0.80925600e+00 0.00000000e+00
- 2 21 70 70 -0.19320928e+01 0.13421000e+01 0.10292207e+01 0.00000000e+00
- 2 21 70 70 0.23348134e+00 0.43191933e+00 0.30929410e+02 0.00000000e+00
- 2 21 70 70 0.53611687e+00 0.19347922e+00 0.31874936e+02 0.00000000e+00
- 2 21 70 70 0.28894383e+01 -0.14273593e+01 0.11287098e+03 0.00000000e+00
- 2 21 70 70 0.88632552e+00 0.32037329e+00 0.14774295e+02 0.00000000e+00
- 2 1 70 70 -0.66878792e+00 -0.22884809e+00 0.38583418e+01 0.33000000e+00
- 2 2203 90 90 -0.11350871e+01 -0.68909776e+00 0.66097703e+04 0.77133000e+00
- 2 21 90 90 -0.87801034e+00 -0.10803021e+01 0.44361902e+00 0.00000000e+00
- 2 21 90 90 -0.29679364e+01 0.22759926e+01 -0.21175478e+01 0.00000000e+00
- 2 21 90 90 -0.57620763e+00 0.14645707e+01 -0.16878781e+01 0.00000000e+00
- 2 21 90 90 -0.34219494e+01 0.90062934e+00 -0.31010350e+02 0.00000000e+00
- 2 21 90 90 -0.39811071e+01 -0.87908507e+01 -0.18637519e+03 0.00000000e+00
- 2 21 90 90 0.57620763e+00 -0.14645707e+01 -0.22847997e+02 0.00000000e+00
- 2 21 90 90 0.66654312e+00 -0.39660330e+01 -0.97452328e+02 0.00000000e+00
- 2 21 90 90 0.29679364e+01 -0.22759926e+01 -0.23995667e+03 0.00000000e+00
- 2 21 90 90 0.34219494e+01 -0.90062934e+00 -0.39206266e+03 0.00000000e+00
- 2 21 90 90 -0.66654312e+00 0.39660330e+01 -0.12449561e+03 0.00000000e+00
- 2 21 90 90 0.54836953e+00 -0.29023968e-02 -0.22073360e+01 0.00000000e+00
- 2 21 90 90 -0.17311996e+01 -0.17973701e+01 -0.45181515e+01 0.00000000e+00
- 2 21 90 90 -0.56822248e+00 0.89780232e-01 -0.10508872e+01 0.00000000e+00
- 2 21 90 90 0.92412422e+00 -0.76428301e+00 -0.12984671e+02 0.00000000e+00
- 2 21 90 90 -0.61045317e+00 -0.43583264e+00 -0.43426650e+01 0.00000000e+00
- 2 21 90 90 -0.68780299e+00 -0.85367201e+00 -0.10845031e+02 0.00000000e+00
- 2 21 90 90 -0.50952921e+00 0.67967643e+00 -0.10273895e+02 0.00000000e+00
- 2 1 90 90 0.24974725e+00 -0.26509893e-01 -0.94760585e+02 0.33000000e+00
- 2 21 143 143 -0.92271731e+00 0.44179513e+01 0.49373030e+02 0.00000000e+00
- 2 21 143 143 0.65795551e+00 0.13616345e+01 0.10456361e+03 0.00000000e+00
- 2 21 143 143 -0.65795551e+00 -0.13616345e+01 0.17981003e+01 0.00000000e+00
- 2 21 143 143 0.92271731e+00 -0.44179513e+01 -0.31579181e+01 0.00000000e+00
- 2 92 49 69 -0.11646340e+00 0.58797417e+01 -0.55869084e+04 0.25515000e+03
- 2 223 162 164 -0.35054785e+01 -0.10069892e+01 -0.39996744e+01 0.76908185e+00
- 1 2212 0 0 -0.15026867e+01 -0.39272327e+00 -0.68811316e+00 0.93827000e+00
- 2 213 165 166 0.40343477e+00 0.20990152e+00 -0.13628939e+01 0.75381448e+00
- 2 -2224 167 168 -0.13611514e+00 0.81686144e+00 -0.20920263e+01 0.12036985e+01
- 2 223 169 171 0.11417277e+01 0.20120150e+01 -0.37392446e+01 0.77076161e+00
- 2 323 172 173 0.47040997e+00 0.64343939e+00 -0.13653799e+01 0.91964289e+00
- 2 333 174 175 0.10464033e+01 0.23408635e+01 -0.64601364e+01 0.10214980e+01
- 2 221 176 177 -0.78986592e-01 0.16438110e+00 -0.95974698e+00 0.54745000e+00
- 2 -313 178 179 0.30646412e-01 0.15218153e+01 -0.80107254e+01 0.87456909e+00
- 1 -211 0 0 0.41851483e+00 -0.49193491e+00 -0.31978107e+01 0.13957000e+00
- 1 211 0 0 0.19893400e+00 0.53628322e+00 -0.23637193e+01 0.13957000e+00
- 2 111 180 181 -0.94338712e-01 0.29311821e+00 -0.11070258e+02 0.13498000e+00
- 2 113 182 183 0.10625716e+01 -0.40731731e+00 -0.10160398e+02 0.67087340e+00
- 1 -211 0 0 -0.79184755e+00 0.57434519e+00 -0.45713720e+02 0.13957000e+00
- 1 211 0 0 0.27733594e+00 0.39640960e+00 -0.16501978e+02 0.13957000e+00
- 2 223 184 186 -0.15935869e+00 -0.70325179e+00 -0.17688697e+02 0.78782042e+00
- 1 -211 0 0 -0.68563022e-01 0.36946471e+00 -0.15502382e+03 0.13957000e+00
- 1 211 0 0 0.88911007e+00 -0.83872138e+00 -0.23446782e+04 0.13957000e+00
- 2 -213 187 188 0.14190258e+00 -0.17943102e+00 -0.37869377e+03 0.85612661e+00
- 1 2212 0 0 0.27096245e+00 -0.28954848e+00 -0.13949994e+04 0.93827000e+00
- 1 211 0 0 -0.13104206e+00 0.31076092e+00 -0.11781387e+04 0.13957000e+00
- 2 92 71 89 -0.61277508e+01 -0.35417959e+01 0.19694089e+03 0.61390410e+02
- 2 -2224 189 190 -0.31454260e+01 -0.14759597e+01 0.37384875e+00 0.12197523e+01
- 2 213 191 192 -0.31872266e+01 -0.95903878e+00 0.10941775e+01 0.69245193e+00
- 2 2214 193 194 -0.20413177e+01 -0.58535315e+00 0.10701310e+00 0.12099494e+01
- 1 -211 0 0 -0.27880680e+00 -0.10995899e-01 0.10510041e+01 0.13957000e+00
- 2 111 195 196 -0.29818552e+00 -0.30610654e+00 0.52958977e+00 0.13498000e+00
- 2 213 197 198 -0.78410153e-01 0.17058855e+00 0.10452438e+01 0.72854657e+00
- 1 -211 0 0 -0.35511648e+00 0.46172820e+00 0.59614676e+00 0.13957000e+00
- 2 -313 199 200 -0.71792971e-01 -0.24143262e+00 0.19245879e+01 0.76788640e+00
- 2 323 201 202 -0.32090772e+00 0.33619740e+00 0.82664751e+01 0.90573234e+00
- 1 -211 0 0 0.19804532e+00 -0.52075696e-01 0.37372581e+01 0.13957000e+00
- 2 111 203 204 0.23761199e+00 -0.35607477e+00 0.78556643e+01 0.13498000e+00
- 1 211 0 0 -0.44356613e+00 0.17151902e+00 0.92991973e+00 0.13957000e+00
- 2 -213 205 206 0.48656136e+00 0.17389804e+00 0.48996902e+01 0.59097512e+00
- 2 213 207 208 -0.14210452e+00 -0.59227457e+00 0.12880837e+02 0.76749941e+00
- 1 -211 0 0 0.14053165e+01 0.36045477e+00 0.41788241e+02 0.13957000e+00
- 2 -311 209 209 0.87978525e+00 0.52600636e-01 0.42031422e+02 0.49767000e+00
- 2 313 210 211 0.14803375e+01 -0.72699011e+00 0.59280692e+02 0.86307085e+00
- 2 223 212 214 -0.60961961e+00 -0.28956644e-01 0.65785074e+01 0.78042010e+00
- 2 111 215 216 0.15707146e+00 0.66475992e-01 0.19705732e+01 0.13498000e+00
- 2 92 91 142 -0.83791709e+01 -0.13671364e+02 0.53712245e+04 0.57312636e+04
- 2 213 217 218 -0.60244155e+00 -0.33493114e+00 0.13114748e+04 0.88348704e+00
- 2 3122 219 220 0.15102002e+00 -0.36763214e+00 0.33947432e+04 0.11156800e+01
- 2 313 221 222 -0.89169740e+00 0.32515385e+00 0.70027318e+03 0.88817854e+00
- 2 213 223 224 0.56396811e+00 -0.53839292e+00 0.35430525e+03 0.54566969e+00
- 2 113 225 226 -0.60392593e+00 0.11153307e-02 0.42877117e+03 0.93372635e+00
- 2 -2224 227 228 0.59076117e-01 0.19998147e+00 0.27284590e+03 0.11135319e+01
- 1 211 0 0 0.48843888e+00 0.16857206e+00 0.20232244e+02 0.13957000e+00
- 1 2112 0 0 -0.23182510e+00 -0.45337998e+00 0.12395630e+03 0.93957000e+00
- 2 -313 229 230 -0.56430189e+00 -0.35644584e-02 0.16865353e+01 0.88064779e+00
- 2 311 231 231 0.25861856e+00 -0.23823126e+00 0.38632853e+00 0.49767000e+00
- 2 111 232 233 -0.30663691e+00 0.85025751e-01 0.47555389e+00 0.13498000e+00
- 1 -2212 0 0 -0.38499609e+00 -0.48991472e-01 0.54367328e+00 0.93827000e+00
- 1 211 0 0 -0.71175511e+00 -0.11892819e+00 0.98667394e-01 0.13957000e+00
- 1 2112 0 0 -0.82768303e+00 0.91544978e+00 -0.10807974e+01 0.93957000e+00
- 1 211 0 0 -0.50802731e+00 0.68966334e+00 -0.16127740e+01 0.13957000e+00
- 1 -211 0 0 -0.80184425e-01 -0.11992960e+00 -0.82643347e+00 0.13957000e+00
- 2 111 234 235 0.13611362e+00 -0.19971748e+00 0.22154860e-01 0.13498000e+00
- 1 211 0 0 0.34940791e-01 0.37093412e+00 -0.30106481e+00 0.13957000e+00
- 2 -2214 236 237 -0.12668117e+01 0.11982767e+01 -0.32598974e+01 0.12645787e+01
- 2 113 238 239 -0.89586972e+00 0.59431511e+00 -0.17405008e+01 0.77649098e+00
- 2 2114 240 241 -0.92437767e+00 0.10137125e+00 -0.15324105e+02 0.13133109e+01
- 2 111 242 243 -0.42863866e+00 -0.12574575e-01 -0.21435573e+01 0.13498000e+00
- 1 211 0 0 -0.13180679e+01 -0.23403626e+00 -0.13879539e+02 0.13957000e+00
- 2 221 244 246 -0.23531154e+00 -0.75076900e+00 -0.15146110e+02 0.54745000e+00
- 2 221 247 249 -0.28515463e+00 -0.58437688e+00 -0.22059695e+02 0.54745000e+00
- 2 111 250 251 -0.19529287e+01 -0.20884527e+01 -0.53116865e+02 0.13498000e+00
- 2 -213 252 253 -0.13107037e+01 -0.47824282e+01 -0.91358155e+02 0.90695902e+00
- 2 -1114 254 255 0.54276332e+00 -0.27998754e+01 -0.70613305e+02 0.12748855e+01
- 1 -211 0 0 0.81294804e+00 -0.85165197e+00 -0.21445183e+02 0.13957000e+00
- 2 3214 256 257 0.36603804e+00 -0.15639771e+01 -0.87093118e+02 0.14117635e+01
- 2 323 258 259 0.10857684e+01 -0.66484428e+00 -0.88717753e+02 0.91010160e+00
- 2 -213 260 261 0.15563220e+01 -0.84734057e+00 -0.18475787e+03 0.71409589e+00
- 2 331 262 263 0.13001943e+01 -0.10340868e+01 -0.13615544e+03 0.95755868e+00
- 1 211 0 0 0.56129775e+00 -0.50252035e+00 -0.77712676e+02 0.13957000e+00
- 2 223 264 266 0.74327658e+00 0.22024638e+00 -0.53135712e+02 0.78871509e+00
- 2 113 267 268 0.33782321e+00 0.12645686e+01 -0.69594065e+02 0.95140107e+00
- 1 -211 0 0 -0.19630807e+00 0.61412852e+00 -0.15084165e+02 0.13957000e+00
- 2 113 269 270 -0.17993962e+00 -0.60912952e-01 -0.12268068e+02 0.78392467e+00
- 1 211 0 0 0.20719212e+00 0.94784609e+00 -0.33005358e+02 0.13957000e+00
- 2 111 271 272 0.30740358e+00 0.45468876e-01 -0.12357230e+01 0.13498000e+00
- 2 223 273 275 -0.71142831e+00 0.50856892e+00 -0.21007900e+02 0.76774436e+00
- 2 111 276 277 0.16247601e+00 -0.44091731e+00 -0.10681412e+01 0.13498000e+00
- 2 -2214 278 279 -0.12650008e+01 0.48284450e-02 -0.76237169e+01 0.12201314e+01
- 1 211 0 0 0.58119866e+00 0.11130817e+00 -0.27262877e+01 0.13957000e+00
- 2 1114 280 281 -0.40641166e+00 -0.13574930e+01 -0.68936549e+01 0.11351044e+01
- 2 223 282 284 -0.82282694e+00 -0.41501211e+00 -0.40165512e+01 0.78488851e+00
- 1 211 0 0 0.18196876e+00 -0.12551456e+00 -0.55656901e+01 0.13957000e+00
- 1 -211 0 0 -0.78878438e+00 0.67271756e+00 -0.67514883e+01 0.13957000e+00
- 2 223 285 287 0.41589032e+00 -0.56121271e+00 -0.19055191e+02 0.78053559e+00
- 1 -2112 0 0 -0.59441909e-01 -0.72971997e+00 -0.15792359e+02 0.93957000e+00
- 1 2112 0 0 -0.66109916e+00 -0.41893118e-01 -0.53021220e+02 0.93957000e+00
- 2 223 288 290 0.18867152e+00 0.16240411e+00 -0.22400383e+02 0.78441724e+00
- 2 92 144 161 0.00000000e+00 0.00000000e+00 0.15257683e+03 0.54479103e+02
- 2 111 291 292 -0.47172278e-01 0.10529955e+00 -0.21195707e-01 0.13498000e+00
- 1 -211 0 0 -0.43533600e+00 0.12642324e+01 0.15782064e+02 0.13957000e+00
- 2 213 293 294 -0.17194001e+00 0.77356906e+00 0.11090775e+02 0.80897691e+00
- 2 111 295 296 0.58839498e+00 0.11364068e+00 0.87340175e+01 0.13498000e+00
- 2 -213 297 298 -0.15649928e+00 0.67844503e+00 0.18767238e+02 0.74315707e+00
- 2 223 299 301 -0.86060475e+00 0.97774783e+00 0.19670927e+02 0.77973598e+00
- 2 323 302 303 0.94343413e+00 0.10680764e+01 0.33488809e+02 0.10076453e+01
- 2 -313 304 305 -0.45327067e+00 0.12276709e+00 0.27458804e+02 0.91711842e+00
- 1 -211 0 0 0.12187277e+00 0.21923018e+00 0.26205947e+01 0.13957000e+00
- 2 213 306 307 0.38021590e-01 -0.51950089e+00 0.11330556e+02 0.11360193e+01
- 1 -211 0 0 -0.33215038e+00 0.49317690e+00 0.19641212e+01 0.13957000e+00
- 2 223 308 310 0.96393359e-01 -0.66479307e+00 0.10181049e+01 0.78507539e+00
- 2 223 311 313 0.36013950e+00 -0.15388787e+01 -0.61088448e+00 0.77822014e+00
- 1 211 0 0 0.27665500e+00 -0.45581702e+00 -0.45285790e+00 0.13957000e+00
- 2 -213 314 315 -0.43725089e+00 -0.12359496e+01 0.22154091e+00 0.87073890e+00
- 2 323 316 317 -0.73458350e-01 -0.11121984e+01 -0.59747939e+00 0.89774519e+00
- 2 -313 318 319 0.44786543e+00 -0.50675320e-01 -0.96631556e-01 0.80784846e+00
- 2 223 320 322 0.94905845e-01 -0.23837215e+00 0.22083233e+01 0.79567609e+00
- 1 211 0 0 -0.93800279e+00 -0.82691383e-01 -0.13267783e+01 0.13957000e+00
- 1 -211 0 0 -0.11200479e+01 -0.47382827e+00 -0.12826194e+01 0.13957000e+00
- 2 111 323 324 -0.14474279e+01 -0.45046957e+00 -0.13902767e+01 0.13498000e+00
- 1 211 0 0 -0.10062111e+00 0.84750285e-01 -0.87983216e+00 0.13957000e+00
- 2 111 325 326 0.50405588e+00 0.12515124e+00 -0.48306178e+00 0.13498000e+00
- 1 -2212 0 0 -0.23138934e-01 0.67989014e+00 -0.13661006e+01 0.93827000e+00
- 1 -211 0 0 -0.11297620e+00 0.13697130e+00 -0.72592570e+00 0.13957000e+00
- 1 211 0 0 0.55124546e-01 0.27419422e+00 -0.49347356e+00 0.13957000e+00
- 1 -211 0 0 0.90492539e+00 0.16102104e+01 -0.26860047e+01 0.13957000e+00
- 2 111 327 328 0.18167779e+00 0.12761040e+00 -0.55976628e+00 0.13498000e+00
- 2 311 329 329 0.23050099e+00 0.73003007e+00 -0.91289320e+00 0.49767000e+00
- 1 211 0 0 0.23990898e+00 -0.86590682e-01 -0.45248671e+00 0.13957000e+00
- 1 130 0 0 0.44810748e+00 0.10302471e+01 -0.31347195e+01 0.49767000e+00
- 2 310 330 331 0.59829580e+00 0.13106164e+01 -0.33254169e+01 0.49767000e+00
- 1 22 0 0 -0.90768922e-01 -0.19560756e+00 -0.39493691e+00 0.00000000e+00
- 1 22 0 0 0.11782331e-01 0.35998867e+00 -0.56481007e+00 0.00000000e+00
- 1 -321 0 0 0.22604699e+00 0.11446635e+01 -0.66152725e+01 0.49360000e+00
- 1 211 0 0 -0.19540058e+00 0.37715177e+00 -0.13954530e+01 0.13957000e+00
- 1 22 0 0 -0.74306317e-01 0.45331510e-01 -0.31634537e+01 0.00000000e+00
- 1 22 0 0 -0.20032396e-01 0.24778670e+00 -0.79068044e+01 0.00000000e+00
- 1 211 0 0 0.41976634e+00 -0.13595255e+00 -0.19256231e+01 0.13957000e+00
- 1 -211 0 0 0.64280525e+00 -0.27136476e+00 -0.82347747e+01 0.13957000e+00
- 1 -211 0 0 0.35342677e-02 -0.52928219e+00 -0.11203693e+02 0.13957000e+00
- 1 211 0 0 -0.64287826e-01 -0.44305650e-01 -0.51248034e+01 0.13957000e+00
- 2 111 332 333 -0.98605127e-01 -0.12966395e+00 -0.13602012e+01 0.13498000e+00
- 1 -211 0 0 0.10950823e+00 0.28047408e+00 -0.85631070e+02 0.13957000e+00
- 2 111 334 335 0.32394349e-01 -0.45990510e+00 -0.29306270e+03 0.13498000e+00
- 1 -2212 0 0 -0.19766035e+01 -0.10217240e+01 0.34450439e+00 0.93827000e+00
- 1 -211 0 0 -0.11688225e+01 -0.45423565e+00 0.29344355e-01 0.13957000e+00
- 1 211 0 0 -0.18299973e+01 -0.61559785e+00 0.95346837e+00 0.13957000e+00
- 2 111 336 337 -0.13572293e+01 -0.34344092e+00 0.14070917e+00 0.13498000e+00
- 1 2212 0 0 -0.12928018e+01 -0.42565501e+00 0.19367034e+00 0.93827000e+00
- 2 111 338 339 -0.74851591e+00 -0.15969814e+00 -0.86657242e-01 0.13498000e+00
- 1 22 0 0 -0.28490892e-01 -0.52296746e-01 0.18047694e-01 0.00000000e+00
- 1 22 0 0 -0.26969463e+00 -0.25380979e+00 0.51154207e+00 0.00000000e+00
- 1 211 0 0 0.55297763e-01 0.18810127e+00 0.10688403e+01 0.13957000e+00
- 2 111 340 341 -0.13370792e+00 -0.17512720e-01 -0.23596560e-01 0.13498000e+00
- 1 -321 0 0 -0.22283820e+00 -0.13887076e+00 0.11383141e+01 0.49360000e+00
- 1 211 0 0 0.15104523e+00 -0.10256186e+00 0.78627388e+00 0.13957000e+00
- 1 321 0 0 -0.34666103e-02 0.28696796e+00 0.32044051e+01 0.49360000e+00
- 2 111 342 343 -0.31744111e+00 0.49229435e-01 0.50620700e+01 0.13498000e+00
- 1 22 0 0 0.27202354e-01 -0.19100754e-01 0.22119659e+00 0.00000000e+00
- 1 22 0 0 0.21040964e+00 -0.33697402e+00 0.76344677e+01 0.00000000e+00
- 1 -211 0 0 0.42162347e+00 0.23493928e+00 0.21579435e+01 0.13957000e+00
- 2 111 344 345 0.64937885e-01 -0.61041232e-01 0.27417467e+01 0.13498000e+00
- 1 211 0 0 0.82889335e-01 -0.63168003e+00 0.10903884e+02 0.13957000e+00
- 2 111 346 347 -0.22499386e+00 0.39405456e-01 0.19769529e+01 0.13498000e+00
- 2 310 348 349 0.87978525e+00 0.52600636e-01 0.42031422e+02 0.49767000e+00
- 2 311 350 350 0.12616049e+01 -0.70045748e+00 0.55164417e+02 0.49767000e+00
- 2 111 351 352 0.21873260e+00 -0.26532628e-01 0.41162759e+01 0.13498000e+00
- 1 -211 0 0 -0.15462925e+00 -0.19176789e-01 0.52429930e+00 0.13957000e+00
- 1 211 0 0 -0.18481835e+00 0.99017768e-01 0.41064553e+01 0.13957000e+00
- 2 111 353 354 -0.27017201e+00 -0.10879762e+00 0.19477528e+01 0.13498000e+00
- 1 22 0 0 0.31271762e-01 -0.12003032e-01 0.10132548e+01 0.00000000e+00
- 1 22 0 0 0.12579969e+00 0.78479024e-01 0.95731845e+00 0.00000000e+00
- 1 211 0 0 0.61908985e-01 -0.13745743e+00 0.76210017e+02 0.13957000e+00
- 2 111 355 356 -0.66435053e+00 -0.19747371e+00 0.12352648e+04 0.13498000e+00
- 1 2212 0 0 0.59384551e-01 -0.30128478e+00 0.26253597e+04 0.93827000e+00
- 1 -211 0 0 0.91635470e-01 -0.66347357e-01 0.76938343e+03 0.13957000e+00
- 1 321 0 0 -0.45081876e+00 0.39484812e+00 0.52833243e+03 0.49360000e+00
- 1 -211 0 0 -0.44087864e+00 -0.69694274e-01 0.17194076e+03 0.13957000e+00
- 1 211 0 0 0.29696075e+00 -0.19326802e+00 0.80868465e+02 0.13957000e+00
- 2 111 357 358 0.26700736e+00 -0.34512490e+00 0.27343678e+03 0.13498000e+00
- 1 -211 0 0 0.13446653e+00 0.20027640e+00 0.18306359e+03 0.13957000e+00
- 1 211 0 0 -0.73839246e+00 -0.19916107e+00 0.24570758e+03 0.13957000e+00
- 1 -2212 0 0 0.35265755e-01 0.22117897e+00 0.21349034e+03 0.93827000e+00
- 1 -211 0 0 0.23810362e-01 -0.21197501e-01 0.59355552e+02 0.13957000e+00
- 1 -321 0 0 -0.66058168e+00 -0.63149808e-01 0.11342910e+01 0.49360000e+00
- 1 211 0 0 0.96279787e-01 0.59585350e-01 0.55224430e+00 0.13957000e+00
- 1 130 0 0 0.25861856e+00 -0.23823126e+00 0.38632853e+00 0.49767000e+00
- 1 22 0 0 -0.28435818e+00 0.48900530e-01 0.34036423e+00 0.00000000e+00
- 1 22 0 0 -0.22278721e-01 0.36125221e-01 0.13518966e+00 0.00000000e+00
- 1 22 0 0 0.10290242e+00 -0.63795552e-01 -0.35814103e-01 0.00000000e+00
- 1 22 0 0 0.33211203e-01 -0.13592193e+00 0.57968963e-01 0.00000000e+00
- 1 -2112 0 0 -0.88817115e+00 0.82796835e+00 -0.27947740e+01 0.93957000e+00
- 1 -211 0 0 -0.37864053e+00 0.37030838e+00 -0.46512342e+00 0.13957000e+00
- 1 211 0 0 -0.67243820e+00 0.76724387e-01 -0.12485818e+01 0.13957000e+00
- 1 -211 0 0 -0.22343152e+00 0.51759073e+00 -0.49191894e+00 0.13957000e+00
- 1 2112 0 0 -0.66185284e+00 0.36391028e+00 -0.12188865e+02 0.93957000e+00
- 2 111 359 360 -0.26252482e+00 -0.26253903e+00 -0.31352402e+01 0.13498000e+00
- 1 22 0 0 -0.16807430e+00 -0.68044772e-01 -0.96686219e+00 0.00000000e+00
- 1 22 0 0 -0.26056436e+00 0.55470197e-01 -0.11766951e+01 0.00000000e+00
- 1 211 0 0 -0.16032410e+00 -0.20785141e+00 -0.50136908e+01 0.13957000e+00
- 1 -211 0 0 0.32239842e-01 -0.12203279e+00 -0.41300659e+01 0.13957000e+00
- 2 111 361 362 -0.10722728e+00 -0.42088480e+00 -0.60023529e+01 0.13498000e+00
- 2 111 363 364 -0.11346086e+00 -0.32772219e-01 -0.37066198e+01 0.13498000e+00
- 2 111 365 366 0.14988025e-01 -0.17519913e+00 -0.55256235e+01 0.13498000e+00
- 2 111 367 368 -0.18668179e+00 -0.37640553e+00 -0.12827452e+02 0.13498000e+00
- 1 22 0 0 -0.60307445e-01 -0.10320484e+00 -0.21327446e+01 0.00000000e+00
- 1 22 0 0 -0.18926212e+01 -0.19852478e+01 -0.50984120e+02 0.00000000e+00
- 1 -211 0 0 -0.34853303e+00 -0.53005512e+00 -0.88909032e+01 0.13957000e+00
- 2 111 369 370 -0.96217063e+00 -0.42523731e+01 -0.82467252e+02 0.13498000e+00
- 1 -2112 0 0 0.46232116e+00 -0.16170295e+01 -0.41898688e+02 0.93957000e+00
- 1 211 0 0 0.80442163e-01 -0.11828459e+01 -0.28714617e+02 0.13957000e+00
- 2 3122 371 372 0.11657851e+00 -0.10108290e+01 -0.58411015e+02 0.11156800e+01
- 2 111 373 374 0.24945952e+00 -0.55314807e+00 -0.28682103e+02 0.13498000e+00
- 1 321 0 0 0.72467759e+00 -0.60941009e+00 -0.47684146e+02 0.49360000e+00
- 2 111 375 376 0.36109082e+00 -0.55434190e-01 -0.41033607e+02 0.13498000e+00
- 1 -211 0 0 0.10067460e+01 -0.71251546e+00 -0.96865247e+02 0.13957000e+00
- 2 111 377 378 0.54957606e+00 -0.13482510e+00 -0.87892618e+02 0.13498000e+00
- 1 22 0 0 0.11238347e+00 -0.18410906e-01 -0.52430714e+01 0.00000000e+00
- 2 113 379 380 0.11878108e+01 -0.10156759e+01 -0.13091237e+03 0.87685663e+00
- 1 211 0 0 0.10301378e+00 -0.12790718e+00 -0.12775173e+02 0.13957000e+00
- 1 -211 0 0 0.43045054e+00 0.17594708e-01 -0.25032343e+02 0.13957000e+00
- 2 111 381 382 0.20981225e+00 0.33055885e+00 -0.15328196e+02 0.13498000e+00
- 1 211 0 0 0.52637740e+00 0.37280949e+00 -0.36500154e+02 0.13957000e+00
- 1 -211 0 0 -0.18855419e+00 0.89175915e+00 -0.33093911e+02 0.13957000e+00
- 1 211 0 0 -0.34893969e+00 -0.26870891e+00 -0.53544215e+01 0.13957000e+00
- 1 -211 0 0 0.16900006e+00 0.20779595e+00 -0.69136468e+01 0.13957000e+00
- 1 22 0 0 0.12934535e+00 -0.40896589e-01 -0.61646980e+00 0.00000000e+00
- 1 22 0 0 0.17805823e+00 0.86365465e-01 -0.61925321e+00 0.00000000e+00
- 1 211 0 0 -0.56619861e+00 0.35648144e+00 -0.89251322e+01 0.13957000e+00
- 1 -211 0 0 -0.16104828e+00 0.80754665e-01 -0.66351414e+01 0.13957000e+00
- 2 111 383 384 0.15818585e-01 0.71332815e-01 -0.54476266e+01 0.13498000e+00
- 1 22 0 0 0.10862915e+00 -0.14664747e+00 -0.50638034e+00 0.00000000e+00
- 1 22 0 0 0.53846863e-01 -0.29426984e+00 -0.56176081e+00 0.00000000e+00
- 1 -2212 0 0 -0.11992754e+01 0.15818991e+00 -0.63442356e+01 0.93827000e+00
- 2 111 385 386 -0.65725393e-01 -0.15336147e+00 -0.12794813e+01 0.13498000e+00
- 1 2112 0 0 -0.46007548e+00 -0.12547276e+01 -0.61518832e+01 0.93957000e+00
- 1 -211 0 0 0.53663821e-01 -0.10276536e+00 -0.74177170e+00 0.13957000e+00
- 1 211 0 0 -0.29905397e-01 -0.66443044e-01 -0.15040203e+01 0.13957000e+00
- 1 -211 0 0 -0.14207387e+00 -0.24270776e-01 -0.55895210e+00 0.13957000e+00
- 2 111 387 388 -0.65084768e+00 -0.32429829e+00 -0.19535788e+01 0.13498000e+00
- 1 -211 0 0 0.13798444e+00 -0.49984469e+00 -0.91110611e+01 0.13957000e+00
- 1 211 0 0 -0.32446948e-01 0.22296438e-01 -0.41027674e+01 0.13957000e+00
- 2 111 389 390 0.31035284e+00 -0.83664463e-01 -0.58413624e+01 0.13498000e+00
- 1 211 0 0 -0.40279079e-01 -0.39838624e-01 -0.18226112e+01 0.13957000e+00
- 1 -211 0 0 0.13110168e+00 0.33622903e+00 -0.14399090e+02 0.13957000e+00
- 2 111 391 392 0.97848919e-01 -0.13398629e+00 -0.61786823e+01 0.13498000e+00
- 1 22 0 0 0.96334846e-02 0.11405847e-01 0.47214243e-01 0.00000000e+00
- 1 22 0 0 -0.56805763e-01 0.93893699e-01 -0.68409950e-01 0.00000000e+00
- 1 211 0 0 0.33426014e-01 -0.12828287e+00 0.15241233e+01 0.13957000e+00
- 2 111 393 394 -0.20536603e+00 0.90185194e+00 0.95666518e+01 0.13498000e+00
- 1 22 0 0 0.97014772e-01 -0.30464937e-01 0.15861406e+01 0.00000000e+00
- 1 22 0 0 0.49138020e+00 0.14410562e+00 0.71478769e+01 0.00000000e+00
- 1 -211 0 0 -0.34353027e+00 0.49754831e+00 0.16020433e+02 0.13957000e+00
- 2 111 395 396 0.18703099e+00 0.18089672e+00 0.27468047e+01 0.13498000e+00
- 1 211 0 0 -0.16410520e+00 0.31396781e+00 0.93309347e+01 0.13957000e+00
- 1 -211 0 0 -0.52293091e+00 0.36267116e+00 0.68068968e+01 0.13957000e+00
- 2 111 397 398 -0.17356864e+00 0.30110887e+00 0.35330956e+01 0.13498000e+00
- 1 321 0 0 0.94543425e+00 0.70366861e+00 0.20597322e+02 0.49360000e+00
- 2 111 399 400 -0.20001218e-02 0.36440782e+00 0.12891486e+02 0.13498000e+00
- 2 -311 401 401 -0.49307291e+00 0.32533951e+00 0.22401628e+02 0.49767000e+00
- 2 111 402 403 0.39802247e-01 -0.20257242e+00 0.50571756e+01 0.13498000e+00
- 1 211 0 0 -0.61302559e-01 -0.45179758e+00 0.11080374e+02 0.13957000e+00
- 2 111 404 405 0.99324149e-01 -0.67703316e-01 0.25018203e+00 0.13498000e+00
- 1 211 0 0 0.18154042e+00 -0.41215439e+00 0.50885381e+00 0.13957000e+00
- 1 -211 0 0 -0.80387376e-01 -0.66154614e-01 -0.24224184e-01 0.13957000e+00
- 2 111 406 407 -0.47596800e-02 -0.18648407e+00 0.53347529e+00 0.13498000e+00
- 1 211 0 0 0.21302695e+00 -0.45448985e+00 -0.35427504e+00 0.13957000e+00
- 1 -211 0 0 0.47095288e-01 -0.95548449e-01 0.55442641e-01 0.13957000e+00
- 2 111 408 409 0.10001726e+00 -0.98884044e+00 -0.31205208e+00 0.13498000e+00
- 1 -211 0 0 0.45967012e-01 -0.17601589e+00 -0.23740921e+00 0.13957000e+00
- 2 111 410 411 -0.48321790e+00 -0.10599337e+01 0.45895013e+00 0.13498000e+00
- 2 311 412 412 -0.63639630e-01 -0.83861896e+00 -0.72642923e+00 0.49767000e+00
- 1 211 0 0 -0.98187205e-02 -0.27357946e+00 0.12894984e+00 0.13957000e+00
- 1 -321 0 0 0.50718724e+00 -0.10875450e+00 0.41044284e-01 0.49360000e+00
- 1 211 0 0 -0.59321806e-01 0.58079180e-01 -0.13767584e+00 0.13957000e+00
- 1 -211 0 0 0.17429736e-01 -0.30620432e+00 0.12281990e+01 0.13957000e+00
- 1 211 0 0 0.20892360e+00 0.61795462e-01 0.38862458e+00 0.13957000e+00
- 2 111 413 414 -0.13144749e+00 0.60367110e-02 0.59149968e+00 0.13498000e+00
- 1 22 0 0 -0.20651660e+00 -0.21381211e-01 -0.21971779e+00 0.00000000e+00
- 1 22 0 0 -0.12409113e+01 -0.42908836e+00 -0.11705590e+01 0.00000000e+00
- 1 22 0 0 0.22613096e+00 0.12008541e+00 -0.19621111e+00 0.00000000e+00
- 1 22 0 0 0.27792492e+00 0.50658292e-02 -0.28685066e+00 0.00000000e+00
- 1 22 0 0 -0.21901263e-01 0.14929212e-01 -0.71506609e-01 0.00000000e+00
- 1 22 0 0 0.20357905e+00 0.11268119e+00 -0.48825967e+00 0.00000000e+00
- 1 130 0 0 0.23050099e+00 0.73003007e+00 -0.91289320e+00 0.49767000e+00
- 1 211 0 0 0.59963144e+00 0.11297553e+01 -0.26657709e+01 0.13957000e+00
- 1 -211 0 0 -0.13356339e-02 0.18086107e+00 -0.65964603e+00 0.13957000e+00
- 1 22 0 0 -0.67506991e-01 -0.15598279e+00 -0.10450563e+01 0.00000000e+00
- 1 22 0 0 -0.31098136e-01 0.26318843e-01 -0.31514490e+00 0.00000000e+00
- 1 22 0 0 -0.48554772e-01 -0.25938798e+00 -0.15622725e+03 0.00000000e+00
- 1 22 0 0 0.80949121e-01 -0.20051712e+00 -0.13683545e+03 0.00000000e+00
- 1 22 0 0 -0.11811766e+01 -0.27547492e+00 0.80967490e-01 0.00000000e+00
- 1 22 0 0 -0.17605270e+00 -0.67965998e-01 0.59741684e-01 0.00000000e+00
- 1 22 0 0 -0.73886534e+00 -0.13975595e+00 -0.95758199e-01 0.00000000e+00
- 1 22 0 0 -0.96505691e-02 -0.19942192e-01 0.91009573e-02 0.00000000e+00
- 1 22 0 0 -0.86221149e-01 -0.14209429e-01 0.52903924e-01 0.00000000e+00
- 1 22 0 0 -0.47486767e-01 -0.33032907e-02 -0.76500484e-01 0.00000000e+00
- 1 22 0 0 -0.97234573e-01 0.77219206e-01 0.21043831e+01 0.00000000e+00
- 1 22 0 0 -0.22020654e+00 -0.27989771e-01 0.29576868e+01 0.00000000e+00
- 1 22 0 0 0.82328820e-01 -0.57595479e-01 0.26888190e+01 0.00000000e+00
- 1 22 0 0 -0.17390934e-01 -0.34457531e-02 0.52927708e-01 0.00000000e+00
- 1 22 0 0 -0.11106182e+00 0.37344875e-01 0.14886753e+01 0.00000000e+00
- 1 22 0 0 -0.11393204e+00 0.20605805e-02 0.48827763e+00 0.00000000e+00
- 2 111 415 416 0.15656744e+00 -0.11881852e+00 0.70535330e+01 0.13498000e+00
- 2 111 417 418 0.72321781e+00 0.17141916e+00 0.34977889e+02 0.13498000e+00
- 1 130 0 0 0.12616049e+01 -0.70045748e+00 0.55164417e+02 0.49767000e+00
- 1 22 0 0 0.10168317e+00 -0.64636487e-01 0.13504537e+01 0.00000000e+00
- 1 22 0 0 0.11704943e+00 0.38103860e-01 0.27658222e+01 0.00000000e+00
- 1 22 0 0 -0.12239746e+00 0.13991884e-02 0.50880288e+00 0.00000000e+00
- 1 22 0 0 -0.14777455e+00 -0.11019681e+00 0.14389499e+01 0.00000000e+00
- 1 22 0 0 -0.96009691e-01 0.11843540e-01 0.13102399e+03 0.00000000e+00
- 1 22 0 0 -0.56834084e+00 -0.20931725e+00 0.11042408e+04 0.00000000e+00
- 1 22 0 0 0.21111786e-01 -0.74309139e-01 0.27170937e+02 0.00000000e+00
- 1 22 0 0 0.24589558e+00 -0.27081576e+00 0.24626584e+03 0.00000000e+00
- 1 22 0 0 -0.12481315e+00 -0.17334346e+00 -0.22152750e+01 0.00000000e+00
- 1 22 0 0 -0.13771168e+00 -0.89195576e-01 -0.91996521e+00 0.00000000e+00
- 1 22 0 0 -0.12659199e+00 -0.38224637e+00 -0.49626080e+01 0.00000000e+00
- 1 22 0 0 0.19364712e-01 -0.38638427e-01 -0.10397449e+01 0.00000000e+00
- 1 22 0 0 -0.14169982e+00 -0.31296356e-01 -0.33803901e+01 0.00000000e+00
- 1 22 0 0 0.28238962e-01 -0.14758630e-02 -0.32622971e+00 0.00000000e+00
- 1 22 0 0 0.42124267e-01 -0.78743695e-02 -0.19011947e+01 0.00000000e+00
- 1 22 0 0 -0.27136242e-01 -0.16732476e+00 -0.36244287e+01 0.00000000e+00
- 1 22 0 0 -0.16295221e+00 -0.20926791e+00 -0.89234187e+01 0.00000000e+00
- 1 22 0 0 -0.23729580e-01 -0.16713762e+00 -0.39040334e+01 0.00000000e+00
- 1 22 0 0 -0.14640845e+00 -0.47198919e+00 -0.90022718e+01 0.00000000e+00
- 1 22 0 0 -0.81576217e+00 -0.37803839e+01 -0.73464980e+02 0.00000000e+00
- 1 2212 0 0 0.78526954e-01 -0.76431756e+00 -0.49832407e+02 0.93827000e+00
- 1 -211 0 0 0.38051559e-01 -0.24651144e+00 -0.85786082e+01 0.13957000e+00
- 1 22 0 0 0.17329487e+00 -0.31081366e+00 -0.19384065e+02 0.00000000e+00
- 1 22 0 0 0.76164651e-01 -0.24233441e+00 -0.92980376e+01 0.00000000e+00
- 1 22 0 0 0.21586586e+00 -0.44077467e-01 -0.31097591e+02 0.00000000e+00
- 1 22 0 0 0.14522496e+00 -0.11356723e-01 -0.99360160e+01 0.00000000e+00
- 1 22 0 0 0.46991958e+00 -0.15335600e+00 -0.79116370e+02 0.00000000e+00
- 1 22 0 0 0.79656479e-01 0.18530898e-01 -0.87762479e+01 0.00000000e+00
- 1 211 0 0 0.49158402e+00 -0.56399228e-01 -0.60183563e+02 0.13957000e+00
- 1 -211 0 0 0.69622678e+00 -0.95927667e+00 -0.70728809e+02 0.13957000e+00
- 1 22 0 0 0.19915352e+00 0.31878921e+00 -0.12737632e+02 0.00000000e+00
- 1 22 0 0 0.10658736e-01 0.11769646e-01 -0.25905645e+01 0.00000000e+00
- 1 22 0 0 -0.14641880e-01 0.96680157e-01 -0.47713113e+01 0.00000000e+00
- 1 22 0 0 0.30460466e-01 -0.25347342e-01 -0.67631527e+00 0.00000000e+00
- 1 22 0 0 0.42986111e-02 0.23763027e-01 -0.14552553e+00 0.00000000e+00
- 1 22 0 0 -0.70024004e-01 -0.17712450e+00 -0.11339557e+01 0.00000000e+00
- 1 22 0 0 0.48615947e-02 -0.12451093e-01 -0.30333828e-01 0.00000000e+00
- 1 22 0 0 -0.65570927e+00 -0.31184720e+00 -0.19232450e+01 0.00000000e+00
- 1 22 0 0 -0.18624586e-02 -0.29137741e-01 -0.72411238e+00 0.00000000e+00
- 1 22 0 0 0.31221530e+00 -0.54526722e-01 -0.51172500e+01 0.00000000e+00
- 1 22 0 0 0.86570860e-01 -0.73831016e-01 -0.19875537e+01 0.00000000e+00
- 1 22 0 0 0.11278058e-01 -0.60155279e-01 -0.41911287e+01 0.00000000e+00
- 1 22 0 0 -0.54302681e-01 0.48741717e+00 0.46383679e+01 0.00000000e+00
- 1 22 0 0 -0.15106335e+00 0.41443477e+00 0.49282839e+01 0.00000000e+00
- 1 22 0 0 0.61831731e-01 0.43914061e-01 0.14942654e+01 0.00000000e+00
- 1 22 0 0 0.12519926e+00 0.13698266e+00 0.12525393e+01 0.00000000e+00
- 1 22 0 0 -0.15060043e+00 0.27043207e+00 0.25267997e+01 0.00000000e+00
- 1 22 0 0 -0.22968213e-01 0.30676796e-01 0.10062959e+01 0.00000000e+00
- 1 22 0 0 -0.18765935e-01 0.33830038e+00 0.10096145e+02 0.00000000e+00
- 1 22 0 0 0.16765813e-01 0.26107439e-01 0.27953415e+01 0.00000000e+00
- 1 130 0 0 -0.49307291e+00 0.32533951e+00 0.22401628e+02 0.49767000e+00
- 1 22 0 0 -0.29021590e-01 -0.29262996e-01 0.36715202e+00 0.00000000e+00
- 1 22 0 0 0.68823836e-01 -0.17330942e+00 0.46900236e+01 0.00000000e+00
- 1 22 0 0 0.26103245e-01 -0.93241157e-01 0.17834633e+00 0.00000000e+00
- 1 22 0 0 0.73220904e-01 0.25537841e-01 0.71835696e-01 0.00000000e+00
- 1 22 0 0 -0.25399549e-01 -0.11627126e+00 0.46784224e+00 0.00000000e+00
- 1 22 0 0 0.20639869e-01 -0.70212804e-01 0.65633048e-01 0.00000000e+00
- 1 22 0 0 0.54312974e-01 -0.82636186e+00 -0.21445914e+00 0.00000000e+00
- 1 22 0 0 0.45704291e-01 -0.16247858e+00 -0.97592942e-01 0.00000000e+00
- 1 22 0 0 -0.23042004e-01 -0.94103611e-02 0.17251667e-01 0.00000000e+00
- 1 22 0 0 -0.46017590e+00 -0.10505233e+01 0.44169846e+00 0.00000000e+00
- 2 310 419 420 -0.63639630e-01 -0.83861896e+00 -0.72642923e+00 0.49767000e+00
- 1 22 0 0 -0.76478078e-01 -0.43074423e-01 0.15496617e+00 0.00000000e+00
- 1 22 0 0 -0.54969415e-01 0.49111134e-01 0.43653350e+00 0.00000000e+00
- 1 22 0 0 0.35055019e-01 -0.58770915e-01 0.44311817e+01 0.00000000e+00
- 1 22 0 0 0.12151242e+00 -0.60047606e-01 0.26223512e+01 0.00000000e+00
- 1 22 0 0 0.95667163e-01 -0.20206322e-01 0.38500246e+01 0.00000000e+00
- 1 22 0 0 0.62755065e+00 0.19162548e+00 0.31127864e+02 0.00000000e+00
- 1 211 0 0 0.15001627e+00 -0.21916147e+00 -0.29525351e+00 0.13957000e+00
- 1 -211 0 0 -0.21365590e+00 -0.61945749e+00 -0.43117572e+00 0.13957000e+00
- 1092
- 2 25 2 3 -0.23433162e+02 -0.31412256e+01 -0.20786264e+03 0.12500126e+03
- 2 23 4 6 -0.12235316e+02 0.16547831e+02 -0.13235367e+03 0.88856063e+02
- 2 23 7 9 -0.11197846e+02 -0.19689056e+02 -0.75508972e+02 0.25858955e+02
- 1 13 0 0 -0.19671631e+02 0.49883535e+02 -0.58438322e+02 0.10566000e+00
- 1 -13 0 0 0.74325036e+01 -0.33318934e+02 -0.73878239e+02 0.10566000e+00
- 1 22 0 0 0.38115683e-02 -0.16770272e-01 -0.37107145e-01 0.00000000e+00
- 1 -13 0 0 -0.16868355e+02 -0.10633203e+02 -0.64956607e+02 0.10566000e+00
- 1 13 0 0 0.56701010e+01 -0.90553532e+01 -0.10551654e+02 0.10566000e+00
- 1 22 0 0 0.40832631e-03 -0.50025804e-03 -0.71135453e-03 0.00000000e+00
- 2 2 149 149 -0.20191972e+01 0.83303402e+00 -0.14059566e+02 0.00000000e+00
- 2 21 149 149 -0.13668065e+01 0.75594127e+00 -0.66359109e+01 0.00000000e+00
- 2 21 149 149 -0.19576288e+01 0.34104670e+00 -0.95448793e+01 0.00000000e+00
- 2 21 149 149 -0.18154001e+01 -0.71604011e-01 -0.70203713e+01 0.00000000e+00
- 2 -2 149 149 0.20191972e+01 -0.83303402e+00 0.63385080e+00 0.00000000e+00
- 2 3 155 155 -0.86985449e+00 -0.38242939e+00 0.28246797e+03 0.00000000e+00
- 2 21 155 155 -0.68373757e+00 -0.25601298e+00 0.22999500e+03 0.00000000e+00
- 2 -3 155 155 0.86985449e+00 0.38242939e+00 0.43194969e+01 0.00000000e+00
- 2 2101 162 162 -0.74805967e+00 -0.13587411e+01 0.16508865e+04 0.57933000e+00
- 2 21 162 162 -0.32273275e+00 -0.28717033e+00 0.77000390e+00 0.00000000e+00
- 2 21 162 162 0.60576379e+01 -0.23364676e+01 0.14364120e+02 0.00000000e+00
- 2 21 162 162 -0.54294049e+00 -0.16006970e+00 -0.41612396e+00 0.00000000e+00
- 2 21 162 162 0.13973683e+01 0.84226196e+00 0.15354289e+02 0.00000000e+00
- 2 21 162 162 0.68373757e+00 0.25601298e+00 0.48405004e+01 0.00000000e+00
- 2 21 162 162 0.29878837e+01 0.20731782e+01 0.21074108e+02 0.00000000e+00
- 2 21 162 162 -0.39755323e+00 0.32091682e+01 0.56495926e+01 0.00000000e+00
- 2 21 162 162 -0.86154446e-01 0.83275309e+00 0.98662058e+00 0.00000000e+00
- 2 21 162 162 0.14778056e+02 0.51628549e+02 0.21669883e+02 0.00000000e+00
- 2 21 162 162 0.10178507e+01 0.46789809e+01 0.45055155e+00 0.00000000e+00
- 2 21 162 162 0.13801583e+01 0.32579330e+01 -0.46391014e+00 0.00000000e+00
- 2 21 162 162 0.89298578e+01 0.20107941e+01 -0.38644620e+01 0.00000000e+00
- 2 21 162 162 0.23616403e+01 -0.75709765e+00 -0.12965995e+01 0.00000000e+00
- 2 21 162 162 0.60745438e+01 -0.15709795e+01 -0.20620596e+01 0.00000000e+00
- 2 21 162 162 0.19576288e+01 -0.34104670e+00 -0.26940487e+00 0.00000000e+00
- 2 21 162 162 0.35087343e+01 -0.16406105e+01 0.93542419e+00 0.00000000e+00
- 2 21 162 162 0.76323207e+00 -0.92240224e+00 -0.36138323e+00 0.00000000e+00
- 2 21 162 162 0.39755323e+00 -0.32091682e+01 -0.21870136e+01 0.00000000e+00
- 2 21 162 162 0.13163964e+01 0.43682344e+00 -0.14834588e+01 0.00000000e+00
- 2 21 162 162 0.18154001e+01 0.71604011e-01 -0.30168072e+01 0.00000000e+00
- 2 21 162 162 0.46379913e+01 0.11795334e+01 -0.10038547e+02 0.00000000e+00
- 2 21 162 162 0.73383154e+00 0.31769920e+00 -0.16110303e+01 0.00000000e+00
- 2 21 162 162 0.10398611e+01 0.78421377e+00 -0.39923317e+01 0.00000000e+00
- 2 21 162 162 0.15210241e+01 0.28540059e+01 -0.54273054e+01 0.00000000e+00
- 2 21 162 162 0.18927834e+01 0.35813303e+01 -0.10547077e+02 0.00000000e+00
- 2 21 162 162 0.52608860e-01 0.11962074e+01 -0.27489025e+01 0.00000000e+00
- 2 21 162 162 -0.20981320e+00 0.75145228e+00 -0.17964190e+01 0.00000000e+00
- 2 21 162 162 -0.73214663e+00 0.28975380e+01 -0.55975028e+01 0.00000000e+00
- 2 21 162 162 -0.58696369e+00 0.25356660e+01 -0.21960839e+01 0.00000000e+00
- 2 21 162 162 0.20981320e+00 -0.75145228e+00 -0.16479826e+01 0.00000000e+00
- 2 21 162 162 0.34190041e+01 -0.53856245e+01 -0.37649408e+02 0.00000000e+00
- 2 21 162 162 0.25298723e+01 -0.22176168e+01 -0.31218417e+02 0.00000000e+00
- 2 21 162 162 0.28467469e+01 -0.34373946e+01 -0.53946575e+02 0.00000000e+00
- 2 21 162 162 0.68093307e+01 -0.27272432e+01 -0.11257115e+03 0.00000000e+00
- 2 21 162 162 0.38202823e+01 0.53067824e+00 -0.87303596e+02 0.00000000e+00
- 2 21 162 162 0.17801984e+00 -0.24927974e+01 -0.24925323e+02 0.00000000e+00
- 2 21 162 162 0.53778692e+00 -0.38095991e+01 -0.55443577e+02 0.00000000e+00
- 2 21 162 162 -0.18927834e+01 -0.35813303e+01 -0.81966964e+02 0.00000000e+00
- 2 21 162 162 -0.93682580e+00 0.64139590e-01 -0.21755556e+02 0.00000000e+00
- 2 21 162 162 -0.13163964e+01 -0.43682344e+00 -0.90947308e+02 0.00000000e+00
- 2 21 162 162 -0.24425584e+01 0.97370254e+00 -0.29737438e+03 0.00000000e+00
- 2 21 162 162 -0.68093307e+01 0.27272432e+01 -0.18675224e+04 0.00000000e+00
- 2 21 162 162 -0.17801984e+00 0.24927974e+01 -0.27802617e+03 0.00000000e+00
- 2 21 162 162 0.24425584e+01 -0.97370254e+00 -0.46147812e+03 0.00000000e+00
- 2 21 162 162 0.12321325e+01 0.13923217e+01 -0.31893607e+02 0.00000000e+00
- 2 21 162 162 0.12754153e+01 0.71148556e+00 -0.13549196e+02 0.00000000e+00
- 2 21 162 162 0.90315781e+00 0.74031647e+00 -0.62803198e+01 0.00000000e+00
- 2 21 162 162 0.15245477e+01 0.18223806e+01 -0.18537333e+02 0.00000000e+00
- 2 21 162 162 0.20564652e+01 0.41217063e+01 -0.40636227e+02 0.00000000e+00
- 2 21 162 162 -0.53778692e+00 0.38095991e+01 -0.33115907e+02 0.00000000e+00
- 2 21 162 162 -0.44594130e+00 0.13384743e+01 -0.59196062e+01 0.00000000e+00
- 2 21 162 162 -0.29878837e+01 -0.20731782e+01 -0.43826073e+02 0.00000000e+00
- 2 21 162 162 -0.31100371e+00 -0.52859508e+00 -0.94513851e+01 0.00000000e+00
- 2 21 162 162 -0.15608984e+00 -0.89788889e+00 -0.13029951e+02 0.00000000e+00
- 2 21 162 162 0.22133334e+01 -0.45418478e+01 -0.14008442e+03 0.00000000e+00
- 2 21 162 162 0.11551053e+01 0.46847591e+00 -0.19352145e+02 0.00000000e+00
- 2 21 162 162 0.40509084e+00 0.40040906e+00 -0.66476621e+02 0.00000000e+00
- 2 21 162 162 0.39469139e+00 0.13270574e+01 -0.19400205e+03 0.00000000e+00
- 2 2 162 162 -0.19800733e+00 0.62729090e+00 -0.17887504e+02 0.33000000e+00
- 2 2 282 282 -0.74181091e+00 -0.62214659e+00 0.12884617e+03 0.33000000e+00
- 2 21 282 282 0.98726745e+00 0.22076577e+01 0.97441654e+02 0.00000000e+00
- 2 21 282 282 -0.41751792e+00 0.10174311e+01 0.64961108e+01 0.00000000e+00
- 2 21 282 282 -0.25576598e-01 -0.24695805e+01 0.50948113e+02 0.00000000e+00
- 2 21 282 282 0.11296655e+00 -0.11938345e+01 0.84009066e+02 0.00000000e+00
- 2 21 282 282 0.12500291e+00 0.13541320e+00 0.30380209e+01 0.00000000e+00
- 2 21 282 282 0.96940360e-03 0.97657966e+00 0.12250144e+02 0.00000000e+00
- 2 21 282 282 0.12310916e+00 0.30992470e+00 0.38893115e+01 0.00000000e+00
- 2 21 282 282 -0.43592902e+00 -0.70089286e+00 0.16188903e+01 0.00000000e+00
- 2 21 282 282 -0.34190041e+01 0.53856245e+01 0.83132256e+02 0.00000000e+00
- 2 21 282 282 0.15855451e-01 0.51591792e+00 0.21604237e+02 0.00000000e+00
- 2 21 282 282 -0.31890591e-01 0.11693383e+01 0.77659128e+02 0.00000000e+00
- 2 21 282 282 -0.22341248e+01 0.15548112e+01 0.30669269e+03 0.00000000e+00
- 2 21 282 282 -0.57458013e+00 0.19363297e+01 0.50358658e+03 0.00000000e+00
- 2 21 282 282 -0.95754012e+00 0.20137900e-01 0.52192722e+03 0.00000000e+00
- 2 21 282 282 0.93682580e+00 -0.64139590e-01 0.65243634e+03 0.00000000e+00
- 2 21 282 282 0.57458013e+00 -0.19363297e+01 0.70388925e+03 0.00000000e+00
- 2 21 282 282 -0.13973683e+01 -0.84226196e+00 0.34343006e+03 0.00000000e+00
- 2 21 282 282 -0.13801583e+01 -0.32579330e+01 0.25511678e+03 0.00000000e+00
- 2 21 282 282 0.86154446e-01 -0.83275309e+00 0.71478529e+02 0.00000000e+00
- 2 21 282 282 0.95754012e+00 -0.20137900e-01 0.42056812e+02 0.00000000e+00
- 2 21 282 282 -0.46379913e+01 -0.11795334e+01 0.37006906e+02 0.00000000e+00
- 2 21 282 282 -0.89298578e+01 -0.20107941e+01 0.55631434e+02 0.00000000e+00
- 2 21 282 282 0.73214663e+00 -0.28975380e+01 0.93550085e+00 0.00000000e+00
- 2 21 282 282 -0.15855451e-01 -0.51591792e+00 0.68814743e-01 0.00000000e+00
- 2 21 282 282 -0.10178507e+01 -0.46789809e+01 0.11537848e+01 0.00000000e+00
- 2 21 282 282 -0.12321325e+01 -0.13923217e+01 -0.33718183e-01 0.00000000e+00
- 2 21 282 282 -0.90315781e+00 -0.74031647e+00 -0.41316857e+00 0.00000000e+00
- 2 21 282 282 -0.73383154e+00 -0.31769920e+00 -0.51285614e+00 0.00000000e+00
- 2 21 282 282 -0.15245477e+01 -0.18223806e+01 -0.11472267e+01 0.00000000e+00
- 2 21 282 282 -0.38202823e+01 -0.53067824e+00 0.19738172e+01 0.00000000e+00
- 2 21 282 282 -0.28467469e+01 0.34373946e+01 -0.19859135e+01 0.00000000e+00
- 2 21 282 282 -0.76323207e+00 0.92240224e+00 -0.72877968e+00 0.00000000e+00
- 2 21 282 282 -0.24606356e+01 0.96393956e+00 -0.95647558e+00 0.00000000e+00
- 2 21 282 282 -0.60745438e+01 0.15709795e+01 -0.62401802e+01 0.00000000e+00
- 2 21 282 282 -0.23616403e+01 0.75709765e+00 -0.27669892e+01 0.00000000e+00
- 2 21 282 282 -0.35087343e+01 0.16406105e+01 -0.70204729e+01 0.00000000e+00
- 2 21 282 282 -0.10398611e+01 -0.78421377e+00 -0.46064706e+01 0.00000000e+00
- 2 21 282 282 -0.14778056e+02 -0.51628549e+02 -0.19205977e+03 0.00000000e+00
- 2 21 282 282 -0.20564652e+01 -0.41217063e+01 -0.27887012e+02 0.00000000e+00
- 2 21 282 282 -0.15210241e+01 -0.28540059e+01 -0.24443565e+02 0.00000000e+00
- 2 21 282 282 -0.12754153e+01 -0.71148556e+00 -0.93153818e+01 0.00000000e+00
- 2 21 282 282 -0.15012742e+00 -0.27375116e+00 -0.37202790e+00 0.00000000e+00
- 2 21 282 282 0.66344446e+00 0.11349293e+01 -0.50989776e+01 0.00000000e+00
- 2 21 282 282 0.79406485e+01 0.53458716e+01 -0.46654176e+02 0.00000000e+00
- 2 21 282 282 0.73791900e+01 0.60018829e+01 -0.39128870e+02 0.00000000e+00
- 2 21 282 282 0.65084788e+00 0.70136727e+00 -0.31090406e+01 0.00000000e+00
- 2 21 282 282 0.55538160e+00 0.55125432e+00 -0.12040202e+02 0.00000000e+00
- 2 21 282 282 -0.35551101e+00 -0.33388062e+00 -0.10358904e+02 0.00000000e+00
- 2 21 282 282 0.18955406e+00 -0.75247840e-01 -0.16050649e+01 0.00000000e+00
- 2 21 282 282 -0.50612103e-01 0.83007566e+00 -0.14722191e+02 0.00000000e+00
- 2 21 282 282 -0.13217810e+01 -0.29356068e+01 -0.28717779e+03 0.00000000e+00
- 2 2103 282 282 0.25662098e+00 -0.17867371e+00 -0.17418316e+04 0.77133000e+00
- 2 21 385 385 0.26413497e+01 -0.29788017e+01 0.12472824e+02 0.00000000e+00
- 2 21 385 385 0.22341248e+01 -0.15548112e+01 0.98822184e+01 0.00000000e+00
- 2 21 385 385 0.24606356e+01 -0.96393956e+00 0.96286160e+01 0.00000000e+00
- 2 21 385 385 -0.25298723e+01 0.22176168e+01 0.12610668e+01 0.00000000e+00
- 2 21 385 385 -0.26413497e+01 0.29788017e+01 0.43654408e+00 0.00000000e+00
- 2 21 385 385 0.13668065e+01 -0.75594127e+00 0.22704150e+01 0.00000000e+00
- 2 21 385 385 -0.52608860e-01 -0.11962074e+01 0.18560383e+01 0.00000000e+00
- 2 21 385 385 0.44594130e+00 -0.13384743e+01 0.23900062e+01 0.00000000e+00
- 2 21 398 398 0.22695143e+01 0.17335487e+01 0.30717746e+01 0.00000000e+00
- 2 21 398 398 0.31890591e-01 -0.11693383e+01 0.58933920e+01 0.00000000e+00
- 2 21 398 398 0.58696369e+00 -0.25356660e+01 0.37814604e+02 0.00000000e+00
- 2 21 398 398 -0.22695143e+01 -0.17335487e+01 0.13106275e+03 0.00000000e+00
- 2 21 414 414 0.48478678e+00 0.90073521e+00 -0.38877117e+01 0.00000000e+00
- 2 21 414 414 -0.48478678e+00 -0.90073521e+00 -0.90961588e+01 0.00000000e+00
- 2 21 417 417 0.22392415e+00 -0.90887424e+00 0.35618367e+03 0.00000000e+00
- 2 21 417 417 -0.22392415e+00 0.90887424e+00 0.22319479e+02 0.00000000e+00
- 2 21 421 421 -0.78027449e-01 0.59821329e+00 -0.16474268e+01 0.00000000e+00
- 2 21 421 421 0.78027449e-01 -0.59821329e+00 -0.82686293e-01 0.00000000e+00
- 2 92 150 154 -0.51398354e+01 0.10253840e+01 -0.36626876e+02 0.16024670e+02
- 2 113 424 425 -0.25996220e+01 0.37805145e+00 -0.13672477e+02 0.87258566e+00
- 1 321 0 0 -0.31950068e+01 0.14769727e+01 -0.19087911e+02 0.49360000e+00
- 2 333 426 427 -0.11511257e+01 -0.10402364e+00 -0.42129383e+01 0.10196954e+01
- 2 -311 428 428 0.16364680e+01 -0.40920203e+00 0.32362948e+00 0.49767000e+00
- 2 -213 429 430 0.16945120e+00 -0.31641453e+00 0.22820415e-01 0.57812435e+00
- 2 92 156 161 -0.68373757e+00 -0.25601298e+00 0.51678247e+03 0.10443851e+02
- 2 -311 431 431 -0.75223716e+00 0.22330121e+00 0.17647025e+03 0.49767000e+00
- 2 223 432 434 0.10494352e+00 -0.28539911e+00 0.59436919e+02 0.74093482e+00
- 1 -211 0 0 -0.10043682e+01 0.45151915e-02 0.24694875e+03 0.13957000e+00
- 1 211 0 0 0.50031383e+00 -0.42707337e+00 0.10825158e+02 0.13957000e+00
- 2 223 435 437 0.23233634e-01 0.25803676e+00 0.14033768e+02 0.78110905e+00
- 2 313 438 439 0.44437677e+00 -0.29393668e-01 0.90676203e+01 0.85538526e+00
- 2 92 163 281 0.77420142e+02 0.62504935e+02 -0.24802141e+04 0.54960444e+04
- 1 2112 0 0 0.70720178e-01 -0.26453530e+00 0.63173831e+03 0.93957000e+00
- 2 -3122 440 441 -0.51108151e+00 -0.10553717e+01 0.72038148e+03 0.11156800e+01
- 2 3222 442 443 -0.92125788e-01 0.25074149e+00 0.24174983e+03 0.11893700e+01
- 2 113 444 445 -0.18435637e+00 -0.13238173e+00 0.24276628e+02 0.87721371e+00
- 2 -323 446 447 0.30144528e+00 -0.39858672e+00 0.21784522e+02 0.90162612e+00
- 2 323 448 449 0.21068418e-01 -0.16562804e+00 0.64812838e+01 0.89889418e+00
- 2 -323 450 451 0.37895301e+00 -0.30548001e+00 0.37349231e+01 0.88397530e+00
- 1 321 0 0 0.26677625e+00 0.16346252e+00 0.40117590e+01 0.49360000e+00
- 2 113 452 453 0.17842076e+01 -0.61013394e+00 0.34733089e+01 0.88516904e+00
- 2 223 454 456 0.42628081e+00 -0.27466914e+00 0.21638014e+01 0.78364314e+00
- 2 -2224 457 458 0.39346094e+00 -0.30080186e+00 0.14461807e+01 0.12383745e+01
- 2 111 459 460 -0.21840648e-01 -0.47180305e+00 0.72566267e+00 0.13498000e+00
- 2 2224 461 462 0.23153493e+01 -0.30545029e+00 0.84411963e+01 0.12589234e+01
- 1 -321 0 0 -0.42140208e+00 -0.91469352e-01 0.11347156e+01 0.49360000e+00
- 2 323 463 464 0.80356777e+00 0.72641605e+00 0.47649534e+01 0.87423736e+00
- 1 -211 0 0 0.95691227e+00 0.20680779e+00 0.41214465e+01 0.13957000e+00
- 2 213 465 466 0.12646515e+00 0.13092672e+00 0.37646889e+01 0.73997100e+00
- 2 -2114 467 468 0.49015415e+00 0.71473259e+00 0.33354920e+01 0.12243469e+01
- 1 -211 0 0 0.25456691e+00 0.56282420e+00 0.93446286e+01 0.13957000e+00
- 1 2112 0 0 0.19995226e+01 0.16496790e+01 0.11029014e+02 0.93957000e+00
- 2 113 469 470 0.31734345e+00 0.73012486e+00 0.50145753e+00 0.51369197e+00
- 2 213 471 472 -0.59695345e+00 0.33173572e+01 0.49546279e+01 0.77658849e+00
- 1 -2212 0 0 0.37709579e+01 0.10162036e+02 0.48756547e+01 0.93827000e+00
- 1 2112 0 0 0.77281457e+00 0.48858547e+01 0.20251614e+01 0.93957000e+00
- 2 221 473 475 0.14736975e+01 0.54315910e+01 0.24238529e+01 0.54745000e+00
- 2 113 476 477 0.44127993e+01 0.14172345e+02 0.54477762e+01 0.81964589e+00
- 1 211 0 0 0.10152459e+01 0.55675400e+01 0.20366162e+01 0.13957000e+00
- 2 113 478 479 0.10040079e+01 0.33220611e+01 0.12059557e+01 0.62988814e+00
- 2 -213 480 481 0.23102620e+01 0.61508343e+01 0.20237122e+01 0.73262818e+00
- 2 213 482 483 0.54789729e+00 0.25326613e+01 0.60481341e+00 0.85653866e+00
- 2 111 484 485 -0.96847844e-01 0.10574151e+00 0.16620221e+00 0.13498000e+00
- 2 113 486 487 0.85205682e+00 0.20965023e+01 0.85959358e+00 0.75089434e+00
- 2 223 488 490 0.67942828e+00 0.16919419e+01 -0.30722960e+00 0.78419560e+00
- 2 221 491 493 0.16702261e+01 0.50026028e+00 0.17484778e+00 0.54745000e+00
- 2 113 494 495 0.23041008e+01 0.11118965e+01 -0.16851128e+01 0.79714484e+00
- 2 -323 496 497 0.12682693e+01 0.26226006e+00 -0.14232677e+00 0.88368407e+00
- 2 323 498 499 0.41395804e+00 0.41934128e+00 -0.56994662e+00 0.87613499e+00
- 2 113 500 501 0.23651992e+01 0.86371964e+00 -0.33680315e+00 0.92174745e+00
- 1 -321 0 0 0.55290202e+01 -0.10972570e+01 -0.21573682e+01 0.49360000e+00
- 2 323 502 503 0.30280128e+01 0.70623663e+00 -0.63031491e+00 0.95676611e+00
- 2 -213 504 505 0.30560217e+01 -0.17239733e+01 -0.69573760e+00 0.74873140e+00
- 2 223 506 508 0.55600200e+00 -0.24539271e+00 -0.18709433e+00 0.77906317e+00
- 2 113 509 510 0.18799139e+01 -0.12499454e+01 -0.10602276e+01 0.71380434e+00
- 1 211 0 0 0.26102324e-01 0.42728275e-01 0.68532144e-01 0.13957000e+00
- 2 113 511 512 0.12352913e+01 -0.85580552e+00 0.25131240e+00 0.74555438e+00
- 2 223 513 515 0.54538655e+00 -0.71158968e+00 -0.63009062e+00 0.85890235e+00
- 2 -213 516 517 0.12255809e+01 -0.99955752e+00 -0.10574289e+01 0.82036555e+00
- 2 113 518 519 0.98291417e-01 -0.59783931e+00 -0.20713504e+01 0.78482471e+00
- 2 -311 520 520 0.26717427e+01 -0.24489030e+00 -0.59630536e+01 0.49767000e+00
- 2 323 521 522 0.49667587e+01 0.21474733e+01 -0.77489578e+01 0.91637244e+00
- 2 -2214 523 524 0.20461261e+01 0.37367709e+01 -0.10507727e+02 0.12618960e+01
- 1 -211 0 0 0.72636961e+00 0.10225677e+01 -0.40905843e+01 0.13957000e+00
- 2 2224 525 526 0.15375396e+00 0.17867500e+01 -0.32933320e+01 0.12671696e+01
- 1 -211 0 0 0.56775690e+00 0.16695220e+01 -0.43498782e+01 0.13957000e+00
- 2 111 527 528 -0.35336847e+00 0.12867742e+01 -0.21975652e+01 0.13498000e+00
- 2 213 529 530 0.56903009e+00 0.95139204e+00 -0.19810732e+01 0.81391996e+00
- 1 -211 0 0 0.23300931e+00 0.96025157e+00 -0.27237541e+01 0.13957000e+00
- 1 211 0 0 -0.10803712e+00 0.42368385e-01 -0.24218716e+00 0.13957000e+00
- 2 223 531 533 -0.73587240e+00 0.95551697e+00 -0.24614221e+01 0.78693688e+00
- 2 223 534 536 -0.86810856e-01 0.13144409e+01 -0.15831859e+01 0.77945851e+00
- 1 -211 0 0 0.90924455e+00 -0.73888282e+00 -0.88434987e+01 0.13957000e+00
- 2 213 537 538 0.16300263e+01 -0.22516878e+01 -0.12208568e+02 0.65157734e+00
- 2 -213 539 540 0.18234080e+01 -0.23128958e+01 -0.28698153e+02 0.70045546e+00
- 2 213 541 542 0.10426397e+01 -0.24433091e+01 -0.18842812e+02 0.66051244e+00
- 1 -211 0 0 0.26554549e+01 -0.13757151e+01 -0.48784693e+02 0.13957000e+00
- 1 211 0 0 0.16748905e+01 -0.22221610e+00 -0.16845526e+02 0.13957000e+00
- 1 -321 0 0 0.21990257e+01 -0.10743096e+01 -0.30712426e+02 0.49360000e+00
- 2 323 543 544 0.23973435e+01 -0.26553365e+01 -0.56003679e+02 0.94930830e+00
- 1 -211 0 0 0.43089200e+00 0.24455656e+00 -0.64955567e+01 0.13957000e+00
- 2 -311 545 545 0.13733475e+01 -0.51298377e+00 -0.24099206e+02 0.49767000e+00
- 1 321 0 0 0.90554917e+00 -0.93523025e+00 -0.22844843e+02 0.49360000e+00
- 1 -211 0 0 0.14052752e+01 0.26831370e+00 -0.20407977e+02 0.13957000e+00
- 2 213 546 547 0.16541500e+00 -0.30841186e+00 -0.17896416e+02 0.94375637e+00
- 1 -211 0 0 0.10184999e+01 -0.83013770e+00 -0.24747481e+02 0.13957000e+00
- 2 221 548 549 0.25928097e+00 -0.58487482e+00 -0.11656632e+02 0.54745000e+00
- 2 221 550 551 -0.14082272e+00 -0.63572084e+00 -0.11008084e+02 0.54745000e+00
- 1 211 0 0 -0.18815105e+00 -0.15403482e+01 -0.26368499e+02 0.13957000e+00
- 2 111 552 553 -0.79843376e-01 -0.17674358e+01 -0.31412030e+02 0.13498000e+00
- 2 -323 554 555 -0.24392064e+00 -0.82222037e+00 -0.98859576e+01 0.82566851e+00
- 2 323 556 557 -0.85234647e+00 -0.15438991e+01 -0.41359320e+02 0.85890634e+00
- 1 -2212 0 0 -0.48558392e+00 -0.77641846e+00 -0.32480927e+02 0.93827000e+00
- 1 2112 0 0 -0.17535358e+01 -0.79637895e+00 -0.14086909e+03 0.93957000e+00
- 2 111 558 559 -0.68351831e+00 0.69936707e+00 -0.10228103e+03 0.13498000e+00
- 2 221 560 562 -0.54095027e+00 0.37500717e+00 -0.22830615e+03 0.54745000e+00
- 2 213 563 564 -0.12453851e+01 -0.45616214e+00 -0.17399802e+03 0.67635266e+00
- 1 -211 0 0 -0.32682580e+01 0.18739119e+01 -0.75638945e+03 0.13957000e+00
- 2 -311 565 565 -0.62976624e+00 0.49569656e-01 -0.10443553e+03 0.49767000e+00
- 1 321 0 0 -0.15592945e+01 0.13003650e+01 -0.48002108e+03 0.49360000e+00
- 2 -213 566 567 -0.10622229e+01 0.33197844e-01 -0.19722054e+03 0.77310249e+00
- 2 223 568 569 -0.21405184e+00 0.14659166e+01 -0.33371876e+03 0.78562130e+00
- 2 213 570 571 0.10324622e+01 0.69001870e+00 -0.13591730e+03 0.71355381e+00
- 1 -211 0 0 -0.31032107e+00 -0.51219353e+00 -0.88332739e+02 0.13957000e+00
- 2 -2114 572 573 0.12017612e+01 -0.24951685e+00 -0.17485187e+03 0.11768526e+01
- 2 2214 574 575 0.66850434e+00 0.40377571e+00 -0.70330978e+02 0.12349431e+01
- 1 -2212 0 0 0.59811326e+00 0.55721808e+00 -0.19546587e+02 0.93827000e+00
- 1 2112 0 0 0.74598504e+00 0.13990399e+00 -0.18533730e+02 0.93957000e+00
- 2 111 576 577 0.16246355e+00 0.45052605e+00 -0.74033691e+01 0.13498000e+00
- 1 211 0 0 0.11303217e+01 0.14649910e+01 -0.13932296e+02 0.13957000e+00
- 1 -211 0 0 0.45144472e+00 0.49510424e+00 -0.51882951e+01 0.13957000e+00
- 1 211 0 0 0.11064383e+01 0.66410861e+00 -0.15709983e+02 0.13957000e+00
- 2 111 578 579 0.76741492e-01 0.17198774e+00 -0.44503844e+01 0.13498000e+00
- 2 111 580 581 0.28928912e+00 0.26635997e+01 -0.19370056e+02 0.13498000e+00
- 1 -321 0 0 0.63769918e+00 0.11447498e+01 -0.16618485e+02 0.49360000e+00
- 2 311 582 582 0.84815081e+00 0.14243978e+01 -0.12924912e+02 0.49767000e+00
- 1 -2112 0 0 -0.41268681e+00 0.10230780e+01 -0.74923965e+01 0.93957000e+00
- 1 2112 0 0 0.27506011e+00 0.24061904e+01 -0.21760705e+02 0.93957000e+00
- 2 113 583 584 -0.18909366e+01 -0.66477938e+00 -0.27830736e+02 0.11092392e+01
- 2 223 585 587 0.12367186e+00 -0.11579927e+01 -0.26411208e+02 0.78172322e+00
- 2 111 588 589 0.47299213e+00 0.10946047e+00 -0.70499217e+01 0.13498000e+00
- 1 211 0 0 -0.33358573e+00 -0.14731302e+00 -0.94708178e+01 0.13957000e+00
- 2 -3222 590 591 0.18375491e+00 -0.14131907e+01 -0.35363271e+02 0.11893700e+01
- 2 3222 592 593 -0.10638932e+01 -0.12072931e+01 -0.27692065e+02 0.11893700e+01
- 2 -213 594 595 0.47462966e+00 -0.75635442e+00 -0.26149505e+02 0.65353830e+00
- 2 213 596 597 0.10159799e+01 -0.16100511e+01 -0.48889047e+02 0.66632398e+00
- 2 223 598 600 -0.16410397e+00 0.71462441e-01 -0.33541105e+02 0.74609385e+00
- 2 113 601 602 0.11461086e+01 0.10407914e+01 -0.12368199e+03 0.73657445e+00
- 1 -211 0 0 -0.25418836e+00 0.10069178e+00 -0.27704734e+01 0.13957000e+00
- 1 211 0 0 0.83638324e-01 0.81740592e-01 -0.15167154e+01 0.13957000e+00
- 2 113 603 604 0.50881656e+00 0.11443026e+01 -0.13549145e+03 0.72360648e+00
- 2 92 283 384 -0.52707288e+02 -0.52836320e+02 0.16261008e+04 0.63409782e+04
- 1 2112 0 0 0.14250814e-01 0.91242010e-01 0.11501106e+03 0.93957000e+00
- 2 113 605 606 -0.51648819e+00 0.12787065e+00 0.25718168e+02 0.73748264e+00
- 2 -1114 607 608 0.97525443e-01 0.10656906e+01 0.48956852e+02 0.11989860e+01
- 2 223 609 610 0.27020185e+00 0.28713588e+00 0.10755461e+02 0.77439022e+00
- 2 221 611 613 -0.81472661e-01 0.76008470e+00 0.35370784e+02 0.54745000e+00
- 2 311 614 614 0.29154753e+00 -0.64067614e-01 0.65783039e+01 0.49767000e+00
- 1 -321 0 0 -0.55296656e+00 -0.11286664e+01 0.20509184e+02 0.49360000e+00
- 1 211 0 0 -0.12113912e+00 -0.15235713e+01 0.60420420e+02 0.13957000e+00
- 2 -213 615 616 0.49472424e+00 -0.63354523e+00 0.36623563e+02 0.79682128e+00
- 2 213 617 618 -0.22234570e+00 0.14683550e+00 0.14653109e+02 0.84250739e+00
- 2 313 619 620 -0.11638995e-01 0.37003858e-01 0.50839522e+01 0.88630246e+00
- 2 -313 621 622 -0.10822204e+00 0.20440601e+01 0.18687796e+02 0.89940411e+00
- 2 311 623 623 -0.44023553e+00 0.17322536e+00 0.55743356e+01 0.49767000e+00
- 2 -311 624 624 -0.35591521e+00 -0.33286008e-01 0.30948291e+01 0.49767000e+00
- 1 -211 0 0 -0.66955504e+00 0.99398533e+00 0.23908041e+02 0.13957000e+00
- 2 213 625 626 -0.10004355e+01 0.18180863e+01 0.38059654e+02 0.77565037e+00
- 2 111 627 628 -0.48564613e+00 0.22745468e+00 0.39003828e+01 0.13498000e+00
- 2 221 629 631 -0.41051779e+00 0.92545031e+00 0.36890393e+02 0.54745000e+00
- 2 111 632 633 -0.53181194e-01 0.61819916e+00 0.16453163e+02 0.13498000e+00
- 1 -211 0 0 -0.61262807e+00 0.55333727e+00 0.52743238e+02 0.13957000e+00
- 1 211 0 0 -0.58322943e+00 0.80909838e+00 0.18889980e+03 0.13957000e+00
- 2 331 634 636 -0.68089730e+00 0.80774860e+00 0.13584761e+03 0.95806525e+00
- 2 223 637 639 -0.33884395e+00 0.55574836e+00 0.13142809e+03 0.78140492e+00
- 1 -211 0 0 -0.60873028e+00 0.24634187e+00 0.35584187e+03 0.13957000e+00
- 2 213 640 641 0.59493873e+00 0.32474407e-01 0.48709327e+03 0.77148578e+00
- 2 311 642 642 0.11622820e+00 0.36700332e+00 0.11037503e+03 0.49767000e+00
- 2 -313 643 644 -0.52972737e+00 -0.48345239e+00 0.27936516e+03 0.90007582e+00
- 2 223 645 647 -0.49758982e+00 -0.24690712e+00 0.15605973e+03 0.77867578e+00
- 1 -211 0 0 -0.42026280e+00 0.88468195e-01 0.21178998e+03 0.13957000e+00
- 1 211 0 0 0.29146978e+00 -0.23146738e+00 0.40531520e+03 0.13957000e+00
- 1 -211 0 0 0.24953077e+00 0.19733041e+00 0.49113962e+02 0.13957000e+00
- 2 223 648 650 -0.99079962e-01 -0.88012502e+00 0.31125566e+03 0.79202083e+00
- 2 111 651 652 0.20005933e-01 -0.68602152e+00 0.92508607e+02 0.13498000e+00
- 2 213 653 654 -0.69356267e+00 -0.63020725e+00 0.17031615e+03 0.56278707e+00
- 2 223 655 657 -0.63297509e-01 -0.88139094e+00 0.10273507e+03 0.78444207e+00
- 1 2112 0 0 -0.23983580e+00 -0.56214353e+00 0.40644657e+02 0.93957000e+00
- 1 -2112 0 0 -0.79777914e+00 -0.11412768e+01 0.80359884e+02 0.93957000e+00
- 1 -211 0 0 0.14277502e+00 -0.31454425e+00 0.51087124e+02 0.13957000e+00
- 1 321 0 0 -0.72237644e+00 -0.20527765e+00 0.15550159e+02 0.49360000e+00
- 2 -313 658 659 -0.45108143e+00 -0.28017664e+00 0.89106607e+01 0.10261330e+01
- 2 -213 660 661 -0.10178047e+01 0.15522467e+00 0.11403366e+02 0.76166667e+00
- 1 2212 0 0 -0.61846922e+00 -0.99799070e+00 0.11373431e+02 0.93827000e+00
- 2 111 662 663 -0.35665104e+00 -0.10901974e-01 0.46852187e+01 0.13498000e+00
- 2 -2114 664 665 -0.14917508e+01 0.20947326e+00 0.18783565e+02 0.12277289e+01
- 2 331 666 668 -0.99725763e+00 0.69050146e-01 0.70775729e+01 0.95789587e+00
- 2 221 669 670 -0.56259787e+01 -0.18151042e+01 0.38356658e+02 0.54745000e+00
- 2 -213 671 672 -0.69946075e+00 -0.74726400e+00 0.19013747e+01 0.53214773e+00
- 2 113 673 674 -0.94759022e-01 -0.33395202e+00 0.45027528e+01 0.82761226e+00
- 2 113 675 676 -0.34549236e+00 -0.10111466e+01 0.46572657e+00 0.75938492e+00
- 1 211 0 0 -0.19740342e+00 -0.21957001e+00 0.22663892e+01 0.13957000e+00
- 1 2112 0 0 0.58899141e-01 -0.91566477e+00 0.75862553e+00 0.93957000e+00
- 1 -2212 0 0 -0.10328826e+01 -0.32589066e+01 0.10216778e+01 0.93827000e+00
- 2 323 677 678 -0.52987296e+00 -0.11765122e+01 -0.58003489e+00 0.88508852e+00
- 1 -321 0 0 0.11499069e+00 -0.14670875e+01 0.17139177e-02 0.49360000e+00
- 2 111 679 680 -0.27316171e+00 -0.19643479e+00 -0.82481118e-01 0.13498000e+00
- 2 113 681 682 -0.78344718e+00 -0.12272300e+01 -0.20826927e+00 0.56474979e+00
- 2 113 683 684 -0.11890444e+01 -0.13817114e+01 0.27735480e+00 0.69163172e+00
- 2 213 685 686 -0.15354740e+01 -0.66697734e-01 0.16505060e+00 0.55955998e+00
- 2 113 687 688 -0.16602533e+01 -0.12353912e+01 -0.58388523e+00 0.78436842e+00
- 2 111 689 690 -0.18206396e+00 -0.17344607e-01 -0.17616011e+00 0.13498000e+00
- 2 111 691 692 -0.15044705e+01 0.82770642e+00 -0.33403967e+00 0.13498000e+00
- 2 -213 693 694 -0.90068785e+00 0.14401059e+01 -0.66882974e+00 0.91152949e+00
- 1 211 0 0 -0.12465725e+01 0.23876992e+00 0.10962250e+00 0.13957000e+00
- 2 113 695 696 -0.22116729e+01 0.32773401e+00 -0.13910640e+01 0.95437519e+00
- 2 111 697 698 -0.88476015e+00 0.11205341e+00 -0.22606747e+00 0.13498000e+00
- 2 -213 699 700 -0.10728423e+01 0.82980121e+00 -0.17011764e+01 0.98981565e+00
- 2 223 701 703 -0.28403544e+01 0.89983799e+00 -0.20458230e+01 0.78317822e+00
- 2 213 704 705 -0.94899849e+00 0.11651794e+01 -0.25685175e+01 0.81451191e+00
- 2 -213 706 707 -0.11111220e+01 0.51910461e+00 -0.13988174e+01 0.70696354e+00
- 2 113 708 709 -0.51461762e+00 0.20831204e+00 -0.68043907e+00 0.80868492e+00
- 2 213 710 711 -0.38357519e+01 0.13613083e+01 -0.37495535e+01 0.10513370e+01
- 2 -213 712 713 -0.12902124e+01 0.65707400e+00 -0.34288426e+01 0.71855611e+00
- 2 213 714 715 -0.12135043e+01 -0.29250030e+00 -0.32058733e+01 0.81504810e+00
- 2 2114 716 717 -0.98354708e+00 -0.18127236e+01 -0.68354928e+01 0.12806648e+01
- 2 -2114 718 719 -0.15051794e+01 -0.62994911e+01 -0.24712737e+02 0.12056388e+01
- 2 -213 720 721 -0.29580230e+00 -0.12245059e+01 -0.37501242e+01 0.72806221e+00
- 2 213 722 723 -0.59457827e+01 -0.18146739e+02 -0.67468006e+02 0.61130074e+00
- 2 -213 724 725 -0.32561456e+00 -0.13178740e+01 -0.50599612e+01 0.40826470e+00
- 2 213 726 727 -0.29366913e+01 -0.98005017e+01 -0.37636787e+02 0.79548358e+00
- 2 221 728 730 -0.32180392e+01 -0.11648741e+02 -0.45023364e+02 0.54745000e+00
- 2 113 731 732 -0.18469952e+01 -0.31712575e+01 -0.22917637e+02 0.56541873e+00
- 2 -213 733 734 -0.31510727e+00 -0.40749301e+00 -0.37254672e+01 0.44987434e+00
- 2 223 735 737 -0.62575157e+00 -0.99299865e+00 -0.57146927e+01 0.78512504e+00
- 2 2224 738 739 -0.20469603e+01 -0.38497106e+01 -0.25313930e+02 0.11931225e+01
- 2 113 740 741 0.50108933e-01 0.19868549e+00 -0.63429127e+01 0.10677082e+01
- 2 -2224 742 743 0.93038782e+00 0.15643429e+00 -0.78901151e+01 0.12780919e+01
- 2 113 744 745 0.28381963e+00 -0.22247311e+00 -0.46754863e+01 0.65201805e+00
- 2 113 746 747 0.58531645e+00 0.71610211e+00 -0.44983889e+01 0.76030223e+00
- 1 211 0 0 0.47776962e+01 0.42383309e+01 -0.25407721e+02 0.13957000e+00
- 2 113 748 749 0.25832975e+01 0.18039281e+01 -0.19592007e+02 0.10157550e+01
- 2 -213 750 751 0.45363104e+01 0.34132340e+01 -0.25612271e+02 0.11023070e+01
- 2 213 752 753 0.20103441e+01 0.17883988e+01 -0.14157023e+02 0.90912329e+00
- 2 -213 754 755 0.12945441e+00 -0.25083887e+00 -0.29531959e+01 0.87756422e+00
- 2 213 756 757 0.75749971e-01 0.59824669e+00 -0.84707283e+02 0.79397777e+00
- 2 113 758 759 -0.19875585e+00 -0.71074715e+00 -0.25335370e+02 0.68085067e+00
- 2 221 760 762 -0.52515644e+00 -0.13014571e+00 -0.30065775e+02 0.54745000e+00
- 2 223 763 765 0.43783061e+00 0.38058097e+00 -0.16289739e+03 0.77883131e+00
- 2 -213 766 767 -0.37695109e+00 -0.36237731e+00 -0.15953603e+03 0.70508576e+00
- 2 331 768 769 -0.33198990e+00 -0.62348866e+00 -0.14587091e+03 0.95776355e+00
- 2 213 770 771 -0.32669037e+00 -0.33342691e+00 -0.21550906e+03 0.11277334e+01
- 1 2112 0 0 0.67712163e+00 -0.14326417e+00 -0.71387540e+03 0.93957000e+00
- 2 111 772 773 -0.16132277e+00 -0.37853600e+00 -0.52042522e+03 0.13498000e+00
- 2 92 386 397 0.39250270e+01 -0.35917569e+01 0.40197729e+02 0.26910309e+02
- 2 221 774 775 0.60323108e-01 0.85897115e+00 0.10971194e+01 0.54745000e+00
- 2 313 776 777 -0.23847925e+01 0.20687364e+01 0.12949950e+01 0.91254417e+00
- 2 213 778 779 0.62967850e-01 0.73831312e+00 0.58080419e+00 0.85457951e+00
- 2 -2224 780 781 -0.11661314e+01 0.40523886e+00 0.59725874e-01 0.13486985e+01
- 2 213 782 783 -0.32887025e+00 0.38463688e+00 0.16417241e+01 0.76292676e+00
- 2 2214 784 785 -0.58396011e+00 -0.24598429e+00 0.12711150e+01 0.12475538e+01
- 2 111 786 787 0.10429078e+01 -0.39336485e+00 0.14365075e+01 0.13498000e+00
- 1 -321 0 0 -0.25621067e+00 -0.20121728e+00 0.13383743e+01 0.49360000e+00
- 2 313 788 789 0.31134617e+01 -0.32372216e+01 0.10924564e+02 0.79713368e+00
- 1 -2112 0 0 0.14191791e+01 -0.10110727e+01 0.61862868e+01 0.93957000e+00
- 1 2112 0 0 0.10234187e+01 -0.20416059e+01 0.76895652e+01 0.93957000e+00
- 2 -313 790 791 0.19227337e+01 -0.91718679e+00 0.66769476e+01 0.90776958e+00
- 2 92 399 413 0.61885428e+00 -0.37050043e+01 0.17784252e+03 0.21697016e+02
- 2 -313 792 793 -0.59676959e+00 -0.34528283e+00 0.14119931e+02 0.88394752e+00
- 2 -213 794 795 0.75220179e+00 0.88280972e+00 0.31660452e+01 0.11471283e+01
- 2 213 796 797 0.17428172e+00 -0.29398846e+00 0.27498803e+01 0.74959447e+00
- 2 113 798 799 0.82798168e+00 0.60978058e-01 0.25403374e+01 0.68786818e+00
- 1 -211 0 0 -0.36896039e+00 0.66401881e-01 0.64768836e+00 0.13957000e+00
- 2 213 800 801 0.43488851e+00 -0.56781773e-01 0.36166190e+01 0.90590598e+00
- 2 223 802 803 0.29799854e+00 -0.39552588e+00 0.30171084e+01 0.78451265e+00
- 1 -211 0 0 -0.12841559e-01 -0.94956716e+00 0.11822562e+02 0.13957000e+00
- 2 111 804 805 -0.29791781e+00 -0.17841280e+00 0.14093098e+02 0.13498000e+00
- 2 223 806 808 -0.71860394e+00 -0.99894767e+00 0.64639577e+02 0.78367686e+00
- 2 111 809 810 0.17128357e+00 -0.63007080e+00 0.75342879e+01 0.13498000e+00
- 1 211 0 0 -0.40145692e+00 -0.92838636e+00 0.16437635e+02 0.13957000e+00
- 2 113 811 812 0.12664117e-01 0.30591576e+00 0.21179325e+02 0.88021447e+00
- 2 111 813 814 -0.19895689e+00 -0.20447568e+00 0.30970084e+01 0.13498000e+00
- 2 311 815 815 0.54306145e+00 -0.39670312e-01 0.91814173e+01 0.49767000e+00
- 2 92 415 416 0.00000000e+00 0.00000000e+00 -0.12983871e+02 0.22272953e+01
- 1 321 0 0 -0.40323775e+00 -0.81501579e+00 -0.68967640e+01 0.49360000e+00
- 2 -323 816 817 0.40323775e+00 0.81501579e+00 -0.60871065e+01 0.74506375e+00
- 2 92 418 420 0.00000000e+00 0.00000000e+00 0.37850315e+03 0.39728931e+01
- 2 -313 818 819 0.12549605e+00 0.10323605e+01 0.73708715e+02 0.91703018e+00
- 1 -211 0 0 -0.12603554e+00 -0.14020966e+01 0.25606359e+03 0.13957000e+00
- 1 321 0 0 0.53948840e-03 0.36973614e+00 0.48730848e+02 0.49360000e+00
- 2 92 422 423 0.00000000e+00 0.00000000e+00 -0.17301131e+01 0.16099850e+01
- 2 323 820 821 0.13235365e+00 0.35453690e+00 -0.14423971e+01 0.76946302e+00
- 1 -321 0 0 -0.13235365e+00 -0.35453690e+00 -0.28771599e+00 0.49360000e+00
- 1 -211 0 0 -0.11875241e+01 -0.23401089e+00 -0.64186315e+01 0.13957000e+00
- 1 211 0 0 -0.14120979e+01 0.61206234e+00 -0.72538452e+01 0.13957000e+00
- 1 -321 0 0 -0.71882621e+00 -0.12357346e+00 -0.22484328e+01 0.49360000e+00
- 1 321 0 0 -0.43229951e+00 0.19549816e-01 -0.19645055e+01 0.49360000e+00
- 2 310 822 823 0.16364680e+01 -0.40920203e+00 0.32362948e+00 0.49767000e+00
- 1 -211 0 0 0.13237525e-01 -0.50011554e-02 -0.20115877e+00 0.13957000e+00
- 2 111 824 825 0.15621367e+00 -0.31141337e+00 0.22397918e+00 0.13498000e+00
- 2 310 826 827 -0.75223716e+00 0.22330121e+00 0.17647025e+03 0.49767000e+00
- 1 -211 0 0 0.11780266e+00 -0.22890878e+00 0.38986676e+02 0.13957000e+00
- 1 211 0 0 -0.10604561e-01 0.12703273e+00 0.82075046e+01 0.13957000e+00
- 2 111 828 829 -0.22545704e-02 -0.18352305e+00 0.12242738e+02 0.13498000e+00
- 1 211 0 0 0.98804363e-01 -0.17723159e+00 0.62499901e+01 0.13957000e+00
- 1 -211 0 0 -0.75507077e-01 0.29966850e+00 0.39670546e+01 0.13957000e+00
- 2 111 830 831 -0.63651588e-04 0.13559985e+00 0.38167231e+01 0.13498000e+00
- 1 321 0 0 0.12966055e+00 -0.23605730e+00 0.54392265e+01 0.49360000e+00
- 1 -211 0 0 0.31471622e+00 0.20666364e+00 0.36283938e+01 0.13957000e+00
- 1 -2212 0 0 -0.39259022e+00 -0.76479154e+00 0.55001661e+03 0.93827000e+00
- 1 211 0 0 -0.11849128e+00 -0.29058014e+00 0.17036487e+03 0.13957000e+00
- 1 2112 0 0 0.99385563e-01 0.18548515e+00 0.20408932e+03 0.93957000e+00
- 1 211 0 0 -0.19151135e+00 0.65256343e-01 0.37660509e+02 0.13957000e+00
- 1 211 0 0 -0.28566089e+00 -0.20173495e+00 0.23034031e+02 0.13957000e+00
- 1 -211 0 0 0.10130452e+00 0.69353226e-01 0.12425970e+01 0.13957000e+00
- 1 -321 0 0 0.16278768e+00 0.59461161e-01 0.12712970e+02 0.49360000e+00
- 2 111 832 833 0.13865760e+00 -0.45804788e+00 0.90715517e+01 0.13498000e+00
- 2 311 834 834 -0.24717139e-01 0.11071531e+00 0.52599308e+01 0.49767000e+00
- 1 211 0 0 0.45785558e-01 -0.27634335e+00 0.12213530e+01 0.13957000e+00
- 1 -321 0 0 0.24346647e+00 -0.59495872e-01 0.12847414e+01 0.49360000e+00
- 2 111 835 836 0.13548654e+00 -0.24598414e+00 0.24501816e+01 0.13498000e+00
- 1 -211 0 0 0.64926976e+00 0.16543346e+00 0.91688818e+00 0.13957000e+00
- 1 211 0 0 0.11349378e+01 -0.77556740e+00 0.25564207e+01 0.13957000e+00
- 1 211 0 0 0.16859486e+00 0.32118102e-01 0.66915525e+00 0.13957000e+00
- 1 -211 0 0 0.40055071e+00 -0.26759951e+00 0.11100050e+01 0.13957000e+00
- 2 111 837 838 -0.14286477e+00 -0.39187735e-01 0.38464115e+00 0.13498000e+00
- 1 -2212 0 0 0.20993561e+00 -0.43967353e+00 0.10647854e+01 0.93827000e+00
- 1 -211 0 0 0.18352533e+00 0.13887167e+00 0.38139534e+00 0.13957000e+00
- 1 22 0 0 -0.12815502e-01 -0.39349261e+00 0.67843541e+00 0.00000000e+00
- 1 22 0 0 -0.90251459e-02 -0.78310434e-01 0.47227264e-01 0.00000000e+00
- 1 2212 0 0 0.16287809e+01 -0.31516951e+00 0.68389875e+01 0.93827000e+00
- 1 211 0 0 0.68656843e+00 0.97192213e-02 0.16022088e+01 0.13957000e+00
- 2 311 839 839 0.85526676e+00 0.74622873e+00 0.41507729e+01 0.49767000e+00
- 1 211 0 0 -0.51698988e-01 -0.19812676e-01 0.61418049e+00 0.13957000e+00
- 1 211 0 0 0.39173163e+00 0.16859116e+00 0.25936315e+01 0.13957000e+00
- 2 111 840 841 -0.26526648e+00 -0.37664447e-01 0.11710574e+01 0.13498000e+00
- 1 -2112 0 0 0.49726639e+00 0.73128320e+00 0.25266066e+01 0.93957000e+00
- 2 111 842 843 -0.71122376e-02 -0.16550612e-01 0.80888541e+00 0.13498000e+00
- 1 211 0 0 0.31175085e+00 0.51430880e+00 0.14795597e+00 0.13957000e+00
- 1 -211 0 0 0.55925997e-02 0.21581607e+00 0.35350156e+00 0.13957000e+00
- 1 211 0 0 -0.63670078e+00 0.28876534e+01 0.45894633e+01 0.13957000e+00
- 2 111 844 845 0.39747329e-01 0.42970380e+00 0.36516460e+00 0.13498000e+00
- 2 111 846 847 0.16096581e+00 0.80649201e+00 0.43391354e+00 0.13498000e+00
- 2 111 848 849 0.65449839e+00 0.25381853e+01 0.10418439e+01 0.13498000e+00
- 2 111 850 851 0.65823333e+00 0.20869137e+01 0.94809545e+00 0.13498000e+00
- 1 211 0 0 0.20736377e+01 0.68399110e+01 0.30294940e+01 0.13957000e+00
- 1 -211 0 0 0.23391616e+01 0.73324341e+01 0.24182822e+01 0.13957000e+00
- 1 -211 0 0 0.97357244e+00 0.25832504e+01 0.82767920e+00 0.13957000e+00
- 1 211 0 0 0.30435413e-01 0.73881070e+00 0.37827649e+00 0.13957000e+00
- 1 -211 0 0 0.64611566e+00 0.18656091e+01 0.29680229e+00 0.13957000e+00
- 2 111 852 853 0.16641463e+01 0.42852252e+01 0.17269099e+01 0.13498000e+00
- 1 211 0 0 0.47765297e+00 0.21029772e+01 0.17381918e+00 0.13957000e+00
- 2 111 854 855 0.70244325e-01 0.42968411e+00 0.43099422e+00 0.13498000e+00
- 1 22 0 0 -0.28814080e-02 0.78685855e-01 0.19050758e-01 0.00000000e+00
- 1 22 0 0 -0.93966436e-01 0.27055655e-01 0.14715145e+00 0.00000000e+00
- 1 -211 0 0 0.94488487e+00 0.16810951e+01 0.74630295e+00 0.13957000e+00
- 1 211 0 0 -0.92828051e-01 0.41540716e+00 0.11329063e+00 0.13957000e+00
- 1 -211 0 0 0.24616510e+00 0.10647581e+00 -0.56442558e-01 0.13957000e+00
- 1 211 0 0 0.22934976e+00 0.51826255e+00 -0.14103054e+00 0.13957000e+00
- 2 111 856 857 0.20391342e+00 0.10672036e+01 -0.10975650e+00 0.13498000e+00
- 1 211 0 0 0.83263251e+00 0.34168478e+00 0.14380904e+00 0.13957000e+00
- 1 -211 0 0 0.27718781e+00 -0.11601055e-01 -0.15331911e-01 0.13957000e+00
- 2 111 858 859 0.56040582e+00 0.17017655e+00 0.46370648e-01 0.13498000e+00
- 1 211 0 0 0.22900561e+01 0.10128011e+01 -0.15744371e+01 0.13957000e+00
- 1 -211 0 0 0.14044755e-01 0.99095398e-01 -0.11067570e+00 0.13957000e+00
- 2 -311 860 860 0.52065701e+00 0.12935678e+00 -0.29199586e+00 0.49767000e+00
- 1 -211 0 0 0.74761232e+00 0.13290327e+00 0.14966909e+00 0.13957000e+00
- 2 311 861 861 0.52127328e+00 0.16667879e+00 -0.33258692e+00 0.49767000e+00
- 1 211 0 0 -0.10731524e+00 0.25266249e+00 -0.23735969e+00 0.13957000e+00
- 1 -211 0 0 0.19588996e+01 0.38430321e+00 -0.60799105e-01 0.13957000e+00
- 1 211 0 0 0.40629962e+00 0.47941643e+00 -0.27600404e+00 0.13957000e+00
- 2 311 862 862 0.14024710e+01 0.11129820e+00 -0.49296499e+00 0.49767000e+00
- 1 211 0 0 0.16255418e+01 0.59493843e+00 -0.13734992e+00 0.13957000e+00
- 1 -211 0 0 0.20229873e+01 -0.84087463e+00 -0.21087582e+00 0.13957000e+00
- 2 111 863 864 0.10330344e+01 -0.88309870e+00 -0.48486178e+00 0.13498000e+00
- 1 -211 0 0 0.36037504e+00 -0.11170350e+00 0.71861050e-01 0.13957000e+00
- 1 211 0 0 0.27392972e+00 -0.12941086e+00 -0.28498454e+00 0.13957000e+00
- 2 111 865 866 -0.78302765e-01 -0.42783613e-02 0.26029163e-01 0.13498000e+00
- 1 211 0 0 0.74383965e+00 -0.77867361e+00 -0.24837428e+00 0.13957000e+00
- 1 -211 0 0 0.11360742e+01 -0.47127179e+00 -0.81185330e+00 0.13957000e+00
- 1 211 0 0 0.69774742e+00 -0.55782840e+00 0.48263552e+00 0.13957000e+00
- 1 -211 0 0 0.53754385e+00 -0.29797712e+00 -0.23132312e+00 0.13957000e+00
- 1 -211 0 0 -0.13479279e+00 -0.24537837e+00 -0.33674677e-01 0.13957000e+00
- 1 211 0 0 0.30259994e+00 -0.10211172e+00 -0.16694889e+00 0.13957000e+00
- 2 111 867 868 0.37757941e+00 -0.36409960e+00 -0.42946705e+00 0.13498000e+00
- 1 -211 0 0 0.84586383e-01 -0.42024533e+00 -0.48896821e+00 0.13957000e+00
- 2 111 869 870 0.11409946e+01 -0.57931219e+00 -0.56846073e+00 0.13498000e+00
- 1 211 0 0 -0.61342956e-01 -0.70948015e+00 -0.13016040e+01 0.13957000e+00
- 1 -211 0 0 0.15963437e+00 0.11164084e+00 -0.76974635e+00 0.13957000e+00
- 2 310 871 872 0.26717427e+01 -0.24489030e+00 -0.59630536e+01 0.49767000e+00
- 2 311 873 873 0.39833831e+01 0.18911346e+01 -0.66259716e+01 0.49767000e+00
- 1 211 0 0 0.98337556e+00 0.25633866e+00 -0.11229862e+01 0.13957000e+00
- 1 -2212 0 0 0.13016724e+01 0.27060190e+01 -0.69790524e+01 0.93827000e+00
- 2 111 874 875 0.74445372e+00 0.10307519e+01 -0.35286746e+01 0.13498000e+00
- 1 2212 0 0 0.33404078e+00 0.14118323e+01 -0.23395247e+01 0.93827000e+00
- 1 211 0 0 -0.18028682e+00 0.37491770e+00 -0.95380727e+00 0.13957000e+00
- 1 22 0 0 -0.12207014e+00 0.27890350e+00 -0.57080192e+00 0.00000000e+00
- 1 22 0 0 -0.23129833e+00 0.10078707e+01 -0.16267633e+01 0.00000000e+00
- 1 211 0 0 0.61665040e+00 0.50298147e+00 -0.78580310e+00 0.13957000e+00
- 2 111 876 877 -0.47620314e-01 0.44841057e+00 -0.11952701e+01 0.13498000e+00
- 1 211 0 0 -0.15804414e+00 0.55870960e+00 -0.77368617e+00 0.13957000e+00
- 1 -211 0 0 -0.16909289e+00 -0.10895642e-01 -0.38751112e+00 0.13957000e+00
- 2 111 878 879 -0.40873538e+00 0.40770300e+00 -0.13002248e+01 0.13498000e+00
- 1 -211 0 0 0.77211403e-01 0.11374345e+00 -0.23152104e+00 0.13957000e+00
- 1 211 0 0 -0.22618940e+00 0.35055928e+00 -0.65836238e+00 0.13957000e+00
- 2 111 880 881 0.62167141e-01 0.85013817e+00 -0.69330243e+00 0.13498000e+00
- 1 211 0 0 0.15711593e+01 -0.21234670e+01 -0.10989905e+02 0.13957000e+00
- 2 111 882 883 0.58866945e-01 -0.12822075e+00 -0.12186628e+01 0.13498000e+00
- 1 -211 0 0 0.16789052e+01 -0.18280101e+01 -0.24784408e+02 0.13957000e+00
- 2 111 884 885 0.14450274e+00 -0.48488562e+00 -0.39137453e+01 0.13498000e+00
- 1 211 0 0 0.68917578e+00 -0.12921272e+01 -0.12178324e+02 0.13957000e+00
- 2 111 886 887 0.35346393e+00 -0.11511819e+01 -0.66644872e+01 0.13498000e+00
- 1 321 0 0 0.68273560e+00 -0.89373962e+00 -0.20738577e+02 0.49360000e+00
- 2 111 888 889 0.17146079e+01 -0.17615969e+01 -0.35265103e+02 0.13498000e+00
- 2 310 890 891 0.13733475e+01 -0.51298377e+00 -0.24099206e+02 0.49767000e+00
- 1 211 0 0 0.29536205e+00 -0.56071479e+00 -0.93413188e+01 0.13957000e+00
- 2 111 892 893 -0.12994704e+00 0.25230292e+00 -0.85550976e+01 0.13498000e+00
- 1 22 0 0 -0.13749775e+00 -0.71664994e-01 -0.39775637e+01 0.00000000e+00
- 1 22 0 0 0.39677872e+00 -0.51320983e+00 -0.76790685e+01 0.00000000e+00
- 1 22 0 0 -0.18594797e+00 -0.50557549e+00 -0.10519261e+02 0.00000000e+00
- 1 22 0 0 0.45125256e-01 -0.13014535e+00 -0.48882282e+00 0.00000000e+00
- 1 22 0 0 -0.10091668e+00 -0.14512109e+01 -0.26432013e+02 0.00000000e+00
- 1 22 0 0 0.21073302e-01 -0.31622491e+00 -0.49800176e+01 0.00000000e+00
- 1 -321 0 0 -0.13543010e+00 -0.29089932e+00 -0.37381260e+01 0.49360000e+00
- 2 111 894 895 -0.10849053e+00 -0.53132105e+00 -0.61478316e+01 0.13498000e+00
- 1 321 0 0 -0.83713579e+00 -0.10502414e+01 -0.27755096e+02 0.49360000e+00
- 2 111 896 897 -0.15210675e-01 -0.49365774e+00 -0.13604224e+02 0.13498000e+00
- 1 22 0 0 -0.23694061e-01 0.70992174e-01 -0.91926566e+01 0.00000000e+00
- 1 22 0 0 -0.65982425e+00 0.62837489e+00 -0.93088370e+02 0.00000000e+00
- 1 211 0 0 -0.94160086e-01 0.71670988e-01 -0.89100700e+02 0.13957000e+00
- 1 -211 0 0 -0.27566018e+00 0.21539631e+00 -0.10031942e+03 0.13957000e+00
- 2 111 898 900 -0.17113001e+00 0.87939866e-01 -0.38886035e+02 0.13498000e+00
- 1 211 0 0 -0.67141179e+00 -0.51636064e+00 -0.82998772e+02 0.13957000e+00
- 2 111 901 902 -0.57397330e+00 0.60198499e-01 -0.90999245e+02 0.13498000e+00
- 2 310 903 904 -0.62976624e+00 0.49569656e-01 -0.10443553e+03 0.49767000e+00
- 1 -211 0 0 -0.65237895e+00 0.24984668e+00 -0.15464475e+03 0.13957000e+00
- 2 111 905 906 -0.40984395e+00 -0.21664884e+00 -0.42575790e+02 0.13498000e+00
- 1 22 0 0 0.17715591e+00 0.19927796e+00 -0.26952185e+02 0.00000000e+00
- 2 111 907 908 -0.39120776e+00 0.12666386e+01 -0.30676657e+03 0.13498000e+00
- 1 211 0 0 0.14619663e-01 0.30325110e+00 -0.29746274e+02 0.13957000e+00
- 2 111 909 910 0.10178426e+01 0.38676760e+00 -0.10617102e+03 0.13498000e+00
- 1 -2112 0 0 0.11527687e+01 -0.10218285e+00 -0.15727004e+03 0.93957000e+00
- 2 111 911 912 0.48992468e-01 -0.14733401e+00 -0.17581829e+02 0.13498000e+00
- 1 2112 0 0 0.38620599e+00 0.12229703e+00 -0.54144459e+02 0.93957000e+00
- 1 211 0 0 0.28229835e+00 0.28147869e+00 -0.16186519e+02 0.13957000e+00
- 1 22 0 0 0.12628191e+00 0.43962278e+00 -0.70036092e+01 0.00000000e+00
- 1 22 0 0 0.36181638e-01 0.10903270e-01 -0.39975994e+00 0.00000000e+00
- 1 22 0 0 0.93783580e-01 0.69895163e-01 -0.30325420e+01 0.00000000e+00
- 1 22 0 0 -0.17042088e-01 0.10209258e+00 -0.14178424e+01 0.00000000e+00
- 1 22 0 0 0.16481753e+00 0.99044022e+00 -0.74871893e+01 0.00000000e+00
- 1 22 0 0 0.12447159e+00 0.16731595e+01 -0.11882867e+02 0.00000000e+00
- 2 310 913 914 0.84815081e+00 0.14243978e+01 -0.12924912e+02 0.49767000e+00
- 1 211 0 0 -0.19731166e+01 -0.70946148e+00 -0.26571153e+02 0.13957000e+00
- 1 -211 0 0 0.82180032e-01 0.44682099e-01 -0.12595832e+01 0.13957000e+00
- 1 211 0 0 -0.15158994e-01 -0.40311272e+00 -0.44342180e+01 0.13957000e+00
- 1 -211 0 0 0.25013657e-01 -0.54820861e+00 -0.16858523e+02 0.13957000e+00
- 2 111 915 916 0.11381719e+00 -0.20667134e+00 -0.51184675e+01 0.13498000e+00
- 1 22 0 0 0.22662689e+00 0.49688312e-01 -0.43250491e+01 0.00000000e+00
- 1 22 0 0 0.24636525e+00 0.59772155e-01 -0.27248726e+01 0.00000000e+00
- 1 -2112 0 0 0.15709448e+00 -0.11099036e+01 -0.31591297e+02 0.93957000e+00
- 1 -211 0 0 0.26660435e-01 -0.30328704e+00 -0.37719737e+01 0.13957000e+00
- 1 2212 0 0 -0.95552627e+00 -0.11584742e+01 -0.26455279e+02 0.93827000e+00
- 2 111 917 918 -0.10836689e+00 -0.48818852e-01 -0.12367863e+01 0.13498000e+00
- 1 -211 0 0 0.84495950e-01 -0.43148515e+00 -0.18315695e+02 0.13957000e+00
- 2 111 919 920 0.39013371e+00 -0.32486927e+00 -0.78338097e+01 0.13498000e+00
- 1 211 0 0 0.79795571e+00 -0.14670640e+01 -0.44648435e+02 0.13957000e+00
- 2 111 921 922 0.21802415e+00 -0.14298710e+00 -0.42406121e+01 0.13498000e+00
- 1 211 0 0 0.43900301e-01 -0.14782871e+00 -0.75049282e+01 0.13957000e+00
- 1 -211 0 0 -0.22191268e+00 0.12038504e+00 -0.81482429e+01 0.13957000e+00
- 2 111 923 924 0.13908405e-01 0.98906103e-01 -0.17887933e+02 0.13498000e+00
- 1 -211 0 0 0.11235400e+00 0.47527924e+00 -0.46288830e+02 0.13957000e+00
- 1 211 0 0 0.10337546e+01 0.56551221e+00 -0.77393159e+02 0.13957000e+00
- 1 -211 0 0 0.16829593e-01 0.21055678e-01 -0.54177922e+01 0.13957000e+00
- 1 211 0 0 0.49198697e+00 0.11232469e+01 -0.13007366e+03 0.13957000e+00
- 1 -211 0 0 -0.38917398e-01 -0.24659441e+00 0.85568065e+01 0.13957000e+00
- 1 211 0 0 -0.47757079e+00 0.37446506e+00 0.17161361e+02 0.13957000e+00
- 1 -2112 0 0 0.13758499e+00 0.10314907e+01 0.46907673e+02 0.93957000e+00
- 1 211 0 0 -0.40059550e-01 0.34199955e-01 0.20491792e+01 0.13957000e+00
- 1 22 0 0 -0.10286574e+00 0.43202278e+00 0.51012641e+01 0.00000000e+00
- 2 111 925 926 0.37306759e+00 -0.14488690e+00 0.56541970e+01 0.13498000e+00
- 2 111 927 928 0.43272071e-01 0.50578757e+00 0.20588673e+02 0.13498000e+00
- 2 111 929 930 -0.76402903e-01 0.48955227e-01 0.53557437e+01 0.13498000e+00
- 2 111 931 932 -0.48341829e-01 0.20534190e+00 0.94263676e+01 0.13498000e+00
- 2 310 933 934 0.29154753e+00 -0.64067614e-01 0.65783039e+01 0.49767000e+00
- 1 -211 0 0 0.45137787e+00 -0.60190277e-01 0.22652833e+02 0.13957000e+00
- 2 111 935 937 0.43346368e-01 -0.57335495e+00 0.13970730e+02 0.13498000e+00
- 1 211 0 0 -0.18958999e+00 -0.28913773e+00 0.41694458e+01 0.13957000e+00
- 2 111 938 939 -0.32755708e-01 0.43597324e+00 0.10483663e+02 0.13498000e+00
- 1 321 0 0 0.73468722e-01 -0.12984250e+00 0.45346239e+01 0.49360000e+00
- 1 -211 0 0 -0.85107717e-01 0.16684636e+00 0.54932836e+00 0.13957000e+00
- 2 -311 940 940 0.14778459e+00 0.16733625e+01 0.13823309e+02 0.49767000e+00
- 2 111 941 942 -0.25600663e+00 0.37069763e+00 0.48644864e+01 0.13498000e+00
- 1 130 0 0 -0.44023553e+00 0.17322536e+00 0.55743356e+01 0.49767000e+00
- 2 310 943 944 -0.35591521e+00 -0.33286008e-01 0.30948291e+01 0.49767000e+00
- 1 211 0 0 0.82475079e-01 0.18674386e+00 0.34895957e+01 0.13957000e+00
- 2 111 945 946 -0.10829105e+01 0.16313424e+01 0.34570058e+02 0.13498000e+00
- 1 22 0 0 -0.21127023e-01 0.10665809e-01 0.53471506e-01 0.00000000e+00
- 1 22 0 0 -0.46451910e+00 0.21678887e+00 0.38469113e+01 0.00000000e+00
- 1 22 0 0 -0.38064708e-01 0.15302185e+00 0.28947912e+01 0.00000000e+00
- 1 -211 0 0 0.34208744e-01 0.23309866e+00 0.99745488e+01 0.13957000e+00
- 1 211 0 0 -0.40666182e+00 0.53932980e+00 0.24021053e+02 0.13957000e+00
- 1 22 0 0 -0.78592508e-01 0.37012451e+00 0.11093029e+02 0.00000000e+00
- 1 22 0 0 0.25411314e-01 0.24807465e+00 0.53601336e+01 0.00000000e+00
- 1 -211 0 0 0.28770575e-01 0.20055840e+00 0.18827236e+02 0.13957000e+00
- 1 211 0 0 -0.20857958e+00 0.11633492e+00 0.33360300e+02 0.13957000e+00
- 2 221 947 949 -0.50108829e+00 0.49085528e+00 0.83660077e+02 0.54745000e+00
- 1 211 0 0 0.99205873e-02 -0.95546622e-01 0.23579950e+02 0.13957000e+00
- 1 -211 0 0 -0.14692325e+00 0.54334544e+00 0.76732255e+02 0.13957000e+00
- 2 111 950 951 -0.20184129e+00 0.10794954e+00 0.31115884e+02 0.13498000e+00
- 1 211 0 0 0.60346194e+00 0.22040010e-01 0.20369468e+03 0.13957000e+00
- 2 111 952 953 -0.85232169e-02 0.10434397e-01 0.28339859e+03 0.13498000e+00
- 2 310 954 955 0.11622820e+00 0.36700332e+00 0.11037503e+03 0.49767000e+00
- 2 -311 956 956 -0.15409460e+00 -0.53651905e+00 0.17827322e+03 0.49767000e+00
- 2 111 957 958 -0.37563277e+00 0.53066665e-01 0.10109195e+03 0.13498000e+00
- 1 211 0 0 -0.46395865e+00 0.14333949e-01 0.90121723e+02 0.13957000e+00
- 1 -211 0 0 -0.81068814e-01 -0.90745965e-01 0.15020591e+02 0.13957000e+00
- 2 111 959 960 0.47437643e-01 -0.17049511e+00 0.50917413e+02 0.13498000e+00
- 1 211 0 0 -0.46703064e-01 -0.17528573e+00 0.35582669e+02 0.13957000e+00
- 1 -211 0 0 0.53858892e-01 -0.72258700e+00 0.23647402e+03 0.13957000e+00
- 2 111 961 962 -0.10623579e+00 0.17747710e-01 0.39198967e+02 0.13498000e+00
- 1 22 0 0 -0.46282485e-01 -0.49518141e+00 0.65085135e+02 0.00000000e+00
- 1 22 0 0 0.66288418e-01 -0.19084011e+00 0.27423472e+02 0.00000000e+00
- 1 211 0 0 -0.46107731e+00 -0.43394788e+00 0.71284652e+02 0.13957000e+00
- 2 111 963 964 -0.23248536e+00 -0.19625937e+00 0.99031501e+02 0.13498000e+00
- 1 211 0 0 -0.72238756e-01 0.45469068e-01 0.10332983e+02 0.13957000e+00
- 1 -211 0 0 0.16242337e-02 -0.37642874e+00 0.51624157e+02 0.13957000e+00
- 2 111 965 966 0.73170135e-02 -0.55043127e+00 0.40777934e+02 0.13498000e+00
- 1 -321 0 0 -0.98361003e-01 -0.20488466e+00 0.75821884e+01 0.49360000e+00
- 1 211 0 0 -0.35272043e+00 -0.75291978e-01 0.13284723e+01 0.13957000e+00
- 1 -211 0 0 -0.94094315e+00 0.29881773e+00 0.10500923e+02 0.13957000e+00
- 2 111 967 968 -0.76861568e-01 -0.14359305e+00 0.90244367e+00 0.13498000e+00
- 1 22 0 0 -0.13887005e+00 -0.28797787e-01 0.26538518e+01 0.00000000e+00
- 1 22 0 0 -0.21778099e+00 0.17895813e-01 0.20313669e+01 0.00000000e+00
- 1 -2112 0 0 -0.10704039e+01 -0.21204192e-01 0.12632516e+02 0.93957000e+00
- 2 111 969 970 -0.42134694e+00 0.23067745e+00 0.61510487e+01 0.13498000e+00
- 1 -211 0 0 -0.14122726e+00 -0.11338713e+00 0.11766093e+01 0.13957000e+00
- 1 211 0 0 -0.37589518e+00 0.12865115e+00 0.24226747e+01 0.13957000e+00
- 2 221 971 973 -0.48013519e+00 0.53786122e-01 0.34782889e+01 0.54745000e+00
- 1 22 0 0 -0.14592822e+01 -0.46194309e+00 0.11578867e+02 0.00000000e+00
- 1 22 0 0 -0.41666965e+01 -0.13531611e+01 0.26777792e+02 0.00000000e+00
- 1 -211 0 0 -0.67420555e+00 -0.55407216e+00 0.12503653e+01 0.13957000e+00
- 2 111 974 975 -0.25255203e-01 -0.19319185e+00 0.65100941e+00 0.13498000e+00
- 1 211 0 0 0.30195001e+00 -0.47323428e-01 0.10835303e+01 0.13957000e+00
- 1 -211 0 0 -0.39670903e+00 -0.28662859e+00 0.34192225e+01 0.13957000e+00
- 1 211 0 0 -0.41287262e-01 -0.88765082e+00 0.14436201e+00 0.13957000e+00
- 1 -211 0 0 -0.30420510e+00 -0.12349580e+00 0.32136456e+00 0.13957000e+00
- 1 321 0 0 -0.30491488e+00 -0.53799086e+00 -0.57557149e+00 0.49360000e+00
- 2 111 976 977 -0.22495807e+00 -0.63852137e+00 -0.44634052e-02 0.13498000e+00
- 1 22 0 0 -0.57123597e-01 -0.10876706e+00 -0.62354294e-01 0.00000000e+00
- 1 22 0 0 -0.21603811e+00 -0.87667725e-01 -0.20126824e-01 0.00000000e+00
- 1 211 0 0 -0.69916211e+00 -0.10558404e+01 -0.21651420e-01 0.13957000e+00
- 1 -211 0 0 -0.84285074e-01 -0.17138957e+00 -0.18661785e+00 0.13957000e+00
- 1 211 0 0 -0.74510492e-01 -0.48653027e+00 0.10984923e+00 0.13957000e+00
- 1 -211 0 0 -0.11145339e+01 -0.89518108e+00 0.16750556e+00 0.13957000e+00
- 1 211 0 0 -0.17747753e+00 -0.58854951e-01 0.15325874e+00 0.13957000e+00
- 2 111 978 979 -0.13579965e+01 -0.78427829e-02 0.11791857e-01 0.13498000e+00
- 1 -211 0 0 -0.13890587e+01 -0.68596687e+00 -0.58095235e+00 0.13957000e+00
- 1 211 0 0 -0.27119461e+00 -0.54942429e+00 -0.29328762e-02 0.13957000e+00
- 1 22 0 0 -0.18220718e+00 -0.48107247e-01 -0.11962296e+00 0.00000000e+00
- 1 22 0 0 0.14322669e-03 0.30762640e-01 -0.56537143e-01 0.00000000e+00
- 1 22 0 0 -0.64296275e-01 0.65809880e-01 -0.37239294e-02 0.00000000e+00
- 1 22 0 0 -0.14401743e+01 0.76189654e+00 -0.33031574e+00 0.00000000e+00
- 1 -211 0 0 -0.53328248e+00 0.13092354e+01 -0.76955222e+00 0.13957000e+00
- 2 111 980 981 -0.36740537e+00 0.13087049e+00 0.10072248e+00 0.13498000e+00
- 1 211 0 0 -0.13192191e+01 0.37808319e+00 -0.35295931e+00 0.13957000e+00
- 1 -211 0 0 -0.89245385e+00 -0.50349175e-01 -0.10381046e+01 0.13957000e+00
- 1 22 0 0 -0.14146833e+00 0.55118675e-01 -0.74672244e-01 0.00000000e+00
- 1 22 0 0 -0.74329183e+00 0.56934739e-01 -0.15139522e+00 0.00000000e+00
- 1 -211 0 0 0.11304929e+00 0.34157409e-01 -0.45405618e+00 0.13957000e+00
- 2 111 982 983 -0.11858915e+01 0.79564380e+00 -0.12471202e+01 0.13498000e+00
- 1 -211 0 0 -0.92011666e+00 0.25216961e+00 -0.76528819e+00 0.13957000e+00
- 1 211 0 0 -0.48686608e+00 -0.17131447e-02 -0.16195055e+00 0.13957000e+00
- 2 111 984 985 -0.14333717e+01 0.64938152e+00 -0.11185843e+01 0.13498000e+00
- 1 211 0 0 -0.61910470e+00 0.11738802e+01 -0.21957341e+01 0.13957000e+00
- 2 111 986 987 -0.32989379e+00 -0.87008070e-02 -0.37278347e+00 0.13498000e+00
- 1 -211 0 0 -0.41471260e+00 0.54957715e+00 -0.63034217e+00 0.13957000e+00
- 2 111 988 989 -0.69640939e+00 -0.30472540e-01 -0.76847521e+00 0.13498000e+00
- 1 -211 0 0 -0.33890339e+00 0.26247402e+00 -0.81153696e+00 0.13957000e+00
- 1 211 0 0 -0.17571423e+00 -0.54161973e-01 0.13109790e+00 0.13957000e+00
- 1 211 0 0 -0.21025947e+01 0.38879707e+00 -0.24488733e+01 0.13957000e+00
- 2 111 990 991 -0.17331571e+01 0.97251122e+00 -0.13006801e+01 0.13498000e+00
- 1 -211 0 0 -0.28422855e+00 0.48448394e+00 -0.10573733e+01 0.13957000e+00
- 2 111 992 993 -0.10059839e+01 0.17259005e+00 -0.23714693e+01 0.13498000e+00
- 1 211 0 0 -0.22342418e+00 -0.30086108e+00 -0.43939130e+00 0.13957000e+00
- 2 111 994 995 -0.99008012e+00 0.83607760e-02 -0.27664820e+01 0.13498000e+00
- 1 2112 0 0 -0.98052902e+00 -0.12398050e+01 -0.52160086e+01 0.93957000e+00
- 2 111 996 997 -0.30180653e-02 -0.57291857e+00 -0.16194842e+01 0.13498000e+00
- 1 -2212 0 0 -0.13310085e+01 -0.57107686e+01 -0.21692829e+02 0.93827000e+00
- 1 211 0 0 -0.17417089e+00 -0.58872245e+00 -0.30199079e+01 0.13957000e+00
- 1 -211 0 0 0.13957997e+00 -0.17285533e+00 -0.11727812e+01 0.13957000e+00
- 2 111 998 999 -0.43538227e+00 -0.10516506e+01 -0.25773430e+01 0.13498000e+00
- 1 211 0 0 -0.43932117e+01 -0.13901662e+02 -0.52074108e+02 0.13957000e+00
- 2 111 1000 1001 -0.15525709e+01 -0.42450771e+01 -0.15393898e+02 0.13498000e+00
- 1 -211 0 0 -0.18882435e-01 -0.40863375e+00 -0.19507782e+01 0.13957000e+00
- 2 111 1002 1003 -0.30673212e+00 -0.90924028e+00 -0.31091830e+01 0.13498000e+00
- 1 211 0 0 -0.84088664e+00 -0.22905971e+01 -0.10052992e+02 0.13957000e+00
- 2 111 1004 1005 -0.20958046e+01 -0.75099046e+01 -0.27583795e+02 0.13498000e+00
- 2 111 1006 1007 -0.19419370e+01 -0.70656955e+01 -0.27003740e+02 0.13498000e+00
- 2 111 1008 1009 -0.34135520e+00 -0.13888874e+01 -0.55112248e+01 0.13498000e+00
- 2 111 1010 1011 -0.93474703e+00 -0.31941577e+01 -0.12508399e+02 0.13498000e+00
- 1 -211 0 0 -0.11502787e+01 -0.16061874e+01 -0.11263277e+02 0.13957000e+00
- 1 211 0 0 -0.69671646e+00 -0.15650700e+01 -0.11654360e+02 0.13957000e+00
- 1 -211 0 0 -0.19495802e+00 -0.43900354e+00 -0.26788710e+01 0.13957000e+00
- 2 111 1012 1013 -0.12014925e+00 0.31510531e-01 -0.10465962e+01 0.13498000e+00
- 1 211 0 0 0.24688341e-01 -0.12666907e+00 -0.18545914e+01 0.13957000e+00
- 1 -211 0 0 -0.36829992e+00 -0.36913957e+00 -0.16932855e+01 0.13957000e+00
- 2 111 1014 1015 -0.28213999e+00 -0.49719000e+00 -0.21668157e+01 0.13498000e+00
- 1 2212 0 0 -0.16577277e+01 -0.28739907e+01 -0.18506435e+02 0.93827000e+00
- 1 211 0 0 -0.38923264e+00 -0.97571992e+00 -0.68074946e+01 0.13957000e+00
- 1 211 0 0 0.16143376e+00 0.26676045e-02 -0.21910390e+00 0.13957000e+00
- 1 -211 0 0 -0.11132483e+00 0.19601789e+00 -0.61238088e+01 0.13957000e+00
- 1 -2212 0 0 0.10156657e+01 0.33372604e-01 -0.69544253e+01 0.93827000e+00
- 1 -211 0 0 -0.85277841e-01 0.12306169e+00 -0.93568977e+00 0.13957000e+00
- 1 -211 0 0 0.77263269e-01 -0.66973773e-01 -0.39209064e+01 0.13957000e+00
- 1 211 0 0 0.20655636e+00 -0.15549934e+00 -0.75457989e+00 0.13957000e+00
- 1 -211 0 0 0.41937003e-01 0.60501709e-01 -0.21033128e+01 0.13957000e+00
- 1 211 0 0 0.54337945e+00 0.65560040e+00 -0.23950761e+01 0.13957000e+00
- 1 -211 0 0 0.73741711e+00 0.86911031e+00 -0.49411428e+01 0.13957000e+00
- 1 211 0 0 0.18458804e+01 0.93481778e+00 -0.14650864e+02 0.13957000e+00
- 1 -211 0 0 0.13077158e+01 0.66585610e+00 -0.85049098e+01 0.13957000e+00
- 2 111 1016 1017 0.32285946e+01 0.27473779e+01 -0.17107361e+02 0.13498000e+00
- 1 211 0 0 0.11967881e+01 0.53683862e+00 -0.75335351e+01 0.13957000e+00
- 2 111 1018 1019 0.81355603e+00 0.12515601e+01 -0.66234881e+01 0.13498000e+00
- 1 -211 0 0 0.22242943e+00 -0.51013263e+00 -0.14466829e+01 0.13957000e+00
- 2 111 1020 1021 -0.92975018e-01 0.25929376e+00 -0.15065130e+01 0.13498000e+00
- 1 211 0 0 0.31286866e+00 0.42876257e-02 -0.27570950e+02 0.13957000e+00
- 2 111 1022 1023 -0.23711869e+00 0.59395907e+00 -0.57136333e+02 0.13498000e+00
- 1 -211 0 0 0.12971667e+00 -0.44437319e+00 -0.83008872e+01 0.13957000e+00
- 1 211 0 0 -0.32847252e+00 -0.26637396e+00 -0.17034483e+02 0.13957000e+00
- 1 211 0 0 -0.28527263e+00 -0.69448030e-01 -0.10966938e+02 0.13957000e+00
- 1 -211 0 0 -0.59221534e-02 -0.52813224e-01 -0.97001644e+01 0.13957000e+00
- 2 111 1024 1025 -0.23396165e+00 -0.78844576e-02 -0.93986726e+01 0.13498000e+00
- 1 211 0 0 0.25523658e-01 0.38128206e-02 -0.44641704e+02 0.13957000e+00
- 1 -211 0 0 0.24780872e+00 0.31528790e+00 -0.10468983e+03 0.13957000e+00
- 2 111 1026 1027 0.16449823e+00 0.61480247e-01 -0.13565857e+02 0.13498000e+00
- 1 -211 0 0 -0.11948379e+00 0.13131249e+00 -0.81456645e+02 0.13957000e+00
- 2 111 1028 1029 -0.25746730e+00 -0.49368981e+00 -0.78079386e+02 0.13498000e+00
- 1 22 0 0 -0.59471805e-02 -0.12829186e+00 -0.38912327e+02 0.00000000e+00
- 2 113 1030 1031 -0.32604272e+00 -0.49519680e+00 -0.10695858e+03 0.80100445e+00
- 1 211 0 0 0.21638431e+00 0.25176662e+00 -0.98290066e+02 0.13957000e+00
- 2 111 1032 1033 -0.54307468e+00 -0.58519352e+00 -0.11721899e+03 0.13498000e+00
- 1 22 0 0 -0.47019045e-01 -0.11196648e-01 -0.57226257e+02 0.00000000e+00
- 1 22 0 0 -0.11430372e+00 -0.36733935e+00 -0.46319896e+03 0.00000000e+00
- 1 22 0 0 0.16020230e+00 0.63375976e+00 0.10652943e+01 0.00000000e+00
- 1 22 0 0 -0.99879189e-01 0.22521139e+00 0.31825076e-01 0.00000000e+00
- 1 321 0 0 -0.16989606e+01 0.11185070e+01 0.67593213e+00 0.49360000e+00
- 1 -211 0 0 -0.68583185e+00 0.95022940e+00 0.61906283e+00 0.13957000e+00
- 1 211 0 0 0.14362041e+00 -0.13589410e+00 0.10451232e+00 0.13957000e+00
- 2 111 1034 1035 -0.80652562e-01 0.87420723e+00 0.47629187e+00 0.13498000e+00
- 1 -2212 0 0 -0.10108489e+01 0.57509174e+00 -0.13022514e+00 0.93827000e+00
- 1 -211 0 0 -0.15528251e+00 -0.16985287e+00 0.18995102e+00 0.13957000e+00
- 1 211 0 0 -0.20853133e+00 -0.18584847e+00 0.65681715e+00 0.13957000e+00
- 2 111 1036 1037 -0.12033892e+00 0.57048534e+00 0.98490698e+00 0.13498000e+00
- 1 2212 0 0 -0.19702525e+00 -0.21283800e+00 0.97384144e+00 0.93827000e+00
- 2 111 1038 1039 -0.38693486e+00 -0.33146285e-01 0.29727354e+00 0.13498000e+00
- 1 22 0 0 0.10118529e+00 -0.73414538e-01 0.20682411e+00 0.00000000e+00
- 1 22 0 0 0.94172248e+00 -0.31995031e+00 0.12296834e+01 0.00000000e+00
- 1 321 0 0 0.12923052e+01 -0.14101469e+01 0.49396151e+01 0.49360000e+00
- 1 -211 0 0 0.18211565e+01 -0.18270747e+01 0.59849493e+01 0.13957000e+00
- 2 -311 1040 1040 0.57393001e+00 -0.44394779e+00 0.25340855e+01 0.49767000e+00
- 2 111 1041 1042 0.13488037e+01 -0.47323900e+00 0.41428621e+01 0.13498000e+00
- 1 -321 0 0 -0.58594480e-01 -0.19824016e+00 0.77908704e+01 0.49360000e+00
- 1 211 0 0 -0.53817511e+00 -0.14704267e+00 0.63290604e+01 0.13957000e+00
- 1 -211 0 0 0.59595022e+00 0.46104247e-01 0.21156718e+01 0.13957000e+00
- 2 111 1043 1044 0.15625157e+00 0.83670547e+00 0.10503735e+01 0.13498000e+00
- 1 211 0 0 0.36422307e+00 -0.31270929e+00 0.11527577e+01 0.13957000e+00
- 2 111 1045 1046 -0.18994135e+00 0.18720829e-01 0.15971226e+01 0.13498000e+00
- 1 211 0 0 0.40086369e+00 -0.28239619e+00 0.13042812e+01 0.13957000e+00
- 1 -211 0 0 0.42711800e+00 0.34337425e+00 0.12360562e+01 0.13957000e+00
- 1 211 0 0 0.35095159e-01 -0.14721249e+00 0.29671740e+01 0.13957000e+00
- 2 111 1047 1048 0.39979335e+00 0.90430722e-01 0.64944493e+00 0.13498000e+00
- 1 22 0 0 -0.39948566e-01 -0.18138576e+00 0.10378635e+00 0.00000000e+00
- 2 111 1049 1050 0.33794711e+00 -0.21414012e+00 0.29133220e+01 0.13498000e+00
- 1 22 0 0 -0.14314334e+00 -0.14001587e+00 0.96163327e+01 0.00000000e+00
- 1 22 0 0 -0.15477447e+00 -0.38396938e-01 0.44767652e+01 0.00000000e+00
- 1 211 0 0 -0.11633327e+00 -0.30739738e+00 0.23054478e+02 0.13957000e+00
- 1 -211 0 0 -0.41661823e-01 0.20590140e-01 0.46212178e+01 0.13957000e+00
- 2 111 1051 1052 -0.56060885e+00 -0.71214042e+00 0.36963882e+02 0.13498000e+00
- 1 22 0 0 -0.12909908e-01 -0.11926539e+00 0.17013713e+01 0.00000000e+00
- 1 22 0 0 0.18419348e+00 -0.51080541e+00 0.58329166e+01 0.00000000e+00
- 1 211 0 0 0.25248643e+00 -0.16195498e+00 0.47589130e+01 0.13957000e+00
- 1 -211 0 0 -0.23982232e+00 0.46787074e+00 0.16420412e+02 0.13957000e+00
- 1 22 0 0 -0.90027704e-01 -0.84221715e-02 0.10008035e+01 0.00000000e+00
- 1 22 0 0 -0.10892919e+00 -0.19605351e+00 0.20962050e+01 0.00000000e+00
- 1 130 0 0 0.54306145e+00 -0.39670312e-01 0.91814173e+01 0.49767000e+00
- 2 -311 1053 1053 0.21077444e+00 0.75820936e+00 -0.48352242e+01 0.49767000e+00
- 1 -211 0 0 0.19246331e+00 0.56806425e-01 -0.12518823e+01 0.13957000e+00
- 1 -321 0 0 -0.12837462e+00 0.79747992e+00 0.61667796e+02 0.49360000e+00
- 1 211 0 0 0.25387067e+00 0.23488058e+00 0.12040919e+02 0.13957000e+00
- 2 311 1054 1054 -0.93125607e-01 0.18421927e+00 -0.98205733e+00 0.49767000e+00
- 1 211 0 0 0.22547925e+00 0.17031763e+00 -0.46033980e+00 0.13957000e+00
- 2 111 1055 1056 0.44927447e+00 -0.30093373e+00 0.13889153e+00 0.13498000e+00
- 2 111 1057 1058 0.11871935e+01 -0.10826830e+00 0.18473795e+00 0.13498000e+00
- 1 22 0 0 0.17366223e+00 -0.23208544e+00 0.15306156e+00 0.00000000e+00
- 1 22 0 0 -0.17448558e-01 -0.79327937e-01 0.70917621e-01 0.00000000e+00
- 1 211 0 0 -0.67814068e+00 0.27662535e+00 0.15528566e+03 0.13957000e+00
- 1 -211 0 0 -0.74096479e-01 -0.53324142e-01 0.21184588e+02 0.13957000e+00
- 1 22 0 0 -0.47792736e-01 -0.10669476e-01 0.27900811e+01 0.00000000e+00
- 1 22 0 0 0.45538166e-01 -0.17285357e+00 0.94526572e+01 0.00000000e+00
- 1 22 0 0 0.14294585e-01 0.86259615e-01 0.87791492e+00 0.00000000e+00
- 1 22 0 0 -0.14358237e-01 0.49340236e-01 0.29388081e+01 0.00000000e+00
- 1 22 0 0 0.72764442e-01 -0.93010239e-01 0.15593223e+01 0.00000000e+00
- 1 22 0 0 0.65893155e-01 -0.36503764e+00 0.75122294e+01 0.00000000e+00
- 2 310 1059 1060 -0.24717139e-01 0.11071531e+00 0.52599308e+01 0.49767000e+00
- 1 22 0 0 0.15379396e+00 -0.15532524e+00 0.17847586e+01 0.00000000e+00
- 1 22 0 0 -0.18307416e-01 -0.90658900e-01 0.66542298e+00 0.00000000e+00
- 1 22 0 0 -0.49679321e-01 -0.49121105e-01 0.49234337e-01 0.00000000e+00
- 1 22 0 0 -0.93185444e-01 0.99333703e-02 0.33540681e+00 0.00000000e+00
- 2 310 1061 1062 0.85526676e+00 0.74622873e+00 0.41507729e+01 0.49767000e+00
- 1 22 0 0 0.54896954e-02 -0.16635069e-01 0.21792799e-01 0.00000000e+00
- 1 22 0 0 -0.27075617e+00 -0.21029378e-01 0.11492646e+01 0.00000000e+00
- 1 22 0 0 0.34743023e-01 -0.39789896e-01 0.69123164e+00 0.00000000e+00
- 1 22 0 0 -0.41855261e-01 0.23239285e-01 0.11765378e+00 0.00000000e+00
- 1 22 0 0 0.65489818e-01 0.25161026e+00 0.14799529e+00 0.00000000e+00
- 1 22 0 0 -0.25742488e-01 0.17809354e+00 0.21716931e+00 0.00000000e+00
- 1 22 0 0 0.97613984e-01 0.69086054e+00 0.33056068e+00 0.00000000e+00
- 1 22 0 0 0.63351824e-01 0.11563147e+00 0.10335285e+00 0.00000000e+00
- 1 22 0 0 0.42929584e+00 0.13990396e+01 0.57071382e+00 0.00000000e+00
- 1 22 0 0 0.22520256e+00 0.11391458e+01 0.47113009e+00 0.00000000e+00
- 1 22 0 0 0.80479790e-01 0.33557090e+00 0.10366468e+00 0.00000000e+00
- 1 22 0 0 0.57775354e+00 0.17513428e+01 0.84443077e+00 0.00000000e+00
- 1 22 0 0 0.11562689e+01 0.30744906e+01 0.11803251e+01 0.00000000e+00
- 1 22 0 0 0.50787748e+00 0.12107346e+01 0.54658475e+00 0.00000000e+00
- 1 22 0 0 0.55404551e-01 0.21237630e+00 0.30478439e+00 0.00000000e+00
- 1 22 0 0 0.14839774e-01 0.21730781e+00 0.12620983e+00 0.00000000e+00
- 1 22 0 0 0.18705878e+00 0.84885695e+00 -0.38585569e-01 0.00000000e+00
- 1 22 0 0 0.16854640e-01 0.21834661e+00 -0.71170934e-01 0.00000000e+00
- 1 22 0 0 0.51634740e+00 0.19267700e+00 0.48809793e-01 0.00000000e+00
- 1 22 0 0 0.44058419e-01 -0.22500447e-01 -0.24391449e-02 0.00000000e+00
- 2 310 1063 1064 0.52065701e+00 0.12935678e+00 -0.29199586e+00 0.49767000e+00
- 2 310 1065 1066 0.52127328e+00 0.16667879e+00 -0.33258692e+00 0.49767000e+00
- 2 310 1067 1068 0.14024710e+01 0.11129820e+00 -0.49296499e+00 0.49767000e+00
- 1 22 0 0 0.30597047e+00 -0.23888667e+00 -0.77253335e-01 0.00000000e+00
- 1 22 0 0 0.72706393e+00 -0.64421203e+00 -0.40760844e+00 0.00000000e+00
- 1 22 0 0 -0.40165680e-02 0.16078405e-01 -0.48395764e-01 0.00000000e+00
- 1 22 0 0 -0.74286197e-01 -0.20356766e-01 0.74424928e-01 0.00000000e+00
- 1 22 0 0 0.25682437e-01 0.95420571e-02 -0.13354935e-01 0.00000000e+00
- 1 22 0 0 0.35189697e+00 -0.37364166e+00 -0.41611212e+00 0.00000000e+00
- 1 22 0 0 0.18339433e+00 -0.14123665e+00 -0.71329154e-01 0.00000000e+00
- 1 22 0 0 0.95760023e+00 -0.43807554e+00 -0.49713158e+00 0.00000000e+00
- 2 111 1069 1070 0.97692818e+00 0.30685492e-01 -0.18051957e+01 0.13498000e+00
- 2 111 1071 1072 0.16948146e+01 -0.27557579e+00 -0.41578578e+01 0.13498000e+00
- 2 310 1073 1074 0.39833831e+01 0.18911346e+01 -0.66259716e+01 0.49767000e+00
- 1 22 0 0 0.29162141e+00 0.51767338e+00 -0.16669121e+01 0.00000000e+00
- 1 22 0 0 0.45283231e+00 0.51307853e+00 -0.18617625e+01 0.00000000e+00
- 1 22 0 0 -0.15731646e-01 0.77458503e-01 -0.98034008e-01 0.00000000e+00
- 1 22 0 0 -0.31888668e-01 0.37095207e+00 -0.10972361e+01 0.00000000e+00
- 1 22 0 0 -0.26151912e-01 0.65925777e-01 -0.90277213e-01 0.00000000e+00
- 1 22 0 0 -0.38258347e+00 0.34177723e+00 -0.12099476e+01 0.00000000e+00
- 1 22 0 0 0.29281005e-02 0.16003895e+00 -0.20246892e+00 0.00000000e+00
- 1 22 0 0 0.59239041e-01 0.69009923e+00 -0.49083351e+00 0.00000000e+00
- 1 22 0 0 0.87636973e-02 -0.25829462e-01 -0.79522866e+00 0.00000000e+00
- 1 22 0 0 0.50103248e-01 -0.10239129e+00 -0.42343410e+00 0.00000000e+00
- 1 22 0 0 0.15834010e-01 -0.10955827e+00 -0.13288839e+01 0.00000000e+00
- 1 22 0 0 0.12866873e+00 -0.37532735e+00 -0.25848614e+01 0.00000000e+00
- 1 22 0 0 0.11260595e+00 -0.30269479e+00 -0.21212648e+01 0.00000000e+00
- 1 22 0 0 0.24085799e+00 -0.84848712e+00 -0.45432225e+01 0.00000000e+00
- 1 22 0 0 0.11647349e+01 -0.12798364e+01 -0.24489261e+02 0.00000000e+00
- 1 22 0 0 0.54987298e+00 -0.48176054e+00 -0.10775842e+02 0.00000000e+00
- 1 211 0 0 0.53553044e+00 -0.29260155e+00 -0.73066881e+01 0.13957000e+00
- 1 -211 0 0 0.83781709e+00 -0.22038222e+00 -0.16792518e+02 0.13957000e+00
- 1 22 0 0 0.16087697e-02 -0.82403881e-02 -0.45624602e-01 0.00000000e+00
- 1 22 0 0 -0.13155581e+00 0.26054331e+00 -0.85094730e+01 0.00000000e+00
- 1 22 0 0 -0.65213976e-01 -0.12019112e+00 -0.11047834e+01 0.00000000e+00
- 1 22 0 0 -0.43276559e-01 -0.41112994e+00 -0.50430482e+01 0.00000000e+00
- 1 22 0 0 0.11242506e-01 -0.17501580e-01 -0.16384970e+01 0.00000000e+00
- 1 22 0 0 -0.26453182e-01 -0.47615616e+00 -0.11965727e+02 0.00000000e+00
- 1 22 0 0 -0.16953759e+00 0.37749959e-01 -0.24159524e+02 0.00000000e+00
- 1 11 0 0 -0.17964619e-02 0.45134607e-01 -0.13413189e+02 0.51000000e-03
- 1 -11 0 0 0.20404136e-03 0.50553001e-02 -0.13133231e+01 0.51000000e-03
- 1 22 0 0 -0.21904878e+00 0.74276700e-01 -0.42502779e+02 0.00000000e+00
- 1 22 0 0 -0.35492452e+00 -0.14078201e-01 -0.48496466e+02 0.00000000e+00
- 2 111 1075 1076 -0.42523539e+00 0.44662188e-01 -0.38015918e+02 0.13498000e+00
- 2 111 1077 1078 -0.20453084e+00 0.49074680e-02 -0.66419615e+02 0.13498000e+00
- 1 22 0 0 -0.18748051e-01 -0.47970112e-01 -0.29585036e+01 0.00000000e+00
- 1 22 0 0 -0.39109590e+00 -0.16867873e+00 -0.39617286e+02 0.00000000e+00
- 1 22 0 0 -0.26400211e+00 0.66771956e+00 -0.17438721e+03 0.00000000e+00
- 1 22 0 0 -0.12720565e+00 0.59891906e+00 -0.13237936e+03 0.00000000e+00
- 1 22 0 0 0.53639643e+00 0.19117016e+00 -0.49053212e+02 0.00000000e+00
- 1 22 0 0 0.48144612e+00 0.19559744e+00 -0.57117809e+02 0.00000000e+00
- 1 22 0 0 -0.10851853e-01 -0.40608830e-02 -0.74928045e+01 0.00000000e+00
- 1 22 0 0 0.59844321e-01 -0.14327312e+00 -0.10089025e+02 0.00000000e+00
- 1 -211 0 0 0.44935456e+00 0.10480117e+01 -0.94574695e+01 0.13957000e+00
- 1 211 0 0 0.39879625e+00 0.37638616e+00 -0.34674423e+01 0.13957000e+00
- 1 22 0 0 0.36042799e-01 -0.28077272e-01 -0.31835295e+00 0.00000000e+00
- 1 22 0 0 0.77774395e-01 -0.17859407e+00 -0.48001145e+01 0.00000000e+00
- 1 22 0 0 0.31065610e-01 -0.65853398e-02 -0.15306155e+00 0.00000000e+00
- 1 22 0 0 -0.13943250e+00 -0.42233512e-01 -0.10837247e+01 0.00000000e+00
- 1 22 0 0 0.34593484e+00 -0.22036268e+00 -0.63819590e+01 0.00000000e+00
- 1 22 0 0 0.44198865e-01 -0.10450659e+00 -0.14518507e+01 0.00000000e+00
- 1 22 0 0 0.67537593e-03 0.42120730e-02 -0.34732681e-02 0.00000000e+00
- 1 22 0 0 0.21734877e+00 -0.14719918e+00 -0.42371388e+01 0.00000000e+00
- 1 22 0 0 0.61430072e-01 0.10315863e+00 -0.12465651e+02 0.00000000e+00
- 1 22 0 0 -0.47521667e-01 -0.42525310e-02 -0.54222828e+01 0.00000000e+00
- 1 22 0 0 0.37544578e+00 -0.12840807e+00 0.50653799e+01 0.00000000e+00
- 1 22 0 0 -0.23781906e-02 -0.16478827e-01 0.58881710e+00 0.00000000e+00
- 1 22 0 0 -0.27743915e-01 0.69387820e-01 0.45203034e+01 0.00000000e+00
- 1 22 0 0 0.71015986e-01 0.43639975e+00 0.16068369e+02 0.00000000e+00
- 1 22 0 0 -0.53661243e-01 -0.31438166e-01 0.11837649e+01 0.00000000e+00
- 1 22 0 0 -0.22741660e-01 0.80393393e-01 0.41719788e+01 0.00000000e+00
- 1 22 0 0 -0.54146426e-01 0.19611473e-01 0.33207721e+01 0.00000000e+00
- 1 22 0 0 0.58045971e-02 0.18573043e+00 0.61055956e+01 0.00000000e+00
- 1 -211 0 0 0.30530835e+00 0.23132063e-01 0.57147996e+01 0.13957000e+00
- 1 211 0 0 -0.13760817e-01 -0.87199677e-01 0.86350425e+00 0.13957000e+00
- 1 22 0 0 0.52641938e-01 -0.45275297e+00 0.96131953e+01 0.00000000e+00
- 1 -11 0 0 -0.66494948e-02 -0.93657985e-01 0.33590926e+01 0.51000000e-03
- 1 11 0 0 -0.26460751e-02 -0.26943996e-01 0.99844259e+00 0.51000000e-03
- 1 22 0 0 -0.64046062e-01 0.40311454e+00 0.89386077e+01 0.00000000e+00
- 1 22 0 0 0.31290355e-01 0.32858698e-01 0.15450553e+01 0.00000000e+00
- 1 130 0 0 0.14778459e+00 0.16733625e+01 0.13823309e+02 0.49767000e+00
- 1 22 0 0 -0.26681677e+00 0.36971590e+00 0.48130888e+01 0.00000000e+00
- 1 22 0 0 0.10810141e-01 0.98173581e-03 0.51397661e-01 0.00000000e+00
- 1 -211 0 0 -0.28491618e-01 -0.90923429e-01 0.37549447e+00 0.13957000e+00
- 1 211 0 0 -0.32742359e+00 0.57637421e-01 0.27193347e+01 0.13957000e+00
- 1 22 0 0 -0.88989553e+00 0.13244639e+01 0.29032722e+02 0.00000000e+00
- 1 22 0 0 -0.19301500e+00 0.30687859e+00 0.55373367e+01 0.00000000e+00
- 1 -211 0 0 -0.85474678e-01 0.89462250e-01 0.12678314e+02 0.13957000e+00
- 1 211 0 0 -0.18299307e+00 0.54560859e-01 0.32405976e+02 0.13957000e+00
- 2 111 1079 1080 -0.23262054e+00 0.34683217e+00 0.38575787e+02 0.13498000e+00
- 1 22 0 0 -0.11996840e+00 0.91376293e-02 0.20606425e+02 0.00000000e+00
- 1 22 0 0 -0.81872896e-01 0.98811910e-01 0.10509459e+02 0.00000000e+00
- 1 22 0 0 -0.56490506e-01 0.39547439e-01 0.99450989e+02 0.00000000e+00
- 1 22 0 0 0.47967289e-01 -0.29113042e-01 0.18394760e+03 0.00000000e+00
- 1 -211 0 0 -0.40611533e-01 -0.46861957e-01 0.37886321e+02 0.13957000e+00
- 1 211 0 0 0.15683973e+00 0.41386528e+00 0.72488706e+02 0.13957000e+00
- 1 130 0 0 -0.15409460e+00 -0.53651905e+00 0.17827322e+03 0.49767000e+00
- 1 22 0 0 -0.28670889e+00 0.60289504e-01 0.88546151e+02 0.00000000e+00
- 1 22 0 0 -0.88923883e-01 -0.72228392e-02 0.12545795e+02 0.00000000e+00
- 1 22 0 0 -0.42755769e-01 -0.21979016e-01 0.12842398e+02 0.00000000e+00
- 1 22 0 0 0.90193412e-01 -0.14851609e+00 0.38075016e+02 0.00000000e+00
- 1 22 0 0 0.27843271e-01 0.23682130e-02 0.30374420e+01 0.00000000e+00
- 1 22 0 0 -0.13407906e+00 0.15379497e-01 0.36161525e+02 0.00000000e+00
- 1 22 0 0 -0.20116773e+00 -0.10751884e+00 0.80182640e+02 0.00000000e+00
- 1 22 0 0 -0.31317625e-01 -0.88740524e-01 0.18848862e+02 0.00000000e+00
- 1 22 0 0 0.60219677e-01 -0.18098718e+00 0.11930354e+02 0.00000000e+00
- 1 22 0 0 -0.52902664e-01 -0.36944409e+00 0.28847580e+02 0.00000000e+00
- 1 22 0 0 -0.14810764e-04 0.25048375e-01 0.14283798e+00 0.00000000e+00
- 1 22 0 0 -0.76846758e-01 -0.16864143e+00 0.75960570e+00 0.00000000e+00
- 1 22 0 0 -0.34819691e+00 0.20146074e+00 0.43740985e+01 0.00000000e+00
- 1 22 0 0 -0.73150038e-01 0.29216709e-01 0.17769501e+01 0.00000000e+00
- 1 211 0 0 -0.17728688e+00 0.93710898e-01 0.12203030e+01 0.13957000e+00
- 1 -211 0 0 -0.18050836e+00 0.98651448e-01 0.96590861e+00 0.13957000e+00
- 2 111 1081 1082 -0.12233995e+00 -0.13857622e+00 0.12920772e+01 0.13498000e+00
- 1 22 0 0 -0.28055748e-01 0.11512665e-01 0.11821865e+00 0.00000000e+00
- 1 22 0 0 0.28005449e-02 -0.20470451e+00 0.53279075e+00 0.00000000e+00
- 1 22 0 0 -0.42652855e-01 -0.26331654e+00 0.44075884e-01 0.00000000e+00
- 1 22 0 0 -0.18230522e+00 -0.37520483e+00 -0.48539289e-01 0.00000000e+00
- 1 22 0 0 -0.74737222e+00 0.47856502e-01 0.48763542e-01 0.00000000e+00
- 1 22 0 0 -0.61062427e+00 -0.55699285e-01 -0.36971684e-01 0.00000000e+00
- 1 22 0 0 -0.22430559e-01 -0.25364416e-01 0.11449275e-01 0.00000000e+00
- 1 22 0 0 -0.34497481e+00 0.15623491e+00 0.89273204e-01 0.00000000e+00
- 1 22 0 0 -0.60551983e+00 0.48394790e+00 -0.69936145e+00 0.00000000e+00
- 1 22 0 0 -0.58037171e+00 0.31169590e+00 -0.54775878e+00 0.00000000e+00
- 1 22 0 0 -0.53928662e-01 0.28429917e-01 -0.79271624e-01 0.00000000e+00
- 1 22 0 0 -0.13794430e+01 0.62095160e+00 -0.10393127e+01 0.00000000e+00
- 1 22 0 0 -0.23737417e+00 0.41595922e-01 -0.31205773e+00 0.00000000e+00
- 1 22 0 0 -0.92519611e-01 -0.50296729e-01 -0.60725741e-01 0.00000000e+00
- 1 22 0 0 -0.56028191e+00 -0.74650197e-01 -0.58326047e+00 0.00000000e+00
- 1 22 0 0 -0.13612748e+00 0.44177657e-01 -0.18521474e+00 0.00000000e+00
- 1 22 0 0 -0.34620787e+00 0.17185068e+00 -0.19502266e+00 0.00000000e+00
- 1 22 0 0 -0.13869493e+01 0.80066055e+00 -0.11056575e+01 0.00000000e+00
- 1 22 0 0 -0.27374230e+00 0.95144409e-01 -0.76829270e+00 0.00000000e+00
- 1 22 0 0 -0.73224160e+00 0.77445645e-01 -0.16031766e+01 0.00000000e+00
- 1 22 0 0 -0.98677150e+00 0.26542569e-02 -0.27630897e+01 0.00000000e+00
- 1 22 0 0 -0.33086141e-02 0.57065190e-02 -0.33922313e-02 0.00000000e+00
- 1 22 0 0 0.19281706e-01 -0.46562298e+00 -0.11459359e+01 0.00000000e+00
- 1 22 0 0 -0.22299771e-01 -0.10729558e+00 -0.47354831e+00 0.00000000e+00
- 1 22 0 0 -0.41863612e+00 -0.10090733e+01 -0.23896776e+01 0.00000000e+00
- 1 22 0 0 -0.16746156e-01 -0.42577292e-01 -0.18766537e+00 0.00000000e+00
- 1 22 0 0 -0.12685305e+01 -0.35098529e+01 -0.12880192e+02 0.00000000e+00
- 1 22 0 0 -0.28404044e+00 -0.73522426e+00 -0.25137053e+01 0.00000000e+00
- 1 22 0 0 -0.28489381e-01 -0.24501130e+00 -0.70066801e+00 0.00000000e+00
- 1 22 0 0 -0.27824274e+00 -0.66422897e+00 -0.24085150e+01 0.00000000e+00
- 1 22 0 0 -0.13309513e+01 -0.45247977e+01 -0.16706367e+02 0.00000000e+00
- 1 22 0 0 -0.76485334e+00 -0.29851068e+01 -0.10877427e+02 0.00000000e+00
- 1 22 0 0 -0.25846212e+00 -0.10121028e+01 -0.36871532e+01 0.00000000e+00
- 1 22 0 0 -0.16834749e+01 -0.60535927e+01 -0.23316587e+02 0.00000000e+00
- 1 22 0 0 -0.22098530e+00 -0.10411919e+01 -0.38961277e+01 0.00000000e+00
- 1 22 0 0 -0.12036990e+00 -0.34769552e+00 -0.16150971e+01 0.00000000e+00
- 1 22 0 0 -0.41799155e+00 -0.13708193e+01 -0.51353123e+01 0.00000000e+00
- 1 22 0 0 -0.51675547e+00 -0.18233384e+01 -0.73730863e+01 0.00000000e+00
- 1 22 0 0 -0.89829729e-01 0.53969542e-01 -0.36065900e+00 0.00000000e+00
- 1 22 0 0 -0.30319520e-01 -0.22459010e-01 -0.68593723e+00 0.00000000e+00
- 1 22 0 0 -0.17178874e+00 -0.35607778e+00 -0.16909510e+01 0.00000000e+00
- 1 22 0 0 -0.11035126e+00 -0.14111223e+00 -0.47586475e+00 0.00000000e+00
- 1 22 0 0 0.28081697e+01 0.23694422e+01 -0.15000305e+02 0.00000000e+00
- 1 22 0 0 0.42042494e+00 0.37793571e+00 -0.21070565e+01 0.00000000e+00
- 1 22 0 0 0.54060549e+00 0.73276865e+00 -0.38558710e+01 0.00000000e+00
- 1 22 0 0 0.27295054e+00 0.51879149e+00 -0.27676171e+01 0.00000000e+00
- 1 22 0 0 -0.60007195e-02 0.29190084e-01 -0.37206246e-01 0.00000000e+00
- 1 22 0 0 -0.86974299e-01 0.23010367e+00 -0.14693067e+01 0.00000000e+00
- 1 22 0 0 -0.14122116e+00 0.27710962e+00 -0.33056978e+02 0.00000000e+00
- 1 22 0 0 -0.95897532e-01 0.31684945e+00 -0.24079354e+02 0.00000000e+00
- 1 22 0 0 -0.42712464e-01 -0.46913991e-01 -0.36954333e+01 0.00000000e+00
- 1 22 0 0 -0.19124919e+00 0.39029533e-01 -0.57032393e+01 0.00000000e+00
- 1 22 0 0 0.13374346e+00 0.80061370e-01 -0.12815778e+02 0.00000000e+00
- 1 22 0 0 0.30754762e-01 -0.18581122e-01 -0.75007896e+00 0.00000000e+00
- 1 22 0 0 -0.14583239e-01 -0.15674257e+00 -0.20699470e+02 0.00000000e+00
- 1 22 0 0 -0.24288406e+00 -0.33694723e+00 -0.57379916e+02 0.00000000e+00
- 1 -211 0 0 0.34830831e-01 0.16330669e+00 -0.16842384e+02 0.13957000e+00
- 1 211 0 0 -0.36087355e+00 -0.65850348e+00 -0.90116198e+02 0.13957000e+00
- 1 22 0 0 -0.26608269e+00 -0.25532134e+00 -0.44941428e+02 0.00000000e+00
- 1 22 0 0 -0.27699199e+00 -0.32987219e+00 -0.72277562e+02 0.00000000e+00
- 1 22 0 0 0.32959707e-01 0.33123227e+00 0.19713546e+00 0.00000000e+00
- 1 22 0 0 -0.11361227e+00 0.54297496e+00 0.27915642e+00 0.00000000e+00
- 1 22 0 0 -0.78147487e-01 0.17799158e+00 0.42556902e+00 0.00000000e+00
- 1 22 0 0 -0.42191429e-01 0.39249377e+00 0.55933797e+00 0.00000000e+00
- 1 22 0 0 -0.30420498e+00 -0.71228936e-01 0.18617393e+00 0.00000000e+00
- 1 22 0 0 -0.82729881e-01 0.38082651e-01 0.11109961e+00 0.00000000e+00
- 2 310 1083 1084 0.57393001e+00 -0.44394779e+00 0.25340855e+01 0.49767000e+00
- 1 22 0 0 0.23849801e+00 -0.11111021e+00 0.90948624e+00 0.00000000e+00
- 1 22 0 0 0.11103057e+01 -0.36212879e+00 0.32333759e+01 0.00000000e+00
- 1 22 0 0 0.15308114e-01 0.43765886e+00 0.56100739e+00 0.00000000e+00
- 1 22 0 0 0.14094346e+00 0.39904661e+00 0.48936606e+00 0.00000000e+00
- 1 22 0 0 -0.99503257e-01 -0.45140526e-01 0.10670138e+01 0.00000000e+00
- 1 22 0 0 -0.90438097e-01 0.63861355e-01 0.53010882e+00 0.00000000e+00
- 1 22 0 0 0.21472533e-01 0.12429320e-01 0.82897687e-03 0.00000000e+00
- 1 22 0 0 0.37832082e+00 0.78001402e-01 0.64861596e+00 0.00000000e+00
- 1 22 0 0 0.16326013e-01 -0.48023803e-01 0.19699804e+00 0.00000000e+00
- 1 22 0 0 0.32162110e+00 -0.16611632e+00 0.27163240e+01 0.00000000e+00
- 1 22 0 0 -0.36482796e+00 -0.45014241e+00 0.20920323e+02 0.00000000e+00
- 1 22 0 0 -0.19578089e+00 -0.26199802e+00 0.16043559e+02 0.00000000e+00
- 1 130 0 0 0.21077444e+00 0.75820936e+00 -0.48352242e+01 0.49767000e+00
- 1 130 0 0 -0.93125607e-01 0.18421927e+00 -0.98205733e+00 0.49767000e+00
- 1 22 0 0 0.31326401e+00 -0.25062821e+00 0.49984782e-01 0.00000000e+00
- 1 22 0 0 0.13601046e+00 -0.50305524e-01 0.88906750e-01 0.00000000e+00
- 1 22 0 0 0.72704042e+00 -0.14400824e-01 0.15351740e+00 0.00000000e+00
- 1 22 0 0 0.46015306e+00 -0.93867478e-01 0.31220554e-01 0.00000000e+00
- 1 211 0 0 0.11843941e+00 0.72656684e-01 0.42416041e+01 0.13957000e+00
- 1 -211 0 0 -0.14315655e+00 0.38058628e-01 0.10183267e+01 0.13957000e+00
- 2 111 1085 1086 0.50441739e+00 0.41532645e+00 0.16202239e+01 0.13498000e+00
- 2 111 1087 1088 0.35084937e+00 0.33090228e+00 0.25305490e+01 0.13498000e+00
- 1 211 0 0 0.33724755e+00 0.29697953e-01 0.43559861e-01 0.13957000e+00
- 1 -211 0 0 0.18340946e+00 0.99658830e-01 -0.33555572e+00 0.13957000e+00
- 1 -211 0 0 0.52689650e+00 0.38441640e-01 -0.21074216e+00 0.13957000e+00
- 1 211 0 0 -0.56232183e-02 0.12823715e+00 -0.12184476e+00 0.13957000e+00
- 2 111 1089 1090 0.55199359e+00 0.17243771e-01 0.12567778e-01 0.13498000e+00
- 2 111 1091 1092 0.85047736e+00 0.94054428e-01 -0.50553277e+00 0.13498000e+00
- 1 22 0 0 0.52787728e+00 0.38865639e-01 -0.11076704e+01 0.00000000e+00
- 1 22 0 0 0.44905090e+00 -0.81801474e-02 -0.69752534e+00 0.00000000e+00
- 1 22 0 0 0.78110668e+00 -0.19329573e+00 -0.19845469e+01 0.00000000e+00
- 1 22 0 0 0.91370788e+00 -0.82280061e-01 -0.21733109e+01 0.00000000e+00
- 1 211 0 0 0.18785492e+01 0.96076751e+00 -0.28186263e+01 0.13957000e+00
- 1 -211 0 0 0.21048339e+01 0.93036708e+00 -0.38073453e+01 0.13957000e+00
- 1 22 0 0 -0.94767005e-01 -0.13292270e-01 -0.13632631e+02 0.00000000e+00
- 1 22 0 0 -0.33046839e+00 0.57954458e-01 -0.24383287e+02 0.00000000e+00
- 1 22 0 0 -0.21572831e+00 -0.21072618e-01 -0.59207605e+02 0.00000000e+00
- 1 22 0 0 0.11197469e-01 0.25980086e-01 -0.72120102e+01 0.00000000e+00
- 1 22 0 0 -0.11295052e+00 0.24526027e+00 0.19809641e+02 0.00000000e+00
- 1 22 0 0 -0.11967001e+00 0.10157190e+00 0.18766146e+02 0.00000000e+00
- 1 22 0 0 -0.10008402e+00 -0.27523595e-01 0.41270849e+00 0.00000000e+00
- 1 22 0 0 -0.22255927e-01 -0.11105263e+00 0.87936870e+00 0.00000000e+00
- 1 -211 0 0 0.27541411e+00 -0.80755723e-01 0.15554525e+01 0.13957000e+00
- 1 211 0 0 0.29851590e+00 -0.36319206e+00 0.97863304e+00 0.13957000e+00
- 1 22 0 0 0.47366505e+00 0.35878432e+00 0.13598020e+01 0.00000000e+00
- 1 22 0 0 0.30752341e-01 0.56542129e-01 0.26042189e+00 0.00000000e+00
- 1 22 0 0 0.22251620e+00 0.18217204e+00 0.11621436e+01 0.00000000e+00
- 1 22 0 0 0.12833316e+00 0.14873024e+00 0.13684055e+01 0.00000000e+00
- 1 22 0 0 0.32587196e+00 0.69690032e-01 -0.22037939e-01 0.00000000e+00
- 1 22 0 0 0.22612163e+00 -0.52446261e-01 0.34605717e-01 0.00000000e+00
- 1 22 0 0 0.60479465e+00 0.12043185e+00 -0.39459297e+00 0.00000000e+00
- 1 22 0 0 0.24568271e+00 -0.26377419e-01 -0.11093980e+00 0.00000000e+00
- 708
- 2 25 2 3 0.72686446e+01 -0.56596071e+01 -0.33356511e+03 0.12499032e+03
- 2 23 4 7 -0.38201052e+01 0.67642417e+01 -0.39539235e+02 0.28537935e+02
- 2 23 8 11 0.11088750e+02 -0.12423849e+02 -0.29402587e+03 0.86563479e+02
- 1 13 0 0 0.83059908e+01 0.12617156e+01 -0.21529011e+02 0.10566000e+00
- 1 22 0 0 0.27585503e+01 0.16756302e+01 -0.58009850e+01 0.00000000e+00
- 1 -13 0 0 -0.14880450e+02 0.38260228e+01 -0.12205759e+02 0.10566000e+00
- 1 22 0 0 -0.41958628e-02 0.87320050e-03 -0.34798298e-02 0.00000000e+00
- 1 13 0 0 -0.21836983e+02 0.18196233e+02 -0.51032874e+02 0.10566000e+00
- 1 22 0 0 -0.20220642e+01 0.19488692e+01 -0.50705422e+01 0.00000000e+00
- 1 -13 0 0 0.34841046e+02 -0.32684846e+02 -0.23778098e+03 0.10566000e+00
- 1 22 0 0 0.10675116e+00 0.11589458e+00 -0.14148196e+00 0.00000000e+00
- 2 1 103 103 0.40699166e+00 -0.11782962e+01 -0.10946087e+01 0.33000000e+00
- 2 21 103 103 -0.47583772e+00 0.51512068e+00 -0.24830450e+01 0.00000000e+00
- 2 21 103 103 0.37019080e+01 -0.10594081e+01 -0.18620814e+00 0.00000000e+00
- 2 21 103 103 -0.53157236e+01 0.48164625e+01 -0.11880205e+02 0.00000000e+00
- 2 21 103 103 -0.29092718e+01 -0.11217316e+01 -0.77431733e+01 0.00000000e+00
- 2 21 103 103 -0.84870189e+01 -0.42400358e+00 -0.21194699e+02 0.00000000e+00
- 2 21 103 103 -0.19537125e+01 0.58732111e-01 -0.68301977e+01 0.00000000e+00
- 2 21 103 103 0.17069735e+01 -0.16115419e+01 0.41140323e+01 0.00000000e+00
- 2 21 103 103 0.42731372e+00 -0.70492687e+00 0.13321529e+01 0.00000000e+00
- 2 21 103 103 0.25146978e+01 -0.15872403e+01 0.19382599e+01 0.00000000e+00
- 2 21 103 103 0.12391029e+01 0.22491094e+01 0.11729491e+01 0.00000000e+00
- 2 21 103 103 0.63767484e+01 0.84646784e+01 0.31099187e+00 0.00000000e+00
- 2 21 103 103 0.25279268e+01 0.46657771e+01 -0.34112024e+01 0.00000000e+00
- 2 21 103 103 0.22806139e+01 0.10464996e+01 -0.52746626e+01 0.00000000e+00
- 2 21 103 103 0.19707742e+01 0.11902973e+01 -0.55483920e+01 0.00000000e+00
- 2 21 103 103 0.76009480e+00 0.71840563e+00 -0.26456086e+01 0.00000000e+00
- 2 21 103 103 0.24642130e+01 0.26723354e+01 -0.82146208e+01 0.00000000e+00
- 2 21 103 103 0.40838936e+01 0.51916275e+01 -0.20789070e+02 0.00000000e+00
- 2 21 103 103 0.13424374e+01 0.54721528e+00 -0.14345691e+02 0.00000000e+00
- 2 21 103 103 0.12013375e+01 -0.40090588e-01 -0.12971533e+02 0.00000000e+00
- 2 21 103 103 0.13836930e+01 0.51351046e+00 -0.25746511e+02 0.00000000e+00
- 2 21 103 103 0.37060755e+01 0.32010838e+01 -0.18453899e+03 0.00000000e+00
- 2 21 103 103 0.12489755e+01 -0.35512712e+00 -0.30157919e+02 0.00000000e+00
- 2 21 103 103 0.20189270e+01 -0.72119493e+00 -0.99590565e+02 0.00000000e+00
- 2 21 103 103 0.19967620e+01 -0.15154605e+00 -0.14073019e+03 0.00000000e+00
- 2 21 103 103 0.72455968e-01 0.12387236e+01 -0.10234552e+02 0.00000000e+00
- 2 2203 103 103 -0.36816057e+00 -0.65663483e+00 -0.35226650e+04 0.77133000e+00
- 2 -1 163 163 0.17819501e+01 -0.17858374e+01 0.22101039e+01 0.33000000e+00
- 2 21 163 163 0.49042069e+01 0.24707528e+01 0.50095280e+01 0.00000000e+00
- 2 21 163 163 0.12810242e+01 0.93605049e+00 0.11658915e+00 0.00000000e+00
- 2 21 163 163 0.20775361e+00 -0.13621454e+00 0.24632505e+00 0.00000000e+00
- 2 21 163 163 -0.42808948e+00 0.20698539e+00 0.13997222e+01 0.00000000e+00
- 2 21 163 163 0.14344903e+01 0.51487683e+00 0.59003840e+02 0.00000000e+00
- 2 21 163 163 0.26076372e+00 0.10122474e+01 0.47944547e+02 0.00000000e+00
- 2 21 163 163 -0.48026853e+00 0.96983141e+00 0.23057910e+02 0.00000000e+00
- 2 21 163 163 0.41131153e-01 -0.19411200e+00 0.20689136e+01 0.00000000e+00
- 2 21 163 163 -0.13916166e+00 0.80675886e-01 0.81170019e+00 0.00000000e+00
- 2 2 163 163 0.54121326e-01 0.98831939e-01 0.12532952e+02 0.33000000e+00
- 2 2 178 178 0.89562186e+01 -0.28596412e+01 0.98349501e+02 0.00000000e+00
- 2 21 178 178 0.23623929e+01 -0.28268008e+01 0.22857272e+02 0.00000000e+00
- 2 21 178 178 0.23258496e+01 -0.47309060e+01 0.57381391e+02 0.00000000e+00
- 2 21 178 178 0.13159650e+01 0.31167204e+00 0.25138601e+02 0.00000000e+00
- 2 21 178 178 0.20511346e+01 0.77324716e+00 0.47804656e+02 0.00000000e+00
- 2 21 178 178 0.11927060e+01 0.14840641e+01 0.22438116e+03 0.00000000e+00
- 2 21 178 178 -0.30951146e-01 0.69767080e+00 0.22565981e+03 0.00000000e+00
- 2 21 178 178 0.79104232e+00 -0.27364756e+00 0.12601188e+03 0.00000000e+00
- 2 21 178 178 0.89375816e+00 -0.21742425e+01 0.27972110e+03 0.00000000e+00
- 2 21 178 178 0.30951146e-01 -0.69767080e+00 0.10809592e+03 0.00000000e+00
- 2 21 178 178 -0.12391029e+01 -0.22491094e+01 0.26750742e+03 0.00000000e+00
- 2 21 178 178 -0.15498642e+01 -0.10542904e+01 0.12763868e+03 0.00000000e+00
- 2 21 178 178 -0.20511346e+01 -0.77324716e+00 0.37832262e+03 0.00000000e+00
- 2 21 178 178 -0.79104232e+00 0.27364756e+00 0.62410808e+02 0.00000000e+00
- 2 21 178 178 -0.23258496e+01 0.47309060e+01 0.45631349e+03 0.00000000e+00
- 2 21 178 178 -0.17069735e+01 0.16115419e+01 0.70482230e+02 0.00000000e+00
- 2 21 178 178 0.92280224e+00 0.35160852e+01 0.62890036e+02 0.00000000e+00
- 2 21 178 178 -0.21675974e+00 0.12295716e+01 0.12069969e+02 0.00000000e+00
- 2 21 178 178 -0.89375816e+00 0.21742425e+01 0.21220185e+02 0.00000000e+00
- 2 21 178 178 0.15498642e+01 0.10542904e+01 0.12357546e+02 0.00000000e+00
- 2 21 178 178 0.34747005e+01 0.33337477e+01 0.22667962e+02 0.00000000e+00
- 2 21 178 178 -0.80054487e+00 0.15361215e+01 0.32806877e+01 0.00000000e+00
- 2 21 178 178 -0.42731372e+00 0.70492687e+00 0.30138917e+01 0.00000000e+00
- 2 21 178 178 -0.12489755e+01 0.35512712e+00 0.69000021e+01 0.00000000e+00
- 2 21 178 178 -0.11927060e+01 -0.14840641e+01 0.89149198e+01 0.00000000e+00
- 2 21 178 178 -0.24642130e+01 -0.26723354e+01 0.15299317e+02 0.00000000e+00
- 2 21 178 178 -0.76009480e+00 -0.71840563e+00 0.27212800e+01 0.00000000e+00
- 2 21 178 178 -0.40838936e+01 -0.51916275e+01 0.16658295e+02 0.00000000e+00
- 2 21 178 178 -0.92280224e+00 -0.35160852e+01 0.69797956e+01 0.00000000e+00
- 2 21 178 178 -0.19707742e+01 -0.11902973e+01 0.20372142e+01 0.00000000e+00
- 2 21 178 178 -0.13424374e+01 -0.54721528e+00 0.11476741e+01 0.00000000e+00
- 2 21 178 178 -0.20189270e+01 0.72119493e+00 0.39621819e+00 0.00000000e+00
- 2 21 178 178 -0.23623929e+01 0.28268008e+01 -0.59140581e+01 0.00000000e+00
- 2 21 178 178 -0.25146978e+01 0.15872403e+01 -0.46447784e+01 0.00000000e+00
- 2 -2 178 178 -0.89562186e+01 0.28596412e+01 -0.63436747e+01 0.00000000e+00
- 2 1 238 238 -0.17656461e+01 -0.76204762e+00 -0.13655751e+02 0.00000000e+00
- 2 21 238 238 0.21675974e+00 -0.12295716e+01 -0.48134342e+01 0.00000000e+00
- 2 21 238 238 0.80054487e+00 -0.15361215e+01 -0.18132212e+01 0.00000000e+00
- 2 -1 238 238 0.17656461e+01 0.76204762e+00 0.23317803e+01 0.00000000e+00
- 2 2101 246 246 0.19054036e+00 -0.56860995e-01 0.40127755e+04 0.57933000e+00
- 2 21 246 246 -0.25279268e+01 -0.46657771e+01 -0.84690522e-01 0.00000000e+00
- 2 21 246 246 -0.34747005e+01 -0.33337477e+01 -0.16112608e+00 0.00000000e+00
- 2 21 246 246 -0.63767484e+01 -0.84646784e+01 -0.11388017e+02 0.00000000e+00
- 2 21 246 246 -0.13836930e+01 -0.51351046e+00 -0.26840275e+02 0.00000000e+00
- 2 21 246 246 -0.37060755e+01 -0.32010838e+01 -0.12650368e+03 0.00000000e+00
- 2 21 246 246 -0.12013375e+01 0.40090588e-01 -0.39589715e+02 0.00000000e+00
- 2 21 246 246 -0.13159650e+01 -0.31167204e+00 -0.10354493e+03 0.00000000e+00
- 2 21 246 246 -0.19967620e+01 0.15154605e+00 -0.23824267e+03 0.00000000e+00
- 2 21 246 246 -0.22806139e+01 -0.10464996e+01 -0.90906373e+03 0.00000000e+00
- 2 21 246 246 -0.64380040e-01 -0.32776584e+00 -0.48313283e+01 0.00000000e+00
- 2 21 246 246 -0.32886125e+00 0.41774681e+00 -0.14390878e+01 0.00000000e+00
- 2 21 246 246 0.13838062e+00 -0.80652210e+00 -0.48712398e+01 0.00000000e+00
- 2 1 246 246 -0.79387623e+00 0.69956475e-01 -0.97942714e+03 0.33000000e+00
- 2 92 104 162 0.23922191e+02 0.27477837e+02 -0.41294082e+04 0.62584725e+03
- 1 -211 0 0 0.35619641e+00 -0.64386588e+00 -0.30262027e+00 0.13957000e+00
- 1 211 0 0 -0.57131553e+00 -0.35918055e-01 -0.16116422e+01 0.13957000e+00
- 2 223 282 284 0.13760098e+01 -0.74920072e+00 -0.12632129e+01 0.78818510e+00
- 2 -213 285 286 0.70458223e+00 0.27170036e+00 -0.16564664e+00 0.84636375e+00
- 2 213 287 288 -0.45067817e+00 -0.14264627e+00 -0.62810527e+00 0.51933111e+00
- 1 -211 0 0 0.12475919e+01 0.27553471e+00 -0.10568265e+01 0.13957000e+00
- 2 111 289 290 -0.57734957e-02 -0.30660653e+00 0.53052590e+00 0.13498000e+00
- 2 213 291 292 -0.72549187e+00 0.73028721e+00 -0.28003967e+01 0.87628142e+00
- 2 113 293 294 -0.16639411e+01 0.11530868e+01 -0.34180719e+01 0.78684953e+00
- 2 -213 295 296 -0.26731647e+00 0.32257861e+00 -0.19700567e+01 0.76273107e+00
- 2 213 297 298 -0.51616298e+01 0.16744124e+01 -0.10792581e+02 0.71634355e+00
- 1 2112 0 0 -0.19789038e+01 -0.66616869e+00 -0.74436206e+01 0.93957000e+00
- 1 -2112 0 0 -0.11914085e+01 0.55144684e-01 -0.25822059e+01 0.93957000e+00
- 2 313 299 300 -0.58024134e+01 0.53632815e-01 -0.14245887e+02 0.89305355e+00
- 1 -321 0 0 -0.57476590e+00 -0.40434946e+00 -0.15929785e+01 0.49360000e+00
- 2 323 301 302 -0.15305079e+00 -0.31749817e+00 -0.14963345e+01 0.92173763e+00
- 2 -313 303 304 0.29382913e-01 -0.42379987e-01 0.67024228e+00 0.88590946e+00
- 2 313 305 306 0.21232660e+01 -0.16186862e+01 0.25350939e+01 0.91148332e+00
- 2 -323 307 308 0.84885431e+00 -0.30734678e+00 0.11213001e+01 0.84259341e+00
- 2 111 309 310 -0.51934430e-01 -0.29336126e+00 0.52168959e+00 0.13498000e+00
- 2 221 311 312 0.12632669e+01 -0.95512670e+00 0.16824206e+01 0.54745000e+00
- 2 213 313 314 0.78493742e+00 0.11080577e+01 0.38415091e+00 0.57151657e+00
- 2 223 315 317 0.81727827e+00 0.76867147e+00 -0.17413917e+00 0.77721615e+00
- 2 223 318 320 0.23192017e+01 0.27976999e+01 0.66088709e+00 0.78988701e+00
- 1 -211 0 0 0.18069761e+00 0.73126715e+00 0.96951495e-01 0.13957000e+00
- 2 213 321 322 0.11033327e+01 0.18730459e+01 -0.14084871e+00 0.82077490e+00
- 1 -211 0 0 0.19749180e+00 0.15857677e+00 -0.11760724e+00 0.13957000e+00
- 1 211 0 0 0.13732889e+00 0.56825331e-01 -0.90460754e-01 0.13957000e+00
- 2 -213 323 324 0.69189562e+00 0.12522553e+01 -0.19823387e+00 0.77437773e+00
- 2 113 325 326 0.10237357e+01 0.21405307e+01 -0.37856473e+00 0.76369035e+00
- 2 111 327 328 0.20303458e+01 0.19595648e+01 -0.85454995e+00 0.13498000e+00
- 2 213 329 330 0.66084916e+00 0.93730252e+00 -0.37479387e+00 0.73154839e+00
- 1 -211 0 0 0.18243112e+01 0.61348830e+00 -0.39781276e+01 0.13957000e+00
- 2 111 331 332 0.12155170e+01 0.25858930e+01 -0.46120945e+01 0.13498000e+00
- 2 2224 333 334 0.25429819e+01 0.24357942e+01 -0.93542274e+01 0.11997757e+01
- 2 -2224 335 336 0.17510827e+01 0.10984828e+01 -0.54263370e+01 0.13278476e+01
- 2 111 337 338 0.13594139e+01 0.11709542e+01 -0.56208246e+01 0.13498000e+00
- 2 223 339 340 0.15706204e+01 0.21666723e+01 -0.72660532e+01 0.80849436e+00
- 1 211 0 0 0.30050765e+00 0.94580401e-01 -0.22216860e+01 0.13957000e+00
- 2 -213 341 342 0.14229706e+01 0.10461728e+01 -0.61253117e+01 0.74566915e+00
- 2 223 343 344 0.24904838e+00 0.64445348e-01 -0.42217545e+01 0.76628917e+00
- 2 331 345 347 0.14107245e+01 0.13242497e+01 -0.23081344e+02 0.95784663e+00
- 2 213 348 349 0.98776598e+00 0.75920096e+00 -0.16089546e+02 0.89317341e+00
- 2 223 350 351 0.49794486e+00 0.38256734e+00 -0.28174525e+02 0.77452041e+00
- 1 -211 0 0 0.83960875e+00 -0.21687365e+00 -0.21027741e+02 0.13957000e+00
- 2 213 352 353 0.68482190e+00 0.10260384e+01 -0.40245160e+02 0.78125452e+00
- 2 -213 354 355 0.22371774e+01 0.32963838e+00 -0.53382961e+02 0.92807733e+00
- 2 223 356 358 0.63920589e+00 -0.44751375e-01 -0.42997635e+02 0.77782511e+00
- 2 2224 359 360 0.31575124e+01 0.56279520e+00 -0.15489032e+03 0.12330880e+01
- 2 -213 361 362 0.10754195e+01 -0.51708515e-01 -0.31643257e+02 0.79107106e+00
- 1 -2212 0 0 0.93672524e+00 -0.61886455e+00 -0.63327687e+02 0.93827000e+00
- 2 2114 363 364 0.16699530e+00 0.65560393e+00 -0.50094250e+02 0.12325670e+01
- 2 213 365 366 -0.79890171e-01 0.37705929e+00 -0.67907034e+02 0.67883539e+00
- 1 -2212 0 0 0.34515374e+00 -0.82918891e-01 -0.38089522e+02 0.93827000e+00
- 2 223 367 369 0.23223863e+00 0.21737735e+00 -0.20123924e+02 0.78070553e+00
- 2 113 370 371 -0.40400489e+00 0.16136252e+00 -0.41053932e+03 0.55793527e+00
- 2 113 372 373 -0.31064430e+00 0.80838712e-01 -0.41158910e+03 0.55912655e+00
- 2 113 374 375 -0.62320297e-01 -0.68999136e-01 -0.30167544e+03 0.82675675e+00
- 2 2224 376 377 0.33681205e-01 -0.42828274e+00 -0.22602069e+04 0.11391958e+01
- 2 92 164 177 0.89179216e+01 0.41740882e+01 0.15440213e+03 0.39702539e+02
- 1 211 0 0 0.35375277e+00 0.23632737e+00 0.45407540e+00 0.13957000e+00
- 1 -2212 0 0 0.19363744e+01 -0.10324401e+01 0.26489377e+01 0.93827000e+00
- 2 3122 378 379 0.12772753e+01 0.39577217e+00 0.13207914e+01 0.11156800e+01
- 1 321 0 0 0.12051135e+01 0.29301435e+00 0.37521162e+00 0.49360000e+00
- 2 -323 380 381 0.25630803e+01 0.10830175e+01 0.26382818e+01 0.78149621e+00
- 2 323 382 383 0.57251051e+00 0.48235330e+00 0.33635569e+00 0.88910454e+00
- 1 -211 0 0 0.93920684e+00 -0.61231972e-01 0.27960396e+02 0.13957000e+00
- 1 211 0 0 -0.50384310e+00 0.76443798e+00 0.38910894e+01 0.13957000e+00
- 1 -211 0 0 -0.24727485e+00 0.30645933e+00 0.26238671e+02 0.13957000e+00
- 2 113 384 385 0.10948298e+01 0.78280546e+00 0.32310001e+02 0.76165449e+00
- 1 211 0 0 -0.20976339e+00 0.70914344e+00 0.38172672e+02 0.13957000e+00
- 2 111 386 387 -0.11431942e+00 -0.17035831e+00 0.84897053e+01 0.13498000e+00
- 1 -211 0 0 0.21768820e+00 0.33655118e+00 0.77748763e+01 0.13957000e+00
- 1 211 0 0 -0.16670921e+00 0.48236532e-01 0.17910661e+01 0.13957000e+00
- 2 92 179 237 -0.16004043e+02 -0.11778467e+01 0.27597290e+04 0.52763490e+03
- 2 223 388 390 0.42823417e+01 -0.16412460e+01 0.48900862e+02 0.78663541e+00
- 2 113 391 392 0.29881383e+01 -0.97668596e+00 0.31162376e+02 0.80119529e+00
- 1 211 0 0 0.54452875e+00 -0.67316305e+00 0.11506561e+02 0.13957000e+00
- 1 -211 0 0 0.19969414e+01 -0.76147965e+00 0.15157879e+02 0.13957000e+00
- 2 111 393 394 0.14067980e+01 -0.10074942e+01 0.17488802e+02 0.13498000e+00
- 1 321 0 0 0.17233101e+00 -0.96971186e+00 0.76956553e+01 0.49360000e+00
- 2 -313 395 396 0.12270280e+01 -0.13558798e+01 0.20470271e+02 0.88321787e+00
- 1 -211 0 0 0.95339568e+00 -0.51520082e+00 0.84976373e+01 0.13957000e+00
- 1 211 0 0 0.33341909e+00 -0.20025220e+01 0.29676897e+02 0.13957000e+00
- 2 -213 397 398 0.17851981e+01 -0.55265216e+00 0.35772631e+02 0.80784649e+00
- 2 323 399 400 0.98154315e+00 0.14408784e+01 0.93631724e+02 0.88441138e+00
- 2 -313 401 402 0.32938165e+00 0.10980529e+01 0.18725648e+03 0.88394486e+00
- 2 2114 403 404 0.13052248e+01 -0.91652882e+00 0.11395145e+03 0.11561002e+01
- 1 211 0 0 -0.20865256e+00 -0.22327442e+00 0.80981692e+02 0.13957000e+00
- 2 -2224 405 406 0.89928570e+00 0.47738849e+00 0.15549778e+03 0.12381677e+01
- 1 211 0 0 0.38573801e+00 -0.19708966e+00 0.92670264e+02 0.13957000e+00
- 1 -211 0 0 -0.75972639e-01 -0.77852913e-01 0.58735738e+02 0.13957000e+00
- 2 213 407 408 -0.15905553e+01 -0.16564389e+01 0.26061766e+03 0.75248760e+00
- 2 223 409 411 0.13482392e+00 -0.29460822e+00 0.44317232e+02 0.78739510e+00
- 2 113 412 413 -0.97463888e+00 -0.17768946e+01 0.35803748e+03 0.81089404e+00
- 2 221 414 415 0.14830490e-01 -0.50207842e+00 0.73417203e+02 0.54745000e+00
- 2 -213 416 417 -0.68266434e+00 -0.25265250e+00 0.41332776e+02 0.62058201e+00
- 2 113 418 419 -0.62138553e+00 0.80281187e+00 0.14730372e+03 0.96437249e+00
- 2 213 420 421 -0.13198638e+01 0.69179023e+00 0.18609789e+03 0.77739264e+00
- 1 -211 0 0 0.26079592e+00 -0.14597296e+00 0.30474091e+02 0.13957000e+00
- 2 2224 422 423 -0.31387559e+01 0.21765858e+01 0.29519317e+03 0.13097927e+01
- 2 223 424 426 -0.33499697e+00 0.13084490e+01 0.78047988e+02 0.77710784e+00
- 2 -2224 427 428 0.64760390e+00 0.15991843e+01 0.50511975e+02 0.12392438e+01
- 2 113 429 430 -0.72248868e+00 0.12313651e+01 0.31161728e+02 0.66650554e+00
- 2 113 431 432 -0.55572893e+00 0.14080454e+01 0.21013958e+02 0.86338274e+00
- 1 211 0 0 0.53025426e-01 0.47256304e+00 0.12743878e+02 0.13957000e+00
- 2 221 433 434 0.41894788e+00 0.17598115e+01 0.24827615e+02 0.54745000e+00
- 1 -211 0 0 0.99444295e+00 0.75200280e+00 0.58888760e+01 0.13957000e+00
- 2 113 435 436 -0.23290849e+00 0.12059469e+01 0.12044643e+02 0.83116252e+00
- 1 211 0 0 0.10682696e+01 0.14100479e+01 0.92144457e+01 0.13957000e+00
- 2 221 437 439 -0.10930727e+00 0.26417160e+00 0.55721555e+01 0.54745000e+00
- 2 113 440 441 0.15966772e+01 0.18252813e+01 0.81267623e+01 0.78391757e+00
- 2 223 442 444 0.39454367e-01 0.10958161e+01 0.68126470e+01 0.78377433e+00
- 2 311 445 445 -0.16943595e+00 -0.24385340e-01 0.27068275e+01 0.49767000e+00
- 2 -323 446 447 -0.79646079e+00 0.12293106e+01 0.41217274e+01 0.87201593e+00
- 2 113 448 449 -0.30515181e+01 -0.35648586e+01 0.18128195e+02 0.59780519e+00
- 2 213 450 451 -0.99577412e+00 -0.79876586e-02 0.37039918e+01 0.79107400e+00
- 2 1114 452 453 -0.16952006e+01 -0.29990876e+01 0.94930520e+01 0.12318842e+01
- 2 213 454 455 -0.91947302e+00 -0.95100226e+00 0.34441421e+01 0.77404203e+00
- 1 -2212 0 0 -0.42052010e+00 -0.50498712e+00 0.31579631e+01 0.93827000e+00
- 2 111 456 457 -0.83955226e+00 -0.79770999e+00 0.25078214e+01 0.13498000e+00
- 2 113 458 459 -0.26134014e+01 -0.30416946e+01 0.10903593e+02 0.84690590e+00
- 1 2212 0 0 -0.97145543e+00 -0.71992029e+00 0.20075386e+01 0.93827000e+00
- 1 -2212 0 0 -0.37607933e+00 -0.68529216e+00 0.14451003e+01 0.93827000e+00
- 2 213 460 461 -0.95764634e+00 -0.10748760e+01 0.20915882e+01 0.75505647e+00
- 2 223 462 464 -0.11719263e+01 0.40967336e+00 0.67587978e+00 0.78028552e+00
- 2 -213 465 466 -0.69108930e+00 -0.29441337e+00 -0.43141344e+00 0.76099690e+00
- 1 211 0 0 -0.15136093e+01 0.14079823e+01 -0.12620617e+01 0.13957000e+00
- 2 -213 467 468 -0.47045583e+00 0.44525049e-02 -0.16217615e+01 0.82033531e+00
- 2 113 469 470 -0.12912208e+01 0.95086925e+00 -0.17852172e+01 0.74469546e+00
- 1 211 0 0 -0.10052513e+01 0.12089725e+01 -0.24175299e+01 0.13957000e+00
- 2 223 471 472 -0.16034855e+01 0.37354435e+00 -0.22529829e+01 0.77891119e+00
- 2 111 473 474 -0.34606903e+01 0.18945160e+01 -0.25075042e+01 0.13498000e+00
- 1 -211 0 0 -0.52420424e+01 0.14882818e+01 -0.41925297e+01 0.13957000e+00
- 2 92 239 245 0.10173046e+01 -0.27656931e+01 -0.17950626e+02 0.16101496e+02
- 2 111 475 476 0.57854671e-01 0.57693261e-01 -0.14261093e+01 0.13498000e+00
- 2 311 477 477 -0.10074882e+01 -0.81247461e+00 -0.89840959e+01 0.49767000e+00
- 2 -311 478 478 -0.86092480e+00 -0.10564041e+01 -0.58832742e+01 0.49767000e+00
- 2 313 479 480 0.59528256e+00 -0.84755875e+00 -0.33561050e+01 0.93332664e+00
- 2 -323 481 482 0.78274438e+00 -0.60967796e+00 0.37459129e+00 0.89086070e+00
- 2 323 483 484 0.80008820e+00 0.33119656e+00 0.55889205e+00 0.84448601e+00
- 2 -313 485 486 0.64974783e+00 0.17153256e+00 0.76547533e+00 0.89645527e+00
- 2 92 247 281 -0.25122019e+02 -0.22048778e+02 0.15667879e+04 0.62805944e+04
- 1 2112 0 0 0.39069576e+00 -0.60162675e+00 0.16117362e+04 0.93957000e+00
- 2 111 487 488 -0.67053715e-01 0.47606465e+00 0.12626653e+04 0.13498000e+00
- 2 -3112 489 490 -0.38068623e+00 -0.12839219e+00 0.65330749e+03 0.11974400e+01
- 2 3212 491 492 0.28818996e+00 0.32704023e-01 0.46519732e+03 0.11925500e+01
- 2 223 493 495 0.17699724e+00 -0.28157730e+00 0.16957982e+02 0.78392677e+00
- 2 111 496 497 0.12342571e+00 0.48514811e+00 0.20629272e+01 0.13498000e+00
- 2 -3222 498 499 -0.62595875e+00 -0.14434830e+01 0.32924112e+00 0.11893700e+01
- 2 -323 500 501 -0.30350512e+01 -0.25987361e+01 0.12282821e+00 0.92194715e+00
- 2 2224 502 503 -0.23563274e+01 -0.40986978e+01 -0.11216025e+01 0.13403186e+01
- 2 221 504 506 -0.75467982e+00 -0.37680767e+00 -0.14723423e-01 0.54745000e+00
- 2 113 507 508 -0.28050270e+01 -0.42005604e+01 -0.51738325e+01 0.75377813e+00
- 2 -213 509 510 -0.13462304e+01 -0.81812358e+00 -0.20889748e+01 0.94769370e+00
- 2 223 511 513 -0.94407209e+00 -0.11903311e+01 -0.24009172e+01 0.81652155e+00
- 2 213 514 515 -0.34133377e-01 -0.16670612e+01 -0.27620081e+01 0.66251510e+00
- 2 -2224 516 517 -0.12707475e+01 0.34524920e+00 -0.98709354e+01 0.11772167e+01
- 2 223 518 520 -0.35187070e-01 -0.24052412e+00 -0.10546545e+02 0.77900421e+00
- 2 2224 521 522 -0.10901526e+01 -0.11820541e+01 -0.24477110e+02 0.11853269e+01
- 2 111 523 525 -0.10545804e+00 0.15234417e+00 -0.32831855e+00 0.13498000e+00
- 2 223 526 527 -0.19892762e+01 -0.15762205e+01 -0.60405512e+02 0.78066294e+00
- 1 -211 0 0 0.19046434e-02 0.21150313e+00 -0.36140951e+01 0.13957000e+00
- 2 223 528 530 -0.19870367e+01 -0.27754541e+00 -0.11995563e+03 0.73253882e+00
- 2 -2114 531 532 -0.57127738e+00 -0.64451130e+00 -0.61868255e+02 0.13557925e+01
- 2 331 533 535 -0.47827510e+00 0.12535655e+00 -0.11189513e+03 0.95752878e+00
- 1 2112 0 0 -0.21316292e+01 -0.11740259e+01 -0.12929766e+03 0.93957000e+00
- 2 213 536 537 -0.49898390e+00 -0.90985429e-02 -0.21808812e+03 0.71463006e+00
- 2 113 538 539 -0.11023743e+01 -0.10468297e+00 -0.17725563e+03 0.74743056e+00
- 2 223 540 542 -0.15285531e+01 -0.48464849e+00 -0.48122188e+03 0.77580170e+00
- 2 223 543 545 -0.49209314e-01 0.43608015e-01 -0.95679797e+01 0.77885111e+00
- 2 -323 546 547 -0.83035839e-01 -0.26704028e+00 -0.74052211e+01 0.87239034e+00
- 2 311 548 548 -0.50419839e-01 -0.33321058e+00 -0.25602641e+02 0.49767000e+00
- 2 221 549 550 -0.27429594e+00 -0.59416295e-01 -0.30743338e+01 0.54745000e+00
- 1 -2112 0 0 -0.16163938e+00 0.50401607e-01 -0.50568728e+02 0.93957000e+00
- 1 2212 0 0 0.19575887e+00 0.91372256e-01 -0.76437963e+02 0.93827000e+00
- 1 -211 0 0 0.24897407e+00 -0.92215424e+00 -0.26166314e+03 0.13957000e+00
- 2 111 551 552 -0.79119411e+00 0.61800013e+00 -0.58888451e+03 0.13498000e+00
- 1 -211 0 0 0.34741486e+00 -0.32368862e+00 -0.26943542e+00 0.13957000e+00
- 1 211 0 0 0.91407521e+00 -0.36469172e+00 -0.59780944e+00 0.13957000e+00
- 2 111 553 554 0.11451972e+00 -0.60820387e-01 -0.39596803e+00 0.13498000e+00
- 1 -211 0 0 0.46599351e-01 0.22597580e+00 -0.35607167e+00 0.13957000e+00
- 2 111 555 556 0.65798288e+00 0.45724552e-01 0.19042504e+00 0.13498000e+00
- 1 211 0 0 -0.40591515e+00 0.50321658e-03 -0.20986604e+00 0.13957000e+00
- 2 111 557 558 -0.44763020e-01 -0.14314949e+00 -0.41823923e+00 0.13498000e+00
- 1 22 0 0 -0.10023736e-01 -0.24041513e+00 0.49909446e+00 0.00000000e+00
- 1 22 0 0 0.42502408e-02 -0.66191396e-01 0.31431441e-01 0.00000000e+00
- 1 211 0 0 0.27048177e-03 0.54025869e+00 -0.86323661e+00 0.13957000e+00
- 2 111 559 560 -0.72576235e+00 0.19002852e+00 -0.19371600e+01 0.13498000e+00
- 1 -211 0 0 -0.11582288e+01 0.43763530e+00 -0.23620714e+01 0.13957000e+00
- 1 211 0 0 -0.50571226e+00 0.71545155e+00 -0.10560005e+01 0.13957000e+00
- 1 -211 0 0 0.10434506e+00 0.19212601e+00 -0.15143791e+01 0.13957000e+00
- 2 111 561 562 -0.37166153e+00 0.13045260e+00 -0.45567766e+00 0.13498000e+00
- 1 211 0 0 -0.21747866e+01 0.10479635e+01 -0.48536502e+01 0.13957000e+00
- 2 111 563 564 -0.29868432e+01 0.62644887e+00 -0.59389309e+01 0.13498000e+00
- 1 321 0 0 -0.38685053e+01 0.17691812e+00 -0.88330155e+01 0.49360000e+00
- 1 -211 0 0 -0.19339082e+01 -0.12328530e+00 -0.54128716e+01 0.13957000e+00
- 2 311 565 565 0.11589165e+00 -0.32319941e+00 -0.62359556e+00 0.49767000e+00
- 1 211 0 0 -0.26894244e+00 0.57012457e-02 -0.87273891e+00 0.13957000e+00
- 1 -321 0 0 -0.22195431e+00 -0.11359244e+00 0.27338540e+00 0.49360000e+00
- 1 211 0 0 0.25133723e+00 0.71212453e-01 0.39685688e+00 0.13957000e+00
- 2 311 566 566 0.10176288e+01 -0.11103196e+01 0.15925865e+01 0.49767000e+00
- 2 111 567 568 0.11056373e+01 -0.50836662e+00 0.94250738e+00 0.13498000e+00
- 2 -311 569 569 0.42316358e+00 -0.34129799e+00 0.46088765e+00 0.49767000e+00
- 1 -211 0 0 0.42569072e+00 0.33951217e-01 0.66041246e+00 0.13957000e+00
- 1 22 0 0 -0.39804489e-01 -0.28145368e+00 0.38803900e+00 0.00000000e+00
- 1 22 0 0 -0.12129940e-01 -0.11907576e-01 0.13365059e+00 0.00000000e+00
- 1 22 0 0 0.28111364e+00 -0.15779292e+00 0.78581995e-01 0.00000000e+00
- 1 22 0 0 0.98215328e+00 -0.79733377e+00 0.16038386e+01 0.00000000e+00
- 1 211 0 0 0.29100007e+00 0.11919662e+00 0.18721765e+00 0.13957000e+00
- 2 111 570 571 0.49393736e+00 0.98886106e+00 0.19693325e+00 0.13498000e+00
- 1 211 0 0 0.22584912e+00 0.45767224e+00 0.36507295e-01 0.13957000e+00
- 1 -211 0 0 0.12329982e+00 0.20799500e+00 -0.20705474e+00 0.13957000e+00
- 2 111 572 573 0.46812933e+00 0.10300423e+00 -0.35917244e-02 0.13498000e+00
- 1 -211 0 0 0.44988678e+00 0.28030479e+00 0.15334316e+00 0.13957000e+00
- 1 211 0 0 0.88268818e+00 0.14703239e+01 0.22014127e+00 0.13957000e+00
- 2 111 574 575 0.98662673e+00 0.10470713e+01 0.28740266e+00 0.13498000e+00
- 1 211 0 0 0.72672991e+00 0.17091662e+01 0.30823553e-01 0.13957000e+00
- 2 111 576 577 0.37660275e+00 0.16387976e+00 -0.17167226e+00 0.13498000e+00
- 1 -211 0 0 0.50110857e+00 0.43505377e+00 0.19024803e+00 0.13957000e+00
- 2 111 578 579 0.19078705e+00 0.81720150e+00 -0.38848190e+00 0.13498000e+00
- 1 -211 0 0 0.65104578e+00 0.16842701e+01 -0.75432397e-02 0.13957000e+00
- 1 211 0 0 0.37268993e+00 0.45626063e+00 -0.37102149e+00 0.13957000e+00
- 1 22 0 0 0.13983927e+00 0.18463635e+00 -0.60339589e-01 0.00000000e+00
- 1 22 0 0 0.18905065e+01 0.17749284e+01 -0.79421036e+00 0.00000000e+00
- 1 211 0 0 0.60232680e+00 0.72072713e+00 0.51081321e-02 0.13957000e+00
- 2 111 580 581 0.58522363e-01 0.21657538e+00 -0.37990201e+00 0.13498000e+00
- 1 22 0 0 0.65958842e+00 0.12857549e+01 -0.22450098e+01 0.00000000e+00
- 1 22 0 0 0.55592853e+00 0.13001381e+01 -0.23670847e+01 0.00000000e+00
- 1 2212 0 0 0.23932361e+01 0.23854041e+01 -0.89029536e+01 0.93827000e+00
- 1 211 0 0 0.14974586e+00 0.50390117e-01 -0.45127380e+00 0.13957000e+00
- 1 -2212 0 0 0.15130325e+01 0.12040242e+01 -0.49444483e+01 0.93827000e+00
- 1 -211 0 0 0.23805023e+00 -0.10554140e+00 -0.48188869e+00 0.13957000e+00
- 1 22 0 0 0.74811163e+00 0.55782598e+00 -0.28642093e+01 0.00000000e+00
- 1 22 0 0 0.61130229e+00 0.61312821e+00 -0.27566153e+01 0.00000000e+00
- 1 22 0 0 0.98751609e+00 0.84937188e+00 -0.27455403e+01 0.00000000e+00
- 2 111 582 583 0.58310428e+00 0.13173004e+01 -0.45205128e+01 0.13498000e+00
- 1 -211 0 0 0.25790659e+00 0.27361110e+00 -0.24724774e+01 0.13957000e+00
- 2 111 584 585 0.11650640e+01 0.77256173e+00 -0.36528343e+01 0.13498000e+00
- 1 22 0 0 0.38250965e+00 0.24822540e+00 -0.16091779e+01 0.00000000e+00
- 2 111 586 587 -0.13346127e+00 -0.18378006e+00 -0.26125766e+01 0.13498000e+00
- 1 211 0 0 0.32992387e+00 0.46583691e+00 -0.54827781e+01 0.13957000e+00
- 1 -211 0 0 0.33919672e+00 0.35504667e+00 -0.62949339e+01 0.13957000e+00
- 2 221 588 590 0.74160395e+00 0.50336613e+00 -0.11303632e+02 0.54745000e+00
- 1 211 0 0 0.76339743e+00 0.19758680e+00 -0.59089536e+01 0.13957000e+00
- 2 111 591 592 0.22436855e+00 0.56161416e+00 -0.10180593e+02 0.13498000e+00
- 1 -211 0 0 -0.60650688e-01 0.37184873e+00 -0.89483661e+01 0.13957000e+00
- 1 211 0 0 0.55859555e+00 0.10718609e-01 -0.19226159e+02 0.13957000e+00
- 1 211 0 0 -0.69625926e-01 0.46262735e+00 -0.10626275e+02 0.13957000e+00
- 2 111 593 594 0.75444783e+00 0.56341104e+00 -0.29618885e+02 0.13498000e+00
- 1 -211 0 0 0.21833660e+01 0.44385724e+00 -0.50970780e+02 0.13957000e+00
- 2 111 595 596 0.53811412e-01 -0.11421886e+00 -0.24121815e+01 0.13498000e+00
- 1 211 0 0 0.37436641e+00 0.66499913e-02 -0.11156145e+02 0.13957000e+00
- 1 -211 0 0 0.22389013e+00 -0.20371691e+00 -0.21332513e+02 0.13957000e+00
- 2 111 597 598 0.40949353e-01 0.15231554e+00 -0.10508976e+02 0.13498000e+00
- 1 2212 0 0 0.23805194e+01 0.32113393e+00 -0.12562871e+03 0.93827000e+00
- 1 211 0 0 0.77699298e+00 0.24166128e+00 -0.29261613e+02 0.13957000e+00
- 1 -211 0 0 0.89294463e+00 0.74901451e-01 -0.29262319e+02 0.13957000e+00
- 2 111 599 600 0.18247487e+00 -0.12660997e+00 -0.23809386e+01 0.13498000e+00
- 1 2212 0 0 0.27232308e+00 0.68176788e+00 -0.46633184e+02 0.93827000e+00
- 1 -211 0 0 -0.10532778e+00 -0.26163950e-01 -0.34610653e+01 0.13957000e+00
- 1 211 0 0 0.16274952e-01 0.36254897e+00 -0.63715404e+02 0.13957000e+00
- 2 111 601 602 -0.96165123e-01 0.14510321e-01 -0.41916304e+01 0.13498000e+00
- 1 211 0 0 -0.15636194e+00 -0.66524050e-01 -0.38494042e+01 0.13957000e+00
- 1 -211 0 0 0.24113914e+00 0.12728446e+00 -0.56144246e+01 0.13957000e+00
- 2 111 603 604 0.14746143e+00 0.15661694e+00 -0.10660095e+02 0.13498000e+00
- 1 -211 0 0 -0.21353807e+00 0.32930341e+00 -0.25364475e+03 0.13957000e+00
- 1 211 0 0 -0.19046682e+00 -0.16794089e+00 -0.15689457e+03 0.13957000e+00
- 1 -211 0 0 -0.13299212e+00 0.27589727e+00 -0.18234773e+03 0.13957000e+00
- 1 211 0 0 -0.17765218e+00 -0.19505856e+00 -0.22924137e+03 0.13957000e+00
- 1 -211 0 0 -0.32021921e+00 0.14985906e+00 -0.21990686e+03 0.13957000e+00
- 1 211 0 0 0.25789891e+00 -0.21885819e+00 -0.81768573e+02 0.13957000e+00
- 1 2212 0 0 -0.15795836e-01 -0.39983844e+00 -0.21230312e+04 0.93827000e+00
- 1 211 0 0 0.49477041e-01 -0.28444293e-01 -0.13717573e+03 0.13957000e+00
- 1 2112 0 0 0.10344058e+01 0.31025245e+00 0.12108550e+01 0.93957000e+00
- 2 111 605 606 0.24286953e+00 0.85519720e-01 0.10993642e+00 0.13498000e+00
- 2 -311 607 607 0.13843649e+01 0.74332346e+00 0.13696362e+01 0.49767000e+00
- 1 -211 0 0 0.11787154e+01 0.33969404e+00 0.12686455e+01 0.13957000e+00
- 2 311 608 608 0.69349636e-01 0.99155712e-01 0.10962175e+00 0.49767000e+00
- 1 211 0 0 0.50316087e+00 0.38319758e+00 0.22673394e+00 0.13957000e+00
- 1 -211 0 0 0.11272222e+01 0.65438617e+00 0.24890469e+02 0.13957000e+00
- 1 211 0 0 -0.32392371e-01 0.12841928e+00 0.74195320e+01 0.13957000e+00
- 1 22 0 0 0.13854350e-01 -0.72581015e-01 0.39470590e+01 0.00000000e+00
- 1 22 0 0 -0.12817377e+00 -0.97777300e-01 0.45426463e+01 0.00000000e+00
- 1 211 0 0 0.51640924e+00 -0.23718939e+00 0.72475303e+01 0.13957000e+00
- 1 -211 0 0 0.32905728e+01 -0.13513714e+01 0.36962077e+02 0.13957000e+00
- 2 111 609 610 0.47535972e+00 -0.52685138e-01 0.46912543e+01 0.13498000e+00
- 1 -211 0 0 0.78115028e+00 -0.31951151e+00 0.11911350e+02 0.13957000e+00
- 1 211 0 0 0.22069880e+01 -0.65717445e+00 0.19251025e+02 0.13957000e+00
- 1 22 0 0 0.34742170e+00 -0.20216552e+00 0.36422795e+01 0.00000000e+00
- 1 22 0 0 0.10593763e+01 -0.80532872e+00 0.13846522e+02 0.00000000e+00
- 1 -321 0 0 0.95111195e+00 -0.91502415e+00 0.17075932e+02 0.49360000e+00
- 1 211 0 0 0.27591605e+00 -0.44085567e+00 0.33943397e+01 0.13957000e+00
- 1 -211 0 0 0.16836523e+01 -0.38361545e+00 0.33632134e+02 0.13957000e+00
- 2 111 611 612 0.10154579e+00 -0.16903672e+00 0.21404976e+01 0.13498000e+00
- 2 311 613 613 0.64375146e+00 0.12388530e+01 0.80852789e+02 0.49767000e+00
- 1 211 0 0 0.33779169e+00 0.20202531e+00 0.12778935e+02 0.13957000e+00
- 2 -311 614 614 0.32688922e+00 0.35722491e+00 0.91450697e+02 0.49767000e+00
- 2 111 615 616 0.24924308e-02 0.74082794e+00 0.95805779e+02 0.13498000e+00
- 1 2112 0 0 0.96397017e+00 -0.84292973e+00 0.95813490e+02 0.93957000e+00
- 2 111 617 618 0.34125467e+00 -0.73599086e-01 0.18137963e+02 0.13498000e+00
- 1 -2212 0 0 0.98194238e+00 0.36869339e+00 0.13530029e+03 0.93827000e+00
- 1 -211 0 0 -0.82656680e-01 0.10869510e+00 0.20197491e+02 0.13957000e+00
- 1 211 0 0 -0.12937270e+01 -0.14026488e+01 0.18054181e+03 0.13957000e+00
- 2 111 619 620 -0.29682827e+00 -0.25379010e+00 0.80075858e+02 0.13498000e+00
- 1 211 0 0 -0.56598532e-01 -0.93433614e-01 0.12949129e+02 0.13957000e+00
- 1 -211 0 0 -0.95110160e-01 0.95066843e-01 0.14883592e+02 0.13957000e+00
- 2 111 621 622 0.28653261e+00 -0.29624145e+00 0.16484510e+02 0.13498000e+00
- 1 211 0 0 -0.73919075e+00 -0.17487168e+01 0.30507638e+03 0.13957000e+00
- 1 -211 0 0 -0.23544812e+00 -0.28177846e-01 0.52961102e+02 0.13957000e+00
- 1 22 0 0 -0.13544931e+00 -0.50815674e+00 0.40481475e+02 0.00000000e+00
- 1 22 0 0 0.15027980e+00 0.60783229e-02 0.32935727e+02 0.00000000e+00
- 1 -211 0 0 -0.10250528e+00 -0.25136358e+00 0.21377304e+02 0.13957000e+00
- 2 111 623 624 -0.58015907e+00 -0.12889276e-02 0.19955471e+02 0.13498000e+00
- 1 -211 0 0 -0.57676776e-01 0.68675688e+00 0.51173625e+02 0.13957000e+00
- 1 211 0 0 -0.56370876e+00 0.11605500e+00 0.96130094e+02 0.13957000e+00
- 1 211 0 0 -0.12454023e+01 0.62427766e+00 0.17944417e+03 0.13957000e+00
- 2 111 625 626 -0.74461504e-01 0.67512570e-01 0.66537208e+01 0.13498000e+00
- 1 2212 0 0 -0.24714691e+01 0.17540447e+01 0.25396333e+03 0.93827000e+00
- 1 211 0 0 -0.66728685e+00 0.42254104e+00 0.41229841e+02 0.13957000e+00
- 1 -211 0 0 -0.79063658e-01 0.66381190e+00 0.32075415e+02 0.13957000e+00
- 1 211 0 0 -0.92463457e-02 0.35134697e+00 0.12246690e+02 0.13957000e+00
- 2 111 627 628 -0.24668696e+00 0.29329017e+00 0.33725883e+02 0.13498000e+00
- 1 -2212 0 0 0.52864386e+00 0.12494546e+01 0.34072230e+02 0.93827000e+00
- 1 -211 0 0 0.11896004e+00 0.34972972e+00 0.16439745e+02 0.13957000e+00
- 1 -211 0 0 -0.41970979e+00 0.65505694e+00 0.22658146e+02 0.13957000e+00
- 1 211 0 0 -0.30277889e+00 0.57630817e+00 0.85035817e+01 0.13957000e+00
- 1 -211 0 0 -0.50403229e+00 0.68300617e+00 0.15334118e+02 0.13957000e+00
- 1 211 0 0 -0.51696640e-01 0.72503923e+00 0.56798402e+01 0.13957000e+00
- 1 22 0 0 0.49325481e+00 0.10377929e+01 0.16703657e+02 0.00000000e+00
- 1 22 0 0 -0.74306930e-01 0.72201854e+00 0.81239577e+01 0.00000000e+00
- 1 -211 0 0 -0.14386725e+00 0.12377996e+01 0.11419021e+02 0.13957000e+00
- 1 211 0 0 -0.89041241e-01 -0.31852666e-01 0.62562286e+00 0.13957000e+00
- 1 211 0 0 -0.14932155e+00 0.16886891e+00 0.23838107e+01 0.13957000e+00
- 1 -211 0 0 0.59523568e-01 0.14115758e+00 0.20175107e+01 0.13957000e+00
- 2 111 629 630 -0.19509288e-01 -0.45854899e-01 0.11708341e+01 0.13498000e+00
- 1 -211 0 0 0.67571876e+00 0.29896243e+00 0.20981348e+01 0.13957000e+00
- 1 211 0 0 0.92095845e+00 0.15263189e+01 0.60286275e+01 0.13957000e+00
- 1 -211 0 0 0.50897805e-01 0.56508112e+00 0.29538884e+01 0.13957000e+00
- 1 211 0 0 0.13343086e+00 0.13225529e+00 0.23200039e+01 0.13957000e+00
- 2 111 631 632 -0.14487429e+00 0.39847971e+00 0.15387547e+01 0.13498000e+00
- 2 310 633 634 -0.16943595e+00 -0.24385340e-01 0.27068275e+01 0.49767000e+00
- 1 -321 0 0 -0.55467060e+00 0.44659757e+00 0.23198785e+01 0.49360000e+00
- 2 111 635 636 -0.24179019e+00 0.78271303e+00 0.18018489e+01 0.13498000e+00
- 1 211 0 0 -0.10472565e+01 -0.15259315e+01 0.64887356e+01 0.13957000e+00
- 1 -211 0 0 -0.20042615e+01 -0.20389271e+01 0.11639460e+02 0.13957000e+00
- 1 211 0 0 -0.10738277e+01 0.82682755e-01 0.30386616e+01 0.13957000e+00
- 2 111 637 638 0.78053612e-01 -0.90670413e-01 0.66533028e+00 0.13498000e+00
- 1 2112 0 0 -0.16242532e+01 -0.28163681e+01 0.84341216e+01 0.93957000e+00
- 1 -211 0 0 -0.70947475e-01 -0.18271957e+00 0.10589303e+01 0.13957000e+00
- 1 211 0 0 -0.41359231e+00 -0.44172513e+00 0.72687538e+00 0.13957000e+00
- 2 111 639 640 -0.50588071e+00 -0.50927714e+00 0.27172668e+01 0.13498000e+00
- 1 22 0 0 -0.17463709e+00 -0.96238507e-01 0.42440715e+00 0.00000000e+00
- 1 22 0 0 -0.66491517e+00 -0.70147148e+00 0.20834142e+01 0.00000000e+00
- 1 -211 0 0 -0.61594908e-01 -0.25961655e+00 0.54679609e+00 0.13957000e+00
- 1 211 0 0 -0.25518064e+01 -0.27820780e+01 0.10356797e+02 0.13957000e+00
- 1 211 0 0 -0.95012246e+00 -0.10187563e+01 0.20729812e+01 0.13957000e+00
- 2 111 641 642 -0.75238772e-02 -0.56119746e-01 0.18607032e-01 0.13498000e+00
- 1 -211 0 0 -0.63656491e+00 0.43784394e+00 0.41271262e+00 0.13957000e+00
- 1 211 0 0 -0.48845094e+00 0.58208221e-01 0.20215355e+00 0.13957000e+00
- 2 111 643 644 -0.46910442e-01 -0.86378796e-01 0.61013609e-01 0.13498000e+00
- 1 -211 0 0 -0.80604526e+00 -0.18950460e+00 -0.24372458e+00 0.13957000e+00
- 2 111 645 646 0.11495595e+00 -0.10490877e+00 -0.18768886e+00 0.13498000e+00
- 1 -211 0 0 -0.39792955e+00 -0.90472636e-01 -0.25978620e+00 0.13957000e+00
- 2 111 647 648 -0.72526281e-01 0.94925141e-01 -0.13619753e+01 0.13498000e+00
- 1 211 0 0 -0.78649517e+00 0.94904107e+00 -0.11773004e+01 0.13957000e+00
- 1 -211 0 0 -0.50472560e+00 0.18281755e-02 -0.60791685e+00 0.13957000e+00
- 1 22 0 0 -0.85572996e+00 -0.14190217e+00 -0.13813354e+01 0.00000000e+00
- 2 111 649 650 -0.74775553e+00 0.51544651e+00 -0.87164753e+00 0.13498000e+00
- 1 22 0 0 -0.56570275e+00 0.26386024e+00 -0.36320940e+00 0.00000000e+00
- 1 22 0 0 -0.28949876e+01 0.16306558e+01 -0.21442948e+01 0.00000000e+00
- 1 22 0 0 -0.36067058e-01 -0.36722524e-02 -0.60329560e+00 0.00000000e+00
- 1 22 0 0 0.93921730e-01 0.61365513e-01 -0.82281370e+00 0.00000000e+00
- 1 130 0 0 -0.10074882e+01 -0.81247461e+00 -0.89840959e+01 0.49767000e+00
- 2 310 651 652 -0.86092480e+00 -0.10564041e+01 -0.58832742e+01 0.49767000e+00
- 2 311 653 653 0.64859073e+00 -0.87180553e+00 -0.25684716e+01 0.49767000e+00
- 2 111 654 655 -0.53308172e-01 0.24246778e-01 -0.78763336e+00 0.13498000e+00
- 2 -311 656 656 0.31271571e+00 -0.17541352e+00 0.39532939e+00 0.49767000e+00
- 1 -211 0 0 0.47002866e+00 -0.43426444e+00 -0.20738099e-01 0.13957000e+00
- 1 321 0 0 0.22415733e+00 0.24699660e+00 0.17000290e+00 0.49360000e+00
- 2 111 657 658 0.57593086e+00 0.84199957e-01 0.38888915e+00 0.13498000e+00
- 2 -311 659 659 0.25222866e+00 0.33439761e+00 0.57424137e+00 0.49767000e+00
- 2 111 660 661 0.39751917e+00 -0.16286505e+00 0.19123395e+00 0.13498000e+00
- 1 22 0 0 0.10939059e-01 0.35488202e+00 0.91374427e+03 0.00000000e+00
- 1 22 0 0 -0.77992774e-01 0.12118262e+00 0.34892099e+03 0.00000000e+00
- 1 -2112 0 0 -0.48349037e+00 -0.10807108e+00 0.59863445e+03 0.93957000e+00
- 1 211 0 0 0.10280413e+00 -0.20321113e-01 0.54673043e+02 0.13957000e+00
- 2 3122 662 663 0.19606996e+00 0.29637440e-01 0.42257788e+03 0.11156800e+01
- 1 22 0 0 0.92119993e-01 0.30665824e-02 0.42619434e+02 0.00000000e+00
- 1 211 0 0 0.18050739e+00 0.77483032e-01 0.26007465e+01 0.13957000e+00
- 1 -211 0 0 0.12895600e+00 -0.10987123e+00 0.72972502e+01 0.13957000e+00
- 2 111 664 665 -0.13246616e+00 -0.24918911e+00 0.70599851e+01 0.13498000e+00
- 1 22 0 0 0.18425968e-01 0.17602556e+00 0.98608942e+00 0.00000000e+00
- 1 22 0 0 0.10499974e+00 0.30912255e+00 0.10768378e+01 0.00000000e+00
- 1 -2212 0 0 -0.54412803e+00 -0.13410839e+01 0.13638552e+00 0.93827000e+00
- 2 111 666 667 -0.81830718e-01 -0.10239905e+00 0.19285560e+00 0.13498000e+00
- 2 -311 668 668 -0.26260902e+01 -0.19687379e+01 0.24552142e+00 0.49767000e+00
- 1 -211 0 0 -0.40896099e+00 -0.62999825e+00 -0.12269321e+00 0.13957000e+00
- 1 2212 0 0 -0.13926995e+01 -0.24890976e+01 -0.41599438e+00 0.93827000e+00
- 1 211 0 0 -0.96362788e+00 -0.16096001e+01 -0.70560816e+00 0.13957000e+00
- 1 -211 0 0 -0.29666643e+00 -0.13488838e+00 -0.10798655e+00 0.13957000e+00
- 1 211 0 0 -0.32370793e+00 -0.48740221e-01 0.34282748e-01 0.13957000e+00
- 2 111 669 670 -0.13430546e+00 -0.19317906e+00 0.58980376e-01 0.13498000e+00
- 1 211 0 0 -0.82475100e+00 -0.77347807e+00 -0.99962821e+00 0.13957000e+00
- 1 -211 0 0 -0.19802760e+01 -0.34270824e+01 -0.41742043e+01 0.13957000e+00
- 1 -211 0 0 -0.93232231e-01 -0.37631396e-01 -0.80016790e+00 0.13957000e+00
- 2 111 671 672 -0.12529982e+01 -0.78049218e+00 -0.12888069e+01 0.13498000e+00
- 1 211 0 0 -0.50773482e-01 -0.66354971e-01 -0.26120555e+00 0.13957000e+00
- 1 -211 0 0 -0.53302773e+00 -0.38023597e+00 -0.61535642e+00 0.13957000e+00
- 2 111 673 674 -0.36027088e+00 -0.74374018e+00 -0.15243553e+01 0.13498000e+00
- 1 211 0 0 0.70640385e-01 -0.45660126e+00 -0.37295323e+00 0.13957000e+00
- 2 111 675 676 -0.10477376e+00 -0.12104599e+01 -0.23890548e+01 0.13498000e+00
- 1 -2212 0 0 -0.12233432e+01 0.24130275e+00 -0.82071228e+01 0.93827000e+00
- 1 -211 0 0 -0.47404257e-01 0.10394645e+00 -0.16638127e+01 0.13957000e+00
- 1 -211 0 0 0.11651330e+00 -0.35050596e-01 -0.10927263e+01 0.13957000e+00
- 1 211 0 0 -0.28436495e+00 -0.10851701e+00 -0.61548707e+01 0.13957000e+00
- 2 111 677 678 0.13266458e+00 -0.96956521e-01 -0.32989483e+01 0.13498000e+00
- 1 2212 0 0 -0.69369072e+00 -0.89751386e+00 -0.19534674e+02 0.93827000e+00
- 1 211 0 0 -0.39646186e+00 -0.28454019e+00 -0.49424366e+01 0.13957000e+00
- 1 22 0 0 -0.57235421e-01 0.13529701e+00 -0.31496153e+00 0.00000000e+00
- 1 11 0 0 -0.39497225e-01 0.13716674e-01 -0.11304014e-01 0.51000000e-03
- 1 -11 0 0 -0.87253970e-02 0.33304927e-02 -0.20530127e-02 0.51000000e-03
- 1 22 0 0 -0.17004503e+01 -0.10182018e+01 -0.41299311e+02 0.00000000e+00
- 2 111 679 680 -0.28882589e+00 -0.55801871e+00 -0.19106201e+02 0.13498000e+00
- 1 211 0 0 -0.22556878e+00 -0.63123809e-01 -0.14326474e+02 0.13957000e+00
- 1 -211 0 0 -0.77476924e+00 -0.34231413e+00 -0.48814587e+02 0.13957000e+00
- 2 111 681 682 -0.98669865e+00 0.12789253e+00 -0.56814574e+02 0.13498000e+00
- 1 -2212 0 0 -0.32543064e+00 -0.79229956e+00 -0.45471611e+02 0.93827000e+00
- 1 211 0 0 -0.24584674e+00 0.14778826e+00 -0.16396644e+02 0.13957000e+00
- 2 111 683 684 -0.97716285e-02 -0.94161214e-01 -0.10349084e+02 0.13498000e+00
- 2 111 685 686 -0.11089504e+00 0.48470849e-01 -0.34306982e+02 0.13498000e+00
- 2 221 687 688 -0.35760844e+00 0.17104692e+00 -0.67239061e+02 0.54745000e+00
- 1 211 0 0 -0.88685139e-01 -0.28815014e+00 -0.61483511e+02 0.13957000e+00
- 2 111 689 691 -0.41029876e+00 0.27905160e+00 -0.15660461e+03 0.13498000e+00
- 1 -211 0 0 -0.49084136e+00 0.25727582e+00 -0.10026366e+03 0.13957000e+00
- 1 211 0 0 -0.61153293e+00 -0.36195879e+00 -0.76991967e+02 0.13957000e+00
- 1 -211 0 0 -0.36611805e+00 -0.23608978e+00 -0.93583723e+02 0.13957000e+00
- 1 211 0 0 -0.90481276e+00 -0.32643614e+00 -0.25834040e+03 0.13957000e+00
- 2 111 692 693 -0.25762227e+00 0.77877429e-01 -0.12929775e+03 0.13498000e+00
- 1 -211 0 0 -0.50383079e-01 0.10332945e+00 -0.19921186e+01 0.13957000e+00
- 1 211 0 0 0.88199154e-01 -0.55278934e-02 -0.69251471e+01 0.13957000e+00
- 2 111 694 695 -0.87025388e-01 -0.54193542e-01 -0.65071396e+00 0.13498000e+00
- 2 -311 696 696 0.20696736e+00 -0.18184611e+00 -0.52767482e+01 0.49767000e+00
- 1 -211 0 0 -0.29000320e+00 -0.85194173e-01 -0.21284729e+01 0.13957000e+00
- 2 310 697 698 -0.50419839e-01 -0.33321058e+00 -0.25602641e+02 0.49767000e+00
- 1 22 0 0 -0.31508995e-01 -0.20394089e+00 -0.23300901e+01 0.00000000e+00
- 1 22 0 0 -0.24278694e+00 0.14452460e+00 -0.74424370e+00 0.00000000e+00
- 1 22 0 0 -0.33057706e+00 0.31359570e+00 -0.29623927e+03 0.00000000e+00
- 1 22 0 0 -0.46061705e+00 0.30440442e+00 -0.29264523e+03 0.00000000e+00
- 1 22 0 0 0.12586916e+00 -0.90615871e-01 -0.32067177e+00 0.00000000e+00
- 1 22 0 0 -0.11349438e-01 0.29795484e-01 -0.75296265e-01 0.00000000e+00
- 1 22 0 0 0.76452125e-01 0.35190421e-01 0.60610235e-01 0.00000000e+00
- 1 22 0 0 0.58153075e+00 0.10534131e-01 0.12981480e+00 0.00000000e+00
- 1 22 0 0 0.64465580e-02 -0.13592626e+00 -0.21333870e+00 0.00000000e+00
- 1 22 0 0 -0.51209578e-01 -0.72232279e-02 -0.20490054e+00 0.00000000e+00
- 1 22 0 0 -0.35914554e+00 0.15931343e+00 -0.93552741e+00 0.00000000e+00
- 1 22 0 0 -0.36661681e+00 0.30715093e-01 -0.10016326e+01 0.00000000e+00
- 1 22 0 0 -0.73623136e-01 -0.21553345e-01 -0.50659854e-01 0.00000000e+00
- 1 22 0 0 -0.29803839e+00 0.15200595e+00 -0.40501780e+00 0.00000000e+00
- 1 22 0 0 -0.28644203e-03 0.40293991e-02 -0.65699356e-02 0.00000000e+00
- 1 22 0 0 -0.29865568e+01 0.62241948e+00 -0.59323609e+01 0.00000000e+00
- 1 130 0 0 0.11589165e+00 -0.32319941e+00 -0.62359556e+00 0.49767000e+00
- 2 310 699 700 0.10176288e+01 -0.11103196e+01 0.15925865e+01 0.49767000e+00
- 1 22 0 0 0.21484143e+00 -0.14913695e+00 0.16353845e+00 0.00000000e+00
- 1 22 0 0 0.89079583e+00 -0.35922967e+00 0.77896893e+00 0.00000000e+00
- 1 130 0 0 0.42316358e+00 -0.34129799e+00 0.46088765e+00 0.49767000e+00
- 1 22 0 0 0.35392960e+00 0.80012541e+00 0.19237549e+00 0.00000000e+00
- 1 22 0 0 0.14000776e+00 0.18873565e+00 0.45577663e-02 0.00000000e+00
- 1 22 0 0 0.19995835e+00 0.69093230e-01 0.60781630e-01 0.00000000e+00
- 1 22 0 0 0.26817098e+00 0.33910996e-01 -0.64373355e-01 0.00000000e+00
- 1 22 0 0 0.20110510e+00 0.29650139e+00 0.83470483e-01 0.00000000e+00
- 1 22 0 0 0.78552164e+00 0.75056990e+00 0.20393217e+00 0.00000000e+00
- 1 22 0 0 0.22985946e+00 0.10768737e+00 -0.17445612e+00 0.00000000e+00
- 1 22 0 0 0.14674328e+00 0.56192395e-01 0.27838595e-02 0.00000000e+00
- 1 22 0 0 0.68279453e-01 0.29254058e+00 -0.21168511e+00 0.00000000e+00
- 1 22 0 0 0.12250760e+00 0.52466091e+00 -0.17679679e+00 0.00000000e+00
- 1 22 0 0 -0.82962614e-02 0.20780450e-02 -0.10947784e+00 0.00000000e+00
- 1 22 0 0 0.66818625e-01 0.21449734e+00 -0.27042417e+00 0.00000000e+00
- 1 22 0 0 0.18562436e+00 0.35355129e+00 -0.10810542e+01 0.00000000e+00
- 1 22 0 0 0.39747992e+00 0.96374915e+00 -0.34394586e+01 0.00000000e+00
- 1 22 0 0 0.94787590e+00 0.56253682e+00 -0.28837702e+01 0.00000000e+00
- 1 22 0 0 0.21718812e+00 0.21002491e+00 -0.76906404e+00 0.00000000e+00
- 1 22 0 0 -0.10710769e+00 -0.41587665e-01 -0.14068943e+01 0.00000000e+00
- 1 22 0 0 -0.26353587e-01 -0.14219239e+00 -0.12056823e+01 0.00000000e+00
- 1 211 0 0 0.82423819e-01 0.17708827e+00 -0.31341978e+01 0.13957000e+00
- 1 -211 0 0 0.33657744e+00 0.13664560e+00 -0.48915977e+01 0.13957000e+00
- 2 111 701 702 0.32260269e+00 0.18963226e+00 -0.32778367e+01 0.13498000e+00
- 1 22 0 0 0.22058547e+00 0.56940959e+00 -0.10073038e+02 0.00000000e+00
- 1 22 0 0 0.37830784e-02 -0.77954288e-02 -0.10755453e+00 0.00000000e+00
- 1 22 0 0 0.32040958e+00 0.16265492e+00 -0.11915254e+02 0.00000000e+00
- 1 22 0 0 0.43403825e+00 0.40075612e+00 -0.17703631e+02 0.00000000e+00
- 1 22 0 0 0.96518247e-01 -0.99557883e-01 -0.19219280e+01 0.00000000e+00
- 1 22 0 0 -0.42706834e-01 -0.14660981e-01 -0.49025348e+00 0.00000000e+00
- 1 22 0 0 -0.11193595e-01 -0.19744956e-01 -0.61851178e+00 0.00000000e+00
- 1 22 0 0 0.52142948e-01 0.17206050e+00 -0.98904646e+01 0.00000000e+00
- 1 22 0 0 0.39632955e-01 0.15949414e-01 -0.18405637e+00 0.00000000e+00
- 1 22 0 0 0.14284192e+00 -0.14255938e+00 -0.21968822e+01 0.00000000e+00
- 1 22 0 0 0.85402049e-04 -0.10617150e-01 -0.25621993e-01 0.00000000e+00
- 1 22 0 0 -0.96250525e-01 0.25127471e-01 -0.41660084e+01 0.00000000e+00
- 1 22 0 0 0.68093988e-01 0.35791566e-01 -0.66061614e+01 0.00000000e+00
- 1 22 0 0 0.79367447e-01 0.12082538e+00 -0.40539340e+01 0.00000000e+00
- 1 22 0 0 0.17899436e+00 0.64732381e-01 0.14093075e+00 0.00000000e+00
- 1 22 0 0 0.63875174e-01 0.20787339e-01 -0.30994329e-01 0.00000000e+00
- 1 130 0 0 0.13843649e+01 0.74332346e+00 0.13696362e+01 0.49767000e+00
- 1 130 0 0 0.69349636e-01 0.99155712e-01 0.10962175e+00 0.49767000e+00
- 1 22 0 0 0.16336772e+00 0.16873401e-01 0.11210119e+01 0.00000000e+00
- 1 22 0 0 0.31199200e+00 -0.69558539e-01 0.35702424e+01 0.00000000e+00
- 1 22 0 0 0.10490208e+00 -0.80766615e-01 0.16580838e+01 0.00000000e+00
- 1 22 0 0 -0.33562892e-02 -0.88270100e-01 0.48241378e+00 0.00000000e+00
- 1 130 0 0 0.64375146e+00 0.12388530e+01 0.80852789e+02 0.49767000e+00
- 2 310 703 704 0.32688922e+00 0.35722491e+00 0.91450697e+02 0.49767000e+00
- 1 22 0 0 -0.18961167e-01 0.24744947e+00 0.24788576e+02 0.00000000e+00
- 1 22 0 0 0.21453598e-01 0.49337847e+00 0.71017203e+02 0.00000000e+00
- 1 22 0 0 0.15025326e+00 -0.18308286e-01 0.48174153e+01 0.00000000e+00
- 1 22 0 0 0.19100141e+00 -0.55290800e-01 0.13320548e+02 0.00000000e+00
- 1 22 0 0 -0.55634549e-01 -0.13148526e+00 0.27632106e+02 0.00000000e+00
- 1 22 0 0 -0.24119372e+00 -0.12230484e+00 0.52443752e+02 0.00000000e+00
- 1 22 0 0 0.23757766e+00 -0.29122941e+00 0.13249973e+02 0.00000000e+00
- 1 22 0 0 0.48954946e-01 -0.50120423e-02 0.32345367e+01 0.00000000e+00
- 1 22 0 0 -0.27405415e+00 0.65196734e-01 0.99370433e+01 0.00000000e+00
- 1 22 0 0 -0.30610492e+00 -0.66485661e-01 0.10018428e+02 0.00000000e+00
- 1 22 0 0 -0.43972681e-01 0.39014055e-01 0.61835310e+01 0.00000000e+00
- 1 22 0 0 -0.30488822e-01 0.28498515e-01 0.47018980e+00 0.00000000e+00
- 1 22 0 0 -0.70347056e-01 0.10044794e-01 0.48655476e+01 0.00000000e+00
- 1 22 0 0 -0.17633991e+00 0.28324538e+00 0.28860335e+02 0.00000000e+00
- 1 22 0 0 0.28339168e-01 0.22291935e-01 0.73746865e+00 0.00000000e+00
- 1 22 0 0 -0.47848456e-01 -0.68146835e-01 0.43336543e+00 0.00000000e+00
- 1 22 0 0 -0.33627454e-01 0.73173687e-02 0.73531243e-01 0.00000000e+00
- 1 22 0 0 -0.11124684e+00 0.39116234e+00 0.14652235e+01 0.00000000e+00
- 1 211 0 0 -0.15975421e+00 0.17350151e+00 0.16989376e+01 0.13957000e+00
- 1 -211 0 0 -0.96817347e-02 -0.19788685e+00 0.10078898e+01 0.13957000e+00
- 1 22 0 0 -0.23504779e+00 0.56050219e+00 0.13024543e+01 0.00000000e+00
- 1 22 0 0 -0.67424081e-02 0.22221083e+00 0.49939458e+00 0.00000000e+00
- 1 22 0 0 -0.28252136e-01 0.79918150e-02 0.58889497e-01 0.00000000e+00
- 1 22 0 0 0.10630575e+00 -0.98662228e-01 0.60644078e+00 0.00000000e+00
- 1 22 0 0 -0.84343660e-01 -0.29855504e-01 0.26367065e+00 0.00000000e+00
- 1 22 0 0 -0.42153705e+00 -0.47942163e+00 0.24535961e+01 0.00000000e+00
- 1 22 0 0 -0.36401858e-01 -0.12457983e-01 -0.48840434e-01 0.00000000e+00
- 1 22 0 0 0.28877980e-01 -0.43661763e-01 0.67447466e-01 0.00000000e+00
- 1 22 0 0 0.66406824e-02 0.33639695e-01 0.40119306e-02 0.00000000e+00
- 1 22 0 0 -0.53551124e-01 -0.12001849e+00 0.57001678e-01 0.00000000e+00
- 1 22 0 0 0.12174552e+00 -0.52425537e-01 -0.18243791e+00 0.00000000e+00
- 1 22 0 0 -0.67895738e-02 -0.52483234e-01 -0.52509529e-02 0.00000000e+00
- 1 22 0 0 -0.36573578e-01 -0.25240572e-01 -0.18734453e+00 0.00000000e+00
- 1 22 0 0 -0.35952703e-01 0.12016571e+00 -0.11746308e+01 0.00000000e+00
- 1 22 0 0 -0.34312418e+00 0.31832044e+00 -0.45012742e+00 0.00000000e+00
- 1 22 0 0 -0.40463134e+00 0.19712607e+00 -0.42152010e+00 0.00000000e+00
- 1 211 0 0 -0.42458377e+00 -0.25479638e+00 -0.17308996e+01 0.13957000e+00
- 1 -211 0 0 -0.43634103e+00 -0.80160775e+00 -0.41523746e+01 0.13957000e+00
- 1 130 0 0 0.64859073e+00 -0.87180553e+00 -0.25684716e+01 0.49767000e+00
- 1 22 0 0 0.57755257e-02 0.32842428e-01 -0.43880887e-01 0.00000000e+00
- 1 22 0 0 -0.59083698e-01 -0.85956492e-02 -0.74375248e+00 0.00000000e+00
- 1 130 0 0 0.31271571e+00 -0.17541352e+00 0.39532939e+00 0.49767000e+00
- 1 22 0 0 0.34299464e+00 0.85426155e-01 0.16599694e+00 0.00000000e+00
- 1 22 0 0 0.23293622e+00 -0.12261989e-02 0.22289221e+00 0.00000000e+00
- 1 130 0 0 0.25222866e+00 0.33439761e+00 0.57424137e+00 0.49767000e+00
- 1 22 0 0 0.40213437e+00 -0.14171008e+00 0.19187732e+00 0.00000000e+00
- 1 22 0 0 -0.46151975e-02 -0.21154971e-01 -0.64337019e-03 0.00000000e+00
- 1 2112 0 0 0.85475972e-01 -0.31645332e-01 0.33873638e+03 0.93957000e+00
- 2 111 705 706 0.11059399e+00 0.61282773e-01 0.83841499e+02 0.13498000e+00
- 1 22 0 0 -0.73301314e-01 -0.23645419e+00 0.51165432e+01 0.00000000e+00
- 1 22 0 0 -0.59164842e-01 -0.12734916e-01 0.19434419e+01 0.00000000e+00
- 1 22 0 0 0.18168008e-01 -0.81119408e-01 0.10975677e+00 0.00000000e+00
- 1 22 0 0 -0.99998726e-01 -0.21279640e-01 0.83098828e-01 0.00000000e+00
- 2 310 707 708 -0.26260902e+01 -0.19687379e+01 0.24552142e+00 0.49767000e+00
- 1 22 0 0 -0.86766582e-01 -0.16645115e+00 0.96820443e-01 0.00000000e+00
- 1 22 0 0 -0.47538879e-01 -0.26727906e-01 -0.37840067e-01 0.00000000e+00
- 1 22 0 0 -0.84463858e+00 -0.57735617e+00 -0.83118511e+00 0.00000000e+00
- 1 22 0 0 -0.40835961e+00 -0.20313601e+00 -0.45762179e+00 0.00000000e+00
- 1 22 0 0 -0.11702587e+00 -0.13580438e+00 -0.26764279e+00 0.00000000e+00
- 1 22 0 0 -0.24324501e+00 -0.60793580e+00 -0.12567125e+01 0.00000000e+00
- 1 22 0 0 -0.68741903e-01 -0.10747748e+01 -0.21845941e+01 0.00000000e+00
- 1 22 0 0 -0.36031859e-01 -0.13568512e+00 -0.20446076e+00 0.00000000e+00
- 1 22 0 0 0.74818912e-01 -0.12036257e+00 -0.18101449e+01 0.00000000e+00
- 1 22 0 0 0.57845673e-01 0.23406052e-01 -0.14888034e+01 0.00000000e+00
- 1 22 0 0 0.48404228e-02 -0.29109022e-01 -0.17855603e+01 0.00000000e+00
- 1 22 0 0 -0.29366632e+00 -0.52890969e+00 -0.17320641e+02 0.00000000e+00
- 1 22 0 0 -0.10046596e+00 -0.11925591e-02 -0.82783600e+01 0.00000000e+00
- 1 22 0 0 -0.88623269e+00 0.12908509e+00 -0.48536214e+02 0.00000000e+00
- 1 22 0 0 0.56571940e-01 -0.74161752e-01 -0.67689933e+01 0.00000000e+00
- 1 22 0 0 -0.66343568e-01 -0.19999462e-01 -0.35800908e+01 0.00000000e+00
- 1 22 0 0 -0.21343173e-01 -0.21694234e-01 -0.20115194e+02 0.00000000e+00
- 1 22 0 0 -0.89551864e-01 0.70165083e-01 -0.14191788e+02 0.00000000e+00
- 1 22 0 0 0.12870148e+00 -0.38196576e-01 -0.91530718e+01 0.00000000e+00
- 1 22 0 0 -0.48630992e+00 0.20924349e+00 -0.58085989e+02 0.00000000e+00
- 1 22 0 0 -0.27182357e+00 0.25281202e+00 -0.10695311e+03 0.00000000e+00
- 1 -11 0 0 -0.93212495e-01 0.17182729e-01 -0.33310687e+02 0.51000000e-03
- 1 11 0 0 -0.45262700e-01 0.90568516e-02 -0.16340812e+02 0.51000000e-03
- 1 22 0 0 -0.20418428e+00 0.10870850e+00 -0.11238019e+03 0.00000000e+00
- 1 22 0 0 -0.53437994e-01 -0.30831069e-01 -0.16917560e+02 0.00000000e+00
- 1 22 0 0 -0.91879751e-01 0.20751871e-01 -0.37828823e+00 0.00000000e+00
- 1 22 0 0 0.48543622e-02 -0.74945413e-01 -0.27242574e+00 0.00000000e+00
- 1 130 0 0 0.20696736e+00 -0.18184611e+00 -0.52767482e+01 0.49767000e+00
- 1 -211 0 0 -0.17059968e+00 -0.32388278e+00 -0.13614901e+02 0.13957000e+00
- 1 211 0 0 0.12017984e+00 -0.93277972e-02 -0.11987740e+02 0.13957000e+00
- 1 -211 0 0 0.80701988e+00 -0.79738500e+00 0.93426577e+00 0.13957000e+00
- 1 211 0 0 0.21060889e+00 -0.31293462e+00 0.65832075e+00 0.13957000e+00
- 1 22 0 0 0.11481179e+00 0.64144513e-01 -0.67050639e+00 0.00000000e+00
- 1 22 0 0 0.20779090e+00 0.12548774e+00 -0.26073304e+01 0.00000000e+00
- 1 -211 0 0 -0.44248010e-01 0.10568418e+00 0.42507061e+02 0.13957000e+00
- 1 211 0 0 0.37113723e+00 0.25154073e+00 0.48943636e+02 0.13957000e+00
- 1 22 0 0 0.16914752e-01 -0.58834261e-02 0.50761789e+02 0.00000000e+00
- 1 22 0 0 0.93679241e-01 0.67166199e-01 0.33079710e+02 0.00000000e+00
- 1 -211 0 0 -0.22528652e+01 -0.15722717e+01 0.28313596e+00 0.13957000e+00
- 1 211 0 0 -0.37322496e+00 -0.39646623e+00 -0.37614539e-01 0.13957000e+00
- 942
- 2 25 2 3 0.58011172e+02 -0.35136597e+02 0.57255886e+02 0.12499407e+03
- 2 23 4 5 0.11861115e+02 -0.21842892e+02 0.14419423e+02 0.29539848e+02
- 2 23 6 8 0.46150057e+02 -0.13293705e+02 0.42836464e+02 0.91777141e+02
- 1 11 0 0 0.20529270e+02 -0.21763924e+02 0.10641661e+02 0.51000000e-03
- 1 -11 0 0 -0.86681553e+01 -0.78968795e-01 0.37777616e+01 0.51000000e-03
- 1 11 0 0 0.57112479e+02 -0.80580342e+01 0.64947452e+02 0.51000000e-03
- 1 -11 0 0 -0.10951794e+02 -0.52199454e+01 -0.22066092e+02 0.51000000e-03
- 1 22 0 0 -0.10628299e-01 -0.15724879e-01 -0.44896709e-01 0.00000000e+00
- 2 323 118 119 0.47006355e+00 -0.22088979e+00 -0.11204067e+04 0.86396915e+00
- 2 3 120 120 -0.77327756e+01 0.10856893e+02 -0.21253548e+03 0.50000000e+00
- 2 21 120 120 -0.10221593e+02 0.12625354e+02 -0.28774506e+03 0.00000000e+00
- 2 -2 120 120 -0.62604002e+00 0.19196861e+01 -0.47086863e+02 0.33000000e+00
- 2 2 125 125 0.87679483e+00 0.15216463e+02 -0.26112482e+03 0.33000000e+00
- 2 21 125 125 0.15250497e+00 0.25362527e+01 -0.32839428e+02 0.00000000e+00
- 2 21 125 125 -0.12808087e+00 -0.72043166e-02 -0.19227271e+00 0.00000000e+00
- 2 21 125 125 -0.12982915e+01 0.50569921e+00 -0.29727781e+01 0.00000000e+00
- 2 21 125 125 -0.14250972e+02 -0.93338713e+00 -0.17678886e+02 0.00000000e+00
- 2 21 125 125 -0.30605461e+02 -0.64071984e+00 -0.45077717e+02 0.00000000e+00
- 2 21 125 125 0.31451980e+01 -0.13984300e+01 0.13801355e+01 0.00000000e+00
- 2 21 125 125 0.24722024e+01 0.40965432e+00 0.57943121e+00 0.00000000e+00
- 2 21 125 125 0.27516433e+01 -0.13416046e+00 0.55193836e+01 0.00000000e+00
- 2 21 125 125 0.36239768e+01 -0.15414414e+01 0.79756737e+01 0.00000000e+00
- 2 21 125 125 0.47582163e+00 -0.76475152e+00 0.16026293e+01 0.00000000e+00
- 2 21 125 125 0.14981552e+01 -0.41688439e+01 0.98793475e+01 0.00000000e+00
- 2 21 125 125 0.90582255e-01 -0.41967388e+00 0.17398929e+01 0.00000000e+00
- 2 21 125 125 0.40892272e+01 -0.26933598e+01 0.29971509e+02 0.00000000e+00
- 2 21 125 125 0.63081722e+00 -0.60131556e+00 0.78159663e+01 0.00000000e+00
- 2 21 125 125 0.30137487e+01 0.18617558e+00 0.25933049e+02 0.00000000e+00
- 2 21 125 125 0.50533004e+00 -0.29711350e+01 0.51723342e+02 0.00000000e+00
- 2 21 125 125 -0.14342279e+00 -0.43027290e+00 0.81683619e+01 0.00000000e+00
- 2 21 125 125 -0.29859491e+01 -0.23953743e+01 0.67891776e+02 0.00000000e+00
- 2 21 125 125 0.50722154e-01 -0.12962038e+01 0.54354748e+02 0.00000000e+00
- 2 21 125 125 0.17699938e+01 -0.13007315e+01 0.88873872e+02 0.00000000e+00
- 2 21 125 125 0.33904385e+01 0.22299583e+01 0.20832038e+03 0.00000000e+00
- 2 21 125 125 -0.50722154e-01 0.12962038e+01 0.69036333e+02 0.00000000e+00
- 2 21 125 125 0.14285223e+01 -0.41880527e+00 0.39094114e+03 0.00000000e+00
- 2 21 125 125 0.20089962e+00 -0.32001157e+00 0.10782001e+04 0.00000000e+00
- 2 21 125 125 -0.11427172e+01 -0.26959183e+00 0.74719195e+03 0.00000000e+00
- 2 21 125 125 -0.63081722e+00 0.60131556e+00 0.25259100e+03 0.00000000e+00
- 2 21 125 125 -0.31451980e+01 0.13984300e+01 0.36587542e+03 0.00000000e+00
- 2 21 125 125 -0.27516433e+01 0.13416046e+00 0.14157855e+03 0.00000000e+00
- 2 21 125 125 -0.36239768e+01 0.15414414e+01 0.17333151e+03 0.00000000e+00
- 2 21 125 125 -0.22620590e+01 0.17643559e+01 0.67288449e+02 0.00000000e+00
- 2 21 125 125 -0.14285223e+01 0.41880527e+00 0.32067269e+02 0.00000000e+00
- 2 21 125 125 -0.17699938e+01 0.13007315e+01 0.46281726e+02 0.00000000e+00
- 2 21 125 125 -0.15541952e+00 0.80281235e+00 0.25069657e+01 0.00000000e+00
- 2 2203 125 125 0.11324296e+01 -0.82087986e+00 0.24095584e+04 0.77133000e+00
- 2 1 202 202 0.30576809e+01 -0.51352726e+01 0.21566287e+03 0.33000000e+00
- 2 21 202 202 0.12079362e+01 -0.23501555e+00 0.32474474e+02 0.00000000e+00
- 2 21 202 202 0.56317924e+00 -0.10141454e+00 0.56254040e+01 0.00000000e+00
- 2 21 202 202 -0.77276137e+00 -0.12122696e+01 0.15326459e+02 0.00000000e+00
- 2 21 202 202 -0.40892272e+01 0.26933598e+01 0.57649067e+02 0.00000000e+00
- 2 21 202 202 0.99666405e+00 0.29574928e+01 0.30303202e+02 0.00000000e+00
- 2 21 202 202 0.29859491e+01 0.23953743e+01 0.16401341e+02 0.00000000e+00
- 2 21 202 202 0.20338682e+01 0.94703959e+00 0.60699912e+01 0.00000000e+00
- 2 21 202 202 0.35518632e+00 0.11325854e+01 0.20587649e+01 0.00000000e+00
- 2 21 202 202 -0.47582163e+00 0.76475152e+00 0.10182849e+01 0.00000000e+00
- 2 21 202 202 -0.20089962e+00 0.32001157e+00 0.83277645e+00 0.00000000e+00
- 2 21 202 202 0.14342279e+00 0.43027290e+00 0.13348499e+01 0.00000000e+00
- 2 21 202 202 -0.85224112e-01 0.15464955e+01 0.43211615e+01 0.00000000e+00
- 2 21 202 202 -0.14981552e+01 0.41688439e+01 0.13631491e+02 0.00000000e+00
- 2 21 202 202 -0.19967584e+01 0.40405531e+00 0.55814863e+01 0.00000000e+00
- 2 21 202 202 -0.33904385e+01 -0.22299583e+01 0.88108390e+01 0.00000000e+00
- 2 21 202 202 -0.35768736e+01 -0.20686422e+01 0.53283731e+01 0.00000000e+00
- 2 21 202 202 -0.20338682e+01 -0.94703959e+00 0.19855677e+01 0.00000000e+00
- 2 21 202 202 -0.39840193e+01 0.30495252e+01 -0.74774000e+00 0.00000000e+00
- 2 21 202 202 -0.50533004e+00 0.29711350e+01 -0.18753956e+01 0.00000000e+00
- 2 21 202 202 0.14250513e+00 0.86266612e+00 -0.95028825e+00 0.00000000e+00
- 2 21 202 202 -0.30137487e+01 -0.18617558e+00 -0.28824313e+01 0.00000000e+00
- 2 21 202 202 -0.95312133e+00 -0.75577466e+00 -0.23849722e+01 0.00000000e+00
- 2 21 202 202 -0.14250513e+00 -0.86266612e+00 -0.27913458e+01 0.00000000e+00
- 2 21 202 202 -0.17768934e+01 0.44662559e+01 -0.20197778e+02 0.00000000e+00
- 2 21 202 202 -0.12470033e+01 0.21197296e+01 -0.24853056e+02 0.00000000e+00
- 2 21 202 202 -0.11570653e+01 0.49927224e+00 -0.21146059e+02 0.00000000e+00
- 2 21 202 202 -0.24722024e+01 -0.40965432e+00 -0.29391949e+02 0.00000000e+00
- 2 21 202 202 -0.25500143e+01 -0.59761377e+00 -0.74703230e+02 0.00000000e+00
- 2 21 202 202 -0.16421840e+01 0.14799617e+01 -0.78567704e+02 0.00000000e+00
- 2 21 202 202 -0.10186152e+01 -0.10393640e+01 -0.83059207e+02 0.00000000e+00
- 2 21 202 202 -0.18204269e+01 -0.36546863e+00 -0.20767994e+03 0.00000000e+00
- 2 21 202 202 -0.45793605e+01 0.14805247e+00 -0.46372911e+03 0.00000000e+00
- 2 21 202 202 -0.34580315e+00 0.31381263e+00 -0.33860042e+03 0.00000000e+00
- 2 21 202 202 -0.90582255e-01 0.41967388e+00 -0.80765030e+03 0.00000000e+00
- 2 21 202 202 -0.12140683e+01 0.23510073e+01 -0.21536361e+03 0.00000000e+00
- 2 21 202 202 0.31473857e+01 0.56829697e+01 -0.66091012e+03 0.00000000e+00
- 2 21 202 202 0.10073232e+01 0.13293682e+01 -0.14591713e+03 0.00000000e+00
- 2 21 202 202 0.10186152e+01 0.10393640e+01 -0.22075951e+03 0.00000000e+00
- 2 21 202 202 0.35768736e+01 0.20686422e+01 -0.38173454e+03 0.00000000e+00
- 2 21 202 202 0.34580315e+00 -0.31381263e+00 -0.23145518e+02 0.00000000e+00
- 2 21 202 202 0.45793605e+01 -0.14805247e+00 -0.13733704e+03 0.00000000e+00
- 2 21 202 202 0.16421840e+01 -0.14799617e+01 -0.49477949e+02 0.00000000e+00
- 2 21 202 202 -0.31473857e+01 -0.56829697e+01 -0.62036177e+02 0.00000000e+00
- 2 21 202 202 0.18204269e+01 0.36546863e+00 -0.16152128e+02 0.00000000e+00
- 2 21 202 202 0.25500143e+01 0.59761377e+00 -0.37935513e+01 0.00000000e+00
- 2 21 202 202 0.19967584e+01 -0.40405531e+00 -0.36428221e+01 0.00000000e+00
- 2 21 202 202 0.39840193e+01 -0.30495252e+01 -0.32877515e+01 0.00000000e+00
- 2 21 202 202 0.12470033e+01 -0.21197296e+01 -0.16796231e+01 0.00000000e+00
- 2 21 202 202 0.85224112e-01 -0.15464955e+01 -0.21729063e+01 0.00000000e+00
- 2 21 202 202 0.12140683e+01 -0.23510073e+01 -0.17025201e+01 0.00000000e+00
- 2 21 202 202 0.17768934e+01 -0.44662559e+01 -0.13506657e+01 0.00000000e+00
- 2 21 202 202 0.22620590e+01 -0.17643559e+01 0.72289089e+00 0.00000000e+00
- 2 2101 202 202 0.31963362e+00 -0.19509929e-01 -0.67564152e+03 0.57933000e+00
- 2 2 305 305 0.10212148e+01 0.25702461e+01 0.20447564e+02 0.00000000e+00
- 2 -2 305 305 -0.10212148e+01 -0.25702461e+01 0.27528124e+01 0.00000000e+00
- 2 1 312 312 -0.10263080e+01 0.24087903e+01 0.55005354e+02 0.00000000e+00
- 2 -1 312 312 0.10263080e+01 -0.24087903e+01 -0.87159893e-01 0.00000000e+00
- 2 3 322 322 0.10184971e+01 0.18316602e+00 -0.11214382e+02 0.00000000e+00
- 2 -3 322 322 -0.10184971e+01 -0.18316602e+00 0.22957120e+01 0.00000000e+00
- 2 21 329 329 0.34058100e+01 0.13614943e+01 0.43252712e+01 0.00000000e+00
- 2 21 329 329 0.11427172e+01 0.26959183e+00 0.16340217e+01 0.00000000e+00
- 2 21 329 329 -0.99666405e+00 -0.29574928e+01 0.14097853e+01 0.00000000e+00
- 2 21 329 329 -0.34058100e+01 -0.13614943e+01 -0.63716233e+00 0.00000000e+00
- 2 21 329 329 -0.10073232e+01 -0.13293682e+01 -0.12680383e+01 0.00000000e+00
- 2 21 329 329 -0.35518632e+00 -0.11325854e+01 -0.73375792e+00 0.00000000e+00
- 2 21 339 339 0.12530774e+01 -0.29259286e+00 -0.17774735e+02 0.00000000e+00
- 2 21 339 339 0.11570653e+01 -0.49927224e+00 -0.15394156e+02 0.00000000e+00
- 2 21 339 339 -0.12530774e+01 0.29259286e+00 -0.50444899e+02 0.00000000e+00
- 2 21 339 339 0.95312133e+00 0.75577466e+00 -0.25914413e+02 0.00000000e+00
- 2 311 345 345 0.23558351e+00 0.50283588e-01 -0.85001788e+03 0.49767000e+00
- 1 211 0 0 0.23448004e+00 -0.27117338e+00 -0.27038879e+03 0.13957000e+00
- 2 92 121 124 -0.18580409e+02 0.25401933e+02 -0.54736740e+03 0.42813453e+01
- 2 -311 346 346 -0.61518934e+01 0.87847337e+01 -0.17181950e+03 0.49767000e+00
- 2 -213 347 348 -0.25915439e+01 0.28353937e+01 -0.80726502e+02 0.75455016e+00
- 2 113 349 350 -0.87010557e+01 0.11800931e+02 -0.26152632e+03 0.92451953e+00
- 2 111 351 352 -0.11359158e+01 0.19808754e+01 -0.33295078e+02 0.13498000e+00
- 2 92 126 201 -0.35074238e+02 0.68161650e+01 0.59882924e+04 0.30751733e+04
- 2 223 353 354 0.48788585e+00 0.58773318e+01 -0.99665311e+02 0.78766417e+00
- 1 211 0 0 0.10310182e+00 0.82059646e+01 -0.12887767e+03 0.13957000e+00
- 1 -211 0 0 0.36776564e+00 0.24105784e+01 -0.48650382e+02 0.13957000e+00
- 2 223 355 357 -0.25387624e+00 -0.95378947e-01 -0.50532101e+01 0.78977953e+00
- 2 3222 358 359 -0.13526871e+01 0.12068082e+01 -0.68117980e+01 0.11893700e+01
- 2 -3212 360 361 0.20336044e+00 -0.18490763e+00 -0.40371783e+01 0.11925500e+01
- 1 -211 0 0 -0.12129022e+01 -0.79500254e-01 -0.26587301e+01 0.13957000e+00
- 2 113 362 363 -0.14317475e+01 0.23232755e+00 -0.31318987e+01 0.79049279e+00
- 2 2114 364 365 -0.15051777e+01 0.12964826e-01 -0.29567403e+01 0.12097662e+01
- 2 -1114 366 367 -0.40473448e+01 -0.20769856e+00 -0.51949733e+01 0.11811174e+01
- 2 223 368 370 -0.10017661e+02 0.68809025e-01 -0.15628052e+02 0.79139124e+00
- 1 -211 0 0 -0.31833294e+01 -0.26278108e+00 -0.41675729e+01 0.13957000e+00
- 1 211 0 0 -0.40991531e+01 -0.60693562e+00 -0.55313053e+01 0.13957000e+00
- 2 -213 371 372 -0.83904821e+01 0.37878166e+00 -0.11687340e+02 0.67938036e+00
- 2 113 373 374 -0.59214940e+01 -0.34390603e+00 -0.87553906e+01 0.73840075e+00
- 2 113 375 376 -0.11835379e+01 -0.12440306e+00 -0.10264240e+01 0.78572640e+00
- 1 321 0 0 -0.12423766e-01 -0.15634365e+00 -0.10600379e+01 0.49360000e+00
- 2 -323 377 378 -0.22332925e+01 0.54957495e+00 -0.27551317e+01 0.87306240e+00
- 1 321 0 0 0.17945175e+00 -0.11249589e+00 -0.49133264e+00 0.49360000e+00
- 2 -313 379 380 -0.55134239e+00 -0.61787617e+00 -0.56807877e+00 0.87823996e+00
- 2 111 381 382 0.48829273e-01 0.20878986e+00 -0.81726961e+00 0.13498000e+00
- 2 -213 383 384 0.10665518e+01 -0.36808236e+00 0.40130333e+00 0.87467866e+00
- 2 213 385 386 0.11041900e+01 0.35331466e-01 0.15813935e+01 0.59317739e+00
- 2 313 387 388 0.14472543e+01 -0.75732631e-01 0.60524820e+00 0.88401137e+00
- 2 -313 389 390 0.19311123e+01 -0.69660686e+00 0.18376765e+01 0.90176214e+00
- 2 223 391 393 0.51371068e+00 -0.19240121e+00 0.16014183e+01 0.77964190e+00
- 2 1114 394 395 0.24053868e+01 -0.10683320e+01 0.51503673e+01 0.12433999e+01
- 2 -1114 396 397 0.13835520e+01 -0.10318426e+01 0.47638414e+01 0.12449684e+01
- 1 2112 0 0 0.12251952e+01 -0.11760121e+01 0.60093416e+01 0.93957000e+00
- 1 -2112 0 0 0.11469325e+01 -0.79153323e+00 0.33225314e+01 0.93957000e+00
- 2 313 398 399 0.11941139e+01 -0.11272849e+01 0.66753245e+01 0.89488040e+00
- 1 -321 0 0 0.16098665e+00 -0.38340018e+00 0.10537077e+01 0.49360000e+00
- 1 211 0 0 0.11896235e+01 -0.13897713e+01 0.10518446e+02 0.13957000e+00
- 2 223 400 402 0.12243368e+01 -0.87884737e+00 0.12564698e+02 0.73726724e+00
- 2 -213 403 404 0.48715483e+00 0.23461891e+00 0.30973452e+01 0.66878372e+00
- 1 2212 0 0 0.88592761e+00 -0.77644478e+00 0.10133504e+02 0.93827000e+00
- 2 223 405 407 0.13076995e-01 -0.15377378e+01 0.14647136e+02 0.75734146e+00
- 2 -2214 408 409 0.26999691e+01 -0.53311418e+00 0.26071058e+02 0.11185065e+01
- 2 213 410 411 -0.17941338e+00 -0.97387984e+00 0.19906317e+02 0.73708075e+00
- 2 111 412 413 0.22826372e+00 -0.52323115e+00 0.21308398e+02 0.13498000e+00
- 2 -213 414 415 -0.83272765e+00 -0.11075280e+01 0.17973178e+02 0.75021634e+00
- 2 213 416 417 0.25150788e+00 -0.11608599e+01 0.25212518e+02 0.68161493e+00
- 2 221 418 420 -0.91895119e+00 -0.12828857e+01 0.30807954e+02 0.54745000e+00
- 2 -213 421 422 -0.11945185e+00 -0.66662368e+00 0.61010934e+02 0.76251816e+00
- 2 2224 423 424 0.18392763e+01 0.84453558e+00 0.84334108e+02 0.12163012e+01
- 1 -211 0 0 0.88168796e-01 -0.78190064e+00 0.24495258e+02 0.13957000e+00
- 2 -2114 425 426 0.84241920e+00 0.54320246e+00 0.10501145e+03 0.13436460e+01
- 2 111 427 428 0.79562279e+00 -0.78329913e+00 0.11436352e+03 0.13498000e+00
- 2 311 429 429 0.10629361e+01 0.94919350e+00 0.58862878e+02 0.49767000e+00
- 2 -311 430 430 0.37267396e+00 0.58327292e+00 0.65190923e+02 0.49767000e+00
- 2 313 431 432 0.64471749e+00 -0.35350918e+00 0.66612892e+03 0.91396727e+00
- 2 -313 433 434 -0.45918995e+00 0.50298047e+00 0.29151863e+03 0.93886007e+00
- 2 111 435 436 0.42120965e+00 -0.51687181e+00 0.70780034e+03 0.13498000e+00
- 1 -211 0 0 -0.56534947e+00 0.35759784e+00 0.89340606e+02 0.13957000e+00
- 1 2212 0 0 -0.12754627e+01 -0.71903764e-01 0.18340869e+03 0.93827000e+00
- 1 -2112 0 0 -0.23290000e+00 0.47835397e+00 0.25842915e+03 0.93957000e+00
- 2 -213 437 438 -0.10339268e+01 -0.46539859e-01 0.23209107e+03 0.58761552e+00
- 2 221 439 440 -0.77484814e+00 0.28478213e+00 0.57511643e+02 0.54745000e+00
- 2 213 441 442 -0.15127505e+01 0.73528109e+00 0.27315222e+03 0.81696100e+00
- 1 -211 0 0 -0.15054012e+00 0.28520704e-01 0.20590975e+02 0.13957000e+00
- 2 213 443 444 -0.15506175e+01 0.84219097e+00 0.83653023e+02 0.73143829e+00
- 1 -211 0 0 -0.31416872e+00 0.10038035e+00 0.50138734e+01 0.13957000e+00
- 2 213 445 446 -0.14105576e+01 0.58831666e+00 0.65079396e+02 0.70476594e+00
- 2 223 447 448 -0.17621217e+01 0.24637245e+00 0.67567655e+02 0.78261715e+00
- 2 311 449 449 -0.49223059e+00 0.53973962e+00 0.15579370e+02 0.49767000e+00
- 1 -321 0 0 -0.17272768e+01 0.11219961e+01 0.82213597e+02 0.49360000e+00
- 1 321 0 0 -0.19769395e+01 0.87167898e+00 0.53406537e+02 0.49360000e+00
- 2 3122 450 451 -0.80962489e+00 0.23063001e+00 0.23477269e+02 0.11156800e+01
- 1 -2212 0 0 -0.48645334e+00 0.71979131e+00 0.17231844e+02 0.93827000e+00
- 2 213 452 453 -0.10528864e+00 0.67231140e+00 0.37452796e+02 0.67059457e+00
- 2 223 454 456 0.21998564e+00 -0.16541205e-01 0.29066865e+02 0.78079018e+00
- 2 2114 457 458 -0.36151199e+00 -0.31126048e+00 0.30159089e+02 0.12714016e+01
- 2 113 459 460 -0.80502432e-01 0.85741389e+00 0.27216022e+03 0.11546273e+01
- 1 -2212 0 0 0.32093634e+00 -0.38735239e+00 0.87012010e+02 0.93827000e+00
- 2 2224 461 462 -0.29873255e-02 -0.74853467e+00 0.90644323e+03 0.12535286e+01
- 2 111 463 464 0.90081926e+00 -0.15216700e+00 0.10538174e+04 0.13498000e+00
- 2 92 203 304 -0.57203193e+01 0.80327405e+01 -0.43421767e+04 0.29011193e+04
- 1 -211 0 0 0.17617059e+01 -0.24736397e+01 0.11901980e+03 0.13957000e+00
- 2 213 465 466 0.13560976e+01 -0.16004607e+01 0.46469704e+02 0.75680504e+00
- 2 221 467 468 0.87464672e+00 -0.10236424e+01 0.72660581e+02 0.54745000e+00
- 2 221 469 471 0.41615084e+00 -0.52771908e+00 0.14067747e+02 0.54745000e+00
- 2 -213 472 473 -0.12528496e+01 -0.15463081e+00 0.17459319e+02 0.67885080e+00
- 2 213 474 475 0.16666407e+00 0.81286503e-02 0.80673208e+01 0.69989887e+00
- 1 -211 0 0 -0.25090565e-01 -0.69451951e-01 0.97774839e+01 0.13957000e+00
- 2 323 476 477 -0.11104452e+01 0.83709896e+00 0.18489177e+02 0.94340495e+00
- 2 221 478 480 0.69486809e-02 0.59581889e+00 0.74257922e+01 0.54745000e+00
- 2 -311 481 481 -0.10259744e+01 0.74970053e+00 0.15577991e+02 0.49767000e+00
- 1 -211 0 0 -0.30030347e+00 0.77693302e+00 0.49569843e+01 0.13957000e+00
- 2 331 482 484 -0.20288646e+00 0.78503881e+00 0.10859060e+02 0.95781758e+00
- 2 223 485 487 0.11717731e+01 0.20462261e+01 0.14870038e+02 0.77891947e+00
- 2 223 488 490 0.90285591e+00 0.28051258e+00 0.42989903e+01 0.78680080e+00
- 2 111 491 492 0.11628613e+01 0.17695326e+01 0.95609324e+01 0.13498000e+00
- 1 211 0 0 0.20933663e+00 -0.18030133e+00 0.31546736e+00 0.13957000e+00
- 2 221 493 495 0.79742323e+00 0.50523262e+00 0.20705930e+01 0.54745000e+00
- 1 -211 0 0 0.37768083e-01 0.55680221e+00 0.29991625e+01 0.13957000e+00
- 2 221 496 497 0.33986660e+00 0.14018482e+01 0.41518107e+01 0.54745000e+00
- 2 111 498 499 -0.79173297e-01 0.82658793e+00 0.22790144e+01 0.13498000e+00
- 2 213 500 501 0.10201757e+00 0.10707046e+01 0.33334455e+01 0.83721734e+00
- 2 113 502 503 -0.78389515e+00 0.20003127e+01 0.61040218e+01 0.93932224e+00
- 2 -213 504 505 0.25340792e-01 0.55770320e+00 0.18097402e+01 0.76594143e+00
- 2 223 506 508 -0.91591985e+00 0.38447401e+00 0.29501099e+01 0.77980841e+00
- 2 221 509 511 -0.96325923e+00 0.97571965e+00 0.64047070e+01 0.54745000e+00
- 2 111 512 513 -0.76527605e+00 0.80747709e-02 0.55479746e+00 0.13498000e+00
- 2 213 514 515 -0.10684720e+01 -0.37704669e+00 0.42417784e+01 0.83283348e+00
- 2 113 516 517 -0.18419099e+01 -0.67026343e+00 0.46895479e+01 0.11573202e+01
- 1 -211 0 0 -0.17998997e+01 -0.10604107e+01 0.36419851e+01 0.13957000e+00
- 2 3122 518 519 -0.15641427e+01 -0.95337097e+00 0.20755721e+01 0.11156800e+01
- 2 213 520 521 -0.12106502e+01 -0.16506415e+00 0.14370979e+01 0.93269030e+00
- 2 -3224 522 523 -0.14218265e+01 0.12472125e+00 0.13743554e+01 0.13613968e+01
- 2 213 524 525 -0.15337250e+01 0.59070606e+00 -0.35594824e-01 0.70691690e+00
- 2 1114 526 527 -0.15239235e+00 0.14375621e+01 -0.12040213e+01 0.11703967e+01
- 2 -1114 528 529 -0.25576524e+01 0.20557131e+01 -0.13518606e+01 0.12293735e+01
- 2 313 530 531 -0.97627799e+00 0.16596202e+00 -0.29670434e+00 0.83878316e+00
- 1 -321 0 0 -0.40106041e+00 0.29717964e+00 -0.10721372e+01 0.49360000e+00
- 2 323 532 533 -0.52699815e+00 -0.78326311e-01 -0.18505474e+01 0.85057463e+00
- 2 333 534 535 -0.35219150e+00 0.48311136e+00 -0.52228050e+00 0.10175621e+01
- 2 -313 536 537 -0.12117568e+01 -0.12337685e+00 -0.26730152e+01 0.88299450e+00
- 2 113 538 539 -0.46750290e+00 0.11643486e+00 -0.17329226e+01 0.75045884e+00
- 2 223 540 542 -0.54744019e+00 0.82474765e+00 -0.39699969e+01 0.78161771e+00
- 1 -211 0 0 -0.50522727e+00 0.86820088e+00 -0.63572889e+01 0.13957000e+00
- 2 111 543 544 -0.54145136e+00 0.41833023e-01 -0.61403126e+01 0.13498000e+00
- 2 223 545 547 -0.87029041e-02 0.29989697e+00 -0.49293078e+01 0.78913297e+00
- 1 211 0 0 -0.46440776e+00 0.15765782e+01 -0.94522436e+01 0.13957000e+00
- 1 -211 0 0 -0.64095061e-01 0.84952395e+00 -0.53475823e+01 0.13957000e+00
- 2 323 548 549 -0.31022038e+01 0.36819226e+00 -0.32370623e+02 0.88485643e+00
- 2 -311 550 550 -0.12589876e+00 -0.24919833e+00 -0.27304994e+02 0.49767000e+00
- 1 -211 0 0 -0.11982721e+01 0.52023758e+00 -0.19801631e+02 0.13957000e+00
- 2 213 551 552 -0.23640986e+01 0.93446095e+00 -0.45949153e+02 0.10152742e+01
- 2 111 553 554 0.11237478e+00 0.80281587e-01 -0.14499847e+02 0.13498000e+00
- 2 -213 555 556 -0.21777369e+01 -0.50683354e+00 -0.79590218e+02 0.90347296e+00
- 2 323 557 558 -0.62026480e+00 -0.30432267e+00 -0.10224813e+03 0.90120663e+00
- 2 -323 559 560 -0.22148980e+01 0.56899620e+00 -0.17070386e+03 0.90104671e+00
- 2 213 561 562 -0.11162508e+01 -0.58398592e+00 -0.17726940e+03 0.43465901e+00
- 2 223 563 565 -0.91466852e+00 0.40628381e-01 -0.13388288e+03 0.78342098e+00
- 2 223 566 568 -0.94350949e+00 -0.23168129e+00 -0.24423966e+03 0.79055940e+00
- 2 2114 569 570 -0.40406900e+00 0.26231409e+00 -0.36972986e+03 0.11956986e+01
- 1 -211 0 0 -0.93181021e+00 0.84569878e+00 -0.14173436e+03 0.13957000e+00
- 2 -2114 571 572 -0.14480732e+01 0.85000447e+00 -0.24321767e+03 0.12224732e+01
- 1 211 0 0 0.43645981e+00 0.14189535e+00 -0.94936095e+02 0.13957000e+00
- 2 313 573 574 0.43602228e+00 0.69954666e+00 -0.21355342e+03 0.93781094e+00
- 2 -313 575 576 -0.39030843e+00 0.53484905e+00 -0.22818017e+03 0.88617095e+00
- 1 2112 0 0 0.32065984e+00 0.90711384e+00 -0.12401114e+03 0.93957000e+00
- 1 -2212 0 0 0.11405596e+01 0.25259872e+01 -0.31130524e+03 0.93827000e+00
- 2 331 577 578 0.10036968e+01 0.16508042e+01 -0.19812538e+03 0.95775049e+00
- 2 331 579 580 0.18344527e+01 0.17539845e+01 -0.26828217e+03 0.95796723e+00
- 2 113 581 582 0.63982009e+00 0.73001728e+00 -0.60668672e+02 0.69491682e+00
- 1 321 0 0 0.16698156e+01 0.11328874e+01 -0.21864535e+03 0.49360000e+00
- 2 -311 583 583 0.79226574e+00 0.22323686e+00 -0.98077040e+02 0.49767000e+00
- 2 113 584 585 0.97986533e+00 0.27854346e+00 -0.12230282e+03 0.80499147e+00
- 2 223 586 588 0.21706093e+01 0.50526292e+00 -0.67031609e+02 0.78401556e+00
- 2 311 589 589 0.50778833e+00 0.10197419e+00 -0.29184734e+02 0.49767000e+00
- 2 -313 590 591 0.19480740e+01 -0.92027628e+00 -0.79357949e+02 0.95621145e+00
- 2 313 592 593 0.64049619e+00 -0.31094517e+00 -0.15368485e+02 0.89729280e+00
- 2 -313 594 595 -0.98527219e+00 -0.27352263e+01 -0.39272610e+02 0.85651462e+00
- 2 -213 596 597 0.16430900e+00 -0.30540251e+00 -0.83638005e+01 0.74789918e+00
- 2 113 598 599 -0.58361482e+00 -0.21684238e+01 -0.19876846e+02 0.69056826e+00
- 1 211 0 0 -0.26599392e+00 -0.30007247e-01 -0.37390236e+01 0.13957000e+00
- 2 331 600 602 0.24488489e+00 -0.27206574e+00 -0.72842490e+01 0.95766675e+00
- 2 221 603 605 0.55171206e+00 -0.20694497e+00 -0.31924291e+01 0.54745000e+00
- 2 -213 606 607 0.60221829e-01 -0.21236023e+00 -0.33609564e+01 0.79399960e+00
- 2 111 608 609 0.35609831e+00 -0.19954414e+00 -0.63019835e+01 0.13498000e+00
- 1 211 0 0 0.68164333e+00 0.70566833e+00 -0.28084364e+01 0.13957000e+00
- 1 -211 0 0 0.67601909e+00 -0.47105671e+00 -0.25149460e+01 0.13957000e+00
- 2 213 610 611 0.13363656e+01 0.24163628e+00 -0.23487127e+01 0.66177458e+00
- 1 -211 0 0 0.95336764e+00 0.85301441e-01 -0.18391886e+01 0.13957000e+00
- 1 211 0 0 0.22680758e+01 -0.56168607e+00 -0.24346142e+01 0.13957000e+00
- 2 313 612 613 0.30836834e+01 -0.40575380e+01 -0.40928916e+01 0.85698001e+00
- 1 -321 0 0 0.50958744e+00 -0.77039889e+00 -0.11511669e+01 0.49360000e+00
- 1 211 0 0 0.88305713e+00 -0.12535665e+01 -0.21416249e+00 0.13957000e+00
- 2 113 614 615 0.92210873e-01 -0.25121580e+01 -0.12163505e+01 0.61392973e+00
- 2 311 616 616 0.19974034e+01 -0.23499258e+01 -0.20447832e+01 0.49767000e+00
- 2 -313 617 618 0.12440951e+01 -0.21521657e+01 0.19899569e+00 0.91341193e+00
- 2 311 619 619 0.42812736e+00 -0.87713092e+00 -0.34244718e+00 0.49767000e+00
- 2 -313 620 621 0.11224970e+01 -0.10298800e+01 -0.78257348e+00 0.86614412e+00
- 1 2112 0 0 -0.54759926e+00 0.74391031e+00 -0.16835597e+02 0.93957000e+00
- 1 -2112 0 0 0.10981495e+01 -0.47236487e+00 -0.16138525e+02 0.93957000e+00
- 2 -213 622 623 -0.74847464e+00 0.57454220e-01 -0.18462919e+02 0.72133391e+00
- 2 323 624 625 0.40708403e+00 0.12055745e+00 -0.59411985e+02 0.79160820e+00
- 2 3122 626 627 -0.11745571e+00 -0.24453125e+00 -0.56383026e+03 0.11156800e+01
- 2 92 306 311 0.00000000e+00 0.00000000e+00 0.23200376e+02 0.79846606e+01
- 2 213 628 629 0.37589636e+00 0.48743224e+00 0.83242666e+01 0.76341515e+00
- 2 313 630 631 0.16658149e+00 0.10013579e+01 0.82614628e+01 0.87263320e+00
- 2 -313 632 633 0.23067180e+00 0.60998810e-02 0.23836976e+01 0.91068844e+00
- 2 223 634 636 -0.85919026e-01 0.12083871e+00 0.18962473e+01 0.79662869e+00
- 2 111 637 638 0.51851807e-01 -0.12561736e+00 0.64584837e+00 0.13498000e+00
- 2 -213 639 640 -0.73908243e+00 -0.14901113e+01 0.16888537e+01 0.75239706e+00
- 2 92 313 321 0.00000000e+00 0.00000000e+00 0.54918194e+02 0.17658663e+02
- 2 313 641 642 -0.56597881e+00 0.79414253e+00 0.22205975e+02 0.87985386e+00
- 2 -311 643 643 -0.44340883e+00 0.10546673e+01 0.15913274e+02 0.49767000e+00
- 2 311 644 644 0.24194594e+00 -0.49032161e+00 0.69350924e+01 0.49767000e+00
- 2 -311 645 645 -0.50902960e+00 0.59198462e+00 0.52743048e+01 0.49767000e+00
- 2 311 646 646 0.38755181e+00 0.19397176e-01 0.10648549e+01 0.49767000e+00
- 2 331 647 648 -0.15551414e+00 -0.28011921e+00 0.16908566e+01 0.95772551e+00
- 2 221 649 651 0.27401194e+00 -0.26748905e+00 0.16196670e+00 0.54745000e+00
- 2 221 652 653 0.90392171e+00 -0.31189890e-01 0.10370477e+01 0.54745000e+00
- 2 -313 654 655 -0.13350001e+00 -0.13910719e+01 0.63482180e+00 0.89243330e+00
- 2 92 323 328 0.00000000e+00 0.00000000e+00 -0.89186704e+01 0.10504816e+02
- 2 -311 656 656 0.20679218e+00 0.17718950e+00 -0.19737720e+01 0.49767000e+00
- 2 113 657 658 0.35314742e+00 0.38856094e-02 -0.67373127e+01 0.97656414e+00
- 1 2112 0 0 0.19643922e+00 -0.33822187e+00 -0.13895630e+01 0.93957000e+00
- 1 -2212 0 0 -0.24375410e+00 0.25738472e+00 -0.58745460e-02 0.93827000e+00
- 2 213 659 660 -0.11742849e+00 0.13822169e+00 0.74263353e+00 0.81507694e+00
- 2 313 661 662 -0.39519622e+00 -0.23845966e+00 0.44521825e+00 0.85245846e+00
- 2 92 330 338 -0.12164563e+01 -0.51498545e+01 0.47301197e+01 0.16890553e+02
- 2 111 663 664 -0.58249727e+00 -0.18631537e+01 0.11083254e+01 0.13498000e+00
- 2 223 665 667 -0.13864297e+01 -0.18106990e+00 -0.15959938e+00 0.78597995e+00
- 2 223 668 670 -0.52715750e+00 -0.14993689e+01 -0.27151191e+00 0.78982913e+00
- 1 211 0 0 -0.22068547e+00 -0.96393894e+00 -0.47719804e+00 0.13957000e+00
- 2 -2224 671 672 -0.75035438e+00 -0.42271426e+00 0.40145475e+00 0.11594107e+01
- 2 223 673 674 -0.14986234e+01 -0.15702650e+01 -0.12760965e+01 0.78366619e+00
- 2 2224 675 676 0.47132929e+00 -0.63307939e-01 0.96227920e+00 0.11743349e+01
- 2 111 677 678 0.18337108e+01 0.14562963e+00 0.20159412e+01 0.13498000e+00
- 1 -211 0 0 0.14442514e+01 0.12683344e+01 0.24265249e+01 0.13957000e+00
- 2 92 340 344 0.21101867e+01 0.25650242e+00 -0.10952820e+03 0.51784748e+01
- 1 -211 0 0 0.43829433e+00 0.14350041e+00 -0.38396432e+01 0.13957000e+00
- 2 113 679 680 0.68749696e+00 0.57137451e+00 -0.34602690e+02 0.71021331e+00
- 2 323 681 682 0.10659157e+01 -0.51720792e+00 -0.22448047e+02 0.81464303e+00
- 1 -321 0 0 0.62758711e+00 -0.43356157e+00 -0.13064643e+02 0.49360000e+00
- 2 213 683 684 -0.70910746e+00 0.49239699e+00 -0.35573179e+02 0.65236392e+00
- 2 310 685 686 0.23558351e+00 0.50283588e-01 -0.85001788e+03 0.49767000e+00
- 2 310 687 688 -0.61518934e+01 0.87847337e+01 -0.17181950e+03 0.49767000e+00
- 1 -211 0 0 -0.13513870e+01 0.19534297e+01 -0.46683398e+02 0.13957000e+00
- 2 111 689 690 -0.12401569e+01 0.88196394e+00 -0.34043104e+02 0.13498000e+00
- 1 211 0 0 -0.53719872e+00 0.51809383e+00 -0.15010527e+02 0.13957000e+00
- 1 -211 0 0 -0.81638570e+01 0.11282837e+02 -0.24651579e+03 0.13957000e+00
- 1 22 0 0 -0.27010275e+00 0.38006436e+00 -0.72407295e+01 0.00000000e+00
- 1 22 0 0 -0.86581303e+00 0.16008111e+01 -0.26054348e+02 0.00000000e+00
- 1 22 0 0 0.24448446e+00 0.22809734e+01 -0.32704329e+02 0.00000000e+00
- 2 111 691 692 0.24340139e+00 0.35963585e+01 -0.66960982e+02 0.13498000e+00
- 1 211 0 0 -0.44578164e-01 -0.23817996e+00 -0.12484762e+01 0.13957000e+00
- 1 -211 0 0 0.22132467e-01 0.58044764e-01 -0.26308836e+01 0.13957000e+00
- 2 111 693 694 -0.23143054e+00 0.84756250e-01 -0.11738503e+01 0.13498000e+00
- 1 2212 0 0 -0.10014733e+01 0.99775073e+00 -0.59189059e+01 0.93827000e+00
- 2 111 695 696 -0.35121388e+00 0.20905743e+00 -0.89289216e+00 0.13498000e+00
- 2 -3122 697 698 0.14716390e+00 -0.18980166e+00 -0.39704840e+01 0.11156800e+01
- 1 22 0 0 0.56196539e-01 0.48940231e-02 -0.66694263e-01 0.00000000e+00
- 1 211 0 0 -0.10682953e+01 0.47734025e+00 -0.20379675e+01 0.13957000e+00
- 1 -211 0 0 -0.36345225e+00 -0.24501270e+00 -0.10939312e+01 0.13957000e+00
- 1 2112 0 0 -0.14218553e+01 -0.25105612e-01 -0.28901706e+01 0.93957000e+00
- 2 111 699 700 -0.83322383e-01 0.38070438e-01 -0.66569723e-01 0.13498000e+00
- 1 -2112 0 0 -0.26631456e+01 -0.17907336e+00 -0.34650968e+01 0.93957000e+00
- 1 211 0 0 -0.13841992e+01 -0.28625194e-01 -0.17298765e+01 0.13957000e+00
- 1 211 0 0 -0.55068138e+01 -0.18319714e+00 -0.86538336e+01 0.13957000e+00
- 1 -211 0 0 -0.11421937e+01 0.16095852e+00 -0.19121079e+01 0.13957000e+00
- 2 111 701 702 -0.33686533e+01 0.91047641e-01 -0.50621107e+01 0.13498000e+00
- 1 -211 0 0 -0.78498378e+00 -0.27518570e-01 -0.13380957e+01 0.13957000e+00
- 2 111 703 704 -0.76054983e+01 0.40630023e+00 -0.10349244e+02 0.13498000e+00
- 1 211 0 0 -0.36354793e+01 -0.52512040e+00 -0.51986688e+01 0.13957000e+00
- 1 -211 0 0 -0.22860147e+01 0.18121437e+00 -0.35567219e+01 0.13957000e+00
- 1 211 0 0 -0.11544576e+00 0.15617369e+00 -0.43534473e+00 0.13957000e+00
- 1 -211 0 0 -0.10680922e+01 -0.28057675e+00 -0.59107932e+00 0.13957000e+00
- 1 -321 0 0 -0.15146337e+01 0.11690712e+00 -0.19753090e+01 0.49360000e+00
- 2 111 705 706 -0.71865883e+00 0.43266783e+00 -0.77982269e+00 0.13498000e+00
- 1 -321 0 0 -0.51033956e+00 -0.37122136e+00 -0.13140243e+00 0.49360000e+00
- 1 211 0 0 -0.41002828e-01 -0.24665481e+00 -0.43667634e+00 0.13957000e+00
- 1 22 0 0 -0.26425809e-01 0.16331771e+00 -0.53157220e+00 0.00000000e+00
- 1 22 0 0 0.75255082e-01 0.45472150e-01 -0.28569741e+00 0.00000000e+00
- 1 -211 0 0 0.36810431e+00 0.21365974e+00 0.33926663e+00 0.13957000e+00
- 2 111 707 708 0.69844747e+00 -0.58174210e+00 0.62036708e-01 0.13498000e+00
- 1 211 0 0 0.10388653e+01 -0.68382746e-01 0.14621116e+01 0.13957000e+00
- 2 111 709 710 0.65324697e-01 0.10371421e+00 0.11928193e+00 0.13498000e+00
- 1 321 0 0 0.59265621e+00 0.10234793e+00 0.46704875e+00 0.49360000e+00
- 1 -211 0 0 0.85459808e+00 -0.17808056e+00 0.13819945e+00 0.13957000e+00
- 2 -311 711 711 0.74028258e+00 -0.11312278e+00 0.87691008e+00 0.49767000e+00
- 2 111 712 713 0.11908297e+01 -0.58348409e+00 0.96076641e+00 0.13498000e+00
- 1 211 0 0 -0.54280865e-01 0.68409303e-01 0.23524011e+00 0.13957000e+00
- 1 -211 0 0 0.48111893e+00 -0.29671658e+00 0.81679806e+00 0.13957000e+00
- 2 111 714 715 0.86872618e-01 0.35906065e-01 0.54938015e+00 0.13498000e+00
- 1 2112 0 0 0.20325870e+01 -0.10901939e+01 0.41613615e+01 0.93957000e+00
- 1 -211 0 0 0.37279975e+00 0.21861925e-01 0.98900576e+00 0.13957000e+00
- 1 -2112 0 0 0.92695642e+00 -0.73560972e+00 0.39451180e+01 0.93957000e+00
- 1 211 0 0 0.45659559e+00 -0.29623286e+00 0.81872338e+00 0.13957000e+00
- 2 311 716 716 0.70775974e+00 -0.40814081e+00 0.41404214e+01 0.49767000e+00
- 2 111 717 718 0.48635411e+00 -0.71914408e+00 0.25349032e+01 0.13498000e+00
- 1 211 0 0 0.71631323e+00 -0.70364079e+00 0.75895614e+01 0.13957000e+00
- 1 -211 0 0 0.44444092e+00 -0.11787673e+00 0.30647059e+01 0.13957000e+00
- 2 111 719 720 0.63582640e-01 -0.57329846e-01 0.19104303e+01 0.13498000e+00
- 1 -211 0 0 0.31268090e+00 0.28752217e+00 0.89441690e+00 0.13957000e+00
- 2 111 721 722 0.17447393e+00 -0.52903262e-01 0.22029283e+01 0.13498000e+00
- 1 -211 0 0 0.19295494e+00 -0.42749832e+00 0.57329314e+01 0.13957000e+00
- 1 211 0 0 -0.15595727e+00 -0.38084103e+00 0.39722403e+01 0.13957000e+00
- 2 111 723 724 -0.23920677e-01 -0.72939841e+00 0.49419647e+01 0.13498000e+00
- 1 -2212 0 0 0.21120576e+01 -0.35498512e+00 0.20001996e+02 0.93827000e+00
- 2 111 725 726 0.58791145e+00 -0.17812906e+00 0.60690621e+01 0.13498000e+00
- 1 211 0 0 -0.16320551e+00 -0.29482007e+00 0.12652649e+02 0.13957000e+00
- 2 111 727 728 -0.16207861e-01 -0.67905978e+00 0.72536683e+01 0.13498000e+00
- 1 22 0 0 0.16328224e+00 -0.25025903e+00 0.93192486e+01 0.00000000e+00
- 1 22 0 0 0.64981480e-01 -0.27297212e+00 0.11989149e+02 0.00000000e+00
- 1 -211 0 0 -0.56372607e+00 -0.11144183e+01 0.13293018e+02 0.13957000e+00
- 2 111 729 730 -0.26900158e+00 0.68903238e-02 0.46801602e+01 0.13498000e+00
- 1 211 0 0 -0.17960780e+00 -0.53314424e+00 0.12776084e+02 0.13957000e+00
- 2 111 731 732 0.43111567e+00 -0.62771564e+00 0.12436434e+02 0.13498000e+00
- 2 111 733 734 -0.37600241e+00 -0.52221950e+00 0.14051435e+02 0.13498000e+00
- 2 111 735 736 -0.13277227e+00 -0.12701988e+00 0.31099723e+01 0.13498000e+00
- 2 111 737 738 -0.41017652e+00 -0.63364628e+00 0.13646547e+02 0.13498000e+00
- 1 -211 0 0 0.10871759e+00 -0.47734348e+00 0.52233873e+02 0.13957000e+00
- 2 111 739 740 -0.22816943e+00 -0.18928020e+00 0.87770608e+01 0.13498000e+00
- 1 2212 0 0 0.13176867e+01 0.80607111e+00 0.68333218e+02 0.93827000e+00
- 1 211 0 0 0.52158956e+00 0.38464470e-01 0.16000890e+02 0.13957000e+00
- 1 -2212 0 0 0.93102791e+00 0.63915113e+00 0.87272506e+02 0.93827000e+00
- 1 211 0 0 -0.88608713e-01 -0.95948670e-01 0.17738940e+02 0.13957000e+00
- 1 22 0 0 0.46568055e+00 -0.47632434e+00 0.61450850e+02 0.00000000e+00
- 1 22 0 0 0.32994224e+00 -0.30697479e+00 0.52912670e+02 0.00000000e+00
- 2 310 741 742 0.10629361e+01 0.94919350e+00 0.58862878e+02 0.49767000e+00
- 2 310 743 744 0.37267396e+00 0.58327292e+00 0.65190923e+02 0.49767000e+00
- 2 311 745 745 0.16549911e+00 -0.18740348e+00 0.21273889e+03 0.49767000e+00
- 2 111 746 747 0.47921838e+00 -0.16610570e+00 0.45339003e+03 0.13498000e+00
- 1 -321 0 0 -0.63419399e+00 0.30877056e+00 0.22507254e+03 0.49360000e+00
- 1 211 0 0 0.17500403e+00 0.19420991e+00 0.66446087e+02 0.13957000e+00
- 1 22 0 0 0.13671623e+00 -0.78744400e-01 0.17001675e+03 0.00000000e+00
- 1 22 0 0 0.28449342e+00 -0.43812741e+00 0.53778359e+03 0.00000000e+00
- 1 -211 0 0 -0.30603273e+00 -0.12901643e+00 0.12198253e+03 0.13957000e+00
- 2 111 748 749 -0.72789411e+00 0.82476572e-01 0.11010854e+03 0.13498000e+00
- 1 22 0 0 -0.28730370e+00 -0.16082846e+00 0.20229299e+02 0.00000000e+00
- 1 22 0 0 -0.48754444e+00 0.44561060e+00 0.37282345e+02 0.00000000e+00
- 1 211 0 0 -0.93753411e+00 0.75806463e+00 0.21409478e+03 0.13957000e+00
- 2 111 750 751 -0.57521636e+00 -0.22783535e-01 0.59057442e+02 0.13498000e+00
- 1 211 0 0 -0.49082557e+00 0.11854032e+00 0.13894570e+02 0.13957000e+00
- 2 111 752 753 -0.10597920e+01 0.72365066e+00 0.69758453e+02 0.13498000e+00
- 1 211 0 0 -0.13329257e+01 0.40114506e+00 0.59506575e+02 0.13957000e+00
- 2 111 754 755 -0.77631915e-01 0.18717160e+00 0.55728204e+01 0.13498000e+00
- 1 22 0 0 -0.13046645e+01 -0.76105495e-01 0.53884802e+02 0.00000000e+00
- 2 111 756 757 -0.45745727e+00 0.32247794e+00 0.13682854e+02 0.13498000e+00
- 2 310 758 759 -0.49223059e+00 0.53973962e+00 0.15579370e+02 0.49767000e+00
- 1 2212 0 0 -0.76840503e+00 0.27738424e+00 0.21133587e+02 0.93827000e+00
- 1 -211 0 0 -0.41219861e-01 -0.46754238e-01 0.23436824e+01 0.13957000e+00
- 1 211 0 0 -0.26332902e+00 0.16084413e+00 0.21429005e+02 0.13957000e+00
- 2 111 760 761 0.15804038e+00 0.51146726e+00 0.16023790e+02 0.13498000e+00
- 1 -211 0 0 0.17080270e+00 -0.10373662e-01 0.13197158e+02 0.13957000e+00
- 1 211 0 0 0.45437057e-01 0.86714090e-01 0.14285911e+02 0.13957000e+00
- 2 111 762 763 0.37458822e-02 -0.92881634e-01 0.15837964e+01 0.13498000e+00
- 1 2212 0 0 -0.77509942e-01 -0.30886446e+00 0.18743509e+02 0.93827000e+00
- 1 -211 0 0 -0.28400205e+00 -0.23960140e-02 0.11415580e+02 0.13957000e+00
- 1 -211 0 0 -0.47210994e+00 0.18068397e+00 0.58954298e+02 0.13957000e+00
- 1 211 0 0 0.39160751e+00 0.67672991e+00 0.21320593e+03 0.13957000e+00
- 1 2212 0 0 0.44247497e-01 -0.66274999e+00 0.58439388e+03 0.93827000e+00
- 1 211 0 0 -0.47234823e-01 -0.85784678e-01 0.32204935e+03 0.13957000e+00
- 1 22 0 0 0.54163711e+00 -0.15772096e+00 0.63485707e+03 0.00000000e+00
- 1 22 0 0 0.35918215e+00 0.55539539e-02 0.41896036e+03 0.00000000e+00
- 1 211 0 0 0.17641668e+00 -0.31268234e+00 0.43331125e+01 0.13957000e+00
- 2 111 764 765 0.11796809e+01 -0.12877784e+01 0.42136592e+02 0.13498000e+00
- 1 22 0 0 -0.25633740e-01 -0.12808238e-01 0.21622027e+00 0.00000000e+00
- 1 22 0 0 0.90028046e+00 -0.10108341e+01 0.72444361e+02 0.00000000e+00
- 2 111 766 767 0.54547311e-01 -0.94167783e-01 0.15969848e+01 0.13498000e+00
- 2 111 768 769 0.13202895e+00 -0.30992921e+00 0.66519508e+01 0.13498000e+00
- 2 111 770 771 0.22957458e+00 -0.12362209e+00 0.58188116e+01 0.13498000e+00
- 1 -211 0 0 -0.12528465e+01 -0.12365000e+00 0.14399705e+02 0.13957000e+00
- 2 111 772 773 -0.31445350e-05 -0.30980817e-01 0.30596140e+01 0.13498000e+00
- 1 211 0 0 -0.21515805e+00 0.13025790e+00 0.26614362e+01 0.13957000e+00
- 2 111 774 776 0.38182212e+00 -0.12212925e+00 0.54058847e+01 0.13498000e+00
- 2 311 777 777 -0.77658729e+00 0.72292368e+00 0.16415448e+02 0.49767000e+00
- 1 211 0 0 -0.33385789e+00 0.11417528e+00 0.20737291e+01 0.13957000e+00
- 1 211 0 0 0.42389381e-01 0.13729903e+00 0.13060044e+01 0.13957000e+00
- 1 -211 0 0 -0.11628078e+00 0.11700764e+00 0.20558789e+01 0.13957000e+00
- 2 111 778 779 0.80840078e-01 0.34151222e+00 0.40639089e+01 0.13498000e+00
- 1 130 0 0 -0.10259744e+01 0.74970053e+00 0.15577991e+02 0.49767000e+00
- 1 -211 0 0 0.47415295e-01 0.14274429e+00 0.18895165e+01 0.13957000e+00
- 1 211 0 0 0.86760454e-01 0.22166758e+00 0.27818410e+01 0.13957000e+00
- 2 221 780 782 -0.33706221e+00 0.42062695e+00 0.61877030e+01 0.54745000e+00
- 1 -211 0 0 0.67954754e+00 0.12673084e+01 0.93885974e+01 0.13957000e+00
- 1 211 0 0 0.17898830e+00 0.24953862e+00 0.29074060e+01 0.13957000e+00
- 2 111 783 784 0.31323721e+00 0.52937909e+00 0.25740342e+01 0.13498000e+00
- 1 211 0 0 0.44684221e+00 -0.16163014e+00 0.15257464e+01 0.13957000e+00
- 1 -211 0 0 0.26796709e+00 0.14455226e+00 0.16132745e+01 0.13957000e+00
- 2 111 785 786 0.18804662e+00 0.29759045e+00 0.11599694e+01 0.13498000e+00
- 1 22 0 0 0.83634781e-01 0.19452817e+00 0.88186742e+00 0.00000000e+00
- 1 22 0 0 0.10792265e+01 0.15750044e+01 0.86790650e+01 0.00000000e+00
- 1 -211 0 0 0.57356539e-01 0.82781676e-01 0.28224862e+00 0.13957000e+00
- 1 211 0 0 0.40583487e+00 0.28547181e+00 0.83086623e+00 0.13957000e+00
- 2 111 787 788 0.33423182e+00 0.13697913e+00 0.95747818e+00 0.13498000e+00
- 1 22 0 0 0.35685367e+00 0.75249076e+00 0.29222968e+01 0.00000000e+00
- 1 22 0 0 -0.16987072e-01 0.64935742e+00 0.12295138e+01 0.00000000e+00
- 1 22 0 0 -0.60001074e-01 0.11808003e+00 0.34900584e+00 0.00000000e+00
- 1 22 0 0 -0.19172222e-01 0.70850790e+00 0.19300086e+01 0.00000000e+00
- 1 211 0 0 -0.11483526e+00 0.89857329e+00 0.30427556e+01 0.13957000e+00
- 2 111 789 790 0.21685283e+00 0.17213134e+00 0.29068990e+00 0.13498000e+00
- 1 211 0 0 0.47689621e-01 0.20923735e+00 0.15813962e+01 0.13957000e+00
- 1 -211 0 0 -0.83158477e+00 0.17910754e+01 0.45226257e+01 0.13957000e+00
- 1 -211 0 0 -0.56578343e-01 0.62632430e-01 0.13161441e+01 0.13957000e+00
- 2 111 791 792 0.81919135e-01 0.49507077e+00 0.49359614e+00 0.13498000e+00
- 1 -211 0 0 -0.58964470e+00 0.53372832e-01 0.11954738e+01 0.13957000e+00
- 1 211 0 0 0.39904902e-02 0.28534387e-01 0.69423079e+00 0.13957000e+00
- 2 111 793 794 -0.33026564e+00 0.30256680e+00 0.10604052e+01 0.13498000e+00
- 2 111 795 796 -0.27242832e+00 0.17351747e+00 0.14652169e+01 0.13498000e+00
- 2 111 797 798 -0.85100670e-01 0.18596168e+00 0.87333446e+00 0.13498000e+00
- 2 111 799 800 -0.60573025e+00 0.61624051e+00 0.40661556e+01 0.13498000e+00
- 1 22 0 0 -0.69688506e+00 0.36606240e-01 0.53138988e+00 0.00000000e+00
- 1 22 0 0 -0.68390986e-01 -0.28531469e-01 0.23407579e-01 0.00000000e+00
- 1 211 0 0 -0.23777375e+00 -0.31175943e+00 0.59835688e+00 0.13957000e+00
- 2 111 801 802 -0.83069826e+00 -0.65287259e-01 0.36434215e+01 0.13498000e+00
- 1 -211 0 0 -0.17237195e+01 -0.92125003e+00 0.41717241e+01 0.13957000e+00
- 1 211 0 0 -0.11819039e+00 0.25098659e+00 0.51782379e+00 0.13957000e+00
- 1 2212 0 0 -0.14358986e+01 -0.87743618e+00 0.19670648e+01 0.93827000e+00
- 1 -211 0 0 -0.12824415e+00 -0.75934794e-01 0.10850726e+00 0.13957000e+00
- 1 211 0 0 -0.44357662e+00 -0.46741267e+00 0.88208837e+00 0.13957000e+00
- 2 111 803 804 -0.76707357e+00 0.30234853e+00 0.55500949e+00 0.13498000e+00
- 2 -3122 805 806 -0.13684816e+01 0.21604843e+00 0.13363151e+01 0.11156800e+01
- 1 -211 0 0 -0.53344825e-01 -0.91327180e-01 0.38040362e-01 0.13957000e+00
- 1 211 0 0 -0.63585030e+00 -0.85550783e-01 0.54120066e-02 0.13957000e+00
- 2 111 807 808 -0.89787471e+00 0.67625684e+00 -0.41006831e-01 0.13498000e+00
- 1 2112 0 0 -0.11794239e+00 0.14140705e+01 -0.11725143e+01 0.93957000e+00
- 1 -211 0 0 -0.34449969e-01 0.23491583e-01 -0.31507006e-01 0.13957000e+00
- 1 -2112 0 0 -0.19364198e+01 0.13618191e+01 -0.11405471e+01 0.93957000e+00
- 1 211 0 0 -0.62123256e+00 0.69389406e+00 -0.21131351e+00 0.13957000e+00
- 1 321 0 0 -0.85472034e+00 0.24344349e+00 -0.56330693e-01 0.49360000e+00
- 1 -211 0 0 -0.12155766e+00 -0.77481469e-01 -0.24037365e+00 0.13957000e+00
- 2 311 809 809 -0.14257549e+00 -0.73198847e-01 -0.63422287e+00 0.49767000e+00
- 1 211 0 0 -0.38442265e+00 -0.51274641e-02 -0.12163246e+01 0.13957000e+00
- 1 130 0 0 -0.25497705e+00 0.26242499e+00 -0.35683615e+00 0.49767000e+00
- 2 310 810 811 -0.97214451e-01 0.22068637e+00 -0.16544435e+00 0.49767000e+00
- 1 -321 0 0 -0.10847085e+01 0.11258805e+00 -0.22312753e+01 0.49360000e+00
- 1 211 0 0 -0.12704834e+00 -0.23596490e+00 -0.44173994e+00 0.13957000e+00
- 1 211 0 0 0.13592249e+00 0.46132257e-01 -0.15769098e+00 0.13957000e+00
- 1 -211 0 0 -0.60342539e+00 0.70302600e-01 -0.15752316e+01 0.13957000e+00
- 1 -211 0 0 -0.21976415e+00 -0.11859883e-01 -0.81450769e+00 0.13957000e+00
- 1 211 0 0 -0.34272537e+00 0.63710064e+00 -0.20377801e+01 0.13957000e+00
- 2 111 812 813 0.15049337e-01 0.19950690e+00 -0.11177091e+01 0.13498000e+00
- 1 22 0 0 -0.37337917e+00 0.91039392e-01 -0.42823100e+01 0.00000000e+00
- 1 22 0 0 -0.16807218e+00 -0.49206368e-01 -0.18580026e+01 0.00000000e+00
- 1 211 0 0 0.65514925e-01 0.20542657e+00 -0.32911251e+01 0.13957000e+00
- 1 -211 0 0 0.84796111e-01 0.44998163e-01 -0.29842849e+00 0.13957000e+00
- 2 111 814 815 -0.15901394e+00 0.49472243e-01 -0.13397543e+01 0.13498000e+00
- 2 311 816 816 -0.23953080e+01 0.48499393e+00 -0.23299867e+02 0.49767000e+00
- 1 211 0 0 -0.70689580e+00 -0.11680168e+00 -0.90707564e+01 0.13957000e+00
- 1 130 0 0 -0.12589876e+00 -0.24919833e+00 -0.27304994e+02 0.49767000e+00
- 1 211 0 0 -0.44849159e+00 -0.10371164e+00 -0.13215181e+02 0.13957000e+00
- 2 111 817 818 -0.19156070e+01 0.10381726e+01 -0.32733972e+02 0.13498000e+00
- 1 22 0 0 0.18406117e-01 -0.22345850e-01 -0.65794458e+01 0.00000000e+00
- 1 22 0 0 0.93968663e-01 0.10262744e+00 -0.79204008e+01 0.00000000e+00
- 1 -211 0 0 -0.65156758e-01 0.75640081e-01 -0.28760799e+01 0.13957000e+00
- 2 111 819 820 -0.21125801e+01 -0.58247362e+00 -0.76714138e+02 0.13498000e+00
- 2 311 821 821 -0.29755578e+00 0.92614248e-01 -0.62730081e+02 0.49767000e+00
- 1 211 0 0 -0.32270902e+00 -0.39693692e+00 -0.39518051e+02 0.13957000e+00
- 2 -311 822 822 -0.17494894e+01 0.26144000e+00 -0.11439079e+03 0.49767000e+00
- 1 -211 0 0 -0.46540858e+00 0.30755620e+00 -0.56313070e+02 0.13957000e+00
- 1 211 0 0 -0.87992732e+00 -0.54256426e+00 -0.12859671e+03 0.13957000e+00
- 2 111 823 824 -0.23632347e+00 -0.41421661e-01 -0.48672695e+02 0.13498000e+00
- 1 -211 0 0 -0.23780144e+00 -0.85048869e-01 -0.65853975e+02 0.13957000e+00
- 1 211 0 0 -0.28677571e+00 0.16881485e+00 -0.22440091e+02 0.13957000e+00
- 2 111 825 826 -0.39009138e+00 -0.43137596e-01 -0.45588817e+02 0.13498000e+00
- 1 -211 0 0 -0.74743075e+00 -0.18855900e+00 -0.19564600e+03 0.13957000e+00
- 1 211 0 0 0.82990183e-02 -0.61883847e-01 -0.20426990e+02 0.13957000e+00
- 2 111 827 828 -0.20437776e+00 0.18761564e-01 -0.28166673e+02 0.13498000e+00
- 1 2112 0 0 -0.38231990e+00 0.40197612e+00 -0.32139119e+03 0.93957000e+00
- 2 111 829 830 -0.21749105e-01 -0.13966203e+00 -0.48338665e+02 0.13498000e+00
- 1 -2112 0 0 -0.86072149e+00 0.66801845e+00 -0.17904898e+03 0.93957000e+00
- 2 111 831 832 -0.58735172e+00 0.18198603e+00 -0.64168691e+02 0.13498000e+00
- 2 311 833 833 0.44477355e+00 0.19625839e+00 -0.97642771e+02 0.49767000e+00
- 2 111 834 835 -0.87512670e-02 0.50328827e+00 -0.11591065e+03 0.13498000e+00
- 1 -321 0 0 -0.17045230e+00 0.12491438e-01 -0.10567262e+03 0.49360000e+00
- 1 211 0 0 -0.21985613e+00 0.52235761e+00 -0.12250755e+03 0.13957000e+00
- 1 22 0 0 0.13064376e+00 0.43895148e+00 -0.92965156e+02 0.00000000e+00
- 1 22 0 0 0.87305305e+00 0.12118527e+01 -0.10516022e+03 0.00000000e+00
- 1 22 0 0 0.81560154e+00 0.74289507e+00 -0.12220785e+03 0.00000000e+00
- 2 113 836 837 0.10188512e+01 0.10110894e+01 -0.14607432e+03 0.70134799e+00
- 1 -211 0 0 0.36580110e+00 0.50045127e+00 -0.20347976e+02 0.13957000e+00
- 1 211 0 0 0.27401899e+00 0.22956600e+00 -0.40320696e+02 0.13957000e+00
- 1 130 0 0 0.79226574e+00 0.22323686e+00 -0.98077040e+02 0.49767000e+00
- 1 -211 0 0 -0.43003482e-01 0.10635144e+00 -0.37469642e+02 0.13957000e+00
- 1 211 0 0 0.10228688e+01 0.17219202e+00 -0.84833177e+02 0.13957000e+00
- 1 -211 0 0 0.81296344e+00 0.44552947e-01 -0.24451665e+02 0.13957000e+00
- 1 211 0 0 0.20059597e+00 -0.71449110e-01 -0.69684843e+01 0.13957000e+00
- 2 111 838 839 0.11570499e+01 0.53215909e+00 -0.35611460e+02 0.13498000e+00
- 2 310 840 841 0.50778833e+00 0.10197419e+00 -0.29184734e+02 0.49767000e+00
- 2 -311 842 842 0.65778840e+00 -0.55092553e+00 -0.29093755e+02 0.49767000e+00
- 2 111 843 844 0.12902856e+01 -0.36935075e+00 -0.50264195e+02 0.13498000e+00
- 1 321 0 0 0.32492453e+00 -0.43884082e+00 -0.12007886e+02 0.49360000e+00
- 1 -211 0 0 0.31557166e+00 0.12789565e+00 -0.33605988e+01 0.13957000e+00
- 1 -321 0 0 -0.95992664e+00 -0.23716439e+01 -0.35856344e+02 0.49360000e+00
- 1 211 0 0 -0.25345546e-01 -0.36358240e+00 -0.34162658e+01 0.13957000e+00
- 1 -211 0 0 0.27426032e+00 -0.48456730e+00 -0.56843878e+01 0.13957000e+00
- 2 111 845 846 -0.10995132e+00 0.17916479e+00 -0.26794127e+01 0.13498000e+00
- 1 211 0 0 -0.37294236e+00 -0.19847886e+01 -0.16431218e+02 0.13957000e+00
- 1 -211 0 0 -0.21067246e+00 -0.18363513e+00 -0.34456279e+01 0.13957000e+00
- 1 211 0 0 -0.79282045e-01 -0.87788222e-02 -0.15138073e+01 0.13957000e+00
- 1 -211 0 0 0.17511559e+00 -0.16906057e+00 -0.17489332e+01 0.13957000e+00
- 2 221 847 848 0.14905135e+00 -0.94226348e-01 -0.40215085e+01 0.54745000e+00
- 1 -211 0 0 0.94853119e-01 -0.91264190e-01 -0.42669990e+00 0.13957000e+00
- 1 211 0 0 0.26546233e+00 0.79182681e-02 -0.12380995e+01 0.13957000e+00
- 2 111 849 850 0.19139661e+00 -0.12359905e+00 -0.15276297e+01 0.13498000e+00
- 1 -211 0 0 -0.12444777e+00 -0.36509880e+00 -0.28578220e+01 0.13957000e+00
- 2 111 851 852 0.18466959e+00 0.15273858e+00 -0.50313442e+00 0.13498000e+00
- 1 22 0 0 0.19674147e+00 -0.72546905e-01 -0.40584717e+01 0.00000000e+00
- 1 22 0 0 0.15935684e+00 -0.12699724e+00 -0.22435117e+01 0.00000000e+00
- 1 211 0 0 0.70789595e+00 0.32608630e+00 -0.17005809e+01 0.13957000e+00
- 2 111 853 854 0.62846967e+00 -0.84450014e-01 -0.64813180e+00 0.13498000e+00
- 2 311 855 855 0.10951305e+01 -0.15861185e+01 -0.14830058e+01 0.49767000e+00
- 2 111 856 857 0.19885529e+01 -0.24714195e+01 -0.26098858e+01 0.13498000e+00
- 1 -211 0 0 -0.55845874e-02 -0.21715022e+01 -0.11835246e+01 0.13957000e+00
- 1 211 0 0 0.97795460e-01 -0.34065587e+00 -0.32825889e-01 0.13957000e+00
- 2 310 858 859 0.19974034e+01 -0.23499258e+01 -0.20447832e+01 0.49767000e+00
- 1 -321 0 0 0.54128884e+00 -0.10653376e+01 0.36525178e+00 0.49360000e+00
- 1 211 0 0 0.70280622e+00 -0.10868281e+01 -0.16625609e+00 0.13957000e+00
- 1 130 0 0 0.42812736e+00 -0.87713092e+00 -0.34244718e+00 0.49767000e+00
- 2 -311 860 860 0.40228837e+00 -0.50661337e+00 -0.18014090e+00 0.49767000e+00
- 2 111 861 862 0.72020860e+00 -0.52326665e+00 -0.60243258e+00 0.13498000e+00
- 1 -211 0 0 -0.39633170e+00 -0.28279978e+00 -0.71403707e+01 0.13957000e+00
- 2 111 863 864 -0.35214294e+00 0.34025400e+00 -0.11322548e+02 0.13498000e+00
- 2 311 865 865 0.11994045e+00 0.19365948e+00 -0.43320008e+02 0.49767000e+00
- 1 211 0 0 0.28714358e+00 -0.73102036e-01 -0.16091977e+02 0.13957000e+00
- 1 2112 0 0 -0.79264393e-01 -0.30632582e+00 -0.50207346e+03 0.93957000e+00
- 2 111 866 867 -0.38191316e-01 0.61794569e-01 -0.61756801e+02 0.13498000e+00
- 1 211 0 0 0.47078031e+00 0.12873336e+00 0.62318315e+01 0.13957000e+00
- 2 111 868 869 -0.94883949e-01 0.35869888e+00 0.20924351e+01 0.13498000e+00
- 1 321 0 0 0.37470246e+00 0.58791338e+00 0.51212027e+01 0.49360000e+00
- 1 -211 0 0 -0.20812097e+00 0.41344448e+00 0.31402600e+01 0.13957000e+00
- 1 -321 0 0 0.36095609e+00 0.21884264e+00 0.15404333e+01 0.49360000e+00
- 1 211 0 0 -0.13028429e+00 -0.21274276e+00 0.84326435e+00 0.13957000e+00
- 1 211 0 0 -0.12462584e+00 -0.19917549e-01 0.28604920e+00 0.13957000e+00
- 1 -211 0 0 0.25076197e+00 0.17238476e+00 0.11044509e+01 0.13957000e+00
- 2 111 870 871 -0.21205516e+00 -0.31628501e-01 0.50574718e+00 0.13498000e+00
- 1 22 0 0 0.84691403e-01 -0.29060720e-01 0.30599995e+00 0.00000000e+00
- 1 22 0 0 -0.32839596e-01 -0.96556636e-01 0.33984842e+00 0.00000000e+00
- 1 -211 0 0 -0.49388915e+00 -0.14557706e+01 0.14305282e+01 0.13957000e+00
- 2 111 872 873 -0.24519328e+00 -0.34340718e-01 0.25832550e+00 0.13498000e+00
- 2 311 874 874 -0.69640045e+00 0.67397532e+00 0.18075148e+02 0.49767000e+00
- 2 111 875 876 0.13042164e+00 0.12016721e+00 0.41308268e+01 0.13498000e+00
- 2 310 877 878 -0.44340883e+00 0.10546673e+01 0.15913274e+02 0.49767000e+00
- 1 130 0 0 0.24194594e+00 -0.49032161e+00 0.69350924e+01 0.49767000e+00
- 2 310 879 880 -0.50902960e+00 0.59198462e+00 0.52743048e+01 0.49767000e+00
- 2 310 881 882 0.38755181e+00 0.19397176e-01 0.10648549e+01 0.49767000e+00
- 1 22 0 0 0.36780992e-01 0.96328558e-01 0.11981061e+00 0.00000000e+00
- 2 113 883 884 -0.19229513e+00 -0.37644777e+00 0.15710460e+01 0.79646477e+00
- 1 211 0 0 -0.29748619e-01 0.14185889e-01 0.94483468e-03 0.13957000e+00
- 1 -211 0 0 0.54666146e-01 -0.71960299e-01 0.66545566e-01 0.13957000e+00
- 2 111 885 886 0.24909441e+00 -0.20971464e+00 0.94476295e-01 0.13498000e+00
- 1 22 0 0 0.96121335e+00 0.44573573e-01 0.94276698e+00 0.00000000e+00
- 1 22 0 0 -0.57291645e-01 -0.75763463e-01 0.94280742e-01 0.00000000e+00
- 2 -311 887 887 -0.28700299e+00 -0.12180628e+01 0.36500942e+00 0.49767000e+00
- 2 111 888 889 0.15350298e+00 -0.17300903e+00 0.26981237e+00 0.13498000e+00
- 2 310 890 891 0.20679218e+00 0.17718950e+00 -0.19737720e+01 0.49767000e+00
- 1 211 0 0 0.58391481e-01 0.11760677e-01 -0.60910752e+01 0.13957000e+00
- 1 -211 0 0 0.29475594e+00 -0.78750679e-02 -0.64623746e+00 0.13957000e+00
- 1 211 0 0 -0.10708493e+00 -0.27357188e+00 0.96239965e-01 0.13957000e+00
- 2 111 892 893 -0.10343556e-01 0.41179357e+00 0.64639357e+00 0.13498000e+00
- 1 321 0 0 -0.37465098e+00 0.56699610e-01 0.39161760e+00 0.49360000e+00
- 1 -211 0 0 -0.20545246e-01 -0.29515927e+00 0.53600646e-01 0.13957000e+00
- 1 22 0 0 -0.16065043e+00 -0.46420816e+00 0.34525549e+00 0.00000000e+00
- 1 22 0 0 -0.42184684e+00 -0.13989455e+01 0.76306995e+00 0.00000000e+00
- 1 -211 0 0 -0.72721484e+00 -0.28904580e+00 -0.13784241e+00 0.13957000e+00
- 1 211 0 0 -0.19546944e+00 0.89289994e-01 -0.16037930e+00 0.13957000e+00
- 2 111 894 895 -0.46374543e+00 0.18685908e-01 0.13862234e+00 0.13498000e+00
- 1 -211 0 0 -0.23681876e+00 -0.57234523e+00 0.69629217e-01 0.13957000e+00
- 1 211 0 0 -0.52147953e-01 -0.12471374e-01 -0.29034541e-01 0.13957000e+00
- 2 111 896 897 -0.23819079e+00 -0.91455229e+00 -0.31210659e+00 0.13498000e+00
- 1 -2212 0 0 -0.51374106e+00 -0.35419879e+00 0.44704790e+00 0.93827000e+00
- 1 -211 0 0 -0.23661332e+00 -0.68515463e-01 -0.45593151e-01 0.13957000e+00
- 1 22 0 0 -0.86118588e+00 -0.39849522e+00 -0.36815015e+00 0.00000000e+00
- 2 111 898 899 -0.63743755e+00 -0.11717698e+01 -0.90794638e+00 0.13498000e+00
- 1 2212 0 0 0.50506914e+00 -0.85486127e-01 0.66195901e+00 0.93827000e+00
- 1 211 0 0 -0.33739858e-01 0.22178188e-01 0.30032018e+00 0.13957000e+00
- 1 22 0 0 0.23140172e+00 0.59728961e-01 0.23438635e+00 0.00000000e+00
- 1 22 0 0 0.16023090e+01 0.85900667e-01 0.17815549e+01 0.00000000e+00
- 1 211 0 0 0.72854977e+00 0.27869886e+00 -0.27337325e+02 0.13957000e+00
- 1 -211 0 0 -0.41052802e-01 0.29267565e+00 -0.72653649e+01 0.13957000e+00
- 2 311 900 900 0.63396105e+00 -0.34914385e+00 -0.17597492e+02 0.49767000e+00
- 1 211 0 0 0.43195467e+00 -0.16806407e+00 -0.48505551e+01 0.13957000e+00
- 1 211 0 0 -0.18560616e+00 0.67859161e-01 -0.31910862e+01 0.13957000e+00
- 2 111 901 902 -0.52350130e+00 0.42453783e+00 -0.32382093e+02 0.13498000e+00
- 1 -211 0 0 0.15045031e+00 -0.17302139e+00 -0.48949322e+03 0.13957000e+00
- 1 211 0 0 0.85133203e-01 0.22330498e+00 -0.36052466e+03 0.13957000e+00
- 2 111 903 904 -0.49641616e+01 0.73164020e+01 -0.14110947e+03 0.13498000e+00
- 2 111 905 906 -0.11877318e+01 0.14683318e+01 -0.30710029e+02 0.13498000e+00
- 1 22 0 0 -0.11782633e+01 0.85409370e+00 -0.32987062e+02 0.00000000e+00
- 1 22 0 0 -0.61893605e-01 0.27870236e-01 -0.10560422e+01 0.00000000e+00
- 1 22 0 0 0.10167666e+00 0.17815084e+01 -0.34351524e+02 0.00000000e+00
- 1 22 0 0 0.14172473e+00 0.18148500e+01 -0.32609458e+02 0.00000000e+00
- 1 22 0 0 -0.24896762e+00 0.74674665e-01 -0.11105442e+01 0.00000000e+00
- 1 22 0 0 0.17537079e-01 0.10081585e-01 -0.63306116e-01 0.00000000e+00
- 1 22 0 0 -0.26120387e+00 0.96084414e-01 -0.67137165e+00 0.00000000e+00
- 1 22 0 0 -0.90010013e-01 0.11297302e+00 -0.22152051e+00 0.00000000e+00
- 1 -2212 0 0 0.84063104e-01 -0.13679581e+00 -0.30025301e+01 0.93827000e+00
- 1 211 0 0 0.63100792e-01 -0.53005844e-01 -0.96795389e+00 0.13957000e+00
- 1 22 0 0 -0.66426677e-01 0.88076244e-01 -0.43436980e-01 0.00000000e+00
- 1 22 0 0 -0.16895705e-01 -0.50005806e-01 -0.23132743e-01 0.00000000e+00
- 1 22 0 0 -0.21467511e+01 0.10028587e+00 -0.31377198e+01 0.00000000e+00
- 1 22 0 0 -0.12219022e+01 -0.92382262e-02 -0.19243910e+01 0.00000000e+00
- 1 22 0 0 -0.34020835e+01 0.11586340e+00 -0.46024730e+01 0.00000000e+00
- 1 22 0 0 -0.42034148e+01 0.29043683e+00 -0.57467711e+01 0.00000000e+00
- 1 22 0 0 -0.34060659e+00 0.28352596e+00 -0.41388779e+00 0.00000000e+00
- 1 22 0 0 -0.37805224e+00 0.14914187e+00 -0.36593490e+00 0.00000000e+00
- 1 22 0 0 0.34773067e+00 -0.20407808e+00 0.14377124e-01 0.00000000e+00
- 1 22 0 0 0.35071680e+00 -0.37766402e+00 0.47659584e-01 0.00000000e+00
- 1 22 0 0 0.40860093e-01 -0.25693572e-01 0.17164543e-01 0.00000000e+00
- 1 22 0 0 0.24464603e-01 0.12940778e+00 0.10211739e+00 0.00000000e+00
- 1 130 0 0 0.74028258e+00 -0.11312278e+00 0.87691008e+00 0.49767000e+00
- 1 22 0 0 0.10194615e+01 -0.49928253e+00 0.76020222e+00 0.00000000e+00
- 1 22 0 0 0.17136824e+00 -0.84201560e-01 0.20056419e+00 0.00000000e+00
- 1 22 0 0 0.10655308e+00 -0.45435557e-02 0.47263881e+00 0.00000000e+00
- 1 22 0 0 -0.19680463e-01 0.40449621e-01 0.76741336e-01 0.00000000e+00
- 2 310 907 908 0.70775974e+00 -0.40814081e+00 0.41404214e+01 0.49767000e+00
- 1 22 0 0 0.28540554e+00 -0.31534094e+00 0.13260237e+01 0.00000000e+00
- 1 22 0 0 0.20094857e+00 -0.40380314e+00 0.12088795e+01 0.00000000e+00
- 1 22 0 0 -0.38328031e-01 0.69641992e-02 0.41167775e+00 0.00000000e+00
- 1 22 0 0 0.10191067e+00 -0.64294045e-01 0.14987526e+01 0.00000000e+00
- 1 22 0 0 0.13370446e+00 0.19116225e-01 0.16462119e+01 0.00000000e+00
- 1 22 0 0 0.40769465e-01 -0.72019487e-01 0.55671635e+00 0.00000000e+00
- 1 22 0 0 -0.26626586e-01 -0.31391124e+00 0.25783922e+01 0.00000000e+00
- 1 22 0 0 0.27059087e-02 -0.41548717e+00 0.23635726e+01 0.00000000e+00
- 1 22 0 0 0.54930883e+00 -0.19600152e+00 0.57867375e+01 0.00000000e+00
- 1 22 0 0 0.38602621e-01 0.17872459e-01 0.28232461e+00 0.00000000e+00
- 1 22 0 0 0.39387299e-01 -0.14537414e+00 0.12460138e+01 0.00000000e+00
- 1 22 0 0 -0.55595160e-01 -0.53368564e+00 0.60076545e+01 0.00000000e+00
- 1 22 0 0 -0.20931227e+00 0.62569644e-01 0.32341214e+01 0.00000000e+00
- 1 22 0 0 -0.59689304e-01 -0.55679321e-01 0.14460388e+01 0.00000000e+00
- 1 22 0 0 0.25231496e+00 -0.43569894e+00 0.89612748e+01 0.00000000e+00
- 1 22 0 0 0.17880071e+00 -0.19201670e+00 0.34751597e+01 0.00000000e+00
- 1 22 0 0 -0.23252208e+00 -0.25535927e+00 0.86393709e+01 0.00000000e+00
- 1 22 0 0 -0.14348033e+00 -0.26686024e+00 0.54120643e+01 0.00000000e+00
- 1 22 0 0 -0.46922264e-01 0.15728571e-01 0.37108384e+00 0.00000000e+00
- 1 22 0 0 -0.85850002e-01 -0.14274845e+00 0.27388885e+01 0.00000000e+00
- 1 22 0 0 -0.28794443e+00 -0.38033289e+00 0.95268097e+01 0.00000000e+00
- 1 22 0 0 -0.12223209e+00 -0.25331340e+00 0.41197372e+01 0.00000000e+00
- 1 22 0 0 -0.11750237e+00 -0.27074236e-01 0.43811636e+01 0.00000000e+00
- 1 22 0 0 -0.11066706e+00 -0.16220596e+00 0.43958972e+01 0.00000000e+00
- 1 -211 0 0 0.24549557e+00 0.33675243e+00 0.12075796e+02 0.13957000e+00
- 1 211 0 0 0.81744054e+00 0.61244108e+00 0.46787083e+02 0.13957000e+00
- 1 -211 0 0 0.34955687e+00 0.50604807e+00 0.59349173e+02 0.13957000e+00
- 1 211 0 0 0.23117096e-01 0.77224846e-01 0.58417506e+01 0.13957000e+00
- 2 310 909 910 0.16549911e+00 -0.18740348e+00 0.21273889e+03 0.49767000e+00
- 1 22 0 0 0.11013982e+00 0.12299332e-01 0.75313731e+02 0.00000000e+00
- 1 22 0 0 0.36907856e+00 -0.17840503e+00 0.37807630e+03 0.00000000e+00
- 1 22 0 0 -0.53610270e+00 0.24425434e-01 0.86755702e+02 0.00000000e+00
- 1 22 0 0 -0.19179141e+00 0.58051138e-01 0.23352839e+02 0.00000000e+00
- 1 22 0 0 -0.14890750e+00 -0.21794315e-01 0.10347070e+02 0.00000000e+00
- 1 22 0 0 -0.42630886e+00 -0.98922050e-03 0.48710372e+02 0.00000000e+00
- 1 22 0 0 -0.10010524e+01 0.71294991e+00 0.67196187e+02 0.00000000e+00
- 1 22 0 0 -0.58739558e-01 0.10700748e-01 0.25622656e+01 0.00000000e+00
- 1 22 0 0 -0.40766819e-01 0.15539962e+00 0.51531317e+01 0.00000000e+00
- 1 22 0 0 -0.36865096e-01 0.31771979e-01 0.41968878e+00 0.00000000e+00
- 1 22 0 0 -0.47260156e-01 0.55190987e-01 0.30191747e+01 0.00000000e+00
- 1 22 0 0 -0.41019712e+00 0.26728695e+00 0.10663679e+02 0.00000000e+00
- 1 211 0 0 -0.86485439e-01 0.37471987e+00 0.87836308e+01 0.13957000e+00
- 1 -211 0 0 -0.40574515e+00 0.16501975e+00 0.67957394e+01 0.13957000e+00
- 1 22 0 0 0.10287485e+00 0.45728845e+00 0.14464010e+02 0.00000000e+00
- 1 22 0 0 0.55165530e-01 0.54178817e-01 0.15597806e+01 0.00000000e+00
- 1 22 0 0 -0.47500542e-01 -0.49401349e-01 0.35107705e+00 0.00000000e+00
- 1 22 0 0 0.51246424e-01 -0.43480285e-01 0.12327194e+01 0.00000000e+00
- 1 22 0 0 0.24443145e+00 -0.34752916e+00 0.10695003e+02 0.00000000e+00
- 1 22 0 0 0.93524947e+00 -0.94024924e+00 0.31441588e+02 0.00000000e+00
- 1 22 0 0 0.57026831e-01 -0.93627306e-01 0.15992288e+01 0.00000000e+00
- 1 22 0 0 -0.24795198e-02 -0.54047682e-03 -0.22440421e-02 0.00000000e+00
- 1 22 0 0 0.82193417e-01 -0.30077541e+00 0.58303915e+01 0.00000000e+00
- 1 22 0 0 0.49835531e-01 -0.91538036e-02 0.82155934e+00 0.00000000e+00
- 1 22 0 0 0.18526546e+00 -0.26924043e-01 0.36694532e+01 0.00000000e+00
- 1 22 0 0 0.44309116e-01 -0.96698043e-01 0.21493585e+01 0.00000000e+00
- 1 22 0 0 -0.49061708e-01 -0.16333222e-01 0.50918851e+00 0.00000000e+00
- 1 22 0 0 0.49058563e-01 -0.14647595e-01 0.25504255e+01 0.00000000e+00
- 1 22 0 0 0.11562858e+00 -0.14818912e-02 0.22665989e+01 0.00000000e+00
- 1 -11 0 0 0.24634765e+00 -0.11178907e+00 0.29097103e+01 0.51000000e-03
- 1 11 0 0 0.19845886e-01 -0.88582842e-02 0.22957550e+00 0.51000000e-03
- 1 130 0 0 -0.77658729e+00 0.72292368e+00 0.16415448e+02 0.49767000e+00
- 1 22 0 0 0.20060452e-01 0.55008335e-02 0.64798582e+00 0.00000000e+00
- 1 22 0 0 0.60779627e-01 0.33601138e+00 0.34159231e+01 0.00000000e+00
- 1 22 0 0 -0.12699268e+00 0.95087245e-03 0.94780111e+00 0.00000000e+00
- 1 -211 0 0 0.35348820e-01 0.13932348e+00 0.27664040e+01 0.13957000e+00
- 1 211 0 0 -0.24541835e+00 0.28035260e+00 0.24734979e+01 0.13957000e+00
- 1 22 0 0 0.19644963e+00 0.42337628e+00 0.17638992e+01 0.00000000e+00
- 1 22 0 0 0.11678758e+00 0.10600281e+00 0.81013500e+00 0.00000000e+00
- 1 22 0 0 0.16341425e+00 0.27175305e+00 0.84196975e+00 0.00000000e+00
- 1 22 0 0 0.24632366e-01 0.25837405e-01 0.31799962e+00 0.00000000e+00
- 1 22 0 0 0.23450154e+00 0.12669876e+00 0.81876946e+00 0.00000000e+00
- 1 22 0 0 0.99730277e-01 0.10280374e-01 0.13870872e+00 0.00000000e+00
- 1 22 0 0 0.35799790e-01 0.51565350e-01 0.15480413e+00 0.00000000e+00
- 1 22 0 0 0.18105304e+00 0.12056599e+00 0.13588577e+00 0.00000000e+00
- 1 22 0 0 0.80919731e-01 0.24476850e+00 0.17519095e+00 0.00000000e+00
- 1 22 0 0 0.99940428e-03 0.25030227e+00 0.31840519e+00 0.00000000e+00
- 1 22 0 0 -0.34120767e+00 0.27528847e+00 0.99334750e+00 0.00000000e+00
- 1 22 0 0 0.10942031e-01 0.27278325e-01 0.67057726e-01 0.00000000e+00
- 1 22 0 0 -0.24746395e+00 0.19248748e+00 0.13908803e+01 0.00000000e+00
- 1 22 0 0 -0.24964364e-01 -0.18970017e-01 0.74336642e-01 0.00000000e+00
- 1 22 0 0 -0.67714089e-01 0.48618902e-01 0.15997926e+00 0.00000000e+00
- 1 22 0 0 -0.17386581e-01 0.13734278e+00 0.71335520e+00 0.00000000e+00
- 1 22 0 0 -0.43717392e+00 0.37354627e+00 0.28695624e+01 0.00000000e+00
- 1 22 0 0 -0.16855632e+00 0.24269424e+00 0.11965932e+01 0.00000000e+00
- 1 22 0 0 -0.48364842e+00 -0.99029665e-01 0.20153278e+01 0.00000000e+00
- 1 22 0 0 -0.34704984e+00 0.33742407e-01 0.16280937e+01 0.00000000e+00
- 1 22 0 0 -0.59646847e+00 0.20287309e+00 0.47893319e+00 0.00000000e+00
- 1 22 0 0 -0.17060510e+00 0.99475434e-01 0.76076302e-01 0.00000000e+00
- 1 -2212 0 0 -0.11836103e+01 0.19281000e+00 0.10225576e+01 0.93827000e+00
- 1 211 0 0 -0.18487132e+00 0.23238429e-01 0.31375746e+00 0.13957000e+00
- 1 22 0 0 -0.24108249e+00 0.11714143e+00 0.15465484e-01 0.00000000e+00
- 1 22 0 0 -0.65679222e+00 0.55911541e+00 -0.56472315e-01 0.00000000e+00
- 1 130 0 0 -0.14257549e+00 -0.73198847e-01 -0.63422287e+00 0.49767000e+00
- 1 -211 0 0 -0.56918514e-01 0.20613914e+00 0.10003238e+00 0.13957000e+00
- 1 211 0 0 -0.40295937e-01 0.14547232e-01 -0.26547674e+00 0.13957000e+00
- 1 22 0 0 -0.26579319e-01 0.19687250e+00 -0.95986028e+00 0.00000000e+00
- 1 22 0 0 0.41628656e-01 0.26343970e-02 -0.15784883e+00 0.00000000e+00
- 1 22 0 0 -0.45434949e-01 0.77920934e-01 -0.41710748e+00 0.00000000e+00
- 1 22 0 0 -0.11357899e+00 -0.28448691e-01 -0.92264682e+00 0.00000000e+00
- 2 310 911 912 -0.23953080e+01 0.48499393e+00 -0.23299867e+02 0.49767000e+00
- 1 22 0 0 -0.11647880e+01 0.58469993e+00 -0.20340019e+02 0.00000000e+00
- 1 22 0 0 -0.75081906e+00 0.45347267e+00 -0.12393954e+02 0.00000000e+00
- 1 22 0 0 -0.16194543e+00 -0.82069253e-01 -0.66430228e+01 0.00000000e+00
- 1 22 0 0 -0.19506347e+01 -0.50040436e+00 -0.70071116e+02 0.00000000e+00
- 2 310 913 914 -0.29755578e+00 0.92614248e-01 -0.62730081e+02 0.49767000e+00
- 1 130 0 0 -0.17494894e+01 0.26144000e+00 -0.11439079e+03 0.49767000e+00
- 1 22 0 0 -0.21634611e-02 0.42334047e-02 -0.12074694e+02 0.00000000e+00
- 1 22 0 0 -0.23416001e+00 -0.45655066e-01 -0.36598002e+02 0.00000000e+00
- 1 22 0 0 -0.23619484e-01 -0.24893111e-01 -0.16482693e+01 0.00000000e+00
- 1 22 0 0 -0.36647189e+00 -0.18244485e-01 -0.43940547e+02 0.00000000e+00
- 1 22 0 0 -0.42017330e-03 0.40003934e-01 -0.39270733e+01 0.00000000e+00
- 1 22 0 0 -0.20395759e+00 -0.21242369e-01 -0.24239600e+02 0.00000000e+00
- 1 22 0 0 0.56915196e-01 -0.50010753e-01 -0.17279839e+02 0.00000000e+00
- 1 22 0 0 -0.78664301e-01 -0.89651274e-01 -0.31058826e+02 0.00000000e+00
- 1 22 0 0 -0.43703452e+00 0.10458507e+00 -0.40748892e+02 0.00000000e+00
- 1 22 0 0 -0.15031721e+00 0.77400961e-01 -0.23419799e+02 0.00000000e+00
- 2 310 915 916 0.44477355e+00 0.19625839e+00 -0.97642771e+02 0.49767000e+00
- 1 22 0 0 0.28425974e-01 0.11575360e+00 -0.17794359e+02 0.00000000e+00
- 1 22 0 0 -0.37177241e-01 0.38753467e+00 -0.98116292e+02 0.00000000e+00
- 1 211 0 0 0.25149905e+00 0.19322042e+00 -0.64215884e+02 0.13957000e+00
- 1 -211 0 0 0.76735216e+00 0.81786898e+00 -0.81858432e+02 0.13957000e+00
- 1 22 0 0 0.43330710e+00 0.25007267e+00 -0.15281523e+02 0.00000000e+00
- 1 22 0 0 0.72374278e+00 0.28208642e+00 -0.20329936e+02 0.00000000e+00
- 2 111 917 918 0.25580580e+00 0.20643058e+00 -0.21303544e+02 0.13498000e+00
- 2 111 919 920 0.25198254e+00 -0.10445639e+00 -0.78811910e+01 0.13498000e+00
- 2 310 921 922 0.65778840e+00 -0.55092553e+00 -0.29093755e+02 0.49767000e+00
- 1 22 0 0 0.33185824e+00 -0.12043550e+00 -0.15330356e+02 0.00000000e+00
- 1 22 0 0 0.95842732e+00 -0.24891525e+00 -0.34933838e+02 0.00000000e+00
- 1 22 0 0 -0.78105231e-01 0.18062297e+00 -0.17421741e+01 0.00000000e+00
- 1 22 0 0 -0.31846093e-01 -0.14581826e-02 -0.93723862e+00 0.00000000e+00
- 1 22 0 0 -0.17467530e-01 0.70380159e-01 -0.33586264e+01 0.00000000e+00
- 1 22 0 0 0.16651888e+00 -0.16460651e+00 -0.66288214e+00 0.00000000e+00
- 1 22 0 0 0.56429153e-01 0.16997309e-01 -0.57761079e+00 0.00000000e+00
- 1 22 0 0 0.13496745e+00 -0.14059636e+00 -0.95001891e+00 0.00000000e+00
- 1 22 0 0 0.16164300e+00 0.49198587e-01 -0.30624412e+00 0.00000000e+00
- 1 22 0 0 0.23026599e-01 0.10353999e+00 -0.19689030e+00 0.00000000e+00
- 1 22 0 0 0.54750452e+00 -0.49844267e-01 -0.49342349e+00 0.00000000e+00
- 1 22 0 0 0.80965146e-01 -0.34605748e-01 -0.15470831e+00 0.00000000e+00
- 2 310 923 924 0.10951305e+01 -0.15861185e+01 -0.14830058e+01 0.49767000e+00
- 1 22 0 0 0.14358139e+01 -0.17935933e+01 -0.19669842e+01 0.00000000e+00
- 1 22 0 0 0.55273897e+00 -0.67782613e+00 -0.64290164e+00 0.00000000e+00
- 1 211 0 0 0.48741141e+00 -0.84506361e+00 -0.58184344e+00 0.13957000e+00
- 1 -211 0 0 0.15099920e+01 -0.15048622e+01 -0.14629398e+01 0.13957000e+00
- 2 310 925 926 0.40228837e+00 -0.50661337e+00 -0.18014090e+00 0.49767000e+00
- 1 22 0 0 0.15929520e+00 -0.18958808e+00 -0.17357855e+00 0.00000000e+00
- 1 22 0 0 0.56091340e+00 -0.33367857e+00 -0.42885403e+00 0.00000000e+00
- 1 22 0 0 -0.15849076e+00 0.21259299e+00 -0.48627829e+01 0.00000000e+00
- 1 22 0 0 -0.19365218e+00 0.12766101e+00 -0.64597653e+01 0.00000000e+00
- 2 310 927 928 0.11994045e+00 0.19365948e+00 -0.43320008e+02 0.49767000e+00
- 1 22 0 0 0.35326194e-01 -0.19956536e-01 -0.11947661e+02 0.00000000e+00
- 1 22 0 0 -0.73517510e-01 0.81751105e-01 -0.49809140e+02 0.00000000e+00
- 1 22 0 0 -0.52818627e-01 0.24946329e+00 0.17245758e+01 0.00000000e+00
- 1 22 0 0 -0.42065323e-01 0.10923559e+00 0.36785927e+00 0.00000000e+00
- 1 22 0 0 -0.13440625e-01 0.95056708e-02 -0.40832725e-02 0.00000000e+00
- 1 22 0 0 -0.19861453e+00 -0.41134172e-01 0.50983045e+00 0.00000000e+00
- 1 22 0 0 -0.13519248e+00 -0.82281074e-01 0.17718651e+00 0.00000000e+00
- 1 22 0 0 -0.11000080e+00 0.47940356e-01 0.81138994e-01 0.00000000e+00
- 1 130 0 0 -0.69640045e+00 0.67397532e+00 0.18075148e+02 0.49767000e+00
- 1 22 0 0 0.98996156e-01 0.14948951e-01 0.26746199e+01 0.00000000e+00
- 1 22 0 0 0.31425481e-01 0.10521825e+00 0.14562069e+01 0.00000000e+00
- 2 111 929 930 -0.41603801e+00 0.91251223e+00 0.11513156e+02 0.13498000e+00
- 2 111 931 932 -0.27370821e-01 0.14215508e+00 0.44001181e+01 0.13498000e+00
- 1 211 0 0 -0.24667750e+00 0.48817174e+00 0.25048719e+01 0.13957000e+00
- 1 -211 0 0 -0.26235210e+00 0.10381289e+00 0.27694329e+01 0.13957000e+00
- 1 -211 0 0 -0.66722052e-01 -0.90829293e-02 0.26580156e+00 0.13957000e+00
- 1 211 0 0 0.45427386e+00 0.28480105e-01 0.79905334e+00 0.13957000e+00
- 1 211 0 0 -0.31512940e+00 -0.32159011e+00 0.15456239e+01 0.13957000e+00
- 1 -211 0 0 0.12283426e+00 -0.54857661e-01 0.25422104e-01 0.13957000e+00
- 1 22 0 0 -0.15908661e-01 -0.16946252e-01 0.15219192e-01 0.00000000e+00
- 1 22 0 0 0.26500307e+00 -0.19276839e+00 0.79257103e-01 0.00000000e+00
- 2 310 933 934 -0.28700299e+00 -0.12180628e+01 0.36500942e+00 0.49767000e+00
- 1 22 0 0 0.84519043e-01 -0.17948834e+00 0.19500611e+00 0.00000000e+00
- 1 22 0 0 0.68983937e-01 0.64793082e-02 0.74806263e-01 0.00000000e+00
- 1 211 0 0 -0.54299794e-01 -0.38463235e-01 -0.10262261e+01 0.13957000e+00
- 1 -211 0 0 0.26109197e+00 0.21565274e+00 -0.94754585e+00 0.13957000e+00
- 1 22 0 0 -0.16659342e-01 0.31703742e+00 0.37828057e+00 0.00000000e+00
- 1 22 0 0 0.63157860e-02 0.94756150e-01 0.26811300e+00 0.00000000e+00
- 1 22 0 0 -0.45002675e+00 -0.95764149e-02 0.11827873e+00 0.00000000e+00
- 1 22 0 0 -0.13718675e-01 0.28262322e-01 0.20343617e-01 0.00000000e+00
- 1 22 0 0 -0.68455136e-01 -0.91478699e-01 -0.36553860e-01 0.00000000e+00
- 1 22 0 0 -0.16973566e+00 -0.82307359e+00 -0.27555273e+00 0.00000000e+00
- 1 22 0 0 -0.45271849e+00 -0.70766577e+00 -0.53686598e+00 0.00000000e+00
- 1 22 0 0 -0.18471905e+00 -0.46410400e+00 -0.37108040e+00 0.00000000e+00
- 1 130 0 0 0.63396105e+00 -0.34914385e+00 -0.17597492e+02 0.49767000e+00
- 1 22 0 0 -0.47685889e+00 0.37166711e+00 -0.26626521e+02 0.00000000e+00
- 1 22 0 0 -0.46642412e-01 0.52870722e-01 -0.57555712e+01 0.00000000e+00
- 1 22 0 0 -0.21362808e+01 0.30368146e+01 -0.58893700e+02 0.00000000e+00
- 1 22 0 0 -0.28278809e+01 0.42795874e+01 -0.82215771e+02 0.00000000e+00
- 1 22 0 0 -0.50060366e+00 0.55097781e+00 -0.12918679e+02 0.00000000e+00
- 1 22 0 0 -0.68712811e+00 0.91735394e+00 -0.17791350e+02 0.00000000e+00
- 1 211 0 0 0.47088385e+00 -0.46173792e+00 0.30587235e+01 0.13957000e+00
- 1 -211 0 0 0.23687589e+00 0.53597111e-01 0.10816979e+01 0.13957000e+00
- 2 111 935 936 0.21957549e+00 -0.23511905e+00 0.18323478e+03 0.13498000e+00
- 2 111 937 938 -0.54076379e-01 0.47715568e-01 0.29504108e+02 0.13498000e+00
- 1 211 0 0 -0.21965718e+01 0.44602147e+00 -0.21287684e+02 0.13957000e+00
- 1 -211 0 0 -0.19873622e+00 0.38972467e-01 -0.20121828e+01 0.13957000e+00
- 1 -211 0 0 -0.13050794e+00 0.41353674e-01 -0.83504570e+01 0.13957000e+00
- 1 211 0 0 -0.16704784e+00 0.51260575e-01 -0.54379624e+02 0.13957000e+00
- 1 -211 0 0 -0.24830295e-01 0.97514646e-01 -0.15425451e+02 0.13957000e+00
- 1 211 0 0 0.46960385e+00 0.98743742e-01 -0.82217320e+02 0.13957000e+00
- 1 22 0 0 0.19481341e+00 0.21021502e+00 -0.18963056e+02 0.00000000e+00
- 1 22 0 0 0.60992384e-01 -0.37844318e-02 -0.23404880e+01 0.00000000e+00
- 1 22 0 0 0.33758807e-01 -0.18677979e-01 -0.33209244e+00 0.00000000e+00
- 1 22 0 0 0.21822373e+00 -0.85778412e-01 -0.75490985e+01 0.00000000e+00
- 1 211 0 0 0.82460079e-02 -0.17476889e+00 -0.78481028e+01 0.13957000e+00
- 1 -211 0 0 0.64954239e+00 -0.37615664e+00 -0.21245652e+02 0.13957000e+00
- 1 211 0 0 0.63680026e+00 -0.11678698e+01 -0.11528239e+01 0.13957000e+00
- 1 -211 0 0 0.45833023e+00 -0.41824869e+00 -0.33018182e+00 0.13957000e+00
- 1 211 0 0 0.19530515e+00 -0.50496693e-01 -0.19848203e+00 0.13957000e+00
- 1 -211 0 0 0.20698323e+00 -0.45611668e+00 0.18341122e-01 0.13957000e+00
- 2 111 939 940 0.83458096e-01 0.32056442e+00 -0.29448847e+02 0.13498000e+00
- 2 111 941 942 0.36482349e-01 -0.12690494e+00 -0.13871161e+02 0.13498000e+00
- 1 22 0 0 -0.18301204e+00 0.25995439e+00 0.38747600e+01 0.00000000e+00
- 1 22 0 0 -0.23302597e+00 0.65255784e+00 0.76383964e+01 0.00000000e+00
- 1 22 0 0 -0.43644546e-01 -0.85267689e-02 0.76493859e+00 0.00000000e+00
- 1 22 0 0 0.16273725e-01 0.15068185e+00 0.36351795e+01 0.00000000e+00
- 1 211 0 0 -0.29991917e+00 -0.75734595e+00 0.38848452e+00 0.13957000e+00
- 1 -211 0 0 0.12916178e-01 -0.46071688e+00 -0.23475093e-01 0.13957000e+00
- 1 22 0 0 0.11651346e+00 -0.17762174e+00 0.86810342e+02 0.00000000e+00
- 1 22 0 0 0.10306203e+00 -0.57497312e-01 0.96424439e+02 0.00000000e+00
- 1 22 0 0 0.36027366e-01 0.30564425e-01 0.49467615e+01 0.00000000e+00
- 1 22 0 0 -0.90103745e-01 0.17151143e-01 0.24557347e+02 0.00000000e+00
- 1 22 0 0 0.43937211e-01 0.93539616e-01 -0.14790605e+02 0.00000000e+00
- 1 22 0 0 0.39520885e-01 0.22702480e+00 -0.14658241e+02 0.00000000e+00
- 1 22 0 0 0.78325236e-01 -0.12272240e+00 -0.10064913e+02 0.00000000e+00
- 1 22 0 0 -0.41842887e-01 -0.41825329e-02 -0.38062481e+01 0.00000000e+00
- 422
- 2 25 2 3 -0.14221273e+02 -0.43366338e+01 -0.13174671e+03 0.12500294e+03
- 2 23 4 8 0.44037716e+01 -0.14981658e+02 -0.11970804e+03 0.92156825e+02
- 2 23 9 16 -0.18625045e+02 0.10645024e+02 -0.12038670e+02 0.17762657e+02
- 1 -13 0 0 0.20176146e+02 0.35362309e+02 -0.52029572e+02 0.10566000e+00
- 1 22 0 0 -0.17442153e-02 -0.62009318e-02 -0.81549567e-02 0.00000000e+00
- 1 22 0 0 -0.22851035e-05 -0.43344919e-04 -0.38344985e-04 0.00000000e+00
- 1 13 0 0 -0.15770304e+02 -0.50336783e+02 -0.67669038e+02 0.10566000e+00
- 1 22 0 0 -0.32368228e-03 -0.93883019e-03 -0.12323374e-02 0.00000000e+00
- 1 22 0 0 -0.27999257e+01 0.12285839e+01 0.21539352e+00 0.00000000e+00
- 1 22 0 0 -0.10226470e-02 0.12517153e-02 -0.36846206e-02 0.00000000e+00
- 1 22 0 0 -0.14171968e-04 0.59495419e-05 0.15247603e-05 0.00000000e+00
- 1 -11 0 0 -0.34897289e+01 0.43159913e+01 -0.12755857e+02 0.51000000e-03
- 1 22 0 0 -0.20236418e-02 0.24929533e-02 -0.73875488e-02 0.00000000e+00
- 1 22 0 0 -0.66964420e-07 0.25259059e-07 0.39547163e-08 0.00000000e+00
- 1 11 0 0 -0.12331770e+02 0.50964528e+01 0.51282217e+00 0.51000000e-03
- 1 22 0 0 -0.58775336e-03 0.24552988e-03 0.22115641e-04 0.00000000e+00
- 2 2114 54 55 -0.33936576e+00 0.84064534e-01 -0.32685146e+04 0.11837706e+01
- 2 1 56 56 0.36022893e+01 0.28874013e+00 -0.19088831e+02 0.33000000e+00
- 2 -2 56 56 0.12516453e+01 0.21173692e+01 -0.79743829e+01 0.33000000e+00
- 2 -1 61 61 0.56837887e+01 -0.33880637e+01 -0.11924626e+02 0.33000000e+00
- 2 21 61 61 0.80642418e+01 -0.27804001e+01 -0.93914448e+01 0.00000000e+00
- 2 21 61 61 -0.46428669e+00 0.33963667e+00 -0.24414108e+02 0.00000000e+00
- 2 21 61 61 0.12208690e+01 -0.25803523e+00 -0.85780748e+03 0.00000000e+00
- 2 2 61 61 -0.50277133e+00 0.54130887e-01 -0.12369314e+04 0.33000000e+00
- 2 2 75 75 0.93996801e+00 0.93722620e+01 -0.47086418e+02 0.33000000e+00
- 2 21 75 75 -0.21645575e+00 0.21168764e+00 -0.23824186e+01 0.00000000e+00
- 2 21 75 75 0.99669987e+00 0.44564641e-01 0.16069219e+01 0.00000000e+00
- 2 21 75 75 -0.27827622e+00 -0.35016758e+00 0.36143938e+02 0.00000000e+00
- 2 21 75 75 0.27827622e+00 0.35016758e+00 0.68980257e+01 0.00000000e+00
- 2 21 75 75 -0.20979076e+00 0.54109033e-01 0.46717830e+00 0.00000000e+00
- 2 21 75 75 -0.47124996e+00 -0.22036979e-01 0.19865442e+01 0.00000000e+00
- 2 21 75 75 -0.30094161e+01 -0.70606400e+01 0.25847682e+02 0.00000000e+00
- 2 21 75 75 -0.26941131e-01 -0.31956618e+00 0.32135127e+00 0.00000000e+00
- 2 21 75 75 0.11034670e+01 -0.64505656e+01 0.19411515e+01 0.00000000e+00
- 2 21 75 75 0.54881008e-01 -0.60041333e+01 0.34309894e+01 0.00000000e+00
- 2 21 75 75 0.47510330e+00 -0.24771258e+00 -0.13955209e+01 0.00000000e+00
- 2 21 75 75 0.35775831e+01 0.19020191e+00 -0.14037837e+01 0.00000000e+00
- 2 2203 75 75 -0.87800085e+00 0.12036638e+01 0.53579207e+04 0.77133000e+00
- 2 -2 115 115 0.19626478e+01 0.59720125e+01 -0.43937456e+02 0.33000000e+00
- 2 2 115 115 0.23896960e+01 0.83523028e+01 -0.27006678e+02 0.33000000e+00
- 2 -1 121 121 -0.15966660e+01 -0.68435773e+01 -0.64500551e+03 0.33000000e+00
- 2 21 121 121 -0.27072501e+01 -0.45997619e+01 -0.44480133e+03 0.00000000e+00
- 2 21 121 121 -0.58737962e+00 -0.27366328e+00 -0.24400976e+02 0.00000000e+00
- 2 21 121 121 -0.29329000e+01 0.53116063e+01 -0.93559512e+02 0.00000000e+00
- 2 21 121 121 -0.25658179e+01 0.43058357e+01 -0.64315363e+02 0.00000000e+00
- 2 21 121 121 -0.99669987e+00 -0.44564641e-01 -0.58638186e+00 0.00000000e+00
- 2 21 121 121 0.20384850e+00 -0.19479203e-01 0.33377736e+01 0.00000000e+00
- 2 21 121 121 -0.10309420e+01 0.74855448e-01 0.10278808e+04 0.00000000e+00
- 2 21 121 121 0.18835569e+00 0.86782777e+00 0.16462943e+03 0.00000000e+00
- 2 21 121 121 0.87721620e+00 0.12716194e+01 0.19717434e+03 0.00000000e+00
- 2 21 121 121 0.29416773e+00 0.93851031e+00 0.48219385e+02 0.00000000e+00
- 2 21 121 121 0.44666704e+00 0.68077303e+00 0.83087712e+01 0.00000000e+00
- 2 1 121 121 -0.57592864e+00 0.91306014e+00 0.77551537e+02 0.33000000e+00
- 1 2112 0 0 -0.31064690e+00 0.24754466e+00 -0.26741742e+04 0.93957000e+00
- 2 111 148 149 -0.28718861e-01 -0.16348013e+00 -0.59434037e+03 0.13498000e+00
- 2 92 57 60 0.48539347e+01 0.24061093e+01 -0.27063214e+02 0.31764564e+01
- 2 221 150 152 0.11462057e+01 0.82762981e+00 -0.56155986e+01 0.54745000e+00
- 2 -213 153 154 0.24719901e+01 0.53985526e+00 -0.13899906e+02 0.73852550e+00
- 1 211 0 0 0.67544187e-01 0.55402087e+00 -0.17914380e+01 0.13957000e+00
- 2 -213 155 156 0.11681947e+01 0.48460335e+00 -0.57562718e+01 0.71271657e+00
- 2 92 62 74 0.14001841e+02 -0.60327315e+01 -0.21404691e+04 0.14589182e+03
- 2 -2114 157 158 0.49868666e+01 -0.23649269e+01 -0.72853046e+01 0.12245249e+01
- 1 211 0 0 0.11331048e+01 -0.32164932e+00 -0.16300416e+01 0.13957000e+00
- 2 1114 159 160 0.50893028e+01 -0.23310968e+01 -0.98824752e+01 0.13130609e+01
- 2 -2214 161 162 0.17136781e+01 -0.69810711e+00 -0.28808732e+01 0.12119787e+01
- 2 323 163 164 0.35515425e+00 -0.31409365e+00 -0.19272278e+01 0.98036923e+00
- 2 3324 165 166 0.69739987e+00 0.35519159e+00 -0.20469295e+02 0.15296221e+01
- 2 313 167 168 -0.40055496e+00 -0.43829713e+00 -0.20380516e+02 0.89059494e+00
- 2 -313 169 170 0.39445956e+00 0.38280535e+00 -0.10875089e+03 0.89833661e+00
- 2 323 171 172 0.45930841e+00 -0.52367716e+00 -0.43229052e+03 0.94967838e+00
- 1 -321 0 0 -0.73428341e+00 0.56548188e+00 -0.43724249e+03 0.49360000e+00
- 2 311 173 173 0.89104583e-01 -0.20309913e+00 -0.20997867e+03 0.49767000e+00
- 2 111 174 175 -0.81697685e-02 -0.27193096e+00 -0.35172234e+03 0.13498000e+00
- 2 213 176 177 0.22647054e+00 0.13066786e+00 -0.53602844e+03 0.86523421e+00
- 2 92 76 114 0.23358478e+01 -0.90281656e+01 0.53842963e+04 0.11336410e+04
- 1 211 0 0 -0.41452018e+00 0.24278420e+01 -0.12249126e+02 0.13957000e+00
- 2 223 178 180 0.12224285e+01 0.57869205e+01 -0.28872760e+02 0.79932489e+00
- 1 2112 0 0 0.16857171e-01 0.80777003e+00 -0.39349182e+01 0.93957000e+00
- 1 211 0 0 -0.10675063e+00 0.20188345e-01 -0.19470630e+01 0.13957000e+00
- 1 -2212 0 0 0.28411342e+00 0.73578359e+00 -0.93784029e+00 0.93827000e+00
- 1 2112 0 0 0.53212140e-01 -0.20328248e+00 -0.21825640e+00 0.93957000e+00
- 2 -313 181 182 0.13506517e+00 -0.88257254e-01 -0.23662877e+00 0.98105080e+00
- 2 -3322 183 184 0.24968675e+00 -0.13563448e+00 0.11149984e+02 0.13149000e+01
- 2 -323 185 186 0.24067503e-01 -0.19354004e+00 0.93249296e+01 0.89228858e+00
- 2 223 187 189 -0.53475399e+00 0.92774796e+00 0.93557542e+01 0.79516335e+00
- 2 213 190 191 0.32879295e+00 -0.48607915e+00 0.80992663e+01 0.52211944e+00
- 2 113 192 193 -0.14505339e+01 -0.20113582e+01 0.10473871e+02 0.77671725e+00
- 2 223 194 195 0.34808851e+00 -0.65308196e+00 0.67476165e+01 0.78201629e+00
- 2 221 196 198 -0.79845202e+00 -0.78393954e+00 0.26613849e+01 0.54745000e+00
- 2 311 199 199 -0.28521366e+00 -0.12687043e+01 0.49228746e+01 0.49767000e+00
- 2 -323 200 201 -0.80268029e+00 -0.13720088e+01 0.52578988e+01 0.96985544e+00
- 2 213 202 203 0.27490139e+00 -0.11012239e+01 0.23000097e+01 0.73836345e+00
- 2 113 204 205 -0.89266580e-01 -0.73332422e+00 0.82776273e+00 0.74819670e+00
- 2 223 206 208 0.20368874e+00 -0.94349127e+00 0.12331896e+01 0.78426062e+00
- 2 111 209 210 0.13652991e-01 -0.20974265e+01 0.99275325e+00 0.13498000e+00
- 2 221 211 213 -0.32781062e+00 -0.22588043e+01 0.13527749e+01 0.54745000e+00
- 2 313 214 215 0.46714795e+00 -0.10379873e+01 -0.24496698e+00 0.88686708e+00
- 2 333 216 217 0.57184407e+00 -0.18179024e+01 0.19461962e+00 0.10226159e+01
- 2 -311 218 218 0.11630421e-01 -0.18442195e+01 0.88119647e+00 0.49767000e+00
- 2 -213 219 220 0.71735006e+00 -0.14729359e+01 0.68302509e+00 0.85675846e+00
- 1 211 0 0 0.18241446e+00 0.48761961e+00 -0.21717657e+00 0.13957000e+00
- 1 2112 0 0 0.77379493e+00 -0.80535307e+00 -0.10553703e-01 0.93957000e+00
- 1 -2212 0 0 0.10693812e+01 0.22208438e+00 -0.24742641e+00 0.93827000e+00
- 2 213 221 222 0.11604005e-01 -0.80023362e+00 0.11309615e+00 0.85726629e+00
- 2 111 223 224 0.13321907e+01 0.35605565e+00 0.11068247e+01 0.13498000e+00
- 1 -211 0 0 -0.39400315e+00 -0.51661685e-01 0.29159849e+01 0.13957000e+00
- 1 2212 0 0 0.10058711e+00 0.34415531e+00 0.99554985e+00 0.93827000e+00
- 1 -2112 0 0 0.91598848e-01 0.62488326e-01 0.36278822e+01 0.93957000e+00
- 2 223 225 227 -0.22282007e+00 -0.96020755e+00 0.53829917e+02 0.79675918e+00
- 2 -213 228 229 -0.58624623e-02 0.53376967e+00 0.27931199e+02 0.71123477e+00
- 2 223 230 232 -0.83838191e-01 0.28645790e+00 0.72679827e+02 0.77535023e+00
- 2 113 233 234 0.18362318e+00 -0.58515257e-02 0.17353031e+03 0.72815701e+00
- 2 2214 235 236 -0.61729073e+00 0.11586997e+01 0.38130622e+04 0.11271887e+01
- 2 213 237 238 -0.19807790e+00 -0.59239387e-01 0.12071614e+04 0.75231016e+00
- 2 92 116 120 0.43523438e+01 0.14324315e+02 -0.70944134e+02 0.60388005e+01
- 1 -2212 0 0 0.36777401e+00 0.20398628e+01 -0.13619409e+02 0.93827000e+00
- 1 2112 0 0 0.19476213e+01 0.47209289e+01 -0.27777780e+02 0.93957000e+00
- 2 213 239 240 0.68807577e+00 0.18189605e+01 -0.10303219e+02 0.79331640e+00
- 1 -211 0 0 0.28200670e+00 0.28130352e+01 -0.86389828e+01 0.13957000e+00
- 2 213 241 242 0.10668660e+01 0.29315279e+01 -0.10604744e+02 0.82043013e+00
- 2 92 122 147 -0.10983329e+02 0.25830418e+01 0.25443296e+03 0.27892827e+04
- 2 113 243 244 -0.23690315e+01 -0.80133689e+01 -0.72358790e+03 0.84284206e+00
- 2 331 245 247 -0.88989257e+00 -0.15737967e+01 -0.14998736e+03 0.95818092e+00
- 2 223 248 250 -0.11090519e+01 -0.11469250e+01 -0.16834876e+03 0.78169026e+00
- 2 223 251 253 -0.66086548e+00 0.41764084e+00 -0.45373020e+02 0.77894586e+00
- 1 211 0 0 0.12292569e+00 0.14504180e+00 -0.14386403e+01 0.13957000e+00
- 2 223 254 256 -0.64196710e+00 0.69665784e-01 -0.15902581e+02 0.80702117e+00
- 2 -2214 257 258 -0.23197037e+00 0.14220776e+01 -0.45677237e+02 0.11766143e+01
- 2 313 259 260 -0.18779433e+01 0.15263494e+01 -0.42666382e+02 0.88477982e+00
- 2 3212 261 262 -0.13718474e+01 0.18696576e+01 -0.32527126e+02 0.11925500e+01
- 1 211 0 0 -0.76154517e+00 0.20043274e+01 -0.29782645e+02 0.13957000e+00
- 2 223 263 265 -0.79663335e+00 0.85563524e+00 -0.12647381e+02 0.78334308e+00
- 1 -321 0 0 -0.54853210e+00 0.66744047e-01 -0.24383332e+01 0.49360000e+00
- 2 323 266 267 0.33159518e+00 -0.20388769e+00 -0.14019559e+01 0.88966649e+00
- 2 -323 268 269 -0.22092970e+00 0.94779909e+00 0.29112931e+00 0.89481353e+00
- 2 -3324 270 271 0.38829474e+00 -0.68521508e+00 0.17426503e+01 0.15167356e+01
- 2 -323 272 273 -0.77121571e+00 -0.88346128e-01 0.11445623e+02 0.91266820e+00
- 2 2224 274 275 0.17969440e+00 0.25043481e+00 0.10033441e+02 0.11502897e+01
- 2 -2224 276 277 -0.53775867e+00 0.31666009e+00 0.48565350e+03 0.11885764e+01
- 1 211 0 0 0.15338889e+00 -0.96424512e-01 0.13951526e+02 0.13957000e+00
- 2 2214 278 279 0.53402676e+00 0.12940260e+01 0.17026434e+03 0.12341280e+01
- 2 223 280 282 -0.69423818e+00 -0.15387948e+00 0.54038397e+03 0.78544876e+00
- 2 -213 283 284 0.11999218e+01 0.15359596e+01 0.15881529e+03 0.62368777e+00
- 1 211 0 0 -0.31544012e+00 -0.10319368e+00 0.54330608e+01 0.13957000e+00
- 2 113 285 286 0.21139645e+00 0.76849036e+00 0.57478756e+02 0.60421150e+00
- 2 111 287 288 0.30735986e+00 0.58184743e+00 0.20629482e+02 0.13498000e+00
- 2 -213 289 290 -0.61307017e+00 0.57572208e+00 0.50089524e+02 0.80290383e+00
- 1 22 0 0 0.26180345e-01 -0.14943817e+00 -0.36546927e+03 0.00000000e+00
- 1 22 0 0 -0.54899206e-01 -0.14041954e-01 -0.22887110e+03 0.00000000e+00
- 2 111 291 292 0.10918243e+00 0.74671360e-01 -0.91067158e+00 0.13498000e+00
- 2 111 293 294 0.64609189e+00 0.53686765e+00 -0.31799770e+01 0.13498000e+00
- 2 111 295 296 0.39093138e+00 0.21609080e+00 -0.15249500e+01 0.13498000e+00
- 1 -211 0 0 0.66556769e+00 0.34375020e+00 -0.54874841e+01 0.13957000e+00
- 2 111 297 298 0.18064224e+01 0.19610506e+00 -0.84124217e+01 0.13498000e+00
- 1 -211 0 0 0.97116506e+00 0.44078088e+00 -0.33599295e+01 0.13957000e+00
- 2 111 299 300 0.19702961e+00 0.43822469e-01 -0.23963423e+01 0.13498000e+00
- 1 -2112 0 0 0.36182063e+01 -0.15189837e+01 -0.50495479e+01 0.93957000e+00
- 2 111 301 302 0.13686603e+01 -0.84594320e+00 -0.22357568e+01 0.13498000e+00
- 1 2112 0 0 0.28025144e+01 -0.11471344e+01 -0.54012967e+01 0.93957000e+00
- 1 -211 0 0 0.22867884e+01 -0.11839624e+01 -0.44811785e+01 0.13957000e+00
- 1 -2212 0 0 0.10867680e+01 -0.35964055e+00 -0.17972270e+01 0.93827000e+00
- 2 111 303 304 0.62691006e+00 -0.33846656e+00 -0.10836462e+01 0.13498000e+00
- 2 311 305 305 0.14209961e+00 0.11329457e-01 -0.47096491e+00 0.49767000e+00
- 1 211 0 0 0.21305464e+00 -0.32542311e+00 -0.14562629e+01 0.13957000e+00
- 2 3322 306 307 0.69051685e+00 0.24747309e+00 -0.19375897e+02 0.13149000e+01
- 2 111 308 309 0.68830209e-02 0.10771850e+00 -0.10933976e+01 0.13498000e+00
- 1 321 0 0 -0.16008604e-01 -0.21741997e+00 -0.14373281e+02 0.49360000e+00
- 1 -211 0 0 -0.38454635e+00 -0.22087716e+00 -0.60072345e+01 0.13957000e+00
- 1 -321 0 0 0.49770628e+00 0.10296705e+00 -0.82298730e+02 0.49360000e+00
- 1 211 0 0 -0.10324673e+00 0.27983830e+00 -0.26452157e+02 0.13957000e+00
- 2 311 310 310 0.27131805e+00 -0.20455861e+00 -0.36119065e+03 0.49767000e+00
- 1 211 0 0 0.18799036e+00 -0.31911855e+00 -0.71099865e+02 0.13957000e+00
- 2 310 311 312 0.89104583e-01 -0.20309913e+00 -0.20997867e+03 0.49767000e+00
- 1 22 0 0 -0.39710414e-01 -0.25031606e+00 -0.26099311e+03 0.00000000e+00
- 1 22 0 0 0.31540645e-01 -0.21614907e-01 -0.90729230e+02 0.00000000e+00
- 1 211 0 0 0.57908786e-03 -0.15688692e+00 -0.42913896e+03 0.13957000e+00
- 2 111 313 314 0.22589145e+00 0.28755478e+00 -0.10688949e+03 0.13498000e+00
- 1 -211 0 0 0.27951485e+00 0.15439889e+01 -0.73656470e+01 0.13957000e+00
- 1 211 0 0 0.93929341e+00 0.35250548e+01 -0.18459168e+02 0.13957000e+00
- 2 111 315 316 0.36202430e-02 0.71787671e+00 -0.30479454e+01 0.13498000e+00
- 1 -321 0 0 0.27086490e+00 -0.27467783e+00 -0.36325447e+00 0.49360000e+00
- 1 211 0 0 -0.13579973e+00 0.18642057e+00 0.12662570e+00 0.13957000e+00
- 2 -3122 317 318 0.17114353e+00 -0.18453854e+00 0.86157062e+01 0.11156800e+01
- 2 111 319 320 0.78543218e-01 0.48904062e-01 0.25342775e+01 0.13498000e+00
- 1 -321 0 0 -0.25434302e+00 -0.14680502e+00 0.48938462e+01 0.49360000e+00
- 2 111 321 322 0.27841052e+00 -0.46735018e-01 0.44310834e+01 0.13498000e+00
- 1 -211 0 0 -0.32533981e-01 -0.36849935e-01 0.14169726e+01 0.13957000e+00
- 1 211 0 0 -0.47713551e-01 0.38733036e+00 0.22260791e+01 0.13957000e+00
- 2 111 323 324 -0.45450646e+00 0.57726754e+00 0.57127025e+01 0.13498000e+00
- 1 211 0 0 0.41357157e+00 -0.31239621e+00 0.48954389e+01 0.13957000e+00
- 2 111 325 326 -0.84778621e-01 -0.17368293e+00 0.32038274e+01 0.13498000e+00
- 1 211 0 0 -0.66798678e+00 -0.37326824e+00 0.31620012e+01 0.13957000e+00
- 1 -211 0 0 -0.78254712e+00 -0.16380900e+01 0.73118697e+01 0.13957000e+00
- 1 22 0 0 0.57679431e+00 -0.40464999e+00 0.48387495e+01 0.00000000e+00
- 2 111 327 328 -0.22870580e+00 -0.24843197e+00 0.19088670e+01 0.13498000e+00
- 1 -211 0 0 -0.50404577e+00 -0.30135283e+00 0.14165002e+01 0.13957000e+00
- 1 211 0 0 -0.21120966e+00 -0.34032802e+00 0.85665953e+00 0.13957000e+00
- 2 111 329 330 -0.83196599e-01 -0.14225869e+00 0.38822522e+00 0.13498000e+00
- 1 130 0 0 -0.28521366e+00 -0.12687043e+01 0.49228746e+01 0.49767000e+00
- 2 -311 331 331 -0.84550999e+00 -0.83758658e+00 0.40139662e+01 0.49767000e+00
- 1 -211 0 0 0.42829692e-01 -0.53442225e+00 0.12439327e+01 0.13957000e+00
- 1 211 0 0 -0.36858227e-01 -0.29370300e+00 0.12951304e+01 0.13957000e+00
- 2 111 332 333 0.31175962e+00 -0.80752094e+00 0.10048792e+01 0.13498000e+00
- 1 -211 0 0 -0.14186465e+00 0.24296182e-01 0.41899910e+00 0.13957000e+00
- 1 211 0 0 0.52598066e-01 -0.75762040e+00 0.40876364e+00 0.13957000e+00
- 1 -211 0 0 0.14226612e-01 -0.16524930e-01 0.37613640e+00 0.13957000e+00
- 1 211 0 0 0.36042395e-01 -0.77328921e-01 0.89050030e-01 0.13957000e+00
- 2 111 334 335 0.15341973e+00 -0.84963742e+00 0.76800321e+00 0.13498000e+00
- 1 22 0 0 -0.34369420e-01 -0.15678704e+00 0.70941971e-01 0.00000000e+00
- 1 22 0 0 0.48022411e-01 -0.19406394e+01 0.92181128e+00 0.00000000e+00
- 2 111 336 337 -0.22904352e+00 -0.74911629e+00 0.36052191e+00 0.13498000e+00
- 2 111 338 339 -0.45295907e-01 -0.61848544e+00 0.49945856e+00 0.13498000e+00
- 2 111 340 341 -0.53471197e-01 -0.89120256e+00 0.49279439e+00 0.13498000e+00
- 2 311 342 342 0.34901936e+00 -0.78673783e+00 -0.45178085e+00 0.49767000e+00
- 2 111 343 344 0.11812859e+00 -0.25124951e+00 0.20681387e+00 0.13498000e+00
- 1 321 0 0 0.33189831e+00 -0.71791233e+00 0.11893745e+00 0.49360000e+00
- 1 -321 0 0 0.23994577e+00 -0.10999901e+01 0.75682175e-01 0.49360000e+00
- 1 130 0 0 0.11630421e-01 -0.18442195e+01 0.88119647e+00 0.49767000e+00
- 1 -211 0 0 0.29003476e+00 -0.49506677e+00 -0.15139669e+00 0.13957000e+00
- 2 111 345 346 0.42731530e+00 -0.97786914e+00 0.83442178e+00 0.13498000e+00
- 1 211 0 0 -0.17129812e+00 -0.26224226e+00 0.40053383e+00 0.13957000e+00
- 2 111 347 348 0.18290213e+00 -0.53799136e+00 -0.28743768e+00 0.13498000e+00
- 1 22 0 0 0.87168084e+00 0.16675682e+00 0.72173424e+00 0.00000000e+00
- 1 22 0 0 0.46050983e+00 0.18929883e+00 0.38509041e+00 0.00000000e+00
- 1 -211 0 0 0.21552036e-02 -0.37963717e+00 0.92302300e+01 0.13957000e+00
- 1 211 0 0 -0.77894635e-01 -0.11562564e+00 0.19257428e+02 0.13957000e+00
- 2 111 349 350 -0.14708064e+00 -0.46494474e+00 0.25342259e+02 0.13498000e+00
- 1 -211 0 0 0.55400568e-01 -0.27148164e-01 0.14910962e+01 0.13957000e+00
- 2 111 351 352 -0.61263031e-01 0.56091783e+00 0.26440102e+02 0.13498000e+00
- 1 -211 0 0 -0.15807493e+00 0.19886020e+00 0.29175154e+02 0.13957000e+00
- 1 211 0 0 -0.10765022e+00 -0.13191203e+00 0.19196013e+02 0.13957000e+00
- 2 111 353 354 0.18188696e+00 0.21950973e+00 0.24308660e+02 0.13498000e+00
- 1 -211 0 0 0.35740900e+00 0.68122581e-01 0.54496633e+02 0.13957000e+00
- 1 211 0 0 -0.17378582e+00 -0.73974107e-01 0.11903368e+03 0.13957000e+00
- 1 2212 0 0 -0.50391757e+00 0.11111645e+01 0.35119545e+04 0.93827000e+00
- 2 111 355 356 -0.11337316e+00 0.47535229e-01 0.30110768e+03 0.13498000e+00
- 1 211 0 0 0.12590379e+00 0.25278277e-01 0.92876786e+02 0.13957000e+00
- 2 111 357 358 -0.32398169e+00 -0.84517663e-01 0.11142846e+04 0.13498000e+00
- 1 211 0 0 0.28007565e+00 0.99724946e+00 -0.72265623e+01 0.13957000e+00
- 2 111 359 360 0.40800012e+00 0.82171100e+00 -0.30766568e+01 0.13498000e+00
- 1 211 0 0 0.78940754e+00 0.22020168e+01 -0.66398524e+01 0.13957000e+00
- 2 111 361 362 0.27745849e+00 0.72951109e+00 -0.39648912e+01 0.13498000e+00
- 1 211 0 0 -0.58662642e+00 -0.32599317e+01 -0.29788711e+03 0.13957000e+00
- 1 -211 0 0 -0.17824051e+01 -0.47534373e+01 -0.42570079e+03 0.13957000e+00
- 1 211 0 0 -0.15611203e+00 -0.15272988e+00 -0.22750495e+02 0.13957000e+00
- 1 -211 0 0 -0.20303618e+00 -0.11983512e+00 -0.19639066e+02 0.13957000e+00
- 2 221 363 365 -0.53074436e+00 -0.13012317e+01 -0.10759780e+03 0.54745000e+00
- 1 211 0 0 -0.11930941e+00 -0.12472891e+00 -0.45920618e+02 0.13957000e+00
- 1 -211 0 0 -0.52882535e+00 -0.36897540e+00 -0.53246614e+02 0.13957000e+00
- 2 111 366 367 -0.46091714e+00 -0.65322073e+00 -0.69181531e+02 0.13498000e+00
- 1 -211 0 0 -0.11651562e+00 0.35954268e+00 -0.19404622e+02 0.13957000e+00
- 1 211 0 0 -0.33823260e+00 -0.18877100e-01 -0.20364141e+02 0.13957000e+00
- 2 111 368 369 -0.20611725e+00 0.76975263e-01 -0.56042568e+01 0.13498000e+00
- 1 211 0 0 -0.28046458e+00 0.14185858e+00 -0.94469072e+01 0.13957000e+00
- 1 -211 0 0 -0.40982009e+00 -0.10172601e+00 -0.51287981e+01 0.13957000e+00
- 2 111 370 371 0.48317568e-01 0.29533215e-01 -0.13268753e+01 0.13498000e+00
- 1 -2212 0 0 -0.26337662e+00 0.11533773e+01 -0.33360608e+02 0.93827000e+00
- 2 111 372 373 0.31406242e-01 0.26870029e+00 -0.12316629e+02 0.13498000e+00
- 2 311 374 374 -0.16510294e+01 0.10940335e+01 -0.31388990e+02 0.49767000e+00
- 2 111 375 376 -0.22691391e+00 0.43231589e+00 -0.11277392e+02 0.13498000e+00
- 2 3122 377 378 -0.13979538e+01 0.18340780e+01 -0.32109116e+02 0.11156800e+01
- 1 22 0 0 0.26106421e-01 0.35579558e-01 -0.41801051e+00 0.00000000e+00
- 1 211 0 0 -0.21968930e+00 0.20319653e+00 -0.44077128e+01 0.13957000e+00
- 1 -211 0 0 -0.55631074e-01 0.43285439e+00 -0.33289466e+01 0.13957000e+00
- 2 111 379 380 -0.52131298e+00 0.21958433e+00 -0.49107212e+01 0.13498000e+00
- 1 321 0 0 0.48366551e+00 -0.27018757e+00 -0.95003555e+00 0.49360000e+00
- 2 111 381 382 -0.15207033e+00 0.66299878e-01 -0.45192036e+00 0.13498000e+00
- 2 -311 383 383 -0.15481381e+00 0.40377315e+00 0.40926585e+00 0.49767000e+00
- 1 -211 0 0 -0.66115892e-01 0.54402594e+00 -0.11813653e+00 0.13957000e+00
- 2 -3322 384 385 0.34763013e+00 -0.50381438e+00 0.13267203e+01 0.13149000e+01
- 2 111 386 387 0.40664606e-01 -0.18140070e+00 0.41593001e+00 0.13498000e+00
- 2 -311 388 388 -0.18851956e+00 0.14281872e+00 0.47702081e+01 0.49767000e+00
- 1 -211 0 0 -0.58269615e+00 -0.23116485e+00 0.66754150e+01 0.13957000e+00
- 1 2212 0 0 0.27015958e+00 0.13371058e+00 0.85363093e+01 0.93827000e+00
- 1 211 0 0 -0.90465174e-01 0.11672423e+00 0.14971316e+01 0.13957000e+00
- 1 -2212 0 0 -0.47911266e+00 0.35313585e+00 0.34947417e+03 0.93827000e+00
- 1 -211 0 0 -0.58646005e-01 -0.36475753e-01 0.13617933e+03 0.13957000e+00
- 1 2212 0 0 0.66018649e+00 0.11363384e+01 0.14190772e+03 0.93827000e+00
- 2 111 389 390 -0.12615973e+00 0.15768759e+00 0.28356627e+02 0.13498000e+00
- 1 -211 0 0 -0.21233259e+00 -0.17759270e-01 0.58620207e+02 0.13957000e+00
- 1 211 0 0 -0.47032057e+00 -0.10732272e+00 0.43220243e+03 0.13957000e+00
- 2 111 391 392 -0.11585023e-01 -0.28797486e-01 0.49561328e+02 0.13498000e+00
- 1 -211 0 0 0.10497283e+01 0.15043902e+01 0.14507181e+03 0.13957000e+00
- 2 111 393 394 0.15019349e+00 0.31569315e-01 0.13743479e+02 0.13498000e+00
- 1 -211 0 0 0.31040797e+00 0.37556058e+00 0.40986211e+02 0.13957000e+00
- 1 211 0 0 -0.99011521e-01 0.39292978e+00 0.16492545e+02 0.13957000e+00
- 1 22 0 0 0.10609102e+00 0.34478191e+00 0.11167297e+02 0.00000000e+00
- 1 22 0 0 0.20126883e+00 0.23706552e+00 0.94621842e+01 0.00000000e+00
- 1 -211 0 0 0.13942070e-01 0.49528426e+00 0.20917351e+02 0.13957000e+00
- 2 111 395 396 -0.62701224e+00 0.80437819e-01 0.29172173e+02 0.13498000e+00
- 1 22 0 0 0.46938379e-01 0.56540255e-01 -0.15403501e+00 0.00000000e+00
- 1 22 0 0 0.62244052e-01 0.18131106e-01 -0.75663657e+00 0.00000000e+00
- 1 22 0 0 0.30004656e+00 0.33370255e+00 -0.16085131e+01 0.00000000e+00
- 1 22 0 0 0.34604532e+00 0.20316511e+00 -0.15714639e+01 0.00000000e+00
- 1 22 0 0 0.27475562e+00 0.87493813e-01 -0.83591594e+00 0.00000000e+00
- 1 22 0 0 0.11617576e+00 0.12859699e+00 -0.68903404e+00 0.00000000e+00
- 1 22 0 0 0.63233508e+00 0.15643793e-01 -0.27515303e+01 0.00000000e+00
- 1 22 0 0 0.11740874e+01 0.18046127e+00 -0.56608914e+01 0.00000000e+00
- 1 22 0 0 0.23101115e-01 0.62930689e-01 -0.57947960e+00 0.00000000e+00
- 1 22 0 0 0.17392849e+00 -0.19108221e-01 -0.18168627e+01 0.00000000e+00
- 1 22 0 0 0.88321334e+00 -0.61787184e+00 -0.15218348e+01 0.00000000e+00
- 1 22 0 0 0.48544700e+00 -0.22807135e+00 -0.71392198e+00 0.00000000e+00
- 1 22 0 0 0.40084026e-01 -0.64640722e-01 -0.89959721e-01 0.00000000e+00
- 1 22 0 0 0.58682603e+00 -0.27382584e+00 -0.99368644e+00 0.00000000e+00
- 2 310 397 398 0.14209961e+00 0.11329457e-01 -0.47096491e+00 0.49767000e+00
- 2 3122 399 400 0.68222158e+00 0.32775974e+00 -0.17448576e+02 0.11156800e+01
- 2 111 401 402 0.82952701e-02 -0.80286645e-01 -0.19273212e+01 0.13498000e+00
- 1 22 0 0 0.23601977e-01 0.29456320e-01 -0.84832871e+00 0.00000000e+00
- 1 22 0 0 -0.16718956e-01 0.78262181e-01 -0.24506888e+00 0.00000000e+00
- 2 310 403 404 0.27131805e+00 -0.20455861e+00 -0.36119065e+03 0.49767000e+00
- 1 -211 0 0 0.21630347e+00 -0.21815632e+00 -0.15831287e+03 0.13957000e+00
- 1 211 0 0 -0.12719888e+00 0.15057189e-01 -0.51665800e+02 0.13957000e+00
- 1 22 0 0 -0.11989600e-01 0.44968960e-01 -0.18302534e+02 0.00000000e+00
- 1 22 0 0 0.23788105e+00 0.24258582e+00 -0.88586952e+02 0.00000000e+00
- 1 22 0 0 -0.32879742e-01 0.19594377e+00 -0.10693508e+01 0.00000000e+00
- 1 22 0 0 0.36499985e-01 0.52193294e+00 -0.19785947e+01 0.00000000e+00
- 1 -2212 0 0 0.12214794e+00 -0.23402221e+00 0.78133454e+01 0.93827000e+00
- 1 211 0 0 0.48995584e-01 0.49483671e-01 0.80236077e+00 0.13957000e+00
- 1 22 0 0 -0.26677954e-01 0.46061552e-01 0.57709615e+00 0.00000000e+00
- 1 22 0 0 0.10522117e+00 0.28425102e-02 0.19571814e+01 0.00000000e+00
- 1 22 0 0 0.21913340e+00 -0.88696562e-01 0.36580789e+01 0.00000000e+00
- 1 22 0 0 0.59277114e-01 0.41961545e-01 0.77300456e+00 0.00000000e+00
- 1 22 0 0 -0.54719623e-01 0.14131935e+00 0.94342335e+00 0.00000000e+00
- 1 22 0 0 -0.39978684e+00 0.43594819e+00 0.47692792e+01 0.00000000e+00
- 1 22 0 0 -0.27941000e-01 -0.15413395e+00 0.27812698e+01 0.00000000e+00
- 1 22 0 0 -0.56837621e-01 -0.19548980e-01 0.42255762e+00 0.00000000e+00
- 1 22 0 0 -0.13173146e+00 -0.14135671e+00 0.14305930e+01 0.00000000e+00
- 1 22 0 0 -0.96974334e-01 -0.10707526e+00 0.47827398e+00 0.00000000e+00
- 1 22 0 0 -0.63233181e-01 -0.61030301e-01 0.65948037e-01 0.00000000e+00
- 1 22 0 0 -0.19963418e-01 -0.81228389e-01 0.32227718e+00 0.00000000e+00
- 2 310 405 406 -0.84550999e+00 -0.83758658e+00 0.40139662e+01 0.49767000e+00
- 1 22 0 0 0.50265079e-01 -0.29418470e+00 0.38073926e+00 0.00000000e+00
- 1 22 0 0 0.26149454e+00 -0.51333625e+00 0.62413998e+00 0.00000000e+00
- 1 22 0 0 0.39092019e-02 -0.41069877e-02 -0.53633100e-02 0.00000000e+00
- 1 22 0 0 0.14951053e+00 -0.84553043e+00 0.77336652e+00 0.00000000e+00
- 1 22 0 0 -0.23084095e+00 -0.56198455e+00 0.26715223e+00 0.00000000e+00
- 1 22 0 0 0.17974378e-02 -0.18713174e+00 0.93369674e-01 0.00000000e+00
- 1 22 0 0 -0.70213929e-01 -0.20695525e+00 0.21617125e+00 0.00000000e+00
- 1 22 0 0 0.24918022e-01 -0.41153019e+00 0.28328731e+00 0.00000000e+00
- 1 22 0 0 -0.41914030e-01 -0.67774034e+00 0.43781038e+00 0.00000000e+00
- 1 22 0 0 -0.11557167e-01 -0.21346222e+00 0.54984010e-01 0.00000000e+00
- 2 310 407 408 0.34901936e+00 -0.78673783e+00 -0.45178085e+00 0.49767000e+00
- 1 22 0 0 0.14183929e+00 -0.23273588e+00 0.16033035e+00 0.00000000e+00
- 1 22 0 0 -0.23710704e-01 -0.18513628e-01 0.46483521e-01 0.00000000e+00
- 1 22 0 0 0.28482485e+00 -0.48344120e+00 0.43356608e+00 0.00000000e+00
- 1 22 0 0 0.14249044e+00 -0.49442794e+00 0.40085571e+00 0.00000000e+00
- 1 22 0 0 0.99234095e-01 -0.36132074e+00 -0.11968190e+00 0.00000000e+00
- 1 22 0 0 0.83668032e-01 -0.17667062e+00 -0.16775577e+00 0.00000000e+00
- 1 22 0 0 -0.16124393e+00 -0.35435283e+00 0.21068997e+02 0.00000000e+00
- 1 22 0 0 0.14163295e-01 -0.11059191e+00 0.42732622e+01 0.00000000e+00
- 1 22 0 0 0.14661461e-01 0.11964388e+00 0.81146737e+01 0.00000000e+00
- 1 22 0 0 -0.75924492e-01 0.44127395e+00 0.18325429e+02 0.00000000e+00
- 1 22 0 0 0.14406771e+00 0.15928627e+00 0.21743486e+02 0.00000000e+00
- 1 22 0 0 0.37819245e-01 0.60223464e-01 0.25651742e+01 0.00000000e+00
- 1 22 0 0 -0.73127400e-01 0.40373800e-02 0.55646136e+02 0.00000000e+00
- 1 22 0 0 -0.40245761e-01 0.43497849e-01 0.24546155e+03 0.00000000e+00
- 1 22 0 0 -0.14691013e+00 -0.81186206e-01 0.70774628e+03 0.00000000e+00
- 1 22 0 0 -0.17707156e+00 -0.33314570e-02 0.40653830e+03 0.00000000e+00
- 1 22 0 0 0.21510979e+00 0.57606093e+00 -0.20574857e+01 0.00000000e+00
- 1 22 0 0 0.19289033e+00 0.24565007e+00 -0.10191711e+01 0.00000000e+00
- 1 22 0 0 0.15890748e+00 0.57812086e+00 -0.29595421e+01 0.00000000e+00
- 1 22 0 0 0.11855101e+00 0.15139023e+00 -0.10053490e+01 0.00000000e+00
- 1 22 0 0 -0.26789913e+00 -0.49823762e+00 -0.34589921e+02 0.00000000e+00
- 1 13 0 0 -0.50951198e-01 -0.25440725e+00 -0.36303402e+02 0.10566000e+00
- 1 -13 0 0 -0.21189403e+00 -0.54858680e+00 -0.36704481e+02 0.10566000e+00
- 1 22 0 0 -0.34318170e+00 -0.55183401e+00 -0.52335837e+02 0.00000000e+00
- 1 22 0 0 -0.11773545e+00 -0.10138672e+00 -0.16845694e+02 0.00000000e+00
- 1 22 0 0 -0.19999449e+00 0.10743217e+00 -0.49599178e+01 0.00000000e+00
- 1 22 0 0 -0.61227643e-02 -0.30456912e-01 -0.64433901e+00 0.00000000e+00
- 1 22 0 0 0.40755374e-01 0.32376977e-01 -0.16486465e+00 0.00000000e+00
- 1 22 0 0 0.75621936e-02 -0.28437612e-02 -0.11620106e+01 0.00000000e+00
- 1 22 0 0 0.23755530e-02 0.17464975e-01 -0.35969865e+01 0.00000000e+00
- 1 22 0 0 0.29030689e-01 0.25123531e+00 -0.87196427e+01 0.00000000e+00
- 1 130 0 0 -0.16510294e+01 0.10940335e+01 -0.31388990e+02 0.49767000e+00
- 1 22 0 0 -0.20376006e+00 0.36251494e+00 -0.82459602e+01 0.00000000e+00
- 1 22 0 0 -0.23153853e-01 0.69800950e-01 -0.30314318e+01 0.00000000e+00
- 1 2212 0 0 -0.10335471e+01 0.13767074e+01 -0.24540741e+02 0.93827000e+00
- 1 -211 0 0 -0.36440665e+00 0.45737058e+00 -0.75683746e+01 0.13957000e+00
- 1 22 0 0 -0.21966596e+00 0.55420527e-01 -0.24526448e+01 0.00000000e+00
- 1 22 0 0 -0.30164702e+00 0.16416380e+00 -0.24580764e+01 0.00000000e+00
- 1 22 0 0 -0.93200491e-01 0.70326830e-01 -0.41323950e+00 0.00000000e+00
- 1 22 0 0 -0.58869836e-01 -0.40269524e-02 -0.38680858e-01 0.00000000e+00
- 1 130 0 0 -0.15481381e+00 0.40377315e+00 0.40926585e+00 0.49767000e+00
- 2 -3122 409 410 0.42856428e+00 -0.42377612e+00 0.12182040e+01 0.11156800e+01
- 2 111 411 412 -0.80934151e-01 -0.80038266e-01 0.10851626e+00 0.13498000e+00
- 1 22 0 0 0.67456536e-01 -0.17621614e+00 0.28767416e+00 0.00000000e+00
- 1 22 0 0 -0.26791930e-01 -0.51845623e-02 0.12825585e+00 0.00000000e+00
- 2 310 413 414 -0.18851956e+00 0.14281872e+00 0.47702081e+01 0.49767000e+00
- 1 22 0 0 -0.46452965e-01 -0.34201086e-02 0.26302189e+01 0.00000000e+00
- 1 22 0 0 -0.79706764e-01 0.16110770e+00 0.25726408e+02 0.00000000e+00
- 1 22 0 0 -0.24478860e-01 -0.81058604e-01 0.30220319e+02 0.00000000e+00
- 1 22 0 0 0.12893837e-01 0.52261118e-01 0.19341009e+02 0.00000000e+00
- 1 22 0 0 0.41897286e-01 -0.47479637e-01 0.29026803e+01 0.00000000e+00
- 1 22 0 0 0.10829620e+00 0.79048952e-01 0.10840799e+02 0.00000000e+00
- 1 22 0 0 -0.40961182e+00 0.10244207e+00 0.20971345e+02 0.00000000e+00
- 1 22 0 0 -0.21740042e+00 -0.22004250e-01 0.82008280e+01 0.00000000e+00
- 2 111 415 416 -0.71999603e-01 -0.21459196e-01 0.10605247e-01 0.13498000e+00
- 2 111 417 418 0.21409922e+00 0.32788653e-01 -0.48157016e+00 0.13498000e+00
- 1 2212 0 0 0.66771835e+00 0.35322635e+00 -0.15382833e+02 0.93827000e+00
- 1 -211 0 0 0.14503227e-01 -0.25466613e-01 -0.20657423e+01 0.13957000e+00
- 1 22 0 0 -0.12367557e-01 0.19902738e-01 -0.10798607e+01 0.00000000e+00
- 1 22 0 0 0.20662827e-01 -0.10018938e+00 -0.84746055e+00 0.00000000e+00
- 1 211 0 0 -0.43634336e-01 0.51329347e-01 -0.61417371e+02 0.13957000e+00
- 1 -211 0 0 0.31495239e+00 -0.25588796e+00 -0.29977328e+03 0.13957000e+00
- 2 111 419 420 -0.27846256e+00 -0.46121683e+00 0.23210647e+01 0.13498000e+00
- 2 111 421 422 -0.56704742e+00 -0.37636976e+00 0.16929015e+01 0.13498000e+00
- 1 211 0 0 0.52369006e-01 -0.59661805e+00 -0.26723409e+00 0.13957000e+00
- 1 -211 0 0 0.29665036e+00 -0.19011978e+00 -0.18454677e+00 0.13957000e+00
- 1 -2212 0 0 0.46414606e+00 -0.38865810e+00 0.11133449e+01 0.93827000e+00
- 1 211 0 0 -0.35581774e-01 -0.35118016e-01 0.10485914e+00 0.13957000e+00
- 1 22 0 0 -0.98343581e-01 -0.10640277e+00 0.86607062e-01 0.00000000e+00
- 1 22 0 0 0.17409431e-01 0.26364502e-01 0.21909203e-01 0.00000000e+00
- 1 -211 0 0 0.39883690e-01 -0.97656987e-01 0.21533585e+01 0.13957000e+00
- 1 211 0 0 -0.22840325e+00 0.24047570e+00 0.26168496e+01 0.13957000e+00
- 1 22 0 0 -0.65209127e-01 -0.21409354e-01 -0.55576764e-01 0.00000000e+00
- 1 22 0 0 -0.67904753e-02 -0.49842315e-04 0.66182011e-01 0.00000000e+00
- 1 22 0 0 0.15430641e+00 0.80925690e-01 -0.37679523e+00 0.00000000e+00
- 1 22 0 0 0.59792804e-01 -0.48137037e-01 -0.10477494e+00 0.00000000e+00
- 1 22 0 0 -0.12839102e+00 -0.20044805e+00 0.13200182e+01 0.00000000e+00
- 1 22 0 0 -0.15007155e+00 -0.26076878e+00 0.10010464e+01 0.00000000e+00
- 1 22 0 0 -0.12677308e+00 -0.24617791e-01 0.27606159e+00 0.00000000e+00
- 1 22 0 0 -0.44027434e+00 -0.35175197e+00 0.14168399e+01 0.00000000e+00
- 621
- 2 25 2 3 -0.80543847e+02 0.54985830e+01 -0.17751265e+03 0.12500136e+03
- 2 23 4 5 -0.66448488e+02 0.17158777e+02 -0.12361358e+03 0.93541043e+02
- 2 23 6 7 -0.14095360e+02 -0.11660194e+02 -0.53899069e+02 0.24841573e+02
- 1 13 0 0 -0.32036408e+02 0.85680423e+00 0.75706197e+01 0.10566000e+00
- 1 -13 0 0 -0.34412080e+02 0.16301972e+02 -0.13118420e+03 0.10566000e+00
- 1 13 0 0 -0.47727437e+01 -0.14232090e+02 -0.49028143e+02 0.10566000e+00
- 1 -13 0 0 -0.93226158e+01 0.25718965e+01 -0.48709258e+01 0.10566000e+00
- 2 -4 70 70 0.11640831e+02 0.46178240e+00 -0.76656472e+02 0.15000000e+01
- 2 21 70 70 0.27809082e+01 -0.27112225e+00 -0.33926769e+02 0.00000000e+00
- 2 21 70 70 0.21094956e+01 -0.31889355e+01 -0.51047985e+01 0.00000000e+00
- 2 21 70 70 0.24083011e+01 -0.19842274e+01 -0.51451327e+01 0.00000000e+00
- 2 21 70 70 -0.29745605e+00 0.25567452e+00 -0.10163320e+01 0.00000000e+00
- 2 21 70 70 -0.43771873e+01 0.37299701e+01 -0.22800099e+02 0.00000000e+00
- 2 21 70 70 0.82879992e-02 0.14939066e+01 -0.18206708e+02 0.00000000e+00
- 2 21 70 70 -0.19032071e+01 -0.23450409e+00 -0.26500149e+02 0.00000000e+00
- 2 21 70 70 -0.12722855e+01 -0.19233391e+01 -0.28837077e+02 0.00000000e+00
- 2 21 70 70 -0.23279308e+00 -0.50462009e+00 -0.10962764e+02 0.00000000e+00
- 2 21 70 70 0.23279308e+00 0.50462009e+00 -0.54759954e+03 0.00000000e+00
- 2 21 70 70 0.19032071e+01 0.23450409e+00 -0.15869197e+02 0.00000000e+00
- 2 21 70 70 0.20964254e+01 -0.32504739e+01 -0.10735004e+02 0.00000000e+00
- 2 21 70 70 0.43771873e+01 -0.37299701e+01 -0.15407581e+02 0.00000000e+00
- 2 21 70 70 -0.41067773e+00 -0.81342877e+00 -0.10243452e+01 0.00000000e+00
- 2 21 70 70 -0.82879992e-02 -0.14939066e+01 -0.41754224e+00 0.00000000e+00
- 2 21 70 70 -0.26325247e+01 -0.21292137e+01 -0.51686971e+00 0.00000000e+00
- 2 21 70 70 -0.58463830e+00 -0.13086623e+01 0.11664298e+01 0.00000000e+00
- 2 21 70 70 0.29745605e+00 -0.25567452e+00 0.19281671e+00 0.00000000e+00
- 2 21 70 70 0.47768644e+00 -0.10166999e+01 0.18169173e+01 0.00000000e+00
- 2 21 70 70 -0.71463513e+00 -0.84764919e+00 0.42249727e+01 0.00000000e+00
- 2 21 70 70 -0.48854291e+00 0.54685168e+00 0.18300286e+01 0.00000000e+00
- 2 2 70 70 -0.25118864e+01 0.47541066e+01 0.28977560e+04 0.33000000e+00
- 2 4 119 119 0.59337777e+02 0.47474463e+01 -0.38426183e+03 0.15000000e+01
- 2 21 119 119 0.16255104e+01 0.49116336e+00 -0.11062107e+02 0.00000000e+00
- 2 21 119 119 0.21416166e+01 0.24208582e+00 -0.15728247e+02 0.00000000e+00
- 2 21 119 119 0.26710628e+01 -0.71313930e+00 -0.28515436e+02 0.00000000e+00
- 2 21 119 119 -0.21895541e-01 -0.10764465e+01 -0.98570881e+00 0.00000000e+00
- 2 21 119 119 0.36424891e+00 -0.14276981e+01 -0.77441406e+00 0.00000000e+00
- 2 21 119 119 0.16887976e+01 -0.23833201e+01 0.39054424e+00 0.00000000e+00
- 2 21 119 119 -0.73115380e-01 -0.48495809e+00 -0.23461779e+01 0.00000000e+00
- 2 21 119 119 0.79456818e+00 -0.56544001e+00 -0.34121823e+01 0.00000000e+00
- 2 21 119 119 0.11495339e+01 -0.78570103e+00 -0.40125816e+02 0.00000000e+00
- 2 21 119 119 -0.23580853e+01 -0.32116021e+01 -0.12438614e+03 0.00000000e+00
- 2 21 119 119 -0.73192524e+00 -0.28674696e-01 -0.16010962e+02 0.00000000e+00
- 2 21 119 119 -0.11468925e+01 0.84778248e+00 -0.16474644e+02 0.00000000e+00
- 2 21 119 119 -0.24601209e+01 0.34425620e+01 -0.75848705e+02 0.00000000e+00
- 2 2101 119 119 -0.23290302e+00 0.10948046e+00 -0.22460315e+04 0.57933000e+00
- 2 2 153 153 -0.12915108e+00 -0.12653934e+01 -0.74478984e+03 0.33000000e+00
- 2 21 153 153 0.12467502e+01 -0.28108257e+00 -0.14637629e+04 0.00000000e+00
- 2 21 153 153 -0.31315078e+00 -0.38678625e+00 -0.56666546e+03 0.00000000e+00
- 2 21 153 153 0.32325914e+00 -0.15723133e+01 -0.20985937e+03 0.00000000e+00
- 2 21 153 153 -0.27571795e+01 -0.14509255e+01 -0.56623883e+01 0.00000000e+00
- 2 21 153 153 -0.20964254e+01 0.32504739e+01 0.39703054e+00 0.00000000e+00
- 2 21 153 153 -0.22596187e+01 0.24108283e+01 0.44887438e+01 0.00000000e+00
- 2 21 153 153 0.52306247e+00 0.79450453e+00 -0.91148274e+00 0.00000000e+00
- 2 21 153 153 0.27571795e+01 0.14509255e+01 -0.83932460e+00 0.00000000e+00
- 2 21 153 153 0.26325247e+01 0.21292137e+01 0.27730986e+01 0.00000000e+00
- 2 21 153 153 0.12722855e+01 0.19233391e+01 0.26998094e+02 0.00000000e+00
- 2 21 153 153 0.41067773e+00 0.81342877e+00 0.13146536e+02 0.00000000e+00
- 2 21 153 153 0.58463830e+00 0.13086623e+01 0.23355910e+02 0.00000000e+00
- 2 21 153 153 0.68938000e+00 -0.24970582e+00 0.22801658e+03 0.00000000e+00
- 2 21 153 153 0.40329180e-01 -0.48177335e+00 0.10611786e+03 0.00000000e+00
- 2 21 153 153 -0.52306247e+00 -0.79450453e+00 0.30674597e+02 0.00000000e+00
- 2 21 153 153 0.22596187e+01 -0.24108283e+01 0.65772172e+02 0.00000000e+00
- 2 21 153 153 0.85803831e+00 0.18854034e+01 0.59346892e+01 0.00000000e+00
- 2 2101 153 153 0.58545271e+00 -0.25527577e+01 0.35031822e+04 0.57933000e+00
- 2 21 207 207 -0.23051326e+01 0.96976910e+00 0.18157167e+02 0.00000000e+00
- 2 21 207 207 -0.68938000e+00 0.24970582e+00 0.22637804e+01 0.00000000e+00
- 2 21 207 207 -0.40329180e-01 0.48177335e+00 0.12053551e+01 0.00000000e+00
- 2 21 207 207 -0.47768644e+00 0.10166999e+01 0.50359246e+01 0.00000000e+00
- 2 21 207 207 0.23051326e+01 -0.96976910e+00 0.11795250e+02 0.00000000e+00
- 2 92 71 118 0.12898457e+02 -0.10971011e+02 0.20862608e+04 0.31035742e+04
- 2 -423 213 214 0.99863592e+01 -0.30104552e-01 -0.69165416e+02 0.20067000e+01
- 2 -213 215 216 0.19027397e+01 0.20606866e+00 -0.18375797e+02 0.83570556e+00
- 2 223 217 219 0.26397854e+01 -0.34705298e+00 -0.13806055e+02 0.78026835e+00
- 2 -311 220 220 -0.56396323e+00 0.21208493e-02 -0.36763576e+01 0.49767000e+00
- 2 323 221 222 0.80134852e+00 -0.69088930e+00 -0.25058044e+01 0.88351492e+00
- 2 -2114 223 224 0.16682518e+01 -0.18199335e+01 -0.69914171e+01 0.12739942e+01
- 1 -211 0 0 -0.37880901e-01 0.32587206e+00 -0.93593704e+00 0.13957000e+00
- 1 2212 0 0 0.19258603e+01 -0.27553374e+01 -0.56591007e+01 0.93827000e+00
- 2 -323 225 226 -0.14834568e+01 0.20202876e+01 -0.10415143e+02 0.95050772e+00
- 2 333 227 228 -0.14079999e+01 0.11250530e+01 -0.89428674e+01 0.10167132e+01
- 2 313 229 230 -0.61755152e+00 0.34037926e+00 -0.15863624e+02 0.97748579e+00
- 2 -313 231 232 -0.53801055e+00 0.84620456e+00 -0.71671391e+01 0.78274139e+00
- 2 333 233 234 -0.88274454e+00 -0.23925418e+00 -0.77592931e+01 0.10148446e+01
- 2 333 235 236 -0.61286007e+00 -0.42263295e-03 -0.15212084e+02 0.10272698e+01
- 2 313 237 238 -0.42616254e+00 0.20491817e+00 -0.22431824e+02 0.95312553e+00
- 2 -311 239 239 -0.58324320e-02 -0.12474284e+00 -0.26402448e+01 0.49767000e+00
- 2 311 240 240 -0.10469720e+01 -0.24217546e+00 -0.83451035e+02 0.49767000e+00
- 2 213 241 242 -0.13971765e+00 -0.64548172e+00 -0.63303203e+02 0.78911656e+00
- 2 111 243 244 -0.34188310e+00 0.22287165e+00 -0.84476823e+01 0.13498000e+00
- 1 -321 0 0 0.63347280e+00 -0.46565149e+00 -0.38164500e+02 0.49360000e+00
- 2 313 245 246 -0.48540500e-01 0.58411479e+00 -0.44981212e+02 0.88417792e+00
- 2 213 247 248 -0.34585371e+00 0.15911142e-01 -0.10483612e+03 0.93619992e+00
- 2 -2214 249 250 0.19010481e+00 -0.14931554e+00 -0.14936668e+03 0.12783001e+01
- 1 211 0 0 0.14796814e+00 -0.23087521e+00 -0.27626221e+02 0.13957000e+00
- 2 2114 251 252 0.39050612e+00 -0.13883011e+00 -0.37715576e+02 0.13027854e+01
- 2 223 253 255 0.90217993e+00 -0.14868703e+00 -0.12711863e+02 0.78256122e+00
- 1 -321 0 0 -0.59966005e+00 -0.38116414e+00 -0.37930182e+01 0.49360000e+00
- 2 313 256 257 0.15865197e+01 -0.46346563e+00 -0.10069146e+02 0.89669239e+00
- 2 -311 258 258 0.10275920e+01 -0.28293236e+00 -0.38083994e+01 0.49767000e+00
- 2 313 259 260 0.36920974e+01 -0.41303080e+01 -0.15523819e+02 0.89500514e+00
- 2 221 261 263 0.60375749e-01 -0.86955458e+00 -0.56835863e+00 0.54745000e+00
- 2 213 264 265 -0.80217714e+00 -0.93717763e+00 -0.18712357e+01 0.72823073e+00
- 2 -323 266 267 0.53265293e+00 -0.11988918e+01 -0.10886886e+01 0.90140156e+00
- 2 323 268 269 -0.43755464e+00 -0.28916632e+00 -0.10070801e+00 0.87481789e+00
- 2 -213 270 271 -0.28550451e+00 -0.62978076e+00 -0.88923106e+00 0.69957355e+00
- 2 -313 272 273 0.74006128e-01 -0.73585162e+00 -0.71712136e-01 0.89928929e+00
- 2 313 274 275 -0.11268125e+01 -0.19865270e+01 -0.56279983e-01 0.95458028e+00
- 2 213 276 277 -0.37302770e+00 -0.49130404e+00 0.14489811e+01 0.80405955e+00
- 1 -211 0 0 -0.19533085e+00 -0.25248852e-01 0.27437072e+01 0.13957000e+00
- 2 -2114 278 279 0.14146509e+00 -0.34133368e+00 0.47081724e+01 0.11687225e+01
- 2 223 280 282 0.69738364e+00 0.77586843e-01 0.23982207e+01 0.78872812e+00
- 1 2112 0 0 -0.94705696e+00 -0.50436463e+00 0.65843546e+01 0.93957000e+00
- 1 -2112 0 0 -0.28664158e+00 0.11200276e+00 0.17808891e+03 0.93957000e+00
- 2 221 283 284 -0.47321712e+00 -0.49039915e+00 0.92462245e+02 0.54745000e+00
- 2 3122 285 286 -0.15741619e+00 0.23478171e+00 0.14290519e+03 0.11156800e+01
- 2 221 287 288 0.24047834e+00 0.12238115e+01 0.25982742e+03 0.54745000e+00
- 2 323 289 290 -0.17243841e+01 0.31706062e+01 0.18296359e+04 0.84363728e+00
- 2 113 291 292 -0.43447815e+00 0.10262234e+00 0.38545042e+03 0.46715556e+00
- 2 92 120 152 0.62748178e+02 -0.79645953e+00 -0.29655733e+04 0.23766610e+03
- 2 413 293 294 0.46254710e+02 0.36993726e+01 -0.30058001e+03 0.20100000e+01
- 1 -211 0 0 0.14000704e+02 0.14782148e+01 -0.90115041e+02 0.13957000e+00
- 2 111 295 296 0.13566694e+01 -0.59300949e+00 -0.14931520e+02 0.13498000e+00
- 2 323 297 298 0.34379896e+01 0.38054525e+00 -0.23898688e+02 0.80954523e+00
- 2 333 299 300 0.41323913e+00 -0.31040538e+00 -0.51737041e+01 0.10202165e+01
- 2 -313 301 302 0.13435535e+00 -0.60109357e+00 -0.26960843e+01 0.87162986e+00
- 2 -213 303 304 0.13946367e+00 -0.22925736e+00 -0.23207970e+01 0.70847884e+00
- 1 211 0 0 -0.21791653e+00 -0.53956352e+00 -0.34956287e+00 0.13957000e+00
- 2 111 305 306 0.99691491e+00 -0.58631398e+00 0.25882956e-01 0.13498000e+00
- 2 223 307 309 0.35943880e+00 -0.52602737e+00 -0.13466702e+01 0.78051887e+00
- 1 -211 0 0 0.11985802e+00 -0.92818914e+00 -0.39116405e+00 0.13957000e+00
- 1 211 0 0 -0.16827987e-01 -0.43402063e-01 -0.46357019e+00 0.13957000e+00
- 2 113 310 311 0.67479540e+00 -0.14730075e+01 -0.63582919e+00 0.55183343e+00
- 2 311 312 312 -0.18818990e+00 -0.35834453e+00 -0.22907253e+01 0.49767000e+00
- 1 -321 0 0 0.71093983e+00 -0.16024373e-01 -0.16081942e+01 0.49360000e+00
- 1 321 0 0 -0.23656537e-01 0.24878250e+00 -0.48159880e+00 0.49360000e+00
- 2 -311 313 313 0.43962240e+00 -0.45076054e+00 -0.41712076e+01 0.49767000e+00
- 2 113 314 315 0.21459069e+00 -0.26888304e+00 -0.13332606e+02 0.78119626e+00
- 2 331 316 318 -0.37487443e-01 -0.92716856e+00 -0.19885296e+02 0.95802467e+00
- 2 -213 319 320 -0.14313155e+00 -0.46702487e+00 -0.71814395e+01 0.77277858e+00
- 2 111 321 322 -0.72611381e+00 -0.86781840e+00 -0.63044862e+02 0.13498000e+00
- 2 213 323 324 -0.63401690e-01 -0.74189822e+00 -0.21688930e+02 0.70115103e+00
- 2 1114 325 326 -0.10088758e+01 0.70105969e+00 -0.27874529e+02 0.11638095e+01
- 2 -2114 327 328 -0.10878024e+01 -0.53229247e+00 -0.46039323e+02 0.12153555e+01
- 2 111 329 330 -0.14558966e+01 0.87964494e+00 -0.28975911e+02 0.13498000e+00
- 2 323 331 332 -0.14036928e+00 0.37299345e+00 -0.25269999e+02 0.93968048e+00
- 2 -311 333 333 -0.52150426e-01 0.10168762e+01 -0.20656814e+02 0.49767000e+00
- 2 111 334 335 -0.73277960e+00 0.76901716e-01 -0.38019718e+02 0.13498000e+00
- 2 -213 336 337 -0.38756830e+00 0.82643340e+00 -0.48024157e+02 0.75195156e+00
- 2 213 338 339 -0.18543172e+00 0.18820153e+00 -0.33956259e+03 0.96001763e+00
- 2 311 340 340 -0.12223976e+00 -0.33061223e+00 -0.39028629e+03 0.49767000e+00
- 2 -323 341 342 0.20913660e+00 -0.65295472e-02 -0.75154544e+03 0.87218548e+00
- 1 2212 0 0 -0.12441113e+00 0.13214055e+00 -0.67275695e+03 0.93827000e+00
- 2 92 154 206 0.61046085e+01 0.45207086e+01 0.10183667e+04 0.69394266e+04
- 2 221 343 345 0.41046233e+00 -0.18444285e+00 -0.56067041e+03 0.54745000e+00
- 2 331 346 348 0.38572227e+00 -0.12951237e+01 -0.14454582e+04 0.95759607e+00
- 1 2212 0 0 0.31067714e+00 -0.45959746e+00 -0.47734817e+03 0.93827000e+00
- 2 -3122 349 350 -0.12911941e+00 -0.98102946e+00 -0.25505855e+03 0.11156800e+01
- 2 -313 351 352 0.51167262e+00 -0.48271694e-01 -0.50780666e+02 0.90422178e+00
- 2 313 353 354 -0.60094323e+00 -0.42254404e-01 -0.17016532e+03 0.88059738e+00
- 2 -323 355 356 0.24377989e-01 -0.50642613e+00 -0.10668170e+02 0.89591819e+00
- 2 113 357 358 -0.42765724e+00 -0.10165093e+00 -0.40724616e+01 0.75488674e+00
- 2 323 359 360 -0.72619748e+00 -0.49173341e+00 -0.35598388e+01 0.95991214e+00
- 2 -323 361 362 0.14545586e+00 -0.15032235e+00 -0.49979495e+01 0.88437746e+00
- 2 223 363 365 -0.31178814e+00 0.65304374e-01 -0.50183720e+01 0.77714569e+00
- 2 213 366 367 -0.18239661e+00 0.64117464e+00 -0.86209234e+00 0.76249502e+00
- 2 223 368 370 -0.12060124e+01 -0.83228861e+00 -0.10239154e+01 0.77888797e+00
- 1 -211 0 0 -0.43771831e+00 0.12283498e+01 0.29910774e+00 0.13957000e+00
- 1 321 0 0 -0.65389248e+00 -0.70754905e-01 -0.19104035e-01 0.49360000e+00
- 1 -321 0 0 -0.45007922e+00 0.85610871e-01 -0.27579410e+00 0.49360000e+00
- 2 323 371 372 -0.14727873e+01 0.26588694e+01 0.13816812e+01 0.95211873e+00
- 2 -311 373 373 -0.13783393e+00 0.21775199e+00 -0.23569539e+00 0.49767000e+00
- 2 111 374 375 -0.55324227e+00 0.72689583e+00 0.16301932e+01 0.13498000e+00
- 2 113 376 377 0.16679677e+00 0.13588288e+01 0.13800278e+00 0.85409942e+00
- 1 -211 0 0 0.49930209e-01 -0.10257262e+00 -0.29707573e+00 0.13957000e+00
- 2 113 378 379 0.26839778e+01 0.19131477e+01 0.57561279e+00 0.86847761e+00
- 1 321 0 0 0.22209942e+00 0.11728437e+00 0.76771350e+00 0.49360000e+00
- 2 -313 380 381 0.11140458e+01 -0.11827024e+00 0.29679559e+00 0.89289237e+00
- 1 -211 0 0 -0.14835614e+00 0.39764407e+00 0.33056116e+00 0.13957000e+00
- 2 2224 382 383 0.53741624e+00 0.71861480e+00 0.61611811e+01 0.11868021e+01
- 2 221 384 385 0.21452962e+00 0.76163265e+00 0.41322598e+01 0.54745000e+00
- 2 -2224 386 387 0.10689579e+01 0.56673392e-01 0.26434952e+01 0.11468997e+01
- 1 321 0 0 -0.48770305e-01 0.20483596e+00 0.16873151e+01 0.49360000e+00
- 2 -323 388 389 0.51345067e+00 0.13862979e+01 0.23307523e+02 0.87499365e+00
- 2 221 390 391 0.84340432e+00 0.54086582e+00 0.88606346e+01 0.54745000e+00
- 1 211 0 0 -0.68005581e-01 0.25066058e+00 0.20990523e+02 0.13957000e+00
- 2 -213 392 393 0.91064701e+00 0.75308270e+00 0.23181754e+02 0.63143635e+00
- 2 213 394 395 -0.19778877e-01 0.43702299e-01 0.13706748e+03 0.80437231e+00
- 2 111 396 397 0.51698219e-02 -0.22662621e+00 0.39740265e+01 0.13498000e+00
- 2 111 398 399 -0.28292817e-01 -0.22349056e+00 0.27056429e+02 0.13498000e+00
- 2 -213 400 401 0.37876813e+00 -0.31160957e+00 0.11068342e+03 0.79127124e+00
- 2 111 402 403 0.35807159e-01 0.27056469e-01 0.62898792e+01 0.13498000e+00
- 2 111 404 405 0.55899447e+00 -0.39060374e+00 0.19931039e+02 0.13498000e+00
- 2 221 406 407 0.19056751e+00 -0.47211398e+00 0.22614448e+02 0.54745000e+00
- 2 223 408 409 -0.10086203e+00 -0.47264889e+00 0.28628238e+02 0.77859678e+00
- 2 221 410 412 0.27318275e+00 0.11526637e+00 0.98847590e+01 0.54745000e+00
- 1 321 0 0 -0.99298565e-01 -0.27084437e+00 0.38073160e+01 0.49360000e+00
- 1 -321 0 0 0.36492391e+00 -0.28936606e+00 0.11023204e+02 0.49360000e+00
- 2 213 413 414 0.44618233e+00 -0.33561694e+00 0.11705369e+02 0.78629752e+00
- 2 113 415 416 0.21573020e+00 -0.46309234e-02 0.75489422e+01 0.67062416e+00
- 1 -211 0 0 0.39425489e+00 0.34365064e+00 0.69597229e+01 0.13957000e+00
- 2 113 417 418 -0.23722080e+00 0.51821404e+00 0.45767954e+01 0.82404785e+00
- 2 323 419 420 0.71229516e+00 -0.27815122e+00 0.10356135e+02 0.92169116e+00
- 2 333 421 422 -0.10308712e+00 0.34512021e+00 0.13597541e+02 0.10205352e+01
- 2 -323 423 424 0.10468205e+00 -0.23117950e+00 0.32882250e+03 0.88317719e+00
- 2 2224 425 426 -0.75065390e-01 -0.19864469e+00 0.70784396e+03 0.11489552e+01
- 1 -211 0 0 0.52883174e+00 -0.18655616e+01 0.24401230e+04 0.13957000e+00
- 2 92 208 212 -0.12073956e+01 0.17481791e+01 0.38457477e+02 0.74181106e+01
- 2 311 427 427 0.68824551e+00 -0.56304803e+00 0.46132986e+01 0.49767000e+00
- 2 111 428 429 -0.46579459e+00 0.23903136e+00 0.79864414e+01 0.13498000e+00
- 2 -1114 430 431 -0.91931369e+00 0.11334889e+01 0.78682098e+01 0.12399587e+01
- 2 113 432 433 0.82376604e+00 -0.74548539e+00 0.80039284e+01 0.72052182e+00
- 2 3112 434 435 -0.13342989e+01 0.16841922e+01 0.99855992e+01 0.11974400e+01
- 2 -421 436 437 0.94153727e+01 -0.40297793e-01 -0.65393973e+02 0.18645000e+01
- 2 111 438 439 0.57098647e+00 0.10193241e-01 -0.37714428e+01 0.13498000e+00
- 1 -211 0 0 0.56423116e+00 0.35476055e+00 -0.82821008e+01 0.13957000e+00
- 2 111 440 441 0.13385085e+01 -0.14869189e+00 -0.10093697e+02 0.13498000e+00
- 1 211 0 0 0.14849766e+01 -0.27258082e+00 -0.71016603e+01 0.13957000e+00
- 1 -211 0 0 0.81144625e+00 -0.52249987e-02 -0.35783158e+01 0.13957000e+00
- 2 111 442 443 0.34336261e+00 -0.69247162e-01 -0.31260789e+01 0.13498000e+00
- 2 310 444 445 -0.56396323e+00 0.21208493e-02 -0.36763576e+01 0.49767000e+00
- 2 311 446 446 0.58466672e+00 -0.44004978e+00 -0.22522511e+01 0.49767000e+00
- 1 211 0 0 0.21668180e+00 -0.25083952e+00 -0.25355331e+00 0.13957000e+00
- 1 -2112 0 0 0.16310626e+01 -0.14755636e+01 -0.57587513e+01 0.93957000e+00
- 2 111 447 448 0.37189187e-01 -0.34436995e+00 -0.12326657e+01 0.13498000e+00
- 2 -311 449 449 -0.11320213e+01 0.10851589e+01 -0.71673753e+01 0.49767000e+00
- 1 -211 0 0 -0.35143550e+00 0.93512862e+00 -0.32477673e+01 0.13957000e+00
- 1 321 0 0 -0.54031366e+00 0.46893228e+00 -0.41009952e+01 0.49360000e+00
- 1 -321 0 0 -0.86768625e+00 0.65612068e+00 -0.48418721e+01 0.49360000e+00
- 1 321 0 0 -0.34356959e+00 -0.14623158e+00 -0.71552506e+01 0.49360000e+00
- 1 -211 0 0 -0.27398193e+00 0.48661084e+00 -0.87083737e+01 0.13957000e+00
- 2 -311 450 450 -0.50476421e+00 0.72808910e+00 -0.67174710e+01 0.49767000e+00
- 2 111 451 452 -0.33246344e-01 0.11811546e+00 -0.44966809e+00 0.13498000e+00
- 1 130 0 0 -0.52417786e+00 -0.61066242e-01 -0.43400095e+01 0.49767000e+00
- 2 310 453 454 -0.35856667e+00 -0.17818793e+00 -0.34192837e+01 0.49767000e+00
- 1 321 0 0 -0.44309661e+00 -0.54513187e-01 -0.92469629e+01 0.49360000e+00
- 1 -321 0 0 -0.16976346e+00 0.54090554e-01 -0.59651209e+01 0.49360000e+00
- 1 321 0 0 -0.16934564e+00 -0.55240292e-02 -0.64224103e+01 0.49360000e+00
- 1 -211 0 0 -0.25681690e+00 0.21044220e+00 -0.16009414e+02 0.13957000e+00
- 1 130 0 0 -0.58324320e-02 -0.12474284e+00 -0.26402448e+01 0.49767000e+00
- 2 310 455 456 -0.10469720e+01 -0.24217546e+00 -0.83451035e+02 0.49767000e+00
- 1 211 0 0 -0.30000665e+00 -0.73076503e+00 -0.48470194e+02 0.13957000e+00
- 2 111 457 458 0.16028900e+00 0.85283304e-01 -0.14833009e+02 0.13498000e+00
- 1 22 0 0 -0.30878974e+00 0.19570203e+00 -0.63656403e+01 0.00000000e+00
- 1 22 0 0 -0.33093357e-01 0.27169617e-01 -0.20820420e+01 0.00000000e+00
- 1 321 0 0 -0.10043959e+00 0.59212836e+00 -0.42952194e+02 0.49360000e+00
- 1 -211 0 0 0.51899085e-01 -0.80135657e-02 -0.20290184e+01 0.13957000e+00
- 1 211 0 0 -0.23523492e+00 -0.41102720e+00 -0.38800419e+02 0.13957000e+00
- 2 111 459 460 -0.11061879e+00 0.42693834e+00 -0.66035698e+02 0.13498000e+00
- 1 -2112 0 0 0.40246181e+00 -0.98250447e-01 -0.12734928e+03 0.93957000e+00
- 1 -211 0 0 -0.21235700e+00 -0.51065098e-01 -0.22017405e+02 0.13957000e+00
- 1 2212 0 0 0.15234752e-01 -0.13139560e+00 -0.29180721e+02 0.93827000e+00
- 1 -211 0 0 0.37527136e+00 -0.74345062e-02 -0.85348546e+01 0.13957000e+00
- 1 211 0 0 0.47820193e+00 0.16850042e+00 -0.63747333e+01 0.13957000e+00
- 1 -211 0 0 0.26761133e-01 -0.19686117e-01 -0.96162802e+00 0.13957000e+00
- 2 111 461 462 0.39721687e+00 -0.29750134e+00 -0.53755016e+01 0.13498000e+00
- 2 311 463 463 0.56045535e+00 -0.34976687e+00 -0.50427942e+01 0.49767000e+00
- 2 111 464 465 0.10260644e+01 -0.11369876e+00 -0.50263519e+01 0.13498000e+00
- 2 310 466 467 0.10275920e+01 -0.28293236e+00 -0.38083994e+01 0.49767000e+00
- 1 321 0 0 0.15096191e+01 -0.19957265e+01 -0.74169029e+01 0.49360000e+00
- 1 -211 0 0 0.21824783e+01 -0.21345814e+01 -0.81069160e+01 0.13957000e+00
- 2 111 468 469 0.18244094e+00 -0.33965172e+00 -0.15187617e+00 0.13498000e+00
- 2 111 470 471 -0.32676420e-01 -0.29250366e+00 -0.23568423e+00 0.13498000e+00
- 2 111 472 473 -0.89388776e-01 -0.23739920e+00 -0.18079822e+00 0.13498000e+00
- 1 211 0 0 -0.22522169e+00 0.20267036e-01 -0.16647098e+00 0.13957000e+00
- 2 111 474 475 -0.57695545e+00 -0.95744467e+00 -0.17047647e+01 0.13498000e+00
- 2 -311 476 476 0.47300777e+00 -0.43925475e+00 -0.50995259e+00 0.49767000e+00
- 1 -211 0 0 0.59645160e-01 -0.75963708e+00 -0.57873596e+00 0.13957000e+00
- 2 311 477 477 -0.23772722e+00 -0.75965136e-01 -0.31207687e+00 0.49767000e+00
- 1 211 0 0 -0.19982742e+00 -0.21320118e+00 0.21136885e+00 0.13957000e+00
- 1 -211 0 0 -0.12930304e+00 0.97696068e-01 -0.11134079e+00 0.13957000e+00
- 2 111 478 479 -0.15620147e+00 -0.72747683e+00 -0.77789027e+00 0.13498000e+00
- 1 -321 0 0 0.44835554e-02 -0.81657339e+00 -0.16402273e+00 0.49360000e+00
- 1 211 0 0 0.69522572e-01 0.80721767e-01 0.92310595e-01 0.13957000e+00
- 1 321 0 0 -0.92787090e+00 -0.19361937e+01 0.55558191e-01 0.49360000e+00
- 1 -211 0 0 -0.19894157e+00 -0.50333271e-01 -0.11183817e+00 0.13957000e+00
- 1 211 0 0 0.19694499e+00 -0.59563431e-01 0.60358617e+00 0.13957000e+00
- 2 111 480 481 -0.56997269e+00 -0.43174061e+00 0.84539495e+00 0.13498000e+00
- 1 -2212 0 0 0.18049886e+00 -0.28606814e+00 0.32732476e+01 0.93827000e+00
- 1 211 0 0 -0.39033775e-01 -0.55265542e-01 0.14349248e+01 0.13957000e+00
- 1 211 0 0 0.37120244e+00 0.14099792e-01 0.72630410e+00 0.13957000e+00
- 1 -211 0 0 -0.68990802e-01 0.15365418e+00 0.52476202e+00 0.13957000e+00
- 2 111 482 483 0.39517200e+00 -0.90167127e-01 0.11471546e+01 0.13498000e+00
- 1 22 0 0 0.23353538e-01 -0.35100471e+00 0.43193109e+02 0.00000000e+00
- 1 22 0 0 -0.49657066e+00 -0.13939444e+00 0.49269136e+02 0.00000000e+00
- 1 2112 0 0 -0.62676130e-01 0.21133488e+00 0.11081562e+03 0.93957000e+00
- 2 111 484 485 -0.94740055e-01 0.23446827e-01 0.32089567e+02 0.13498000e+00
- 1 22 0 0 -0.11115502e+00 0.19209556e+00 0.23252623e+02 0.00000000e+00
- 1 22 0 0 0.35163335e+00 0.10317159e+01 0.23657480e+03 0.00000000e+00
- 1 321 0 0 -0.60523055e+00 0.14410562e+01 0.77385533e+03 0.49360000e+00
- 2 111 486 487 -0.11191535e+01 0.17295500e+01 0.10557806e+04 0.13498000e+00
- 1 -211 0 0 -0.53840729e-01 0.10723652e+00 0.20663207e+03 0.13957000e+00
- 1 211 0 0 -0.38063743e+00 -0.46141817e-02 0.17881835e+03 0.13957000e+00
- 2 421 488 489 0.42182580e+02 0.33913300e+01 -0.27423914e+03 0.18645000e+01
- 1 211 0 0 0.40721301e+01 0.30804265e+00 -0.26340867e+02 0.13957000e+00
- 1 22 0 0 0.47741788e+00 -0.14681075e+00 -0.47306123e+01 0.00000000e+00
- 1 22 0 0 0.87925151e+00 -0.44619874e+00 -0.10200908e+02 0.00000000e+00
- 2 311 490 490 0.20977924e+01 0.10825445e+00 -0.13354157e+02 0.49767000e+00
- 1 211 0 0 0.13401972e+01 0.27229080e+00 -0.10544531e+02 0.13957000e+00
- 1 130 0 0 0.27368063e+00 -0.66072751e-01 -0.26318684e+01 0.49767000e+00
- 2 310 491 492 0.13955850e+00 -0.24433263e+00 -0.25418356e+01 0.49767000e+00
- 1 -321 0 0 -0.10603886e+00 -0.30812327e+00 -0.10537829e+01 0.49360000e+00
- 1 211 0 0 0.24039421e+00 -0.29297030e+00 -0.16423014e+01 0.13957000e+00
- 1 -211 0 0 -0.17453522e+00 -0.21815265e+00 -0.50622182e+00 0.13957000e+00
- 2 111 493 494 0.31399890e+00 -0.11104708e-01 -0.18145752e+01 0.13498000e+00
- 1 22 0 0 0.76819595e+00 -0.38538903e+00 0.39327079e-02 0.00000000e+00
- 1 22 0 0 0.22871896e+00 -0.20092495e+00 0.21950248e-01 0.00000000e+00
- 1 -211 0 0 0.48160306e+00 -0.29853545e+00 -0.65179960e+00 0.13957000e+00
- 1 211 0 0 -0.68049923e-01 -0.19486441e+00 -0.52420165e+00 0.13957000e+00
- 2 111 495 496 -0.54114338e-01 -0.32627517e-01 -0.17066891e+00 0.13498000e+00
- 1 -211 0 0 0.59082017e+00 -0.96489321e+00 -0.60704227e+00 0.13957000e+00
- 1 211 0 0 0.83975235e-01 -0.50811433e+00 -0.28786919e-01 0.13957000e+00
- 2 310 497 498 -0.18818990e+00 -0.35834453e+00 -0.22907253e+01 0.49767000e+00
- 1 130 0 0 0.43962240e+00 -0.45076054e+00 -0.41712076e+01 0.49767000e+00
- 1 211 0 0 -0.25898432e+00 -0.80456139e-01 -0.35702289e+01 0.13957000e+00
- 1 -211 0 0 0.47357501e+00 -0.18842691e+00 -0.97623768e+01 0.13957000e+00
- 1 211 0 0 -0.11815439e+00 -0.43460828e+00 -0.64248559e+01 0.13957000e+00
- 1 -211 0 0 -0.10241235e-01 -0.84930300e-01 -0.33333234e+01 0.13957000e+00
- 2 221 499 501 0.90908184e-01 -0.40762999e+00 -0.10127117e+02 0.54745000e+00
- 1 -211 0 0 -0.21752887e+00 -0.46991852e+00 -0.25690409e+01 0.13957000e+00
- 2 111 502 503 0.74397316e-01 0.28936541e-02 -0.46123986e+01 0.13498000e+00
- 1 22 0 0 -0.62871268e+00 -0.70555953e+00 -0.50067460e+02 0.00000000e+00
- 1 22 0 0 -0.97401135e-01 -0.16225886e+00 -0.12977402e+02 0.00000000e+00
- 1 211 0 0 -0.32852967e+00 -0.47483901e+00 -0.10328521e+02 0.13957000e+00
- 2 111 504 505 0.26512798e+00 -0.26705920e+00 -0.11360409e+02 0.13498000e+00
- 1 2112 0 0 -0.73909981e+00 0.40619298e+00 -0.19770918e+02 0.93957000e+00
- 1 -211 0 0 -0.26977603e+00 0.29486671e+00 -0.81036106e+01 0.13957000e+00
- 1 -2112 0 0 -0.83926993e+00 -0.34883622e+00 -0.40917654e+02 0.93957000e+00
- 2 111 506 507 -0.24853243e+00 -0.18345624e+00 -0.51216691e+01 0.13498000e+00
- 1 22 0 0 -0.72111101e+00 0.51367234e+00 -0.15199915e+02 0.00000000e+00
- 1 22 0 0 -0.73478558e+00 0.36597260e+00 -0.13775997e+02 0.00000000e+00
- 1 321 0 0 -0.30003262e+00 0.35490791e+00 -0.12130678e+02 0.49360000e+00
- 2 111 508 509 0.15966334e+00 0.18085543e-01 -0.13139321e+02 0.13498000e+00
- 1 130 0 0 -0.52150426e-01 0.10168762e+01 -0.20656814e+02 0.49767000e+00
- 1 22 0 0 -0.67975158e+00 0.55204518e-01 -0.36346384e+02 0.00000000e+00
- 1 22 0 0 -0.53028022e-01 0.21697198e-01 -0.16733338e+01 0.00000000e+00
- 1 -211 0 0 -0.28707280e+00 0.46301947e+00 -0.12873523e+02 0.13957000e+00
- 2 111 510 511 -0.10049550e+00 0.36341392e+00 -0.35150634e+02 0.13498000e+00
- 1 211 0 0 0.32552972e+00 0.28379893e+00 -0.13910163e+03 0.13957000e+00
- 2 111 512 514 -0.51096144e+00 -0.95597394e-01 -0.20046096e+03 0.13498000e+00
- 2 310 515 516 -0.12223976e+00 -0.33061223e+00 -0.39028629e+03 0.49767000e+00
- 2 -311 517 517 0.37330415e+00 -0.12786358e+00 -0.47490657e+03 0.49767000e+00
- 1 -211 0 0 -0.16416755e+00 0.12133403e+00 -0.27663887e+03 0.13957000e+00
- 1 -211 0 0 0.40958335e-01 -0.27015817e-01 -0.21390780e+03 0.13957000e+00
- 1 211 0 0 0.18865802e+00 -0.46131105e-01 -0.10837080e+03 0.13957000e+00
- 2 111 518 519 0.18084597e+00 -0.11129592e+00 -0.23839182e+03 0.13498000e+00
- 1 211 0 0 0.62323160e-01 -0.13546316e+00 -0.10122557e+03 0.13957000e+00
- 1 -211 0 0 0.75417865e-01 -0.27941382e+00 -0.21540873e+03 0.13957000e+00
- 2 221 520 522 0.24798124e+00 -0.88024676e+00 -0.11288239e+04 0.54745000e+00
- 1 -2112 0 0 -0.10255621e+00 -0.71412462e+00 -0.19334583e+03 0.93957000e+00
- 2 111 523 524 -0.26563203e-01 -0.26690484e+00 -0.61712720e+02 0.13498000e+00
- 1 -321 0 0 0.61506281e+00 0.11889101e+00 -0.37817981e+02 0.49360000e+00
- 1 211 0 0 -0.10339019e+00 -0.16716270e+00 -0.12962685e+02 0.13957000e+00
- 1 321 0 0 -0.37244762e+00 0.23841442e+00 -0.92336397e+02 0.49360000e+00
- 1 -211 0 0 -0.22849561e+00 -0.28066882e+00 -0.77828925e+02 0.13957000e+00
- 1 -321 0 0 0.28364751e+00 -0.38273139e+00 -0.60772073e+01 0.49360000e+00
- 2 111 525 526 -0.25926952e+00 -0.12369474e+00 -0.45909626e+01 0.13498000e+00
- 1 211 0 0 -0.33343142e+00 0.86459838e-01 -0.79130632e+00 0.13957000e+00
- 1 -211 0 0 -0.94225817e-01 -0.18811077e+00 -0.32811552e+01 0.13957000e+00
- 1 321 0 0 -0.30419001e+00 -0.17722390e+00 -0.27402831e+01 0.49360000e+00
- 2 111 527 528 -0.42200747e+00 -0.31450951e+00 -0.81955573e+00 0.13498000e+00
- 2 -311 529 529 0.57364836e-01 -0.33461331e+00 -0.42403191e+01 0.49767000e+00
- 1 -211 0 0 0.88091021e-01 0.18429096e+00 -0.75763044e+00 0.13957000e+00
- 1 -211 0 0 0.12507479e+00 -0.42588086e-01 -0.74193246e+00 0.13957000e+00
- 1 211 0 0 -0.23918880e+00 0.69160824e-01 -0.11125279e+01 0.13957000e+00
- 2 111 530 531 -0.19767413e+00 0.38731636e-01 -0.31639117e+01 0.13498000e+00
- 1 211 0 0 -0.10203793e+00 -0.81101016e-01 0.44974069e-02 0.13957000e+00
- 2 111 532 533 -0.80358678e-01 0.72227566e+00 -0.86658975e+00 0.13498000e+00
- 1 211 0 0 -0.69019312e+00 -0.54170359e+00 -0.65268408e+00 0.13957000e+00
- 1 -211 0 0 -0.30235856e+00 0.36988906e-01 -0.88656311e-01 0.13957000e+00
- 2 111 534 535 -0.21346069e+00 -0.32757393e+00 -0.28257504e+00 0.13498000e+00
- 2 311 536 536 -0.99203167e+00 0.12659761e+01 0.53401288e+00 0.49767000e+00
- 1 211 0 0 -0.48075558e+00 0.13928933e+01 0.84766835e+00 0.13957000e+00
- 2 310 537 538 -0.13783393e+00 0.21775199e+00 -0.23569539e+00 0.49767000e+00
- 1 22 0 0 -0.33551344e+00 0.33284605e+00 0.80118628e+00 0.00000000e+00
- 1 22 0 0 -0.21772883e+00 0.39404978e+00 0.82900694e+00 0.00000000e+00
- 1 211 0 0 0.35176252e+00 0.12866985e+01 0.17870411e-02 0.13957000e+00
- 1 -211 0 0 -0.18496575e+00 0.72130255e-01 0.13621574e+00 0.13957000e+00
- 1 211 0 0 0.14521316e+01 0.15199583e+01 0.31146166e+00 0.13957000e+00
- 1 -211 0 0 0.12318462e+01 0.39318937e+00 0.26415113e+00 0.13957000e+00
- 2 -311 539 539 0.31502986e+00 0.89571696e-01 0.10965267e+00 0.49767000e+00
- 2 111 540 541 0.79901593e+00 -0.20784194e+00 0.18714291e+00 0.13498000e+00
- 1 2212 0 0 0.58213191e+00 0.63709735e+00 0.58217190e+01 0.93827000e+00
- 1 211 0 0 -0.44715671e-01 0.81517443e-01 0.33946217e+00 0.13957000e+00
- 1 22 0 0 0.12413095e+00 0.67944701e+00 0.21817033e+01 0.00000000e+00
- 1 22 0 0 0.90398664e-01 0.82185642e-01 0.19505565e+01 0.00000000e+00
- 1 -2212 0 0 0.10411669e+01 0.11042636e+00 0.24790539e+01 0.93827000e+00
- 1 -211 0 0 0.27790997e-01 -0.53752972e-01 0.16444135e+00 0.13957000e+00
- 2 -311 542 542 0.12103812e+00 0.40928834e+00 0.87404135e+01 0.49767000e+00
- 1 -211 0 0 0.39241255e+00 0.97700960e+00 0.14567110e+02 0.13957000e+00
- 1 22 0 0 0.67384813e+00 0.14368439e+00 0.45812500e+01 0.00000000e+00
- 1 22 0 0 0.16955620e+00 0.39718143e+00 0.42793847e+01 0.00000000e+00
- 1 -211 0 0 0.72022239e+00 0.53400688e+00 0.12063246e+02 0.13957000e+00
- 2 111 543 544 0.19042462e+00 0.21907582e+00 0.11118508e+02 0.13498000e+00
- 1 211 0 0 0.31925575e+00 0.12148074e+00 0.94915729e+02 0.13957000e+00
- 2 111 545 546 -0.33903463e+00 -0.77778443e-01 0.42151754e+02 0.13498000e+00
- 1 22 0 0 0.75664378e-02 -0.15982569e+00 0.35415668e+01 0.00000000e+00
- 1 22 0 0 -0.23966159e-02 -0.66800515e-01 0.43245969e+00 0.00000000e+00
- 1 22 0 0 -0.17590671e-01 -0.19679250e+00 0.26278789e+02 0.00000000e+00
- 1 22 0 0 -0.10702146e-01 -0.26698059e-01 0.77764056e+00 0.00000000e+00
- 1 -211 0 0 0.98307420e-02 0.65266444e-01 0.47348972e+01 0.13957000e+00
- 2 111 547 548 0.36893739e+00 -0.37687601e+00 0.10594852e+03 0.13498000e+00
- 1 22 0 0 0.74380149e-01 0.24912699e-01 0.21540017e+01 0.00000000e+00
- 1 22 0 0 -0.38572990e-01 0.21437700e-02 0.41358775e+01 0.00000000e+00
- 1 22 0 0 0.14806397e+00 -0.12118307e+00 0.74370263e+01 0.00000000e+00
- 1 22 0 0 0.41093050e+00 -0.26942067e+00 0.12494013e+02 0.00000000e+00
- 1 22 0 0 -0.10577096e+00 -0.40259913e+00 0.15915129e+02 0.00000000e+00
- 1 22 0 0 0.29633847e+00 -0.69514844e-01 0.66993194e+01 0.00000000e+00
- 1 22 0 0 -0.31840480e+00 -0.53623357e+00 0.16472198e+02 0.00000000e+00
- 2 111 549 550 0.21754277e+00 0.63584686e-01 0.12156040e+02 0.13498000e+00
- 1 -211 0 0 0.79074892e-01 0.25211984e-01 0.21759836e+01 0.13957000e+00
- 1 211 0 0 -0.61758161e-01 0.26036818e-01 0.20874253e+01 0.13957000e+00
- 2 111 551 552 0.25586602e+00 0.64017571e-01 0.56213500e+01 0.13498000e+00
- 1 211 0 0 -0.14113657e+00 -0.28580879e+00 0.34346523e+01 0.13957000e+00
- 2 111 553 554 0.58731890e+00 -0.49808145e-01 0.82707164e+01 0.13498000e+00
- 1 211 0 0 0.27119770e+00 -0.26427880e+00 0.45240686e+01 0.13957000e+00
- 1 -211 0 0 -0.55467493e-01 0.25964788e+00 0.30248737e+01 0.13957000e+00
- 1 211 0 0 -0.29211083e+00 -0.12056931e+00 0.15229025e+01 0.13957000e+00
- 1 -211 0 0 0.54890021e-01 0.63878335e+00 0.30538928e+01 0.13957000e+00
- 1 321 0 0 0.33699494e+00 -0.42848459e+00 0.52495674e+01 0.49360000e+00
- 2 111 555 556 0.37530022e+00 0.15033337e+00 0.51065674e+01 0.13498000e+00
- 1 130 0 0 -0.87367532e-01 0.75668736e-01 0.57886573e+01 0.49767000e+00
- 2 310 557 558 -0.15719590e-01 0.26945147e+00 0.78088841e+01 0.49767000e+00
- 2 -311 559 559 -0.47953717e-01 -0.23117066e+00 0.12889294e+03 0.49767000e+00
- 1 -211 0 0 0.15263577e+00 -0.88395688e-05 0.19992956e+03 0.13957000e+00
- 1 2212 0 0 -0.95182548e-01 -0.23578926e+00 0.66615470e+03 0.93827000e+00
- 1 211 0 0 0.20117159e-01 0.37144578e-01 0.41689261e+02 0.13957000e+00
- 1 130 0 0 0.68824551e+00 -0.56304803e+00 0.46132986e+01 0.49767000e+00
- 1 22 0 0 -0.34962756e+00 0.23455063e+00 0.58598863e+01 0.00000000e+00
- 1 22 0 0 -0.11616703e+00 0.44807361e-02 0.21265552e+01 0.00000000e+00
- 1 -2112 0 0 -0.73574297e+00 0.80986302e+00 0.50528220e+01 0.93957000e+00
- 1 211 0 0 -0.18357072e+00 0.32362591e+00 0.28153878e+01 0.13957000e+00
- 1 -211 0 0 0.52689774e+00 -0.40213260e+00 0.65099721e+01 0.13957000e+00
- 1 211 0 0 0.29686830e+00 -0.34335279e+00 0.14939563e+01 0.13957000e+00
- 1 2112 0 0 -0.13212620e+01 0.14970234e+01 0.93494575e+01 0.93957000e+00
- 1 -211 0 0 -0.13036914e-01 0.18716877e+00 0.63614169e+00 0.13957000e+00
- 2 311 560 560 0.30444902e+01 0.52648064e+00 -0.23711037e+02 0.49767000e+00
- 2 223 561 563 0.63708826e+01 -0.56677843e+00 -0.41682936e+02 0.77660062e+00
- 1 22 0 0 0.16150730e-02 -0.13133172e-01 -0.40367903e-01 0.00000000e+00
- 1 22 0 0 0.56937140e+00 0.23326413e-01 -0.37310749e+01 0.00000000e+00
- 1 22 0 0 0.80855634e+00 -0.15078630e+00 -0.59422372e+01 0.00000000e+00
- 1 22 0 0 0.52995217e+00 0.20944093e-02 -0.41514595e+01 0.00000000e+00
- 1 22 0 0 0.19540467e+00 -0.56607107e-01 -0.23192880e+01 0.00000000e+00
- 1 22 0 0 0.14795794e+00 -0.12640055e-01 -0.80679093e+00 0.00000000e+00
- 2 111 564 565 -0.45614551e+00 0.10391003e+00 -0.17737886e+01 0.13498000e+00
- 2 111 566 567 -0.10781771e+00 -0.10178918e+00 -0.19025690e+01 0.13498000e+00
- 2 310 568 569 0.58466672e+00 -0.44004978e+00 -0.22522511e+01 0.49767000e+00
- 1 22 0 0 0.54217317e-01 -0.34896893e+00 -0.11513809e+01 0.00000000e+00
- 1 22 0 0 -0.17028130e-01 0.45989791e-02 -0.81284777e-01 0.00000000e+00
- 2 310 570 571 -0.11320213e+01 0.10851589e+01 -0.71673753e+01 0.49767000e+00
- 1 130 0 0 -0.50476421e+00 0.72808910e+00 -0.67174710e+01 0.49767000e+00
- 1 22 0 0 0.27247202e-01 0.27482550e-01 -0.28618732e+00 0.00000000e+00
- 1 22 0 0 -0.60493546e-01 0.90632908e-01 -0.16348077e+00 0.00000000e+00
- 1 -211 0 0 -0.77496787e-01 -0.61253209e-01 -0.23884814e+01 0.13957000e+00
- 1 211 0 0 -0.28106989e+00 -0.11693472e+00 -0.10308023e+01 0.13957000e+00
- 2 111 572 573 -0.89337902e+00 -0.24473627e+00 -0.57719594e+02 0.13498000e+00
- 2 111 574 575 -0.15359295e+00 0.25608056e-02 -0.25731441e+02 0.13498000e+00
- 1 22 0 0 0.40218991e-02 -0.20622086e-01 -0.41804587e+01 0.00000000e+00
- 1 22 0 0 0.15626710e+00 0.10590539e+00 -0.10652550e+02 0.00000000e+00
- 1 22 0 0 -0.23027612e-01 0.31240750e-01 -0.23435848e+01 0.00000000e+00
- 1 22 0 0 -0.87591179e-01 0.39569759e+00 -0.63692113e+02 0.00000000e+00
- 1 22 0 0 0.20071371e+00 -0.13802013e+00 -0.33407848e+01 0.00000000e+00
- 1 22 0 0 0.19650316e+00 -0.15948121e+00 -0.20347168e+01 0.00000000e+00
- 2 310 576 577 0.56045535e+00 -0.34976687e+00 -0.50427942e+01 0.49767000e+00
- 1 22 0 0 0.25789401e+00 0.29991950e-01 -0.12607635e+01 0.00000000e+00
- 1 22 0 0 0.76817037e+00 -0.14369071e+00 -0.37655884e+01 0.00000000e+00
- 1 -211 0 0 0.84935746e+00 -0.74052765e-01 -0.29516000e+01 0.13957000e+00
- 1 211 0 0 0.17823453e+00 -0.20887959e+00 -0.85679937e+00 0.13957000e+00
- 1 22 0 0 0.19081660e+00 -0.29458343e+00 -0.96663577e-01 0.00000000e+00
- 1 22 0 0 -0.83756570e-02 -0.45068290e-01 -0.55212594e-01 0.00000000e+00
- 1 22 0 0 -0.35463938e-01 -0.77328043e-01 -0.53012903e-02 0.00000000e+00
- 1 22 0 0 0.27875185e-02 -0.21517561e+00 -0.23038294e+00 0.00000000e+00
- 1 22 0 0 -0.63351649e-01 -0.47563679e-01 -0.48734610e-02 0.00000000e+00
- 1 22 0 0 -0.26037127e-01 -0.18983553e+00 -0.17592476e+00 0.00000000e+00
- 1 22 0 0 -0.49114446e+00 -0.86512242e+00 -0.15688934e+01 0.00000000e+00
- 1 22 0 0 -0.85810991e-01 -0.92322245e-01 -0.13587125e+00 0.00000000e+00
- 1 130 0 0 0.47300777e+00 -0.43925475e+00 -0.50995259e+00 0.49767000e+00
- 1 130 0 0 -0.23772722e+00 -0.75965136e-01 -0.31207687e+00 0.49767000e+00
- 1 22 0 0 -0.12551883e+00 -0.28185244e+00 -0.29078612e+00 0.00000000e+00
- 1 22 0 0 -0.30682640e-01 -0.44562439e+00 -0.48710415e+00 0.00000000e+00
- 1 22 0 0 -0.34374635e+00 -0.33739550e+00 0.53389781e+00 0.00000000e+00
- 1 22 0 0 -0.22622633e+00 -0.94345108e-01 0.31149714e+00 0.00000000e+00
- 1 22 0 0 0.37769448e+00 -0.11622369e+00 0.10433533e+01 0.00000000e+00
- 1 22 0 0 0.17477519e-01 0.26056560e-01 0.10380130e+00 0.00000000e+00
- 1 22 0 0 -0.82822694e-01 0.59285654e-01 0.29295355e+02 0.00000000e+00
- 1 22 0 0 -0.11917362e-01 -0.35838827e-01 0.27942116e+01 0.00000000e+00
- 1 22 0 0 -0.90766151e+00 0.14842138e+01 0.90056197e+03 0.00000000e+00
- 1 22 0 0 -0.21149201e+00 0.24533619e+00 0.15521862e+03 0.00000000e+00
- 1 -321 0 0 0.26713125e+02 0.20196771e+01 -0.17506026e+03 0.49360000e+00
- 2 20213 578 579 0.15469455e+02 0.13716529e+01 -0.99178887e+02 0.10082573e+01
- 1 130 0 0 0.20977924e+01 0.10825445e+00 -0.13354157e+02 0.49767000e+00
- 1 211 0 0 0.28335098e-01 -0.34020299e+00 -0.16813583e+01 0.13957000e+00
- 1 -211 0 0 0.11122340e+00 0.95870363e-01 -0.86047738e+00 0.13957000e+00
- 1 22 0 0 0.35011229e-01 -0.37181644e-01 -0.48835927e+00 0.00000000e+00
- 1 22 0 0 0.27898767e+00 0.26076936e-01 -0.13262159e+01 0.00000000e+00
- 1 22 0 0 -0.34339307e-02 0.33085305e-01 0.37066295e-02 0.00000000e+00
- 1 22 0 0 -0.50680407e-01 -0.65712822e-01 -0.17437554e+00 0.00000000e+00
- 1 -211 0 0 -0.21745659e+00 -0.20210155e+00 -0.19528921e+01 0.13957000e+00
- 1 211 0 0 0.29266696e-01 -0.15624298e+00 -0.33783319e+00 0.13957000e+00
- 1 -211 0 0 0.11852351e-01 -0.52505004e-01 -0.17078022e+01 0.13957000e+00
- 1 211 0 0 0.19355131e-01 -0.34431868e+00 -0.51035972e+01 0.13957000e+00
- 2 111 580 581 0.59700702e-01 -0.10806301e-01 -0.33157176e+01 0.13498000e+00
- 1 22 0 0 0.52267195e-01 -0.64390957e-01 -0.26498775e+01 0.00000000e+00
- 1 22 0 0 0.22130121e-01 0.67284611e-01 -0.19625211e+01 0.00000000e+00
- 1 22 0 0 0.13836903e+00 -0.22851752e+00 -0.74422724e+01 0.00000000e+00
- 1 22 0 0 0.12675895e+00 -0.38541680e-01 -0.39181366e+01 0.00000000e+00
- 1 22 0 0 -0.21975798e+00 -0.15689389e+00 -0.49146012e+01 0.00000000e+00
- 1 22 0 0 -0.28774449e-01 -0.26562355e-01 -0.20706792e+00 0.00000000e+00
- 1 22 0 0 0.12972365e+00 0.48881837e-01 -0.62296200e+01 0.00000000e+00
- 1 22 0 0 0.29939687e-01 -0.30796294e-01 -0.69097012e+01 0.00000000e+00
- 1 22 0 0 -0.64842184e-01 0.24803022e+00 -0.17614185e+02 0.00000000e+00
- 1 22 0 0 -0.35653314e-01 0.11538370e+00 -0.17536449e+02 0.00000000e+00
- 1 22 0 0 -0.48175603e+00 -0.74653587e-01 -0.17026479e+03 0.00000000e+00
- 1 11 0 0 -0.27510941e-01 -0.20152826e-01 -0.28417587e+02 0.51000000e-03
- 1 -11 0 0 -0.16944702e-02 -0.79098066e-03 -0.17785818e+01 0.51000000e-03
- 1 211 0 0 -0.69461325e-01 0.55226878e-01 -0.17560696e+03 0.13957000e+00
- 1 -211 0 0 -0.52778440e-01 -0.38583911e+00 -0.21467933e+03 0.13957000e+00
- 1 130 0 0 0.37330415e+00 -0.12786358e+00 -0.47490657e+03 0.49767000e+00
- 1 22 0 0 0.93826774e-01 -0.25615754e-01 -0.16701475e+03 0.00000000e+00
- 1 22 0 0 0.87019198e-01 -0.85680169e-01 -0.71377068e+02 0.00000000e+00
- 2 111 582 583 0.12915668e+00 -0.25193932e+00 -0.30376880e+03 0.13498000e+00
- 2 111 584 585 0.98846132e-01 -0.54825122e+00 -0.55802007e+03 0.13498000e+00
- 2 111 586 587 0.19978425e-01 -0.80056222e-01 -0.26703507e+03 0.13498000e+00
- 1 22 0 0 0.10509101e-02 -0.26555382e+00 -0.58789619e+02 0.00000000e+00
- 1 22 0 0 -0.27614113e-01 -0.13510201e-02 -0.29231010e+01 0.00000000e+00
- 1 22 0 0 0.35929577e-02 -0.25398466e-01 -0.87513953e+00 0.00000000e+00
- 1 22 0 0 -0.26286248e+00 -0.98296277e-01 -0.37158231e+01 0.00000000e+00
- 1 22 0 0 -0.30143208e+00 -0.21262549e+00 -0.67523287e+00 0.00000000e+00
- 1 22 0 0 -0.12057540e+00 -0.10188402e+00 -0.14432287e+00 0.00000000e+00
- 1 130 0 0 0.57364836e-01 -0.33461331e+00 -0.42403191e+01 0.49767000e+00
- 1 22 0 0 0.20209092e-01 0.40670431e-02 -0.19318313e+00 0.00000000e+00
- 1 22 0 0 -0.21788322e+00 0.34664593e-01 -0.29707285e+01 0.00000000e+00
- 1 22 0 0 -0.60623783e-01 0.66966087e+00 -0.84234422e+00 0.00000000e+00
- 1 22 0 0 -0.19734895e-01 0.52614786e-01 -0.24245526e-01 0.00000000e+00
- 1 22 0 0 0.46406330e-02 -0.25803919e-01 -0.64060090e-01 0.00000000e+00
- 1 22 0 0 -0.21810132e+00 -0.30177001e+00 -0.21851495e+00 0.00000000e+00
- 2 310 588 589 -0.99203167e+00 0.12659761e+01 0.53401288e+00 0.49767000e+00
- 2 111 590 591 0.62659711e-01 -0.77180219e-01 -0.17241781e-01 0.13498000e+00
- 2 111 592 593 -0.20049364e+00 0.29493221e+00 -0.21845361e+00 0.13498000e+00
- 1 130 0 0 0.31502986e+00 0.89571696e-01 0.10965267e+00 0.49767000e+00
- 1 22 0 0 0.50968484e+00 -0.19734244e+00 0.10834323e+00 0.00000000e+00
- 1 22 0 0 0.28933109e+00 -0.10499494e-01 0.78799680e-01 0.00000000e+00
- 2 310 594 595 0.12103812e+00 0.40928834e+00 0.87404135e+01 0.49767000e+00
- 1 22 0 0 0.19038804e+00 0.13091870e+00 0.84075581e+01 0.00000000e+00
- 1 22 0 0 0.36573960e-04 0.88157125e-01 0.27109499e+01 0.00000000e+00
- 1 22 0 0 -0.18724252e+00 -0.10090275e+00 0.28330986e+02 0.00000000e+00
- 1 22 0 0 -0.15179211e+00 0.23124307e-01 0.13820769e+02 0.00000000e+00
- 1 22 0 0 0.61300067e-02 -0.36315603e-01 0.35847696e+01 0.00000000e+00
- 1 22 0 0 0.36280738e+00 -0.34056041e+00 0.10236375e+03 0.00000000e+00
- 1 22 0 0 0.58435530e-01 0.16213765e-01 0.68436956e+01 0.00000000e+00
- 1 22 0 0 0.15910724e+00 0.47370922e-01 0.53123443e+01 0.00000000e+00
- 1 22 0 0 0.23957941e+00 0.60221475e-01 0.39489531e+01 0.00000000e+00
- 1 22 0 0 0.16286611e-01 0.37960964e-02 0.16723969e+01 0.00000000e+00
- 1 22 0 0 0.21112424e+00 -0.60394039e-01 0.37576281e+01 0.00000000e+00
- 1 22 0 0 0.37619465e+00 0.10585894e-01 0.45130883e+01 0.00000000e+00
- 1 22 0 0 0.21597953e+00 0.84761061e-01 0.36958367e+01 0.00000000e+00
- 1 22 0 0 0.15932069e+00 0.65572308e-01 0.14107307e+01 0.00000000e+00
- 1 211 0 0 -0.53329572e-01 0.34593185e+00 0.42261749e+01 0.13957000e+00
- 1 -211 0 0 0.37609982e-01 -0.76480385e-01 0.35827092e+01 0.13957000e+00
- 1 130 0 0 -0.47953717e-01 -0.23117066e+00 0.12889294e+03 0.49767000e+00
- 2 310 596 597 0.30444902e+01 0.52648064e+00 -0.23711037e+02 0.49767000e+00
- 1 -211 0 0 0.17345379e+01 0.83615005e-01 -0.10480293e+02 0.13957000e+00
- 1 211 0 0 0.18922722e+01 -0.27104342e+00 -0.13441513e+02 0.13957000e+00
- 2 111 598 599 0.27440725e+01 -0.37935001e+00 -0.17761130e+02 0.13498000e+00
- 1 22 0 0 -0.10181836e-01 -0.81299822e-02 -0.93562872e-02 0.00000000e+00
- 1 22 0 0 -0.44596367e+00 0.11204001e+00 -0.17644323e+01 0.00000000e+00
- 1 22 0 0 -0.12719486e-01 -0.31536494e-01 -0.82947619e-01 0.00000000e+00
- 1 22 0 0 -0.95098229e-01 -0.70252684e-01 -0.18196214e+01 0.00000000e+00
- 2 111 600 601 0.59778064e+00 -0.38372721e+00 -0.16781899e+01 0.13498000e+00
- 2 111 602 603 -0.13113918e-01 -0.56322574e-01 -0.57406115e+00 0.13498000e+00
- 2 111 604 605 -0.87649319e+00 0.72427747e+00 -0.57501857e+01 0.13498000e+00
- 2 111 606 607 -0.25552810e+00 0.36088146e+00 -0.14171896e+01 0.13498000e+00
- 1 22 0 0 -0.11420557e+00 -0.78562066e-02 -0.50721563e+01 0.00000000e+00
- 1 22 0 0 -0.77917345e+00 -0.23688006e+00 -0.52647438e+02 0.00000000e+00
- 1 22 0 0 -0.92688620e-01 0.43729738e-02 -0.59913762e+01 0.00000000e+00
- 1 22 0 0 -0.60904326e-01 -0.18121682e-02 -0.19740065e+02 0.00000000e+00
- 2 111 608 609 0.14894257e+00 -0.27900163e+00 -0.30680782e+01 0.13498000e+00
- 2 111 610 611 0.41151278e+00 -0.70765236e-01 -0.19747161e+01 0.13498000e+00
- 2 213 612 613 0.12851205e+02 0.11297888e+01 -0.82096253e+02 0.86119258e+00
- 2 111 614 615 0.26182503e+01 0.24186416e+00 -0.17082634e+02 0.13498000e+00
- 1 22 0 0 0.91287497e-01 0.22798774e-01 -0.26692571e+01 0.00000000e+00
- 1 22 0 0 -0.31586795e-01 -0.33605075e-01 -0.64646043e+00 0.00000000e+00
- 1 22 0 0 0.12388091e+00 -0.26880341e+00 -0.28683492e+03 0.00000000e+00
- 1 22 0 0 0.52757732e-02 0.16864091e-01 -0.16933881e+02 0.00000000e+00
- 1 22 0 0 0.13225766e+00 -0.40456040e+00 -0.41097522e+03 0.00000000e+00
- 1 22 0 0 -0.33411524e-01 -0.14369081e+00 -0.14704484e+03 0.00000000e+00
- 1 22 0 0 -0.37254129e-01 0.17100980e-01 -0.10266858e+03 0.00000000e+00
- 1 22 0 0 0.57232554e-01 -0.97157202e-01 -0.16436649e+03 0.00000000e+00
- 1 -211 0 0 -0.64523327e+00 0.68112192e+00 0.11504274e+00 0.13957000e+00
- 1 211 0 0 -0.34679841e+00 0.58485418e+00 0.41897014e+00 0.13957000e+00
- 1 22 0 0 0.55216071e-01 -0.77405025e-01 -0.68207719e-01 0.00000000e+00
- 1 22 0 0 0.74436396e-02 0.22480620e-03 0.50965938e-01 0.00000000e+00
- 1 22 0 0 -0.19117357e+00 0.30805507e+00 -0.21861063e+00 0.00000000e+00
- 1 22 0 0 -0.93200684e-02 -0.13122859e-01 0.15701903e-03 0.00000000e+00
- 1 211 0 0 0.13944922e+00 -0.10336986e-01 0.36524421e+01 0.13957000e+00
- 1 -211 0 0 -0.18411103e-01 0.41962533e+00 0.50879714e+01 0.13957000e+00
- 2 111 616 617 0.13526444e+01 0.48685819e-01 -0.95934534e+01 0.13498000e+00
- 2 111 618 619 0.16918458e+01 0.47779482e+00 -0.14117584e+02 0.13498000e+00
- 1 22 0 0 0.47075641e+00 -0.37748270e-01 -0.27584665e+01 0.00000000e+00
- 1 22 0 0 0.22733160e+01 -0.34160174e+00 -0.15002663e+02 0.00000000e+00
- 1 22 0 0 0.58256776e+00 -0.37967472e+00 -0.15583163e+01 0.00000000e+00
- 1 22 0 0 0.15212883e-01 -0.40524892e-02 -0.11987360e+00 0.00000000e+00
- 1 22 0 0 0.29468925e-01 0.34898412e-01 -0.20253916e+00 0.00000000e+00
- 1 22 0 0 -0.42582843e-01 -0.91220986e-01 -0.37152199e+00 0.00000000e+00
- 1 22 0 0 -0.56623934e+00 0.49600235e+00 -0.41002702e+01 0.00000000e+00
- 1 22 0 0 -0.31025385e+00 0.22827512e+00 -0.16499155e+01 0.00000000e+00
- 1 22 0 0 -0.21596563e+00 0.23084615e+00 -0.83460882e+00 0.00000000e+00
- 1 22 0 0 -0.39562471e-01 0.13003532e+00 -0.58258080e+00 0.00000000e+00
- 1 22 0 0 0.23649328e-01 -0.18051985e+00 -0.18177938e+01 0.00000000e+00
- 1 22 0 0 0.12529324e+00 -0.98481788e-01 -0.12502844e+01 0.00000000e+00
- 1 22 0 0 0.41101398e+00 -0.69467055e-01 -0.19768610e+01 0.00000000e+00
- 1 22 0 0 0.49880674e-03 -0.12981808e-02 0.21449688e-02 0.00000000e+00
- 1 211 0 0 0.11456284e+02 0.88840015e+00 -0.74268682e+02 0.13957000e+00
- 2 111 620 621 0.13949208e+01 0.24138861e+00 -0.78275711e+01 0.13498000e+00
- 1 22 0 0 0.14142098e+01 0.18495612e+00 -0.95198933e+01 0.00000000e+00
- 1 22 0 0 0.12040405e+01 0.56908040e-01 -0.75627405e+01 0.00000000e+00
- 1 22 0 0 0.49170574e+00 -0.43317773e-01 -0.36429657e+01 0.00000000e+00
- 1 22 0 0 0.86093863e+00 0.92003591e-01 -0.59504877e+01 0.00000000e+00
- 1 22 0 0 0.40260875e+00 0.55994325e-01 -0.33518783e+01 0.00000000e+00
- 1 22 0 0 0.12892370e+01 0.42180049e+00 -0.10765705e+02 0.00000000e+00
- 1 22 0 0 0.20857525e+00 0.48073832e-01 -0.14696786e+01 0.00000000e+00
- 1 22 0 0 0.11863455e+01 0.19331477e+00 -0.63578925e+01 0.00000000e+00
- 380
- 2 25 2 3 -0.29276887e+02 0.22646359e+02 0.10588187e+03 0.12499896e+03
- 2 23 4 5 -0.32231980e+02 0.34797351e+02 0.87929523e+02 0.90190936e+02
- 2 23 6 8 0.29550931e+01 -0.12150992e+02 0.17952344e+02 0.25171515e+02
- 1 11 0 0 -0.45622313e+02 -0.11603028e+02 0.67181238e+02 0.51000000e-03
- 1 -11 0 0 0.13390333e+02 0.46400379e+02 0.20748285e+02 0.51000000e-03
- 1 -11 0 0 0.10309411e+02 -0.59311733e+01 0.20217106e+02 0.51000000e-03
- 1 11 0 0 -0.72880839e+01 -0.61642302e+01 -0.22449140e+01 0.51000000e-03
- 1 22 0 0 -0.66233580e-01 -0.55588666e-01 -0.19848769e-01 0.00000000e+00
- 2 2 49 49 0.33650795e+01 0.26251038e+02 -0.12019865e+03 0.33000000e+00
- 2 21 49 49 0.47402086e+01 0.15556727e+02 -0.57244006e+02 0.00000000e+00
- 2 21 49 49 -0.65680075e+00 -0.71928381e+00 -0.63854960e+01 0.00000000e+00
- 2 21 49 49 0.70303944e+00 -0.80569980e+00 -0.93260882e+00 0.00000000e+00
- 2 21 49 49 0.15349101e+00 -0.24715374e+00 -0.71373319e-01 0.00000000e+00
- 2 21 49 49 0.15820812e+01 0.38557148e+01 -0.83909158e+01 0.00000000e+00
- 2 21 49 49 0.20018391e+01 -0.58085089e-01 -0.34489737e+01 0.00000000e+00
- 2 21 49 49 -0.20018391e+01 0.58085089e-01 -0.43383354e+01 0.00000000e+00
- 2 21 49 49 -0.59975150e+00 -0.17670310e+00 -0.15424960e+01 0.00000000e+00
- 2 21 49 49 0.39493813e+00 0.27959739e+00 -0.10718580e+02 0.00000000e+00
- 2 21 49 49 -0.15820812e+01 -0.38557148e+01 -0.32583300e+03 0.00000000e+00
- 2 2203 49 49 -0.30338801e+01 0.13763155e+01 -0.64107037e+04 0.77133000e+00
- 2 1 78 78 0.17895683e+02 -0.64080559e+02 0.15638129e+03 0.33000000e+00
- 2 21 78 78 0.23545897e+01 -0.72876826e+01 0.14291848e+02 0.00000000e+00
- 2 21 78 78 0.53033641e+00 -0.30273748e+01 0.55134222e+01 0.00000000e+00
- 2 21 78 78 -0.10500152e+00 -0.50478450e+00 0.10437627e+01 0.00000000e+00
- 2 21 78 78 0.21414097e+01 0.81256619e-01 0.27883843e+01 0.00000000e+00
- 2 21 78 78 0.68549918e+00 0.38597850e+00 0.52750591e+01 0.00000000e+00
- 2 21 78 78 0.16826018e+01 0.56732475e+00 0.18906051e+01 0.00000000e+00
- 2 21 78 78 0.36566790e+00 0.36170940e-01 0.20986708e+01 0.00000000e+00
- 2 21 78 78 -0.16079708e+01 0.94287243e+01 0.14761403e+02 0.00000000e+00
- 2 21 78 78 0.15580908e+01 -0.43542698e+01 0.84851190e+00 0.00000000e+00
- 2 21 78 78 -0.43245631e+00 -0.61623912e+00 0.98826082e+00 0.00000000e+00
- 2 21 78 78 -0.53304988e+00 -0.46600336e+00 0.53027314e+01 0.00000000e+00
- 2 21 78 78 -0.15160640e+01 -0.18740891e+01 0.22544183e+02 0.00000000e+00
- 2 21 78 78 -0.15580908e+01 0.43542698e+01 0.45804352e+02 0.00000000e+00
- 2 21 78 78 -0.53053722e+00 -0.17083090e+01 0.10242799e+03 0.00000000e+00
- 2 21 78 78 0.15160640e+01 0.18740891e+01 0.14905799e+03 0.00000000e+00
- 2 21 78 78 0.43245631e+00 0.61623912e+00 0.30446586e+03 0.00000000e+00
- 2 21 78 78 0.53304988e+00 0.46600336e+00 0.22644595e+03 0.00000000e+00
- 2 21 78 78 0.43262280e+00 -0.94062637e-01 0.59987582e+00 0.00000000e+00
- 2 21 78 78 0.54167287e+00 0.20033144e+00 0.82756346e+01 0.00000000e+00
- 2 21 78 78 -0.11013357e+01 -0.95747971e+00 0.35131126e+02 0.00000000e+00
- 2 21 78 78 0.19904301e+00 0.85806501e-01 0.15540951e+00 0.00000000e+00
- 2 2101 78 78 -0.90690767e-02 0.11080480e+01 0.57285541e+04 0.57933000e+00
- 2 21 136 136 0.17829075e+01 0.99922793e+00 0.26932600e+01 0.00000000e+00
- 2 21 136 136 0.59975150e+00 0.17670310e+00 0.18364751e+01 0.00000000e+00
- 2 21 136 136 0.53053722e+00 0.17083090e+01 0.56435683e+01 0.00000000e+00
- 2 21 136 136 -0.17829075e+01 -0.99922793e+00 -0.62546345e+00 0.00000000e+00
- 2 21 136 136 -0.39493813e+00 -0.27959739e+00 -0.26796578e+00 0.00000000e+00
- 2 92 50 77 0.50663243e+01 0.41514838e+02 -0.69498082e+04 0.33199345e+03
- 2 213 145 146 0.21276808e+01 0.18183143e+02 -0.83455322e+02 0.85662242e+00
- 1 -211 0 0 0.14455063e+01 0.38656314e+01 -0.14196578e+02 0.13957000e+00
- 2 3222 147 148 0.22464164e+01 0.10657430e+02 -0.44223550e+02 0.11893700e+01
- 2 -3224 149 150 0.47442863e+00 0.33261952e+01 -0.15215591e+02 0.13667044e+01
- 2 111 151 152 0.11063078e+01 0.45766151e+01 -0.16115200e+02 0.13498000e+00
- 2 213 153 154 0.50560220e+00 0.98440773e+00 -0.68095694e+01 0.54640611e+00
- 2 -213 155 156 0.24475793e+00 -0.49886723e+00 -0.29457511e+01 0.76869149e+00
- 2 323 157 158 -0.20585123e+00 0.19250499e+00 -0.98392260e+00 0.92382713e+00
- 2 -313 159 160 0.97352567e-01 0.12349573e+00 -0.27056066e+01 0.90036509e+00
- 2 113 161 162 0.99031892e+00 0.80406723e+00 -0.20392000e+01 0.73054106e+00
- 2 -213 163 164 0.10979256e+01 -0.25962852e+00 -0.28341686e+01 0.81176441e+00
- 2 221 165 167 0.60906198e+00 0.21735214e+01 -0.35556853e+01 0.54745000e+00
- 1 211 0 0 0.43970100e+00 -0.36994123e+00 -0.13576892e+01 0.13957000e+00
- 1 -211 0 0 -0.39626511e+00 0.32374734e-01 -0.11702778e+01 0.13957000e+00
- 2 323 168 169 -0.45210834e+00 0.24559452e+00 -0.20440696e+01 0.89720908e+00
- 2 -311 170 170 -0.45972552e+00 -0.19364602e+00 -0.17555984e+01 0.49767000e+00
- 2 223 171 173 -0.32772069e+00 0.35294947e+00 -0.98351154e+01 0.78424086e+00
- 2 223 174 176 -0.62137089e-01 -0.89770224e+00 -0.87360968e+01 0.77623523e+00
- 2 -213 177 178 -0.25831791e+00 -0.11033633e+00 -0.68175570e+02 0.74608526e+00
- 2 113 179 180 -0.33423620e-01 -0.12930448e+01 -0.86126449e+02 0.81673021e+00
- 2 113 181 182 -0.49706758e+00 0.39263157e+00 -0.96509043e+02 0.40822647e+00
- 2 213 183 184 -0.41524306e-01 -0.53115580e+00 -0.76400282e+02 0.75227776e+00
- 2 221 185 187 -0.19981813e+00 -0.81274438e+00 -0.87670253e+02 0.54745000e+00
- 2 223 188 190 -0.60297209e+00 -0.54654221e+00 -0.18139783e+03 0.80918219e+00
- 2 -213 191 192 0.79807367e-01 -0.23942600e+00 -0.19449863e+03 0.84548485e+00
- 2 221 193 195 -0.64218510e+00 0.55018078e+00 -0.84725273e+03 0.54745000e+00
- 2 3222 196 197 -0.10837528e+01 0.50866053e+00 -0.28275995e+04 0.11893700e+01
- 2 323 198 199 -0.11356738e+01 0.29847004e+00 -0.22641989e+04 0.88338793e+00
- 2 92 79 135 0.23475212e+02 -0.65766612e+02 0.68346464e+04 0.58817473e+03
- 1 -211 0 0 0.83488988e+00 -0.35044887e+01 0.86101823e+01 0.13957000e+00
- 2 113 200 201 0.10449948e+02 -0.35274350e+02 0.86331748e+02 0.77439186e+00
- 2 213 202 203 0.48980642e+01 -0.18590494e+02 0.44706040e+02 0.10915345e+01
- 1 -211 0 0 0.53663719e+00 -0.21344648e+01 0.37188691e+01 0.13957000e+00
- 1 211 0 0 0.12915930e+01 -0.51329378e+01 0.12076385e+02 0.13957000e+00
- 2 -213 204 205 0.11032277e+01 -0.30561883e+01 0.60752095e+01 0.73233522e+00
- 2 223 206 207 0.89188997e+00 -0.21052344e+01 0.59872486e+01 0.77829752e+00
- 2 111 208 209 -0.22026175e-01 -0.57326141e+00 0.15622778e+01 0.13498000e+00
- 2 113 210 211 0.14365274e+01 -0.37147075e+01 0.74485575e+01 0.79218948e+00
- 1 2212 0 0 0.56908808e-01 -0.45902724e-01 0.24123072e+01 0.93827000e+00
- 2 -311 212 212 0.32852916e+00 0.22762775e+00 0.12214748e+01 0.49767000e+00
- 2 -3324 213 214 0.24932814e+01 -0.35833440e+00 0.53211735e+01 0.15274131e+01
- 2 333 215 216 0.64785801e+00 0.13747600e+00 0.22248452e+01 0.10193600e+01
- 2 -313 217 218 0.31818236e+00 0.15829145e+01 0.38495429e+01 0.96330746e+00
- 1 -211 0 0 -0.40205881e+00 0.33990931e+01 0.46032815e+01 0.13957000e+00
- 2 223 219 220 -0.51779419e+00 0.15690904e+01 0.29285739e+01 0.77031760e+00
- 1 2212 0 0 0.29859870e+00 0.16022940e+01 0.24751333e+01 0.93827000e+00
- 2 -3122 221 222 -0.32383461e+00 0.10774124e+01 0.19777816e+01 0.11156800e+01
- 1 -321 0 0 -0.21641566e-01 -0.15473777e+01 0.38466466e+00 0.49360000e+00
- 1 211 0 0 0.35286742e+00 -0.26711378e+00 0.74947865e+00 0.13957000e+00
- 2 111 223 224 -0.41710542e-01 -0.42505563e+00 0.19218726e+00 0.13498000e+00
- 2 313 225 226 -0.37685557e+00 -0.14815707e+00 0.52377944e+00 0.87676052e+00
- 2 -323 227 228 0.25725364e+00 -0.20951697e+00 0.17246950e+01 0.90151121e+00
- 2 213 229 230 -0.33111721e+00 -0.13627219e+01 0.23699073e+01 0.72869477e+00
- 2 111 231 232 0.32741798e+00 -0.22406451e+00 -0.52929821e-01 0.13498000e+00
- 1 -211 0 0 0.20186616e+00 -0.17007912e+00 0.25964462e+01 0.13957000e+00
- 1 211 0 0 0.62192872e-01 -0.49084305e+00 0.72592815e+00 0.13957000e+00
- 2 -213 233 234 -0.29018923e+00 -0.26631140e+00 0.70078862e+01 0.71414090e+00
- 2 323 235 236 -0.96703924e+00 -0.27857468e+00 0.60920248e+01 0.87831444e+00
- 2 -323 237 238 0.12696898e+00 0.15007816e+01 0.12971145e+02 0.96402939e+00
- 1 211 0 0 -0.86040973e+00 -0.41784602e+00 0.46884707e+01 0.13957000e+00
- 2 111 239 240 -0.86124679e+00 0.75361159e-01 0.23732759e+02 0.13498000e+00
- 1 -211 0 0 -0.36331242e+00 0.30958157e-01 0.18157544e+01 0.13957000e+00
- 1 211 0 0 0.29492855e+00 0.12392308e+01 0.23681896e+02 0.13957000e+00
- 2 221 241 242 -0.33108259e+00 -0.48044450e+00 0.21111919e+02 0.54745000e+00
- 1 -211 0 0 -0.29585085e+00 0.33802971e+00 0.22989659e+02 0.13957000e+00
- 1 211 0 0 0.16302469e+00 0.42951431e+00 0.56034504e+01 0.13957000e+00
- 1 2112 0 0 0.62072997e+00 0.15821176e+00 0.13686014e+03 0.93957000e+00
- 1 -2212 0 0 0.10885857e+00 -0.23160399e+00 0.91703053e+02 0.93827000e+00
- 2 213 243 244 0.81954438e+00 0.67766463e+00 0.17919257e+03 0.74534286e+00
- 2 113 245 246 -0.19524283e-01 0.11678030e+00 0.66044605e+02 0.54347325e+00
- 1 -211 0 0 0.30827492e+00 0.11823297e+01 0.19863052e+03 0.13957000e+00
- 1 211 0 0 0.14335494e+00 -0.40413455e+00 0.10076136e+02 0.13957000e+00
- 2 311 247 247 0.24156222e+00 -0.26198096e+00 0.54892676e+01 0.49767000e+00
- 1 -321 0 0 -0.11338029e+00 -0.16816984e+00 0.68284094e+01 0.49360000e+00
- 1 211 0 0 0.44042832e+00 0.36610865e+00 0.15146968e+02 0.13957000e+00
- 1 -211 0 0 -0.25107085e+00 0.10837828e+00 0.86542343e+01 0.13957000e+00
- 2 223 248 250 -0.15169661e+00 -0.55814680e+00 0.56917157e+01 0.77490615e+00
- 2 111 251 252 -0.25601797e+00 0.37613817e+00 0.18254294e+02 0.13498000e+00
- 1 211 0 0 0.95990442e-01 0.13858943e+00 0.59889906e+00 0.13957000e+00
- 2 113 253 254 0.42429417e+00 -0.87403791e+00 0.20489466e+02 0.95188567e+00
- 2 113 255 256 -0.44569908e+00 0.67669221e-01 0.10780530e+02 0.61718941e+00
- 1 -211 0 0 -0.21839907e+00 0.56253437e-01 0.70853817e+01 0.13957000e+00
- 1 211 0 0 0.55972517e+00 0.72975645e-01 0.10984238e+02 0.13957000e+00
- 2 331 257 259 -0.83125417e-01 0.80644262e-01 0.14164047e+03 0.95779008e+00
- 2 111 260 261 -0.30103778e+00 -0.44708694e+00 0.22296034e+03 0.13498000e+00
- 1 2112 0 0 0.18591336e+00 0.13454925e+01 0.53350954e+04 0.93957000e+00
- 2 92 137 144 0.73535058e+00 0.16054147e+01 0.92798742e+01 0.10240082e+02
- 2 331 262 264 -0.82745161e+00 -0.11025772e+00 -0.35640383e+00 0.95820337e+00
- 1 -211 0 0 -0.12686027e+00 0.18845591e+00 0.14640541e+01 0.13957000e+00
- 2 213 265 266 -0.16483292e+00 -0.23512381e+00 -0.11838465e+00 0.90184263e+00
- 2 221 267 269 0.63574845e+00 0.44946661e-01 0.96225686e+00 0.54745000e+00
- 2 223 270 272 0.45350281e+00 -0.32541135e-01 0.10742688e+01 0.78147990e+00
- 2 2114 273 274 -0.48260857e-01 0.73449277e+00 0.18519478e+01 0.12483535e+01
- 2 -213 275 276 0.62411396e+00 0.15282622e+00 0.12568107e+01 0.85812643e+00
- 2 -1114 277 278 0.18939103e+00 0.86261583e+00 0.31453244e+01 0.12130640e+01
- 1 211 0 0 0.20007513e+01 0.17614480e+02 -0.80581530e+02 0.13957000e+00
- 2 111 279 280 0.12692953e+00 0.56866305e+00 -0.28737926e+01 0.13498000e+00
- 1 2112 0 0 0.18056343e+01 0.93661315e+01 -0.38721496e+02 0.93957000e+00
- 1 211 0 0 0.44078210e+00 0.12912980e+01 -0.55020549e+01 0.13957000e+00
- 2 -3122 281 282 0.57947615e+00 0.30465036e+01 -0.13964410e+02 0.11156800e+01
- 1 -211 0 0 -0.10504752e+00 0.27969156e+00 -0.12511804e+01 0.13957000e+00
- 1 22 0 0 0.12145275e+00 0.70893779e+00 -0.24569868e+01 0.00000000e+00
- 1 22 0 0 0.98485506e+00 0.38676773e+01 -0.13658213e+02 0.00000000e+00
- 1 211 0 0 0.15729031e+00 0.82623896e-01 -0.76597438e+00 0.13957000e+00
- 2 111 283 284 0.34831189e+00 0.90178383e+00 -0.60435950e+01 0.13498000e+00
- 1 -211 0 0 0.35462996e+00 -0.31887619e+00 -0.26946790e+01 0.13957000e+00
- 2 111 285 286 -0.10987203e+00 -0.17999104e+00 -0.25107215e+00 0.13498000e+00
- 2 311 287 287 0.91846021e-01 0.24606806e+00 -0.85072674e+00 0.49767000e+00
- 1 211 0 0 -0.29769725e+00 -0.53563072e-01 -0.13319585e+00 0.13957000e+00
- 2 -311 288 288 -0.11788856e+00 0.75212303e-01 -0.95248479e+00 0.49767000e+00
- 2 111 289 290 0.21524113e+00 0.48283430e-01 -0.17531218e+01 0.13498000e+00
- 1 211 0 0 0.44231982e-01 0.80887182e-01 -0.68494695e+00 0.13957000e+00
- 1 -211 0 0 0.94608694e+00 0.72318005e+00 -0.13542531e+01 0.13957000e+00
- 1 -211 0 0 0.28461957e-01 -0.23627293e+00 -0.91079949e+00 0.13957000e+00
- 2 111 291 292 0.10694637e+01 -0.23355589e-01 -0.19233691e+01 0.13498000e+00
- 1 22 0 0 0.20538453e+00 0.42007857e+00 -0.47101353e+00 0.00000000e+00
- 1 -211 0 0 0.27850166e+00 0.11694319e+01 -0.20458575e+01 0.13957000e+00
- 1 211 0 0 0.12517579e+00 0.58401099e+00 -0.10388143e+01 0.13957000e+00
- 2 311 293 293 -0.74002058e-01 0.26542372e+00 -0.15608471e+01 0.49767000e+00
- 1 211 0 0 -0.37810628e+00 -0.19829209e-01 -0.48322246e+00 0.13957000e+00
- 2 310 294 295 -0.45972552e+00 -0.19364602e+00 -0.17555984e+01 0.49767000e+00
- 1 211 0 0 -0.21446747e+00 0.43431285e-01 -0.46636760e+01 0.13957000e+00
- 1 -211 0 0 -0.25961141e+00 0.28001717e+00 -0.32952175e+01 0.13957000e+00
- 2 111 296 297 0.14635819e+00 0.29501019e-01 -0.18762219e+01 0.13498000e+00
- 1 -211 0 0 -0.21251008e+00 -0.43166904e+00 -0.36705240e+01 0.13957000e+00
- 1 211 0 0 0.59685895e-01 -0.17161723e+00 -0.36434374e+01 0.13957000e+00
- 2 111 298 299 0.90687099e-01 -0.29441597e+00 -0.14221353e+01 0.13498000e+00
- 1 -211 0 0 0.22478839e-01 0.27002761e+00 -0.27534235e+02 0.13957000e+00
- 2 111 300 301 -0.28079675e+00 -0.38036394e+00 -0.40641335e+02 0.13498000e+00
- 1 -211 0 0 -0.58572069e-01 0.63446723e-01 -0.80529220e+01 0.13957000e+00
- 1 211 0 0 0.25148449e-01 -0.13564915e+01 -0.78073527e+02 0.13957000e+00
- 1 -211 0 0 -0.52533347e-01 0.58368677e-01 -0.31729039e+02 0.13957000e+00
- 1 211 0 0 -0.44453423e+00 0.33426289e+00 -0.64780004e+02 0.13957000e+00
- 1 211 0 0 0.14179828e+00 -0.60523195e+00 -0.43195170e+02 0.13957000e+00
- 2 111 302 303 -0.18332258e+00 0.74076143e-01 -0.33205112e+02 0.13498000e+00
- 1 211 0 0 -0.61412948e-01 -0.41380084e+00 -0.28891108e+02 0.13957000e+00
- 1 -211 0 0 -0.35994309e-01 -0.19949765e+00 -0.35855898e+02 0.13957000e+00
- 2 111 304 305 -0.10241088e+00 -0.19944589e+00 -0.22923247e+02 0.13498000e+00
- 1 211 0 0 -0.35153258e+00 -0.18896500e-01 -0.45577634e+02 0.13957000e+00
- 1 -211 0 0 -0.11244046e+00 -0.11563042e+00 -0.76981602e+02 0.13957000e+00
- 2 111 306 307 -0.13899906e+00 -0.41201529e+00 -0.58838595e+02 0.13498000e+00
- 1 -211 0 0 -0.16114692e-01 -0.35973318e+00 -0.18132606e+03 0.13957000e+00
- 2 111 308 309 0.95922060e-01 0.12030719e+00 -0.13172566e+02 0.13498000e+00
- 2 111 310 311 -0.46248140e-01 0.55553075e-01 -0.14910861e+03 0.13498000e+00
- 2 111 312 313 -0.90419678e-01 0.17107972e+00 -0.17739999e+03 0.13498000e+00
- 2 111 314 315 -0.50551728e+00 0.32354798e+00 -0.52074413e+03 0.13498000e+00
- 1 2212 0 0 -0.10440753e+01 0.55258271e+00 -0.23718533e+04 0.93827000e+00
- 2 111 316 318 -0.39677481e-01 -0.43922178e-01 -0.45574621e+03 0.13498000e+00
- 2 311 319 319 -0.72147642e+00 0.47500989e+00 -0.14953102e+04 0.49767000e+00
- 1 211 0 0 -0.41419733e+00 -0.17653985e+00 -0.76888874e+03 0.13957000e+00
- 1 -211 0 0 0.37284181e+00 -0.12037340e+01 0.30080679e+01 0.13957000e+00
- 1 211 0 0 0.10077106e+02 -0.34070616e+02 0.83323680e+02 0.13957000e+00
- 1 211 0 0 0.54101845e+00 -0.28114919e+01 0.74707775e+01 0.13957000e+00
- 2 111 320 321 0.43570458e+01 -0.15779002e+02 0.37235262e+02 0.13498000e+00
- 1 -211 0 0 0.20436673e+00 -0.28722849e+00 0.10864923e+01 0.13957000e+00
- 2 111 322 323 0.89886102e+00 -0.27689598e+01 0.49887172e+01 0.13498000e+00
- 1 22 0 0 0.91511970e+00 -0.18560099e+01 0.56372626e+01 0.00000000e+00
- 2 111 324 325 -0.23229727e-01 -0.24922455e+00 0.34998597e+00 0.13498000e+00
- 1 22 0 0 0.74173931e-03 -0.19812227e-01 0.17267541e+00 0.00000000e+00
- 1 22 0 0 -0.22767915e-01 -0.55344918e+00 0.13896023e+01 0.00000000e+00
- 1 211 0 0 0.54677665e+00 -0.23679914e+01 0.42366588e+01 0.13957000e+00
- 1 -211 0 0 0.88975076e+00 -0.13467161e+01 0.32118987e+01 0.13957000e+00
- 1 130 0 0 0.32852916e+00 0.22762775e+00 0.12214748e+01 0.49767000e+00
- 2 -3312 326 327 0.20939520e+01 -0.24508119e+00 0.42468577e+01 0.13213000e+01
- 1 -211 0 0 0.39932937e+00 -0.11325321e+00 0.10743158e+01 0.13957000e+00
- 1 -321 0 0 0.30892865e+00 -0.52553743e-01 0.11578497e+01 0.49360000e+00
- 1 321 0 0 0.33892936e+00 0.19002974e+00 0.10669954e+01 0.49360000e+00
- 1 -321 0 0 -0.17693031e-01 0.39836763e+00 0.14756012e+01 0.49360000e+00
- 1 211 0 0 0.33587539e+00 0.11845469e+01 0.23739417e+01 0.13957000e+00
- 1 22 0 0 -0.17652630e+00 0.11635799e+01 0.14159849e+01 0.00000000e+00
- 2 111 328 329 -0.34126789e+00 0.40551052e+00 0.15125890e+01 0.13498000e+00
- 1 -2212 0 0 -0.28666139e+00 0.93266722e+00 0.15359703e+01 0.93827000e+00
- 1 211 0 0 -0.37173222e-01 0.14474522e+00 0.44181125e+00 0.13957000e+00
- 1 22 0 0 -0.69181772e-02 -0.40515776e+00 0.18921996e+00 0.00000000e+00
- 1 22 0 0 -0.34792365e-01 -0.19897868e-01 0.29672980e-02 0.00000000e+00
- 1 321 0 0 -0.44638404e+00 0.48715818e-01 0.52247821e+00 0.49360000e+00
- 1 -211 0 0 0.69528472e-01 -0.19687289e+00 0.13012344e-02 0.13957000e+00
- 1 -321 0 0 -0.80601252e-01 -0.90962804e-01 0.13327947e+01 0.49360000e+00
- 2 111 330 331 0.33785489e+00 -0.11855417e+00 0.39190028e+00 0.13498000e+00
- 1 211 0 0 -0.15792028e+00 -0.52285546e-01 0.58025719e+00 0.13957000e+00
- 2 111 332 333 -0.17319693e+00 -0.13104364e+01 0.17896501e+01 0.13498000e+00
- 1 22 0 0 0.58256568e-01 -0.73309728e-01 0.37584440e-01 0.00000000e+00
- 1 22 0 0 0.26916142e+00 -0.15075478e+00 -0.90514261e-01 0.00000000e+00
- 1 -211 0 0 0.17924902e+00 -0.16697636e+00 0.36015920e+01 0.13957000e+00
- 2 111 334 335 -0.46943825e+00 -0.99335041e-01 0.34062942e+01 0.13498000e+00
- 1 321 0 0 -0.69608103e+00 0.21489693e-01 0.48255869e+01 0.49360000e+00
- 2 111 336 337 -0.27095820e+00 -0.30006438e+00 0.12664380e+01 0.13498000e+00
- 1 -321 0 0 0.55006920e-01 0.30614096e+00 0.43674155e+01 0.49360000e+00
- 2 111 338 339 0.71962064e-01 0.11946406e+01 0.86037299e+01 0.13498000e+00
- 1 22 0 0 -0.32423769e+00 0.48192664e-01 0.10746324e+02 0.00000000e+00
- 1 22 0 0 -0.53700910e+00 0.27168495e-01 0.12986435e+02 0.00000000e+00
- 1 22 0 0 -0.13475000e+00 0.22324040e-01 0.10934565e+02 0.00000000e+00
- 1 22 0 0 -0.19633259e+00 -0.50276854e+00 0.10177355e+02 0.00000000e+00
- 1 211 0 0 0.14985552e+00 0.12141541e+00 0.90873084e+02 0.13957000e+00
- 2 111 340 341 0.66968886e+00 0.55624921e+00 0.88319485e+02 0.13498000e+00
- 1 211 0 0 -0.19750623e+00 0.14378501e+00 0.22699308e+02 0.13957000e+00
- 1 -211 0 0 0.17798194e+00 -0.27004705e-01 0.43345298e+02 0.13957000e+00
- 2 310 342 343 0.24156222e+00 -0.26198096e+00 0.54892676e+01 0.49767000e+00
- 1 211 0 0 -0.23672246e+00 -0.94561141e-01 0.11763119e+01 0.13957000e+00
- 1 -211 0 0 0.62936255e-01 -0.31311651e+00 0.38516235e+01 0.13957000e+00
- 2 111 344 345 0.22089595e-01 -0.15046914e+00 0.66378035e+00 0.13498000e+00
- 1 22 0 0 -0.64287060e-01 0.19599284e+00 0.67021725e+01 0.00000000e+00
- 1 22 0 0 -0.19173091e+00 0.18014533e+00 0.11552121e+02 0.00000000e+00
- 1 -211 0 0 -0.11689557e+00 0.96813972e-01 0.18480452e+01 0.13957000e+00
- 1 211 0 0 0.54118973e+00 -0.97085189e+00 0.18641421e+02 0.13957000e+00
- 1 211 0 0 -0.95848896e-01 0.22410009e+00 0.22729025e+01 0.13957000e+00
- 1 -211 0 0 -0.34985018e+00 -0.15643087e+00 0.85076274e+01 0.13957000e+00
- 1 -211 0 0 -0.59338881e-03 -0.29617736e-01 0.49269380e+02 0.13957000e+00
- 1 211 0 0 -0.13738589e+00 0.24938833e-01 0.24504762e+02 0.13957000e+00
- 2 221 346 348 0.54853862e-01 0.85323164e-01 0.67866328e+02 0.54745000e+00
- 1 22 0 0 -0.44649040e-01 -0.16089462e+00 0.81149929e+02 0.00000000e+00
- 1 22 0 0 -0.25638874e+00 -0.28619232e+00 0.14181041e+03 0.00000000e+00
- 2 111 349 350 -0.33253101e+00 0.43015242e-01 -0.12243598e+00 0.13498000e+00
- 2 111 351 352 -0.18346194e+00 -0.11196125e-01 0.49038301e-01 0.13498000e+00
- 2 221 353 354 -0.31145866e+00 -0.14207683e+00 -0.28300615e+00 0.54745000e+00
- 1 211 0 0 -0.22000991e+00 -0.51967756e+00 0.65448430e-01 0.13957000e+00
- 2 111 355 356 0.55176989e-01 0.28455375e+00 -0.18383308e+00 0.13498000e+00
- 1 -211 0 0 0.56864168e-01 0.22638784e-01 0.25214868e+00 0.13957000e+00
- 1 211 0 0 0.38016946e+00 -0.81709069e-01 0.48888574e+00 0.13957000e+00
- 2 111 357 358 0.19871482e+00 0.10401695e+00 0.22122244e+00 0.13498000e+00
- 1 -211 0 0 0.36856644e+00 0.14453320e+00 0.32928174e+00 0.13957000e+00
- 1 211 0 0 -0.27490918e-01 0.15119318e-01 0.47254677e+00 0.13957000e+00
- 2 111 359 360 0.11242729e+00 -0.19219365e+00 0.27244029e+00 0.13498000e+00
- 1 2212 0 0 -0.28073239e-01 0.40068998e+00 0.16403438e+01 0.93827000e+00
- 1 -211 0 0 -0.20187618e-01 0.33380279e+00 0.21160403e+00 0.13957000e+00
- 1 -211 0 0 -0.17815320e+00 0.67598336e-01 0.16699447e+00 0.13957000e+00
- 2 111 361 362 0.80226716e+00 0.85227886e-01 0.10898163e+01 0.13498000e+00
- 1 -2112 0 0 -0.30322000e-01 0.53406666e+00 0.22893799e+01 0.93957000e+00
- 1 211 0 0 0.21971303e+00 0.32854917e+00 0.85594454e+00 0.13957000e+00
- 1 22 0 0 0.25291820e-01 0.13212986e+00 -0.42133441e+00 0.00000000e+00
- 1 22 0 0 0.10163771e+00 0.43653319e+00 -0.24524582e+01 0.00000000e+00
- 1 -2212 0 0 0.52785380e+00 0.26275452e+01 -0.12450881e+02 0.93827000e+00
- 1 211 0 0 0.51622349e-01 0.41895843e+00 -0.15135295e+01 0.13957000e+00
- 1 22 0 0 -0.66841544e-02 0.31711782e-01 -0.32620990e+00 0.00000000e+00
- 1 22 0 0 0.35499605e+00 0.87007205e+00 -0.57173851e+01 0.00000000e+00
- 1 22 0 0 -0.27175700e-01 -0.15938059e+00 -0.13533203e+00 0.00000000e+00
- 1 22 0 0 -0.82696328e-01 -0.20610451e-01 -0.11574012e+00 0.00000000e+00
- 1 130 0 0 0.91846021e-01 0.24606806e+00 -0.85072674e+00 0.49767000e+00
- 2 310 363 364 -0.11788856e+00 0.75212303e-01 -0.95248479e+00 0.49767000e+00
- 1 22 0 0 -0.74419828e-02 0.34538158e-01 -0.21822620e+00 0.00000000e+00
- 1 22 0 0 0.22268311e+00 0.13745273e-01 -0.15348956e+01 0.00000000e+00
- 1 22 0 0 0.96702729e+00 0.54050734e-02 -0.17882756e+01 0.00000000e+00
- 1 22 0 0 0.10243640e+00 -0.28760662e-01 -0.13509354e+00 0.00000000e+00
- 2 310 365 366 -0.74002058e-01 0.26542372e+00 -0.15608471e+01 0.49767000e+00
- 1 211 0 0 -0.27879994e+00 -0.10245541e+00 -0.41671751e+00 0.13957000e+00
- 1 -211 0 0 -0.18092558e+00 -0.91190615e-01 -0.13388809e+01 0.13957000e+00
- 1 22 0 0 0.14763535e+00 0.25908089e-01 -0.18770990e+01 0.00000000e+00
- 1 22 0 0 -0.12771521e-02 0.35929292e-02 0.87707559e-03 0.00000000e+00
- 1 22 0 0 0.11549296e+00 -0.19622350e+00 -0.83145606e+00 0.00000000e+00
- 1 22 0 0 -0.24805859e-01 -0.98192464e-01 -0.59067928e+00 0.00000000e+00
- 1 22 0 0 -0.18527610e+00 -0.13765325e+00 -0.19296265e+02 0.00000000e+00
- 1 22 0 0 -0.95520654e-01 -0.24271070e+00 -0.21345070e+02 0.00000000e+00
- 1 22 0 0 -0.75578410e-01 0.84286838e-01 -0.10612919e+02 0.00000000e+00
- 1 22 0 0 -0.10774417e+00 -0.10210695e-01 -0.22592194e+02 0.00000000e+00
- 1 22 0 0 -0.70364344e-01 -0.19545049e-01 -0.45617225e+01 0.00000000e+00
- 1 22 0 0 -0.32046532e-01 -0.17990085e+00 -0.18361525e+02 0.00000000e+00
- 1 22 0 0 -0.99660965e-01 -0.32695761e+00 -0.51945131e+02 0.00000000e+00
- 1 22 0 0 -0.39338094e-01 -0.85057679e-01 -0.68934641e+01 0.00000000e+00
- 1 22 0 0 0.11852146e+00 0.47122990e-01 -0.77577151e+01 0.00000000e+00
- 1 22 0 0 -0.22599400e-01 0.73184197e-01 -0.54148512e+01 0.00000000e+00
- 1 22 0 0 -0.78450328e-02 0.96039983e-01 -0.86168635e+02 0.00000000e+00
- 1 22 0 0 -0.38403107e-01 -0.40486908e-01 -0.62939972e+02 0.00000000e+00
- 1 22 0 0 -0.10981442e+00 0.64803744e-01 -0.90927848e+02 0.00000000e+00
- 1 22 0 0 0.19394746e-01 0.10627598e+00 -0.86472142e+02 0.00000000e+00
- 1 22 0 0 -0.43045615e+00 0.32008234e+00 -0.47312494e+03 0.00000000e+00
- 1 22 0 0 -0.75061129e-01 0.34656380e-02 -0.47619189e+02 0.00000000e+00
- 1 22 0 0 0.23606294e-01 -0.27598298e-01 -0.35832750e+03 0.00000000e+00
- 1 -11 0 0 -0.46014726e-01 -0.10732119e-01 -0.68680655e+02 0.51000000e-03
- 1 11 0 0 -0.17269048e-01 -0.55917604e-02 -0.28738058e+02 0.51000000e-03
- 2 310 367 368 -0.72147642e+00 0.47500989e+00 -0.14953102e+04 0.49767000e+00
- 1 22 0 0 0.31214122e+01 -0.11080283e+02 0.26144747e+02 0.00000000e+00
- 1 22 0 0 0.12356336e+01 -0.46987189e+01 0.11090515e+02 0.00000000e+00
- 1 22 0 0 0.31826907e+00 -0.91196803e+00 0.15377795e+01 0.00000000e+00
- 1 22 0 0 0.58059195e+00 -0.18569918e+01 0.34509378e+01 0.00000000e+00
- 1 22 0 0 -0.51405963e-01 -0.24811559e+00 0.33146486e+00 0.00000000e+00
- 1 22 0 0 0.28176236e-01 -0.11089519e-02 0.18521113e-01 0.00000000e+00
- 2 -3122 369 370 0.19247394e+01 -0.31248369e+00 0.39782132e+01 0.11156800e+01
- 1 211 0 0 0.16921259e+00 0.67402501e-01 0.26864449e+00 0.13957000e+00
- 1 22 0 0 -0.26410248e+00 0.23314580e+00 0.86860250e+00 0.00000000e+00
- 1 22 0 0 -0.77165404e-01 0.17236472e+00 0.64398649e+00 0.00000000e+00
- 1 22 0 0 0.14820363e-01 0.15521789e-01 -0.12788384e-02 0.00000000e+00
- 1 22 0 0 0.32303453e+00 -0.13407596e+00 0.39317912e+00 0.00000000e+00
- 1 22 0 0 -0.63400701e-03 -0.17158436e+00 0.30421336e+00 0.00000000e+00
- 1 22 0 0 -0.17256292e+00 -0.11388520e+01 0.14854368e+01 0.00000000e+00
- 1 22 0 0 -0.41266977e+00 -0.37850287e-01 0.28819843e+01 0.00000000e+00
- 1 22 0 0 -0.56768473e-01 -0.61484754e-01 0.52430999e+00 0.00000000e+00
- 1 22 0 0 -0.50600356e-01 -0.14568331e+00 0.53948273e+00 0.00000000e+00
- 1 22 0 0 -0.22035785e+00 -0.15438107e+00 0.72695524e+00 0.00000000e+00
- 1 22 0 0 0.33180036e-02 0.25244928e+00 0.22332658e+01 0.00000000e+00
- 1 22 0 0 0.68644060e-01 0.94219135e+00 0.63704641e+01 0.00000000e+00
- 1 22 0 0 0.11285435e+00 0.10304573e+00 0.11019879e+02 0.00000000e+00
- 1 22 0 0 0.55683451e+00 0.45320348e+00 0.77299607e+02 0.00000000e+00
- 1 -211 0 0 0.11684881e+00 -0.22055592e+00 0.47807559e+01 0.13957000e+00
- 1 211 0 0 0.12471341e+00 -0.41425045e-01 0.70851172e+00 0.13957000e+00
- 1 22 0 0 0.32685912e-01 -0.12704478e+00 0.27592186e+00 0.00000000e+00
- 1 22 0 0 -0.10596317e-01 -0.23424367e-01 0.38785850e+00 0.00000000e+00
- 2 111 371 372 -0.10290006e+00 0.12079769e-01 0.10922381e+02 0.13498000e+00
- 2 111 373 374 0.78496327e-01 0.33052267e-01 0.34967273e+02 0.13498000e+00
- 2 111 375 376 0.79257599e-01 0.40191128e-01 0.21976675e+02 0.13498000e+00
- 1 22 0 0 -0.25303119e+00 0.61297582e-01 -0.36091541e-01 0.00000000e+00
- 1 22 0 0 -0.79499815e-01 -0.18282340e-01 -0.86344434e-01 0.00000000e+00
- 1 22 0 0 0.14431351e-01 -0.64653888e-02 0.30605003e-01 0.00000000e+00
- 1 22 0 0 -0.19789329e+00 -0.47307365e-02 0.18433298e-01 0.00000000e+00
- 1 22 0 0 -0.32303099e+00 -0.25407777e+00 -0.11607596e-01 0.00000000e+00
- 1 22 0 0 0.11572328e-01 0.11200094e+00 -0.27139856e+00 0.00000000e+00
- 1 22 0 0 0.40956716e-01 0.19747752e+00 -0.48767556e-01 0.00000000e+00
- 1 22 0 0 0.14220273e-01 0.87076227e-01 -0.13506552e+00 0.00000000e+00
- 1 22 0 0 0.99349556e-01 0.46736497e-01 0.20700919e-01 0.00000000e+00
- 1 22 0 0 0.99365263e-01 0.57280449e-01 0.20052152e+00 0.00000000e+00
- 1 22 0 0 0.13040688e+00 -0.16992873e+00 0.27447865e+00 0.00000000e+00
- 1 22 0 0 -0.17979588e-01 -0.22264922e-01 -0.20383661e-02 0.00000000e+00
- 1 22 0 0 0.50437348e+00 -0.26336566e-02 0.73048872e+00 0.00000000e+00
- 1 22 0 0 0.29789368e+00 0.87861543e-01 0.35932755e+00 0.00000000e+00
- 2 111 377 378 -0.95847686e-01 -0.15922234e+00 -0.57165232e+00 0.13498000e+00
- 2 111 379 380 -0.22040875e-01 0.23443464e+00 -0.38083247e+00 0.13498000e+00
- 1 211 0 0 -0.42635720e-01 0.30364661e+00 -0.59172046e+00 0.13957000e+00
- 1 -211 0 0 -0.31366338e-01 -0.38222888e-01 -0.96912663e+00 0.13957000e+00
- 1 -211 0 0 -0.46348556e+00 0.59190881e-01 -0.71061239e+03 0.13957000e+00
- 1 211 0 0 -0.25799086e+00 0.41581901e+00 -0.78469778e+03 0.13957000e+00
- 1 -2212 0 0 0.16725470e+01 -0.18308716e+00 0.33158466e+01 0.93827000e+00
- 1 211 0 0 0.25219240e+00 -0.12939653e+00 0.66236665e+00 0.13957000e+00
- 1 22 0 0 -0.57153823e-01 -0.90326483e-02 0.14038056e+01 0.00000000e+00
- 1 22 0 0 -0.45746240e-01 0.21112417e-01 0.95185755e+01 0.00000000e+00
- 1 22 0 0 0.48613591e-01 -0.41628414e-01 0.23253343e+02 0.00000000e+00
- 1 22 0 0 0.29882736e-01 0.74680682e-01 0.11713929e+02 0.00000000e+00
- 1 22 0 0 -0.19639571e-01 0.48723855e-01 0.43947298e+01 0.00000000e+00
- 1 22 0 0 0.98897170e-01 -0.85327269e-02 0.17581945e+02 0.00000000e+00
- 1 22 0 0 -0.39392951e-01 -0.77476991e-01 -0.45326933e+00 0.00000000e+00
- 1 22 0 0 -0.56454735e-01 -0.81745350e-01 -0.11838299e+00 0.00000000e+00
- 1 22 0 0 0.35341938e-04 0.23626122e+00 -0.28949434e+00 0.00000000e+00
- 1 22 0 0 -0.22076217e-01 -0.18265730e-02 -0.91338133e-01 0.00000000e+00
- 780
- 2 25 2 3 0.63478296e+02 -0.31855078e+02 0.44152737e+03 0.12499403e+03
- 2 23 4 5 0.64788826e+02 -0.16616003e+02 0.38771625e+03 0.94457726e+02
- 2 23 6 9 -0.13105307e+01 -0.15239075e+02 0.53811114e+02 0.20901018e+02
- 1 11 0 0 0.17507573e+02 -0.51796537e+02 0.22548085e+03 0.51000000e-03
- 1 -11 0 0 0.47281253e+02 0.35180534e+02 0.16223540e+03 0.51000000e-03
- 1 11 0 0 0.35944634e+01 -0.17527379e+02 0.49986556e+02 0.51000000e-03
- 1 22 0 0 -0.17655196e-06 -0.44867102e-06 0.24093802e-05 0.00000000e+00
- 1 -11 0 0 -0.49049934e+01 0.22883041e+01 0.38245551e+01 0.51000000e-03
- 1 22 0 0 -0.64322835e-06 0.27696132e-06 0.62357342e-06 0.00000000e+00
- 2 2 93 93 -0.50647257e+01 -0.23339946e+01 -0.29618935e+01 0.33000000e+00
- 2 21 93 93 -0.16971051e+02 0.39366635e+01 -0.14110649e+02 0.00000000e+00
- 2 21 93 93 -0.62156483e+01 0.80807505e+01 -0.49101845e+01 0.00000000e+00
- 2 21 93 93 -0.13646741e+02 0.10278629e+02 -0.66460054e+01 0.00000000e+00
- 2 21 93 93 -0.11891830e+02 0.87653864e+01 -0.42784932e+01 0.00000000e+00
- 2 21 93 93 -0.86521276e+00 0.17896588e+01 -0.25312666e+00 0.00000000e+00
- 2 21 93 93 -0.60611778e+00 0.22631214e+01 -0.90173703e+01 0.00000000e+00
- 2 21 93 93 0.22461678e+00 0.39474790e+00 -0.54099175e+01 0.00000000e+00
- 2 21 93 93 0.68232406e+01 -0.33904967e+01 -0.41832807e+02 0.00000000e+00
- 2 21 93 93 0.62990419e+01 -0.99986064e+01 -0.17341870e+03 0.00000000e+00
- 2 21 93 93 0.85886186e+01 -0.71441051e+01 -0.14156533e+03 0.00000000e+00
- 2 2101 93 93 0.10979450e+01 0.32879070e-01 -0.37438250e+04 0.57933000e+00
- 2 -2 133 133 -0.18268158e+02 -0.36002474e+01 -0.13650025e+02 0.33000000e+00
- 2 21 133 133 -0.10410557e+01 0.10427085e+00 -0.72936834e+00 0.00000000e+00
- 2 21 133 133 -0.87939395e+01 0.24206674e+01 -0.22264319e+01 0.00000000e+00
- 2 21 133 133 -0.40197971e+01 0.27182206e+00 -0.33569077e+00 0.00000000e+00
- 2 21 133 133 0.80501713e+00 -0.93209761e+00 0.60715279e-01 0.00000000e+00
- 2 21 133 133 0.19616336e+01 -0.61371716e+01 0.24898990e+01 0.00000000e+00
- 2 21 133 133 -0.84384324e-01 -0.11869731e+01 -0.27495749e+01 0.00000000e+00
- 2 21 133 133 0.70963340e+00 -0.29755101e+01 -0.62221763e+01 0.00000000e+00
- 2 21 133 133 0.25263000e+01 -0.42415628e+00 -0.65035248e+01 0.00000000e+00
- 2 21 133 133 0.14436885e+01 -0.48762586e-01 -0.54551205e+01 0.00000000e+00
- 2 21 133 133 0.28415724e+01 0.55009050e+00 -0.14759058e+02 0.00000000e+00
- 2 21 133 133 0.15673697e+01 -0.50901766e+01 -0.13156611e+03 0.00000000e+00
- 2 21 133 133 0.25132986e+01 -0.52091221e+01 -0.15369766e+03 0.00000000e+00
- 2 21 133 133 -0.28415724e+01 -0.55009050e+00 -0.30590689e+03 0.00000000e+00
- 2 21 133 133 -0.31532955e+01 -0.54518688e+00 -0.35283982e+03 0.00000000e+00
- 2 21 133 133 0.27178136e+01 -0.29386879e+01 -0.49516527e+03 0.00000000e+00
- 2 21 133 133 0.31532955e+01 0.54518688e+00 -0.14727786e+03 0.00000000e+00
- 2 21 133 133 0.85037483e+00 0.19362106e+00 -0.34017565e+02 0.00000000e+00
- 2 21 133 133 0.84384324e-01 0.11869731e+01 -0.59848682e+02 0.00000000e+00
- 2 21 133 133 -0.15673697e+01 0.50901766e+01 -0.90293831e+02 0.00000000e+00
- 2 21 133 133 -0.24553162e+00 0.86561512e+00 -0.13205645e+02 0.00000000e+00
- 2 21 133 133 -0.80501713e+00 0.93209761e+00 -0.15200901e+02 0.00000000e+00
- 2 21 133 133 -0.25263000e+01 0.42415628e+00 -0.13726100e+02 0.00000000e+00
- 2 21 133 133 -0.85037483e+00 -0.19362106e+00 -0.36365271e+01 0.00000000e+00
- 2 21 133 133 -0.70963340e+00 0.29755101e+01 -0.66393118e+01 0.00000000e+00
- 2 21 133 133 -0.27178136e+01 0.29386879e+01 -0.17056068e+01 0.00000000e+00
- 2 21 133 133 -0.45815393e+00 0.44524778e+00 0.13953962e+01 0.00000000e+00
- 2 21 133 133 0.12583846e+01 -0.14734781e+01 0.11812380e+02 0.00000000e+00
- 2 21 133 133 0.96361876e+00 -0.24842243e+00 0.13067831e+02 0.00000000e+00
- 2 21 133 133 0.45815393e+00 -0.44524778e+00 0.18547504e+02 0.00000000e+00
- 2 21 133 133 0.66852397e+00 -0.89970602e+00 0.18056681e+02 0.00000000e+00
- 2 21 133 133 -0.51614180e+00 0.15920698e+00 0.83771513e+01 0.00000000e+00
- 2 21 133 133 -0.24266973e+00 0.55681342e+00 0.65769902e+02 0.00000000e+00
- 2 21 133 133 0.23451032e+00 -0.30230111e+00 0.16953081e+03 0.00000000e+00
- 2 1 133 133 0.28500249e+01 0.82157647e+00 0.74253792e+03 0.33000000e+00
- 2 2 205 205 -0.50628435e+00 0.68657227e+00 -0.96926608e+02 0.33000000e+00
- 2 21 205 205 0.47587220e+00 0.87802027e+00 -0.79060466e+02 0.00000000e+00
- 2 21 205 205 0.13483292e+01 0.10391246e+01 -0.77053828e+02 0.00000000e+00
- 2 21 205 205 -0.80108124e-01 0.41984644e+00 -0.23036661e+01 0.00000000e+00
- 2 21 205 205 0.33934818e+01 -0.19567848e+01 0.10629741e+02 0.00000000e+00
- 2 21 205 205 0.80123489e+00 0.11601009e+01 0.45937258e+01 0.00000000e+00
- 2 21 205 205 -0.25132986e+01 0.52091221e+01 0.42815093e+02 0.00000000e+00
- 2 21 205 205 -0.12583846e+01 0.14734781e+01 0.27432472e+02 0.00000000e+00
- 2 21 205 205 -0.66852397e+00 0.89970602e+00 0.24005531e+02 0.00000000e+00
- 2 21 205 205 -0.12590792e+01 0.17333763e+01 0.36316534e+02 0.00000000e+00
- 2 21 205 205 -0.32138677e+00 -0.90913227e-01 0.55404257e+01 0.00000000e+00
- 2 21 205 205 -0.43460060e+00 0.14771421e+01 0.22145096e+01 0.00000000e+00
- 2 21 205 205 0.97207842e+00 0.12729730e+00 0.42630082e+01 0.00000000e+00
- 2 21 205 205 -0.23871409e+01 0.12196626e+02 0.15830609e+03 0.00000000e+00
- 2 21 205 205 -0.69832237e+00 0.18165247e+01 0.32503178e+02 0.00000000e+00
- 2 21 205 205 -0.14646194e+00 0.28908021e+00 0.79567758e+01 0.00000000e+00
- 2 21 205 205 0.35657927e+00 -0.21286967e+00 0.69030338e+01 0.00000000e+00
- 2 21 205 205 -0.95495833e+00 0.20478297e+01 0.69048914e+01 0.00000000e+00
- 2 21 205 205 -0.36406534e+00 -0.38680757e+00 0.26039183e+01 0.00000000e+00
- 2 21 205 205 -0.47959926e+00 0.74676937e-01 0.32817393e+01 0.00000000e+00
- 2 21 205 205 0.14545838e+01 -0.26231149e+01 0.62079100e+02 0.00000000e+00
- 2 2203 205 205 -0.91082745e-02 0.91868804e+00 0.87096391e+03 0.77133000e+00
- 2 1 248 248 -0.24589775e+01 -0.62775194e+01 0.17090358e+04 0.00000000e+00
- 2 21 248 248 0.12590792e+01 -0.17333763e+01 0.63533601e+03 0.00000000e+00
- 2 21 248 248 -0.80123489e+00 -0.11601009e+01 0.17044889e+03 0.00000000e+00
- 2 21 248 248 -0.14436885e+01 0.48762586e-01 0.76649032e+02 0.00000000e+00
- 2 21 248 248 -0.33934818e+01 0.19567848e+01 0.27985341e+03 0.00000000e+00
- 2 21 248 248 -0.19616336e+01 0.61371716e+01 0.40028709e+03 0.00000000e+00
- 2 -1 248 248 0.24589775e+01 0.62775194e+01 0.15908187e+03 0.00000000e+00
- 2 21 261 261 -0.35253049e-01 0.13050908e+01 -0.94677912e+01 0.00000000e+00
- 2 21 261 261 -0.96361876e+00 0.24842243e+00 -0.37366524e+02 0.00000000e+00
- 2 21 261 261 0.35253049e-01 -0.13050908e+01 -0.37916860e+03 0.00000000e+00
- 2 21 261 261 0.24553162e+00 -0.86561512e+00 -0.23887420e+03 0.00000000e+00
- 2 21 269 269 0.31583170e+00 0.50680691e+00 0.71478251e+03 0.00000000e+00
- 2 21 269 269 0.32138677e+00 0.90913227e-01 -0.31715549e+00 0.00000000e+00
- 2 21 269 269 -0.31583170e+00 -0.50680691e+00 -0.18351921e+01 0.00000000e+00
- 2 92 94 132 -0.32227863e+02 0.12674634e+02 -0.41482295e+04 0.60799642e+03
- 2 213 285 286 -0.28838985e+01 -0.92702587e+00 -0.22385620e+01 0.73349438e+00
- 2 311 287 287 -0.40805992e+01 -0.90527393e+00 -0.21923652e+01 0.49767000e+00
- 2 3322 288 289 -0.61014241e+01 0.24476566e+01 -0.53984106e+01 0.13149000e+01
- 2 323 290 291 -0.44284607e+01 0.41149303e+00 -0.37928403e+01 0.79923289e+00
- 2 -2214 292 293 -0.34393183e+01 0.12269284e+01 -0.25305959e+01 0.12488008e+01
- 2 111 294 295 -0.29568360e+00 0.39611142e+00 -0.71413408e+00 0.13498000e+00
- 2 311 296 296 -0.38615737e+01 0.39987963e+01 -0.27559218e+01 0.49767000e+00
- 1 -321 0 0 -0.46275094e+01 0.27977284e+01 -0.18596767e+01 0.49360000e+00
- 1 211 0 0 -0.19737663e+01 0.29813098e+01 -0.20415257e+01 0.13957000e+00
- 1 -211 0 0 -0.46049738e+01 0.30827755e+01 -0.16884404e+01 0.13957000e+00
- 1 211 0 0 -0.39347067e+01 0.25194361e+01 -0.16703917e+01 0.13957000e+00
- 2 331 297 299 -0.69864651e+01 0.65040294e+01 -0.31068100e+01 0.95762489e+00
- 2 223 300 302 -0.27915868e+01 0.14706372e+01 -0.14590625e+01 0.78400706e+00
- 1 2112 0 0 -0.16514851e+01 0.15574413e+01 -0.94848866e+00 0.93957000e+00
- 1 -2112 0 0 -0.21895747e+01 0.24186867e+01 -0.15360856e+01 0.93957000e+00
- 2 -213 303 304 -0.81347670e+00 0.43354832e+00 -0.12452329e+01 0.73717361e+00
- 2 213 305 306 0.10620932e+00 0.12810927e+00 -0.22507027e+01 0.73184251e+00
- 2 113 307 308 -0.20044283e+00 0.11434255e+01 -0.27395533e+01 0.51189693e+00
- 2 -213 309 310 0.37065058e+00 0.14822139e-01 -0.29875532e+01 0.60680527e+00
- 2 331 311 313 0.52257157e-01 -0.16162500e+00 -0.17405907e+01 0.95748008e+00
- 2 111 314 315 0.12602685e+00 -0.60430445e-01 -0.66481038e-01 0.13498000e+00
- 2 323 316 317 0.66865798e+00 0.13435529e+01 -0.82457019e+01 0.96789467e+00
- 2 -323 318 319 0.18198716e+01 -0.13849275e+01 -0.12554046e+02 0.91368722e+00
- 2 221 320 322 0.87969422e+00 -0.45426668e+00 -0.14080057e+02 0.54745000e+00
- 1 211 0 0 0.97277009e+00 -0.12393379e+01 -0.88257914e+01 0.13957000e+00
- 2 311 323 323 0.70460790e+00 -0.19976809e-01 -0.52096034e+01 0.49767000e+00
- 2 333 324 325 0.22012007e+01 -0.26748465e+01 -0.40801987e+02 0.10235796e+01
- 2 -311 326 326 0.56513791e+00 -0.30695181e+00 -0.10368482e+02 0.49767000e+00
- 2 3122 327 328 0.36718050e+01 -0.38342451e+01 -0.71423945e+02 0.11156800e+01
- 2 -3224 329 330 0.50858211e+01 -0.61292905e+01 -0.11157398e+03 0.13986713e+01
- 2 223 331 332 0.36375348e+01 -0.29203819e+01 -0.60484279e+02 0.81128091e+00
- 1 211 0 0 -0.14748387e+00 -0.30718246e+00 -0.20048164e+02 0.13957000e+00
- 2 111 333 334 0.66865509e+00 -0.46245554e+00 -0.27145939e+02 0.13498000e+00
- 2 311 335 335 -0.40466434e-01 -0.59354561e-02 -0.62895356e+01 0.49767000e+00
- 2 -323 336 337 0.86837462e-02 -0.20644980e+00 -0.11650815e+03 0.86738644e+00
- 2 213 338 339 -0.70368084e-02 -0.21264147e+00 -0.85205476e+02 0.91510053e+00
- 1 -211 0 0 0.26436043e+00 0.15760854e+00 -0.22187271e+02 0.13957000e+00
- 2 331 340 342 0.11536635e+00 -0.33853919e+00 -0.10529070e+03 0.95782821e+00
- 1 2212 0 0 0.91275923e+00 0.19232048e+00 -0.33770230e+04 0.93827000e+00
- 2 92 134 204 -0.21233610e+02 -0.12719239e+02 -0.82571256e+03 0.28444557e+04
- 2 113 343 344 -0.55130124e+01 -0.11318008e+01 -0.41000774e+01 0.69543256e+00
- 2 -323 345 346 -0.51596805e+01 -0.79873524e+00 -0.38393828e+01 0.88840141e+00
- 1 321 0 0 -0.48272902e+01 -0.93683786e+00 -0.31749349e+01 0.49360000e+00
- 2 331 347 349 -0.26422889e+01 -0.85054733e-02 -0.14752162e+01 0.95752794e+00
- 2 113 350 351 -0.21627075e+01 0.19948013e+00 -0.14567929e+01 0.62477701e+00
- 2 331 352 354 -0.37001004e+01 0.55905742e+00 -0.12190141e+01 0.95809028e+00
- 2 113 355 356 -0.27430769e+01 -0.11476076e+00 -0.65467889e+00 0.67396380e+00
- 1 -211 0 0 -0.31915919e+01 0.12117001e+01 -0.87430806e+00 0.13957000e+00
- 2 113 357 358 -0.12626830e+01 -0.90195204e-01 -0.77070452e-01 0.71315561e+00
- 2 213 359 360 0.18805372e+00 0.22876363e-01 0.23368945e+00 0.77903345e+00
- 2 -213 361 362 -0.42539760e+00 -0.21364244e+01 0.73595640e+00 0.78464924e+00
- 2 -311 363 363 0.55334877e+00 -0.14621475e+01 -0.10755170e+00 0.49767000e+00
- 2 333 364 365 0.16382032e+01 -0.24607243e+01 0.10949769e+01 0.10110972e+01
- 2 311 366 366 -0.35874909e+00 -0.63692367e+00 -0.10005660e+01 0.49767000e+00
- 1 211 0 0 0.20725371e-01 0.13717219e+00 -0.15667613e+00 0.13957000e+00
- 2 113 367 368 0.43121092e+00 -0.15673366e+01 -0.15017846e+01 0.73908189e+00
- 2 111 369 370 0.42113502e+00 -0.10550429e+01 -0.17452569e+01 0.13498000e+00
- 1 -321 0 0 0.15253943e+00 -0.55333817e+00 -0.17367178e+01 0.49360000e+00
- 2 311 371 371 0.29207219e+00 -0.70314829e+00 -0.17269706e+01 0.49767000e+00
- 2 -2214 372 373 0.13472149e+01 -0.77636822e+00 -0.59118290e+01 0.11519624e+01
- 2 213 374 375 0.16202011e+01 0.20438230e+00 -0.91987466e+01 0.72754966e+00
- 1 2212 0 0 0.15425467e+01 -0.59590509e-01 -0.48927141e+01 0.93827000e+00
- 2 113 376 377 0.12820603e+01 -0.49444287e-01 -0.92270345e+01 0.74848885e+00
- 1 -211 0 0 0.43176694e+00 0.13881207e+00 -0.35593528e+01 0.13957000e+00
- 2 221 378 379 0.11005796e+01 -0.27848598e+01 -0.75720064e+02 0.54745000e+00
- 2 -311 380 380 0.91678045e+00 -0.21239108e+01 -0.60297951e+02 0.49767000e+00
- 2 323 381 382 0.54612384e+00 -0.15798764e+01 -0.49325227e+02 0.88517725e+00
- 1 -321 0 0 -0.40262444e+00 -0.82302149e-01 -0.19925316e+02 0.49360000e+00
- 2 333 383 384 0.12476061e+01 -0.29696875e+01 -0.11034724e+03 0.10164825e+01
- 2 323 385 386 0.36003761e-01 -0.52062362e+00 -0.35794525e+02 0.90147856e+00
- 2 113 387 388 -0.13064162e+01 -0.25369439e+00 -0.12808450e+03 0.70762752e+00
- 1 -321 0 0 -0.82722541e+00 -0.76838995e-01 -0.12002663e+03 0.49360000e+00
- 2 323 389 390 -0.18520671e+01 -0.64130414e+00 -0.21441955e+03 0.92106540e+00
- 1 -211 0 0 0.23868822e+00 -0.47051443e+00 -0.10556691e+03 0.13957000e+00
- 2 113 391 392 0.47873464e-01 -0.11293512e+01 -0.17656023e+03 0.79439214e+00
- 2 -311 393 393 0.24077572e+00 0.78338333e-01 -0.23640372e+02 0.49767000e+00
- 1 321 0 0 -0.48586393e-01 -0.20916865e+00 -0.99085460e+02 0.49360000e+00
- 1 -2212 0 0 0.10015269e+01 -0.36803431e+00 -0.11819856e+03 0.93827000e+00
- 1 2212 0 0 0.98603312e+00 -0.82997966e-01 -0.78395237e+02 0.93827000e+00
- 2 111 394 395 0.17154271e+00 -0.43699959e+00 -0.37917410e+02 0.13498000e+00
- 1 -211 0 0 0.35219163e+00 0.30433309e+00 -0.18298538e+02 0.13957000e+00
- 2 111 396 397 0.62237668e+00 0.10108479e+00 -0.51257496e+02 0.13498000e+00
- 2 221 398 400 0.16694182e+00 -0.12157666e+00 -0.34906817e+02 0.54745000e+00
- 2 213 401 402 0.14884919e+01 0.76206448e+00 -0.72990164e+02 0.76571355e+00
- 2 113 403 404 -0.15978209e+00 0.11429589e+01 -0.22506250e+02 0.69554085e+00
- 2 -213 405 406 -0.50650102e+00 0.57975060e+00 -0.19228752e+02 0.83903449e+00
- 2 223 407 409 -0.57129151e+00 0.18067138e+01 -0.35760026e+02 0.73093057e+00
- 2 223 410 412 -0.18234641e+00 0.66799422e+00 -0.26811979e+02 0.79780703e+00
- 1 -2112 0 0 -0.10396112e+01 0.10380017e+01 -0.38605467e+02 0.93957000e+00
- 1 2212 0 0 -0.12763492e+00 0.15599920e+01 -0.13337614e+02 0.93827000e+00
- 2 111 413 414 -0.10567970e+01 0.23396820e+00 -0.52588198e+01 0.13498000e+00
- 2 -213 415 416 -0.27646128e+00 0.44846634e+00 -0.73797586e+01 0.70427506e+00
- 1 -2112 0 0 -0.10363042e+01 0.40506641e+00 -0.74604935e+01 0.93957000e+00
- 2 221 417 418 -0.10831378e+01 0.81498562e+00 -0.54498742e+01 0.54745000e+00
- 1 2212 0 0 0.10466704e+00 0.97638028e+00 -0.25371858e+01 0.93827000e+00
- 2 -323 419 420 -0.14875562e+01 0.16013768e+01 -0.18353390e+01 0.87824867e+00
- 2 331 421 422 -0.36201498e+00 0.18194309e+00 -0.77837190e+00 0.95802717e+00
- 2 313 423 424 -0.14098664e+01 0.16598133e+01 -0.76042713e+00 0.90940058e+00
- 2 -313 425 426 0.32872489e+00 -0.53481762e+00 0.75665834e+00 0.89174395e+00
- 2 313 427 428 -0.16005161e+00 0.94712483e+00 0.25539060e+01 0.87693504e+00
- 2 111 429 430 0.14111869e+00 -0.33095078e+00 0.73446862e+00 0.13498000e+00
- 1 211 0 0 0.42766855e+00 -0.17636971e+00 0.94583799e+00 0.13957000e+00
- 2 -213 431 432 0.52915438e+00 0.15095913e-01 0.90133010e+01 0.71070309e+00
- 1 -2212 0 0 -0.14338818e+00 -0.57021726e+00 0.24657050e+02 0.93827000e+00
- 1 211 0 0 -0.16603204e+00 -0.19700321e+00 0.71577790e+01 0.13957000e+00
- 2 3122 433 434 0.16164426e+01 -0.12748101e+01 0.26521738e+02 0.11156800e+01
- 2 323 435 436 0.38079695e-01 0.19082125e+00 0.15071512e+03 0.90414432e+00
- 2 111 437 438 -0.10017728e+00 -0.59489204e-01 0.22824677e+01 0.13498000e+00
- 2 -213 439 440 0.10656231e+01 0.26040617e+00 0.19351723e+03 0.96040507e+00
- 2 -313 441 442 0.12744544e+00 0.50573510e+00 0.16050071e+03 0.94243676e+00
- 2 311 443 443 0.15953037e+01 0.61587808e-01 0.46897179e+03 0.49767000e+00
- 2 92 206 247 -0.32791631e+01 0.27176721e+02 0.10539691e+04 0.11604448e+04
- 1 211 0 0 -0.54813676e-01 0.10879139e+01 -0.88939685e+02 0.13957000e+00
- 1 2112 0 0 0.57846104e+00 0.35694488e+00 -0.76391830e+02 0.93957000e+00
- 1 -2112 0 0 0.24233131e+00 0.64274730e+00 -0.34627285e+02 0.93957000e+00
- 1 -211 0 0 0.18525657e+00 -0.23281785e-01 -0.99043899e+01 0.13957000e+00
- 2 213 444 445 -0.11498594e+00 0.62706795e+00 -0.39847553e+02 0.71627574e+00
- 2 113 446 447 0.49618176e+00 -0.19149148e+00 -0.18501532e+01 0.74089641e+00
- 1 -211 0 0 0.19322170e+00 0.55101904e+00 -0.79446512e+00 0.13957000e+00
- 2 213 448 449 -0.37437198e+00 -0.37441043e+00 -0.48246488e+00 0.75753647e+00
- 2 -213 450 451 0.35919876e+00 -0.13460915e+00 -0.96930222e+00 0.79353531e+00
- 2 113 452 453 0.82277166e-01 0.14002822e+00 -0.62426912e-02 0.90160280e+00
- 1 2212 0 0 0.39314656e+00 -0.35231747e+00 0.94995880e+00 0.93827000e+00
- 2 223 454 456 0.31308599e+00 0.20711568e+00 0.67055783e+00 0.77530864e+00
- 2 -2214 457 458 0.72862999e+00 -0.36239946e+00 0.29837466e+01 0.11257313e+01
- 2 111 459 460 0.85207824e+00 -0.21928970e+00 0.18916743e+01 0.13498000e+00
- 2 213 461 462 0.10500573e+01 0.22292195e+00 0.39555796e+01 0.85909917e+00
- 1 2212 0 0 -0.59020762e+00 0.59493059e+00 0.86103574e+01 0.93827000e+00
- 1 -211 0 0 -0.32461449e+00 0.41686191e+00 0.10333220e+02 0.13957000e+00
- 1 -2212 0 0 -0.88898260e-01 0.17693257e+01 0.10441975e+02 0.93827000e+00
- 2 111 463 464 -0.22178087e+00 0.52204039e+00 0.39993352e+01 0.13498000e+00
- 2 2224 465 466 -0.95164723e+00 0.86604137e+00 0.22415085e+02 0.11078295e+01
- 1 -211 0 0 -0.28890104e+00 0.11087758e+01 0.22126713e+02 0.13957000e+00
- 1 -2212 0 0 -0.19698714e+01 0.26023829e+01 0.21302231e+02 0.93827000e+00
- 2 213 467 468 -0.55311850e+00 0.15130665e+01 0.22381033e+02 0.74101191e+00
- 2 221 469 470 -0.41599493e+00 -0.13222066e-02 0.11470459e+02 0.54745000e+00
- 2 -213 471 472 0.10472208e+00 0.63444734e+00 0.34341703e+01 0.62903215e+00
- 2 323 473 474 -0.81964238e-01 0.13601589e+00 0.57768163e+01 0.89156304e+00
- 1 -321 0 0 -0.67708310e+00 0.87380419e+00 0.32997591e+01 0.49360000e+00
- 2 113 475 476 0.10481507e+01 0.39893104e+00 0.10640011e+02 0.71212219e+00
- 2 213 477 478 -0.12074526e+01 0.68880408e+01 0.88816383e+02 0.75337445e+00
- 2 -213 479 480 -0.12802104e+01 0.37296859e+01 0.54924883e+02 0.91883521e+00
- 2 113 481 482 0.20511249e+00 0.17984449e+01 0.23541751e+02 0.79230287e+00
- 2 213 483 484 -0.55784899e+00 0.40909795e+00 0.10740907e+02 0.82725827e+00
- 2 113 485 486 -0.24755989e+00 0.11616565e+01 0.74740288e+01 0.69178208e+00
- 2 223 487 489 -0.76929256e+00 0.10246884e+00 0.99302667e+01 0.79631124e+00
- 2 -213 490 491 0.86509536e-01 0.37285652e+00 0.97689108e+01 0.78485852e+00
- 2 213 492 493 -0.24162102e+00 -0.29980709e-01 0.29329875e+01 0.85028297e+00
- 2 2114 494 495 -0.12834749e+00 0.40090413e+00 0.17815023e+02 0.11004995e+01
- 2 -213 496 497 0.38603741e+00 -0.12281581e+01 0.15644364e+02 0.78411655e+00
- 2 -1114 498 499 -0.24728186e+00 0.12418893e-01 0.24843967e+02 0.12581059e+01
- 2 -213 500 501 0.53830607e+00 -0.71913830e+00 0.46819499e+02 0.75051385e+00
- 2 2214 502 503 0.10317210e+00 0.25298370e+00 0.58685902e+03 0.11333277e+01
- 2 213 504 505 0.16276821e+00 0.41217929e+00 0.24098781e+03 0.80451627e+00
- 2 92 249 260 -0.63409597e+01 0.52492418e+01 0.34306922e+04 0.41296373e+02
- 1 2112 0 0 -0.15258298e+01 -0.40184103e+01 0.11104131e+04 0.93957000e+00
- 1 -2112 0 0 -0.45042597e+00 -0.32840143e+01 0.96192023e+03 0.93957000e+00
- 2 313 506 507 0.54958677e-02 -0.10850212e+01 0.32478389e+03 0.91305183e+00
- 2 -313 508 509 -0.31956318e+00 -0.43150028e+00 0.65649295e+02 0.89918532e+00
- 2 -213 510 511 -0.10511672e+01 0.32847361e+00 0.11882933e+03 0.67712696e+00
- 2 221 512 514 -0.95550745e+00 -0.31189703e-02 0.65645818e+02 0.54745000e+00
- 2 213 515 516 -0.91200087e+00 0.18947317e+01 0.17641350e+03 0.10069834e+01
- 2 -213 517 518 -0.14514985e+01 0.85414207e+00 0.11828216e+03 0.77553808e+00
- 2 111 519 520 -0.54552643e+00 0.15817676e+01 0.90559592e+02 0.13498000e+00
- 2 2224 521 522 -0.68391216e+00 0.13996346e+01 0.14472910e+03 0.12677912e+01
- 2 -2224 523 524 -0.30362768e+00 0.39268428e+01 0.15247447e+03 0.11375112e+01
- 2 213 525 526 0.18526037e+01 0.40857145e+01 0.10099172e+03 0.58469335e+00
- 2 92 262 268 -0.71808714e+00 -0.61719269e+00 -0.66487712e+03 0.11878960e+02
- 2 111 527 528 -0.33415500e+00 0.40239840e+00 -0.56942343e+01 0.13498000e+00
- 2 223 529 531 -0.36794980e+00 0.77916595e+00 -0.14680451e+02 0.77507557e+00
- 1 -321 0 0 -0.12958652e+00 0.50289821e+00 -0.40008756e+02 0.49360000e+00
- 2 311 532 532 0.71737120e+00 -0.45263020e+00 -0.29100777e+02 0.49767000e+00
- 2 213 533 534 -0.69263115e+00 -0.82023338e+00 -0.24749004e+03 0.79401515e+00
- 2 -213 535 536 -0.69672971e+00 -0.19046241e+00 -0.10298148e+03 0.83675230e+00
- 1 211 0 0 0.78559383e+00 -0.83832925e+00 -0.22492138e+03 0.13957000e+00
- 2 92 270 284 0.32138677e+00 0.90913227e-01 0.71263017e+03 0.80595382e+02
- 2 113 537 538 0.42171523e+00 0.26923609e+00 0.18092157e+02 0.73590173e+00
- 1 211 0 0 -0.63110333e+00 -0.46970688e+00 0.25069821e+01 0.13957000e+00
- 2 -213 539 540 0.49713538e+00 0.31896507e+00 0.17002824e+01 0.53709182e+00
- 2 -311 541 541 -0.55580934e+00 0.36604352e-01 0.40912963e+01 0.49767000e+00
- 2 333 542 543 0.48350232e+00 -0.34849615e+00 -0.28261909e+00 0.10231967e+01
- 2 313 544 545 -0.30042846e+00 0.12847323e+00 0.38092043e+00 0.98379280e+00
- 2 111 546 547 0.48183057e+00 -0.11919477e+00 -0.56198782e-01 0.13498000e+00
- 1 211 0 0 -0.79743522e+00 -0.30199400e+00 -0.34306064e+00 0.13957000e+00
- 2 221 548 549 -0.41191410e-01 0.87707002e-03 0.77210548e+01 0.54745000e+00
- 2 -213 550 551 0.35110008e+00 -0.39676804e+00 0.23363202e+02 0.78604108e+00
- 2 223 552 554 0.10418060e+00 0.91521544e+00 0.35211335e+03 0.77808579e+00
- 2 213 555 556 0.25565594e+00 0.78594905e-01 0.62276826e+02 0.91744079e+00
- 1 -321 0 0 -0.21306250e+00 -0.23330014e+00 0.15932174e+03 0.49360000e+00
- 2 313 557 558 0.34040447e-01 -0.44581973e-02 0.68258773e+02 0.89988792e+00
- 2 223 559 561 0.23125647e+00 0.21686524e+00 0.13485464e+02 0.78012283e+00
- 1 211 0 0 -0.15601399e+01 -0.85373823e+00 -0.12594224e+01 0.13957000e+00
- 2 111 562 563 -0.13237586e+01 -0.73287646e-01 -0.97913959e+00 0.13498000e+00
- 1 130 0 0 -0.40805992e+01 -0.90527393e+00 -0.21923652e+01 0.49767000e+00
- 2 3122 564 565 -0.55961779e+01 0.23000306e+01 -0.50730617e+01 0.11156800e+01
- 2 111 566 567 -0.50524622e+00 0.14762609e+00 -0.32534887e+00 0.13498000e+00
- 2 311 568 568 -0.32570237e+01 0.47995517e+00 -0.26471625e+01 0.49767000e+00
- 1 211 0 0 -0.11714370e+01 -0.68462147e-01 -0.11456778e+01 0.13957000e+00
- 1 -2112 0 0 -0.29512882e+01 0.11197779e+01 -0.19143442e+01 0.93957000e+00
- 1 -211 0 0 -0.48803008e+00 0.10715050e+00 -0.61625170e+00 0.13957000e+00
- 1 22 0 0 -0.88833463e-01 0.22931642e+00 -0.36714516e+00 0.00000000e+00
- 1 22 0 0 -0.20685013e+00 0.16679500e+00 -0.34698892e+00 0.00000000e+00
- 2 310 569 570 -0.38615737e+01 0.39987963e+01 -0.27559218e+01 0.49767000e+00
- 1 211 0 0 -0.21146657e+01 0.17216571e+01 -0.87455011e+00 0.13957000e+00
- 1 -211 0 0 -0.78909416e+00 0.83392357e+00 -0.39781815e+00 0.13957000e+00
- 2 221 571 573 -0.40827053e+01 0.39484488e+01 -0.18344417e+01 0.54745000e+00
- 1 -211 0 0 -0.20083165e+00 0.50052092e-01 -0.22393785e+00 0.13957000e+00
- 1 211 0 0 -0.16350273e+01 0.82556882e+00 -0.90194165e+00 0.13957000e+00
- 2 111 574 575 -0.95572780e+00 0.59501627e+00 -0.33318303e+00 0.13498000e+00
- 1 -211 0 0 -0.60673534e+00 0.37606251e+00 -0.12673786e+01 0.13957000e+00
- 2 111 576 577 -0.20674136e+00 0.57485815e-01 0.22145629e-01 0.13498000e+00
- 1 211 0 0 0.59495635e-01 0.60245064e-01 -0.22006138e+01 0.13957000e+00
- 2 111 578 579 0.46713687e-01 0.67864210e-01 -0.50088903e-01 0.13498000e+00
- 1 -211 0 0 0.45445011e-01 0.84357840e+00 -0.18166867e+01 0.13957000e+00
- 1 211 0 0 -0.24588785e+00 0.29984711e+00 -0.92286663e+00 0.13957000e+00
- 1 -211 0 0 0.16936967e+00 0.24048417e+00 -0.20723923e+01 0.13957000e+00
- 2 111 580 581 0.20128090e+00 -0.22566203e+00 -0.91516092e+00 0.13498000e+00
- 2 111 582 583 -0.97771239e-02 -0.49943848e-01 -0.26633077e+00 0.13498000e+00
- 2 111 584 585 -0.63253772e-01 -0.21044441e+00 -0.46030198e+00 0.13498000e+00
- 2 221 586 588 0.12528805e+00 0.98763255e-01 -0.10139579e+01 0.54745000e+00
- 1 22 0 0 -0.12447770e-01 0.13239598e-01 0.19364477e-01 0.00000000e+00
- 1 22 0 0 0.13847462e+00 -0.73670043e-01 -0.85845515e-01 0.00000000e+00
- 2 311 589 589 0.26162817e-01 0.68899812e+00 -0.43359105e+01 0.49767000e+00
- 1 211 0 0 0.64249516e+00 0.65455477e+00 -0.39097914e+01 0.13957000e+00
- 1 -321 0 0 0.13232934e+01 -0.13382211e+01 -0.10001228e+02 0.49360000e+00
- 2 111 590 591 0.49657827e+00 -0.46706345e-01 -0.25528182e+01 0.13498000e+00
- 1 211 0 0 0.17756281e+00 -0.48767083e-01 -0.34426949e+01 0.13957000e+00
- 1 -211 0 0 0.35992923e+00 -0.35403652e+00 -0.60803494e+01 0.13957000e+00
- 2 111 592 593 0.34220218e+00 -0.51463074e-01 -0.45570122e+01 0.13498000e+00
- 2 310 594 595 0.70460790e+00 -0.19976809e-01 -0.52096034e+01 0.49767000e+00
- 1 321 0 0 0.97197593e+00 -0.12889262e+01 -0.17844424e+02 0.49360000e+00
- 1 -321 0 0 0.12292248e+01 -0.13859203e+01 -0.22957563e+02 0.49360000e+00
- 2 310 596 597 0.56513791e+00 -0.30695181e+00 -0.10368482e+02 0.49767000e+00
- 1 2212 0 0 0.32214861e+01 -0.32557158e+01 -0.60708709e+02 0.93827000e+00
- 1 -211 0 0 0.45031894e+00 -0.57852922e+00 -0.10715236e+02 0.13957000e+00
- 2 -3122 598 599 0.46911153e+01 -0.54376672e+01 -0.98598717e+02 0.11156800e+01
- 1 -211 0 0 0.39470575e+00 -0.69162333e+00 -0.12975262e+02 0.13957000e+00
- 1 22 0 0 0.11846605e+01 -0.14451387e+01 -0.23382690e+02 0.00000000e+00
- 2 111 600 601 0.24528744e+01 -0.14752432e+01 -0.37101588e+02 0.13498000e+00
- 1 22 0 0 0.50889064e+00 -0.36212553e+00 -0.18790631e+02 0.00000000e+00
- 1 22 0 0 0.15976445e+00 -0.10033001e+00 -0.83553083e+01 0.00000000e+00
- 2 310 602 603 -0.40466434e-01 -0.59354561e-02 -0.62895356e+01 0.49767000e+00
- 2 -311 604 604 -0.23857728e+00 -0.15751147e+00 -0.90407924e+02 0.49767000e+00
- 1 -211 0 0 0.24726102e+00 -0.48938324e-01 -0.26100223e+02 0.13957000e+00
- 1 211 0 0 0.19481317e+00 0.20460044e+00 -0.58281777e+02 0.13957000e+00
- 2 111 605 606 -0.20184998e+00 -0.41724191e+00 -0.26923700e+02 0.13498000e+00
- 1 -211 0 0 0.63980398e-01 -0.65591158e-01 -0.97914796e+01 0.13957000e+00
- 1 211 0 0 0.14816289e+00 -0.11817725e+00 -0.21424674e+02 0.13957000e+00
- 2 221 607 609 -0.96776945e-01 -0.15477079e+00 -0.74074549e+02 0.54745000e+00
- 1 -211 0 0 -0.48688523e+01 -0.88018372e+00 -0.37518950e+01 0.13957000e+00
- 1 211 0 0 -0.64416007e+00 -0.25161706e+00 -0.34818239e+00 0.13957000e+00
- 2 -311 610 610 -0.36174211e+01 -0.43834114e+00 -0.23608081e+01 0.49767000e+00
- 1 -211 0 0 -0.15422594e+01 -0.36039410e+00 -0.14785747e+01 0.13957000e+00
- 1 211 0 0 -0.41720356e+00 -0.12103997e+00 -0.17460131e+00 0.13957000e+00
- 1 -211 0 0 -0.55457488e+00 -0.47536183e-01 -0.43162629e+00 0.13957000e+00
- 2 221 611 613 -0.16705104e+01 0.16007068e+00 -0.86898858e+00 0.54745000e+00
- 1 -211 0 0 -0.46458975e+00 -0.17040746e+00 -0.38314054e+00 0.13957000e+00
- 1 211 0 0 -0.16981178e+01 0.36988759e+00 -0.10736524e+01 0.13957000e+00
- 2 111 614 615 -0.63977359e+00 0.80093565e-01 -0.64180322e-01 0.13498000e+00
- 2 111 616 617 -0.63514549e+00 0.46729763e-01 -0.12356443e+00 0.13498000e+00
- 2 221 618 619 -0.24251814e+01 0.43223409e+00 -0.10312693e+01 0.54745000e+00
- 1 211 0 0 -0.12059363e+01 0.25260896e+00 -0.31198150e+00 0.13957000e+00
- 1 -211 0 0 -0.15371406e+01 -0.36736972e+00 -0.34269739e+00 0.13957000e+00
- 1 211 0 0 -0.85802468e+00 0.20221585e+00 0.11973624e+00 0.13957000e+00
- 1 -211 0 0 -0.40465836e+00 -0.29241106e+00 -0.19680669e+00 0.13957000e+00
- 1 211 0 0 0.20893002e+00 -0.19288988e+00 -0.16842329e+00 0.13957000e+00
- 2 111 620 621 -0.20876304e-01 0.21576624e+00 0.40211274e+00 0.13498000e+00
- 1 -211 0 0 0.87466321e-01 -0.18676480e+00 -0.62880466e-01 0.13957000e+00
- 2 111 622 623 -0.51286392e+00 -0.19496596e+01 0.79883686e+00 0.13498000e+00
- 1 130 0 0 0.55334877e+00 -0.14621475e+01 -0.10755170e+00 0.49767000e+00
- 1 -321 0 0 0.96403002e+00 -0.12908808e+01 0.53718306e+00 0.49360000e+00
- 1 321 0 0 0.67417315e+00 -0.11698435e+01 0.55779383e+00 0.49360000e+00
- 1 130 0 0 -0.35874909e+00 -0.63692367e+00 -0.10005660e+01 0.49767000e+00
- 1 -211 0 0 0.59411476e+00 -0.11423415e+01 -0.12243281e+01 0.13957000e+00
- 1 211 0 0 -0.16290384e+00 -0.42499515e+00 -0.27745658e+00 0.13957000e+00
- 1 22 0 0 0.42085524e+00 -0.95234039e+00 -0.15809876e+01 0.00000000e+00
- 1 22 0 0 0.27978206e-03 -0.10270251e+00 -0.16426925e+00 0.00000000e+00
- 1 130 0 0 0.29207219e+00 -0.70314829e+00 -0.17269706e+01 0.49767000e+00
- 1 -2212 0 0 0.11698333e+01 -0.50153482e+00 -0.48390009e+01 0.93827000e+00
- 2 111 624 625 0.17738158e+00 -0.27483340e+00 -0.10728281e+01 0.13498000e+00
- 1 211 0 0 0.15656464e+01 0.54755004e-01 -0.83484954e+01 0.13957000e+00
- 2 111 626 627 0.54554691e-01 0.14962729e+00 -0.85025115e+00 0.13498000e+00
- 1 211 0 0 0.11440153e+00 -0.14707301e+00 -0.29265212e+01 0.13957000e+00
- 1 -211 0 0 0.11676588e+01 0.97628723e-01 -0.63005133e+01 0.13957000e+00
- 1 22 0 0 0.51104591e-01 -0.47027804e+00 -0.16255888e+02 0.00000000e+00
- 1 22 0 0 0.10494750e+01 -0.23145818e+01 -0.59464177e+02 0.00000000e+00
- 2 310 628 629 0.91678045e+00 -0.21239108e+01 -0.60297951e+02 0.49767000e+00
- 2 311 630 630 0.44706746e+00 -0.71517178e+00 -0.21492089e+02 0.49767000e+00
- 1 211 0 0 0.99056373e-01 -0.86470457e+00 -0.27833138e+02 0.13957000e+00
- 1 130 0 0 0.57415787e+00 -0.12397849e+01 -0.49257511e+02 0.49767000e+00
- 2 310 631 632 0.67344826e+00 -0.17299026e+01 -0.61089733e+02 0.49767000e+00
- 2 311 633 633 -0.26200227e+00 -0.25740671e+00 -0.22287880e+02 0.49767000e+00
- 1 211 0 0 0.29800603e+00 -0.26321691e+00 -0.13506644e+02 0.13957000e+00
- 1 -211 0 0 -0.34706505e+00 0.26470869e-01 -0.62300450e+02 0.13957000e+00
- 1 211 0 0 -0.95935115e+00 -0.28016526e+00 -0.65784047e+02 0.13957000e+00
- 2 311 634 634 -0.13524563e+01 -0.76363241e+00 -0.16517185e+03 0.49767000e+00
- 1 211 0 0 -0.49961085e+00 0.12232827e+00 -0.49247699e+02 0.13957000e+00
- 1 -211 0 0 0.37055230e+00 -0.63601164e+00 -0.11441262e+03 0.13957000e+00
- 1 211 0 0 -0.32267883e+00 -0.49333952e+00 -0.62147607e+02 0.13957000e+00
- 1 130 0 0 0.24077572e+00 0.78338333e-01 -0.23640372e+02 0.49767000e+00
- 1 22 0 0 0.13628870e+00 -0.29615079e+00 -0.30371744e+02 0.00000000e+00
- 1 22 0 0 0.35254011e-01 -0.14084880e+00 -0.75456659e+01 0.00000000e+00
- 1 22 0 0 0.22529096e+00 -0.25002391e-01 -0.16415711e+02 0.00000000e+00
- 1 22 0 0 0.39708571e+00 0.12608718e+00 -0.34841785e+02 0.00000000e+00
- 1 -211 0 0 -0.85074984e-01 -0.11435708e-01 -0.95373298e+01 0.13957000e+00
- 1 211 0 0 0.95612023e-01 -0.12690912e+00 -0.11452771e+02 0.13957000e+00
- 2 111 635 636 0.15640479e+00 0.16768170e-01 -0.13916716e+02 0.13498000e+00
- 1 211 0 0 0.16167023e+00 0.40273015e+00 -0.16642440e+02 0.13957000e+00
- 2 111 637 638 0.13268217e+01 0.35933434e+00 -0.56347724e+02 0.13498000e+00
- 1 211 0 0 -0.16234221e+00 0.21981288e+00 -0.10331015e+02 0.13957000e+00
- 1 -211 0 0 0.25601156e-02 0.92314598e+00 -0.12175235e+02 0.13957000e+00
- 1 -211 0 0 0.20267884e+00 0.74868902e-01 -0.45966724e+01 0.13957000e+00
- 2 111 639 640 -0.70917986e+00 0.50488169e+00 -0.14632080e+02 0.13498000e+00
- 1 211 0 0 -0.13891997e+00 0.10624877e+00 -0.57991256e+01 0.13957000e+00
- 1 -211 0 0 -0.32642272e+00 0.10308114e+01 -0.19567159e+02 0.13957000e+00
- 2 111 641 642 -0.10594882e+00 0.66965364e+00 -0.10393741e+02 0.13498000e+00
- 1 211 0 0 -0.11663587e+00 -0.18532537e-01 -0.24554130e+01 0.13957000e+00
- 1 -211 0 0 0.82152804e-01 0.49979346e+00 -0.12826113e+02 0.13957000e+00
- 2 111 643 644 -0.14786334e+00 0.18673329e+00 -0.11530453e+02 0.13498000e+00
- 1 22 0 0 -0.77203180e+00 0.10907885e+00 -0.37227956e+01 0.00000000e+00
- 1 22 0 0 -0.28476521e+00 0.12488936e+00 -0.15360242e+01 0.00000000e+00
- 1 -211 0 0 -0.66800108e-01 0.41372353e+00 -0.65498824e+01 0.13957000e+00
- 2 111 645 646 -0.20966117e+00 0.34742805e-01 -0.82987618e+00 0.13498000e+00
- 1 22 0 0 -0.10261237e+01 0.89460500e+00 -0.49909394e+01 0.00000000e+00
- 1 22 0 0 -0.57014055e-01 -0.79619377e-01 -0.45893483e+00 0.00000000e+00
- 2 -311 647 647 -0.81918557e+00 0.10910690e+01 -0.84802653e+00 0.49767000e+00
- 1 -211 0 0 -0.66837063e+00 0.51030778e+00 -0.98731244e+00 0.13957000e+00
- 1 22 0 0 0.80292725e-01 -0.23884608e-01 -0.75834204e-01 0.00000000e+00
- 2 113 648 649 -0.44230771e+00 0.20582769e+00 -0.70253769e+00 0.82185272e+00
- 1 321 0 0 -0.13365662e+01 0.15523274e+01 -0.51583800e+00 0.49360000e+00
- 1 -211 0 0 -0.73300203e-01 0.10748598e+00 -0.24458912e+00 0.13957000e+00
- 1 -321 0 0 0.35091896e+00 -0.86091824e-01 0.50837595e+00 0.49360000e+00
- 1 211 0 0 -0.22194067e-01 -0.44872580e+00 0.24828239e+00 0.13957000e+00
- 1 321 0 0 -0.10546572e+00 0.42016681e+00 0.83738511e+00 0.49360000e+00
- 1 -211 0 0 -0.54585891e-01 0.52695803e+00 0.17165209e+01 0.13957000e+00
- 1 22 0 0 0.41751146e-01 -0.17723853e+00 0.23718623e+00 0.00000000e+00
- 1 22 0 0 0.99367541e-01 -0.15371224e+00 0.49728239e+00 0.00000000e+00
- 1 -211 0 0 0.20152733e+00 0.33023026e+00 0.43680778e+01 0.13957000e+00
- 2 111 650 651 0.32762705e+00 -0.31513434e+00 0.46452232e+01 0.13498000e+00
- 1 2212 0 0 0.12818599e+01 -0.10175391e+01 0.22382282e+02 0.93827000e+00
- 1 -211 0 0 0.33458264e+00 -0.25727104e+00 0.41394558e+01 0.13957000e+00
- 2 311 652 652 0.78024072e-02 -0.12289422e+00 0.60260468e+02 0.49767000e+00
- 1 211 0 0 0.30277288e-01 0.31371547e+00 0.90454651e+02 0.13957000e+00
- 1 22 0 0 -0.29484873e-01 -0.70254991e-01 0.52497590e+00 0.00000000e+00
- 1 22 0 0 -0.70692406e-01 0.10765787e-01 0.17574918e+01 0.00000000e+00
- 1 -211 0 0 0.17028086e+00 0.44520291e+00 0.89877687e+02 0.13957000e+00
- 2 111 653 654 0.89534220e+00 -0.18479674e+00 0.10363954e+03 0.13498000e+00
- 1 -321 0 0 0.32384956e+00 0.17543323e+00 0.70656759e+02 0.49360000e+00
- 1 211 0 0 -0.19640412e+00 0.33030187e+00 0.89843948e+02 0.13957000e+00
- 1 130 0 0 0.15953037e+01 0.61587808e-01 0.46897179e+03 0.49767000e+00
- 1 211 0 0 0.23888389e+00 0.22429127e+00 -0.22256908e+02 0.13957000e+00
- 2 111 655 656 -0.35386983e+00 0.40277668e+00 -0.17590645e+02 0.13498000e+00
- 1 211 0 0 0.49126563e+00 -0.40409376e+00 -0.14347599e+01 0.13957000e+00
- 1 -211 0 0 0.49161245e-02 0.21260228e+00 -0.41539331e+00 0.13957000e+00
- 1 211 0 0 -0.63662238e-01 0.65710995e-01 -0.45708934e+00 0.13957000e+00
- 2 111 657 658 -0.31070974e+00 -0.44012142e+00 -0.25375532e-01 0.13498000e+00
- 1 -211 0 0 0.16769578e+00 -0.33615696e+00 -0.91148425e+00 0.13957000e+00
- 2 111 659 660 0.19150298e+00 0.20154781e+00 -0.57817970e-01 0.13498000e+00
- 1 211 0 0 -0.59719089e-01 -0.28117035e+00 -0.23545496e+00 0.13957000e+00
- 1 -211 0 0 0.14199625e+00 0.42119856e+00 0.22921227e+00 0.13957000e+00
- 1 211 0 0 0.31888248e+00 0.66729046e-01 0.30772933e+00 0.13957000e+00
- 1 -211 0 0 -0.10932717e+00 0.16491619e+00 0.37887473e+00 0.13957000e+00
- 2 111 661 662 0.10353067e+00 -0.24529561e-01 -0.16046233e-01 0.13498000e+00
- 1 -2212 0 0 0.56412945e+00 -0.37385861e+00 0.22920712e+01 0.93827000e+00
- 2 111 663 664 0.16450055e+00 0.11459149e-01 0.69167536e+00 0.13498000e+00
- 1 22 0 0 0.10044179e+00 -0.23415088e-01 0.13486651e+00 0.00000000e+00
- 1 22 0 0 0.75163645e+00 -0.19587461e+00 0.17568078e+01 0.00000000e+00
- 1 211 0 0 0.52929429e+00 -0.26932444e+00 0.13388635e+01 0.13957000e+00
- 2 111 665 666 0.52076305e+00 0.49224639e+00 0.26167161e+01 0.13498000e+00
- 1 22 0 0 -0.16897084e+00 0.47519848e+00 0.36909825e+01 0.00000000e+00
- 1 22 0 0 -0.52810035e-01 0.46841919e-01 0.30835266e+00 0.00000000e+00
- 1 2212 0 0 -0.70179723e+00 0.68587716e+00 0.18372061e+02 0.93827000e+00
- 1 211 0 0 -0.24985000e+00 0.18016420e+00 0.40430237e+01 0.13957000e+00
- 1 211 0 0 -0.19874245e+00 0.39552937e+00 0.31555212e+01 0.13957000e+00
- 2 111 667 668 -0.35437605e+00 0.11175371e+01 0.19225511e+02 0.13498000e+00
- 1 22 0 0 -0.48529659e+00 -0.15584819e+00 0.93220758e+01 0.00000000e+00
- 1 22 0 0 0.69301659e-01 0.15452598e+00 0.21483830e+01 0.00000000e+00
- 1 -211 0 0 0.33446958e+00 0.40916856e+00 0.19293991e+01 0.13957000e+00
- 2 111 669 670 -0.22974750e+00 0.22527878e+00 0.15047711e+01 0.13498000e+00
- 2 311 671 671 -0.21404839e+00 0.30628315e+00 0.33777776e+01 0.49767000e+00
- 1 211 0 0 0.13208415e+00 -0.17026726e+00 0.23990387e+01 0.13957000e+00
- 1 -211 0 0 -0.47413471e-01 0.80648154e-03 0.87969291e+00 0.13957000e+00
- 1 211 0 0 0.10955642e+01 0.39812456e+00 0.97603180e+01 0.13957000e+00
- 1 211 0 0 -0.42102935e+00 0.43601008e+01 0.55506667e+02 0.13957000e+00
- 2 111 672 673 -0.78642328e+00 0.25279400e+01 0.33309716e+02 0.13498000e+00
- 1 -211 0 0 -0.81341298e+00 0.12530375e+01 0.17627800e+02 0.13957000e+00
- 2 111 674 675 -0.46679744e+00 0.24766484e+01 0.37297083e+02 0.13498000e+00
- 1 211 0 0 0.84949113e-01 0.65895503e-01 0.98856094e+00 0.13957000e+00
- 1 -211 0 0 0.12016338e+00 0.17325494e+01 0.22553190e+02 0.13957000e+00
- 1 211 0 0 -0.66967589e-01 -0.19216224e+00 0.14683957e+01 0.13957000e+00
- 2 111 676 677 -0.49088140e+00 0.60126020e+00 0.92725108e+01 0.13498000e+00
- 1 -211 0 0 -0.29614266e+00 0.99115584e+00 0.46207802e+01 0.13957000e+00
- 1 211 0 0 0.48582774e-01 0.17050070e+00 0.28532486e+01 0.13957000e+00
- 1 -211 0 0 -0.74187719e-02 0.20148989e+00 0.19940471e+01 0.13957000e+00
- 1 211 0 0 -0.32828079e+00 -0.79781056e-01 0.23135421e+01 0.13957000e+00
- 2 111 678 679 -0.43359300e+00 -0.19239987e-01 0.56226775e+01 0.13498000e+00
- 1 -211 0 0 -0.27270675e+00 -0.35324232e-01 0.30016543e+01 0.13957000e+00
- 2 111 680 681 0.35921629e+00 0.40818076e+00 0.67672565e+01 0.13498000e+00
- 1 211 0 0 -0.20116308e+00 0.16288091e+00 0.27417137e+01 0.13957000e+00
- 2 111 682 683 -0.40457946e-01 -0.19286162e+00 0.19127386e+00 0.13498000e+00
- 1 2112 0 0 -0.14736709e+00 0.36580431e+00 0.16493421e+02 0.93957000e+00
- 2 111 684 685 0.19019603e-01 0.35099823e-01 0.13216019e+01 0.13498000e+00
- 1 -211 0 0 0.10530492e+00 -0.92912380e+00 0.72540928e+01 0.13957000e+00
- 2 111 686 687 0.28073249e+00 -0.29903428e+00 0.83902712e+01 0.13498000e+00
- 1 -2112 0 0 -0.43491794e+00 0.31844289e-03 0.21471340e+02 0.93957000e+00
- 1 211 0 0 0.18763608e+00 0.12100450e-01 0.33726262e+01 0.13957000e+00
- 1 -211 0 0 0.57316279e+00 -0.76815519e+00 0.34039330e+02 0.13957000e+00
- 2 111 688 689 -0.34856719e-01 0.49016887e-01 0.12780169e+02 0.13498000e+00
- 1 2112 0 0 -0.28129950e-01 0.17058577e+00 0.49381451e+03 0.93957000e+00
- 1 211 0 0 0.13130205e+00 0.82397931e-01 0.93044506e+02 0.13957000e+00
- 1 211 0 0 0.20144600e+00 -0.19196459e-01 0.17579939e+03 0.13957000e+00
- 2 111 690 691 -0.38677796e-01 0.43137575e+00 0.65188413e+02 0.13498000e+00
- 1 321 0 0 0.85916654e-01 -0.10224474e+01 0.21942471e+03 0.49360000e+00
- 1 -211 0 0 -0.80420786e-01 -0.62573803e-01 0.10535918e+03 0.13957000e+00
- 2 -311 692 692 -0.43048366e+00 -0.10537807e+00 0.46555254e+02 0.49767000e+00
- 2 111 693 694 0.11092048e+00 -0.32612221e+00 0.19094041e+02 0.13498000e+00
- 1 -211 0 0 -0.88150609e+00 -0.30210778e-02 0.77725833e+02 0.13957000e+00
- 2 111 695 696 -0.16966106e+00 0.33149469e+00 0.41103496e+02 0.13498000e+00
- 2 111 697 698 -0.38422956e+00 0.63806727e-01 0.22505728e+02 0.13498000e+00
- 2 111 699 700 -0.14954759e+00 -0.11876965e+00 0.12099927e+02 0.13498000e+00
- 2 111 701 702 -0.42173030e+00 0.51843953e-01 0.31040163e+02 0.13498000e+00
- 1 211 0 0 0.10807259e-01 0.76914744e+00 0.86406597e+02 0.13957000e+00
- 2 111 703 704 -0.92280812e+00 0.11255842e+01 0.90006903e+02 0.13498000e+00
- 1 -211 0 0 -0.14078814e+01 0.56873664e+00 0.10219200e+03 0.13957000e+00
- 2 111 705 706 -0.43617154e-01 0.28540542e+00 0.16090161e+02 0.13498000e+00
- 1 22 0 0 -0.52537984e+00 0.13929669e+01 0.80223850e+02 0.00000000e+00
- 1 22 0 0 -0.20146591e-01 0.18880076e+00 0.10335743e+02 0.00000000e+00
- 1 2212 0 0 -0.29730023e+00 0.74107125e+00 0.87966243e+02 0.93827000e+00
- 1 211 0 0 -0.38661193e+00 0.65856334e+00 0.56762854e+02 0.13957000e+00
- 1 -2212 0 0 -0.32114373e+00 0.30043491e+01 0.11996609e+03 0.93827000e+00
- 1 -211 0 0 0.17516053e-01 0.92249375e+00 0.32508376e+02 0.13957000e+00
- 1 211 0 0 0.13367479e+00 0.46682395e+00 0.93382692e+01 0.13957000e+00
- 2 111 707 708 0.17189289e+01 0.36188905e+01 0.91653447e+02 0.13498000e+00
- 1 22 0 0 -0.22649077e+00 0.20255123e+00 -0.27211585e+01 0.00000000e+00
- 1 22 0 0 -0.10766423e+00 0.19984717e+00 -0.29730758e+01 0.00000000e+00
- 1 211 0 0 -0.13961735e-02 -0.38697262e-01 -0.13995075e+01 0.13957000e+00
- 1 -211 0 0 -0.13620968e+00 0.62924932e+00 -0.74598602e+01 0.13957000e+00
- 2 111 709 710 -0.23034395e+00 0.18861390e+00 -0.58210834e+01 0.13498000e+00
- 1 130 0 0 0.71737120e+00 -0.45263020e+00 -0.29100777e+02 0.49767000e+00
- 1 211 0 0 -0.53588620e+00 -0.91388348e+00 -0.22265399e+03 0.13957000e+00
- 2 111 711 712 -0.15674495e+00 0.93650099e-01 -0.24836043e+02 0.13498000e+00
- 1 -211 0 0 -0.19589270e+00 -0.44097094e+00 -0.59435978e+02 0.13957000e+00
- 2 111 713 714 -0.50083701e+00 0.25050852e+00 -0.43545497e+02 0.13498000e+00
- 1 211 0 0 0.32264540e+00 -0.13319405e+00 0.12144026e+02 0.13957000e+00
- 1 -211 0 0 0.99069827e-01 0.40243015e+00 0.59481308e+01 0.13957000e+00
- 1 -211 0 0 0.13727799e+00 -0.42816301e-01 0.18105818e+00 0.13957000e+00
- 2 111 715 716 0.35985738e+00 0.36178137e+00 0.15192242e+01 0.13498000e+00
- 1 130 0 0 -0.55580934e+00 0.36604352e-01 0.40912963e+01 0.49767000e+00
- 2 -213 717 718 0.56863463e+00 -0.20570176e+00 -0.13170695e+00 0.72472938e+00
- 1 211 0 0 -0.85132309e-01 -0.14279439e+00 -0.15091214e+00 0.13957000e+00
- 2 311 719 719 0.62772689e-01 0.29080160e+00 0.74830051e-01 0.49767000e+00
- 2 111 720 721 -0.36320115e+00 -0.16232837e+00 0.30609038e+00 0.13498000e+00
- 1 22 0 0 0.12685334e+00 -0.59192286e-01 -0.71333086e-01 0.00000000e+00
- 1 22 0 0 0.35497724e+00 -0.60002480e-01 0.15134304e-01 0.00000000e+00
- 1 22 0 0 0.11577194e+00 -0.18254363e+00 0.58488241e+01 0.00000000e+00
- 1 22 0 0 -0.15696335e+00 0.18342070e+00 0.18722307e+01 0.00000000e+00
- 1 -211 0 0 -0.16501852e+00 -0.54748604e-02 0.10494588e+02 0.13957000e+00
- 2 111 722 723 0.51611860e+00 -0.39129318e+00 0.12868614e+02 0.13498000e+00
- 1 -211 0 0 0.92327511e-01 0.19421616e+00 0.74922854e+02 0.13957000e+00
- 1 211 0 0 -0.21796472e+00 0.55585696e+00 0.15269792e+03 0.13957000e+00
- 2 111 724 725 0.22981781e+00 0.16514232e+00 0.12449257e+03 0.13498000e+00
- 1 211 0 0 0.37822806e+00 0.90718394e-01 0.12197119e+02 0.13957000e+00
- 2 111 726 727 -0.12257212e+00 -0.12123488e-01 0.50079707e+02 0.13498000e+00
- 2 311 728 728 0.81071314e-01 -0.43969913e-01 0.22468988e+02 0.49767000e+00
- 2 111 729 730 -0.47030867e-01 0.39511715e-01 0.45789784e+02 0.13498000e+00
- 1 211 0 0 0.10455842e+00 -0.57480101e-01 0.50590216e+01 0.13957000e+00
- 1 -211 0 0 0.22064813e+00 0.30082179e+00 0.72808474e+01 0.13957000e+00
- 2 111 731 732 -0.93950085e-01 -0.26476453e-01 0.11455946e+01 0.13498000e+00
- 1 22 0 0 -0.70664984e+00 -0.54424273e-01 -0.60433557e+00 0.00000000e+00
- 1 22 0 0 -0.61710876e+00 -0.18863372e-01 -0.37480402e+00 0.00000000e+00
- 1 2212 0 0 -0.50881973e+01 0.20114334e+01 -0.45467362e+01 0.93827000e+00
- 1 -211 0 0 -0.50798062e+00 0.28859710e+00 -0.52632553e+00 0.13957000e+00
- 1 22 0 0 -0.14964507e+00 0.53066347e-01 -0.30138702e-01 0.00000000e+00
- 1 22 0 0 -0.35560115e+00 0.94559743e-01 -0.29521016e+00 0.00000000e+00
- 2 310 733 734 -0.32570237e+01 0.47995517e+00 -0.26471625e+01 0.49767000e+00
- 2 111 735 736 -0.13494933e+01 0.12744708e+01 -0.11147550e+01 0.13498000e+00
- 2 111 737 738 -0.25120804e+01 0.27243255e+01 -0.16411668e+01 0.13498000e+00
- 1 -211 0 0 -0.61595614e+00 0.49668324e+00 -0.24163458e+00 0.13957000e+00
- 1 211 0 0 -0.24461146e+01 0.24769938e+01 -0.11664683e+01 0.13957000e+00
- 2 111 739 740 -0.10206345e+01 0.97477171e+00 -0.42633889e+00 0.13498000e+00
- 1 22 0 0 -0.82157447e-01 0.22771150e-01 0.12396697e-02 0.00000000e+00
- 1 22 0 0 -0.87357035e+00 0.57224512e+00 -0.33442270e+00 0.00000000e+00
- 1 22 0 0 -0.48343074e-01 0.37680920e-01 0.64845749e-01 0.00000000e+00
- 1 22 0 0 -0.15839828e+00 0.19804895e-01 -0.42700119e-01 0.00000000e+00
- 1 22 0 0 0.67391408e-01 -0.43678353e-02 -0.59696118e-01 0.00000000e+00
- 1 22 0 0 -0.20677721e-01 0.72232045e-01 0.96072145e-02 0.00000000e+00
- 1 22 0 0 0.38910447e-01 -0.13088388e+00 -0.48331772e+00 0.00000000e+00
- 1 22 0 0 0.16237045e+00 -0.94778157e-01 -0.43184320e+00 0.00000000e+00
- 1 22 0 0 -0.70907923e-01 -0.34011239e-01 -0.17477809e+00 0.00000000e+00
- 1 22 0 0 0.61130799e-01 -0.15932609e-01 -0.91552680e-01 0.00000000e+00
- 1 22 0 0 -0.10320437e+00 -0.14530834e+00 -0.28151617e+00 0.00000000e+00
- 1 22 0 0 0.39950598e-01 -0.65136071e-01 -0.17878581e+00 0.00000000e+00
- 2 111 741 742 0.74360620e-01 -0.12137883e+00 -0.43235220e+00 0.13498000e+00
- 2 111 743 744 0.31732834e-01 0.16896272e+00 -0.39914950e+00 0.13498000e+00
- 2 111 745 746 0.19194599e-01 0.51179370e-01 -0.18245624e+00 0.13498000e+00
- 1 130 0 0 0.26162817e-01 0.68899812e+00 -0.43359105e+01 0.49767000e+00
- 1 22 0 0 0.40339891e+00 -0.84731641e-01 -0.21672074e+01 0.00000000e+00
- 1 22 0 0 0.93179363e-01 0.38025296e-01 -0.38561075e+00 0.00000000e+00
- 1 22 0 0 0.27378271e+00 -0.66956106e-01 -0.41088834e+01 0.00000000e+00
- 1 22 0 0 0.68419475e-01 0.15493032e-01 -0.44812888e+00 0.00000000e+00
- 1 211 0 0 0.20082655e+00 -0.13599066e+00 -0.10499095e+01 0.13957000e+00
- 1 -211 0 0 0.50378135e+00 0.11601385e+00 -0.41596939e+01 0.13957000e+00
- 1 -211 0 0 0.54285285e+00 -0.26678810e+00 -0.66422580e+01 0.13957000e+00
- 1 211 0 0 0.22285057e-01 -0.40163702e-01 -0.37262239e+01 0.13957000e+00
- 1 -2212 0 0 0.43811546e+01 -0.50995093e+01 -0.92120380e+02 0.93827000e+00
- 1 211 0 0 0.30996071e+00 -0.33815793e+00 -0.64783373e+01 0.13957000e+00
- 1 22 0 0 0.23484543e+01 -0.13848104e+01 -0.35085872e+02 0.00000000e+00
- 1 22 0 0 0.10442001e+00 -0.90432781e-01 -0.20157166e+01 0.00000000e+00
- 1 -211 0 0 -0.62765029e-01 -0.12425302e+00 -0.52414941e+01 0.13957000e+00
- 1 211 0 0 0.22298595e-01 0.11831756e+00 -0.10480414e+01 0.13957000e+00
- 1 130 0 0 -0.23857728e+00 -0.15751147e+00 -0.90407924e+02 0.49767000e+00
- 1 22 0 0 -0.52417641e-01 -0.22064894e+00 -0.15499895e+02 0.00000000e+00
- 1 22 0 0 -0.14943234e+00 -0.19659297e+00 -0.11423804e+02 0.00000000e+00
- 2 111 747 748 -0.84184574e-01 -0.10981670e+00 -0.31409265e+02 0.13498000e+00
- 2 111 749 750 -0.92031679e-01 -0.10191133e+00 -0.28953843e+02 0.13498000e+00
- 2 111 751 752 0.79439307e-01 0.56957247e-01 -0.13711441e+02 0.13498000e+00
- 2 310 753 754 -0.36174211e+01 -0.43834114e+00 -0.23608081e+01 0.49767000e+00
- 1 -211 0 0 -0.49726712e+00 0.81607421e-01 -0.12804941e+00 0.13957000e+00
- 1 211 0 0 -0.73603759e+00 0.11513770e+00 -0.52399793e+00 0.13957000e+00
- 2 111 755 756 -0.43720573e+00 -0.36674445e-01 -0.21694125e+00 0.13498000e+00
- 1 22 0 0 -0.35006219e+00 -0.23691525e-01 -0.27341464e-01 0.00000000e+00
- 1 22 0 0 -0.28971139e+00 0.10378509e+00 -0.36838858e-01 0.00000000e+00
- 1 22 0 0 -0.61428272e+00 0.71557421e-01 -0.11435530e+00 0.00000000e+00
- 1 22 0 0 -0.20862769e-01 -0.24827658e-01 -0.92091327e-02 0.00000000e+00
- 1 22 0 0 -0.20563052e+01 0.56318061e+00 -0.86613828e+00 0.00000000e+00
- 1 22 0 0 -0.36887611e+00 -0.13094652e+00 -0.16513107e+00 0.00000000e+00
- 1 22 0 0 -0.74891789e-01 0.10684039e+00 0.16979242e+00 0.00000000e+00
- 1 22 0 0 0.54015485e-01 0.10892585e+00 0.23232031e+00 0.00000000e+00
- 1 22 0 0 -0.25454037e+00 -0.11309802e+01 0.40264604e+00 0.00000000e+00
- 1 22 0 0 -0.25832355e+00 -0.81867942e+00 0.39619082e+00 0.00000000e+00
- 1 22 0 0 -0.24186892e-02 -0.10787425e+00 -0.29821349e+00 0.00000000e+00
- 1 22 0 0 0.17980027e+00 -0.16695915e+00 -0.77461463e+00 0.00000000e+00
- 1 22 0 0 -0.14447469e-01 0.12413568e+00 -0.39347921e+00 0.00000000e+00
- 1 22 0 0 0.69002161e-01 0.25491612e-01 -0.45677194e+00 0.00000000e+00
- 1 211 0 0 0.33190024e+00 -0.42162454e+00 -0.12364649e+02 0.13957000e+00
- 1 -211 0 0 0.58488022e+00 -0.17022862e+01 -0.47933302e+02 0.13957000e+00
- 1 130 0 0 0.44706746e+00 -0.71517178e+00 -0.21492089e+02 0.49767000e+00
- 1 211 0 0 0.17108424e+00 -0.60309870e+00 -0.15456376e+02 0.13957000e+00
- 1 -211 0 0 0.50236402e+00 -0.11268039e+01 -0.45633357e+02 0.13957000e+00
- 1 130 0 0 -0.26200227e+00 -0.25740671e+00 -0.22287880e+02 0.49767000e+00
- 2 310 757 758 -0.13524563e+01 -0.76363241e+00 -0.16517185e+03 0.49767000e+00
- 1 22 0 0 -0.18547192e-01 0.18919845e-01 -0.97169910e+00 0.00000000e+00
- 1 22 0 0 0.17495198e+00 -0.21516753e-02 -0.12945017e+02 0.00000000e+00
- 1 22 0 0 0.87684674e+00 0.17157785e+00 -0.36019002e+02 0.00000000e+00
- 1 22 0 0 0.44997499e+00 0.18775648e+00 -0.20328721e+02 0.00000000e+00
- 1 22 0 0 -0.40784524e+00 0.35525660e+00 -0.83601793e+01 0.00000000e+00
- 1 22 0 0 -0.30133462e+00 0.14962509e+00 -0.62719003e+01 0.00000000e+00
- 1 22 0 0 -0.80663500e-01 0.64638192e+00 -0.95019705e+01 0.00000000e+00
- 1 22 0 0 -0.25285324e-01 0.23271721e-01 -0.89177075e+00 0.00000000e+00
- 1 22 0 0 -0.12088787e+00 0.12252214e+00 -0.10179982e+02 0.00000000e+00
- 1 22 0 0 -0.26975475e-01 0.64211154e-01 -0.13504708e+01 0.00000000e+00
- 1 22 0 0 0.48406655e-02 -0.22476148e-01 -0.34589330e-01 0.00000000e+00
- 1 22 0 0 -0.21450184e+00 0.57218953e-01 -0.79528685e+00 0.00000000e+00
- 1 130 0 0 -0.81918557e+00 0.10910690e+01 -0.84802653e+00 0.49767000e+00
- 1 -211 0 0 -0.50305887e+00 0.23374269e+00 -0.81441040e+00 0.13957000e+00
- 1 211 0 0 0.60751164e-01 -0.27915000e-01 0.11187271e+00 0.13957000e+00
- 1 22 0 0 0.15030949e+00 -0.21001623e+00 0.30421269e+01 0.00000000e+00
- 1 22 0 0 0.17731756e+00 -0.10511811e+00 0.16030963e+01 0.00000000e+00
- 1 130 0 0 0.78024072e-02 -0.12289422e+00 0.60260468e+02 0.49767000e+00
- 1 22 0 0 0.44791417e+00 -0.30988063e-01 0.53886779e+02 0.00000000e+00
- 1 22 0 0 0.44742802e+00 -0.15380867e+00 0.49752762e+02 0.00000000e+00
- 1 22 0 0 -0.65107201e-01 0.16377275e+00 -0.49850190e+01 0.00000000e+00
- 1 22 0 0 -0.28876263e+00 0.23900393e+00 -0.12605626e+02 0.00000000e+00
- 1 22 0 0 -0.22813852e+00 -0.40489552e+00 -0.96863004e-02 0.00000000e+00
- 1 22 0 0 -0.82571223e-01 -0.35225905e-01 -0.15689231e-01 0.00000000e+00
- 1 22 0 0 0.86220095e-01 0.33336757e-01 -0.69465794e-01 0.00000000e+00
- 1 22 0 0 0.10528288e+00 0.16821105e+00 0.11647824e-01 0.00000000e+00
- 1 22 0 0 -0.17670981e-01 0.25468522e-01 0.19694356e-01 0.00000000e+00
- 1 22 0 0 0.12120166e+00 -0.49998082e-01 -0.35740589e-01 0.00000000e+00
- 1 22 0 0 0.15631642e+00 -0.12736533e-02 0.36922972e+00 0.00000000e+00
- 1 22 0 0 0.81841244e-02 0.12732802e-01 0.32244563e+00 0.00000000e+00
- 1 22 0 0 0.10401217e+00 0.18164399e+00 0.77288766e+00 0.00000000e+00
- 1 22 0 0 0.41675088e+00 0.31060240e+00 0.18438284e+01 0.00000000e+00
- 1 22 0 0 -0.24757203e+00 0.64342556e+00 0.10415546e+02 0.00000000e+00
- 1 22 0 0 -0.10680402e+00 0.47411153e+00 0.88099652e+01 0.00000000e+00
- 1 22 0 0 -0.40024838e-01 0.14184559e-01 0.46339820e+00 0.00000000e+00
- 1 22 0 0 -0.18972266e+00 0.21109423e+00 0.10413729e+01 0.00000000e+00
- 2 310 759 760 -0.21404839e+00 0.30628315e+00 0.33777776e+01 0.49767000e+00
- 1 22 0 0 -0.61758878e+00 0.19110719e+01 0.24571866e+02 0.00000000e+00
- 1 22 0 0 -0.16883451e+00 0.61686818e+00 0.87378494e+01 0.00000000e+00
- 1 22 0 0 -0.87792773e-01 0.80408512e+00 0.12047438e+02 0.00000000e+00
- 1 22 0 0 -0.37900467e+00 0.16725633e+01 0.25249645e+02 0.00000000e+00
- 1 22 0 0 -0.47344287e+00 0.58708686e+00 0.91706246e+01 0.00000000e+00
- 1 22 0 0 -0.17438529e-01 0.14173337e-01 0.10188628e+00 0.00000000e+00
- 1 22 0 0 -0.35312443e+00 -0.64577281e-01 0.47187323e+01 0.00000000e+00
- 1 22 0 0 -0.80468564e-01 0.45337294e-01 0.90394516e+00 0.00000000e+00
- 1 22 0 0 0.16387578e+00 0.10263222e+00 0.27655326e+01 0.00000000e+00
- 1 22 0 0 0.19534051e+00 0.30554854e+00 0.40017239e+01 0.00000000e+00
- 1 22 0 0 -0.84755171e-02 -0.11374104e+00 0.21610678e-01 0.00000000e+00
- 1 22 0 0 -0.31982428e-01 -0.79120577e-01 0.16966318e+00 0.00000000e+00
- 1 22 0 0 0.12350481e-01 0.39792876e-01 0.13201334e+01 0.00000000e+00
- 1 22 0 0 0.66691223e-02 -0.46930526e-02 0.14685822e-02 0.00000000e+00
- 1 22 0 0 0.25273007e+00 -0.28130536e+00 0.66190205e+01 0.00000000e+00
- 1 22 0 0 0.28002412e-01 -0.17728916e-01 0.17712507e+01 0.00000000e+00
- 1 22 0 0 -0.67453503e-01 0.18516216e-01 0.11214185e+02 0.00000000e+00
- 1 22 0 0 0.32596783e-01 0.30500670e-01 0.15659839e+01 0.00000000e+00
- 1 22 0 0 -0.70918376e-02 0.15561353e+00 0.14945419e+02 0.00000000e+00
- 1 22 0 0 -0.31585958e-01 0.27576221e+00 0.50242994e+02 0.00000000e+00
- 2 310 761 762 -0.43048366e+00 -0.10537807e+00 0.46555254e+02 0.49767000e+00
- 1 22 0 0 0.14909303e-01 -0.73892046e-02 0.34625493e+01 0.00000000e+00
- 1 22 0 0 0.96011173e-01 -0.31873300e+00 0.15631492e+02 0.00000000e+00
- 1 22 0 0 -0.32857224e-01 0.14562582e+00 0.10831226e+02 0.00000000e+00
- 1 22 0 0 -0.13680384e+00 0.18586887e+00 0.30272270e+02 0.00000000e+00
- 1 22 0 0 -0.23480173e+00 0.83005168e-01 0.11183879e+02 0.00000000e+00
- 1 22 0 0 -0.14942783e+00 -0.19198441e-01 0.11321849e+02 0.00000000e+00
- 1 22 0 0 -0.15487172e+00 -0.14011859e+00 0.11403197e+02 0.00000000e+00
- 1 22 0 0 0.53241230e-02 0.21348940e-01 0.69672995e+00 0.00000000e+00
- 1 22 0 0 -0.30276284e+00 0.85851133e-01 0.19513272e+02 0.00000000e+00
- 1 22 0 0 -0.11896746e+00 -0.34007180e-01 0.11526891e+02 0.00000000e+00
- 1 22 0 0 -0.85631663e+00 0.10414490e+01 0.85242087e+02 0.00000000e+00
- 1 22 0 0 -0.66491492e-01 0.84135202e-01 0.47648160e+01 0.00000000e+00
- 1 22 0 0 -0.53298556e-01 0.23359930e+00 0.14969723e+02 0.00000000e+00
- 1 22 0 0 0.96814023e-02 0.51806128e-01 0.11204382e+01 0.00000000e+00
- 1 22 0 0 0.11751160e+01 0.23884821e+01 0.62066203e+02 0.00000000e+00
- 1 22 0 0 0.54381285e+00 0.12304084e+01 0.29587244e+02 0.00000000e+00
- 1 22 0 0 -0.59189646e-01 0.21730957e-03 -0.18978070e+01 0.00000000e+00
- 1 22 0 0 -0.17115430e+00 0.18839659e+00 -0.39232764e+01 0.00000000e+00
- 1 22 0 0 -0.26689708e-01 -0.34859337e-01 -0.43044163e+01 0.00000000e+00
- 1 22 0 0 -0.13005525e+00 0.12850944e+00 -0.20531627e+02 0.00000000e+00
- 1 22 0 0 -0.11910317e+00 0.98258030e-01 -0.85222221e+01 0.00000000e+00
- 1 22 0 0 -0.38173385e+00 0.15225049e+00 -0.35023275e+02 0.00000000e+00
- 1 22 0 0 0.14881739e+00 0.15828520e+00 0.45131667e+00 0.00000000e+00
- 1 22 0 0 0.21103999e+00 0.20349618e+00 0.10679075e+01 0.00000000e+00
- 1 -211 0 0 0.48586102e+00 0.14613971e+00 -0.19665838e+00 0.13957000e+00
- 2 111 763 764 0.82773603e-01 -0.35184148e+00 0.64951429e-01 0.13498000e+00
- 2 310 765 766 0.62772689e-01 0.29080160e+00 0.74830051e-01 0.49767000e+00
- 1 22 0 0 -0.71023296e-01 -0.94748676e-01 0.10887069e+00 0.00000000e+00
- 1 22 0 0 -0.29217786e+00 -0.67579698e-01 0.19721968e+00 0.00000000e+00
- 1 22 0 0 0.39235446e+00 -0.34197792e+00 0.93508190e+01 0.00000000e+00
- 1 22 0 0 0.12376414e+00 -0.49315255e-01 0.35177947e+01 0.00000000e+00
- 1 22 0 0 0.10275744e+00 0.12378182e+00 0.88609501e+02 0.00000000e+00
- 1 22 0 0 0.12706037e+00 0.41360504e-01 0.35883071e+02 0.00000000e+00
- 1 22 0 0 0.55426791e-02 0.34739545e-01 0.19178033e+02 0.00000000e+00
- 1 22 0 0 -0.12811480e+00 -0.46863033e-01 0.30901674e+02 0.00000000e+00
- 2 310 767 768 0.81071314e-01 -0.43969913e-01 0.22468988e+02 0.49767000e+00
- 1 22 0 0 0.27683931e-01 -0.16935387e-01 0.38857026e+01 0.00000000e+00
- 1 22 0 0 -0.74714798e-01 0.56447102e-01 0.41904082e+02 0.00000000e+00
- 1 22 0 0 -0.57508716e-01 0.52903279e-01 0.60733857e+00 0.00000000e+00
- 1 22 0 0 -0.36441369e-01 -0.79379732e-01 0.53825602e+00 0.00000000e+00
- 2 111 769 770 -0.61443599e+00 0.51125513e-01 -0.33979340e+00 0.13498000e+00
- 2 111 771 772 -0.26425877e+01 0.42882966e+00 -0.23073691e+01 0.13498000e+00
- 1 22 0 0 -0.97530843e-01 0.13539495e+00 -0.74963842e-01 0.00000000e+00
- 1 22 0 0 -0.12519625e+01 0.11390759e+01 -0.10397911e+01 0.00000000e+00
- 1 22 0 0 -0.13333090e+00 0.18773900e+00 -0.86523578e-01 0.00000000e+00
- 1 22 0 0 -0.23787495e+01 0.25365865e+01 -0.15546432e+01 0.00000000e+00
- 1 22 0 0 -0.90998022e+00 0.81166651e+00 -0.34470025e+00 0.00000000e+00
- 1 22 0 0 -0.11065433e+00 0.16310520e+00 -0.81638638e-01 0.00000000e+00
- 1 22 0 0 0.11208727e+00 -0.10876271e+00 -0.33556872e+00 0.00000000e+00
- 1 22 0 0 -0.37726652e-01 -0.12616125e-01 -0.96783477e-01 0.00000000e+00
- 1 22 0 0 0.26809550e-01 0.18492024e+00 -0.39629278e+00 0.00000000e+00
- 1 22 0 0 0.49232847e-02 -0.15957520e-01 -0.28567179e-02 0.00000000e+00
- 1 22 0 0 0.26791230e-01 0.25898629e-01 0.10484122e-01 0.00000000e+00
- 1 22 0 0 -0.75966307e-02 0.25280741e-01 -0.19294036e+00 0.00000000e+00
- 1 22 0 0 -0.11571560e+00 -0.86315897e-01 -0.19707221e+02 0.00000000e+00
- 1 22 0 0 0.31531031e-01 -0.23500806e-01 -0.11702045e+02 0.00000000e+00
- 1 22 0 0 0.22823640e-01 -0.41623363e-01 -0.13910249e+02 0.00000000e+00
- 1 22 0 0 -0.11485532e+00 -0.60287970e-01 -0.15043594e+02 0.00000000e+00
- 1 22 0 0 0.10981743e+00 0.48660315e-01 -0.77609271e+01 0.00000000e+00
- 1 22 0 0 -0.30378121e-01 0.82969320e-02 -0.59505141e+01 0.00000000e+00
- 1 -211 0 0 -0.20506817e+01 -0.42666790e+00 -0.14670798e+01 0.13957000e+00
- 1 211 0 0 -0.15667394e+01 -0.11673240e-01 -0.89372832e+00 0.13957000e+00
- 1 22 0 0 -0.12461374e+00 0.18061759e-01 -0.48281927e-02 0.00000000e+00
- 1 22 0 0 -0.31259199e+00 -0.54736204e-01 -0.21211306e+00 0.00000000e+00
- 2 111 773 774 -0.12784540e+01 -0.70509244e+00 -0.14825661e+03 0.13498000e+00
- 2 111 775 776 -0.74002250e-01 -0.58539966e-01 -0.16915237e+02 0.13498000e+00
- 1 -211 0 0 0.94431477e-02 0.23696898e+00 0.25111619e+01 0.13957000e+00
- 1 211 0 0 -0.22349153e+00 0.69314175e-01 0.86661577e+00 0.13957000e+00
- 1 -211 0 0 0.50322522e-01 0.79904937e-03 0.80361745e+01 0.13957000e+00
- 1 211 0 0 -0.48080618e+00 -0.10617712e+00 0.38519079e+02 0.13957000e+00
- 1 22 0 0 0.11694030e+00 -0.30834876e+00 0.47013589e-01 0.00000000e+00
- 1 22 0 0 -0.34166701e-01 -0.43492714e-01 0.17937840e-01 0.00000000e+00
- 2 111 777 778 0.71895936e-01 0.28859632e+00 0.21403172e+00 0.13498000e+00
- 2 111 779 780 -0.91232469e-02 0.22052757e-02 -0.13920167e+00 0.13498000e+00
- 1 211 0 0 0.35374925e-01 -0.49753197e-01 0.20366291e+02 0.13957000e+00
- 1 -211 0 0 0.45696389e-01 0.57832846e-02 0.21026975e+01 0.13957000e+00
- 1 22 0 0 -0.24505418e+00 -0.32295387e-01 -0.89444432e-01 0.00000000e+00
- 1 22 0 0 -0.36938182e+00 0.83420900e-01 -0.25034897e+00 0.00000000e+00
- 1 22 0 0 -0.38179839e+00 0.69006724e-01 -0.27432051e+00 0.00000000e+00
- 1 22 0 0 -0.22607893e+01 0.35982293e+00 -0.20330486e+01 0.00000000e+00
- 1 22 0 0 -0.69400682e+00 -0.35905810e+00 -0.72798192e+02 0.00000000e+00
- 1 22 0 0 -0.58444719e+00 -0.34603434e+00 -0.75458421e+02 0.00000000e+00
- 1 22 0 0 -0.75207767e-01 -0.60451476e-01 -0.58079738e+01 0.00000000e+00
- 1 22 0 0 0.12055172e-02 0.19115102e-02 -0.11107264e+02 0.00000000e+00
- 1 22 0 0 -0.31981675e-01 0.14411610e+00 0.11264784e+00 0.00000000e+00
- 1 22 0 0 0.10387761e+00 0.14448022e+00 0.10138387e+00 0.00000000e+00
- 1 22 0 0 0.54567414e-01 -0.26042117e-01 -0.38533244e-01 0.00000000e+00
- 1 22 0 0 -0.63690660e-01 0.28247393e-01 -0.10066842e+00 0.00000000e+00
- 218
- 2 25 2 3 0.29100575e+02 -0.63423558e+02 0.43712803e+03 0.12500118e+03
- 2 23 4 7 0.59786934e+01 -0.14716883e+02 0.28546492e+02 0.20116181e+02
- 2 23 8 12 0.23121881e+02 -0.48706676e+02 0.40858154e+03 0.88924925e+02
- 1 13 0 0 -0.53412290e+01 -0.13062153e+02 0.15605001e+02 0.10566000e+00
- 1 22 0 0 -0.19786565e-01 -0.47338537e-01 0.56842516e-01 0.00000000e+00
- 1 -13 0 0 0.11301049e+02 -0.15677231e+01 0.12845092e+02 0.10566000e+00
- 1 22 0 0 0.38659865e-01 -0.39668003e-01 0.39557002e-01 0.00000000e+00
- 1 13 0 0 -0.30241712e+02 0.53013994e+00 0.15027006e+03 0.10566000e+00
- 1 22 0 0 0.13499208e+01 -0.10278157e+01 0.61682350e+01 0.00000000e+00
- 1 22 0 0 0.19660435e+01 -0.18232070e+01 0.95376597e+01 0.00000000e+00
- 1 -13 0 0 0.50007735e+02 -0.46349159e+02 0.24241341e+03 0.10566000e+00
- 1 22 0 0 0.39894633e-01 -0.36633463e-01 0.19217554e+00 0.00000000e+00
- 2 2224 34 35 -0.94368344e+00 0.75923276e+00 -0.39329809e+04 0.12587934e+01
- 2 1 36 36 -0.10285166e+02 0.42092875e+02 0.99276365e+03 0.33000000e+00
- 2 21 36 36 -0.26033803e+01 0.82900780e+01 0.17142184e+03 0.00000000e+00
- 2 21 36 36 0.43636660e+00 0.44564244e+01 0.76308846e+02 0.00000000e+00
- 2 21 36 36 -0.32494828e+00 0.36598414e+01 0.77725408e+02 0.00000000e+00
- 2 21 36 36 -0.55902566e+00 -0.79573844e+00 0.24784406e+01 0.00000000e+00
- 2 21 36 36 -0.14642132e+01 0.76525447e+00 0.29542223e+01 0.00000000e+00
- 2 21 36 36 0.14655865e+01 0.23561426e+00 0.49787209e+02 0.00000000e+00
- 2 2103 36 36 0.45283644e+00 -0.64082260e+00 0.51653641e+04 0.77133000e+00
- 2 -1 56 56 -0.85120873e+01 0.27896179e+01 -0.27527014e+01 0.33000000e+00
- 2 21 56 56 -0.57076812e+01 0.29007670e+01 0.18321857e+00 0.00000000e+00
- 2 21 56 56 -0.72773937e+00 -0.59882838e+00 0.53226286e+00 0.00000000e+00
- 2 21 56 56 -0.75233440e+00 0.24317816e+00 0.32727878e+01 0.00000000e+00
- 2 21 56 56 -0.38866728e-01 0.10413647e+01 -0.34346515e+01 0.00000000e+00
- 2 21 56 56 -0.87028215e+00 -0.64550362e+00 -0.14771301e+01 0.00000000e+00
- 2 21 56 56 0.87028215e+00 0.64550362e+00 -0.46472990e-01 0.00000000e+00
- 2 21 56 56 0.14642132e+01 -0.76525447e+00 -0.63728577e+01 0.00000000e+00
- 2 21 56 56 0.38866728e-01 -0.10413647e+01 -0.45480864e+02 0.00000000e+00
- 2 21 56 56 -0.15706153e+01 -0.17372007e+01 -0.15780692e+03 0.00000000e+00
- 2 21 56 56 0.15706153e+01 0.17372007e+01 -0.17198641e+03 0.00000000e+00
- 2 1 56 56 -0.10393185e+01 0.31319344e-01 -0.26575811e+04 0.33000000e+00
- 1 2212 0 0 -0.10146726e+01 0.76004343e+00 -0.34140256e+04 0.93827000e+00
- 1 211 0 0 0.70989181e-01 -0.81067137e-03 -0.51895531e+03 0.13957000e+00
- 2 92 37 55 -0.12881944e+02 0.58063526e+02 0.65388038e+04 0.15128082e+03
- 2 113 85 86 -0.68987121e+01 0.26911277e+02 0.62335763e+03 0.85257948e+00
- 2 331 87 89 -0.37904639e+01 0.15953769e+02 0.38014466e+03 0.95768425e+00
- 2 113 90 91 -0.12365193e+01 0.55947404e+01 0.11463951e+03 0.72860050e+00
- 2 313 92 93 -0.11097062e+01 0.59163284e+01 0.12255481e+03 0.91237712e+00
- 2 -313 94 95 0.42185977e+00 0.22148256e+01 0.32720136e+02 0.86321167e+00
- 1 2112 0 0 -0.18028357e+00 0.69183058e+00 0.24596890e+02 0.93957000e+00
- 1 -2212 0 0 -0.23623473e+00 0.77729864e+00 0.16240495e+02 0.93827000e+00
- 2 3212 96 97 -0.98489505e+00 0.51451337e+00 0.45349904e+01 0.11925500e+01
- 2 -3112 98 99 -0.35219230e+00 -0.34101026e+00 0.42088692e+01 0.11974400e+01
- 2 311 100 100 -0.46593259e+00 -0.38418615e+00 0.11868341e+02 0.49767000e+00
- 2 -311 101 101 0.83154756e+00 0.94975859e+00 0.14473529e+02 0.49767000e+00
- 2 221 102 103 0.49921154e+00 -0.22571950e+00 0.27311669e+02 0.54745000e+00
- 2 111 104 105 0.20062676e+00 0.16697639e+00 0.55283478e+02 0.13498000e+00
- 2 111 106 107 -0.49454182e+00 0.20466367e+00 0.96519639e+02 0.13498000e+00
- 2 -213 108 109 0.36509955e+00 0.51044336e-01 0.36112187e+03 0.81667287e+00
- 1 2212 0 0 0.36910362e-01 -0.62658015e+00 0.49989817e+03 0.93827000e+00
- 1 -211 0 0 0.82933479e-01 -0.28162869e+00 0.12078031e+03 0.13957000e+00
- 2 -2114 110 111 -0.22977110e+00 0.42868782e+00 0.14553248e+04 0.13398580e+01
- 2 2214 112 113 0.65911999e+00 -0.45306277e+00 0.25732240e+04 0.12381866e+01
- 2 92 57 84 -0.15274948e+02 0.46007995e+01 -0.30429509e+04 0.37670727e+03
- 2 -1114 114 115 -0.52166155e+01 0.21734316e+01 -0.30293914e+00 0.12504892e+01
- 2 331 116 117 -0.18649950e+01 0.55612877e+00 -0.85362476e+00 0.95775434e+00
- 2 1114 118 119 -0.19542453e+01 0.68778112e+00 -0.71161830e-01 0.12445012e+01
- 2 -313 120 121 -0.43872355e+00 -0.12942352e+00 0.47505259e+00 0.89155019e+00
- 1 321 0 0 -0.24759975e+01 0.93260985e+00 -0.68170419e+00 0.49360000e+00
- 2 -213 122 123 -0.13697821e+01 0.31376831e+00 0.96294269e+00 0.43100902e+00
- 2 213 124 125 -0.96311732e+00 0.67832072e+00 -0.25195517e+00 0.73279702e+00
- 1 -321 0 0 -0.13614023e+01 0.43470842e+00 -0.25122753e+00 0.49360000e+00
- 2 333 126 127 0.11430166e+00 -0.29548432e+00 0.65009560e+00 0.10123654e+01
- 2 313 128 129 -0.59500135e-01 0.27808746e+00 -0.51924344e+00 0.88780711e+00
- 1 211 0 0 -0.37757975e+00 0.18336364e+00 -0.41791481e+00 0.13957000e+00
- 1 -321 0 0 -0.19211772e+00 -0.21454061e+00 -0.20766364e-01 0.49360000e+00
- 2 323 130 131 0.32154064e+00 0.48225354e+00 -0.61943098e-01 0.87852081e+00
- 1 -211 0 0 0.27426830e+00 0.31443243e+00 -0.15391674e+01 0.13957000e+00
- 1 211 0 0 -0.32110891e+00 -0.45856505e+00 -0.21884984e+01 0.13957000e+00
- 1 -2212 0 0 0.70420713e+00 0.32276406e+00 -0.12677681e+01 0.93827000e+00
- 1 2212 0 0 0.41994712e+00 -0.12118986e+00 -0.37444334e+01 0.93827000e+00
- 2 221 132 134 -0.17829397e+00 -0.58925217e+00 -0.17241071e+02 0.54745000e+00
- 2 -213 135 136 -0.10680534e+00 -0.52449612e+00 -0.34370405e+01 0.62905887e+00
- 2 111 137 138 0.67266991e+00 -0.19087510e+00 -0.26303985e+02 0.13498000e+00
- 2 -1114 139 140 -0.67920623e+00 -0.85706080e+00 -0.77972990e+02 0.12870104e+01
- 2 1114 141 142 -0.76941444e+00 -0.47138478e-01 -0.96122381e+02 0.12059694e+01
- 2 331 143 145 0.75470908e+00 0.71502232e-01 -0.87289514e+02 0.95783292e+00
- 2 111 146 147 0.82397090e+00 0.36092877e+00 -0.70652519e+02 0.13498000e+00
- 1 211 0 0 -0.11611250e+00 0.75126399e-02 -0.28437794e+02 0.13957000e+00
- 1 -211 0 0 -0.25866192e+00 0.31433739e+00 -0.11902077e+03 0.13957000e+00
- 2 223 148 150 0.39511970e-01 -0.66494141e-01 -0.97094431e+03 0.77324956e+00
- 2 113 151 152 -0.69639479e+00 -0.16611209e-01 -0.15354442e+04 0.79478767e+00
- 1 -211 0 0 -0.33734179e+01 0.12252537e+02 0.27767834e+03 0.13957000e+00
- 1 211 0 0 -0.35252941e+01 0.14658740e+02 0.34567929e+03 0.13957000e+00
- 2 111 153 154 -0.92266983e+00 0.31243869e+01 0.76588716e+02 0.13498000e+00
- 2 111 155 156 -0.62014060e+00 0.24677574e+01 0.58889514e+02 0.13498000e+00
- 2 221 157 159 -0.22476535e+01 0.10361624e+02 0.24466643e+03 0.54745000e+00
- 1 -211 0 0 -0.43952684e+00 0.17668929e+01 0.42828130e+02 0.13957000e+00
- 1 211 0 0 -0.79699251e+00 0.38278476e+01 0.71811381e+02 0.13957000e+00
- 1 321 0 0 -0.11372109e+01 0.52906654e+01 0.10697316e+03 0.49360000e+00
- 1 -211 0 0 0.27504705e-01 0.62566307e+00 0.15581649e+02 0.13957000e+00
- 2 -311 160 160 0.14114945e+00 0.17484625e+01 0.27008405e+02 0.49767000e+00
- 2 111 161 162 0.28071032e+00 0.46636313e+00 0.57117312e+01 0.13498000e+00
- 2 3122 163 164 -0.84602729e+00 0.42897563e+00 0.39948563e+01 0.11156800e+01
- 1 22 0 0 -0.13886776e+00 0.85537739e-01 0.54013418e+00 0.00000000e+00
- 1 -2112 0 0 -0.37617575e+00 -0.15468545e+00 0.29444622e+01 0.93957000e+00
- 1 211 0 0 0.23983451e-01 -0.18632482e+00 0.12644070e+01 0.13957000e+00
- 1 130 0 0 -0.46593259e+00 -0.38418615e+00 0.11868341e+02 0.49767000e+00
- 2 310 165 166 0.83154756e+00 0.94975859e+00 0.14473529e+02 0.49767000e+00
- 1 22 0 0 0.58892844e+00 -0.29407333e+00 0.24145261e+02 0.00000000e+00
- 1 22 0 0 -0.89716892e-01 0.68353827e-01 0.31664086e+01 0.00000000e+00
- 1 22 0 0 -0.15751861e-01 0.28717090e-01 0.38211899e+01 0.00000000e+00
- 1 22 0 0 0.21637862e+00 0.13825930e+00 0.51462288e+02 0.00000000e+00
- 1 22 0 0 -0.27912020e-01 0.41381354e-01 0.51817135e+01 0.00000000e+00
- 1 22 0 0 -0.46662980e+00 0.16328232e+00 0.91337925e+02 0.00000000e+00
- 1 -211 0 0 0.56206434e+00 0.20021405e+00 0.25755397e+03 0.13957000e+00
- 2 111 167 168 -0.19696479e+00 -0.14916971e+00 0.10356790e+03 0.13498000e+00
- 1 -2112 0 0 -0.39319162e-01 0.60940096e-01 0.11518039e+04 0.93957000e+00
- 2 111 169 170 -0.19045194e+00 0.36774772e+00 0.30352095e+03 0.13498000e+00
- 1 2212 0 0 0.26681212e+00 -0.35139428e+00 0.16785067e+04 0.93827000e+00
- 2 111 171 172 0.39230787e+00 -0.10166849e+00 0.89471728e+03 0.13498000e+00
- 1 -2112 0 0 -0.30494553e+01 0.13175954e+01 -0.11566957e+00 0.93957000e+00
- 1 211 0 0 -0.21671602e+01 0.85583619e+00 -0.18726957e+00 0.13957000e+00
- 1 22 0 0 -0.30724418e+00 0.12521460e+00 -0.49050244e-01 0.00000000e+00
- 2 113 173 174 -0.15577508e+01 0.43091417e+00 -0.80457452e+00 0.85015877e+00
- 1 2112 0 0 -0.11444290e+01 0.53335058e+00 -0.13280483e+00 0.93957000e+00
- 1 -211 0 0 -0.80981629e+00 0.15443054e+00 0.61642997e-01 0.13957000e+00
- 2 -311 175 175 -0.58982252e+00 -0.11718636e+00 0.45855107e+00 0.49767000e+00
- 2 111 176 177 0.15109898e+00 -0.12237162e-01 0.16501514e-01 0.13498000e+00
- 1 -211 0 0 -0.11365265e+01 0.28017061e+00 0.88679894e+00 0.13957000e+00
- 2 111 178 179 -0.23325561e+00 0.33597708e-01 0.76143752e-01 0.13498000e+00
- 1 211 0 0 -0.73639699e-01 0.20364609e+00 -0.29531814e+00 0.13957000e+00
- 2 111 180 181 -0.88947762e+00 0.47467463e+00 0.43362966e-01 0.13498000e+00
- 1 -321 0 0 0.13578833e+00 -0.19832471e+00 0.26155067e+00 0.49360000e+00
- 1 321 0 0 -0.21486670e-01 -0.97159610e-01 0.38854494e+00 0.49360000e+00
- 1 321 0 0 -0.47341189e-01 0.11553248e+00 -0.42351772e-02 0.49360000e+00
- 1 -211 0 0 -0.12158946e-01 0.16255497e+00 -0.51500827e+00 0.13957000e+00
- 1 321 0 0 0.13044586e+00 0.19152710e-01 -0.13975430e+00 0.49360000e+00
- 2 111 182 183 0.19109477e+00 0.46310083e+00 0.77811207e-01 0.13498000e+00
- 2 111 184 185 -0.23416578e-01 -0.20331448e+00 -0.37888866e+01 0.13498000e+00
- 2 111 186 187 0.22678802e-01 -0.34569538e-01 -0.26858986e+01 0.13498000e+00
- 2 111 188 189 -0.17755619e+00 -0.35136815e+00 -0.10766286e+02 0.13498000e+00
- 1 -211 0 0 0.20935842e+00 -0.13308175e+00 -0.86513091e+00 0.13957000e+00
- 2 111 190 191 -0.31616376e+00 -0.39141437e+00 -0.25719096e+01 0.13498000e+00
- 1 22 0 0 0.44200284e+00 -0.83053425e-01 -0.18580777e+02 0.00000000e+00
- 1 22 0 0 0.23066706e+00 -0.10782167e+00 -0.77232079e+01 0.00000000e+00
- 1 -2112 0 0 -0.26333161e+00 -0.42463981e+00 -0.53096801e+02 0.93957000e+00
- 1 211 0 0 -0.41587462e+00 -0.43242099e+00 -0.24876189e+02 0.13957000e+00
- 1 2112 0 0 -0.56461615e+00 -0.21486491e+00 -0.69536408e+02 0.93957000e+00
- 1 -211 0 0 -0.20479829e+00 0.16772644e+00 -0.26585973e+02 0.13957000e+00
- 2 111 192 193 0.35757627e+00 0.58551380e-01 -0.30460173e+02 0.13498000e+00
- 2 111 194 195 0.12761037e+00 0.64049629e-01 -0.20404442e+02 0.13498000e+00
- 2 221 196 198 0.26952244e+00 -0.51098777e-01 -0.36424899e+02 0.54745000e+00
- 1 22 0 0 0.73740958e-01 0.74057661e-01 -0.67837397e+01 0.00000000e+00
- 1 22 0 0 0.75022994e+00 0.28687110e+00 -0.63868779e+02 0.00000000e+00
- 1 -211 0 0 -0.76796330e-01 -0.14922751e+00 -0.40457245e+03 0.13957000e+00
- 1 211 0 0 0.22462668e+00 0.63855449e-01 -0.47975660e+03 0.13957000e+00
- 2 111 199 200 -0.10831838e+00 0.18877919e-01 -0.86615262e+02 0.13498000e+00
- 1 211 0 0 0.10003464e+00 -0.93055973e-01 -0.52884622e+03 0.13957000e+00
- 1 -211 0 0 -0.79642942e+00 0.76444764e-01 -0.10065980e+04 0.13957000e+00
- 1 22 0 0 -0.79562979e+00 0.25324489e+01 0.62956885e+02 0.00000000e+00
- 1 22 0 0 -0.12704003e+00 0.59193794e+00 0.13631831e+02 0.00000000e+00
- 1 22 0 0 -0.62209685e+00 0.23881763e+01 0.56816442e+02 0.00000000e+00
- 1 22 0 0 0.19562478e-02 0.79581058e-01 0.20730716e+01 0.00000000e+00
- 2 111 201 202 -0.43592445e+00 0.23038557e+01 0.52770279e+02 0.13498000e+00
- 2 111 203 204 -0.32330546e+00 0.15697954e+01 0.36263924e+02 0.13498000e+00
- 2 111 205 206 -0.14884236e+01 0.64879734e+01 0.15563223e+03 0.13498000e+00
- 2 310 207 208 0.14114945e+00 0.17484625e+01 0.27008405e+02 0.49767000e+00
- 1 22 0 0 0.12261398e+00 0.25484122e+00 0.23135222e+01 0.00000000e+00
- 1 22 0 0 0.15809634e+00 0.21152191e+00 0.33982089e+01 0.00000000e+00
- 1 2212 0 0 -0.71909054e+00 0.28879712e+00 0.35308848e+01 0.93827000e+00
- 1 -211 0 0 -0.12693676e+00 0.14017851e+00 0.46397149e+00 0.13957000e+00
- 2 111 209 210 0.55658077e+00 0.33363936e+00 0.64182104e+01 0.13498000e+00
- 2 111 211 212 0.27496679e+00 0.61611923e+00 0.80553185e+01 0.13498000e+00
- 1 22 0 0 -0.16387246e+00 -0.16243834e+00 0.97818073e+02 0.00000000e+00
- 1 22 0 0 -0.33092332e-01 0.13268632e-01 0.57498242e+01 0.00000000e+00
- 1 22 0 0 -0.32565737e-01 0.59340544e-02 0.43835644e+02 0.00000000e+00
- 1 22 0 0 -0.15788620e+00 0.36181367e+00 0.25968531e+03 0.00000000e+00
- 1 22 0 0 0.33590458e+00 -0.37970736e-01 0.66038347e+03 0.00000000e+00
- 1 22 0 0 0.56403292e-01 -0.63697753e-01 0.23433380e+03 0.00000000e+00
- 1 211 0 0 -0.29810037e-01 -0.10749027e+00 -0.18033655e+00 0.13957000e+00
- 1 -211 0 0 -0.15279407e+01 0.53840444e+00 -0.62423797e+00 0.13957000e+00
- 1 130 0 0 -0.58982252e+00 -0.11718636e+00 0.45855107e+00 0.49767000e+00
- 1 22 0 0 0.11305248e+00 -0.66978437e-01 -0.10279801e-01 0.00000000e+00
- 1 22 0 0 0.38046499e-01 0.54741275e-01 0.26781315e-01 0.00000000e+00
- 1 22 0 0 -0.87933381e-01 -0.17094286e-01 -0.30699678e-01 0.00000000e+00
- 1 22 0 0 -0.14532222e+00 0.50691994e-01 0.10684343e+00 0.00000000e+00
- 1 22 0 0 -0.73803371e+00 0.43918220e+00 0.91847788e-02 0.00000000e+00
- 1 22 0 0 -0.15144391e+00 0.35492436e-01 0.34178188e-01 0.00000000e+00
- 1 22 0 0 0.79750458e-02 0.18297413e+00 0.11791826e-01 0.00000000e+00
- 1 22 0 0 0.18311973e+00 0.28012671e+00 0.66019380e-01 0.00000000e+00
- 1 22 0 0 0.19516045e-01 -0.16542384e+00 -0.33588607e+01 0.00000000e+00
- 1 22 0 0 -0.42932623e-01 -0.37890635e-01 -0.43002589e+00 0.00000000e+00
- 1 22 0 0 0.15454175e-01 0.12932370e-01 -0.60500575e-01 0.00000000e+00
- 1 22 0 0 0.72246267e-02 -0.47501908e-01 -0.26253980e+01 0.00000000e+00
- 1 22 0 0 -0.18735154e-01 -0.18079853e+00 -0.42914866e+01 0.00000000e+00
- 1 22 0 0 -0.15882104e+00 -0.17056963e+00 -0.64747995e+01 0.00000000e+00
- 1 22 0 0 -0.27574263e+00 -0.27423271e+00 -0.21281752e+01 0.00000000e+00
- 1 22 0 0 -0.40421127e-01 -0.11718166e+00 -0.44373435e+00 0.00000000e+00
- 1 22 0 0 0.15342179e+00 0.64477337e-01 -0.18117835e+02 0.00000000e+00
- 1 22 0 0 0.20415449e+00 -0.59259572e-02 -0.12342338e+02 0.00000000e+00
- 1 22 0 0 0.13054392e+00 0.81554443e-01 -0.12802514e+02 0.00000000e+00
- 1 22 0 0 -0.29335454e-02 -0.17504814e-01 -0.76019281e+01 0.00000000e+00
- 2 111 213 214 0.14244522e+00 0.13421597e+00 -0.13783366e+02 0.13498000e+00
- 2 111 215 216 0.57756829e-01 -0.14806520e+00 -0.10324988e+02 0.13498000e+00
- 2 111 217 218 0.69320389e-01 -0.37249545e-01 -0.12316545e+02 0.13498000e+00
- 1 22 0 0 -0.46468225e-02 0.44840909e-01 -0.49650469e+02 0.00000000e+00
- 1 22 0 0 -0.10367156e+00 -0.25962990e-01 -0.36964793e+02 0.00000000e+00
- 1 22 0 0 -0.42593358e-01 0.31904902e+00 0.63273057e+01 0.00000000e+00
- 1 22 0 0 -0.39333109e+00 0.19848066e+01 0.46442974e+02 0.00000000e+00
- 1 22 0 0 -0.13727012e+00 0.96789061e+00 0.22621342e+02 0.00000000e+00
- 1 22 0 0 -0.18603533e+00 0.60190476e+00 0.13642582e+02 0.00000000e+00
- 1 22 0 0 -0.53720659e+00 0.20723834e+01 0.50483506e+02 0.00000000e+00
- 1 22 0 0 -0.95121702e+00 0.44155900e+01 0.10514872e+03 0.00000000e+00
- 1 -211 0 0 -0.72484813e-01 0.22801883e+00 0.48594309e+01 0.13957000e+00
- 1 211 0 0 0.21363426e+00 0.15204437e+01 0.22148974e+02 0.13957000e+00
- 1 22 0 0 0.35577468e+00 0.26786508e+00 0.47424544e+01 0.00000000e+00
- 1 22 0 0 0.20080609e+00 0.65774276e-01 0.16757560e+01 0.00000000e+00
- 1 22 0 0 0.25161592e+00 0.57572235e+00 0.77869295e+01 0.00000000e+00
- 1 22 0 0 0.23350868e-01 0.40396880e-01 0.26838906e+00 0.00000000e+00
- 1 22 0 0 0.11759495e+00 0.14669427e+00 -0.13243630e+02 0.00000000e+00
- 1 22 0 0 0.24850272e-01 -0.12478302e-01 -0.53973511e+00 0.00000000e+00
- 1 22 0 0 -0.29574385e-01 -0.10547767e+00 -0.47890636e+01 0.00000000e+00
- 1 22 0 0 0.87331213e-01 -0.42587532e-01 -0.55359245e+01 0.00000000e+00
- 1 22 0 0 0.11783420e-01 -0.42789658e-01 -0.11705190e+01 0.00000000e+00
- 1 22 0 0 0.57536969e-01 0.55401136e-02 -0.11146026e+02 0.00000000e+00
- 349
- 2 25 2 3 0.25863654e+02 -0.40831600e+01 0.68388382e+02 0.12500019e+03
- 2 23 6 10 -0.30853937e+01 -0.24701781e+02 0.12312868e+02 0.14811258e+02
- 2 23 4 5 0.28949048e+02 0.20618621e+02 0.56075513e+02 0.91929414e+02
- 1 11 0 0 0.55062623e+02 0.88477027e+01 0.65080702e+01 0.51000000e-03
- 1 -11 0 0 -0.26113575e+02 0.11770918e+02 0.49567443e+02 0.51000000e-03
- 1 13 0 0 0.51048816e+01 -0.16855033e+02 0.70872358e+01 0.10566000e+00
- 1 22 0 0 0.72834581e-04 -0.35869982e-03 0.16127489e-03 0.00000000e+00
- 1 22 0 0 -0.14166537e-02 -0.44290935e-02 -0.18523390e-02 0.00000000e+00
- 1 -13 0 0 -0.81888971e+01 -0.78419217e+01 0.52272859e+01 0.10566000e+00
- 1 22 0 0 -0.34407088e-04 -0.38115300e-04 0.37693140e-04 0.00000000e+00
- 2 2 38 38 -0.11599600e+02 0.14094538e+01 0.91429669e+02 0.33000000e+00
- 2 21 38 38 -0.31729896e+01 0.32776576e+00 0.30738713e+02 0.00000000e+00
- 2 21 38 38 0.33275346e+00 -0.42121002e-01 0.16025439e+01 0.00000000e+00
- 2 21 38 38 -0.32853366e+01 -0.61377692e+00 0.25697202e+01 0.00000000e+00
- 2 21 38 38 0.35308520e+01 0.14905344e+01 0.50770680e+02 0.00000000e+00
- 2 21 38 38 -0.24401486e+01 -0.15639484e+01 0.23777322e+02 0.00000000e+00
- 2 21 38 38 -0.54477343e+00 -0.51912297e-01 0.18248009e+01 0.00000000e+00
- 2 21 38 38 -0.35308520e+01 -0.14905344e+01 0.22291726e+01 0.00000000e+00
- 2 21 38 38 -0.23992096e+01 0.69054669e+01 -0.46694206e+01 0.00000000e+00
- 2 21 38 38 0.23992096e+01 -0.69054669e+01 -0.10142952e+04 0.00000000e+00
- 2 21 38 38 0.54477343e+00 0.51912297e-01 -0.89001348e+02 0.00000000e+00
- 2 21 38 38 0.19490958e+01 0.29548468e+01 -0.11828765e+02 0.00000000e+00
- 2 21 38 38 0.16659119e+00 -0.28704917e+00 -0.17236138e+01 0.00000000e+00
- 2 21 38 38 -0.37450621e+00 -0.62356467e-01 -0.35092682e+01 0.00000000e+00
- 2 21 38 38 -0.95946695e-01 0.43298131e+00 -0.16304509e+02 0.00000000e+00
- 2 21 38 38 -0.10081732e+01 0.57223416e+00 -0.51333825e+02 0.00000000e+00
- 2 21 38 38 -0.88573760e+01 -0.74754439e+00 -0.32610905e+03 0.00000000e+00
- 2 2203 38 38 -0.14332024e+01 -0.19910850e+01 -0.53743872e+04 0.77133000e+00
- 2 1 99 99 0.84355627e+00 -0.76389672e+00 -0.62403842e+02 0.33000000e+00
- 2 21 99 99 0.24401486e+01 0.15639484e+01 0.72688454e+01 0.00000000e+00
- 2 21 99 99 0.10891704e+01 0.88348119e+00 0.39320308e+02 0.00000000e+00
- 2 21 99 99 0.13322314e+00 0.18923607e+01 0.22140698e+02 0.00000000e+00
- 2 21 99 99 -0.33597888e-01 0.76802380e+00 0.56296776e+01 0.00000000e+00
- 2 21 99 99 -0.41490057e+00 -0.34733823e+00 0.24445289e+01 0.00000000e+00
- 2 2101 99 99 -0.10241555e+00 -0.30281953e+00 0.65926147e+04 0.57933000e+00
- 2 21 122 122 0.67245785e+00 0.13549661e+01 -0.63380531e-01 0.00000000e+00
- 2 21 122 122 -0.67245785e+00 -0.13549661e+01 0.12878891e+02 0.00000000e+00
- 2 92 39 98 -0.29818839e+02 0.38940044e+00 -0.66882195e+04 0.24064761e+04
- 2 323 130 131 -0.83401924e+01 0.83760342e+00 0.69494033e+02 0.90051355e+00
- 2 -313 132 133 -0.23928335e+01 0.10957213e+01 0.19474804e+02 0.91056935e+00
- 2 1114 134 135 -0.24868236e+01 -0.20531638e+00 0.20615142e+02 0.13091967e+01
- 2 213 136 137 -0.12315525e+01 0.18905523e+00 0.52521863e+01 0.82184929e+00
- 1 -2112 0 0 0.13254244e+00 -0.68578570e+00 0.38205736e+01 0.93957000e+00
- 2 223 138 140 -0.14305624e+01 0.30324683e+00 0.53221384e+01 0.77968483e+00
- 2 111 141 142 0.16983548e+00 0.45475251e+00 0.13701229e+01 0.13498000e+00
- 1 -211 0 0 0.17116039e+00 -0.63486797e+00 0.44535108e+01 0.13957000e+00
- 2 111 143 144 -0.37422290e+00 0.12996547e+00 0.20194483e+01 0.13498000e+00
- 2 213 145 146 -0.12699074e+01 -0.29540564e+00 0.16682003e+01 0.77489467e+00
- 2 -213 147 148 0.12585672e+00 -0.20365486e+00 0.12005184e+01 0.77017910e+00
- 2 213 149 150 0.88620955e+00 0.77104177e+00 0.15896470e+02 0.80096338e+00
- 2 111 151 152 -0.12569570e+00 -0.30212616e+00 0.28916728e+01 0.13498000e+00
- 1 -211 0 0 0.11713729e+01 0.79922911e+00 0.16190261e+02 0.13957000e+00
- 2 111 153 154 0.13881940e-01 0.30161230e-01 0.48451312e+00 0.13498000e+00
- 2 113 155 156 -0.12854784e+01 -0.11018848e+01 0.14776565e+02 0.74647752e+00
- 2 113 157 158 0.34343599e+00 0.53632305e+00 0.47065026e+01 0.68484982e+00
- 2 111 159 160 -0.47552579e+00 -0.86307794e+00 0.78013527e+01 0.13498000e+00
- 1 321 0 0 -0.87026539e+00 0.66980307e+00 0.29295153e+01 0.49360000e+00
- 2 -313 161 162 -0.14671048e+01 -0.11830366e+01 0.28513830e+01 0.88433418e+00
- 2 -213 163 164 -0.88159110e+00 0.71312060e+00 -0.21441400e+00 0.69244469e+00
- 2 221 165 167 0.10248933e+00 -0.36804491e+00 0.35759902e+00 0.54745000e+00
- 1 211 0 0 -0.80426737e+00 -0.39577271e+00 0.12184320e+00 0.13957000e+00
- 1 2112 0 0 -0.27856055e+00 0.11100049e+01 -0.28332182e+00 0.93957000e+00
- 2 331 168 170 -0.67303589e+00 0.71440175e+00 0.36952997e-01 0.95788172e+00
- 1 -2112 0 0 -0.64016975e+00 0.90871065e+00 -0.10437172e+01 0.93957000e+00
- 2 111 171 172 -0.32945227e+00 0.20524660e+01 -0.74427348e+00 0.13498000e+00
- 1 2112 0 0 -0.39245980e+00 0.50836459e+00 -0.47557667e+01 0.93957000e+00
- 1 -2212 0 0 -0.19831894e+00 0.14873792e+00 -0.29101345e+01 0.93827000e+00
- 2 213 173 174 -0.88845028e-01 0.48998404e+00 -0.24094789e+01 0.76846044e+00
- 1 2112 0 0 0.33614450e+00 0.39861242e-01 -0.47209036e+01 0.93957000e+00
- 2 221 175 176 -0.59418429e+00 -0.12656215e+00 -0.13195571e+02 0.54745000e+00
- 1 -2112 0 0 0.31978211e+00 0.54150369e+00 -0.46490906e+02 0.93957000e+00
- 2 -213 177 178 0.72620506e+00 -0.10568129e+01 -0.12949716e+03 0.74594234e+00
- 2 2114 179 180 0.59468814e+00 -0.24417731e+01 -0.30982702e+03 0.12218999e+01
- 2 -311 181 181 -0.14523504e+00 -0.94006808e+00 -0.15227765e+03 0.49767000e+00
- 2 -3212 182 183 0.81121081e+00 -0.10615231e+01 -0.15343955e+03 0.11925500e+01
- 2 213 184 185 0.52586426e+00 -0.12407233e+01 -0.10702952e+03 0.56727436e+00
- 2 111 186 187 -0.23522123e-01 0.31156067e+00 -0.11622654e+02 0.13498000e+00
- 2 113 188 189 -0.31988127e+00 0.42290877e+00 -0.49051047e+02 0.77107827e+00
- 2 113 190 191 0.62996047e+00 -0.88901161e+00 -0.76757761e+02 0.83770837e+00
- 2 113 192 193 -0.26448383e+00 0.59183338e+00 -0.14397639e+02 0.72549082e+00
- 2 221 194 196 0.62450507e+00 -0.43159182e+00 -0.12309914e+02 0.54745000e+00
- 2 223 197 199 -0.96480039e-02 0.37196658e+00 -0.11465879e+02 0.78060433e+00
- 2 113 200 201 0.42010495e+00 0.61694313e+00 -0.42321183e+01 0.79531868e+00
- 1 2112 0 0 0.34677521e+00 0.79759140e+00 -0.16712322e+02 0.93957000e+00
- 2 111 202 203 -0.31301761e+00 -0.28764730e-01 -0.11129872e+01 0.13498000e+00
- 1 -2112 0 0 0.47164180e+00 0.14135117e+01 -0.10486950e+02 0.93957000e+00
- 1 -211 0 0 -0.37714882e+00 -0.48161574e+00 -0.13070848e+02 0.13957000e+00
- 2 223 204 206 -0.95491082e-02 0.83777633e-01 -0.14750902e+02 0.76865438e+00
- 2 323 207 208 -0.11084965e+01 0.23728574e+00 -0.36725852e+02 0.84212420e+00
- 2 3122 209 210 -0.22229991e+01 -0.82789971e+00 -0.96559240e+02 0.11156800e+01
- 1 -2112 0 0 -0.10256395e+01 0.44513637e+00 -0.47664704e+02 0.93957000e+00
- 2 111 211 212 -0.31374931e+01 -0.47229004e+00 -0.11033550e+03 0.13498000e+00
- 2 3214 213 214 -0.12052544e+01 0.29134168e+00 -0.12005779e+03 0.13664717e+01
- 2 311 215 215 0.32071737e+00 0.19803477e+00 -0.78806762e+02 0.49767000e+00
- 2 -3122 216 217 -0.76033191e+00 -0.49492059e+00 -0.28507186e+03 0.11156800e+01
- 2 -323 218 219 -0.21058353e+00 0.16963881e+00 -0.10914815e+04 0.86441399e+00
- 2 213 220 221 -0.60668229e+00 -0.71884818e+00 -0.39812178e+03 0.95776484e+00
- 1 2212 0 0 -0.69220709e+00 -0.11548099e+01 -0.34623194e+04 0.93827000e+00
- 2 92 100 121 0.39551844e+01 0.36937596e+01 0.66070150e+04 0.12943471e+04
- 2 111 222 223 -0.80902798e-01 -0.42683169e+00 -0.47545987e+02 0.13498000e+00
- 2 113 224 225 0.14649804e+01 -0.87115078e+00 -0.13922235e+02 0.79483408e+00
- 1 -211 0 0 -0.60995225e+00 0.24369327e+00 -0.34270407e+00 0.13957000e+00
- 1 211 0 0 0.20798186e+00 0.60994529e+00 0.60369041e+00 0.13957000e+00
- 2 -213 226 227 0.35968245e+00 0.43660586e+00 0.17004166e+01 0.46688742e+00
- 2 213 228 229 0.95084279e+00 0.60489512e-01 0.13013377e+01 0.77931421e+00
- 2 -213 230 231 0.36957205e-01 0.10039847e+00 0.32905078e+01 0.61080157e+00
- 1 321 0 0 0.67190275e+00 0.11883423e-01 0.97155834e+01 0.49360000e+00
- 1 -321 0 0 0.52437372e+00 0.11008065e+01 0.53163740e+01 0.49360000e+00
- 2 213 232 233 0.20874480e+00 0.51660166e+00 0.90258621e+01 0.67192634e+00
- 2 223 234 236 0.11334261e+00 0.57459124e+00 0.99464698e+01 0.78372876e+00
- 1 -211 0 0 0.13982244e+00 -0.30988848e+00 0.58520907e+01 0.13957000e+00
- 1 211 0 0 0.20607365e+00 0.18093081e+01 0.24483931e+02 0.13957000e+00
- 2 331 237 238 -0.38662450e-01 0.21707457e+00 0.12140937e+02 0.95682598e+00
- 2 -213 239 240 -0.40528791e-01 -0.27900428e+00 0.32043521e+02 0.70954983e+00
- 2 213 241 242 0.12017422e+00 0.17478080e+00 0.10516414e+03 0.86174208e+00
- 2 111 243 244 0.12456973e+00 0.19850412e+00 0.27862542e+02 0.13498000e+00
- 2 -213 245 246 -0.21730124e+00 -0.82324366e-01 0.35700288e+02 0.77732059e+00
- 2 223 247 249 -0.31645093e+00 0.42163235e-01 0.87440893e+02 0.78193733e+00
- 2 223 250 252 0.40146553e+00 -0.30565357e+00 0.52999799e+02 0.77787421e+00
- 2 2224 253 254 -0.30373289e+00 -0.24025280e+00 0.10472105e+04 0.12693746e+01
- 2 -213 255 256 0.31801541e-01 0.11201948e+00 0.51970270e+04 0.70936901e+00
- 2 92 123 129 0.00000000e+00 0.00000000e+00 0.12815511e+02 0.67434232e+01
- 2 213 257 258 -0.59939692e+00 -0.14479528e+00 0.13989055e+01 0.80989991e+00
- 2 311 259 259 -0.20232096e+00 -0.26142808e+00 0.48151718e+00 0.49767000e+00
- 2 -311 260 260 0.52514013e+00 0.71783852e+00 0.69346664e+00 0.49767000e+00
- 1 -211 0 0 0.72900464e-01 -0.63027460e+00 0.49579104e+01 0.13957000e+00
- 1 211 0 0 -0.17838373e+00 0.41530553e+00 0.99907851e+00 0.13957000e+00
- 1 -211 0 0 0.17923760e+00 0.52411375e-02 -0.10335741e+00 0.13957000e+00
- 2 111 261 262 0.20282341e+00 -0.10188723e+00 0.43879897e+01 0.13498000e+00
- 2 311 263 263 -0.26390494e+01 0.28228847e+00 0.22038112e+02 0.49767000e+00
- 1 211 0 0 -0.57011429e+01 0.55531495e+00 0.47455921e+02 0.13957000e+00
- 1 -321 0 0 -0.21297526e+01 0.11551957e+01 0.17780212e+02 0.49360000e+00
- 1 211 0 0 -0.26308090e+00 -0.59474354e-01 0.16945920e+01 0.13957000e+00
- 1 2112 0 0 -0.24436291e+01 -0.30226164e+00 0.18923424e+02 0.93957000e+00
- 1 -211 0 0 -0.43194441e-01 0.96945252e-01 0.16917177e+01 0.13957000e+00
- 1 211 0 0 -0.11880162e+01 0.52753889e-01 0.49942730e+01 0.13957000e+00
- 2 111 264 265 -0.43536315e-01 0.13630134e+00 0.25791337e+00 0.13498000e+00
- 1 211 0 0 -0.36388189e+00 -0.16364293e+00 0.17439417e+01 0.13957000e+00
- 1 -211 0 0 -0.55190479e+00 0.12555737e+00 0.18399742e+01 0.13957000e+00
- 2 111 266 267 -0.51477570e+00 0.34133240e+00 0.17382226e+01 0.13498000e+00
- 1 22 0 0 0.14499387e+00 0.45219928e+00 0.13332435e+01 0.00000000e+00
- 1 22 0 0 0.24841603e-01 0.25532284e-02 0.36879404e-01 0.00000000e+00
- 1 22 0 0 -0.91212856e-01 0.82256432e-01 0.81407767e+00 0.00000000e+00
- 1 22 0 0 -0.28301004e+00 0.47709042e-01 0.12053706e+01 0.00000000e+00
- 1 211 0 0 -0.36288972e+00 0.22791461e+00 0.62321506e+00 0.13957000e+00
- 2 111 268 269 -0.90701773e+00 -0.52332024e+00 0.10449853e+01 0.13498000e+00
- 1 -211 0 0 0.41980251e+00 -0.42104077e-01 0.68914305e+00 0.13957000e+00
- 2 111 270 271 -0.29394579e+00 -0.16155078e+00 0.51137531e+00 0.13498000e+00
- 1 211 0 0 0.12746769e+00 0.15231905e+00 0.77388123e+01 0.13957000e+00
- 2 111 272 273 0.75874186e+00 0.61872272e+00 0.81576582e+01 0.13498000e+00
- 1 22 0 0 -0.57695198e-01 -0.54390704e-01 0.11512245e+01 0.00000000e+00
- 1 22 0 0 -0.68000502e-01 -0.24773545e+00 0.17404483e+01 0.00000000e+00
- 1 22 0 0 0.16411593e-01 -0.43297572e-01 0.76068840e-01 0.00000000e+00
- 1 22 0 0 -0.25296527e-02 0.73458801e-01 0.40844428e+00 0.00000000e+00
- 1 -211 0 0 -0.12088525e+01 -0.72491110e+00 0.12373522e+02 0.13957000e+00
- 1 211 0 0 -0.76625984e-01 -0.37697374e+00 0.24030428e+01 0.13957000e+00
- 1 211 0 0 0.13318190e+00 0.52784381e+00 0.41440862e+01 0.13957000e+00
- 1 -211 0 0 0.21025409e+00 0.84792360e-02 0.56241640e+00 0.13957000e+00
- 1 22 0 0 -0.27299675e+00 -0.62195518e+00 0.52147191e+01 0.00000000e+00
- 1 22 0 0 -0.20252904e+00 -0.24112276e+00 0.25866335e+01 0.00000000e+00
- 1 -321 0 0 -0.76653060e+00 -0.50955019e+00 0.10623150e+01 0.49360000e+00
- 1 211 0 0 -0.70057425e+00 -0.67348645e+00 0.17890680e+01 0.13957000e+00
- 1 -211 0 0 0.46499771e-01 0.90709157e-01 0.67334968e-01 0.13957000e+00
- 2 111 274 275 -0.92809087e+00 0.62241144e+00 -0.28174897e+00 0.13498000e+00
- 2 111 276 277 0.12944727e+00 -0.41715404e-01 0.17434901e+00 0.13498000e+00
- 2 111 278 279 -0.16392032e-01 -0.17275855e+00 0.19405613e+00 0.13498000e+00
- 2 111 280 281 -0.10565910e-01 -0.15357096e+00 -0.10806110e-01 0.13498000e+00
- 1 -211 0 0 -0.19250910e+00 0.79663265e-01 0.79246597e-01 0.13957000e+00
- 1 211 0 0 -0.14286295e+00 0.62713978e-02 -0.62780466e-01 0.13957000e+00
- 2 221 282 284 -0.33766384e+00 0.62846709e+00 0.20486866e-01 0.54745000e+00
- 1 22 0 0 -0.19508980e+00 0.15331762e+01 -0.51964855e+00 0.00000000e+00
- 1 22 0 0 -0.13436247e+00 0.51928980e+00 -0.22462493e+00 0.00000000e+00
- 1 211 0 0 0.25158919e+00 0.19979825e-01 -0.11296672e+01 0.13957000e+00
- 2 111 285 286 -0.34043421e+00 0.47000421e+00 -0.12798116e+01 0.13498000e+00
- 1 22 0 0 -0.34554986e+00 -0.33794878e+00 -0.69408909e+01 0.00000000e+00
- 1 22 0 0 -0.24863443e+00 0.21138664e+00 -0.62546798e+01 0.00000000e+00
- 1 -211 0 0 0.75652784e+00 -0.79997056e+00 -0.11618336e+03 0.13957000e+00
- 2 111 287 288 -0.30322780e-01 -0.25684229e+00 -0.13313800e+02 0.13498000e+00
- 1 2112 0 0 0.66595569e+00 -0.21880263e+01 -0.28761389e+03 0.93957000e+00
- 2 111 289 290 -0.71267549e-01 -0.25374676e+00 -0.22213133e+02 0.13498000e+00
- 2 310 291 292 -0.14523504e+00 -0.94006808e+00 -0.15227765e+03 0.49767000e+00
- 2 -3122 293 294 0.73944605e+00 -0.10314991e+01 -0.15024778e+03 0.11156800e+01
- 1 22 0 0 0.71764762e-01 -0.30024002e-01 -0.31917714e+01 0.00000000e+00
- 1 211 0 0 0.55192454e+00 -0.96621560e+00 -0.73161079e+02 0.13957000e+00
- 2 111 295 296 -0.26060287e-01 -0.27450765e+00 -0.33868442e+02 0.13498000e+00
- 1 22 0 0 0.29537492e-02 0.31348293e+00 -0.10840674e+02 0.00000000e+00
- 1 22 0 0 -0.26475872e-01 -0.19222586e-02 -0.78197925e+00 0.00000000e+00
- 1 -211 0 0 -0.35097024e+00 0.80620172e-01 -0.39262525e+02 0.13957000e+00
- 1 211 0 0 0.31088969e-01 0.34228860e+00 -0.97885217e+01 0.13957000e+00
- 1 211 0 0 -0.88220481e-02 -0.19376634e+00 -0.37289963e+02 0.13957000e+00
- 1 -211 0 0 0.63878252e+00 -0.69524528e+00 -0.39467797e+02 0.13957000e+00
- 1 -211 0 0 0.14630847e+00 0.32102014e+00 -0.34304808e+01 0.13957000e+00
- 1 211 0 0 -0.41079230e+00 0.27081325e+00 -0.10967158e+02 0.13957000e+00
- 2 111 297 298 0.24262150e+00 -0.73573122e-01 -0.36288158e+01 0.13498000e+00
- 2 111 299 300 0.34833346e+00 -0.19115321e+00 -0.48957234e+01 0.13498000e+00
- 2 111 301 302 0.33550108e-01 -0.16686548e+00 -0.37853753e+01 0.13498000e+00
- 1 211 0 0 -0.17410730e+00 0.15759360e+00 -0.20089845e+01 0.13957000e+00
- 1 -211 0 0 -0.90884909e-01 0.43193007e-01 -0.24492027e+01 0.13957000e+00
- 2 111 303 304 0.25534420e+00 0.17117997e+00 -0.70076920e+01 0.13498000e+00
- 1 -211 0 0 0.17623609e-01 0.64166798e+00 -0.23166676e+01 0.13957000e+00
- 1 211 0 0 0.40248134e+00 -0.24724852e-01 -0.19154507e+01 0.13957000e+00
- 1 22 0 0 -0.16005892e+00 0.26239377e-02 -0.34034988e+00 0.00000000e+00
- 1 22 0 0 -0.15295868e+00 -0.31388667e-01 -0.77263736e+00 0.00000000e+00
- 1 211 0 0 -0.14265514e+00 0.19875097e+00 -0.58933170e+01 0.13957000e+00
- 1 -211 0 0 0.15357347e+00 -0.12251583e+00 -0.23976621e+01 0.13957000e+00
- 2 111 305 306 -0.20467441e-01 0.75424871e-02 -0.64599234e+01 0.13498000e+00
- 2 311 307 307 -0.54762323e+00 0.26745631e+00 -0.25609059e+02 0.49767000e+00
- 1 211 0 0 -0.56087330e+00 -0.30170573e-01 -0.11116794e+02 0.13957000e+00
- 1 2212 0 0 -0.19536960e+01 -0.63190738e+00 -0.81648019e+02 0.93827000e+00
- 1 -211 0 0 -0.26930304e+00 -0.19599233e+00 -0.14911221e+02 0.13957000e+00
- 1 22 0 0 -0.32426111e+00 -0.76018063e-02 -0.11191531e+02 0.00000000e+00
- 1 22 0 0 -0.28132320e+01 -0.46468823e+00 -0.99143966e+02 0.00000000e+00
- 2 3122 308 309 -0.90746438e+00 0.66813924e-01 -0.98653897e+02 0.11156800e+01
- 2 111 310 311 -0.29779004e+00 0.22452775e+00 -0.21403895e+02 0.13498000e+00
- 2 310 312 313 0.32071737e+00 0.19803477e+00 -0.78806762e+02 0.49767000e+00
- 1 -2212 0 0 -0.52922647e+00 -0.42037357e+00 -0.22405591e+03 0.93827000e+00
- 1 211 0 0 -0.23110544e+00 -0.74547017e-01 -0.61015956e+02 0.13957000e+00
- 1 -321 0 0 0.73952993e-01 0.26998116e+00 -0.61854323e+03 0.49360000e+00
- 2 111 314 315 -0.28453652e+00 -0.10034235e+00 -0.47293830e+03 0.13498000e+00
- 1 211 0 0 0.19891153e+00 -0.38844917e+00 -0.14937663e+03 0.13957000e+00
- 2 111 316 317 -0.80559382e+00 -0.33039901e+00 -0.24874515e+03 0.13498000e+00
- 1 22 0 0 -0.27076150e-01 -0.38661201e+00 -0.40053209e+02 0.00000000e+00
- 1 22 0 0 -0.53826647e-01 -0.40219682e-01 -0.74927779e+01 0.00000000e+00
- 1 -211 0 0 0.18230773e+00 -0.45132335e+00 -0.46938723e+01 0.13957000e+00
- 1 211 0 0 0.12826727e+01 -0.41982742e+00 -0.92283628e+01 0.13957000e+00
- 1 -211 0 0 0.69944043e-01 0.10982103e+00 0.17333658e+00 0.13957000e+00
- 2 111 318 319 0.28973841e+00 0.32678483e+00 0.15270800e+01 0.13498000e+00
- 1 211 0 0 0.23079505e+00 0.57585134e-01 -0.24078441e-01 0.13957000e+00
- 2 111 320 321 0.72004774e+00 0.29043775e-02 0.13254161e+01 0.13498000e+00
- 1 -211 0 0 0.18634883e+00 0.22305000e+00 0.11301229e+01 0.13957000e+00
- 2 111 322 323 -0.14939163e+00 -0.12265153e+00 0.21603848e+01 0.13498000e+00
- 1 211 0 0 0.27180883e+00 0.52508210e-02 0.21640225e+01 0.13957000e+00
- 2 111 324 325 -0.63064032e-01 0.51135084e+00 0.68618396e+01 0.13498000e+00
- 1 -211 0 0 -0.48109109e-01 0.62352961e-01 0.41374176e+01 0.13957000e+00
- 1 211 0 0 0.24841297e+00 0.31319561e+00 0.45193021e+01 0.13957000e+00
- 2 111 326 327 -0.86961248e-01 0.19904267e+00 0.12897501e+01 0.13498000e+00
- 1 22 0 0 0.83861363e-01 0.14358501e+00 0.49587780e+01 0.00000000e+00
- 2 113 328 329 -0.12252381e+00 0.73489562e-01 0.71821589e+01 0.71437225e+00
- 1 -211 0 0 -0.13190346e+00 0.11183799e-01 0.25427990e+02 0.13957000e+00
- 2 111 330 331 0.91374666e-01 -0.29018808e+00 0.66155308e+01 0.13498000e+00
- 1 211 0 0 -0.10861978e+00 0.11879275e+00 0.67324390e+01 0.13957000e+00
- 2 111 332 333 0.22879400e+00 0.55988047e-01 0.98431702e+02 0.13498000e+00
- 1 22 0 0 0.80416109e-01 0.25645058e-01 0.61443734e+01 0.00000000e+00
- 1 22 0 0 0.44153619e-01 0.17285906e+00 0.21718168e+02 0.00000000e+00
- 1 -211 0 0 -0.59584099e-01 0.94615859e-01 0.31432995e+02 0.13957000e+00
- 2 111 334 335 -0.15771714e+00 -0.17694022e+00 0.42672937e+01 0.13498000e+00
- 1 -211 0 0 -0.52597564e-01 -0.38683146e-01 0.36362284e+02 0.13957000e+00
- 1 211 0 0 -0.62492348e-02 -0.18027540e+00 0.18155539e+02 0.13957000e+00
- 2 111 336 337 -0.25760413e+00 0.26112178e+00 0.32923070e+02 0.13498000e+00
- 1 211 0 0 0.14104960e+00 -0.15891026e+00 0.11412587e+02 0.13957000e+00
- 1 -211 0 0 0.26748391e+00 0.77721358e-01 0.11755336e+02 0.13957000e+00
- 2 111 338 339 -0.70679806e-02 -0.22446467e+00 0.29831876e+02 0.13498000e+00
- 1 2212 0 0 -0.26747892e+00 -0.31033487e+00 0.10071135e+04 0.93827000e+00
- 1 211 0 0 -0.36253970e-01 0.70082067e-01 0.40096946e+02 0.13957000e+00
- 1 -211 0 0 0.25573438e+00 0.14780261e+00 0.42607499e+04 0.13957000e+00
- 2 111 340 341 -0.22393284e+00 -0.35783134e-01 0.93627709e+03 0.13498000e+00
- 1 211 0 0 -0.62676764e+00 0.23094842e-01 0.13671324e+01 0.13957000e+00
- 2 111 342 344 0.27370722e-01 -0.16789013e+00 0.31773085e-01 0.13498000e+00
- 2 310 345 346 -0.20232096e+00 -0.26142808e+00 0.48151718e+00 0.49767000e+00
- 1 130 0 0 0.52514013e+00 0.71783852e+00 0.69346664e+00 0.49767000e+00
- 1 22 0 0 0.78551646e-01 -0.42743153e-01 0.74619645e+00 0.00000000e+00
- 1 22 0 0 0.12427177e+00 -0.59144076e-01 0.36417932e+01 0.00000000e+00
- 1 130 0 0 -0.26390494e+01 0.28228847e+00 0.22038112e+02 0.49767000e+00
- 1 22 0 0 0.20333988e-01 0.12054621e+00 0.20996092e+00 0.00000000e+00
- 1 22 0 0 -0.63870303e-01 0.15755134e-01 0.47952453e-01 0.00000000e+00
- 1 22 0 0 -0.49534878e-01 -0.55366986e-02 0.18301890e+00 0.00000000e+00
- 1 22 0 0 -0.46524083e+00 0.34686910e+00 0.15552037e+01 0.00000000e+00
- 1 22 0 0 -0.61239917e+00 -0.28640518e+00 0.62928008e+00 0.00000000e+00
- 1 22 0 0 -0.29461856e+00 -0.23691506e+00 0.41570520e+00 0.00000000e+00
- 1 22 0 0 -0.17956352e+00 -0.72997600e-01 0.39728234e+00 0.00000000e+00
- 1 22 0 0 -0.11438226e+00 -0.88553181e-01 0.11409297e+00 0.00000000e+00
- 1 22 0 0 0.33050065e+00 0.19664597e+00 0.34679106e+01 0.00000000e+00
- 1 22 0 0 0.42824121e+00 0.42207675e+00 0.46897476e+01 0.00000000e+00
- 1 22 0 0 -0.16936563e+00 0.15797947e+00 -0.10044690e+00 0.00000000e+00
- 1 22 0 0 -0.75872524e+00 0.46443197e+00 -0.18130206e+00 0.00000000e+00
- 1 22 0 0 0.94271406e-01 -0.20224375e-01 0.18912167e-01 0.00000000e+00
- 1 22 0 0 0.35175865e-01 -0.21491030e-01 0.15543684e+00 0.00000000e+00
- 1 22 0 0 0.38817184e-01 -0.39737110e-01 0.11788466e+00 0.00000000e+00
- 1 22 0 0 -0.55209216e-01 -0.13302144e+00 0.76171468e-01 0.00000000e+00
- 1 22 0 0 -0.43116280e-01 -0.16033485e+00 -0.26705910e-01 0.00000000e+00
- 1 22 0 0 0.32550370e-01 0.67638956e-02 0.15899799e-01 0.00000000e+00
- 1 22 0 0 -0.20103792e+00 0.15369866e+00 0.12274264e+00 0.00000000e+00
- 1 211 0 0 -0.12439483e+00 0.30921826e+00 0.32680277e-01 0.13957000e+00
- 1 -211 0 0 -0.12231084e-01 0.16555018e+00 -0.13493605e+00 0.13957000e+00
- 1 22 0 0 -0.19044016e+00 0.15606335e+00 -0.58323411e+00 0.00000000e+00
- 1 22 0 0 -0.14999406e+00 0.31394086e+00 -0.69657752e+00 0.00000000e+00
- 1 22 0 0 -0.45524086e-01 -0.23147083e-01 -0.14853931e+01 0.00000000e+00
- 1 22 0 0 0.15201306e-01 -0.23369521e+00 -0.11828406e+02 0.00000000e+00
- 1 22 0 0 -0.78930953e-01 -0.26729301e+00 -0.20345782e+02 0.00000000e+00
- 1 22 0 0 0.76634037e-02 0.13546250e-01 -0.18673507e+01 0.00000000e+00
- 1 211 0 0 -0.25171811e+00 -0.40112503e+00 -0.82814488e+02 0.13957000e+00
- 1 -211 0 0 0.10648307e+00 -0.53894305e+00 -0.69463165e+02 0.13957000e+00
- 1 -2212 0 0 0.61276882e+00 -0.82189744e+00 -0.11553828e+03 0.93827000e+00
- 1 211 0 0 0.12667724e+00 -0.20960164e+00 -0.34709496e+02 0.13957000e+00
- 1 22 0 0 0.30816551e-01 -0.22388248e+00 -0.22446583e+02 0.00000000e+00
- 1 22 0 0 -0.56876838e-01 -0.50625169e-01 -0.11421858e+02 0.00000000e+00
- 1 22 0 0 0.49946531e-01 0.29020754e-01 -0.42297741e+00 0.00000000e+00
- 1 22 0 0 0.19267497e+00 -0.10259388e+00 -0.32058383e+01 0.00000000e+00
- 1 22 0 0 0.33082406e+00 -0.20682624e+00 -0.43551384e+01 0.00000000e+00
- 1 22 0 0 0.17509403e-01 0.15673023e-01 -0.54058498e+00 0.00000000e+00
- 1 22 0 0 -0.92354499e-02 0.13032974e-01 -0.77977439e-01 0.00000000e+00
- 1 22 0 0 0.42785558e-01 -0.17989845e+00 -0.37073978e+01 0.00000000e+00
- 1 22 0 0 0.18141446e+00 0.13841930e+00 -0.61507375e+01 0.00000000e+00
- 1 22 0 0 0.73929748e-01 0.32760670e-01 -0.85695452e+00 0.00000000e+00
- 1 22 0 0 0.86529729e-02 -0.57884309e-01 -0.39219604e+01 0.00000000e+00
- 1 22 0 0 -0.29120414e-01 0.65426797e-01 -0.25379630e+01 0.00000000e+00
- 1 130 0 0 -0.54762323e+00 0.26745631e+00 -0.25609059e+02 0.49767000e+00
- 1 2112 0 0 -0.77305878e+00 0.25839767e-01 -0.76870813e+02 0.93957000e+00
- 2 111 347 349 -0.13440559e+00 0.40974157e-01 -0.21783084e+02 0.13498000e+00
- 1 22 0 0 -0.23684135e+00 0.18618631e+00 -0.13570499e+02 0.00000000e+00
- 1 22 0 0 -0.60948696e-01 0.38341441e-01 -0.78333962e+01 0.00000000e+00
- 1 -211 0 0 0.18461861e+00 0.25939506e+00 -0.29483172e+02 0.13957000e+00
- 1 211 0 0 0.13609876e+00 -0.61360299e-01 -0.49323589e+02 0.13957000e+00
- 1 22 0 0 0.77113777e-02 0.21275977e-02 -0.23532331e+01 0.00000000e+00
- 1 22 0 0 -0.29224790e+00 -0.10246995e+00 -0.47058506e+03 0.00000000e+00
- 1 22 0 0 -0.78151442e+00 -0.31395860e+00 -0.24497716e+03 0.00000000e+00
- 1 22 0 0 -0.24079399e-01 -0.16440409e-01 -0.37679866e+01 0.00000000e+00
- 1 22 0 0 0.24987299e-01 0.10950627e+00 0.45001114e+00 0.00000000e+00
- 1 22 0 0 0.26475111e+00 0.21727856e+00 0.10770689e+01 0.00000000e+00
- 1 22 0 0 0.44217942e+00 -0.16575664e-01 0.93923096e+00 0.00000000e+00
- 1 22 0 0 0.27786832e+00 0.19480042e-01 0.38618515e+00 0.00000000e+00
- 1 22 0 0 -0.26681387e-01 -0.18801739e-01 0.76997724e-01 0.00000000e+00
- 1 22 0 0 -0.12271024e+00 -0.10384979e+00 0.20833871e+01 0.00000000e+00
- 1 22 0 0 0.27358662e-01 0.33700319e-01 0.39031419e+00 0.00000000e+00
- 1 22 0 0 -0.90422694e-01 0.47765052e+00 0.64715254e+01 0.00000000e+00
- 1 22 0 0 0.35218436e-01 0.27960287e-01 0.26144583e+00 0.00000000e+00
- 1 22 0 0 -0.12217968e+00 0.17108238e+00 0.10283043e+01 0.00000000e+00
- 1 211 0 0 -0.12056129e+00 -0.10351445e+00 0.64377237e+01 0.13957000e+00
- 1 -211 0 0 -0.19625204e-02 0.17700401e+00 0.74443520e+00 0.13957000e+00
- 1 22 0 0 -0.15108797e-01 -0.91234868e-01 0.29347023e+01 0.00000000e+00
- 1 22 0 0 0.10648346e+00 -0.19895321e+00 0.36808285e+01 0.00000000e+00
- 1 22 0 0 0.53281453e-01 0.73725125e-01 0.42057895e+02 0.00000000e+00
- 1 22 0 0 0.17551255e+00 -0.17737078e-01 0.56373807e+02 0.00000000e+00
- 1 22 0 0 -0.17407296e+00 -0.16944499e+00 0.41692890e+01 0.00000000e+00
- 1 22 0 0 0.16355819e-01 -0.74952322e-02 0.98004715e-01 0.00000000e+00
- 1 22 0 0 -0.27182749e+00 0.24472505e+00 0.31852325e+02 0.00000000e+00
- 1 22 0 0 0.14223367e-01 0.16396735e-01 0.10707457e+01 0.00000000e+00
- 1 22 0 0 -0.49103262e-01 -0.20243083e-01 0.54170560e+01 0.00000000e+00
- 1 22 0 0 0.42035282e-01 -0.20422159e+00 0.24414820e+02 0.00000000e+00
- 1 22 0 0 -0.13833690e+00 -0.84947742e-01 0.51310308e+03 0.00000000e+00
- 1 22 0 0 -0.85595934e-01 0.49164608e-01 0.42317400e+03 0.00000000e+00
- 1 22 0 0 0.13685835e-01 -0.42146189e-01 0.73489072e-01 0.00000000e+00
- 1 11 0 0 -0.12978225e-02 -0.25181651e-01 -0.10200691e-01 0.51000000e-03
- 1 -11 0 0 0.14982710e-01 -0.10056229e+00 -0.31515296e-01 0.51000000e-03
- 1 -211 0 0 0.66289415e-01 0.17733999e-01 0.25141553e+00 0.13957000e+00
- 1 211 0 0 -0.26861037e+00 -0.27916208e+00 0.23010165e+00 0.13957000e+00
- 1 22 0 0 -0.27184140e-01 -0.95068541e-02 -0.13367309e+02 0.00000000e+00
- 1 11 0 0 -0.18105564e-01 0.66413600e-02 -0.11543791e+01 0.51000000e-03
- 1 -11 0 0 -0.89115890e-01 0.43839651e-01 -0.72613956e+01 0.51000000e-03
- 566
- 2 25 2 3 -0.71511085e+02 -0.32741214e-01 0.32521364e+03 0.12499439e+03
- 2 23 6 9 -0.42909694e+02 -0.11073363e+01 0.18983416e+03 0.90170844e+02
- 2 23 4 5 -0.28601392e+02 0.10745951e+01 0.13537948e+03 0.27968630e+02
- 1 13 0 0 -0.93782986e+01 0.60967066e+01 0.12835182e+02 0.10566000e+00
- 1 -13 0 0 -0.19223093e+02 -0.50221115e+01 0.12254429e+03 0.10566000e+00
- 1 11 0 0 -0.32017434e+02 0.26152862e+02 0.17818398e+03 0.51000000e-03
- 1 22 0 0 -0.24145888e+00 -0.61191444e+00 0.25396789e+00 0.00000000e+00
- 1 -11 0 0 -0.10650736e+02 -0.26648121e+02 0.11396146e+02 0.51000000e-03
- 1 22 0 0 -0.64388189e-04 -0.16307086e-03 0.68172969e-04 0.00000000e+00
- 2 1 68 68 0.13041051e+02 0.15167678e+02 0.12155115e+04 0.33000000e+00
- 2 21 68 68 0.28623803e+01 0.40501951e+01 0.27657939e+03 0.00000000e+00
- 2 21 68 68 0.26272274e+01 0.27550595e+01 0.30218837e+03 0.00000000e+00
- 2 21 68 68 0.66295013e+01 0.39618058e+01 0.41191371e+03 0.00000000e+00
- 2 21 68 68 -0.64118010e-01 0.41142547e+00 0.11342509e+02 0.00000000e+00
- 2 21 68 68 0.94308342e+00 0.61063579e+00 0.13965657e+02 0.00000000e+00
- 2 21 68 68 0.18923269e+01 0.38612111e+01 0.24162457e+02 0.00000000e+00
- 2 21 68 68 0.17478892e+01 0.54169517e+01 0.36509949e+02 0.00000000e+00
- 2 21 68 68 -0.17982996e+01 0.51469308e+01 0.35425771e+02 0.00000000e+00
- 2 21 68 68 0.64101044e+01 -0.11451286e+01 0.44515217e+02 0.00000000e+00
- 2 21 68 68 -0.12675215e+01 -0.41859359e+00 0.41264304e+01 0.00000000e+00
- 2 21 68 68 -0.64101044e+01 0.11451286e+01 0.17246856e+02 0.00000000e+00
- 2 21 68 68 -0.94452795e+00 0.33173405e+01 0.17275667e+01 0.00000000e+00
- 2 21 68 68 -0.15552327e+01 0.23946987e+01 0.12851188e+01 0.00000000e+00
- 2 21 68 68 -0.18319963e+01 0.40263294e+01 0.60345087e+00 0.00000000e+00
- 2 21 68 68 0.27006664e+01 0.12740315e+01 -0.78360164e+00 0.00000000e+00
- 2 21 68 68 0.12675215e+01 0.41859359e+00 -0.90336798e-01 0.00000000e+00
- 2 21 68 68 -0.72489293e+00 -0.36645712e+00 -0.82612656e-01 0.00000000e+00
- 2 21 68 68 -0.27006664e+01 -0.12740315e+01 -0.12477589e+01 0.00000000e+00
- 2 21 68 68 -0.18923269e+01 -0.38612111e+01 -0.29999006e+01 0.00000000e+00
- 2 21 68 68 -0.16813936e+01 -0.35023061e+01 -0.18033955e+01 0.00000000e+00
- 2 21 68 68 -0.87689625e+00 -0.65334432e+00 0.69444336e+00 0.00000000e+00
- 2 21 68 68 -0.17478892e+01 -0.54169517e+01 0.61161302e+01 0.00000000e+00
- 2 21 68 68 -0.29735618e+01 -0.65879570e+01 0.19490421e+02 0.00000000e+00
- 2 21 68 68 -0.20025571e+00 -0.10889793e+01 0.37538100e+01 0.00000000e+00
- 2 21 68 68 0.42294588e+00 -0.99836968e+00 0.21332893e+01 0.00000000e+00
- 2 21 68 68 0.15552327e+01 -0.23946987e+01 0.93852405e+01 0.00000000e+00
- 2 21 68 68 0.17982996e+01 -0.51469308e+01 0.69613550e+02 0.00000000e+00
- 2 21 68 68 0.18319963e+01 -0.40263294e+01 0.26819402e+03 0.00000000e+00
- 2 21 68 68 0.29735618e+01 0.65879570e+01 0.21704293e+03 0.00000000e+00
- 2 21 68 68 -0.35858951e+01 0.40521221e+01 0.23821445e+03 0.00000000e+00
- 2 21 68 68 -0.94308342e+00 -0.61063579e+00 0.47754612e+02 0.00000000e+00
- 2 21 68 68 0.20025571e+00 0.10889793e+01 0.12240051e+03 0.00000000e+00
- 2 2101 68 68 -0.83689470e+00 -0.21943436e+01 0.32245103e+04 0.57933000e+00
- 2 2 149 149 0.26434994e+02 -0.12463200e+02 -0.16179000e+02 0.33000000e+00
- 2 21 149 149 0.21286586e+02 -0.11474863e+02 -0.16398453e+02 0.00000000e+00
- 2 21 149 149 0.83736415e+00 -0.42943477e+00 -0.99656667e+00 0.00000000e+00
- 2 21 149 149 0.50299419e+00 -0.53533106e+00 0.90835218e-01 0.00000000e+00
- 2 21 149 149 -0.59114312e+00 -0.27904468e+00 0.17724510e+01 0.00000000e+00
- 2 21 149 149 0.24188720e+01 -0.19375901e+01 -0.27990729e+02 0.00000000e+00
- 2 21 149 149 0.35858951e+01 -0.40521221e+01 -0.28847144e+02 0.00000000e+00
- 2 21 149 149 0.94452795e+00 -0.33173405e+01 -0.63613301e+01 0.00000000e+00
- 2 21 149 149 -0.15459594e+01 -0.15921316e+01 -0.93937866e+01 0.00000000e+00
- 2 21 149 149 -0.42294588e+00 0.99836968e+00 -0.31006956e+01 0.00000000e+00
- 2 21 149 149 -0.50612872e+00 0.22764737e+01 -0.37856808e+01 0.00000000e+00
- 2 21 149 149 0.16813936e+01 0.35023061e+01 -0.12911403e+02 0.00000000e+00
- 2 21 149 149 0.10760330e+01 0.76124642e+00 -0.48532375e+01 0.00000000e+00
- 2 21 149 149 0.87689625e+00 0.65334432e+00 -0.16861988e+02 0.00000000e+00
- 2 21 149 149 0.50612872e+00 -0.22764737e+01 -0.46319698e+02 0.00000000e+00
- 2 21 149 149 -0.10760330e+01 -0.76124642e+00 -0.15438773e+02 0.00000000e+00
- 2 21 149 149 -0.24188720e+01 0.19375901e+01 -0.10296043e+03 0.00000000e+00
- 2 21 149 149 0.15459594e+01 0.15921316e+01 -0.13627480e+03 0.00000000e+00
- 2 2203 149 149 -0.12188576e+01 0.10627948e+01 -0.23299790e+04 0.77133000e+00
- 2 2 200 200 0.11384752e+01 0.34810982e+00 -0.17024081e+03 0.00000000e+00
- 2 21 200 200 0.72489293e+00 0.36645712e+00 -0.29221116e+03 0.00000000e+00
- 2 -2 200 200 -0.11384752e+01 -0.34810982e+00 -0.32326165e+04 0.00000000e+00
- 2 21 204 204 -0.46577123e+00 -0.49141481e+00 -0.46538335e+03 0.00000000e+00
- 2 21 204 204 0.46577123e+00 0.49141481e+00 -0.73723911e+01 0.00000000e+00
- 2 92 69 148 0.16868487e+02 0.26000806e+02 0.66194000e+04 0.74397043e+03
- 1 -211 0 0 0.61265858e+01 0.72455174e+01 0.57090364e+03 0.13957000e+00
- 2 2224 209 210 0.79758103e+01 0.98745634e+01 0.78388651e+03 0.12560486e+01
- 1 -2212 0 0 0.48381595e+01 0.46945169e+01 0.42115064e+03 0.93827000e+00
- 2 111 211 212 0.21195958e+01 0.97711113e+00 0.11692853e+03 0.13498000e+00
- 2 -213 213 214 0.15636706e+01 0.17346086e+01 0.14137665e+03 0.86986496e+00
- 2 221 215 216 0.11310901e+01 0.25478832e+00 0.74980730e+02 0.54745000e+00
- 1 211 0 0 0.73431227e-01 0.40320176e+00 0.13583610e+02 0.13957000e+00
- 1 2112 0 0 0.51235905e+00 0.54517609e+00 0.34931268e+02 0.93957000e+00
- 1 -2212 0 0 0.56512964e+00 0.89224968e+00 0.39006916e+02 0.93827000e+00
- 1 211 0 0 0.12230084e+01 0.14328322e+01 0.91216497e+01 0.13957000e+00
- 2 1114 217 218 0.28194629e+00 0.16005512e+01 0.23113190e+02 0.12297809e+01
- 2 -3114 219 220 0.94812001e+00 0.15656660e+01 0.20019698e+02 0.13901668e+01
- 2 -313 221 222 -0.36410881e+00 0.13960479e+01 0.13137410e+02 0.88273204e+00
- 2 221 223 224 0.37125075e-01 0.66545419e+00 0.54025661e+01 0.54745000e+00
- 2 223 225 227 0.93359572e-01 0.15806634e+01 0.13923137e+02 0.79874754e+00
- 2 -213 228 229 0.14773097e+01 0.34209551e+01 0.23779870e+02 0.92934693e+00
- 2 213 230 231 -0.12859932e+00 0.13252889e+01 0.92571203e+01 0.78385759e+00
- 2 113 232 233 0.59741217e+00 0.47428781e+00 0.16097949e+02 0.84747805e+00
- 2 221 234 236 0.16284865e+00 0.22813045e+00 0.22007156e+01 0.54745000e+00
- 2 313 237 238 0.60734290e+00 0.92603879e-01 0.63349241e+01 0.92722412e+00
- 2 3122 239 240 0.98181135e+00 0.38818635e-01 0.92893774e+01 0.11156800e+01
- 2 111 241 242 -0.14583965e+00 0.35189557e+00 0.14325050e+01 0.13498000e+00
- 1 -2212 0 0 0.17291786e+01 -0.38539515e+00 0.15038477e+02 0.93827000e+00
- 2 113 243 244 -0.53245353e+00 0.48360350e+00 0.25670694e+01 0.60468095e+00
- 2 221 245 246 0.50259710e+00 -0.19060035e+00 0.36240212e+01 0.54745000e+00
- 2 213 247 248 -0.60227017e-01 -0.24156070e+00 0.67103509e+01 0.79537747e+00
- 2 113 249 250 -0.15865645e+01 0.99703307e-02 0.38271397e+01 0.94590804e+00
- 1 -211 0 0 -0.43136709e+00 -0.91266744e-01 0.47823743e+00 0.13957000e+00
- 1 321 0 0 0.88803890e-01 0.74884868e+00 0.12427837e+01 0.49360000e+00
- 1 -321 0 0 -0.12194432e+01 0.61705712e+00 0.36011863e+01 0.49360000e+00
- 2 213 251 252 -0.23308125e+01 0.50666262e+00 0.55788907e+01 0.75489299e+00
- 1 -211 0 0 0.15072951e+00 -0.41983459e-01 0.63143656e-02 0.13957000e+00
- 2 2214 253 254 -0.13450533e+01 0.19944938e+01 0.19497483e+01 0.12391455e+01
- 2 213 255 256 -0.45362851e+00 0.11776067e+01 -0.14067686e+00 0.81896031e+00
- 2 -2214 257 258 -0.87589957e+00 0.24558736e+01 0.16735518e+01 0.12241669e+01
- 1 -211 0 0 -0.21504817e-01 0.46123344e+00 0.16820901e+00 0.13957000e+00
- 2 213 259 260 -0.14186505e+01 0.16297410e+01 0.52103305e+00 0.84857636e+00
- 2 -213 261 262 0.78139893e+00 0.91971519e+00 0.22832180e+00 0.79438267e+00
- 2 213 263 264 0.58739013e+00 0.47715827e+00 0.14113673e+00 0.10203269e+01
- 2 221 265 267 0.42176820e+00 0.12373676e+00 -0.17785560e+00 0.54745000e+00
- 2 111 268 269 0.90798659e+00 0.91868005e+00 -0.37853102e+00 0.13498000e+00
- 2 311 270 270 -0.89453583e+00 -0.70744137e+00 -0.88156172e+00 0.49767000e+00
- 2 -313 271 272 0.13158013e-01 -0.86153887e+00 -0.56682908e+00 0.91690312e+00
- 1 -211 0 0 -0.10636991e+01 -0.77609092e+00 -0.65675472e+00 0.13957000e+00
- 2 113 273 274 -0.12963587e+01 -0.12172895e+01 -0.60107967e+00 0.70004524e+00
- 2 323 275 276 -0.11199105e+01 -0.15634696e+01 -0.54329771e+00 0.87966104e+00
- 2 333 277 278 -0.10842759e+01 -0.18985176e+01 -0.18548434e+01 0.10169906e+01
- 2 333 279 280 -0.13345042e+01 -0.24294951e+01 -0.14081260e+00 0.10189607e+01
- 2 3322 281 282 -0.89765675e+00 -0.22763560e+01 0.26836305e+01 0.13149000e+01
- 2 -3222 283 284 -0.12786560e+00 -0.79009967e+00 0.87513050e+00 0.11893700e+01
- 2 223 285 287 -0.83814310e+00 -0.19381808e+01 0.26010756e+01 0.77895262e+00
- 2 113 288 289 -0.20543192e+01 -0.49287859e+01 0.12836955e+02 0.11227436e+01
- 2 323 290 291 -0.80855403e-01 -0.15205569e+01 0.37820222e+01 0.87084075e+00
- 2 -323 292 293 0.59828091e-01 -0.24330529e+01 0.96535891e+01 0.88017796e+00
- 2 323 294 295 -0.57063803e+00 -0.12272715e+01 0.33216512e+01 0.78988768e+00
- 2 3312 296 297 0.56400295e+00 -0.12335783e+01 0.12448875e+02 0.13213000e+01
- 2 -3112 298 299 0.98022904e+00 -0.15379546e+01 0.13237677e+02 0.11974400e+01
- 2 111 300 301 0.38822810e+00 -0.25929635e+00 0.54006250e+01 0.13498000e+00
- 2 -213 302 303 0.34296265e+00 -0.96785475e+00 0.13501313e+02 0.82131422e+00
- 1 211 0 0 -0.39370241e+00 -0.57641069e+00 0.11449465e+02 0.13957000e+00
- 1 -211 0 0 0.25115618e+00 -0.29551773e-01 0.29911390e+01 0.13957000e+00
- 2 213 304 305 0.26928456e+00 -0.42127499e+00 0.70030600e+01 0.48648897e+00
- 1 -211 0 0 0.21004470e+00 -0.12672016e+01 0.18567582e+02 0.13957000e+00
- 2 323 306 307 0.11640787e+01 -0.19787868e+01 0.73221723e+02 0.88608585e+00
- 1 -321 0 0 0.59312316e+00 -0.70237690e+00 0.92962349e+02 0.49360000e+00
- 2 223 308 310 0.22215466e+00 -0.99512052e+00 0.60563486e+02 0.78918207e+00
- 2 223 311 313 0.74131750e+00 0.16195201e+01 0.58255133e+02 0.78031459e+00
- 2 111 314 315 0.90048814e+00 0.10122861e+01 0.48671037e+02 0.13498000e+00
- 1 211 0 0 -0.19820913e+00 0.26363484e+00 0.10824389e+02 0.13957000e+00
- 2 311 316 316 -0.52381760e+00 0.97709105e+00 0.59690502e+02 0.49767000e+00
- 2 -323 317 318 0.44091122e+00 -0.10396914e+00 0.27835294e+02 0.91285862e+00
- 2 223 319 321 0.51129803e-01 0.37003011e+01 0.12821709e+03 0.78358573e+00
- 2 111 322 323 -0.11914930e+00 0.56145886e-01 0.30384127e+02 0.13498000e+00
- 1 321 0 0 -0.15822442e+01 0.16370104e+01 0.76823822e+02 0.49360000e+00
- 1 -321 0 0 -0.11339764e+00 0.17623584e+00 0.37277967e+02 0.49360000e+00
- 2 221 324 325 -0.77713724e+00 0.64356000e+00 0.53245217e+02 0.54745000e+00
- 1 321 0 0 -0.36864656e+00 -0.24861459e-01 0.16691317e+03 0.49360000e+00
- 1 -321 0 0 0.17887742e+00 -0.37050795e-01 0.17995745e+03 0.49360000e+00
- 2 2224 326 327 -0.56732811e-02 0.31333903e+00 0.41453407e+03 0.12255500e+01
- 2 -213 328 329 -0.62956469e+00 -0.20633860e+01 0.25883966e+04 0.76694188e+00
- 2 92 150 199 0.53917705e+02 -0.26334522e+02 -0.27767895e+04 0.46028498e+03
- 2 111 330 331 0.93057574e+01 -0.48197870e+01 -0.56124807e+01 0.13498000e+00
- 2 213 332 333 0.13589946e+02 -0.68397131e+01 -0.10441270e+02 0.83912850e+00
- 2 223 334 336 0.96089537e+01 -0.42595792e+01 -0.54952802e+01 0.78949490e+00
- 2 313 337 338 0.95766687e+01 -0.52914712e+01 -0.64842492e+01 0.89639384e+00
- 1 -321 0 0 0.26928915e+01 -0.11698882e+01 -0.24969928e+01 0.49360000e+00
- 2 111 339 340 0.15972409e+01 -0.14468007e+01 -0.86411569e+00 0.13498000e+00
- 1 211 0 0 0.19722176e+01 -0.32149410e+00 -0.12461691e+01 0.13957000e+00
- 2 -213 341 342 -0.60279308e+00 -0.15125425e+00 0.33812985e+00 0.80159684e+00
- 2 223 343 344 0.12696089e+01 -0.57268269e+00 0.29277969e+00 0.82966937e+00
- 2 323 345 346 -0.30614275e+00 -0.46841697e+00 -0.10201144e+01 0.84236141e+00
- 2 -313 347 348 0.71329798e+00 -0.68383828e+00 -0.58698056e+01 0.90464629e+00
- 1 -211 0 0 -0.32534559e+00 0.25185614e+00 -0.23884691e+01 0.13957000e+00
- 2 221 349 351 0.71162839e+00 -0.46132364e+00 -0.56926255e+01 0.54745000e+00
- 1 211 0 0 -0.10496223e-01 -0.24637079e+00 -0.30151829e+01 0.13957000e+00
- 2 223 352 354 0.14627619e+01 -0.20079312e+01 -0.10516016e+02 0.78920968e+00
- 2 111 355 356 0.65317832e+00 -0.17597836e+00 -0.28183459e+01 0.13498000e+00
- 2 221 357 359 0.69642806e+00 -0.11061011e+01 -0.85745109e+01 0.54745000e+00
- 2 111 360 361 -0.84470517e-02 -0.34042029e+00 -0.10035842e+01 0.13498000e+00
- 1 -211 0 0 0.13802390e+01 -0.74740170e+00 -0.84169841e+01 0.13957000e+00
- 2 111 362 363 0.82995388e+00 -0.12797348e+01 -0.71519039e+01 0.13498000e+00
- 2 323 364 365 0.31762232e+00 -0.51010826e+00 -0.43854914e+01 0.91606271e+00
- 1 -321 0 0 -0.61707156e+00 -0.20628335e+01 -0.68082913e+01 0.49360000e+00
- 1 211 0 0 0.37927860e-01 -0.35744555e+00 -0.44886390e+00 0.13957000e+00
- 2 223 366 368 -0.33129226e+00 0.34995279e+00 -0.19975136e+01 0.77860812e+00
- 2 113 369 370 -0.26871309e+00 0.35673718e+00 -0.19675665e+01 0.82156454e+00
- 2 311 371 371 -0.13340554e+00 0.51793145e+00 -0.13161194e+01 0.49767000e+00
- 2 -323 372 373 -0.38394639e+00 -0.29932070e-02 -0.33598567e+01 0.89845716e+00
- 1 211 0 0 0.51084509e-01 0.79149757e-01 -0.47572396e+00 0.13957000e+00
- 2 111 374 375 0.18823597e+00 0.14515090e+01 -0.67405320e+01 0.13498000e+00
- 1 -211 0 0 0.12184558e+01 0.11554113e+01 -0.39744424e+01 0.13957000e+00
- 2 213 376 377 -0.29662180e+00 0.48335105e+00 -0.15422327e+01 0.48714090e+00
- 2 223 378 380 0.61477281e+00 0.10979082e+01 -0.51306853e+01 0.78925454e+00
- 2 113 381 382 0.28082972e+00 0.81123888e+00 -0.10396324e+02 0.10279616e+01
- 2 113 383 384 -0.97504691e-02 0.28792849e-01 -0.18790728e+01 0.47889352e+00
- 2 -213 385 386 0.10798438e+01 -0.75316809e+00 -0.24082939e+02 0.68691420e+00
- 2 223 387 389 -0.22562859e+00 0.46118444e-01 -0.63522167e+01 0.78547440e+00
- 1 211 0 0 -0.73345657e-01 0.23987938e+00 -0.14832563e+02 0.13957000e+00
- 2 311 390 390 0.17037061e+00 -0.50240849e+00 -0.12391587e+02 0.49767000e+00
- 2 -323 391 392 -0.54152796e+00 -0.44179678e+00 -0.29219714e+02 0.87528345e+00
- 2 213 393 394 -0.51239759e+00 0.53436743e+00 -0.26024076e+02 0.74441823e+00
- 2 -213 395 396 0.91660387e-01 0.12563581e+00 -0.20867275e+02 0.74393462e+00
- 1 211 0 0 -0.34567396e+00 -0.13903522e+00 -0.56547939e+01 0.13957000e+00
- 2 111 397 398 -0.54737265e+00 0.37709762e-01 -0.22432257e+02 0.13498000e+00
- 2 311 399 399 0.23315046e+00 0.11098214e+01 -0.67851675e+02 0.49767000e+00
- 2 3122 400 401 -0.43196298e+00 0.68031049e-01 -0.85799184e+02 0.11156800e+01
- 2 -313 402 403 0.21962415e+00 0.51763105e+00 -0.11844392e+03 0.94406903e+00
- 2 -3122 404 405 0.92779880e-02 0.25053813e+00 -0.28297290e+03 0.11156800e+01
- 1 -211 0 0 0.11887266e+00 0.16362722e+00 -0.37515880e+02 0.13957000e+00
- 2 2224 406 407 0.37396907e+00 0.13031562e+01 -0.60339283e+03 0.12302992e+01
- 2 113 408 409 -0.11768295e+01 -0.15489999e+00 -0.12800557e+04 0.64166628e+00
- 2 92 201 203 0.72489293e+00 0.36645712e+00 -0.36950684e+04 0.63297162e+01
- 2 113 410 411 0.77753187e+00 0.42266665e+00 -0.31288637e+03 0.59271964e+00
- 2 213 412 413 0.76358021e+00 -0.41255190e+00 -0.20364618e+03 0.81731873e+00
- 2 -213 414 415 -0.81621914e+00 0.35634237e+00 -0.31785359e+04 0.72839085e+00
- 2 92 205 208 0.00000000e+00 0.00000000e+00 -0.47275574e+03 0.54591156e+01
- 2 -213 416 417 0.38715952e+00 0.68304007e+00 -0.47400089e+02 0.10097079e+01
- 1 2112 0 0 -0.24288939e+00 -0.10109392e+00 -0.11949078e+03 0.93957000e+00
- 2 221 418 420 -0.12981109e+00 -0.30814760e+00 -0.26635517e+02 0.54745000e+00
- 2 -1114 421 422 -0.14459040e-01 -0.27379855e+00 -0.27922936e+03 0.11632222e+01
- 1 2212 0 0 0.49843033e+01 0.59414378e+01 0.47929248e+03 0.93827000e+00
- 1 211 0 0 0.29915069e+01 0.39331256e+01 0.30459404e+03 0.13957000e+00
- 1 22 0 0 0.44078840e+00 0.19773656e+00 0.27042728e+02 0.00000000e+00
- 1 22 0 0 0.16788074e+01 0.77937457e+00 0.89885805e+02 0.00000000e+00
- 1 -211 0 0 0.16006626e+01 0.15260831e+01 0.11971738e+03 0.13957000e+00
- 2 111 423 424 -0.36991931e-01 0.20852549e+00 0.21659266e+02 0.13498000e+00
- 1 22 0 0 0.11163648e+01 0.10731983e+00 0.62277456e+02 0.00000000e+00
- 1 22 0 0 0.14725354e-01 0.14746849e+00 0.12703274e+02 0.00000000e+00
- 1 2112 0 0 0.99808677e-02 0.12766663e+01 0.18820905e+02 0.93957000e+00
- 1 -211 0 0 0.27196542e+00 0.32388495e+00 0.42922852e+01 0.13957000e+00
- 2 -3122 425 426 0.76863520e+00 0.98562425e+00 0.14561127e+02 0.11156800e+01
- 1 211 0 0 0.17948481e+00 0.58004179e+00 0.54585711e+01 0.13957000e+00
- 2 -311 427 427 -0.26505130e+00 0.44473159e+00 0.62186300e+01 0.49767000e+00
- 2 111 428 430 -0.99057510e-01 0.95131629e+00 0.69187800e+01 0.13498000e+00
- 1 22 0 0 -0.80863909e-01 -0.36647207e-01 0.15922126e+01 0.00000000e+00
- 1 22 0 0 0.11798898e+00 0.70210140e+00 0.38103535e+01 0.00000000e+00
- 1 211 0 0 -0.52311742e-01 0.32065303e+00 0.48535184e+01 0.13957000e+00
- 1 -211 0 0 0.24050615e+00 0.75657627e+00 0.60578727e+01 0.13957000e+00
- 2 111 431 432 -0.94834837e-01 0.50343406e+00 0.30117457e+01 0.13498000e+00
- 1 -211 0 0 0.72134980e+00 0.18429877e+01 0.98347433e+01 0.13957000e+00
- 2 111 433 434 0.75595989e+00 0.15779674e+01 0.13945127e+02 0.13498000e+00
- 1 211 0 0 0.29140149e+00 0.74056393e+00 0.52174985e+01 0.13957000e+00
- 2 111 435 436 -0.42000081e+00 0.58472496e+00 0.40396218e+01 0.13498000e+00
- 1 211 0 0 0.76187021e+00 0.26881181e+00 0.10245108e+02 0.13957000e+00
- 1 -211 0 0 -0.16445804e+00 0.20547600e+00 0.58528411e+01 0.13957000e+00
- 2 111 437 438 0.16305477e+00 0.51411492e-01 0.89025863e+00 0.13498000e+00
- 2 111 439 440 0.10033371e+00 0.14714406e+00 0.75280715e+00 0.13498000e+00
- 2 111 441 442 -0.10053982e+00 0.29574906e-01 0.55764982e+00 0.13498000e+00
- 2 311 443 443 0.62920977e-01 -0.51141521e-01 0.36882283e+01 0.49767000e+00
- 2 111 444 445 0.54442192e+00 0.14374540e+00 0.26466958e+01 0.13498000e+00
- 1 2212 0 0 0.94904817e+00 0.50900948e-01 0.86273538e+01 0.93827000e+00
- 1 -211 0 0 0.32763179e-01 -0.12082313e-01 0.66202356e+00 0.13957000e+00
- 1 22 0 0 0.13429339e-01 0.85126869e-01 0.20877286e+00 0.00000000e+00
- 1 22 0 0 -0.15926899e+00 0.26676871e+00 0.12237321e+01 0.00000000e+00
- 1 211 0 0 -0.43593699e+00 0.58154896e+00 0.19253718e+01 0.13957000e+00
- 1 -211 0 0 -0.96516541e-01 -0.97945462e-01 0.64169760e+00 0.13957000e+00
- 1 22 0 0 0.13890558e+00 -0.34469776e+00 0.18301478e+01 0.00000000e+00
- 1 22 0 0 0.36369152e+00 0.15409741e+00 0.17938735e+01 0.00000000e+00
- 1 211 0 0 -0.32832742e+00 0.24281758e-01 0.45949920e+01 0.13957000e+00
- 2 111 446 447 0.26810040e+00 -0.26584246e+00 0.21153589e+01 0.13498000e+00
- 1 211 0 0 -0.73921444e+00 -0.44444425e+00 0.19067185e+01 0.13957000e+00
- 1 -211 0 0 -0.84735009e+00 0.45441458e+00 0.19204212e+01 0.13957000e+00
- 1 211 0 0 -0.73347954e+00 0.50037030e+00 0.20133140e+01 0.13957000e+00
- 2 111 448 449 -0.15973330e+01 0.62923231e-02 0.35655767e+01 0.13498000e+00
- 1 2212 0 0 -0.11015012e+01 0.18060809e+01 0.14432754e+01 0.93827000e+00
- 2 111 450 451 -0.24355219e+00 0.18841291e+00 0.50647292e+00 0.13498000e+00
- 1 211 0 0 0.14188218e+00 0.16514679e+00 0.14237343e+00 0.13957000e+00
- 2 111 452 453 -0.59551070e+00 0.10124599e+01 -0.28305029e+00 0.13498000e+00
- 1 -2112 0 0 -0.74773454e+00 0.23674811e+01 0.14481800e+01 0.93957000e+00
- 1 -211 0 0 -0.12816502e+00 0.88392567e-01 0.22537185e+00 0.13957000e+00
- 1 211 0 0 -0.13328075e+01 0.10917912e+01 0.55877706e+00 0.13957000e+00
- 2 111 454 455 -0.85843068e-01 0.53794980e+00 -0.37744012e-01 0.13498000e+00
- 1 -211 0 0 0.10691014e+00 0.63851616e+00 -0.61466745e-01 0.13957000e+00
- 2 111 456 457 0.67448879e+00 0.28119902e+00 0.28978854e+00 0.13498000e+00
- 1 211 0 0 0.65890087e-01 0.66073183e+00 0.19641663e+00 0.13957000e+00
- 2 111 458 459 0.52150004e+00 -0.18357357e+00 -0.55279893e-01 0.13498000e+00
- 1 -211 0 0 0.39881731e-01 0.16645540e-01 -0.72413320e-01 0.13957000e+00
- 1 211 0 0 0.27841789e+00 0.88399301e-01 -0.18457806e+00 0.13957000e+00
- 2 111 460 461 0.10346858e+00 0.18691924e-01 0.79135771e-01 0.13498000e+00
- 1 22 0 0 0.18872816e+00 0.26859475e+00 -0.11809897e+00 0.00000000e+00
- 1 22 0 0 0.71925842e+00 0.65008531e+00 -0.26043204e+00 0.00000000e+00
- 1 130 0 0 -0.89453583e+00 -0.70744137e+00 -0.88156172e+00 0.49767000e+00
- 1 -321 0 0 0.96699798e-01 -0.80239049e+00 -0.68643550e+00 0.49360000e+00
- 1 211 0 0 -0.83541784e-01 -0.59148386e-01 0.11960642e+00 0.13957000e+00
- 1 211 0 0 -0.24515548e-01 -0.38388903e-01 -0.14161459e+00 0.13957000e+00
- 1 -211 0 0 -0.12718431e+01 -0.11789006e+01 -0.45946508e+00 0.13957000e+00
- 2 311 462 462 -0.36165089e+00 -0.68277128e+00 -0.40681291e+00 0.49767000e+00
- 1 211 0 0 -0.75825962e+00 -0.88069832e+00 -0.13648480e+00 0.13957000e+00
- 1 321 0 0 -0.68198112e+00 -0.10874855e+01 -0.96384368e+00 0.49360000e+00
- 1 -321 0 0 -0.40229474e+00 -0.81103219e+00 -0.89099974e+00 0.49360000e+00
- 1 130 0 0 -0.57056416e+00 -0.12237111e+01 -0.70839093e-02 0.49767000e+00
- 2 310 463 464 -0.76394008e+00 -0.12057840e+01 -0.13372869e+00 0.49767000e+00
- 2 3122 465 466 -0.89950272e+00 -0.20318790e+01 0.22937066e+01 0.11156800e+01
- 2 111 467 468 0.18459683e-02 -0.24447696e+00 0.38992388e+00 0.13498000e+00
- 1 -2212 0 0 -0.19727991e+00 -0.45109059e+00 0.60319920e+00 0.93827000e+00
- 2 111 469 470 0.69414306e-01 -0.33900907e+00 0.27193130e+00 0.13498000e+00
- 1 -211 0 0 -0.42151328e+00 -0.47090343e+00 0.75118161e+00 0.13957000e+00
- 1 211 0 0 -0.19334557e+00 -0.45704672e+00 0.35819813e+00 0.13957000e+00
- 2 111 471 472 -0.22328424e+00 -0.10102307e+01 0.14916958e+01 0.13498000e+00
- 1 -211 0 0 -0.17319256e+01 -0.44395055e+01 0.10439598e+02 0.13957000e+00
- 1 211 0 0 -0.32239365e+00 -0.48928036e+00 0.23973572e+01 0.13957000e+00
- 2 311 473 473 -0.21910747e+00 -0.10001422e+01 0.19896283e+01 0.49767000e+00
- 1 211 0 0 0.13825206e+00 -0.52041471e+00 0.17923939e+01 0.13957000e+00
- 2 -311 474 474 0.31950709e-01 -0.78158248e+00 0.37095645e+01 0.49767000e+00
- 1 -211 0 0 0.27877383e-01 -0.16514704e+01 0.59440246e+01 0.13957000e+00
- 2 311 475 475 -0.29974452e+00 -0.93862435e+00 0.27522075e+01 0.49767000e+00
- 1 211 0 0 -0.27089351e+00 -0.28864718e+00 0.56944368e+00 0.13957000e+00
- 2 3122 476 477 0.57855256e+00 -0.11932444e+01 0.10975680e+02 0.11156800e+01
- 1 -211 0 0 -0.14549607e-01 -0.40333929e-01 0.14731946e+01 0.13957000e+00
- 1 -2112 0 0 0.90423255e+00 -0.12412629e+01 0.11971617e+02 0.93957000e+00
- 1 211 0 0 0.75996485e-01 -0.29669170e+00 0.12660593e+01 0.13957000e+00
- 1 22 0 0 -0.54383781e-02 -0.29378792e-01 0.37268069e+00 0.00000000e+00
- 1 22 0 0 0.39366648e+00 -0.22991756e+00 0.50279443e+01 0.00000000e+00
- 1 -211 0 0 0.89905286e-01 -0.77826210e+00 0.55842276e+01 0.13957000e+00
- 2 111 478 479 0.25305736e+00 -0.18959265e+00 0.79170857e+01 0.13498000e+00
- 1 211 0 0 0.55816547e-01 -0.41731827e+00 0.46761726e+01 0.13957000e+00
- 2 111 480 481 0.21346801e+00 -0.39567216e-02 0.23268874e+01 0.13498000e+00
- 1 321 0 0 0.51959843e+00 -0.14432049e+01 0.48799024e+02 0.49360000e+00
- 2 111 482 483 0.64448025e+00 -0.53558197e+00 0.24422699e+02 0.13498000e+00
- 1 -211 0 0 0.33156913e-01 -0.15710126e+00 0.26654190e+02 0.13957000e+00
- 1 211 0 0 0.91455899e-02 -0.54509937e+00 0.19255155e+02 0.13957000e+00
- 2 111 484 485 0.17985215e+00 -0.29291988e+00 0.14654142e+02 0.13498000e+00
- 1 -211 0 0 0.23017252e+00 0.25363985e+00 0.15220807e+02 0.13957000e+00
- 1 211 0 0 0.30999911e+00 0.64212119e+00 0.15026284e+02 0.13957000e+00
- 2 111 486 487 0.20114587e+00 0.72375909e+00 0.28008042e+02 0.13498000e+00
- 1 22 0 0 0.48394401e-01 0.11176001e+00 0.43677852e+01 0.00000000e+00
- 1 22 0 0 0.85209374e+00 0.90052606e+00 0.44303252e+02 0.00000000e+00
- 2 310 488 489 -0.52381760e+00 0.97709105e+00 0.59690502e+02 0.49767000e+00
- 2 -311 490 490 0.15888566e+00 -0.34117039e+00 0.16433198e+02 0.49767000e+00
- 1 -211 0 0 0.28202556e+00 0.23720125e+00 0.11402096e+02 0.13957000e+00
- 1 211 0 0 -0.98344997e-01 0.13884236e+01 0.51352191e+02 0.13957000e+00
- 1 -211 0 0 0.26842023e+00 0.83229126e+00 0.29555044e+02 0.13957000e+00
- 2 111 491 492 -0.11894543e+00 0.14795863e+01 0.47309851e+02 0.13498000e+00
- 1 22 0 0 -0.13606245e+00 0.48833106e-01 0.29655544e+02 0.00000000e+00
- 1 22 0 0 0.16913148e-01 0.73127798e-02 0.72858320e+00 0.00000000e+00
- 1 22 0 0 -0.78640742e-01 0.38647791e+00 0.15358701e+02 0.00000000e+00
- 1 22 0 0 -0.69849650e+00 0.25708210e+00 0.37886516e+02 0.00000000e+00
- 1 2212 0 0 0.19205592e+00 0.24091788e+00 0.29208804e+03 0.93827000e+00
- 1 211 0 0 -0.19772920e+00 0.72421148e-01 0.12244602e+03 0.13957000e+00
- 1 -211 0 0 -0.60882348e+00 -0.11613885e+01 0.12317675e+04 0.13957000e+00
- 2 111 493 494 -0.20741214e-01 -0.90199752e+00 0.13566291e+04 0.13498000e+00
- 1 22 0 0 0.24962581e+01 -0.12267758e+01 -0.14778998e+01 0.00000000e+00
- 1 22 0 0 0.68094993e+01 -0.35930112e+01 -0.41345809e+01 0.00000000e+00
- 1 211 0 0 0.39754463e+01 -0.23070665e+01 -0.34380712e+01 0.13957000e+00
- 2 111 495 496 0.96144994e+01 -0.45326465e+01 -0.70031992e+01 0.13498000e+00
- 1 -211 0 0 0.25476895e+01 -0.13561931e+01 -0.14057663e+01 0.13957000e+00
- 1 211 0 0 0.58584548e+01 -0.24545511e+01 -0.32847399e+01 0.13957000e+00
- 2 111 497 498 0.12028094e+01 -0.44883497e+00 -0.80477397e+00 0.13498000e+00
- 1 321 0 0 0.86769995e+01 -0.48102154e+01 -0.56746222e+01 0.49360000e+00
- 1 -211 0 0 0.89966920e+00 -0.48125584e+00 -0.80962697e+00 0.13957000e+00
- 1 22 0 0 0.34752519e+00 -0.24285762e+00 -0.17517943e+00 0.00000000e+00
- 1 22 0 0 0.12497157e+01 -0.12039431e+01 -0.68893626e+00 0.00000000e+00
- 1 -211 0 0 -0.33825096e-01 0.26163232e+00 0.97903779e-01 0.13957000e+00
- 2 111 499 500 -0.56896799e+00 -0.41288657e+00 0.24022607e+00 0.13498000e+00
- 1 -211 0 0 0.11981338e+01 -0.22731144e+00 0.12890611e+00 0.13957000e+00
- 1 211 0 0 0.71475057e-01 -0.34537125e+00 0.16387358e+00 0.13957000e+00
- 2 311 501 501 -0.86665557e-02 -0.93019405e-01 -0.43545742e+00 0.49767000e+00
- 1 211 0 0 -0.29747619e+00 -0.37539757e+00 -0.58465699e+00 0.13957000e+00
- 1 -321 0 0 0.53435872e+00 -0.31851037e+00 -0.48404981e+01 0.49360000e+00
- 1 211 0 0 0.17893926e+00 -0.36532791e+00 -0.10293076e+01 0.13957000e+00
- 2 111 502 503 0.22876834e+00 -0.30142752e+00 -0.26261692e+01 0.13498000e+00
- 2 111 504 505 0.34000615e+00 -0.91433960e-01 -0.22902089e+01 0.13498000e+00
- 2 111 506 507 0.14285390e+00 -0.68462164e-01 -0.77624739e+00 0.13498000e+00
- 1 211 0 0 0.53017948e+00 -0.40580551e+00 -0.32525136e+01 0.13957000e+00
- 1 -211 0 0 0.22320820e+00 -0.63326751e+00 -0.31432246e+01 0.13957000e+00
- 2 111 508 509 0.70937422e+00 -0.96885818e+00 -0.41202782e+01 0.13498000e+00
- 1 22 0 0 0.14206741e+00 0.11435821e-01 -0.69947439e+00 0.00000000e+00
- 1 22 0 0 0.51111091e+00 -0.18741418e+00 -0.21188715e+01 0.00000000e+00
- 1 -211 0 0 0.16909352e+00 -0.16278735e+00 -0.16959684e+01 0.13957000e+00
- 1 211 0 0 0.60805221e-01 -0.19785259e+00 -0.12648940e+01 0.13957000e+00
- 2 111 510 511 0.46652931e+00 -0.74546121e+00 -0.56136486e+01 0.13498000e+00
- 1 22 0 0 0.61538446e-01 -0.17385792e+00 -0.55023078e+00 0.00000000e+00
- 1 22 0 0 -0.69985498e-01 -0.16656237e+00 -0.45335344e+00 0.00000000e+00
- 1 22 0 0 0.29290566e+00 -0.35692431e+00 -0.19983085e+01 0.00000000e+00
- 1 22 0 0 0.53704822e+00 -0.92281047e+00 -0.51535954e+01 0.00000000e+00
- 1 321 0 0 -0.19221893e-01 -0.21661974e+00 -0.32189295e+01 0.49360000e+00
- 2 111 512 513 0.33684421e+00 -0.29348852e+00 -0.11665620e+01 0.13498000e+00
- 1 211 0 0 -0.33861110e+00 0.89078724e-01 -0.15266362e+01 0.13957000e+00
- 1 -211 0 0 -0.63401403e-01 0.78310289e-01 -0.17757758e+00 0.13957000e+00
- 2 111 514 515 0.70720239e-01 0.18256378e+00 -0.29329986e+00 0.13498000e+00
- 1 -211 0 0 0.24697536e+00 0.96592570e-01 -0.38401893e+00 0.13957000e+00
- 1 211 0 0 -0.51568844e+00 0.26014461e+00 -0.15835475e+01 0.13957000e+00
- 1 130 0 0 -0.13340554e+00 0.51793145e+00 -0.13161194e+01 0.49767000e+00
- 1 -321 0 0 -0.28246234e+00 0.28563797e+00 -0.23837372e+01 0.49360000e+00
- 2 111 516 517 -0.10148405e+00 -0.28863118e+00 -0.97611954e+00 0.13498000e+00
- 1 22 0 0 0.32581482e-01 0.20347485e+00 -0.11883971e+01 0.00000000e+00
- 1 22 0 0 0.15565449e+00 0.12480342e+01 -0.55521349e+01 0.00000000e+00
- 1 211 0 0 -0.74999179e-01 0.26419185e+00 -0.31533043e+00 0.13957000e+00
- 2 111 518 519 -0.22162262e+00 0.21915920e+00 -0.12269023e+01 0.13498000e+00
- 1 211 0 0 -0.20273555e-01 0.19884103e+00 -0.13947512e+01 0.13957000e+00
- 1 -211 0 0 0.33475828e+00 0.37471794e+00 -0.23556942e+01 0.13957000e+00
- 2 111 520 521 0.30028809e+00 0.52434920e+00 -0.13802398e+01 0.13498000e+00
- 1 211 0 0 -0.23084415e+00 -0.61334048e-01 -0.13217286e+01 0.13957000e+00
- 1 -211 0 0 0.51167387e+00 0.87257293e+00 -0.90745951e+01 0.13957000e+00
- 1 -211 0 0 -0.50404356e-01 0.19457772e+00 -0.74795202e+00 0.13957000e+00
- 1 211 0 0 0.40653886e-01 -0.16578488e+00 -0.11311208e+01 0.13957000e+00
- 1 -211 0 0 0.71855022e+00 -0.76397519e+00 -0.14827814e+02 0.13957000e+00
- 2 111 522 523 0.36129362e+00 0.10807097e-01 -0.92551242e+01 0.13498000e+00
- 1 -211 0 0 -0.10676415e+00 0.70561125e-01 -0.50789250e+00 0.13957000e+00
- 1 211 0 0 0.25545341e-01 0.41809181e-01 -0.44882833e+01 0.13957000e+00
- 2 111 524 525 -0.14440978e+00 -0.66251861e-01 -0.13560409e+01 0.13498000e+00
- 1 130 0 0 0.17037061e+00 -0.50240849e+00 -0.12391587e+02 0.49767000e+00
- 2 -311 526 526 -0.41366610e+00 -0.10000406e-01 -0.16181097e+02 0.49767000e+00
- 1 -211 0 0 -0.12786186e+00 -0.43179637e+00 -0.13038617e+02 0.13957000e+00
- 1 211 0 0 -0.28931016e+00 0.50571637e+00 -0.93858102e+01 0.13957000e+00
- 2 111 527 528 -0.22308743e+00 0.28651065e-01 -0.16638266e+02 0.13498000e+00
- 1 -211 0 0 0.13668744e+00 -0.19909995e+00 -0.15308425e+02 0.13957000e+00
- 2 111 529 530 -0.45027049e-01 0.32473576e+00 -0.55588500e+01 0.13498000e+00
- 1 22 0 0 -0.45087239e+00 -0.22236562e-01 -0.17883211e+02 0.00000000e+00
- 1 22 0 0 -0.96500260e-01 0.59946324e-01 -0.45490463e+01 0.00000000e+00
- 1 130 0 0 0.23315046e+00 0.11098214e+01 -0.67851675e+02 0.49767000e+00
- 1 2112 0 0 -0.32619464e+00 0.36062443e-01 -0.78375270e+02 0.93957000e+00
- 2 111 531 532 -0.10576835e+00 0.31968606e-01 -0.74239131e+01 0.13498000e+00
- 1 -321 0 0 0.32993279e+00 0.19901802e+00 -0.96764475e+02 0.49360000e+00
- 1 211 0 0 -0.11030864e+00 0.31861302e+00 -0.21679441e+02 0.13957000e+00
- 1 -2212 0 0 -0.71994239e-01 0.27416822e+00 -0.24111889e+03 0.93827000e+00
- 1 211 0 0 0.81272227e-01 -0.23630086e-01 -0.41854013e+02 0.13957000e+00
- 1 2212 0 0 0.60291168e-01 0.92238678e+00 -0.42542711e+03 0.93827000e+00
- 1 211 0 0 0.31367790e+00 0.38076944e+00 -0.17796572e+03 0.13957000e+00
- 1 -211 0 0 -0.75172365e+00 0.60479118e-02 -0.51965583e+03 0.13957000e+00
- 1 211 0 0 -0.42510587e+00 -0.16094790e+00 -0.76039992e+03 0.13957000e+00
- 1 -211 0 0 0.70892951e+00 0.15578072e+00 -0.19307592e+03 0.13957000e+00
- 1 211 0 0 0.68602362e-01 0.26688593e+00 -0.11981045e+03 0.13957000e+00
- 1 211 0 0 0.21650130e+00 0.16091951e+00 -0.96293423e+02 0.13957000e+00
- 2 111 533 534 0.54707890e+00 -0.57347141e+00 -0.10735275e+03 0.13498000e+00
- 1 -211 0 0 -0.68291226e+00 0.48712532e+00 -0.28527548e+04 0.13957000e+00
- 2 111 535 536 -0.13330688e+00 -0.13078295e+00 -0.32578109e+03 0.13498000e+00
- 1 -211 0 0 0.18380747e+00 0.88846912e+00 -0.39761496e+02 0.13957000e+00
- 2 111 537 538 0.20335205e+00 -0.20542905e+00 -0.76385930e+01 0.13498000e+00
- 1 -211 0 0 0.31791171e-01 -0.63048942e-01 -0.88699426e+01 0.13957000e+00
- 1 211 0 0 -0.57136579e-01 -0.10355492e+00 -0.36312040e+01 0.13957000e+00
- 2 111 539 540 -0.10446568e+00 -0.14154374e+00 -0.14134371e+02 0.13498000e+00
- 1 -2112 0 0 0.10656444e+00 -0.31378169e+00 -0.24630223e+03 0.93957000e+00
- 1 211 0 0 -0.12102348e+00 0.39983143e-01 -0.32927123e+02 0.13957000e+00
- 1 22 0 0 -0.24673612e-01 0.18075763e-01 0.80233129e+00 0.00000000e+00
- 1 22 0 0 -0.12318319e-01 0.19044973e+00 0.20856934e+02 0.00000000e+00
- 1 -2212 0 0 0.59183100e+00 0.75956198e+00 0.11017166e+02 0.93827000e+00
- 1 211 0 0 0.17680420e+00 0.22606227e+00 0.35439605e+01 0.13957000e+00
- 2 310 541 542 -0.26505130e+00 0.44473159e+00 0.62186300e+01 0.49767000e+00
- 1 22 0 0 -0.37954332e-01 0.81927816e+00 0.59091412e+01 0.00000000e+00
- 1 -11 0 0 -0.58278824e-01 0.12856992e+00 0.98150325e+00 0.51000000e-03
- 1 11 0 0 -0.28243529e-02 0.34682124e-02 0.28135574e-01 0.51000000e-03
- 1 22 0 0 -0.27022873e-01 0.41788247e+00 0.24863978e+01 0.00000000e+00
- 1 22 0 0 -0.67811963e-01 0.85551584e-01 0.52534789e+00 0.00000000e+00
- 1 22 0 0 0.14609739e+00 0.43206547e+00 0.38049680e+01 0.00000000e+00
- 1 22 0 0 0.60986250e+00 0.11459019e+01 0.10140159e+02 0.00000000e+00
- 1 22 0 0 -0.36801830e+00 0.50363801e+00 0.37105243e+01 0.00000000e+00
- 1 22 0 0 -0.51982512e-01 0.81086958e-01 0.32909750e+00 0.00000000e+00
- 1 22 0 0 0.25986746e-01 0.81719375e-02 0.18349889e-01 0.00000000e+00
- 1 22 0 0 0.13706802e+00 0.43239555e-01 0.87190874e+00 0.00000000e+00
- 1 22 0 0 0.74418106e-01 0.15910946e+00 0.48275256e+00 0.00000000e+00
- 1 22 0 0 0.25915605e-01 -0.11965402e-01 0.27005459e+00 0.00000000e+00
- 1 22 0 0 -0.11158744e+00 0.66069390e-01 0.37898928e+00 0.00000000e+00
- 1 22 0 0 0.11047612e-01 -0.36494484e-01 0.17866054e+00 0.00000000e+00
- 1 130 0 0 0.62920977e-01 -0.51141521e-01 0.36882283e+01 0.49767000e+00
- 1 22 0 0 0.52856059e+00 0.11340033e+00 0.23931560e+01 0.00000000e+00
- 1 22 0 0 0.15861332e-01 0.30345067e-01 0.25353976e+00 0.00000000e+00
- 1 22 0 0 0.10000749e+00 -0.21215748e-01 0.45496019e+00 0.00000000e+00
- 1 22 0 0 0.16809291e+00 -0.24462671e+00 0.16603987e+01 0.00000000e+00
- 1 22 0 0 -0.14747577e+01 0.30326183e-01 0.32164044e+01 0.00000000e+00
- 1 22 0 0 -0.12257529e+00 -0.24033860e-01 0.34917225e+00 0.00000000e+00
- 1 22 0 0 -0.17777030e+00 0.13221927e+00 0.45791881e+00 0.00000000e+00
- 1 22 0 0 -0.65781895e-01 0.56193642e-01 0.48554112e-01 0.00000000e+00
- 1 22 0 0 -0.93589782e-01 0.22355446e+00 -0.10397735e+00 0.00000000e+00
- 1 22 0 0 -0.50192092e+00 0.78890546e+00 -0.17907294e+00 0.00000000e+00
- 1 22 0 0 -0.34456436e-01 0.38416976e+00 0.29780992e-01 0.00000000e+00
- 1 22 0 0 -0.51386631e-01 0.15378004e+00 -0.67525005e-01 0.00000000e+00
- 1 22 0 0 0.64844777e+00 0.29552023e+00 0.27066147e+00 0.00000000e+00
- 1 22 0 0 0.26041019e-01 -0.14321211e-01 0.19127077e-01 0.00000000e+00
- 1 22 0 0 0.45522632e+00 -0.13707107e+00 -0.89711762e-01 0.00000000e+00
- 1 22 0 0 0.66273719e-01 -0.46502502e-01 0.34431869e-01 0.00000000e+00
- 1 22 0 0 0.10091104e+00 -0.38621746e-01 0.27897727e-01 0.00000000e+00
- 1 22 0 0 0.25575450e-02 0.57313670e-01 0.51238044e-01 0.00000000e+00
- 2 310 543 544 -0.36165089e+00 -0.68277128e+00 -0.40681291e+00 0.49767000e+00
- 1 211 0 0 -0.15629198e-01 -0.12790967e+00 0.99558315e-02 0.13957000e+00
- 1 -211 0 0 -0.74831089e+00 -0.10778743e+01 -0.14368453e+00 0.13957000e+00
- 1 2112 0 0 -0.79683892e+00 -0.17875594e+01 0.18709606e+01 0.93957000e+00
- 2 111 545 546 -0.10266379e+00 -0.24431965e+00 0.42274602e+00 0.13498000e+00
- 1 22 0 0 -0.30455718e-01 -0.45083269e-01 0.18105638e+00 0.00000000e+00
- 1 22 0 0 0.32301686e-01 -0.19939369e+00 0.20886750e+00 0.00000000e+00
- 1 22 0 0 -0.32485225e-01 -0.24097518e-01 0.30042114e-01 0.00000000e+00
- 1 22 0 0 0.10189953e+00 -0.31491155e+00 0.24188919e+00 0.00000000e+00
- 1 22 0 0 -0.72766708e-01 -0.35593465e+00 0.63949815e+00 0.00000000e+00
- 1 22 0 0 -0.15051753e+00 -0.65429601e+00 0.85219770e+00 0.00000000e+00
- 2 310 547 548 -0.21910747e+00 -0.10001422e+01 0.19896283e+01 0.49767000e+00
- 2 310 549 550 0.31950709e-01 -0.78158248e+00 0.37095645e+01 0.49767000e+00
- 1 130 0 0 -0.29974452e+00 -0.93862435e+00 0.27522075e+01 0.49767000e+00
- 1 2112 0 0 0.43571594e+00 -0.92774253e+00 0.82999590e+01 0.93957000e+00
- 2 111 551 552 0.14283662e+00 -0.26550185e+00 0.26757210e+01 0.13498000e+00
- 1 22 0 0 -0.15398031e-01 -0.48010143e-03 0.33609115e+00 0.00000000e+00
- 1 22 0 0 0.26845539e+00 -0.18911255e+00 0.75809946e+01 0.00000000e+00
- 1 22 0 0 0.47146346e-01 0.53679011e-01 0.47801123e+00 0.00000000e+00
- 1 22 0 0 0.16632166e+00 -0.57635733e-01 0.18488762e+01 0.00000000e+00
- 1 22 0 0 0.18504106e+00 -0.88962050e-01 0.68054070e+01 0.00000000e+00
- 1 22 0 0 0.45943919e+00 -0.44661992e+00 0.17617292e+02 0.00000000e+00
- 1 22 0 0 0.19677814e+00 -0.26204465e+00 0.12203150e+02 0.00000000e+00
- 1 22 0 0 -0.16925987e-01 -0.30875230e-01 0.24509917e+01 0.00000000e+00
- 1 22 0 0 0.14584456e+00 0.56269919e+00 0.19376663e+02 0.00000000e+00
- 1 22 0 0 0.55301309e-01 0.16105989e+00 0.86313784e+01 0.00000000e+00
- 1 211 0 0 -0.28870619e+00 0.19628304e+00 0.22747642e+02 0.13957000e+00
- 1 -211 0 0 -0.23511141e+00 0.78080801e+00 0.36942860e+02 0.13957000e+00
- 2 310 553 554 0.15888566e+00 -0.34117039e+00 0.16433198e+02 0.49767000e+00
- 1 22 0 0 -0.48986655e-01 0.65176574e+00 0.22980039e+02 0.00000000e+00
- 1 22 0 0 -0.69958777e-01 0.82782054e+00 0.24329812e+02 0.00000000e+00
- 1 22 0 0 0.35742750e-01 -0.11068089e+00 0.14182801e+03 0.00000000e+00
- 1 22 0 0 -0.56483964e-01 -0.79131663e+00 0.12148011e+04 0.00000000e+00
- 1 22 0 0 0.67245050e+00 -0.33262675e+00 -0.45688586e+00 0.00000000e+00
- 1 22 0 0 0.89420489e+01 -0.42000198e+01 -0.65463133e+01 0.00000000e+00
- 1 22 0 0 0.11376282e+00 -0.46078404e-01 -0.12754501e+00 0.00000000e+00
- 1 22 0 0 0.10890466e+01 -0.40275657e+00 -0.67722896e+00 0.00000000e+00
- 1 22 0 0 -0.10527129e+00 -0.88001378e-01 -0.67192262e-02 0.00000000e+00
- 1 22 0 0 -0.46369669e+00 -0.32488520e+00 0.24694529e+00 0.00000000e+00
- 2 310 555 556 -0.86665557e-02 -0.93019405e-01 -0.43545742e+00 0.49767000e+00
- 1 22 0 0 0.22903683e+00 -0.28017575e+00 -0.25867421e+01 0.00000000e+00
- 1 22 0 0 -0.26848464e-03 -0.21251769e-01 -0.39427033e-01 0.00000000e+00
- 1 22 0 0 0.21955746e+00 -0.12407208e+00 -0.15078477e+01 0.00000000e+00
- 1 22 0 0 0.12044869e+00 0.32638124e-01 -0.78236118e+00 0.00000000e+00
- 1 22 0 0 0.13415630e+00 -0.60358369e-01 -0.38367750e+00 0.00000000e+00
- 1 22 0 0 0.86976008e-02 -0.81037944e-02 -0.39256989e+00 0.00000000e+00
- 1 22 0 0 0.27911822e+00 -0.45662224e+00 -0.16546594e+01 0.00000000e+00
- 1 22 0 0 0.43025600e+00 -0.51223594e+00 -0.24656188e+01 0.00000000e+00
- 1 22 0 0 0.64733210e-01 -0.20570341e+00 -0.14913265e+01 0.00000000e+00
- 1 22 0 0 0.40179610e+00 -0.53975780e+00 -0.41223220e+01 0.00000000e+00
- 1 22 0 0 0.11843109e+00 -0.17290434e+00 -0.64705415e+00 0.00000000e+00
- 1 22 0 0 0.21841312e+00 -0.12058418e+00 -0.51950782e+00 0.00000000e+00
- 1 22 0 0 0.45505803e-01 0.17412423e-01 -0.11612719e-01 0.00000000e+00
- 1 22 0 0 0.25214435e-01 0.16515136e+00 -0.28168714e+00 0.00000000e+00
- 1 22 0 0 -0.60631679e-02 0.13973287e-01 -0.26245187e-01 0.00000000e+00
- 1 22 0 0 -0.95420878e-01 -0.30260447e+00 -0.94987435e+00 0.00000000e+00
- 1 22 0 0 -0.11461037e+00 0.16613665e+00 -0.55376256e+00 0.00000000e+00
- 1 22 0 0 -0.10701225e+00 0.53022544e-01 -0.67313970e+00 0.00000000e+00
- 1 22 0 0 0.73646318e-01 0.23610994e+00 -0.65362734e+00 0.00000000e+00
- 1 22 0 0 0.22664177e+00 0.28823926e+00 -0.72661250e+00 0.00000000e+00
- 1 22 0 0 0.26828984e+00 0.14525957e-01 -0.80362563e+01 0.00000000e+00
- 1 22 0 0 0.93003773e-01 -0.37188602e-02 -0.12188679e+01 0.00000000e+00
- 1 22 0 0 -0.13699037e+00 -0.49599837e-01 -0.66856866e+00 0.00000000e+00
- 1 22 0 0 -0.74194127e-02 -0.16652024e-01 -0.68747225e+00 0.00000000e+00
- 2 310 557 558 -0.41366610e+00 -0.10000406e-01 -0.16181097e+02 0.49767000e+00
- 1 22 0 0 -0.16958121e+00 0.76524924e-01 -0.13257350e+02 0.00000000e+00
- 1 22 0 0 -0.53506219e-01 -0.47873859e-01 -0.33809164e+01 0.00000000e+00
- 1 22 0 0 0.16852584e-01 0.75360805e-01 -0.64926726e+00 0.00000000e+00
- 1 22 0 0 -0.61879633e-01 0.24937496e+00 -0.49095827e+01 0.00000000e+00
- 1 22 0 0 -0.21418177e-01 0.67003089e-01 -0.46816332e+01 0.00000000e+00
- 1 22 0 0 -0.84350169e-01 -0.35034484e-01 -0.27422799e+01 0.00000000e+00
- 1 22 0 0 0.49017847e+00 -0.56203430e+00 -0.10017236e+03 0.00000000e+00
- 1 22 0 0 0.56900427e-01 -0.11437109e-01 -0.71803914e+01 0.00000000e+00
- 1 22 0 0 -0.14629989e+00 -0.83563169e-01 -0.19656280e+03 0.00000000e+00
- 1 22 0 0 0.12993011e-01 -0.47219779e-01 -0.12921829e+03 0.00000000e+00
- 1 22 0 0 0.91986911e-01 -0.92829653e-01 -0.19077134e+01 0.00000000e+00
- 1 22 0 0 0.11136514e+00 -0.11259940e+00 -0.57308796e+01 0.00000000e+00
- 1 22 0 0 -0.45476361e-01 -0.14710869e+00 -0.11723740e+02 0.00000000e+00
- 1 22 0 0 -0.58989319e-01 0.55649504e-02 -0.24106309e+01 0.00000000e+00
- 1 -211 0 0 -0.27202705e+00 0.20191406e+00 0.20931697e+01 0.13957000e+00
- 1 211 0 0 0.69757490e-02 0.24281752e+00 0.41254603e+01 0.13957000e+00
- 1 211 0 0 -0.95945525e-01 -0.56549972e+00 -0.20526512e+00 0.13957000e+00
- 1 -211 0 0 -0.26570537e+00 -0.11727156e+00 -0.20154779e+00 0.13957000e+00
- 1 22 0 0 -0.12845154e+00 -0.15530530e+00 0.25278326e+00 0.00000000e+00
- 1 22 0 0 0.25787747e-01 -0.89014353e-01 0.16996276e+00 0.00000000e+00
- 1 211 0 0 -0.28565550e+00 -0.47311362e+00 0.80335426e+00 0.13957000e+00
- 1 -211 0 0 0.66548030e-01 -0.52702860e+00 0.11862741e+01 0.13957000e+00
- 2 111 559 560 0.53928476e-01 -0.61619102e+00 0.19294620e+01 0.13498000e+00
- 2 111 561 562 -0.21977768e-01 -0.16539146e+00 0.17801025e+01 0.13498000e+00
- 1 22 0 0 -0.64900054e-02 -0.10248567e+00 0.11174828e+01 0.00000000e+00
- 1 22 0 0 0.14932663e+00 -0.16301618e+00 0.15582382e+01 0.00000000e+00
- 1 -211 0 0 0.28043786e-01 -0.93628802e-01 0.16995213e+01 0.13957000e+00
- 1 211 0 0 0.13084187e+00 -0.24754158e+00 0.14733677e+02 0.13957000e+00
- 1 211 0 0 0.44284397e-01 -0.19731077e+00 -0.41806528e+00 0.13957000e+00
- 1 -211 0 0 -0.52950953e-01 0.10429136e+00 -0.17392144e-01 0.13957000e+00
- 2 111 563 564 0.79117582e-03 -0.13705067e+00 -0.52003941e+01 0.13498000e+00
- 2 111 565 566 -0.41445727e+00 0.12705026e+00 -0.10980703e+02 0.13498000e+00
- 1 22 0 0 -0.19903774e-01 -0.10280423e-01 0.57429362e-01 0.00000000e+00
- 1 22 0 0 0.73832250e-01 -0.60591060e+00 0.18720327e+01 0.00000000e+00
- 1 22 0 0 -0.62929732e-02 -0.76443365e-01 0.14079035e+01 0.00000000e+00
- 1 22 0 0 -0.15684794e-01 -0.88948097e-01 0.37219903e+00 0.00000000e+00
- 1 22 0 0 -0.18820377e-02 0.10594631e-01 -0.39361025e-01 0.00000000e+00
- 1 22 0 0 0.26732135e-02 -0.14764530e+00 -0.51610331e+01 0.00000000e+00
- 1 22 0 0 -0.30881490e-01 -0.18512789e-02 -0.27451309e+00 0.00000000e+00
- 1 22 0 0 -0.38357578e+00 0.12890154e+00 -0.10706190e+02 0.00000000e+00
- 467
- 2 25 2 3 0.11032985e+03 -0.11670679e+03 0.43431892e+01 0.12500138e+03
- 2 23 4 5 0.78760780e+02 -0.59833380e+02 -0.23966822e+02 0.60315000e+02
- 2 23 6 9 0.31569068e+02 -0.56873415e+02 0.28310011e+02 0.47290528e+02
- 1 11 0 0 0.80136371e+02 -0.33729687e+02 -0.29056312e+02 0.51000000e-03
- 1 -11 0 0 -0.13755915e+01 -0.26103693e+02 0.50894900e+01 0.51000000e-03
- 1 13 0 0 0.14029345e+02 -0.10291078e+02 0.30850338e+02 0.10566000e+00
- 1 22 0 0 0.34819999e-04 -0.55503037e-04 0.79288668e-04 0.00000000e+00
- 1 -13 0 0 0.17537480e+02 -0.46576209e+02 -0.25400363e+01 0.10566000e+00
- 1 22 0 0 0.22076630e-02 -0.60720327e-02 -0.37041677e-03 0.00000000e+00
- 2 323 58 59 -0.11049587e+01 0.48643730e-01 0.22973172e+04 0.90386394e+00
- 2 4 60 60 -0.40475324e+02 0.23320267e+02 0.36692247e+03 0.15000000e+01
- 2 21 60 60 -0.48725588e+01 0.29715147e+01 0.46066863e+02 0.00000000e+00
- 2 21 60 60 -0.22604136e+02 0.15601770e+02 0.24467861e+03 0.00000000e+00
- 2 21 60 60 -0.10369421e-01 -0.11155377e+00 0.18478121e+01 0.00000000e+00
- 2 21 60 60 0.28234062e+01 0.35459162e+01 0.12889348e+02 0.00000000e+00
- 2 21 60 60 0.36960309e-01 0.10194727e+01 0.37022468e+01 0.00000000e+00
- 2 21 60 60 0.11270953e+01 0.16644427e+01 0.38948735e+01 0.00000000e+00
- 2 21 60 60 0.24805398e-01 0.86108468e-01 0.16299368e+01 0.00000000e+00
- 2 21 60 60 0.18079357e+00 -0.36342111e+00 0.88732771e+00 0.00000000e+00
- 2 21 60 60 -0.32613007e+00 0.16346811e+00 -0.16804530e+00 0.00000000e+00
- 2 21 60 60 -0.34350520e-01 0.94105424e+00 0.10253640e+02 0.00000000e+00
- 2 21 60 60 -0.66254055e+00 0.86772640e+00 0.19946490e+01 0.00000000e+00
- 2 21 60 60 0.70606833e+00 0.12363774e+01 0.28274727e+01 0.00000000e+00
- 2 21 60 60 0.10265161e+01 0.74099005e+01 0.76990205e+01 0.00000000e+00
- 2 21 60 60 -0.94421207e+00 0.29033238e+01 0.15820886e+00 0.00000000e+00
- 2 21 60 60 -0.29801354e+01 0.14205416e+01 0.10923732e+01 0.00000000e+00
- 2 21 60 60 0.82915945e+00 -0.10825099e+01 0.87411760e+00 0.00000000e+00
- 2 21 60 60 0.16286630e+01 -0.34045136e+01 0.74676255e+01 0.00000000e+00
- 2 21 60 60 0.53571579e+00 -0.72742872e+00 0.34051021e+01 0.00000000e+00
- 2 21 60 60 0.94421207e+00 -0.29033238e+01 0.21580068e+02 0.00000000e+00
- 2 21 60 60 -0.16567840e+01 -0.21184625e+01 0.27635776e+02 0.00000000e+00
- 2 21 60 60 -0.10265161e+01 -0.74099005e+01 0.29391194e+03 0.00000000e+00
- 2 21 60 60 0.29801354e+01 -0.14205416e+01 0.18590200e+03 0.00000000e+00
- 2 21 60 60 -0.31839558e+00 0.10691705e+01 0.57522380e+02 0.00000000e+00
- 2 21 60 60 -0.82915945e+00 0.10825099e+01 0.41570826e+03 0.00000000e+00
- 2 2101 60 60 -0.60419119e+00 0.24490990e+00 0.28661756e+04 0.57933000e+00
- 2 1 116 116 -0.16947760e+02 0.24176174e+02 -0.89439321e+03 0.33000000e+00
- 2 21 116 116 -0.21400526e+02 0.29395052e+02 -0.11374209e+04 0.00000000e+00
- 2 21 116 116 -0.80917994e+01 0.10685966e+02 -0.32295318e+03 0.00000000e+00
- 2 21 116 116 -0.16542581e+00 0.74386660e+00 -0.79261417e+01 0.00000000e+00
- 2 21 116 116 0.22773860e+01 0.81531837e+01 -0.75351580e+02 0.00000000e+00
- 2 21 116 116 0.54230612e+00 -0.49650292e+01 -0.19414520e+02 0.00000000e+00
- 2 21 116 116 0.26372708e+00 -0.16363792e+00 -0.15308416e+02 0.00000000e+00
- 2 21 116 116 -0.82679272e+00 0.44570643e+00 -0.28222938e+02 0.00000000e+00
- 2 21 116 116 -0.28183130e+01 -0.12987730e+01 -0.44937511e+02 0.00000000e+00
- 2 21 116 116 -0.53571579e+00 0.72742872e+00 -0.49590923e+01 0.00000000e+00
- 2 21 116 116 -0.16286630e+01 0.34045136e+01 -0.15065437e+02 0.00000000e+00
- 2 21 116 116 -0.70606833e+00 -0.12363774e+01 -0.24231705e+01 0.00000000e+00
- 2 21 116 116 0.31839558e+00 -0.10691705e+01 -0.32668419e+01 0.00000000e+00
- 2 21 116 116 0.34350520e-01 -0.94105424e+00 -0.53833390e+00 0.00000000e+00
- 2 21 116 116 0.66254055e+00 -0.86772640e+00 -0.11052790e+01 0.00000000e+00
- 2 21 116 116 0.28183130e+01 0.12987730e+01 -0.50150782e+01 0.00000000e+00
- 2 21 116 116 0.16567840e+01 0.21184625e+01 -0.85053768e+01 0.00000000e+00
- 2 21 116 116 0.31694924e+01 0.25850774e+01 -0.54939008e+02 0.00000000e+00
- 2 21 116 116 0.82679272e+00 -0.44570643e+00 -0.32341739e+02 0.00000000e+00
- 2 21 116 116 -0.31694924e+01 -0.25850774e+01 -0.16372389e+04 0.00000000e+00
- 2 2101 116 116 -0.10031486e+01 0.48968008e+00 -0.25768945e+04 0.57933000e+00
- 2 311 171 171 -0.50819884e+00 0.70368422e-01 0.80266407e+03 0.49767000e+00
- 1 211 0 0 -0.59675982e+00 -0.21724692e-01 0.14946532e+04 0.13957000e+00
- 2 92 61 115 -0.64501272e+02 0.46006819e+02 0.45865597e+04 0.40060692e+03
- 2 433 172 173 -0.39762651e+02 0.23367069e+02 0.36833478e+03 0.21124000e+01
- 2 -323 174 175 -0.90118748e+01 0.57853401e+01 0.89036455e+02 0.88631901e+00
- 2 221 176 177 -0.42215612e+01 0.23879015e+01 0.40591601e+02 0.54745000e+00
- 1 211 0 0 -0.13058416e+01 0.13058818e+01 0.18565069e+02 0.13957000e+00
- 1 -211 0 0 -0.80599700e+01 0.56601788e+01 0.85100384e+02 0.13957000e+00
- 2 111 178 179 -0.17433321e+01 0.55430824e+00 0.17357816e+02 0.13498000e+00
- 2 213 180 181 -0.13833568e+01 0.14010005e+01 0.17597488e+02 0.10501045e+01
- 2 111 182 183 -0.13226903e+01 0.11745647e+01 0.14706066e+02 0.13498000e+00
- 2 223 184 186 0.33674407e+00 0.69831792e+00 0.24491975e+01 0.71708067e+00
- 1 -211 0 0 0.57917882e-01 0.12218964e+00 0.15213676e+01 0.13957000e+00
- 2 223 187 188 -0.19254216e+00 0.89496226e+00 0.45832119e+01 0.77891268e+00
- 2 323 189 190 0.58705193e+00 0.10152748e+01 0.41755338e+01 0.90316409e+00
- 2 -311 191 191 0.21017964e+00 0.75763441e+00 0.48110742e+01 0.49767000e+00
- 2 223 192 194 0.54591723e+00 0.69202950e-01 0.36754660e+01 0.78370331e+00
- 2 111 195 196 0.63863018e+00 0.10454608e+01 0.44768874e+01 0.13498000e+00
- 1 -211 0 0 0.55938315e+00 0.89920588e+00 0.28625240e+01 0.13957000e+00
- 2 213 197 198 0.11049711e+00 0.55544951e+00 0.39929999e+00 0.62771170e+00
- 1 -211 0 0 -0.51468204e+00 -0.55782768e-01 0.29022004e+01 0.13957000e+00
- 1 2212 0 0 0.39703098e+00 0.11149268e+01 0.43407613e+01 0.93827000e+00
- 2 111 199 200 0.17286401e+00 -0.73268185e-01 0.34325677e+00 0.13498000e+00
- 1 -2112 0 0 -0.37002127e+00 0.61685033e+00 0.27318509e+01 0.93957000e+00
- 2 221 201 202 0.88172287e+00 0.15162643e+01 0.36713054e+01 0.54745000e+00
- 1 -211 0 0 -0.75251118e+00 0.54039982e+00 0.11018803e+01 0.13957000e+00
- 2 221 203 205 0.27648784e+00 0.88386940e+00 0.96554432e+00 0.54745000e+00
- 2 213 206 207 -0.18651463e+00 0.15756406e+01 0.31633685e+01 0.76143206e+00
- 2 -213 208 209 0.11435670e+00 0.25264745e+01 0.26280891e+01 0.80085192e+00
- 2 213 210 211 0.72499620e+00 0.99913617e+00 0.12528406e+01 0.68050657e+00
- 2 311 212 212 -0.15380332e+00 0.11044292e+01 0.85234460e+00 0.49767000e+00
- 1 -321 0 0 -0.95058096e+00 0.75626328e+00 0.62608351e+00 0.49360000e+00
- 2 323 213 214 -0.88563488e+00 0.17200609e+01 0.98587341e+00 0.88919497e+00
- 2 333 215 216 0.55141333e+00 0.44876239e+00 0.87706892e-01 0.10201761e+01
- 1 -321 0 0 -0.47384912e+00 -0.24801360e+00 0.56727565e+00 0.49360000e+00
- 2 331 217 218 0.13795298e+00 0.13293567e+00 0.53988812e+00 0.95769811e+00
- 2 213 219 220 -0.12264464e+01 0.32013403e-02 0.88148169e+00 0.84674903e+00
- 2 331 221 223 0.55318218e+00 -0.10591558e+01 0.29311867e+01 0.95774083e+00
- 2 1114 224 225 0.68911190e+00 -0.11289525e+01 0.38723621e+01 0.13003727e+01
- 2 213 226 227 0.77902698e+00 -0.11742691e+01 0.50524373e+01 0.79742681e+00
- 1 -2112 0 0 0.15582120e+00 -0.67613674e+00 0.80171552e+01 0.93957000e+00
- 2 111 228 229 -0.79773052e+00 -0.84984619e+00 0.67366379e+01 0.13498000e+00
- 2 313 230 231 0.11668348e+01 -0.29573689e+01 0.19743093e+02 0.90342799e+00
- 2 3122 232 233 -0.45392937e+00 -0.36379494e+00 0.23714310e+02 0.11156800e+01
- 1 -2212 0 0 -0.32537807e+00 -0.20639447e+01 0.44533748e+02 0.93827000e+00
- 2 111 234 235 -0.43704786e+00 -0.23515803e+01 0.79126843e+02 0.13498000e+00
- 2 111 236 237 0.93312116e-01 0.28085815e+00 0.26293780e+02 0.13498000e+00
- 2 323 238 239 0.19455872e+00 -0.13975617e+01 0.60794333e+02 0.94536012e+00
- 2 -313 240 241 0.57696570e+00 -0.13320753e+01 0.98301776e+02 0.88483991e+00
- 1 -211 0 0 -0.36900246e+00 -0.36356846e+00 0.74180383e+01 0.13957000e+00
- 2 2114 242 243 0.47711156e+00 -0.15283684e+01 0.96505550e+02 0.12945256e+01
- 1 211 0 0 0.92697761e+00 0.77039045e-01 0.13894688e+03 0.13957000e+00
- 1 -2212 0 0 -0.77633366e+00 0.10403480e+01 0.44608068e+03 0.93827000e+00
- 2 213 244 245 0.39062116e+00 -0.14993943e+00 0.15208827e+03 0.74897645e+00
- 1 -211 0 0 -0.16676502e+00 -0.11815837e+00 0.10916019e+03 0.13957000e+00
- 2 213 246 247 -0.93794537e-01 0.12194144e-01 0.30864713e+03 0.71415207e+00
- 2 2214 248 249 -0.39641345e+00 0.17096635e+00 0.18371603e+04 0.11959090e+01
- 1 -211 0 0 -0.47368338e+00 0.68404101e+00 0.40354899e+03 0.13957000e+00
- 2 92 117 170 -0.44723617e+02 0.70651332e+02 -0.68882212e+04 0.28005256e+03
- 2 223 250 251 -0.26271453e+02 0.36876084e+02 -0.13895275e+04 0.79054105e+00
- 1 -211 0 0 -0.27082561e+01 0.41416546e+01 -0.15223440e+03 0.13957000e+00
- 1 211 0 0 -0.75157051e+00 0.82119867e+00 -0.30835135e+02 0.13957000e+00
- 2 -213 252 253 -0.54108689e+01 0.72634900e+01 -0.26283376e+03 0.36878710e+00
- 2 323 254 255 -0.34983057e+01 0.51956062e+01 -0.20105914e+03 0.91010868e+00
- 2 -311 256 256 -0.35514469e+01 0.40530670e+01 -0.12847583e+03 0.49767000e+00
- 2 113 257 258 -0.29649737e+01 0.42825699e+01 -0.13119774e+03 0.86211360e+00
- 2 313 259 260 -0.49269440e+00 0.16349947e+01 -0.45637677e+02 0.86261516e+00
- 2 -311 261 261 -0.13602571e+00 0.84718284e+00 -0.12050209e+02 0.49767000e+00
- 2 221 262 263 0.84006909e-01 0.41720428e+00 -0.69430053e+01 0.54745000e+00
- 2 111 264 265 -0.14789600e+00 0.60602951e+00 -0.62780060e+01 0.13498000e+00
- 2 223 266 268 0.31958496e+00 0.16127886e+01 -0.17461949e+02 0.70001152e+00
- 2 113 269 270 0.71368053e-01 0.10649164e+01 -0.11903349e+02 0.72641921e+00
- 2 313 271 272 0.11317126e+01 0.28477745e+01 -0.28107543e+02 0.87722599e+00
- 2 -323 273 274 0.47614976e+00 0.72842738e+00 -0.10700456e+02 0.92394241e+00
- 1 211 0 0 -0.56073799e+00 -0.10615807e+01 -0.44389143e+01 0.13957000e+00
- 1 -211 0 0 0.10360757e+00 -0.45644447e+00 -0.37434148e+01 0.13957000e+00
- 1 211 0 0 0.22184224e+00 -0.16809012e+00 -0.14661543e+01 0.13957000e+00
- 1 -211 0 0 0.13802558e+00 -0.34961484e+00 -0.19097149e+01 0.13957000e+00
- 1 211 0 0 -0.79355877e-01 0.98755652e-01 -0.58654209e+00 0.13957000e+00
- 1 -211 0 0 0.28304538e+00 0.58437271e-02 -0.52211800e+01 0.13957000e+00
- 2 111 275 276 -0.13140872e+00 -0.13665991e+01 -0.61493783e+01 0.13498000e+00
- 2 223 277 279 0.28628763e+00 -0.10196239e+01 -0.73449745e+01 0.78874327e+00
- 1 211 0 0 -0.19500547e+00 0.38135784e+00 -0.18916411e+02 0.13957000e+00
- 2 311 280 280 -0.17219031e+01 -0.10300691e+01 -0.39460771e+02 0.49767000e+00
- 2 333 281 282 -0.55114926e+00 0.75640077e+00 -0.12984181e+02 0.10184883e+01
- 2 -323 283 284 -0.18328080e+01 0.14159639e+01 -0.11204787e+02 0.87531759e+00
- 2 111 285 286 -0.99827372e-01 -0.47883055e+00 -0.21623276e+01 0.13498000e+00
- 2 223 287 289 -0.11021938e+01 0.11504402e+01 -0.12416422e+02 0.77530979e+00
- 1 321 0 0 -0.34180196e+00 0.29394352e+00 -0.11069705e+01 0.49360000e+00
- 2 -313 290 291 0.64106439e-01 -0.22252326e-01 -0.16938163e+01 0.80525262e+00
- 2 311 292 292 -0.40526352e+00 -0.88515634e+00 -0.32616859e+01 0.49767000e+00
- 1 -321 0 0 -0.30512218e+00 -0.48141122e+00 -0.98639890e+00 0.49360000e+00
- 1 211 0 0 0.45136961e+00 -0.38580526e+00 -0.62631308e+00 0.13957000e+00
- 1 -211 0 0 0.52215529e+00 -0.84647785e-01 -0.11504639e+01 0.13957000e+00
- 2 223 293 295 0.40110625e+00 -0.70648315e+00 -0.17957192e+01 0.78046965e+00
- 2 213 296 297 0.80126587e+00 0.26987784e+00 -0.19397893e+01 0.79276232e+00
- 2 -213 298 299 0.38156428e+00 0.38699455e+00 -0.20093279e+01 0.78466944e+00
- 1 211 0 0 0.67504358e+00 0.12857289e+00 -0.10311121e+01 0.13957000e+00
- 2 3214 300 301 0.66329369e+00 0.48097467e+00 -0.62556593e+01 0.13498799e+01
- 2 311 302 302 0.21295088e+00 0.18193295e-01 -0.13664178e+01 0.49767000e+00
- 2 -2214 303 304 0.10657105e+01 0.66192926e+00 -0.79283137e+01 0.11839757e+01
- 2 223 305 307 0.54887888e+00 0.36100868e+00 -0.42841678e+01 0.76186489e+00
- 2 331 308 310 0.83632669e+00 0.11848537e+01 -0.12114344e+02 0.95773873e+00
- 2 3222 311 312 0.84073195e+00 0.52500453e+00 -0.18389467e+02 0.11893700e+01
- 2 313 313 314 0.50901099e+00 -0.44981429e+00 -0.18031393e+02 0.91524503e+00
- 2 -2114 315 316 0.42235131e+00 0.92206205e+00 -0.37341399e+02 0.12225187e+01
- 2 331 317 318 0.79850626e+00 0.21965225e+00 -0.28067887e+02 0.95816674e+00
- 2 2114 319 320 -0.14115468e+00 -0.20291411e+00 -0.83602227e+02 0.12778347e+01
- 1 -211 0 0 -0.74342306e+00 -0.24465183e+00 -0.27131775e+03 0.13957000e+00
- 2 -1114 321 322 -0.49914616e+00 -0.87566372e+00 -0.63908912e+03 0.11907470e+01
- 2 -213 323 324 -0.43119456e+00 -0.53219826e+00 -0.45434694e+03 0.83406760e+00
- 2 213 325 326 -0.13097969e+01 -0.50792462e+00 -0.11070491e+04 0.68689938e+00
- 1 2112 0 0 -0.64883649e+00 0.30628895e+00 -0.16201846e+04 0.93957000e+00
- 1 130 0 0 -0.50819884e+00 0.70368422e-01 0.80266407e+03 0.49767000e+00
- 2 431 327 328 -0.38000320e+02 0.22445745e+02 0.35314188e+03 0.19685000e+01
- 1 22 0 0 -0.17623317e+01 0.92132432e+00 0.15192891e+02 0.00000000e+00
- 2 -311 329 329 -0.37212792e+01 0.24575394e+01 0.35646992e+02 0.49767000e+00
- 1 -211 0 0 -0.52905956e+01 0.33278007e+01 0.53389463e+02 0.13957000e+00
- 1 22 0 0 -0.36748586e+01 0.22223037e+01 0.34690258e+02 0.00000000e+00
- 1 22 0 0 -0.54670259e+00 0.16559785e+00 0.59013425e+01 0.00000000e+00
- 1 22 0 0 -0.15686265e+00 0.86702160e-01 0.18879129e+01 0.00000000e+00
- 1 22 0 0 -0.15864695e+01 0.46760608e+00 0.15469903e+02 0.00000000e+00
- 1 211 0 0 -0.12447439e+00 0.44015003e+00 0.76309036e+01 0.13957000e+00
- 2 111 330 331 -0.12588824e+01 0.96085042e+00 0.99665841e+01 0.13498000e+00
- 1 22 0 0 -0.84172304e+00 0.81264883e+00 0.10049992e+02 0.00000000e+00
- 1 22 0 0 -0.48096722e+00 0.36191589e+00 0.46560736e+01 0.00000000e+00
- 1 -211 0 0 -0.94828075e-01 0.26652835e-01 0.26125062e+00 0.13957000e+00
- 1 211 0 0 0.32855166e+00 0.43207124e+00 0.16434921e+01 0.13957000e+00
- 2 111 332 333 0.10302048e+00 0.23959384e+00 0.54445476e+00 0.13498000e+00
- 1 22 0 0 -0.17551779e+00 0.11870350e+00 0.25312786e+01 0.00000000e+00
- 2 111 334 335 -0.17024368e-01 0.77625876e+00 0.20519333e+01 0.13498000e+00
- 1 321 0 0 0.60285754e+00 0.46222381e+00 0.23872142e+01 0.49360000e+00
- 2 111 336 337 -0.15805617e-01 0.55305101e+00 0.17883195e+01 0.13498000e+00
- 2 310 338 339 0.21017964e+00 0.75763441e+00 0.48110742e+01 0.49767000e+00
- 1 -211 0 0 0.93981779e-01 0.11457121e-01 0.18529679e+01 0.13957000e+00
- 1 211 0 0 0.11461632e+00 0.14699064e+00 0.36630996e+00 0.13957000e+00
- 2 111 340 341 0.33731914e+00 -0.89244808e-01 0.14561881e+01 0.13498000e+00
- 1 22 0 0 0.43984865e+00 0.75243827e+00 0.33948707e+01 0.00000000e+00
- 1 22 0 0 0.19878154e+00 0.29302253e+00 0.10820167e+01 0.00000000e+00
- 1 211 0 0 0.43341731e-01 -0.68950491e-01 -0.27304331e-01 0.13957000e+00
- 2 111 342 343 0.67155382e-01 0.62440000e+00 0.42660432e+00 0.13498000e+00
- 1 22 0 0 0.64479199e-01 0.20028015e-01 0.20152265e+00 0.00000000e+00
- 1 22 0 0 0.10838481e+00 -0.93296200e-01 0.14173411e+00 0.00000000e+00
- 1 22 0 0 0.66646606e+00 0.13930278e+01 0.34193410e+01 0.00000000e+00
- 1 22 0 0 0.21525681e+00 0.12323655e+00 0.25196440e+00 0.00000000e+00
- 2 111 344 345 0.95457894e-01 0.63116589e+00 0.56333701e+00 0.13498000e+00
- 2 111 346 347 0.40860902e-01 0.85006986e-01 0.17933606e+00 0.13498000e+00
- 2 111 348 349 0.14016904e+00 0.16769652e+00 0.22287125e+00 0.13498000e+00
- 1 211 0 0 -0.28214104e+00 0.10771302e+01 0.14849787e+01 0.13957000e+00
- 2 111 350 351 0.95626413e-01 0.49851047e+00 0.16783898e+01 0.13498000e+00
- 1 -211 0 0 -0.26460975e+00 0.88488081e+00 0.68156655e+00 0.13957000e+00
- 2 111 352 353 0.37896645e+00 0.16415937e+01 0.19465225e+01 0.13498000e+00
- 1 211 0 0 0.40545994e+00 0.89597968e+00 0.66422458e+00 0.13957000e+00
- 2 111 354 355 0.31953626e+00 0.10315649e+00 0.58861603e+00 0.13498000e+00
- 1 130 0 0 -0.15380332e+00 0.11044292e+01 0.85234460e+00 0.49767000e+00
- 2 311 356 356 -0.82422958e+00 0.10169260e+01 0.75386836e+00 0.49767000e+00
- 1 211 0 0 -0.61405296e-01 0.70313496e+00 0.23200505e+00 0.13957000e+00
- 1 -321 0 0 0.40666553e+00 0.18712049e+00 0.48344163e-01 0.49360000e+00
- 1 321 0 0 0.14474780e+00 0.26164191e+00 0.39362729e-01 0.49360000e+00
- 1 22 0 0 0.82208792e-01 0.10363307e+00 0.22055840e+00 0.00000000e+00
- 2 113 357 358 0.55744187e-01 0.29302595e-01 0.31932972e+00 0.79470613e+00
- 1 211 0 0 -0.87854155e+00 0.27517093e+00 0.86272370e+00 0.13957000e+00
- 2 111 359 360 -0.34790481e+00 -0.27196959e+00 0.18757990e-01 0.13498000e+00
- 1 211 0 0 -0.23720147e-01 -0.48204334e-01 0.22686648e+00 0.13957000e+00
- 1 -211 0 0 0.28169429e+00 -0.31507242e+00 0.86007142e+00 0.13957000e+00
- 2 221 361 362 0.29520804e+00 -0.69587907e+00 0.18442488e+01 0.54745000e+00
- 1 2112 0 0 0.64922172e+00 -0.90972745e+00 0.37041517e+01 0.93957000e+00
- 1 -211 0 0 0.39890178e-01 -0.21922508e+00 0.16821039e+00 0.13957000e+00
- 1 211 0 0 0.93200197e-01 -0.68172854e+00 0.30203893e+01 0.13957000e+00
- 2 111 363 364 0.68582678e+00 -0.49254060e+00 0.20320479e+01 0.13498000e+00
- 1 22 0 0 -0.59333454e+00 -0.62556778e+00 0.53065494e+01 0.00000000e+00
- 1 22 0 0 -0.20439598e+00 -0.22427840e+00 0.14300886e+01 0.00000000e+00
- 2 311 365 365 0.38647115e+00 -0.11128491e+01 0.66654942e+01 0.49767000e+00
- 2 111 366 367 0.78036370e+00 -0.18445198e+01 0.13077599e+02 0.13498000e+00
- 1 2112 0 0 -0.42117139e+00 -0.32856754e+00 0.22284290e+02 0.93957000e+00
- 2 111 368 369 -0.32757984e-01 -0.35227405e-01 0.14300201e+01 0.13498000e+00
- 1 22 0 0 -0.24282370e-01 -0.64810348e-01 0.17354195e+01 0.00000000e+00
- 1 22 0 0 -0.41276549e+00 -0.22867700e+01 0.77391424e+02 0.00000000e+00
- 1 22 0 0 0.11714970e+00 0.24972439e+00 0.20164748e+02 0.00000000e+00
- 1 22 0 0 -0.23837585e-01 0.31133759e-01 0.61290325e+01 0.00000000e+00
- 1 321 0 0 -0.17296500e+00 -0.55126001e+00 0.24763629e+02 0.49360000e+00
- 2 111 370 371 0.36752372e+00 -0.84630172e+00 0.36030705e+02 0.13498000e+00
- 1 -321 0 0 0.37347290e+00 -0.53202286e+00 0.59993827e+02 0.49360000e+00
- 1 211 0 0 0.20349281e+00 -0.80005244e+00 0.38307950e+02 0.13957000e+00
- 1 2112 0 0 0.42208474e+00 -0.79882704e+00 0.66198684e+02 0.93957000e+00
- 2 111 372 373 0.55026815e-01 -0.72954135e+00 0.30306866e+02 0.13498000e+00
- 1 211 0 0 0.28028004e-01 0.25799173e+00 0.48810675e+02 0.13957000e+00
- 2 111 374 375 0.36259315e+00 -0.40793117e+00 0.10327759e+03 0.13498000e+00
- 1 211 0 0 -0.87817398e-01 -0.30972186e+00 0.11823911e+03 0.13957000e+00
- 2 111 376 377 -0.59771389e-02 0.32191600e+00 0.19040802e+03 0.13498000e+00
- 1 2212 0 0 -0.11414500e+00 0.13968332e+00 0.13419754e+04 0.93827000e+00
- 2 111 378 379 -0.28226845e+00 0.31283025e-01 0.49518486e+03 0.13498000e+00
- 1 22 0 0 -0.23993688e+02 0.33939912e+02 -0.12780392e+04 0.00000000e+00
- 2 111 380 381 -0.22777652e+01 0.29361721e+01 -0.11148826e+03 0.13498000e+00
- 1 -211 0 0 -0.15724999e+01 0.22762517e+01 -0.80321939e+02 0.13957000e+00
- 2 111 382 383 -0.38383690e+01 0.49872383e+01 -0.18251182e+03 0.13498000e+00
- 2 311 384 384 -0.25913289e+01 0.37669340e+01 -0.13737209e+03 0.49767000e+00
- 1 211 0 0 -0.90697685e+00 0.14286721e+01 -0.63687052e+02 0.13957000e+00
- 2 310 385 386 -0.35514469e+01 0.40530670e+01 -0.12847583e+03 0.49767000e+00
- 1 211 0 0 -0.10705309e+01 0.21854030e+01 -0.65251602e+02 0.13957000e+00
- 1 -211 0 0 -0.18944427e+01 0.20971668e+01 -0.65946140e+02 0.13957000e+00
- 1 321 0 0 -0.17462689e+00 0.13804167e+01 -0.36778709e+02 0.49360000e+00
- 1 -211 0 0 -0.31806751e+00 0.25457800e+00 -0.88589678e+01 0.13957000e+00
- 2 310 387 388 -0.13602571e+00 0.84718284e+00 -0.12050209e+02 0.49767000e+00
- 1 22 0 0 0.89035000e-01 -0.18382702e-01 -0.41308841e+01 0.00000000e+00
- 1 22 0 0 -0.50280911e-02 0.43558698e+00 -0.28121213e+01 0.00000000e+00
- 1 22 0 0 -0.90994770e-01 0.55295473e+00 -0.54870119e+01 0.00000000e+00
- 1 22 0 0 -0.56901228e-01 0.53074781e-01 -0.79099417e+00 0.00000000e+00
- 1 -211 0 0 0.18214354e+00 0.19474574e+00 -0.21694151e+01 0.13957000e+00
- 1 211 0 0 0.11108409e+00 0.94270575e+00 -0.90011989e+01 0.13957000e+00
- 2 111 389 390 0.26357324e-01 0.47533709e+00 -0.62913351e+01 0.13498000e+00
- 1 211 0 0 0.21059979e-01 0.36620929e+00 -0.16946919e+01 0.13957000e+00
- 1 -211 0 0 0.50308074e-01 0.69870708e+00 -0.10208657e+02 0.13957000e+00
- 1 321 0 0 0.74082114e+00 0.12917305e+01 -0.12851812e+02 0.49360000e+00
- 1 -211 0 0 0.39089146e+00 0.15560441e+01 -0.15255731e+02 0.13957000e+00
- 2 -311 391 391 0.23005953e+00 0.22246218e+00 -0.74714363e+01 0.49767000e+00
- 1 -211 0 0 0.24609022e+00 0.50596520e+00 -0.32290193e+01 0.13957000e+00
- 1 22 0 0 -0.30395696e-01 -0.56586573e-01 -0.35206228e+00 0.00000000e+00
- 1 22 0 0 -0.10101303e+00 -0.13100125e+01 -0.57973160e+01 0.00000000e+00
- 1 211 0 0 -0.15601003e-01 -0.30973593e+00 -0.18836518e+01 0.13957000e+00
- 1 -211 0 0 0.25361509e+00 -0.14143550e+00 -0.30539395e+01 0.13957000e+00
- 2 111 392 393 0.48273547e-01 -0.56845246e+00 -0.24073832e+01 0.13498000e+00
- 2 310 394 395 -0.17219031e+01 -0.10300691e+01 -0.39460771e+02 0.49767000e+00
- 1 321 0 0 -0.33643450e+00 0.52098109e+00 -0.70231886e+01 0.49360000e+00
- 1 -321 0 0 -0.21471476e+00 0.23541969e+00 -0.59609927e+01 0.49360000e+00
- 2 -311 396 396 -0.12604556e+01 0.11641199e+01 -0.91482950e+01 0.49767000e+00
- 1 -211 0 0 -0.57235233e+00 0.25184410e+00 -0.20564924e+01 0.13957000e+00
- 1 22 0 0 -0.48245741e-01 -0.68259785e-01 -0.55822282e+00 0.00000000e+00
- 1 22 0 0 -0.51581632e-01 -0.41057076e+00 -0.16041048e+01 0.00000000e+00
- 1 211 0 0 -0.43005727e+00 0.64767556e+00 -0.59162578e+01 0.13957000e+00
- 1 -211 0 0 -0.32667760e-01 0.17627323e+00 -0.10327676e+01 0.13957000e+00
- 2 111 397 398 -0.63946876e+00 0.32649141e+00 -0.54673970e+01 0.13498000e+00
- 1 -321 0 0 -0.17311816e+00 -0.38330607e-01 -0.12297603e+01 0.49360000e+00
- 1 211 0 0 0.23722459e+00 0.16078281e-01 -0.46405601e+00 0.13957000e+00
- 2 310 399 400 -0.40526352e+00 -0.88515634e+00 -0.32616859e+01 0.49767000e+00
- 1 211 0 0 -0.11090235e-02 -0.28416473e+00 -0.23766978e+00 0.13957000e+00
- 1 -211 0 0 0.30129873e+00 -0.94804531e-01 -0.53633647e+00 0.13957000e+00
- 2 111 401 402 0.10091655e+00 -0.32751388e+00 -0.10217130e+01 0.13498000e+00
- 1 211 0 0 0.70138572e+00 -0.11513621e+00 -0.13940518e+01 0.13957000e+00
- 2 111 403 404 0.99880152e-01 0.38501405e+00 -0.54573747e+00 0.13498000e+00
- 1 -211 0 0 0.27157893e+00 0.58859675e+00 -0.16414150e+01 0.13957000e+00
- 2 111 405 406 0.10998536e+00 -0.20160220e+00 -0.36791295e+00 0.13498000e+00
- 2 3122 407 408 0.69179581e+00 0.48165492e+00 -0.60060655e+01 0.11156800e+01
- 2 111 409 410 -0.28502117e-01 -0.68025305e-03 -0.24959377e+00 0.13498000e+00
- 1 130 0 0 0.21295088e+00 0.18193295e-01 -0.13664178e+01 0.49767000e+00
- 1 -2212 0 0 0.77642870e+00 0.68827493e+00 -0.66941181e+01 0.93827000e+00
- 2 111 411 412 0.28928184e+00 -0.26345667e-01 -0.12341956e+01 0.13498000e+00
- 1 211 0 0 0.49155863e+00 0.15654654e+00 -0.23601386e+01 0.13957000e+00
- 1 -211 0 0 0.61564113e-01 0.83837970e-01 -0.30099672e+00 0.13957000e+00
- 2 111 413 414 -0.42438649e-02 0.12062418e+00 -0.16230325e+01 0.13498000e+00
- 2 111 415 416 0.10646349e+00 0.30127262e+00 -0.34793522e+01 0.13498000e+00
- 2 111 417 418 0.10306813e+00 0.17565873e+00 -0.10228702e+01 0.13498000e+00
- 2 221 419 421 0.62679506e+00 0.70792236e+00 -0.76121218e+01 0.54745000e+00
- 1 2212 0 0 0.90701312e+00 0.46725778e+00 -0.16259079e+02 0.93827000e+00
- 2 111 422 423 -0.66281167e-01 0.57746748e-01 -0.21303883e+01 0.13498000e+00
- 1 321 0 0 0.39631511e-02 -0.30032875e+00 -0.10830220e+02 0.49360000e+00
- 1 -211 0 0 0.50504784e+00 -0.14948554e+00 -0.72011729e+01 0.13957000e+00
- 1 -2112 0 0 0.23764261e+00 0.89141345e+00 -0.28033816e+02 0.93957000e+00
- 2 111 424 425 0.18470870e+00 0.30648598e-01 -0.93075832e+01 0.13498000e+00
- 1 22 0 0 0.23859309e+00 -0.26554672e-02 -0.88828498e+01 0.00000000e+00
- 2 223 426 428 0.55991316e+00 0.22230772e+00 -0.19185037e+02 0.78137754e+00
- 1 2112 0 0 0.15685493e+00 -0.20174470e+00 -0.61396409e+02 0.93957000e+00
- 2 111 429 430 -0.29800961e+00 -0.11694082e-02 -0.22205817e+02 0.13498000e+00
- 1 -2112 0 0 -0.53547807e+00 -0.87542835e+00 -0.60486056e+03 0.93957000e+00
- 1 211 0 0 0.36331910e-01 -0.23537685e-03 -0.34228569e+02 0.13957000e+00
- 1 -211 0 0 -0.21819143e+00 -0.71825263e+00 -0.30804638e+03 0.13957000e+00
- 2 111 431 432 -0.21300313e+00 0.18605437e+00 -0.14630056e+03 0.13498000e+00
- 1 211 0 0 -0.10923478e+01 -0.63077890e+00 -0.95025142e+03 0.13957000e+00
- 2 111 433 434 -0.21744907e+00 0.12285427e+00 -0.15679767e+03 0.13498000e+00
- 2 331 435 437 -0.20868793e+02 0.12124383e+02 0.19811406e+03 0.95777458e+00
- 1 321 0 0 -0.17131526e+02 0.10321362e+02 0.15502782e+03 0.49360000e+00
- 2 310 438 439 -0.37212792e+01 0.24575394e+01 0.35646992e+02 0.49767000e+00
- 1 22 0 0 -0.52688035e+00 0.38567049e+00 0.37010544e+01 0.00000000e+00
- 1 22 0 0 -0.73200207e+00 0.57517993e+00 0.62655297e+01 0.00000000e+00
- 1 22 0 0 0.63626134e-03 0.16349952e+00 0.34598187e+00 0.00000000e+00
- 1 22 0 0 0.10238422e+00 0.76094325e-01 0.19847290e+00 0.00000000e+00
- 1 22 0 0 -0.11698545e-01 0.65849193e+00 0.18562381e+01 0.00000000e+00
- 1 22 0 0 -0.53258229e-02 0.11776683e+00 0.19569526e+00 0.00000000e+00
- 1 22 0 0 -0.61294778e-01 0.18373438e+00 0.71737693e+00 0.00000000e+00
- 1 22 0 0 0.45489161e-01 0.36931662e+00 0.10709426e+01 0.00000000e+00
- 2 111 440 441 0.15816096e+00 0.11849031e+00 0.19743909e+01 0.13498000e+00
- 2 111 442 443 0.52018675e-01 0.63914410e+00 0.28366833e+01 0.13498000e+00
- 1 22 0 0 0.27052883e-01 -0.46770139e-01 0.33704032e+00 0.00000000e+00
- 1 22 0 0 0.31026626e+00 -0.42474668e-01 0.11191478e+01 0.00000000e+00
- 1 22 0 0 0.70349872e-01 0.61237890e+00 0.38287774e+00 0.00000000e+00
- 1 22 0 0 -0.31944901e-02 0.12021101e-01 0.43726580e-01 0.00000000e+00
- 1 22 0 0 0.98953410e-01 0.23620086e+00 0.19439213e+00 0.00000000e+00
- 1 22 0 0 -0.34955163e-02 0.39496502e+00 0.36894487e+00 0.00000000e+00
- 1 22 0 0 0.19392078e-01 -0.36368778e-01 0.50138453e-01 0.00000000e+00
- 1 22 0 0 0.21468824e-01 0.12137576e+00 0.12919761e+00 0.00000000e+00
- 1 22 0 0 0.14273046e+00 0.18244111e+00 0.22724779e+00 0.00000000e+00
- 1 22 0 0 -0.25614207e-02 -0.14744582e-01 -0.43765353e-02 0.00000000e+00
- 1 22 0 0 0.26969017e-02 0.29184620e+00 0.80233566e+00 0.00000000e+00
- 1 22 0 0 0.92929512e-01 0.20666428e+00 0.87605413e+00 0.00000000e+00
- 1 22 0 0 0.20941062e+00 0.10861541e+01 0.11990928e+01 0.00000000e+00
- 1 22 0 0 0.16955583e+00 0.55543963e+00 0.74742967e+00 0.00000000e+00
- 1 22 0 0 0.16788891e+00 0.12157654e+00 0.30401050e+00 0.00000000e+00
- 1 22 0 0 0.15164735e+00 -0.18420055e-01 0.28460552e+00 0.00000000e+00
- 1 130 0 0 -0.82422958e+00 0.10169260e+01 0.75386836e+00 0.49767000e+00
- 1 -211 0 0 0.32438191e+00 -0.65216687e-01 -0.60270476e-01 0.13957000e+00
- 1 211 0 0 -0.26863772e+00 0.94519282e-01 0.37960019e+00 0.13957000e+00
- 1 22 0 0 -0.31209047e+00 -0.28135586e+00 -0.96626050e-03 0.00000000e+00
- 1 22 0 0 -0.35814340e-01 0.93862610e-02 0.19724250e-01 0.00000000e+00
- 1 22 0 0 0.25814319e+00 -0.25739254e+00 0.13798562e+01 0.00000000e+00
- 1 22 0 0 0.37064846e-01 -0.43848653e+00 0.46439256e+00 0.00000000e+00
- 1 22 0 0 0.42558554e+00 -0.34685272e+00 0.14534365e+01 0.00000000e+00
- 1 22 0 0 0.26024124e+00 -0.14568788e+00 0.57861142e+00 0.00000000e+00
- 1 130 0 0 0.38647115e+00 -0.11128491e+01 0.66654942e+01 0.49767000e+00
- 1 22 0 0 0.19206983e-01 -0.94082796e-01 0.49805803e+00 0.00000000e+00
- 1 22 0 0 0.76115671e+00 -0.17504370e+01 0.12579541e+02 0.00000000e+00
- 1 22 0 0 -0.39045635e-01 -0.84650195e-01 0.97187831e+00 0.00000000e+00
- 1 22 0 0 0.62876510e-02 0.49422790e-01 0.45814181e+00 0.00000000e+00
- 1 22 0 0 0.28053677e+00 -0.48003697e+00 0.21348216e+02 0.00000000e+00
- 1 22 0 0 0.86986953e-01 -0.36626475e+00 0.14682489e+02 0.00000000e+00
- 1 22 0 0 -0.98157287e-02 -0.21646987e+00 0.11395687e+02 0.00000000e+00
- 1 22 0 0 0.64842544e-01 -0.51307148e+00 0.18911179e+02 0.00000000e+00
- 1 22 0 0 0.14891220e+00 -0.15872565e+00 0.29665154e+02 0.00000000e+00
- 1 22 0 0 0.21368096e+00 -0.24920551e+00 0.73612437e+02 0.00000000e+00
- 1 22 0 0 0.14091901e-01 0.17339660e+00 0.65814145e+02 0.00000000e+00
- 1 22 0 0 -0.20069040e-01 0.14851939e+00 0.12459387e+03 0.00000000e+00
- 1 22 0 0 -0.13758191e-01 -0.26601272e-01 0.99444239e+02 0.00000000e+00
- 1 22 0 0 -0.26851026e+00 0.57884298e-01 0.39574063e+03 0.00000000e+00
- 1 22 0 0 -0.19054011e+01 0.24539039e+01 -0.91659843e+02 0.00000000e+00
- 1 22 0 0 -0.37236412e+00 0.48226824e+00 -0.19828415e+02 0.00000000e+00
- 1 22 0 0 -0.44228024e+00 0.51109910e+00 -0.19150505e+02 0.00000000e+00
- 1 22 0 0 -0.33960888e+01 0.44761392e+01 -0.16336131e+03 0.00000000e+00
- 2 310 444 445 -0.25913289e+01 0.37669340e+01 -0.13737209e+03 0.49767000e+00
- 1 -211 0 0 -0.11657197e+01 0.15928450e+01 -0.44894284e+02 0.13957000e+00
- 1 211 0 0 -0.23857271e+01 0.24602220e+01 -0.83581551e+02 0.13957000e+00
- 1 211 0 0 0.11002557e+00 0.27235798e+00 -0.28545855e+01 0.13957000e+00
- 1 -211 0 0 -0.24605128e+00 0.57482486e+00 -0.91956230e+01 0.13957000e+00
- 1 22 0 0 -0.30275999e-01 0.45382517e-01 -0.10981684e+01 0.00000000e+00
- 1 22 0 0 0.56633323e-01 0.42995458e+00 -0.51931667e+01 0.00000000e+00
- 1 130 0 0 0.23005953e+00 0.22246218e+00 -0.74714363e+01 0.49767000e+00
- 1 22 0 0 0.13657229e-01 -0.12527385e+00 -0.80636248e+00 0.00000000e+00
- 1 22 0 0 0.34616318e-01 -0.44317862e+00 -0.16010207e+01 0.00000000e+00
- 1 211 0 0 -0.30629879e+00 -0.34914076e+00 -0.10530624e+02 0.13957000e+00
- 1 -211 0 0 -0.14156043e+01 -0.68092837e+00 -0.28930146e+02 0.13957000e+00
- 2 310 446 447 -0.12604556e+01 0.11641199e+01 -0.91482950e+01 0.49767000e+00
- 1 22 0 0 -0.19541258e+00 0.60420925e-01 -0.11994362e+01 0.00000000e+00
- 1 22 0 0 -0.44405618e+00 0.26607048e+00 -0.42679608e+01 0.00000000e+00
- 2 111 448 449 -0.30168778e+00 -0.36296145e+00 -0.20775533e+01 0.13498000e+00
- 2 111 450 451 -0.10357574e+00 -0.52219489e+00 -0.11841325e+01 0.13498000e+00
- 1 22 0 0 0.11246719e+00 -0.33285689e+00 -0.94265045e+00 0.00000000e+00
- 1 22 0 0 -0.11550642e-01 0.53430106e-02 -0.79062506e-01 0.00000000e+00
- 1 22 0 0 0.41204702e-01 0.14171532e+00 -0.31674185e+00 0.00000000e+00
- 1 22 0 0 0.58675450e-01 0.24329873e+00 -0.22899562e+00 0.00000000e+00
- 1 22 0 0 -0.24094779e-01 -0.85870058e-01 -0.12839142e+00 0.00000000e+00
- 1 22 0 0 0.13408014e+00 -0.11573214e+00 -0.23952153e+00 0.00000000e+00
- 1 2112 0 0 0.59856233e+00 0.32145383e+00 -0.47184974e+01 0.93957000e+00
- 2 111 452 453 0.93233480e-01 0.16020109e+00 -0.12875682e+01 0.13498000e+00
- 1 22 0 0 -0.53243788e-01 -0.55992694e-01 -0.13453614e+00 0.00000000e+00
- 1 22 0 0 0.24741670e-01 0.55312441e-01 -0.11505763e+00 0.00000000e+00
- 1 22 0 0 0.14317019e+00 0.46372066e-01 -0.72184915e+00 0.00000000e+00
- 1 22 0 0 0.14611165e+00 -0.72717734e-01 -0.51234643e+00 0.00000000e+00
- 1 22 0 0 -0.15931156e-01 0.13767781e+00 -0.98157654e+00 0.00000000e+00
- 1 22 0 0 0.11687291e-01 -0.17053637e-01 -0.64145593e+00 0.00000000e+00
- 1 22 0 0 0.98644747e-02 0.20561418e+00 -0.17933700e+01 0.00000000e+00
- 1 22 0 0 0.96599019e-01 0.95658440e-01 -0.16859822e+01 0.00000000e+00
- 1 22 0 0 -0.34475104e-02 0.71227111e-01 -0.14958023e+00 0.00000000e+00
- 1 22 0 0 0.10651564e+00 0.10443161e+00 -0.87328996e+00 0.00000000e+00
- 2 111 454 455 0.13436463e+00 0.30116197e+00 -0.19533692e+01 0.13498000e+00
- 2 111 456 457 0.30722391e+00 0.27323944e+00 -0.27667248e+01 0.13498000e+00
- 2 111 458 459 0.18520652e+00 0.13352095e+00 -0.28920279e+01 0.13498000e+00
- 1 22 0 0 -0.33093071e-01 0.65961280e-01 -0.47246718e+00 0.00000000e+00
- 1 22 0 0 -0.33188096e-01 -0.82145321e-02 -0.16579212e+01 0.00000000e+00
- 1 22 0 0 0.14802384e+00 -0.37742826e-01 -0.58921023e+01 0.00000000e+00
- 1 22 0 0 0.36684867e-01 0.68391424e-01 -0.34154809e+01 0.00000000e+00
- 1 211 0 0 0.13614643e+00 -0.28675608e-01 -0.14757343e+01 0.13957000e+00
- 1 -211 0 0 0.33308817e+00 0.31592962e+00 -0.12065014e+02 0.13957000e+00
- 2 111 460 461 0.90678566e-01 -0.64946297e-01 -0.56442885e+01 0.13498000e+00
- 1 22 0 0 -0.64032539e-03 0.18675236e-01 -0.33734367e+01 0.00000000e+00
- 1 22 0 0 -0.29736928e+00 -0.19844644e-01 -0.18832381e+02 0.00000000e+00
- 1 22 0 0 -0.13374431e-01 0.38254812e-01 -0.49623293e+02 0.00000000e+00
- 1 22 0 0 -0.19962870e+00 0.14779956e+00 -0.96677267e+02 0.00000000e+00
- 1 22 0 0 -0.16534374e+00 0.84169088e-01 -0.14121419e+03 0.00000000e+00
- 1 22 0 0 -0.52105327e-01 0.38685185e-01 -0.15583475e+02 0.00000000e+00
- 1 -211 0 0 -0.23236307e+01 0.14388792e+01 0.21901154e+02 0.13957000e+00
- 1 211 0 0 -0.52668478e+01 0.29052502e+01 0.50046889e+02 0.13957000e+00
- 2 221 462 463 -0.13278315e+02 0.77802533e+01 0.12616602e+03 0.54745000e+00
- 1 -211 0 0 -0.23582299e+01 0.13636573e+01 0.20763090e+02 0.13957000e+00
- 1 211 0 0 -0.13630493e+01 0.10938821e+01 0.14883902e+02 0.13957000e+00
- 1 22 0 0 0.69427626e-01 0.28341029e-01 0.28427368e+00 0.00000000e+00
- 1 22 0 0 0.88733334e-01 0.90149282e-01 0.16901172e+01 0.00000000e+00
- 1 22 0 0 0.91903354e-02 0.37675033e+00 0.19337422e+01 0.00000000e+00
- 1 22 0 0 0.42828339e-01 0.26239377e+00 0.90294109e+00 0.00000000e+00
- 1 211 0 0 -0.18754590e+01 0.23994895e+01 -0.89917712e+02 0.13957000e+00
- 1 -211 0 0 -0.71586990e+00 0.13674445e+01 -0.47454373e+02 0.13957000e+00
- 2 111 464 465 -0.11313275e+01 0.94845990e+00 -0.71075798e+01 0.13498000e+00
- 2 111 466 467 -0.12912817e+00 0.21565996e+00 -0.20407152e+01 0.13498000e+00
- 1 22 0 0 -0.13586222e+00 -0.25905113e+00 -0.11332671e+01 0.00000000e+00
- 1 22 0 0 -0.16582556e+00 -0.10391032e+00 -0.94428624e+00 0.00000000e+00
- 1 22 0 0 -0.74635934e-01 -0.40173688e+00 -0.10263107e+01 0.00000000e+00
- 1 22 0 0 -0.28939801e-01 -0.12045801e+00 -0.15782181e+00 0.00000000e+00
- 1 22 0 0 -0.23329568e-01 0.60060498e-01 -0.21957324e+00 0.00000000e+00
- 1 22 0 0 0.11656305e+00 0.10014060e+00 -0.10679949e+01 0.00000000e+00
- 1 22 0 0 0.37511433e-01 0.54984922e-02 -0.37147721e+00 0.00000000e+00
- 1 22 0 0 0.96853193e-01 0.29566348e+00 -0.15818919e+01 0.00000000e+00
- 1 22 0 0 0.61645126e-01 0.43895504e-01 -0.24702754e+00 0.00000000e+00
- 1 22 0 0 0.24557879e+00 0.22934393e+00 -0.25196972e+01 0.00000000e+00
- 1 22 0 0 0.10336860e+00 0.10574995e+00 -0.24040207e+01 0.00000000e+00
- 1 22 0 0 0.81837916e-01 0.27771002e-01 -0.48800721e+00 0.00000000e+00
- 1 22 0 0 0.14015636e-01 -0.67907773e-01 -0.11670041e+01 0.00000000e+00
- 1 22 0 0 0.76662930e-01 0.29614761e-02 -0.44772844e+01 0.00000000e+00
- 1 22 0 0 -0.11103070e+02 0.66879350e+01 0.10518212e+03 0.00000000e+00
- 1 22 0 0 -0.21752447e+01 0.10923183e+01 0.20983898e+02 0.00000000e+00
- 1 22 0 0 -0.71861026e+00 0.67623031e+00 -0.48760408e+01 0.00000000e+00
- 1 22 0 0 -0.41271720e+00 0.27222959e+00 -0.22315390e+01 0.00000000e+00
- 1 22 0 0 -0.13985805e+00 0.17632108e+00 -0.13487258e+01 0.00000000e+00
- 1 22 0 0 0.10729871e-01 0.39338879e-01 -0.69198942e+00 0.00000000e+00
- 745
- 2 25 2 3 0.29879379e+01 0.22486789e+01 0.11735661e+03 0.12500647e+03
- 2 23 4 6 0.18828256e+02 0.12673434e+02 0.74464305e+02 0.53615405e+02
- 2 23 7 9 -0.15840318e+02 -0.10424755e+02 0.42892307e+02 0.61044892e+02
- 1 -11 0 0 -0.10561514e+02 0.17924643e+02 0.91873736e+01 0.51000000e-03
- 1 11 0 0 0.29389770e+02 -0.52512092e+01 0.65276931e+02 0.51000000e-03
- 1 22 0 0 0.81198130e-07 -0.54670932e-07 0.21812626e-06 0.00000000e+00
- 1 13 0 0 -0.31634914e+02 0.69147280e+01 0.42615527e+02 0.10566000e+00
- 1 -13 0 0 0.15794325e+02 -0.17338958e+02 0.27687013e+00 0.10566000e+00
- 1 22 0 0 0.27076749e-03 -0.52486672e-03 -0.90164827e-04 0.00000000e+00
- 2 4 85 85 -0.12348162e+00 -0.53857997e+01 0.11564887e+02 0.15000000e+01
- 2 21 85 85 0.15274336e+02 0.21344793e+02 0.37055205e+04 0.00000000e+00
- 2 21 85 85 -0.29049194e+01 0.22820629e+00 0.12479944e+04 0.00000000e+00
- 2 21 85 85 -0.49881804e+00 -0.86029158e+00 0.11134120e+03 0.00000000e+00
- 2 21 85 85 0.67569620e+00 -0.13398124e+01 0.39090077e+02 0.00000000e+00
- 2 21 85 85 0.20221420e+01 -0.19143400e+01 0.71059630e+02 0.00000000e+00
- 2 21 85 85 0.42052696e+01 -0.96687992e+00 0.61105246e+02 0.00000000e+00
- 2 21 85 85 0.28189835e+01 -0.53659273e+01 0.21096358e+02 0.00000000e+00
- 2 21 85 85 -0.15274336e+02 -0.21344793e+02 0.94527380e+02 0.00000000e+00
- 2 21 85 85 -0.74877379e+00 -0.21053026e+00 0.33929727e+01 0.00000000e+00
- 2 21 85 85 -0.25430849e+01 0.23401954e+01 0.33517775e+02 0.00000000e+00
- 2 21 85 85 -0.42052696e+01 0.96687992e+00 0.18036682e+02 0.00000000e+00
- 2 21 85 85 -0.36848905e+01 -0.66967089e-01 0.25575254e+01 0.00000000e+00
- 2 21 85 85 -0.55945152e+01 -0.29542589e+01 0.38879605e+00 0.00000000e+00
- 2 21 85 85 -0.28545215e+01 -0.41968260e+00 -0.82018359e+00 0.00000000e+00
- 2 21 85 85 0.74020949e-01 -0.32205614e+01 -0.59190663e+00 0.00000000e+00
- 2 21 85 85 -0.67569620e+00 0.13398124e+01 -0.19949844e+01 0.00000000e+00
- 2 21 85 85 -0.36590450e+01 0.15725627e+01 -0.10409230e+02 0.00000000e+00
- 2 21 85 85 -0.36426579e+00 0.45756555e+00 -0.20507712e+01 0.00000000e+00
- 2 21 85 85 -0.10168254e+01 0.98058626e+00 -0.65163195e+01 0.00000000e+00
- 2 21 85 85 -0.20221420e+01 0.19143400e+01 -0.29132139e+02 0.00000000e+00
- 2 21 85 85 -0.12574650e+02 0.65679557e+01 -0.18288233e+03 0.00000000e+00
- 2 21 85 85 -0.28189835e+01 0.53659273e+01 -0.18166026e+03 0.00000000e+00
- 2 21 85 85 0.35967680e+00 0.81642666e+00 -0.20702412e+01 0.00000000e+00
- 2 2101 85 85 -0.94464407e+00 0.26935511e+00 -0.28274947e+04 0.57933000e+00
- 2 -4 165 165 0.31657102e+01 -0.71904347e+01 0.20916636e+02 0.15000000e+01
- 2 21 165 165 0.13389466e+01 -0.19405167e+01 0.31283147e+01 0.00000000e+00
- 2 21 165 165 -0.60999474e+00 0.10207448e+01 0.38575069e+00 0.00000000e+00
- 2 21 165 165 -0.97981667e+00 0.69390592e-01 0.14209642e+01 0.00000000e+00
- 2 21 165 165 0.24113645e-01 0.15597925e+00 0.44257724e+00 0.00000000e+00
- 2 21 165 165 -0.28467190e+01 -0.12652892e+01 0.18235175e+02 0.00000000e+00
- 2 21 165 165 -0.99550607e+00 -0.12194115e+01 0.26199368e+02 0.00000000e+00
- 2 2 165 165 -0.13501618e+01 -0.26802400e+00 0.16399832e+03 0.33000000e+00
- 2 2 179 179 -0.64876521e+00 -0.65928241e+00 -0.14446191e+01 0.00000000e+00
- 2 21 179 179 -0.91102201e+00 -0.47216682e-01 -0.38632770e+01 0.00000000e+00
- 2 -2 179 179 0.64876521e+00 0.65928241e+00 -0.14584747e+03 0.00000000e+00
- 2 2 187 187 -0.38539157e+00 0.64149020e+00 0.26676679e+02 0.00000000e+00
- 2 -2 187 187 0.38539157e+00 -0.64149020e+00 0.56588571e+01 0.00000000e+00
- 2 2101 190 190 -0.12514239e+01 0.11315473e+00 0.71382094e+03 0.57933000e+00
- 2 21 190 190 -0.28691692e+00 -0.98452128e+00 0.24860045e+02 0.00000000e+00
- 2 21 190 190 0.38941468e+00 0.77253056e+00 0.10083633e+02 0.00000000e+00
- 2 21 190 190 0.16927647e+01 0.46811027e+01 0.15552539e+03 0.00000000e+00
- 2 21 190 190 -0.49155166e+00 0.45580071e+01 0.56650372e+02 0.00000000e+00
- 2 21 190 190 -0.13408461e+01 0.26160859e+01 0.38575523e+02 0.00000000e+00
- 2 21 190 190 0.31954445e+00 0.23262327e+00 0.12100494e+02 0.00000000e+00
- 2 21 190 190 -0.95130677e+00 0.10393163e+01 0.26952804e+02 0.00000000e+00
- 2 21 190 190 0.98132874e+00 -0.13963700e+00 0.24616717e+02 0.00000000e+00
- 2 21 190 190 -0.78169639e+00 0.23647328e-01 0.73947554e+00 0.00000000e+00
- 2 21 190 190 0.55945152e+01 0.29542589e+01 0.57921050e+02 0.00000000e+00
- 2 21 190 190 0.74877379e+00 0.21053026e+00 0.44121495e+01 0.00000000e+00
- 2 21 190 190 0.28545215e+01 0.41968260e+00 0.10468907e+02 0.00000000e+00
- 2 21 190 190 0.49881804e+00 0.86029158e+00 0.85579131e+00 0.00000000e+00
- 2 21 190 190 0.29049194e+01 -0.22820629e+00 0.41575273e+01 0.00000000e+00
- 2 21 190 190 0.10168254e+01 -0.98058626e+00 0.13360515e+01 0.00000000e+00
- 2 21 190 190 0.34133785e+01 -0.11639991e+01 0.25724745e+01 0.00000000e+00
- 2 21 190 190 0.36848905e+01 0.66967089e-01 -0.30561223e+00 0.00000000e+00
- 2 21 190 190 -0.11774796e+00 -0.10594259e+01 -0.26015466e+01 0.00000000e+00
- 2 21 190 190 0.36426579e+00 -0.45756555e+00 -0.14965019e+01 0.00000000e+00
- 2 21 190 190 0.25430849e+01 -0.23401954e+01 -0.93769784e+01 0.00000000e+00
- 2 21 190 190 0.12574650e+02 -0.65679557e+01 -0.48452160e+02 0.00000000e+00
- 2 21 190 190 0.91102201e+00 0.47216682e-01 -0.38294550e+01 0.00000000e+00
- 2 21 190 190 0.11858372e+01 0.26301908e+01 -0.16726042e+02 0.00000000e+00
- 2 21 190 190 0.36590450e+01 -0.15725627e+01 -0.22086792e+03 0.00000000e+00
- 2 21 190 190 -0.74020949e-01 0.32205614e+01 -0.42002148e+03 0.00000000e+00
- 2 21 190 190 -0.34133785e+01 0.11639991e+01 -0.53263165e+03 0.00000000e+00
- 2 21 190 190 0.11774796e+00 0.10594259e+01 -0.98611279e+03 0.00000000e+00
- 2 21 190 190 -0.11858372e+01 -0.26301908e+01 -0.52982316e+03 0.00000000e+00
- 2 21 190 190 0.77116476e-01 0.53808172e+00 -0.23452376e+00 0.00000000e+00
- 2 21 190 190 -0.43944766e+00 -0.98878771e+00 0.72751700e+00 0.00000000e+00
- 2 21 190 190 0.12144016e+01 -0.76173823e+00 0.73558231e+00 0.00000000e+00
- 2 21 190 190 0.59338218e+00 0.47543958e+00 -0.47525004e+02 0.00000000e+00
- 2 21 190 190 0.74301073e+00 0.22719919e+00 -0.22983826e+03 0.00000000e+00
- 2 2 190 190 -0.49383536e+00 0.28639649e+00 -0.37391248e+01 0.33000000e+00
- 2 21 273 273 -0.82003182e+00 -0.62725829e+00 -0.48872015e+03 0.00000000e+00
- 2 21 273 273 0.82003182e+00 0.62725829e+00 -0.13644295e+02 0.00000000e+00
- 2 92 86 164 -0.37078737e+02 0.11476206e+00 0.21755703e+04 0.84119595e+04
- 2 423 281 282 -0.12077269e+00 -0.53592483e+01 0.12509180e+02 0.20067000e+01
- 2 213 283 284 -0.14168421e+00 0.95846865e+00 0.49661219e+02 0.79003137e+00
- 2 -213 285 286 0.45108026e+00 -0.17190054e+00 0.68974361e+02 0.64518983e+00
- 1 211 0 0 -0.36137314e-01 0.17202836e+00 0.35416528e+02 0.13957000e+00
- 2 223 287 289 0.10808307e+01 0.29849090e+00 0.77195814e+02 0.76491181e+00
- 2 -213 290 291 0.81603954e-01 0.61052426e+00 0.12938431e+03 0.10757725e+01
- 2 323 292 293 0.32540796e+01 0.42471333e+01 0.73680110e+03 0.87262988e+00
- 2 -311 294 294 0.15253602e+00 0.67557888e+00 0.94427483e+02 0.49767000e+00
- 2 -213 295 296 0.28266150e+01 0.35974848e+01 0.64397663e+03 0.68976685e+00
- 2 213 297 298 0.20855048e+01 0.33221583e+01 0.58264544e+03 0.72131728e+00
- 1 2112 0 0 0.39377777e+01 0.59699510e+01 0.99003481e+03 0.93957000e+00
- 2 223 299 301 0.64128060e+00 0.97762643e+00 0.24693593e+03 0.77851632e+00
- 1 -2212 0 0 -0.78992700e+00 0.60291505e+00 0.32563115e+03 0.93827000e+00
- 1 211 0 0 0.17591381e+00 -0.49053300e+00 0.24878090e+03 0.13957000e+00
- 2 313 302 303 -0.80207902e-01 0.47170989e+00 0.22536060e+03 0.90180074e+00
- 2 -323 304 305 -0.48395630e+00 0.82892214e-01 0.14385022e+03 0.90926585e+00
- 2 113 306 307 -0.12494286e+01 -0.70180909e+00 0.32478245e+03 0.75434805e+00
- 1 211 0 0 0.53909656e+00 0.20431067e+00 0.83499042e+02 0.13957000e+00
- 1 -211 0 0 0.52893845e-01 -0.27466172e+00 0.41958904e+01 0.13957000e+00
- 2 223 308 309 0.91711534e+00 -0.76673912e+00 0.40159197e+02 0.77748604e+00
- 2 223 310 312 0.97320734e-01 -0.53562433e+00 0.49452144e+02 0.78761476e+00
- 1 2212 0 0 0.17329715e+01 -0.33418378e+00 0.37308037e+02 0.93827000e+00
- 1 -2212 0 0 0.68281481e+00 -0.93744754e+00 0.22682580e+02 0.93827000e+00
- 2 2114 313 314 0.74579504e+00 -0.11513875e+01 0.21741667e+02 0.12029112e+01
- 1 211 0 0 -0.32929908e+00 -0.57668003e-01 0.13533832e+01 0.13957000e+00
- 1 -2112 0 0 0.10082016e+01 -0.86333907e+00 0.23727738e+02 0.93957000e+00
- 2 113 315 316 0.24384967e+00 -0.43847244e+00 0.58143349e+01 0.77300206e+00
- 2 223 317 319 0.15259651e+01 -0.16125167e+00 0.15895966e+02 0.76180544e+00
- 2 111 320 321 0.11119242e+01 -0.10347054e+01 0.83434524e+01 0.13498000e+00
- 2 223 322 324 0.68335191e-01 -0.88706269e+00 0.10969103e+02 0.76559164e+00
- 2 -213 325 326 0.20129855e+00 -0.26042080e+01 0.90925271e+01 0.11640499e+01
- 2 213 327 328 -0.14081992e+00 -0.12007031e+01 0.66661006e+01 0.83193451e+00
- 2 221 329 331 -0.60603534e+01 -0.82837473e+01 0.34105365e+02 0.54745000e+00
- 2 -213 332 333 -0.43623786e+01 -0.56037680e+01 0.27780624e+02 0.66483361e+00
- 2 223 334 336 -0.29349157e+00 -0.93202084e+00 0.48028500e+01 0.77666752e+00
- 1 211 0 0 -0.21702287e+01 -0.25268453e+01 0.14688274e+02 0.13957000e+00
- 2 -213 337 338 -0.95968472e-01 -0.48967263e+00 0.27042151e+01 0.77523868e+00
- 2 113 339 340 -0.10070109e+01 -0.82435923e+00 0.66145651e+01 0.53225885e+00
- 2 221 341 343 -0.90412418e+00 -0.49500369e+00 0.34068204e+01 0.54745000e+00
- 2 2224 344 345 -0.20681385e+01 0.34300476e+00 0.15330520e+02 0.12856426e+01
- 2 223 346 348 -0.10775087e+01 0.73995550e+00 0.10174214e+02 0.76647678e+00
- 2 -2224 349 350 -0.12124533e+01 0.82250204e+00 0.11607499e+02 0.12139527e+01
- 1 211 0 0 -0.20621904e+01 0.15887720e+00 0.79872576e+01 0.13957000e+00
- 2 311 351 351 -0.15188874e+01 0.18225357e+00 0.16512103e+01 0.49767000e+00
- 2 331 352 354 -0.37680896e+00 -0.29486069e-01 0.10448821e+01 0.95814341e+00
- 2 -311 355 355 -0.24408513e+01 -0.84916156e+00 0.33374565e+00 0.49767000e+00
- 2 311 356 356 -0.97020361e+00 -0.29965452e+00 0.39530151e+00 0.49767000e+00
- 2 -311 357 357 -0.15941999e+01 -0.31000311e+00 0.55962007e+00 0.49767000e+00
- 2 223 358 360 -0.34829248e+00 0.30642759e-01 -0.15335975e+00 0.78687629e+00
- 2 311 361 361 -0.43421808e+01 -0.22005975e+01 0.15539273e+00 0.49767000e+00
- 1 -321 0 0 -0.26597482e+00 -0.81232414e+00 -0.22933120e+00 0.49360000e+00
- 2 221 362 364 -0.45009113e+00 -0.10379944e+01 -0.28871080e+00 0.54745000e+00
- 1 211 0 0 -0.89619227e-01 -0.44863216e+00 0.12623518e+00 0.13957000e+00
- 1 -211 0 0 -0.12676518e+00 -0.25587824e+00 -0.78891828e+00 0.13957000e+00
- 2 113 365 366 -0.86060584e-01 0.57298261e+00 -0.56650180e+00 0.78409250e+00
- 2 111 367 368 -0.14328715e+00 -0.38964197e-01 -0.36878212e+00 0.13498000e+00
- 2 223 369 371 -0.62502342e+00 0.35875761e+00 -0.13629165e+01 0.78094420e+00
- 1 321 0 0 -0.10954298e+01 0.84696054e+00 -0.36750611e+01 0.49360000e+00
- 1 -321 0 0 -0.38627518e+00 0.34975776e+00 -0.17655964e+01 0.49360000e+00
- 1 321 0 0 -0.13555096e+01 0.59087795e+00 -0.54905480e+01 0.49360000e+00
- 2 331 372 374 -0.12925161e+01 0.63789881e+00 -0.63524442e+01 0.95765296e+00
- 2 -313 375 376 -0.18753851e+01 0.18802084e+01 -0.23861007e+02 0.89963583e+00
- 2 -213 377 378 -0.13913886e+01 0.27478841e+00 -0.25851228e+02 0.78911809e+00
- 2 213 379 380 -0.38532437e+01 0.26059496e+01 -0.51620444e+02 0.67889431e+00
- 1 -211 0 0 -0.77608915e+00 0.39567939e+00 -0.47797409e+01 0.13957000e+00
- 2 213 381 382 -0.38860625e+01 0.26757112e+01 -0.69659054e+02 0.66655054e+00
- 1 -211 0 0 -0.22414975e+01 0.10496604e+01 -0.30761397e+02 0.13957000e+00
- 2 213 383 384 -0.74224256e+00 0.71966761e+00 -0.22119399e+02 0.65154641e+00
- 2 -213 385 386 -0.21280352e+01 0.27169050e+01 -0.97471784e+02 0.85125261e+00
- 2 213 387 388 0.56916418e-01 0.10023336e+01 -0.20381957e+02 0.74472161e+00
- 2 2114 389 390 -0.65438050e+00 0.53583222e+00 -0.32426827e+02 0.11185422e+01
- 2 221 391 392 -0.36195845e-01 0.92473892e+00 -0.15801261e+02 0.54745000e+00
- 2 -2114 393 394 -0.85620610e-01 0.48893732e+00 -0.10292071e+02 0.12693632e+01
- 2 113 395 396 0.13366090e+00 0.17100186e+00 -0.11781532e+02 0.81305087e+00
- 2 -213 397 398 -0.28202689e+00 -0.33759197e+00 -0.61706186e+02 0.79442950e+00
- 2 213 399 400 -0.16847629e+00 0.17630220e+00 -0.17683310e+03 0.78992755e+00
- 1 -211 0 0 0.58784051e+00 0.68384818e+00 -0.23945024e+03 0.13957000e+00
- 2 223 401 403 -0.85249247e+00 -0.36945998e+00 -0.47826068e+03 0.80106651e+00
- 1 2212 0 0 -0.30476652e+00 0.10356415e+00 -0.18510675e+04 0.93827000e+00
- 2 92 166 178 -0.22534278e+01 -0.10637561e+02 0.23472711e+03 0.40882821e+02
- 2 -423 404 405 0.27843041e+01 -0.49536940e+01 0.13227273e+02 0.20067000e+01
- 1 -321 0 0 0.55313147e+00 -0.16026400e+01 0.47019130e+01 0.49360000e+00
- 2 313 406 407 0.55272410e+00 -0.98793851e+00 0.38493933e+01 0.89351100e+00
- 1 211 0 0 -0.43810926e+00 0.47022826e-01 0.11817700e+00 0.13957000e+00
- 2 111 408 409 0.25394827e+00 -0.95013262e+00 0.71399202e+00 0.13498000e+00
- 1 -2212 0 0 -0.72280850e+00 -0.86606846e-01 0.67502017e+01 0.93827000e+00
- 2 223 410 412 -0.79771965e-01 0.96481901e-01 0.57335773e+00 0.77950880e+00
- 1 2212 0 0 -0.10739527e+01 -0.38720207e+00 0.27916798e+01 0.93827000e+00
- 2 -213 413 414 -0.21323342e+01 -0.87445342e+00 0.30420355e+02 0.86080793e+00
- 2 213 415 416 -0.66592432e+00 0.31566902e+00 0.26885832e+02 0.88002155e+00
- 1 -211 0 0 0.17805118e-01 -0.89239047e+00 0.34364286e+02 0.13957000e+00
- 1 211 0 0 -0.76740021e+00 -0.34450414e+00 0.85347171e+02 0.13957000e+00
- 2 113 417 418 -0.53503973e+00 -0.17173156e-01 0.24983476e+02 0.51047824e+00
- 2 92 180 186 -0.91102201e+00 -0.47216682e-01 -0.15115537e+03 0.10684884e+02
- 2 223 419 421 -0.89276502e-01 -0.53036580e+00 -0.30994795e+01 0.76782617e+00
- 2 221 422 424 -0.91465582e+00 -0.17120635e+00 -0.33044663e+01 0.54745000e+00
- 1 211 0 0 -0.21085267e+00 0.58924528e-01 -0.94098994e+01 0.13957000e+00
- 2 -213 425 426 0.61097600e+00 0.60414091e+00 -0.15713569e+02 0.72311915e+00
- 2 113 427 428 -0.77364846e+00 -0.54631784e+00 -0.45797867e+02 0.62096739e+00
- 1 211 0 0 0.17350198e+00 0.13725610e+00 -0.31011998e+02 0.13957000e+00
- 2 -213 429 430 0.29293346e+00 0.40035177e+00 -0.42818088e+02 0.81318619e+00
- 2 92 188 189 0.00000000e+00 0.00000000e+00 0.32335536e+02 0.19668586e+01
- 1 211 0 0 -0.26227902e+00 0.74548658e+00 0.25530142e+02 0.13957000e+00
- 1 -211 0 0 0.26227902e+00 -0.74548658e+00 0.68053944e+01 0.13957000e+00
- 2 92 191 272 0.37255249e+02 0.83213372e+01 -0.19064698e+04 0.37588243e+04
- 1 2212 0 0 -0.53708542e+00 -0.97125481e-01 0.37650456e+03 0.93827000e+00
- 2 111 431 432 -0.60131229e+00 0.99712038e-01 0.39783132e+02 0.13498000e+00
- 1 -211 0 0 0.14785409e+00 -0.46489271e+00 0.12989433e+03 0.13957000e+00
- 2 213 433 434 0.18316965e+00 -0.10677488e+00 0.59444231e+02 0.75251470e+00
- 1 -2212 0 0 0.41583151e-02 0.62867052e+00 0.99919972e+02 0.93827000e+00
- 1 2212 0 0 -0.30825088e-01 -0.15066237e+00 0.32793334e+02 0.93827000e+00
- 2 113 435 436 -0.35330964e+00 0.25051174e+00 0.13518261e+02 0.69666423e+00
- 2 113 437 438 0.69120919e+00 0.15473167e+01 0.63485076e+02 0.81664698e+00
- 2 -213 439 440 0.56828737e+00 0.21081683e+01 0.54638413e+02 0.72087625e+00
- 1 211 0 0 0.62887898e-01 0.88967319e+00 0.26339714e+02 0.13957000e+00
- 1 -211 0 0 0.29328888e+00 0.15288964e+01 0.18146868e+02 0.13957000e+00
- 2 213 441 442 -0.94715720e+00 0.13782114e+01 0.36829788e+02 0.10225064e+01
- 1 -2212 0 0 -0.12187834e+01 0.42386369e+01 0.58667742e+02 0.93827000e+00
- 2 111 443 444 0.95409247e+00 0.49849844e+00 0.36318281e+02 0.13498000e+00
- 1 2112 0 0 -0.67644332e+00 0.79588425e+00 0.10855028e+02 0.93957000e+00
- 2 113 445 446 0.27992993e+00 0.67761421e-01 0.50176198e+01 0.10282817e+01
- 2 113 447 448 0.12726130e+01 -0.18240542e+00 0.14215053e+02 0.68157596e+00
- 1 211 0 0 -0.22121151e+00 0.98510898e+00 0.50412869e+01 0.13957000e+00
- 2 223 449 451 0.83441003e+00 0.12808881e+00 0.69836871e+01 0.77644670e+00
- 2 -213 452 453 0.16357673e+01 0.60918051e+00 0.96855176e+01 0.94669221e+00
- 2 -311 454 454 0.19332385e+01 -0.62261255e-01 0.14962032e+02 0.49767000e+00
- 2 -3122 455 456 0.15348108e+01 0.15047814e+01 0.14350063e+02 0.11156800e+01
- 2 223 457 459 0.11308277e+00 0.41188895e+00 0.23043125e+01 0.78742091e+00
- 1 2212 0 0 0.16173766e+01 0.52860269e-01 0.60080657e+01 0.93827000e+00
- 2 -323 460 461 0.74502953e+00 -0.65151898e+00 0.19866643e+01 0.88710291e+00
- 2 313 462 463 0.31956869e+01 -0.14541255e+00 0.33882427e+01 0.89398555e+00
- 2 -311 464 464 0.29999757e+00 0.37424790e-02 0.30953853e+00 0.49767000e+00
- 1 321 0 0 0.13383372e+01 0.17995379e+00 0.38101309e+00 0.49360000e+00
- 2 -213 465 466 0.19351721e+01 -0.49373894e+00 0.22576186e+01 0.87294951e+00
- 1 211 0 0 0.42667763e+00 0.45757630e+00 0.11271529e+00 0.13957000e+00
- 2 -213 467 468 0.34619303e+00 -0.10544884e+01 -0.29764144e+00 0.78188311e+00
- 2 221 469 470 0.18499194e+01 -0.16634213e+00 0.91840812e+00 0.54745000e+00
- 1 -2112 0 0 0.37216522e+00 -0.53131824e+00 -0.33531244e+00 0.93957000e+00
- 2 223 471 473 0.15013045e+01 -0.78153055e+00 -0.25273107e+01 0.77649486e+00
- 1 2112 0 0 0.14502675e+01 -0.11925270e+01 -0.85536832e+01 0.93957000e+00
- 2 223 474 476 0.29381604e+01 -0.12343919e+01 -0.97682208e+01 0.78224828e+00
- 1 211 0 0 0.29239438e+01 -0.19267187e+01 -0.11500864e+02 0.13957000e+00
- 1 -2212 0 0 0.89399990e+00 -0.66611128e+00 -0.39016950e+01 0.93827000e+00
- 1 211 0 0 0.10722330e+01 -0.84329690e-01 -0.35374123e+01 0.13957000e+00
- 2 1114 477 478 0.25107299e+01 -0.18619999e+01 -0.12280331e+02 0.13161098e+01
- 2 213 479 480 0.23685036e+01 -0.61586662e+00 -0.84582019e+01 0.72903597e+00
- 2 -213 481 482 0.31845798e+00 0.48489548e-01 -0.44189681e+01 0.48911923e+00
- 2 -313 483 484 0.79888483e+00 0.82373985e-01 -0.56437903e+01 0.88631559e+00
- 2 323 485 486 0.68551945e+00 -0.35688612e-01 -0.73428882e+01 0.86930413e+00
- 2 113 487 488 0.78156180e-01 0.50085839e+00 -0.39953152e+01 0.77948033e+00
- 1 -321 0 0 0.10809459e+01 -0.45130103e-01 -0.11224694e+02 0.49360000e+00
- 1 321 0 0 0.57624979e+00 0.69820513e+00 -0.40141361e+02 0.49360000e+00
- 2 -323 489 490 0.76003575e+00 -0.76729675e+00 -0.37086940e+02 0.89665691e+00
- 2 313 491 492 0.20991686e+00 0.38585020e+00 -0.45921208e+02 0.88786631e+00
- 1 211 0 0 -0.22359277e+00 -0.17476439e+00 -0.68842654e+01 0.13957000e+00
- 1 -321 0 0 0.94368990e+00 -0.95225985e-03 -0.43423654e+02 0.49360000e+00
- 2 313 493 494 0.11498674e+01 -0.39339561e+00 -0.93342114e+02 0.87320150e+00
- 1 211 0 0 -0.14600952e-01 0.13581831e+01 -0.17113249e+03 0.13957000e+00
- 2 111 495 496 -0.37720184e+00 0.10813347e+00 -0.58843789e+02 0.13498000e+00
- 2 111 497 498 -0.17810252e+00 0.44070671e+00 -0.91118656e+02 0.13498000e+00
- 2 221 499 500 -0.46486084e+00 0.11723101e+01 -0.15251426e+03 0.54745000e+00
- 2 -213 501 502 -0.54732897e+00 -0.29267451e+00 -0.17917734e+03 0.88535541e+00
- 1 211 0 0 -0.69512240e+00 0.10524834e+01 -0.24532972e+03 0.13957000e+00
- 1 -211 0 0 -0.41465914e+00 0.70314741e+00 -0.34218169e+03 0.13957000e+00
- 1 211 0 0 -0.65742962e+00 0.16411474e+00 -0.11726558e+03 0.13957000e+00
- 2 -213 503 504 -0.10486708e+00 -0.31699413e+00 -0.35305697e+03 0.71811300e+00
- 1 211 0 0 -0.25933192e+00 -0.19695476e+00 -0.68214241e+02 0.13957000e+00
- 2 -213 505 506 -0.42336220e+00 0.24291324e-01 -0.27596361e+03 0.37806689e+00
- 2 113 507 508 -0.18477578e-01 -0.32752968e+00 -0.71563426e+02 0.71002926e+00
- 2 -311 509 509 0.25476633e+00 -0.67954109e+00 -0.12176478e+03 0.49767000e+00
- 2 -3214 510 511 -0.25963259e+00 -0.10892732e+00 -0.85868177e+02 0.13932395e+01
- 1 211 0 0 -0.12794193e+00 -0.76085702e+00 -0.27777854e+02 0.13957000e+00
- 2 1114 512 513 -0.74108919e+00 0.60648752e+00 -0.49132015e+02 0.12362686e+01
- 1 211 0 0 0.58904971e+00 -0.84757943e+00 -0.13179820e+00 0.13957000e+00
- 2 -213 514 515 0.72462138e+00 -0.30729284e-01 0.36273587e+00 0.52254146e+00
- 2 111 516 517 -0.76988926e+00 -0.26763465e+00 -0.20181698e+00 0.13498000e+00
- 2 213 518 519 0.10466994e+01 -0.55083987e+00 0.18439368e+00 0.91530811e+00
- 2 113 520 521 0.27501961e+00 0.21204987e+00 -0.50484950e+01 0.38890629e+00
- 2 113 522 523 -0.23422286e-01 -0.23563199e+00 -0.68845604e+01 0.60788547e+00
- 1 -211 0 0 -0.29904899e+00 0.16729889e+00 -0.78838831e+02 0.13957000e+00
- 2 223 524 526 0.43353829e+00 -0.28432635e+00 -0.27161741e+02 0.77980796e+00
- 1 211 0 0 0.11248785e+00 0.29583209e+00 -0.73091563e+01 0.13957000e+00
- 2 223 527 529 -0.19368560e-01 0.20621633e+00 -0.14106015e+02 0.78304905e+00
- 2 223 530 532 0.15611563e+00 -0.21153608e+00 -0.99809580e+02 0.78679821e+00
- 1 -211 0 0 0.20334759e+00 0.38503031e+00 -0.13143122e+02 0.13957000e+00
- 2 213 533 534 -0.74384884e-01 0.41845802e+00 -0.98340169e+01 0.86669358e+00
- 2 111 535 536 -0.15677559e+00 -0.74905229e-01 -0.18117841e+02 0.13498000e+00
- 2 92 274 280 0.00000000e+00 0.00000000e+00 -0.50236444e+03 0.63471599e+01
- 2 -311 537 537 -0.66251205e+00 0.19657140e+00 -0.15912421e+03 0.49767000e+00
- 2 311 538 538 -0.10978780e-01 -0.97793316e-01 -0.14133600e+02 0.49767000e+00
- 2 -323 539 540 0.34318100e+00 -0.23227607e+00 -0.16834241e+03 0.97732586e+00
- 2 111 541 542 -0.49474372e+00 0.19543528e+00 -0.16168310e+02 0.13498000e+00
- 2 111 543 544 -0.82077535e-01 0.52710224e-01 -0.36564098e+01 0.13498000e+00
- 2 111 545 546 0.37582118e+00 0.45420683e+00 -0.10026562e+03 0.13498000e+00
- 1 321 0 0 0.53130991e+00 -0.56885435e+00 -0.40673883e+02 0.49360000e+00
- 2 421 547 548 -0.10480364e+00 -0.48707901e+01 0.11444937e+02 0.18645000e+01
- 2 111 549 550 -0.15969050e-01 -0.48845821e+00 0.10642430e+01 0.13498000e+00
- 1 211 0 0 -0.78831376e-01 0.66710401e+00 0.16673062e+02 0.13957000e+00
- 2 111 551 552 -0.62852831e-01 0.29136464e+00 0.32988158e+02 0.13498000e+00
- 1 -211 0 0 0.49247581e+00 -0.52942921e-01 0.62380613e+02 0.13957000e+00
- 2 111 553 554 -0.41395551e-01 -0.11895762e+00 0.65937483e+01 0.13498000e+00
- 1 -211 0 0 0.83136576e+00 0.11431758e+00 0.39678890e+02 0.13957000e+00
- 1 211 0 0 0.20919163e+00 0.17705508e+00 0.21611312e+02 0.13957000e+00
- 2 111 555 556 0.40273340e-01 0.71182503e-02 0.15905612e+02 0.13498000e+00
- 1 -211 0 0 0.54401421e+00 0.29770256e+00 0.53776531e+02 0.13957000e+00
- 2 111 557 558 -0.46241026e+00 0.31282169e+00 0.75607776e+02 0.13498000e+00
- 1 321 0 0 0.27873133e+01 0.32463772e+01 0.59240422e+03 0.49360000e+00
- 2 111 559 560 0.46676627e+00 0.10007560e+01 0.14439687e+03 0.13498000e+00
- 2 310 561 562 0.15253602e+00 0.67557888e+00 0.94427483e+02 0.49767000e+00
- 1 -211 0 0 0.94926766e+00 0.13926144e+01 0.19953222e+03 0.13957000e+00
- 2 111 563 564 0.18773474e+01 0.22048704e+01 0.44444441e+03 0.13498000e+00
- 1 211 0 0 0.82446120e+00 0.77118559e+00 0.17453962e+03 0.13957000e+00
- 2 111 565 566 0.12610436e+01 0.25509727e+01 0.40810582e+03 0.13498000e+00
- 1 211 0 0 0.30816140e-01 0.25631411e+00 0.37347552e+02 0.13957000e+00
- 1 -211 0 0 0.54065047e+00 0.59408959e+00 0.12772371e+03 0.13957000e+00
- 2 111 567 568 0.69813991e-01 0.12722274e+00 0.81864673e+02 0.13498000e+00
- 1 321 0 0 -0.33326496e+00 0.37031598e+00 0.13900057e+03 0.49360000e+00
- 1 -211 0 0 0.25305706e+00 0.10139391e+00 0.86360029e+02 0.13957000e+00
- 1 -321 0 0 -0.51239397e+00 0.27258836e+00 0.12370505e+03 0.49360000e+00
- 2 111 569 570 0.28437668e-01 -0.18969615e+00 0.20145163e+02 0.13498000e+00
- 1 -211 0 0 -0.15778028e+00 0.10286373e+00 0.31709649e+02 0.13957000e+00
- 1 211 0 0 -0.10916483e+01 -0.80467282e+00 0.29307280e+03 0.13957000e+00
- 1 22 0 0 0.46530131e+00 0.63183916e-01 0.14234367e+02 0.00000000e+00
- 2 111 571 572 0.45181403e+00 -0.82992303e+00 0.25924831e+02 0.13498000e+00
- 1 -211 0 0 0.26854032e+00 -0.34346506e+00 0.25716256e+02 0.13957000e+00
- 1 211 0 0 -0.24298109e-02 -0.22888039e+00 0.10744648e+02 0.13957000e+00
- 2 111 573 574 -0.16878978e+00 0.36721121e-01 0.12991240e+02 0.13498000e+00
- 1 2112 0 0 0.77551365e+00 -0.11488432e+01 0.19298268e+02 0.93957000e+00
- 2 111 575 576 -0.29718606e-01 -0.25443484e-02 0.24433999e+01 0.13498000e+00
- 1 -211 0 0 -0.11097925e+00 -0.48264255e+00 0.39584504e+01 0.13957000e+00
- 1 211 0 0 0.35482892e+00 0.44170114e-01 0.18558845e+01 0.13957000e+00
- 1 -211 0 0 0.52649908e+00 0.13336174e+00 0.67582011e+01 0.13957000e+00
- 1 211 0 0 0.75515541e+00 -0.30746051e+00 0.74592135e+01 0.13957000e+00
- 2 111 577 578 0.24431059e+00 0.12847102e-01 0.16785518e+01 0.13498000e+00
- 1 22 0 0 0.24807094e+00 -0.18382946e+00 0.14712858e+01 0.00000000e+00
- 1 22 0 0 0.86385331e+00 -0.85087597e+00 0.68721666e+01 0.00000000e+00
- 1 -211 0 0 0.12020407e+00 -0.27229263e+00 0.14444060e+01 0.13957000e+00
- 1 211 0 0 -0.13147494e-01 -0.45391920e+00 0.57201511e+01 0.13957000e+00
- 2 111 579 580 -0.38721383e-01 -0.16085086e+00 0.38045457e+01 0.13498000e+00
- 1 -211 0 0 0.10529096e+00 -0.14418558e+01 0.30769286e+01 0.13957000e+00
- 2 111 581 582 0.96007595e-01 -0.11623523e+01 0.60155984e+01 0.13498000e+00
- 1 211 0 0 -0.16156117e+00 -0.33605166e+00 0.39962291e+01 0.13957000e+00
- 2 111 583 584 0.20741251e-01 -0.86465139e+00 0.26698715e+01 0.13498000e+00
- 2 111 585 586 -0.26145495e+01 -0.37730188e+01 0.15399504e+02 0.13498000e+00
- 2 111 587 588 -0.12510205e+01 -0.16271956e+01 0.70506924e+01 0.13498000e+00
- 2 111 589 590 -0.21947833e+01 -0.28835329e+01 0.11655169e+02 0.13498000e+00
- 1 -211 0 0 -0.33983713e+01 -0.39664956e+01 0.20707970e+02 0.13957000e+00
- 2 111 591 593 -0.96400732e+00 -0.16372724e+01 0.70726540e+01 0.13498000e+00
- 1 -211 0 0 -0.10404077e+00 -0.16566924e+00 0.49519226e+00 0.13957000e+00
- 1 211 0 0 0.30374883e-01 -0.75296591e-01 0.15135935e+01 0.13957000e+00
- 2 111 594 595 -0.21982568e+00 -0.69105502e+00 0.27940643e+01 0.13498000e+00
- 1 -211 0 0 0.24283256e-01 -0.62446747e+00 0.14851982e+01 0.13957000e+00
- 2 111 596 597 -0.12025173e+00 0.13479485e+00 0.12190169e+01 0.13498000e+00
- 1 -211 0 0 -0.61484705e+00 -0.68802190e+00 0.37435265e+01 0.13957000e+00
- 1 211 0 0 -0.39216383e+00 -0.13633733e+00 0.28710386e+01 0.13957000e+00
- 2 111 598 599 -0.58714991e+00 -0.29282176e+00 0.20884090e+01 0.13498000e+00
- 2 111 600 601 -0.12529998e+00 -0.12680724e+00 0.41257225e+00 0.13498000e+00
- 2 111 602 603 -0.19167429e+00 -0.75374695e-01 0.90583906e+00 0.13498000e+00
- 1 2212 0 0 -0.16056908e+01 0.40880162e+00 0.10482133e+02 0.93827000e+00
- 1 211 0 0 -0.46244770e+00 -0.65796866e-01 0.48483875e+01 0.13957000e+00
- 1 -211 0 0 -0.65160326e-01 0.23762037e+00 0.18480304e+01 0.13957000e+00
- 1 211 0 0 -0.65757800e+00 0.45093957e+00 0.65490450e+01 0.13957000e+00
- 2 111 604 605 -0.35477038e+00 0.51395572e-01 0.17771390e+01 0.13498000e+00
- 1 -2212 0 0 -0.85256959e+00 0.58195463e+00 0.97891970e+01 0.93827000e+00
- 1 -211 0 0 -0.35988368e+00 0.24054742e+00 0.18183022e+01 0.13957000e+00
- 1 130 0 0 -0.15188874e+01 0.18225357e+00 0.16512103e+01 0.49767000e+00
- 1 211 0 0 -0.22139028e+00 -0.94550666e-01 0.46194541e+00 0.13957000e+00
- 1 -211 0 0 -0.59221470e-01 -0.16697012e-01 0.18327728e+00 0.13957000e+00
- 2 221 606 607 -0.96197209e-01 0.81761609e-01 0.39965941e+00 0.54745000e+00
- 1 130 0 0 -0.24408513e+01 -0.84916156e+00 0.33374565e+00 0.49767000e+00
- 1 130 0 0 -0.97020361e+00 -0.29965452e+00 0.39530151e+00 0.49767000e+00
- 1 130 0 0 -0.15941999e+01 -0.31000311e+00 0.55962007e+00 0.49767000e+00
- 1 -211 0 0 0.11034706e+00 -0.15615359e+00 -0.41460505e-01 0.13957000e+00
- 1 211 0 0 -0.14989213e+00 0.17613085e+00 -0.12333025e+00 0.13957000e+00
- 2 111 608 609 -0.30874741e+00 0.10665497e-01 0.11431001e-01 0.13498000e+00
- 2 310 610 611 -0.43421808e+01 -0.22005975e+01 0.15539273e+00 0.49767000e+00
- 2 111 612 613 0.77118762e-03 -0.20896616e+00 -0.11971504e+00 0.13498000e+00
- 2 111 614 615 -0.20621011e+00 -0.53620440e+00 -0.14706732e+00 0.13498000e+00
- 2 111 616 617 -0.24465221e+00 -0.29282383e+00 -0.21928437e-01 0.13498000e+00
- 1 211 0 0 -0.27111460e+00 0.63293790e+00 -0.28533659e+00 0.13957000e+00
- 1 -211 0 0 0.18505401e+00 -0.59955288e-01 -0.28116521e+00 0.13957000e+00
- 1 22 0 0 -0.44656657e-01 0.34223001e-01 -0.21917656e+00 0.00000000e+00
- 1 22 0 0 -0.98630491e-01 -0.73187198e-01 -0.14960556e+00 0.00000000e+00
- 1 -211 0 0 -0.56021648e-01 0.20605777e+00 -0.19210363e+00 0.13957000e+00
- 1 211 0 0 -0.43771069e+00 0.28982177e+00 -0.90446065e+00 0.13957000e+00
- 2 111 618 619 -0.13129108e+00 -0.13712192e+00 -0.26635218e+00 0.13498000e+00
- 1 -211 0 0 -0.90896898e-01 -0.14340969e-02 -0.67352010e+00 0.13957000e+00
- 1 211 0 0 -0.53941739e+00 0.24352506e+00 -0.19199522e+01 0.13957000e+00
- 2 221 620 622 -0.66220180e+00 0.39580785e+00 -0.37589719e+01 0.54745000e+00
- 1 -321 0 0 -0.17298562e+01 0.15471835e+01 -0.18783159e+02 0.49360000e+00
- 1 211 0 0 -0.14552896e+00 0.33302493e+00 -0.50778485e+01 0.13957000e+00
- 1 -211 0 0 -0.36743057e+00 -0.17524118e+00 -0.10910257e+02 0.13957000e+00
- 2 111 623 624 -0.10239580e+01 0.45002959e+00 -0.14940971e+02 0.13498000e+00
- 1 211 0 0 -0.15201683e+00 0.10806850e+00 -0.23650301e+01 0.13957000e+00
- 2 111 625 626 -0.37012269e+01 0.24978811e+01 -0.49255413e+02 0.13498000e+00
- 1 211 0 0 -0.35725254e+01 0.25646101e+01 -0.65261681e+02 0.13957000e+00
- 2 111 627 628 -0.31353713e+00 0.11110115e+00 -0.43973732e+01 0.13498000e+00
- 1 211 0 0 -0.30727927e+00 0.68316836e+00 -0.14584678e+02 0.13957000e+00
- 2 111 629 630 -0.43496329e+00 0.36499247e-01 -0.75347208e+01 0.13498000e+00
- 1 -211 0 0 -0.18502077e+01 0.26540079e+01 -0.89470067e+02 0.13957000e+00
- 2 111 631 632 -0.27782755e+00 0.62897138e-01 -0.80017171e+01 0.13498000e+00
- 1 211 0 0 0.26791272e+00 0.56844104e+00 -0.71820511e+01 0.13957000e+00
- 2 111 633 634 -0.21099630e+00 0.43389252e+00 -0.13199906e+02 0.13498000e+00
- 1 2112 0 0 -0.57045819e+00 0.56470825e+00 -0.27708968e+02 0.93957000e+00
- 2 111 635 636 -0.83922307e-01 -0.28876033e-01 -0.47178588e+01 0.13498000e+00
- 1 22 0 0 0.11770104e+00 -0.11290755e-01 -0.12191717e+01 0.00000000e+00
- 1 22 0 0 -0.15389689e+00 0.93602968e+00 -0.14582089e+02 0.00000000e+00
- 1 -2112 0 0 0.74539314e-01 0.36155769e+00 -0.61233797e+01 0.93957000e+00
- 2 111 637 638 -0.16015992e+00 0.12737963e+00 -0.41686911e+01 0.13498000e+00
- 1 211 0 0 -0.18508648e+00 -0.20287662e+00 -0.31872203e+01 0.13957000e+00
- 1 -211 0 0 0.31874738e+00 0.37387848e+00 -0.85943114e+01 0.13957000e+00
- 1 -211 0 0 -0.66232886e-01 -0.51472448e-03 -0.23012008e+01 0.13957000e+00
- 2 111 639 640 -0.21579401e+00 -0.33707725e+00 -0.59404986e+02 0.13498000e+00
- 1 211 0 0 0.27935238e+00 -0.11752784e-01 -0.81573213e+02 0.13957000e+00
- 2 111 641 642 -0.44782867e+00 0.18805498e+00 -0.95259886e+02 0.13498000e+00
- 1 211 0 0 -0.14849261e+00 -0.12200691e-01 -0.32125594e+02 0.13957000e+00
- 1 -211 0 0 -0.17049790e+00 -0.27030268e+00 -0.18799331e+03 0.13957000e+00
- 2 111 643 644 -0.53350196e+00 -0.86956610e-01 -0.25814177e+03 0.13498000e+00
- 2 -421 645 649 0.26924217e+01 -0.48022389e+01 0.13044204e+02 0.18645000e+01
- 1 22 0 0 0.91882390e-01 -0.15145507e+00 0.18306956e+00 0.00000000e+00
- 1 321 0 0 0.21908928e+00 -0.23265030e+00 0.12880624e+01 0.49360000e+00
- 1 -211 0 0 0.33363482e+00 -0.75528820e+00 0.25613310e+01 0.13957000e+00
- 1 22 0 0 0.61629773e-01 -0.33379145e+00 0.17579073e+00 0.00000000e+00
- 1 22 0 0 0.19231850e+00 -0.61634117e+00 0.53820129e+00 0.00000000e+00
- 1 211 0 0 0.27072496e-02 -0.42515711e-01 0.16832623e+00 0.13957000e+00
- 1 -211 0 0 -0.20669206e+00 0.29688563e+00 0.20288699e+00 0.13957000e+00
- 2 111 650 651 0.12421285e+00 -0.15788802e+00 0.20214450e+00 0.13498000e+00
- 1 -211 0 0 -0.13782944e+01 -0.96339230e+00 0.20357409e+02 0.13957000e+00
- 2 111 652 653 -0.75403979e+00 0.88938879e-01 0.10062945e+02 0.13498000e+00
- 1 211 0 0 -0.29406587e+00 -0.21545739e+00 0.53095469e+01 0.13957000e+00
- 2 111 654 655 -0.37185846e+00 0.53112641e+00 0.21576285e+02 0.13498000e+00
- 1 211 0 0 -0.16947884e+00 0.62827118e-01 0.36095731e+01 0.13957000e+00
- 1 -211 0 0 -0.36556089e+00 -0.80000274e-01 0.21373903e+02 0.13957000e+00
- 1 -211 0 0 -0.91203396e-01 -0.65356344e-01 -0.17298871e+01 0.13957000e+00
- 1 211 0 0 -0.12868093e+00 -0.27919076e+00 -0.88254303e+00 0.13957000e+00
- 2 111 656 657 0.13060782e+00 -0.18581869e+00 -0.48704933e+00 0.13498000e+00
- 1 -211 0 0 -0.35173186e+00 -0.84524171e-01 -0.13112872e+01 0.13957000e+00
- 1 211 0 0 -0.33939041e+00 0.25849392e-01 -0.14489389e+01 0.13957000e+00
- 2 111 658 659 -0.22353355e+00 -0.11253157e+00 -0.54424019e+00 0.13498000e+00
- 1 -211 0 0 0.69728121e+00 0.48180033e+00 -0.14300455e+02 0.13957000e+00
- 2 111 660 661 -0.86305206e-01 0.12234058e+00 -0.14131138e+01 0.13498000e+00
- 1 211 0 0 -0.69067445e+00 -0.58793209e+00 -0.42335904e+02 0.13957000e+00
- 1 -211 0 0 -0.82974010e-01 0.41614247e-01 -0.34619628e+01 0.13957000e+00
- 1 -211 0 0 0.12565864e+00 0.48326374e+00 -0.39114363e+02 0.13957000e+00
- 2 111 662 663 0.16727481e+00 -0.82911973e-01 -0.37037249e+01 0.13498000e+00
- 1 22 0 0 -0.34791301e+00 0.67557328e-01 0.18771002e+02 0.00000000e+00
- 1 22 0 0 -0.25339928e+00 0.32154710e-01 0.21012130e+02 0.00000000e+00
- 1 211 0 0 -0.25276299e+00 0.49078989e-01 0.26353423e+02 0.13957000e+00
- 2 111 664 665 0.43593264e+00 -0.15585387e+00 0.33090808e+02 0.13498000e+00
- 1 211 0 0 -0.64602715e-01 -0.86259901e-01 0.94752692e+00 0.13957000e+00
- 1 -211 0 0 -0.28870693e+00 0.33677165e+00 0.12570734e+02 0.13957000e+00
- 1 211 0 0 0.17915825e+00 0.60667709e+00 0.12820729e+02 0.13957000e+00
- 1 -211 0 0 0.51205094e+00 0.94063961e+00 0.50664347e+02 0.13957000e+00
- 1 -211 0 0 0.31463975e+00 0.14726188e+01 0.43689725e+02 0.13957000e+00
- 2 111 666 667 0.25364761e+00 0.63554952e+00 0.10948688e+02 0.13498000e+00
- 1 211 0 0 -0.11363746e+00 -0.13505461e+00 0.48234786e+01 0.13957000e+00
- 2 111 668 669 -0.83351974e+00 0.15132660e+01 0.32006310e+02 0.13498000e+00
- 1 22 0 0 0.73383881e+00 0.41114033e+00 0.29895182e+02 0.00000000e+00
- 1 22 0 0 0.22025365e+00 0.87358105e-01 0.64230998e+01 0.00000000e+00
- 1 211 0 0 0.50990545e-01 0.46870452e+00 0.14775531e+01 0.13957000e+00
- 1 -211 0 0 0.22893938e+00 -0.40094310e+00 0.35400668e+01 0.13957000e+00
- 1 211 0 0 0.40686761e+00 0.21296823e+00 0.38685541e+01 0.13957000e+00
- 1 -211 0 0 0.86574536e+00 -0.39537365e+00 0.10346498e+02 0.13957000e+00
- 1 -211 0 0 0.38483212e+00 0.66470428e-01 0.24171396e+01 0.13957000e+00
- 1 211 0 0 0.51253337e+00 -0.30831219e-01 0.38752282e+01 0.13957000e+00
- 2 111 670 671 -0.62955455e-01 0.92449604e-01 0.69131922e+00 0.13498000e+00
- 1 -211 0 0 0.97700493e+00 -0.10749046e+00 0.43666108e+01 0.13957000e+00
- 2 111 672 673 0.65876239e+00 0.71667098e+00 0.53189068e+01 0.13498000e+00
- 2 310 674 675 0.19332385e+01 -0.62261255e-01 0.14962032e+02 0.49767000e+00
- 1 -2112 0 0 0.12557698e+01 0.13302062e+01 0.11736581e+02 0.93957000e+00
- 2 111 676 677 0.27904104e+00 0.17457526e+00 0.26134825e+01 0.13498000e+00
- 1 211 0 0 0.55759689e-01 0.61102304e-01 0.74307283e-01 0.13957000e+00
- 1 -211 0 0 0.12859973e+00 0.19928436e+00 0.76163454e+00 0.13957000e+00
- 2 111 678 679 -0.71276654e-01 0.15150228e+00 0.14683707e+01 0.13498000e+00
- 1 -321 0 0 0.57839230e+00 -0.53930735e+00 0.97061835e+00 0.49360000e+00
- 2 111 680 681 0.16663723e+00 -0.11221163e+00 0.10160459e+01 0.13498000e+00
- 1 321 0 0 0.25233825e+01 -0.25611197e+00 0.23352277e+01 0.49360000e+00
- 1 -211 0 0 0.67230439e+00 0.11069942e+00 0.10530150e+01 0.13957000e+00
- 2 310 682 683 0.29999757e+00 0.37424790e-02 0.30953853e+00 0.49767000e+00
- 1 -211 0 0 0.13196571e+01 -0.23056967e+00 0.19935690e+01 0.13957000e+00
- 2 111 684 685 0.61551499e+00 -0.26316927e+00 0.26404956e+00 0.13498000e+00
- 1 -211 0 0 -0.18047415e+00 -0.30782981e+00 -0.26459982e+00 0.13957000e+00
- 2 111 686 687 0.52666718e+00 -0.74665864e+00 -0.33041619e-01 0.13498000e+00
- 1 22 0 0 0.81346357e+00 0.91625571e-01 0.64076492e+00 0.00000000e+00
- 1 22 0 0 0.10364559e+01 -0.25796770e+00 0.27764321e+00 0.00000000e+00
- 1 -211 0 0 0.27741179e+00 -0.20525325e+00 -0.32585398e+00 0.13957000e+00
- 1 211 0 0 0.89979533e+00 -0.17215082e+00 -0.13084254e+01 0.13957000e+00
- 2 111 688 689 0.32409740e+00 -0.40412648e+00 -0.89303133e+00 0.13498000e+00
- 1 211 0 0 0.79146034e+00 -0.14953331e+00 -0.20947285e+01 0.13957000e+00
- 1 -211 0 0 0.12042723e+01 -0.39119182e+00 -0.41218715e+01 0.13957000e+00
- 2 111 690 691 0.94242778e+00 -0.69366677e+00 -0.35516208e+01 0.13498000e+00
- 1 2112 0 0 0.20428141e+01 -0.17619365e+01 -0.11033681e+02 0.93957000e+00
- 1 -211 0 0 0.46791584e+00 -0.10006338e+00 -0.12466494e+01 0.13957000e+00
- 1 211 0 0 0.23232010e+01 -0.61589692e+00 -0.80843432e+01 0.13957000e+00
- 2 111 692 693 0.45302521e-01 0.30298008e-04 -0.37385868e+00 0.13498000e+00
- 1 -211 0 0 0.84424243e-01 0.20515663e+00 -0.24570198e+01 0.13957000e+00
- 2 111 694 695 0.23403374e+00 -0.15666709e+00 -0.19619484e+01 0.13498000e+00
- 1 -321 0 0 0.83281582e+00 0.11903433e+00 -0.53692780e+01 0.49360000e+00
- 1 211 0 0 -0.33930992e-01 -0.36660346e-01 -0.27451233e+00 0.13957000e+00
- 2 311 696 696 0.20284762e+00 0.16118236e+00 -0.41570704e+01 0.49767000e+00
- 1 211 0 0 0.48267183e+00 -0.19687097e+00 -0.31858178e+01 0.13957000e+00
- 1 211 0 0 0.32561992e+00 0.32423708e+00 -0.32479591e+01 0.13957000e+00
- 1 -211 0 0 -0.24746374e+00 0.17662131e+00 -0.74735606e+00 0.13957000e+00
- 2 -311 697 697 0.21751120e+00 -0.26605750e+00 -0.21414182e+02 0.49767000e+00
- 1 -211 0 0 0.54252455e+00 -0.50123925e+00 -0.15672758e+02 0.13957000e+00
- 1 321 0 0 0.41606713e+00 0.22827861e+00 -0.35068159e+02 0.49360000e+00
- 1 -211 0 0 -0.20615027e+00 0.15757159e+00 -0.10853049e+02 0.13957000e+00
- 1 321 0 0 0.75432131e+00 -0.43054951e-02 -0.64715996e+02 0.49360000e+00
- 1 -211 0 0 0.39554606e+00 -0.38909012e+00 -0.28626118e+02 0.13957000e+00
- 1 22 0 0 -0.20271582e+00 0.19411278e-01 -0.37943812e+02 0.00000000e+00
- 1 22 0 0 -0.17448602e+00 0.88722191e-01 -0.20899976e+02 0.00000000e+00
- 1 22 0 0 -0.19332295e+00 0.37619309e+00 -0.82542285e+02 0.00000000e+00
- 1 22 0 0 0.15220430e-01 0.64513624e-01 -0.85763713e+01 0.00000000e+00
- 1 22 0 0 -0.23934562e+00 0.14716997e+00 -0.19089839e+02 0.00000000e+00
- 1 22 0 0 -0.22551522e+00 0.10251401e+01 -0.13342442e+03 0.00000000e+00
- 1 -211 0 0 -0.76448108e-01 0.27386307e+00 -0.40412049e+02 0.13957000e+00
- 2 111 698 699 -0.47088086e+00 -0.56653758e+00 -0.13876529e+03 0.13498000e+00
- 1 -211 0 0 0.14675652e+00 0.13180569e+00 -0.78155840e+02 0.13957000e+00
- 2 111 700 701 -0.25162360e+00 -0.44879982e+00 -0.27490113e+03 0.13498000e+00
- 1 -211 0 0 -0.39713145e+00 0.48775043e-02 -0.22587189e+03 0.13957000e+00
- 2 111 702 703 -0.26230746e-01 0.19413819e-01 -0.50091721e+02 0.13498000e+00
- 1 211 0 0 0.70787208e-01 -0.15901141e+00 -0.64382658e+02 0.13957000e+00
- 1 -211 0 0 -0.89264786e-01 -0.16851827e+00 -0.71807673e+01 0.13957000e+00
- 2 310 704 705 0.25476633e+00 -0.67954109e+00 -0.12176478e+03 0.49767000e+00
- 2 -3122 706 707 -0.35301135e+00 0.59444024e-01 -0.75545915e+02 0.11156800e+01
- 2 111 708 709 0.93378756e-01 -0.16837134e+00 -0.10322262e+02 0.13498000e+00
- 1 2112 0 0 -0.59888664e+00 0.69799665e+00 -0.44852696e+02 0.93957000e+00
- 1 -211 0 0 -0.14220255e+00 -0.91509130e-01 -0.42793188e+01 0.13957000e+00
- 1 -211 0 0 0.61989691e+00 -0.15656913e+00 0.37116326e+00 0.13957000e+00
- 2 111 710 711 0.10472448e+00 0.12583984e+00 -0.84273844e-02 0.13498000e+00
- 1 22 0 0 -0.44036517e+00 -0.11418350e+00 -0.54207769e-01 0.00000000e+00
- 1 22 0 0 -0.32952409e+00 -0.15345114e+00 -0.14760921e+00 0.00000000e+00
- 1 211 0 0 0.50777121e+00 -0.71160608e+00 -0.40918832e-01 0.13957000e+00
- 2 111 712 713 0.53892818e+00 0.16076621e+00 0.22531252e+00 0.13498000e+00
- 1 211 0 0 0.26578911e+00 0.23290709e+00 -0.36648308e+01 0.13957000e+00
- 1 -211 0 0 0.92305067e-02 -0.20857215e-01 -0.13836641e+01 0.13957000e+00
- 1 211 0 0 -0.18507955e+00 -0.67569220e-02 -0.11985332e+01 0.13957000e+00
- 1 -211 0 0 0.16165726e+00 -0.22887507e+00 -0.56860272e+01 0.13957000e+00
- 1 -211 0 0 0.20187197e+00 0.39727969e-01 -0.12566572e+02 0.13957000e+00
- 1 211 0 0 0.23968955e+00 -0.38034961e+00 -0.12303671e+02 0.13957000e+00
- 2 111 714 715 -0.80232258e-02 0.56295299e-01 -0.22914982e+01 0.13498000e+00
- 1 -211 0 0 -0.28072784e-01 -0.18500061e+00 -0.38903809e+01 0.13957000e+00
- 1 211 0 0 0.14073108e+00 0.13550222e+00 -0.57062754e+01 0.13957000e+00
- 2 111 716 717 -0.13202685e+00 0.25571472e+00 -0.45093585e+01 0.13498000e+00
- 1 211 0 0 0.10940685e+00 -0.18110214e-01 -0.74216219e+02 0.13957000e+00
- 1 -211 0 0 -0.63541508e-02 0.10939189e-01 -0.60300095e+01 0.13957000e+00
- 2 111 718 719 0.53062926e-01 -0.20436506e+00 -0.19563351e+02 0.13498000e+00
- 1 211 0 0 -0.31642264e+00 -0.11332011e+00 -0.34333794e+01 0.13957000e+00
- 2 111 720 721 0.24203775e+00 0.53177812e+00 -0.64006375e+01 0.13498000e+00
- 1 22 0 0 -0.17832576e+00 -0.81007793e-01 -0.15440457e+02 0.00000000e+00
- 1 22 0 0 0.21550176e-01 0.61025647e-02 -0.26773843e+01 0.00000000e+00
- 1 130 0 0 -0.66251205e+00 0.19657140e+00 -0.15912421e+03 0.49767000e+00
- 2 310 722 723 -0.10978780e-01 -0.97793316e-01 -0.14133600e+02 0.49767000e+00
- 2 -311 724 724 0.14565922e+00 -0.43944197e+00 -0.13804634e+03 0.49767000e+00
- 1 -211 0 0 0.19752177e+00 0.20716590e+00 -0.30296062e+02 0.13957000e+00
- 1 22 0 0 -0.34323207e+00 0.76613419e-01 -0.11406528e+02 0.00000000e+00
- 1 22 0 0 -0.15151165e+00 0.11882186e+00 -0.47617819e+01 0.00000000e+00
- 1 22 0 0 0.21867523e-01 0.16388938e-01 -0.19750990e+01 0.00000000e+00
- 1 22 0 0 -0.10394506e+00 0.36321285e-01 -0.16813109e+01 0.00000000e+00
- 1 22 0 0 0.22364347e+00 0.17898637e+00 -0.53462145e+02 0.00000000e+00
- 1 22 0 0 0.15217771e+00 0.27522047e+00 -0.46803478e+02 0.00000000e+00
- 1 -321 0 0 -0.18031306e+00 -0.47997989e+01 0.11424126e+02 0.49360000e+00
- 1 211 0 0 0.75509414e-01 -0.70991250e-01 0.20811054e-01 0.13957000e+00
- 1 22 0 0 -0.11776007e-02 -0.45681442e+00 0.88193172e+00 0.00000000e+00
- 1 22 0 0 -0.14791449e-01 -0.31643790e-01 0.18231124e+00 0.00000000e+00
- 1 22 0 0 0.40537919e-01 0.55315528e-01 0.59752446e+01 0.00000000e+00
- 1 22 0 0 -0.10339075e+00 0.23604911e+00 0.27012913e+02 0.00000000e+00
- 1 22 0 0 -0.79730385e-01 -0.25831777e-01 0.31038263e+01 0.00000000e+00
- 1 22 0 0 0.38334834e-01 -0.93125841e-01 0.34899220e+01 0.00000000e+00
- 1 22 0 0 -0.76674015e-02 -0.55901556e-01 0.88764588e+01 0.00000000e+00
- 1 22 0 0 0.47940741e-01 0.63019806e-01 0.70291536e+01 0.00000000e+00
- 1 22 0 0 -0.16576723e+00 0.10770938e+00 0.35882887e+02 0.00000000e+00
- 1 22 0 0 -0.29664303e+00 0.20511232e+00 0.39724888e+02 0.00000000e+00
- 1 22 0 0 0.48040514e-01 0.17555311e+00 0.19035400e+02 0.00000000e+00
- 1 22 0 0 0.41872576e+00 0.82520293e+00 0.12536147e+03 0.00000000e+00
- 1 -211 0 0 -0.87516960e-01 0.24834809e+00 0.50832841e+02 0.13957000e+00
- 1 211 0 0 0.24005298e+00 0.42723079e+00 0.43594643e+02 0.13957000e+00
- 1 22 0 0 0.14680560e+01 0.17817485e+01 0.34794104e+03 0.00000000e+00
- 1 22 0 0 0.40929142e+00 0.42312196e+00 0.96503367e+02 0.00000000e+00
- 1 22 0 0 0.37754114e+00 0.66664440e+00 0.10394976e+03 0.00000000e+00
- 1 22 0 0 0.88350242e+00 0.18843283e+01 0.30415605e+03 0.00000000e+00
- 1 22 0 0 0.15292437e-01 0.19541205e-01 0.20714061e+01 0.00000000e+00
- 1 22 0 0 0.54521554e-01 0.10768153e+00 0.79793267e+02 0.00000000e+00
- 1 22 0 0 -0.54258776e-01 -0.70137236e-01 0.70042021e+01 0.00000000e+00
- 1 22 0 0 0.82696444e-01 -0.11955891e+00 0.13140961e+02 0.00000000e+00
- 1 22 0 0 0.18990246e+00 -0.44192855e+00 0.14514795e+02 0.00000000e+00
- 1 22 0 0 0.26191157e+00 -0.38799448e+00 0.11410036e+02 0.00000000e+00
- 1 22 0 0 -0.81770518e-01 -0.43357501e-01 0.39934300e+01 0.00000000e+00
- 1 22 0 0 -0.87019261e-01 0.80078621e-01 0.89978104e+01 0.00000000e+00
- 1 22 0 0 -0.46841947e-01 0.36138372e-01 0.21559035e+01 0.00000000e+00
- 1 22 0 0 0.17123341e-01 -0.38682721e-01 0.28749633e+00 0.00000000e+00
- 1 22 0 0 0.23411516e+00 -0.42920420e-02 0.11971803e+01 0.00000000e+00
- 1 22 0 0 0.10195426e-01 0.17139144e-01 0.48137143e+00 0.00000000e+00
- 1 22 0 0 -0.53578959e-01 -0.17702494e+00 0.36132083e+01 0.00000000e+00
- 1 22 0 0 0.14857576e-01 0.16174085e-01 0.19133741e+00 0.00000000e+00
- 1 22 0 0 0.12519506e+00 -0.81629299e+00 0.43464421e+01 0.00000000e+00
- 1 22 0 0 -0.29187467e-01 -0.34605928e+00 0.16691564e+01 0.00000000e+00
- 1 22 0 0 0.39696057e-01 -0.78150237e+00 0.25005269e+01 0.00000000e+00
- 1 22 0 0 -0.18954806e-01 -0.83149025e-01 0.16934463e+00 0.00000000e+00
- 1 22 0 0 -0.10583203e+01 -0.15875996e+01 0.62016805e+01 0.00000000e+00
- 1 22 0 0 -0.15562293e+01 -0.21854192e+01 0.91978230e+01 0.00000000e+00
- 1 22 0 0 -0.11652763e+01 -0.14738179e+01 0.63414313e+01 0.00000000e+00
- 1 22 0 0 -0.85744219e-01 -0.15337768e+00 0.70926104e+00 0.00000000e+00
- 1 22 0 0 -0.45278862e+00 -0.52704583e+00 0.23492351e+01 0.00000000e+00
- 1 22 0 0 -0.17419947e+01 -0.23564870e+01 0.93059335e+01 0.00000000e+00
- 1 22 0 0 -0.96363703e-01 -0.21029444e+00 0.96918002e+00 0.00000000e+00
- 1 11 0 0 -0.83848671e+00 -0.13504397e+01 0.57842070e+01 0.51000000e-03
- 1 -11 0 0 -0.29156916e-01 -0.76538254e-01 0.31926697e+00 0.51000000e-03
- 1 22 0 0 -0.53575611e-01 -0.38585101e+00 0.15313133e+01 0.00000000e+00
- 1 22 0 0 -0.16625007e+00 -0.30520401e+00 0.12627510e+01 0.00000000e+00
- 1 22 0 0 0.28172710e-01 0.12316458e-01 0.23876117e+00 0.00000000e+00
- 1 22 0 0 -0.14842444e+00 0.12247839e+00 0.98025572e+00 0.00000000e+00
- 1 22 0 0 -0.42172804e+00 -0.26589006e+00 0.16574247e+01 0.00000000e+00
- 1 22 0 0 -0.16542187e+00 -0.26931705e-01 0.43098434e+00 0.00000000e+00
- 1 22 0 0 -0.58600143e-01 -0.12843902e+00 0.18868141e+00 0.00000000e+00
- 1 22 0 0 -0.66699838e-01 0.16317797e-02 0.22389084e+00 0.00000000e+00
- 1 22 0 0 0.10787660e-01 0.18046795e-01 0.48648526e-01 0.00000000e+00
- 1 22 0 0 -0.20246195e+00 -0.93421489e-01 0.85719053e+00 0.00000000e+00
- 1 22 0 0 -0.72100675e-01 0.67531307e-01 0.52327853e+00 0.00000000e+00
- 1 22 0 0 -0.28266970e+00 -0.16135735e-01 0.12538604e+01 0.00000000e+00
- 1 22 0 0 0.25742694e-01 -0.60891310e-01 -0.11997584e+00 0.00000000e+00
- 1 22 0 0 -0.12193990e+00 0.14265292e+00 0.51963525e+00 0.00000000e+00
- 1 22 0 0 -0.13443664e+00 -0.46244917e-01 0.48572144e-01 0.00000000e+00
- 1 22 0 0 -0.17431077e+00 0.56910414e-01 -0.37141144e-01 0.00000000e+00
- 2 111 725 726 -0.20951646e+01 -0.86884177e+00 -0.45118063e-01 0.13498000e+00
- 2 111 727 728 -0.22470162e+01 -0.13317557e+01 0.20051080e+00 0.13498000e+00
- 1 22 0 0 0.32087505e-01 -0.48581414e-01 0.19503394e-01 0.00000000e+00
- 1 22 0 0 -0.31316317e-01 -0.16038475e+00 -0.13921844e+00 0.00000000e+00
- 1 22 0 0 -0.15441548e+00 -0.48262200e+00 -0.90778743e-01 0.00000000e+00
- 1 22 0 0 -0.51794629e-01 -0.53582406e-01 -0.56288573e-01 0.00000000e+00
- 1 22 0 0 -0.23546504e+00 -0.24546413e+00 -0.58067964e-01 0.00000000e+00
- 1 22 0 0 -0.91871738e-02 -0.47359692e-01 0.36139527e-01 0.00000000e+00
- 1 22 0 0 0.20805013e-01 -0.26411340e-02 -0.28015730e-02 0.00000000e+00
- 1 22 0 0 -0.15209609e+00 -0.13448078e+00 -0.26355061e+00 0.00000000e+00
- 2 111 729 730 -0.20397609e+00 0.81010861e-01 -0.99740216e+00 0.13498000e+00
- 2 111 731 732 -0.92858607e-01 -0.26127659e-01 -0.53767480e+00 0.13498000e+00
- 2 111 733 734 -0.36536710e+00 0.34092465e+00 -0.22238949e+01 0.13498000e+00
- 1 22 0 0 -0.76435937e+00 0.27114282e+00 -0.10598469e+02 0.00000000e+00
- 1 22 0 0 -0.25959863e+00 0.17888677e+00 -0.43425018e+01 0.00000000e+00
- 1 22 0 0 -0.17177767e+01 0.10785668e+01 -0.22294658e+02 0.00000000e+00
- 1 22 0 0 -0.19834502e+01 0.14193143e+01 -0.26960756e+02 0.00000000e+00
- 1 22 0 0 -0.30457343e+00 0.85873919e-01 -0.35131261e+01 0.00000000e+00
- 1 22 0 0 -0.89636921e-02 0.25227231e-01 -0.88424711e+00 0.00000000e+00
- 1 22 0 0 -0.86362539e-01 -0.11252585e-01 -0.81647904e+00 0.00000000e+00
- 1 22 0 0 -0.34860075e+00 0.47751832e-01 -0.67182418e+01 0.00000000e+00
- 1 22 0 0 -0.18452865e-01 0.26525462e-01 -0.22652858e+01 0.00000000e+00
- 1 22 0 0 -0.25937468e+00 0.36371676e-01 -0.57364314e+01 0.00000000e+00
- 1 22 0 0 -0.82709231e-01 0.30203785e+00 -0.74962678e+01 0.00000000e+00
- 1 22 0 0 -0.12828707e+00 0.13185466e+00 -0.57036386e+01 0.00000000e+00
- 1 22 0 0 -0.37548699e-02 0.49316519e-01 -0.15223731e+01 0.00000000e+00
- 1 22 0 0 -0.80167437e-01 -0.78192552e-01 -0.31954857e+01 0.00000000e+00
- 1 22 0 0 -0.17117361e+00 0.74066605e-01 -0.35121273e+01 0.00000000e+00
- 1 22 0 0 0.11013684e-01 0.53313028e-01 -0.65656377e+00 0.00000000e+00
- 1 22 0 0 -0.10061852e+00 -0.25920575e+00 -0.43786563e+02 0.00000000e+00
- 1 22 0 0 -0.11517549e+00 -0.77871500e-01 -0.15618422e+02 0.00000000e+00
- 1 22 0 0 -0.36994760e+00 0.14198039e+00 -0.85379316e+02 0.00000000e+00
- 1 22 0 0 -0.77881072e-01 0.46074591e-01 -0.98805702e+01 0.00000000e+00
- 1 22 0 0 -0.49273046e+00 -0.39112824e-01 -0.22893815e+03 0.00000000e+00
- 1 22 0 0 -0.40771503e-01 -0.47843787e-01 -0.29203621e+02 0.00000000e+00
- 2 311 735 735 0.14247054e+01 -0.26269480e+01 0.68793503e+01 0.49767000e+00
- 1 -211 0 0 0.16826435e+00 -0.84020910e+00 0.18975833e+01 0.13957000e+00
- 1 211 0 0 0.27712582e+00 -0.14100245e+00 0.48021112e+00 0.13957000e+00
- 2 111 736 737 0.18689717e+00 -0.17352727e+00 0.11695241e+01 0.13498000e+00
- 2 111 738 739 0.63542894e+00 -0.10205521e+01 0.26175351e+01 0.13498000e+00
- 1 22 0 0 0.79645755e-01 -0.93056461e-01 0.20250503e+00 0.00000000e+00
- 1 22 0 0 0.44567093e-01 -0.64831557e-01 -0.36052785e-03 0.00000000e+00
- 1 22 0 0 -0.50266937e-01 0.32714401e-01 0.52583598e+00 0.00000000e+00
- 1 22 0 0 -0.70377286e+00 0.56224479e-01 0.95371092e+01 0.00000000e+00
- 1 22 0 0 -0.57659158e-01 0.42020980e-01 0.14334977e+01 0.00000000e+00
- 1 22 0 0 -0.31419930e+00 0.48910543e+00 0.20142787e+02 0.00000000e+00
- 1 22 0 0 0.86057698e-02 -0.91991910e-01 -0.28817104e+00 0.00000000e+00
- 1 22 0 0 0.12200205e+00 -0.93826777e-01 -0.19887829e+00 0.00000000e+00
- 1 22 0 0 -0.17570459e+00 -0.12979242e+00 -0.34440763e+00 0.00000000e+00
- 1 22 0 0 -0.47828966e-01 0.17260850e-01 -0.19983256e+00 0.00000000e+00
- 1 22 0 0 -0.27881750e-01 0.52175892e-01 -0.15356888e+00 0.00000000e+00
- 1 22 0 0 -0.58423457e-01 0.70164692e-01 -0.12595449e+01 0.00000000e+00
- 1 22 0 0 0.25864233e-01 -0.85016754e-01 -0.13791400e+01 0.00000000e+00
- 1 22 0 0 0.14141058e+00 0.21047811e-02 -0.23245849e+01 0.00000000e+00
- 1 22 0 0 0.42668697e+00 -0.12146694e+00 0.29478792e+02 0.00000000e+00
- 1 22 0 0 0.92456727e-02 -0.34386928e-01 0.36120168e+01 0.00000000e+00
- 1 22 0 0 0.21917823e+00 0.39970595e+00 0.66688602e+01 0.00000000e+00
- 1 22 0 0 0.34469379e-01 0.23584357e+00 0.42798282e+01 0.00000000e+00
- 1 22 0 0 -0.36044080e+00 0.63269042e+00 0.12286130e+02 0.00000000e+00
- 1 22 0 0 -0.47307893e+00 0.88057558e+00 0.19720180e+02 0.00000000e+00
- 1 22 0 0 0.50438270e-02 0.88656165e-01 0.22427552e+00 0.00000000e+00
- 1 22 0 0 -0.67999282e-01 0.37934388e-02 0.46704370e+00 0.00000000e+00
- 1 22 0 0 0.33271852e+00 0.46043143e+00 0.30814561e+01 0.00000000e+00
- 1 22 0 0 0.32604387e+00 0.25623955e+00 0.22374507e+01 0.00000000e+00
- 1 -211 0 0 0.17123047e+01 0.29835912e-01 0.12645134e+02 0.13957000e+00
- 1 211 0 0 0.22093380e+00 -0.92097167e-01 0.23168984e+01 0.13957000e+00
- 1 22 0 0 0.20484577e+00 0.51819841e-01 0.16531833e+01 0.00000000e+00
- 1 22 0 0 0.74195267e-01 0.12275542e+00 0.96029920e+00 0.00000000e+00
- 1 22 0 0 0.72793785e-02 -0.80316384e-02 0.45857061e+00 0.00000000e+00
- 1 22 0 0 -0.78556033e-01 0.15953392e+00 0.10098001e+01 0.00000000e+00
- 1 22 0 0 -0.91905727e-02 -0.32781200e-01 0.58503276e-01 0.00000000e+00
- 1 22 0 0 0.17582780e+00 -0.79430428e-01 0.95754267e+00 0.00000000e+00
- 1 -211 0 0 0.38218543e+00 0.56229771e-01 0.22453376e+00 0.13957000e+00
- 1 211 0 0 -0.82187860e-01 -0.52487292e-01 0.85004774e-01 0.13957000e+00
- 1 22 0 0 0.49104314e-01 -0.48835535e-01 0.64188916e-01 0.00000000e+00
- 1 22 0 0 0.56641067e+00 -0.21433373e+00 0.19986065e+00 0.00000000e+00
- 1 22 0 0 0.22462123e+00 -0.21121492e+00 -0.25982640e-01 0.00000000e+00
- 1 22 0 0 0.30204595e+00 -0.53544372e+00 -0.70589791e-02 0.00000000e+00
- 1 22 0 0 0.30265117e+00 -0.41147135e+00 -0.87008329e+00 0.00000000e+00
- 1 22 0 0 0.21446233e-01 0.73448703e-02 -0.22948036e-01 0.00000000e+00
- 1 22 0 0 0.65860843e+00 -0.46090956e+00 -0.22408973e+01 0.00000000e+00
- 1 22 0 0 0.28381934e+00 -0.23275721e+00 -0.13107235e+01 0.00000000e+00
- 1 22 0 0 -0.46451740e-01 0.12799456e-01 -0.15723801e+00 0.00000000e+00
- 1 22 0 0 0.91754260e-01 -0.12769158e-01 -0.21662067e+00 0.00000000e+00
- 1 22 0 0 0.68027035e-01 -0.46813642e-01 -0.10492959e+01 0.00000000e+00
- 1 22 0 0 0.16600670e+00 -0.10985344e+00 -0.91265249e+00 0.00000000e+00
- 2 310 740 741 0.20284762e+00 0.16118236e+00 -0.41570704e+01 0.49767000e+00
- 1 130 0 0 0.21751120e+00 -0.26605750e+00 -0.21414182e+02 0.49767000e+00
- 1 22 0 0 -0.29776474e+00 -0.27142724e+00 -0.82024223e+02 0.00000000e+00
- 1 22 0 0 -0.17311612e+00 -0.29511034e+00 -0.56741070e+02 0.00000000e+00
- 1 22 0 0 -0.49039262e-01 -0.26005362e-01 -0.46755332e+02 0.00000000e+00
- 1 22 0 0 -0.20258434e+00 -0.42279446e+00 -0.22814580e+03 0.00000000e+00
- 1 22 0 0 0.57429411e-02 -0.34182576e-01 -0.39097206e+02 0.00000000e+00
- 1 22 0 0 -0.31973687e-01 0.53596395e-01 -0.10994515e+02 0.00000000e+00
- 1 -211 0 0 0.34839925e+00 -0.55448609e+00 -0.90304534e+02 0.13957000e+00
- 1 211 0 0 -0.93632922e-01 -0.12505501e+00 -0.31460245e+02 0.13957000e+00
- 1 -2212 0 0 -0.19435272e+00 0.41059712e-01 -0.62716497e+02 0.93827000e+00
- 1 211 0 0 -0.15865863e+00 0.18384312e-01 -0.12829418e+02 0.13957000e+00
- 1 22 0 0 0.11172855e-01 -0.14979801e+00 -0.69704287e+01 0.00000000e+00
- 1 22 0 0 0.82205902e-01 -0.18573332e-01 -0.33518337e+01 0.00000000e+00
- 1 22 0 0 0.36604276e-02 -0.22874951e-01 0.19638019e-01 0.00000000e+00
- 1 22 0 0 0.10106405e+00 0.14871479e+00 -0.28065403e-01 0.00000000e+00
- 1 22 0 0 0.17572175e+00 0.38790342e-01 0.77866024e-02 0.00000000e+00
- 1 22 0 0 0.36320643e+00 0.12197587e+00 0.21752591e+00 0.00000000e+00
- 1 22 0 0 0.15228344e-01 0.72033712e-01 -0.21783771e+01 0.00000000e+00
- 1 22 0 0 -0.23251569e-01 -0.15738413e-01 -0.11312108e+00 0.00000000e+00
- 1 22 0 0 -0.96691900e-01 0.19970641e+00 -0.24227967e+01 0.00000000e+00
- 1 22 0 0 -0.35334954e-01 0.56008314e-01 -0.20865617e+01 0.00000000e+00
- 1 22 0 0 0.35597145e-02 -0.76745145e-02 -0.67057849e+01 0.00000000e+00
- 1 22 0 0 0.49503212e-01 -0.19669054e+00 -0.12857566e+02 0.00000000e+00
- 1 22 0 0 0.17872067e+00 0.45033257e+00 -0.47010753e+01 0.00000000e+00
- 1 22 0 0 0.63317078e-01 0.81445557e-01 -0.16995622e+01 0.00000000e+00
- 2 111 742 743 -0.12508691e+00 0.47876989e-01 -0.26482742e+01 0.13498000e+00
- 2 111 744 745 0.11410813e+00 -0.14567030e+00 -0.11485325e+02 0.13498000e+00
- 1 130 0 0 0.14565922e+00 -0.43944197e+00 -0.13804634e+03 0.49767000e+00
- 1 22 0 0 -0.47077090e+00 -0.23168622e+00 -0.56350786e-01 0.00000000e+00
- 1 22 0 0 -0.16243937e+01 -0.63715555e+00 0.11232724e-01 0.00000000e+00
- 1 22 0 0 -0.93681242e+00 -0.56638510e+00 0.15017671e+00 0.00000000e+00
- 1 22 0 0 -0.13102038e+01 -0.76537064e+00 0.50334086e-01 0.00000000e+00
- 1 22 0 0 -0.22277588e+00 0.84998831e-01 -0.92217924e+00 0.00000000e+00
- 1 22 0 0 0.18799791e-01 -0.39879704e-02 -0.75222919e-01 0.00000000e+00
- 1 22 0 0 -0.78003508e-02 0.25981572e-01 -0.15855144e-01 0.00000000e+00
- 1 22 0 0 -0.85058256e-01 -0.52109231e-01 -0.52181966e+00 0.00000000e+00
- 1 22 0 0 -0.13562098e+00 0.16315532e+00 -0.67904039e+00 0.00000000e+00
- 1 22 0 0 -0.22974613e+00 0.17776933e+00 -0.15448545e+01 0.00000000e+00
- 1 130 0 0 0.14247054e+01 -0.26269480e+01 0.68793503e+01 0.49767000e+00
- 1 22 0 0 0.16472338e+00 -0.63890165e-01 0.71021418e+00 0.00000000e+00
- 1 22 0 0 0.22173791e-01 -0.10963710e+00 0.45930989e+00 0.00000000e+00
- 1 22 0 0 0.25960328e+00 -0.38746046e+00 0.86620242e+00 0.00000000e+00
- 1 22 0 0 0.37582565e+00 -0.63309167e+00 0.17513327e+01 0.00000000e+00
- 1 -211 0 0 0.40151311e-01 -0.11317054e+00 -0.86776411e+00 0.13957000e+00
- 1 211 0 0 0.16269631e+00 0.27435290e+00 -0.32893063e+01 0.13957000e+00
- 1 22 0 0 -0.12281412e+00 0.16010143e-02 -0.23531558e+01 0.00000000e+00
- 1 22 0 0 -0.22727932e-02 0.46275974e-01 -0.29511840e+00 0.00000000e+00
- 1 22 0 0 -0.14338757e-01 -0.64904408e-01 -0.53270385e+01 0.00000000e+00
- 1 22 0 0 0.12844689e+00 -0.80765896e-01 -0.61582869e+01 0.00000000e+00
- 742
- 1 22 0 0 -0.26730863e+01 -0.55267703e-01 0.23266920e+02 0.00000000e+00
- 2 25 3 4 -0.29648669e+02 0.82496361e+01 -0.30616171e+03 0.12499639e+03
- 2 23 5 7 0.37422123e+01 -0.36291018e+01 -0.58182120e+02 0.30235073e+02
- 2 23 8 11 -0.33390881e+02 0.11878738e+02 -0.24797959e+03 0.90504975e+02
- 1 -13 0 0 -0.12731427e+02 -0.59210690e+01 -0.25926204e+02 0.10566000e+00
- 1 13 0 0 0.16473640e+02 0.22919675e+01 -0.32255915e+02 0.10566000e+00
- 1 22 0 0 -0.31161519e-06 -0.28870393e-06 -0.93413007e-06 0.00000000e+00
- 1 11 0 0 0.15808012e+02 -0.39166074e+01 -0.37561315e+01 0.51000000e-03
- 1 22 0 0 0.40393449e-02 -0.99546085e-03 -0.96023337e-03 0.00000000e+00
- 1 -11 0 0 -0.49193795e+02 0.15793407e+02 -0.24417716e+03 0.51000000e-03
- 1 22 0 0 -0.91375354e-02 0.29338242e-02 -0.45328552e-01 0.00000000e+00
- 2 1 112 112 0.41833100e+01 0.11600408e+02 -0.27037991e+04 0.33000000e+00
- 2 21 112 112 0.32262511e+01 -0.17435830e+01 -0.13642592e+03 0.00000000e+00
- 2 21 112 112 0.14301275e+01 -0.13413158e+01 -0.56941055e+02 0.00000000e+00
- 2 21 112 112 0.19079028e+01 -0.76454857e+01 -0.30510020e+03 0.00000000e+00
- 2 21 112 112 0.28551884e+01 -0.80095924e+01 -0.29142798e+03 0.00000000e+00
- 2 21 112 112 0.57052467e+00 -0.92973559e+00 -0.18738870e+02 0.00000000e+00
- 2 21 112 112 0.25117072e+00 -0.42850954e+00 -0.53694476e+02 0.00000000e+00
- 2 21 112 112 -0.86990429e-01 -0.56663382e+00 -0.40502862e+02 0.00000000e+00
- 2 21 112 112 0.75441289e+00 -0.43178404e+01 -0.19409683e+03 0.00000000e+00
- 2 21 112 112 0.73471608e+00 -0.70272326e+01 -0.26172604e+03 0.00000000e+00
- 2 21 112 112 0.80741189e+00 -0.87889154e+00 -0.29081643e+02 0.00000000e+00
- 2 21 112 112 0.25230825e+01 -0.42358776e+00 -0.37295705e+02 0.00000000e+00
- 2 21 112 112 0.29714055e+01 -0.28758700e+01 -0.47480853e+02 0.00000000e+00
- 2 21 112 112 0.15161678e+00 -0.52847862e+00 -0.79347546e+01 0.00000000e+00
- 2 21 112 112 -0.30584145e+00 -0.11359632e+01 -0.11997441e+02 0.00000000e+00
- 2 21 112 112 0.74958538e+00 0.11323852e+00 -0.75159171e+01 0.00000000e+00
- 2 21 112 112 0.13732682e+01 0.29561060e+00 -0.68339720e+01 0.00000000e+00
- 2 21 112 112 0.12848554e+01 -0.10772353e+01 -0.33224628e+01 0.00000000e+00
- 2 21 112 112 0.41933456e+01 -0.97613882e+01 -0.27210769e+02 0.00000000e+00
- 2 21 112 112 -0.82076321e+00 -0.21562678e+01 -0.23124502e+01 0.00000000e+00
- 2 21 112 112 -0.21473279e+01 -0.91335448e+01 -0.63100628e+01 0.00000000e+00
- 2 21 112 112 -0.15437834e+01 -0.29089480e+01 -0.90305857e-01 0.00000000e+00
- 2 21 112 112 0.71391767e+00 -0.26327186e+00 -0.10564988e+01 0.00000000e+00
- 2 21 112 112 0.60909238e+01 -0.18290294e+01 -0.48962812e+01 0.00000000e+00
- 2 21 112 112 0.18896913e+01 -0.45112815e+00 -0.14006101e+01 0.00000000e+00
- 2 21 112 112 0.25505866e+01 0.49424165e+01 -0.48356393e+01 0.00000000e+00
- 2 21 112 112 0.30584145e+00 0.11359632e+01 -0.97939633e+00 0.00000000e+00
- 2 21 112 112 0.21473279e+01 0.91335448e+01 -0.69175491e+01 0.00000000e+00
- 2 21 112 112 0.86990429e-01 0.56663382e+00 -0.67307819e+00 0.00000000e+00
- 2 21 112 112 0.74600167e-02 0.24949607e+01 -0.31883541e+01 0.00000000e+00
- 2 21 112 112 -0.73471608e+00 0.70272326e+01 -0.84882939e+01 0.00000000e+00
- 2 21 112 112 -0.23247764e+01 0.62287445e+01 -0.56471902e+01 0.00000000e+00
- 2 21 112 112 -0.25117072e+00 0.42850954e+00 -0.21771488e+00 0.00000000e+00
- 2 21 112 112 -0.88899983e+00 0.14449240e+01 -0.54898651e+00 0.00000000e+00
- 2 21 112 112 -0.18896913e+01 0.45112815e+00 -0.12342908e+01 0.00000000e+00
- 2 21 112 112 -0.19468102e+01 -0.33134494e+00 -0.20008314e+01 0.00000000e+00
- 2 21 112 112 -0.99769185e+00 -0.77865402e+00 -0.75203654e+00 0.00000000e+00
- 2 21 112 112 -0.11928815e+01 -0.80138448e+00 -0.15163778e+01 0.00000000e+00
- 2 21 112 112 -0.43346063e+01 -0.97523427e-01 -0.41761297e+01 0.00000000e+00
- 2 21 112 112 -0.60909238e+01 0.18290294e+01 -0.10378879e+02 0.00000000e+00
- 2 21 112 112 -0.29714055e+01 0.28758700e+01 -0.79323392e+01 0.00000000e+00
- 2 21 112 112 -0.95340634e+00 0.48155859e+01 -0.12451056e+02 0.00000000e+00
- 2 21 112 112 -0.25230825e+01 0.42358776e+00 -0.90248984e+01 0.00000000e+00
- 2 21 112 112 -0.80741189e+00 0.87889154e+00 -0.16065911e+02 0.00000000e+00
- 2 21 112 112 -0.15161678e+00 0.52847862e+00 -0.10158027e+03 0.00000000e+00
- 2 2101 112 112 0.38052764e+01 0.15735808e+01 -0.14662277e+04 0.57933000e+00
- 2 2 190 190 0.12680808e+02 -0.23560245e+01 0.66266551e+02 0.33000000e+00
- 2 21 190 190 0.18032657e+00 0.64024582e-01 0.62582831e+01 0.00000000e+00
- 2 21 190 190 -0.63907047e-01 0.26458443e-01 0.51881982e+00 0.00000000e+00
- 2 21 190 190 -0.27249121e-01 0.53503951e+00 -0.54067162e+00 0.00000000e+00
- 2 21 190 190 0.79586578e+00 0.90128182e-01 0.41589679e+02 0.00000000e+00
- 2 21 190 190 0.12471470e+01 -0.16102709e+01 0.87338628e+02 0.00000000e+00
- 2 21 190 190 -0.46608544e+00 -0.74257879e+00 0.31508205e+02 0.00000000e+00
- 2 21 190 190 -0.74600167e-02 -0.24949607e+01 0.52436808e+02 0.00000000e+00
- 2 21 190 190 0.42112060e+00 -0.29552032e+01 0.43656743e+02 0.00000000e+00
- 2 21 190 190 0.88899983e+00 -0.14449240e+01 0.15092275e+02 0.00000000e+00
- 2 21 190 190 0.58226126e+01 -0.99181229e+01 0.59799555e+02 0.00000000e+00
- 2 21 190 190 0.14853074e+01 -0.13629717e+01 0.10007409e+02 0.00000000e+00
- 2 21 190 190 0.61081037e+01 -0.64069711e+01 0.40660809e+02 0.00000000e+00
- 2 21 190 190 0.23247764e+01 -0.62287445e+01 0.22916167e+02 0.00000000e+00
- 2 21 190 190 -0.31876691e+00 -0.27079296e+01 0.69215247e+01 0.00000000e+00
- 2 21 190 190 0.30832742e-01 -0.18127056e+01 0.34686038e+01 0.00000000e+00
- 2 21 190 190 -0.25505866e+01 -0.49424165e+01 0.72493289e+01 0.00000000e+00
- 2 21 190 190 0.95340634e+00 -0.48155859e+01 0.19523551e+01 0.00000000e+00
- 2 21 190 190 0.43346063e+01 0.97523427e-01 0.42176081e+01 0.00000000e+00
- 2 21 190 190 -0.12848554e+01 0.10772353e+01 0.28389488e+00 0.00000000e+00
- 2 21 190 190 -0.41933456e+01 0.97613882e+01 0.41131144e+01 0.00000000e+00
- 2 21 190 190 -0.75441289e+00 0.43178404e+01 0.27968554e+01 0.00000000e+00
- 2 21 190 190 -0.42112060e+00 0.29552032e+01 0.27660265e+01 0.00000000e+00
- 2 21 190 190 0.31876691e+00 0.27079296e+01 0.68291875e+01 0.00000000e+00
- 2 21 190 190 -0.61081037e+01 0.64069711e+01 0.24285704e+02 0.00000000e+00
- 2 21 190 190 -0.13776387e+01 0.36547780e+01 0.21707871e+02 0.00000000e+00
- 2 21 190 190 -0.30832742e-01 0.18127056e+01 0.62264145e+01 0.00000000e+00
- 2 21 190 190 0.82076321e+00 0.21562678e+01 0.83748401e+01 0.00000000e+00
- 2 21 190 190 0.15437834e+01 0.29089480e+01 0.17748685e+02 0.00000000e+00
- 2 21 190 190 0.99769185e+00 0.77865402e+00 0.12749247e+02 0.00000000e+00
- 2 21 190 190 0.11928815e+01 0.80138448e+00 0.23573082e+02 0.00000000e+00
- 2 21 190 190 -0.97765073e-01 0.34997901e+00 0.47517912e+01 0.00000000e+00
- 2 21 190 190 -0.14853074e+01 0.13629717e+01 0.28456208e+02 0.00000000e+00
- 2 21 190 190 -0.71391767e+00 0.26327186e+00 0.92998963e+01 0.00000000e+00
- 2 21 190 190 -0.12471470e+01 0.16102709e+01 0.44003103e+02 0.00000000e+00
- 2 21 190 190 0.18598209e+00 0.53174710e+00 0.21911168e+02 0.00000000e+00
- 2 21 190 190 0.29077101e+00 0.15762582e+01 0.88561214e+02 0.00000000e+00
- 2 21 190 190 -0.79586578e+00 -0.90128182e-01 0.56463094e+02 0.00000000e+00
- 2 21 190 190 -0.58226126e+01 0.99181229e+01 0.19562838e+04 0.00000000e+00
- 2 21 190 190 0.46608544e+00 0.74257879e+00 0.11978343e+04 0.00000000e+00
- 2 21 190 190 0.97765073e-01 -0.34997901e+00 0.42281065e+03 0.00000000e+00
- 2 21 190 190 -0.29077101e+00 -0.15762582e+01 0.21751551e+03 0.00000000e+00
- 2 21 190 190 0.13776387e+01 -0.36547780e+01 0.48033491e+03 0.00000000e+00
- 2 21 190 190 0.18196213e-01 0.47851361e+00 0.14662588e+02 0.00000000e+00
- 2 21 190 190 -0.17577496e+01 -0.61467703e+00 0.51834224e+02 0.00000000e+00
- 2 2203 190 190 0.33127496e+01 0.16802073e+00 0.16664037e+04 0.77133000e+00
- 2 1 285 285 0.20921224e+01 -0.23617332e+01 0.19480137e+01 0.00000000e+00
- 2 21 285 285 0.19468102e+01 0.33134494e+00 0.68899816e+01 0.00000000e+00
- 2 21 285 285 -0.13732682e+01 -0.29561060e+00 0.78435448e+01 0.00000000e+00
- 2 21 285 285 -0.18598209e+00 -0.53174710e+00 0.36523738e+01 0.00000000e+00
- 2 21 285 285 -0.74958538e+00 -0.11323852e+00 0.30328888e+01 0.00000000e+00
- 2 -1 285 285 -0.20921224e+01 0.23617332e+01 0.87767697e+01 0.00000000e+00
- 2 1 297 297 0.45946789e+00 -0.33064812e-01 -0.26735731e+02 0.00000000e+00
- 2 -1 297 297 -0.45946789e+00 0.33064812e-01 -0.69438280e+03 0.00000000e+00
- 2 92 113 189 0.14602294e+02 -0.86541015e+01 -0.59220300e+04 0.70838589e+03
- 2 -213 300 301 0.31083560e+01 0.89921520e+01 -0.20810593e+04 0.90819467e+00
- 2 113 302 303 0.45078139e+00 0.92989795e+00 -0.26636655e+03 0.80656907e+00
- 2 111 304 305 0.60068277e+00 0.63848195e+00 -0.16066833e+03 0.13498000e+00
- 2 213 306 307 0.24996461e+00 0.13908471e+00 -0.53852517e+02 0.75726307e+00
- 2 311 308 308 0.34251337e+00 0.61231860e-01 -0.54183503e+02 0.49767000e+00
- 2 333 309 310 0.72658741e+00 0.48140686e-01 -0.82732728e+02 0.10153127e+01
- 2 -311 311 311 0.10880875e+00 -0.45971922e+00 -0.26791189e+02 0.49767000e+00
- 1 -211 0 0 0.33800738e+00 -0.28074879e+00 -0.14154113e+02 0.13957000e+00
- 1 211 0 0 0.60699636e+00 -0.50822364e+00 -0.54157779e+02 0.13957000e+00
- 1 -211 0 0 0.50532864e-01 0.36733393e-01 -0.17667958e+01 0.13957000e+00
- 2 223 312 314 0.10178641e+01 -0.47010715e+00 -0.78337586e+02 0.80219756e+00
- 1 211 0 0 0.13883338e+01 -0.37549069e+01 -0.15060673e+03 0.13957000e+00
- 2 113 315 316 0.26998853e+01 -0.43612730e+01 -0.15553077e+03 0.75103378e+00
- 2 111 317 318 0.31538339e+00 -0.36542598e+01 -0.14552288e+03 0.13498000e+00
- 2 313 319 320 0.12928255e+01 -0.39635952e+01 -0.14175547e+03 0.89485629e+00
- 2 -313 321 322 0.15059853e+01 -0.20211956e+01 -0.10541241e+03 0.89430605e+00
- 1 -211 0 0 0.17889840e+00 -0.17858405e+01 -0.84044958e+02 0.13957000e+00
- 2 113 323 324 0.48170826e+00 -0.41530095e+01 -0.15289070e+03 0.70986059e+00
- 2 111 325 326 -0.77981770e-01 -0.41338760e+00 -0.14685296e+02 0.13498000e+00
- 2 213 327 328 0.26305488e+00 -0.14915085e+01 -0.80795125e+02 0.77000818e+00
- 1 -211 0 0 -0.58173087e-01 -0.39777752e+01 -0.14969734e+03 0.13957000e+00
- 2 223 329 331 0.30032798e+01 -0.13058290e+01 -0.68490570e+02 0.78457569e+00
- 1 211 0 0 0.22785772e+01 -0.19746117e+01 -0.34281230e+02 0.13957000e+00
- 1 -211 0 0 -0.26646961e+00 -0.24526061e+00 -0.43157305e+01 0.13957000e+00
- 1 2212 0 0 0.98715022e+00 -0.10355731e+01 -0.20130673e+02 0.93827000e+00
- 1 -2212 0 0 0.80510438e+00 -0.75823024e+00 -0.13148662e+02 0.93827000e+00
- 2 223 332 334 0.10364085e+01 -0.72373260e-01 -0.69092006e+01 0.86858555e+00
- 1 321 0 0 0.13973984e+00 -0.14782512e+00 -0.67537382e+01 0.49360000e+00
- 2 -323 335 336 0.12601565e+01 -0.13322568e+01 -0.49893426e+01 0.82844137e+00
- 2 223 337 339 0.16327698e+01 -0.38055510e+01 -0.11555487e+02 0.77580108e+00
- 1 2212 0 0 0.11671906e+01 -0.18212705e+01 -0.65984401e+01 0.93827000e+00
- 1 -2112 0 0 0.17938009e+01 -0.48127782e+01 -0.87062870e+01 0.93957000e+00
- 2 -213 340 341 -0.14453963e+01 -0.31305661e+01 -0.22966052e+01 0.84209189e+00
- 2 213 342 343 0.78329424e-01 -0.13754223e+01 -0.19933787e+01 0.75747516e+00
- 2 111 344 345 -0.68064448e+00 -0.12224689e+01 -0.19893109e+00 0.13498000e+00
- 2 331 346 348 -0.76305159e+00 -0.19178628e+01 -0.16818952e+01 0.95803255e+00
- 1 -211 0 0 -0.17261452e-01 -0.15452430e+01 -0.10618683e+01 0.13957000e+00
- 1 321 0 0 -0.47648179e+00 -0.21283515e+01 -0.14204362e+01 0.49360000e+00
- 1 -321 0 0 0.36094385e-01 -0.14409688e+01 -0.80358817e+00 0.49360000e+00
- 2 111 349 350 0.32202561e+00 0.71967348e-01 -0.72404483e+00 0.13498000e+00
- 1 2212 0 0 0.15294228e+01 -0.46415552e+00 -0.56718395e+00 0.93827000e+00
- 2 -3122 351 352 0.17074515e+01 -0.80266275e+00 -0.17833196e+01 0.11156800e+01
- 2 -313 353 354 -0.15726237e+00 -0.16889174e+00 -0.98644253e+00 0.89734187e+00
- 1 -211 0 0 0.11344190e+01 0.50520088e+00 -0.82729195e+00 0.13957000e+00
- 2 323 355 356 0.10541181e+01 -0.62078293e+00 -0.83328755e+00 0.90742852e+00
- 2 -313 357 358 0.14871173e+01 0.35733777e+00 -0.13197620e+01 0.92354902e+00
- 2 -213 359 360 0.11830467e+01 0.47316599e+00 -0.16669235e+01 0.67091124e+00
- 2 223 361 362 0.45785856e+00 0.61038992e+00 -0.46807162e+00 0.77868312e+00
- 2 111 363 364 0.93068558e+00 0.24595577e+01 -0.23216214e+01 0.13498000e+00
- 1 321 0 0 0.40090247e+00 0.11889604e+01 -0.10081057e+01 0.49360000e+00
- 2 331 365 366 0.14279825e+01 0.43705249e+01 -0.33110710e+01 0.95779493e+00
- 2 -323 367 368 -0.45741348e+00 0.10487840e+02 -0.11756521e+02 0.91457823e+00
- 2 323 369 370 0.90255422e+00 0.37493641e+01 -0.36681136e+01 0.87619278e+00
- 2 -313 371 372 -0.11138135e+01 0.25477505e+01 -0.28752914e+01 0.90982316e+00
- 2 223 373 374 -0.15354997e+01 0.32293213e+01 -0.25055240e+01 0.78167685e+00
- 2 331 375 376 -0.11975712e+01 0.25489243e+01 -0.15891545e+01 0.95808414e+00
- 2 223 377 379 -0.15405806e+01 -0.49871203e+00 -0.16015391e+01 0.78073870e+00
- 2 313 380 381 -0.40802987e+01 -0.20963005e+00 -0.35464236e+01 0.89258745e+00
- 1 -321 0 0 -0.14999753e+01 -0.62823463e+00 -0.20786247e+01 0.49360000e+00
- 2 223 382 384 -0.15523341e+01 -0.58272518e-01 -0.23981337e+01 0.78550205e+00
- 2 323 385 386 -0.33475613e+01 0.74584384e+00 -0.55474762e+01 0.86928747e+00
- 1 -321 0 0 -0.14444151e+01 0.11576489e+01 -0.24725381e+01 0.49360000e+00
- 2 223 387 389 -0.86337768e+00 0.61117833e-01 -0.22760174e+01 0.77895333e+00
- 2 213 390 391 -0.18270282e+01 0.12407977e+01 -0.33356924e+01 0.72930565e+00
- 2 2114 392 393 -0.11288780e+01 0.23004480e+01 -0.58005647e+01 0.11549376e+01
- 2 111 394 395 -0.43599426e+00 -0.77655943e-01 -0.12069867e+01 0.13498000e+00
- 2 -2114 396 397 -0.25467903e+01 0.24284115e+01 -0.82368451e+01 0.13071217e+01
- 2 223 398 400 -0.20386070e+00 0.87366320e+00 -0.31124332e+01 0.76172724e+00
- 1 2112 0 0 -0.95299356e+00 0.64647708e+00 -0.59695299e+01 0.93957000e+00
- 1 211 0 0 -0.34280284e+00 0.40682763e+00 -0.19524416e+01 0.13957000e+00
- 2 -2224 401 402 -0.11480026e+01 0.37836824e+00 -0.13459528e+02 0.12448814e+01
- 1 211 0 0 -0.53297317e+00 0.11139510e+00 -0.36184119e+02 0.13957000e+00
- 2 113 403 404 0.45221595e+00 0.15234318e+00 -0.15842486e+02 0.74630848e+00
- 2 313 405 406 0.77766650e-01 0.75036907e+00 -0.15544824e+03 0.84532598e+00
- 2 -311 407 407 0.13307029e+00 -0.64865807e-03 -0.75637035e+02 0.49767000e+00
- 2 2114 408 409 0.31952567e+01 0.10481890e+01 -0.11688946e+04 0.12157575e+01
- 2 221 410 412 -0.44484975e-01 0.49561072e+00 -0.11846889e+03 0.54745000e+00
- 2 92 191 284 0.18081487e+02 0.10689843e+01 0.68938998e+04 0.64541214e+03
- 2 213 413 414 0.34025566e+01 -0.70977380e+00 0.18485904e+02 0.67769804e+00
- 2 -213 415 416 0.35648833e+01 -0.85271865e+00 0.17544324e+02 0.73368091e+00
- 2 213 417 418 0.50037893e+01 -0.10554558e+01 0.30151127e+02 0.68019049e+00
- 2 223 419 421 -0.14346364e-01 0.65990712e-01 0.14831551e+01 0.77640807e+00
- 2 113 422 423 0.80637927e+00 0.97955181e-01 0.19574811e+01 0.93307559e+00
- 2 -213 424 425 0.63625894e+00 0.94149232e+00 0.44192799e+01 0.82359695e+00
- 2 113 426 427 -0.99413534e-01 -0.31146302e+00 0.29562994e+00 0.75335263e+00
- 2 213 428 429 -0.52673154e+00 -0.26487922e-01 0.19540384e+02 0.69604562e+00
- 2 223 430 432 0.10839452e+01 -0.11229826e+00 0.36555930e+02 0.82242946e+00
- 1 -211 0 0 -0.50524503e+00 -0.41298326e+00 0.18268374e+02 0.13957000e+00
- 1 211 0 0 0.90610798e+00 -0.16535172e+01 0.41536588e+02 0.13957000e+00
- 2 -213 433 434 0.45245586e+00 -0.14553911e+01 0.58261450e+02 0.98148424e+00
- 2 221 435 436 -0.11995338e+00 -0.84737922e+00 0.14121387e+02 0.54745000e+00
- 1 211 0 0 0.52950876e+00 -0.97048453e+00 0.34656271e+02 0.13957000e+00
- 2 -213 437 438 -0.48382940e-01 -0.20735010e+01 0.24359180e+02 0.70928597e+00
- 2 111 439 440 0.10477067e+01 -0.14484051e+01 0.12031688e+02 0.13498000e+00
- 1 211 0 0 -0.17087229e+00 -0.22022835e+00 0.57133848e+01 0.13957000e+00
- 2 313 441 442 0.16723922e+01 -0.28019452e+01 0.18387219e+02 0.81103861e+00
- 2 -313 443 444 0.13145550e+01 -0.22471559e+01 0.16845546e+02 0.88803751e+00
- 1 -211 0 0 0.10940253e+01 -0.15276274e+01 0.99699764e+01 0.13957000e+00
- 2 213 445 446 0.30425131e+01 -0.28100123e+01 0.18612691e+02 0.74021087e+00
- 2 313 447 448 0.19400544e+01 -0.42262167e+01 0.20515854e+02 0.96151454e+00
- 2 -313 449 450 0.23182195e+01 -0.43840043e+01 0.24998147e+02 0.94315712e+00
- 2 113 451 452 0.22412631e+01 -0.27167322e+01 0.15482472e+02 0.91144418e+00
- 2 111 453 454 0.15615570e+00 -0.16672958e+00 0.19908616e+01 0.13498000e+00
- 2 223 455 457 0.30042110e+00 -0.20612418e+01 0.39834125e+01 0.77433820e+00
- 2 311 458 458 0.31562003e+00 -0.19119501e+01 0.75959520e+01 0.49767000e+00
- 2 -311 459 459 0.72416054e-01 -0.72677820e+00 0.13109572e+01 0.49767000e+00
- 1 -211 0 0 -0.44297661e+00 -0.19084490e+01 0.65069410e+01 0.13957000e+00
- 1 211 0 0 0.13755159e+00 -0.13124014e+01 0.23784937e+01 0.13957000e+00
- 2 221 460 461 -0.60544685e-01 -0.18724539e+01 0.27035587e+01 0.54745000e+00
- 1 2112 0 0 -0.15352419e+00 -0.11159528e+01 0.21102877e+01 0.93957000e+00
- 1 -2112 0 0 -0.38519946e+00 -0.16603448e+01 0.16534163e+01 0.93957000e+00
- 2 -213 462 463 0.51103502e+00 -0.18661389e+01 0.13898267e+01 0.81842665e+00
- 1 321 0 0 0.46401595e-01 -0.44264652e+00 0.29845414e+00 0.49360000e+00
- 2 -313 464 465 -0.34743928e+00 -0.20292298e+01 0.94972507e+00 0.85904930e+00
- 2 -213 466 467 0.16286549e+01 -0.22050735e+00 0.21701428e+01 0.74220933e+00
- 2 331 468 470 0.13536126e+01 0.68387955e-01 0.13176206e+01 0.95760528e+00
- 2 111 471 472 0.88996962e+00 0.60117246e+00 0.53124293e+00 0.13498000e+00
- 2 323 473 474 -0.69042072e+00 0.91502979e+00 0.10850728e+01 0.87500930e+00
- 2 -311 475 475 -0.22940293e+01 0.52602457e+01 0.20030828e+01 0.49767000e+00
- 2 223 476 478 -0.58844674e+00 0.19463349e+01 0.19099036e+01 0.78596497e+00
- 1 -211 0 0 -0.23662260e+00 0.13320024e+01 0.76284797e+00 0.13957000e+00
- 2 2114 479 480 -0.36748957e+00 0.20596632e+01 0.14431498e+01 0.12664529e+01
- 1 -2112 0 0 -0.19303281e+01 0.36468176e+01 0.19279457e+01 0.93957000e+00
- 2 111 481 482 -0.14303435e+00 0.21072077e+01 0.15838280e+01 0.13498000e+00
- 2 113 483 484 -0.93897488e-01 0.10794922e+01 0.26095723e+01 0.68323066e+00
- 2 111 485 486 -0.32718137e+00 0.66261935e+00 0.12066715e+01 0.13498000e+00
- 2 111 487 488 -0.81361560e+00 0.12954080e+01 0.46546100e+01 0.13498000e+00
- 2 213 489 490 -0.11452580e+01 0.14771189e+01 0.48383681e+01 0.73386197e+00
- 2 -213 491 492 -0.47067763e+00 0.12604908e+01 0.46978522e+01 0.76576323e+00
- 1 211 0 0 -0.34858146e-01 0.32542446e+00 0.64580447e+00 0.13957000e+00
- 1 -211 0 0 -0.26128213e+01 0.35485199e+01 0.16574484e+02 0.13957000e+00
- 2 223 493 495 -0.53252714e+00 0.12956867e+01 0.36924690e+01 0.84819434e+00
- 2 113 496 497 -0.47031543e+00 0.14121756e+01 0.85900501e+01 0.78231770e+00
- 2 111 498 499 -0.57685357e-02 0.92607674e+00 0.38950325e+01 0.13498000e+00
- 2 223 500 502 -0.46051821e-01 0.14238461e+01 0.75483290e+01 0.78305751e+00
- 1 211 0 0 0.32089534e+00 0.11098591e+01 0.57940716e+01 0.13957000e+00
- 2 113 503 504 0.24932065e-01 0.17855040e+01 0.64752275e+01 0.72944571e+00
- 2 -213 505 506 0.16108040e+01 0.14345430e+01 0.18421376e+02 0.70807375e+00
- 1 211 0 0 0.46923360e-01 0.13953166e+01 0.12936262e+02 0.13957000e+00
- 2 -213 507 508 0.75919571e+00 0.75585005e+00 0.12371110e+02 0.11594964e+01
- 1 211 0 0 -0.33809520e-01 0.10294003e+01 0.10682548e+02 0.13957000e+00
- 2 1114 509 510 -0.81035460e+00 0.83250984e+00 0.40190541e+02 0.11827856e+01
- 2 -2114 511 512 -0.16735186e-01 0.10742667e+01 0.28219789e+02 0.12357130e+01
- 2 213 513 514 -0.99676812e+00 0.83936495e+00 0.27678205e+02 0.79635511e+00
- 2 -213 515 516 -0.42961246e+00 0.97121006e+00 0.41856642e+02 0.82222471e+00
- 1 211 0 0 0.10093876e+00 0.69384325e-01 0.38825605e+01 0.13957000e+00
- 2 221 517 518 -0.23396432e+00 0.94612763e+00 0.48313768e+02 0.54745000e+00
- 1 -211 0 0 0.76791465e-01 0.20690530e+00 0.51919006e+02 0.13957000e+00
- 2 213 519 520 -0.69706818e+00 0.14143980e+01 0.23724719e+03 0.81654663e+00
- 2 113 521 522 -0.22920641e+01 0.28723944e+01 0.53485368e+03 0.67439971e+00
- 2 221 523 525 -0.73327339e+00 0.76289256e+00 0.20543654e+03 0.54745000e+00
- 2 111 526 527 -0.91173052e-02 0.69410273e+00 0.33303050e+03 0.13498000e+00
- 2 -213 528 529 -0.10210769e+01 0.13772567e+01 0.28385371e+03 0.84645127e+00
- 1 211 0 0 -0.49874589e+00 0.10640883e+01 0.51611869e+03 0.13957000e+00
- 1 -211 0 0 -0.10166135e+00 0.61288201e+00 0.10797708e+03 0.13957000e+00
- 1 211 0 0 -0.98919421e+00 0.12324997e+01 0.31831694e+03 0.13957000e+00
- 2 111 530 531 -0.14355791e+00 -0.27488119e-01 0.12790701e+03 0.13498000e+00
- 2 311 532 532 0.44768550e+00 -0.27925363e+00 0.34247002e+03 0.49767000e+00
- 1 -321 0 0 -0.48653790e-01 0.10476586e+00 0.20954690e+03 0.49360000e+00
- 2 213 533 534 -0.30790061e+00 -0.26444964e+00 0.17648820e+03 0.80561527e+00
- 1 -211 0 0 0.10223424e+01 -0.13288237e+01 0.37924119e+03 0.13957000e+00
- 2 223 535 537 0.82226998e-01 -0.41893362e+00 0.15575173e+03 0.77755743e+00
- 2 3222 538 539 0.28928484e+00 -0.67715306e+00 0.12197112e+03 0.11893700e+01
- 2 323 540 541 -0.11773423e+00 -0.86058632e+00 0.12386824e+03 0.88923936e+00
- 2 -2224 542 543 -0.12334124e+01 -0.12818801e+01 0.12979871e+03 0.11476255e+01
- 1 211 0 0 0.83062880e+00 -0.57558455e-01 0.63098671e+02 0.13957000e+00
- 2 -213 544 545 -0.33544766e+00 -0.74854075e-01 0.46145417e+02 0.81381361e+00
- 1 211 0 0 -0.36681352e-01 0.60153131e+00 0.62317023e+02 0.13957000e+00
- 2 111 546 547 -0.58266880e-01 -0.72544091e+00 0.10539962e+03 0.13498000e+00
- 1 -211 0 0 -0.20268465e+00 0.47256060e+00 0.64372786e+02 0.13957000e+00
- 1 2212 0 0 0.21454165e+01 0.18714527e-01 0.98445847e+03 0.93827000e+00
- 1 211 0 0 0.88072684e+00 -0.20347551e+00 0.38473583e+03 0.13957000e+00
- 2 92 286 296 -0.36202549e+00 -0.60925127e+00 0.32143573e+02 0.13810940e+02
- 2 111 548 549 0.13969315e+00 -0.10221564e+01 0.97430804e+00 0.13498000e+00
- 2 113 550 551 0.12695528e+01 -0.14634343e+00 0.12671723e+01 0.71253631e+00
- 2 221 552 553 0.13403977e+01 -0.11069906e+01 0.29414210e+01 0.54745000e+00
- 2 -213 554 555 0.17363822e+00 0.36792349e-01 0.21437159e+01 0.79499900e+00
- 2 223 556 558 -0.10521970e+01 -0.17395523e+00 0.49054993e+01 0.77821295e+00
- 1 211 0 0 -0.41506006e+00 0.21498771e+00 0.65694673e+00 0.13957000e+00
- 2 -213 559 560 0.14967478e+00 0.67953636e-01 0.25872510e+01 0.63834421e+00
- 2 213 561 562 -0.14601853e+00 0.28153601e+00 0.10503133e+01 0.68441805e+00
- 2 111 563 564 -0.13603746e+00 0.60993290e+00 0.65914386e+01 0.13498000e+00
- 2 -213 565 566 -0.23387501e+00 0.43607007e-01 0.36700469e+01 0.73189621e+00
- 2 213 567 568 -0.14517941e+01 0.58538475e+00 0.53554594e+01 0.85058722e+00
- 2 92 298 299 0.00000000e+00 0.00000000e+00 -0.72111853e+03 0.24379402e+01
- 2 313 569 570 0.36897065e+00 -0.48418138e+00 -0.18328719e+03 0.96406560e+00
- 2 -311 571 571 -0.36897065e+00 0.48418138e+00 -0.53783134e+03 0.49767000e+00
- 1 -211 0 0 0.18607115e+01 0.62416625e+01 -0.13578051e+04 0.13957000e+00
- 2 111 572 573 0.12476445e+01 0.27504895e+01 -0.72325420e+03 0.13498000e+00
- 1 -211 0 0 0.39867766e+00 0.64829699e+00 -0.24076893e+03 0.13957000e+00
- 1 211 0 0 0.52103724e-01 0.28160096e+00 -0.25597614e+02 0.13957000e+00
- 1 22 0 0 0.14884458e-01 0.28865552e-01 -0.28788413e+01 0.00000000e+00
- 1 22 0 0 0.58579831e+00 0.60961640e+00 -0.15778949e+03 0.00000000e+00
- 1 211 0 0 0.11126542e-01 0.35894081e+00 -0.39086885e+02 0.13957000e+00
- 2 111 574 575 0.23883806e+00 -0.21985610e+00 -0.14765633e+02 0.13498000e+00
- 1 130 0 0 0.34251337e+00 0.61231860e-01 -0.54183503e+02 0.49767000e+00
- 1 -321 0 0 0.44144114e+00 -0.49926051e-01 -0.39841303e+02 0.49360000e+00
- 1 321 0 0 0.28514627e+00 0.98066736e-01 -0.42891424e+02 0.49360000e+00
- 2 310 576 577 0.10880875e+00 -0.45971922e+00 -0.26791189e+02 0.49767000e+00
- 1 -211 0 0 0.56454863e+00 -0.80720263e-01 -0.42242047e+02 0.13957000e+00
- 1 211 0 0 -0.12642473e-01 -0.25786561e-01 -0.45699629e+01 0.13957000e+00
- 2 111 578 579 0.46595797e+00 -0.36360033e+00 -0.31525577e+02 0.13498000e+00
- 1 211 0 0 0.18361276e+01 -0.32479498e+01 -0.12030580e+03 0.13957000e+00
- 1 -211 0 0 0.86375776e+00 -0.11133232e+01 -0.35224964e+02 0.13957000e+00
- 1 22 0 0 0.17782212e+00 -0.27062393e+01 -0.10835438e+03 0.00000000e+00
- 1 22 0 0 0.13756127e+00 -0.94802052e+00 -0.37168506e+02 0.00000000e+00
- 1 321 0 0 0.33992339e+00 -0.12938873e+01 -0.47260779e+02 0.49360000e+00
- 1 -211 0 0 0.95290211e+00 -0.26697079e+01 -0.94494691e+02 0.13957000e+00
- 1 -321 0 0 0.14603470e+01 -0.15991245e+01 -0.84840248e+02 0.49360000e+00
- 1 211 0 0 0.45638219e-01 -0.42207112e+00 -0.20572166e+02 0.13957000e+00
- 1 211 0 0 0.10907554e+00 -0.15328201e+01 -0.45698636e+02 0.13957000e+00
- 1 -211 0 0 0.37263273e+00 -0.26201894e+01 -0.10719207e+03 0.13957000e+00
- 1 22 0 0 0.27858212e-01 -0.23408047e-01 -0.15656416e+01 0.00000000e+00
- 1 22 0 0 -0.10583998e+00 -0.38997955e+00 -0.13119655e+02 0.00000000e+00
- 1 211 0 0 -0.11698865e-01 -0.13550671e+01 -0.63402128e+02 0.13957000e+00
- 2 111 580 581 0.27475375e+00 -0.13644137e+00 -0.17392997e+02 0.13498000e+00
- 1 -211 0 0 0.11327447e+01 -0.32072325e+00 -0.28971244e+02 0.13957000e+00
- 1 211 0 0 0.15290874e+01 -0.71024992e+00 -0.30717535e+02 0.13957000e+00
- 2 111 582 583 0.34144777e+00 -0.27485585e+00 -0.88017914e+01 0.13498000e+00
- 1 -211 0 0 0.29848633e+00 -0.20355870e+00 -0.27019298e+01 0.13957000e+00
- 1 211 0 0 0.39526669e+00 0.28814680e+00 -0.28873174e+01 0.13957000e+00
- 2 111 584 585 0.34265553e+00 -0.15696136e+00 -0.13199534e+01 0.13498000e+00
- 2 -311 586 586 0.82314687e+00 -0.57275857e+00 -0.29785105e+01 0.49767000e+00
- 1 -211 0 0 0.43700960e+00 -0.75949827e+00 -0.20108321e+01 0.13957000e+00
- 1 -211 0 0 0.47649988e+00 -0.74738036e+00 -0.23216748e+01 0.13957000e+00
- 1 211 0 0 0.67895715e+00 -0.16722530e+01 -0.57586432e+01 0.13957000e+00
- 2 111 587 588 0.47731281e+00 -0.13859177e+01 -0.34751689e+01 0.13498000e+00
- 1 -211 0 0 -0.14686007e+01 -0.25262718e+01 -0.19732422e+01 0.13957000e+00
- 2 111 589 590 0.23204356e-01 -0.60429435e+00 -0.32336303e+00 0.13498000e+00
- 1 211 0 0 -0.26221805e+00 -0.10166596e+01 -0.13216713e+01 0.13957000e+00
- 2 111 591 592 0.34054747e+00 -0.35876270e+00 -0.67170740e+00 0.13498000e+00
- 1 22 0 0 -0.62517504e+00 -0.11461375e+01 -0.21740800e+00 0.00000000e+00
- 1 22 0 0 -0.55469440e-01 -0.76331487e-01 0.18476904e-01 0.00000000e+00
- 1 211 0 0 -0.17219878e-01 -0.20878070e+00 -0.19380040e+00 0.13957000e+00
- 1 -211 0 0 -0.27654316e+00 -0.65974593e+00 -0.36930030e+00 0.13957000e+00
- 2 221 593 595 -0.46928856e+00 -0.10493362e+01 -0.11187945e+01 0.54745000e+00
- 1 22 0 0 0.19040007e+00 0.93739744e-01 -0.34316700e+00 0.00000000e+00
- 1 22 0 0 0.13162554e+00 -0.21772397e-01 -0.38087783e+00 0.00000000e+00
- 1 -2212 0 0 0.13391403e+01 -0.60567339e+00 -0.15157735e+01 0.93827000e+00
- 1 211 0 0 0.36831117e+00 -0.19698936e+00 -0.26754612e+00 0.13957000e+00
- 1 -321 0 0 -0.54876223e-02 -0.39758920e-01 -0.20688339e+00 0.49360000e+00
- 1 211 0 0 -0.15177475e+00 -0.12913282e+00 -0.77955914e+00 0.13957000e+00
- 2 311 596 596 0.24731323e+00 -0.19417599e+00 -0.42832621e+00 0.49767000e+00
- 1 211 0 0 0.80680482e+00 -0.42660694e+00 -0.40496134e+00 0.13957000e+00
- 1 -321 0 0 0.10616447e+01 0.53264374e+00 -0.80788018e+00 0.49360000e+00
- 1 211 0 0 0.42547259e+00 -0.17530598e+00 -0.51188180e+00 0.13957000e+00
- 1 -211 0 0 0.80973170e+00 -0.10716021e-03 -0.98334507e+00 0.13957000e+00
- 2 111 597 598 0.37331498e+00 0.47327315e+00 -0.68357842e+00 0.13498000e+00
- 1 22 0 0 0.57000899e+00 0.17641827e+00 -0.13454485e+00 0.00000000e+00
- 2 111 599 600 -0.11215044e+00 0.43397165e+00 -0.33352677e+00 0.13498000e+00
- 1 22 0 0 0.32964294e+00 0.10016257e+01 -0.86748965e+00 0.00000000e+00
- 1 22 0 0 0.60104264e+00 0.14579320e+01 -0.14541318e+01 0.00000000e+00
- 1 22 0 0 -0.68121263e-04 -0.75094962e-02 -0.44125584e-02 0.00000000e+00
- 2 113 601 602 0.14280506e+01 0.43780344e+01 -0.33066585e+01 0.88354480e+00
- 2 -311 603 603 -0.84191103e-01 0.80728679e+01 -0.91300981e+01 0.49767000e+00
- 1 -211 0 0 -0.37322237e+00 0.24149724e+01 -0.26264226e+01 0.13957000e+00
- 2 311 604 604 0.91029239e+00 0.33372785e+01 -0.34351311e+01 0.49767000e+00
- 1 211 0 0 -0.77381664e-02 0.41208556e+00 -0.23298247e+00 0.13957000e+00
- 1 -321 0 0 -0.11040423e+01 0.18765173e+01 -0.20709850e+01 0.49360000e+00
- 1 211 0 0 -0.97711608e-02 0.67123324e+00 -0.80430635e+00 0.13957000e+00
- 1 22 0 0 -0.38009594e+00 0.11219243e+01 -0.43952026e+00 0.00000000e+00
- 2 111 605 606 -0.11554037e+01 0.21073970e+01 -0.20660037e+01 0.13498000e+00
- 1 22 0 0 -0.39148700e+00 0.51228129e+00 -0.49984368e+00 0.00000000e+00
- 2 113 607 608 -0.80608421e+00 0.20366430e+01 -0.10893108e+01 0.74363323e+00
- 1 211 0 0 -0.80419391e+00 -0.16315943e+00 -0.11330620e+01 0.13957000e+00
- 1 -211 0 0 -0.38773202e+00 -0.30002407e+00 -0.27627619e+00 0.13957000e+00
- 2 111 609 610 -0.34865471e+00 -0.35528530e-01 -0.19220094e+00 0.13498000e+00
- 2 311 611 611 -0.35895117e+01 -0.15237490e+00 -0.33413962e+01 0.49767000e+00
- 2 111 612 613 -0.49078705e+00 -0.57255152e-01 -0.20502747e+00 0.13498000e+00
- 1 211 0 0 -0.62785968e+00 0.36221011e-01 -0.80224937e+00 0.13957000e+00
- 1 -211 0 0 -0.66719115e+00 -0.29164725e+00 -0.10501920e+01 0.13957000e+00
- 2 111 614 615 -0.25728322e+00 0.19715372e+00 -0.54569229e+00 0.13498000e+00
- 2 311 616 616 -0.31416284e+01 0.70284596e+00 -0.53293234e+01 0.49767000e+00
- 1 211 0 0 -0.20593282e+00 0.42997875e-01 -0.21815285e+00 0.13957000e+00
- 1 211 0 0 -0.21810768e+00 -0.54031675e-01 -0.10543126e+01 0.13957000e+00
- 1 -211 0 0 -0.24364937e+00 0.24187000e+00 -0.48547404e+00 0.13957000e+00
- 2 111 617 618 -0.40162062e+00 -0.12672049e+00 -0.73623081e+00 0.13498000e+00
- 1 211 0 0 -0.11405712e+01 0.55545371e+00 -0.13826749e+01 0.13957000e+00
- 2 111 619 620 -0.68645707e+00 0.68534403e+00 -0.19530175e+01 0.13498000e+00
- 1 2112 0 0 -0.92276240e+00 0.21043379e+01 -0.53263540e+01 0.93957000e+00
- 2 111 621 622 -0.20611558e+00 0.19611013e+00 -0.47421070e+00 0.13498000e+00
- 1 22 0 0 -0.12262448e+00 -0.60756882e-01 -0.24220089e+00 0.00000000e+00
- 1 22 0 0 -0.31336979e+00 -0.16899061e-01 -0.96478584e+00 0.00000000e+00
- 1 -2112 0 0 -0.19022387e+01 0.14324677e+01 -0.56262710e+01 0.93957000e+00
- 2 111 623 624 -0.64455158e+00 0.99594381e+00 -0.26105742e+01 0.13498000e+00
- 1 -211 0 0 0.33336638e-01 0.35878215e+00 -0.18779127e+01 0.13957000e+00
- 1 211 0 0 0.13702426e-01 0.12912482e+00 -0.24303448e+00 0.13957000e+00
- 2 111 625 626 -0.25089977e+00 0.38575623e+00 -0.99148603e+00 0.13498000e+00
- 1 -2212 0 0 -0.64326290e+00 0.34270459e+00 -0.10268269e+02 0.93827000e+00
- 1 -211 0 0 -0.50473965e+00 0.35663655e-01 -0.31912593e+01 0.13957000e+00
- 1 211 0 0 0.28132347e-02 -0.11385360e+00 -0.10855304e+01 0.13957000e+00
- 1 -211 0 0 0.44940271e+00 0.26619678e+00 -0.14756955e+02 0.13957000e+00
- 1 321 0 0 0.27408634e-01 0.74309069e+00 -0.10148794e+03 0.49360000e+00
- 1 -211 0 0 0.50358015e-01 0.72783843e-02 -0.53960299e+02 0.13957000e+00
- 1 130 0 0 0.13307029e+00 -0.64865807e-03 -0.75637035e+02 0.49767000e+00
- 1 2212 0 0 0.31066093e+01 0.10150213e+01 -0.11271854e+04 0.93827000e+00
- 1 -211 0 0 0.88647396e-01 0.33167677e-01 -0.41709270e+02 0.13957000e+00
- 1 -211 0 0 -0.74658955e-01 0.30025302e+00 -0.69677597e+02 0.13957000e+00
- 1 211 0 0 0.96315283e-01 0.12731372e+00 -0.30613526e+02 0.13957000e+00
- 2 111 627 628 -0.66141303e-01 0.68043978e-01 -0.18177768e+02 0.13498000e+00
- 1 211 0 0 0.81873409e+00 0.19001040e-01 0.53271835e+01 0.13957000e+00
- 2 111 629 630 0.25838225e+01 -0.72877484e+00 0.13158721e+02 0.13498000e+00
- 1 -211 0 0 0.20960159e+01 -0.63876837e+00 0.89393153e+01 0.13957000e+00
- 2 111 631 632 0.14688674e+01 -0.21395027e+00 0.86050086e+01 0.13498000e+00
- 1 211 0 0 0.29872211e+01 -0.93686464e+00 0.18539723e+02 0.13957000e+00
- 2 111 633 634 0.20165682e+01 -0.11859111e+00 0.11611404e+02 0.13498000e+00
- 1 211 0 0 -0.17360152e+00 0.55959867e-01 0.11067478e+01 0.13957000e+00
- 1 -211 0 0 -0.77050308e-02 -0.49539512e-01 0.24516458e+00 0.13957000e+00
- 2 111 635 636 0.16696019e+00 0.59570357e-01 0.13124275e+00 0.13498000e+00
- 1 -211 0 0 0.94397672e+00 0.10078815e+00 0.18682862e+01 0.13957000e+00
- 1 211 0 0 -0.13759745e+00 -0.28329706e-02 0.89194862e-01 0.13957000e+00
- 1 -211 0 0 0.38162955e+00 0.62697065e+00 0.13943806e+01 0.13957000e+00
- 2 111 637 638 0.25462939e+00 0.31452167e+00 0.30248993e+01 0.13498000e+00
- 1 -211 0 0 -0.40495661e-01 0.10595986e+00 0.38037334e+00 0.13957000e+00
- 1 211 0 0 -0.58917873e-01 -0.41742287e+00 -0.84743397e-01 0.13957000e+00
- 1 211 0 0 -0.22468610e-01 0.24564427e+00 0.58839270e+01 0.13957000e+00
- 2 111 639 640 -0.50426293e+00 -0.27213219e+00 0.13656458e+02 0.13498000e+00
- 1 -211 0 0 0.54244193e+00 -0.83780014e-01 0.11195471e+02 0.13957000e+00
- 1 211 0 0 0.77663248e-01 -0.86819932e-01 0.27852152e+01 0.13957000e+00
- 2 111 641 642 0.46384004e+00 0.58301681e-01 0.22575244e+02 0.13498000e+00
- 1 -211 0 0 0.74134778e+00 -0.97472592e+00 0.37978869e+02 0.13957000e+00
- 2 111 643 644 -0.28889192e+00 -0.48066522e+00 0.20282581e+02 0.13498000e+00
- 1 22 0 0 0.94165381e-01 -0.76216176e+00 0.11843010e+02 0.00000000e+00
- 1 22 0 0 -0.21411877e+00 -0.85217452e-01 0.22783768e+01 0.00000000e+00
- 1 -211 0 0 -0.26831792e+00 -0.17471873e+01 0.19225373e+02 0.13957000e+00
- 2 111 645 646 0.21993498e+00 -0.32631373e+00 0.51338073e+01 0.13498000e+00
- 1 22 0 0 0.81200480e+00 -0.10331074e+01 0.86279679e+01 0.00000000e+00
- 1 22 0 0 0.23570193e+00 -0.41529777e+00 0.34037204e+01 0.00000000e+00
- 1 321 0 0 0.69014857e+00 -0.15040451e+01 0.91387434e+01 0.49360000e+00
- 1 -211 0 0 0.98224364e+00 -0.12979001e+01 0.92484757e+01 0.13957000e+00
- 1 -321 0 0 0.54036707e+00 -0.84123386e+00 0.80382167e+01 0.49360000e+00
- 1 211 0 0 0.77418795e+00 -0.14059220e+01 0.88073294e+01 0.13957000e+00
- 1 211 0 0 0.15115650e+01 -0.18098164e+01 0.11168914e+02 0.13957000e+00
- 2 111 647 648 0.15309481e+01 -0.10001959e+01 0.74437770e+01 0.13498000e+00
- 1 321 0 0 0.72182202e+00 -0.12252596e+01 0.67538281e+01 0.49360000e+00
- 1 -211 0 0 0.12182324e+01 -0.30009571e+01 0.13762026e+02 0.13957000e+00
- 2 -311 649 649 0.19663697e+01 -0.38905526e+01 0.22813800e+02 0.49767000e+00
- 2 111 650 651 0.35184980e+00 -0.49345171e+00 0.21843469e+01 0.13498000e+00
- 1 211 0 0 0.20694869e+00 -0.71110760e+00 0.40343175e+01 0.13957000e+00
- 1 -211 0 0 0.20343144e+01 -0.20056246e+01 0.11448155e+02 0.13957000e+00
- 1 22 0 0 0.65102088e-01 -0.34160822e-01 0.11508829e+01 0.00000000e+00
- 1 22 0 0 0.91053616e-01 -0.13256875e+00 0.83997869e+00 0.00000000e+00
- 1 211 0 0 0.57176625e-01 -0.17074365e+00 0.32355657e+00 0.13957000e+00
- 1 -211 0 0 0.36561281e+00 -0.11397089e+01 0.24474290e+01 0.13957000e+00
- 2 111 652 653 -0.12236833e+00 -0.75078922e+00 0.12124269e+01 0.13498000e+00
- 2 310 654 655 0.31562003e+00 -0.19119501e+01 0.75959520e+01 0.49767000e+00
- 2 310 656 657 0.72416054e-01 -0.72677820e+00 0.13109572e+01 0.49767000e+00
- 1 22 0 0 -0.34832552e-01 -0.68993716e+00 0.14767160e+01 0.00000000e+00
- 1 22 0 0 -0.25712133e-01 -0.11825168e+01 0.12268427e+01 0.00000000e+00
- 1 -211 0 0 0.39261648e-01 -0.39213579e+00 0.70831070e+00 0.13957000e+00
- 2 111 658 660 0.47177337e+00 -0.14740031e+01 0.68151599e+00 0.13498000e+00
- 1 -321 0 0 -0.46744712e+00 -0.11974407e+01 0.53757351e+00 0.49360000e+00
- 1 211 0 0 0.12000784e+00 -0.83178912e+00 0.41215156e+00 0.13957000e+00
- 1 -211 0 0 0.12341804e+01 0.10542642e+00 0.17357100e+01 0.13957000e+00
- 2 111 661 662 0.39447443e+00 -0.32593377e+00 0.43443282e+00 0.13498000e+00
- 1 211 0 0 0.32026717e+00 0.31121660e-01 0.37544523e+00 0.13957000e+00
- 1 -211 0 0 0.34518710e+00 -0.13867090e+00 0.22275544e+00 0.13957000e+00
- 2 221 663 664 0.68815833e+00 0.17593719e+00 0.71941998e+00 0.54745000e+00
- 1 22 0 0 0.15799715e-01 0.30798729e-01 0.37704634e-01 0.00000000e+00
- 1 22 0 0 0.87416991e+00 0.57037373e+00 0.49353830e+00 0.00000000e+00
- 1 321 0 0 -0.30439070e+00 0.76454909e+00 0.52094929e+00 0.49360000e+00
- 2 111 665 666 -0.38603003e+00 0.15048070e+00 0.56412348e+00 0.13498000e+00
- 2 310 667 668 -0.22940293e+01 0.52602457e+01 0.20030828e+01 0.49767000e+00
- 1 -211 0 0 -0.35732872e-01 0.39729570e+00 0.32433949e+00 0.13957000e+00
- 1 211 0 0 -0.11620046e+00 0.54155273e+00 0.22972195e+00 0.13957000e+00
- 2 111 669 670 -0.43651341e+00 0.10074864e+01 0.13558422e+01 0.13498000e+00
- 1 2112 0 0 -0.78400421e-01 0.18031630e+01 0.12378743e+01 0.93957000e+00
- 2 111 671 672 -0.28908915e+00 0.25650021e+00 0.20527548e+00 0.13498000e+00
- 1 22 0 0 -0.77280572e-01 0.51601979e+00 0.44173834e+00 0.00000000e+00
- 1 22 0 0 -0.65753781e-01 0.15911879e+01 0.11420897e+01 0.00000000e+00
- 1 211 0 0 -0.17567809e+00 0.86775424e+00 0.24182113e+01 0.13957000e+00
- 1 -211 0 0 0.81780603e-01 0.21173794e+00 0.19136097e+00 0.13957000e+00
- 1 22 0 0 -0.27321934e+00 0.53201464e+00 0.86463008e+00 0.00000000e+00
- 1 22 0 0 -0.53962029e-01 0.13060471e+00 0.34204140e+00 0.00000000e+00
- 1 22 0 0 -0.78025146e+00 0.12046120e+01 0.42674984e+01 0.00000000e+00
- 1 22 0 0 -0.33364143e-01 0.90796005e-01 0.38711160e+00 0.00000000e+00
- 1 211 0 0 -0.56023514e+00 0.55759268e+00 0.12471093e+01 0.13957000e+00
- 2 111 673 674 -0.58502286e+00 0.91952623e+00 0.35912588e+01 0.13498000e+00
- 1 -211 0 0 -0.43160629e-01 0.38727743e+00 0.25688775e+01 0.13957000e+00
- 2 111 675 676 -0.42751700e+00 0.87321342e+00 0.21289747e+01 0.13498000e+00
- 1 -211 0 0 0.19919849e-02 0.11134395e+00 0.79213128e+00 0.13957000e+00
- 1 211 0 0 -0.38154466e+00 0.75457210e+00 0.23415422e+01 0.13957000e+00
- 2 111 677 678 -0.15297446e+00 0.42977066e+00 0.55879557e+00 0.13498000e+00
- 1 211 0 0 -0.57413036e+00 0.13513894e+01 0.70922162e+01 0.13957000e+00
- 1 -211 0 0 0.10381493e+00 0.60786252e-01 0.14978340e+01 0.13957000e+00
- 1 22 0 0 -0.38465386e-01 0.30974890e+00 0.10933804e+01 0.00000000e+00
- 1 22 0 0 0.32696850e-01 0.61632784e+00 0.28016521e+01 0.00000000e+00
- 1 -211 0 0 0.12755793e+00 0.47305153e+00 0.17386782e+01 0.13957000e+00
- 1 211 0 0 -0.24144873e+00 0.30862693e+00 0.25748599e+01 0.13957000e+00
- 2 111 679 680 0.67838981e-01 0.64216769e+00 0.32347909e+01 0.13498000e+00
- 1 211 0 0 -0.24940381e+00 0.12273095e+01 0.36918059e+01 0.13957000e+00
- 1 -211 0 0 0.27433588e+00 0.55819445e+00 0.27834216e+01 0.13957000e+00
- 1 -211 0 0 0.80979364e+00 0.87165267e+00 0.75388269e+01 0.13957000e+00
- 2 111 681 682 0.80101037e+00 0.56289036e+00 0.10882549e+02 0.13498000e+00
- 1 -211 0 0 -0.14760828e+00 0.58854459e+00 0.39278525e+01 0.13957000e+00
- 2 111 683 684 0.90680399e+00 0.16730546e+00 0.84432572e+01 0.13498000e+00
- 1 2112 0 0 -0.77811912e+00 0.87653989e+00 0.35449532e+02 0.93957000e+00
- 1 -211 0 0 -0.32235483e-01 -0.44030051e-01 0.47410087e+01 0.13957000e+00
- 1 -2112 0 0 0.15767263e+00 0.10337315e+01 0.23312846e+02 0.93957000e+00
- 2 111 685 686 -0.17440782e+00 0.40535238e-01 0.49069424e+01 0.13498000e+00
- 1 211 0 0 -0.94480519e-01 0.36419528e+00 0.12952627e+02 0.13957000e+00
- 2 111 687 688 -0.90228760e+00 0.47516967e+00 0.14725578e+02 0.13498000e+00
- 1 -211 0 0 -0.34720192e+00 0.52754305e+00 0.11699425e+02 0.13957000e+00
- 2 111 689 690 -0.82410540e-01 0.44366701e+00 0.30157217e+02 0.13498000e+00
- 1 22 0 0 0.50838086e-01 0.79271816e+00 0.34214720e+02 0.00000000e+00
- 1 22 0 0 -0.28480240e+00 0.15340947e+00 0.14099048e+02 0.00000000e+00
- 1 211 0 0 -0.32386153e+00 0.12907350e+00 0.31314012e+02 0.13957000e+00
- 2 111 691 692 -0.37320665e+00 0.12853245e+01 0.20593318e+03 0.13498000e+00
- 1 211 0 0 -0.22029514e+00 0.14476889e+00 0.54583950e+02 0.13957000e+00
- 1 -211 0 0 -0.20717689e+01 0.27276255e+01 0.48026973e+03 0.13957000e+00
- 1 22 0 0 -0.27665006e+00 0.27435916e+00 0.66718025e+02 0.00000000e+00
- 1 211 0 0 -0.32521267e+00 0.16387749e+00 0.50245576e+02 0.13957000e+00
- 1 -211 0 0 -0.13141066e+00 0.32465591e+00 0.88472934e+02 0.13957000e+00
- 1 22 0 0 -0.41243644e-03 0.92160835e-01 0.26647861e+02 0.00000000e+00
- 1 22 0 0 -0.87048688e-02 0.60194189e+00 0.30638264e+03 0.00000000e+00
- 1 -211 0 0 -0.48538331e+00 0.73958984e+00 0.20436707e+03 0.13957000e+00
- 2 111 693 694 -0.53569362e+00 0.63766683e+00 0.79486647e+02 0.13498000e+00
- 1 22 0 0 -0.17023152e-02 -0.34882944e-02 0.60969437e+02 0.00000000e+00
- 1 22 0 0 -0.14185559e+00 -0.23999825e-01 0.66937569e+02 0.00000000e+00
- 2 310 695 696 0.44768550e+00 -0.27925363e+00 0.34247002e+03 0.49767000e+00
- 1 211 0 0 -0.22926031e+00 0.24354210e+00 0.83509617e+02 0.13957000e+00
- 2 111 697 698 -0.78640299e-01 -0.50799174e+00 0.92978578e+02 0.13498000e+00
- 1 -211 0 0 0.55582840e-01 -0.43583337e-01 0.41010303e+02 0.13957000e+00
- 1 211 0 0 0.26687645e+00 -0.16259196e+00 0.71835978e+02 0.13957000e+00
- 2 111 699 700 -0.24023229e+00 -0.21275832e+00 0.42905450e+02 0.13498000e+00
- 1 2212 0 0 0.21673981e+00 -0.70275781e+00 0.11551875e+03 0.93827000e+00
- 2 111 701 702 0.72545032e-01 0.25604748e-01 0.64523702e+01 0.13498000e+00
- 2 311 703 703 0.13016211e+00 -0.60075841e+00 0.62110907e+02 0.49767000e+00
- 1 211 0 0 -0.24789634e+00 -0.25982791e+00 0.61757333e+02 0.13957000e+00
- 1 -2212 0 0 -0.11913855e+01 -0.12468874e+01 0.12239458e+03 0.93827000e+00
- 1 -211 0 0 -0.42026942e-01 -0.34992764e-01 0.74041280e+01 0.13957000e+00
- 1 -211 0 0 -0.10640391e-01 -0.27791521e+00 0.34450126e+02 0.13957000e+00
- 2 111 704 705 -0.32480727e+00 0.20306113e+00 0.11695291e+02 0.13498000e+00
- 1 22 0 0 0.50822775e-02 -0.11526795e+00 0.10979505e+02 0.00000000e+00
- 1 22 0 0 -0.63349158e-01 -0.61017295e+00 0.94420112e+02 0.00000000e+00
- 1 22 0 0 0.99594198e-01 -0.96006526e+00 0.88543309e+00 0.00000000e+00
- 1 22 0 0 0.40098957e-01 -0.62091103e-01 0.88874947e-01 0.00000000e+00
- 1 211 0 0 0.45727166e+00 0.25923816e+00 0.50128525e+00 0.13957000e+00
- 1 -211 0 0 0.81228116e+00 -0.40558159e+00 0.76588701e+00 0.13957000e+00
- 1 22 0 0 0.67174746e+00 -0.21875559e+00 0.12606372e+01 0.00000000e+00
- 1 22 0 0 0.66865020e+00 -0.88823502e+00 0.16807838e+01 0.00000000e+00
- 1 -211 0 0 0.41199007e+00 -0.30862649e-01 0.17816373e+01 0.13957000e+00
- 2 111 706 707 -0.23835186e+00 0.67654998e-01 0.36207858e+00 0.13498000e+00
- 1 211 0 0 -0.39852417e+00 0.19275852e+00 0.16655747e+01 0.13957000e+00
- 1 -211 0 0 -0.21930699e+00 -0.28164956e+00 0.17207628e+01 0.13957000e+00
- 2 111 708 709 -0.43436586e+00 -0.85064196e-01 0.15191618e+01 0.13498000e+00
- 1 -211 0 0 0.11431663e+00 -0.25189186e+00 0.11718197e+01 0.13957000e+00
- 2 111 710 711 0.35358146e-01 0.31984549e+00 0.14154313e+01 0.13498000e+00
- 1 211 0 0 -0.34288166e+00 0.32147772e+00 0.54654497e+00 0.13957000e+00
- 2 111 712 713 0.19686313e+00 -0.39941711e-01 0.50376837e+00 0.13498000e+00
- 1 22 0 0 -0.64816101e-01 0.48810944e+00 0.47175506e+01 0.00000000e+00
- 1 22 0 0 -0.71221356e-01 0.12182346e+00 0.18738879e+01 0.00000000e+00
- 1 -211 0 0 -0.41606340e+00 -0.12880296e+00 0.17486384e+01 0.13957000e+00
- 2 111 714 716 0.18218839e+00 0.17240997e+00 0.19214086e+01 0.13498000e+00
- 1 211 0 0 -0.60065331e+00 -0.15141523e+00 0.22568714e+01 0.13957000e+00
- 2 111 717 718 -0.85114074e+00 0.73679998e+00 0.30985880e+01 0.13498000e+00
- 1 321 0 0 0.46649845e+00 -0.15534874e+00 -0.85245622e+02 0.49360000e+00
- 1 -211 0 0 -0.97527800e-01 -0.32883263e+00 -0.98041567e+02 0.13957000e+00
- 2 310 719 720 -0.36897065e+00 0.48418138e+00 -0.53783134e+03 0.49767000e+00
- 1 22 0 0 0.43173633e+00 0.84393959e+00 -0.23755751e+03 0.00000000e+00
- 1 22 0 0 0.81590817e+00 0.19065499e+01 -0.48569670e+03 0.00000000e+00
- 1 22 0 0 0.20253349e+00 -0.23119273e+00 -0.13824971e+02 0.00000000e+00
- 1 22 0 0 0.36304570e-01 0.11336626e-01 -0.94066173e+00 0.00000000e+00
- 2 111 721 722 0.22797123e+00 -0.12811067e+00 -0.90822760e+01 0.13498000e+00
- 2 111 723 724 -0.11916248e+00 -0.33160855e+00 -0.17708913e+02 0.13498000e+00
- 1 22 0 0 0.33154728e+00 -0.30256605e+00 -0.21021179e+02 0.00000000e+00
- 1 22 0 0 0.13441069e+00 -0.61034282e-01 -0.10504398e+02 0.00000000e+00
- 1 22 0 0 0.23447712e+00 -0.55436186e-01 -0.11399131e+02 0.00000000e+00
- 1 22 0 0 0.40276630e-01 -0.81005185e-01 -0.59938659e+01 0.00000000e+00
- 1 22 0 0 0.28499296e+00 -0.16459397e+00 -0.57287364e+01 0.00000000e+00
- 1 22 0 0 0.56454802e-01 -0.11026188e+00 -0.30730551e+01 0.00000000e+00
- 1 22 0 0 0.13671341e+00 0.63816667e-03 -0.55593623e+00 0.00000000e+00
- 1 22 0 0 0.20594212e+00 -0.15759953e+00 -0.76401715e+00 0.00000000e+00
- 1 130 0 0 0.82314687e+00 -0.57275857e+00 -0.29785105e+01 0.49767000e+00
- 1 22 0 0 0.11598577e+00 -0.20383709e+00 -0.49588372e+00 0.00000000e+00
- 1 22 0 0 0.36132704e+00 -0.11820806e+01 -0.29792851e+01 0.00000000e+00
- 1 22 0 0 0.40432602e-01 -0.47060850e-01 -0.35709711e-01 0.00000000e+00
- 1 22 0 0 -0.17228245e-01 -0.55723350e+00 -0.28765332e+00 0.00000000e+00
- 1 22 0 0 0.27646987e+00 -0.19983335e+00 -0.45947186e+00 0.00000000e+00
- 1 22 0 0 0.64077599e-01 -0.15892935e+00 -0.21223555e+00 0.00000000e+00
- 1 211 0 0 -0.11087726e+00 -0.11271740e+00 -0.14629359e+00 0.13957000e+00
- 1 -211 0 0 -0.17054505e+00 -0.66794864e+00 -0.60744394e+00 0.13957000e+00
- 2 111 725 726 -0.18786624e+00 -0.26867014e+00 -0.36505698e+00 0.13498000e+00
- 1 130 0 0 0.24731323e+00 -0.19417599e+00 -0.42832621e+00 0.49767000e+00
- 1 22 0 0 0.20484409e+00 0.29218902e+00 -0.49545608e+00 0.00000000e+00
- 1 22 0 0 0.16847089e+00 0.18108414e+00 -0.18812234e+00 0.00000000e+00
- 1 22 0 0 0.19666066e-02 0.92650926e-01 -0.14420173e-01 0.00000000e+00
- 1 22 0 0 -0.11411704e+00 0.34132072e+00 -0.31910659e+00 0.00000000e+00
- 1 211 0 0 0.58214155e+00 0.82062886e+00 -0.54099059e+00 0.13957000e+00
- 1 -211 0 0 0.84590909e+00 0.35574056e+01 -0.27656679e+01 0.13957000e+00
- 2 310 727 728 -0.84191103e-01 0.80728679e+01 -0.91300981e+01 0.49767000e+00
- 2 310 729 730 0.91029239e+00 0.33372785e+01 -0.34351311e+01 0.49767000e+00
- 1 22 0 0 -0.11250019e+01 0.20321096e+01 -0.20234865e+01 0.00000000e+00
- 1 22 0 0 -0.30401828e-01 0.75287416e-01 -0.42517266e-01 0.00000000e+00
- 1 -211 0 0 -0.41434022e+00 0.17495794e+01 -0.91531948e+00 0.13957000e+00
- 1 211 0 0 -0.39174399e+00 0.28706361e+00 -0.17399131e+00 0.13957000e+00
- 1 22 0 0 -0.30402389e+00 -0.75335427e-01 -0.14245838e+00 0.00000000e+00
- 1 22 0 0 -0.44630821e-01 0.39806897e-01 -0.49742563e-01 0.00000000e+00
- 2 310 731 732 -0.35895117e+01 -0.15237490e+00 -0.33413962e+01 0.49767000e+00
- 1 22 0 0 -0.11396461e+00 -0.44043411e-01 0.74475654e-03 0.00000000e+00
- 1 22 0 0 -0.37682244e+00 -0.13211741e-01 -0.20577223e+00 0.00000000e+00
- 1 22 0 0 -0.19767711e+00 0.15401244e+00 -0.29219234e+00 0.00000000e+00
- 1 22 0 0 -0.59606113e-01 0.43141280e-01 -0.25349996e+00 0.00000000e+00
- 2 310 733 734 -0.31416284e+01 0.70284596e+00 -0.53293234e+01 0.49767000e+00
- 1 22 0 0 -0.33125888e+00 -0.15584718e+00 -0.60965985e+00 0.00000000e+00
- 1 22 0 0 -0.70361741e-01 0.29126692e-01 -0.12657096e+00 0.00000000e+00
- 1 22 0 0 -0.43407022e+00 0.49933759e+00 -0.12276321e+01 0.00000000e+00
- 1 22 0 0 -0.25238685e+00 0.18600644e+00 -0.72538539e+00 0.00000000e+00
- 1 22 0 0 -0.83588776e-02 0.84816240e-01 -0.16486860e+00 0.00000000e+00
- 1 22 0 0 -0.19775671e+00 0.11129389e+00 -0.30934210e+00 0.00000000e+00
- 1 22 0 0 -0.36704656e+00 0.61512616e+00 -0.17177129e+01 0.00000000e+00
- 1 22 0 0 -0.27750502e+00 0.38081765e+00 -0.89286123e+00 0.00000000e+00
- 1 22 0 0 -0.24480367e+00 0.38994829e+00 -0.91286290e+00 0.00000000e+00
- 1 22 0 0 -0.60961005e-02 -0.41920600e-02 -0.78623130e-01 0.00000000e+00
- 1 22 0 0 -0.84948502e-01 -0.86634458e-02 -0.86481644e+01 0.00000000e+00
- 1 22 0 0 0.18807200e-01 0.76707424e-01 -0.95296040e+01 0.00000000e+00
- 1 22 0 0 0.78323877e+00 -0.25175554e+00 0.37630090e+01 0.00000000e+00
- 1 22 0 0 0.18005837e+01 -0.47701930e+00 0.93957117e+01 0.00000000e+00
- 1 22 0 0 0.14517089e+01 -0.20510965e+00 0.83783703e+01 0.00000000e+00
- 1 22 0 0 0.17158460e-01 -0.88406247e-02 0.22663836e+00 0.00000000e+00
- 1 22 0 0 0.18494875e+00 0.18565631e-01 0.92715306e+00 0.00000000e+00
- 1 22 0 0 0.18316194e+01 -0.13715674e+00 0.10684251e+02 0.00000000e+00
- 1 22 0 0 0.12225799e+00 0.36760192e-01 0.15685846e+00 0.00000000e+00
- 1 22 0 0 0.44702204e-01 0.22810165e-01 -0.25615703e-01 0.00000000e+00
- 1 22 0 0 0.61748682e-01 0.12816852e+00 0.68540940e+00 0.00000000e+00
- 1 22 0 0 0.19288071e+00 0.18635314e+00 0.23394899e+01 0.00000000e+00
- 1 22 0 0 -0.18384701e+00 -0.80367138e-01 0.63215024e+01 0.00000000e+00
- 1 22 0 0 -0.32041592e+00 -0.19176505e+00 0.73349551e+01 0.00000000e+00
- 1 22 0 0 0.11180058e-01 0.28805233e-01 0.20380952e+01 0.00000000e+00
- 1 22 0 0 0.45265998e+00 0.29496448e-01 0.20537148e+02 0.00000000e+00
- 1 22 0 0 -0.10869489e+00 -0.26414529e+00 0.12041843e+02 0.00000000e+00
- 1 22 0 0 -0.18019703e+00 -0.21651993e+00 0.82407381e+01 0.00000000e+00
- 1 22 0 0 0.33595513e-01 0.36682418e-02 0.27416253e+00 0.00000000e+00
- 1 22 0 0 0.18633947e+00 -0.32998197e+00 0.48596448e+01 0.00000000e+00
- 1 22 0 0 0.85175978e+00 -0.51807812e+00 0.43009676e+01 0.00000000e+00
- 1 22 0 0 0.67918829e+00 -0.48211781e+00 0.31428094e+01 0.00000000e+00
- 1 130 0 0 0.19663697e+01 -0.38905526e+01 0.22813800e+02 0.49767000e+00
- 1 22 0 0 -0.58239801e-02 -0.21398943e-01 0.35079007e-01 0.00000000e+00
- 1 22 0 0 0.35767378e+00 -0.47205277e+00 0.21492679e+01 0.00000000e+00
- 1 22 0 0 -0.64840584e-01 -0.99835913e-01 0.19243797e+00 0.00000000e+00
- 1 22 0 0 -0.57527749e-01 -0.65095331e+00 0.10199889e+01 0.00000000e+00
- 1 211 0 0 0.16966250e+00 -0.12717982e+01 0.56831041e+01 0.13957000e+00
- 1 -211 0 0 0.14595752e+00 -0.64015191e+00 0.19128479e+01 0.13957000e+00
- 1 211 0 0 0.70161054e-01 -0.36752916e+00 0.30107463e+00 0.13957000e+00
- 1 -211 0 0 0.22549990e-02 -0.35924904e+00 0.10098826e+01 0.13957000e+00
- 1 22 0 0 0.67149894e-01 -0.13809512e+00 0.10598150e+00 0.00000000e+00
- 1 -11 0 0 0.22282682e+00 -0.74987983e+00 0.32545541e+00 0.51000000e-03
- 1 11 0 0 0.18179666e+00 -0.58602813e+00 0.25007907e+00 0.51000000e-03
- 1 22 0 0 0.27018651e+00 -0.20840904e+00 0.20349439e+00 0.00000000e+00
- 1 22 0 0 0.12428792e+00 -0.11752472e+00 0.23093844e+00 0.00000000e+00
- 1 22 0 0 0.10733634e+00 0.14493310e-01 0.49454987e+00 0.00000000e+00
- 1 22 0 0 0.58082199e+00 0.16144388e+00 0.22487011e+00 0.00000000e+00
- 1 22 0 0 -0.23429822e+00 0.15346457e+00 0.40990944e+00 0.00000000e+00
- 1 22 0 0 -0.15173181e+00 -0.29838720e-02 0.15421405e+00 0.00000000e+00
- 2 111 735 736 -0.56923633e+00 0.15536609e+01 0.41991872e+00 0.13498000e+00
- 2 111 737 738 -0.17247930e+01 0.37065848e+01 0.15831641e+01 0.13498000e+00
- 1 22 0 0 -0.31985722e+00 0.84266978e+00 0.10555177e+01 0.00000000e+00
- 1 22 0 0 -0.11665619e+00 0.16481667e+00 0.30032447e+00 0.00000000e+00
- 1 22 0 0 0.58349985e-02 0.11050097e-01 -0.11731076e-01 0.00000000e+00
- 1 22 0 0 -0.29492415e+00 0.24545012e+00 0.21700655e+00 0.00000000e+00
- 1 22 0 0 -0.27591895e+00 0.53072120e+00 0.18158392e+01 0.00000000e+00
- 1 22 0 0 -0.30910391e+00 0.38880503e+00 0.17754196e+01 0.00000000e+00
- 1 22 0 0 -0.29199051e+00 0.56573081e+00 0.15375542e+01 0.00000000e+00
- 1 22 0 0 -0.13552649e+00 0.30748261e+00 0.59142046e+00 0.00000000e+00
- 1 22 0 0 -0.11011751e+00 0.37276154e+00 0.52932883e+00 0.00000000e+00
- 1 22 0 0 -0.42856950e-01 0.57009119e-01 0.29466743e-01 0.00000000e+00
- 1 22 0 0 0.50822684e-01 0.59580513e+00 0.31137218e+01 0.00000000e+00
- 1 22 0 0 0.17016297e-01 0.46362555e-01 0.12106910e+00 0.00000000e+00
- 1 22 0 0 0.65355428e+00 0.43600091e+00 0.81097905e+01 0.00000000e+00
- 1 22 0 0 0.14745609e+00 0.12688944e+00 0.27727582e+01 0.00000000e+00
- 1 22 0 0 0.12875538e+00 0.60785049e-01 0.16156791e+01 0.00000000e+00
- 1 22 0 0 0.77804861e+00 0.10652041e+00 0.68275781e+01 0.00000000e+00
- 1 22 0 0 -0.14572671e+00 -0.10462372e-01 0.24030754e+01 0.00000000e+00
- 1 22 0 0 -0.28681104e-01 0.50997610e-01 0.25038670e+01 0.00000000e+00
- 1 22 0 0 -0.50220171e+00 0.24747675e+00 0.71298417e+01 0.00000000e+00
- 1 22 0 0 -0.40008590e+00 0.22769292e+00 0.75957363e+01 0.00000000e+00
- 1 22 0 0 -0.23207918e-01 0.37805862e+00 0.22779968e+02 0.00000000e+00
- 1 22 0 0 -0.59202623e-01 0.65608393e-01 0.73772491e+01 0.00000000e+00
- 1 22 0 0 -0.26968092e-01 0.17627505e+00 0.34038050e+02 0.00000000e+00
- 1 22 0 0 -0.34623856e+00 0.11090495e+01 0.17189513e+03 0.00000000e+00
- 1 22 0 0 -0.38794965e+00 0.37056006e+00 0.53210629e+02 0.00000000e+00
- 1 22 0 0 -0.14774398e+00 0.26710677e+00 0.26276018e+02 0.00000000e+00
- 1 -211 0 0 -0.34327163e-01 -0.96481566e-01 0.12116405e+03 0.13957000e+00
- 1 211 0 0 0.48201266e+00 -0.18277206e+00 0.22130596e+03 0.13957000e+00
- 1 22 0 0 0.26820640e-01 -0.20465518e+00 0.31025054e+02 0.00000000e+00
- 1 22 0 0 -0.10546094e+00 -0.30333656e+00 0.61953524e+02 0.00000000e+00
- 1 22 0 0 -0.10937096e+00 -0.97420626e-01 0.11573173e+02 0.00000000e+00
- 1 22 0 0 -0.13086133e+00 -0.11533770e+00 0.31332277e+02 0.00000000e+00
- 1 22 0 0 -0.16974455e-01 -0.38870035e-01 0.23715677e+01 0.00000000e+00
- 1 22 0 0 0.89519487e-01 0.64474783e-01 0.40808024e+01 0.00000000e+00
- 1 130 0 0 0.13016211e+00 -0.60075841e+00 0.62110907e+02 0.49767000e+00
- 1 22 0 0 -0.20139146e+00 0.46633266e-01 0.61257629e+01 0.00000000e+00
- 1 22 0 0 -0.12341581e+00 0.15642787e+00 0.55695285e+01 0.00000000e+00
- 1 22 0 0 -0.15310731e+00 0.10800667e+00 0.25311733e+00 0.00000000e+00
- 1 22 0 0 -0.85244544e-01 -0.40351674e-01 0.10896126e+00 0.00000000e+00
- 1 22 0 0 -0.18167724e+00 -0.79396046e-02 0.83727033e+00 0.00000000e+00
- 1 22 0 0 -0.25268862e+00 -0.77124592e-01 0.68189145e+00 0.00000000e+00
- 1 22 0 0 0.37632738e-01 0.71021926e-01 0.17371114e+00 0.00000000e+00
- 1 22 0 0 -0.22745924e-02 0.24882357e+00 0.12417202e+01 0.00000000e+00
- 1 22 0 0 0.41659581e-01 -0.64401435e-01 0.10302436e+00 0.00000000e+00
- 1 22 0 0 0.15520355e+00 0.24459723e-01 0.40074401e+00 0.00000000e+00
- 1 22 0 0 0.41791030e-01 0.11424555e+00 0.11273045e+01 0.00000000e+00
- 1 -11 0 0 0.54692849e-02 0.40099034e-02 0.33495787e-01 0.51000000e-03
- 1 11 0 0 0.13492808e+00 0.54154508e-01 0.76060829e+00 0.51000000e-03
- 1 22 0 0 -0.26657306e+00 0.15914942e+00 0.92770803e+00 0.00000000e+00
- 1 22 0 0 -0.58456768e+00 0.57765056e+00 0.21708800e+01 0.00000000e+00
- 1 -211 0 0 -0.79491048e-01 0.21030314e+00 -0.93594701e+02 0.13957000e+00
- 1 211 0 0 -0.28947961e+00 0.27387824e+00 -0.44423664e+03 0.13957000e+00
- 1 22 0 0 0.84784116e-01 -0.14520507e-01 -0.14304954e+01 0.00000000e+00
- 1 22 0 0 0.14318712e+00 -0.11359016e+00 -0.76517807e+01 0.00000000e+00
- 1 22 0 0 -0.14944645e+00 -0.28250673e+00 -0.15100683e+02 0.00000000e+00
- 1 22 0 0 0.30283974e-01 -0.49101819e-01 -0.26082296e+01 0.00000000e+00
- 1 22 0 0 -0.13682096e+00 -0.93042900e-01 -0.22096334e+00 0.00000000e+00
- 1 22 0 0 -0.51045289e-01 -0.17562724e+00 -0.14409364e+00 0.00000000e+00
- 1 211 0 0 -0.74139979e-01 0.10580858e+01 -0.13155797e+01 0.13957000e+00
- 1 -211 0 0 -0.10051123e-01 0.70147820e+01 -0.78145184e+01 0.13957000e+00
- 1 -211 0 0 0.49160641e+00 0.13680967e+01 -0.12110606e+01 0.13957000e+00
- 1 211 0 0 0.41868598e+00 0.19691818e+01 -0.22240705e+01 0.13957000e+00
- 2 111 739 740 -0.14452905e+01 -0.22419662e+00 -0.11912054e+01 0.13498000e+00
- 2 111 741 742 -0.21442211e+01 0.71821722e-01 -0.21501908e+01 0.13498000e+00
- 1 211 0 0 -0.51909454e+00 -0.85085555e-03 -0.82037197e+00 0.13957000e+00
- 1 -211 0 0 -0.26225339e+01 0.70369682e+00 -0.45089514e+01 0.13957000e+00
- 1 22 0 0 -0.54510636e+00 0.14825868e+01 0.37024877e+00 0.00000000e+00
- 1 22 0 0 -0.24129979e-01 0.71074110e-01 0.49669954e-01 0.00000000e+00
- 1 22 0 0 -0.45422594e+00 0.94675912e+00 0.34520106e+00 0.00000000e+00
- 1 22 0 0 -0.12705671e+01 0.27598257e+01 0.12379631e+01 0.00000000e+00
- 1 22 0 0 -0.39997355e+00 -0.13269746e-02 -0.32241481e+00 0.00000000e+00
- 1 22 0 0 -0.10453170e+01 -0.22286965e+00 -0.86879058e+00 0.00000000e+00
- 1 22 0 0 -0.10914653e+01 0.94294802e-02 -0.10061218e+01 0.00000000e+00
- 1 22 0 0 -0.10527558e+01 0.62392242e-01 -0.11440690e+01 0.00000000e+00
- 822
- 2 25 2 3 0.60892464e+02 -0.62887838e+01 -0.61164353e+02 0.12499658e+03
- 2 23 4 8 0.63508953e+02 -0.24378053e+02 -0.47564880e+02 0.90876111e+02
- 2 23 9 11 -0.26164885e+01 0.18089269e+02 -0.13599472e+02 0.17861455e+02
- 1 22 0 0 0.21892826e+00 -0.30487489e-01 -0.67633051e-01 0.00000000e+00
- 1 -11 0 0 0.67195040e+02 0.10226793e+02 -0.54570072e+02 0.51000000e-03
- 1 22 0 0 0.10353619e+00 0.15751995e-01 -0.84122391e-01 0.00000000e+00
- 1 11 0 0 -0.40085513e+01 -0.34590104e+02 0.71569453e+01 0.51000000e-03
- 1 22 0 0 -0.88669811e-06 -0.61926043e-05 0.13589483e-05 0.00000000e+00
- 1 11 0 0 -0.68332397e+01 0.25992089e+01 -0.10182826e+02 0.51000000e-03
- 1 -11 0 0 0.38572021e+01 0.14154976e+02 -0.31449483e+01 0.51000000e-03
- 1 22 0 0 0.35954908e+00 0.13350848e+01 -0.27169743e+00 0.00000000e+00
- 2 1 120 120 -0.25265734e+01 0.22061752e+01 0.50825136e+01 0.33000000e+00
- 2 21 120 120 -0.58686104e+00 -0.51319602e+00 0.24414930e+02 0.00000000e+00
- 2 2203 120 120 0.52710815e+00 0.51233642e+00 0.23816592e+04 0.77133000e+00
- 2 -1 130 130 -0.26919509e+01 0.11193356e+01 0.73327847e+01 0.33000000e+00
- 2 1 130 130 -0.16954637e+02 -0.62948764e+00 0.17428564e+02 0.33000000e+00
- 2 -1 137 137 -0.13152961e+02 0.12669874e+01 0.15105645e+02 0.33000000e+00
- 2 21 137 137 -0.69503209e+01 0.60035839e+00 0.90140152e+01 0.00000000e+00
- 2 21 137 137 -0.78485592e+01 0.16507236e+01 0.95261651e+01 0.00000000e+00
- 2 21 137 137 -0.48736912e+01 0.57479620e+00 0.51025108e+01 0.00000000e+00
- 2 21 137 137 -0.36024833e+01 -0.18897569e+00 0.13984633e+01 0.00000000e+00
- 2 21 137 137 -0.32139666e+00 0.54151611e+00 0.24141074e+00 0.00000000e+00
- 2 21 137 137 0.28291765e+01 -0.54376402e+00 -0.21596332e+01 0.00000000e+00
- 2 21 137 137 0.40451847e+01 -0.86382333e+00 -0.37693275e+01 0.00000000e+00
- 2 21 137 137 0.24141393e+01 -0.15891617e+01 -0.27205570e+01 0.00000000e+00
- 2 21 137 137 0.18942354e+01 0.44708196e+00 -0.71448886e+01 0.00000000e+00
- 2 21 137 137 0.29495324e+01 0.11450858e+01 -0.86830304e+01 0.00000000e+00
- 2 21 137 137 0.50193223e+00 0.40479760e+01 -0.69414155e+01 0.00000000e+00
- 2 21 137 137 0.25906823e+01 0.17073850e+01 -0.16853501e+02 0.00000000e+00
- 2 21 137 137 0.43856636e+00 0.12823056e+01 -0.15567846e+02 0.00000000e+00
- 2 21 137 137 0.18763841e+00 0.12861761e+01 -0.17076575e+02 0.00000000e+00
- 2 21 137 137 0.13368410e-02 0.15627782e+02 -0.18809795e+03 0.00000000e+00
- 2 21 137 137 -0.32809286e+00 0.33167135e+01 -0.69671566e+02 0.00000000e+00
- 2 21 137 137 -0.53803022e+00 0.17627074e+01 -0.16182207e+03 0.00000000e+00
- 2 21 137 137 -0.19840793e+01 0.84640369e-01 -0.29733828e+03 0.00000000e+00
- 2 21 137 137 -0.41262211e+01 0.26413826e+01 -0.60465052e+03 0.00000000e+00
- 2 21 137 137 -0.93554969e+00 0.19436131e+01 -0.38130553e+03 0.00000000e+00
- 2 21 137 137 -0.42328318e-01 0.48617335e+00 -0.88834651e+02 0.00000000e+00
- 2 21 137 137 0.42328318e-01 -0.48617335e+00 -0.54274961e+03 0.00000000e+00
- 2 21 137 137 0.69001882e+00 -0.21651976e-01 -0.93121333e+00 0.00000000e+00
- 2 21 137 137 -0.21467002e+00 -0.42081318e+00 -0.23374589e+01 0.00000000e+00
- 2 1 137 137 0.97623526e+00 0.34421918e-01 -0.18694928e+03 0.33000000e+00
- 2 -3 188 188 0.10605003e+00 -0.40216642e+01 0.98636892e+01 0.50000000e+00
- 2 21 188 188 -0.70877274e+00 0.80863793e-01 0.10772259e+02 0.00000000e+00
- 2 21 188 188 0.82444525e+00 0.16944799e+00 0.37474905e+02 0.00000000e+00
- 2 21 188 188 -0.56228046e+00 0.14652082e+01 0.51802435e+02 0.00000000e+00
- 2 21 188 188 -0.16456291e+01 0.26975543e+00 0.23247133e+03 0.00000000e+00
- 2 1 188 188 0.21405446e+00 -0.37169437e-01 0.60462904e+03 0.33000000e+00
- 2 3 200 200 -0.18321086e+01 0.11231885e+01 0.77158586e+00 0.50000000e+00
- 2 21 200 200 -0.28301920e+00 -0.27573544e+00 0.35838310e+00 0.00000000e+00
- 2 21 200 200 0.73673935e+00 0.13773621e+01 0.86604923e+00 0.00000000e+00
- 2 21 200 200 0.38449086e+00 0.13482724e+01 0.10984023e+01 0.00000000e+00
- 2 21 200 200 -0.56923535e+00 0.38139357e+01 0.18089265e+01 0.00000000e+00
- 2 21 200 200 -0.12948995e+01 0.62850138e+01 0.57402459e+01 0.00000000e+00
- 2 21 200 200 -0.26809043e+00 0.19735137e+01 0.44151693e+01 0.00000000e+00
- 2 21 200 200 -0.24141393e+01 0.15891617e+01 0.28934505e+01 0.00000000e+00
- 2 21 200 200 -0.40451847e+01 0.86382333e+00 0.26283176e+01 0.00000000e+00
- 2 21 200 200 0.12948995e+01 -0.62850138e+01 0.69578889e+02 0.00000000e+00
- 2 21 200 200 0.64416840e+00 -0.15202030e+01 0.19781466e+02 0.00000000e+00
- 2 21 200 200 0.77833829e+01 0.27284609e+01 0.65517295e+02 0.00000000e+00
- 2 21 200 200 0.24912891e+01 0.28427215e+01 0.30028344e+02 0.00000000e+00
- 2 21 200 200 0.60462093e+01 0.75245419e+01 0.19605615e+03 0.00000000e+00
- 2 21 200 200 0.81349419e+00 -0.51978616e+00 0.94192165e+02 0.00000000e+00
- 2 21 200 200 0.23091487e+01 0.94404076e+00 0.51316534e+03 0.00000000e+00
- 2 21 200 200 0.11155568e+01 0.18562868e+01 0.25825884e+03 0.00000000e+00
- 2 21 200 200 -0.78372684e+00 0.28970948e+01 0.48985816e+03 0.00000000e+00
- 2 21 200 200 -0.75469125e+00 0.12085844e+01 0.24225985e+03 0.00000000e+00
- 2 21 200 200 -0.33871206e+00 0.11734607e+00 0.50423368e+03 0.00000000e+00
- 2 21 200 200 -0.81349419e+00 0.51978616e+00 0.25796192e+03 0.00000000e+00
- 2 21 200 200 -0.64416840e+00 0.15202030e+01 0.17599582e+03 0.00000000e+00
- 2 21 200 200 -0.23091487e+01 -0.94404076e+00 0.14322997e+03 0.00000000e+00
- 2 21 200 200 -0.11155568e+01 -0.18562868e+01 0.84804504e+02 0.00000000e+00
- 2 21 200 200 0.78372684e+00 -0.28970948e+01 0.95576633e+02 0.00000000e+00
- 2 21 200 200 -0.27109434e+01 0.13442838e+00 0.39218043e+02 0.00000000e+00
- 2 21 200 200 -0.22221968e+00 0.42389387e+00 0.57371844e+01 0.00000000e+00
- 2 21 200 200 -0.23012390e-01 0.12183675e+01 0.82482453e+01 0.00000000e+00
- 2 21 200 200 -0.51737982e+01 0.50552082e+01 0.32965012e+02 0.00000000e+00
- 2 21 200 200 -0.28291765e+01 0.54376402e+00 0.16585489e+02 0.00000000e+00
- 2 21 200 200 -0.26526737e+01 -0.37446829e+00 0.17224954e+02 0.00000000e+00
- 2 21 200 200 -0.77833829e+01 -0.27284609e+01 0.18308556e+02 0.00000000e+00
- 2 21 200 200 -0.60462093e+01 -0.75245419e+01 0.19294671e+02 0.00000000e+00
- 2 21 200 200 -0.24912891e+01 -0.28427215e+01 0.55494985e+01 0.00000000e+00
- 2 21 200 200 -0.18763841e+00 -0.12861761e+01 0.38277672e+01 0.00000000e+00
- 2 21 200 200 0.23012390e-01 -0.12183675e+01 0.30138273e+01 0.00000000e+00
- 2 21 200 200 0.26809043e+00 -0.19735137e+01 0.31913722e+01 0.00000000e+00
- 2 21 200 200 -0.13368410e-02 -0.15627782e+02 0.18204167e+02 0.00000000e+00
- 2 21 200 200 0.56923535e+00 -0.38139357e+01 -0.41288272e+01 0.00000000e+00
- 2 21 200 200 -0.43856636e+00 -0.12823056e+01 -0.11635718e+01 0.00000000e+00
- 2 21 200 200 -0.73673935e+00 -0.13773621e+01 -0.20908573e+01 0.00000000e+00
- 2 21 200 200 0.32809286e+00 -0.33167135e+01 -0.80723590e+01 0.00000000e+00
- 2 21 200 200 -0.50193223e+00 -0.40479760e+01 -0.12170715e+02 0.00000000e+00
- 2 21 200 200 -0.38449086e+00 -0.13482724e+01 -0.60508739e+01 0.00000000e+00
- 2 21 200 200 0.51737982e+01 -0.50552082e+01 -0.29004048e+02 0.00000000e+00
- 2 21 200 200 0.41262211e+01 -0.26413826e+01 -0.67054437e+02 0.00000000e+00
- 2 21 200 200 0.19840793e+01 -0.84640369e-01 -0.58058302e+02 0.00000000e+00
- 2 21 200 200 -0.29495324e+01 -0.11450858e+01 -0.70483985e+02 0.00000000e+00
- 2 21 200 200 0.93554969e+00 -0.19436131e+01 -0.73350528e+03 0.00000000e+00
- 2 21 200 200 0.53803022e+00 -0.17627074e+01 -0.56374641e+03 0.00000000e+00
- 2 21 200 200 -0.25906823e+01 -0.17073850e+01 -0.89184614e+03 0.00000000e+00
- 2 2203 200 200 0.52553917e+00 0.78236260e+00 -0.13971975e+04 0.77133000e+00
- 2 1 308 308 0.33904800e+01 0.89953001e+00 0.14510724e+02 0.00000000e+00
- 2 21 308 308 0.13719333e+01 -0.15386214e+00 0.61636462e+01 0.00000000e+00
- 2 21 308 308 0.26526737e+01 0.37446829e+00 0.79927624e+01 0.00000000e+00
- 2 21 308 308 0.27109434e+01 -0.13442838e+00 0.77708347e+01 0.00000000e+00
- 2 21 308 308 0.75469125e+00 -0.12085844e+01 0.32441979e+01 0.00000000e+00
- 2 21 308 308 0.22221968e+00 -0.42389387e+00 0.78876960e+00 0.00000000e+00
- 2 21 308 308 0.33871206e+00 -0.11734607e+00 0.57049858e+00 0.00000000e+00
- 2 21 308 308 0.17612899e+01 -0.16857752e+01 0.30474437e+01 0.00000000e+00
- 2 21 308 308 -0.13719333e+01 0.15386214e+00 -0.22710002e+01 0.00000000e+00
- 2 21 308 308 -0.17612899e+01 0.16857752e+01 -0.64293927e+01 0.00000000e+00
- 2 21 308 308 -0.18942354e+01 -0.44708196e+00 -0.10855274e+02 0.00000000e+00
- 2 -1 308 308 -0.33904800e+01 -0.89953001e+00 -0.24942144e+02 0.00000000e+00
- 2 2 330 330 -0.20749596e+00 -0.68120383e+00 -0.63536304e+01 0.00000000e+00
- 2 -2 330 330 0.20749596e+00 0.68120383e+00 -0.29437148e+03 0.00000000e+00
- 2 3 117 117 -0.22813577e+00 0.37651416e+00 -0.10237784e+02 0.00000000e+00
- 2 -3 117 117 0.22813577e+00 -0.37651416e+00 -0.53053770e+02 0.00000000e+00
- 2 91 118 119 0.00000000e+00 0.00000000e+00 -0.63291554e+02 0.11953804e+01
- 2 -311 334 334 -0.62955353e-01 0.29580663e+00 -0.38768971e+02 0.49767000e+00
- 2 311 335 335 0.62955353e-01 -0.29580663e+00 -0.24522584e+02 0.49767000e+00
- 2 92 121 129 -0.25863263e+01 0.22053156e+01 0.24111567e+04 0.70356499e+02
- 2 111 336 337 -0.84821282e+00 0.60478744e+00 0.13434674e+01 0.13498000e+00
- 1 -211 0 0 -0.85777533e-01 -0.27514489e-01 0.30038001e+00 0.13957000e+00
- 1 211 0 0 -0.94022759e+00 0.69640314e+00 0.49945244e+01 0.13957000e+00
- 1 -211 0 0 0.28014051e+00 0.30710496e+00 0.10255992e+01 0.13957000e+00
- 2 323 338 339 -0.93254596e+00 0.66374604e+00 0.30879837e+01 0.90348113e+00
- 2 333 340 341 -0.14614741e+00 -0.58697080e+00 0.11607234e+02 0.10051988e+01
- 2 -313 342 343 0.27324321e-02 0.25716021e+00 0.63331345e+02 0.91645062e+00
- 2 2214 344 345 -0.75959249e+00 -0.23180641e+00 0.32381309e+03 0.12231138e+01
- 2 113 346 347 0.84330459e+00 0.52240553e+00 0.20016530e+04 0.70072935e+00
- 2 92 131 136 -0.19646588e+02 0.48984793e+00 0.24761348e+02 0.62439231e+01
- 2 213 348 349 -0.25264357e+01 0.54043925e+00 0.56264329e+01 0.77923141e+00
- 1 -211 0 0 -0.21322166e+01 -0.22649271e+00 0.26762689e+01 0.13957000e+00
- 2 221 350 352 -0.14369088e+01 0.75869977e+00 0.18561699e+01 0.54745000e+00
- 1 211 0 0 -0.43570284e+01 -0.40443308e+00 0.47317850e+01 0.13957000e+00
- 2 113 353 354 -0.32675413e+01 -0.18934745e+00 0.34380516e+01 0.52846449e+00
- 2 -213 355 356 -0.59264575e+01 0.10982151e-01 0.64326400e+01 0.98172405e+00
- 2 92 138 187 -0.25357377e+02 0.36333463e+02 -0.25652167e+04 0.73584297e+03
- 1 211 0 0 -0.94576418e+00 0.17322071e+00 0.10013916e+01 0.13957000e+00
- 1 -211 0 0 -0.12933159e+02 0.14036563e+01 0.15455126e+02 0.13957000e+00
- 2 223 357 359 -0.43150001e+01 0.41934674e+00 0.48846506e+01 0.77838988e+00
- 1 211 0 0 -0.11563344e+02 0.19424944e+01 0.13376102e+02 0.13957000e+00
- 2 -323 360 361 -0.22544690e+01 -0.12861146e+00 0.26871651e+01 0.94021728e+00
- 2 -3322 362 363 -0.18764577e+01 0.70187002e+00 0.11178339e+01 0.13149000e+01
- 2 3122 364 365 -0.13329083e+01 0.11346885e-01 0.14626956e+01 0.11156800e+01
- 1 -2112 0 0 -0.56316984e+00 -0.84949574e-01 -0.29648293e+00 0.93957000e+00
- 1 2112 0 0 0.11608564e+00 -0.19024111e-02 -0.38095499e+00 0.93957000e+00
- 1 -2112 0 0 0.16599533e+01 -0.40016417e+00 -0.12874086e+01 0.93957000e+00
- 1 2112 0 0 0.25388111e+01 -0.13024591e+01 -0.24936550e+01 0.93957000e+00
- 1 -2112 0 0 0.17435642e+01 0.24398910e-01 -0.19171412e+01 0.93957000e+00
- 2 213 366 367 0.22601504e+01 -0.10096797e+01 -0.25094910e+01 0.70763339e+00
- 2 2114 368 369 0.26285948e+01 0.96882769e+00 -0.69528530e+01 0.12381503e+01
- 2 -213 370 371 0.67073497e+00 0.46460841e+00 -0.33302186e+01 0.80533299e+00
- 2 -1114 372 373 0.69377146e+00 0.16697567e+01 -0.53261350e+01 0.11186759e+01
- 2 1114 374 375 0.20067456e+01 0.69815044e+00 -0.80377170e+01 0.12357654e+01
- 1 211 0 0 0.26052840e+00 0.13388432e+01 -0.27548301e+01 0.13957000e+00
- 1 -2212 0 0 0.66355675e+00 0.84094675e+00 -0.98477830e+01 0.93827000e+00
- 1 2112 0 0 -0.52646359e+00 0.15045015e+01 -0.10340414e+02 0.93957000e+00
- 1 211 0 0 0.32338320e+00 0.48662674e+00 -0.42845981e+01 0.13957000e+00
- 2 113 376 377 0.15614895e+01 0.19094804e+01 -0.30144487e+02 0.69146234e+00
- 2 111 378 379 -0.61733086e+00 0.72200037e+00 -0.68111285e+01 0.13498000e+00
- 2 111 380 381 0.71678300e+00 0.26761486e+01 -0.27832825e+02 0.13498000e+00
- 1 -211 0 0 0.73114054e+00 0.35200861e+01 -0.43520116e+02 0.13957000e+00
- 1 211 0 0 -0.62411709e+00 0.49285920e+01 -0.61238922e+02 0.13957000e+00
- 2 223 382 384 0.21586642e+00 0.18595422e+01 -0.30840851e+02 0.78882913e+00
- 1 -211 0 0 -0.40293926e+00 0.68517100e+00 -0.16169029e+02 0.13957000e+00
- 1 211 0 0 0.28203153e+00 0.30334617e+01 -0.44804320e+02 0.13957000e+00
- 1 -321 0 0 -0.39458462e+00 0.56774733e+00 -0.48555728e+02 0.49360000e+00
- 1 321 0 0 -0.13427809e+00 0.11269915e+00 -0.12808663e+02 0.49360000e+00
- 2 113 385 386 -0.10894778e-02 0.10859579e+01 -0.55956961e+02 0.79227799e+00
- 1 -211 0 0 -0.27703541e+00 0.17815792e+00 -0.80075132e+01 0.13957000e+00
- 2 223 387 389 -0.87577384e+00 0.58548310e+00 -0.13086923e+03 0.78225863e+00
- 2 213 390 391 -0.10950078e+01 0.12730522e+01 -0.25116386e+03 0.79348002e+00
- 2 -213 392 393 -0.34471355e+01 0.14474269e+01 -0.44882565e+03 0.80263859e+00
- 2 223 394 396 -0.80432262e+00 0.13702779e+01 -0.35981882e+03 0.79855654e+00
- 2 -313 397 398 -0.10029893e+01 0.12794795e+01 -0.33787128e+03 0.94086186e+00
- 2 221 399 401 0.23869067e+00 -0.20747248e+00 -0.11316414e+03 0.54745000e+00
- 2 313 402 403 0.21862912e+00 0.25190230e+00 -0.23956923e+03 0.93528171e+00
- 2 -311 404 404 -0.45526519e+00 -0.22164684e+00 -0.42800544e+02 0.49767000e+00
- 2 323 405 406 0.32954908e+00 -0.48913504e+00 -0.35646649e+02 0.10050993e+01
- 2 -213 407 408 -0.11402976e+00 0.76936461e+00 -0.65274670e+01 0.92165520e+00
- 2 -311 409 409 0.30806052e+00 -0.59209534e+00 -0.58462635e+01 0.49767000e+00
- 2 311 410 410 -0.18105790e+00 0.20124221e+00 -0.10783852e+02 0.49767000e+00
- 2 223 411 413 -0.65469683e-01 -0.63096750e+00 -0.20206934e+02 0.78312286e+00
- 1 211 0 0 0.89134585e+00 0.27875180e+00 -0.16175038e+02 0.13957000e+00
- 1 -211 0 0 -0.73836449e-01 -0.14585590e+00 -0.73748368e+02 0.13957000e+00
- 2 213 414 415 0.18275762e+00 -0.72273320e-01 -0.38623029e+02 0.87471833e+00
- 1 -211 0 0 0.27739770e+00 0.23605575e+00 -0.27111080e+02 0.13957000e+00
- 2 92 189 199 -0.17721326e+01 -0.20735582e+01 0.94701365e+03 0.40359281e+02
- 2 323 416 417 -0.56765056e+00 -0.17194487e+01 0.61736239e+01 0.90406268e+00
- 1 -211 0 0 0.79448094e+00 -0.28347493e+00 0.36943486e+01 0.13957000e+00
- 2 -313 418 419 -0.31456121e+00 -0.67696499e+00 0.66641875e+01 0.10598611e+01
- 2 333 420 421 0.25975557e+00 -0.97917270e+00 0.61251634e+01 0.10187536e+01
- 2 323 422 423 0.29379225e+00 0.15846817e+00 0.47478100e+01 0.88119999e+00
- 1 -321 0 0 -0.93998556e+00 -0.13834039e+00 0.20578350e+02 0.49360000e+00
- 2 313 424 425 0.31267427e+00 0.57712694e+00 0.54157073e+02 0.79600414e+00
- 1 211 0 0 -0.67071507e+00 0.59193377e+00 0.26856430e+02 0.13957000e+00
- 1 -2212 0 0 -0.97960739e-01 0.20395847e+00 0.19457239e+03 0.93827000e+00
- 2 111 426 427 -0.10249781e+01 -0.22231136e+00 0.32033154e+03 0.13498000e+00
- 1 2112 0 0 0.18301568e+00 0.41466759e+00 0.30311274e+03 0.93957000e+00
- 2 92 201 307 -0.16315045e+02 -0.28709418e+02 -0.39212501e+03 0.73193100e+04
- 2 221 428 430 -0.39507952e-01 0.55647180e+00 0.33624895e+00 0.54745000e+00
- 2 3122 431 432 -0.38739249e+00 0.29836547e+00 0.68332596e+00 0.11156800e+01
- 1 -2212 0 0 -0.10083781e+01 0.14742359e+01 0.83011212e+00 0.93827000e+00
- 2 111 433 434 -0.20376992e-02 0.47173894e+00 0.85625507e+00 0.13498000e+00
- 2 111 435 436 -0.11573193e+00 0.57762182e+00 -0.69324599e-02 0.13498000e+00
- 2 213 437 438 -0.21324762e+00 0.27351084e+01 0.16487073e+01 0.71318701e+00
- 1 -211 0 0 0.54447856e-01 0.52252960e+00 0.49374511e+00 0.13957000e+00
- 1 211 0 0 -0.62108804e+00 0.22930939e+01 0.15478957e+01 0.13957000e+00
- 2 113 439 440 -0.64343797e+00 0.53489891e+01 0.56472722e+01 0.82858267e+00
- 2 111 441 442 -0.27363416e+00 -0.12401100e+00 0.82460688e+00 0.13498000e+00
- 2 111 443 444 -0.81876889e+00 0.21557548e+01 0.29247331e+01 0.13498000e+00
- 2 -213 445 446 -0.92898338e+00 0.35971623e+00 0.12140121e+01 0.75577090e+00
- 1 2212 0 0 -0.16533380e+01 0.31684149e+00 0.13481411e+01 0.93827000e+00
- 1 -2212 0 0 -0.26376663e+01 0.76904073e+00 0.28961391e+01 0.93827000e+00
- 2 2224 447 448 0.17193328e+00 -0.52435600e+00 0.65261536e+01 0.12724641e+01
- 2 113 449 450 0.64023897e+00 -0.20118118e+00 0.36532640e+01 0.71226549e+00
- 2 -3224 451 452 -0.23798716e+00 -0.19756554e+01 0.23415926e+02 0.13747404e+01
- 2 -313 453 454 0.27119576e+00 -0.63912173e+00 0.83211886e+01 0.89751102e+00
- 2 -213 455 456 0.66810194e+00 -0.57847826e+00 0.14195789e+02 0.85441124e+00
- 1 211 0 0 0.54111847e-01 -0.37053479e+00 0.22724161e+01 0.13957000e+00
- 2 -213 457 458 0.93090460e+00 -0.10566183e+01 0.25908002e+02 0.10836714e+01
- 2 213 459 460 0.47742698e+00 -0.52720814e+00 0.69347989e+01 0.83707657e+00
- 2 313 461 462 0.23678721e+01 0.75683288e+00 0.24672538e+02 0.88624165e+00
- 2 331 463 464 0.54810697e+00 0.50641791e+00 0.67899706e+01 0.95780577e+00
- 2 3312 465 466 0.22353816e+01 0.52221848e+00 0.30957724e+02 0.13213000e+01
- 2 -3212 467 468 0.21254665e+01 0.61194470e+00 0.17112813e+02 0.11925500e+01
- 2 213 469 470 0.18314315e+01 0.21630917e+01 0.33849917e+02 0.53191373e+00
- 2 111 471 472 0.18231314e+01 0.23071709e+01 0.44483965e+02 0.13498000e+00
- 2 223 473 475 0.11646144e+01 0.10376088e+01 0.39382625e+02 0.77525295e+00
- 1 -211 0 0 0.21192753e+01 0.24605997e+01 0.73163296e+02 0.13957000e+00
- 2 111 476 477 0.37002725e+00 0.61348961e+00 0.10674896e+02 0.13498000e+00
- 1 2212 0 0 0.43328554e+00 -0.10220564e+00 0.55222397e+02 0.93827000e+00
- 1 -2112 0 0 0.15446756e+01 0.14376477e+01 0.42346946e+03 0.93957000e+00
- 1 -211 0 0 -0.19867953e+00 -0.28734512e-01 0.14665795e+02 0.13957000e+00
- 2 223 478 480 0.29647879e-01 0.62003902e+00 0.82588382e+02 0.77291373e+00
- 2 323 481 482 0.15453848e+00 0.15489627e+01 0.21308436e+03 0.85022709e+00
- 2 -311 483 483 0.43773667e+00 0.56459348e-01 0.57702741e+02 0.49767000e+00
- 2 -213 484 485 0.79222609e+00 0.18823219e+00 0.26812973e+03 0.74608356e+00
- 2 213 486 487 -0.67479094e-01 0.43673699e+00 0.23713385e+03 0.74763035e+00
- 2 313 488 489 0.35986581e+00 0.10464724e+01 0.20154163e+03 0.88936411e+00
- 1 -321 0 0 -0.36829913e+00 0.15357610e+01 0.23552211e+03 0.49360000e+00
- 2 111 490 491 -0.75278234e+00 0.10300266e+01 0.25607617e+03 0.13498000e+00
- 1 211 0 0 -0.23227839e+00 0.51125425e+00 0.88350195e+02 0.13957000e+00
- 2 -213 492 493 -0.97406683e+00 -0.40009782e+00 0.22104970e+03 0.71436338e+00
- 2 111 494 495 0.32680468e+00 0.28873465e+00 0.15739149e+03 0.13498000e+00
- 1 211 0 0 -0.17535901e+01 -0.54317463e-01 0.97906115e+02 0.13957000e+00
- 2 -213 496 497 -0.18852221e+00 -0.36655750e+00 0.19399744e+02 0.66287097e+00
- 2 213 498 499 -0.34829700e+00 -0.86513362e+00 0.80531494e+02 0.80844405e+00
- 2 -213 500 501 -0.63161382e+00 -0.71939642e+00 0.53203196e+02 0.76425788e+00
- 2 323 502 503 -0.93103657e+00 -0.15899712e+01 0.82274691e+02 0.84502873e+00
- 2 -313 504 505 0.23377199e+00 -0.54088039e+00 0.12078234e+02 0.83233676e+00
- 2 313 506 507 -0.70160198e+00 0.32411254e+00 0.17253980e+02 0.88335864e+00
- 2 -313 508 509 -0.28530645e+00 -0.22174738e+00 0.20882476e+02 0.90743292e+00
- 1 -211 0 0 -0.14536080e-02 0.39941639e+00 0.37622647e+01 0.13957000e+00
- 2 213 510 511 -0.17255832e+01 0.41121973e+00 0.16176121e+02 0.89875758e+00
- 1 -211 0 0 0.12058152e+00 0.12932408e+00 0.22678067e+01 0.13957000e+00
- 1 211 0 0 -0.73630479e+00 0.30646960e+00 0.49067432e+01 0.13957000e+00
- 1 -211 0 0 -0.50179658e+00 0.85175333e+00 0.55278946e+01 0.13957000e+00
- 2 113 512 513 -0.15132342e+01 0.10988684e+01 0.12496228e+02 0.65118312e+00
- 1 211 0 0 -0.28873260e+01 0.33027662e+01 0.19321390e+02 0.13957000e+00
- 2 -213 514 515 -0.25623855e+01 -0.18586862e-01 0.15487035e+02 0.80482973e+00
- 2 113 516 517 -0.17674506e+01 -0.30723606e+00 0.64884438e+01 0.79844447e+00
- 1 2212 0 0 -0.33831827e+01 -0.17276721e+01 0.11247276e+02 0.93827000e+00
- 1 -2212 0 0 -0.14019841e+01 -0.34215802e+00 0.35590876e+01 0.93827000e+00
- 1 211 0 0 -0.13471160e+00 -0.87120545e+00 0.13968217e+01 0.13957000e+00
- 2 -213 518 519 -0.26476237e+01 -0.23030822e+01 0.94707469e+01 0.79728302e+00
- 1 321 0 0 -0.22100116e+01 -0.93058454e+00 0.50667065e+01 0.49360000e+00
- 2 -323 520 521 -0.43239472e+01 -0.35899152e+01 0.10751205e+02 0.10115841e+01
- 1 211 0 0 -0.36645710e+00 -0.11154880e+01 0.23703968e+01 0.13957000e+00
- 2 311 522 522 -0.10330620e+01 -0.28269154e+01 0.66262935e+01 0.49767000e+00
- 2 -323 523 524 0.11155378e-02 -0.17136970e+01 0.21863769e+01 0.81530539e+00
- 2 221 525 527 -0.68057485e+00 -0.61350535e+00 0.13417247e+01 0.54745000e+00
- 1 211 0 0 -0.11431978e+00 -0.32968876e+00 0.70354682e+00 0.13957000e+00
- 2 221 528 530 -0.67863713e-01 -0.79480563e+01 0.10331950e+02 0.54745000e+00
- 2 221 531 532 -0.80728051e-01 -0.47182938e+00 0.12619195e+01 0.54745000e+00
- 2 113 533 534 -0.12422023e+00 -0.40959060e+01 0.60256477e+01 0.75846774e+00
- 2 2114 535 536 0.94022350e-01 -0.21353749e+01 0.17683460e+01 0.13167408e+01
- 2 -2114 537 538 -0.38729760e+00 -0.98502198e+00 0.27712456e+00 0.11781674e+01
- 1 -211 0 0 0.96810649e+00 -0.88628519e+00 0.26240730e+00 0.13957000e+00
- 2 213 539 540 -0.38111925e+00 -0.19709022e+01 0.53182908e+00 0.80821380e+00
- 2 3122 541 542 -0.49837110e+00 -0.15382585e+01 -0.21098385e+01 0.11156800e+01
- 2 323 543 544 0.37463274e+00 -0.35587878e+00 -0.14142528e+01 0.86397037e+00
- 2 -2214 545 546 -0.28919767e+00 -0.42955679e+01 -0.73020152e+01 0.12543493e+01
- 1 -211 0 0 -0.47635541e-01 0.97191658e-01 -0.28108122e+00 0.13957000e+00
- 2 223 547 549 -0.44511933e+00 -0.86002265e+00 -0.20660100e+01 0.78290719e+00
- 1 321 0 0 0.52420316e-01 -0.30681015e+01 -0.74117540e+01 0.49360000e+00
- 2 -323 550 551 0.22891132e+00 -0.13655798e+01 -0.70458611e+01 0.90846321e+00
- 2 2214 552 553 0.15547443e+01 -0.36061664e+01 -0.11381170e+02 0.11902847e+01
- 2 -213 554 555 0.47730474e+00 -0.91840725e+00 -0.76051729e+01 0.67608641e+00
- 2 -1114 556 557 0.10241631e+01 -0.14773737e+01 -0.10957349e+02 0.11800596e+01
- 2 111 558 559 0.42955625e+00 -0.56755529e+00 -0.17778037e+01 0.13498000e+00
- 2 -213 560 561 0.21449576e+01 -0.11714051e+01 -0.25969622e+02 0.86347165e+00
- 2 223 562 564 0.16693916e+00 -0.22100455e+00 -0.80180892e+01 0.78658597e+00
- 1 321 0 0 0.32494288e+01 -0.15592565e+01 -0.53596813e+02 0.49360000e+00
- 2 3122 565 566 0.32072763e-01 -0.64689174e+00 -0.30299263e+02 0.11156800e+01
- 2 -213 567 568 -0.23890466e+00 -0.73250775e+00 -0.16442086e+02 0.70472363e+00
- 2 -1114 569 570 0.29277775e-02 0.47206209e+00 -0.34211135e+02 0.12228255e+01
- 2 113 571 572 -0.88484218e+00 -0.19560919e+00 -0.40042923e+02 0.45869301e+00
- 2 313 573 574 -0.12136470e+00 -0.36575768e+00 -0.10094963e+03 0.96361209e+00
- 1 -321 0 0 -0.55887953e-01 -0.53396673e+00 -0.11455683e+03 0.49360000e+00
- 2 213 575 576 0.63153605e+00 -0.73581343e+00 -0.20072687e+03 0.64115581e+00
- 2 313 577 578 -0.37394341e+00 -0.79516544e+00 -0.39068873e+03 0.89601270e+00
- 2 331 579 580 -0.23150318e+00 -0.15570101e+01 -0.43351894e+03 0.95905964e+00
- 2 -323 581 582 -0.41561188e+00 -0.49320128e+00 -0.57251403e+03 0.91835502e+00
- 1 211 0 0 0.16105485e+00 -0.41559103e-01 -0.30627046e+02 0.13957000e+00
- 2 113 583 584 -0.11400489e+01 -0.90720552e+00 -0.45843770e+03 0.66867135e+00
- 2 2214 585 586 0.59408033e+00 0.41677176e+00 -0.12728038e+04 0.12135932e+01
- 2 92 309 329 0.47850048e+01 -0.19568664e+01 -0.40893432e+00 0.92553043e+02
- 2 -213 587 588 0.31496867e+01 -0.56462498e-01 0.99568687e+01 0.44301530e+00
- 2 223 589 591 0.31265673e+01 0.10352200e+01 0.14000316e+02 0.78012965e+00
- 2 213 592 593 0.13571517e+01 -0.11052674e+01 0.42014713e+01 0.73881787e+00
- 2 111 594 595 0.43681239e+00 0.24932759e+00 0.15403556e+01 0.13498000e+00
- 2 111 596 597 0.35232618e+00 -0.85644542e+00 0.17692604e+01 0.13498000e+00
- 1 -211 0 0 0.26827407e+00 -0.21034620e+00 0.44266243e+00 0.13957000e+00
- 2 111 598 599 0.54725136e+00 -0.80733939e-01 0.18185204e+01 0.13498000e+00
- 1 211 0 0 0.10248730e+01 0.42816456e-01 0.20024438e+01 0.13957000e+00
- 1 -211 0 0 -0.75289083e-01 0.20842627e+00 0.69999174e+00 0.13957000e+00
- 2 113 600 601 0.14839132e+01 -0.53553565e+00 0.52307346e+01 0.86629290e+00
- 2 223 602 604 0.84501295e+00 -0.36114704e+00 0.86779416e+00 0.78506205e+00
- 2 213 605 606 -0.40971232e-01 -0.26184941e+00 0.67973284e+00 0.73947720e+00
- 2 313 607 608 0.60359034e-01 -0.34635228e+00 -0.20833100e-01 0.88777603e+00
- 2 -323 609 610 -0.89877550e+00 0.48019908e+00 -0.17739902e+01 0.88015382e+00
- 1 321 0 0 -0.51263996e-01 0.30540724e+00 -0.19278904e+01 0.49360000e+00
- 2 -311 611 611 -0.31934497e+00 -0.76745341e-01 -0.71281454e+00 0.49767000e+00
- 1 -211 0 0 -0.38505266e+00 0.16024392e+00 -0.11627984e+01 0.13957000e+00
- 2 213 612 613 -0.43378648e+00 0.20853155e+00 -0.28399619e+01 0.69865374e+00
- 2 111 614 615 -0.23945642e+01 -0.44092456e+00 -0.96379629e+01 0.13498000e+00
- 2 111 616 617 -0.72834485e+00 0.19329807e+00 -0.82107824e+01 0.13498000e+00
- 2 223 618 620 -0.25398301e+01 -0.50852684e+00 -0.17332052e+02 0.76014469e+00
- 2 92 331 333 0.00000000e+00 0.00000000e+00 -0.30072511e+03 0.49443027e+01
- 1 211 0 0 0.17907346e+00 -0.27731971e+00 -0.23284303e+01 0.13957000e+00
- 2 -213 621 622 -0.11273143e+00 0.17081533e+00 -0.51845269e+02 0.11497703e+01
- 2 111 623 624 -0.66342026e-01 0.10650438e+00 -0.24655141e+03 0.13498000e+00
- 1 130 0 0 -0.62955353e-01 0.29580663e+00 -0.38768971e+02 0.49767000e+00
- 1 130 0 0 0.62955353e-01 -0.29580663e+00 -0.24522584e+02 0.49767000e+00
- 1 22 0 0 -0.80089724e+00 0.57008699e+00 0.12059359e+01 0.00000000e+00
- 1 22 0 0 -0.47315577e-01 0.34700452e-01 0.13753158e+00 0.00000000e+00
- 2 311 625 625 -0.65530993e+00 0.51913594e+00 0.14815038e+01 0.49767000e+00
- 1 211 0 0 -0.27723603e+00 0.14461011e+00 0.16064799e+01 0.13957000e+00
- 1 321 0 0 0.21652486e-02 -0.31154564e+00 0.52575908e+01 0.49360000e+00
- 1 -321 0 0 -0.14831266e+00 -0.27542516e+00 0.63496434e+01 0.49360000e+00
- 2 -311 626 626 -0.19668907e+00 -0.76203767e-01 0.35553434e+02 0.49767000e+00
- 2 111 627 628 0.19942150e+00 0.33336398e+00 0.27777911e+02 0.13498000e+00
- 1 2212 0 0 -0.49507646e+00 0.31617624e-01 0.23642965e+03 0.93827000e+00
- 2 111 629 630 -0.26451603e+00 -0.26342404e+00 0.87383443e+02 0.13498000e+00
- 1 -211 0 0 0.27789139e+00 -0.12418174e+00 0.45107193e+03 0.13957000e+00
- 1 211 0 0 0.56541320e+00 0.64658727e+00 0.15505811e+04 0.13957000e+00
- 1 211 0 0 -0.39173157e+00 -0.15355204e+00 0.10966557e+01 0.13957000e+00
- 2 111 631 632 -0.21347041e+01 0.69399129e+00 0.45297772e+01 0.13498000e+00
- 2 111 633 634 -0.27239522e+00 0.64524717e-01 0.27767138e+00 0.13498000e+00
- 2 111 635 636 -0.28338522e+00 0.25837142e+00 0.41310534e+00 0.13498000e+00
- 2 111 637 638 -0.88112837e+00 0.43580363e+00 0.11653932e+01 0.13498000e+00
- 1 211 0 0 -0.18236035e+01 -0.25509029e+00 0.16854535e+01 0.13957000e+00
- 1 -211 0 0 -0.14439378e+01 0.65742834e-01 0.17525981e+01 0.13957000e+00
- 1 -211 0 0 -0.37590356e+01 -0.43623116e+00 0.41949469e+01 0.13957000e+00
- 2 111 639 640 -0.21674218e+01 0.44721331e+00 0.22376931e+01 0.13498000e+00
- 1 211 0 0 -0.14787308e+01 0.20389498e+00 0.18806103e+01 0.13957000e+00
- 1 -211 0 0 -0.12447925e+01 -0.11416278e+00 0.14499235e+01 0.13957000e+00
- 2 111 641 642 -0.15914768e+01 0.32961454e+00 0.15541167e+01 0.13498000e+00
- 2 -311 643 643 -0.15893759e+01 0.19596214e+00 0.16557199e+01 0.49767000e+00
- 1 -211 0 0 -0.66509315e+00 -0.32457359e+00 0.10314452e+01 0.13957000e+00
- 2 -3122 644 645 -0.15429353e+01 0.70647293e+00 0.10129050e+01 0.11156800e+01
- 2 111 646 647 -0.33352239e+00 -0.46029147e-02 0.10492883e+00 0.13498000e+00
- 1 2112 0 0 -0.10254410e+01 -0.91058185e-02 0.12736422e+01 0.93957000e+00
- 2 111 648 649 -0.30746730e+00 0.20452704e-01 0.18905333e+00 0.13498000e+00
- 1 211 0 0 0.15811815e+01 -0.92038565e+00 -0.15106202e+01 0.13957000e+00
- 2 111 650 651 0.67896893e+00 -0.89294083e-01 -0.99887074e+00 0.13498000e+00
- 1 2112 0 0 0.16256790e+01 0.63837046e+00 -0.41545389e+01 0.93957000e+00
- 2 111 652 653 0.10029158e+01 0.33045723e+00 -0.27983141e+01 0.13498000e+00
- 1 -211 0 0 0.34276773e+00 0.59986268e+00 -0.15641175e+01 0.13957000e+00
- 2 111 654 655 0.32796724e+00 -0.13525427e+00 -0.17661010e+01 0.13498000e+00
- 1 -2112 0 0 0.50556516e+00 0.13324367e+01 -0.44835469e+01 0.93957000e+00
- 1 211 0 0 0.18820630e+00 0.33731996e+00 -0.84258804e+00 0.13957000e+00
- 1 2112 0 0 0.12155819e+01 0.59520671e+00 -0.53193911e+01 0.93957000e+00
- 1 -211 0 0 0.79116370e+00 0.10294373e+00 -0.27183259e+01 0.13957000e+00
- 1 211 0 0 0.58880860e+00 0.29879586e+00 -0.78283666e+01 0.13957000e+00
- 1 -211 0 0 0.97268088e+00 0.16106845e+01 -0.22316120e+02 0.13957000e+00
- 1 22 0 0 -0.10317748e+00 0.18005075e+00 -0.17882297e+01 0.00000000e+00
- 1 22 0 0 -0.51415338e+00 0.54194962e+00 -0.50228988e+01 0.00000000e+00
- 1 22 0 0 0.29330736e+00 0.13513916e+01 -0.14003075e+02 0.00000000e+00
- 1 22 0 0 0.42347564e+00 0.13247570e+01 -0.13829750e+02 0.00000000e+00
- 1 211 0 0 0.21235206e+00 0.29516139e+00 -0.44423038e+01 0.13957000e+00
- 1 -211 0 0 0.12541082e+00 0.11813024e+01 -0.20043580e+02 0.13957000e+00
- 2 111 656 657 -0.12189647e+00 0.38307842e+00 -0.63549670e+01 0.13498000e+00
- 1 -211 0 0 0.86558187e-02 0.11360950e+01 -0.53049459e+02 0.13957000e+00
- 1 211 0 0 -0.97452965e-02 -0.50137139e-01 -0.29075023e+01 0.13957000e+00
- 1 -211 0 0 -0.65199239e+00 0.50650576e+00 -0.88929898e+02 0.13957000e+00
- 1 211 0 0 -0.24985626e+00 0.24745611e-01 -0.19125650e+02 0.13957000e+00
- 2 111 658 659 0.26074808e-01 0.54231729e-01 -0.22813684e+02 0.13498000e+00
- 1 211 0 0 -0.55187743e+00 0.91090583e+00 -0.10870281e+03 0.13957000e+00
- 2 111 660 661 -0.54313038e+00 0.36214635e+00 -0.14246106e+03 0.13498000e+00
- 1 -211 0 0 -0.91924229e+00 0.50988112e-01 -0.11499772e+03 0.13957000e+00
- 2 111 662 663 -0.25278932e+01 0.13964388e+01 -0.33382793e+03 0.13498000e+00
- 1 -211 0 0 -0.42387694e+00 0.63787615e+00 -0.11071588e+03 0.13957000e+00
- 1 211 0 0 -0.33261481e-01 0.33254078e+00 -0.10034415e+03 0.13957000e+00
- 2 111 664 665 -0.34718421e+00 0.39986102e+00 -0.14875879e+03 0.13498000e+00
- 1 -321 0 0 -0.10378994e+01 0.10795795e+01 -0.31379155e+03 0.49360000e+00
- 1 211 0 0 0.34910083e-01 0.19990002e+00 -0.24079723e+02 0.13957000e+00
- 1 211 0 0 0.96938012e-01 -0.35970354e-01 -0.18068186e+02 0.13957000e+00
- 1 -211 0 0 -0.36608198e-01 -0.20703896e-01 -0.26520726e+02 0.13957000e+00
- 2 111 666 667 0.17836086e+00 -0.15079823e+00 -0.68575227e+02 0.13498000e+00
- 2 311 668 668 -0.31581475e-01 0.53908085e-01 -0.74214449e+02 0.49767000e+00
- 2 111 669 670 0.25021060e+00 0.19799421e+00 -0.16535479e+03 0.13498000e+00
- 2 310 671 672 -0.45526519e+00 -0.22164684e+00 -0.42800544e+02 0.49767000e+00
- 1 321 0 0 0.46087988e+00 -0.53179321e-01 -0.18263438e+02 0.49360000e+00
- 2 111 673 674 -0.13133080e+00 -0.43595572e+00 -0.17383212e+02 0.13498000e+00
- 1 -211 0 0 -0.37367180e+00 0.60866999e+00 -0.27136434e+01 0.13957000e+00
- 2 111 675 676 0.25964203e+00 0.16069462e+00 -0.38138236e+01 0.13498000e+00
- 2 310 677 678 0.30806052e+00 -0.59209534e+00 -0.58462635e+01 0.49767000e+00
- 2 310 679 680 -0.18105790e+00 0.20124221e+00 -0.10783852e+02 0.49767000e+00
- 1 211 0 0 0.58308420e-01 0.18892964e-01 -0.56279935e+01 0.13957000e+00
- 1 -211 0 0 0.12091848e+00 -0.15002794e+00 -0.33324788e+01 0.13957000e+00
- 2 111 681 682 -0.24469659e+00 -0.49983252e+00 -0.11246462e+02 0.13498000e+00
- 1 211 0 0 -0.21411157e+00 0.12310423e+00 -0.26598549e+02 0.13957000e+00
- 2 111 683 684 0.39686919e+00 -0.19537755e+00 -0.12024480e+02 0.13498000e+00
- 2 311 685 685 -0.37773398e+00 -0.10889466e+01 0.29897191e+01 0.49767000e+00
- 1 211 0 0 -0.18991658e+00 -0.63050213e+00 0.31839049e+01 0.13957000e+00
- 1 -321 0 0 -0.33911199e+00 -0.16271492e-02 0.27367492e+01 0.49360000e+00
- 1 211 0 0 0.24550777e-01 -0.67533784e+00 0.39274384e+01 0.13957000e+00
- 2 113 686 687 0.24966507e+00 -0.79237251e+00 0.56523116e+01 0.77436218e+00
- 2 111 688 689 0.10090498e-01 -0.18680019e+00 0.47285178e+00 0.13498000e+00
- 2 311 690 690 0.47323359e-01 0.15525449e-01 0.39547052e+01 0.49767000e+00
- 1 211 0 0 0.24646889e+00 0.14294272e+00 0.79310484e+00 0.13957000e+00
- 1 321 0 0 0.16538129e+00 0.44218850e+00 0.26664082e+02 0.49360000e+00
- 1 -211 0 0 0.14729298e+00 0.13493844e+00 0.27492991e+02 0.13957000e+00
- 1 22 0 0 -0.23589784e+00 -0.36648412e-01 0.90855163e+02 0.00000000e+00
- 1 22 0 0 -0.78908029e+00 -0.18566295e+00 0.22947638e+03 0.00000000e+00
- 2 111 691 692 -0.31559519e-01 0.19298642e+00 0.16283793e+00 0.13498000e+00
- 2 111 693 694 0.12171753e+00 0.10154360e+00 0.29873510e-01 0.13498000e+00
- 2 111 695 696 -0.12966596e+00 0.26194179e+00 0.14353751e+00 0.13498000e+00
- 1 2112 0 0 -0.27421941e+00 0.22446246e+00 0.66585806e+00 0.93957000e+00
- 2 111 697 698 -0.11317308e+00 0.73903006e-01 0.17467895e-01 0.13498000e+00
- 1 22 0 0 -0.59913210e-01 0.12259213e+00 0.22268605e+00 0.00000000e+00
- 1 22 0 0 0.57875511e-01 0.34914680e+00 0.63356902e+00 0.00000000e+00
- 1 22 0 0 -0.91788104e-01 0.15014553e+00 0.57525108e-02 0.00000000e+00
- 1 22 0 0 -0.23943830e-01 0.42747629e+00 -0.12684971e-01 0.00000000e+00
- 1 211 0 0 0.61694644e-01 0.23372261e+00 0.33896752e+00 0.13957000e+00
- 2 111 699 700 -0.27494226e+00 0.25013858e+01 0.13097397e+01 0.13498000e+00
- 1 211 0 0 -0.52532064e+00 0.46157138e+01 0.44599178e+01 0.13957000e+00
- 1 -211 0 0 -0.11811733e+00 0.73327532e+00 0.11873544e+01 0.13957000e+00
- 1 22 0 0 -0.22959887e+00 -0.10017920e+00 0.78531545e+00 0.00000000e+00
- 1 22 0 0 -0.44035289e-01 -0.23831801e-01 0.39291426e-01 0.00000000e+00
- 1 22 0 0 -0.23327627e+00 0.77619767e+00 0.10736498e+01 0.00000000e+00
- 1 22 0 0 -0.58549262e+00 0.13795571e+01 0.18510833e+01 0.00000000e+00
- 1 -211 0 0 0.69839935e-01 -0.40026157e-01 0.21339412e+00 0.13957000e+00
- 2 111 701 702 -0.99882331e+00 0.39974239e+00 0.10006180e+01 0.13498000e+00
- 1 2212 0 0 0.93060283e-01 -0.12318949e+00 0.42435251e+01 0.93827000e+00
- 1 211 0 0 0.78873002e-01 -0.40116651e+00 0.22826285e+01 0.13957000e+00
- 1 211 0 0 0.75903831e+00 -0.14148639e+00 0.28542899e+01 0.13957000e+00
- 1 -211 0 0 -0.11879934e+00 -0.59694796e-01 0.79897416e+00 0.13957000e+00
- 2 -3122 703 704 -0.25739411e+00 -0.18453073e+01 0.19639525e+02 0.11156800e+01
- 1 -211 0 0 0.19406958e-01 -0.13034816e+00 0.37764015e+01 0.13957000e+00
- 1 -321 0 0 0.29326798e+00 -0.44500893e+00 0.76670987e+01 0.49360000e+00
- 1 211 0 0 -0.22072220e-01 -0.19411280e+00 0.65408990e+00 0.13957000e+00
- 1 -211 0 0 0.28681816e-01 -0.39796061e+00 0.88807229e+01 0.13957000e+00
- 2 111 705 706 0.63942012e+00 -0.18051765e+00 0.53150664e+01 0.13498000e+00
- 1 -211 0 0 0.85969330e+00 -0.81661752e+00 0.12281422e+02 0.13957000e+00
- 2 111 707 708 0.71211303e-01 -0.24000083e+00 0.13626580e+02 0.13498000e+00
- 1 211 0 0 -0.15794173e+00 0.24695689e-01 0.80599879e+00 0.13957000e+00
- 2 111 709 710 0.63536871e+00 -0.55190383e+00 0.61288001e+01 0.13498000e+00
- 1 321 0 0 0.21503813e+01 0.79614213e+00 0.20774474e+02 0.49360000e+00
- 1 -211 0 0 0.21749072e+00 -0.39309255e-01 0.38980637e+01 0.13957000e+00
- 1 22 0 0 -0.67030042e-01 0.26803783e-01 0.27886846e+00 0.00000000e+00
- 2 113 711 712 0.61513702e+00 0.47961413e+00 0.65111021e+01 0.82714841e+00
- 2 3122 713 714 0.20171848e+01 0.48659767e+00 0.29031345e+02 0.11156800e+01
- 1 -211 0 0 0.21819680e+00 0.35620810e-01 0.19263790e+01 0.13957000e+00
- 2 -3122 715 716 0.20584377e+01 0.65725184e+00 0.16539336e+02 0.11156800e+01
- 1 22 0 0 0.67028807e-01 -0.45307140e-01 0.57347780e+00 0.00000000e+00
- 1 211 0 0 0.39198572e+00 0.25452731e+00 0.53102850e+01 0.13957000e+00
- 2 111 717 718 0.14394458e+01 0.19085643e+01 0.28539632e+02 0.13498000e+00
- 1 22 0 0 0.14421948e+01 0.18103383e+01 0.34161489e+02 0.00000000e+00
- 1 22 0 0 0.38093667e+00 0.49683261e+00 0.10322476e+02 0.00000000e+00
- 1 211 0 0 0.56479701e+00 0.79471799e+00 0.22857656e+02 0.13957000e+00
- 1 -211 0 0 0.24974643e+00 0.11200388e+00 0.10324733e+02 0.13957000e+00
- 2 111 719 720 0.35007094e+00 0.13088693e+00 0.62002362e+01 0.13498000e+00
- 1 22 0 0 0.51166526e-01 0.15258804e+00 0.30903285e+01 0.00000000e+00
- 1 22 0 0 0.31886072e+00 0.46090157e+00 0.75845673e+01 0.00000000e+00
- 1 211 0 0 -0.12028307e+00 0.27705754e+00 0.22774588e+02 0.13957000e+00
- 1 -211 0 0 0.24758542e+00 0.28173961e+00 0.51834643e+02 0.13957000e+00
- 2 111 721 722 -0.97654467e-01 0.61241867e-01 0.79791510e+01 0.13498000e+00
- 1 321 0 0 0.16277570e-01 0.97986937e+00 0.10557482e+03 0.49360000e+00
- 2 111 723 724 0.13826091e+00 0.56909330e+00 0.10750954e+03 0.13498000e+00
- 1 130 0 0 0.43773667e+00 0.56459348e-01 0.57702741e+02 0.49767000e+00
- 1 -211 0 0 0.85805863e+00 0.12475252e+00 0.18188305e+03 0.13957000e+00
- 2 111 725 726 -0.65832542e-01 0.63479665e-01 0.86246678e+02 0.13498000e+00
- 1 211 0 0 0.48208920e-01 -0.17483376e+00 0.71344841e+02 0.13957000e+00
- 2 111 727 728 -0.11568801e+00 0.61157076e+00 0.16578901e+03 0.13498000e+00
- 1 321 0 0 0.26260088e+00 0.10629311e+01 0.18926677e+03 0.49360000e+00
- 1 -211 0 0 0.97264934e-01 -0.16458629e-01 0.12274855e+02 0.13957000e+00
- 1 22 0 0 -0.39309387e+00 0.48546379e+00 0.13722965e+03 0.00000000e+00
- 1 22 0 0 -0.35968847e+00 0.54456279e+00 0.11884651e+03 0.00000000e+00
- 1 -211 0 0 -0.87098076e+00 -0.32488499e+00 0.20998044e+03 0.13957000e+00
- 2 111 729 730 -0.10308608e+00 -0.75212827e-01 0.11069264e+02 0.13498000e+00
- 1 22 0 0 0.20232398e+00 0.19883850e+00 0.78494930e+02 0.00000000e+00
- 1 22 0 0 0.12448071e+00 0.89896154e-01 0.78896558e+02 0.00000000e+00
- 1 -211 0 0 -0.88578154e-01 0.33084514e-01 0.13490247e+01 0.13957000e+00
- 2 111 731 732 -0.99944060e-01 -0.39964201e+00 0.18050719e+02 0.13498000e+00
- 1 211 0 0 -0.56806564e+00 -0.42638880e+00 0.49182241e+02 0.13957000e+00
- 2 111 733 734 0.21976864e+00 -0.43874482e+00 0.31349254e+02 0.13498000e+00
- 1 -211 0 0 -0.14392829e+00 -0.13051570e+00 0.35599335e+01 0.13957000e+00
- 2 111 735 736 -0.48768553e+00 -0.58888071e+00 0.49643263e+02 0.13498000e+00
- 2 311 737 737 -0.82586597e+00 -0.14666916e+01 0.65181610e+02 0.49767000e+00
- 1 211 0 0 -0.10517060e+00 -0.12327957e+00 0.17093081e+02 0.13957000e+00
- 1 -321 0 0 -0.25212073e-01 -0.52734395e+00 0.89565340e+01 0.49360000e+00
- 1 211 0 0 0.25898406e+00 -0.13536442e-01 0.31217003e+01 0.13957000e+00
- 1 321 0 0 -0.27500948e+00 0.28219035e+00 0.13156719e+02 0.49360000e+00
- 1 -211 0 0 -0.42659250e+00 0.41922194e-01 0.40972605e+01 0.13957000e+00
- 1 -321 0 0 0.82928812e-01 -0.64011611e-01 0.80353435e+01 0.49360000e+00
- 1 211 0 0 -0.36823526e+00 -0.15773577e+00 0.12847133e+02 0.13957000e+00
- 1 211 0 0 -0.45941989e+00 0.46453996e+00 0.40184490e+01 0.13957000e+00
- 2 111 738 739 -0.12661633e+01 -0.53320227e-01 0.12157672e+02 0.13498000e+00
- 1 -211 0 0 -0.50366830e+00 0.68055618e+00 0.63883996e+01 0.13957000e+00
- 1 211 0 0 -0.10095659e+01 0.41831219e+00 0.61078284e+01 0.13957000e+00
- 1 -211 0 0 -0.21182709e+01 -0.53253341e-01 0.10705839e+02 0.13957000e+00
- 2 111 740 741 -0.44411458e+00 0.34666479e-01 0.47811957e+01 0.13498000e+00
- 1 -211 0 0 -0.47154525e-01 0.10012423e+00 0.84415605e+00 0.13957000e+00
- 1 211 0 0 -0.17202960e+01 -0.40736029e+00 0.56442877e+01 0.13957000e+00
- 1 -211 0 0 -0.11219744e+01 -0.14653564e+01 0.50426232e+01 0.13957000e+00
- 2 111 742 743 -0.15256493e+01 -0.83772581e+00 0.44281237e+01 0.13498000e+00
- 2 -311 744 744 -0.15891665e+01 -0.12727509e+01 0.45508742e+01 0.49767000e+00
- 1 -211 0 0 -0.27347807e+01 -0.23171644e+01 0.62003309e+01 0.13957000e+00
- 1 130 0 0 -0.10330620e+01 -0.28269154e+01 0.66262935e+01 0.49767000e+00
- 2 -311 745 745 0.25742449e-01 -0.73054990e+00 0.82121600e+00 0.49767000e+00
- 1 -211 0 0 -0.24626911e-01 -0.98314711e+00 0.13651609e+01 0.13957000e+00
- 2 111 746 747 -0.38143372e+00 -0.23511877e+00 0.59644162e+00 0.13498000e+00
- 2 111 748 749 -0.10229423e+00 -0.29375648e+00 0.49765992e+00 0.13498000e+00
- 2 111 750 751 -0.19684690e+00 -0.84630101e-01 0.24762320e+00 0.13498000e+00
- 1 211 0 0 -0.32427557e-01 -0.10329022e+01 0.14522730e+01 0.13957000e+00
- 1 -211 0 0 -0.47332094e-01 -0.20120187e+01 0.25835173e+01 0.13957000e+00
- 2 111 752 753 0.11895938e-01 -0.49031354e+01 0.62961600e+01 0.13498000e+00
- 1 22 0 0 0.23338232e+00 -0.17067620e+00 0.56873847e+00 0.00000000e+00
- 1 22 0 0 -0.31411037e+00 -0.30115318e+00 0.69318104e+00 0.00000000e+00
- 1 211 0 0 0.63573466e-01 -0.37172966e+01 0.53120947e+01 0.13957000e+00
- 1 -211 0 0 -0.18779369e+00 -0.37860948e+00 0.71355299e+00 0.13957000e+00
- 1 2212 0 0 0.61600817e-01 -0.21453638e+01 0.15478209e+01 0.93827000e+00
- 1 -211 0 0 0.32421533e-01 0.99888475e-02 0.22052514e+00 0.13957000e+00
- 1 -2212 0 0 -0.49421184e+00 -0.80536030e+00 0.21450240e+00 0.93827000e+00
- 1 211 0 0 0.10691423e+00 -0.17966168e+00 0.62622156e-01 0.13957000e+00
- 1 211 0 0 -0.64729082e-01 -0.17212117e+01 0.51432001e+00 0.13957000e+00
- 2 111 754 755 -0.31639016e+00 -0.24969051e+00 0.17509070e-01 0.13498000e+00
- 1 2212 0 0 -0.49227802e+00 -0.14605794e+01 -0.19503502e+01 0.93827000e+00
- 1 -211 0 0 -0.60930859e-02 -0.77679086e-01 -0.15948831e+00 0.13957000e+00
- 1 321 0 0 0.13693049e+00 -0.30913298e+00 -0.49729254e+00 0.49360000e+00
- 2 111 756 757 0.23770226e+00 -0.46745800e-01 -0.91696024e+00 0.13498000e+00
- 1 -2212 0 0 -0.46476476e-01 -0.34199267e+01 -0.61013190e+01 0.93827000e+00
- 2 111 758 759 -0.24272119e+00 -0.87564118e+00 -0.12006962e+01 0.13498000e+00
- 1 211 0 0 -0.64576940e-01 -0.62533424e+00 -0.10669342e+01 0.13957000e+00
- 1 -211 0 0 -0.20332351e-01 -0.23913185e-01 -0.13335289e+00 0.13957000e+00
- 2 111 760 761 -0.36021004e+00 -0.21077523e+00 -0.86572291e+00 0.13498000e+00
- 1 -321 0 0 0.31031626e+00 -0.13439661e+01 -0.58121559e+01 0.49360000e+00
- 2 111 762 763 -0.81404934e-01 -0.21613777e-01 -0.12337052e+01 0.13498000e+00
- 1 2212 0 0 0.13478522e+01 -0.32384805e+01 -0.10535286e+02 0.93827000e+00
- 2 111 764 765 0.20689210e+00 -0.36768590e+00 -0.84588389e+00 0.13498000e+00
- 1 -211 0 0 0.57756672e+00 -0.88318008e+00 -0.65659205e+01 0.13957000e+00
- 2 111 766 767 -0.10026198e+00 -0.35227169e-01 -0.10392523e+01 0.13498000e+00
- 1 -2112 0 0 0.90834798e+00 -0.12067332e+01 -0.82569531e+01 0.93957000e+00
- 1 211 0 0 0.11581511e+00 -0.27064052e+00 -0.27003956e+01 0.13957000e+00
- 1 22 0 0 0.35724914e+00 -0.40187574e+00 -0.14304275e+01 0.00000000e+00
- 1 22 0 0 0.72307102e-01 -0.16567955e+00 -0.34737620e+00 0.00000000e+00
- 1 -211 0 0 0.12062590e+01 -0.46750764e+00 -0.98074639e+01 0.13957000e+00
- 2 111 768 769 0.93869864e+00 -0.70389749e+00 -0.16162158e+02 0.13498000e+00
- 1 -211 0 0 0.22304741e-01 0.15195342e+00 -0.18746046e+01 0.13957000e+00
- 1 211 0 0 0.23973621e+00 -0.11735592e+00 -0.38382378e+01 0.13957000e+00
- 2 111 770 771 -0.95101789e-01 -0.25560205e+00 -0.23052469e+01 0.13498000e+00
- 1 2212 0 0 -0.83124335e-02 -0.43875272e+00 -0.24030413e+02 0.93827000e+00
- 1 -211 0 0 0.40385197e-01 -0.20813902e+00 -0.62688494e+01 0.13957000e+00
- 1 -211 0 0 -0.45455567e-01 -0.53708165e+00 -0.14351777e+02 0.13957000e+00
- 2 111 772 773 -0.19344909e+00 -0.19542610e+00 -0.20903093e+01 0.13498000e+00
- 1 -2112 0 0 0.12696304e+00 0.24269170e+00 -0.29187233e+02 0.93957000e+00
- 1 211 0 0 -0.12403526e+00 0.22937039e+00 -0.50239013e+01 0.13957000e+00
- 1 211 0 0 -0.47660141e+00 -0.20043551e+00 -0.28068118e+02 0.13957000e+00
- 1 -211 0 0 -0.40824077e+00 0.48263244e-02 -0.11974806e+02 0.13957000e+00
- 1 321 0 0 -0.31939385e+00 -0.75107828e-01 -0.77652481e+02 0.49360000e+00
- 1 -211 0 0 0.19802914e+00 -0.29064985e+00 -0.23297147e+02 0.13957000e+00
- 1 211 0 0 -0.23403776e-01 0.10213760e-01 -0.39384699e+02 0.13957000e+00
- 2 111 774 775 0.65493982e+00 -0.74602719e+00 -0.16134217e+03 0.13498000e+00
- 2 311 776 776 -0.46970770e+00 -0.33315323e+00 -0.25072576e+03 0.49767000e+00
- 2 111 777 778 0.95764291e-01 -0.46201221e+00 -0.13996296e+03 0.13498000e+00
- 1 22 0 0 0.86037151e-01 -0.16309484e+00 -0.16573084e+03 0.00000000e+00
- 1 22 0 0 -0.31754033e+00 -0.13939152e+01 -0.26778809e+03 0.00000000e+00
- 2 -311 779 779 -0.43820364e+00 -0.39053710e+00 -0.54508966e+03 0.49767000e+00
- 1 -211 0 0 0.22591753e-01 -0.10266419e+00 -0.27424370e+02 0.13957000e+00
- 1 211 0 0 -0.52796816e+00 -0.69839715e-01 -0.17733176e+03 0.13957000e+00
- 1 -211 0 0 -0.61208074e+00 -0.83736581e+00 -0.28110594e+03 0.13957000e+00
- 1 2112 0 0 0.62631884e+00 0.47494911e+00 -0.10152684e+04 0.93957000e+00
- 1 211 0 0 -0.32238505e-01 -0.58177357e-01 -0.25753542e+03 0.13957000e+00
- 1 -211 0 0 0.13928736e+01 -0.56082275e-02 0.49746403e+01 0.13957000e+00
- 2 111 780 781 0.17568131e+01 -0.50854271e-01 0.49822284e+01 0.13498000e+00
- 1 -211 0 0 0.70447044e+00 0.45156392e+00 0.34558424e+01 0.13957000e+00
- 1 211 0 0 0.15688527e+01 0.53423814e+00 0.65246967e+01 0.13957000e+00
- 2 111 782 783 0.85324411e+00 0.49417932e-01 0.40197764e+01 0.13498000e+00
- 1 211 0 0 0.45561489e+00 -0.42300867e+00 0.23727406e+01 0.13957000e+00
- 2 111 784 785 0.90153678e+00 -0.68225877e+00 0.18287307e+01 0.13498000e+00
- 1 22 0 0 0.10583037e+00 0.12831061e+00 0.56287933e+00 0.00000000e+00
- 1 22 0 0 0.33098202e+00 0.12101699e+00 0.97747625e+00 0.00000000e+00
- 1 22 0 0 0.36329238e+00 -0.84602403e+00 0.17420435e+01 0.00000000e+00
- 1 22 0 0 -0.10966193e-01 -0.10421386e-01 0.27216875e-01 0.00000000e+00
- 1 22 0 0 0.12498549e+00 0.36243886e-01 0.36851718e+00 0.00000000e+00
- 1 22 0 0 0.42226588e+00 -0.11697782e+00 0.14500032e+01 0.00000000e+00
- 1 -211 0 0 0.11962859e+01 -0.11380664e+00 0.42308951e+01 0.13957000e+00
- 1 211 0 0 0.28762730e+00 -0.42172901e+00 0.99983957e+00 0.13957000e+00
- 1 211 0 0 0.61180064e-01 0.94263196e-02 -0.46419406e-01 0.13957000e+00
- 1 -211 0 0 0.62171927e+00 -0.14249638e+00 0.62642947e+00 0.13957000e+00
- 2 111 786 787 0.16211361e+00 -0.22807697e+00 0.28778410e+00 0.13498000e+00
- 1 211 0 0 -0.31981886e+00 -0.10754523e+00 0.56775321e+00 0.13957000e+00
- 2 111 788 789 0.27884763e+00 -0.15430418e+00 0.11197963e+00 0.13498000e+00
- 1 321 0 0 0.21863519e+00 -0.21214117e+00 0.20789662e+00 0.49360000e+00
- 1 -211 0 0 -0.15827615e+00 -0.13421111e+00 -0.22872972e+00 0.13957000e+00
- 2 -311 790 790 -0.51799276e+00 0.42709215e+00 -0.15496429e+01 0.49767000e+00
- 1 -211 0 0 -0.38078274e+00 0.53106932e-01 -0.22434722e+00 0.13957000e+00
- 1 130 0 0 -0.31934497e+00 -0.76745341e-01 -0.71281454e+00 0.49767000e+00
- 1 211 0 0 -0.24168869e+00 0.10971664e+00 -0.34950444e+00 0.13957000e+00
- 2 111 791 792 -0.19209780e+00 0.98814915e-01 -0.24904574e+01 0.13498000e+00
- 1 22 0 0 -0.63429882e+00 -0.13556874e+00 -0.23419569e+01 0.00000000e+00
- 1 22 0 0 -0.17602653e+01 -0.30535582e+00 -0.72960060e+01 0.00000000e+00
- 1 22 0 0 -0.70005983e+00 0.19723732e+00 -0.75381907e+01 0.00000000e+00
- 1 22 0 0 -0.28285017e-01 -0.39392533e-02 -0.67259165e+00 0.00000000e+00
- 1 211 0 0 -0.69223871e+00 -0.13138081e-01 -0.35095910e+01 0.13957000e+00
- 1 -211 0 0 -0.55202980e+00 -0.28185255e+00 -0.50620447e+01 0.13957000e+00
- 2 111 793 794 -0.12955616e+01 -0.21353621e+00 -0.87604165e+01 0.13498000e+00
- 1 -211 0 0 -0.27257963e+00 -0.35083327e+00 -0.11767736e+02 0.13957000e+00
- 2 111 795 796 0.15984820e+00 0.52164860e+00 -0.40077533e+02 0.13498000e+00
- 1 22 0 0 -0.39665949e-01 0.99094952e-01 -0.85668236e+02 0.00000000e+00
- 1 22 0 0 -0.26676078e-01 0.74094313e-02 -0.16088318e+03 0.00000000e+00
- 1 130 0 0 -0.65530993e+00 0.51913594e+00 0.14815038e+01 0.49767000e+00
- 1 130 0 0 -0.19668907e+00 -0.76203767e-01 0.35553434e+02 0.49767000e+00
- 1 22 0 0 0.17450950e+00 0.16211625e+00 0.16074134e+02 0.00000000e+00
- 1 22 0 0 0.24911994e-01 0.17124773e+00 0.11703777e+02 0.00000000e+00
- 1 22 0 0 -0.74411361e-01 -0.37867634e-02 0.18493726e+02 0.00000000e+00
- 1 22 0 0 -0.19010467e+00 -0.25963728e+00 0.68889717e+02 0.00000000e+00
- 1 22 0 0 -0.13564756e+01 0.44624000e+00 0.27338210e+01 0.00000000e+00
- 1 22 0 0 -0.77822855e+00 0.24775129e+00 0.17959562e+01 0.00000000e+00
- 1 22 0 0 -0.52161084e-01 0.68430754e-01 0.47993372e-01 0.00000000e+00
- 1 22 0 0 -0.22023413e+00 -0.39060368e-02 0.22967801e+00 0.00000000e+00
- 1 22 0 0 -0.48551760e-01 0.11888522e+00 0.91601265e-01 0.00000000e+00
- 1 22 0 0 -0.23483346e+00 0.13948620e+00 0.32150408e+00 0.00000000e+00
- 1 22 0 0 -0.38367578e-01 0.54781824e-01 0.90804467e-01 0.00000000e+00
- 1 22 0 0 -0.84276079e+00 0.38102180e+00 0.10745887e+01 0.00000000e+00
- 1 22 0 0 -0.67623248e+00 0.81962069e-01 0.65045510e+00 0.00000000e+00
- 1 22 0 0 -0.14911894e+01 0.36525124e+00 0.15872380e+01 0.00000000e+00
- 1 22 0 0 -0.12022867e+01 0.18920381e+00 0.11647274e+01 0.00000000e+00
- 1 22 0 0 -0.38919015e+00 0.14041073e+00 0.38938938e+00 0.00000000e+00
- 1 130 0 0 -0.15893759e+01 0.19596214e+00 0.16557199e+01 0.49767000e+00
- 1 -2212 0 0 -0.13643423e+01 0.61004201e+00 0.98668698e+00 0.93827000e+00
- 1 211 0 0 -0.17859305e+00 0.96430927e-01 0.26218049e-01 0.13957000e+00
- 1 22 0 0 -0.91460007e-01 0.45505248e-01 0.73026712e-01 0.00000000e+00
- 1 22 0 0 -0.24206238e+00 -0.50108162e-01 0.31902116e-01 0.00000000e+00
- 1 22 0 0 -0.13685219e+00 0.75989311e-01 0.78115244e-01 0.00000000e+00
- 1 22 0 0 -0.17061512e+00 -0.55536607e-01 0.11093809e+00 0.00000000e+00
- 1 22 0 0 0.14120252e+00 -0.30116413e-01 -0.12592183e+00 0.00000000e+00
- 1 22 0 0 0.53776641e+00 -0.59177671e-01 -0.87294891e+00 0.00000000e+00
- 1 22 0 0 0.29036186e+00 0.16091117e+00 -0.85094808e+00 0.00000000e+00
- 1 22 0 0 0.71255390e+00 0.16954606e+00 -0.19473660e+01 0.00000000e+00
- 1 22 0 0 0.20570170e+00 -0.63429126e-01 -0.74316958e+00 0.00000000e+00
- 1 22 0 0 0.12226555e+00 -0.71825140e-01 -0.10229314e+01 0.00000000e+00
- 1 22 0 0 -0.17528938e-01 0.26130447e+00 -0.42186781e+01 0.00000000e+00
- 1 22 0 0 -0.10436753e+00 0.12177394e+00 -0.21362889e+01 0.00000000e+00
- 1 22 0 0 -0.52936855e-01 0.21685896e-02 -0.87394960e+01 0.00000000e+00
- 1 22 0 0 0.79011663e-01 0.52063139e-01 -0.14074188e+02 0.00000000e+00
- 1 22 0 0 -0.18558381e+00 0.19991485e+00 -0.62642155e+02 0.00000000e+00
- 1 22 0 0 -0.35754657e+00 0.16223150e+00 -0.79818901e+02 0.00000000e+00
- 1 22 0 0 -0.15703450e+01 0.83839490e+00 -0.19867950e+03 0.00000000e+00
- 1 22 0 0 -0.95754823e+00 0.55804386e+00 -0.13514842e+03 0.00000000e+00
- 1 22 0 0 -0.20481784e+00 0.18198172e+00 -0.60560829e+02 0.00000000e+00
- 1 22 0 0 -0.14236636e+00 0.21787930e+00 -0.88197960e+02 0.00000000e+00
- 1 22 0 0 0.39951379e-01 -0.92691249e-01 -0.40809584e+02 0.00000000e+00
- 1 22 0 0 0.13840948e+00 -0.58106981e-01 -0.27765643e+02 0.00000000e+00
- 1 130 0 0 -0.31581475e-01 0.53908085e-01 -0.74214449e+02 0.49767000e+00
- 1 22 0 0 0.39259004e-01 0.58385775e-01 -0.67248640e+02 0.00000000e+00
- 1 22 0 0 0.21095160e+00 0.13960844e+00 -0.98106145e+02 0.00000000e+00
- 2 111 797 798 -0.10645284e+00 -0.53682617e-01 -0.43804041e+01 0.13498000e+00
- 2 111 799 800 -0.34881234e+00 -0.16796422e+00 -0.38420140e+02 0.13498000e+00
- 1 22 0 0 -0.43388431e-01 -0.13757766e+00 -0.34515549e+01 0.00000000e+00
- 1 22 0 0 -0.87942370e-01 -0.29837806e+00 -0.13931657e+02 0.00000000e+00
- 1 22 0 0 0.17397582e+00 0.30135316e-01 -0.18660965e+01 0.00000000e+00
- 1 22 0 0 0.85666209e-01 0.13055930e+00 -0.19477271e+01 0.00000000e+00
- 2 111 801 802 -0.24407272e-01 -0.53718261e-01 -0.54171128e+00 0.13498000e+00
- 2 111 803 804 0.33246779e+00 -0.53837708e+00 -0.53045522e+01 0.13498000e+00
- 1 211 0 0 -0.60081372e-01 -0.28340234e-01 -0.11471276e+01 0.13957000e+00
- 1 -211 0 0 -0.12097652e+00 0.22958244e+00 -0.96367248e+01 0.13957000e+00
- 1 22 0 0 -0.21322227e-01 -0.18688041e+00 -0.37741040e+01 0.00000000e+00
- 1 22 0 0 -0.22337436e+00 -0.31295211e+00 -0.74723577e+01 0.00000000e+00
- 1 22 0 0 0.21348459e+00 -0.17774480e+00 -0.74920000e+01 0.00000000e+00
- 1 22 0 0 0.18338460e+00 -0.17632757e-01 -0.45324799e+01 0.00000000e+00
- 1 130 0 0 -0.37773398e+00 -0.10889466e+01 0.29897191e+01 0.49767000e+00
- 1 -211 0 0 -0.65202216e-01 -0.77128295e+00 0.36944692e+01 0.13957000e+00
- 1 211 0 0 0.31486729e+00 -0.21089554e-01 0.19578424e+01 0.13957000e+00
- 1 22 0 0 -0.79851136e-02 -0.13428677e+00 0.16304729e+00 0.00000000e+00
- 1 22 0 0 0.18075612e-01 -0.52513427e-01 0.30980450e+00 0.00000000e+00
- 2 310 805 806 0.47323359e-01 0.15525449e-01 0.39547052e+01 0.49767000e+00
- 1 22 0 0 -0.48028546e-01 0.25275726e-01 0.81081288e-03 0.00000000e+00
- 1 22 0 0 0.16469028e-01 0.16771069e+00 0.16202712e+00 0.00000000e+00
- 1 22 0 0 0.85086854e-01 0.29850302e-01 0.75662144e-01 0.00000000e+00
- 1 22 0 0 0.36630676e-01 0.71693294e-01 -0.45788634e-01 0.00000000e+00
- 1 22 0 0 -0.41055054e-01 0.21445089e+00 0.12034700e+00 0.00000000e+00
- 1 22 0 0 -0.88610909e-01 0.47490901e-01 0.23190507e-01 0.00000000e+00
- 1 22 0 0 0.16449700e-01 -0.14093542e-01 -0.21347103e-01 0.00000000e+00
- 1 22 0 0 -0.12962278e+00 0.87996549e-01 0.38814998e-01 0.00000000e+00
- 1 22 0 0 -0.62215538e-01 0.11768749e+01 0.60234244e+00 0.00000000e+00
- 1 22 0 0 -0.21272673e+00 0.13245109e+01 0.70739729e+00 0.00000000e+00
- 1 22 0 0 -0.76430259e+00 0.26023638e+00 0.69087948e+00 0.00000000e+00
- 1 22 0 0 -0.23452072e+00 0.13950601e+00 0.30973854e+00 0.00000000e+00
- 1 -2112 0 0 -0.28690448e+00 -0.17026034e+01 0.18254800e+02 0.93957000e+00
- 2 111 807 808 0.29510364e-01 -0.14270387e+00 0.13847250e+01 0.13498000e+00
- 1 22 0 0 0.36696150e-01 0.16363344e-01 0.20691368e+00 0.00000000e+00
- 1 22 0 0 0.60272397e+00 -0.19688099e+00 0.51081527e+01 0.00000000e+00
- 1 22 0 0 0.33721029e-01 -0.23177578e+00 0.12719359e+02 0.00000000e+00
- 1 22 0 0 0.37490274e-01 -0.82250476e-02 0.90722026e+00 0.00000000e+00
- 1 22 0 0 0.26074886e-02 -0.19751789e-01 0.68165629e-01 0.00000000e+00
- 1 22 0 0 0.63276122e+00 -0.53215204e+00 0.60606345e+01 0.00000000e+00
- 1 211 0 0 0.27861921e+00 -0.14741266e+00 0.32837590e+01 0.13957000e+00
- 1 -211 0 0 0.33651781e+00 0.62702679e+00 0.32273431e+01 0.13957000e+00
- 1 2212 0 0 0.19017978e+01 0.42103459e+00 0.26375848e+02 0.93827000e+00
- 1 -211 0 0 0.11538699e+00 0.65563076e-01 0.26554970e+01 0.13957000e+00
- 1 -2212 0 0 0.15901071e+01 0.45550837e+00 0.12692837e+02 0.93827000e+00
- 1 211 0 0 0.46833061e+00 0.20174347e+00 0.38464988e+01 0.13957000e+00
- 1 22 0 0 0.10380624e+01 0.13016019e+01 0.20362586e+02 0.00000000e+00
- 1 22 0 0 0.40138341e+00 0.60696243e+00 0.81770466e+01 0.00000000e+00
- 1 22 0 0 0.10391667e+00 0.99786469e-01 0.18162005e+01 0.00000000e+00
- 1 22 0 0 0.24615427e+00 0.31100463e-01 0.43840357e+01 0.00000000e+00
- 1 22 0 0 -0.11774739e+00 0.36635049e-01 0.74504756e+01 0.00000000e+00
- 1 22 0 0 0.20092923e-01 0.24606818e-01 0.52867540e+00 0.00000000e+00
- 1 22 0 0 0.10829505e+00 0.45429252e+00 0.93950248e+02 0.00000000e+00
- 1 22 0 0 0.29965859e-01 0.11480078e+00 0.13559292e+02 0.00000000e+00
- 1 22 0 0 0.34717272e-01 0.50968108e-01 0.33668638e+02 0.00000000e+00
- 1 22 0 0 -0.10054981e+00 0.12511557e-01 0.52578040e+02 0.00000000e+00
- 1 22 0 0 -0.38660153e-02 0.14709417e+00 0.26990158e+02 0.00000000e+00
- 1 22 0 0 -0.11182200e+00 0.46447659e+00 0.13879885e+03 0.00000000e+00
- 1 22 0 0 -0.12172250e-01 0.37368142e-01 0.18003361e+01 0.00000000e+00
- 1 22 0 0 -0.90913826e-01 -0.11258097e+00 0.92689282e+01 0.00000000e+00
- 1 22 0 0 -0.11323250e-01 -0.21420305e+00 0.69737894e+01 0.00000000e+00
- 1 22 0 0 -0.88620810e-01 -0.18543896e+00 0.11076930e+02 0.00000000e+00
- 1 22 0 0 -0.10387106e-01 -0.92335933e-01 0.59916924e+01 0.00000000e+00
- 1 22 0 0 0.23015575e+00 -0.34640889e+00 0.25357561e+02 0.00000000e+00
- 1 22 0 0 -0.50154766e-01 -0.14097614e+00 0.87969201e+01 0.00000000e+00
- 1 22 0 0 -0.43753076e+00 -0.44790457e+00 0.40846343e+02 0.00000000e+00
- 2 310 809 810 -0.82586597e+00 -0.14666916e+01 0.65181610e+02 0.49767000e+00
- 1 22 0 0 -0.98046261e+00 -0.53950570e-01 0.88536270e+01 0.00000000e+00
- 1 22 0 0 -0.28570073e+00 0.63034235e-03 0.33040453e+01 0.00000000e+00
- 1 22 0 0 -0.34885484e+00 0.26539654e-01 0.42237208e+01 0.00000000e+00
- 1 22 0 0 -0.95259735e-01 0.81268244e-02 0.55747487e+00 0.00000000e+00
- 1 22 0 0 -0.10694010e+01 -0.65502140e+00 0.31480816e+01 0.00000000e+00
- 1 22 0 0 -0.45624833e+00 -0.18270441e+00 0.12800421e+01 0.00000000e+00
- 1 130 0 0 -0.15891665e+01 -0.12727509e+01 0.45508742e+01 0.49767000e+00
- 2 310 811 812 0.25742449e-01 -0.73054990e+00 0.82121600e+00 0.49767000e+00
- 1 22 0 0 -0.36657038e-02 -0.33063156e-01 0.16607915e-01 0.00000000e+00
- 1 22 0 0 -0.37776802e+00 -0.20205561e+00 0.57983370e+00 0.00000000e+00
- 1 22 0 0 -0.51428623e-01 -0.23591464e+00 0.45254934e+00 0.00000000e+00
- 1 22 0 0 -0.50865605e-01 -0.57841836e-01 0.45110575e-01 0.00000000e+00
- 1 22 0 0 -0.21199382e+00 -0.78771495e-01 0.19336848e+00 0.00000000e+00
- 1 22 0 0 0.15146919e-01 -0.58586061e-02 0.54254725e-01 0.00000000e+00
- 1 22 0 0 0.18148005e-01 -0.48554308e+01 0.62134519e+01 0.00000000e+00
- 1 22 0 0 -0.62520666e-02 -0.47704629e-01 0.82708121e-01 0.00000000e+00
- 1 22 0 0 -0.10355976e+00 -0.12989062e+00 0.61709052e-01 0.00000000e+00
- 1 22 0 0 -0.21283041e+00 -0.11979989e+00 -0.44199982e-01 0.00000000e+00
- 1 22 0 0 0.13666153e+00 -0.46364540e-01 -0.74229796e+00 0.00000000e+00
- 1 22 0 0 0.10104073e+00 -0.38125992e-03 -0.17466228e+00 0.00000000e+00
- 1 22 0 0 -0.21448677e-01 -0.25213453e+00 -0.27155471e+00 0.00000000e+00
- 1 22 0 0 -0.22127252e+00 -0.62350665e+00 -0.92914146e+00 0.00000000e+00
- 1 22 0 0 -0.27023169e+00 -0.17643810e+00 -0.76914839e+00 0.00000000e+00
- 1 22 0 0 -0.89978355e-01 -0.34337126e-01 -0.96574522e-01 0.00000000e+00
- 1 22 0 0 -0.11403532e-02 0.34141270e-01 -0.93651586e-01 0.00000000e+00
- 1 22 0 0 -0.80264581e-01 -0.55755047e-01 -0.11400536e+01 0.00000000e+00
- 1 22 0 0 0.59143022e-01 -0.17425670e+00 -0.49245628e+00 0.00000000e+00
- 1 22 0 0 0.14774908e+00 -0.19342920e+00 -0.35342761e+00 0.00000000e+00
- 1 22 0 0 -0.45484616e-01 -0.85091007e-01 -0.52443440e+00 0.00000000e+00
- 1 22 0 0 -0.54777360e-01 0.49863839e-01 -0.51481792e+00 0.00000000e+00
- 1 22 0 0 0.67942757e+00 -0.52649559e+00 -0.10989879e+02 0.00000000e+00
- 1 22 0 0 0.25927107e+00 -0.17740189e+00 -0.51722789e+01 0.00000000e+00
- 1 22 0 0 -0.20391467e-01 -0.11905126e+00 -0.54987032e+00 0.00000000e+00
- 1 22 0 0 -0.74710322e-01 -0.13655079e+00 -0.17553766e+01 0.00000000e+00
- 1 22 0 0 -0.59716896e-01 -0.23636331e-01 -0.92065841e+00 0.00000000e+00
- 1 22 0 0 -0.13373219e+00 -0.17178977e+00 -0.11696509e+01 0.00000000e+00
- 1 22 0 0 -0.37895458e-02 -0.12209402e-01 -0.39992596e+01 0.00000000e+00
- 1 22 0 0 0.65872937e+00 -0.73381779e+00 -0.15734291e+03 0.00000000e+00
- 1 130 0 0 -0.46970770e+00 -0.33315323e+00 -0.25072576e+03 0.49767000e+00
- 1 22 0 0 -0.13061209e-01 -0.12742407e+00 -0.25767926e+02 0.00000000e+00
- 1 22 0 0 0.10882550e+00 -0.33458814e+00 -0.11419504e+03 0.00000000e+00
- 1 130 0 0 -0.43820364e+00 -0.39053710e+00 -0.54508966e+03 0.49767000e+00
- 1 22 0 0 0.18879190e+00 0.32992140e-01 0.59365826e+00 0.00000000e+00
- 1 22 0 0 0.15680212e+01 -0.83846410e-01 0.43885702e+01 0.00000000e+00
- 1 22 0 0 0.72784610e-01 0.41093209e-01 0.45685237e+00 0.00000000e+00
- 1 22 0 0 0.78045950e+00 0.83247223e-02 0.35629241e+01 0.00000000e+00
- 1 22 0 0 0.73458872e+00 -0.61436168e+00 0.15094015e+01 0.00000000e+00
- 1 22 0 0 0.16694805e+00 -0.67897092e-01 0.31932918e+00 0.00000000e+00
- 1 22 0 0 0.16873960e+00 -0.20111835e+00 0.29490006e+00 0.00000000e+00
- 1 22 0 0 -0.66259858e-02 -0.26958620e-01 -0.71159547e-02 0.00000000e+00
- 1 22 0 0 0.26506252e+00 -0.14695609e+00 0.59304789e-01 0.00000000e+00
- 1 22 0 0 0.13785104e-01 -0.73480968e-02 0.52674844e-01 0.00000000e+00
- 2 310 813 814 -0.51799276e+00 0.42709215e+00 -0.15496429e+01 0.49767000e+00
- 1 22 0 0 -0.40270822e-01 -0.33813796e-01 -0.58464150e+00 0.00000000e+00
- 1 22 0 0 -0.15182697e+00 0.13262871e+00 -0.19058159e+01 0.00000000e+00
- 1 22 0 0 -0.32151733e+00 -0.10773183e+00 -0.20977603e+01 0.00000000e+00
- 1 22 0 0 -0.97404425e+00 -0.10580437e+00 -0.66626562e+01 0.00000000e+00
- 1 22 0 0 0.56859650e-01 0.27855569e+00 -0.16344663e+02 0.00000000e+00
- 1 22 0 0 0.10298855e+00 0.24309292e+00 -0.23732871e+02 0.00000000e+00
- 1 22 0 0 -0.45496555e-01 -0.86040653e-01 -0.16785960e+01 0.00000000e+00
- 1 22 0 0 -0.60956287e-01 0.32358035e-01 -0.27018081e+01 0.00000000e+00
- 1 22 0 0 0.12335482e-01 -0.96014737e-02 -0.13826581e+01 0.00000000e+00
- 1 22 0 0 -0.36114782e+00 -0.15836274e+00 -0.37037482e+02 0.00000000e+00
- 1 22 0 0 -0.80434942e-02 -0.72472186e-01 -0.13105662e+00 0.00000000e+00
- 1 22 0 0 -0.16363777e-01 0.18753925e-01 -0.41065466e+00 0.00000000e+00
- 1 22 0 0 0.82380586e-02 -0.69302899e-01 -0.87107269e+00 0.00000000e+00
- 1 22 0 0 0.32422973e+00 -0.46907418e+00 -0.44334795e+01 0.00000000e+00
- 2 111 815 816 0.70616748e-01 -0.14253159e+00 0.87973058e+00 0.13498000e+00
- 2 111 817 818 -0.23293389e-01 0.15805704e+00 0.30749746e+01 0.13498000e+00
- 1 22 0 0 0.21109531e-01 -0.35930820e-02 0.69005951e+00 0.00000000e+00
- 1 22 0 0 0.84008332e-02 -0.13911079e+00 0.69466551e+00 0.00000000e+00
- 2 111 819 820 -0.17738085e+00 -0.26356643e+00 0.19269738e+02 0.13498000e+00
- 2 111 821 822 -0.64848512e+00 -0.12031252e+01 0.45911872e+02 0.13498000e+00
- 1 -211 0 0 -0.34870851e-01 -0.10166905e+00 0.39371548e+00 0.13957000e+00
- 1 211 0 0 0.60613300e-01 -0.62888085e+00 0.42750052e+00 0.13957000e+00
- 1 -211 0 0 -0.10446699e+00 0.24886169e+00 -0.30871846e+00 0.13957000e+00
- 1 211 0 0 -0.41352577e+00 0.17823046e+00 -0.12409245e+01 0.13957000e+00
- 1 22 0 0 0.10456728e+00 -0.11938922e+00 0.78480695e+00 0.00000000e+00
- 1 22 0 0 -0.33950531e-01 -0.23142372e-01 0.94923627e-01 0.00000000e+00
- 1 22 0 0 0.16765854e-01 0.23257179e-01 0.10698256e+00 0.00000000e+00
- 1 22 0 0 -0.40059243e-01 0.13479986e+00 0.29679920e+01 0.00000000e+00
- 1 22 0 0 -0.15470057e+00 -0.27661624e+00 0.17132960e+02 0.00000000e+00
- 1 22 0 0 -0.22680282e-01 0.13049807e-01 0.21367781e+01 0.00000000e+00
- 1 22 0 0 -0.56136769e+00 -0.11091202e+01 0.42312988e+02 0.00000000e+00
- 1 22 0 0 -0.87117430e-01 -0.94004970e-01 0.35988840e+01 0.00000000e+00
- 324
- 2 25 2 3 0.78785213e+01 0.51343483e+01 -0.45827212e+03 0.12498186e+03
- 2 23 6 10 0.20856169e+02 0.40337663e+01 -0.58602077e+02 0.18370576e+02
- 2 23 4 5 -0.12977648e+02 0.11005820e+01 -0.39967004e+03 0.91056036e+02
- 1 13 0 0 -0.46664892e+02 -0.20653072e+02 -0.19572967e+03 0.10566000e+00
- 1 -13 0 0 0.33687244e+02 0.21753654e+02 -0.20394037e+03 0.10566000e+00
- 1 11 0 0 0.11506493e+02 -0.57714472e+01 -0.37457710e+02 0.51000000e-03
- 1 22 0 0 -0.25300240e+00 0.18253555e+00 -0.11960619e+01 0.00000000e+00
- 1 22 0 0 0.89165591e-01 0.90484158e-01 -0.18824297e+00 0.00000000e+00
- 1 -11 0 0 0.92650373e+01 0.92777357e+01 -0.19235007e+02 0.51000000e-03
- 1 22 0 0 0.24847563e+00 0.25445814e+00 -0.52505487e+00 0.00000000e+00
- 2 2203 42 42 -0.76652096e+00 0.97148523e+00 0.61903937e+04 0.77133000e+00
- 2 21 42 42 0.44073352e+00 -0.24328273e+00 0.78903473e+02 0.00000000e+00
- 2 21 42 42 0.25906509e+01 -0.33631596e+00 0.17321834e+03 0.00000000e+00
- 2 21 42 42 -0.69170925e-01 0.38508855e+00 0.15618699e+02 0.00000000e+00
- 2 21 42 42 0.65190798e+00 -0.11798509e+01 -0.32165422e+01 0.00000000e+00
- 2 21 42 42 -0.88287799e-01 -0.43532142e+00 -0.29500164e+00 0.00000000e+00
- 2 21 42 42 -0.34399889e+01 -0.20162779e+01 0.18517311e+00 0.00000000e+00
- 2 21 42 42 -0.40343479e+01 -0.31057730e+00 -0.57719685e-01 0.00000000e+00
- 2 21 42 42 -0.21378332e+00 0.19435615e+01 0.78128578e+01 0.00000000e+00
- 2 21 42 42 -0.13189572e+01 0.26044999e+01 -0.52312399e+03 0.00000000e+00
- 2 2 42 42 0.71320657e+00 -0.25665403e+00 -0.91364965e+01 0.33000000e+00
- 2 1 81 81 -0.21858235e+01 0.46771617e+00 0.39981714e+02 0.33000000e+00
- 2 21 81 81 0.66328302e+00 -0.16519595e+01 -0.21501422e+01 0.00000000e+00
- 2 21 81 81 0.40293536e-02 -0.89792790e-01 -0.41654946e+01 0.00000000e+00
- 2 21 81 81 -0.79385340e+00 -0.74831099e+00 -0.60750534e+00 0.00000000e+00
- 2 21 81 81 -0.55126483e-01 -0.13635631e+01 -0.39992040e+00 0.00000000e+00
- 2 21 81 81 0.21378332e+00 -0.19435615e+01 -0.60003462e+01 0.00000000e+00
- 2 21 81 81 0.17298651e+00 0.53585981e-01 -0.60883141e+00 0.00000000e+00
- 2 21 81 81 -0.49523454e+00 -0.10293906e+01 -0.19540470e+02 0.00000000e+00
- 2 21 81 81 -0.22101608e+00 -0.10135574e+00 -0.19881514e+03 0.00000000e+00
- 2 21 81 81 -0.84883183e+00 -0.11331085e+01 -0.19077223e+03 0.00000000e+00
- 2 21 81 81 0.38855690e+00 0.10610522e+00 -0.11777468e+03 0.00000000e+00
- 2 21 81 81 -0.48178372e+00 -0.54393032e+00 -0.39003755e+02 0.00000000e+00
- 2 2101 81 81 0.12399408e+01 0.35329936e+00 -0.54098526e+04 0.57933000e+00
- 2 21 105 105 0.40684383e+00 0.13695105e+01 -0.49161794e+00 0.00000000e+00
- 2 21 105 105 0.55126483e-01 0.13635631e+01 -0.64611310e+00 0.00000000e+00
- 2 21 105 105 -0.46961793e+00 -0.10707199e+01 0.34790840e+02 0.00000000e+00
- 2 21 105 105 0.39907513e-01 -0.78632457e+00 0.35062064e+02 0.00000000e+00
- 2 21 105 105 -0.40684383e+00 -0.13695105e+01 0.61656091e+02 0.00000000e+00
- 2 21 105 105 0.46961793e+00 0.10707199e+01 0.30813780e+03 0.00000000e+00
- 2 21 105 105 -0.39907513e-01 0.78632457e+00 0.39169988e+02 0.00000000e+00
- 2 92 43 80 -0.55345581e+01 0.11263549e+01 0.59303024e+04 0.37389444e+04
- 1 211 0 0 0.30219001e+00 -0.13540685e+00 0.14576470e+03 0.13957000e+00
- 2 3212 126 127 -0.51285200e+00 0.63702702e+00 0.40050861e+04 0.11925500e+01
- 2 313 128 129 -0.77574123e-01 0.19524128e-02 0.73784352e+03 0.87795640e+00
- 1 211 0 0 -0.26519911e+00 0.20577678e+00 0.74250821e+02 0.13957000e+00
- 2 111 130 131 0.31906276e+00 -0.41309240e-01 0.31292797e+03 0.13498000e+00
- 1 -211 0 0 -0.71103086e+00 0.20109364e+00 0.31504699e+03 0.13957000e+00
- 2 213 132 133 0.78353773e+00 -0.67025260e+00 0.60270164e+03 0.73002455e+00
- 1 -211 0 0 0.22029954e+00 0.30890275e+00 0.12961435e+02 0.13957000e+00
- 1 211 0 0 0.21663024e+00 -0.50426080e-01 0.25603348e+02 0.13957000e+00
- 2 111 134 135 0.53818211e+00 0.59567507e+00 0.72206739e+02 0.13498000e+00
- 2 223 136 138 -0.22587311e+00 -0.19250426e+00 0.46451647e+02 0.78317291e+00
- 1 -321 0 0 0.95952670e+00 -0.40306127e-01 0.61591166e+02 0.49360000e+00
- 2 323 139 140 0.49102451e+00 -0.47695971e+00 0.28118572e+02 0.88766149e+00
- 2 -2114 141 142 -0.27475867e+00 -0.59447923e-01 0.73385802e+01 0.13005505e+01
- 2 -213 143 144 0.52018925e-01 0.29977392e+00 0.60141651e+01 0.71020267e+00
- 1 2212 0 0 0.73982900e+00 -0.29851390e+00 0.24965721e+01 0.93827000e+00
- 2 113 145 146 -0.16621261e+00 0.14854046e+00 -0.35221145e+00 0.78715669e+00
- 2 111 147 148 0.16815262e+00 -0.17636881e+00 0.36277266e+00 0.13498000e+00
- 2 223 149 151 0.50049326e-01 0.13431128e+00 0.17821377e+00 0.78459077e+00
- 2 -213 152 153 0.43414540e-02 -0.37652711e+00 -0.15980495e+01 0.72102024e+00
- 2 213 154 155 -0.90327371e+00 -0.87171931e+00 0.13292803e-01 0.68164383e+00
- 2 -213 156 157 -0.28997888e+00 -0.34294307e+00 -0.38577180e+00 0.86726404e+00
- 2 -1114 158 159 -0.23161221e+01 -0.22131230e+00 0.92863716e+00 0.12407148e+01
- 2 113 160 161 -0.16194717e+01 -0.15110977e+01 -0.52297869e+00 0.11356346e+01
- 1 2112 0 0 -0.18069381e+01 0.41391577e+00 0.77647474e+00 0.93957000e+00
- 2 223 162 164 -0.25369386e+00 0.26695757e+00 0.31391694e+01 0.78270036e+00
- 2 -323 165 166 -0.43777176e+00 0.72877520e+00 0.21648553e+01 0.91733864e+00
- 2 323 167 168 -0.97359993e-01 0.47335574e+00 0.10884142e+01 0.91716935e+00
- 1 -211 0 0 -0.37303361e+00 -0.30304256e+00 -0.12107042e+01 0.13957000e+00
- 2 113 169 170 0.34065718e-01 0.57467599e-01 -0.17417327e+01 0.80781258e+00
- 1 211 0 0 0.53514863e+00 0.22650166e-01 -0.23463946e+01 0.13957000e+00
- 1 -211 0 0 0.19495268e-01 0.49860429e+00 -0.29997832e+01 0.13957000e+00
- 2 -313 171 172 0.19928690e+00 -0.50780582e+00 -0.67805056e+01 0.86085378e+00
- 2 313 173 174 -0.92190603e+00 0.15373450e+01 -0.22516354e+03 0.95383772e+00
- 2 -313 175 176 -0.21629258e+00 0.72090958e+00 -0.99022057e+02 0.96532610e+00
- 2 -3122 177 178 -0.42941274e+00 0.71324532e-01 -0.11695884e+03 0.11156800e+01
- 1 2112 0 0 0.31599787e+00 0.38658678e+00 -0.32099478e+02 0.93957000e+00
- 2 213 179 180 0.41535799e+00 -0.30864728e+00 -0.43571329e+02 0.79141806e+00
- 2 92 82 104 -0.23990896e+01 -0.76242663e+01 -0.59497094e+04 0.99551584e+03
- 2 113 181 182 -0.17633936e+01 0.80787491e+00 0.33288973e+02 0.49927366e+00
- 2 223 183 185 -0.73463454e+00 -0.23857712e+00 0.37179236e+01 0.82371328e+00
- 2 -213 186 187 0.70277885e-01 -0.18388609e+00 0.24492514e+01 0.80751913e+00
- 1 211 0 0 0.18382679e+00 0.11414695e+00 0.15962338e+00 0.13957000e+00
- 2 113 188 189 0.12826586e+00 -0.11114716e+01 -0.12436554e+01 0.75051642e+00
- 2 -213 190 191 0.39948293e+00 -0.12983151e+00 -0.12508174e+01 0.62832925e+00
- 2 331 192 194 -0.60895386e+00 -0.21127234e+01 -0.25896572e+01 0.95778646e+00
- 2 111 195 196 -0.40815153e+00 0.22795867e-01 0.17500863e+00 0.13498000e+00
- 2 111 197 198 0.27486314e+00 -0.45748347e+00 -0.30233624e+01 0.13498000e+00
- 2 111 199 200 0.24923116e+00 -0.88249029e+00 -0.24195581e+01 0.13498000e+00
- 1 2212 0 0 -0.23485885e+00 -0.68198928e+00 -0.94451154e+01 0.93827000e+00
- 1 -321 0 0 0.12131125e+00 -0.13346522e+00 -0.12882290e+01 0.49360000e+00
- 2 -3112 201 202 0.19222863e+00 -0.61675455e+00 -0.58630326e+01 0.11974400e+01
- 2 113 203 204 -0.66743926e-01 -0.58164837e+00 -0.29525578e+02 0.69430855e+00
- 2 331 205 206 -0.33206350e+00 -0.15585063e+00 -0.44918132e+02 0.95762076e+00
- 2 -213 207 208 -0.60689205e+00 -0.61662370e+00 -0.13030035e+03 0.73766267e+00
- 2 113 209 210 0.28680430e+00 -0.63979584e-01 -0.18422688e+03 0.57735054e+00
- 2 111 211 212 -0.10240656e+01 -0.60725209e+00 -0.12330567e+03 0.13498000e+00
- 2 213 213 214 0.37440441e+00 -0.17154866e+00 -0.38846390e+03 0.74599287e+00
- 1 -211 0 0 0.45301466e+00 -0.11388478e+00 -0.47058025e+02 0.13957000e+00
- 2 221 215 216 -0.16036873e+00 0.74514292e-01 -0.24335879e+03 0.54745000e+00
- 2 2224 217 218 0.32410083e+00 0.24246159e+00 -0.32586138e+04 0.13583897e+01
- 1 -211 0 0 0.48322466e+00 -0.26599493e-01 -0.15126056e+04 0.13957000e+00
- 2 92 106 125 0.55126483e-01 0.13635631e+01 0.47767905e+03 0.63572498e+02
- 2 111 219 220 -0.25679092e+00 0.48109397e+00 0.31059969e+01 0.13498000e+00
- 2 213 221 222 0.12562245e+00 -0.26525765e+00 0.10689240e+01 0.76808643e+00
- 1 -321 0 0 0.97858572e-02 0.43389246e+00 0.49903365e+00 0.49360000e+00
- 2 333 223 224 0.44615507e-01 0.66663024e+00 0.72045881e+00 0.10190580e+01
- 2 323 225 226 0.58897102e+00 0.57868346e+00 0.15297088e+00 0.94720977e+00
- 2 221 227 229 -0.54810386e+00 0.42311516e+00 0.58106949e+00 0.54745000e+00
- 2 113 230 231 0.53269845e+00 0.35765204e+00 0.43523195e+00 0.80614677e+00
- 2 111 232 233 -0.62069111e-01 0.63779192e-02 0.19891333e+00 0.13498000e+00
- 2 -323 234 235 -0.97533142e-03 0.10631018e+00 0.21299682e+01 0.98089128e+00
- 2 313 236 237 -0.46177506e-01 -0.32276888e+00 0.71920039e+01 0.84107399e+00
- 2 213 238 239 -0.51960182e+00 -0.53929887e-01 0.83138002e+01 0.55165363e+00
- 1 -211 0 0 0.83707171e-01 0.10555265e+00 0.55872311e+00 0.13957000e+00
- 2 213 240 241 0.41092547e-01 -0.12457921e+01 0.49620134e+02 0.75211381e+00
- 2 -213 242 243 -0.31962730e+00 -0.17396112e+00 0.25065107e+02 0.79042663e+00
- 1 211 0 0 -0.83444149e-01 -0.33844408e+00 0.31923330e+02 0.13957000e+00
- 1 -211 0 0 0.85125698e-02 -0.48317784e+00 0.11098218e+02 0.13957000e+00
- 2 213 244 245 -0.14267619e+01 0.28165581e+00 0.12601122e+03 0.62203446e+00
- 1 -2212 0 0 0.20622233e+01 0.26702457e+00 0.16092917e+03 0.93827000e+00
- 1 2212 0 0 0.57776268e+00 0.75662142e+00 0.42409598e+02 0.93827000e+00
- 2 -213 246 247 -0.75631318e+00 -0.21771526e+00 0.56651843e+01 0.74446897e+00
- 2 3122 248 249 -0.47666822e+00 0.67848079e+00 0.38778542e+04 0.11156800e+01
- 1 22 0 0 -0.36183784e-01 -0.41453769e-01 0.12723189e+03 0.00000000e+00
- 2 311 250 250 0.27589070e-01 0.10413194e-01 0.69564619e+03 0.49767000e+00
- 2 111 251 252 -0.10516319e+00 -0.84607816e-02 0.42197331e+02 0.13498000e+00
- 1 22 0 0 0.41149446e-01 -0.56733027e-01 0.69695881e+02 0.00000000e+00
- 1 22 0 0 0.27791332e+00 0.15423788e-01 0.24323209e+03 0.00000000e+00
- 1 211 0 0 0.53016803e+00 -0.36175509e+00 0.19497650e+03 0.13957000e+00
- 2 111 253 254 0.25336970e+00 -0.30849751e+00 0.40772514e+03 0.13498000e+00
- 1 22 0 0 -0.41513486e-02 0.84345570e-02 0.30362638e+00 0.00000000e+00
- 1 22 0 0 0.54233346e+00 0.58724051e+00 0.71903113e+02 0.00000000e+00
- 1 -211 0 0 -0.17501971e+00 -0.36283667e-01 0.61699703e+01 0.13957000e+00
- 1 211 0 0 -0.21713792e+00 -0.11126919e+00 0.28206216e+02 0.13957000e+00
- 2 111 255 256 0.16628452e+00 -0.44951402e-01 0.12075461e+02 0.13498000e+00
- 2 311 257 257 0.42604590e+00 -0.19447921e+00 0.12229980e+02 0.49767000e+00
- 1 211 0 0 0.64978610e-01 -0.28248050e+00 0.15888592e+02 0.13957000e+00
- 1 -2112 0 0 0.44905621e-01 0.32147235e-01 0.45243065e+01 0.93957000e+00
- 2 111 258 259 -0.31966429e+00 -0.91595158e-01 0.28142737e+01 0.13498000e+00
- 1 -211 0 0 -0.24128491e+00 0.14280130e+00 0.43440558e+01 0.13957000e+00
- 2 111 260 261 0.29330383e+00 0.15697262e+00 0.16701093e+01 0.13498000e+00
- 1 -211 0 0 0.21369149e+00 -0.15020805e-01 -0.37467634e+00 0.13957000e+00
- 1 211 0 0 -0.37990410e+00 0.16356126e+00 0.22464893e-01 0.13957000e+00
- 1 22 0 0 0.75699444e-01 -0.12282424e+00 0.30145992e+00 0.00000000e+00
- 1 22 0 0 0.92453173e-01 -0.53544575e-01 0.61312734e-01 0.00000000e+00
- 1 211 0 0 0.12813403e+00 -0.61834178e-02 0.20172601e+00 0.13957000e+00
- 1 -211 0 0 0.28642015e-01 0.28112673e+00 0.11854318e-01 0.13957000e+00
- 2 111 262 263 -0.10672672e+00 -0.14063203e+00 -0.35366562e-01 0.13498000e+00
- 1 -211 0 0 -0.11463086e+00 -0.49550836e+00 -0.74190265e+00 0.13957000e+00
- 2 111 264 265 0.11897231e+00 0.11898125e+00 -0.85614685e+00 0.13498000e+00
- 1 211 0 0 -0.85938781e-02 0.32539618e-01 -0.37170185e-01 0.13957000e+00
- 2 111 266 267 -0.89467983e+00 -0.90425893e+00 0.50462988e-01 0.13498000e+00
- 1 -211 0 0 -0.22035532e+00 -0.25841121e+00 0.21444164e+00 0.13957000e+00
- 2 111 268 269 -0.69623558e-01 -0.84531864e-01 -0.60021343e+00 0.13498000e+00
- 1 -2112 0 0 -0.19001590e+01 -0.10010040e+00 0.52245812e+00 0.93957000e+00
- 1 211 0 0 -0.41596308e+00 -0.12121190e+00 0.40617904e+00 0.13957000e+00
- 1 -211 0 0 -0.92778880e+00 -0.21292126e+00 -0.45528303e+00 0.13957000e+00
- 1 211 0 0 -0.69168285e+00 -0.12981764e+01 -0.67695667e-01 0.13957000e+00
- 1 211 0 0 0.83873320e-01 -0.56399953e-01 0.43005173e+00 0.13957000e+00
- 1 -211 0 0 -0.20252310e+00 0.30915354e+00 0.10348148e+01 0.13957000e+00
- 2 111 270 271 -0.13504408e+00 0.14203985e-01 0.16743028e+01 0.13498000e+00
- 1 -321 0 0 0.58284915e-01 0.41512044e+00 0.10742062e+01 0.49360000e+00
- 2 111 272 273 -0.49605668e+00 0.31365476e+00 0.10906491e+01 0.13498000e+00
- 1 321 0 0 -0.27174843e+00 0.30727592e+00 0.38726787e+00 0.49360000e+00
- 2 111 274 275 0.17438844e+00 0.16607982e+00 0.70114629e+00 0.13498000e+00
- 1 211 0 0 0.32915233e-01 -0.24665419e+00 -0.14480462e+01 0.13957000e+00
- 1 -211 0 0 0.11504845e-02 0.30412179e+00 -0.29368654e+00 0.13957000e+00
- 1 -321 0 0 0.30332016e+00 -0.37944631e+00 -0.61746157e+01 0.49360000e+00
- 1 211 0 0 -0.10403326e+00 -0.12835951e+00 -0.60588989e+00 0.13957000e+00
- 1 321 0 0 -0.40340244e+00 0.12692028e+01 -0.16806904e+03 0.49360000e+00
- 1 -211 0 0 -0.51850359e+00 0.26814224e+00 -0.57094504e+02 0.13957000e+00
- 1 -321 0 0 -0.41343856e+00 0.73230141e+00 -0.83274773e+02 0.49360000e+00
- 1 211 0 0 0.19714598e+00 -0.11391825e-01 -0.15747284e+02 0.13957000e+00
- 1 -2212 0 0 -0.32991014e+00 0.64557967e-01 -0.88452620e+02 0.93827000e+00
- 1 211 0 0 -0.99502600e-01 0.67665653e-02 -0.28506222e+02 0.13957000e+00
- 1 211 0 0 0.19227452e+00 -0.53709319e+00 -0.30555967e+02 0.13957000e+00
- 2 111 276 277 0.22308346e+00 0.22844591e+00 -0.13015362e+02 0.13498000e+00
- 1 211 0 0 -0.72871558e+00 0.11836197e+00 0.12192720e+02 0.13957000e+00
- 1 -211 0 0 -0.10346780e+01 0.68951294e+00 0.21096253e+02 0.13957000e+00
- 1 -211 0 0 -0.50957496e+00 0.75072025e-01 0.22368720e+01 0.13957000e+00
- 1 211 0 0 -0.28947578e+00 -0.19213875e+00 0.96024362e+00 0.13957000e+00
- 2 111 278 279 0.64416199e-01 -0.12151040e+00 0.52080797e+00 0.13498000e+00
- 1 -211 0 0 0.19745461e+00 -0.10527980e+00 0.23447211e+01 0.13957000e+00
- 2 111 280 281 -0.12717673e+00 -0.78606288e-01 0.10453024e+00 0.13498000e+00
- 1 -211 0 0 -0.36888081e-01 -0.56846988e+00 -0.16928857e+00 0.13957000e+00
- 1 211 0 0 0.16515394e+00 -0.54300177e+00 -0.10743668e+01 0.13957000e+00
- 1 -211 0 0 0.15360350e+00 0.22803927e-01 -0.10785950e+01 0.13957000e+00
- 2 111 282 283 0.24587943e+00 -0.15263544e+00 -0.17222232e+00 0.13498000e+00
- 1 -211 0 0 -0.17746731e+00 -0.40986731e+00 -0.51032361e+00 0.13957000e+00
- 1 211 0 0 -0.11896824e+00 -0.66295776e+00 -0.53404175e+00 0.13957000e+00
- 2 221 284 286 -0.31251831e+00 -0.10398983e+01 -0.15452918e+01 0.54745000e+00
- 1 22 0 0 -0.12504713e+00 0.79250341e-02 0.12471843e+00 0.00000000e+00
- 1 22 0 0 -0.28310440e+00 0.14870832e-01 0.50290193e-01 0.00000000e+00
- 1 22 0 0 0.38907590e-01 -0.17750552e+00 -0.11494059e+01 0.00000000e+00
- 1 22 0 0 0.23595555e+00 -0.27997795e+00 -0.18739565e+01 0.00000000e+00
- 1 22 0 0 0.44874471e-01 -0.50861513e-01 -0.23542969e+00 0.00000000e+00
- 1 22 0 0 0.20435669e+00 -0.83162878e+00 -0.21841285e+01 0.00000000e+00
- 1 -2112 0 0 -0.98158062e-02 -0.38290382e+00 -0.46414270e+01 0.93957000e+00
- 1 211 0 0 0.20204443e+00 -0.23385073e+00 -0.12216056e+01 0.13957000e+00
- 1 -211 0 0 0.25406599e+00 -0.26337187e+00 -0.90023278e+01 0.13957000e+00
- 1 211 0 0 -0.32080992e+00 -0.31827649e+00 -0.20523250e+02 0.13957000e+00
- 1 22 0 0 0.77187563e-01 0.25587333e+00 -0.28821963e+02 0.00000000e+00
- 1 22 0 0 -0.40925107e+00 -0.41172396e+00 -0.16096169e+02 0.00000000e+00
- 1 -211 0 0 -0.43690044e+00 -0.70051662e+00 -0.11640877e+03 0.13957000e+00
- 2 111 287 288 -0.16999161e+00 0.83892912e-01 -0.13891584e+02 0.13498000e+00
- 1 211 0 0 0.29418565e+00 0.15284339e+00 -0.13334020e+03 0.13957000e+00
- 1 -211 0 0 -0.73813542e-02 -0.21682297e+00 -0.50886684e+02 0.13957000e+00
- 1 22 0 0 -0.25650062e+00 -0.21494907e+00 -0.31751312e+02 0.00000000e+00
- 1 22 0 0 -0.76756497e+00 -0.39230302e+00 -0.91554362e+02 0.00000000e+00
- 1 211 0 0 -0.73585821e-01 0.16867342e+00 -0.63574545e+02 0.13957000e+00
- 2 111 289 290 0.44799023e+00 -0.34022208e+00 -0.32488936e+03 0.13498000e+00
- 1 22 0 0 -0.16381008e+00 -0.16462210e+00 -0.19022504e+03 0.00000000e+00
- 1 22 0 0 0.34413512e-02 0.23913639e+00 -0.53133748e+02 0.00000000e+00
- 1 2212 0 0 0.44872848e+00 0.39951052e+00 -0.22203739e+04 0.93827000e+00
- 1 211 0 0 -0.12462765e+00 -0.15704893e+00 -0.10382398e+04 0.13957000e+00
- 1 22 0 0 -0.20996567e+00 0.25466682e+00 0.17595386e+01 0.00000000e+00
- 1 22 0 0 -0.46825251e-01 0.22642715e+00 0.13464583e+01 0.00000000e+00
- 1 211 0 0 -0.14836322e+00 0.85968692e-01 0.47533892e-01 0.13957000e+00
- 2 111 291 292 0.27398567e+00 -0.35122635e+00 0.10213901e+01 0.13498000e+00
- 1 321 0 0 0.92076290e-01 0.21362379e+00 0.35472764e+00 0.49360000e+00
- 1 -321 0 0 -0.47460783e-01 0.45300645e+00 0.36573117e+00 0.49360000e+00
- 2 311 293 293 0.58219102e+00 0.12050953e+00 0.13108824e+00 0.49767000e+00
- 1 211 0 0 0.67799980e-02 0.45817393e+00 0.21882644e-01 0.13957000e+00
- 2 111 294 295 -0.15960112e+00 0.51146758e-01 0.80952610e-01 0.13498000e+00
- 2 111 296 297 -0.72864823e-01 0.45501079e-02 0.14632306e+00 0.13498000e+00
- 2 111 298 299 -0.31563792e+00 0.36741830e+00 0.35379382e+00 0.13498000e+00
- 1 211 0 0 0.68272764e+00 0.25902870e+00 0.48239202e+00 0.13957000e+00
- 1 -211 0 0 -0.15002920e+00 0.98623333e-01 -0.47160073e-01 0.13957000e+00
- 1 22 0 0 -0.10776694e-01 0.48173937e-01 0.16840920e+00 0.00000000e+00
- 1 22 0 0 -0.51292417e-01 -0.41796018e-01 0.30504131e-01 0.00000000e+00
- 2 -311 300 300 0.33512652e+00 -0.49137667e-02 0.11735480e+01 0.49767000e+00
- 1 -211 0 0 -0.33610185e+00 0.11122395e+00 0.95642022e+00 0.13957000e+00
- 1 321 0 0 0.43221838e-01 -0.28547046e+00 0.67600161e+01 0.49360000e+00
- 1 -211 0 0 -0.89399345e-01 -0.37298420e-01 0.43198782e+00 0.13957000e+00
- 1 211 0 0 -0.11480095e+00 -0.23164467e+00 0.36414216e+01 0.13957000e+00
- 2 111 301 302 -0.40480087e+00 0.17771479e+00 0.46723786e+01 0.13498000e+00
- 1 211 0 0 0.26718735e+00 -0.83144582e+00 0.23310497e+02 0.13957000e+00
- 2 111 303 304 -0.22609480e+00 -0.41434627e+00 0.26309636e+02 0.13498000e+00
- 1 -211 0 0 0.75039429e-01 0.13512457e+00 0.23613510e+01 0.13957000e+00
- 2 111 305 306 -0.39466673e+00 -0.30908568e+00 0.22703756e+02 0.13498000e+00
- 1 211 0 0 -0.10552351e+01 0.36162252e+00 0.76169656e+02 0.13957000e+00
- 2 111 307 308 -0.37152682e+00 -0.79966710e-01 0.49841560e+02 0.13498000e+00
- 1 -211 0 0 -0.52238873e+00 0.11898437e+00 0.43141090e+01 0.13957000e+00
- 2 111 309 310 -0.23392444e+00 -0.33669962e+00 0.13510753e+01 0.13498000e+00
- 1 2212 0 0 -0.43926688e+00 0.47341500e+00 0.31548976e+04 0.93827000e+00
- 1 -211 0 0 -0.37401341e-01 0.20506579e+00 0.72295667e+03 0.13957000e+00
- 2 310 311 312 0.27589070e-01 0.10413194e-01 0.69564619e+03 0.49767000e+00
- 1 22 0 0 -0.12146831e-02 -0.48614715e-01 0.68744260e+01 0.00000000e+00
- 1 22 0 0 -0.10394851e+00 0.40153933e-01 0.35322905e+02 0.00000000e+00
- 1 22 0 0 0.34746901e-01 -0.12775935e+00 0.10139114e+03 0.00000000e+00
- 1 22 0 0 0.21862280e+00 -0.18073816e+00 0.30633400e+03 0.00000000e+00
- 1 22 0 0 0.17351360e+00 -0.56681026e-01 0.11913349e+02 0.00000000e+00
- 1 22 0 0 -0.72290799e-02 0.11729624e-01 0.16211189e+00 0.00000000e+00
- 1 130 0 0 0.42604590e+00 -0.19447921e+00 0.12229980e+02 0.49767000e+00
- 1 22 0 0 -0.34165164e-01 0.31517932e-01 0.46175560e+00 0.00000000e+00
- 1 22 0 0 -0.28549913e+00 -0.12311309e+00 0.23525181e+01 0.00000000e+00
- 1 22 0 0 -0.31480071e-02 0.13531789e-01 0.25320594e+00 0.00000000e+00
- 1 22 0 0 0.29645184e+00 0.14344083e+00 0.14169034e+01 0.00000000e+00
- 1 22 0 0 -0.88876277e-01 -0.11630997e+00 -0.83277872e-01 0.00000000e+00
- 1 22 0 0 -0.17850442e-01 -0.24322067e-01 0.47911310e-01 0.00000000e+00
- 1 22 0 0 0.14123995e+00 0.12341015e+00 -0.68340374e+00 0.00000000e+00
- 1 22 0 0 -0.22267636e-01 -0.44289052e-02 -0.17274310e+00 0.00000000e+00
- 1 22 0 0 -0.52883232e+00 -0.50369526e+00 -0.34276555e-01 0.00000000e+00
- 1 22 0 0 -0.36584751e+00 -0.40056367e+00 0.84739542e-01 0.00000000e+00
- 1 22 0 0 0.87922188e-02 0.29067117e-01 -0.59257977e-01 0.00000000e+00
- 1 22 0 0 -0.78415777e-01 -0.11359898e+00 -0.54095546e+00 0.00000000e+00
- 1 22 0 0 -0.12298497e+00 -0.42920289e-01 0.10132198e+01 0.00000000e+00
- 1 22 0 0 -0.12059107e-01 0.57124274e-01 0.66108307e+00 0.00000000e+00
- 1 22 0 0 -0.46962424e+00 0.27684040e+00 0.92078717e+00 0.00000000e+00
- 1 22 0 0 -0.26432438e-01 0.36814360e-01 0.16986198e+00 0.00000000e+00
- 1 22 0 0 0.10644867e+00 0.26709806e-01 0.19028130e+00 0.00000000e+00
- 1 22 0 0 0.67939767e-01 0.13937002e+00 0.51086499e+00 0.00000000e+00
- 1 22 0 0 0.78564024e-02 0.11774727e-01 -0.28364574e+01 0.00000000e+00
- 1 22 0 0 0.21522706e+00 0.21667118e+00 -0.10178905e+02 0.00000000e+00
- 1 22 0 0 0.51038042e-01 -0.14996034e+00 0.46526154e+00 0.00000000e+00
- 1 22 0 0 0.13378157e-01 0.28449938e-01 0.55546434e-01 0.00000000e+00
- 1 22 0 0 -0.15071339e+00 -0.41425294e-01 0.91155749e-01 0.00000000e+00
- 1 22 0 0 0.23536666e-01 -0.37180994e-01 0.13374487e-01 0.00000000e+00
- 1 22 0 0 0.11579794e+00 -0.27331593e-01 -0.89103604e-02 0.00000000e+00
- 1 22 0 0 0.13008149e+00 -0.12530385e+00 -0.16331196e+00 0.00000000e+00
- 1 211 0 0 -0.10075965e+00 -0.37291940e+00 -0.33824563e+00 0.13957000e+00
- 1 -211 0 0 -0.20776495e+00 -0.42313137e+00 -0.69488041e+00 0.13957000e+00
- 2 111 313 314 -0.39937071e-02 -0.24384756e+00 -0.51216575e+00 0.13498000e+00
- 1 22 0 0 -0.18476982e+00 0.10056393e+00 -0.12457892e+02 0.00000000e+00
- 1 22 0 0 0.14778213e-01 -0.16671018e-01 -0.14336919e+01 0.00000000e+00
- 1 22 0 0 0.28121378e+00 -0.18027764e+00 -0.22487835e+03 0.00000000e+00
- 1 22 0 0 0.16677645e+00 -0.15994444e+00 -0.10001100e+03 0.00000000e+00
- 1 22 0 0 0.21743814e+00 -0.27654372e+00 0.91712918e+00 0.00000000e+00
- 1 22 0 0 0.56547528e-01 -0.74682628e-01 0.10426089e+00 0.00000000e+00
- 1 130 0 0 0.58219102e+00 0.12050953e+00 0.13108824e+00 0.49767000e+00
- 1 22 0 0 -0.10170455e+00 -0.12462509e-01 0.98500455e-01 0.00000000e+00
- 1 22 0 0 -0.57896569e-01 0.63609267e-01 -0.17547845e-01 0.00000000e+00
- 1 22 0 0 -0.39613102e-01 0.69438489e-01 0.85883698e-01 0.00000000e+00
- 1 22 0 0 -0.33251720e-01 -0.64888381e-01 0.60439366e-01 0.00000000e+00
- 1 22 0 0 0.12541062e-01 0.22840531e-01 0.10615057e-01 0.00000000e+00
- 1 22 0 0 -0.32817898e+00 0.34457777e+00 0.34317876e+00 0.00000000e+00
- 2 310 315 316 0.33512652e+00 -0.49137667e-02 0.11735480e+01 0.49767000e+00
- 1 22 0 0 -0.63841151e-01 0.73623738e-01 0.68371738e+00 0.00000000e+00
- 1 22 0 0 -0.34095972e+00 0.10409105e+00 0.39886612e+01 0.00000000e+00
- 1 22 0 0 -0.22990803e+00 -0.41459629e+00 0.24555402e+02 0.00000000e+00
- 1 22 0 0 0.38132263e-02 0.25002205e-03 0.17542341e+01 0.00000000e+00
- 1 22 0 0 -0.16429551e+00 -0.12578597e+00 0.12413118e+02 0.00000000e+00
- 1 22 0 0 -0.23037121e+00 -0.18329971e+00 0.10290638e+02 0.00000000e+00
- 1 22 0 0 -0.11159430e+00 0.17128944e-01 0.20789411e+02 0.00000000e+00
- 1 22 0 0 -0.25993252e+00 -0.97095654e-01 0.29052149e+02 0.00000000e+00
- 1 22 0 0 -0.16352044e+00 -0.12719520e+00 0.74346476e+00 0.00000000e+00
- 1 22 0 0 -0.70404000e-01 -0.20950442e+00 0.60761054e+00 0.00000000e+00
- 2 111 317 318 -0.18563780e-01 -0.11227555e+00 0.10482007e+03 0.13498000e+00
- 2 111 319 320 0.46152851e-01 0.12268874e+00 0.59082612e+03 0.13498000e+00
- 1 22 0 0 -0.10799197e-02 -0.20583175e+00 -0.50357974e+00 0.00000000e+00
- 1 22 0 0 -0.29137874e-02 -0.38015811e-01 -0.85860075e-02 0.00000000e+00
- 2 111 321 322 0.21934046e+00 0.17152374e+00 0.87617245e+00 0.13498000e+00
- 2 111 323 324 0.11578605e+00 -0.17643751e+00 0.29737553e+00 0.13498000e+00
- 1 22 0 0 -0.99380523e-02 -0.13693465e+00 0.98365586e+02 0.00000000e+00
- 1 22 0 0 -0.86257279e-02 0.24659096e-01 0.64544803e+01 0.00000000e+00
- 1 22 0 0 0.46746047e-01 0.14684002e+00 0.42032857e+03 0.00000000e+00
- 1 22 0 0 -0.59319635e-03 -0.24151277e-01 0.17049755e+03 0.00000000e+00
- 1 22 0 0 0.78071374e-01 0.14633958e+00 0.48003921e+00 0.00000000e+00
- 1 22 0 0 0.14126909e+00 0.25184163e-01 0.39613324e+00 0.00000000e+00
- 1 22 0 0 0.14418865e+00 -0.13034712e+00 0.25157403e+00 0.00000000e+00
- 1 22 0 0 -0.28402594e-01 -0.46090392e-01 0.45801500e-01 0.00000000e+00
- 389
- 2 25 2 3 0.16201542e+03 -0.63547160e+02 -0.59477692e+01 0.12500088e+03
- 2 23 4 5 0.42593418e+02 -0.40415621e+02 -0.11371440e+02 0.18206486e+02
- 2 23 6 9 0.11942201e+03 -0.23131539e+02 0.54236710e+01 0.90710733e+02
- 1 11 0 0 0.43517941e+02 -0.40120292e+02 -0.13019250e+02 0.51000000e-03
- 1 -11 0 0 -0.92452279e+00 -0.29532899e+00 0.16478095e+01 0.51000000e-03
- 1 13 0 0 0.15317809e+02 0.71398208e+01 0.35501167e+02 0.10566000e+00
- 1 22 0 0 0.42330204e-04 0.13241254e-04 0.36156530e-04 0.00000000e+00
- 1 -13 0 0 0.47411273e+02 -0.13368543e+02 -0.14195180e+02 0.10566000e+00
- 1 22 0 0 0.56692881e+02 -0.16902831e+02 -0.15882353e+02 0.00000000e+00
- 2 1 49 49 -0.40972218e+01 0.50111152e+00 0.26605424e+02 0.33000000e+00
- 2 21 49 49 -0.86146559e+00 -0.60597957e+00 0.89652949e+01 0.00000000e+00
- 2 21 49 49 -0.29480645e+01 0.98491036e+00 0.13343217e+02 0.00000000e+00
- 2 21 49 49 -0.13912616e+02 0.31032207e+01 0.83972757e+02 0.00000000e+00
- 2 21 49 49 -0.24676962e+01 0.16060442e+01 0.11245241e+02 0.00000000e+00
- 2 21 49 49 -0.27760929e+02 0.10245370e+02 0.10982901e+03 0.00000000e+00
- 2 21 49 49 -0.27522124e+02 0.89225340e+01 0.10391074e+03 0.00000000e+00
- 2 21 49 49 -0.76356623e+01 0.41178186e+01 0.31883372e+02 0.00000000e+00
- 2 21 49 49 -0.44874198e+01 0.21365871e+01 0.18517665e+02 0.00000000e+00
- 2 21 49 49 -0.19659128e+01 0.17069432e+01 0.11132359e+02 0.00000000e+00
- 2 21 49 49 -0.11690737e+01 0.68404267e+00 0.47459486e+00 0.00000000e+00
- 2 21 49 49 -0.26548780e+01 0.40532042e+01 0.39385344e+01 0.00000000e+00
- 2 21 49 49 -0.22764516e+01 -0.39889736e+01 0.38627711e+02 0.00000000e+00
- 2 2101 49 49 0.45741639e+00 0.18938741e+01 0.64195450e+04 0.57933000e+00
- 2 2 77 77 -0.16910821e+02 0.26437826e+01 -0.81508110e+02 0.33000000e+00
- 2 21 77 77 -0.15183933e+02 0.16535811e+01 -0.82615324e+02 0.00000000e+00
- 2 21 77 77 -0.19156771e+01 0.25303744e+01 -0.33788633e+02 0.00000000e+00
- 2 21 77 77 -0.15921648e+01 0.21866264e+00 -0.11705453e+02 0.00000000e+00
- 2 21 77 77 -0.10313378e+01 0.45267941e-01 -0.16240558e+02 0.00000000e+00
- 2 21 77 77 -0.31347663e+01 0.14957659e+01 -0.30730508e+02 0.00000000e+00
- 2 21 77 77 -0.74919151e+00 0.10112369e+00 -0.15775823e+02 0.00000000e+00
- 2 21 77 77 -0.59328310e+00 0.12878444e+00 -0.43501397e+01 0.00000000e+00
- 2 21 77 77 -0.15992509e+01 0.20831249e+01 -0.18063648e+02 0.00000000e+00
- 2 21 77 77 -0.10849680e+01 0.12845966e+01 -0.11616051e+02 0.00000000e+00
- 2 21 77 77 -0.29406443e+01 0.29622953e+01 -0.29477955e+02 0.00000000e+00
- 2 21 77 77 -0.19633907e+02 0.14387026e+02 -0.18371477e+03 0.00000000e+00
- 2 21 77 77 0.66491596e+00 -0.93239430e-01 -0.14451732e+00 0.00000000e+00
- 2 21 77 77 0.19284663e+01 -0.92444377e+00 0.39738617e+00 0.00000000e+00
- 2 21 77 77 -0.23762669e+01 -0.64990589e+00 -0.29799043e+02 0.00000000e+00
- 2 21 77 77 -0.17176039e+01 -0.30171427e+01 -0.11174522e+02 0.00000000e+00
- 2 21 77 77 -0.54950371e+00 -0.92816377e+00 -0.25111922e+01 0.00000000e+00
- 2 21 77 77 0.22764516e+01 0.39889736e+01 -0.70759874e+01 0.00000000e+00
- 2 21 77 77 0.54950371e+00 0.92816377e+00 -0.12532104e+02 0.00000000e+00
- 2 21 77 77 0.17176039e+01 0.30171427e+01 -0.66368494e+02 0.00000000e+00
- 2 21 77 77 0.23762669e+01 0.64990589e+00 -0.24050484e+03 0.00000000e+00
- 2 21 77 77 0.18885324e+00 0.26041174e+00 -0.89536942e+00 0.00000000e+00
- 2 21 77 77 -0.20666990e+01 -0.34061164e+01 -0.38532615e+02 0.00000000e+00
- 2 21 77 77 -0.64226548e-01 -0.12946589e+01 -0.84907168e+01 0.00000000e+00
- 2 2203 77 77 0.72885730e+00 0.12114043e+00 -0.59388246e+04 0.77133000e+00
- 2 92 50 76 -0.99302098e+02 0.35360708e+02 0.68819909e+04 0.45518498e+03
- 1 -211 0 0 -0.48866771e+00 -0.42231986e+00 0.44622845e+01 0.13957000e+00
- 2 2114 137 138 -0.10864359e+02 0.20199658e+01 0.62449272e+02 0.12176312e+01
- 2 213 139 140 -0.20734664e+01 0.60212502e+00 0.16793664e+02 0.79256818e+00
- 1 -2212 0 0 -0.52266894e+01 0.10821501e+01 0.27242223e+02 0.93827000e+00
- 2 3222 141 142 -0.49380881e+01 0.24898261e+01 0.25533813e+02 0.11893700e+01
- 2 -3322 143 144 -0.72124149e+01 0.14479073e+01 0.31754154e+02 0.13149000e+01
- 2 -313 145 146 -0.12571456e+02 0.48103053e+01 0.50674222e+02 0.93558724e+00
- 2 223 147 149 -0.65091657e+01 0.24052713e+01 0.25599783e+02 0.77851846e+00
- 2 113 150 151 -0.90057403e+01 0.46766161e+01 0.35886619e+02 0.74047314e+00
- 2 311 152 152 -0.26810805e+02 0.92401792e+01 0.10327346e+03 0.49767000e+00
- 2 -311 153 153 -0.65566824e+01 0.33898107e+01 0.27898825e+02 0.49767000e+00
- 2 311 154 154 -0.26395384e+00 0.85793623e-01 0.16123479e+01 0.49767000e+00
- 1 -321 0 0 -0.40478031e+00 0.38952157e+00 0.84884287e+00 0.49360000e+00
- 1 2212 0 0 -0.52475619e+00 0.34406008e+00 0.26531221e+01 0.93827000e+00
- 1 -2112 0 0 -0.51482798e+00 0.10885528e+01 0.18181811e+01 0.93957000e+00
- 2 311 155 155 -0.14856192e+01 0.14025827e+01 0.31412110e+01 0.49767000e+00
- 2 -323 156 157 -0.15988052e+01 0.16902898e+01 0.16305053e+01 0.88850157e+00
- 1 211 0 0 -0.23328268e-01 -0.69948928e-01 0.34364006e+00 0.13957000e+00
- 2 223 158 159 -0.10792839e+00 0.33421179e-01 0.39266395e+01 0.77740780e+00
- 2 223 160 162 -0.78561686e+00 -0.70530320e-01 0.37120930e+01 0.78618368e+00
- 2 113 163 164 -0.11126319e+00 -0.61064731e+00 0.42258640e+01 0.79280192e+00
- 2 313 165 166 -0.71034691e+00 -0.79191473e+00 0.18078550e+02 0.89163615e+00
- 2 333 167 168 -0.99541054e+00 -0.14678355e+01 0.16108176e+02 0.10174756e+01
- 1 -321 0 0 0.45027550e+00 -0.29699934e+00 0.14877759e+03 0.49360000e+00
- 1 211 0 0 -0.44959650e+00 0.13097408e+00 0.20458601e+03 0.13957000e+00
- 2 111 169 170 -0.58509602e-01 0.51258732e+00 0.75980634e+03 0.13498000e+00
- 1 2112 0 0 0.53990356e+00 0.12489635e+01 0.52991535e+04 0.93957000e+00
- 2 92 78 136 -0.62713326e+02 0.28186452e+02 -0.68760436e+04 0.39659343e+03
- 2 323 171 172 -0.82415815e+01 0.10479776e+01 -0.42533134e+02 0.84591035e+00
- 2 -323 173 174 -0.11593340e+02 0.18375235e+01 -0.60169440e+02 0.88079595e+00
- 2 213 175 176 -0.16563712e+01 0.39471890e+00 -0.83594964e+01 0.78507960e+00
- 2 111 177 178 -0.25538348e+00 0.21163637e+00 -0.14102335e+01 0.13498000e+00
- 2 223 179 181 -0.41575711e+01 0.39757821e+00 -0.24035818e+02 0.78056041e+00
- 2 -213 182 183 -0.24586494e+01 0.56325256e+00 -0.13585433e+02 0.59058051e+00
- 1 211 0 0 -0.16700095e+01 0.21320922e-01 -0.71976219e+01 0.13957000e+00
- 2 -213 184 185 -0.48275583e+01 0.11141268e+01 -0.39214248e+02 0.85083327e+00
- 2 3212 186 187 -0.16030624e+01 0.12902226e+01 -0.23758881e+02 0.11925500e+01
- 2 -3112 188 189 -0.20130238e+01 0.14463445e+01 -0.26328148e+02 0.11974400e+01
- 2 221 190 192 -0.19081477e+01 0.74720862e+00 -0.23577905e+02 0.54745000e+00
- 2 223 193 195 -0.81833623e+01 0.68017712e+01 -0.76130912e+02 0.78514609e+00
- 1 -211 0 0 -0.14705671e+01 0.65984768e+00 -0.19923658e+02 0.13957000e+00
- 2 213 196 197 -0.31260857e+01 0.27828087e+01 -0.30543774e+02 0.69161559e+00
- 2 -213 198 199 -0.27821197e+01 0.24244641e+01 -0.25063477e+02 0.81732810e+00
- 2 2214 200 201 -0.25095100e+01 0.20836810e+01 -0.24880253e+02 0.12798970e+01
- 2 213 202 203 -0.49909880e+01 0.33236966e+01 -0.41364263e+02 0.79092137e+00
- 2 -3224 204 205 -0.16291643e+01 0.11945915e+01 -0.22100101e+02 0.14150217e+01
- 2 -323 206 207 -0.98575538e-01 0.67033029e+00 -0.25115488e+01 0.91204778e+00
- 2 221 208 210 -0.55265607e+00 0.35590638e+00 -0.35997297e+01 0.54745000e+00
- 2 223 211 213 -0.18592174e+00 0.12277461e-02 -0.20173824e+01 0.78226821e+00
- 1 321 0 0 0.13079084e+01 -0.29478092e+00 -0.48424137e+00 0.49360000e+00
- 2 -311 214 214 -0.34303267e+00 -0.34667601e+00 -0.72282622e+00 0.49767000e+00
- 1 -211 0 0 0.14403848e+00 0.28737142e+00 -0.40364483e+00 0.13957000e+00
- 2 223 215 217 0.35506866e+00 -0.11933516e+00 -0.16754195e+01 0.79554836e+00
- 2 113 218 219 0.41131043e+00 -0.67288112e+00 -0.58551129e+00 0.83939312e+00
- 1 211 0 0 -0.56319134e+00 0.57261097e+00 -0.26220704e+01 0.13957000e+00
- 2 -213 220 221 0.10545918e+00 -0.87402520e+00 -0.72932976e+01 0.77621544e+00
- 2 113 222 223 -0.36788939e+00 -0.30882214e+00 -0.26073584e+01 0.73903873e+00
- 1 211 0 0 -0.12562028e+00 0.33931728e-02 -0.38787934e+00 0.13957000e+00
- 2 311 224 224 -0.89218326e+00 -0.15582173e+01 -0.63527671e+01 0.49767000e+00
- 2 -313 225 226 -0.17579506e+01 0.38741916e-02 -0.12904146e+02 0.88584122e+00
- 2 311 227 227 -0.23791127e+00 -0.84449766e-02 -0.22289583e+01 0.49767000e+00
- 2 -323 228 229 0.67040320e+00 -0.79287011e+00 -0.44686653e+01 0.86145759e+00
- 2 323 230 231 0.57572041e-01 0.76009396e+00 -0.18313153e+01 0.92356410e+00
- 2 -323 232 233 0.87042076e-01 0.13744021e+00 -0.21008335e+01 0.99129010e+00
- 2 2214 234 235 0.56027781e-01 0.97329655e-01 -0.36612402e+01 0.11296371e+01
- 2 223 236 238 0.71613479e+00 0.72731004e+00 -0.64543012e+01 0.78696577e+00
- 2 -2214 239 240 0.12486572e+00 0.14433511e+01 -0.47117798e+01 0.12522763e+01
- 2 221 241 242 0.95319652e+00 0.19080999e+00 -0.94784376e+01 0.54745000e+00
- 2 213 243 244 -0.46504010e+00 0.56052610e+00 -0.10823749e+02 0.69212468e+00
- 2 113 245 246 0.50324369e+00 0.95687377e+00 -0.13720359e+02 0.65061017e+00
- 2 -213 247 248 0.58525196e+00 -0.73340437e+00 -0.19007319e+02 0.88464688e+00
- 2 223 249 251 0.61541277e+00 0.11945749e+01 -0.30354729e+02 0.78793675e+00
- 2 213 252 253 0.72890921e+00 0.13316616e+01 -0.39248954e+02 0.72707706e+00
- 2 311 254 254 0.52038228e+00 0.19506907e+00 -0.40620647e+02 0.49767000e+00
- 2 221 255 256 0.88213915e-01 0.31687843e-01 -0.33287333e+02 0.54745000e+00
- 2 -313 257 258 0.97913500e+00 0.37262464e+00 -0.91015939e+02 0.88677623e+00
- 2 -213 259 260 -0.94736144e+00 -0.23098195e+01 -0.19884945e+02 0.81186828e+00
- 1 2212 0 0 0.30827302e+00 -0.79238827e-01 -0.37319320e+02 0.93827000e+00
- 1 -2112 0 0 -0.61112948e+00 -0.96215620e+00 -0.12839103e+02 0.93957000e+00
- 2 311 261 261 0.57264023e-01 -0.49422653e-01 -0.10928688e+02 0.49767000e+00
- 2 3122 262 263 -0.25648251e+00 -0.63957188e+00 -0.30983237e+02 0.11156800e+01
- 1 -2112 0 0 -0.19083460e+00 -0.26439206e+00 -0.22002195e+02 0.93957000e+00
- 2 313 264 265 0.42013821e+00 -0.44130538e+00 -0.37920664e+02 0.88273846e+00
- 1 -321 0 0 -0.10036218e+01 0.42932158e+00 -0.32161927e+03 0.49360000e+00
- 2 223 266 268 0.63229751e+00 -0.47393037e+00 -0.11815438e+04 0.77481703e+00
- 1 2212 0 0 0.18791274e+00 0.21071061e+00 -0.87181431e+03 0.93827000e+00
- 2 213 269 270 0.34711018e+00 0.23887610e+00 -0.34618289e+04 0.75610938e+00
- 1 2212 0 0 -0.96256582e+01 0.16339454e+01 0.54540233e+02 0.93827000e+00
- 1 -211 0 0 -0.12387007e+01 0.38602032e+00 0.79090383e+01 0.13957000e+00
- 1 211 0 0 -0.99507617e+00 -0.45060194e-01 0.61239839e+01 0.13957000e+00
- 2 111 271 272 -0.10783902e+01 0.64718522e+00 0.10669680e+02 0.13498000e+00
- 1 2112 0 0 -0.32661965e+01 0.17445184e+01 0.17435974e+02 0.93957000e+00
- 1 211 0 0 -0.16718915e+01 0.74530771e+00 0.80978393e+01 0.13957000e+00
- 2 -3122 273 274 -0.55839289e+01 0.11326265e+01 0.24298049e+02 0.11156800e+01
- 2 111 275 276 -0.16284859e+01 0.31528077e+00 0.74561059e+01 0.13498000e+00
- 1 -321 0 0 -0.11275123e+02 0.41411555e+01 0.44681076e+02 0.49360000e+00
- 1 211 0 0 -0.12963334e+01 0.66914982e+00 0.59931453e+01 0.13957000e+00
- 1 -211 0 0 -0.23736531e+01 0.83689031e+00 0.85042933e+01 0.13957000e+00
- 1 211 0 0 -0.37074622e+01 0.13933435e+01 0.14976517e+02 0.13957000e+00
- 2 111 277 278 -0.42805041e+00 0.17503749e+00 0.21189725e+01 0.13498000e+00
- 1 211 0 0 -0.70992281e+01 0.35658029e+01 0.27122434e+02 0.13957000e+00
- 1 -211 0 0 -0.19065122e+01 0.11108132e+01 0.87641850e+01 0.13957000e+00
- 1 130 0 0 -0.26810805e+02 0.92401792e+01 0.10327346e+03 0.49767000e+00
- 2 310 279 280 -0.65566824e+01 0.33898107e+01 0.27898825e+02 0.49767000e+00
- 2 310 281 282 -0.26395384e+00 0.85793623e-01 0.16123479e+01 0.49767000e+00
- 1 130 0 0 -0.14856192e+01 0.14025827e+01 0.31412110e+01 0.49767000e+00
- 1 -321 0 0 -0.51504891e+00 0.80704082e+00 0.83229126e+00 0.49360000e+00
- 2 111 283 284 -0.10837563e+01 0.88324895e+00 0.79821401e+00 0.13498000e+00
- 1 22 0 0 -0.25328541e+00 -0.21550447e+00 0.87183722e+00 0.00000000e+00
- 2 111 285 286 0.14535702e+00 0.24892565e+00 0.30548022e+01 0.13498000e+00
- 1 211 0 0 -0.43254767e+00 0.16409183e+00 0.19811584e+01 0.13957000e+00
- 1 -211 0 0 -0.20011973e+00 -0.10474021e+00 0.37799453e+00 0.13957000e+00
- 2 111 287 288 -0.15294946e+00 -0.12988194e+00 0.13529400e+01 0.13498000e+00
- 1 211 0 0 -0.30182032e-01 -0.33034137e+00 0.37590268e+01 0.13957000e+00
- 1 -211 0 0 -0.81081160e-01 -0.28030595e+00 0.46683720e+00 0.13957000e+00
- 1 321 0 0 -0.36590370e+00 -0.15256513e+00 0.96992656e+01 0.49360000e+00
- 1 -211 0 0 -0.34444322e+00 -0.63934960e+00 0.83792844e+01 0.13957000e+00
- 1 321 0 0 -0.59430173e+00 -0.66656208e+00 0.83307655e+01 0.49360000e+00
- 1 -321 0 0 -0.40110881e+00 -0.80127343e+00 0.77774101e+01 0.49360000e+00
- 1 22 0 0 -0.80854686e-01 0.25562537e+00 0.44943746e+03 0.00000000e+00
- 1 22 0 0 0.22345084e-01 0.25696195e+00 0.31036888e+03 0.00000000e+00
- 1 321 0 0 -0.65242715e+01 0.67176932e+00 -0.32628499e+02 0.49360000e+00
- 2 111 289 290 -0.17173099e+01 0.37620828e+00 -0.99046352e+01 0.13498000e+00
- 1 -321 0 0 -0.10971587e+02 0.18110756e+01 -0.57225640e+02 0.49360000e+00
- 2 111 291 292 -0.62175303e+00 0.26447875e-01 -0.29438002e+01 0.13498000e+00
- 1 211 0 0 -0.10731017e+01 -0.51303823e-01 -0.58311679e+01 0.13957000e+00
- 2 111 293 294 -0.58326948e+00 0.44602273e+00 -0.25283285e+01 0.13498000e+00
- 1 22 0 0 0.45633192e-02 0.38347677e-01 -0.26928605e+00 0.00000000e+00
- 1 22 0 0 -0.25994680e+00 0.17328869e+00 -0.11409475e+01 0.00000000e+00
- 1 -211 0 0 -0.54004282e+00 0.17474949e+00 -0.27299961e+01 0.13957000e+00
- 1 211 0 0 -0.29520476e+01 0.28871007e+00 -0.17482456e+02 0.13957000e+00
- 2 111 295 296 -0.66548066e+00 -0.65881352e-01 -0.38233661e+01 0.13498000e+00
- 1 -211 0 0 -0.99841880e+00 0.17224267e+00 -0.41910952e+01 0.13957000e+00
- 2 111 297 298 -0.14602306e+01 0.39100989e+00 -0.93943375e+01 0.13498000e+00
- 1 -211 0 0 -0.22019745e+01 0.12559391e+00 -0.16150904e+02 0.13957000e+00
- 2 111 299 300 -0.26255838e+01 0.98853287e+00 -0.23063344e+02 0.13498000e+00
- 2 3122 301 302 -0.14009164e+01 0.11537018e+01 -0.21712519e+02 0.11156800e+01
- 1 22 0 0 -0.20214596e+00 0.13652077e+00 -0.20463624e+01 0.00000000e+00
- 1 -2112 0 0 -0.15398160e+01 0.10514773e+01 -0.21776799e+02 0.93957000e+00
- 1 211 0 0 -0.47320776e+00 0.39486717e+00 -0.45513499e+01 0.13957000e+00
- 1 -211 0 0 -0.99934265e+00 0.32175997e+00 -0.12892398e+02 0.13957000e+00
- 1 211 0 0 -0.34555482e+00 0.11081322e+00 -0.34562633e+01 0.13957000e+00
- 2 111 303 304 -0.56325028e+00 0.31463543e+00 -0.72292430e+01 0.13498000e+00
- 1 211 0 0 -0.36718701e+01 0.33121216e+01 -0.36002848e+02 0.13957000e+00
- 1 -211 0 0 -0.29205070e+01 0.22418294e+01 -0.24698289e+02 0.13957000e+00
- 2 111 305 306 -0.15909852e+01 0.12478202e+01 -0.15429776e+02 0.13498000e+00
- 1 211 0 0 -0.21094963e+01 0.22403918e+01 -0.21816104e+02 0.13957000e+00
- 2 111 307 308 -0.10165895e+01 0.54241689e+00 -0.87276697e+01 0.13498000e+00
- 1 -211 0 0 -0.92497735e+00 0.12929694e+01 -0.11242886e+02 0.13957000e+00
- 2 111 309 310 -0.18571423e+01 0.11314947e+01 -0.13820590e+02 0.13498000e+00
- 1 2212 0 0 -0.16737629e+01 0.17158114e+01 -0.18980740e+02 0.93827000e+00
- 2 111 311 312 -0.83574707e+00 0.36786959e+00 -0.58995125e+01 0.13498000e+00
- 1 211 0 0 -0.34468547e+01 0.18743535e+01 -0.27041554e+02 0.13957000e+00
- 2 111 313 314 -0.15441333e+01 0.14493431e+01 -0.14322709e+02 0.13498000e+00
- 2 -3122 315 316 -0.15029534e+01 0.81374578e+00 -0.18095718e+02 0.11156800e+01
- 1 -211 0 0 -0.12621085e+00 0.38084571e+00 -0.40043830e+01 0.13957000e+00
- 1 -321 0 0 0.84795809e-01 0.85358668e-01 -0.11598312e+01 0.49360000e+00
- 2 111 317 318 -0.18337135e+00 0.58497162e+00 -0.13517176e+01 0.13498000e+00
- 2 111 319 320 -0.28991810e+00 0.12705705e+00 -0.15679088e+01 0.13498000e+00
- 2 111 321 322 -0.32552846e-01 0.19409386e+00 -0.10446976e+01 0.13498000e+00
- 2 111 323 324 -0.23018512e+00 0.34755468e-01 -0.98712326e+00 0.13498000e+00
- 1 -211 0 0 -0.23171297e+00 -0.23097929e+00 -0.81144392e+00 0.13957000e+00
- 1 211 0 0 -0.16784980e-01 0.21155681e-01 -0.18883946e+00 0.13957000e+00
- 2 111 325 326 0.62576211e-01 0.21105135e+00 -0.10170990e+01 0.13498000e+00
- 2 310 327 328 -0.34303267e+00 -0.34667601e+00 -0.72282622e+00 0.49767000e+00
- 1 211 0 0 -0.54795620e-01 -0.35879135e-01 -0.48413278e+00 0.13957000e+00
- 1 -211 0 0 0.42150559e+00 -0.51243299e-01 -0.11574546e+01 0.13957000e+00
- 2 111 329 330 -0.11641306e-01 -0.32212724e-01 -0.33832119e-01 0.13498000e+00
- 1 211 0 0 -0.15371153e+00 -0.21214011e+00 -0.44751959e+00 0.13957000e+00
- 1 -211 0 0 0.56502196e+00 -0.46074101e+00 -0.13799170e+00 0.13957000e+00
- 1 -211 0 0 -0.19395239e+00 -0.72897029e+00 -0.38878247e+01 0.13957000e+00
- 2 111 331 332 0.29941157e+00 -0.14505491e+00 -0.34054729e+01 0.13498000e+00
- 1 -211 0 0 -0.37389594e+00 0.49084753e-01 -0.19489732e+01 0.13957000e+00
- 1 211 0 0 0.60065546e-02 -0.35790689e+00 -0.65838518e+00 0.13957000e+00
- 1 130 0 0 -0.89218326e+00 -0.15582173e+01 -0.63527671e+01 0.49767000e+00
- 1 -321 0 0 -0.15880889e+01 -0.18765078e+00 -0.11246109e+02 0.49360000e+00
- 1 211 0 0 -0.16986174e+00 0.19152497e+00 -0.16580368e+01 0.13957000e+00
- 2 310 333 334 -0.23791127e+00 -0.84449766e-02 -0.22289583e+01 0.49767000e+00
- 1 -321 0 0 0.73256952e+00 -0.50219505e+00 -0.31732700e+01 0.49360000e+00
- 2 111 335 336 -0.62166324e-01 -0.29067506e+00 -0.12953952e+01 0.13498000e+00
- 2 311 337 337 0.31443455e+00 0.41911279e+00 -0.13399206e+01 0.49767000e+00
- 1 211 0 0 -0.25686251e+00 0.34098117e+00 -0.49139471e+00 0.13957000e+00
- 2 -311 338 338 0.37373294e+00 0.12927005e+00 -0.17091277e+01 0.49767000e+00
- 1 -211 0 0 -0.28669086e+00 0.81701593e-02 -0.39170584e+00 0.13957000e+00
- 1 2212 0 0 -0.47695081e-03 0.19399250e+00 -0.31672647e+01 0.93827000e+00
- 2 111 339 340 0.56504732e-01 -0.96662850e-01 -0.49397550e+00 0.13498000e+00
- 1 -211 0 0 0.33469869e+00 0.29822789e+00 -0.27511498e+01 0.13957000e+00
- 1 211 0 0 -0.70209057e-01 0.25415071e-01 -0.12667971e+01 0.13957000e+00
- 2 111 341 342 0.45164516e+00 0.40366708e+00 -0.24363543e+01 0.13498000e+00
- 1 -2212 0 0 -0.47787956e-03 0.11748416e+01 -0.31466357e+01 0.93827000e+00
- 2 111 343 344 0.12534360e+00 0.26850942e+00 -0.15651441e+01 0.13498000e+00
- 1 22 0 0 0.19003733e+00 -0.16901961e+00 -0.29917171e+01 0.00000000e+00
- 1 22 0 0 0.76315918e+00 0.35982960e+00 -0.64867206e+01 0.00000000e+00
- 1 211 0 0 -0.59677672e+00 0.45816301e+00 -0.93105588e+01 0.13957000e+00
- 2 111 345 346 0.13173662e+00 0.10236309e+00 -0.15131905e+01 0.13498000e+00
- 1 -211 0 0 0.18187893e+00 0.64245421e+00 -0.10670516e+02 0.13957000e+00
- 1 211 0 0 0.32136476e+00 0.31441956e+00 -0.30498429e+01 0.13957000e+00
- 1 -211 0 0 0.51875006e+00 -0.43700909e-01 -0.58512887e+01 0.13957000e+00
- 2 111 347 348 0.66501900e-01 -0.68970346e+00 -0.13156030e+02 0.13498000e+00
- 1 211 0 0 -0.10149913e+00 0.30981009e+00 -0.60584712e+01 0.13957000e+00
- 1 -211 0 0 0.45197596e+00 0.47844089e+00 -0.16169561e+02 0.13957000e+00
- 2 111 349 350 0.26493594e+00 0.40632393e+00 -0.81266972e+01 0.13498000e+00
- 1 211 0 0 0.71365336e+00 0.62620637e+00 -0.23951438e+02 0.13957000e+00
- 2 111 351 352 0.15255844e-01 0.70545525e+00 -0.15297516e+02 0.13498000e+00
- 2 310 353 354 0.52038228e+00 0.19506907e+00 -0.40620647e+02 0.49767000e+00
- 1 22 0 0 -0.13174340e+00 -0.19772166e+00 -0.14182937e+02 0.00000000e+00
- 1 22 0 0 0.21995731e+00 0.22940950e+00 -0.19104396e+02 0.00000000e+00
- 1 -321 0 0 0.72202782e+00 0.12394643e+00 -0.77076289e+02 0.49360000e+00
- 1 211 0 0 0.25710718e+00 0.24867821e+00 -0.13939651e+02 0.13957000e+00
- 1 -211 0 0 -0.96066553e+00 -0.22016847e+01 -0.19230321e+02 0.13957000e+00
- 2 111 355 356 0.13304092e-01 -0.10813480e+00 -0.65462434e+00 0.13498000e+00
- 2 310 357 358 0.57264023e-01 -0.49422653e-01 -0.10928688e+02 0.49767000e+00
- 1 2212 0 0 -0.31480651e+00 -0.51831500e+00 -0.26172506e+02 0.93827000e+00
- 1 -211 0 0 0.58324003e-01 -0.12125688e+00 -0.48107318e+01 0.13957000e+00
- 2 311 359 359 0.41184860e+00 -0.52190385e+00 -0.35670569e+02 0.49767000e+00
- 2 111 360 361 0.82896078e-02 0.80598464e-01 -0.22500958e+01 0.13498000e+00
- 1 -211 0 0 0.13710895e+00 0.84893466e-01 -0.45793414e+03 0.13957000e+00
- 1 211 0 0 0.15135893e+00 -0.16150146e+00 -0.16801696e+03 0.13957000e+00
- 2 111 362 363 0.34382963e+00 -0.39732238e+00 -0.55559265e+03 0.13498000e+00
- 1 211 0 0 -0.60261413e-01 -0.18151914e+00 -0.14233461e+04 0.13957000e+00
- 2 111 364 365 0.40737159e+00 0.42039524e+00 -0.20384828e+04 0.13498000e+00
- 1 22 0 0 -0.61036796e+00 0.29233251e+00 0.55201579e+01 0.00000000e+00
- 1 22 0 0 -0.46802224e+00 0.35485270e+00 0.51495218e+01 0.00000000e+00
- 1 -2212 0 0 -0.46325664e+01 0.84068784e+00 0.20159558e+02 0.93827000e+00
- 1 211 0 0 -0.95136256e+00 0.29193866e+00 0.41384902e+01 0.13957000e+00
- 1 22 0 0 -0.11032010e+01 0.21691293e+00 0.47558766e+01 0.00000000e+00
- 1 22 0 0 -0.52528490e+00 0.98367844e-01 0.27002293e+01 0.00000000e+00
- 1 22 0 0 0.16912073e-02 -0.82300973e-02 0.11625615e+00 0.00000000e+00
- 1 22 0 0 -0.42974162e+00 0.18326759e+00 0.20027163e+01 0.00000000e+00
- 2 111 366 367 -0.28156717e+01 0.16733647e+01 0.12076059e+02 0.13498000e+00
- 2 111 368 369 -0.37410107e+01 0.17164461e+01 0.15822767e+02 0.13498000e+00
- 2 111 370 371 -0.11498497e+00 -0.11737532e+00 0.30472027e+00 0.13498000e+00
- 2 111 372 373 -0.14896887e+00 0.20316895e+00 0.13076276e+01 0.13498000e+00
- 1 22 0 0 -0.78423570e+00 0.65487523e+00 0.64909418e+00 0.00000000e+00
- 1 22 0 0 -0.29952061e+00 0.22837372e+00 0.14911983e+00 0.00000000e+00
- 1 22 0 0 0.65681543e-01 0.21264497e+00 0.24720655e+01 0.00000000e+00
- 1 22 0 0 0.79675473e-01 0.36280676e-01 0.58273677e+00 0.00000000e+00
- 1 22 0 0 -0.81119777e-01 -0.43361254e-01 0.26227987e+00 0.00000000e+00
- 1 22 0 0 -0.71829680e-01 -0.86520685e-01 0.10906601e+01 0.00000000e+00
- 1 22 0 0 -0.53461032e+00 0.54486898e-01 -0.29583434e+01 0.00000000e+00
- 1 22 0 0 -0.11826996e+01 0.32172138e+00 -0.69462918e+01 0.00000000e+00
- 1 22 0 0 -0.58149627e+00 0.52880961e-02 -0.25499234e+01 0.00000000e+00
- 1 22 0 0 -0.40256755e-01 0.21159779e-01 -0.39387680e+00 0.00000000e+00
- 1 22 0 0 -0.56207737e+00 0.38503728e+00 -0.23394991e+01 0.00000000e+00
- 1 22 0 0 -0.21192104e-01 0.60985442e-01 -0.18882940e+00 0.00000000e+00
- 1 22 0 0 -0.65617229e+00 -0.44531389e-01 -0.36429093e+01 0.00000000e+00
- 1 22 0 0 -0.93083723e-02 -0.21349963e-01 -0.18045683e+00 0.00000000e+00
- 1 22 0 0 -0.64763483e+00 0.11286910e+00 -0.42776505e+01 0.00000000e+00
- 1 22 0 0 -0.81259575e+00 0.27814079e+00 -0.51166870e+01 0.00000000e+00
- 1 22 0 0 -0.32222133e+00 0.88551075e-01 -0.24981277e+01 0.00000000e+00
- 1 22 0 0 -0.23033625e+01 0.89998179e+00 -0.20565216e+02 0.00000000e+00
- 1 2112 0 0 -0.12942000e+01 0.11044365e+01 -0.20337364e+02 0.93957000e+00
- 2 111 374 375 -0.10671641e+00 0.49265312e-01 -0.13751548e+01 0.13498000e+00
- 1 22 0 0 -0.17475455e+00 0.17223197e+00 -0.27044871e+01 0.00000000e+00
- 1 22 0 0 -0.38849573e+00 0.14240346e+00 -0.45247560e+01 0.00000000e+00
- 1 22 0 0 -0.11026274e+01 0.87898535e+00 -0.11215480e+02 0.00000000e+00
- 1 22 0 0 -0.48835782e+00 0.36883483e+00 -0.42142951e+01 0.00000000e+00
- 1 22 0 0 -0.64660223e+00 0.29173234e+00 -0.49990840e+01 0.00000000e+00
- 1 22 0 0 -0.36998722e+00 0.25068455e+00 -0.37285856e+01 0.00000000e+00
- 1 22 0 0 -0.12818563e+01 0.70975396e+00 -0.91816827e+01 0.00000000e+00
- 1 22 0 0 -0.57528599e+00 0.42174073e+00 -0.46389078e+01 0.00000000e+00
- 1 22 0 0 -0.65047414e+00 0.22462712e+00 -0.45001915e+01 0.00000000e+00
- 1 22 0 0 -0.18527293e+00 0.14324246e+00 -0.13993210e+01 0.00000000e+00
- 1 22 0 0 -0.12345122e+01 0.12289199e+01 -0.11806327e+02 0.00000000e+00
- 1 22 0 0 -0.30962106e+00 0.22042318e+00 -0.25163815e+01 0.00000000e+00
- 1 -2212 0 0 -0.11434886e+01 0.57562022e+00 -0.14257288e+02 0.93827000e+00
- 1 211 0 0 -0.35946482e+00 0.23812556e+00 -0.38384299e+01 0.13957000e+00
- 1 22 0 0 -0.77113970e-02 0.11324852e+00 -0.37145181e+00 0.00000000e+00
- 1 22 0 0 -0.17565995e+00 0.47172311e+00 -0.98026580e+00 0.00000000e+00
- 1 22 0 0 -0.87932661e-01 0.64200003e-01 -0.84555626e+00 0.00000000e+00
- 1 22 0 0 -0.20198544e+00 0.62857050e-01 -0.72235255e+00 0.00000000e+00
- 1 22 0 0 -0.19800740e-01 0.17645615e+00 -0.58400493e+00 0.00000000e+00
- 1 22 0 0 -0.12752105e-01 0.17637706e-01 -0.46069266e+00 0.00000000e+00
- 1 22 0 0 -0.24371693e+00 0.15338476e-01 -0.86820449e+00 0.00000000e+00
- 1 22 0 0 0.13531808e-01 0.19416992e-01 -0.11891877e+00 0.00000000e+00
- 1 22 0 0 -0.54143712e-02 0.14060406e+00 -0.38867292e+00 0.00000000e+00
- 1 22 0 0 0.67990582e-01 0.70447297e-01 -0.62842608e+00 0.00000000e+00
- 2 111 376 377 0.53202688e-01 0.88640648e-02 -0.18535004e+00 0.13498000e+00
- 2 111 378 379 -0.39623536e+00 -0.35554007e+00 -0.53747618e+00 0.13498000e+00
- 1 22 0 0 0.12101102e-01 0.65455330e-02 0.47873737e-01 0.00000000e+00
- 1 22 0 0 -0.23742408e-01 -0.38758257e-01 -0.81705856e-01 0.00000000e+00
- 1 22 0 0 0.13018306e+00 -0.82704846e-01 -0.96786715e+00 0.00000000e+00
- 1 22 0 0 0.16922851e+00 -0.62350060e-01 -0.24376057e+01 0.00000000e+00
- 2 111 380 381 -0.30672424e+00 -0.66541458e-01 -0.10036169e+01 0.13498000e+00
- 2 111 382 383 0.68812973e-01 0.58096481e-01 -0.12253414e+01 0.13498000e+00
- 1 22 0 0 -0.59745346e-01 -0.29428883e+00 -0.10942502e+01 0.00000000e+00
- 1 22 0 0 -0.24209776e-02 0.36137636e-02 -0.20114504e+00 0.00000000e+00
- 1 130 0 0 0.31443455e+00 0.41911279e+00 -0.13399206e+01 0.49767000e+00
- 2 310 384 385 0.37373294e+00 0.12927005e+00 -0.17091277e+01 0.49767000e+00
- 1 22 0 0 0.67346376e-01 -0.83157692e-01 -0.49538183e+00 0.00000000e+00
- 1 22 0 0 -0.10841644e-01 -0.13505158e-01 0.14063354e-02 0.00000000e+00
- 1 22 0 0 0.16083218e+00 0.17032270e+00 -0.69794193e+00 0.00000000e+00
- 1 22 0 0 0.29081297e+00 0.23334437e+00 -0.17384124e+01 0.00000000e+00
- 1 22 0 0 0.10635376e+00 0.26314034e+00 -0.15434558e+01 0.00000000e+00
- 1 22 0 0 0.18989838e-01 0.53690774e-02 -0.21688272e-01 0.00000000e+00
- 1 22 0 0 0.10878427e+00 0.13216078e+00 -0.10764767e+01 0.00000000e+00
- 1 22 0 0 0.22952349e-01 -0.29797693e-01 -0.43671381e+00 0.00000000e+00
- 1 22 0 0 -0.14325442e-01 -0.24021002e+00 -0.55643665e+01 0.00000000e+00
- 1 22 0 0 0.80827342e-01 -0.44949344e+00 -0.75916633e+01 0.00000000e+00
- 1 22 0 0 0.53200043e-01 0.17477710e+00 -0.23652860e+01 0.00000000e+00
- 1 22 0 0 0.21173590e+00 0.23154683e+00 -0.57614112e+01 0.00000000e+00
- 1 22 0 0 -0.38552834e-01 0.38615123e+00 -0.73002295e+01 0.00000000e+00
- 1 22 0 0 0.53808678e-01 0.31930402e+00 -0.79972866e+01 0.00000000e+00
- 1 -211 0 0 0.46338913e+00 0.27483857e+00 -0.26664976e+02 0.13957000e+00
- 1 211 0 0 0.56993152e-01 -0.79769502e-01 -0.13955671e+02 0.13957000e+00
- 1 22 0 0 -0.17990593e-01 0.82312991e-02 -0.33577317e+00 0.00000000e+00
- 1 22 0 0 0.31294685e-01 -0.11636609e+00 -0.31885117e+00 0.00000000e+00
- 2 111 386 387 0.33809105e-01 -0.21595182e+00 -0.40057980e+01 0.13498000e+00
- 2 111 388 389 0.23454918e-01 0.16652917e+00 -0.69228901e+01 0.13498000e+00
- 1 130 0 0 0.41184860e+00 -0.52190385e+00 -0.35670569e+02 0.49767000e+00
- 1 22 0 0 -0.48316563e-01 -0.83874170e-02 -0.52722618e+00 0.00000000e+00
- 1 22 0 0 0.56606171e-01 0.88985881e-01 -0.17228696e+01 0.00000000e+00
- 1 22 0 0 0.47179259e-01 -0.54113384e-01 -0.13750616e+03 0.00000000e+00
- 1 22 0 0 0.29665037e+00 -0.34320900e+00 -0.41808650e+03 0.00000000e+00
- 1 22 0 0 0.18454251e+00 0.28082762e+00 -0.10649325e+04 0.00000000e+00
- 1 22 0 0 0.22282908e+00 0.13956762e+00 -0.97355029e+03 0.00000000e+00
- 1 22 0 0 -0.15161576e+01 0.83717950e+00 0.65307471e+01 0.00000000e+00
- 1 22 0 0 -0.12995141e+01 0.83618517e+00 0.55453116e+01 0.00000000e+00
- 1 22 0 0 -0.13418256e+01 0.67092107e+00 0.56026910e+01 0.00000000e+00
- 1 22 0 0 -0.23991851e+01 0.10455250e+01 0.10220076e+02 0.00000000e+00
- 1 22 0 0 0.19357479e-01 0.14192910e-01 0.26252945e-01 0.00000000e+00
- 1 22 0 0 -0.13434245e+00 -0.13156823e+00 0.27846732e+00 0.00000000e+00
- 1 22 0 0 -0.13587918e+00 0.21519202e+00 0.12837409e+01 0.00000000e+00
- 1 22 0 0 -0.13089685e-01 -0.12023071e-01 0.23886722e-01 0.00000000e+00
- 1 22 0 0 0.38024311e-02 0.49778423e-01 -0.18973786e+00 0.00000000e+00
- 1 22 0 0 -0.11051885e+00 -0.51311109e-03 -0.11854170e+01 0.00000000e+00
- 1 22 0 0 0.15073647e-01 0.32027786e-01 0.86879332e-02 0.00000000e+00
- 1 22 0 0 0.38129041e-01 -0.23163721e-01 -0.19403797e+00 0.00000000e+00
- 1 22 0 0 -0.19738310e+00 -0.21922162e+00 -0.37758872e+00 0.00000000e+00
- 1 22 0 0 -0.19885225e+00 -0.13631845e+00 -0.15988746e+00 0.00000000e+00
- 1 22 0 0 0.13129396e-01 -0.93706122e-02 -0.35621420e-01 0.00000000e+00
- 1 22 0 0 -0.31985364e+00 -0.57170845e-01 -0.96799550e+00 0.00000000e+00
- 1 22 0 0 0.47048198e-02 0.32270089e-02 -0.89729619e+00 0.00000000e+00
- 1 22 0 0 0.64108154e-01 0.54869472e-01 -0.32804516e+00 0.00000000e+00
- 1 211 0 0 0.67771930e-01 0.16753831e+00 -0.11290328e+01 0.13957000e+00
- 1 -211 0 0 0.30596101e+00 -0.38268262e-01 -0.58009489e+00 0.13957000e+00
- 1 22 0 0 -0.99044535e-02 -0.33019308e-01 -0.17689578e+01 0.00000000e+00
- 1 22 0 0 0.43713558e-01 -0.18293252e+00 -0.22368402e+01 0.00000000e+00
- 1 22 0 0 0.29170992e-01 0.16523038e+00 -0.69105467e+01 0.00000000e+00
- 1 22 0 0 -0.57160738e-02 0.12987949e-02 -0.12343448e-01 0.00000000e+00
- 624
- 2 25 2 3 0.46065393e+01 0.84943945e+01 -0.28973031e+03 0.12500382e+03
- 2 23 4 5 0.13648379e+02 0.92119818e+01 -0.18517903e+03 0.91339847e+02
- 2 23 6 10 -0.90418400e+01 -0.71758736e+00 -0.10455128e+03 0.27778881e+02
- 1 11 0 0 -0.64343774e+00 -0.37327356e+02 -0.43487826e+02 0.51000000e-03
- 1 -11 0 0 0.14291817e+02 0.46539338e+02 -0.14169120e+03 0.51000000e-03
- 1 22 0 0 -0.25395285e-01 0.34019878e-01 -0.13494528e+00 0.00000000e+00
- 1 -11 0 0 0.20325964e+00 -0.13339119e+02 -0.55051391e+02 0.51000000e-03
- 1 22 0 0 -0.50750864e-06 -0.38813695e-04 -0.15999405e-03 0.00000000e+00
- 1 11 0 0 -0.92195028e+01 0.12587268e+02 -0.49363688e+02 0.51000000e-03
- 1 22 0 0 -0.20106583e-03 0.28306990e-03 -0.10982038e-02 0.00000000e+00
- 2 1 76 76 0.75709977e+00 0.21734526e+01 -0.10072755e+00 0.00000000e+00
- 2 21 76 76 -0.21465189e+00 -0.88581357e+00 -0.37804301e+01 0.00000000e+00
- 2 21 76 76 -0.18554705e+01 -0.23266245e+00 -0.15130746e+02 0.00000000e+00
- 2 21 76 76 -0.58363458e+00 -0.67366643e+00 -0.72877381e+01 0.00000000e+00
- 2 21 76 76 -0.44342981e+00 -0.69489876e+00 -0.55188840e+01 0.00000000e+00
- 2 21 76 76 -0.62771098e+00 -0.92381929e+00 -0.10121619e+02 0.00000000e+00
- 2 21 76 76 -0.99460931e+00 -0.14719229e+01 -0.61187083e+02 0.00000000e+00
- 2 -1 76 76 -0.75709977e+00 -0.21734526e+01 -0.12756752e+03 0.00000000e+00
- 2 2203 87 87 0.49452473e+00 -0.11825152e+00 0.55618421e+04 0.77133000e+00
- 2 21 87 87 0.11235109e+00 0.51646572e+00 0.25516477e+02 0.00000000e+00
- 2 21 87 87 0.10741816e+01 -0.11110544e+01 0.15483559e+02 0.00000000e+00
- 2 21 87 87 0.21830750e+00 -0.10154954e+01 0.19027212e+02 0.00000000e+00
- 2 21 87 87 0.23433571e+00 0.11208730e+01 -0.35644725e+00 0.00000000e+00
- 2 21 87 87 0.65350567e-01 0.18226573e+00 -0.15912865e+01 0.00000000e+00
- 2 21 87 87 -0.33287833e+01 -0.52317771e+01 -0.96398750e+01 0.00000000e+00
- 2 21 87 87 -0.69258200e+00 -0.15950375e+01 -0.13790807e+01 0.00000000e+00
- 2 21 87 87 -0.14000817e+00 -0.63743259e+00 0.48065416e+01 0.00000000e+00
- 2 21 87 87 0.59689380e+00 -0.34054174e+01 0.18734248e+02 0.00000000e+00
- 2 21 87 87 0.21550798e+01 -0.11654775e+00 -0.11980118e+01 0.00000000e+00
- 2 21 87 87 0.58363458e+00 0.67366643e+00 -0.83306422e+00 0.00000000e+00
- 2 21 87 87 0.41042828e+01 0.18940822e+01 -0.75710871e+01 0.00000000e+00
- 2 21 87 87 0.18554705e+01 0.23266245e+00 -0.35009582e+01 0.00000000e+00
- 2 21 87 87 0.44544501e+00 0.76067314e+00 -0.36553561e+01 0.00000000e+00
- 2 21 87 87 0.95053859e+00 0.33778799e+00 -0.82120406e+01 0.00000000e+00
- 2 21 87 87 0.42131790e+01 -0.20081180e+01 -0.65648852e+02 0.00000000e+00
- 2 21 87 87 0.12629600e+00 -0.31086019e+01 -0.45007308e+02 0.00000000e+00
- 2 21 87 87 0.18874377e+01 -0.46079705e+01 -0.35729775e+03 0.00000000e+00
- 2 21 87 87 -0.44544501e+00 -0.76067314e+00 -0.10748228e+03 0.00000000e+00
- 2 21 87 87 0.44342981e+00 0.69489876e+00 -0.58747686e+02 0.00000000e+00
- 2 21 87 87 -0.14679984e+01 -0.11216125e+01 -0.40510216e+01 0.00000000e+00
- 2 21 87 87 -0.86790007e+00 -0.43292619e+00 -0.23254450e+02 0.00000000e+00
- 2 21 87 87 -0.13784187e+01 0.71871213e+00 -0.15797737e+03 0.00000000e+00
- 2 21 87 87 -0.11952344e+00 -0.20714218e+01 -0.44924009e+02 0.00000000e+00
- 2 21 87 87 0.16618549e+01 -0.97358653e+00 -0.43599542e+03 0.00000000e+00
- 2 21 87 87 -0.62305059e-01 0.51752899e+00 -0.12442110e+03 0.00000000e+00
- 2 2 87 87 -0.21570583e+00 0.89607939e+00 -0.75682347e+02 0.33000000e+00
- 2 1 152 152 0.13746475e+00 0.92524570e+00 0.36644801e+03 0.33000000e+00
- 2 21 152 152 0.18920231e+01 0.18251041e+01 0.43435520e+02 0.00000000e+00
- 2 21 152 152 0.65147895e+01 -0.12961691e+01 0.97563472e+02 0.00000000e+00
- 2 21 152 152 0.29112435e+01 -0.15036449e+01 0.65018417e+02 0.00000000e+00
- 2 21 152 152 0.13554287e+00 -0.31051977e+00 0.77356049e+01 0.00000000e+00
- 2 21 152 152 0.34448560e+01 -0.38191148e+01 0.30097719e+03 0.00000000e+00
- 2 21 152 152 0.99460931e+00 0.14719229e+01 0.56497867e+02 0.00000000e+00
- 2 21 152 152 0.49113612e+00 0.24025756e+01 0.90161222e+02 0.00000000e+00
- 2 21 152 152 -0.13554287e+00 0.31051977e+00 0.18116312e+02 0.00000000e+00
- 2 21 152 152 -0.21550798e+01 0.11654775e+00 0.50383802e+02 0.00000000e+00
- 2 21 152 152 -0.65147895e+01 0.12961691e+01 0.12110833e+03 0.00000000e+00
- 2 21 152 152 -0.34448560e+01 0.38191148e+01 0.20772922e+02 0.00000000e+00
- 2 21 152 152 -0.59689380e+00 0.34054174e+01 0.57854155e+01 0.00000000e+00
- 2 21 152 152 0.62771098e+00 0.92381929e+00 0.19534120e+01 0.00000000e+00
- 2 21 152 152 0.14000817e+00 0.63743259e+00 0.45245018e+00 0.00000000e+00
- 2 21 152 152 0.21465189e+00 0.88581357e+00 0.75714425e+00 0.00000000e+00
- 2 21 152 152 -0.42131790e+01 0.20081180e+01 0.23598283e+01 0.00000000e+00
- 2 21 152 152 -0.41042828e+01 -0.18940822e+01 0.71953449e+00 0.00000000e+00
- 2 21 152 152 -0.95053859e+00 -0.33778799e+00 -0.76724179e+00 0.00000000e+00
- 2 21 152 152 -0.49113612e+00 -0.24025756e+01 -0.22238990e+01 0.00000000e+00
- 2 21 152 152 -0.18920231e+01 -0.18251041e+01 -0.39012259e+01 0.00000000e+00
- 2 21 152 152 -0.29112435e+01 0.15036449e+01 -0.13348971e+02 0.00000000e+00
- 2 21 152 152 -0.18874377e+01 0.46079705e+01 -0.17852981e+02 0.00000000e+00
- 2 21 152 152 -0.12629600e+00 0.31086019e+01 -0.86290141e+02 0.00000000e+00
- 2 2101 152 152 -0.47169339e+00 0.29959784e+00 -0.47898811e+04 0.57933000e+00
- 2 21 222 222 0.14944056e+01 -0.15894062e+01 0.13046163e+01 0.00000000e+00
- 2 21 222 222 -0.14944056e+01 0.15894062e+01 0.74205821e+02 0.00000000e+00
- 2 21 233 233 -0.10097415e+01 0.31366467e+00 0.24760657e+01 0.00000000e+00
- 2 21 233 233 0.10097415e+01 -0.31366467e+00 -0.52686604e+00 0.00000000e+00
- 2 92 77 86 -0.47195071e+01 -0.48827834e+01 -0.23069475e+03 0.34403098e+02
- 2 -213 237 238 0.74384409e+00 0.18812128e+01 -0.97922969e+00 0.10824985e+01
- 2 2224 239 240 -0.44461881e+00 -0.87463864e-01 -0.12912705e+01 0.12597505e+01
- 2 113 241 242 -0.21983303e+00 -0.52766285e+00 -0.46843597e+01 0.62276301e+00
- 2 -3224 243 244 -0.82108166e+00 -0.23062710e+00 -0.57616001e+01 0.14133906e+01
- 2 -313 245 246 -0.11498002e+01 -0.14924353e+01 -0.20206328e+02 0.92939117e+00
- 2 113 247 248 -0.88058220e+00 -0.43713262e+00 -0.20972974e+02 0.74071886e+00
- 2 313 249 250 0.28502823e+00 -0.58699185e+00 -0.25207233e+02 0.91432360e+00
- 2 -311 251 251 -0.91691562e+00 -0.91538214e+00 -0.50829378e+02 0.49767000e+00
- 2 313 252 253 -0.46742558e+00 -0.82572901e+00 -0.17885642e+02 0.88385615e+00
- 2 -311 254 254 -0.84812232e+00 -0.16605714e+01 -0.82876734e+02 0.49767000e+00
- 2 92 88 151 0.12503924e+02 -0.19770228e+02 0.41069833e+04 0.59041893e+04
- 2 3222 255 256 0.40776215e+00 0.12435773e+00 0.35158627e+04 0.11893700e+01
- 2 311 257 257 -0.92526110e-01 -0.47035081e+00 0.48793816e+03 0.49767000e+00
- 2 223 258 260 0.28460305e+00 0.51588130e+00 0.61994485e+03 0.77979258e+00
- 1 211 0 0 -0.12908193e+00 0.33044557e+00 0.16268782e+03 0.13957000e+00
- 2 -213 261 262 -0.31963870e+00 -0.61074405e+00 0.24929940e+03 0.70696987e+00
- 2 213 263 264 0.47524700e+00 0.14214339e+00 0.52258052e+03 0.80655512e+00
- 1 -2212 0 0 0.73600479e-01 -0.22844449e+00 0.22459697e+02 0.93827000e+00
- 1 -211 0 0 0.73774516e+00 -0.33077481e+00 0.16487533e+02 0.13957000e+00
- 2 2224 265 266 -0.11683196e+00 -0.27796782e+00 0.14423868e+02 0.10946569e+01
- 2 -213 267 268 0.42407365e+00 -0.10120541e+01 0.21241181e+01 0.62715397e+00
- 1 -2112 0 0 0.36769359e+00 0.15859821e+00 0.26712900e+01 0.93957000e+00
- 1 2112 0 0 -0.15703468e+00 0.78030170e+00 0.31825591e+01 0.93957000e+00
- 2 213 269 270 0.65032187e-01 -0.21055499e+00 0.51403305e+00 0.60600388e+00
- 1 -321 0 0 0.17039097e+00 0.19305681e+00 0.12603742e+01 0.49360000e+00
- 2 313 271 272 -0.98198186e-01 -0.18866318e+00 -0.63702290e+00 0.94828397e+00
- 2 -2114 273 274 -0.13562739e+01 -0.12699624e+01 -0.35249816e+01 0.12642906e+01
- 2 113 275 276 -0.35504146e+00 -0.99121218e+00 -0.18411327e+01 0.72891862e+00
- 1 2212 0 0 0.21354367e+00 -0.27021177e+00 -0.81127255e+00 0.93827000e+00
- 2 221 277 278 -0.16544894e+01 -0.21863694e+01 -0.31200998e+01 0.54745000e+00
- 2 221 279 280 -0.21572327e+00 -0.73597519e+00 -0.96341356e+00 0.54745000e+00
- 1 -211 0 0 -0.45121643e+00 -0.38288257e+00 -0.12957920e+01 0.13957000e+00
- 2 111 281 282 -0.33142900e+00 -0.43852595e+00 0.10808737e+01 0.13498000e+00
- 1 -2112 0 0 0.82083940e+00 -0.17425081e+01 0.92985895e+01 0.93957000e+00
- 1 2112 0 0 -0.11355244e+00 -0.38855136e+00 0.30335770e+01 0.93957000e+00
- 2 221 283 285 -0.48517175e+00 -0.96713472e+00 0.38333170e+01 0.54745000e+00
- 2 111 286 287 0.44521238e+00 0.11939810e+00 0.20541928e+01 0.13498000e+00
- 2 -1114 288 289 0.87025770e+00 -0.63319955e+00 0.21703584e+01 0.12290756e+01
- 2 111 290 291 -0.12204057e+00 -0.65348891e-01 -0.17884852e+00 0.13498000e+00
- 2 1114 292 293 0.14673493e+00 0.33719115e+00 0.93761539e+00 0.12629711e+01
- 2 213 294 295 0.31897142e+00 -0.28633251e-01 -0.28496512e+00 0.70297870e+00
- 1 -2112 0 0 0.12111210e+01 0.64625137e+00 -0.14976440e+01 0.93957000e+00
- 1 -211 0 0 0.10181663e+01 -0.23473765e+00 -0.97347778e+00 0.13957000e+00
- 2 2114 296 297 0.20392485e+01 0.65795100e+00 -0.40949668e+01 0.11647315e+01
- 2 221 298 299 0.82371234e+00 0.22102562e+00 -0.11412947e+01 0.54745000e+00
- 2 -313 300 301 0.12099618e+01 0.61110486e+00 -0.30309057e+01 0.84634963e+00
- 1 321 0 0 0.13427946e+01 0.61265110e+00 -0.69058901e+01 0.49360000e+00
- 2 -213 302 303 0.52579004e+00 0.34837467e+00 -0.36225892e+01 0.81925031e+00
- 2 213 304 305 0.21031789e+01 -0.11195704e+01 -0.31506678e+02 0.77574529e+00
- 2 -213 306 307 0.17367620e+00 0.25837244e+00 -0.43065660e+01 0.75376864e+00
- 2 213 308 309 0.35182414e+00 -0.14021218e+01 -0.17554456e+02 0.78203322e+00
- 2 223 310 312 0.16841540e+01 -0.11364137e+01 -0.43408931e+02 0.78491068e+00
- 2 223 313 315 0.70531627e+00 -0.77107869e+00 -0.13319460e+02 0.78203552e+00
- 1 -2212 0 0 0.55839268e+00 -0.21168744e+01 -0.13738502e+03 0.93827000e+00
- 1 2212 0 0 0.35402717e+00 -0.94156239e+00 -0.86231156e+02 0.93827000e+00
- 2 111 316 317 -0.10187419e+00 -0.12652991e+01 -0.85234893e+02 0.13498000e+00
- 2 -213 318 319 0.76600109e+00 -0.28188613e+00 -0.77638513e+02 0.73554288e+00
- 2 223 320 322 0.70846593e+00 -0.10757458e+01 -0.90369072e+02 0.78396374e+00
- 2 111 323 324 -0.46622386e+00 0.30316732e+00 -0.27552378e+02 0.13498000e+00
- 2 -2114 325 326 -0.64757094e+00 -0.83478988e+00 -0.71449579e+01 0.12857333e+01
- 1 211 0 0 -0.63859904e+00 -0.20458746e+00 -0.33551201e+02 0.13957000e+00
- 2 1114 327 328 -0.21078541e-01 0.77295562e-01 -0.14303557e+02 0.13318386e+01
- 2 223 329 331 -0.26470188e+00 -0.31178894e+00 -0.73474119e+01 0.78747155e+00
- 2 -2214 332 333 -0.38690448e+00 0.46040756e+00 -0.21065727e+02 0.12451378e+01
- 2 323 334 335 -0.48605913e+00 0.34132622e+00 -0.19552217e+02 0.93627410e+00
- 2 3222 336 337 -0.58999729e+00 -0.65291955e+00 -0.32224667e+02 0.11893700e+01
- 1 -321 0 0 -0.66803017e+00 0.16298652e+00 -0.43573517e+02 0.49360000e+00
- 2 311 338 338 0.15832969e+00 -0.12026641e+01 -0.71438075e+02 0.49767000e+00
- 1 211 0 0 0.21650369e-01 -0.79251430e-01 -0.20692802e+01 0.13957000e+00
- 2 221 339 340 -0.22649477e+00 -0.39871444e+00 -0.32860945e+02 0.54745000e+00
- 2 111 341 342 0.81371655e+00 0.17889845e+00 -0.11372771e+03 0.13498000e+00
- 2 -323 343 344 -0.38590126e+00 -0.22961994e+00 -0.11533588e+03 0.89181996e+00
- 1 321 0 0 0.13590388e+01 -0.43874478e+00 -0.17823887e+03 0.49360000e+00
- 2 113 345 346 -0.31025808e+00 0.95515496e-01 -0.14355457e+03 0.79345069e+00
- 2 111 347 348 -0.54407061e-01 0.68150963e+00 -0.52442070e+02 0.13498000e+00
- 2 92 153 221 -0.12390956e+02 0.16158617e+02 -0.36640191e+04 0.49743359e+04
- 2 111 349 350 -0.24844834e+00 0.52742065e-01 0.33917400e+02 0.13498000e+00
- 2 113 351 352 0.37407849e+00 0.10881001e+01 0.25130481e+03 0.68379497e+00
- 2 223 353 355 0.20234522e+00 -0.15818814e+00 0.44885509e+02 0.77833012e+00
- 2 313 356 357 0.54738749e-02 0.65790058e+00 0.37032120e+02 0.90655049e+00
- 2 -323 358 359 0.24687538e+01 0.74955221e+00 0.47607749e+02 0.84898575e+00
- 2 111 360 361 0.31502031e+01 -0.77746216e+00 0.60899048e+02 0.13498000e+00
- 2 223 362 363 0.89347738e+00 -0.13041912e+00 0.14739703e+02 0.77990805e+00
- 2 213 364 365 0.33624460e+01 -0.10432401e+01 0.60875095e+02 0.58828421e+00
- 2 -213 366 367 0.52720980e+00 -0.19668042e-01 0.30027457e+02 0.74452634e+00
- 2 111 368 369 0.57089059e+00 -0.19382148e+00 0.13419419e+02 0.13498000e+00
- 2 113 370 371 0.13457169e+01 -0.20331047e+01 0.11101202e+03 0.83031577e+00
- 2 213 372 373 0.78269084e+00 -0.27690023e+00 0.45419673e+02 0.59979741e+00
- 1 -211 0 0 0.68289194e+00 -0.16429123e+00 0.17904383e+02 0.13957000e+00
- 2 213 374 375 0.93185932e+00 -0.17254627e+00 0.71489492e+02 0.97718049e+00
- 1 -211 0 0 -0.40356688e+00 -0.27685814e+00 0.24355851e+02 0.13957000e+00
- 1 211 0 0 0.71490390e+00 -0.38633186e+00 0.45942023e+02 0.13957000e+00
- 1 -211 0 0 0.80598841e-01 0.91138166e+00 0.29734659e+02 0.13957000e+00
- 2 213 376 377 -0.12722921e+01 -0.46804962e+00 0.57025193e+02 0.68114473e+00
- 2 -213 378 379 0.42106842e+00 0.22034402e+01 0.66199360e+02 0.84941441e+00
- 2 223 380 382 -0.20413335e+01 0.11306869e+01 0.39145429e+02 0.77773007e+00
- 1 211 0 0 -0.63557094e+00 -0.14189918e+00 0.18699382e+02 0.13957000e+00
- 1 -211 0 0 -0.27606236e+00 0.83870617e+00 0.13935734e+02 0.13957000e+00
- 2 223 383 385 -0.22060097e+01 0.22464185e+00 0.52494528e+02 0.78218845e+00
- 2 111 386 387 -0.55752394e+00 -0.84592750e-01 0.33593487e+01 0.13498000e+00
- 2 111 388 389 -0.53831832e+00 -0.23069107e+00 0.50605425e+01 0.13498000e+00
- 2 323 390 391 -0.12985216e+01 0.10386400e+01 0.20410698e+02 0.88547338e+00
- 2 -323 392 393 -0.11454220e+01 0.15536201e+01 0.95537020e+01 0.89298505e+00
- 2 213 394 395 -0.10543943e+01 0.49980411e+00 0.70746164e+01 0.11259738e+01
- 2 1114 396 397 -0.76835692e-01 0.26045675e+01 0.59134867e+01 0.11223380e+01
- 2 213 398 399 0.50256357e-01 0.10646963e+01 0.24534954e+01 0.77601623e+00
- 2 -2214 400 401 -0.98487651e+00 0.18578907e+01 0.33934652e+01 0.12710003e+01
- 2 113 402 403 -0.31623847e+00 0.59106459e+00 0.14529275e+01 0.92228605e+00
- 2 111 404 405 -0.72420765e-01 0.48201081e+00 0.72951682e+00 0.13498000e+00
- 2 111 406 407 -0.91415400e-03 0.93522488e-01 0.16368268e-01 0.13498000e+00
- 2 213 408 409 -0.65799223e+00 0.77997719e+00 0.38146556e+00 0.74001704e+00
- 2 -213 410 411 -0.12738831e+01 -0.35404600e+00 -0.77147579e-01 0.76547714e+00
- 2 221 412 414 -0.20552935e+01 0.26649761e+00 0.18004562e+01 0.54745000e+00
- 2 213 415 416 -0.21807551e+01 -0.17630049e+00 -0.57948784e+00 0.10718222e+01
- 2 -213 417 418 0.27649616e+00 -0.45390711e+00 -0.36186386e+00 0.67006016e+00
- 2 223 419 421 -0.12134628e+01 -0.96007395e+00 -0.24911560e+00 0.77490947e+00
- 1 321 0 0 -0.14660321e+01 -0.64014703e+00 -0.14081361e+01 0.49360000e+00
- 2 -313 422 423 -0.67356955e+00 -0.64145786e+00 -0.11906419e+01 0.98743944e+00
- 1 -211 0 0 0.48923402e-01 -0.11013478e+00 -0.26150035e+00 0.13957000e+00
- 2 111 424 425 -0.20324235e+00 0.18165932e+00 -0.26593777e+00 0.13498000e+00
- 1 211 0 0 0.17296512e+00 -0.54459962e+00 -0.11942806e+01 0.13957000e+00
- 2 313 426 427 -0.45098418e+00 -0.28156417e+00 -0.11337399e+01 0.86784932e+00
- 2 -323 428 429 -0.18947984e+01 -0.14037602e+00 -0.59540030e+01 0.79220320e+00
- 2 221 430 432 -0.49627468e+00 0.16307732e+01 -0.47546272e+01 0.54745000e+00
- 2 213 433 434 -0.10300197e+00 0.69254521e+00 -0.30014639e+01 0.84878396e+00
- 2 221 435 437 -0.54699115e+00 -0.26522350e+00 -0.64244342e+01 0.54745000e+00
- 2 -213 438 439 -0.93333727e+00 0.33586569e+00 -0.75957776e+01 0.11060420e+01
- 2 223 440 442 -0.36506233e+00 0.16107572e+01 -0.92842895e+01 0.75657584e+00
- 1 2212 0 0 -0.51404605e+00 0.16125754e+00 -0.14084223e+02 0.93827000e+00
- 1 -2212 0 0 -0.45546973e+00 0.77751360e+00 -0.12035524e+02 0.93827000e+00
- 1 211 0 0 -0.28987804e+00 0.95037903e+00 -0.58565606e+01 0.13957000e+00
- 2 223 443 445 0.81503162e-01 -0.41024584e-01 -0.96463377e+01 0.82456551e+00
- 1 -211 0 0 -0.56820612e-01 -0.23026050e+00 -0.57521999e+01 0.13957000e+00
- 1 211 0 0 0.12636472e+00 0.26653225e+00 -0.63070642e+01 0.13957000e+00
- 1 -211 0 0 -0.30076003e-01 0.39398172e+00 -0.98393924e+01 0.13957000e+00
- 2 221 446 448 -0.19197727e+00 0.26385417e+00 -0.29232281e+02 0.54745000e+00
- 2 213 449 450 -0.27552577e-01 0.22176226e+00 -0.14071999e+02 0.56673066e+00
- 1 -211 0 0 0.18925854e+00 0.84428857e+00 -0.47028139e+02 0.13957000e+00
- 1 321 0 0 -0.67161012e-01 -0.36707206e+00 -0.49924543e+02 0.49360000e+00
- 2 -313 451 452 -0.87232633e-01 0.48820168e+00 -0.30918934e+03 0.77653314e+00
- 2 111 453 454 -0.23080677e+00 0.19084957e+00 -0.21169639e+03 0.13498000e+00
- 1 -211 0 0 0.32939299e+00 0.19926545e-01 -0.87812545e+02 0.13957000e+00
- 2 223 455 457 -0.26108265e+00 0.71431106e-01 -0.14974907e+04 0.86360389e+00
- 2 2224 458 459 -0.32688300e+00 0.30340140e+00 -0.12074028e+04 0.11730079e+01
- 1 -211 0 0 0.16918589e-02 -0.17155421e+00 -0.13525787e+04 0.13957000e+00
- 2 92 223 232 0.00000000e+00 0.00000000e+00 0.75510438e+02 0.13903808e+02
- 2 223 460 462 -0.45046547e+00 -0.67677685e+00 0.12757145e+02 0.81514695e+00
- 1 -321 0 0 -0.24510953e+00 0.60512413e+00 0.44037616e+01 0.49360000e+00
- 1 321 0 0 -0.89307456e-01 -0.46303520e+00 0.36934769e+01 0.49360000e+00
- 1 -2212 0 0 0.85876822e+00 0.59339501e+00 0.28178032e+01 0.93827000e+00
- 1 2112 0 0 0.55882102e-02 -0.60632034e+00 0.16526099e+01 0.93957000e+00
- 1 211 0 0 0.49162510e+00 0.75965086e-02 0.79111176e+00 0.13957000e+00
- 2 113 463 464 -0.32215450e+00 0.36048977e-01 0.11761083e+02 0.88998537e+00
- 1 -211 0 0 -0.77286463e+00 0.99497127e-01 0.28228395e+02 0.13957000e+00
- 2 223 465 467 0.63525934e+00 -0.44592865e-03 0.35660286e+01 0.78833575e+00
- 2 213 468 469 -0.11133929e+00 0.40491658e+00 0.58390224e+01 0.77178913e+00
- 2 92 234 236 0.00000000e+00 0.00000000e+00 0.19491997e+01 0.33475692e+01
- 2 -213 470 471 0.37767841e+00 -0.25999605e+00 0.11555139e+01 0.95320150e+00
- 1 211 0 0 -0.25236677e-01 -0.27886632e+00 0.11806394e+01 0.13957000e+00
- 2 223 472 474 -0.35244174e+00 0.53886236e+00 -0.38695355e+00 0.78395926e+00
- 1 -211 0 0 0.24184925e+00 0.11310813e+01 -0.10642978e+01 0.13957000e+00
- 2 111 475 476 0.50199483e+00 0.75013145e+00 0.85068095e-01 0.13498000e+00
- 1 2212 0 0 -0.56919393e+00 -0.62224228e-01 -0.88194958e+00 0.93827000e+00
- 1 211 0 0 0.12457512e+00 -0.25239637e-01 -0.40932094e+00 0.13957000e+00
- 1 -211 0 0 -0.10801306e+00 -0.26603385e+00 -0.39143490e+01 0.13957000e+00
- 1 211 0 0 -0.11181997e+00 -0.26162900e+00 -0.77001063e+00 0.13957000e+00
- 2 -3122 477 478 -0.71972664e+00 0.34969724e-01 -0.48401354e+01 0.11156800e+01
- 1 -211 0 0 -0.10135502e+00 -0.26559682e+00 -0.92146475e+00 0.13957000e+00
- 1 -321 0 0 -0.10199480e+01 -0.15204641e+01 -0.18879769e+02 0.49360000e+00
- 1 211 0 0 -0.12985218e+00 0.28028768e-01 -0.13265594e+01 0.13957000e+00
- 1 -211 0 0 -0.55807407e+00 -0.89547494e-01 -0.60598414e+01 0.13957000e+00
- 1 211 0 0 -0.32250813e+00 -0.34758513e+00 -0.14913132e+02 0.13957000e+00
- 1 321 0 0 0.34006709e+00 -0.70778503e+00 -0.21543806e+02 0.49360000e+00
- 1 -211 0 0 -0.55038856e-01 0.12079318e+00 -0.36634277e+01 0.13957000e+00
- 2 310 479 480 -0.91691562e+00 -0.91538214e+00 -0.50829378e+02 0.49767000e+00
- 1 321 0 0 -0.16126123e+00 -0.66230614e+00 -0.14876237e+02 0.49360000e+00
- 1 -211 0 0 -0.30616435e+00 -0.16342287e+00 -0.30094055e+01 0.13957000e+00
- 1 130 0 0 -0.84812232e+00 -0.16605714e+01 -0.82876734e+02 0.49767000e+00
- 1 2112 0 0 0.33720551e+00 -0.72079636e-01 0.26009129e+04 0.93957000e+00
- 1 211 0 0 0.70556640e-01 0.19643737e+00 0.91494978e+03 0.13957000e+00
- 1 130 0 0 -0.92526110e-01 -0.47035081e+00 0.48793816e+03 0.49767000e+00
- 1 -211 0 0 0.13316685e+00 0.18950344e+00 0.82458788e+02 0.13957000e+00
- 1 211 0 0 0.16361546e+00 0.28487601e+00 0.48623147e+03 0.13957000e+00
- 2 111 481 482 -0.12179253e-01 0.41501853e-01 0.51254586e+02 0.13498000e+00
- 1 -211 0 0 0.14938308e+00 -0.40915972e+00 0.12359918e+03 0.13957000e+00
- 2 111 483 484 -0.46902178e+00 -0.20158434e+00 0.12570022e+03 0.13498000e+00
- 1 211 0 0 0.37889328e+00 0.11336983e+00 0.10675822e+03 0.13957000e+00
- 2 111 485 486 0.96353714e-01 0.28773558e-01 0.41582230e+03 0.13498000e+00
- 1 2212 0 0 -0.10649716e+00 -0.23020589e+00 0.13196375e+02 0.93827000e+00
- 1 211 0 0 -0.10334801e-01 -0.47761931e-01 0.12274928e+01 0.13957000e+00
- 1 -211 0 0 0.23170265e+00 -0.32200809e+00 0.13245592e+01 0.13957000e+00
- 2 111 487 488 0.19237100e+00 -0.69004597e+00 0.79955890e+00 0.13498000e+00
- 1 211 0 0 -0.16729796e+00 -0.27347788e+00 0.38474916e+00 0.13957000e+00
- 2 111 489 490 0.23233014e+00 0.62922891e-01 0.12928389e+00 0.13498000e+00
- 2 311 491 491 -0.20484277e+00 0.17104832e+00 -0.29730041e+00 0.49767000e+00
- 2 111 492 493 0.10664459e+00 -0.35971150e+00 -0.33972249e+00 0.13498000e+00
- 1 -2112 0 0 -0.85314793e+00 -0.10657708e+01 -0.23116776e+01 0.93957000e+00
- 2 111 494 495 -0.50312601e+00 -0.20419154e+00 -0.12133041e+01 0.13498000e+00
- 1 211 0 0 -0.45399410e-01 0.28111608e-01 -0.51331613e+00 0.13957000e+00
- 1 -211 0 0 -0.30964205e+00 -0.10193238e+01 -0.13278165e+01 0.13957000e+00
- 1 22 0 0 -0.60924556e+00 -0.43781138e+00 -0.69892200e+00 0.00000000e+00
- 1 22 0 0 -0.10452438e+01 -0.17485580e+01 -0.24211778e+01 0.00000000e+00
- 1 22 0 0 -0.78386186e-01 -0.74192142e+00 -0.59459461e+00 0.00000000e+00
- 1 22 0 0 -0.13733708e+00 0.59462242e-02 -0.36881895e+00 0.00000000e+00
- 1 22 0 0 -0.16155701e+00 -0.30421803e+00 0.58263042e+00 0.00000000e+00
- 1 22 0 0 -0.16987199e+00 -0.13430792e+00 0.49824333e+00 0.00000000e+00
- 1 211 0 0 -0.46680446e-01 -0.31115374e+00 0.15492277e+01 0.13957000e+00
- 1 -211 0 0 -0.16817472e+00 -0.25042333e+00 0.83420140e+00 0.13957000e+00
- 2 111 496 497 -0.27031659e+00 -0.40555765e+00 0.14498878e+01 0.13498000e+00
- 1 22 0 0 0.40612676e+00 0.11631689e+00 0.19902425e+01 0.00000000e+00
- 1 22 0 0 0.39085618e-01 0.30812144e-02 0.63950308e-01 0.00000000e+00
- 1 -2112 0 0 0.74823777e+00 -0.53086983e+00 0.14082664e+01 0.93957000e+00
- 1 211 0 0 0.12201994e+00 -0.10232972e+00 0.76209199e+00 0.13957000e+00
- 1 22 0 0 0.26532189e-01 -0.25356264e-01 -0.18292105e-01 0.00000000e+00
- 1 22 0 0 -0.14857276e+00 -0.39992627e-01 -0.16055641e+00 0.00000000e+00
- 1 2112 0 0 -0.12104799e+00 0.24095549e+00 0.57621624e+00 0.93957000e+00
- 1 -211 0 0 0.26778291e+00 0.96235668e-01 0.36139914e+00 0.13957000e+00
- 1 211 0 0 -0.97850607e-01 0.84939076e-01 -0.31680735e+00 0.13957000e+00
- 2 111 498 499 0.41682202e+00 -0.11357233e+00 0.31842234e-01 0.13498000e+00
- 1 2112 0 0 0.15861252e+01 0.50978237e+00 -0.29156944e+01 0.93957000e+00
- 2 111 500 501 0.45312335e+00 0.14816864e+00 -0.11792725e+01 0.13498000e+00
- 1 22 0 0 0.73012241e+00 -0.20838961e-01 -0.97491063e+00 0.00000000e+00
- 1 22 0 0 0.93589930e-01 0.24186458e+00 -0.16638407e+00 0.00000000e+00
- 2 -311 502 502 0.79897554e+00 0.38546591e+00 -0.14447751e+01 0.49767000e+00
- 2 111 503 504 0.41098626e+00 0.22563895e+00 -0.15861307e+01 0.13498000e+00
- 1 -211 0 0 0.59050539e+00 0.20838293e-01 -0.28622809e+01 0.13957000e+00
- 2 111 505 506 -0.64715349e-01 0.32753638e+00 -0.76030829e+00 0.13498000e+00
- 1 211 0 0 0.16234480e+01 -0.48753669e+00 -0.21447467e+02 0.13957000e+00
- 2 111 507 508 0.47973089e+00 -0.63203371e+00 -0.10059210e+02 0.13498000e+00
- 1 -211 0 0 -0.23336189e+00 0.25210778e+00 -0.24317108e+01 0.13957000e+00
- 2 111 509 510 0.40703809e+00 0.62646518e-02 -0.18748552e+01 0.13498000e+00
- 1 211 0 0 0.29154898e-01 -0.45527707e+00 -0.26477712e+01 0.13957000e+00
- 2 111 511 512 0.32266924e+00 -0.94684475e+00 -0.14906685e+02 0.13498000e+00
- 1 -211 0 0 0.16970287e+00 0.41521150e-01 -0.33737244e+01 0.13957000e+00
- 1 211 0 0 0.60543756e+00 -0.45718743e+00 -0.17411812e+02 0.13957000e+00
- 2 111 513 514 0.90901352e+00 -0.72074741e+00 -0.22623394e+02 0.13498000e+00
- 1 211 0 0 0.77830436e-01 -0.21528979e+00 -0.44211028e+01 0.13957000e+00
- 1 -211 0 0 0.51129450e+00 -0.61251476e+00 -0.72722642e+01 0.13957000e+00
- 2 111 515 516 0.11619133e+00 0.56725856e-01 -0.16260930e+01 0.13498000e+00
- 1 22 0 0 -0.76688776e-02 -0.87010195e+00 -0.58698327e+02 0.00000000e+00
- 1 22 0 0 -0.94205313e-01 -0.39519720e+00 -0.26536565e+02 0.00000000e+00
- 1 -211 0 0 0.58924935e+00 -0.35113675e+00 -0.34266908e+02 0.13957000e+00
- 2 111 517 518 0.17675175e+00 0.69250625e-01 -0.43371605e+02 0.13498000e+00
- 1 211 0 0 0.41547842e+00 -0.71722233e+00 -0.55304880e+02 0.13957000e+00
- 1 -211 0 0 -0.36626201e-01 -0.13740169e+00 -0.17746999e+02 0.13957000e+00
- 2 111 519 520 0.32961371e+00 -0.22112176e+00 -0.17317193e+02 0.13498000e+00
- 1 22 0 0 -0.35827809e+00 0.25610819e+00 -0.23863297e+02 0.00000000e+00
- 1 22 0 0 -0.10794577e+00 0.47059133e-01 -0.36890815e+01 0.00000000e+00
- 1 -2112 0 0 -0.69955728e+00 -0.45429537e+00 -0.53059593e+01 0.93957000e+00
- 2 111 521 522 0.51986336e-01 -0.38049451e+00 -0.18389987e+01 0.13498000e+00
- 1 2112 0 0 -0.17584503e+00 0.19287770e+00 -0.82541280e+01 0.93957000e+00
- 1 -211 0 0 0.15476649e+00 -0.11558214e+00 -0.60494290e+01 0.13957000e+00
- 1 -211 0 0 -0.17437327e+00 0.88219914e-01 -0.21682739e+01 0.13957000e+00
- 1 211 0 0 -0.12685452e+00 -0.15521700e+00 -0.39779386e+01 0.13957000e+00
- 2 111 523 524 0.36525908e-01 -0.24479186e+00 -0.12011993e+01 0.13498000e+00
- 1 -2212 0 0 -0.37147960e+00 0.46739749e+00 -0.20461874e+02 0.93827000e+00
- 2 111 525 526 -0.15424875e-01 -0.69899332e-02 -0.60385343e+00 0.13498000e+00
- 1 321 0 0 -0.42857030e+00 0.39972823e+00 -0.18770019e+02 0.49360000e+00
- 2 111 527 528 -0.57488831e-01 -0.58402018e-01 -0.78219863e+00 0.13498000e+00
- 1 2112 0 0 -0.49823150e+00 -0.33886442e+00 -0.25755083e+02 0.93957000e+00
- 1 211 0 0 -0.91765794e-01 -0.31405513e+00 -0.64695837e+01 0.13957000e+00
- 1 130 0 0 0.15832969e+00 -0.12026641e+01 -0.71438075e+02 0.49767000e+00
- 1 22 0 0 0.13228297e+00 -0.23487256e+00 -0.19716011e+02 0.00000000e+00
- 1 22 0 0 -0.35877774e+00 -0.16384188e+00 -0.13144934e+02 0.00000000e+00
- 1 22 0 0 0.57584067e+00 0.18437500e+00 -0.78539904e+02 0.00000000e+00
- 1 22 0 0 0.23787589e+00 -0.54765500e-02 -0.35187807e+02 0.00000000e+00
- 2 -311 529 529 -0.14895273e+00 -0.12471355e+00 -0.10040483e+03 0.49767000e+00
- 1 -211 0 0 -0.23694853e+00 -0.10490639e+00 -0.14931053e+02 0.13957000e+00
- 1 -211 0 0 -0.62623868e-01 -0.73503305e-01 -0.66656104e+01 0.13957000e+00
- 1 211 0 0 -0.24763421e+00 0.16901880e+00 -0.13688896e+03 0.13957000e+00
- 1 22 0 0 0.31516744e-01 0.24165877e+00 -0.15583961e+02 0.00000000e+00
- 1 22 0 0 -0.85923805e-01 0.43985086e+00 -0.36858109e+02 0.00000000e+00
- 1 22 0 0 -0.13403480e-01 0.21620775e-01 0.10258386e+02 0.00000000e+00
- 1 22 0 0 -0.23504486e+00 0.31121290e-01 0.23659015e+02 0.00000000e+00
- 1 211 0 0 -0.81063723e-01 0.23326657e+00 0.28394084e+02 0.13957000e+00
- 1 -211 0 0 0.45514222e+00 0.85483356e+00 0.22291073e+03 0.13957000e+00
- 1 211 0 0 -0.12691993e+00 -0.30699561e-01 0.11637555e+02 0.13957000e+00
- 1 -211 0 0 0.21249498e+00 0.15137490e+00 0.15387018e+02 0.13957000e+00
- 2 111 530 531 0.11677016e+00 -0.27886348e+00 0.17860936e+02 0.13498000e+00
- 1 321 0 0 0.21230170e+00 0.15590278e+00 0.18694963e+02 0.49360000e+00
- 1 -211 0 0 -0.20682782e+00 0.50199781e+00 0.18337157e+02 0.13957000e+00
- 2 -311 532 532 0.89792834e+00 0.35179489e+00 0.17724180e+02 0.49767000e+00
- 1 -211 0 0 0.15708255e+01 0.39775732e+00 0.29883569e+02 0.13957000e+00
- 1 22 0 0 0.93077361e+00 -0.29344483e+00 0.18303365e+02 0.00000000e+00
- 1 22 0 0 0.22194295e+01 -0.48401732e+00 0.42595682e+02 0.00000000e+00
- 1 22 0 0 0.60440797e+00 0.19434297e+00 0.54126219e+01 0.00000000e+00
- 2 111 533 534 0.28906941e+00 -0.32476208e+00 0.93270811e+01 0.13498000e+00
- 1 211 0 0 0.19258222e+01 -0.39307125e+00 0.36617420e+02 0.13957000e+00
- 2 111 535 536 0.14366238e+01 -0.65016884e+00 0.24257675e+02 0.13498000e+00
- 1 -211 0 0 -0.14793050e+00 -0.78613752e-01 0.83746243e+01 0.13957000e+00
- 2 111 537 538 0.67514030e+00 0.58945710e-01 0.21652833e+02 0.13498000e+00
- 1 22 0 0 0.14321702e+00 -0.10305527e+00 0.46041144e+01 0.00000000e+00
- 1 22 0 0 0.42767357e+00 -0.90766206e-01 0.88153041e+01 0.00000000e+00
- 1 -211 0 0 0.10949652e+01 -0.14688367e+01 0.66515021e+02 0.13957000e+00
- 1 211 0 0 0.25075171e+00 -0.56426803e+00 0.44496998e+02 0.13957000e+00
- 1 211 0 0 0.51839557e-01 -0.21919320e+00 0.15481936e+02 0.13957000e+00
- 2 111 539 540 0.73085129e+00 -0.57707027e-01 0.29937737e+02 0.13498000e+00
- 1 211 0 0 -0.49844443e-01 0.24086334e+00 0.12624739e+02 0.13957000e+00
- 2 111 541 542 0.98170376e+00 -0.41340961e+00 0.58864753e+02 0.13498000e+00
- 1 211 0 0 -0.12255438e-01 -0.68678949e-01 0.10667464e+02 0.13957000e+00
- 2 111 543 544 -0.12600367e+01 -0.39937067e+00 0.46357728e+02 0.13498000e+00
- 1 -211 0 0 0.42888574e+00 0.14457563e+01 0.52501958e+02 0.13957000e+00
- 2 111 545 546 -0.78173190e-02 0.75768383e+00 0.13697402e+02 0.13498000e+00
- 1 211 0 0 -0.17529849e+00 0.17550028e+00 0.43553413e+01 0.13957000e+00
- 1 -211 0 0 -0.89163207e+00 0.61388553e+00 0.14375020e+02 0.13957000e+00
- 2 111 547 548 -0.97440296e+00 0.34130111e+00 0.20415068e+02 0.13498000e+00
- 1 -211 0 0 -0.60919280e+00 -0.13264461e+00 0.12211440e+02 0.13957000e+00
- 1 211 0 0 -0.11360343e+01 0.25584428e+00 0.24138664e+02 0.13957000e+00
- 2 111 549 550 -0.46078260e+00 0.10144218e+00 0.16144424e+02 0.13498000e+00
- 1 22 0 0 -0.37947385e+00 0.70840258e-02 0.22151606e+01 0.00000000e+00
- 1 22 0 0 -0.17805008e+00 -0.91676776e-01 0.11441881e+01 0.00000000e+00
- 1 22 0 0 -0.40033528e+00 -0.15477431e+00 0.31538240e+01 0.00000000e+00
- 1 22 0 0 -0.13798304e+00 -0.75916761e-01 0.19067184e+01 0.00000000e+00
- 1 321 0 0 -0.97005793e+00 0.48197521e+00 0.14865177e+02 0.49360000e+00
- 2 111 551 553 -0.32846370e+00 0.55666484e+00 0.55455210e+01 0.13498000e+00
- 2 -311 554 554 -0.11062220e+01 0.13174122e+01 0.88854849e+01 0.49767000e+00
- 1 -211 0 0 -0.39200079e-01 0.23620793e+00 0.66821715e+00 0.13957000e+00
- 1 211 0 0 -0.90799600e+00 0.42923696e+00 0.27951203e+01 0.13957000e+00
- 2 111 555 556 -0.14639827e+00 0.70567149e-01 0.42794961e+01 0.13498000e+00
- 1 2112 0 0 -0.14351972e+00 0.22292674e+01 0.48829841e+01 0.93957000e+00
- 1 -211 0 0 0.66684023e-01 0.37530012e+00 0.10305027e+01 0.13957000e+00
- 1 211 0 0 0.24439685e+00 0.82800828e+00 0.11808766e+01 0.13957000e+00
- 2 111 557 558 -0.19414049e+00 0.23668799e+00 0.12726188e+01 0.13498000e+00
- 1 -2212 0 0 -0.75337752e+00 0.17060105e+01 0.32157625e+01 0.93827000e+00
- 2 111 559 560 -0.23149899e+00 0.15188014e+00 0.17770267e+00 0.13498000e+00
- 1 -211 0 0 0.11638123e+00 0.29126112e+00 0.56348037e-01 0.13957000e+00
- 1 211 0 0 -0.43261970e+00 0.29980348e+00 0.13965795e+01 0.13957000e+00
- 1 22 0 0 0.25960566e-01 0.17402732e+00 0.19200749e+00 0.00000000e+00
- 1 22 0 0 -0.98381331e-01 0.30798350e+00 0.53750933e+00 0.00000000e+00
- 1 22 0 0 -0.31391852e-01 0.81349497e-01 0.63308063e-01 0.00000000e+00
- 1 22 0 0 0.30477698e-01 0.12172991e-01 -0.46939795e-01 0.00000000e+00
- 1 211 0 0 -0.32930747e+00 0.24018851e+00 0.49995543e+00 0.13957000e+00
- 2 111 561 562 -0.32868476e+00 0.53978868e+00 -0.11848987e+00 0.13498000e+00
- 1 -211 0 0 -0.61178071e+00 0.19499767e+00 -0.30261961e-01 0.13957000e+00
- 2 111 563 564 -0.66210242e+00 -0.54904367e+00 -0.46885617e-01 0.13498000e+00
- 1 211 0 0 -0.98728386e+00 0.24638309e-02 0.90193881e+00 0.13957000e+00
- 1 -211 0 0 -0.33379262e+00 0.13153794e+00 0.33317322e+00 0.13957000e+00
- 2 111 565 566 -0.73421702e+00 0.13249584e+00 0.56534418e+00 0.13498000e+00
- 1 211 0 0 -0.76723560e+00 0.30284650e+00 -0.55784687e+00 0.13957000e+00
- 2 111 567 568 -0.14135195e+01 -0.47914700e+00 -0.21640966e-01 0.13498000e+00
- 1 -211 0 0 0.47378029e-01 0.13860959e+00 -0.12235733e+00 0.13957000e+00
- 2 111 569 570 0.22911813e+00 -0.59251670e+00 -0.23950653e+00 0.13498000e+00
- 1 211 0 0 -0.83711689e+00 -0.63161919e+00 0.10901206e+00 0.13957000e+00
- 1 -211 0 0 -0.23206742e+00 -0.25323593e+00 -0.25200015e+00 0.13957000e+00
- 2 111 571 573 -0.14427848e+00 -0.75218833e-01 -0.10612751e+00 0.13498000e+00
- 2 -311 574 574 -0.70328918e+00 -0.61790966e+00 -0.12614831e+01 0.49767000e+00
- 2 111 575 576 0.29719626e-01 -0.23548198e-01 0.70841245e-01 0.13498000e+00
- 1 22 0 0 -0.12273908e+00 0.98493694e-01 -0.61203796e-01 0.00000000e+00
- 1 22 0 0 -0.80503272e-01 0.83165628e-01 -0.20473398e+00 0.00000000e+00
- 2 311 577 577 -0.31239053e+00 -0.49394589e-01 -0.10592100e+01 0.49767000e+00
- 2 111 578 579 -0.13859365e+00 -0.23216958e+00 -0.74529901e-01 0.13498000e+00
- 1 -321 0 0 -0.12537164e+01 -0.15534460e+00 -0.33389986e+01 0.49360000e+00
- 2 111 580 581 -0.64108197e+00 0.14968575e-01 -0.26150044e+01 0.13498000e+00
- 2 111 582 583 -0.42826003e-01 0.48183605e+00 -0.12909046e+01 0.13498000e+00
- 2 111 584 585 -0.20137028e+00 0.64633927e+00 -0.21975757e+01 0.13498000e+00
- 2 111 586 587 -0.25207840e+00 0.50259788e+00 -0.12661470e+01 0.13498000e+00
- 1 211 0 0 -0.53643193e-01 0.58295255e-01 -0.40869831e-01 0.13957000e+00
- 2 111 588 589 -0.49358775e-01 0.63424996e+00 -0.29605940e+01 0.13498000e+00
- 1 211 0 0 -0.22626542e+00 -0.12480378e+00 -0.30641647e+01 0.13957000e+00
- 1 -211 0 0 -0.61063680e-01 -0.83097195e-01 -0.18865979e+01 0.13957000e+00
- 2 111 590 591 -0.25966205e+00 -0.57322518e-01 -0.14736716e+01 0.13498000e+00
- 1 -211 0 0 -0.21592326e+00 0.58084528e+00 -0.22208185e+01 0.13957000e+00
- 2 111 592 593 -0.71741400e+00 -0.24497959e+00 -0.53749591e+01 0.13498000e+00
- 1 -211 0 0 0.56200180e-01 0.61032139e+00 -0.34240290e+01 0.13957000e+00
- 1 211 0 0 -0.15839339e+00 0.68622877e+00 -0.43338401e+01 0.13957000e+00
- 2 111 594 595 -0.26286912e+00 0.31420702e+00 -0.15264204e+01 0.13498000e+00
- 1 211 0 0 0.69591568e-01 0.10033730e+00 -0.11767385e+01 0.13957000e+00
- 1 -211 0 0 -0.20524056e+00 0.57091758e-01 -0.26901510e+01 0.13957000e+00
- 2 111 596 597 0.21715216e+00 -0.19845365e+00 -0.57794482e+01 0.13498000e+00
- 2 111 598 599 -0.12990707e+00 0.23559432e+00 -0.11354058e+02 0.13498000e+00
- 2 111 600 601 -0.73362000e-01 0.50042894e-01 -0.60335664e+01 0.13498000e+00
- 2 111 602 603 0.11291799e-01 -0.21783052e-01 -0.11844656e+02 0.13498000e+00
- 1 211 0 0 -0.11475944e+00 -0.12950401e+00 -0.48409054e+01 0.13957000e+00
- 2 111 604 605 0.87206858e-01 0.35126628e+00 -0.92310936e+01 0.13498000e+00
- 2 -311 606 606 -0.13887957e+00 0.13741032e+00 -0.16123059e+03 0.49767000e+00
- 2 111 607 608 0.51646939e-01 0.35079136e+00 -0.14795875e+03 0.13498000e+00
- 1 22 0 0 -0.24057195e+00 0.19841057e+00 -0.19404863e+03 0.00000000e+00
- 1 22 0 0 0.97651817e-02 -0.75609952e-02 -0.17647766e+02 0.00000000e+00
- 1 211 0 0 0.12402613e+00 -0.13631602e+00 -0.31252782e+03 0.13957000e+00
- 1 -211 0 0 -0.43097072e+00 0.83999059e-01 -0.70274870e+03 0.13957000e+00
- 2 111 609 610 0.45861937e-01 0.12374807e+00 -0.48221421e+03 0.13498000e+00
- 1 2212 0 0 -0.40108269e+00 0.30468238e+00 -0.93529646e+03 0.93827000e+00
- 1 211 0 0 0.74199687e-01 -0.12809785e-02 -0.27210635e+03 0.13957000e+00
- 1 211 0 0 -0.62686697e-01 -0.17227813e+00 0.54587251e+01 0.13957000e+00
- 1 -211 0 0 -0.31245823e+00 -0.44689083e+00 0.67309010e+01 0.13957000e+00
- 2 111 611 612 -0.75320543e-01 -0.57607901e-01 0.56751938e+00 0.13498000e+00
- 1 211 0 0 0.22558247e+00 -0.19185809e+00 0.49786499e+01 0.13957000e+00
- 1 -211 0 0 -0.54773697e+00 0.22790707e+00 0.67824331e+01 0.13957000e+00
- 1 211 0 0 0.35585842e-01 -0.17342990e+00 0.81596903e+00 0.13957000e+00
- 1 -211 0 0 0.49080742e+00 0.20120195e+00 0.24672578e+01 0.13957000e+00
- 2 111 613 614 0.10886607e+00 -0.28217976e-01 0.28280177e+00 0.13498000e+00
- 1 211 0 0 0.25058652e+00 0.17114753e+00 0.38813831e+01 0.13957000e+00
- 2 111 615 616 -0.36192581e+00 0.23376905e+00 0.19576393e+01 0.13498000e+00
- 1 -211 0 0 -0.34748221e-01 -0.52651105e+00 0.54192036e+00 0.13957000e+00
- 2 111 617 618 0.41242664e+00 0.26651500e+00 0.61359351e+00 0.13498000e+00
- 1 -211 0 0 -0.79740154e-01 0.43504537e+00 -0.37239394e+00 0.13957000e+00
- 1 211 0 0 -0.17290471e+00 0.10032044e+00 0.12378508e+00 0.13957000e+00
- 2 111 619 620 -0.99796872e-01 0.34965597e-02 -0.13834469e+00 0.13498000e+00
- 1 22 0 0 0.11544189e+00 0.24128079e+00 0.73817195e-01 0.00000000e+00
- 1 22 0 0 0.38655294e+00 0.50885067e+00 0.11250900e-01 0.00000000e+00
- 1 -2212 0 0 -0.60075738e+00 0.85135856e-01 -0.37677736e+01 0.93827000e+00
- 1 211 0 0 -0.11896926e+00 -0.50166132e-01 -0.10723618e+01 0.13957000e+00
- 1 211 0 0 -0.48495466e+00 -0.29658860e+00 -0.16529313e+02 0.13957000e+00
- 1 -211 0 0 -0.43196095e+00 -0.61879355e+00 -0.34300065e+02 0.13957000e+00
- 1 22 0 0 0.42845933e-01 -0.24241643e-01 0.26910066e+02 0.00000000e+00
- 1 22 0 0 -0.55025186e-01 0.65743495e-01 0.24344519e+02 0.00000000e+00
- 1 22 0 0 -0.27632587e+00 -0.14000431e+00 0.90280502e+02 0.00000000e+00
- 1 22 0 0 -0.19269591e+00 -0.61580028e-01 0.35419717e+02 0.00000000e+00
- 1 22 0 0 0.37757176e-01 0.80920881e-01 0.20401589e+03 0.00000000e+00
- 1 22 0 0 0.58596539e-01 -0.52147323e-01 0.21180641e+03 0.00000000e+00
- 1 22 0 0 0.10271127e+00 -0.25515161e+00 0.39468517e+00 0.00000000e+00
- 1 22 0 0 0.89659738e-01 -0.43489436e+00 0.40487373e+00 0.00000000e+00
- 1 22 0 0 0.10522429e-03 0.39225064e-01 0.29849806e-02 0.00000000e+00
- 1 22 0 0 0.23222492e+00 0.23697827e-01 0.12629891e+00 0.00000000e+00
- 1 130 0 0 -0.20484277e+00 0.17104832e+00 -0.29730041e+00 0.49767000e+00
- 1 22 0 0 0.54870437e-01 -0.17390622e+00 -0.77105482e-01 0.00000000e+00
- 1 22 0 0 0.51774149e-01 -0.18580528e+00 -0.26261700e+00 0.00000000e+00
- 1 22 0 0 -0.43010142e+00 -0.11747346e+00 -0.98406723e+00 0.00000000e+00
- 1 22 0 0 -0.73024592e-01 -0.86718085e-01 -0.22923684e+00 0.00000000e+00
- 1 22 0 0 -0.42629964e-01 -0.38642829e-01 0.75464021e-01 0.00000000e+00
- 1 22 0 0 -0.22768663e+00 -0.36691482e+00 0.13744238e+01 0.00000000e+00
- 1 22 0 0 0.25281902e+00 -0.13128954e+00 0.44322327e-01 0.00000000e+00
- 1 22 0 0 0.16400301e+00 0.17717214e-01 -0.12480093e-01 0.00000000e+00
- 1 22 0 0 0.17398314e+00 0.10253504e-01 -0.30789664e+00 0.00000000e+00
- 1 22 0 0 0.27914021e+00 0.13791513e+00 -0.87137581e+00 0.00000000e+00
- 1 130 0 0 0.79897554e+00 0.38546591e+00 -0.14447751e+01 0.49767000e+00
- 1 22 0 0 0.33797654e+00 0.16746309e+00 -0.10596393e+01 0.00000000e+00
- 1 22 0 0 0.73009719e-01 0.58175859e-01 -0.52649140e+00 0.00000000e+00
- 1 22 0 0 -0.66211810e-01 0.31573695e+00 -0.60603027e+00 0.00000000e+00
- 1 22 0 0 0.14964611e-02 0.11799424e-01 -0.15427802e+00 0.00000000e+00
- 1 22 0 0 0.36359747e+00 -0.37408495e+00 -0.66567264e+01 0.00000000e+00
- 1 22 0 0 0.11613342e+00 -0.25794876e+00 -0.34024839e+01 0.00000000e+00
- 1 22 0 0 0.20949304e+00 0.45070569e-01 -0.12021784e+01 0.00000000e+00
- 1 22 0 0 0.19754506e+00 -0.38805918e-01 -0.67267678e+00 0.00000000e+00
- 1 22 0 0 0.29361644e+00 -0.77465590e+00 -0.11614747e+02 0.00000000e+00
- 1 22 0 0 0.29052801e-01 -0.17218885e+00 -0.32919386e+01 0.00000000e+00
- 1 22 0 0 0.61032200e-01 -0.89988975e-01 -0.25640000e+01 0.00000000e+00
- 1 22 0 0 0.84798132e+00 -0.63075844e+00 -0.20059394e+02 0.00000000e+00
- 1 22 0 0 0.98148857e-02 0.11648803e-01 -0.14366450e-01 0.00000000e+00
- 1 22 0 0 0.10637645e+00 0.45077054e-01 -0.16117266e+01 0.00000000e+00
- 1 22 0 0 0.36307279e-01 0.71468422e-01 -0.23086892e+02 0.00000000e+00
- 1 22 0 0 0.14044447e+00 -0.22177975e-02 -0.20284713e+02 0.00000000e+00
- 1 22 0 0 -0.16076366e-02 0.13050641e-01 -0.42048575e+00 0.00000000e+00
- 1 22 0 0 0.33122135e+00 -0.23417240e+00 -0.16896707e+02 0.00000000e+00
- 1 22 0 0 0.56052400e-01 -0.13075308e+00 -0.44110297e+00 0.00000000e+00
- 1 22 0 0 -0.40660637e-02 -0.24974143e+00 -0.13978957e+01 0.00000000e+00
- 1 22 0 0 0.19724313e-01 -0.19642590e+00 -0.11239880e+01 0.00000000e+00
- 1 22 0 0 0.16801595e-01 -0.48365959e-01 -0.77211365e-01 0.00000000e+00
- 1 22 0 0 0.18534794e-01 -0.47686646e-01 -0.49783707e+00 0.00000000e+00
- 1 22 0 0 -0.33959669e-01 0.40696713e-01 -0.10601636e+00 0.00000000e+00
- 1 22 0 0 -0.24142162e-01 -0.36924566e-01 -0.73501610e+00 0.00000000e+00
- 1 22 0 0 -0.33346669e-01 -0.21477452e-01 -0.47182528e-01 0.00000000e+00
- 2 310 621 622 -0.14895273e+00 -0.12471355e+00 -0.10040483e+03 0.49767000e+00
- 1 22 0 0 0.33781558e-01 -0.15150245e+00 0.12339508e+02 0.00000000e+00
- 1 22 0 0 0.82988604e-01 -0.12736102e+00 0.55214286e+01 0.00000000e+00
- 2 310 623 624 0.89792834e+00 0.35179489e+00 0.17724180e+02 0.49767000e+00
- 1 22 0 0 0.36797163e-02 -0.72741396e-03 0.57959168e-02 0.00000000e+00
- 1 22 0 0 0.28538970e+00 -0.32403467e+00 0.93212852e+01 0.00000000e+00
- 1 22 0 0 0.53592244e+00 -0.21722598e+00 0.79778329e+01 0.00000000e+00
- 1 22 0 0 0.90070134e+00 -0.43294286e+00 0.16279842e+02 0.00000000e+00
- 1 22 0 0 0.53346771e+00 0.36132384e-01 0.18554322e+02 0.00000000e+00
- 1 22 0 0 0.14167259e+00 0.22813326e-01 0.30985106e+01 0.00000000e+00
- 1 22 0 0 0.20151940e+00 -0.71197626e-01 0.76013339e+01 0.00000000e+00
- 1 22 0 0 0.52933189e+00 0.13490600e-01 0.22336403e+02 0.00000000e+00
- 1 22 0 0 0.72438891e+00 -0.25086583e+00 0.40165003e+02 0.00000000e+00
- 1 22 0 0 0.25731485e+00 -0.16254378e+00 0.18699750e+02 0.00000000e+00
- 1 22 0 0 -0.57326355e+00 -0.24335065e+00 0.20610035e+02 0.00000000e+00
- 1 22 0 0 -0.68677314e+00 -0.15602002e+00 0.25747693e+02 0.00000000e+00
- 1 22 0 0 0.22407046e-01 0.42126685e+00 0.64906618e+01 0.00000000e+00
- 1 22 0 0 -0.30224365e-01 0.33641698e+00 0.72067403e+01 0.00000000e+00
- 1 22 0 0 -0.26278264e-01 0.59579927e-02 0.11394944e+01 0.00000000e+00
- 1 22 0 0 -0.94812469e+00 0.33534311e+00 0.19275574e+02 0.00000000e+00
- 1 22 0 0 -0.41319139e+00 0.76828078e-01 0.12500255e+02 0.00000000e+00
- 1 22 0 0 -0.47591211e-01 0.24614103e-01 0.36441686e+01 0.00000000e+00
- 1 22 0 0 -0.38703315e-01 0.15488878e+00 0.12116584e+01 0.00000000e+00
- 1 -11 0 0 -0.27432915e+00 0.34546952e+00 0.38462286e+01 0.51000000e-03
- 1 11 0 0 -0.15431238e-01 0.56306541e-01 0.48763395e+00 0.51000000e-03
- 1 130 0 0 -0.11062220e+01 0.13174122e+01 0.88854849e+01 0.49767000e+00
- 1 22 0 0 0.11605359e-01 0.50020025e-01 0.11853374e+01 0.00000000e+00
- 1 22 0 0 -0.15800363e+00 0.20547124e-01 0.30941587e+01 0.00000000e+00
- 1 22 0 0 -0.48368128e-01 0.58133479e-01 0.60205784e+00 0.00000000e+00
- 1 22 0 0 -0.14577237e+00 0.17855452e+00 0.67056100e+00 0.00000000e+00
- 1 22 0 0 -0.22936243e+00 0.16948229e+00 0.18071475e+00 0.00000000e+00
- 1 22 0 0 -0.21365607e-02 -0.17602146e-01 -0.30120818e-02 0.00000000e+00
- 1 22 0 0 -0.19283747e+00 0.43102891e+00 -0.84330990e-01 0.00000000e+00
- 1 22 0 0 -0.13584729e+00 0.10875977e+00 -0.34158884e-01 0.00000000e+00
- 1 22 0 0 -0.62068127e+00 -0.46377315e+00 -0.28357864e-01 0.00000000e+00
- 1 22 0 0 -0.41421149e-01 -0.85270517e-01 -0.18527753e-01 0.00000000e+00
- 1 22 0 0 -0.21207844e+00 0.16331389e-01 0.23547612e+00 0.00000000e+00
- 1 22 0 0 -0.52213858e+00 0.11616445e+00 0.32986806e+00 0.00000000e+00
- 1 22 0 0 -0.11338292e+01 -0.33949215e+00 -0.51814487e-01 0.00000000e+00
- 1 22 0 0 -0.27969027e+00 -0.13965484e+00 0.30173522e-01 0.00000000e+00
- 1 22 0 0 0.59600118e-02 -0.15586120e+00 -0.87361911e-01 0.00000000e+00
- 1 22 0 0 0.22315812e+00 -0.43665550e+00 -0.15214462e+00 0.00000000e+00
- 1 22 0 0 -0.12285289e+00 0.11530617e-02 -0.34992051e-01 0.00000000e+00
- 1 -11 0 0 -0.71815777e-02 -0.57499164e-01 -0.43656464e-01 0.51000000e-03
- 1 11 0 0 -0.14244011e-01 -0.18872731e-01 -0.27478991e-01 0.51000000e-03
- 1 130 0 0 -0.70328918e+00 -0.61790966e+00 -0.12614831e+01 0.49767000e+00
- 1 22 0 0 0.56021053e-01 -0.68212952e-01 0.47519866e-01 0.00000000e+00
- 1 22 0 0 -0.26301427e-01 0.44664754e-01 0.23321379e-01 0.00000000e+00
- 1 130 0 0 -0.31239053e+00 -0.49394589e-01 -0.10592100e+01 0.49767000e+00
- 1 22 0 0 -0.71691635e-01 -0.50494363e-01 0.28177572e-01 0.00000000e+00
- 1 22 0 0 -0.66902011e-01 -0.18167521e+00 -0.10270747e+00 0.00000000e+00
- 1 22 0 0 -0.29615756e+00 -0.33141580e-01 -0.14310652e+01 0.00000000e+00
- 1 22 0 0 -0.34492441e+00 0.48110155e-01 -0.11839392e+01 0.00000000e+00
- 1 22 0 0 0.41199547e-01 0.26637252e+00 -0.64284581e+00 0.00000000e+00
- 1 22 0 0 -0.84025551e-01 0.21546353e+00 -0.64805875e+00 0.00000000e+00
- 1 22 0 0 -0.11754618e+00 0.53338716e+00 -0.16477965e+01 0.00000000e+00
- 1 22 0 0 -0.83824100e-01 0.11295211e+00 -0.54977921e+00 0.00000000e+00
- 1 22 0 0 -0.12855632e+00 0.12066250e+00 -0.41402674e+00 0.00000000e+00
- 1 22 0 0 -0.12352208e+00 0.38193538e+00 -0.85212022e+00 0.00000000e+00
- 1 22 0 0 0.39946646e-01 0.35188341e+00 -0.16276651e+01 0.00000000e+00
- 1 22 0 0 -0.89305420e-01 0.28236654e+00 -0.13329289e+01 0.00000000e+00
- 1 22 0 0 0.12938557e-01 -0.17936988e-01 -0.13877043e+00 0.00000000e+00
- 1 22 0 0 -0.27260060e+00 -0.39385530e-01 -0.13349012e+01 0.00000000e+00
- 1 22 0 0 -0.51193930e+00 -0.23429756e+00 -0.40694226e+01 0.00000000e+00
- 1 22 0 0 -0.20547470e+00 -0.10682028e-01 -0.13055364e+01 0.00000000e+00
- 1 22 0 0 0.89673396e-02 0.87643956e-02 -0.11341411e-01 0.00000000e+00
- 1 22 0 0 -0.27183646e+00 0.30544262e+00 -0.15150789e+01 0.00000000e+00
- 1 22 0 0 0.81501336e-01 -0.91082793e-01 -0.36478390e+01 0.00000000e+00
- 1 22 0 0 0.13565082e+00 -0.10737085e+00 -0.21316093e+01 0.00000000e+00
- 1 22 0 0 -0.87170516e-01 0.39038623e-01 -0.28138559e+01 0.00000000e+00
- 1 22 0 0 -0.42736552e-01 0.19655570e+00 -0.85402023e+01 0.00000000e+00
- 1 22 0 0 -0.12762811e-01 0.88379884e-01 -0.30925323e+01 0.00000000e+00
- 1 22 0 0 -0.60599189e-01 -0.38336990e-01 -0.29410340e+01 0.00000000e+00
- 1 22 0 0 -0.23972319e-01 0.44830709e-01 -0.72324835e+01 0.00000000e+00
- 1 22 0 0 0.35264118e-01 -0.66613761e-01 -0.46121728e+01 0.00000000e+00
- 1 22 0 0 0.95491012e-01 0.33323525e+00 -0.90985821e+01 0.00000000e+00
- 1 22 0 0 -0.82841536e-02 0.18031023e-01 -0.13251142e+00 0.00000000e+00
- 1 130 0 0 -0.13887957e+00 0.13741032e+00 -0.16123059e+03 0.49767000e+00
- 1 22 0 0 -0.41064117e-01 0.53251311e-01 -0.23477669e+02 0.00000000e+00
- 1 22 0 0 0.92711056e-01 0.29754005e+00 -0.12448108e+03 0.00000000e+00
- 1 22 0 0 0.38076384e-01 0.14154162e+00 -0.46877654e+03 0.00000000e+00
- 1 22 0 0 0.77855537e-02 -0.17793554e-01 -0.13437676e+02 0.00000000e+00
- 1 22 0 0 -0.80890604e-01 -0.88349582e-02 0.15033153e+00 0.00000000e+00
- 1 22 0 0 0.55700606e-02 -0.48772943e-01 0.41718785e+00 0.00000000e+00
- 1 22 0 0 0.12159821e+00 -0.38527363e-04 0.13398081e+00 0.00000000e+00
- 1 22 0 0 -0.12732135e-01 -0.28179449e-01 0.14882095e+00 0.00000000e+00
- 1 22 0 0 -0.28095392e+00 0.12467138e+00 0.11667865e+01 0.00000000e+00
- 1 22 0 0 -0.80971891e-01 0.10909767e+00 0.79085278e+00 0.00000000e+00
- 1 22 0 0 0.22009619e-01 0.65668596e-01 0.10118384e+00 0.00000000e+00
- 1 22 0 0 0.39041702e+00 0.20084641e+00 0.51240968e+00 0.00000000e+00
- 1 22 0 0 -0.96528359e-01 0.46308836e-01 -0.13794516e+00 0.00000000e+00
- 1 22 0 0 -0.32685135e-02 -0.42812276e-01 -0.39952968e-03 0.00000000e+00
- 1 211 0 0 -0.74313646e-01 0.74449438e-01 -0.14627187e+02 0.13957000e+00
- 1 -211 0 0 -0.74639083e-01 -0.19916299e+00 -0.85777639e+02 0.13957000e+00
- 1 211 0 0 0.65321123e+00 0.26233489e+00 0.15009944e+02 0.13957000e+00
- 1 -211 0 0 0.24471712e+00 0.89460000e-01 0.27142360e+01 0.13957000e+00
- 340
- 2 25 2 3 0.20103905e+01 0.22883834e+01 -0.64398488e+03 0.12499956e+03
- 2 23 4 5 0.16366252e+01 0.85879461e+01 -0.16922401e+03 0.38089673e+02
- 2 23 6 7 0.37376530e+00 -0.62995627e+01 -0.47476087e+03 0.84898080e+02
- 1 13 0 0 0.25051580e+01 0.68159964e+01 -0.17091971e+03 0.10566000e+00
- 1 -13 0 0 -0.86853284e+00 0.17719497e+01 0.16957014e+01 0.10566000e+00
- 1 11 0 0 -0.62033890e+01 -0.57818815e+01 -0.10140481e+01 0.51000000e-03
- 1 -11 0 0 0.65771543e+01 -0.51768120e+00 -0.47374682e+03 0.51000000e-03
- 2 1 38 38 0.49702031e+01 0.11896659e+02 -0.76122242e+03 0.33000000e+00
- 2 21 38 38 -0.90218796e+00 0.43699885e+01 -0.26464020e+03 0.00000000e+00
- 2 21 38 38 -0.18616231e+01 0.35236391e+00 -0.23307378e+02 0.00000000e+00
- 2 21 38 38 -0.12265134e+01 -0.12370161e+01 -0.25169881e+01 0.00000000e+00
- 2 21 38 38 0.42589365e+00 -0.22909323e+01 -0.89679590e+00 0.00000000e+00
- 2 21 38 38 0.15198477e+01 -0.13593404e+01 0.29689454e+01 0.00000000e+00
- 2 21 38 38 0.15788141e+01 -0.18649153e+01 0.59558670e+01 0.00000000e+00
- 2 21 38 38 -0.15788141e+01 0.18649153e+01 0.21514451e+03 0.00000000e+00
- 2 21 38 38 -0.15198477e+01 0.13593404e+01 0.22533230e+02 0.00000000e+00
- 2 21 38 38 0.92133416e-01 0.34205086e+00 0.25395468e+02 0.00000000e+00
- 2 21 38 38 0.23992236e+01 0.14611346e+01 0.62972906e+02 0.00000000e+00
- 2 21 38 38 -0.13847018e+00 -0.15535904e+01 0.47260353e+02 0.00000000e+00
- 2 21 38 38 0.57010903e+00 -0.32803573e+00 0.22333687e+02 0.00000000e+00
- 2 21 38 38 -0.11649712e+01 -0.26471556e+00 0.89738073e+01 0.00000000e+00
- 2 2101 38 38 -0.13168759e+01 0.78300895e+00 0.53059044e+04 0.57933000e+00
- 2 4 79 79 0.26458521e+00 -0.24384291e+01 0.25801846e+01 0.15000000e+01
- 2 21 79 79 -0.11859761e+01 0.10964475e+01 0.70004335e+00 0.00000000e+00
- 2 21 79 79 -0.17869633e+00 0.95210323e-01 -0.13025881e-01 0.00000000e+00
- 2 21 79 79 0.12265134e+01 0.12370161e+01 -0.24131834e+00 0.00000000e+00
- 2 21 79 79 -0.20923065e+01 0.17701666e+01 -0.35087628e+01 0.00000000e+00
- 2 21 79 79 -0.42589365e+00 0.22909323e+01 -0.24658496e+02 0.00000000e+00
- 2 21 79 79 0.20923065e+01 -0.17701666e+01 -0.13263539e+03 0.00000000e+00
- 2 21 79 79 -0.40057906e+00 -0.28649315e+00 -0.14875856e+02 0.00000000e+00
- 2 21 79 79 0.11103520e+01 0.54379822e+00 -0.80304354e+02 0.00000000e+00
- 2 2203 79 79 -0.14201514e+00 0.95770391e+00 -0.50339152e+04 0.77133000e+00
- 2 -4 102 102 -0.27184545e+01 -0.18133326e+02 0.33248789e+02 0.15000000e+01
- 2 21 102 102 0.45823547e+00 -0.21051498e+01 0.37053037e+01 0.00000000e+00
- 2 2 102 102 -0.18653829e+01 0.92299014e+00 0.10994946e+04 0.33000000e+00
- 2 21 117 117 -0.71962651e+00 -0.90279975e+00 0.12526298e+03 0.00000000e+00
- 2 21 117 117 0.71962651e+00 0.90279975e+00 0.22860468e+01 0.00000000e+00
- 2 92 39 78 0.18469211e+01 0.13530916e+02 0.46668594e+04 0.49123962e+04
- 1 2112 0 0 0.14962793e+01 0.54017273e+01 -0.36945152e+03 0.93957000e+00
- 1 -2112 0 0 0.23899361e+01 0.58590203e+01 -0.35132607e+03 0.93957000e+00
- 2 313 125 126 0.18371550e+00 0.18861803e+01 -0.11380862e+03 0.90529284e+00
- 2 -323 127 128 -0.22604842e+00 0.76380646e+00 -0.75452162e+02 0.91212810e+00
- 2 2214 129 130 0.29365239e+00 0.11016358e+01 -0.55215071e+02 0.12438829e+01
- 2 -3214 131 132 -0.13030878e+01 0.13837265e+01 -0.71167570e+02 0.13868800e+01
- 2 -323 133 134 -0.12337306e+00 -0.20393814e+00 -0.80571132e+01 0.93050041e+00
- 2 223 135 137 -0.50041869e+00 0.71367932e-01 -0.44816259e+01 0.77687893e+00
- 2 213 138 139 -0.58420215e+00 -0.62285414e+00 -0.21681932e+01 0.74523963e+00
- 2 -213 140 141 -0.44832125e+00 -0.12402122e+01 -0.71028018e+00 0.72645538e+00
- 2 213 142 143 0.13620278e+00 -0.29579227e+00 0.32825770e+00 0.67556004e+00
- 1 -211 0 0 0.71536811e+00 -0.71888618e+00 0.73067867e+00 0.13957000e+00
- 1 211 0 0 0.11455046e+00 -0.26347535e+00 0.39545740e+00 0.13957000e+00
- 2 111 144 145 -0.22616088e+00 -0.41707046e+00 -0.11748533e+00 0.13498000e+00
- 2 311 146 146 0.41278863e+00 -0.39826677e+00 0.76711291e+00 0.49767000e+00
- 2 333 147 148 0.70945909e+00 -0.37576174e+00 0.10062516e+01 0.10177629e+01
- 2 3122 149 150 0.82674354e+00 -0.13333089e+01 0.34579676e+01 0.11156800e+01
- 1 -2212 0 0 0.25922446e+00 -0.14536365e+00 0.67134628e+01 0.93827000e+00
- 2 221 151 152 -0.43902534e+00 -0.66935850e+00 0.15497136e+02 0.54745000e+00
- 2 111 153 154 0.71601520e+00 0.39925561e+00 0.48504421e+01 0.13498000e+00
- 2 113 155 156 -0.28111848e+00 0.30400589e+00 0.20717497e+02 0.60142976e+00
- 2 213 157 158 -0.39957695e+00 0.46494661e+00 0.61835429e+02 0.78621439e+00
- 1 -211 0 0 -0.53214605e+00 0.41946395e+00 0.98658758e+01 0.13957000e+00
- 2 221 159 161 -0.21756380e+00 0.73031193e+00 0.54855368e+02 0.54745000e+00
- 2 113 162 163 -0.52770912e+00 0.25717737e+00 0.23636336e+02 0.76781569e+00
- 1 211 0 0 -0.35028656e-01 -0.24116255e+00 0.21568145e+02 0.13957000e+00
- 2 111 164 165 0.57365826e+00 0.13540499e+01 0.37552778e+02 0.13498000e+00
- 2 221 166 168 0.67741603e-01 0.19003048e-01 0.10957516e+02 0.54745000e+00
- 2 111 169 170 -0.38108327e+00 0.32344878e-02 0.51594884e+01 0.13498000e+00
- 1 -211 0 0 0.42162270e+00 -0.71163132e-01 0.89303977e+01 0.13957000e+00
- 2 213 171 172 -0.35501445e+00 0.80875057e-01 0.14515212e+02 0.63092062e+00
- 2 223 173 175 0.16687699e+00 -0.29552621e+00 0.23201424e+02 0.77331547e+00
- 2 -213 176 177 0.67676384e+00 0.71546669e+00 0.39496490e+02 0.76313107e+00
- 2 323 178 179 -0.52459322e-01 0.29595009e+00 0.97554861e+01 0.89091341e+00
- 1 -321 0 0 -0.65749089e-01 -0.75389764e+00 0.58195467e+02 0.49360000e+00
- 2 223 180 182 0.20718895e+00 -0.12322740e+00 0.11116662e+02 0.77402851e+00
- 2 221 183 184 -0.60613950e+00 -0.52123406e+00 0.57809035e+02 0.54745000e+00
- 2 113 185 186 0.34791998e+00 0.39879499e+00 0.85257642e+02 0.72996574e+00
- 1 211 0 0 -0.21495109e+00 -0.60713831e+00 0.19001255e+02 0.13957000e+00
- 1 2112 0 0 -0.13496095e+01 0.91855337e+00 0.51116408e+04 0.93957000e+00
- 2 92 80 101 0.26829033e+00 0.34961861e+01 -0.52868721e+04 0.35206052e+03
- 2 431 187 189 -0.33484874e-01 -0.18988299e+01 0.22913241e+01 0.19685000e+01
- 2 3122 190 191 -0.29437093e+00 0.52704008e+00 0.67956274e+00 0.11156800e+01
- 1 -2212 0 0 -0.13395025e+00 0.91004710e+00 -0.71442252e+00 0.93827000e+00
- 2 213 192 193 -0.33471968e+00 0.66829586e-01 -0.37487783e+00 0.84527412e+00
- 1 -211 0 0 -0.37852685e+00 0.27631722e+00 -0.76551555e+00 0.13957000e+00
- 2 331 194 196 0.23080949e+00 -0.21166575e+00 -0.42059629e+00 0.95770228e+00
- 1 211 0 0 -0.37499607e+00 0.77236557e+00 -0.14136913e+01 0.13957000e+00
- 1 2112 0 0 0.10644833e-01 0.63590197e+00 -0.53909386e+00 0.93957000e+00
- 1 -2112 0 0 -0.72551644e+00 0.12308469e+01 -0.36202343e+01 0.93957000e+00
- 1 -211 0 0 0.11960522e+00 -0.50372050e-01 -0.51685312e+00 0.13957000e+00
- 2 213 197 198 -0.12308513e+00 0.66759083e+00 -0.12628406e+02 0.84543739e+00
- 2 223 199 200 -0.18065317e+00 0.56434658e+00 -0.14972755e+02 0.79282639e+00
- 2 111 201 202 0.33500397e+00 0.38504402e+00 -0.19873107e+02 0.13498000e+00
- 1 2112 0 0 0.52971584e+00 -0.14028465e+01 -0.70501298e+02 0.93957000e+00
- 1 211 0 0 0.51936202e+00 0.38135131e+00 -0.16979922e+02 0.13957000e+00
- 2 -2214 203 204 0.87921096e+00 0.56333804e-01 -0.62193776e+02 0.11642018e+01
- 1 -211 0 0 -0.49562041e+00 -0.12479952e+01 -0.30699362e+03 0.13957000e+00
- 2 223 205 207 0.67906636e+00 0.10171476e+01 -0.67089116e+03 0.78105771e+00
- 2 111 208 209 0.21482307e-01 -0.36773948e+00 -0.12098965e+03 0.13498000e+00
- 2 111 210 211 -0.98382322e-01 -0.16158559e+00 -0.87011604e+02 0.13498000e+00
- 2 2224 212 213 0.14960037e-01 0.18117799e+01 -0.33878058e+04 0.12171916e+01
- 2 113 214 215 0.10173540e+00 -0.46572179e+00 -0.51063664e+03 0.76643566e+00
- 2 92 103 116 -0.41256019e+01 -0.19315486e+02 0.11364487e+04 0.10844486e+03
- 2 -423 216 217 -0.17090828e+01 -0.15147456e+02 0.27132847e+02 0.20067000e+01
- 2 -213 218 219 -0.75124043e+00 -0.32771995e+01 0.73649851e+01 0.65591443e+00
- 2 223 220 222 -0.35770486e-01 -0.26187871e+00 0.28860412e+01 0.77364168e+00
- 2 223 223 225 0.13724626e+00 -0.58100581e+00 0.26702440e+01 0.78284183e+00
- 2 213 226 227 -0.16784022e+00 -0.87759269e+00 0.36175842e+01 0.74075798e+00
- 2 -213 228 229 -0.14342334e-01 0.15025672e-01 0.17131681e+02 0.81135981e+00
- 1 211 0 0 0.20477588e+00 0.51726753e+00 0.16043676e+02 0.13957000e+00
- 1 -211 0 0 -0.42109228e-01 -0.67864912e+00 0.28593418e+02 0.13957000e+00
- 1 211 0 0 -0.56652098e-01 0.19262159e-01 0.64140088e+01 0.13957000e+00
- 1 -211 0 0 -0.10552648e+00 0.54536196e-02 0.78339083e+02 0.13957000e+00
- 2 221 230 231 0.18728529e+00 0.36834586e+00 0.41844113e+02 0.54745000e+00
- 2 -313 232 233 -0.29098569e+00 0.11482009e+00 0.26721049e+03 0.81572981e+00
- 2 311 234 234 -0.65507209e+00 -0.21054814e+00 0.13347037e+03 0.49767000e+00
- 2 213 235 236 -0.82628757e+00 0.67866974e+00 0.50373012e+03 0.69636077e+00
- 2 92 118 124 0.00000000e+00 0.00000000e+00 0.12754902e+03 0.84608333e+01
- 1 211 0 0 0.18448916e+00 0.30653061e+00 0.27783792e+01 0.13957000e+00
- 2 223 237 239 -0.10573339e+00 0.10816209e+00 0.66186231e+01 0.78414287e+00
- 2 223 240 242 0.64355221e+00 0.24197908e+00 0.64635184e+01 0.77420789e+00
- 2 -323 243 244 -0.68248371e-02 0.16220823e+00 0.11272933e+02 0.89814705e+00
- 2 333 245 246 -0.18378050e+00 -0.19602802e+00 0.17930956e+02 0.10159451e+01
- 2 333 247 248 -0.69023806e-01 0.31398194e+00 0.62495661e+02 0.10188482e+01
- 2 313 249 250 -0.46267883e+00 -0.93683394e+00 0.19988951e+02 0.88161493e+00
- 1 321 0 0 0.30936237e+00 0.16661626e+01 -0.87595650e+02 0.49360000e+00
- 1 -211 0 0 -0.12564686e+00 0.22001773e+00 -0.26212967e+02 0.13957000e+00
- 2 -311 251 251 0.15825720e-01 0.57273960e+00 -0.34629228e+02 0.49767000e+00
- 1 -211 0 0 -0.24187414e+00 0.19106686e+00 -0.40822934e+02 0.13957000e+00
- 1 2112 0 0 0.76136504e-01 0.85122489e+00 -0.48006895e+02 0.93957000e+00
- 1 211 0 0 0.21751588e+00 0.25041094e+00 -0.72081755e+01 0.13957000e+00
- 2 -3122 252 253 -0.93395748e+00 0.88243126e+00 -0.55074030e+02 0.11156800e+01
- 2 111 254 255 -0.36913031e+00 0.50129528e+00 -0.16093539e+02 0.13498000e+00
- 2 -311 256 256 -0.31422528e+00 -0.30857218e+00 -0.46485133e+01 0.49767000e+00
- 1 -211 0 0 0.19085223e+00 0.10463403e+00 -0.34085999e+01 0.13957000e+00
- 1 -211 0 0 -0.11159754e-01 0.12027714e+00 -0.40733049e+00 0.13957000e+00
- 1 211 0 0 -0.48660757e+00 0.12525880e-01 -0.34844673e+01 0.13957000e+00
- 2 111 257 258 -0.26513655e-02 -0.61435086e-01 -0.58982811e+00 0.13498000e+00
- 1 211 0 0 0.90276406e-01 -0.36021622e+00 -0.72820033e+00 0.13957000e+00
- 2 111 259 260 -0.67447856e+00 -0.26263792e+00 -0.14399929e+01 0.13498000e+00
- 1 -211 0 0 0.13149173e+00 -0.60207140e+00 -0.32869599e+00 0.13957000e+00
- 2 111 261 262 -0.57981297e+00 -0.63814084e+00 -0.38158419e+00 0.13498000e+00
- 1 211 0 0 -0.10605665e-01 -0.27881790e+00 -0.11483472e+00 0.13957000e+00
- 2 111 263 264 0.14680845e+00 -0.16974368e-01 0.44309242e+00 0.13498000e+00
- 1 22 0 0 -0.17540256e+00 -0.29533475e+00 -0.21921812e-01 0.00000000e+00
- 1 22 0 0 -0.50758312e-01 -0.12173571e+00 -0.95563514e-01 0.00000000e+00
- 2 310 265 266 0.41278863e+00 -0.39826677e+00 0.76711291e+00 0.49767000e+00
- 2 -213 267 268 0.71971695e+00 -0.20281997e+00 0.77294117e+00 0.76303520e+00
- 1 211 0 0 -0.10257851e-01 -0.17294178e+00 0.23331041e+00 0.13957000e+00
- 1 2112 0 0 0.77263488e+00 -0.10740820e+01 0.30205261e+01 0.93957000e+00
- 2 111 269 270 0.54108655e-01 -0.25922690e+00 0.43744144e+00 0.13498000e+00
- 1 22 0 0 -0.82602583e-01 -0.39167981e+00 0.36853502e+01 0.00000000e+00
- 1 22 0 0 -0.35642276e+00 -0.27767869e+00 0.11811785e+02 0.00000000e+00
- 1 22 0 0 0.62829175e+00 0.39676386e+00 0.43419800e+01 0.00000000e+00
- 1 22 0 0 0.87723450e-01 0.24917533e-02 0.50846206e+00 0.00000000e+00
- 1 211 0 0 0.40105338e-02 0.22071717e+00 0.15684296e+02 0.13957000e+00
- 1 -211 0 0 -0.28512901e+00 0.83288718e-01 0.50332011e+01 0.13957000e+00
- 1 211 0 0 0.20607475e+00 0.20559944e+00 0.21742997e+02 0.13957000e+00
- 2 111 271 272 -0.60565171e+00 0.25934716e+00 0.40092432e+02 0.13498000e+00
- 2 111 273 274 0.24889351e-03 0.28270463e+00 0.13379578e+02 0.13498000e+00
- 2 111 275 276 -0.21939081e+00 0.23559465e+00 0.25145580e+02 0.13498000e+00
- 2 111 277 278 0.15781157e-02 0.21201266e+00 0.16330210e+02 0.13498000e+00
- 1 -211 0 0 -0.58456518e+00 0.36310936e+00 0.21607767e+02 0.13957000e+00
- 1 211 0 0 0.56856059e-01 -0.10593199e+00 0.20285691e+01 0.13957000e+00
- 1 22 0 0 0.33784537e+00 0.89892205e+00 0.25743882e+02 0.00000000e+00
- 1 22 0 0 0.23581289e+00 0.45512789e+00 0.11808896e+02 0.00000000e+00
- 1 211 0 0 -0.55106205e-01 0.11220069e-01 0.18017580e+01 0.13957000e+00
- 1 -211 0 0 -0.51835495e-01 0.11988414e-01 0.31001341e+01 0.13957000e+00
- 2 111 279 280 0.17468330e+00 -0.42054347e-02 0.60556241e+01 0.13498000e+00
- 1 22 0 0 -0.13453378e+00 -0.49004484e-02 0.10789322e+01 0.00000000e+00
- 1 22 0 0 -0.24654948e+00 0.81349362e-02 0.40805562e+01 0.00000000e+00
- 1 211 0 0 0.15079899e-01 -0.17926059e+00 0.30166049e+01 0.13957000e+00
- 2 111 281 282 -0.37009435e+00 0.26013565e+00 0.11498607e+02 0.13498000e+00
- 1 -211 0 0 0.41204718e-01 -0.30224127e+00 0.81595523e+01 0.13957000e+00
- 1 211 0 0 0.22106293e+00 0.91200269e-01 0.57970317e+01 0.13957000e+00
- 2 111 283 285 -0.95390661e-01 -0.84485210e-01 0.92448403e+01 0.13498000e+00
- 1 -211 0 0 0.35211609e+00 0.74739153e+00 0.32441157e+02 0.13957000e+00
- 2 111 286 287 0.32464775e+00 -0.31924834e-01 0.70553338e+01 0.13498000e+00
- 1 321 0 0 0.19798300e+00 0.18234399e+00 0.42980492e+01 0.49360000e+00
- 2 111 288 289 -0.25044232e+00 0.11360610e+00 0.54574368e+01 0.13498000e+00
- 1 211 0 0 0.22834465e+00 -0.28940860e+00 0.55198208e+01 0.13957000e+00
- 1 -211 0 0 -0.13364990e+00 0.12380169e+00 0.35966692e+01 0.13957000e+00
- 2 111 290 291 0.11249421e+00 0.42379508e-01 0.20001720e+01 0.13498000e+00
- 1 22 0 0 -0.23696281e+00 -0.41160466e+00 0.18027504e+02 0.00000000e+00
- 1 22 0 0 -0.36917670e+00 -0.10962940e+00 0.39781530e+02 0.00000000e+00
- 1 211 0 0 0.43672523e+00 0.49980491e+00 0.55649924e+02 0.13957000e+00
- 1 -211 0 0 -0.88805250e-01 -0.10100992e+00 0.29607718e+02 0.13957000e+00
- 1 -13 0 0 -0.61429250e-01 0.47484893e-01 0.62992083e+00 0.10566000e+00
- 1 14 0 0 -0.69327343e-01 0.16715899e+00 0.23923753e-02 0.00000000e+00
- 2 221 292 293 0.97271718e-01 -0.21134738e+01 0.16590109e+01 0.54745000e+00
- 1 2212 0 0 -0.29882339e+00 0.53434140e+00 0.54837336e+00 0.93827000e+00
- 1 -211 0 0 0.44524543e-02 -0.73013178e-02 0.13118939e+00 0.13957000e+00
- 1 211 0 0 -0.22634469e+00 0.34451086e+00 0.62246294e-01 0.13957000e+00
- 2 111 294 295 -0.10837498e+00 -0.27768127e+00 -0.43712413e+00 0.13498000e+00
- 2 111 296 297 -0.84226425e-01 -0.33445363e-01 -0.14799119e+00 0.13498000e+00
- 2 111 298 299 -0.31199667e-01 -0.60876485e-01 0.18078929e-01 0.13498000e+00
- 2 221 300 302 0.34623558e+00 -0.11734390e+00 -0.29068403e+00 0.54745000e+00
- 1 211 0 0 0.23656440e-02 0.51943463e+00 -0.11829071e+02 0.13957000e+00
- 2 111 303 304 -0.12545077e+00 0.14815620e+00 -0.79933542e+00 0.13498000e+00
- 1 22 0 0 -0.31335523e+00 0.42365879e+00 -0.46135985e+01 0.00000000e+00
- 2 111 305 306 0.13270207e+00 0.14068778e+00 -0.10359157e+02 0.13498000e+00
- 1 22 0 0 0.60174393e-01 0.10961764e+00 -0.70509647e+01 0.00000000e+00
- 1 22 0 0 0.27482957e+00 0.27542638e+00 -0.12822142e+02 0.00000000e+00
- 1 -2112 0 0 0.76724903e+00 -0.10589975e+00 -0.52644164e+02 0.93957000e+00
- 1 -211 0 0 0.11196194e+00 0.16223355e+00 -0.95496118e+01 0.13957000e+00
- 1 211 0 0 0.50668635e+00 0.27431967e+00 -0.21748447e+03 0.13957000e+00
- 1 -211 0 0 0.76099657e-01 0.46874742e+00 -0.23068721e+03 0.13957000e+00
- 2 111 307 308 0.96280355e-01 0.27408050e+00 -0.22271948e+03 0.13498000e+00
- 1 22 0 0 -0.27902997e-01 -0.31047893e+00 -0.88774376e+02 0.00000000e+00
- 1 22 0 0 0.49385304e-01 -0.57260555e-01 -0.32215278e+02 0.00000000e+00
- 1 22 0 0 -0.60619346e-01 -0.17290057e+00 -0.59496249e+02 0.00000000e+00
- 1 22 0 0 -0.37762976e-01 0.11314973e-01 -0.27515355e+02 0.00000000e+00
- 1 2212 0 0 0.18480766e-01 0.14233416e+01 -0.29976548e+04 0.93827000e+00
- 1 211 0 0 -0.35207295e-02 0.38843821e+00 -0.39015105e+03 0.13957000e+00
- 1 211 0 0 -0.16044613e+00 -0.32786418e+00 -0.42382073e+03 0.13957000e+00
- 1 -211 0 0 0.26218153e+00 -0.13785761e+00 -0.86815908e+02 0.13957000e+00
- 2 -421 309 313 -0.16051833e+01 -0.14569097e+02 0.25837028e+02 0.18645000e+01
- 1 22 0 0 -0.10389940e+00 -0.57835920e+00 0.12958183e+01 0.00000000e+00
- 1 -211 0 0 -0.55377618e+00 -0.15180308e+01 0.29982076e+01 0.13957000e+00
- 2 111 314 315 -0.19746425e+00 -0.17591687e+01 0.43667775e+01 0.13498000e+00
- 1 -211 0 0 -0.10425983e+00 0.88645938e-01 0.29004106e+00 0.13957000e+00
- 1 211 0 0 0.38545820e-01 -0.18795883e+00 0.20489176e+01 0.13957000e+00
- 2 111 316 317 0.29943529e-01 -0.16256582e+00 0.54708256e+00 0.13498000e+00
- 1 -211 0 0 0.23665559e+00 -0.35723862e+00 0.14845626e+01 0.13957000e+00
- 1 211 0 0 0.47161151e-01 -0.17745477e+00 0.97074806e+00 0.13957000e+00
- 2 111 318 319 -0.14657048e+00 -0.46312426e-01 0.21493339e+00 0.13498000e+00
- 1 211 0 0 -0.17910535e+00 0.33738959e-01 0.93679885e+00 0.13957000e+00
- 2 111 320 321 0.11265126e-01 -0.91133165e+00 0.26807853e+01 0.13498000e+00
- 1 -211 0 0 0.23191587e+00 -0.10257770e+00 0.26063250e+01 0.13957000e+00
- 2 111 322 323 -0.24625820e+00 0.11760337e+00 0.14525356e+02 0.13498000e+00
- 1 22 0 0 0.18836677e+00 0.50984634e+00 0.32319554e+02 0.00000000e+00
- 1 22 0 0 -0.10814755e-02 -0.14150048e+00 0.95245591e+01 0.00000000e+00
- 1 -321 0 0 -0.94508487e-01 -0.12972025e+00 0.13916849e+03 0.49360000e+00
- 1 211 0 0 -0.19647720e+00 0.24454034e+00 0.12804200e+03 0.13957000e+00
- 1 130 0 0 -0.65507209e+00 -0.21054814e+00 0.13347037e+03 0.49767000e+00
- 1 211 0 0 -0.58547039e+00 0.27619581e+00 0.39086369e+03 0.13957000e+00
- 2 111 324 325 -0.24081717e+00 0.40247393e+00 0.11286643e+03 0.13498000e+00
- 1 211 0 0 -0.87624828e-01 0.24398397e+00 0.31044447e+01 0.13957000e+00
- 1 -211 0 0 0.12948553e+00 -0.18564516e-01 0.73720383e+00 0.13957000e+00
- 2 111 326 327 -0.14759409e+00 -0.11725737e+00 0.27769746e+01 0.13498000e+00
- 1 -211 0 0 -0.90696427e-01 0.78198555e-01 0.95865951e+00 0.13957000e+00
- 1 211 0 0 0.22418541e+00 0.82891104e-01 0.27346608e+01 0.13957000e+00
- 2 111 328 329 0.51006322e+00 0.80889419e-01 0.27701981e+01 0.13498000e+00
- 2 -311 330 330 -0.47442723e-01 0.39549160e+00 0.80263338e+01 0.49767000e+00
- 1 -211 0 0 0.40617886e-01 -0.23328337e+00 0.32465990e+01 0.13957000e+00
- 1 130 0 0 -0.19339787e+00 -0.92466281e-01 0.95494855e+01 0.49767000e+00
- 2 310 331 332 0.96173665e-02 -0.10356174e+00 0.83814707e+01 0.49767000e+00
- 1 -321 0 0 -0.28132252e-01 0.10844199e+00 0.37234380e+02 0.49360000e+00
- 1 321 0 0 -0.40891554e-01 0.20553995e+00 0.25261282e+02 0.49360000e+00
- 1 321 0 0 -0.18609109e-01 -0.47750246e+00 0.82830222e+01 0.49360000e+00
- 1 -211 0 0 -0.44406972e+00 -0.45933148e+00 0.11705928e+02 0.13957000e+00
- 1 130 0 0 0.15825720e-01 0.57273960e+00 -0.34629228e+02 0.49767000e+00
- 1 -2212 0 0 -0.75919390e+00 0.83847283e+00 -0.46270011e+02 0.93827000e+00
- 1 211 0 0 -0.17476358e+00 0.43958430e-01 -0.88040192e+01 0.13957000e+00
- 1 22 0 0 -0.26764792e+00 0.35150071e+00 -0.97219968e+01 0.00000000e+00
- 1 22 0 0 -0.10148239e+00 0.14979457e+00 -0.63715427e+01 0.00000000e+00
- 2 310 333 334 -0.31422528e+00 -0.30857218e+00 -0.46485133e+01 0.49767000e+00
- 1 22 0 0 0.11705734e-01 -0.10251514e+00 -0.37109099e+00 0.00000000e+00
- 1 22 0 0 -0.14357099e-01 0.41080051e-01 -0.21873711e+00 0.00000000e+00
- 1 22 0 0 -0.63190924e+00 -0.23089072e+00 -0.13905758e+01 0.00000000e+00
- 1 22 0 0 -0.42569315e-01 -0.31747202e-01 -0.49417049e-01 0.00000000e+00
- 1 22 0 0 -0.13041256e+00 -0.21115922e+00 -0.65638461e-01 0.00000000e+00
- 1 22 0 0 -0.44940041e+00 -0.42698162e+00 -0.31594573e+00 0.00000000e+00
- 1 22 0 0 0.71091926e-01 -0.73074068e-01 0.18179865e+00 0.00000000e+00
- 1 22 0 0 0.75716523e-01 0.56099701e-01 0.26129376e+00 0.00000000e+00
- 1 -211 0 0 0.15737037e+00 -0.39135186e+00 0.32674901e+00 0.13957000e+00
- 1 211 0 0 0.25541826e+00 -0.69149149e-02 0.44036390e+00 0.13957000e+00
- 1 -211 0 0 0.82622115e+00 -0.26417976e+00 0.69451867e+00 0.13957000e+00
- 2 111 335 336 -0.10650420e+00 0.61359790e-01 0.78422499e-01 0.13498000e+00
- 1 22 0 0 0.22672372e-01 -0.11874552e+00 0.32326456e+00 0.00000000e+00
- 1 22 0 0 0.31436283e-01 -0.14048138e+00 0.11417688e+00 0.00000000e+00
- 1 22 0 0 -0.53343984e+00 0.19233840e+00 0.31803776e+02 0.00000000e+00
- 1 22 0 0 -0.72211865e-01 0.67008763e-01 0.82886556e+01 0.00000000e+00
- 1 22 0 0 -0.31788105e-01 0.27216102e+00 0.10926511e+02 0.00000000e+00
- 1 22 0 0 0.32036998e-01 0.10543615e-01 0.24530671e+01 0.00000000e+00
- 1 22 0 0 -0.18823855e+00 0.24048955e+00 0.20054566e+02 0.00000000e+00
- 1 22 0 0 -0.31152263e-01 -0.48949019e-02 0.50910136e+01 0.00000000e+00
- 1 22 0 0 0.59109232e-01 0.61015095e-01 0.42101330e+01 0.00000000e+00
- 1 22 0 0 -0.57531117e-01 0.15099756e+00 0.12120077e+02 0.00000000e+00
- 1 22 0 0 0.80930176e-01 -0.50987865e-01 0.16442996e+01 0.00000000e+00
- 1 22 0 0 0.93753127e-01 0.46782430e-01 0.44113245e+01 0.00000000e+00
- 1 22 0 0 -0.20245932e+00 0.10392631e+00 0.42745857e+01 0.00000000e+00
- 1 22 0 0 -0.16763504e+00 0.15620934e+00 0.72240215e+01 0.00000000e+00
- 1 22 0 0 -0.75800735e-01 -0.93990517e-02 0.23827627e+01 0.00000000e+00
- 1 11 0 0 0.14595963e-01 -0.32612695e-01 0.36686250e+01 0.51000000e-03
- 1 -11 0 0 -0.34185890e-01 -0.42473463e-01 0.31934526e+01 0.51000000e-03
- 1 22 0 0 0.15169878e+00 -0.72514707e-01 0.27227727e+01 0.00000000e+00
- 1 22 0 0 0.17294897e+00 0.40589874e-01 0.43325611e+01 0.00000000e+00
- 1 22 0 0 -0.26651414e+00 0.10347259e+00 0.52251583e+01 0.00000000e+00
- 1 22 0 0 0.16071812e-01 0.10133513e-01 0.23227848e+00 0.00000000e+00
- 1 22 0 0 -0.30686129e-01 0.71467151e-02 0.25674685e+00 0.00000000e+00
- 1 22 0 0 0.14318034e+00 0.35232793e-01 0.17434252e+01 0.00000000e+00
- 1 22 0 0 0.27044803e+00 -0.61178370e+00 0.42602741e+00 0.00000000e+00
- 1 22 0 0 -0.17317631e+00 -0.15016901e+01 0.12329835e+01 0.00000000e+00
- 1 22 0 0 -0.65257125e-01 -0.71532400e-01 -0.59503589e-01 0.00000000e+00
- 1 22 0 0 -0.43117856e-01 -0.20614887e+00 -0.37762054e+00 0.00000000e+00
- 1 22 0 0 -0.10326791e+00 0.79678634e-02 -0.57349798e-01 0.00000000e+00
- 1 22 0 0 0.19041485e-01 -0.41413226e-01 -0.90641396e-01 0.00000000e+00
- 1 22 0 0 -0.24042023e-01 0.25437949e-01 -0.36065771e-01 0.00000000e+00
- 1 22 0 0 -0.71576442e-02 -0.86314434e-01 0.54144701e-01 0.00000000e+00
- 1 211 0 0 0.18660960e+00 0.19673091e-01 -0.43832860e-02 0.13957000e+00
- 1 -211 0 0 0.18349551e+00 -0.84734175e-01 -0.18252507e+00 0.13957000e+00
- 2 111 337 338 -0.23869533e-01 -0.52282821e-01 -0.10377567e+00 0.13498000e+00
- 1 22 0 0 -0.11587208e+00 0.42304610e-01 -0.52674382e+00 0.00000000e+00
- 1 22 0 0 -0.95786885e-02 0.10585159e+00 -0.27259160e+00 0.00000000e+00
- 1 22 0 0 -0.16471631e-01 0.34957599e-01 -0.36140359e+01 0.00000000e+00
- 1 22 0 0 0.14917370e+00 0.10573019e+00 -0.67451207e+01 0.00000000e+00
- 1 22 0 0 -0.14397672e-01 0.37842148e-01 -0.66666623e+02 0.00000000e+00
- 1 22 0 0 0.11067803e+00 0.23623836e+00 -0.15605286e+03 0.00000000e+00
- 1 -321 0 0 -0.47093848e+00 -0.40139131e+01 0.72113950e+01 0.49360000e+00
- 1 321 0 0 -0.81942963e+00 -0.70295886e+01 0.12926385e+02 0.49360000e+00
- 1 -211 0 0 -0.22959890e+00 -0.97123223e+00 0.16488715e+01 0.13957000e+00
- 1 211 0 0 -0.10323383e+00 -0.10390042e+01 0.14612136e+01 0.13957000e+00
- 2 111 339 340 0.18017495e-01 -0.15153589e+01 0.25891627e+01 0.13498000e+00
- 1 22 0 0 -0.12085585e+00 -0.13066513e+01 0.30887192e+01 0.00000000e+00
- 1 22 0 0 -0.76608397e-01 -0.45251740e+00 0.12780584e+01 0.00000000e+00
- 1 22 0 0 0.39195706e-01 -0.17148265e+00 0.54678167e+00 0.00000000e+00
- 1 22 0 0 -0.92521776e-02 0.89168289e-02 0.30088253e-03 0.00000000e+00
- 1 22 0 0 -0.15060496e+00 0.66473936e-02 0.14779751e+00 0.00000000e+00
- 1 22 0 0 0.40344809e-02 -0.52959820e-01 0.67135883e-01 0.00000000e+00
- 1 22 0 0 0.46718273e-01 -0.54138865e+00 0.14259537e+01 0.00000000e+00
- 1 22 0 0 -0.35453147e-01 -0.36994300e+00 0.12548317e+01 0.00000000e+00
- 1 22 0 0 -0.86375803e-01 0.26484997e-01 0.82447326e+01 0.00000000e+00
- 1 22 0 0 -0.15988240e+00 0.91118373e-01 0.62806236e+01 0.00000000e+00
- 1 22 0 0 -0.14420756e+00 0.26549078e+00 0.56685367e+02 0.00000000e+00
- 1 22 0 0 -0.96609612e-01 0.13698315e+00 0.56181060e+02 0.00000000e+00
- 1 22 0 0 -0.51331984e-01 -0.12461676e+00 0.15241769e+01 0.00000000e+00
- 1 22 0 0 -0.96262109e-01 0.73593950e-02 0.12527976e+01 0.00000000e+00
- 1 22 0 0 0.42769688e+00 0.68797833e-01 0.25329550e+01 0.00000000e+00
- 1 22 0 0 0.82366344e-01 0.12091586e-01 0.23724309e+00 0.00000000e+00
- 1 130 0 0 -0.47442723e-01 0.39549160e+00 0.80263338e+01 0.49767000e+00
- 1 -211 0 0 0.21737563e-01 0.15688683e+00 0.38213770e+01 0.13957000e+00
- 1 211 0 0 -0.12120197e-01 -0.26044856e+00 0.45600937e+01 0.13957000e+00
- 1 -211 0 0 0.21534243e-01 -0.23815941e+00 -0.25327954e+01 0.13957000e+00
- 1 211 0 0 -0.33575952e+00 -0.70412761e-01 -0.21157179e+01 0.13957000e+00
- 1 22 0 0 -0.12116574e+00 0.14778566e-01 0.21932480e-01 0.00000000e+00
- 1 22 0 0 0.14661538e-01 0.46581224e-01 0.56490020e-01 0.00000000e+00
- 1 22 0 0 -0.64840577e-01 -0.60034208e-01 -0.10592907e+00 0.00000000e+00
- 1 22 0 0 0.40971043e-01 0.77513867e-02 0.21534015e-02 0.00000000e+00
- 1 22 0 0 -0.58155401e-01 -0.76760427e+00 0.13204934e+01 0.00000000e+00
- 1 22 0 0 0.76172897e-01 -0.74775467e+00 0.12686693e+01 0.00000000e+00
- 520
- 2 25 2 3 0.11789636e+03 -0.51191226e+02 0.30848978e+03 0.12500250e+03
- 2 23 4 7 0.84475964e+02 -0.16768077e+02 0.24465297e+03 0.91091605e+02
- 2 23 8 10 0.33420400e+02 -0.34423149e+02 0.63836807e+02 0.18215635e+02
- 1 13 0 0 -0.59644670e+01 0.82969649e+00 -0.55798308e+01 0.10566000e+00
- 1 22 0 0 0.45974784e+00 -0.16660416e+00 0.67301766e+00 0.00000000e+00
- 1 -13 0 0 0.89974106e+02 -0.17430024e+02 0.24954145e+03 0.10566000e+00
- 1 22 0 0 0.65771509e-02 -0.11450384e-02 0.18336858e-01 0.00000000e+00
- 1 13 0 0 0.34512386e+02 -0.27680002e+02 0.57817036e+02 0.10566000e+00
- 1 -13 0 0 -0.10919524e+01 -0.67431002e+01 0.60197166e+01 0.10566000e+00
- 1 22 0 0 -0.33584581e-04 -0.47212783e-04 0.54484760e-04 0.00000000e+00
- 2 1 69 69 -0.13187048e+01 0.16905745e+02 -0.22840967e+01 0.33000000e+00
- 2 21 69 69 0.15126691e+00 0.19709378e+01 -0.51395834e+00 0.00000000e+00
- 2 21 69 69 0.32813522e+01 0.80116493e+01 0.57334070e+00 0.00000000e+00
- 2 21 69 69 0.21707517e+01 0.39957444e+01 -0.74518459e+00 0.00000000e+00
- 2 21 69 69 0.25393956e-01 0.26698077e+00 -0.22579447e-01 0.00000000e+00
- 2 21 69 69 -0.16965701e+01 0.15167247e+01 -0.11813888e+01 0.00000000e+00
- 2 21 69 69 -0.55991998e+01 0.31548935e+01 -0.17668678e+01 0.00000000e+00
- 2 21 69 69 -0.60794374e+01 0.21859179e+01 -0.50401081e+00 0.00000000e+00
- 2 21 69 69 -0.12832579e+02 0.53226450e+01 0.11685099e+01 0.00000000e+00
- 2 21 69 69 -0.96600297e+00 -0.81213430e+00 -0.72559706e+00 0.00000000e+00
- 2 21 69 69 0.25278095e+01 -0.54500628e+01 -0.64419438e-01 0.00000000e+00
- 2 21 69 69 0.14174916e+01 -0.21983662e+00 -0.31045338e+01 0.00000000e+00
- 2 21 69 69 0.58516675e+01 -0.17186148e+01 -0.16051127e+02 0.00000000e+00
- 2 21 69 69 -0.14174916e+01 0.21983662e+00 -0.39538620e+01 0.00000000e+00
- 2 21 69 69 -0.25278095e+01 0.54500628e+01 -0.25857475e+02 0.00000000e+00
- 2 21 69 69 -0.76900615e+00 0.89665938e+00 -0.11807875e+02 0.00000000e+00
- 2 21 69 69 -0.58516675e+01 0.17186148e+01 -0.63727487e+02 0.00000000e+00
- 2 21 69 69 0.13532391e+00 -0.33445087e+00 -0.24600732e+01 0.00000000e+00
- 2 21 69 69 0.18858324e+01 -0.15695793e+01 -0.32794696e+01 0.00000000e+00
- 2 21 69 69 -0.41151994e-01 -0.54139023e+00 -0.27357561e+00 0.00000000e+00
- 2 21 69 69 0.11282233e+00 -0.94976748e+00 -0.87172263e+01 0.00000000e+00
- 2 21 69 69 0.84754100e+00 -0.47877506e+00 -0.11872546e+02 0.00000000e+00
- 2 21 69 69 -0.36974279e+00 0.76097194e+00 -0.14704949e+02 0.00000000e+00
- 2 21 69 69 -0.14935262e+00 -0.21451510e-03 -0.17588199e+03 0.00000000e+00
- 2 21 69 69 -0.44149754e+00 0.28390783e+01 -0.67829632e+03 0.00000000e+00
- 2 21 69 69 -0.15729912e+00 -0.21674850e+00 -0.26881113e+02 0.00000000e+00
- 2 2101 69 69 0.16079111e+01 -0.20546939e+01 -0.53443866e+04 0.57933000e+00
- 2 4 123 123 -0.18715361e+02 -0.38121711e+01 0.56332595e+02 0.15000000e+01
- 2 21 123 123 -0.18318269e+01 0.12652667e+00 0.52249024e+01 0.00000000e+00
- 2 21 123 123 -0.36123786e+02 0.15816178e+01 0.10546170e+03 0.00000000e+00
- 2 21 123 123 -0.20457134e+02 0.53103384e+00 0.62195644e+02 0.00000000e+00
- 2 21 123 123 -0.96080751e+01 -0.16283343e+01 0.25951912e+02 0.00000000e+00
- 2 21 123 123 -0.20803265e+01 0.22677855e+01 0.58924177e+01 0.00000000e+00
- 2 21 123 123 -0.99577296e+01 0.39729723e+01 0.22845339e+02 0.00000000e+00
- 2 21 123 123 -0.54287698e+00 0.16074834e+01 0.29433590e+01 0.00000000e+00
- 2 21 123 123 0.24272175e+01 0.13736735e+00 0.91687580e+01 0.00000000e+00
- 2 21 123 123 -0.74526478e+00 -0.22672866e+01 0.19256868e+02 0.00000000e+00
- 2 21 123 123 -0.24272175e+01 -0.13736735e+00 0.35245843e+02 0.00000000e+00
- 2 21 123 123 -0.32783133e+01 0.24496549e+01 0.78548729e+02 0.00000000e+00
- 2 21 123 123 -0.24588445e+00 0.13406690e+01 0.24132002e+02 0.00000000e+00
- 2 21 123 123 0.74526478e+00 0.22672866e+01 0.23775770e+03 0.00000000e+00
- 2 21 123 123 0.32783133e+01 -0.24496549e+01 0.20726927e+04 0.00000000e+00
- 2 21 123 123 0.24588445e+00 -0.13406690e+01 0.12723530e+03 0.00000000e+00
- 2 21 123 123 -0.26597382e+00 0.35853306e+00 0.18320430e+01 0.00000000e+00
- 2 21 123 123 -0.10091689e+01 0.54566524e+01 0.24784862e+03 0.00000000e+00
- 2 21 123 123 -0.17214422e+01 0.80349228e+00 0.11242456e+03 0.00000000e+00
- 2 21 123 123 -0.57169773e-01 -0.27534664e+00 0.12260140e+01 0.00000000e+00
- 2 21 123 123 0.92014231e+00 0.14174283e+00 0.55326228e+02 0.00000000e+00
- 2 2203 123 123 0.14788265e+01 0.88105213e+00 0.33111269e+04 0.77133000e+00
- 2 2 175 175 0.31330275e+01 0.27726332e+01 -0.17821437e+03 0.00000000e+00
- 2 21 175 175 0.13993555e+00 0.78797570e+00 -0.33883373e+02 0.00000000e+00
- 2 -2 175 175 -0.31330275e+01 -0.27726332e+01 -0.24171727e+03 0.00000000e+00
- 2 1 183 183 0.22844625e+01 0.26069385e+01 0.15128209e+01 0.00000000e+00
- 2 21 183 183 0.96600297e+00 0.81213430e+00 -0.88191204e+00 0.00000000e+00
- 2 21 183 183 0.54287698e+00 -0.16074834e+01 -0.77484972e+01 0.00000000e+00
- 2 21 183 183 -0.13993555e+00 -0.78797570e+00 -0.29912119e+01 0.00000000e+00
- 2 21 183 183 0.76900615e+00 -0.89665938e+00 -0.70155719e+01 0.00000000e+00
- 2 -1 183 183 -0.22844625e+01 -0.26069385e+01 -0.60897869e+02 0.00000000e+00
- 2 92 70 122 -0.20202349e+02 0.40870194e+02 -0.63973224e+04 0.93263764e+03
- 2 1114 194 195 -0.70975782e+00 0.11606695e+02 -0.14675534e+01 0.12140641e+01
- 2 213 196 197 0.37998238e+00 0.76206690e+01 -0.92174955e+00 0.66460087e+00
- 2 -2214 198 199 0.15204406e+01 0.40100399e+01 0.42393336e+00 0.12983541e+01
- 1 2212 0 0 0.15103906e+01 0.34590303e+01 -0.87874149e+00 0.93827000e+00
- 1 -2212 0 0 0.10548241e+01 0.43978589e+01 0.58182440e+00 0.93827000e+00
- 2 221 200 202 -0.12398713e+01 0.14695302e+01 -0.15341423e+01 0.54745000e+00
- 2 213 203 204 -0.47318858e+01 0.26360387e+01 -0.15296549e+01 0.83462001e+00
- 2 -213 205 206 -0.42188121e+01 0.20278908e+01 -0.16373759e+00 0.78522110e+00
- 2 113 207 208 -0.24704150e+01 0.92093185e+00 0.22164701e+00 0.74739679e+00
- 2 213 209 210 -0.61534078e+01 0.20636022e+01 -0.24691945e+00 0.76072030e+00
- 2 113 211 212 -0.38216701e+01 0.17234621e+01 0.17978245e+00 0.72418082e+00
- 1 -211 0 0 -0.88794182e-01 0.11276550e+00 -0.78748356e-01 0.13957000e+00
- 2 111 213 214 -0.61520340e+00 -0.26011549e+00 0.18698346e+00 0.13498000e+00
- 2 213 215 216 -0.27111206e+01 0.49840656e+00 -0.75015718e+00 0.51930923e+00
- 1 -211 0 0 0.38207596e-01 -0.12465835e+00 0.13189668e+00 0.13957000e+00
- 1 211 0 0 0.41623341e-01 0.22343765e+00 -0.97812598e-01 0.13957000e+00
- 2 -213 217 218 0.51813814e+00 -0.28243748e+00 0.51947119e+00 0.45680144e+00
- 2 111 219 220 0.16295855e+00 -0.24290877e+01 -0.98767626e+00 0.13498000e+00
- 2 221 221 222 0.12975946e+00 -0.97777881e+00 -0.84825860e-01 0.54745000e+00
- 2 221 223 225 0.43952731e+00 -0.10668128e+01 -0.36593049e+00 0.54745000e+00
- 2 213 226 227 0.18038938e+01 -0.76701436e+00 -0.15645548e+01 0.88658142e+00
- 2 113 228 229 0.67033604e+00 0.61921744e-01 -0.21689998e+01 0.70409158e+00
- 2 223 230 232 0.68881730e+00 -0.49414317e+00 -0.31291451e+01 0.78366607e+00
- 2 313 233 234 0.88916302e+00 -0.49037913e+00 -0.24078138e+01 0.87952559e+00
- 2 3122 235 236 0.11299023e+01 -0.36157190e+00 -0.42831930e+01 0.11156800e+01
- 2 223 237 239 0.58104309e+00 0.42465826e+00 -0.22578234e+01 0.82996279e+00
- 1 -2112 0 0 0.53854608e+00 -0.10731251e+00 -0.51819290e+01 0.93957000e+00
- 2 313 240 241 -0.44735884e+00 0.78957786e+00 -0.27588306e+01 0.89778596e+00
- 2 -313 242 243 0.19581368e+00 0.34064230e+00 -0.60233018e+01 0.92583435e+00
- 2 223 244 246 -0.62032089e+00 0.14139019e+01 -0.53011812e+01 0.78686832e+00
- 2 313 247 248 -0.10142383e+01 0.12730969e+01 -0.90084611e+01 0.10150978e+01
- 2 -311 249 249 -0.76697325e+00 0.22277027e+00 -0.13750880e+02 0.49767000e+00
- 2 311 250 250 -0.10496047e+01 0.13509415e+01 -0.95458138e+01 0.49767000e+00
- 2 333 251 252 -0.24026828e+01 0.14039395e+01 -0.28361297e+02 0.10280483e+01
- 2 -323 253 254 -0.15161376e+01 0.14267568e+00 -0.14244110e+02 0.91037431e+00
- 2 323 255 256 -0.66646981e+00 -0.17067654e+00 -0.94257812e+01 0.89883075e+00
- 1 -321 0 0 -0.15030079e+00 0.75224600e+00 -0.50738710e+01 0.49360000e+00
- 1 321 0 0 0.63554840e+00 -0.10255076e+01 -0.34564521e+01 0.49360000e+00
- 2 -323 257 258 0.20169590e-01 -0.82585170e+00 -0.27055183e+01 0.96941494e+00
- 2 221 259 260 0.20479654e+00 -0.68709952e-01 -0.78195630e+00 0.54745000e+00
- 2 323 261 262 0.35656922e+00 -0.54094021e+00 -0.31404322e+01 0.10801827e+01
- 2 -323 263 264 0.69237963e+00 -0.59012834e+00 -0.91054282e+01 0.93120743e+00
- 2 223 265 267 0.29750151e+00 -0.29069710e+00 -0.52559778e+01 0.78497380e+00
- 1 211 0 0 -0.28883045e+00 0.10714514e+00 -0.42474139e+01 0.13957000e+00
- 2 223 268 269 0.18399019e+00 -0.39512513e+00 -0.29815429e+02 0.78725063e+00
- 2 111 270 271 0.30440481e+00 -0.12159515e+00 -0.31964604e+02 0.13498000e+00
- 2 113 272 273 -0.75807329e+00 0.73163075e+00 -0.21961261e+03 0.77408660e+00
- 1 -211 0 0 0.19375842e+00 0.85487645e+00 -0.56461516e+02 0.13957000e+00
- 2 213 274 275 -0.19563858e+00 0.57704344e+00 -0.59114482e+02 0.45927287e+00
- 2 311 276 276 0.19290615e-01 -0.34053531e+00 -0.84553426e+02 0.49767000e+00
- 2 -323 277 278 -0.47028695e+00 0.19940781e+01 -0.78036470e+03 0.88041596e+00
- 2 2214 279 280 0.12372951e+01 -0.19753256e+01 -0.25310462e+04 0.13172637e+01
- 2 221 281 282 0.46643395e+00 -0.63490526e+00 -0.24443472e+04 0.54745000e+00
- 2 92 124 174 -0.99971901e+02 0.12013040e+02 0.66206702e+04 0.49235837e+03
- 2 423 283 284 -0.13780054e+02 -0.25482373e+01 0.41668743e+02 0.20067000e+01
- 1 2212 0 0 -0.21522600e+02 -0.37584627e+00 0.64004297e+02 0.93827000e+00
- 1 -2212 0 0 -0.84966266e+01 0.57881097e+00 0.24471809e+02 0.93827000e+00
- 2 113 285 286 -0.17070332e+02 -0.98491257e+00 0.49671596e+02 0.72432352e+00
- 2 213 287 288 -0.61286081e+01 0.28308844e+00 0.16359437e+02 0.66206398e+00
- 2 -213 289 290 -0.11555184e+02 0.32523564e+00 0.35768348e+02 0.67829610e+00
- 2 3222 291 292 -0.55781875e+01 0.75751793e+00 0.15421268e+02 0.11893700e+01
- 2 311 293 293 -0.10586287e+01 0.87216396e-01 0.33604133e+01 0.49767000e+00
- 1 -2112 0 0 -0.26846990e+01 -0.23681155e+00 0.74792854e+01 0.93957000e+00
- 2 311 294 294 -0.12207479e+01 0.95166110e+00 0.39593452e+01 0.49767000e+00
- 2 -323 295 296 -0.39127031e+01 0.17869529e+01 0.93943198e+01 0.82928045e+00
- 2 223 297 299 -0.40904592e+01 0.24214044e+01 0.81712049e+01 0.77870679e+00
- 2 221 300 302 -0.13413891e+01 0.44581980e+00 0.35341868e+01 0.54745000e+00
- 2 323 303 304 0.20485465e+00 0.70028966e+00 0.47830496e+01 0.88652594e+00
- 2 -323 305 306 0.11212859e+00 -0.58595625e-01 0.12215875e+01 0.86677894e+00
- 2 113 307 308 -0.25095185e+00 0.14795957e+00 0.58724073e+01 0.77675982e+00
- 2 323 309 310 0.53257423e+00 -0.67681934e+00 0.42877145e+01 0.87103409e+00
- 2 331 311 313 0.49070943e+00 -0.17084179e+00 0.10209739e+02 0.95805745e+00
- 2 -313 314 315 -0.19460223e+01 -0.17703736e+00 0.22689994e+02 0.85365161e+00
- 2 111 316 317 0.42747311e+00 0.58177734e-01 0.42771176e+01 0.13498000e+00
- 2 111 318 319 -0.45276942e+00 -0.26902718e+00 0.14411063e+02 0.13498000e+00
- 2 -213 320 321 -0.18734841e+01 0.53726636e+00 0.24672365e+02 0.46265873e+00
- 2 323 322 323 -0.13484580e+00 0.98470654e+00 0.25696460e+02 0.89329027e+00
- 2 -313 324 325 -0.12771099e+01 0.92168172e+00 0.60725430e+02 0.93884338e+00
- 1 -211 0 0 -0.47202521e+00 -0.96479354e-02 0.91120064e+01 0.13957000e+00
- 1 321 0 0 0.16471105e+00 0.16924343e+00 0.36385257e+02 0.49360000e+00
- 2 -311 326 326 -0.25209961e-01 0.87972107e+00 0.22881081e+02 0.49767000e+00
- 1 2112 0 0 -0.11904560e+00 0.24780058e+00 0.54349163e+02 0.93957000e+00
- 1 -2112 0 0 0.33766506e+00 0.95070301e+00 0.21834489e+03 0.93957000e+00
- 2 221 327 329 0.27483758e+00 0.32878678e+00 0.98568210e+02 0.54745000e+00
- 2 111 330 331 0.13862264e+01 -0.11767210e+01 0.70944237e+03 0.13498000e+00
- 1 -211 0 0 -0.17673546e+00 0.19670236e+00 0.95135661e+02 0.13957000e+00
- 2 221 332 333 0.96401009e+00 -0.37535197e+00 0.55995613e+03 0.54745000e+00
- 1 211 0 0 0.35477542e+00 -0.10327818e+01 0.17629687e+03 0.13957000e+00
- 2 223 334 336 -0.25166392e+00 -0.11095321e-01 0.22953579e+03 0.78060632e+00
- 2 -213 337 338 0.32098485e+00 -0.50608581e-01 0.62453436e+02 0.82149479e+00
- 2 213 339 340 -0.17143747e+00 -0.19557014e+00 0.29180473e+02 0.80653983e+00
- 2 -213 341 342 0.45536755e+00 0.54234089e+00 0.63896732e+02 0.77373096e+00
- 2 323 343 344 -0.24221112e+00 -0.24450151e+00 0.69198965e+02 0.95798930e+00
- 2 -313 345 346 0.30455076e+00 0.18795293e+00 0.46410597e+02 0.94316587e+00
- 2 111 347 348 -0.36510534e+00 0.16988343e+01 0.52254752e+02 0.13498000e+00
- 2 113 349 350 -0.86052593e+00 0.20537607e+00 0.63726425e+02 0.88508712e+00
- 2 111 351 352 -0.63532391e-01 0.92277398e+00 0.37463138e+02 0.13498000e+00
- 1 2112 0 0 -0.77948793e+00 0.16741201e+01 0.83409127e+02 0.93957000e+00
- 1 -2212 0 0 -0.29793836e+00 0.41413706e+00 0.39319659e+02 0.93827000e+00
- 2 213 353 354 -0.11058282e+00 0.34829642e+00 0.22496241e+02 0.63891270e+00
- 1 -211 0 0 0.42102523e-01 -0.42886427e+00 0.13748002e+03 0.13957000e+00
- 2 113 355 356 0.38278567e+00 0.28104722e+00 0.14923308e+02 0.60871847e+00
- 2 223 357 359 0.53648112e+00 -0.92204639e-02 0.31032543e+03 0.78152039e+00
- 2 2224 360 361 0.41423892e+00 -0.49407269e-01 0.15231876e+04 0.12982852e+01
- 2 223 362 364 0.63252546e+00 0.10593138e+01 0.13928257e+04 0.78103667e+00
- 2 92 176 182 0.13993555e+00 0.78797570e+00 -0.45381502e+03 0.92396124e+01
- 2 213 365 366 0.28768094e+01 0.24215226e+01 -0.15863633e+03 0.79548832e+00
- 1 -211 0 0 -0.84564169e+00 -0.25765470e-01 -0.62885980e+02 0.13957000e+00
- 2 223 367 369 -0.12137836e+00 -0.38732561e+00 -0.35707831e+02 0.78511228e+00
- 1 211 0 0 0.25584978e+00 0.24795015e+00 -0.16311587e+02 0.13957000e+00
- 2 113 370 371 -0.84618213e+00 -0.42092587e+00 -0.64742269e+02 0.45670087e+00
- 2 331 372 373 -0.93643320e+00 -0.47601224e+00 -0.75921972e+02 0.95781638e+00
- 1 -211 0 0 -0.24308827e+00 -0.57146786e+00 -0.39609044e+02 0.13957000e+00
- 2 92 184 193 0.21379506e+01 -0.24799842e+01 -0.78022241e+02 0.32178466e+02
- 2 313 374 375 0.26212680e+01 0.28254274e+01 0.11469335e+01 0.88555562e+00
- 2 -323 376 377 0.23074854e+00 -0.29816106e+00 -0.16393158e+01 0.87424219e+00
- 1 211 0 0 -0.24160202e+00 0.12952942e+00 -0.95296131e-01 0.13957000e+00
- 2 313 378 379 0.11435192e+01 -0.78478177e+00 -0.52113116e+01 0.91885154e+00
- 2 -313 380 381 -0.86646856e-02 -0.50518220e+00 -0.65619378e+01 0.86951383e+00
- 2 113 382 383 -0.84621018e-01 0.34029838e-01 -0.38978510e+01 0.77309364e+00
- 2 111 384 385 -0.44609512e+00 -0.11034802e+00 -0.52441544e+01 0.13498000e+00
- 2 313 386 387 -0.36078389e+00 -0.19989209e+01 -0.16048256e+02 0.82975681e+00
- 2 333 388 389 0.12676099e+00 -0.11567238e+01 -0.24311217e+02 0.10186276e+01
- 2 -313 390 391 -0.84257953e+00 -0.61485303e+00 -0.16159835e+02 0.89073836e+00
- 1 2112 0 0 -0.70004333e+00 0.94338334e+01 -0.10246848e+01 0.93957000e+00
- 1 -211 0 0 -0.97144910e-02 0.21728612e+01 -0.44286863e+00 0.13957000e+00
- 1 211 0 0 0.11151208e+00 0.27027251e+01 -0.40114221e-01 0.13957000e+00
- 2 111 392 393 0.26847030e+00 0.49179439e+01 -0.88163533e+00 0.13498000e+00
- 1 -2112 0 0 0.14821474e+01 0.31440353e+01 0.28477401e+00 0.93957000e+00
- 1 -211 0 0 0.38293218e-01 0.86600463e+00 0.13915935e+00 0.13957000e+00
- 2 111 394 395 -0.23134181e+00 0.36037467e+00 -0.44972166e+00 0.13498000e+00
- 2 111 396 397 -0.25395549e+00 0.24310924e+00 -0.18649938e+00 0.13498000e+00
- 2 111 398 399 -0.75457396e+00 0.86604629e+00 -0.89792126e+00 0.13498000e+00
- 1 211 0 0 -0.19650291e+01 0.86248654e+00 -0.26837571e+00 0.13957000e+00
- 2 111 400 401 -0.27668567e+01 0.17735521e+01 -0.12612792e+01 0.13498000e+00
- 1 -211 0 0 -0.32236252e+01 0.14069789e+01 -0.40720304e+00 0.13957000e+00
- 2 111 402 403 -0.99518695e+00 0.62091187e+00 0.24346545e+00 0.13498000e+00
- 1 211 0 0 -0.95881727e-01 0.12735968e+00 -0.74018107e-01 0.13957000e+00
- 1 -211 0 0 -0.23745332e+01 0.79357217e+00 0.29566512e+00 0.13957000e+00
- 1 211 0 0 -0.27006026e+01 0.89706698e+00 -0.46017683e+00 0.13957000e+00
- 2 111 404 405 -0.34528052e+01 0.11665352e+01 0.21325737e+00 0.13498000e+00
- 1 -211 0 0 -0.23768057e+01 0.13742315e+01 -0.38568215e-01 0.13957000e+00
- 1 211 0 0 -0.14448644e+01 0.34923058e+00 0.21835066e+00 0.13957000e+00
- 1 22 0 0 -0.58283363e+00 -0.26724684e+00 0.15306676e+00 0.00000000e+00
- 1 22 0 0 -0.32369770e-01 0.71313418e-02 0.33916701e-01 0.00000000e+00
- 1 211 0 0 -0.19728984e+01 0.18483848e+00 -0.45093334e+00 0.13957000e+00
- 2 111 406 407 -0.73822223e+00 0.31356808e+00 -0.29922384e+00 0.13498000e+00
- 1 -211 0 0 0.44945995e-01 -0.19721006e+00 0.19500328e+00 0.13957000e+00
- 2 111 408 409 0.47319215e+00 -0.85227412e-01 0.32446791e+00 0.13498000e+00
- 1 22 0 0 0.35909295e-01 -0.15121332e+01 -0.60854912e+00 0.00000000e+00
- 1 22 0 0 0.12704925e+00 -0.91695451e+00 -0.37912714e+00 0.00000000e+00
- 1 22 0 0 0.17957488e+00 -0.23856569e+00 -0.22923615e+00 0.00000000e+00
- 1 22 0 0 -0.49815424e-01 -0.73921311e+00 0.14441029e+00 0.00000000e+00
- 1 -211 0 0 0.28787867e+00 -0.32390099e+00 -0.20777523e+00 0.13957000e+00
- 1 211 0 0 0.98142820e-01 -0.51383942e+00 -0.11330381e+00 0.13957000e+00
- 2 111 410 411 0.53505822e-01 -0.22907238e+00 -0.44851451e-01 0.13498000e+00
- 1 211 0 0 0.13648125e+01 -0.86764036e+00 -0.14489036e+01 0.13957000e+00
- 2 111 412 413 0.43908133e+00 0.10062600e+00 -0.11565115e+00 0.13498000e+00
- 1 211 0 0 0.73210004e+00 0.19511380e+00 -0.16688353e+01 0.13957000e+00
- 1 -211 0 0 -0.61764005e-01 -0.13319206e+00 -0.50016449e+00 0.13957000e+00
- 1 211 0 0 0.18805337e+00 -0.28952827e+00 -0.80255930e+00 0.13957000e+00
- 1 -211 0 0 0.42766714e+00 -0.33550279e+00 -0.18444077e+01 0.13957000e+00
- 2 111 414 415 0.73096794e-01 0.13088789e+00 -0.48217809e+00 0.13498000e+00
- 2 311 416 416 0.95268237e+00 -0.37490396e+00 -0.21964118e+01 0.49767000e+00
- 2 111 417 418 -0.63519353e-01 -0.11547517e+00 -0.21140200e+00 0.13498000e+00
- 1 2212 0 0 0.88375335e+00 -0.37925481e+00 -0.34610478e+01 0.93827000e+00
- 1 -211 0 0 0.24614893e+00 0.17682912e-01 -0.82214520e+00 0.13957000e+00
- 1 211 0 0 0.33644304e+00 0.13073116e+00 -0.29493229e+00 0.13957000e+00
- 1 -211 0 0 0.32725524e-01 0.12855321e+00 -0.68876456e+00 0.13957000e+00
- 2 111 419 420 0.21187452e+00 0.16537389e+00 -0.12741266e+01 0.13498000e+00
- 2 311 421 421 -0.31361631e+00 0.88529554e+00 -0.22554253e+01 0.49767000e+00
- 2 111 422 423 -0.13374253e+00 -0.95717680e-01 -0.50340525e+00 0.13498000e+00
- 1 -321 0 0 0.37602810e+00 0.31071903e-01 -0.36977528e+01 0.49360000e+00
- 1 211 0 0 -0.18021442e+00 0.30957040e+00 -0.23255490e+01 0.13957000e+00
- 1 211 0 0 -0.83991757e-02 0.13773042e+00 -0.10898040e+01 0.13957000e+00
- 1 -211 0 0 -0.15252436e+00 0.72454402e+00 -0.24446579e+01 0.13957000e+00
- 2 111 424 425 -0.45939735e+00 0.55162742e+00 -0.17667193e+01 0.13498000e+00
- 1 321 0 0 -0.30237976e+00 0.17972175e+00 -0.28142884e+01 0.49360000e+00
- 1 -211 0 0 -0.71185854e+00 0.10933751e+01 -0.61941727e+01 0.13957000e+00
- 2 310 426 427 -0.76697325e+00 0.22277027e+00 -0.13750880e+02 0.49767000e+00
- 1 130 0 0 -0.10496047e+01 0.13509415e+01 -0.95458138e+01 0.49767000e+00
- 1 22 0 0 -0.21551933e+00 0.43816353e+00 -0.62701191e+01 0.00000000e+00
- 2 221 428 430 -0.21871635e+01 0.96577593e+00 -0.22091178e+02 0.54745000e+00
- 2 -311 431 431 -0.92853832e+00 0.17478363e+00 -0.65648139e+01 0.49767000e+00
- 1 -211 0 0 -0.58759925e+00 -0.32107953e-01 -0.76792962e+01 0.13957000e+00
- 2 311 432 432 -0.52809021e+00 -0.31488767e+00 -0.51120611e+01 0.49767000e+00
- 1 211 0 0 -0.13837960e+00 0.14421113e+00 -0.43137201e+01 0.13957000e+00
- 1 -321 0 0 0.13744885e+00 -0.99901623e-01 -0.12301329e+01 0.49360000e+00
- 2 111 433 434 -0.11727926e+00 -0.72595007e+00 -0.14753854e+01 0.13498000e+00
- 1 22 0 0 0.14456644e+00 -0.13370126e+00 -0.84647249e+00 0.00000000e+00
- 1 22 0 0 0.60230104e-01 0.64991309e-01 0.64516189e-01 0.00000000e+00
- 2 311 435 435 0.35538086e+00 -0.40653433e+00 -0.10336358e+01 0.49767000e+00
- 1 211 0 0 0.11883603e-02 -0.13440589e+00 -0.21067965e+01 0.13957000e+00
- 1 -321 0 0 0.43305378e-01 -0.23526028e+00 -0.36338524e+01 0.49360000e+00
- 2 111 436 437 0.64907426e+00 -0.35486806e+00 -0.54715758e+01 0.13498000e+00
- 1 -211 0 0 0.10554667e+00 0.37948932e-01 -0.48287541e+00 0.13957000e+00
- 1 211 0 0 0.23318612e+00 -0.14743987e+00 -0.13601130e+01 0.13957000e+00
- 2 111 438 439 -0.41231281e-01 -0.18120616e+00 -0.34129895e+01 0.13498000e+00
- 1 22 0 0 -0.26624160e+00 0.53930209e-02 -0.11772804e+02 0.00000000e+00
- 2 111 440 441 0.45023178e+00 -0.40051815e+00 -0.18042625e+02 0.13498000e+00
- 1 22 0 0 0.16477838e+00 -0.86216480e-01 -0.23538402e+02 0.00000000e+00
- 1 22 0 0 0.13962643e+00 -0.35378672e-01 -0.84262019e+01 0.00000000e+00
- 1 211 0 0 -0.81065482e-01 -0.12476348e+00 -0.39881891e+02 0.13957000e+00
- 1 -211 0 0 -0.67700781e+00 0.85639423e+00 -0.17973072e+03 0.13957000e+00
- 1 211 0 0 -0.16223132e+00 0.31580020e+00 -0.46015586e+02 0.13957000e+00
- 2 111 442 443 -0.33407262e-01 0.26124324e+00 -0.13098896e+02 0.13498000e+00
- 1 130 0 0 0.19290615e-01 -0.34053531e+00 -0.84553426e+02 0.49767000e+00
- 1 -321 0 0 -0.17872480e+00 0.13399797e+01 -0.42437882e+03 0.49360000e+00
- 2 111 444 445 -0.29156216e+00 0.65409840e+00 -0.35598588e+03 0.13498000e+00
- 1 2212 0 0 0.78281550e+00 -0.15481355e+01 -0.21240661e+04 0.93827000e+00
- 2 111 446 447 0.45447962e+00 -0.42719014e+00 -0.40698009e+03 0.13498000e+00
- 1 22 0 0 0.24102286e+00 -0.45358848e+00 -0.81107347e+03 0.00000000e+00
- 1 22 0 0 0.22541109e+00 -0.18131679e+00 -0.16332738e+04 0.00000000e+00
- 2 421 448 450 -0.12724392e+02 -0.22222069e+01 0.38279559e+02 0.18645000e+01
- 1 22 0 0 -0.10556618e+01 -0.32603039e+00 0.33891845e+01 0.00000000e+00
- 1 -211 0 0 -0.15296026e+02 -0.82673128e+00 0.44963904e+02 0.13957000e+00
- 1 211 0 0 -0.17743064e+01 -0.15818129e+00 0.47076919e+01 0.13957000e+00
- 1 211 0 0 -0.51407570e+01 0.12667060e+00 0.14131434e+02 0.13957000e+00
- 2 111 451 452 -0.98785103e+00 0.15641783e+00 0.22280024e+01 0.13498000e+00
- 1 -211 0 0 -0.10734406e+02 0.33337095e+00 0.32832264e+02 0.13957000e+00
- 2 111 453 454 -0.82077767e+00 -0.81353120e-02 0.29360833e+01 0.13498000e+00
- 1 2212 0 0 -0.49169057e+01 0.66042035e+00 0.13063563e+02 0.93827000e+00
- 2 111 455 456 -0.66128183e+00 0.97097576e-01 0.23577047e+01 0.13498000e+00
- 1 130 0 0 -0.10586287e+01 0.87216396e-01 0.33604133e+01 0.49767000e+00
- 2 310 457 458 -0.12207479e+01 0.95166110e+00 0.39593452e+01 0.49767000e+00
- 2 -311 459 459 -0.29561416e+01 0.15312636e+01 0.68709367e+01 0.49767000e+00
- 1 -211 0 0 -0.95656153e+00 0.25568933e+00 0.25233831e+01 0.13957000e+00
- 1 -211 0 0 -0.76887031e+00 0.30962134e+00 0.18124529e+01 0.13957000e+00
- 1 211 0 0 -0.23159264e+01 0.13726411e+01 0.44482841e+01 0.13957000e+00
- 2 111 460 461 -0.10056624e+01 0.73914199e+00 0.19104679e+01 0.13498000e+00
- 1 22 0 0 0.24292073e-01 0.31705375e-01 0.11952872e+00 0.00000000e+00
- 1 -211 0 0 -0.10373327e+01 0.22630059e+00 0.25317002e+01 0.13957000e+00
- 1 211 0 0 -0.32834843e+00 0.18781384e+00 0.88295782e+00 0.13957000e+00
- 2 311 462 462 -0.36854176e-01 0.44448526e+00 0.39190343e+01 0.49767000e+00
- 1 211 0 0 0.24170882e+00 0.25580440e+00 0.86401525e+00 0.13957000e+00
- 2 -311 463 463 -0.10631839e+00 -0.23648478e+00 0.76081200e+00 0.49767000e+00
- 1 -211 0 0 0.21844698e+00 0.17788916e+00 0.46077554e+00 0.13957000e+00
- 1 -211 0 0 -0.14403938e+00 0.25193113e+00 0.93153586e+00 0.13957000e+00
- 1 211 0 0 -0.10691246e+00 -0.10397156e+00 0.49408714e+01 0.13957000e+00
- 1 321 0 0 0.22565571e+00 -0.38056639e+00 0.34127176e+01 0.49360000e+00
- 2 111 464 465 0.30691852e+00 -0.29625295e+00 0.87499690e+00 0.13498000e+00
- 1 -211 0 0 0.12581515e+00 0.14160472e-01 0.22158309e+01 0.13957000e+00
- 1 211 0 0 0.26933780e-01 -0.29820445e-01 0.49515513e+00 0.13957000e+00
- 2 221 466 467 0.33796049e+00 -0.15518182e+00 0.74987525e+01 0.54745000e+00
- 1 -321 0 0 -0.87326216e+00 0.40752683e-01 0.90855893e+01 0.49360000e+00
- 1 211 0 0 -0.10727602e+01 -0.21779004e+00 0.13604405e+02 0.13957000e+00
- 1 22 0 0 0.12853886e+00 0.18207026e-01 0.76905176e+00 0.00000000e+00
- 1 22 0 0 0.29893424e+00 0.39970708e-01 0.35080658e+01 0.00000000e+00
- 1 22 0 0 -0.28287954e+00 -0.95868364e-01 0.86217664e+01 0.00000000e+00
- 1 22 0 0 -0.16988988e+00 -0.17315881e+00 0.57892967e+01 0.00000000e+00
- 1 -211 0 0 -0.67745508e+00 0.31804219e+00 0.78862306e+01 0.13957000e+00
- 2 111 468 469 -0.11960290e+01 0.21922417e+00 0.16786134e+02 0.13498000e+00
- 1 321 0 0 -0.26172888e+00 0.74572569e+00 0.14085049e+02 0.49360000e+00
- 2 111 470 471 0.12688307e+00 0.23898085e+00 0.11611412e+02 0.13498000e+00
- 1 -321 0 0 -0.91535874e+00 0.91504691e+00 0.39838463e+02 0.49360000e+00
- 1 211 0 0 -0.36175117e+00 0.66348098e-02 0.20886967e+02 0.13957000e+00
- 2 310 472 473 -0.25209961e-01 0.87972107e+00 0.22881081e+02 0.49767000e+00
- 1 211 0 0 0.15892158e+00 0.78462428e-01 0.38566421e+02 0.13957000e+00
- 1 -211 0 0 0.99552686e-01 0.25090446e+00 0.49163111e+02 0.13957000e+00
- 2 111 474 475 0.16363316e-01 -0.58010582e-03 0.10838678e+02 0.13498000e+00
- 1 22 0 0 0.89494685e+00 -0.77033617e+00 0.43525521e+03 0.00000000e+00
- 1 22 0 0 0.49127957e+00 -0.40638481e+00 0.27418716e+03 0.00000000e+00
- 1 22 0 0 0.40892191e-01 -0.20264614e+00 0.15296459e+03 0.00000000e+00
- 1 22 0 0 0.92311790e+00 -0.17270583e+00 0.40699154e+03 0.00000000e+00
- 1 -211 0 0 -0.81044520e-01 0.24042566e+00 0.10302758e+03 0.13957000e+00
- 1 211 0 0 -0.24839783e+00 -0.13003247e+00 0.67243608e+02 0.13957000e+00
- 2 111 476 477 0.77778437e-01 -0.12148850e+00 0.59264597e+02 0.13498000e+00
- 1 -211 0 0 0.85515598e-01 -0.39907395e+00 0.35641718e+02 0.13957000e+00
- 2 111 478 479 0.23546925e+00 0.34846537e+00 0.26811718e+02 0.13498000e+00
- 1 211 0 0 -0.47335602e+00 -0.12887705e+00 0.17610875e+02 0.13957000e+00
- 2 111 480 481 0.30191855e+00 -0.66693084e-01 0.11569598e+02 0.13498000e+00
- 1 -211 0 0 0.45090195e+00 0.61986399e+00 0.60524739e+02 0.13957000e+00
- 2 111 482 483 0.44655938e-02 -0.77523101e-01 0.33719928e+01 0.13498000e+00
- 1 321 0 0 -0.22933192e+00 -0.49173237e+00 0.47758315e+02 0.49360000e+00
- 2 111 484 485 -0.12879193e-01 0.24723086e+00 0.21440650e+02 0.13498000e+00
- 1 -321 0 0 0.21799608e+00 -0.19755671e+00 0.30686937e+02 0.49360000e+00
- 1 211 0 0 0.86554678e-01 0.38550964e+00 0.15723659e+02 0.13957000e+00
- 1 22 0 0 -0.32109100e-01 0.40807329e+00 0.12816257e+02 0.00000000e+00
- 1 22 0 0 -0.33299624e+00 0.12907610e+01 0.39438495e+02 0.00000000e+00
- 1 -211 0 0 -0.24946845e+00 0.68808999e-01 0.49143553e+01 0.13957000e+00
- 1 211 0 0 -0.61105748e+00 0.13656707e+00 0.58812069e+02 0.13957000e+00
- 1 22 0 0 0.22178439e-01 0.15430853e+00 0.79772611e+01 0.00000000e+00
- 1 22 0 0 -0.85710830e-01 0.76846545e+00 0.29485877e+02 0.00000000e+00
- 1 211 0 0 -0.12955381e+00 0.49629455e+00 0.17219517e+02 0.13957000e+00
- 2 111 486 487 0.18970981e-01 -0.14799812e+00 0.52767244e+01 0.13498000e+00
- 1 211 0 0 0.28214571e+00 -0.86336036e-01 0.43751390e+01 0.13957000e+00
- 1 -211 0 0 0.10063996e+00 0.36738325e+00 0.10548168e+02 0.13957000e+00
- 1 -211 0 0 0.28771108e+00 0.10599091e+00 0.19879464e+03 0.13957000e+00
- 1 211 0 0 -0.62333305e-01 -0.69669181e-02 0.35082935e+02 0.13957000e+00
- 2 111 488 489 0.31110334e+00 -0.10824446e+00 0.76447860e+02 0.13498000e+00
- 1 2212 0 0 0.17970701e+00 0.18923308e+00 0.12315936e+04 0.93827000e+00
- 1 211 0 0 0.23453191e+00 -0.23864035e+00 0.29159395e+03 0.13957000e+00
- 1 211 0 0 0.49458105e+00 0.86844790e+00 0.88305192e+03 0.13957000e+00
- 1 -211 0 0 -0.42798937e-01 0.13787551e+00 0.28007548e+03 0.13957000e+00
- 2 111 490 491 0.18074335e+00 0.52990410e-01 0.22969829e+03 0.13498000e+00
- 1 211 0 0 0.61433344e+00 0.18768865e+00 -0.29944619e+02 0.13957000e+00
- 2 111 492 493 0.22624760e+01 0.22338340e+01 -0.12869172e+03 0.13498000e+00
- 1 -211 0 0 -0.24037010e+00 -0.68009060e-01 -0.17027256e+02 0.13957000e+00
- 1 211 0 0 -0.26350359e-01 -0.19006882e+00 -0.42699003e+01 0.13957000e+00
- 2 111 494 495 0.14534210e+00 -0.12924772e+00 -0.14410675e+02 0.13498000e+00
- 1 211 0 0 -0.64561629e+00 -0.14193902e+00 -0.39329678e+02 0.13957000e+00
- 1 -211 0 0 -0.20056584e+00 -0.27898685e+00 -0.25412591e+02 0.13957000e+00
- 1 22 0 0 -0.71599193e-01 -0.32521456e-01 -0.20063727e+02 0.00000000e+00
- 2 113 496 497 -0.86483401e+00 -0.44349078e+00 -0.55858244e+02 0.72460374e+00
- 1 321 0 0 0.24102126e+01 0.26655582e+01 0.11843924e+01 0.49360000e+00
- 1 -211 0 0 0.21105543e+00 0.15986922e+00 -0.37458881e-01 0.13957000e+00
- 1 -321 0 0 -0.44085805e-01 -0.38606768e+00 -0.99016566e+00 0.49360000e+00
- 2 111 498 499 0.27483435e+00 0.87906618e-01 -0.64915014e+00 0.13498000e+00
- 1 321 0 0 0.11920258e+01 -0.61390440e+00 -0.42834123e+01 0.49360000e+00
- 1 -211 0 0 -0.48506536e-01 -0.17087737e+00 -0.92789933e+00 0.13957000e+00
- 2 -311 500 500 0.10438602e+00 -0.32172334e+00 -0.26110155e+01 0.49767000e+00
- 2 111 501 502 -0.11305070e+00 -0.18345886e+00 -0.39509223e+01 0.13498000e+00
- 1 -211 0 0 0.28537981e+00 0.14094928e+00 -0.22575260e+01 0.13957000e+00
- 1 211 0 0 -0.37000083e+00 -0.10691944e+00 -0.16403250e+01 0.13957000e+00
- 1 22 0 0 -0.78151316e-02 0.14506515e-01 -0.42710590e+00 0.00000000e+00
- 1 22 0 0 -0.43827998e+00 -0.12485454e+00 -0.48170485e+01 0.00000000e+00
- 1 321 0 0 -0.26654257e+00 -0.13822138e+01 -0.12829422e+02 0.49360000e+00
- 1 -211 0 0 -0.94241323e-01 -0.61670708e+00 -0.32188339e+01 0.13957000e+00
- 1 130 0 0 0.83732895e-01 -0.59845988e+00 -0.10752176e+02 0.49767000e+00
- 2 310 503 504 0.43028098e-01 -0.55826396e+00 -0.13559041e+02 0.49767000e+00
- 1 -321 0 0 -0.20204228e+00 -0.41019858e+00 -0.90699339e+01 0.49360000e+00
- 1 211 0 0 -0.64053725e+00 -0.20465445e+00 -0.70899008e+01 0.13957000e+00
- 1 22 0 0 0.27006384e-01 0.13605020e+01 -0.28179916e+00 0.00000000e+00
- 1 22 0 0 0.24146392e+00 0.35574419e+01 -0.59983617e+00 0.00000000e+00
- 1 22 0 0 -0.88085285e-01 0.40347276e-01 -0.11958063e+00 0.00000000e+00
- 1 22 0 0 -0.14325652e+00 0.32002739e+00 -0.33014102e+00 0.00000000e+00
- 1 22 0 0 -0.25332645e+00 0.20200451e+00 -0.12720274e+00 0.00000000e+00
- 1 22 0 0 -0.62904578e-03 0.41104737e-01 -0.59296641e-01 0.00000000e+00
- 1 22 0 0 -0.51340065e+00 0.66567833e+00 -0.61158437e+00 0.00000000e+00
- 1 22 0 0 -0.24117332e+00 0.20036796e+00 -0.28633689e+00 0.00000000e+00
- 1 22 0 0 -0.17131522e+01 0.11403389e+01 -0.84810803e+00 0.00000000e+00
- 1 22 0 0 -0.10537045e+01 0.63321322e+00 -0.41317120e+00 0.00000000e+00
- 1 22 0 0 -0.37361944e+00 0.30450400e+00 0.71911491e-01 0.00000000e+00
- 1 22 0 0 -0.62156751e+00 0.31640787e+00 0.17155396e+00 0.00000000e+00
- 1 22 0 0 -0.30297294e+01 0.10660320e+01 0.20501217e+00 0.00000000e+00
- 1 22 0 0 -0.42307578e+00 0.10050325e+00 0.82452042e-02 0.00000000e+00
- 1 22 0 0 -0.61320674e+00 0.20235880e+00 -0.24681417e+00 0.00000000e+00
- 1 22 0 0 -0.12501549e+00 0.11120928e+00 -0.52409670e-01 0.00000000e+00
- 1 22 0 0 0.15690011e+00 0.35414705e-01 0.10160374e+00 0.00000000e+00
- 1 22 0 0 0.31629204e+00 -0.12064212e+00 0.22286417e+00 0.00000000e+00
- 1 22 0 0 0.76343837e-01 -0.13346295e+00 -0.76357772e-01 0.00000000e+00
- 1 22 0 0 -0.22838015e-01 -0.95609429e-01 0.31506321e-01 0.00000000e+00
- 1 22 0 0 0.12723163e+00 0.91759886e-01 -0.56487332e-01 0.00000000e+00
- 1 22 0 0 0.31184970e+00 0.88661146e-02 -0.59163813e-01 0.00000000e+00
- 1 22 0 0 0.33100189e-01 0.36632878e-02 -0.27013619e+00 0.00000000e+00
- 1 22 0 0 0.39996605e-01 0.12722460e+00 -0.21204190e+00 0.00000000e+00
- 1 130 0 0 0.95268237e+00 -0.37490396e+00 -0.21964118e+01 0.49767000e+00
- 1 22 0 0 -0.68640259e-01 -0.13770997e+00 -0.21018594e+00 0.00000000e+00
- 1 22 0 0 0.51209063e-02 0.22234805e-01 -0.12160642e-02 0.00000000e+00
- 1 22 0 0 0.65721256e-01 0.13657535e+00 -0.61670817e+00 0.00000000e+00
- 1 22 0 0 0.14615327e+00 0.28798541e-01 -0.65741842e+00 0.00000000e+00
- 2 310 505 506 -0.31361631e+00 0.88529554e+00 -0.22554253e+01 0.49767000e+00
- 1 22 0 0 0.22038765e-01 0.99068995e-02 -0.68477355e-01 0.00000000e+00
- 1 22 0 0 -0.15578130e+00 -0.10562458e+00 -0.43492790e+00 0.00000000e+00
- 1 22 0 0 -0.13497843e+00 0.78927111e-01 -0.34356925e+00 0.00000000e+00
- 1 22 0 0 -0.32441892e+00 0.47270031e+00 -0.14231500e+01 0.00000000e+00
- 1 211 0 0 -0.75542707e+00 0.16097544e+00 -0.11888564e+02 0.13957000e+00
- 1 -211 0 0 -0.11546178e-01 0.61794829e-01 -0.18623166e+01 0.13957000e+00
- 2 111 507 508 -0.57344413e+00 0.27290094e+00 -0.48993308e+01 0.13498000e+00
- 2 111 509 510 -0.11752768e+01 0.46004251e+00 -0.12853039e+02 0.13498000e+00
- 2 111 511 512 -0.43844260e+00 0.23283248e+00 -0.43388077e+01 0.13498000e+00
- 1 130 0 0 -0.92853832e+00 0.17478363e+00 -0.65648139e+01 0.49767000e+00
- 2 310 513 514 -0.52809021e+00 -0.31488767e+00 -0.51120611e+01 0.49767000e+00
- 1 22 0 0 -0.14472938e+00 -0.60624282e+00 -0.11908671e+01 0.00000000e+00
- 1 22 0 0 0.27450118e-01 -0.11970725e+00 -0.28451828e+00 0.00000000e+00
- 2 310 515 516 0.35538086e+00 -0.40653433e+00 -0.10336358e+01 0.49767000e+00
- 1 22 0 0 0.41510801e+00 -0.24056996e+00 -0.30555313e+01 0.00000000e+00
- 1 22 0 0 0.23396624e+00 -0.11429810e+00 -0.24160444e+01 0.00000000e+00
- 1 22 0 0 -0.48604426e-01 -0.15779189e+00 -0.18057901e+01 0.00000000e+00
- 1 22 0 0 0.73731444e-02 -0.23414274e-01 -0.16071994e+01 0.00000000e+00
- 1 22 0 0 0.12851380e+00 -0.14134987e+00 -0.41041072e+01 0.00000000e+00
- 1 22 0 0 0.32171799e+00 -0.25916828e+00 -0.13938518e+02 0.00000000e+00
- 1 22 0 0 0.51100402e-01 0.68415406e-01 -0.37116720e+01 0.00000000e+00
- 1 22 0 0 -0.84507664e-01 0.19282783e+00 -0.93872245e+01 0.00000000e+00
- 1 22 0 0 0.14606965e-01 0.23759654e-01 -0.12562613e+02 0.00000000e+00
- 1 22 0 0 -0.30616912e+00 0.63033874e+00 -0.34342327e+03 0.00000000e+00
- 1 22 0 0 0.22481800e+00 -0.20852235e+00 -0.15720971e+03 0.00000000e+00
- 1 22 0 0 0.22966162e+00 -0.21866779e+00 -0.24977038e+03 0.00000000e+00
- 1 -11 0 0 -0.10483834e+00 -0.74546436e-01 0.11200845e+01 0.51000000e-03
- 1 12 0 0 -0.28716377e+01 -0.65503541e-01 0.83839863e+01 0.00000000e+00
- 1 -211 0 0 -0.97479159e+01 -0.20821569e+01 0.28775488e+02 0.13957000e+00
- 1 22 0 0 -0.17263392e+00 0.51279969e-01 0.29824169e+00 0.00000000e+00
- 1 22 0 0 -0.81521711e+00 0.10513786e+00 0.19297607e+01 0.00000000e+00
- 1 22 0 0 -0.41143013e+00 -0.66665582e-01 0.15664916e+01 0.00000000e+00
- 1 22 0 0 -0.40934755e+00 0.58530270e-01 0.13695917e+01 0.00000000e+00
- 1 22 0 0 -0.43691045e+00 0.63327870e-02 0.16222980e+01 0.00000000e+00
- 1 22 0 0 -0.22437138e+00 0.90764789e-01 0.73540675e+00 0.00000000e+00
- 1 211 0 0 -0.73956106e+00 0.79825578e+00 0.28294914e+01 0.13957000e+00
- 1 -211 0 0 -0.48118684e+00 0.15340532e+00 0.11298538e+01 0.13957000e+00
- 1 130 0 0 -0.29561416e+01 0.15312636e+01 0.68709367e+01 0.49767000e+00
- 1 22 0 0 -0.75170314e+00 0.60681862e+00 0.15367335e+01 0.00000000e+00
- 1 22 0 0 -0.25395928e+00 0.13232337e+00 0.37373439e+00 0.00000000e+00
- 1 130 0 0 -0.36854176e-01 0.44448526e+00 0.39190343e+01 0.49767000e+00
- 1 130 0 0 -0.10631839e+00 -0.23648478e+00 0.76081200e+00 0.49767000e+00
- 1 22 0 0 0.22763110e+00 -0.28627305e+00 0.74941883e+00 0.00000000e+00
- 1 22 0 0 0.79287414e-01 -0.99799018e-02 0.12557807e+00 0.00000000e+00
- 1 22 0 0 0.47861121e+00 -0.17944880e+00 0.53286071e+01 0.00000000e+00
- 1 22 0 0 -0.14065072e+00 0.24266988e-01 0.21701454e+01 0.00000000e+00
- 1 22 0 0 -0.97042619e+00 0.13902220e+00 0.13977921e+02 0.00000000e+00
- 1 22 0 0 -0.22560281e+00 0.80201971e-01 0.28082134e+01 0.00000000e+00
- 1 22 0 0 0.15074133e+00 0.22060392e+00 0.96236543e+01 0.00000000e+00
- 1 22 0 0 -0.23858251e-01 0.18376937e-01 0.19877572e+01 0.00000000e+00
- 1 -211 0 0 -0.74120662e-01 0.78150374e+00 0.15803570e+02 0.13957000e+00
- 1 211 0 0 0.48910701e-01 0.98217333e-01 0.70775113e+01 0.13957000e+00
- 1 22 0 0 -0.56689072e-01 -0.10748405e-01 0.34253960e+01 0.00000000e+00
- 1 22 0 0 0.73052388e-01 0.10168300e-01 0.74132825e+01 0.00000000e+00
- 1 22 0 0 0.31681693e-01 0.27247710e-01 0.11984507e+02 0.00000000e+00
- 1 22 0 0 0.46096744e-01 -0.14873621e+00 0.47280090e+02 0.00000000e+00
- 1 22 0 0 0.10685057e+00 0.14662775e+00 0.76885603e+01 0.00000000e+00
- 1 22 0 0 0.12861868e+00 0.20183762e+00 0.19123158e+02 0.00000000e+00
- 1 22 0 0 0.59219072e-01 -0.60967672e-01 0.43691863e+01 0.00000000e+00
- 1 22 0 0 0.24269948e+00 -0.57254122e-02 0.72004121e+01 0.00000000e+00
- 1 22 0 0 0.62066991e-01 -0.12342886e-01 0.18760029e+01 0.00000000e+00
- 1 22 0 0 -0.57601397e-01 -0.65180215e-01 0.14959899e+01 0.00000000e+00
- 1 22 0 0 0.26622840e-01 0.51757215e-01 0.20428146e+01 0.00000000e+00
- 1 22 0 0 -0.39502033e-01 0.19547364e+00 0.19397835e+02 0.00000000e+00
- 1 22 0 0 -0.91743171e-02 -0.16661085e+00 0.42263110e+01 0.00000000e+00
- 1 22 0 0 0.28145299e-01 0.18612723e-01 0.10504135e+01 0.00000000e+00
- 1 22 0 0 0.11229635e+00 -0.44651083e-01 0.15488212e+02 0.00000000e+00
- 1 22 0 0 0.19880699e+00 -0.63593376e-01 0.60959648e+02 0.00000000e+00
- 1 22 0 0 0.56276878e-01 0.77708580e-01 0.68889920e+02 0.00000000e+00
- 1 22 0 0 0.12446647e+00 -0.24718170e-01 0.16080837e+03 0.00000000e+00
- 1 22 0 0 0.16826463e+01 0.17169878e+01 -0.98947472e+02 0.00000000e+00
- 1 22 0 0 0.57982968e+00 0.51684611e+00 -0.29744244e+02 0.00000000e+00
- 1 22 0 0 0.96650254e-01 -0.14878050e+00 -0.12361360e+02 0.00000000e+00
- 1 22 0 0 0.48691843e-01 0.19532773e-01 -0.20493153e+01 0.00000000e+00
- 1 211 0 0 0.75694942e-01 -0.78729172e-01 -0.54908229e+01 0.13957000e+00
- 1 -211 0 0 -0.94052895e+00 -0.36476161e+00 -0.50367421e+02 0.13957000e+00
- 1 22 0 0 0.14200933e+00 0.11008528e+00 -0.31179971e+00 0.00000000e+00
- 1 22 0 0 0.13282502e+00 -0.22178664e-01 -0.33735042e+00 0.00000000e+00
- 1 130 0 0 0.10438602e+00 -0.32172334e+00 -0.26110155e+01 0.49767000e+00
- 1 22 0 0 -0.87596893e-01 -0.61928110e-01 -0.26740636e+01 0.00000000e+00
- 1 22 0 0 -0.25453812e-01 -0.12153075e+00 -0.12768587e+01 0.00000000e+00
- 1 -211 0 0 0.17105533e+00 -0.44637523e+00 -0.10990353e+02 0.13957000e+00
- 1 211 0 0 -0.12802723e+00 -0.11188873e+00 -0.25686879e+01 0.13957000e+00
- 2 111 517 518 0.26863992e-01 0.46147895e-01 -0.25727774e+00 0.13498000e+00
- 2 111 519 520 -0.34048030e+00 0.83914764e+00 -0.19981476e+01 0.13498000e+00
- 1 22 0 0 -0.15570359e+00 0.20281474e-01 -0.14450693e+01 0.00000000e+00
- 1 22 0 0 -0.41774054e+00 0.25261947e+00 -0.34542615e+01 0.00000000e+00
- 1 22 0 0 -0.99132221e+00 0.33318487e+00 -0.10554450e+02 0.00000000e+00
- 1 22 0 0 -0.18395457e+00 0.12685764e+00 -0.22985896e+01 0.00000000e+00
- 1 22 0 0 -0.13981467e-01 0.67112258e-02 -0.51957321e+00 0.00000000e+00
- 1 22 0 0 -0.42446113e+00 0.22612125e+00 -0.38192344e+01 0.00000000e+00
- 1 211 0 0 -0.53783311e+00 -0.15289182e+00 -0.36310306e+01 0.13957000e+00
- 1 -211 0 0 0.97428951e-02 -0.16199586e+00 -0.14810305e+01 0.13957000e+00
- 1 -211 0 0 0.34776358e+00 -0.99095033e-01 -0.65022172e+00 0.13957000e+00
- 1 211 0 0 0.76172845e-02 -0.30743929e+00 -0.38341403e+00 0.13957000e+00
- 1 22 0 0 0.44952495e-02 0.18407511e-01 0.12875664e-01 0.00000000e+00
- 1 22 0 0 0.22368743e-01 0.27740384e-01 -0.27015340e+00 0.00000000e+00
- 1 22 0 0 -0.38974197e-01 0.16193529e+00 -0.26624676e+00 0.00000000e+00
- 1 22 0 0 -0.30150611e+00 0.67721235e+00 -0.17319008e+01 0.00000000e+00
- 235
- 2 25 2 3 -0.58715777e+02 -0.38016520e+02 0.22563675e+03 0.12500000e+03
- 2 23 4 7 -0.88724680e+01 0.62275956e+01 0.59461304e+01 0.15930563e+02
- 2 23 8 10 -0.49843309e+02 -0.44244116e+02 0.21969062e+03 0.91386964e+02
- 1 -11 0 0 -0.12904823e+02 0.45685176e+01 0.12336412e+01 0.51000000e-03
- 1 22 0 0 0.56737788e-02 0.26350104e-02 0.61557529e-02 0.00000000e+00
- 1 11 0 0 0.39541283e+01 0.16265844e+01 0.46214758e+01 0.51000000e-03
- 1 22 0 0 0.72553100e-01 0.29858572e-01 0.84857754e-01 0.00000000e+00
- 1 -13 0 0 -0.57457708e+01 -0.20928196e+01 -0.87368275e+01 0.10566000e+00
- 1 13 0 0 -0.44077692e+02 -0.42144285e+02 0.22833377e+03 0.10566000e+00
- 1 22 0 0 -0.19845955e-01 -0.70113561e-02 0.93676205e-01 0.00000000e+00
- 2 2 41 41 0.67671055e+00 0.22610507e+02 -0.17358604e+03 0.33000000e+00
- 2 21 41 41 -0.57773235e+00 0.94467123e+01 -0.69335731e+02 0.00000000e+00
- 2 21 41 41 0.23319121e+01 0.18618465e+01 -0.24009504e+02 0.00000000e+00
- 2 21 41 41 0.27918976e+01 0.18697241e+01 -0.31088709e+02 0.00000000e+00
- 2 21 41 41 0.32706695e+02 0.18252148e+02 -0.31953553e+03 0.00000000e+00
- 2 21 41 41 0.12299182e+02 0.75740252e+01 -0.11962298e+03 0.00000000e+00
- 2 21 41 41 0.40034817e+00 0.61259588e+00 -0.14385278e+02 0.00000000e+00
- 2 21 41 41 0.11457439e+02 0.95547688e+01 -0.17852970e+03 0.00000000e+00
- 2 21 41 41 0.31264862e+00 -0.20766746e+00 -0.10974341e+02 0.00000000e+00
- 2 21 41 41 0.80705097e+00 0.56256675e+00 -0.15797866e+02 0.00000000e+00
- 2 21 41 41 0.12170272e+02 0.77340244e+01 -0.35497094e+03 0.00000000e+00
- 2 21 41 41 0.27550717e+01 0.58414342e+00 -0.78591332e+02 0.00000000e+00
- 2 21 41 41 0.41510023e+01 0.92997975e+00 -0.85060964e+02 0.00000000e+00
- 2 21 41 41 0.75509231e+00 -0.62732930e+00 0.10142071e+00 0.00000000e+00
- 2 21 41 41 -0.75509231e+00 0.62732930e+00 -0.27276285e+01 0.00000000e+00
- 2 21 41 41 0.33683203e+00 0.38197432e+00 -0.39076255e+01 0.00000000e+00
- 2 21 41 41 0.79433298e+00 0.76153251e+00 -0.11027406e+02 0.00000000e+00
- 2 21 41 41 0.13174046e+01 -0.10914378e+01 -0.51731175e+02 0.00000000e+00
- 2 2203 41 41 0.15572180e+01 0.75282969e+00 -0.54296178e+04 0.77133000e+00
- 2 1 85 85 -0.16156609e+01 -0.11591068e+02 0.35312746e+03 0.33000000e+00
- 2 21 85 85 -0.91822005e+00 -0.32191523e+01 0.74765541e+02 0.00000000e+00
- 2 21 85 85 -0.21678371e+02 -0.29155475e+02 0.81724387e+03 0.00000000e+00
- 2 21 85 85 -0.17189426e+01 -0.31154156e+01 0.71468395e+02 0.00000000e+00
- 2 21 85 85 -0.24795882e+01 -0.96671205e+00 0.73247508e+02 0.00000000e+00
- 2 21 85 85 0.99910947e+00 -0.37123792e+00 0.78148292e+01 0.00000000e+00
- 2 21 85 85 0.51959004e+00 0.11312456e+00 0.66466866e+00 0.00000000e+00
- 2 21 85 85 0.94493795e-01 -0.17677292e-01 0.46158630e-01 0.00000000e+00
- 2 21 85 85 0.11307847e+00 0.35603943e+00 0.68290427e+02 0.00000000e+00
- 2 21 85 85 -0.15759608e+00 0.13577830e+01 0.15417742e+03 0.00000000e+00
- 2 2101 85 85 -0.73040130e+00 0.24360388e+01 0.51279159e+04 0.57933000e+00
- 2 92 42 84 0.86288285e+02 0.82190273e+02 -0.69743991e+04 0.31299595e+03
- 1 2212 0 0 0.41529104e-01 0.14335237e+02 -0.10960114e+03 0.93827000e+00
- 2 -3122 106 107 0.22247967e+00 0.14729692e+02 -0.11143767e+03 0.11156800e+01
- 2 -313 108 109 0.96975371e+00 0.27332914e+01 -0.24565857e+02 0.96357920e+00
- 2 313 110 111 0.85107889e+00 0.20353978e+01 -0.19828864e+02 0.86797296e+00
- 2 -323 112 113 0.93703227e+01 0.44450146e+01 -0.85958596e+02 0.94322856e+00
- 2 3222 114 115 0.97899256e+01 0.66092172e+01 -0.99386192e+02 0.11893700e+01
- 2 -3222 116 117 0.13080778e+02 0.77771254e+01 -0.13565765e+03 0.11893700e+01
- 1 211 0 0 0.89233679e+01 0.45873847e+01 -0.82575902e+02 0.13957000e+00
- 1 -211 0 0 0.38004863e+01 0.24921087e+01 -0.37038886e+02 0.13957000e+00
- 1 211 0 0 0.22117885e+01 0.17652836e+01 -0.30471927e+02 0.13957000e+00
- 2 311 118 118 0.10463013e+01 0.10264767e+01 -0.19923858e+02 0.49767000e+00
- 1 -321 0 0 0.29549620e+01 0.18997196e+01 -0.32518648e+02 0.49360000e+00
- 2 113 119 120 0.29099557e+01 0.23801254e+01 -0.51483518e+02 0.84323477e+00
- 2 111 121 122 0.33421417e+00 0.22755244e+00 -0.84104357e+01 0.13498000e+00
- 2 111 123 124 0.15746980e+01 0.14059758e+01 -0.28843014e+02 0.13498000e+00
- 2 213 125 126 0.17242379e+01 0.13612906e+01 -0.24791553e+02 0.79288567e+00
- 2 313 127 128 0.32184650e+01 0.23664634e+01 -0.61091126e+02 0.98343941e+00
- 1 -321 0 0 0.33908782e+01 0.25481435e+01 -0.10790496e+03 0.49360000e+00
- 2 213 129 130 0.26962973e+01 0.11580179e+01 -0.66743793e+02 0.76190329e+00
- 2 111 131 132 0.23744187e+00 0.13217748e+00 -0.35859747e+01 0.13498000e+00
- 2 313 133 134 0.36195990e+01 0.20697083e+01 -0.11480231e+03 0.91326566e+00
- 2 -313 135 136 0.49498819e+01 0.25825181e+01 -0.11484634e+03 0.89024948e+00
- 2 223 137 139 0.13572468e+01 0.73397377e-01 -0.48647436e+02 0.77829012e+00
- 1 -211 0 0 0.66142658e+00 0.52658299e+00 -0.11824638e+02 0.13957000e+00
- 1 211 0 0 0.10517435e+01 -0.30137851e+00 -0.21044570e+02 0.13957000e+00
- 2 313 140 141 0.39348622e+00 0.23845942e+00 -0.74565787e+01 0.90451059e+00
- 2 -313 142 143 0.52427052e+00 -0.14180393e+00 -0.65644681e+01 0.87149262e+00
- 2 -213 144 145 0.46180667e+00 -0.40842472e+00 -0.36702114e+01 0.79161946e+00
- 2 213 146 147 0.36258925e+00 0.79756625e+00 -0.40011620e+01 0.72823496e+00
- 2 311 148 148 -0.38999992e+00 -0.56783432e+00 -0.14605643e+01 0.49767000e+00
- 1 -321 0 0 0.74088974e+00 0.11759694e+01 -0.85707471e+01 0.49360000e+00
- 1 321 0 0 0.19380684e+00 -0.43938111e+00 -0.10947680e+01 0.49360000e+00
- 2 -323 149 150 -0.21663998e+00 -0.12265488e+00 -0.22806787e+01 0.88991514e+00
- 1 211 0 0 -0.47733880e+00 0.22530828e+00 -0.30527292e+01 0.13957000e+00
- 2 113 151 152 0.58999993e+00 -0.15989678e+00 -0.82504496e+01 0.10369350e+01
- 1 -211 0 0 0.33839953e+00 -0.72043278e-02 -0.94947564e+01 0.13957000e+00
- 2 213 153 154 -0.35031764e-01 0.19033996e+00 -0.13804635e+02 0.90431331e+00
- 1 -211 0 0 0.14115875e+01 -0.18101065e+00 -0.40543728e+02 0.13957000e+00
- 1 2212 0 0 -0.19365877e+00 0.14014509e+00 -0.20236726e+03 0.93827000e+00
- 2 111 155 156 0.13025673e+00 -0.38167088e+00 -0.11841232e+03 0.13498000e+00
- 1 -2212 0 0 -0.11666439e+00 -0.15800742e+00 -0.16948004e+03 0.93827000e+00
- 1 2212 0 0 -0.20025391e+00 0.76804033e+00 -0.60090690e+03 0.93827000e+00
- 1 211 0 0 0.17819201e+01 0.25580962e+00 -0.43200023e+04 0.13957000e+00
- 2 92 86 105 -0.27572508e+02 -0.44173753e+02 0.67487622e+04 0.13445533e+03
- 2 -213 157 158 -0.66515770e+00 -0.45608807e+01 0.13744796e+03 0.73115415e+00
- 2 111 159 160 -0.13722068e+01 -0.40791644e+01 0.10585905e+03 0.13498000e+00
- 2 223 161 162 -0.74041320e+00 -0.59144642e+01 0.17290968e+03 0.75374192e+00
- 2 213 163 164 -0.55760140e+01 -0.67907752e+01 0.19557311e+03 0.73911396e+00
- 2 -213 165 166 -0.44524632e+01 -0.63760019e+01 0.18442561e+03 0.70233030e+00
- 2 2224 167 168 -0.34941934e+01 -0.60256267e+01 0.16968452e+03 0.12200554e+01
- 2 223 169 171 -0.87055039e+01 -0.11175426e+02 0.30926777e+03 0.78033474e+00
- 2 -2214 172 173 -0.17946660e+01 -0.22462129e+01 0.67684521e+02 0.13061141e+01
- 2 111 174 175 -0.21096057e+00 -0.67649281e+00 0.21880209e+02 0.13498000e+00
- 2 -213 176 177 0.30694008e+00 0.33326623e+00 0.41224285e+01 0.78904773e+00
- 2 111 178 180 -0.44854712e+00 -0.15567363e+00 0.23686803e+01 0.13498000e+00
- 1 211 0 0 -0.26884943e+00 -0.29540282e+00 0.13744720e+02 0.13957000e+00
- 2 3122 181 182 0.61864078e+00 0.21115068e+00 0.15311896e+02 0.11156800e+01
- 2 -3222 183 184 -0.13294859e+00 -0.40473761e+00 0.64308439e+01 0.11893700e+01
- 1 2212 0 0 0.15371858e+00 0.54097779e+00 0.24569444e+03 0.93827000e+00
- 1 -2212 0 0 -0.42211972e+00 0.49256947e+00 0.11014370e+03 0.93827000e+00
- 1 211 0 0 0.22414268e+00 -0.10087790e+00 0.39255810e+02 0.13957000e+00
- 2 223 185 187 0.10958033e-01 0.26363062e+00 0.25053311e+03 0.78775121e+00
- 2 113 188 189 -0.81624043e-01 0.48152826e+00 0.30657150e+03 0.83775050e+00
- 1 2112 0 0 -0.52124048e+00 0.23048613e+01 0.43898526e+04 0.93957000e+00
- 1 -2212 0 0 0.10138066e+00 0.12096269e+02 -0.91121776e+02 0.93827000e+00
- 1 211 0 0 0.12109901e+00 0.26334230e+01 -0.20315895e+02 0.13957000e+00
- 1 -321 0 0 0.12639515e+00 0.93590711e+00 -0.84376696e+01 0.49360000e+00
- 1 211 0 0 0.84335856e+00 0.17973843e+01 -0.16128188e+02 0.13957000e+00
- 1 321 0 0 0.17838215e+00 0.92776241e+00 -0.92682048e+01 0.49360000e+00
- 1 -211 0 0 0.67269674e+00 0.11076354e+01 -0.10560659e+02 0.13957000e+00
- 2 -311 190 190 0.42356326e+01 0.22082169e+01 -0.41469048e+02 0.49767000e+00
- 1 -211 0 0 0.51346901e+01 0.22367977e+01 -0.44489547e+02 0.13957000e+00
- 1 2112 0 0 0.86142182e+01 0.60031094e+01 -0.88384340e+02 0.93957000e+00
- 1 211 0 0 0.11757074e+01 0.60610784e+00 -0.11001852e+02 0.13957000e+00
- 1 -2112 0 0 0.12296131e+02 0.72012839e+01 -0.12722357e+03 0.93957000e+00
- 1 -211 0 0 0.78464697e+00 0.57584154e+00 -0.84340814e+01 0.13957000e+00
- 2 310 191 192 0.10463013e+01 0.10264767e+01 -0.19923858e+02 0.49767000e+00
- 1 -211 0 0 0.79861937e+00 0.76960323e+00 -0.10976558e+02 0.13957000e+00
- 1 211 0 0 0.21113364e+01 0.16105222e+01 -0.40506960e+02 0.13957000e+00
- 1 22 0 0 0.59887209e-02 0.87934207e-02 -0.11771512e+01 0.00000000e+00
- 1 22 0 0 0.32822545e+00 0.21875902e+00 -0.72332844e+01 0.00000000e+00
- 1 22 0 0 0.37228321e+00 0.40981437e+00 -0.73671202e+01 0.00000000e+00
- 1 22 0 0 0.12024148e+01 0.99616142e+00 -0.21475894e+02 0.00000000e+00
- 1 211 0 0 0.97597439e+00 0.45562345e+00 -0.89417988e+01 0.13957000e+00
- 2 111 193 194 0.74826349e+00 0.90566714e+00 -0.15849754e+02 0.13498000e+00
- 1 321 0 0 0.26083319e+01 0.17634222e+01 -0.51744231e+02 0.49360000e+00
- 1 -211 0 0 0.61013312e+00 0.60304126e+00 -0.93468949e+01 0.13957000e+00
- 1 211 0 0 0.10484059e+01 0.37222575e+00 -0.33175000e+02 0.13957000e+00
- 2 111 195 196 0.16478914e+01 0.78579211e+00 -0.33568793e+02 0.13498000e+00
- 1 22 0 0 0.25321276e+00 0.13374697e+00 -0.34579585e+01 0.00000000e+00
- 1 22 0 0 -0.15770889e-01 -0.15694861e-02 -0.12801622e+00 0.00000000e+00
- 1 321 0 0 0.17438717e+01 0.70557149e+00 -0.52190081e+02 0.49360000e+00
- 1 -211 0 0 0.18757273e+01 0.13641368e+01 -0.62612228e+02 0.13957000e+00
- 2 -311 197 197 0.30260735e+01 0.15169104e+01 -0.75398278e+02 0.49767000e+00
- 2 111 198 199 0.19238084e+01 0.10656077e+01 -0.39448058e+02 0.13498000e+00
- 1 -211 0 0 0.84090176e+00 0.18190370e-01 -0.32734096e+02 0.13957000e+00
- 1 211 0 0 0.85253739e-01 0.43272967e-01 -0.75598855e+01 0.13957000e+00
- 2 111 200 201 0.43109126e+00 0.11934039e-01 -0.83534548e+01 0.13498000e+00
- 2 311 202 202 0.54515615e-01 -0.95317215e-01 -0.43274768e+01 0.49767000e+00
- 2 111 203 204 0.33897060e+00 0.33377664e+00 -0.31291019e+01 0.13498000e+00
- 1 -321 0 0 0.49422721e+00 0.13852706e+00 -0.44956240e+01 0.49360000e+00
- 1 211 0 0 0.30043314e-01 -0.28033099e+00 -0.20688441e+01 0.13957000e+00
- 1 -211 0 0 0.59818414e+00 -0.16180197e+00 -0.29843500e+01 0.13957000e+00
- 2 111 205 206 -0.13637748e+00 -0.24662275e+00 -0.68586146e+00 0.13498000e+00
- 1 211 0 0 -0.14888657e+00 0.29002585e+00 -0.19494737e+01 0.13957000e+00
- 2 111 207 208 0.51147582e+00 0.50754040e+00 -0.20516883e+01 0.13498000e+00
- 1 130 0 0 -0.38999992e+00 -0.56783432e+00 -0.14605643e+01 0.49767000e+00
- 2 -311 209 209 0.12900204e+00 -0.13956391e+00 -0.10939425e+01 0.49767000e+00
- 1 -211 0 0 -0.34564202e+00 0.16909028e-01 -0.11867362e+01 0.13957000e+00
- 1 211 0 0 0.28361598e+00 0.24097272e+00 -0.11251985e+01 0.13957000e+00
- 1 -211 0 0 0.30638395e+00 -0.40086949e+00 -0.71252511e+01 0.13957000e+00
- 1 211 0 0 -0.35599792e+00 -0.24834965e-01 -0.10299181e+02 0.13957000e+00
- 2 111 210 211 0.32096616e+00 0.21517492e+00 -0.35054540e+01 0.13498000e+00
- 1 22 0 0 0.13192856e+00 -0.31078641e+00 -0.10768896e+03 0.00000000e+00
- 1 22 0 0 -0.16718382e-02 -0.70884474e-01 -0.10723356e+02 0.00000000e+00
- 1 -211 0 0 -0.63568751e+00 -0.39918422e+01 0.11348893e+03 0.13957000e+00
- 2 111 212 213 -0.29470187e-01 -0.56903852e+00 0.23959036e+02 0.13498000e+00
- 1 22 0 0 -0.79079530e+00 -0.25559846e+01 0.65714356e+02 0.00000000e+00
- 1 22 0 0 -0.58141149e+00 -0.15231798e+01 0.40144697e+02 0.00000000e+00
- 1 22 0 0 -0.16895392e+00 -0.92596862e+00 0.20489597e+02 0.00000000e+00
- 2 111 214 215 -0.57145927e+00 -0.49884955e+01 0.15242008e+03 0.13498000e+00
- 1 211 0 0 -0.25786412e+01 -0.36025217e+01 0.94435312e+02 0.13957000e+00
- 2 111 216 217 -0.29973728e+01 -0.31882535e+01 0.10113780e+03 0.13498000e+00
- 1 -211 0 0 -0.37767576e+01 -0.51386946e+01 0.14655710e+03 0.13957000e+00
- 2 111 218 219 -0.67570555e+00 -0.12373073e+01 0.37868512e+02 0.13498000e+00
- 1 2212 0 0 -0.28937119e+01 -0.53683789e+01 0.14799323e+03 0.93827000e+00
- 1 211 0 0 -0.60048146e+00 -0.65724780e+00 0.21691291e+02 0.13957000e+00
- 1 211 0 0 -0.29176266e+01 -0.37990381e+01 0.10760866e+03 0.13957000e+00
- 1 -211 0 0 -0.44461612e+01 -0.56100271e+01 0.15779105e+03 0.13957000e+00
- 2 111 220 221 -0.13417161e+01 -0.17663612e+01 0.43868062e+02 0.13498000e+00
- 1 -2212 0 0 -0.15591954e+01 -0.18645766e+01 0.50413722e+02 0.93827000e+00
- 2 111 222 223 -0.23547055e+00 -0.38163629e+00 0.17270799e+02 0.13498000e+00
- 1 22 0 0 -0.14783645e+00 -0.39159546e+00 0.14706746e+02 0.00000000e+00
- 1 22 0 0 -0.63124116e-01 -0.28489735e+00 0.71734630e+01 0.00000000e+00
- 1 -211 0 0 0.52113346e+00 0.26321124e+00 0.21653504e+01 0.13957000e+00
- 2 111 224 225 -0.21419338e+00 0.70054992e-01 0.19570781e+01 0.13498000e+00
- 1 22 0 0 -0.66892007e-01 -0.40062723e-02 0.17054400e+00 0.00000000e+00
- 1 11 0 0 -0.66094416e-01 -0.16927134e-01 0.34065152e+00 0.51000000e-03
- 1 -11 0 0 -0.31556070e+00 -0.13474023e+00 0.18574848e+01 0.51000000e-03
- 1 2112 0 0 0.50011048e+00 0.91463438e-01 0.11990934e+02 0.93957000e+00
- 2 111 226 227 0.11853029e+00 0.11968724e+00 0.33209621e+01 0.13498000e+00
- 1 -2112 0 0 0.32079853e-01 -0.27362074e+00 0.56124606e+01 0.93957000e+00
- 1 -211 0 0 -0.16502844e+00 -0.13111687e+00 0.81838334e+00 0.13957000e+00
- 1 -211 0 0 -0.10560094e+00 0.41462262e+00 0.11005534e+03 0.13957000e+00
- 1 211 0 0 0.75698924e-01 -0.13449119e-01 0.70400949e+02 0.13957000e+00
- 2 111 228 229 0.40860045e-01 -0.13754289e+00 0.70076816e+02 0.13498000e+00
- 1 211 0 0 -0.28273640e+00 0.60384950e+00 0.19247592e+03 0.13957000e+00
- 1 -211 0 0 0.20111236e+00 -0.12232124e+00 0.11409558e+03 0.13957000e+00
- 1 130 0 0 0.42356326e+01 0.22082169e+01 -0.41469048e+02 0.49767000e+00
- 2 111 230 231 0.48678187e+00 0.72529745e+00 -0.12801683e+02 0.13498000e+00
- 2 111 232 233 0.55951943e+00 0.30117929e+00 -0.71221757e+01 0.13498000e+00
- 1 22 0 0 0.63329889e+00 0.81805033e+00 -0.14270427e+02 0.00000000e+00
- 1 22 0 0 0.11496460e+00 0.87616807e-01 -0.15793272e+01 0.00000000e+00
- 1 22 0 0 0.67691492e+00 0.27328576e+00 -0.12521115e+02 0.00000000e+00
- 1 22 0 0 0.97097652e+00 0.51250636e+00 -0.21047678e+02 0.00000000e+00
- 2 310 234 235 0.30260735e+01 0.15169104e+01 -0.75398278e+02 0.49767000e+00
- 1 22 0 0 0.17476677e+01 0.10084171e+01 -0.36342120e+02 0.00000000e+00
- 1 22 0 0 0.17614076e+00 0.57190533e-01 -0.31059384e+01 0.00000000e+00
- 1 22 0 0 0.70375608e-01 0.63683257e-02 -0.25710671e+01 0.00000000e+00
- 1 22 0 0 0.36071565e+00 0.55657137e-02 -0.57823877e+01 0.00000000e+00
- 1 130 0 0 0.54515615e-01 -0.95317215e-01 -0.43274768e+01 0.49767000e+00
- 1 22 0 0 0.73565677e-01 0.75620363e-02 -0.47095181e+00 0.00000000e+00
- 1 22 0 0 0.26540493e+00 0.32621460e+00 -0.26581501e+01 0.00000000e+00
- 1 22 0 0 -0.91711792e-01 -0.60477366e-01 -0.16013596e+00 0.00000000e+00
- 1 22 0 0 -0.44665683e-01 -0.18614538e+00 -0.52572550e+00 0.00000000e+00
- 1 22 0 0 0.22006089e+00 0.28710744e+00 -0.11593448e+01 0.00000000e+00
- 1 22 0 0 0.29141492e+00 0.22043296e+00 -0.89234351e+00 0.00000000e+00
- 1 130 0 0 0.12900204e+00 -0.13956391e+00 -0.10939425e+01 0.49767000e+00
- 1 22 0 0 0.11902118e+00 0.13833276e+00 -0.12121711e+01 0.00000000e+00
- 1 22 0 0 0.20194498e+00 0.76842165e-01 -0.22932829e+01 0.00000000e+00
- 1 22 0 0 0.13950402e-02 -0.14376513e+00 0.87414378e+01 0.00000000e+00
- 1 22 0 0 -0.30865228e-01 -0.42527339e+00 0.15217598e+02 0.00000000e+00
- 1 22 0 0 -0.45343515e+00 -0.35603411e+01 0.10767883e+03 0.00000000e+00
- 1 22 0 0 -0.11802412e+00 -0.14281544e+01 0.44741258e+02 0.00000000e+00
- 1 22 0 0 -0.13650509e+01 -0.15367522e+01 0.48279862e+02 0.00000000e+00
- 1 22 0 0 -0.16323219e+01 -0.16515013e+01 0.52857939e+02 0.00000000e+00
- 1 22 0 0 -0.24761745e+00 -0.56535359e+00 0.15466635e+02 0.00000000e+00
- 1 22 0 0 -0.42808810e+00 -0.67195372e+00 0.22401878e+02 0.00000000e+00
- 1 22 0 0 -0.35703099e+00 -0.44570666e+00 0.12459767e+02 0.00000000e+00
- 1 22 0 0 -0.98468510e+00 -0.13206546e+01 0.31408295e+02 0.00000000e+00
- 1 22 0 0 -0.22761794e+00 -0.33217426e+00 0.16374048e+02 0.00000000e+00
- 1 22 0 0 -0.78526140e-02 -0.49462028e-01 0.89675062e+00 0.00000000e+00
- 1 22 0 0 -0.18236609e+00 0.81920644e-01 0.18773793e+01 0.00000000e+00
- 1 22 0 0 -0.31827287e-01 -0.11865653e-01 0.79698820e-01 0.00000000e+00
- 1 22 0 0 0.11825277e+00 0.13710780e+00 0.32444929e+01 0.00000000e+00
- 1 22 0 0 0.27752626e-03 -0.17420557e-01 0.76469228e-01 0.00000000e+00
- 1 22 0 0 -0.14776678e-01 -0.14050482e+00 0.50301319e+02 0.00000000e+00
- 1 22 0 0 0.55636723e-01 0.29619326e-02 0.19775498e+02 0.00000000e+00
- 1 22 0 0 0.38738630e+00 0.61920166e+00 -0.99491330e+01 0.00000000e+00
- 1 22 0 0 0.99395568e-01 0.10609578e+00 -0.28525495e+01 0.00000000e+00
- 1 22 0 0 0.28486222e+00 0.19886388e+00 -0.44491045e+01 0.00000000e+00
- 1 22 0 0 0.27465722e+00 0.10231541e+00 -0.26730712e+01 0.00000000e+00
- 1 -211 0 0 0.40281229e+00 0.32187810e+00 -0.11072259e+02 0.13957000e+00
- 1 211 0 0 0.26232612e+01 0.11950323e+01 -0.64326019e+02 0.13957000e+00
- 759
- 2 25 2 3 -0.85900918e+02 0.14302789e+03 0.16242578e+03 0.12500506e+03
- 2 23 4 6 -0.37760339e+02 0.75459830e+02 0.62680283e+02 0.13349693e+02
- 2 23 7 9 -0.48140579e+02 0.67568064e+02 0.99745498e+02 0.90741629e+02
- 1 11 0 0 -0.37071566e+02 0.65728337e+02 0.57751474e+02 0.51000000e-03
- 1 -11 0 0 -0.68466181e+00 0.92333488e+01 0.47241158e+01 0.51000000e-03
- 1 22 0 0 -0.41112174e-02 0.49814475e+00 0.20469358e+00 0.00000000e+00
- 1 11 0 0 0.24312158e+02 0.15700641e+02 0.71362723e+01 0.51000000e-03
- 1 -11 0 0 -0.72452736e+02 0.51867422e+02 0.92609225e+02 0.51000000e-03
- 1 22 0 0 -0.39819806e-06 0.36822740e-07 0.71982835e-06 0.00000000e+00
- 2 2214 87 88 0.93583217e+00 -0.12225635e+01 -0.12781383e+04 0.13405107e+01
- 2 2 89 89 0.45408955e+01 -0.27249171e+01 0.45467828e+01 0.33000000e+00
- 2 21 89 89 0.23274536e+01 -0.99282142e+00 0.11444422e+01 0.00000000e+00
- 2 21 89 89 -0.10393585e+00 0.76695219e-01 0.12955599e+01 0.00000000e+00
- 2 2203 89 89 -0.14489756e+01 -0.38051582e-01 0.47382611e+04 0.77133000e+00
- 2 -2 100 100 0.13911800e+02 -0.34740318e+01 0.40302976e+01 0.33000000e+00
- 2 21 100 100 0.69995945e+01 -0.67868753e+00 0.18235007e+01 0.00000000e+00
- 2 21 100 100 0.71103451e+00 -0.33841457e+00 0.40415036e+00 0.00000000e+00
- 2 21 100 100 0.41229258e+01 0.83182570e+01 0.10222659e+03 0.00000000e+00
- 2 21 100 100 0.33206141e+02 0.44172573e+02 0.80844915e+03 0.00000000e+00
- 2 21 100 100 0.96634572e+01 0.13112730e+02 0.21726114e+03 0.00000000e+00
- 2 21 100 100 -0.35128901e+00 0.55622248e+01 0.53866243e+02 0.00000000e+00
- 2 21 100 100 -0.66436760e+01 0.77044313e+01 0.53811069e+02 0.00000000e+00
- 2 21 100 100 -0.47644599e+00 0.98920672e+00 0.86340146e+01 0.00000000e+00
- 2 21 100 100 -0.16489350e+01 0.28094276e+01 0.23511641e+02 0.00000000e+00
- 2 21 100 100 -0.39243739e+00 0.98480485e+00 0.16345866e+02 0.00000000e+00
- 2 21 100 100 0.64468302e-01 0.38207200e+01 0.32891825e+02 0.00000000e+00
- 2 21 100 100 -0.46128761e+00 -0.30950790e+00 0.10783997e+01 0.00000000e+00
- 2 21 100 100 -0.16512763e+01 -0.77535924e+01 0.13342507e+02 0.00000000e+00
- 2 21 100 100 -0.11039853e+01 -0.12971897e+01 0.32413701e+01 0.00000000e+00
- 2 21 100 100 0.37543711e-01 0.47047124e-01 0.57791353e+00 0.00000000e+00
- 2 21 100 100 0.15518305e+01 -0.37036229e+01 -0.56105635e+00 0.00000000e+00
- 2 21 100 100 0.95014021e+00 -0.21884550e+01 -0.49376765e+00 0.00000000e+00
- 2 21 100 100 0.22632342e+01 -0.11174665e+02 -0.62330365e+01 0.00000000e+00
- 2 21 100 100 0.21476378e+02 -0.72061284e+02 -0.84886009e+02 0.00000000e+00
- 2 21 100 100 0.10854403e+02 -0.56928786e+02 -0.63205532e+02 0.00000000e+00
- 2 21 100 100 0.12029220e+02 -0.60959166e+02 -0.76034289e+02 0.00000000e+00
- 2 21 100 100 0.15980560e+00 -0.83168035e+00 -0.55424330e+00 0.00000000e+00
- 2 21 100 100 -0.25272467e+02 -0.10015355e+02 -0.84754541e+01 0.00000000e+00
- 2 21 100 100 -0.51884340e+01 -0.28777526e+01 -0.87757490e+00 0.00000000e+00
- 2 1 100 100 -0.11860284e+00 0.10626489e+01 -0.11879443e+02 0.33000000e+00
- 2 -1 172 172 -0.13894521e+01 -0.48613767e+00 -0.14360376e+02 0.33000000e+00
- 2 21 172 172 0.13659889e+01 -0.84102996e+00 -0.96227085e+02 0.00000000e+00
- 2 21 172 172 0.25051842e+00 -0.16590394e+01 -0.23090937e+02 0.00000000e+00
- 2 21 172 172 0.41325965e-01 -0.29728127e+00 -0.14459727e+01 0.00000000e+00
- 2 21 172 172 -0.12603875e+00 -0.50588391e+00 -0.60384966e+01 0.00000000e+00
- 2 21 172 172 -0.22459413e+00 0.52457045e+00 -0.49105819e+02 0.00000000e+00
- 2 1 172 172 -0.19352226e+00 -0.13863516e+00 -0.89422210e+03 0.33000000e+00
- 2 -1 185 185 -0.42596766e+01 0.12260402e+01 -0.18713362e+04 0.33000000e+00
- 2 21 185 185 -0.79156441e-01 0.24006321e+00 -0.29185123e+03 0.00000000e+00
- 2 21 185 185 -0.72839644e-01 -0.13769960e+01 -0.66899078e+02 0.00000000e+00
- 2 21 185 185 -0.39779866e+00 0.10899676e+01 -0.19570426e+02 0.00000000e+00
- 2 21 185 185 -0.16751083e+00 -0.10474423e+01 -0.16874441e+01 0.00000000e+00
- 2 21 185 185 0.11640631e+01 -0.86569242e+01 -0.57148867e+01 0.00000000e+00
- 2 21 185 185 0.76530551e+00 -0.29651091e+00 -0.82752387e+00 0.00000000e+00
- 2 21 185 185 0.11366912e+01 0.65471294e-01 -0.16277453e+01 0.00000000e+00
- 2 21 185 185 0.40997349e+01 0.11864197e+02 -0.81530371e+02 0.00000000e+00
- 2 21 185 185 0.35178515e+01 0.10611727e+02 -0.65145406e+02 0.00000000e+00
- 2 21 185 185 0.32022701e+00 0.24138700e+00 -0.42704502e+01 0.00000000e+00
- 2 21 185 185 0.31737810e+00 -0.10053465e+00 -0.11870690e+01 0.00000000e+00
- 2 21 185 185 0.14754339e+01 0.13127305e+01 0.26030569e+01 0.00000000e+00
- 2 21 185 185 0.53919359e+01 0.39962226e+01 0.42903537e+01 0.00000000e+00
- 2 21 185 185 0.21944692e+01 0.44287463e+01 -0.33010322e+01 0.00000000e+00
- 2 21 185 185 0.24754135e+01 0.14824257e+01 -0.29029371e+01 0.00000000e+00
- 2 21 185 185 -0.13346878e+01 0.18142000e+01 -0.95150162e+01 0.00000000e+00
- 2 21 185 185 -0.23772092e+00 0.21391804e+01 -0.57751091e+02 0.00000000e+00
- 2 21 185 185 0.13346878e+01 -0.18142000e+01 -0.16370030e+04 0.00000000e+00
- 2 21 185 185 -0.14754339e+01 -0.13127305e+01 -0.89096276e+02 0.00000000e+00
- 2 21 185 185 -0.47287370e+00 0.18342024e+00 -0.16369996e+02 0.00000000e+00
- 2 21 185 185 -0.53919359e+01 -0.39962226e+01 -0.22682639e+02 0.00000000e+00
- 2 21 185 185 0.23772092e+00 -0.21391804e+01 -0.26330702e+01 0.00000000e+00
- 2 21 185 185 0.47287370e+00 -0.18342024e+00 -0.40078708e+00 0.00000000e+00
- 2 21 185 185 -0.21944692e+01 -0.44287463e+01 0.73546926e+01 0.00000000e+00
- 2 21 185 185 0.35162422e+00 0.24058443e+00 0.67699721e+02 0.00000000e+00
- 2 21 185 185 -0.35162422e+00 -0.24058443e+00 0.70305954e+01 0.00000000e+00
- 2 21 185 185 -0.24754135e+01 -0.14824257e+01 0.41228388e+02 0.00000000e+00
- 2 21 185 185 -0.16036934e+01 -0.46703904e+01 0.19754382e+03 0.00000000e+00
- 2 21 185 185 0.72334448e-01 0.15479198e+01 0.15691298e+02 0.00000000e+00
- 2 21 185 185 0.15609642e+00 0.17354492e+00 0.41347550e+02 0.00000000e+00
- 2 21 185 185 -0.45725380e+00 -0.12429370e+01 0.63118176e+02 0.00000000e+00
- 2 21 185 185 0.94220110e+00 0.48180701e+00 0.17682027e+02 0.00000000e+00
- 2 21 185 185 0.48455843e+00 0.95587545e-01 0.39218761e+01 0.00000000e+00
- 2 21 185 185 0.86210444e-02 0.12615708e+00 0.37077778e+00 0.00000000e+00
- 2 21 185 185 0.29859693e+00 -0.41119337e+00 0.34404833e+02 0.00000000e+00
- 2 21 185 185 0.59035606e+00 0.63970746e+00 0.60818970e+02 0.00000000e+00
- 2 21 185 185 -0.40028304e+00 0.88437824e+00 0.50463191e+02 0.00000000e+00
- 2 1 185 185 -0.12035216e+01 -0.19970590e+00 0.43945179e+01 0.33000000e+00
- 1 2212 0 0 0.84858733e+00 -0.57812405e+00 -0.86301928e+03 0.93827000e+00
- 1 22 0 0 0.87244845e-01 -0.64443947e+00 -0.41511901e+03 0.00000000e+00
- 2 92 90 99 0.53154377e+01 -0.36790949e+01 0.47452478e+04 0.19671930e+03
- 2 323 286 287 0.46932818e+01 -0.24637743e+01 0.43861734e+01 0.88062076e+00
- 2 3122 288 289 0.12817487e+01 -0.10577247e+01 0.16516959e+01 0.11156800e+01
- 1 211 0 0 0.11168420e+00 0.19816007e+00 0.43191936e+01 0.13957000e+00
- 1 -2212 0 0 0.37131730e+00 -0.26128278e+00 0.15154062e+01 0.93827000e+00
- 2 311 290 290 0.46211056e+00 0.54264686e+00 0.27906084e+01 0.49767000e+00
- 2 -323 291 292 -0.26192429e+00 -0.55142640e+00 0.57028788e+01 0.86803311e+00
- 1 211 0 0 0.28798771e+00 0.14079396e+00 0.27095799e+01 0.13957000e+00
- 2 -213 293 294 -0.59703873e+00 0.98448589e-01 0.25217412e+03 0.68648612e+00
- 2 2214 295 296 -0.60139296e+00 -0.43633366e+00 0.30427285e+04 0.12408047e+01
- 1 211 0 0 -0.43233660e+00 0.11139753e+00 0.14272697e+04 0.13957000e+00
- 2 92 101 171 0.74693140e+02 -0.14600812e+03 0.10882953e+04 0.13347440e+04
- 2 -213 297 298 0.13393194e+02 -0.27018028e+01 0.40701669e+01 0.84242029e+00
- 2 111 299 300 0.15789998e+01 -0.54141798e+00 0.22457630e+00 0.13498000e+00
- 1 211 0 0 0.42237493e+01 -0.10540682e+01 0.13637344e+01 0.13957000e+00
- 1 -211 0 0 0.16626086e+00 0.20725768e+00 -0.85587555e-02 0.13957000e+00
- 2 -2114 301 302 0.16863847e+01 0.48142463e-01 0.23212783e+01 0.11677359e+01
- 2 2214 303 304 0.46417139e-01 0.37125955e+00 0.12197795e+01 0.12419307e+01
- 2 331 305 307 0.37615976e+00 -0.61124305e+00 0.39751437e+01 0.95762482e+00
- 2 223 308 309 0.24068994e+01 0.35561725e+01 0.40405006e+02 0.77631589e+00
- 1 -2212 0 0 0.32263266e+00 0.72413314e+00 0.10529719e+02 0.93827000e+00
- 1 2212 0 0 0.18802670e+01 0.39422665e+01 0.61712276e+02 0.93827000e+00
- 2 -213 310 311 0.23712335e+01 0.17921287e+01 0.34453510e+02 0.58183612e+00
- 2 223 312 314 0.12185488e+02 0.17082769e+02 0.30422800e+03 0.78367902e+00
- 2 -313 315 316 0.65152577e+01 0.91910580e+01 0.15042919e+03 0.91423850e+00
- 2 311 317 317 0.10292921e+01 0.17669802e+01 0.31908408e+02 0.49767000e+00
- 2 221 318 320 0.85879966e+01 0.11798258e+02 0.21563372e+03 0.54745000e+00
- 1 211 0 0 0.19809955e+01 0.32011197e+01 0.57007977e+02 0.13957000e+00
- 2 -213 321 322 0.23243790e+01 0.26218780e+01 0.46586366e+02 0.87530343e+00
- 2 113 323 324 0.16480400e+01 0.36661311e+01 0.53837791e+02 0.79075165e+00
- 2 213 325 326 0.31856582e+01 0.46443012e+01 0.81465387e+02 0.58376343e+00
- 2 111 327 328 0.13751410e+01 0.17781429e+01 0.26066745e+02 0.13498000e+00
- 2 111 329 330 0.11921301e+00 0.19946120e+00 0.23676185e+01 0.13498000e+00
- 2 -323 331 332 0.41564048e+00 0.13118482e+01 0.14272981e+02 0.87464562e+00
- 2 313 333 334 -0.69040016e+00 0.13303735e+01 0.11400159e+02 0.88288418e+00
- 2 111 335 336 -0.63903701e+00 0.88911931e+00 0.12219870e+02 0.13498000e+00
- 1 211 0 0 -0.99577119e-01 0.73737310e+00 0.23210650e+01 0.13957000e+00
- 2 111 337 338 -0.65258813e+00 0.36611356e+00 0.47150655e+01 0.13498000e+00
- 2 113 339 340 -0.60071501e+00 0.18380236e+01 0.16327848e+02 0.90574815e+00
- 2 -213 341 342 -0.49872777e+00 0.11592812e+01 0.12131455e+02 0.73302988e+00
- 2 -313 343 344 -0.63445180e+00 0.23299077e+01 0.21960443e+02 0.91915186e+00
- 2 311 345 345 -0.48676547e+00 0.57810695e+01 0.54649432e+02 0.49767000e+00
- 2 113 346 347 -0.44287619e+01 0.39878000e+01 0.30998031e+02 0.87137415e+00
- 1 211 0 0 0.13645940e+00 0.12163713e+01 0.11671873e+02 0.13957000e+00
- 2 -323 348 349 -0.10799195e+01 -0.20198923e+01 0.45081921e+01 0.92413135e+00
- 2 311 350 350 0.20648531e+00 -0.11092198e+01 0.22282547e+01 0.49767000e+00
- 2 -313 351 352 -0.98323202e+00 -0.17301841e+01 0.29879883e+01 0.96574870e+00
- 2 311 353 353 -0.23310525e-01 0.21226264e+00 0.21950214e+00 0.49767000e+00
- 1 211 0 0 0.24215099e+00 -0.47998305e+01 0.67970827e+01 0.13957000e+00
- 1 -211 0 0 -0.13334666e+01 -0.51472243e+00 0.12200292e+01 0.13957000e+00
- 2 113 354 355 0.13169653e+01 -0.25220367e+01 -0.31130675e+00 0.78832996e+00
- 1 211 0 0 -0.14097156e+00 -0.57757980e-01 -0.54264472e+00 0.13957000e+00
- 2 113 356 357 0.22163819e+00 -0.30745401e+01 -0.62434004e+00 0.10148052e+01
- 1 -211 0 0 0.17721834e+01 -0.29600850e+01 -0.62598765e+00 0.13957000e+00
- 2 -311 358 358 0.30596083e+00 -0.15565792e+01 -0.17683723e+01 0.49767000e+00
- 2 323 359 360 0.51763365e+00 -0.28560348e+01 -0.25950438e+01 0.91459852e+00
- 1 -211 0 0 0.22886251e+01 -0.72487094e+01 -0.53791364e+01 0.13957000e+00
- 2 223 361 363 0.74029972e+00 -0.34390213e+01 -0.41859824e+01 0.77878255e+00
- 1 211 0 0 0.67574908e+00 -0.41831556e+01 -0.42197753e+01 0.13957000e+00
- 1 -321 0 0 0.19312942e+01 -0.48127120e+01 -0.54158240e+01 0.49360000e+00
- 2 311 364 364 0.62180240e+01 -0.20362884e+02 -0.23846929e+02 0.49767000e+00
- 2 221 365 367 0.39100813e+01 -0.15754739e+02 -0.19167376e+02 0.54745000e+00
- 2 -313 368 369 0.88428257e+01 -0.34914125e+02 -0.38809536e+02 0.89146034e+00
- 2 323 370 371 0.27548561e+01 -0.14404411e+02 -0.17837016e+02 0.91093748e+00
- 1 -2212 0 0 0.69564495e+01 -0.35997737e+02 -0.41212708e+02 0.93827000e+00
- 1 2112 0 0 0.50927923e+01 -0.24606223e+02 -0.30121917e+02 0.93957000e+00
- 2 213 372 373 0.44223154e+01 -0.22731772e+02 -0.27223093e+02 0.10664681e+01
- 1 -321 0 0 0.24330477e+00 -0.10597756e+01 -0.10877344e+01 0.49360000e+00
- 2 323 374 375 0.39639690e+00 -0.26855841e+01 -0.39318936e+01 0.78076289e+00
- 2 221 376 377 -0.18471501e+00 -0.94752914e-01 -0.83648751e+00 0.54745000e+00
- 2 -323 378 379 -0.67861117e-01 -0.85706802e+00 -0.57898651e+00 0.90178824e+00
- 2 333 380 381 -0.57535889e+01 -0.31488240e+01 -0.26592777e+01 0.10111210e+01
- 2 333 382 383 -0.38202686e+01 -0.15165559e+01 -0.12421111e+01 0.10173680e+01
- 2 311 384 384 -0.24163709e+01 -0.11612304e+01 -0.13043272e+01 0.49767000e+00
- 2 223 385 387 -0.64799076e+01 -0.32058871e+01 -0.16138269e+01 0.78138951e+00
- 2 111 388 389 -0.36969778e+01 -0.72899887e+00 -0.11338614e+01 0.13498000e+00
- 2 113 390 391 -0.36775045e+01 -0.18043378e+01 -0.13849092e+01 0.11613412e+01
- 1 211 0 0 -0.77151820e+00 -0.36539789e+00 -0.66512083e+00 0.13957000e+00
- 2 113 392 393 -0.20659967e+01 -0.14883163e+01 -0.45710942e+00 0.69881990e+00
- 1 -321 0 0 0.19018434e-01 -0.76313624e-01 -0.84799783e+00 0.49360000e+00
- 2 323 394 395 -0.62049747e+00 0.35099233e+00 -0.21364782e+01 0.10139251e+01
- 2 -2214 396 397 -0.55870585e+00 0.16166443e+00 -0.40804686e+01 0.13360593e+01
- 2 2114 398 399 0.68167278e-01 0.48616591e+00 -0.42842527e+01 0.12248352e+01
- 2 92 173 184 -0.27577402e+00 -0.34034369e+01 -0.10844908e+04 0.21066347e+02
- 2 111 400 401 -0.11608468e+01 -0.31856228e+00 -0.10899956e+02 0.13498000e+00
- 1 211 0 0 0.15196674e+00 -0.25496168e+00 -0.30443117e+02 0.13957000e+00
- 1 -211 0 0 0.74378533e+00 -0.84661914e+00 -0.22517250e+02 0.13957000e+00
- 2 221 402 404 0.18497672e-01 -0.63039749e+00 -0.34915468e+02 0.54745000e+00
- 2 111 405 407 0.50685079e+00 -0.53417648e-01 -0.46170192e+01 0.13498000e+00
- 2 -2214 408 409 -0.34229148e+00 -0.11563370e+01 -0.43002147e+02 0.12780973e+01
- 1 211 0 0 0.38734162e+00 -0.32853654e+00 -0.10982398e+02 0.13957000e+00
- 2 2214 410 411 -0.22727721e+00 0.18257946e+00 -0.49169669e+02 0.13078054e+01
- 2 221 412 414 -0.17026474e+00 -0.12097688e-01 -0.48938422e+02 0.54745000e+00
- 2 -213 415 416 0.29037520e-01 0.28664496e+00 -0.34875138e+03 0.78411571e+00
- 2 -311 417 417 -0.27905847e-01 -0.29396731e+00 -0.30870614e+03 0.49767000e+00
- 2 311 418 418 -0.18466766e+00 0.22235464e-01 -0.17154782e+03 0.49767000e+00
- 2 92 186 285 0.52322817e+01 0.11285321e+02 -0.36333398e+04 0.32780685e+04
- 2 221 419 420 -0.24718758e+01 0.95029477e+00 -0.11098286e+04 0.54745000e+00
- 1 211 0 0 -0.37527810e+00 -0.37868591e+00 -0.36461961e+03 0.13957000e+00
- 1 -321 0 0 -0.11987452e+00 0.18540252e+00 -0.69737889e+02 0.49360000e+00
- 2 323 421 422 -0.15025297e+01 0.59298915e+00 -0.44227253e+03 0.87917932e+00
- 1 -211 0 0 0.33314648e+00 -0.43833360e+00 -0.88096712e+02 0.13957000e+00
- 1 -2212 0 0 -0.42056907e+00 0.31539240e-01 -0.32559897e+02 0.93827000e+00
- 2 213 423 424 0.15885372e+00 0.38520355e+00 -0.81128357e+02 0.65136211e+00
- 1 2212 0 0 -0.80875864e-01 -0.54758787e+00 -0.39017290e+02 0.93827000e+00
- 2 -213 425 426 -0.18873142e+00 -0.96092848e+00 -0.12064237e+02 0.79170479e+00
- 2 213 427 428 -0.13323730e+00 0.73047529e+00 -0.69705692e+01 0.73646189e+00
- 2 -213 429 430 -0.13082998e+00 -0.86069133e+00 -0.19430410e+01 0.76592254e+00
- 1 211 0 0 0.15633888e-01 0.27161495e+00 -0.28530637e-01 0.13957000e+00
- 1 -321 0 0 -0.70545764e-01 -0.84081513e+00 -0.20793437e+01 0.49360000e+00
- 2 323 431 432 0.56540531e+00 -0.75621921e+00 -0.16805323e+01 0.87920095e+00
- 2 -323 433 434 0.10176173e+01 -0.23239393e+01 -0.20635895e+01 0.89762285e+00
- 2 311 435 435 -0.15505245e+00 -0.65041711e+00 -0.92424887e+00 0.49767000e+00
- 2 213 436 437 0.28819773e+00 -0.22444098e+01 -0.17096195e+01 0.78533778e+00
- 2 113 438 439 -0.16545149e+00 -0.68508511e-01 -0.19399528e+01 0.74816830e+00
- 1 -211 0 0 0.21478738e+00 -0.70367019e-01 -0.30966343e+00 0.13957000e+00
- 2 213 440 441 0.27034863e+00 -0.60552607e+00 -0.90952178e+00 0.81502701e+00
- 2 113 442 443 0.33958689e+00 -0.77825683e+00 -0.16751930e+01 0.94723246e+00
- 2 -213 444 445 0.44775688e+00 0.13836229e+00 -0.36381220e+01 0.77172155e+00
- 2 -313 446 447 0.18493548e+00 0.72235419e+00 -0.28900973e+01 0.10054059e+01
- 2 323 448 449 0.39025236e+01 0.10293048e+02 -0.66102286e+02 0.90158224e+00
- 2 223 450 452 0.13871773e+01 0.35020251e+01 -0.27137176e+02 0.78529360e+00
- 2 221 453 455 0.78640278e+00 0.20661006e+01 -0.11718711e+02 0.54745000e+00
- 2 113 456 457 0.62670838e+00 0.12032012e+01 -0.10531586e+02 0.77694573e+00
- 2 -213 458 459 -0.19525126e+00 0.16646803e+01 -0.77475593e+01 0.76623358e+00
- 2 -313 460 461 0.55118339e+00 0.10307883e+01 -0.65557147e+01 0.96581067e+00
- 2 323 462 463 0.12922944e+01 0.12902463e+01 -0.95871834e+01 0.88646669e+00
- 1 -211 0 0 -0.81505321e-01 0.34991803e+00 -0.12378472e+01 0.13957000e+00
- 1 211 0 0 0.65942548e-01 -0.23816721e+00 -0.11428151e+01 0.13957000e+00
- 2 331 464 466 0.66805552e+00 0.41723476e+00 -0.39335800e+00 0.95776680e+00
- 1 -211 0 0 -0.68288163e+00 0.48448058e+00 0.30348387e+00 0.13957000e+00
- 1 211 0 0 0.14671714e+01 0.32655826e+00 0.50139405e+00 0.13957000e+00
- 2 111 467 468 0.19591955e+00 0.15057722e+00 -0.23256741e+00 0.13498000e+00
- 1 -211 0 0 0.40615964e+00 0.55745413e+00 0.31532616e+00 0.13957000e+00
- 1 211 0 0 0.72623696e+00 0.20545576e+00 -0.21099457e+00 0.13957000e+00
- 1 -211 0 0 0.11940951e+01 0.12471262e+01 0.19816346e+01 0.13957000e+00
- 2 223 469 471 0.27633072e+01 0.23645836e+01 0.22031080e+01 0.79065669e+00
- 2 221 472 474 0.45985102e+00 0.11721073e+01 -0.97181192e+00 0.54745000e+00
- 1 211 0 0 0.82291811e+00 0.10912289e+01 -0.56904726e+00 0.13957000e+00
- 2 111 475 476 0.13001722e+00 0.29533667e-01 -0.80457910e+00 0.13498000e+00
- 1 -211 0 0 0.62584470e+00 0.21510297e+00 -0.68971459e-01 0.13957000e+00
- 2 111 477 478 -0.64772549e-01 0.14258545e+01 -0.53617562e+00 0.13498000e+00
- 1 211 0 0 0.19481173e+01 0.98389604e+00 -0.22003431e+01 0.13957000e+00
- 2 223 479 481 0.28630029e-01 0.14500974e+01 -0.54551687e+01 0.78449331e+00
- 2 -213 482 483 0.29131425e+00 0.54660684e+00 -0.43086341e+01 0.10542214e+01
- 2 -311 484 484 -0.75825878e+00 0.77358941e+00 -0.41483984e+01 0.49767000e+00
- 2 311 485 485 -0.13698440e+00 0.44982438e+00 -0.18845924e+02 0.49767000e+00
- 1 211 0 0 0.28253710e+00 -0.57888574e-01 -0.33013031e+01 0.13957000e+00
- 2 111 486 487 -0.59350450e+00 0.12509800e+01 -0.43731840e+02 0.13498000e+00
- 1 -211 0 0 0.31158891e+00 0.21388795e+00 -0.17402245e+02 0.13957000e+00
- 2 213 488 489 -0.57234987e-01 -0.26581003e+00 -0.99869700e+02 0.10416831e+01
- 2 -213 490 491 0.80722733e+00 -0.69253000e+00 -0.51940642e+03 0.10753568e+01
- 2 213 492 493 -0.42501582e-01 -0.11276619e+00 -0.16728228e+03 0.83079342e+00
- 2 223 494 496 0.51523602e+00 -0.23031804e+00 -0.62059014e+03 0.78145879e+00
- 1 -321 0 0 -0.76105665e+00 -0.70681677e+00 -0.73217375e+02 0.49360000e+00
- 2 311 497 497 -0.35449169e+00 -0.30657906e+00 -0.53176190e+02 0.49767000e+00
- 2 213 498 499 -0.49417094e+00 0.91931072e-01 -0.42730393e+02 0.77689281e+00
- 2 113 500 501 0.54427393e+00 -0.22593993e+00 -0.59724065e+02 0.82082255e+00
- 2 -213 502 503 -0.30690940e+00 0.19835495e+00 -0.26704699e+02 0.78415570e+00
- 2 213 504 505 -0.28394852e+00 -0.50480323e+00 -0.22479569e+02 0.88558479e+00
- 2 -213 506 507 -0.39935384e+00 -0.75264046e+00 -0.98108732e+01 0.94329500e+00
- 1 211 0 0 -0.65079784e+00 -0.86258478e-01 -0.56689082e+01 0.13957000e+00
- 2 -213 508 509 -0.21798274e+00 -0.96927575e+00 -0.52537037e+01 0.61793456e+00
- 2 111 510 511 -0.74654497e+00 0.10593185e+00 -0.12090970e+02 0.13498000e+00
- 2 221 512 514 -0.89171243e+00 0.14118536e+00 -0.70505911e+01 0.54745000e+00
- 2 111 515 516 -0.22362240e+01 -0.27204630e+01 -0.10266246e+02 0.13498000e+00
- 1 -2212 0 0 0.18087161e+00 -0.12450218e+01 -0.39983955e+00 0.93827000e+00
- 2 2224 517 518 -0.10535431e+01 -0.18590863e+00 -0.10169856e+01 0.12205558e+01
- 1 -211 0 0 0.93602919e+00 -0.10272186e+01 -0.63822108e+00 0.13957000e+00
- 1 211 0 0 -0.10341231e+01 -0.45809823e+00 0.82772784e+00 0.13957000e+00
- 2 331 519 521 0.10794835e+00 -0.14497628e+01 0.19889162e+01 0.95782869e+00
- 2 -213 522 523 -0.41473823e-01 -0.71958968e+00 0.13671975e+01 0.63036415e+00
- 1 211 0 0 -0.20964186e+00 0.32572891e+00 0.30896199e+01 0.13957000e+00
- 1 -321 0 0 -0.62547991e+00 -0.44160681e+00 0.34156948e+01 0.49360000e+00
- 2 313 524 525 -0.23762543e+00 -0.12864493e+00 0.29288997e+01 0.88870944e+00
- 2 111 526 527 -0.40803073e+00 -0.47978822e+00 0.16143378e+01 0.13498000e+00
- 2 213 528 529 0.92042174e+00 -0.40304419e+00 0.13510724e+02 0.75451496e+00
- 2 331 530 532 -0.48647479e+00 -0.15653997e-02 0.15264075e+02 0.95775869e+00
- 1 -211 0 0 -0.57337909e+00 -0.72990861e+00 0.49979784e+01 0.13957000e+00
- 2 113 533 534 -0.11511532e+00 0.18315951e+00 0.11622870e+02 0.72697863e+00
- 1 211 0 0 -0.83868771e+00 -0.99533507e+00 0.51259355e+02 0.13957000e+00
- 2 -213 535 536 -0.21761538e+00 -0.10756746e+01 0.73928096e+02 0.71969064e+00
- 1 211 0 0 -0.68719314e+00 -0.88439163e+00 0.12607987e+02 0.13957000e+00
- 2 113 537 538 -0.14278642e+01 -0.64691701e+00 0.39112238e+02 0.67839308e+00
- 1 -211 0 0 -0.15183826e+00 -0.26445012e+00 0.24928331e+01 0.13957000e+00
- 2 331 539 541 -0.41445235e+00 0.85004701e-03 0.16657136e+02 0.95940924e+00
- 2 221 542 544 0.55601636e+00 -0.10320605e+01 0.94048926e+02 0.54745000e+00
- 2 113 545 546 -0.14980070e+00 0.32076468e+00 0.24989994e+02 0.84545110e+00
- 2 113 547 548 0.95825100e-01 -0.34004805e+00 0.13160128e+02 0.72345537e+00
- 2 -311 549 549 0.48851014e+00 -0.14846624e+00 0.32181086e+02 0.49767000e+00
- 2 311 550 550 0.54979182e-01 -0.23377741e+00 0.39852752e+01 0.49767000e+00
- 2 111 551 552 -0.37152519e-01 -0.16129308e+00 0.30354806e+02 0.13498000e+00
- 2 -311 553 553 0.37756900e+00 0.25974048e+00 0.37977719e+02 0.49767000e+00
- 2 313 554 555 0.19095611e+00 0.65242941e+00 0.19161553e+02 0.95217314e+00
- 2 -311 556 556 0.51494510e+00 -0.80599657e-01 0.60255235e+02 0.49767000e+00
- 2 311 557 557 -0.76650732e-01 0.83586474e+00 0.32460098e+02 0.49767000e+00
- 2 223 558 560 -0.12717119e+01 -0.66929044e-01 0.65013146e+01 0.78428186e+00
- 2 311 561 561 0.39483960e+01 -0.18077977e+01 0.35709506e+01 0.49767000e+00
- 1 211 0 0 0.74488581e+00 -0.65597664e+00 0.81522276e+00 0.13957000e+00
- 1 2212 0 0 0.11779240e+01 -0.87487277e+00 0.15134374e+01 0.93827000e+00
- 1 -211 0 0 0.10382470e+00 -0.18285195e+00 0.13825853e+00 0.13957000e+00
- 1 130 0 0 0.46211056e+00 0.54264686e+00 0.27906084e+01 0.49767000e+00
- 2 -311 562 562 -0.68283713e-01 -0.47311740e+00 0.51168489e+01 0.49767000e+00
- 1 -211 0 0 -0.19364058e+00 -0.78309004e-01 0.58602990e+00 0.13957000e+00
- 1 -211 0 0 -0.39391625e+00 0.30210492e+00 0.20176866e+03 0.13957000e+00
- 2 111 563 564 -0.20312248e+00 -0.20365633e+00 0.50405461e+02 0.13498000e+00
- 1 2212 0 0 -0.62266155e+00 -0.25946840e+00 0.28067049e+04 0.93827000e+00
- 2 111 565 566 0.21268596e-01 -0.17686526e+00 0.23602358e+03 0.13498000e+00
- 1 -211 0 0 0.55542406e+01 -0.10135720e+01 0.20763211e+01 0.13957000e+00
- 2 111 567 568 0.78389535e+01 -0.16882309e+01 0.19938458e+01 0.13498000e+00
- 1 22 0 0 0.14696490e+01 -0.49032865e+00 0.17477066e+00 0.00000000e+00
- 1 22 0 0 0.10935085e+00 -0.51089330e-01 0.49805640e-01 0.00000000e+00
- 1 -2112 0 0 0.12360929e+01 0.12811672e+00 0.19363198e+01 0.93957000e+00
- 2 111 569 570 0.45029178e+00 -0.79974256e-01 0.38495841e+00 0.13498000e+00
- 1 2112 0 0 0.18557489e+00 0.47435592e+00 0.94186309e+00 0.93957000e+00
- 1 211 0 0 -0.13915775e+00 -0.10309637e+00 0.27791645e+00 0.13957000e+00
- 2 111 571 572 -0.40433095e-01 -0.21408223e+00 0.76591987e+00 0.13498000e+00
- 2 111 573 574 0.52598399e-01 -0.90044255e-01 0.29740377e+00 0.13498000e+00
- 2 221 575 577 0.36399445e+00 -0.30711656e+00 0.29118201e+01 0.54745000e+00
- 1 22 0 0 0.17988655e+01 0.22782939e+01 0.29557973e+02 0.00000000e+00
- 2 111 578 579 0.60803385e+00 0.12778786e+01 0.10847033e+02 0.13498000e+00
- 1 -211 0 0 0.16446236e+01 0.13715659e+01 0.22239820e+02 0.13957000e+00
- 2 111 580 581 0.72660992e+00 0.42056277e+00 0.12213690e+02 0.13498000e+00
- 1 211 0 0 0.36572601e+01 0.49270653e+01 0.85368138e+02 0.13957000e+00
- 1 -211 0 0 0.18102329e+01 0.25802794e+01 0.47176011e+02 0.13957000e+00
- 2 111 582 583 0.67179955e+01 0.95754245e+01 0.17168385e+03 0.13498000e+00
- 1 -321 0 0 0.44288522e+01 0.57308219e+01 0.97347898e+02 0.49360000e+00
- 1 211 0 0 0.20864055e+01 0.34602361e+01 0.53081295e+02 0.13957000e+00
- 1 130 0 0 0.10292921e+01 0.17669802e+01 0.31908408e+02 0.49767000e+00
- 2 111 584 585 0.30665209e+01 0.42680365e+01 0.78720358e+02 0.13498000e+00
- 2 111 586 587 0.24111042e+01 0.33292817e+01 0.58422959e+02 0.13498000e+00
- 2 111 588 589 0.31103714e+01 0.42009398e+01 0.78490400e+02 0.13498000e+00
- 1 -211 0 0 0.23423207e+01 0.24961840e+01 0.44058547e+02 0.13957000e+00
- 2 111 590 591 -0.17941729e-01 0.12569402e+00 0.25278189e+01 0.13498000e+00
- 1 -211 0 0 0.12506465e+01 0.32784832e+01 0.44710339e+02 0.13957000e+00
- 1 211 0 0 0.39739348e+00 0.38764785e+00 0.91274521e+01 0.13957000e+00
- 1 211 0 0 0.25207789e+01 0.34271334e+01 0.59002693e+02 0.13957000e+00
- 2 111 592 593 0.66487926e+00 0.12171678e+01 0.22462694e+02 0.13498000e+00
- 1 22 0 0 0.11260059e+01 0.14752586e+01 0.22070345e+02 0.00000000e+00
- 1 22 0 0 0.24913509e+00 0.30288428e+00 0.39963997e+01 0.00000000e+00
- 1 22 0 0 0.13314129e+00 0.13646985e+00 0.13815231e+01 0.00000000e+00
- 1 22 0 0 -0.13928283e-01 0.62991352e-01 0.98609540e+00 0.00000000e+00
- 2 -311 594 594 0.28625010e+00 0.66693978e+00 0.10180599e+02 0.49767000e+00
- 1 -211 0 0 0.12939038e+00 0.64490837e+00 0.40923819e+01 0.13957000e+00
- 2 311 595 595 -0.73655250e+00 0.12013852e+01 0.10771861e+02 0.49767000e+00
- 2 111 596 597 0.46152347e-01 0.12898832e+00 0.62829736e+00 0.13498000e+00
- 1 22 0 0 -0.13080466e+00 0.22465515e+00 0.23596074e+01 0.00000000e+00
- 1 22 0 0 -0.50823234e+00 0.66446416e+00 0.98602627e+01 0.00000000e+00
- 1 22 0 0 -0.61289542e+00 0.37239065e+00 0.45448131e+01 0.00000000e+00
- 1 22 0 0 -0.39692713e-01 -0.62770874e-02 0.17025247e+00 0.00000000e+00
- 1 211 0 0 0.49604696e-01 0.11279228e+00 0.54136975e+00 0.13957000e+00
- 1 -211 0 0 -0.65031970e+00 0.17252313e+01 0.15786478e+02 0.13957000e+00
- 1 -211 0 0 0.55994037e-01 -0.98935195e-02 0.16932078e+01 0.13957000e+00
- 2 111 598 599 -0.55472181e+00 0.11691747e+01 0.10438247e+02 0.13498000e+00
- 1 -321 0 0 -0.20394997e+00 0.76114045e+00 0.93776359e+01 0.49360000e+00
- 1 211 0 0 -0.43050182e+00 0.15687672e+01 0.12582807e+02 0.13957000e+00
- 1 130 0 0 -0.48676547e+00 0.57810695e+01 0.54649432e+02 0.49767000e+00
- 1 -211 0 0 -0.17547118e+01 0.17233339e+01 0.14890100e+02 0.13957000e+00
- 1 211 0 0 -0.26740501e+01 0.22644662e+01 0.16107931e+02 0.13957000e+00
- 2 -311 600 600 -0.33336100e+00 -0.12516538e+01 0.26361877e+01 0.49767000e+00
- 1 -211 0 0 -0.74655847e+00 -0.76823847e+00 0.18720044e+01 0.13957000e+00
- 2 310 601 602 0.20648531e+00 -0.11092198e+01 0.22282547e+01 0.49767000e+00
- 1 -321 0 0 -0.41538391e+00 -0.13534481e+01 0.22473517e+01 0.49360000e+00
- 1 211 0 0 -0.56784811e+00 -0.37673604e+00 0.74063660e+00 0.13957000e+00
- 1 130 0 0 -0.23310525e-01 0.21226264e+00 0.21950214e+00 0.49767000e+00
- 1 211 0 0 0.67562407e+00 -0.71424448e+00 -0.32683822e+00 0.13957000e+00
- 1 -211 0 0 0.64134125e+00 -0.18077922e+01 0.15531470e-01 0.13957000e+00
- 1 -211 0 0 0.52967825e+00 -0.23000093e+01 -0.24044457e+00 0.13957000e+00
- 1 211 0 0 -0.30804006e+00 -0.77453071e+00 -0.38389547e+00 0.13957000e+00
- 1 130 0 0 0.30596083e+00 -0.15565792e+01 -0.17683723e+01 0.49767000e+00
- 1 321 0 0 0.49314416e+00 -0.12661206e+01 -0.13018691e+01 0.49360000e+00
- 2 111 603 604 0.24489491e-01 -0.15899143e+01 -0.12931746e+01 0.13498000e+00
- 1 -211 0 0 0.11390185e+00 -0.12922891e+01 -0.16419566e+01 0.13957000e+00
- 1 211 0 0 0.25232683e+00 -0.41769382e+00 -0.42433488e+00 0.13957000e+00
- 2 111 605 606 0.37407103e+00 -0.17290384e+01 -0.21196910e+01 0.13498000e+00
- 1 130 0 0 0.62180240e+01 -0.20362884e+02 -0.23846929e+02 0.49767000e+00
- 2 111 607 608 0.38907681e+00 -0.16078524e+01 -0.20159181e+01 0.13498000e+00
- 2 111 609 610 0.24033959e+01 -0.94628543e+01 -0.11448925e+02 0.13498000e+00
- 2 111 611 612 0.11176086e+01 -0.46840320e+01 -0.57025326e+01 0.13498000e+00
- 1 -321 0 0 0.51589496e+01 -0.21435882e+02 -0.23584961e+02 0.49360000e+00
- 1 211 0 0 0.36838761e+01 -0.13478242e+02 -0.15224575e+02 0.13957000e+00
- 2 311 613 613 0.11201369e+01 -0.53514484e+01 -0.64304580e+01 0.49767000e+00
- 1 211 0 0 0.16347192e+01 -0.90529628e+01 -0.11406558e+02 0.13957000e+00
- 1 211 0 0 0.13652633e+01 -0.50774593e+01 -0.58469887e+01 0.13957000e+00
- 1 22 0 0 0.30570521e+01 -0.17654313e+02 -0.21376104e+02 0.00000000e+00
- 2 311 614 614 0.18064585e+00 -0.22758599e+01 -0.33561988e+01 0.49767000e+00
- 1 211 0 0 0.21575105e+00 -0.40972425e+00 -0.57569489e+00 0.13957000e+00
- 1 22 0 0 0.16938514e+00 0.36116437e-01 -0.11850733e+00 0.00000000e+00
- 1 22 0 0 -0.35410015e+00 -0.13086935e+00 -0.71798017e+00 0.00000000e+00
- 2 -311 615 615 -0.28144672e-01 -0.89821362e+00 -0.64098109e+00 0.49767000e+00
- 1 -211 0 0 -0.39716445e-01 0.41145600e-01 0.61994571e-01 0.13957000e+00
- 1 -321 0 0 -0.29200728e+01 -0.14924792e+01 -0.13916008e+01 0.49360000e+00
- 1 321 0 0 -0.28335161e+01 -0.16563448e+01 -0.12676769e+01 0.49360000e+00
- 2 -213 616 617 -0.24346769e+01 -0.78383794e+00 -0.62087349e+00 0.68994617e+00
- 1 211 0 0 -0.13855916e+01 -0.73271797e+00 -0.62123757e+00 0.13957000e+00
- 1 130 0 0 -0.24163709e+01 -0.11612304e+01 -0.13043272e+01 0.49767000e+00
- 1 211 0 0 -0.11753288e+01 -0.68717143e+00 -0.26432240e+00 0.13957000e+00
- 1 -211 0 0 -0.45337223e+01 -0.23119027e+01 -0.12168126e+01 0.13957000e+00
- 2 111 618 619 -0.77085658e+00 -0.20681295e+00 -0.13269192e+00 0.13498000e+00
- 1 22 0 0 -0.14636236e+01 -0.22879529e+00 -0.47693100e+00 0.00000000e+00
- 1 22 0 0 -0.22333542e+01 -0.50020357e+00 -0.65693043e+00 0.00000000e+00
- 1 211 0 0 -0.68174222e+00 -0.74893416e-01 0.10618809e+00 0.13957000e+00
- 1 -211 0 0 -0.29957623e+01 -0.17294444e+01 -0.14910973e+01 0.13957000e+00
- 1 -211 0 0 -0.15810469e+01 -0.85496580e+00 -0.13397378e+00 0.13957000e+00
- 1 211 0 0 -0.48494977e+00 -0.63335053e+00 -0.32313564e+00 0.13957000e+00
- 2 311 620 620 -0.51871314e+00 0.59186428e+00 -0.14634272e+01 0.49767000e+00
- 1 211 0 0 -0.10178433e+00 -0.24087194e+00 -0.67305100e+00 0.13957000e+00
- 1 -2212 0 0 -0.29884047e+00 0.41469677e+00 -0.29010462e+01 0.93827000e+00
- 2 111 621 622 -0.25986538e+00 -0.25303234e+00 -0.11794224e+01 0.13498000e+00
- 1 2112 0 0 -0.38525476e-01 0.42569219e+00 -0.27418668e+01 0.93957000e+00
- 2 111 623 624 0.10669275e+00 0.60473715e-01 -0.15423859e+01 0.13498000e+00
- 1 22 0 0 -0.99703688e+00 -0.22872964e+00 -0.90066555e+01 0.00000000e+00
- 1 22 0 0 -0.16380989e+00 -0.89832634e-01 -0.18933009e+01 0.00000000e+00
- 1 -211 0 0 0.10258898e+00 -0.15457840e+00 -0.13367945e+02 0.13957000e+00
- 1 211 0 0 0.24944214e-01 -0.10442427e+00 -0.62825530e+01 0.13957000e+00
- 2 111 625 626 -0.10903553e+00 -0.37139482e+00 -0.15264970e+02 0.13498000e+00
- 1 22 0 0 0.39652255e+00 0.11394075e-01 -0.36698899e+01 0.00000000e+00
- 1 11 0 0 0.81273608e-01 -0.44469923e-01 -0.69201308e+00 0.51000000e-03
- 1 -11 0 0 0.29054633e-01 -0.20341799e-01 -0.25511617e+00 0.51000000e-03
- 1 -2112 0 0 -0.23894813e+00 -0.12294566e+01 -0.37533529e+02 0.93957000e+00
- 1 -211 0 0 -0.10334335e+00 0.73119586e-01 -0.54686177e+01 0.13957000e+00
- 1 2112 0 0 -0.11346561e+00 0.33119824e+00 -0.29836031e+02 0.93957000e+00
- 1 211 0 0 -0.11381160e+00 -0.14861878e+00 -0.19333638e+02 0.13957000e+00
- 1 -211 0 0 -0.13322556e+00 0.10784705e+00 -0.16125977e+02 0.13957000e+00
- 1 211 0 0 -0.79842816e-01 -0.33570584e-01 -0.11152026e+02 0.13957000e+00
- 2 111 627 628 0.42803643e-01 -0.86374156e-01 -0.21660419e+02 0.13498000e+00
- 1 -211 0 0 -0.18114174e+00 -0.14918575e+00 -0.67549557e+02 0.13957000e+00
- 2 111 629 630 0.21017926e+00 0.43583071e+00 -0.28120182e+03 0.13498000e+00
- 1 130 0 0 -0.27905847e-01 -0.29396731e+00 -0.30870614e+03 0.49767000e+00
- 2 310 631 632 -0.18466766e+00 0.22235464e-01 -0.17154782e+03 0.49767000e+00
- 1 22 0 0 -0.19811235e+01 0.61349697e+00 -0.92902368e+03 0.00000000e+00
- 1 22 0 0 -0.49075236e+00 0.33679780e+00 -0.18080495e+03 0.00000000e+00
- 1 321 0 0 -0.12147570e+01 0.25158335e+00 -0.36260776e+03 0.49360000e+00
- 2 111 633 634 -0.28777271e+00 0.34140580e+00 -0.79664772e+02 0.13498000e+00
- 1 211 0 0 0.33088532e+00 0.32613746e+00 -0.38094126e+02 0.13957000e+00
- 2 111 635 636 -0.17203161e+00 0.59066090e-01 -0.43034231e+02 0.13498000e+00
- 1 -211 0 0 -0.22781680e-01 -0.98011477e+00 -0.81993726e+01 0.13957000e+00
- 2 111 637 638 -0.16594974e+00 0.19186284e-01 -0.38648644e+01 0.13498000e+00
- 1 211 0 0 -0.97880861e-01 0.23235268e+00 -0.50904241e+01 0.13957000e+00
- 2 111 639 640 -0.35356443e-01 0.49812261e+00 -0.18801451e+01 0.13498000e+00
- 1 -211 0 0 0.22907377e+00 -0.31405268e+00 -0.37350613e+00 0.13957000e+00
- 2 111 641 642 -0.35990375e+00 -0.54663865e+00 -0.15695348e+01 0.13498000e+00
- 1 321 0 0 0.32254902e+00 -0.71947429e+00 -0.92082773e+00 0.49360000e+00
- 2 111 643 644 0.24285629e+00 -0.36744915e-01 -0.75970458e+00 0.13498000e+00
- 2 -311 645 645 0.82522928e+00 -0.22165135e+01 -0.17535708e+01 0.49767000e+00
- 1 -211 0 0 0.19238803e+00 -0.10742584e+00 -0.31001871e+00 0.13957000e+00
- 1 130 0 0 -0.15505245e+00 -0.65041711e+00 -0.92424887e+00 0.49767000e+00
- 1 211 0 0 -0.14296629e+00 -0.11072358e+01 -0.11085740e+01 0.13957000e+00
- 2 111 646 647 0.43116402e+00 -0.11371739e+01 -0.60104553e+00 0.13498000e+00
- 1 211 0 0 -0.37923564e+00 -0.16088021e+00 -0.15628543e+01 0.13957000e+00
- 1 -211 0 0 0.21378415e+00 0.92371698e-01 -0.37709853e+00 0.13957000e+00
- 1 211 0 0 -0.41120652e-01 -0.36553375e+00 -0.41639979e-02 0.13957000e+00
- 2 111 648 649 0.31146928e+00 -0.23999231e+00 -0.90535778e+00 0.13498000e+00
- 1 -211 0 0 0.13943458e+00 -0.89995252e+00 -0.15506074e+01 0.13957000e+00
- 1 211 0 0 0.20015231e+00 0.12169569e+00 -0.12458558e+00 0.13957000e+00
- 1 -211 0 0 -0.15963206e+00 0.18154314e+00 -0.11392172e+01 0.13957000e+00
- 2 111 650 651 0.60738894e+00 -0.43180853e-01 -0.24989048e+01 0.13498000e+00
- 2 -311 652 652 -0.12868014e+00 0.82751386e-01 -0.10576816e+01 0.49767000e+00
- 2 111 653 654 0.31361562e+00 0.63960281e+00 -0.18324157e+01 0.13498000e+00
- 1 321 0 0 0.31573349e+01 0.77737539e+01 -0.51484366e+02 0.49360000e+00
- 2 111 655 656 0.74518870e+00 0.25192937e+01 -0.14617920e+02 0.13498000e+00
- 1 211 0 0 0.85078969e-01 0.30866691e+00 -0.24514077e+01 0.13957000e+00
- 1 -211 0 0 0.66439365e+00 0.13035501e+01 -0.88901290e+01 0.13957000e+00
- 2 111 657 658 0.63770463e+00 0.18898081e+01 -0.15795639e+02 0.13498000e+00
- 1 211 0 0 0.46642302e+00 0.88914511e+00 -0.46868740e+01 0.13957000e+00
- 1 -211 0 0 0.22204483e+00 0.78674009e+00 -0.46739273e+01 0.13957000e+00
- 2 111 659 660 0.97934924e-01 0.39021537e+00 -0.23579094e+01 0.13498000e+00
- 1 211 0 0 0.72074451e+00 0.10950767e+01 -0.98099063e+01 0.13957000e+00
- 1 -211 0 0 -0.94036125e-01 0.10812447e+00 -0.72167951e+00 0.13957000e+00
- 1 -211 0 0 -0.37412701e+00 0.70291432e+00 -0.43960737e+01 0.13957000e+00
- 2 111 661 662 0.17887575e+00 0.96176593e+00 -0.33514856e+01 0.13498000e+00
- 1 -321 0 0 0.42657965e+00 0.11297760e+01 -0.56348062e+01 0.49360000e+00
- 1 211 0 0 0.12460375e+00 -0.98987658e-01 -0.92090849e+00 0.13957000e+00
- 2 311 663 663 0.12292238e+01 0.11215749e+01 -0.90668004e+01 0.49767000e+00
- 1 211 0 0 0.63070573e-01 0.16867137e+00 -0.52038300e+00 0.13957000e+00
- 1 -211 0 0 0.91278344e-01 0.16317511e+00 -0.20915354e+00 0.13957000e+00
- 1 211 0 0 0.82871896e-01 -0.35231473e-01 0.26022023e-01 0.13957000e+00
- 2 221 664 665 0.49390528e+00 0.28929113e+00 -0.21022648e+00 0.54745000e+00
- 1 22 0 0 0.80267543e-01 0.11638948e+00 -0.19098969e+00 0.00000000e+00
- 1 22 0 0 0.11565201e+00 0.34187741e-01 -0.41577722e-01 0.00000000e+00
- 1 -211 0 0 0.62681422e+00 0.74216951e+00 0.36244102e+00 0.13957000e+00
- 1 211 0 0 0.87591135e+00 0.77669637e+00 0.94649615e+00 0.13957000e+00
- 2 111 666 667 0.12605816e+01 0.84571767e+00 0.89417084e+00 0.13498000e+00
- 1 22 0 0 -0.21659851e-01 0.41984060e+00 -0.24520926e+00 0.00000000e+00
- 1 211 0 0 0.35040365e+00 0.45895334e+00 -0.51465344e+00 0.13957000e+00
- 1 -211 0 0 0.13110722e+00 0.29331336e+00 -0.21194922e+00 0.13957000e+00
- 1 22 0 0 0.96265800e-01 0.15132196e-01 -0.21646401e+00 0.00000000e+00
- 1 22 0 0 0.33751418e-01 0.14401471e-01 -0.58811509e+00 0.00000000e+00
- 1 22 0 0 -0.11305326e-01 0.66018923e+00 -0.31715073e+00 0.00000000e+00
- 1 22 0 0 -0.53467222e-01 0.76566526e+00 -0.21902489e+00 0.00000000e+00
- 1 211 0 0 -0.60075410e-01 0.10307658e+00 -0.73888916e+00 0.13957000e+00
- 1 -211 0 0 0.13325384e+00 0.26206256e+00 -0.65391460e+00 0.13957000e+00
- 2 111 668 669 -0.44548401e-01 0.10849583e+01 -0.40623649e+01 0.13498000e+00
- 1 -211 0 0 0.62424201e+00 0.29863331e+00 -0.33761860e+01 0.13957000e+00
- 2 111 670 671 -0.33292776e+00 0.24797352e+00 -0.93244809e+00 0.13498000e+00
- 1 130 0 0 -0.75825878e+00 0.77358941e+00 -0.41483984e+01 0.49767000e+00
- 1 130 0 0 -0.13698440e+00 0.44982438e+00 -0.18845924e+02 0.49767000e+00
- 1 22 0 0 -0.59313399e+00 0.12126247e+01 -0.42909492e+02 0.00000000e+00
- 1 22 0 0 -0.37050900e-03 0.38355265e-01 -0.82234865e+00 0.00000000e+00
- 1 211 0 0 -0.50330702e+00 -0.38228160e-01 -0.62655954e+02 0.13957000e+00
- 2 111 672 673 0.44607203e+00 -0.22758187e+00 -0.37213746e+02 0.13498000e+00
- 1 -211 0 0 0.70607572e+00 -0.37491272e+00 -0.47661711e+03 0.13957000e+00
- 2 111 674 675 0.10115161e+00 -0.31761728e+00 -0.42789315e+02 0.13498000e+00
- 1 211 0 0 0.12010101e+00 -0.31777810e+00 -0.38082488e+02 0.13957000e+00
- 2 111 676 677 -0.16260259e+00 0.20501191e+00 -0.12919979e+03 0.13498000e+00
- 1 211 0 0 0.19835099e+00 -0.26576645e+00 -0.32270652e+03 0.13957000e+00
- 1 -211 0 0 0.11724795e+00 -0.52413440e-01 -0.42925176e+02 0.13957000e+00
- 2 111 678 679 0.19963708e+00 0.87861855e-01 -0.25495844e+03 0.13498000e+00
- 2 310 680 681 -0.35449169e+00 -0.30657906e+00 -0.53176190e+02 0.49767000e+00
- 1 211 0 0 0.11296511e+00 -0.14599780e+00 -0.70313804e+01 0.13957000e+00
- 2 111 682 683 -0.60713604e+00 0.23792887e+00 -0.35699013e+02 0.13498000e+00
- 1 -211 0 0 0.96242460e-01 -0.28356880e+00 -0.85750673e+01 0.13957000e+00
- 1 211 0 0 0.44803147e+00 0.57628869e-01 -0.51148998e+02 0.13957000e+00
- 1 -211 0 0 -0.33702410e+00 0.26432524e+00 -0.75676086e+01 0.13957000e+00
- 2 111 684 685 0.30114700e-01 -0.65970298e-01 -0.19137090e+02 0.13498000e+00
- 1 211 0 0 -0.41878612e+00 0.34764640e-01 -0.13073524e+02 0.13957000e+00
- 2 111 686 687 0.13483760e+00 -0.53956787e+00 -0.94060448e+01 0.13498000e+00
- 1 -211 0 0 -0.58280424e-01 -0.19165326e+00 -0.69595562e+01 0.13957000e+00
- 2 111 688 689 -0.34107341e+00 -0.56098720e+00 -0.28513169e+01 0.13498000e+00
- 1 -211 0 0 0.86239842e-01 -0.59322757e+00 -0.36618378e+01 0.13957000e+00
- 2 111 690 691 -0.30422258e+00 -0.37604818e+00 -0.15918659e+01 0.13498000e+00
- 1 22 0 0 -0.40820489e+00 0.49221143e-01 -0.55202601e+01 0.00000000e+00
- 1 22 0 0 -0.33834008e+00 0.56710703e-01 -0.65707099e+01 0.00000000e+00
- 2 111 692 693 -0.25851568e+00 0.29593261e-01 -0.15149904e+01 0.13498000e+00
- 2 111 694 695 -0.39132384e+00 0.83130547e-01 -0.22899608e+01 0.13498000e+00
- 2 111 696 697 -0.24187291e+00 0.28461553e-01 -0.32456399e+01 0.13498000e+00
- 1 22 0 0 -0.16894178e+01 -0.20481458e+01 -0.75575275e+01 0.00000000e+00
- 1 22 0 0 -0.54680615e+00 -0.67231717e+00 -0.27087186e+01 0.00000000e+00
- 1 2212 0 0 -0.10601278e+01 -0.19401271e+00 -0.74978494e+00 0.93827000e+00
- 1 211 0 0 0.65847020e-02 0.81040776e-02 -0.26720067e+00 0.13957000e+00
- 1 -211 0 0 0.61146514e-01 -0.58401246e+00 0.88169196e+00 0.13957000e+00
- 1 211 0 0 0.30554962e-02 -0.79350916e-01 0.15892198e+00 0.13957000e+00
- 2 221 698 700 0.43746335e-01 -0.78639938e+00 0.94830227e+00 0.54745000e+00
- 1 -211 0 0 0.18351939e+00 -0.60657919e+00 0.76868115e+00 0.13957000e+00
- 2 111 701 702 -0.22499321e+00 -0.11301050e+00 0.59851637e+00 0.13498000e+00
- 1 321 0 0 -0.40176120e+00 -0.24597908e+00 0.20827175e+01 0.49360000e+00
- 1 -211 0 0 0.16413577e+00 0.11733415e+00 0.84618214e+00 0.13957000e+00
- 1 22 0 0 -0.17635699e+00 -0.26200567e+00 0.95959465e+00 0.00000000e+00
- 1 22 0 0 -0.23167375e+00 -0.21778255e+00 0.65474312e+00 0.00000000e+00
- 1 211 0 0 0.41982426e+00 -0.24524113e+00 0.10336671e+02 0.13957000e+00
- 2 111 703 704 0.50059748e+00 -0.15780306e+00 0.31740536e+01 0.13498000e+00
- 1 211 0 0 -0.24233753e+00 0.75925821e-01 0.54148230e+01 0.13957000e+00
- 1 -211 0 0 -0.21041195e-01 0.28130406e-01 0.10927732e+01 0.13957000e+00
- 2 221 705 707 -0.22309607e+00 -0.10562163e+00 0.87564789e+01 0.54745000e+00
- 1 -211 0 0 -0.11002876e+00 -0.18109486e+00 0.79528439e+01 0.13957000e+00
- 1 211 0 0 -0.50865535e-02 0.36425436e+00 0.36700263e+01 0.13957000e+00
- 1 -211 0 0 -0.13599566e+00 -0.63433173e+00 0.60185850e+02 0.13957000e+00
- 2 111 708 709 -0.81619717e-01 -0.44134284e+00 0.13742245e+02 0.13498000e+00
- 1 211 0 0 -0.38999310e-01 0.39119435e-01 0.28744063e+01 0.13957000e+00
- 1 -211 0 0 -0.13888648e+01 -0.68603644e+00 0.36237831e+02 0.13957000e+00
- 1 -211 0 0 -0.12691692e+00 0.13318261e+00 0.34099794e+01 0.13957000e+00
- 1 211 0 0 0.13871395e-01 -0.12552082e+00 0.31635218e+01 0.13957000e+00
- 2 221 710 712 -0.30140682e+00 -0.68117404e-02 0.10083634e+02 0.54745000e+00
- 1 211 0 0 0.12443020e+00 -0.37795837e+00 0.28837390e+02 0.13957000e+00
- 1 -211 0 0 0.32780165e+00 -0.58646269e+00 0.53001565e+02 0.13957000e+00
- 2 111 713 714 0.10378450e+00 -0.67639486e-01 0.12209971e+02 0.13498000e+00
- 1 -211 0 0 0.22549599e+00 -0.14135273e+00 0.70995499e+01 0.13957000e+00
- 1 211 0 0 -0.37529670e+00 0.46211740e+00 0.17890445e+02 0.13957000e+00
- 1 211 0 0 -0.16937891e+00 -0.27602027e+00 0.31092712e+01 0.13957000e+00
- 1 -211 0 0 0.26520401e+00 -0.64027771e-01 0.10050857e+02 0.13957000e+00
- 1 130 0 0 0.48851014e+00 -0.14846624e+00 0.32181086e+02 0.49767000e+00
- 1 130 0 0 0.54979182e-01 -0.23377741e+00 0.39852752e+01 0.49767000e+00
- 1 22 0 0 -0.44418383e-01 -0.38042736e-01 0.36717362e+01 0.00000000e+00
- 1 22 0 0 0.72658633e-02 -0.12325035e+00 0.26683070e+02 0.00000000e+00
- 1 130 0 0 0.37756900e+00 0.25974048e+00 0.37977719e+02 0.49767000e+00
- 1 321 0 0 0.41940598e+00 0.49923392e+00 0.11256110e+02 0.49360000e+00
- 1 -211 0 0 -0.22844988e+00 0.15319549e+00 0.79054434e+01 0.13957000e+00
- 2 310 715 716 0.51494510e+00 -0.80599657e-01 0.60255235e+02 0.49767000e+00
- 2 310 717 718 -0.76650732e-01 0.83586474e+00 0.32460098e+02 0.49767000e+00
- 1 -211 0 0 -0.65266032e-01 0.37897352e-02 0.17152074e+01 0.13957000e+00
- 1 211 0 0 -0.63767814e+00 0.73693226e-01 0.25463310e+01 0.13957000e+00
- 2 111 719 720 -0.56876774e+00 -0.14441200e+00 0.22397763e+01 0.13498000e+00
- 2 310 721 722 0.39483960e+01 -0.18077977e+01 0.35709506e+01 0.49767000e+00
- 2 310 723 724 -0.68283713e-01 -0.47311740e+00 0.51168489e+01 0.49767000e+00
- 1 22 0 0 -0.91181187e-01 -0.12413359e+00 0.36462071e+02 0.00000000e+00
- 1 22 0 0 -0.11194129e+00 -0.79522743e-01 0.13943390e+02 0.00000000e+00
- 1 22 0 0 -0.19779386e-01 -0.11020381e+00 0.19437456e+03 0.00000000e+00
- 1 22 0 0 0.41047982e-01 -0.66661455e-01 0.41649022e+02 0.00000000e+00
- 1 22 0 0 0.24921540e+01 -0.48152458e+00 0.66416298e+00 0.00000000e+00
- 1 22 0 0 0.53467995e+01 -0.12067063e+01 0.13296828e+01 0.00000000e+00
- 1 22 0 0 0.27701284e+00 -0.10071988e+00 0.18761700e+00 0.00000000e+00
- 1 22 0 0 0.17327895e+00 0.20745619e-01 0.19734142e+00 0.00000000e+00
- 1 22 0 0 -0.19338042e-01 -0.20542833e-01 0.15073981e-01 0.00000000e+00
- 1 22 0 0 -0.21095053e-01 -0.19353940e+00 0.75084589e+00 0.00000000e+00
- 1 22 0 0 0.49572609e-01 -0.12551828e+00 0.23711659e+00 0.00000000e+00
- 1 22 0 0 0.30257907e-02 0.35474025e-01 0.60287176e-01 0.00000000e+00
- 1 -211 0 0 0.12951648e+00 -0.36102014e-01 0.60364211e+00 0.13957000e+00
- 1 211 0 0 0.12271157e+00 -0.12901508e+00 0.55633449e+00 0.13957000e+00
- 2 111 725 726 0.11176640e+00 -0.14199947e+00 0.17518435e+01 0.13498000e+00
- 1 22 0 0 0.61215966e+00 0.12700269e+01 0.10699012e+02 0.00000000e+00
- 1 22 0 0 -0.41258114e-02 0.78516725e-02 0.14802069e+00 0.00000000e+00
- 1 22 0 0 0.52899218e+00 0.25013929e+00 0.78604392e+01 0.00000000e+00
- 1 22 0 0 0.19761775e+00 0.17042348e+00 0.43532507e+01 0.00000000e+00
- 1 22 0 0 0.42254570e+01 0.60843963e+01 0.10952564e+03 0.00000000e+00
- 1 22 0 0 0.24925385e+01 0.34910282e+01 0.62158210e+02 0.00000000e+00
- 1 22 0 0 0.27929997e+01 0.38427018e+01 0.71586505e+02 0.00000000e+00
- 1 22 0 0 0.27352125e+00 0.42533465e+00 0.71338527e+01 0.00000000e+00
- 1 22 0 0 0.64281089e+00 0.90117759e+00 0.16591789e+02 0.00000000e+00
- 1 22 0 0 0.17682933e+01 0.24281041e+01 0.41831171e+02 0.00000000e+00
- 1 22 0 0 0.16157541e+01 0.21034041e+01 0.40550931e+02 0.00000000e+00
- 1 22 0 0 0.14946173e+01 0.20975357e+01 0.37939469e+02 0.00000000e+00
- 1 22 0 0 -0.33074889e-01 0.93393174e-01 0.23958499e+01 0.00000000e+00
- 1 22 0 0 0.15133160e-01 0.32300845e-01 0.13196900e+00 0.00000000e+00
- 1 22 0 0 0.14194313e+00 0.35660268e+00 0.68410998e+01 0.00000000e+00
- 1 22 0 0 0.52293613e+00 0.86056513e+00 0.15621594e+02 0.00000000e+00
- 2 310 727 728 0.28625010e+00 0.66693978e+00 0.10180599e+02 0.49767000e+00
- 1 130 0 0 -0.73655250e+00 0.12013852e+01 0.10771861e+02 0.49767000e+00
- 1 22 0 0 0.80226627e-01 0.13521417e+00 0.53140373e+00 0.00000000e+00
- 1 22 0 0 -0.34074280e-01 -0.62258567e-02 0.96893632e-01 0.00000000e+00
- 1 22 0 0 -0.54249515e+00 0.10630045e+01 0.94725996e+01 0.00000000e+00
- 1 22 0 0 -0.12226661e-01 0.10617022e+00 0.96564758e+00 0.00000000e+00
- 1 130 0 0 -0.33336100e+00 -0.12516538e+01 0.26361877e+01 0.49767000e+00
- 1 -211 0 0 0.26933985e+00 -0.38066437e+00 0.81178396e+00 0.13957000e+00
- 1 211 0 0 -0.62854535e-01 -0.72855544e+00 0.14164708e+01 0.13957000e+00
- 1 22 0 0 -0.13528436e-01 -0.14039126e+01 -0.11712367e+01 0.00000000e+00
- 1 22 0 0 0.38017928e-01 -0.18600163e+00 -0.12193798e+00 0.00000000e+00
- 1 22 0 0 0.13344640e+00 -0.47767812e+00 -0.67854181e+00 0.00000000e+00
- 1 22 0 0 0.24062463e+00 -0.12513603e+01 -0.14411491e+01 0.00000000e+00
- 1 22 0 0 0.15963146e+00 -0.42189434e+00 -0.58279577e+00 0.00000000e+00
- 1 22 0 0 0.22944535e+00 -0.11859580e+01 -0.14331223e+01 0.00000000e+00
- 1 22 0 0 0.11194020e+01 -0.42857023e+01 -0.52869102e+01 0.00000000e+00
- 1 22 0 0 0.12839939e+01 -0.51771520e+01 -0.61620148e+01 0.00000000e+00
- 1 22 0 0 0.60060106e+00 -0.27312206e+01 -0.33794669e+01 0.00000000e+00
- 1 22 0 0 0.51700753e+00 -0.19528114e+01 -0.23230657e+01 0.00000000e+00
- 1 130 0 0 0.11201369e+01 -0.53514484e+01 -0.64304580e+01 0.49767000e+00
- 2 310 729 730 0.18064585e+00 -0.22758599e+01 -0.33561988e+01 0.49767000e+00
- 2 310 731 732 -0.28144672e-01 -0.89821362e+00 -0.64098109e+00 0.49767000e+00
- 1 -211 0 0 -0.82726194e+00 -0.37847347e+00 0.63198995e-01 0.13957000e+00
- 2 111 733 734 -0.16074150e+01 -0.40536447e+00 -0.68407248e+00 0.13498000e+00
- 1 22 0 0 -0.44408908e+00 -0.10115743e+00 -0.14081274e+00 0.00000000e+00
- 1 22 0 0 -0.32676750e+00 -0.10565553e+00 0.81208195e-02 0.00000000e+00
- 1 130 0 0 -0.51871314e+00 0.59186428e+00 -0.14634272e+01 0.49767000e+00
- 1 22 0 0 -0.20079327e+00 -0.18842232e+00 -0.66953107e+00 0.00000000e+00
- 1 22 0 0 -0.59072106e-01 -0.64610020e-01 -0.50989135e+00 0.00000000e+00
- 1 22 0 0 -0.19049821e-01 0.24953251e-01 -0.99373907e-01 0.00000000e+00
- 1 22 0 0 0.12574257e+00 0.35520464e-01 -0.14430120e+01 0.00000000e+00
- 1 22 0 0 -0.59139055e-01 -0.36521502e-01 -0.31924386e+01 0.00000000e+00
- 1 22 0 0 -0.49896471e-01 -0.33487332e+00 -0.12072531e+02 0.00000000e+00
- 1 22 0 0 0.14643610e-01 -0.99293744e-01 -0.20425131e+02 0.00000000e+00
- 1 22 0 0 0.28160033e-01 0.12919588e-01 -0.12352879e+01 0.00000000e+00
- 1 22 0 0 0.25753342e-01 0.18556670e+00 -0.88900333e+02 0.00000000e+00
- 1 22 0 0 0.18442591e+00 0.25026400e+00 -0.19230149e+03 0.00000000e+00
- 2 111 735 736 -0.23123811e+00 0.13520560e+00 -0.13821341e+03 0.13498000e+00
- 2 111 737 738 0.46570449e-01 -0.11297014e+00 -0.33334414e+02 0.13498000e+00
- 1 22 0 0 -0.25273195e+00 0.21266264e+00 -0.60452322e+02 0.00000000e+00
- 1 22 0 0 -0.35040757e-01 0.12874316e+00 -0.19212449e+02 0.00000000e+00
- 1 22 0 0 -0.13963203e+00 0.94440019e-01 -0.27127662e+02 0.00000000e+00
- 1 22 0 0 -0.32399582e-01 -0.35373929e-01 -0.15906569e+02 0.00000000e+00
- 1 22 0 0 -0.11868281e+00 0.14253532e-01 -0.35823395e+01 0.00000000e+00
- 1 22 0 0 -0.47266930e-01 0.49327515e-02 -0.28252488e+00 0.00000000e+00
- 1 22 0 0 -0.39525095e-01 0.21282654e+00 -0.10534954e+01 0.00000000e+00
- 1 22 0 0 0.41686518e-02 0.28529607e+00 -0.82664968e+00 0.00000000e+00
- 1 22 0 0 -0.35891955e+00 -0.52360551e+00 -0.14317321e+01 0.00000000e+00
- 1 22 0 0 -0.98420427e-03 -0.23033143e-01 -0.13780277e+00 0.00000000e+00
- 1 22 0 0 0.48316076e-02 -0.34604490e-01 -0.17498222e+00 0.00000000e+00
- 1 22 0 0 0.23802468e+00 -0.21404253e-02 -0.58472236e+00 0.00000000e+00
- 1 130 0 0 0.82522928e+00 -0.22165135e+01 -0.17535708e+01 0.49767000e+00
- 1 22 0 0 0.43766090e+00 -0.11142749e+01 -0.57524427e+00 0.00000000e+00
- 1 22 0 0 -0.64968771e-02 -0.22899059e-01 -0.25801262e-01 0.00000000e+00
- 1 22 0 0 0.84884182e-01 -0.14208572e+00 -0.42704874e+00 0.00000000e+00
- 1 22 0 0 0.22658510e+00 -0.97906590e-01 -0.47830905e+00 0.00000000e+00
- 1 22 0 0 0.72200444e-01 0.33628519e-01 -0.24068561e+00 0.00000000e+00
- 1 22 0 0 0.53518850e+00 -0.76809372e-01 -0.22582192e+01 0.00000000e+00
- 2 310 739 740 -0.12868014e+00 0.82751386e-01 -0.10576816e+01 0.49767000e+00
- 1 22 0 0 0.58365483e-02 0.11842583e+00 -0.26039639e+00 0.00000000e+00
- 1 22 0 0 0.30777908e+00 0.52117698e+00 -0.15720193e+01 0.00000000e+00
- 1 22 0 0 0.72340561e+00 0.24709509e+01 -0.14407594e+02 0.00000000e+00
- 1 22 0 0 0.21783098e-01 0.48342819e-01 -0.21032598e+00 0.00000000e+00
- 1 22 0 0 0.61795028e+00 0.18593843e+01 -0.15355679e+02 0.00000000e+00
- 1 22 0 0 0.19754357e-01 0.30423868e-01 -0.43996019e+00 0.00000000e+00
- 1 22 0 0 0.69434451e-01 0.31615791e+00 -0.21301697e+01 0.00000000e+00
- 1 22 0 0 0.28500473e-01 0.74057458e-01 -0.22773969e+00 0.00000000e+00
- 1 22 0 0 0.17259176e+00 0.56652859e+00 -0.20151788e+01 0.00000000e+00
- 1 22 0 0 0.62839879e-02 0.39523734e+00 -0.13363068e+01 0.00000000e+00
- 1 130 0 0 0.12292238e+01 0.11215749e+01 -0.90668004e+01 0.49767000e+00
- 1 22 0 0 0.36325736e+00 0.42896768e+00 -0.26368097e+00 0.00000000e+00
- 1 22 0 0 0.13064792e+00 -0.13967655e+00 0.53454485e-01 0.00000000e+00
- 1 22 0 0 0.57920867e+00 0.46978026e+00 0.44059745e+00 0.00000000e+00
- 1 22 0 0 0.68137297e+00 0.37593740e+00 0.45357340e+00 0.00000000e+00
- 1 22 0 0 0.22219066e-01 0.76636498e+00 -0.27314420e+01 0.00000000e+00
- 1 22 0 0 -0.66767468e-01 0.31859329e+00 -0.13309229e+01 0.00000000e+00
- 1 22 0 0 -0.11462661e+00 0.33509040e-01 -0.37614489e+00 0.00000000e+00
- 1 22 0 0 -0.21830115e+00 0.21446448e+00 -0.55630321e+00 0.00000000e+00
- 1 22 0 0 0.39649094e+00 -0.14627573e+00 -0.31135986e+02 0.00000000e+00
- 1 22 0 0 0.49581095e-01 -0.81306139e-01 -0.60777596e+01 0.00000000e+00
- 1 22 0 0 0.48776794e-01 -0.67900612e-01 -0.18094722e+02 0.00000000e+00
- 1 22 0 0 0.52374819e-01 -0.24971667e+00 -0.24694593e+02 0.00000000e+00
- 1 22 0 0 -0.15341417e+00 0.11321512e+00 -0.10220390e+03 0.00000000e+00
- 1 22 0 0 -0.91884248e-02 0.91796795e-01 -0.26995892e+02 0.00000000e+00
- 1 22 0 0 0.41663663e-01 -0.33896080e-01 -0.72872882e+02 0.00000000e+00
- 1 22 0 0 0.15797342e+00 0.12175794e+00 -0.18208556e+03 0.00000000e+00
- 1 -211 0 0 -0.11564736e+00 -0.83392888e-01 -0.65474759e+01 0.13957000e+00
- 1 211 0 0 -0.23884433e+00 -0.22318618e+00 -0.46628714e+02 0.13957000e+00
- 1 22 0 0 -0.13073774e+00 0.39507514e-01 -0.49660156e+01 0.00000000e+00
- 1 22 0 0 -0.47639831e+00 0.19842136e+00 -0.30732997e+02 0.00000000e+00
- 1 22 0 0 -0.26431327e-01 -0.35065709e-01 -0.19570668e+01 0.00000000e+00
- 1 22 0 0 0.56546027e-01 -0.30904589e-01 -0.17180023e+02 0.00000000e+00
- 1 22 0 0 0.12963566e+00 -0.43764274e+00 -0.83527749e+01 0.00000000e+00
- 1 22 0 0 0.52019390e-02 -0.10192513e+00 -0.10532699e+01 0.00000000e+00
- 1 22 0 0 0.50532317e-02 -0.25357920e-01 -0.22134497e+00 0.00000000e+00
- 1 22 0 0 -0.34612664e+00 -0.53562928e+00 -0.26299719e+01 0.00000000e+00
- 1 22 0 0 -0.14650721e+00 -0.90200116e-01 -0.45725793e+00 0.00000000e+00
- 1 22 0 0 -0.15771537e+00 -0.28584807e+00 -0.11346080e+01 0.00000000e+00
- 1 22 0 0 -0.26746759e+00 0.48143159e-01 -0.13760763e+01 0.00000000e+00
- 1 22 0 0 0.89519061e-02 -0.18549899e-01 -0.13891407e+00 0.00000000e+00
- 1 22 0 0 -0.23384926e+00 -0.17843796e-01 -0.12109341e+01 0.00000000e+00
- 1 22 0 0 -0.15747458e+00 0.10097434e+00 -0.10790267e+01 0.00000000e+00
- 1 22 0 0 0.81841607e-03 -0.28309884e-01 -0.41815225e+00 0.00000000e+00
- 1 22 0 0 -0.24269132e+00 0.56771437e-01 -0.28274876e+01 0.00000000e+00
- 1 211 0 0 -0.90966323e-02 -0.10311162e+00 0.17232085e+00 0.13957000e+00
- 1 -211 0 0 0.10990872e+00 -0.53517994e+00 0.47091174e+00 0.13957000e+00
- 2 111 741 742 -0.57065755e-01 -0.14810782e+00 0.30506968e+00 0.13498000e+00
- 1 22 0 0 -0.47799794e-01 -0.49208763e-02 0.27260678e+00 0.00000000e+00
- 1 22 0 0 -0.17719341e+00 -0.10808962e+00 0.32590959e+00 0.00000000e+00
- 1 22 0 0 -0.47451048e-02 -0.13705244e-01 0.50449097e-01 0.00000000e+00
- 1 22 0 0 0.50534259e+00 -0.14409782e+00 0.31236045e+01 0.00000000e+00
- 2 111 743 744 -0.27215918e-01 0.28418404e-01 0.19545489e+01 0.13498000e+00
- 2 111 745 746 0.23332941e-01 0.33986704e-01 0.28967217e+01 0.13498000e+00
- 2 111 747 748 -0.21921309e+00 -0.16802674e+00 0.39052082e+01 0.13498000e+00
- 1 22 0 0 -0.28562089e-01 -0.40095706e+00 0.11842365e+02 0.00000000e+00
- 1 22 0 0 -0.53057628e-01 -0.40385782e-01 0.18998800e+01 0.00000000e+00
- 2 111 749 750 -0.58904910e-01 0.21273067e-01 0.53753373e+01 0.13498000e+00
- 2 111 751 752 -0.10017694e+00 0.67023546e-01 0.17749859e+01 0.13498000e+00
- 2 111 753 754 -0.14232497e+00 -0.95108354e-01 0.29333112e+01 0.13498000e+00
- 1 22 0 0 0.12103173e+00 -0.88338318e-02 0.85565219e+01 0.00000000e+00
- 1 22 0 0 -0.17247227e-01 -0.58805654e-01 0.36534488e+01 0.00000000e+00
- 1 -211 0 0 0.33769384e+00 -0.17721780e+00 0.48752742e+02 0.13957000e+00
- 1 211 0 0 0.17725126e+00 0.96618143e-01 0.11502493e+02 0.13957000e+00
- 1 -211 0 0 -0.11604747e+00 0.27063871e+00 0.17915031e+02 0.13957000e+00
- 1 211 0 0 0.39396742e-01 0.56522603e+00 0.14545067e+02 0.13957000e+00
- 1 22 0 0 -0.31692188e-01 0.27991785e-02 0.28438358e+00 0.00000000e+00
- 1 22 0 0 -0.53707555e+00 -0.14721118e+00 0.19553927e+01 0.00000000e+00
- 1 -211 0 0 0.11549115e+01 -0.53097189e+00 0.82410999e+00 0.13957000e+00
- 1 211 0 0 0.27934845e+01 -0.12768258e+01 0.27468406e+01 0.13957000e+00
- 1 211 0 0 -0.15697716e+00 -0.13110503e+00 0.31665440e+01 0.13957000e+00
- 1 -211 0 0 0.88693449e-01 -0.34201237e+00 0.19503050e+01 0.13957000e+00
- 1 22 0 0 0.59510234e-01 -0.43674102e-01 0.12535403e+01 0.00000000e+00
- 1 22 0 0 0.52256162e-01 -0.98325369e-01 0.49830322e+00 0.00000000e+00
- 1 211 0 0 0.23984113e+00 0.34564640e+00 0.34013212e+01 0.13957000e+00
- 1 -211 0 0 0.46408970e-01 0.32129338e+00 0.67792777e+01 0.13957000e+00
- 1 -211 0 0 -0.52637801e-01 -0.69583774e+00 -0.78647964e+00 0.13957000e+00
- 1 211 0 0 0.23328365e+00 -0.15800222e+01 -0.25697191e+01 0.13957000e+00
- 1 -211 0 0 0.72126463e-01 -0.82578650e+00 -0.51617349e+00 0.13957000e+00
- 1 211 0 0 -0.10027114e+00 -0.72427115e-01 -0.12480760e+00 0.13957000e+00
- 1 22 0 0 -0.99696775e+00 -0.29501324e+00 -0.37428814e+00 0.00000000e+00
- 1 22 0 0 -0.61044725e+00 -0.11035123e+00 -0.30978434e+00 0.00000000e+00
- 1 22 0 0 -0.66453925e-01 -0.20517775e-01 -0.42529663e+02 0.00000000e+00
- 1 22 0 0 -0.16478419e+00 0.15572338e+00 -0.95683743e+02 0.00000000e+00
- 1 22 0 0 0.39004440e-01 0.23186292e-01 -0.92231702e+01 0.00000000e+00
- 1 22 0 0 0.75660091e-02 -0.13615643e+00 -0.24111244e+02 0.00000000e+00
- 2 111 755 756 -0.85777821e-01 -0.74475358e-01 -0.11008596e+00 0.13498000e+00
- 2 111 757 759 -0.42902323e-01 0.15722674e+00 -0.94759562e+00 0.13498000e+00
- 1 22 0 0 -0.12632284e-01 -0.15057722e+00 0.17114350e+00 0.00000000e+00
- 1 22 0 0 -0.44433471e-01 0.24694000e-02 0.13392618e+00 0.00000000e+00
- 1 22 0 0 -0.72833341e-01 -0.28602032e-02 0.68954574e+00 0.00000000e+00
- 1 22 0 0 0.45617423e-01 0.31278608e-01 0.12650032e+01 0.00000000e+00
- 1 22 0 0 0.64311365e-01 -0.25077579e-01 0.14999341e+01 0.00000000e+00
- 1 22 0 0 -0.40978424e-01 0.59064283e-01 0.13967876e+01 0.00000000e+00
- 1 22 0 0 -0.14662959e-01 -0.69536890e-01 0.57944376e+00 0.00000000e+00
- 1 22 0 0 -0.20455013e+00 -0.98489845e-01 0.33257644e+01 0.00000000e+00
- 1 22 0 0 -0.24396954e-01 0.62600942e-01 0.44416617e+01 0.00000000e+00
- 1 22 0 0 -0.34507956e-01 -0.41327876e-01 0.93367564e+00 0.00000000e+00
- 1 22 0 0 -0.80921089e-01 0.49167247e-01 0.49747969e+00 0.00000000e+00
- 1 22 0 0 -0.19255851e-01 0.17856300e-01 0.12775062e+01 0.00000000e+00
- 1 22 0 0 -0.92120211e-01 -0.87026785e-01 0.10828015e+01 0.00000000e+00
- 1 22 0 0 -0.50204760e-01 -0.80815687e-02 0.18505096e+01 0.00000000e+00
- 1 22 0 0 -0.11979942e+00 -0.53814966e-01 -0.10433779e+00 0.00000000e+00
- 1 22 0 0 0.34021604e-01 -0.20660392e-01 -0.57481755e-02 0.00000000e+00
- 1 22 0 0 0.42616329e-01 0.83981674e-01 -0.47232278e+00 0.00000000e+00
- 1 -11 0 0 -0.13326831e-01 0.15524441e-01 -0.48367597e-01 0.51000000e-03
- 1 11 0 0 -0.72191821e-01 0.57720629e-01 -0.42690524e+00 0.51000000e-03
- 865
- 2 25 2 3 0.43522404e+00 -0.93296417e+00 0.49346042e+03 0.12500743e+03
- 2 23 4 5 0.63002837e+01 -0.81788149e+01 0.35114766e+03 0.91664519e+02
- 2 23 6 8 -0.58650597e+01 0.72458507e+01 0.14231276e+03 0.31186394e+02
- 1 11 0 0 0.73121229e+00 -0.18796835e+02 0.35055252e+03 0.51000000e-03
- 1 -11 0 0 0.55690715e+01 0.10618020e+02 0.59514114e+00 0.51000000e-03
- 1 13 0 0 -0.11131593e+02 0.73703904e+01 0.13885496e+03 0.10566000e+00
- 1 -13 0 0 0.61234691e+00 0.33098268e+00 0.96060030e+00 0.10566000e+00
- 1 22 0 0 0.46541867e+01 -0.45552237e+00 0.24971988e+01 0.00000000e+00
- 2 1 103 103 -0.12540255e+01 -0.86265524e+01 -0.98529361e+02 0.00000000e+00
- 2 21 103 103 -0.24658745e+01 -0.51230145e+01 -0.11018765e+03 0.00000000e+00
- 2 21 103 103 -0.41434139e+01 -0.25121693e-01 -0.60666126e+02 0.00000000e+00
- 2 21 103 103 -0.53222333e+01 0.58426892e+01 -0.21749222e+03 0.00000000e+00
- 2 21 103 103 0.28365377e+00 0.33422209e+00 -0.60542292e+01 0.00000000e+00
- 2 21 103 103 0.24658745e+01 0.51230145e+01 -0.13125313e+03 0.00000000e+00
- 2 -1 103 103 0.12540255e+01 0.86265524e+01 -0.51617952e+03 0.00000000e+00
- 2 2 121 121 -0.23003103e+01 -0.28946022e+00 -0.20827970e+02 0.00000000e+00
- 2 21 121 121 -0.17219605e+01 -0.53942087e+00 -0.62697876e+01 0.00000000e+00
- 2 21 121 121 -0.15930095e+01 -0.10643346e+00 -0.44932215e+01 0.00000000e+00
- 2 21 121 121 -0.71594161e+00 -0.29641309e+00 -0.10914763e+01 0.00000000e+00
- 2 21 121 121 -0.28365377e+00 -0.33422209e+00 -0.77987485e+00 0.00000000e+00
- 2 21 121 121 -0.32567226e+00 -0.20052573e+01 -0.33089740e+01 0.00000000e+00
- 2 21 121 121 -0.19623446e+01 -0.98728357e+00 -0.78379781e+00 0.00000000e+00
- 2 21 121 121 -0.15031514e+01 -0.80819358e+00 -0.54165679e+00 0.00000000e+00
- 2 21 121 121 0.71594161e+00 0.29641309e+00 0.58591562e+00 0.00000000e+00
- 2 21 121 121 0.62412475e+00 -0.20817541e+00 0.85957476e+00 0.00000000e+00
- 2 -2 121 121 0.23003103e+01 0.28946022e+00 0.22186870e+01 0.00000000e+00
- 2 3 139 139 -0.18409431e+01 -0.63755123e+00 0.47959915e+00 0.00000000e+00
- 2 -3 139 139 0.18409431e+01 0.63755123e+00 0.70585438e+02 0.00000000e+00
- 2 2203 147 147 0.62930459e+00 -0.13239524e+01 0.26354864e+04 0.77133000e+00
- 2 21 147 147 -0.29766105e+01 0.12281088e+01 0.85678471e+02 0.00000000e+00
- 2 21 147 147 -0.87554196e+00 -0.28911495e+00 0.29993020e+02 0.00000000e+00
- 2 21 147 147 0.51015049e+01 -0.58949267e+01 0.78930858e+03 0.00000000e+00
- 2 21 147 147 0.64623877e+00 -0.16847400e+01 0.60920987e+03 0.00000000e+00
- 2 21 147 147 0.21595863e+01 0.79114513e-01 0.25607390e+03 0.00000000e+00
- 2 21 147 147 0.32192287e+01 -0.13343420e+01 0.17204188e+03 0.00000000e+00
- 2 21 147 147 -0.31902848e+01 0.46326158e+00 0.15003013e+03 0.00000000e+00
- 2 21 147 147 -0.21595863e+01 -0.79114513e-01 0.79518745e+02 0.00000000e+00
- 2 21 147 147 0.55852240e+01 0.12127428e+02 0.10405009e+03 0.00000000e+00
- 2 21 147 147 -0.43638145e+01 0.36896314e+01 0.53643212e+02 0.00000000e+00
- 2 21 147 147 -0.51015049e+01 0.58949267e+01 0.66314583e+02 0.00000000e+00
- 2 21 147 147 -0.56541858e+01 0.10159894e+02 0.37342608e+02 0.00000000e+00
- 2 21 147 147 -0.64623877e+00 0.16847400e+01 0.51099229e+01 0.00000000e+00
- 2 21 147 147 -0.25860009e+01 0.94072980e+00 0.58057739e+01 0.00000000e+00
- 2 21 147 147 0.39697216e+00 0.17959218e+01 0.89269384e+00 0.00000000e+00
- 2 21 147 147 -0.28030118e+00 0.13442254e+01 0.62575890e+00 0.00000000e+00
- 2 21 147 147 -0.15606882e+01 0.45577753e+01 0.39201831e+01 0.00000000e+00
- 2 21 147 147 -0.25577299e+01 0.14119228e+01 0.34407298e+01 0.00000000e+00
- 2 21 147 147 -0.26899341e+01 0.13416252e+01 0.25985794e+01 0.00000000e+00
- 2 21 147 147 -0.19822779e+01 0.93528492e+00 0.90530382e+00 0.00000000e+00
- 2 21 147 147 -0.62412475e+00 0.20817541e+00 0.10407607e+00 0.00000000e+00
- 2 21 147 147 -0.15887418e+01 0.25344688e+01 -0.59574584e+00 0.00000000e+00
- 2 21 147 147 -0.19630616e+01 0.19057802e+01 -0.98320180e+00 0.00000000e+00
- 2 21 147 147 -0.30194296e+01 0.20175062e+01 -0.13993237e+02 0.00000000e+00
- 2 21 147 147 -0.19378230e+00 0.12232469e+01 -0.98012701e+01 0.00000000e+00
- 2 21 147 147 -0.58933691e+00 0.15372524e+01 -0.12360324e+02 0.00000000e+00
- 2 21 147 147 -0.32192287e+01 0.13343420e+01 -0.29805220e+02 0.00000000e+00
- 2 21 147 147 -0.53538261e+01 0.17714583e+01 -0.66063451e+03 0.00000000e+00
- 2 21 147 147 -0.38073995e+01 0.27473855e+01 -0.74525669e+03 0.00000000e+00
- 2 21 147 147 0.19822779e+01 -0.93528492e+00 -0.24567351e+04 0.00000000e+00
- 2 21 147 147 0.26899341e+01 -0.13416252e+01 -0.51162053e+03 0.00000000e+00
- 2 21 147 147 0.58933691e+00 -0.15372524e+01 -0.13149018e+03 0.00000000e+00
- 2 21 147 147 0.19378230e+00 -0.12232469e+01 -0.25885114e+03 0.00000000e+00
- 2 21 147 147 0.33174392e+00 0.60208756e+00 -0.61702956e-01 0.00000000e+00
- 2 21 147 147 -0.99960060e+00 -0.17990669e+00 -0.14573751e+01 0.00000000e+00
- 2 21 147 147 0.19810392e+01 0.45817009e+00 -0.17373210e+01 0.00000000e+00
- 2 21 147 147 -0.12423702e+01 0.22159544e+00 -0.14103859e+02 0.00000000e+00
- 2 21 147 147 0.29143439e-01 -0.18459770e+01 -0.25475399e+02 0.00000000e+00
- 2 21 147 147 0.23970796e+00 0.63794860e-01 -0.82850813e+00 0.00000000e+00
- 2 2 147 147 0.84695311e+00 0.21241032e+00 -0.11113646e+03 0.33000000e+00
- 2 1 248 248 0.12043006e+01 -0.15954951e+01 0.12001467e+03 0.33000000e+00
- 2 21 248 248 0.10390808e+00 -0.16517249e+00 0.16031891e+01 0.00000000e+00
- 2 21 248 248 0.83008328e+00 0.24135080e+01 0.54255771e+03 0.00000000e+00
- 2 21 248 248 -0.47125478e+00 0.28395810e+00 0.32337668e+02 0.00000000e+00
- 2 21 248 248 -0.38844740e+00 -0.46484333e-01 0.17507832e+02 0.00000000e+00
- 2 21 248 248 0.52969367e+00 -0.26701211e+00 0.26002246e+02 0.00000000e+00
- 2 21 248 248 0.10229385e+01 -0.12301335e+01 0.54087213e+02 0.00000000e+00
- 2 21 248 248 -0.14716683e+00 0.12799568e+01 0.24167522e+02 0.00000000e+00
- 2 21 248 248 0.15606882e+01 -0.45577753e+01 0.24610822e+03 0.00000000e+00
- 2 21 248 248 0.43638145e+01 -0.36896314e+01 0.14139743e+03 0.00000000e+00
- 2 21 248 248 0.19630616e+01 -0.19057802e+01 0.27381895e+02 0.00000000e+00
- 2 21 248 248 0.19623446e+01 0.98728357e+00 0.10943828e+02 0.00000000e+00
- 2 21 248 248 0.31902848e+01 -0.46326158e+00 0.15096598e+02 0.00000000e+00
- 2 21 248 248 0.25860009e+01 -0.94072980e+00 0.80836418e+01 0.00000000e+00
- 2 21 248 248 0.15887418e+01 -0.25344688e+01 0.56355200e+01 0.00000000e+00
- 2 21 248 248 0.28030118e+00 -0.13442254e+01 0.40889367e+01 0.00000000e+00
- 2 21 248 248 -0.39697216e+00 -0.17959218e+01 0.62534268e+01 0.00000000e+00
- 2 21 248 248 -0.55852240e+01 -0.12127428e+02 0.16645292e+02 0.00000000e+00
- 2 21 248 248 -0.21211912e+01 -0.21907118e+01 0.32681839e+01 0.00000000e+00
- 2 21 248 248 0.38073995e+01 -0.27473855e+01 -0.75097399e+00 0.00000000e+00
- 2 21 248 248 0.56541858e+01 -0.10159894e+02 -0.75163086e+01 0.00000000e+00
- 2 21 248 248 0.41434139e+01 0.25121693e-01 -0.39161787e+01 0.00000000e+00
- 2 21 248 248 0.17219605e+01 0.53942087e+00 -0.12633062e+01 0.00000000e+00
- 2 21 248 248 0.15930095e+01 0.10643346e+00 -0.11564548e+00 0.00000000e+00
- 2 21 248 248 0.15031514e+01 0.80819358e+00 -0.20222907e+00 0.00000000e+00
- 2 21 248 248 0.21211912e+01 0.21907118e+01 -0.39537205e+01 0.00000000e+00
- 2 21 248 248 0.32567226e+00 0.20052573e+01 -0.38629690e+01 0.00000000e+00
- 2 21 248 248 0.25577299e+01 -0.14119228e+01 -0.10434365e+02 0.00000000e+00
- 2 21 248 248 0.30194296e+01 -0.20175062e+01 -0.22945063e+02 0.00000000e+00
- 2 21 248 248 0.53538261e+01 -0.17714583e+01 -0.57181909e+02 0.00000000e+00
- 2 21 248 248 0.53222333e+01 -0.58426892e+01 -0.12045607e+03 0.00000000e+00
- 2 21 248 248 -0.81672619e+00 0.42340906e-01 0.35663424e-01 0.00000000e+00
- 2 2101 248 248 -0.26632187e+00 0.10702820e+01 -0.56551538e+03 0.57933000e+00
- 2 92 104 120 -0.91819935e+01 0.61517896e+01 -0.11403622e+04 0.47175206e+02
- 2 223 331 333 -0.11023818e+00 -0.40804567e+01 -0.49444256e+02 0.78311276e+00
- 1 -211 0 0 -0.24759899e+01 -0.64582925e+01 -0.10274200e+03 0.13957000e+00
- 2 213 334 335 -0.34631717e+00 -0.82153894e+00 -0.90233948e+01 0.67655687e+00
- 1 -211 0 0 -0.10278110e+00 -0.62461616e+00 -0.87073905e+01 0.13957000e+00
- 1 2212 0 0 -0.22680787e+01 -0.13956580e+00 -0.55188074e+02 0.93827000e+00
- 1 -211 0 0 -0.81471677e-01 -0.31063294e+00 -0.29784358e+01 0.13957000e+00
- 2 -1114 336 337 -0.10521825e+01 -0.23616927e+00 -0.23426651e+02 0.11162369e+01
- 1 -211 0 0 -0.62538030e+00 -0.42463466e+00 -0.25788762e+02 0.13957000e+00
- 1 211 0 0 -0.11515716e+01 0.45404652e+00 -0.30266343e+02 0.13957000e+00
- 2 313 338 339 -0.17441226e+01 0.17107658e+01 -0.65964554e+02 0.82108405e+00
- 2 -313 340 341 -0.94300988e+00 0.40868670e+00 -0.24809021e+02 0.10326433e+01
- 2 -213 342 343 -0.77508915e+00 0.80826066e+00 -0.30591762e+02 0.56976139e+00
- 2 213 344 345 -0.64587544e+00 0.11921001e+01 -0.46752031e+02 0.72813041e+00
- 2 -213 346 347 0.69118777e+00 0.34950059e+01 -0.94798067e+02 0.76057217e+00
- 1 321 0 0 -0.58536893e-01 0.21047731e+00 -0.15463835e+02 0.49360000e+00
- 2 -313 348 349 0.16403476e+01 0.25077904e+01 -0.75427944e+02 0.91766959e+00
- 2 113 350 351 0.86711627e+00 0.84605633e+01 -0.47898971e+03 0.85833159e+00
- 2 92 122 138 -0.67656672e+01 -0.49889862e+01 -0.34432582e+02 0.31998616e+02
- 2 213 352 353 -0.12977659e+01 -0.31256750e+00 -0.85836239e+01 0.81280537e+00
- 1 -211 0 0 -0.11589640e+01 0.94733231e-01 -0.61801874e+01 0.13957000e+00
- 2 113 354 355 -0.14681096e+01 -0.65935676e+00 -0.59348687e+01 0.74042231e+00
- 2 223 356 358 -0.35094976e+00 -0.15718773e+00 -0.29558878e+01 0.81522702e+00
- 1 211 0 0 0.32355233e-02 -0.48150553e+00 -0.37187193e+01 0.13957000e+00
- 2 -213 359 360 -0.92483461e+00 -0.43348272e+00 -0.24348325e+01 0.81118899e+00
- 2 213 361 362 -0.20438230e+00 -0.37955415e+00 -0.12547599e+01 0.63268636e+00
- 1 -211 0 0 -0.12692801e+01 -0.75527565e+00 -0.10324563e+01 0.13957000e+00
- 1 211 0 0 -0.79353363e+00 0.46432606e+00 -0.20952308e+01 0.13957000e+00
- 2 223 363 365 -0.52310878e+00 -0.66435848e+00 -0.97856221e+00 0.77593453e+00
- 2 111 366 367 -0.77481257e+00 -0.14154565e+00 -0.88031845e+00 0.13498000e+00
- 2 -213 368 369 0.29225504e-01 -0.71635389e+00 -0.12642627e+01 0.60164616e+00
- 1 2112 0 0 -0.43175348e+00 -0.98839582e+00 -0.22413329e-01 0.93957000e+00
- 2 -1114 370 371 -0.15710895e+00 -0.51821539e+00 0.67796581e+00 0.12256653e+01
- 2 311 372 372 0.63541969e+00 0.58246667e+00 0.39006816e+00 0.49767000e+00
- 2 333 373 374 0.15679081e+01 -0.18247643e-02 0.12548534e+01 0.10213073e+01
- 1 -321 0 0 0.35314765e+00 0.79111839e-01 0.58065431e+00 0.49360000e+00
- 2 92 140 146 0.00000000e+00 0.00000000e+00 0.71065037e+02 0.14941080e+02
- 2 -311 375 375 -0.49027154e+00 -0.99751419e-01 0.44001511e-02 0.49767000e+00
- 2 113 376 377 -0.10863388e+01 -0.10104946e+01 0.26072047e+01 0.96090821e+00
- 2 313 378 379 -0.26302816e-01 0.28183601e+00 0.19521125e+01 0.84173996e+00
- 2 -313 380 381 0.17585658e+00 -0.15531935e+00 0.95393219e+01 0.93151396e+00
- 1 -211 0 0 0.59654666e+00 0.67248058e+00 0.11316740e+02 0.13957000e+00
- 1 211 0 0 0.40566907e+00 -0.20312978e+00 0.18557228e+02 0.13957000e+00
- 2 313 382 383 0.42484086e+00 0.51437853e+00 0.27088029e+02 0.99031380e+00
- 2 92 148 247 -0.32603624e+02 0.46822780e+02 0.10516679e+03 0.10098992e+05
- 2 113 384 385 0.12668523e-01 -0.82267158e+00 0.14504869e+04 0.69243814e+00
- 1 2212 0 0 0.39935759e+00 -0.35501061e-01 0.84272468e+03 0.93827000e+00
- 2 -313 386 387 -0.20305630e+00 -0.57798593e+00 0.32516877e+03 0.94165049e+00
- 2 313 388 389 -0.67268447e+00 0.10484885e+01 0.57283984e+02 0.85136446e+00
- 2 -1114 390 391 -0.29771236e+00 -0.33803872e+00 0.48655995e+02 0.11389065e+01
- 2 311 392 392 -0.97361449e+00 -0.28525757e+00 0.40393284e+02 0.49767000e+00
- 2 3112 393 394 -0.47377631e+00 -0.19226833e-01 0.54839869e+02 0.11974400e+01
- 2 223 395 397 0.49975113e-01 -0.44155859e+00 0.39945343e+02 0.78139910e+00
- 2 -313 398 399 0.43260449e+00 -0.10901550e+01 0.13339622e+03 0.88227340e+00
- 2 313 400 401 0.15858369e+01 -0.17365538e+01 0.26082397e+03 0.10389917e+01
- 1 211 0 0 0.72721345e+00 -0.97032539e+00 0.13658957e+03 0.13957000e+00
- 2 223 402 403 0.15471979e+01 -0.11549914e+01 0.38292750e+03 0.78319259e+00
- 1 -321 0 0 0.14221501e+00 -0.39113727e+00 0.63468239e+02 0.49360000e+00
- 2 313 404 405 0.79481178e+00 -0.38833516e+00 0.19782750e+03 0.84178959e+00
- 2 -2114 406 407 0.99379323e+00 -0.81242977e+00 0.20872555e+03 0.12196963e+01
- 2 2114 408 409 0.94031669e+00 -0.72718660e+00 0.10867324e+03 0.11074678e+01
- 2 111 410 411 0.34631463e+00 0.46469326e+00 0.87679004e+02 0.13498000e+00
- 1 211 0 0 0.78041038e-01 0.13897369e-01 0.95341156e+01 0.13957000e+00
- 2 223 412 414 0.10349305e+01 -0.29455532e+00 0.74139946e+02 0.78726132e+00
- 1 -211 0 0 -0.35462379e+00 -0.48992746e-01 0.29312218e+02 0.13957000e+00
- 1 -2112 0 0 -0.56885606e+00 0.52837308e-02 0.50053635e+02 0.93957000e+00
- 1 2112 0 0 -0.18673739e+00 -0.33008285e+00 0.51493243e+02 0.93957000e+00
- 2 213 415 416 -0.27139625e+00 0.12626876e+00 0.23815417e+02 0.96172935e+00
- 2 -213 417 418 0.20305267e+00 -0.34887816e+00 0.20079721e+02 0.60082994e+00
- 2 -313 419 420 -0.15758375e+01 0.11862079e+01 0.85246189e+02 0.87464699e+00
- 2 -3122 421 422 -0.47993576e+00 0.20053031e+00 0.22914180e+02 0.11156800e+01
- 1 2112 0 0 -0.15835654e+00 0.74139479e+00 0.15822857e+02 0.93957000e+00
- 2 223 423 425 0.23071400e+01 0.45548571e+01 0.38782820e+02 0.78379304e+00
- 1 211 0 0 0.14258531e+00 0.20166593e-01 0.40547594e+01 0.13957000e+00
- 2 -213 426 427 0.10713461e+01 0.43028056e+01 0.35010317e+02 0.10318919e+01
- 2 331 428 429 0.52137979e+00 0.11457541e+01 0.10099763e+02 0.95785999e+00
- 2 213 430 431 -0.19711447e+01 0.19027781e+01 0.26628007e+02 0.81390442e+00
- 1 -2212 0 0 -0.20638843e+01 0.26167402e+01 0.31286393e+02 0.93827000e+00
- 1 2212 0 0 -0.15623405e+01 0.30981401e+01 0.28055923e+02 0.93827000e+00
- 2 -213 432 433 -0.14809192e+01 0.11250994e+01 0.22960099e+02 0.52803645e+00
- 2 213 434 435 -0.22995021e+01 0.23568594e+01 0.12913354e+02 0.75232200e+00
- 2 113 436 437 -0.93085166e+00 0.21913461e+01 0.11092202e+02 0.74517050e+00
- 2 221 438 439 -0.92848093e+00 0.19118669e+01 0.58082425e+01 0.54745000e+00
- 2 111 440 441 -0.77020048e+00 0.89016486e+00 0.39856354e+01 0.13498000e+00
- 1 -211 0 0 -0.61118884e+00 0.50854748e+00 0.44462159e+01 0.13957000e+00
- 2 223 442 444 -0.20462442e+01 0.44800408e+01 0.15336828e+02 0.78426090e+00
- 1 -2112 0 0 -0.18393698e+01 0.16702670e+01 0.59244998e+01 0.93957000e+00
- 1 2112 0 0 -0.38196302e+00 0.39808348e+00 0.89086257e+00 0.93957000e+00
- 2 223 445 447 -0.95998196e+00 0.26210231e+01 0.26456276e+01 0.78133181e+00
- 2 213 448 449 -0.43064373e+00 0.19660608e+01 0.14186240e+01 0.64523994e+00
- 2 -213 450 451 -0.55405854e+00 0.45076456e+00 0.76226043e+00 0.63217202e+00
- 2 221 452 453 -0.33571028e+00 0.31832146e+00 0.64685077e+00 0.54745000e+00
- 2 223 454 456 -0.30771305e+01 0.34740193e+01 0.34432284e+01 0.77572592e+00
- 2 111 457 458 -0.13726709e+00 0.63808324e-01 0.83608741e+00 0.13498000e+00
- 1 211 0 0 -0.24570075e+01 0.14159921e+01 0.14418233e+01 0.13957000e+00
- 1 -321 0 0 -0.54420211e+00 0.10822756e+01 0.10007711e+01 0.49360000e+00
- 2 323 459 460 -0.15340210e+01 0.78186411e+00 0.30261488e+00 0.85518265e+00
- 2 113 461 462 -0.12753918e+01 0.11372800e+01 -0.76590411e+00 0.67487408e+00
- 2 -213 463 464 -0.79179324e+00 0.59919069e+00 -0.34645795e+00 0.79644701e+00
- 2 111 465 466 -0.54450739e+00 0.10716707e+01 -0.54788820e+00 0.13498000e+00
- 2 113 467 468 -0.10866113e+01 0.24493356e+00 -0.34449322e+01 0.79769619e+00
- 2 213 469 470 -0.10910232e+01 0.11746071e+01 -0.26379665e+01 0.80469461e+00
- 2 223 471 473 0.13665200e+00 0.20664159e+00 -0.39927771e+01 0.79858928e+00
- 2 221 474 476 -0.98201499e-01 0.43004816e+00 -0.33686174e+01 0.54745000e+00
- 1 -211 0 0 -0.94625706e+00 0.11798567e+01 -0.71589246e+01 0.13957000e+00
- 1 211 0 0 -0.23854498e+00 0.23797885e+00 -0.10695723e+01 0.13957000e+00
- 1 -321 0 0 -0.10383184e+01 0.54081133e+00 -0.87426134e+01 0.49360000e+00
- 2 323 477 478 -0.12433923e+01 0.42780433e+00 -0.21946136e+02 0.93292993e+00
- 2 -323 479 480 -0.18968713e+01 0.19687393e+01 -0.19143243e+02 0.89428945e+00
- 1 321 0 0 0.21443286e+00 -0.14704232e+00 -0.19022494e+02 0.49360000e+00
- 2 223 481 483 -0.86780906e+00 0.48544265e+00 -0.52346431e+02 0.78118838e+00
- 2 -213 484 485 -0.88242998e+00 0.56625649e+00 -0.74397788e+02 0.74266395e+00
- 2 213 486 487 -0.17132685e+01 0.33332589e+00 -0.24118862e+03 0.95227571e+00
- 1 -211 0 0 -0.70983915e+00 0.76115308e+00 -0.12663201e+03 0.13957000e+00
- 2 -311 488 488 -0.69740363e+00 0.43888877e+00 -0.26612245e+03 0.49767000e+00
- 2 313 489 490 -0.12320452e+01 -0.13244124e+00 -0.11850488e+03 0.86566977e+00
- 2 223 491 493 -0.28999723e+01 0.25048961e+01 -0.75360976e+03 0.79130327e+00
- 1 -2112 0 0 -0.38013045e-01 -0.46540578e+00 -0.21801980e+03 0.93957000e+00
- 1 2112 0 0 0.56674826e+00 -0.58377816e-01 -0.51442857e+03 0.93957000e+00
- 1 -2112 0 0 0.11178687e+01 -0.32684574e+00 -0.57491990e+03 0.93957000e+00
- 2 3122 494 495 0.58837776e+00 -0.38118260e+00 -0.34446652e+03 0.11156800e+01
- 2 313 496 497 0.46391371e+00 -0.50161793e+00 -0.50592031e+03 0.96394097e+00
- 2 -313 498 499 0.31406227e+00 -0.62390912e-01 -0.20547051e+03 0.90293865e+00
- 2 313 500 501 0.10612812e+01 -0.10922429e+01 -0.34569804e+03 0.92015048e+00
- 1 211 0 0 -0.40546061e-01 -0.79815388e+00 -0.19208897e+03 0.13957000e+00
- 1 -211 0 0 0.40743595e+00 -0.29312664e+00 -0.22576525e+02 0.13957000e+00
- 2 113 502 503 0.61908695e+00 -0.42280558e+00 -0.15066247e+03 0.78221796e+00
- 1 211 0 0 -0.37570732e+00 -0.78945005e+00 -0.71046854e+01 0.13957000e+00
- 1 -211 0 0 0.27875231e+00 0.75943322e+00 -0.12040603e+02 0.13957000e+00
- 2 -311 504 504 -0.36249127e+00 -0.80157968e+00 -0.78363338e+01 0.49767000e+00
- 2 313 505 506 0.31135631e+00 0.32508206e+00 -0.19358166e+01 0.90311338e+00
- 2 213 507 508 -0.13958249e+00 0.18459920e-01 -0.26384818e+01 0.58438164e+00
- 2 113 509 510 0.27645987e+00 -0.12511540e-02 -0.10175971e+01 0.73746522e+00
- 2 111 511 512 0.58164182e+00 0.65251061e+00 -0.16021891e+01 0.13498000e+00
- 2 -213 513 514 -0.17970530e+00 0.11119039e+00 -0.10111677e+01 0.71586974e+00
- 2 213 515 516 -0.55533767e+00 0.19839377e+00 -0.16754543e+01 0.48676390e+00
- 2 331 517 519 0.38813138e+00 -0.69168077e-01 -0.14345700e+01 0.95777304e+00
- 2 -213 520 521 0.52091506e+00 0.24624749e+00 -0.39847515e+01 0.79208580e+00
- 2 213 522 523 -0.66324726e-01 -0.36824736e+00 -0.53882920e+01 0.74947454e+00
- 2 113 524 525 -0.65032747e+00 -0.76953459e+00 -0.96189713e+01 0.77286487e+00
- 2 -213 526 527 0.27776488e-01 -0.46660481e+00 -0.11366965e+02 0.78150019e+00
- 1 211 0 0 -0.78007822e-01 -0.58098734e+00 -0.23515298e+02 0.13957000e+00
- 1 -211 0 0 0.48564534e+00 0.10933266e+00 -0.11041564e+02 0.13957000e+00
- 2 221 528 530 0.39808883e+00 0.51001928e+00 -0.47454669e+02 0.54745000e+00
- 2 213 531 532 0.17939166e+00 -0.20950539e+00 -0.36719717e+02 0.78148012e+00
- 2 92 249 330 0.48116060e+02 -0.47052619e+02 0.50510257e+03 0.20676230e+04
- 2 311 533 533 -0.11136130e+00 -0.17545799e+00 0.31104438e+02 0.49767000e+00
- 2 -313 534 535 0.12844147e+01 -0.48532304e+00 0.13867711e+03 0.87817768e+00
- 2 111 536 537 -0.16480695e+00 -0.80879738e+00 0.32974087e+02 0.13498000e+00
- 2 313 538 539 0.73627230e+00 0.12361532e+01 0.19133125e+03 0.85872966e+00
- 2 -323 540 541 -0.32506675e+00 -0.48940062e-01 0.77062921e+02 0.88622032e+00
- 2 223 542 544 0.48268756e+00 0.84297240e+00 0.18552506e+03 0.78545857e+00
- 1 211 0 0 -0.26350747e+00 -0.63021894e-01 0.26900919e+02 0.13957000e+00
- 2 113 545 546 0.74830374e+00 0.11045097e+00 0.69185354e+02 0.11610440e+01
- 2 -213 547 548 -0.25723215e+00 0.27374249e+00 0.17497963e+02 0.75195234e+00
- 1 321 0 0 0.92871816e+00 -0.15499896e+01 0.74110598e+02 0.49360000e+00
- 2 -323 549 550 0.21178611e+00 0.24213953e-01 0.35936991e+02 0.86720818e+00
- 1 211 0 0 -0.32218551e+00 0.33356126e-02 0.11324977e+02 0.13957000e+00
- 1 2112 0 0 0.10748984e+01 -0.12267895e+01 0.58989942e+02 0.93957000e+00
- 1 -2212 0 0 0.23623765e+01 -0.33531370e+01 0.15500722e+03 0.93827000e+00
- 2 111 551 552 0.10147569e+00 0.19748092e+00 0.43538689e+01 0.13498000e+00
- 1 211 0 0 0.22601578e+00 -0.14459589e+01 0.38148592e+02 0.13957000e+00
- 2 223 553 554 0.17621329e+01 -0.10894853e+01 0.33446671e+02 0.78181630e+00
- 2 113 555 556 0.93392395e+00 -0.93976927e+00 0.24491206e+02 0.67974797e+00
- 1 -211 0 0 0.34403730e+00 0.22244163e+00 0.48637378e+01 0.13957000e+00
- 2 111 557 558 0.35971551e-02 -0.52984607e-01 0.45260916e+00 0.13498000e+00
- 2 213 559 560 0.74233192e+00 0.20748417e+00 0.10896286e+02 0.75424164e+00
- 2 331 561 562 0.98816052e+00 -0.47881177e-01 0.93192428e+01 0.95813223e+00
- 2 -213 563 564 0.23486637e+01 -0.10688280e+01 0.16698423e+02 0.81763664e+00
- 1 211 0 0 0.75481759e+00 -0.58431033e+00 0.28245426e+01 0.13957000e+00
- 2 -213 565 566 0.23395527e+00 -0.18125460e-01 0.18157925e+01 0.81537738e+00
- 2 213 567 568 0.21512686e+01 -0.71079481e+00 0.76455147e+01 0.65529535e+00
- 1 -211 0 0 0.14516739e+00 0.49111130e-01 0.39280055e+00 0.13957000e+00
- 2 213 569 570 0.12496760e+01 -0.97767014e+00 0.71459309e+01 0.84280805e+00
- 1 -211 0 0 -0.12727626e+00 -0.34364388e+00 0.18846761e+01 0.13957000e+00
- 2 111 571 572 -0.36166665e-01 0.27499698e+00 0.63091448e+00 0.13498000e+00
- 1 211 0 0 0.12747182e+01 -0.27624167e+01 0.64522828e+01 0.13957000e+00
- 2 313 573 574 0.53500703e-01 -0.15036965e+01 0.51807987e+01 0.84181970e+00
- 2 -313 575 576 -0.82384630e+00 -0.15120235e+01 0.36770583e+01 0.93831301e+00
- 2 313 577 578 -0.25629583e+01 -0.56399562e+01 0.71479500e+01 0.10035763e+01
- 2 -311 579 579 -0.15655095e+01 -0.22869608e+01 0.33101915e+01 0.49767000e+00
- 2 -213 580 581 -0.27643081e+00 -0.22538611e+01 0.26088756e+01 0.40066778e+00
- 2 213 582 583 -0.39117605e+00 -0.46786390e+00 0.11217319e+01 0.78825184e+00
- 2 313 584 585 -0.20162257e+00 -0.72242072e+00 0.12817779e+01 0.88194052e+00
- 1 -321 0 0 -0.40378076e+00 -0.40513075e+00 0.11826793e-02 0.49360000e+00
- 1 211 0 0 0.56693030e+00 -0.26667272e+00 0.29460505e+00 0.13957000e+00
- 2 -213 586 587 -0.22843340e+00 -0.95448491e+00 0.94464938e+00 0.54834840e+00
- 1 211 0 0 0.76095085e-01 -0.78409439e+00 0.34700266e+00 0.13957000e+00
- 2 113 588 589 0.14475072e+01 -0.17908833e+01 -0.18390404e+01 0.79794380e+00
- 2 -213 590 591 0.16168919e+01 -0.16303419e+01 -0.83407208e+00 0.76562729e+00
- 2 113 592 593 0.14656604e+01 -0.27594841e+01 -0.16323796e+01 0.92268999e+00
- 2 223 594 596 0.25927057e+01 -0.34537437e+01 -0.23856437e+01 0.78235743e+00
- 1 211 0 0 0.21491867e+00 0.13392409e+00 -0.35898849e+00 0.13957000e+00
- 1 2112 0 0 0.11640901e+01 -0.16129586e+00 -0.17214028e+01 0.93957000e+00
- 2 223 597 599 0.12880320e+01 -0.14436278e+01 -0.14461651e+01 0.77921233e+00
- 1 -2112 0 0 0.35129240e+01 -0.17843861e+00 -0.14634220e+01 0.93957000e+00
- 1 -211 0 0 0.10544319e+01 0.92933458e+00 -0.18673165e+01 0.13957000e+00
- 1 211 0 0 0.12793451e+01 0.73969202e+00 -0.61440109e+00 0.13957000e+00
- 2 313 600 601 0.54351457e+00 -0.11582968e+00 -0.11305326e+01 0.95850873e+00
- 2 -311 602 602 0.87474730e+00 0.52574907e+00 -0.70076102e+00 0.49767000e+00
- 2 111 603 604 0.95600112e+00 0.48222348e+00 -0.21824222e+01 0.13498000e+00
- 2 2114 605 606 0.58862819e+00 0.51538249e+00 -0.13023811e+01 0.11595005e+01
- 2 113 607 608 0.12048784e+01 0.85265213e+00 -0.29211912e+01 0.67513767e+00
- 2 -2214 609 610 0.71788322e+00 -0.62577099e-01 -0.25995021e+01 0.12136614e+01
- 2 2224 611 612 0.10193800e+01 -0.40504476e+00 -0.15070824e+02 0.12642253e+01
- 1 -2212 0 0 0.11689479e+01 -0.47371578e-01 -0.79693321e+01 0.93827000e+00
- 1 2112 0 0 0.19718891e+01 -0.81229705e+00 -0.18142377e+02 0.93957000e+00
- 1 -2112 0 0 0.91244458e+00 -0.42338161e+00 -0.71518205e+01 0.93957000e+00
- 2 2114 613 614 0.27376814e+01 -0.18782064e+01 -0.25959141e+02 0.13118896e+01
- 2 221 615 616 0.16509966e+01 -0.76722789e+00 -0.19656149e+02 0.54745000e+00
- 2 -2214 617 618 0.20292650e+01 -0.22284918e+01 -0.45206640e+02 0.12472449e+01
- 1 211 0 0 0.29964248e+00 0.47754231e-01 -0.37750668e+01 0.13957000e+00
- 2 2114 619 620 0.14269820e+01 -0.14467006e+01 -0.25363588e+02 0.13203283e+01
- 2 -2114 621 622 0.11863378e+01 -0.12381599e+01 -0.27502346e+02 0.12102978e+01
- 2 313 623 624 0.26582464e+00 0.26964021e+00 -0.20999150e+01 0.83585727e+00
- 2 -311 625 625 -0.53522134e+00 -0.77668193e+00 -0.45613506e+01 0.49767000e+00
- 2 311 626 626 0.63651542e+00 0.30929331e+00 -0.64585031e+01 0.49767000e+00
- 2 -311 627 627 -0.20487109e+00 0.13069051e+00 -0.10759859e+01 0.49767000e+00
- 1 -211 0 0 0.94817303e-02 -0.11108120e+00 -0.11331492e+01 0.13957000e+00
- 2 213 628 629 0.36725067e-01 -0.27719616e+00 -0.53887511e+01 0.97526934e+00
- 2 -213 630 631 -0.18725451e+00 -0.36364238e+00 -0.13504628e+02 0.68126969e+00
- 2 213 632 633 -0.79588010e+00 0.56360233e+00 -0.14507167e+02 0.78375294e+00
- 2 1114 634 635 0.28111867e+00 -0.30003772e+00 -0.15884687e+02 0.12548806e+01
- 1 -2112 0 0 -0.10388208e+00 0.61598539e+00 -0.19892249e+02 0.93957000e+00
- 2 331 636 638 0.10657375e+00 0.17852850e+00 -0.58760587e+02 0.95780058e+00
- 1 2212 0 0 -0.16159244e+00 0.16114793e+00 -0.11485543e+03 0.93827000e+00
- 1 -2112 0 0 -0.25173958e+00 0.47291498e+00 -0.13695886e+03 0.93957000e+00
- 1 2112 0 0 0.36997047e+00 -0.20128439e+00 -0.18202701e+03 0.93957000e+00
- 1 211 0 0 0.47780690e-01 -0.29524503e+00 -0.44363403e+01 0.13957000e+00
- 1 -211 0 0 -0.29295479e+00 -0.23499520e+01 -0.28880563e+02 0.13957000e+00
- 2 111 639 640 0.13493591e+00 -0.14352597e+01 -0.16127353e+02 0.13498000e+00
- 1 211 0 0 -0.11723685e+00 -0.74307656e+00 -0.48532678e+01 0.13957000e+00
- 2 111 641 642 -0.22908033e+00 -0.78462371e-01 -0.41701270e+01 0.13498000e+00
- 1 -2112 0 0 -0.90675838e+00 -0.11672868e+00 -0.19013571e+02 0.93957000e+00
- 1 211 0 0 -0.14542414e+00 -0.11944059e+00 -0.44130800e+01 0.13957000e+00
- 1 321 0 0 -0.15720865e+01 0.16809031e+01 -0.60284631e+02 0.49360000e+00
- 1 -211 0 0 -0.17203606e+00 0.29862688e-01 -0.56799229e+01 0.13957000e+00
- 1 -321 0 0 -0.28294602e+00 -0.68093734e-01 -0.13747415e+02 0.49360000e+00
- 1 211 0 0 -0.66006386e+00 0.47678043e+00 -0.11061606e+02 0.13957000e+00
- 1 -211 0 0 -0.56559857e+00 0.68282949e+00 -0.27023024e+02 0.13957000e+00
- 2 111 643 644 -0.20949059e+00 0.12543117e+00 -0.35687380e+01 0.13498000e+00
- 1 211 0 0 -0.40500056e-02 0.38260389e+00 -0.21473747e+02 0.13957000e+00
- 2 111 645 646 -0.64182543e+00 0.80949621e+00 -0.25278284e+02 0.13498000e+00
- 1 -211 0 0 0.89284635e-01 0.15486447e+01 -0.48435473e+02 0.13957000e+00
- 2 111 647 648 0.60190313e+00 0.19463611e+01 -0.46362594e+02 0.13498000e+00
- 2 -311 649 649 0.44284388e+00 0.10312786e+01 -0.28972351e+02 0.49767000e+00
- 2 111 650 651 0.11975037e+01 0.14765118e+01 -0.46455593e+02 0.13498000e+00
- 1 -211 0 0 0.65828270e+00 0.36278420e+01 -0.19149462e+03 0.13957000e+00
- 1 211 0 0 0.20883357e+00 0.48327213e+01 -0.28749509e+03 0.13957000e+00
- 1 211 0 0 -0.19192311e+00 0.22134730e+00 -0.20135713e+01 0.13957000e+00
- 2 111 652 653 -0.11058428e+01 -0.53391480e+00 -0.65700526e+01 0.13498000e+00
- 1 -211 0 0 -0.52626473e-01 -0.10237558e+00 -0.25986390e+00 0.13957000e+00
- 1 211 0 0 -0.14154832e+01 -0.55698118e+00 -0.56750048e+01 0.13957000e+00
- 1 -211 0 0 -0.18311486e+00 0.32492382e-01 -0.15034231e+01 0.13957000e+00
- 1 211 0 0 -0.19518288e+00 -0.11180777e+00 -0.13604005e+01 0.13957000e+00
- 2 111 654 655 0.27347987e-01 -0.77872342e-01 -0.92064219e-01 0.13498000e+00
- 1 -211 0 0 -0.15171227e+00 0.15553939e+00 -0.21825871e+00 0.13957000e+00
- 2 111 656 657 -0.77312234e+00 -0.58902211e+00 -0.22165738e+01 0.13498000e+00
- 1 211 0 0 -0.18787337e+00 -0.18356579e+00 -0.13794580e+00 0.13957000e+00
- 2 111 658 659 -0.16508933e-01 -0.19598836e+00 -0.11168141e+01 0.13498000e+00
- 1 211 0 0 -0.40243710e+00 -0.22641818e+00 -0.44617962e+00 0.13957000e+00
- 1 -211 0 0 -0.28398746e-01 0.11920865e-01 -0.11035090e-01 0.13957000e+00
- 2 111 660 661 -0.92272933e-01 -0.44986116e+00 -0.52134751e+00 0.13498000e+00
- 1 22 0 0 -0.79590030e-01 -0.18890280e-01 -0.38891868e-01 0.00000000e+00
- 1 22 0 0 -0.69522254e+00 -0.12265537e+00 -0.84142658e+00 0.00000000e+00
- 1 -211 0 0 -0.16541428e+00 -0.58000010e+00 -0.63437372e+00 0.13957000e+00
- 2 111 662 663 0.19463979e+00 -0.13635379e+00 -0.62988896e+00 0.13498000e+00
- 1 -2112 0 0 -0.14134880e+00 -0.46275579e+00 0.30599028e+00 0.93957000e+00
- 1 211 0 0 -0.15760152e-01 -0.55459604e-01 0.37197553e+00 0.13957000e+00
- 1 130 0 0 0.63541969e+00 0.58246667e+00 0.39006816e+00 0.49767000e+00
- 1 321 0 0 0.71240515e+00 -0.12544291e+00 0.57661821e+00 0.49360000e+00
- 1 -321 0 0 0.85550294e+00 0.12361815e+00 0.67823515e+00 0.49360000e+00
- 2 310 664 665 -0.49027154e+00 -0.99751419e-01 0.44001511e-02 0.49767000e+00
- 1 211 0 0 -0.72886334e+00 -0.27969912e+00 0.64864899e+00 0.13957000e+00
- 1 -211 0 0 -0.35747547e+00 -0.73079544e+00 0.19585557e+01 0.13957000e+00
- 1 321 0 0 0.68158092e-01 0.38537274e+00 0.17581629e+01 0.49360000e+00
- 1 -211 0 0 -0.94460908e-01 -0.10353673e+00 0.19394954e+00 0.13957000e+00
- 2 -311 666 666 -0.20155915e-01 -0.36796666e+00 0.52520678e+01 0.49767000e+00
- 2 111 667 668 0.19601250e+00 0.21264730e+00 0.42872541e+01 0.13498000e+00
- 2 311 669 669 0.14990333e+00 0.46028728e+00 0.24132529e+02 0.49767000e+00
- 2 111 670 671 0.27493754e+00 0.54091247e-01 0.29554994e+01 0.13498000e+00
- 1 -211 0 0 -0.28093803e+00 -0.42114396e+00 0.91067077e+03 0.13957000e+00
- 1 211 0 0 0.29360655e+00 -0.40152762e+00 0.53981616e+03 0.13957000e+00
- 1 -321 0 0 -0.40065620e-01 -0.47877638e+00 0.13210601e+03 0.49360000e+00
- 1 211 0 0 -0.16299068e+00 -0.99209559e-01 0.19306276e+03 0.13957000e+00
- 2 311 672 672 -0.59215896e+00 0.82378541e+00 0.52394672e+02 0.49767000e+00
- 2 111 673 674 -0.80525513e-01 0.22470310e+00 0.48893123e+01 0.13498000e+00
- 1 -2112 0 0 -0.30756951e+00 -0.17515728e+00 0.38090631e+02 0.93957000e+00
- 1 211 0 0 0.98571473e-02 -0.16288143e+00 0.10565364e+02 0.13957000e+00
- 1 130 0 0 -0.97361449e+00 -0.28525757e+00 0.40393284e+02 0.49767000e+00
- 1 2112 0 0 -0.53904889e+00 0.10713928e+00 0.46629763e+02 0.93957000e+00
- 1 -211 0 0 0.65272583e-01 -0.12636612e+00 0.82101067e+01 0.13957000e+00
- 1 211 0 0 0.27083184e+00 -0.30955102e-01 0.12663171e+02 0.13957000e+00
- 1 -211 0 0 0.95645141e-03 -0.23293909e+00 0.10840315e+02 0.13957000e+00
- 2 111 675 676 -0.22181317e+00 -0.17766440e+00 0.16441858e+02 0.13498000e+00
- 1 -321 0 0 0.40181725e+00 -0.42916041e+00 0.82707550e+02 0.49360000e+00
- 1 211 0 0 0.30787235e-01 -0.66099462e+00 0.50688674e+02 0.13957000e+00
- 1 321 0 0 0.14507696e+01 -0.14691428e+01 0.24512460e+03 0.49360000e+00
- 1 -211 0 0 0.13506725e+00 -0.26741098e+00 0.15699372e+02 0.13957000e+00
- 1 -211 0 0 0.80535233e+00 -0.90485877e+00 0.27698221e+03 0.13957000e+00
- 1 211 0 0 0.74184557e+00 -0.25013268e+00 0.10594529e+03 0.13957000e+00
- 2 311 677 677 0.38355967e+00 -0.46473052e+00 0.12769193e+03 0.49767000e+00
- 2 111 678 679 0.41125211e+00 0.76395357e-01 0.70135574e+02 0.13498000e+00
- 1 -2212 0 0 0.77073089e+00 -0.59794625e+00 0.18657622e+03 0.93827000e+00
- 1 211 0 0 0.22306234e+00 -0.21448353e+00 0.22149335e+02 0.13957000e+00
- 1 2112 0 0 0.71246071e+00 -0.65110563e+00 0.92214615e+02 0.93957000e+00
- 2 111 680 681 0.22785598e+00 -0.76080966e-01 0.16458626e+02 0.13498000e+00
- 1 22 0 0 0.22489219e+00 0.35220494e+00 0.69887054e+02 0.00000000e+00
- 1 22 0 0 0.12142244e+00 0.11248832e+00 0.17791950e+02 0.00000000e+00
- 1 -211 0 0 0.16563648e+00 -0.49243187e-02 0.49342242e+01 0.13957000e+00
- 1 211 0 0 0.19280116e+00 -0.10611495e+00 0.26350584e+02 0.13957000e+00
- 2 111 682 683 0.67649290e+00 -0.18351605e+00 0.42855138e+02 0.13498000e+00
- 1 211 0 0 0.27608512e+00 -0.57693254e-01 0.39790496e+01 0.13957000e+00
- 2 111 684 685 -0.54748137e+00 0.18396201e+00 0.19836367e+02 0.13498000e+00
- 1 -211 0 0 -0.74368589e-01 -0.36993501e+00 0.13136785e+02 0.13957000e+00
- 2 111 686 687 0.27742126e+00 0.21056855e-01 0.69429351e+01 0.13498000e+00
- 1 -321 0 0 -0.90294162e+00 0.90156835e+00 0.63047340e+02 0.49360000e+00
- 1 211 0 0 -0.67289590e+00 0.28463950e+00 0.22198849e+02 0.13957000e+00
- 1 -2212 0 0 -0.31827050e+00 0.21300667e+00 0.19544055e+02 0.93827000e+00
- 1 211 0 0 -0.16166526e+00 -0.12476363e-01 0.33701251e+01 0.13957000e+00
- 1 211 0 0 0.61808845e+00 0.11993510e+01 0.88126370e+01 0.13957000e+00
- 1 -211 0 0 0.14678131e+01 0.26185740e+01 0.23210121e+02 0.13957000e+00
- 2 111 688 689 0.22123854e+00 0.73693214e+00 0.67600611e+01 0.13498000e+00
- 1 -211 0 0 0.11117566e+01 0.25490642e+01 0.22508395e+02 0.13957000e+00
- 2 111 690 691 -0.40410561e-01 0.17537414e+01 0.12501922e+02 0.13498000e+00
- 1 22 0 0 0.43519720e-01 -0.66724324e-01 0.39246393e+00 0.00000000e+00
- 2 113 692 693 0.47786007e+00 0.12124784e+01 0.97072989e+01 0.74142009e+00
- 1 211 0 0 -0.19204368e+01 0.15383206e+01 0.23267828e+02 0.13957000e+00
- 2 111 694 695 -0.50707878e-01 0.36445754e+00 0.33601790e+01 0.13498000e+00
- 1 -211 0 0 -0.88959579e+00 0.93314326e+00 0.15186724e+02 0.13957000e+00
- 2 111 696 697 -0.59132336e+00 0.19195613e+00 0.77733757e+01 0.13498000e+00
- 1 211 0 0 -0.97411012e+00 0.14878645e+01 0.65362546e+01 0.13957000e+00
- 2 111 698 699 -0.13253920e+01 0.86899490e+00 0.63770989e+01 0.13498000e+00
- 1 211 0 0 -0.54615428e+00 0.19261232e+01 0.89755498e+01 0.13957000e+00
- 1 -211 0 0 -0.38469739e+00 0.26522291e+00 0.21166521e+01 0.13957000e+00
- 1 22 0 0 -0.98433387e+00 0.17193250e+01 0.54444518e+01 0.00000000e+00
- 1 22 0 0 0.55852947e-01 0.19254192e+00 0.36379068e+00 0.00000000e+00
- 1 22 0 0 -0.41137352e+00 0.55640012e+00 0.21905300e+01 0.00000000e+00
- 1 22 0 0 -0.35882696e+00 0.33376474e+00 0.17951054e+01 0.00000000e+00
- 1 -211 0 0 -0.59909137e+00 0.17742864e+01 0.57249323e+01 0.13957000e+00
- 1 211 0 0 -0.13492691e+01 0.24795388e+01 0.86354435e+01 0.13957000e+00
- 2 111 700 701 -0.97883720e-01 0.22621564e+00 0.97645243e+00 0.13498000e+00
- 1 211 0 0 -0.49233520e+00 0.12404322e+01 0.14384395e+01 0.13957000e+00
- 1 -211 0 0 -0.27085149e+00 0.45706587e+00 0.65602481e+00 0.13957000e+00
- 2 111 702 703 -0.19679527e+00 0.92352501e+00 0.55116332e+00 0.13498000e+00
- 1 211 0 0 -0.33846095e+00 0.97853716e+00 0.40376396e+00 0.13957000e+00
- 2 111 704 705 -0.92182786e-01 0.98752362e+00 0.10148600e+01 0.13498000e+00
- 1 -211 0 0 -0.31872298e+00 -0.29141979e-01 0.10806396e+00 0.13957000e+00
- 2 111 706 707 -0.23533556e+00 0.47990654e+00 0.65419647e+00 0.13498000e+00
- 1 22 0 0 -0.42736909e+00 0.96381165e-01 0.25789813e+00 0.00000000e+00
- 1 22 0 0 0.91658806e-01 0.22194029e+00 0.38895265e+00 0.00000000e+00
- 1 211 0 0 -0.37422670e+00 0.31288412e+00 0.25329501e+00 0.13957000e+00
- 1 -211 0 0 -0.23319287e+01 0.27202679e+01 0.28548950e+01 0.13957000e+00
- 2 111 708 709 -0.37097504e+00 0.44086727e+00 0.33503844e+00 0.13498000e+00
- 1 22 0 0 0.15042146e-01 -0.10824912e-01 0.21997782e-01 0.00000000e+00
- 1 22 0 0 -0.15230924e+00 0.74633235e-01 0.81408963e+00 0.00000000e+00
- 2 311 710 710 -0.13511412e+01 0.44106694e+00 0.17751073e+00 0.49767000e+00
- 1 211 0 0 -0.18287981e+00 0.34079717e+00 0.12510415e+00 0.13957000e+00
- 1 -211 0 0 -0.12905255e+01 0.10663015e+01 -0.70538841e+00 0.13957000e+00
- 1 211 0 0 0.15133679e-01 0.70978555e-01 -0.60515697e-01 0.13957000e+00
- 1 -211 0 0 -0.23997346e-01 -0.52364694e-02 -0.29987657e+00 0.13957000e+00
- 2 111 711 712 -0.76779589e+00 0.60442716e+00 -0.46581386e-01 0.13498000e+00
- 1 22 0 0 -0.32654176e+00 0.71730570e+00 -0.29790890e+00 0.00000000e+00
- 1 22 0 0 -0.21796563e+00 0.35436497e+00 -0.24997930e+00 0.00000000e+00
- 1 211 0 0 -0.86715064e+00 0.38251455e+00 -0.18272767e+01 0.13957000e+00
- 1 -211 0 0 -0.21946065e+00 -0.13758099e+00 -0.16176555e+01 0.13957000e+00
- 1 211 0 0 -0.82638932e+00 0.11681823e+01 -0.18172787e+01 0.13957000e+00
- 2 111 713 714 -0.26463391e+00 0.64248493e-02 -0.82068785e+00 0.13498000e+00
- 1 211 0 0 0.25068879e-01 -0.17679941e+00 -0.70635615e+00 0.13957000e+00
- 1 -211 0 0 0.32816631e-02 0.27219003e+00 -0.26754414e+01 0.13957000e+00
- 2 111 715 716 0.10830146e+00 0.11125097e+00 -0.61097963e+00 0.13498000e+00
- 1 -211 0 0 0.10083066e+00 0.75072523e-01 -0.11707134e+01 0.13957000e+00
- 1 211 0 0 -0.36827598e-01 0.10949233e+00 -0.87752940e+00 0.13957000e+00
- 2 111 717 718 -0.16220456e+00 0.24548331e+00 -0.13203746e+01 0.13498000e+00
- 2 311 719 719 -0.64538428e+00 -0.72964595e-01 -0.11645774e+02 0.49767000e+00
- 1 211 0 0 -0.59800799e+00 0.50076893e+00 -0.10300362e+02 0.13957000e+00
- 1 -321 0 0 -0.15339778e+01 0.17316954e+01 -0.14374168e+02 0.49360000e+00
- 2 111 720 721 -0.36289349e+00 0.23704386e+00 -0.47690754e+01 0.13498000e+00
- 1 -211 0 0 -0.36189990e+00 0.47125142e-01 -0.13784018e+02 0.13957000e+00
- 1 211 0 0 -0.56730673e+00 0.36701077e+00 -0.28263029e+02 0.13957000e+00
- 2 111 722 723 0.61397560e-01 0.71306742e-01 -0.10299383e+02 0.13498000e+00
- 1 -211 0 0 -0.96430765e+00 0.39753794e+00 -0.59580417e+02 0.13957000e+00
- 2 111 724 725 0.81877672e-01 0.16871856e+00 -0.14817371e+02 0.13498000e+00
- 1 211 0 0 -0.15943268e+01 0.49077819e+00 -0.18158980e+03 0.13957000e+00
- 2 111 726 727 -0.11894165e+00 -0.15745230e+00 -0.59598822e+02 0.13498000e+00
- 1 130 0 0 -0.69740363e+00 0.43888877e+00 -0.26612245e+03 0.49767000e+00
- 1 321 0 0 -0.39102956e+00 -0.11345292e+00 -0.41742915e+02 0.49360000e+00
- 1 -211 0 0 -0.84101565e+00 -0.18988328e-01 -0.76761968e+02 0.13957000e+00
- 1 211 0 0 -0.20275495e+01 0.16279494e+01 -0.52110927e+03 0.13957000e+00
- 1 -211 0 0 -0.72929548e+00 0.67717402e+00 -0.16406767e+03 0.13957000e+00
- 2 111 728 729 -0.14312733e+00 0.19977267e+00 -0.68432820e+02 0.13498000e+00
- 1 2212 0 0 0.55518676e+00 -0.28875225e+00 -0.31564981e+03 0.93827000e+00
- 1 -211 0 0 0.33190992e-01 -0.92430344e-01 -0.28816713e+02 0.13957000e+00
- 2 311 730 730 0.31573354e+00 -0.84083056e-01 -0.16662418e+03 0.49767000e+00
- 2 111 731 732 0.14818017e+00 -0.41753487e+00 -0.33929613e+03 0.13498000e+00
- 1 -321 0 0 0.13964169e+00 -0.24849946e-01 -0.18875503e+03 0.49360000e+00
- 1 211 0 0 0.17442058e+00 -0.37540966e-01 -0.16715477e+02 0.13957000e+00
- 1 321 0 0 0.10077199e+01 -0.62349369e+00 -0.23974091e+03 0.49360000e+00
- 1 -211 0 0 0.53561353e-01 -0.46874925e+00 -0.10595713e+03 0.13957000e+00
- 1 -211 0 0 -0.14377750e+00 -0.31280043e-02 -0.25183757e+02 0.13957000e+00
- 1 211 0 0 0.76286444e+00 -0.41967758e+00 -0.12547871e+03 0.13957000e+00
- 1 130 0 0 -0.36249127e+00 -0.80157968e+00 -0.78363338e+01 0.49767000e+00
- 1 321 0 0 0.42347566e+00 0.27484265e+00 -0.18462285e+01 0.49360000e+00
- 1 -211 0 0 -0.11211935e+00 0.50239403e-01 -0.89588119e-01 0.13957000e+00
- 1 211 0 0 0.81198841e-01 0.32178608e-01 -0.22539099e+00 0.13957000e+00
- 2 111 733 734 -0.22078133e+00 -0.13718688e-01 -0.24130908e+01 0.13498000e+00
- 1 211 0 0 0.28618161e+00 0.22125389e+00 -0.21740003e+00 0.13957000e+00
- 1 -211 0 0 -0.97217326e-02 -0.22250505e+00 -0.80019710e+00 0.13957000e+00
- 1 22 0 0 0.35054104e+00 0.39709117e+00 -0.83045114e+00 0.00000000e+00
- 1 22 0 0 0.23110078e+00 0.25541944e+00 -0.77173796e+00 0.00000000e+00
- 1 -211 0 0 -0.50249889e-01 -0.12045113e+00 0.11758273e-01 0.13957000e+00
- 2 111 735 736 -0.12945541e+00 0.23164151e+00 -0.10229259e+01 0.13498000e+00
- 1 211 0 0 -0.19666779e+00 0.17803427e+00 -0.11657415e+01 0.13957000e+00
- 2 111 737 738 -0.35866988e+00 0.20359506e-01 -0.50971285e+00 0.13498000e+00
- 1 211 0 0 0.17042835e+00 -0.17266906e+00 -0.25319863e+00 0.13957000e+00
- 1 -211 0 0 0.52275475e-01 0.40300150e-01 -0.33089532e+00 0.13957000e+00
- 2 221 739 741 0.16542756e+00 0.63200834e-01 -0.85047609e+00 0.54745000e+00
- 1 -211 0 0 0.13233090e+00 -0.22816829e-01 -0.17189553e+00 0.13957000e+00
- 2 111 742 743 0.38858416e+00 0.26906432e+00 -0.38128559e+01 0.13498000e+00
- 1 211 0 0 -0.43105782e-01 -0.27856299e+00 -0.76919827e+00 0.13957000e+00
- 2 111 744 745 -0.23218944e-01 -0.89684367e-01 -0.46190937e+01 0.13498000e+00
- 1 -211 0 0 -0.73476366e+00 -0.51225654e+00 -0.82672311e+01 0.13957000e+00
- 1 211 0 0 0.84436192e-01 -0.25727806e+00 -0.13517401e+01 0.13957000e+00
- 1 -211 0 0 -0.12073566e+00 0.13994659e+00 -0.47506437e+01 0.13957000e+00
- 2 111 746 747 0.14851214e+00 -0.60655139e+00 -0.66163213e+01 0.13498000e+00
- 2 111 748 749 0.28248453e+00 0.32900626e+00 -0.24598606e+02 0.13498000e+00
- 2 111 750 751 0.54818522e-01 0.67289555e-01 -0.54174176e+01 0.13498000e+00
- 2 111 752 753 0.60785782e-01 0.11372346e+00 -0.17438645e+02 0.13498000e+00
- 1 211 0 0 0.20328340e+00 -0.92679157e-01 -0.39133841e+01 0.13957000e+00
- 2 111 754 755 -0.23891739e-01 -0.11682623e+00 -0.32806332e+02 0.13498000e+00
- 2 310 756 757 -0.11136130e+00 -0.17545799e+00 0.31104438e+02 0.49767000e+00
- 1 -321 0 0 0.10783611e+01 -0.61831792e+00 0.10804430e+03 0.49360000e+00
- 1 211 0 0 0.20605355e+00 0.13299488e+00 0.30632806e+02 0.13957000e+00
- 1 22 0 0 -0.10062368e+00 -0.69509372e+00 0.28807151e+02 0.00000000e+00
- 1 22 0 0 -0.64183272e-01 -0.11370366e+00 0.41669359e+01 0.00000000e+00
- 1 321 0 0 0.76978171e+00 0.85362161e+00 0.13187561e+03 0.49360000e+00
- 1 -211 0 0 -0.33509409e-01 0.38253163e+00 0.59455641e+02 0.13957000e+00
- 2 -311 758 758 -0.34743716e+00 -0.16088680e+00 0.71731911e+02 0.49767000e+00
- 1 -211 0 0 0.22370414e-01 0.11194674e+00 0.53310104e+01 0.13957000e+00
- 1 211 0 0 0.28368080e-01 0.13656153e-01 0.14663823e+02 0.13957000e+00
- 1 -211 0 0 0.32145748e+00 0.41565518e+00 0.56841697e+02 0.13957000e+00
- 2 111 759 760 0.13286200e+00 0.41366107e+00 0.11401954e+03 0.13498000e+00
- 1 211 0 0 0.10142511e+01 -0.53662605e-01 0.46549989e+02 0.13957000e+00
- 1 -211 0 0 -0.26594739e+00 0.16411357e+00 0.22635365e+02 0.13957000e+00
- 1 -211 0 0 -0.33752716e+00 0.52448417e-01 0.15158725e+02 0.13957000e+00
- 2 111 761 762 0.80295011e-01 0.22129408e+00 0.23392384e+01 0.13498000e+00
- 1 -321 0 0 0.40359974e+00 -0.67536566e-01 0.25764481e+02 0.49360000e+00
- 2 111 763 764 -0.19181362e+00 0.91750519e-01 0.10172510e+02 0.13498000e+00
- 1 22 0 0 -0.27414850e-01 0.69451528e-01 0.16176217e+01 0.00000000e+00
- 1 22 0 0 0.12889054e+00 0.12802939e+00 0.27362472e+01 0.00000000e+00
- 1 22 0 0 0.10673095e+01 -0.89882493e+00 0.17118973e+02 0.00000000e+00
- 2 111 765 766 0.69482345e+00 -0.19066035e+00 0.16327697e+02 0.13498000e+00
- 1 211 0 0 0.87341240e+00 -0.83583953e+00 0.23228765e+02 0.13957000e+00
- 1 -211 0 0 0.60511554e-01 -0.10392974e+00 0.12624404e+01 0.13957000e+00
- 1 22 0 0 -0.39607534e-01 0.24118535e-01 0.81249631e-01 0.00000000e+00
- 1 22 0 0 0.43204689e-01 -0.77103142e-01 0.37135953e+00 0.00000000e+00
- 1 211 0 0 0.44979948e+00 -0.21697111e+00 0.41599789e+01 0.13957000e+00
- 2 111 767 768 0.29253244e+00 0.42445528e+00 0.67363076e+01 0.13498000e+00
- 1 22 0 0 0.44414653e+00 -0.52565987e-01 0.36750424e+01 0.00000000e+00
- 2 113 769 770 0.54401400e+00 0.46848103e-02 0.56442004e+01 0.73892701e+00
- 1 -211 0 0 0.77450893e+00 0.13919556e-01 0.53142740e+01 0.13957000e+00
- 2 111 771 772 0.15741548e+01 -0.10827475e+01 0.11384149e+02 0.13498000e+00
- 1 -211 0 0 0.32268363e-01 -0.24461516e+00 0.18154186e+00 0.13957000e+00
- 2 111 773 774 0.20168691e+00 0.22648970e+00 0.16342507e+01 0.13498000e+00
- 1 211 0 0 0.11678245e+01 -0.41261425e+00 0.51530302e+01 0.13957000e+00
- 2 111 775 776 0.98344412e+00 -0.29818056e+00 0.24924846e+01 0.13498000e+00
- 1 211 0 0 0.24597109e+00 0.90510248e-01 0.78451476e+00 0.13957000e+00
- 2 111 777 778 0.10037049e+01 -0.10681804e+01 0.63614162e+01 0.13498000e+00
- 1 22 0 0 -0.24236306e-01 0.15413242e+00 0.19484012e+00 0.00000000e+00
- 1 22 0 0 -0.11930359e-01 0.12086457e+00 0.43607437e+00 0.00000000e+00
- 1 321 0 0 -0.20029758e+00 -0.78227628e+00 0.27924420e+01 0.49360000e+00
- 1 -211 0 0 0.25379828e+00 -0.72142023e+00 0.23883567e+01 0.13957000e+00
- 1 -321 0 0 -0.28942090e+00 -0.11895182e+01 0.24030093e+01 0.49360000e+00
- 1 211 0 0 -0.53442539e+00 -0.32250532e+00 0.12740490e+01 0.13957000e+00
- 2 311 779 779 -0.25201811e+01 -0.54655387e+01 0.67685067e+01 0.49767000e+00
- 2 111 780 781 -0.42777154e-01 -0.17441746e+00 0.37944333e+00 0.13498000e+00
- 2 310 782 783 -0.15655095e+01 -0.22869608e+01 0.33101915e+01 0.49767000e+00
- 1 -211 0 0 -0.17867582e+00 -0.14964536e+01 0.19174500e+01 0.13957000e+00
- 2 111 784 785 -0.97754983e-01 -0.75740748e+00 0.69142557e+00 0.13498000e+00
- 1 211 0 0 -0.22324925e+00 -0.94824892e-01 -0.19660110e-01 0.13957000e+00
- 2 111 786 787 -0.16792681e+00 -0.37303901e+00 0.11413920e+01 0.13498000e+00
- 1 321 0 0 -0.33256177e+00 -0.59451283e+00 0.67600992e+00 0.49360000e+00
- 1 -211 0 0 0.13093919e+00 -0.12790789e+00 0.60576796e+00 0.13957000e+00
- 1 -211 0 0 0.19260396e-01 -0.67411832e+00 0.40801124e+00 0.13957000e+00
- 2 111 788 789 -0.24769380e+00 -0.28036659e+00 0.53663814e+00 0.13498000e+00
- 1 211 0 0 0.69439651e+00 -0.10458235e+01 -0.14324719e+01 0.13957000e+00
- 1 -211 0 0 0.75311064e+00 -0.74505976e+00 -0.40656854e+00 0.13957000e+00
- 1 -211 0 0 0.16393291e+01 -0.14867283e+01 -0.72079505e+00 0.13957000e+00
- 2 111 790 791 -0.22437206e-01 -0.14361364e+00 -0.11327703e+00 0.13498000e+00
- 1 211 0 0 0.87399773e+00 -0.17781771e+01 -0.54857306e+00 0.13957000e+00
- 1 -211 0 0 0.59166264e+00 -0.98130704e+00 -0.10838066e+01 0.13957000e+00
- 1 -211 0 0 0.39745776e+00 -0.51604402e+00 -0.17514637e+00 0.13957000e+00
- 1 211 0 0 0.15491680e+01 -0.20099448e+01 -0.13383173e+01 0.13957000e+00
- 2 111 792 793 0.64607994e+00 -0.92775493e+00 -0.87218003e+00 0.13498000e+00
- 1 -211 0 0 0.63126289e+00 -0.49388928e+00 -0.50201117e+00 0.13957000e+00
- 1 211 0 0 -0.84378337e-03 -0.12478938e+00 -0.53287581e-01 0.13957000e+00
- 2 111 794 795 0.65761295e+00 -0.82494911e+00 -0.89086634e+00 0.13498000e+00
- 2 311 796 796 0.61433429e+00 -0.29056724e-02 -0.11463665e+01 0.49767000e+00
- 2 111 797 799 -0.70819725e-01 -0.11292400e+00 0.15833883e-01 0.13498000e+00
- 2 310 800 801 0.87474730e+00 0.52574907e+00 -0.70076102e+00 0.49767000e+00
- 1 22 0 0 0.92169647e+00 0.45036766e+00 -0.20187550e+01 0.00000000e+00
- 1 22 0 0 0.34304643e-01 0.31855823e-01 -0.16366721e+00 0.00000000e+00
- 1 2112 0 0 0.55171037e+00 0.50525154e+00 -0.94804797e+00 0.93957000e+00
- 2 111 802 803 0.36917826e-01 0.10130953e-01 -0.35433311e+00 0.13498000e+00
- 1 -211 0 0 0.57492803e+00 0.54070377e+00 -0.94165809e+00 0.13957000e+00
- 1 211 0 0 0.62995038e+00 0.31194836e+00 -0.19795332e+01 0.13957000e+00
- 1 -2112 0 0 0.46897671e+00 0.65425080e-01 -0.22790767e+01 0.93957000e+00
- 1 -211 0 0 0.24890651e+00 -0.12800218e+00 -0.32042539e+00 0.13957000e+00
- 1 2212 0 0 0.83737173e+00 -0.25622103e+00 -0.13984855e+02 0.93827000e+00
- 1 211 0 0 0.18200829e+00 -0.14882373e+00 -0.10859688e+01 0.13957000e+00
- 1 2112 0 0 0.15033267e+01 -0.10951370e+01 -0.16502857e+02 0.93957000e+00
- 2 111 804 805 0.12343547e+01 -0.78306941e+00 -0.94562832e+01 0.13498000e+00
- 1 22 0 0 0.40615866e+00 -0.15079466e+00 -0.26603680e+01 0.00000000e+00
- 1 22 0 0 0.12448380e+01 -0.61643323e+00 -0.16995781e+02 0.00000000e+00
- 1 -2212 0 0 0.12519060e+01 -0.13059038e+01 -0.30012298e+02 0.93827000e+00
- 2 111 806 807 0.77735899e+00 -0.92258806e+00 -0.15194342e+02 0.13498000e+00
- 1 2112 0 0 0.64525243e+00 -0.94784837e+00 -0.14836599e+02 0.93957000e+00
- 2 111 808 809 0.78172953e+00 -0.49885222e+00 -0.10526989e+02 0.13498000e+00
- 1 -2212 0 0 0.11896317e+01 -0.10483629e+01 -0.22928274e+02 0.93827000e+00
- 1 211 0 0 -0.32938599e-02 -0.18979700e+00 -0.45740720e+01 0.13957000e+00
- 2 311 810 810 0.23973281e+00 0.33085417e+00 -0.10551498e+01 0.49767000e+00
- 2 111 811 812 0.26091837e-01 -0.61213960e-01 -0.10447651e+01 0.13498000e+00
- 2 310 813 814 -0.53522134e+00 -0.77668193e+00 -0.45613506e+01 0.49767000e+00
- 1 130 0 0 0.63651542e+00 0.30929331e+00 -0.64585031e+01 0.49767000e+00
- 2 310 815 816 -0.20487109e+00 0.13069051e+00 -0.10759859e+01 0.49767000e+00
- 1 211 0 0 0.42183171e+00 -0.22481793e+00 -0.16891683e+01 0.13957000e+00
- 2 111 817 818 -0.38510664e+00 -0.52378227e-01 -0.36995828e+01 0.13498000e+00
- 1 -211 0 0 0.56689228e-01 0.22929186e-01 -0.83449823e+01 0.13957000e+00
- 2 111 819 820 -0.24394374e+00 -0.38657157e+00 -0.51596460e+01 0.13498000e+00
- 1 211 0 0 -0.64691690e+00 0.25927925e+00 -0.54034995e+01 0.13957000e+00
- 2 111 821 822 -0.14896320e+00 0.30432308e+00 -0.91036671e+01 0.13498000e+00
- 1 2112 0 0 0.30676285e+00 -0.65827314e-01 -0.10139572e+02 0.93957000e+00
- 1 -211 0 0 -0.25644184e-01 -0.23421041e+00 -0.57451148e+01 0.13957000e+00
- 1 211 0 0 -0.29894519e-01 0.71252261e-01 -0.78026984e+01 0.13957000e+00
- 1 -211 0 0 -0.56122155e-01 0.10259837e+00 -0.21843501e+02 0.13957000e+00
- 2 221 823 825 0.19259042e+00 0.46778725e-02 -0.29114387e+02 0.54745000e+00
- 1 22 0 0 0.11742717e+00 -0.11556695e+01 -0.12361363e+02 0.00000000e+00
- 1 22 0 0 0.17508743e-01 -0.27959023e+00 -0.37659900e+01 0.00000000e+00
- 1 22 0 0 -0.19360911e+00 -0.13083083e-01 -0.34275305e+01 0.00000000e+00
- 1 22 0 0 -0.35471212e-01 -0.65379288e-01 -0.74259646e+00 0.00000000e+00
- 1 22 0 0 0.14049460e-01 0.51489156e-02 -0.64764241e-01 0.00000000e+00
- 1 22 0 0 -0.22354005e+00 0.12028225e+00 -0.35039737e+01 0.00000000e+00
- 1 22 0 0 -0.29126111e+00 0.44993863e+00 -0.11984568e+02 0.00000000e+00
- 1 22 0 0 -0.35056432e+00 0.35955758e+00 -0.13293717e+02 0.00000000e+00
- 1 22 0 0 0.42212802e+00 0.11936171e+01 -0.27819990e+02 0.00000000e+00
- 1 22 0 0 0.17977511e+00 0.75274400e+00 -0.18542604e+02 0.00000000e+00
- 1 130 0 0 0.44284388e+00 0.10312786e+01 -0.28972351e+02 0.49767000e+00
- 1 22 0 0 0.78001062e+00 0.86123416e+00 -0.28766479e+02 0.00000000e+00
- 1 22 0 0 0.41749308e+00 0.61527760e+00 -0.17689114e+02 0.00000000e+00
- 1 22 0 0 -0.76878732e+00 -0.35953043e+00 -0.41924094e+01 0.00000000e+00
- 1 22 0 0 -0.33705548e+00 -0.17438437e+00 -0.23776432e+01 0.00000000e+00
- 1 22 0 0 -0.14555528e-01 -0.91725028e-01 -0.14764711e-01 0.00000000e+00
- 1 22 0 0 0.41903515e-01 0.13852687e-01 -0.77299509e-01 0.00000000e+00
- 1 22 0 0 -0.30499480e+00 -0.19061647e+00 -0.96073199e+00 0.00000000e+00
- 1 22 0 0 -0.46812753e+00 -0.39840565e+00 -0.12558418e+01 0.00000000e+00
- 1 22 0 0 -0.23835550e-01 0.14203201e-01 -0.10860323e+00 0.00000000e+00
- 1 22 0 0 0.73266179e-02 -0.21019156e+00 -0.10082108e+01 0.00000000e+00
- 1 22 0 0 0.27815895e-01 -0.19431739e+00 -0.21316590e+00 0.00000000e+00
- 1 22 0 0 -0.12008883e+00 -0.25554377e+00 -0.30818161e+00 0.00000000e+00
- 1 22 0 0 0.21564861e+00 -0.12486903e+00 -0.58124014e+00 0.00000000e+00
- 1 22 0 0 -0.21008822e-01 -0.11484756e-01 -0.48648815e-01 0.00000000e+00
- 1 211 0 0 -0.53202796e+00 -0.10406611e+00 -0.24099312e-02 0.13957000e+00
- 1 -211 0 0 0.41756420e-01 0.43146919e-02 0.68100824e-02 0.13957000e+00
- 2 310 826 827 -0.20155915e-01 -0.36796666e+00 0.52520678e+01 0.49767000e+00
- 1 22 0 0 0.12762567e+00 0.19874855e+00 0.37367291e+01 0.00000000e+00
- 1 22 0 0 0.68386826e-01 0.13898749e-01 0.55052504e+00 0.00000000e+00
- 2 310 828 829 0.14990333e+00 0.46028728e+00 0.24132529e+02 0.49767000e+00
- 1 22 0 0 -0.10247581e-01 0.15974853e-02 0.25827485e-01 0.00000000e+00
- 1 22 0 0 0.28518512e+00 0.52493761e-01 0.29296719e+01 0.00000000e+00
- 2 310 830 831 -0.59215896e+00 0.82378541e+00 0.52394672e+02 0.49767000e+00
- 1 22 0 0 0.24335770e-01 0.13207222e+00 0.23774126e+01 0.00000000e+00
- 1 22 0 0 -0.10486128e+00 0.92630880e-01 0.25118997e+01 0.00000000e+00
- 1 22 0 0 -0.84364922e-01 -0.14496924e+00 0.73599426e+01 0.00000000e+00
- 1 22 0 0 -0.13744825e+00 -0.32695162e-01 0.90819154e+01 0.00000000e+00
- 1 130 0 0 0.38355967e+00 -0.46473052e+00 0.12769193e+03 0.49767000e+00
- 1 22 0 0 0.73683374e-01 0.58363383e-01 0.21285079e+02 0.00000000e+00
- 1 22 0 0 0.33756874e+00 0.18031974e-01 0.48850494e+02 0.00000000e+00
- 1 22 0 0 0.75227576e-02 -0.47951751e-01 0.19385796e+01 0.00000000e+00
- 1 22 0 0 0.22033322e+00 -0.28129215e-01 0.14520047e+02 0.00000000e+00
- 1 22 0 0 0.58824337e+00 -0.11144278e+00 0.36856976e+02 0.00000000e+00
- 1 22 0 0 0.88249526e-01 -0.72073273e-01 0.59981628e+01 0.00000000e+00
- 1 22 0 0 -0.44433422e+00 0.18554925e+00 0.17439969e+02 0.00000000e+00
- 1 22 0 0 -0.10314715e+00 -0.15872428e-02 0.23963979e+01 0.00000000e+00
- 1 22 0 0 0.56061390e-01 0.55691961e-01 0.12663097e+01 0.00000000e+00
- 1 22 0 0 0.22135987e+00 -0.34635106e-01 0.56766253e+01 0.00000000e+00
- 1 22 0 0 0.13019216e+00 0.35148266e+00 0.38398341e+01 0.00000000e+00
- 1 22 0 0 0.91046384e-01 0.38544948e+00 0.29202270e+01 0.00000000e+00
- 1 22 0 0 -0.40300795e-02 0.16213222e+01 0.11422974e+02 0.00000000e+00
- 1 22 0 0 -0.36380481e-01 0.13241923e+00 0.10789485e+01 0.00000000e+00
- 1 -211 0 0 0.27021342e+00 0.96481440e+00 0.86291535e+01 0.13957000e+00
- 1 211 0 0 0.20764665e+00 0.24766399e+00 0.10781454e+01 0.13957000e+00
- 1 22 0 0 -0.69436733e-01 0.33573794e+00 0.32367925e+01 0.00000000e+00
- 1 22 0 0 0.18728855e-01 0.28719605e-01 0.12338645e+00 0.00000000e+00
- 1 22 0 0 -0.55296012e+00 0.18982938e+00 0.67508550e+01 0.00000000e+00
- 1 22 0 0 -0.38363241e-01 0.21267502e-02 0.10225207e+01 0.00000000e+00
- 1 22 0 0 -0.88403258e+00 0.50560758e+00 0.41624135e+01 0.00000000e+00
- 1 22 0 0 -0.44135939e+00 0.36338732e+00 0.22146854e+01 0.00000000e+00
- 1 22 0 0 0.19030076e-01 0.12533057e-01 0.24463209e-01 0.00000000e+00
- 1 22 0 0 -0.11691380e+00 0.21368259e+00 0.95198922e+00 0.00000000e+00
- 1 22 0 0 -0.10593618e+00 0.22234134e+00 0.12655116e+00 0.00000000e+00
- 1 22 0 0 -0.90859097e-01 0.70118367e+00 0.42461217e+00 0.00000000e+00
- 1 22 0 0 -0.99179421e-01 0.36107313e+00 0.38436983e+00 0.00000000e+00
- 1 22 0 0 0.69966355e-02 0.62645048e+00 0.63049022e+00 0.00000000e+00
- 1 22 0 0 -0.25097205e+00 0.46727492e+00 0.63802846e+00 0.00000000e+00
- 1 22 0 0 0.15636484e-01 0.12631617e-01 0.16168008e-01 0.00000000e+00
- 1 22 0 0 -0.11374842e+00 0.80662116e-01 0.30410801e-01 0.00000000e+00
- 1 22 0 0 -0.25722662e+00 0.36020516e+00 0.30462764e+00 0.00000000e+00
- 2 310 832 833 -0.13511412e+01 0.44106694e+00 0.17751073e+00 0.49767000e+00
- 1 22 0 0 -0.20638552e+00 0.24268352e+00 -0.14232388e-01 0.00000000e+00
- 1 22 0 0 -0.56141037e+00 0.36174364e+00 -0.32348998e-01 0.00000000e+00
- 1 22 0 0 -0.14598217e+00 -0.40936489e-01 -0.29313945e+00 0.00000000e+00
- 1 22 0 0 -0.11865174e+00 0.47361338e-01 -0.52754841e+00 0.00000000e+00
- 1 22 0 0 0.12452592e+00 0.51625913e-01 -0.32028211e+00 0.00000000e+00
- 1 22 0 0 -0.16224460e-01 0.59625057e-01 -0.29069752e+00 0.00000000e+00
- 1 22 0 0 0.21209239e-01 0.27178635e-01 -0.22386115e+00 0.00000000e+00
- 1 22 0 0 -0.18341379e+00 0.21830468e+00 -0.10965135e+01 0.00000000e+00
- 1 130 0 0 -0.64538428e+00 -0.72964595e-01 -0.11645774e+02 0.49767000e+00
- 1 22 0 0 -0.49084542e-01 0.90575189e-01 -0.83090080e+00 0.00000000e+00
- 1 22 0 0 -0.31380895e+00 0.14646867e+00 -0.39381746e+01 0.00000000e+00
- 1 22 0 0 0.48818408e-01 0.75672898e-01 -0.31138228e+01 0.00000000e+00
- 1 22 0 0 0.12579152e-01 -0.43661566e-02 -0.71855604e+01 0.00000000e+00
- 1 22 0 0 0.32876090e-01 0.10804312e+00 -0.12459798e+02 0.00000000e+00
- 1 22 0 0 0.49001583e-01 0.60675436e-01 -0.23575732e+01 0.00000000e+00
- 1 22 0 0 -0.97776025e-01 -0.15133118e+00 -0.34545374e+02 0.00000000e+00
- 1 22 0 0 -0.21165628e-01 -0.61211186e-02 -0.25053448e+02 0.00000000e+00
- 1 22 0 0 -0.15032363e+00 0.20868805e+00 -0.58233461e+02 0.00000000e+00
- 1 22 0 0 0.71963009e-02 -0.89153800e-02 -0.10199359e+02 0.00000000e+00
- 2 310 834 835 0.31573354e+00 -0.84083056e-01 -0.16662418e+03 0.49767000e+00
- 1 22 0 0 0.38387578e-01 -0.28929214e+00 -0.23144982e+03 0.00000000e+00
- 1 22 0 0 0.10979259e+00 -0.12824274e+00 -0.10784630e+03 0.00000000e+00
- 1 22 0 0 -0.64133546e-01 0.55882241e-01 -0.97210435e+00 0.00000000e+00
- 1 22 0 0 -0.15664779e+00 -0.69600929e-01 -0.14409864e+01 0.00000000e+00
- 1 22 0 0 -0.13986825e+00 0.14312152e+00 -0.57963958e+00 0.00000000e+00
- 1 22 0 0 0.10412833e-01 0.88519990e-01 -0.44328636e+00 0.00000000e+00
- 1 22 0 0 -0.18455899e+00 0.51320774e-01 -0.35353803e+00 0.00000000e+00
- 1 22 0 0 -0.17411089e+00 -0.30961268e-01 -0.15617482e+00 0.00000000e+00
- 2 111 836 837 0.75201117e-01 -0.82198070e-01 -0.22263143e+00 0.13498000e+00
- 2 111 838 839 0.12613365e+00 -0.87887243e-02 -0.35749776e+00 0.13498000e+00
- 2 111 840 841 -0.35907214e-01 0.15418763e+00 -0.27034690e+00 0.13498000e+00
- 1 22 0 0 0.33330101e+00 0.23086449e+00 -0.35508831e+01 0.00000000e+00
- 1 22 0 0 0.55283143e-01 0.38199822e-01 -0.26197279e+00 0.00000000e+00
- 1 22 0 0 0.36338195e-02 0.35484741e-01 -0.10408469e+01 0.00000000e+00
- 1 22 0 0 -0.26852763e-01 -0.12516911e+00 -0.35782468e+01 0.00000000e+00
- 1 22 0 0 0.13918198e+00 -0.31345165e+00 -0.32614063e+01 0.00000000e+00
- 1 22 0 0 0.93301654e-02 -0.29309974e+00 -0.33549150e+01 0.00000000e+00
- 1 22 0 0 0.25553124e+00 0.20632784e+00 -0.17532562e+02 0.00000000e+00
- 1 22 0 0 0.26953283e-01 0.12267842e+00 -0.70660438e+01 0.00000000e+00
- 1 22 0 0 0.43226463e-03 -0.36324138e-01 -0.71675656e+00 0.00000000e+00
- 1 22 0 0 0.54386258e-01 0.10361369e+00 -0.47006611e+01 0.00000000e+00
- 1 22 0 0 0.41053323e-01 -0.17203420e-01 -0.72830754e+01 0.00000000e+00
- 1 22 0 0 0.19732458e-01 0.13092688e+00 -0.10155569e+02 0.00000000e+00
- 1 22 0 0 0.41098346e-01 -0.18697754e-01 -0.16842262e+02 0.00000000e+00
- 1 22 0 0 -0.64990086e-01 -0.98128478e-01 -0.15964070e+02 0.00000000e+00
- 1 211 0 0 -0.26185592e+00 -0.14958341e+00 0.19512311e+02 0.13957000e+00
- 1 -211 0 0 0.15049462e+00 -0.25874574e-01 0.11592127e+02 0.13957000e+00
- 2 310 842 843 -0.34743716e+00 -0.16088680e+00 0.71731911e+02 0.49767000e+00
- 1 22 0 0 0.11913218e+00 0.32863661e+00 0.75238279e+02 0.00000000e+00
- 1 22 0 0 0.13729823e-01 0.85024455e-01 0.38781261e+02 0.00000000e+00
- 1 22 0 0 0.28504926e-01 0.17547866e+00 0.20431676e+01 0.00000000e+00
- 1 22 0 0 0.51790085e-01 0.45815418e-01 0.29607084e+00 0.00000000e+00
- 1 22 0 0 -0.19473824e+00 0.95307863e-01 0.75479790e+01 0.00000000e+00
- 1 22 0 0 0.29246152e-02 -0.35573439e-02 0.26245307e+01 0.00000000e+00
- 1 22 0 0 0.69457072e+00 -0.18307726e+00 0.15722482e+02 0.00000000e+00
- 1 22 0 0 0.25272690e-03 -0.75830883e-02 0.60521492e+00 0.00000000e+00
- 1 22 0 0 0.11852850e-01 0.48835622e-01 0.12613647e+01 0.00000000e+00
- 1 22 0 0 0.28067959e+00 0.37561966e+00 0.54749429e+01 0.00000000e+00
- 1 -211 0 0 0.38084068e+00 0.27087480e+00 0.20220672e+01 0.13957000e+00
- 1 211 0 0 0.16317331e+00 -0.26618999e+00 0.36221332e+01 0.13957000e+00
- 1 22 0 0 0.13916244e+01 -0.96250737e+00 0.10318763e+02 0.00000000e+00
- 1 22 0 0 0.18253036e+00 -0.12024015e+00 0.10653857e+01 0.00000000e+00
- 1 22 0 0 -0.15212406e-02 0.61252175e-01 0.48801906e+00 0.00000000e+00
- 1 22 0 0 0.20320815e+00 0.16523752e+00 0.11462316e+01 0.00000000e+00
- 1 22 0 0 0.10832951e-01 0.36064787e-02 0.79701550e-01 0.00000000e+00
- 1 22 0 0 0.97261117e+00 -0.30178704e+00 0.24127830e+01 0.00000000e+00
- 1 22 0 0 0.98773700e-01 -0.17172172e+00 0.83564470e+00 0.00000000e+00
- 1 22 0 0 0.90493120e+00 -0.89645866e+00 0.55257715e+01 0.00000000e+00
- 2 310 844 845 -0.25201811e+01 -0.54655387e+01 0.67685067e+01 0.49767000e+00
- 1 22 0 0 -0.27180377e-01 0.14409125e-01 0.27517730e-01 0.00000000e+00
- 1 22 0 0 -0.15596777e-01 -0.18882659e+00 0.35192560e+00 0.00000000e+00
- 1 -211 0 0 -0.11430267e+01 -0.18341564e+01 0.23601744e+01 0.13957000e+00
- 1 211 0 0 -0.42248276e+00 -0.45280442e+00 0.95001718e+00 0.13957000e+00
- 1 22 0 0 -0.28411594e-01 -0.46523839e-01 0.18209836e-01 0.00000000e+00
- 1 22 0 0 -0.69343389e-01 -0.71088364e+00 0.67321573e+00 0.00000000e+00
- 1 22 0 0 -0.10555320e+00 -0.10873757e+00 0.52467463e+00 0.00000000e+00
- 1 22 0 0 -0.62373604e-01 -0.26430143e+00 0.61671740e+00 0.00000000e+00
- 1 22 0 0 -0.87567639e-01 -0.37398657e-01 0.20949225e+00 0.00000000e+00
- 1 22 0 0 -0.16012616e+00 -0.24296794e+00 0.32714589e+00 0.00000000e+00
- 1 22 0 0 -0.22576680e-02 -0.16725043e+00 -0.96647964e-01 0.00000000e+00
- 1 22 0 0 -0.20179538e-01 0.23636783e-01 -0.16629067e-01 0.00000000e+00
- 1 22 0 0 0.63859132e+00 -0.88256860e+00 -0.81241419e+00 0.00000000e+00
- 1 22 0 0 0.74886142e-02 -0.45186336e-01 -0.59765844e-01 0.00000000e+00
- 1 22 0 0 0.32816864e-01 -0.10020427e+00 -0.69025345e-01 0.00000000e+00
- 1 22 0 0 0.62479608e+00 -0.72474484e+00 -0.82184099e+00 0.00000000e+00
- 1 130 0 0 0.61433429e+00 -0.29056724e-02 -0.11463665e+01 0.49767000e+00
- 1 22 0 0 -0.10083139e-01 -0.11778282e+00 0.39597415e-01 0.00000000e+00
- 1 11 0 0 -0.47531002e-03 0.39918154e-03 -0.46592329e-03 0.51000000e-03
- 1 -11 0 0 -0.60261276e-01 0.44596290e-02 -0.23297608e-01 0.51000000e-03
- 1 211 0 0 0.91336188e-01 0.13160169e+00 -0.28042415e+00 0.13957000e+00
- 1 -211 0 0 0.78341111e+00 0.39414738e+00 -0.42033688e+00 0.13957000e+00
- 1 22 0 0 -0.16943856e-01 -0.56979799e-02 0.40641234e-02 0.00000000e+00
- 1 22 0 0 0.53861682e-01 0.15828933e-01 -0.35839724e+00 0.00000000e+00
- 1 22 0 0 0.11584307e+01 -0.74265682e+00 -0.90716733e+01 0.00000000e+00
- 1 22 0 0 0.75923925e-01 -0.40412590e-01 -0.38460986e+00 0.00000000e+00
- 1 22 0 0 0.35495172e+00 -0.42972492e+00 -0.61843213e+01 0.00000000e+00
- 1 22 0 0 0.42240726e+00 -0.49286314e+00 -0.90100207e+01 0.00000000e+00
- 1 22 0 0 0.69517639e-01 -0.83709723e-01 -0.94922435e+00 0.00000000e+00
- 1 22 0 0 0.71221189e+00 -0.41514249e+00 -0.95777651e+01 0.00000000e+00
- 2 310 846 847 0.23973281e+00 0.33085417e+00 -0.10551498e+01 0.49767000e+00
- 1 22 0 0 0.47132270e-01 -0.96722727e-01 -0.68075824e+00 0.00000000e+00
- 1 22 0 0 -0.21040432e-01 0.35508768e-01 -0.36400691e+00 0.00000000e+00
- 1 -211 0 0 -0.53677007e+00 -0.72801350e+00 -0.37857460e+01 0.13957000e+00
- 1 211 0 0 0.15487254e-02 -0.48668429e-01 -0.77560457e+00 0.13957000e+00
- 2 111 848 849 -0.14045818e+00 0.27490379e+00 -0.55494951e+00 0.13498000e+00
- 2 111 850 851 -0.64412903e-01 -0.14421327e+00 -0.52103639e+00 0.13498000e+00
- 1 22 0 0 -0.12676395e+00 0.31035405e-01 -0.85809420e+00 0.00000000e+00
- 1 22 0 0 -0.25834269e+00 -0.83413632e-01 -0.28414886e+01 0.00000000e+00
- 1 22 0 0 -0.17494182e+00 -0.15504147e+00 -0.23486773e+01 0.00000000e+00
- 1 22 0 0 -0.69001924e-01 -0.23153010e+00 -0.28109687e+01 0.00000000e+00
- 1 22 0 0 -0.10258385e+00 0.68757024e-01 -0.27604119e+01 0.00000000e+00
- 1 22 0 0 -0.46379350e-01 0.23556606e+00 -0.63432551e+01 0.00000000e+00
- 1 211 0 0 -0.45251718e-02 0.40367404e-01 -0.56702856e+01 0.13957000e+00
- 1 -211 0 0 0.13866497e+00 -0.72327798e-01 -0.19318085e+02 0.13957000e+00
- 2 111 852 853 0.58450625e-01 0.36638267e-01 -0.41260171e+01 0.13498000e+00
- 1 211 0 0 0.75928234e-01 0.11974030e-01 0.72476674e+00 0.13957000e+00
- 1 -211 0 0 -0.96084149e-01 -0.37994069e+00 0.45273010e+01 0.13957000e+00
- 1 211 0 0 0.13769086e+00 0.18932478e+00 0.18287117e+02 0.13957000e+00
- 1 -211 0 0 0.12212469e-01 0.27096250e+00 0.58454129e+01 0.13957000e+00
- 1 -211 0 0 -0.47699383e+00 0.65149687e+00 0.31371389e+02 0.13957000e+00
- 1 211 0 0 -0.11516513e+00 0.17228854e+00 0.21023283e+02 0.13957000e+00
- 2 111 854 855 -0.11036712e+00 0.89912385e-01 -0.43893911e-01 0.13498000e+00
- 2 111 856 857 -0.12407741e+01 0.35115455e+00 0.22140464e+00 0.13498000e+00
- 1 -211 0 0 0.21762034e+00 -0.48914476e-01 -0.14835089e+03 0.13957000e+00
- 1 211 0 0 0.98113202e-01 -0.35168579e-01 -0.18273287e+02 0.13957000e+00
- 1 22 0 0 0.78270559e-01 -0.11614576e+00 -0.16712918e+00 0.00000000e+00
- 1 22 0 0 -0.30694429e-02 0.33947686e-01 -0.55502243e-01 0.00000000e+00
- 1 22 0 0 0.81078242e-01 0.49658747e-01 -0.11600683e+00 0.00000000e+00
- 1 22 0 0 0.45055411e-01 -0.58447471e-01 -0.24149093e+00 0.00000000e+00
- 1 22 0 0 -0.11390090e-01 0.16115505e+00 -0.27114896e+00 0.00000000e+00
- 1 22 0 0 -0.24517124e-01 -0.69674189e-02 0.80205402e-03 0.00000000e+00
- 2 111 858 859 -0.29306796e+00 -0.28935184e+00 0.48335940e+02 0.13498000e+00
- 2 111 860 861 -0.54369200e-01 0.12846504e+00 0.23395970e+02 0.13498000e+00
- 1 211 0 0 -0.12607469e+01 -0.29500888e+01 0.38819608e+01 0.13957000e+00
- 1 -211 0 0 -0.12594343e+01 -0.25154499e+01 0.28865458e+01 0.13957000e+00
- 2 111 862 863 0.70555203e-01 0.17666642e+00 -0.89708213e+00 0.13498000e+00
- 2 111 864 865 0.16917760e+00 0.15418774e+00 -0.15806769e+00 0.13498000e+00
- 1 22 0 0 -0.28332508e-01 0.13858708e+00 -0.14343620e+00 0.00000000e+00
- 1 22 0 0 -0.11212567e+00 0.13631671e+00 -0.41151331e+00 0.00000000e+00
- 1 22 0 0 -0.56271088e-01 -0.17063818e+00 -0.43835618e+00 0.00000000e+00
- 1 22 0 0 -0.81418153e-02 0.26424907e-01 -0.82680208e-01 0.00000000e+00
- 1 22 0 0 0.40472526e-02 0.79206026e-01 -0.17783877e+01 0.00000000e+00
- 1 22 0 0 0.54403373e-01 -0.42567760e-01 -0.23476295e+01 0.00000000e+00
- 1 22 0 0 -0.71694219e-01 0.47846474e-01 0.43547270e-01 0.00000000e+00
- 1 22 0 0 -0.38672900e-01 0.42065912e-01 -0.87441181e-01 0.00000000e+00
- 1 22 0 0 -0.76637707e+00 0.27732499e+00 0.10938944e+00 0.00000000e+00
- 1 22 0 0 -0.47439702e+00 0.73829565e-01 0.11201519e+00 0.00000000e+00
- 1 22 0 0 -0.22614353e+00 -0.23941344e+00 0.31167762e+02 0.00000000e+00
- 1 22 0 0 -0.66924429e-01 -0.49938398e-01 0.17168179e+02 0.00000000e+00
- 1 22 0 0 -0.50152089e-01 0.65999756e-01 0.49133210e+01 0.00000000e+00
- 1 22 0 0 -0.42171112e-02 0.62465282e-01 0.18482649e+02 0.00000000e+00
- 1 22 0 0 -0.19860267e-01 0.30518041e-01 -0.46076383e-01 0.00000000e+00
- 1 22 0 0 0.90415471e-01 0.14614838e+00 -0.85100575e+00 0.00000000e+00
- 1 22 0 0 0.88875456e-01 0.16018044e+00 -0.91768849e-01 0.00000000e+00
- 1 22 0 0 0.80302147e-01 -0.59926996e-02 -0.66298837e-01 0.00000000e+00
- 264
- 2 25 2 3 0.45730941e+02 -0.17952466e+02 -0.26440469e+03 0.12499944e+03
- 2 23 4 6 0.40898440e+02 -0.38900444e+02 -0.86853045e+02 0.26004748e+02
- 2 23 7 9 0.48325011e+01 0.20947978e+02 -0.17755165e+03 0.63431040e+02
- 1 -13 0 0 0.28622773e+02 -0.26270618e+02 -0.36133859e+02 0.10566000e+00
- 1 13 0 0 0.10235744e+02 -0.11366526e+02 -0.42092913e+02 0.10566000e+00
- 1 22 0 0 0.20399233e+01 -0.12632998e+01 -0.86262732e+01 0.00000000e+00
- 1 11 0 0 -0.15633860e+02 -0.45644500e+01 -0.10136069e+02 0.51000000e-03
- 1 -11 0 0 0.20456263e+02 0.25499650e+02 -0.16733270e+03 0.51000000e-03
- 1 22 0 0 0.10098102e-01 0.12777932e-01 -0.82884079e-01 0.00000000e+00
- 2 2 38 38 -0.10169167e+01 -0.15795353e+01 0.99693478e+00 0.33000000e+00
- 2 21 38 38 -0.47979263e+00 0.11688241e+00 -0.41716486e+00 0.00000000e+00
- 2 21 38 38 0.52064478e-01 0.17844970e+00 0.32852504e-01 0.00000000e+00
- 2 21 38 38 -0.69581489e+00 0.56807286e+00 0.98685295e+01 0.00000000e+00
- 2 21 38 38 -0.58391950e+00 -0.11779633e+01 0.34914500e+02 0.00000000e+00
- 2 21 38 38 0.22581360e+01 0.42809251e+00 0.35679459e+02 0.00000000e+00
- 2 21 38 38 0.84542323e+00 -0.43893687e+00 0.71961789e+01 0.00000000e+00
- 2 21 38 38 -0.36735821e+00 0.18222091e+00 0.22878111e+00 0.00000000e+00
- 2 2103 38 38 -0.63666953e+00 0.52011546e+00 0.46552083e+04 0.77133000e+00
- 2 -2 57 57 -0.10500441e+02 -0.51799211e+00 -0.38513189e+00 0.33000000e+00
- 2 21 57 57 -0.14690397e+02 0.32246581e+00 -0.42708463e+00 0.00000000e+00
- 2 21 57 57 -0.25145036e+02 0.31442377e-01 -0.27415906e+01 0.00000000e+00
- 2 21 57 57 0.31953172e+01 -0.69623777e+01 0.47233896e+01 0.00000000e+00
- 2 21 57 57 -0.44446722e+00 0.27840627e-01 -0.37654122e+01 0.00000000e+00
- 2 21 57 57 0.53254916e+00 -0.29804571e+00 -0.30236120e+01 0.00000000e+00
- 2 21 57 57 0.55494094e+00 -0.35799203e+00 -0.73666801e+02 0.00000000e+00
- 2 21 57 57 -0.20310121e+00 0.91109362e-01 -0.26936642e+01 0.00000000e+00
- 2 21 57 57 -0.49094602e+00 -0.66375297e-01 -0.97026714e+01 0.00000000e+00
- 2 2 57 57 0.36687796e+01 -0.14045370e+00 -0.13467812e+04 0.33000000e+00
- 2 2 77 77 -0.25014288e+00 0.23983675e+00 0.17451473e+04 0.33000000e+00
- 2 21 77 77 -0.38718508e+00 -0.15176201e+01 0.72276661e+02 0.00000000e+00
- 2 21 77 77 -0.31953172e+01 0.69623777e+01 0.38965183e+03 0.00000000e+00
- 2 21 77 77 0.12506126e+01 0.65185016e+01 -0.45636904e+02 0.00000000e+00
- 2 21 77 77 0.94346690e+00 0.32403157e+01 -0.12659443e+02 0.00000000e+00
- 2 21 77 77 0.17091245e+01 0.10679932e+02 -0.50261801e+02 0.00000000e+00
- 2 21 77 77 -0.56539202e+00 0.78384956e+00 -0.43860539e+01 0.00000000e+00
- 2 21 77 77 -0.11426141e+01 -0.56639951e+00 -0.19415141e+01 0.00000000e+00
- 2 2101 77 77 0.54155157e-01 0.68465199e+00 -0.51330316e+04 0.57933000e+00
- 2 92 39 56 -0.62484772e+00 -0.12026016e+01 0.47437084e+04 0.16352735e+03
- 1 211 0 0 -0.41049807e+00 -0.41324229e+00 0.44549417e+00 0.13957000e+00
- 2 223 107 109 -0.76037648e+00 -0.68395242e+00 0.42222264e+00 0.78076609e+00
- 2 111 110 111 0.19451472e+00 -0.27759744e+00 -0.29414016e+00 0.13498000e+00
- 2 -213 112 113 -0.66702129e+00 0.55611877e+00 0.51528788e+01 0.69187159e+00
- 2 213 114 115 -0.26300496e+00 -0.18785935e+00 0.59084316e+00 0.51500968e+00
- 1 -211 0 0 -0.13079712e+00 -0.63654258e+00 0.52952011e+01 0.13957000e+00
- 1 2212 0 0 0.55926008e+00 0.26630744e+00 0.19545373e+02 0.93827000e+00
- 2 111 116 117 0.23445207e-01 0.29227326e+00 0.37874794e+01 0.13498000e+00
- 1 -2212 0 0 0.51398956e+00 -0.70045119e+00 0.28226458e+02 0.93827000e+00
- 1 211 0 0 0.97658896e-02 -0.12405157e+00 0.67243345e+00 0.13957000e+00
- 2 311 118 118 -0.11886557e-02 0.21910389e+00 0.48749369e+01 0.49767000e+00
- 2 -323 119 120 -0.38430133e+00 0.32077740e+00 0.67144774e+01 0.87354419e+00
- 2 223 121 123 0.17161462e+01 0.17596125e+00 0.22615664e+02 0.78366387e+00
- 2 213 124 125 -0.61431175e-02 -0.25357330e+00 0.36620081e+01 0.88175139e+00
- 2 223 126 128 -0.16613305e+00 -0.15755706e+00 0.84962262e+02 0.78003231e+00
- 2 -213 129 130 -0.59584345e+00 0.16090675e+00 0.31417576e+03 0.85204975e+00
- 1 2212 0 0 0.31276290e+00 0.79747656e-01 0.34826911e+03 0.93827000e+00
- 2 223 131 133 -0.56942477e+00 0.16102916e+00 0.38945899e+04 0.78576530e+00
- 2 92 58 76 -0.43522801e+02 -0.78703784e+01 -0.14384638e+04 0.42032806e+03
- 1 -211 0 0 -0.10609315e+02 -0.46617844e+00 -0.10510541e+00 0.13957000e+00
- 1 211 0 0 -0.14722953e+02 0.23564381e+00 -0.12661083e+01 0.13957000e+00
- 1 -321 0 0 -0.50789678e+01 -0.80376766e-01 -0.34307711e+00 0.49360000e+00
- 2 -3312 134 135 -0.14217638e+02 -0.14259180e+00 -0.14346111e+01 0.13213000e+01
- 2 3122 136 137 -0.56357482e+01 -0.41644623e+00 -0.67311159e+00 0.11156800e+01
- 2 111 138 139 0.40191791e+00 -0.41119598e+00 0.10488586e+01 0.13498000e+00
- 2 223 140 142 0.66175068e+00 -0.12831416e+01 0.95264366e+00 0.78020476e+00
- 2 113 143 144 0.17399890e+01 -0.43870699e+01 0.28242992e+01 0.65248180e+00
- 2 113 145 146 0.13339850e+00 0.49724917e-01 -0.22367822e+01 0.80118535e+00
- 1 -211 0 0 0.64681523e+00 -0.62192768e+00 -0.17128306e+01 0.13957000e+00
- 2 113 147 148 -0.21611301e-01 -0.15742445e+00 -0.12612017e+02 0.76478804e+00
- 2 221 149 150 0.15143887e+00 -0.19086313e+00 -0.13227625e+02 0.54745000e+00
- 2 223 151 153 -0.35371165e+00 0.65088159e+00 -0.17799643e+02 0.80203920e+00
- 2 221 154 156 -0.18009506e+00 -0.57785486e-01 -0.11394538e+02 0.54745000e+00
- 2 213 157 158 -0.10382103e+00 -0.51612719e+00 -0.21913573e+02 0.85865137e+00
- 2 -213 159 160 0.58982669e+00 0.24978432e+00 -0.52996837e+02 0.75886824e+00
- 1 211 0 0 -0.30276944e+00 -0.31796027e+00 -0.53208796e+02 0.13957000e+00
- 2 -213 161 162 0.13178521e+01 0.20482610e+00 -0.37473159e+03 0.73424673e+00
- 2 213 163 164 0.20608402e+01 -0.21215020e+00 -0.87763337e+03 0.90871741e+00
- 2 92 78 106 -0.15832922e+01 0.27025446e+02 -0.30408416e+04 0.68094800e+04
- 1 211 0 0 -0.33104302e+00 -0.33334497e-01 0.94752506e+02 0.13957000e+00
- 2 313 165 166 0.19504031e+00 0.62395197e+00 0.14945529e+04 0.95212637e+00
- 2 -313 167 168 -0.16344888e+00 -0.12465728e+01 0.11609661e+03 0.76129160e+00
- 2 113 169 170 0.10510862e+00 -0.18742812e+00 0.90161884e+02 0.75894399e+00
- 2 331 171 173 -0.14133309e+01 0.13008247e+01 0.10922367e+03 0.95789641e+00
- 2 113 174 175 -0.19450906e+00 0.51196122e+00 0.61474447e+02 0.74140229e+00
- 2 2114 176 177 -0.11433341e+01 0.26499930e+01 0.12678652e+03 0.13222919e+01
- 2 111 178 179 -0.31473810e+00 0.16130160e+01 0.75862226e+02 0.13498000e+00
- 1 -2212 0 0 -0.20006791e+00 0.74688876e+00 0.30065389e+02 0.93827000e+00
- 1 2212 0 0 -0.56825704e+00 -0.39362626e+00 0.55773565e+01 0.93827000e+00
- 1 211 0 0 0.32293658e+00 0.25163286e+00 0.25900401e+00 0.13957000e+00
- 2 -2224 180 181 -0.18307290e+00 -0.49810953e+00 0.78000139e+00 0.11271304e+01
- 2 113 182 183 0.87802658e-01 0.49775853e+00 0.29152223e+00 0.44516824e+00
- 1 211 0 0 -0.46207237e+00 0.39160791e+00 -0.86066577e+00 0.13957000e+00
- 2 1114 184 185 0.35453633e+00 0.30355830e-02 -0.18455516e+01 0.13501330e+01
- 2 221 186 188 0.17217936e+00 0.45586693e+00 -0.11085634e+01 0.54745000e+00
- 2 -2114 189 190 0.85333526e+00 0.27231720e+01 -0.20293381e+02 0.12852550e+01
- 2 113 191 192 0.67606133e+00 0.28224200e+01 -0.12463388e+02 0.96532708e+00
- 2 2214 193 194 0.11374853e+01 0.67629767e+01 -0.40255484e+02 0.13165537e+01
- 2 -311 195 195 0.43506131e+00 0.28016589e+01 -0.99266222e+01 0.49767000e+00
- 2 -3212 196 197 -0.61960260e+00 0.13134436e+01 -0.10444456e+02 0.11925500e+01
- 2 311 198 198 0.54856944e+00 0.15086000e+01 -0.46355535e+01 0.49767000e+00
- 1 -321 0 0 -0.37220417e+00 0.27863368e+00 -0.50098232e+01 0.49360000e+00
- 2 113 199 200 0.35068670e+00 0.12981552e+01 -0.74789704e+01 0.89715377e+00
- 2 213 201 202 -0.28775496e+00 0.64952743e+00 -0.41605797e+01 0.79022354e+00
- 2 221 203 204 -0.58544620e+00 -0.70788751e+00 -0.71289704e+01 0.54745000e+00
- 2 -213 205 206 0.29472787e+00 0.35480825e+00 -0.46192033e+02 0.74626573e+00
- 2 2224 207 208 -0.83363301e+00 -0.21899390e+00 -0.32159870e+04 0.13031791e+01
- 1 -211 0 0 0.55569203e+00 0.75146549e+00 -0.18589346e+04 0.13957000e+00
- 1 -211 0 0 -0.14055819e+00 0.96416181e-01 0.15249209e+00 0.13957000e+00
- 1 211 0 0 -0.41804442e+00 -0.37959901e+00 0.18271295e+00 0.13957000e+00
- 2 111 209 210 -0.20177387e+00 -0.40076959e+00 0.87017598e-01 0.13498000e+00
- 1 22 0 0 0.12088925e+00 -0.23931990e+00 -0.27379519e+00 0.00000000e+00
- 1 22 0 0 0.73625466e-01 -0.38277538e-01 -0.20344969e-01 0.00000000e+00
- 1 -211 0 0 -0.33103144e+00 0.54307021e+00 0.21485038e+01 0.13957000e+00
- 2 111 211 212 -0.33598985e+00 0.13048558e-01 0.30043750e+01 0.13498000e+00
- 1 211 0 0 -0.28972651e+00 -0.12393922e+00 0.13977020e+00 0.13957000e+00
- 2 111 213 214 0.26721556e-01 -0.63920132e-01 0.45107296e+00 0.13498000e+00
- 1 22 0 0 -0.10572635e-01 0.25875657e+00 0.35189623e+01 0.00000000e+00
- 1 22 0 0 0.34017842e-01 0.33516688e-01 0.26851709e+00 0.00000000e+00
- 1 130 0 0 -0.11886557e-02 0.21910389e+00 0.48749369e+01 0.49767000e+00
- 1 -321 0 0 -0.36772428e+00 0.29326258e-01 0.54531335e+01 0.49360000e+00
- 2 111 215 216 -0.16577042e-01 0.29145114e+00 0.12613439e+01 0.13498000e+00
- 1 -211 0 0 0.70061660e+00 -0.50457859e-01 0.72535197e+01 0.13957000e+00
- 1 211 0 0 0.48892145e+00 0.33294615e+00 0.76627542e+01 0.13957000e+00
- 2 111 217 218 0.52660815e+00 -0.10652704e+00 0.76993905e+01 0.13498000e+00
- 1 211 0 0 0.48807648e-01 0.27754894e+00 0.19932320e+01 0.13957000e+00
- 2 111 219 220 -0.54950766e-01 -0.53112224e+00 0.16687761e+01 0.13498000e+00
- 1 211 0 0 -0.28187639e+00 -0.81167294e-01 0.25117760e+02 0.13957000e+00
- 1 -211 0 0 0.17897375e-01 -0.20520796e+00 0.35869687e+02 0.13957000e+00
- 2 111 221 222 0.97845964e-01 0.12881819e+00 0.23974816e+02 0.13498000e+00
- 1 -211 0 0 -0.55746186e+00 0.15308699e+00 0.10312435e+03 0.13957000e+00
- 2 111 223 224 -0.38381590e-01 0.78197593e-02 0.21105141e+03 0.13498000e+00
- 1 211 0 0 -0.18763911e+00 -0.84501571e-01 0.93805597e+03 0.13957000e+00
- 1 -211 0 0 0.10679060e+00 0.18370182e-01 0.61476346e+03 0.13957000e+00
- 2 111 225 226 -0.48857627e+00 0.22716055e+00 0.23417705e+04 0.13498000e+00
- 2 -3122 227 228 -0.13522265e+02 -0.12325599e+00 -0.13205037e+01 0.11156800e+01
- 1 211 0 0 -0.69537333e+00 -0.19335805e-01 -0.11410744e+00 0.13957000e+00
- 1 2212 0 0 -0.46830714e+01 -0.44553284e+00 -0.56787433e+00 0.93827000e+00
- 1 -211 0 0 -0.95267674e+00 0.29086616e-01 -0.10523726e+00 0.13957000e+00
- 1 22 0 0 0.23652540e+00 -0.28464764e+00 0.78256663e+00 0.00000000e+00
- 1 22 0 0 0.16539251e+00 -0.12654835e+00 0.26629200e+00 0.00000000e+00
- 1 211 0 0 0.30413670e+00 -0.38755053e+00 0.11274499e+00 0.13957000e+00
- 1 -211 0 0 0.12193609e+00 -0.72528028e-01 0.27200363e+00 0.13957000e+00
- 2 111 229 230 0.23567788e+00 -0.82306302e+00 0.56789505e+00 0.13498000e+00
- 1 -211 0 0 0.23674600e+00 -0.44587698e+00 0.16042817e+00 0.13957000e+00
- 1 211 0 0 0.15032430e+01 -0.39411929e+01 0.26638710e+01 0.13957000e+00
- 1 -211 0 0 -0.14373723e+00 -0.17393222e+00 -0.27747553e+00 0.13957000e+00
- 1 211 0 0 0.27713573e+00 0.22365714e+00 -0.19593067e+01 0.13957000e+00
- 1 211 0 0 0.93137811e-02 0.28429079e+00 -0.51453124e+01 0.13957000e+00
- 1 -211 0 0 -0.30925083e-01 -0.44171524e+00 -0.74667045e+01 0.13957000e+00
- 1 22 0 0 0.75860845e-01 0.94257918e-01 -0.72055976e+00 0.00000000e+00
- 1 22 0 0 0.75578020e-01 -0.28512105e+00 -0.12507065e+02 0.00000000e+00
- 1 211 0 0 -0.44649928e+00 0.60441605e+00 -0.11012535e+02 0.13957000e+00
- 1 -211 0 0 0.90818424e-01 0.31407387e-01 -0.33569775e+01 0.13957000e+00
- 2 111 231 232 0.19692063e-02 0.15058152e-01 -0.34301302e+01 0.13498000e+00
- 2 111 233 234 -0.16072088e+00 -0.71187124e-01 -0.70957190e+01 0.13498000e+00
- 2 111 235 236 -0.14311377e-01 -0.24936030e-01 -0.30975728e+01 0.13498000e+00
- 2 111 237 238 -0.50628003e-02 0.38337668e-01 -0.12012460e+01 0.13498000e+00
- 1 211 0 0 0.35135109e+00 -0.29969524e+00 -0.96860043e+01 0.13957000e+00
- 2 111 239 240 -0.45517212e+00 -0.21643195e+00 -0.12227569e+02 0.13498000e+00
- 1 -211 0 0 0.65711548e+00 0.39368234e+00 -0.39244866e+02 0.13957000e+00
- 2 111 241 242 -0.67288794e-01 -0.14389802e+00 -0.13751971e+02 0.13498000e+00
- 1 -211 0 0 0.10757867e+01 0.29492150e+00 -0.34037984e+03 0.13957000e+00
- 2 111 243 244 0.24206539e+00 -0.90095398e-01 -0.34351756e+02 0.13498000e+00
- 1 211 0 0 0.13396132e+01 -0.13271055e+00 -0.38818319e+03 0.13957000e+00
- 2 111 245 246 0.72122698e+00 -0.79439649e-01 -0.48945018e+03 0.13498000e+00
- 1 321 0 0 -0.53940538e-01 0.42725142e+00 0.56188313e+03 0.49360000e+00
- 1 -211 0 0 0.24898085e+00 0.19670056e+00 0.93266977e+03 0.13957000e+00
- 1 -321 0 0 0.13866835e-01 -0.76572974e+00 0.83566747e+02 0.49360000e+00
- 1 211 0 0 -0.17731572e+00 -0.48084302e+00 0.32529860e+02 0.13957000e+00
- 1 211 0 0 0.33321201e+00 -0.32090758e+00 0.49828751e+02 0.13957000e+00
- 1 -211 0 0 -0.22810339e+00 0.13347946e+00 0.40333133e+02 0.13957000e+00
- 2 111 247 248 -0.37163752e+00 0.34027076e+00 0.30335346e+02 0.13498000e+00
- 2 111 249 250 -0.42617106e+00 0.50685382e+00 0.35113195e+02 0.13498000e+00
- 2 221 251 252 -0.61552231e+00 0.45370016e+00 0.43775127e+02 0.54745000e+00
- 1 -211 0 0 0.24429378e+00 0.24020040e+00 0.31149248e+02 0.13957000e+00
- 1 211 0 0 -0.43880284e+00 0.27176081e+00 0.30325200e+02 0.13957000e+00
- 1 2212 0 0 -0.11266928e+01 0.24228627e+01 0.10528919e+03 0.93827000e+00
- 1 -211 0 0 -0.16641234e-01 0.22713027e+00 0.21497332e+02 0.13957000e+00
- 1 22 0 0 -0.87894796e-01 0.62266351e+00 0.26438066e+02 0.00000000e+00
- 1 22 0 0 -0.22684330e+00 0.99035252e+00 0.49424160e+02 0.00000000e+00
- 1 -2212 0 0 -0.12466189e+00 -0.40708837e+00 0.51623159e+00 0.93827000e+00
- 1 -211 0 0 -0.58411014e-01 -0.91021163e-01 0.26376981e+00 0.13957000e+00
- 1 211 0 0 0.12778318e+00 0.45744308e+00 0.12750684e+00 0.13957000e+00
- 1 -211 0 0 -0.39980522e-01 0.40315447e-01 0.16401540e+00 0.13957000e+00
- 1 2112 0 0 0.36458018e+00 -0.81582317e-01 -0.18909386e+01 0.93957000e+00
- 1 -211 0 0 -0.10043847e-01 0.84617900e-01 0.45386984e-01 0.13957000e+00
- 1 211 0 0 0.20555622e+00 0.17203179e+00 -0.53961626e+00 0.13957000e+00
- 1 -211 0 0 -0.64312248e-01 0.83240431e-01 -0.30234844e+00 0.13957000e+00
- 2 111 253 254 0.30935394e-01 0.20059472e+00 -0.26659871e+00 0.13498000e+00
- 1 -2112 0 0 0.35722542e+00 0.18977376e+01 -0.13190354e+02 0.93957000e+00
- 2 111 255 256 0.49610983e+00 0.82543437e+00 -0.71030264e+01 0.13498000e+00
- 1 211 0 0 0.39554879e+00 0.29802233e+00 -0.20329074e+01 0.13957000e+00
- 1 -211 0 0 0.28051253e+00 0.25243977e+01 -0.10430481e+02 0.13957000e+00
- 1 2212 0 0 0.68966450e+00 0.57598392e+01 -0.33896559e+02 0.93827000e+00
- 2 111 257 258 0.44782075e+00 0.10031375e+01 -0.63589254e+01 0.13498000e+00
- 1 130 0 0 0.43506131e+00 0.28016589e+01 -0.99266222e+01 0.49767000e+00
- 2 -3122 259 260 -0.63977643e+00 0.12774687e+01 -0.97904344e+01 0.11156800e+01
- 1 22 0 0 0.20173823e-01 0.35974906e-01 -0.65402147e+00 0.00000000e+00
- 1 130 0 0 0.54856944e+00 0.15086000e+01 -0.46355535e+01 0.49767000e+00
- 1 -211 0 0 -0.92042092e-02 0.39171406e+00 -0.81232137e+00 0.13957000e+00
- 1 211 0 0 0.35989091e+00 0.90644116e+00 -0.66666490e+01 0.13957000e+00
- 1 211 0 0 0.16922843e+00 0.87818024e-01 -0.42170285e+00 0.13957000e+00
- 2 111 261 262 -0.45698339e+00 0.56170941e+00 -0.37388768e+01 0.13498000e+00
- 1 22 0 0 -0.50355622e+00 -0.77686558e+00 -0.68010260e+01 0.00000000e+00
- 1 22 0 0 -0.81889983e-01 0.68978073e-01 -0.32794445e+00 0.00000000e+00
- 1 -211 0 0 0.45973468e+00 0.11560926e+00 -0.18935302e+02 0.13957000e+00
- 2 111 263 264 -0.16500681e+00 0.23919899e+00 -0.27256731e+02 0.13498000e+00
- 1 2212 0 0 -0.74366475e+00 -0.27126044e-01 -0.20355773e+04 0.93827000e+00
- 1 211 0 0 -0.89968254e-01 -0.19186786e+00 -0.11804097e+04 0.13957000e+00
- 1 22 0 0 -0.30677426e-01 -0.27910897e-01 -0.28564880e-01 0.00000000e+00
- 1 22 0 0 -0.17109645e+00 -0.37285870e+00 0.11558248e+00 0.00000000e+00
- 1 22 0 0 -0.22337546e+00 0.70025186e-01 0.17945713e+01 0.00000000e+00
- 1 22 0 0 -0.11261438e+00 -0.56976627e-01 0.12098038e+01 0.00000000e+00
- 1 22 0 0 0.48499897e-01 -0.75985012e-01 0.15901727e+00 0.00000000e+00
- 1 22 0 0 -0.21778340e-01 0.12064880e-01 0.29205569e+00 0.00000000e+00
- 1 22 0 0 0.12753789e-01 0.99489832e-01 0.71231160e+00 0.00000000e+00
- 1 22 0 0 -0.29330831e-01 0.19196131e+00 0.54903227e+00 0.00000000e+00
- 1 22 0 0 0.23812886e+00 -0.11669133e+00 0.37698867e+01 0.00000000e+00
- 1 22 0 0 0.28847928e+00 0.10164292e-01 0.39295038e+01 0.00000000e+00
- 1 22 0 0 -0.21375905e-01 -0.96774142e-01 0.50580260e+00 0.00000000e+00
- 1 22 0 0 -0.33574861e-01 -0.43434810e+00 0.11629735e+01 0.00000000e+00
- 1 22 0 0 0.37787075e-01 0.13846743e+00 0.13870658e+02 0.00000000e+00
- 1 22 0 0 0.60058889e-01 -0.96492395e-02 0.10104159e+02 0.00000000e+00
- 1 22 0 0 0.45909200e-01 -0.22137282e-01 0.72376894e+02 0.00000000e+00
- 1 22 0 0 -0.84290790e-01 0.29957042e-01 0.13867451e+03 0.00000000e+00
- 1 22 0 0 -0.34445780e+00 0.88915490e-01 0.14989556e+04 0.00000000e+00
- 1 22 0 0 -0.14411846e+00 0.13824506e+00 0.84281491e+03 0.00000000e+00
- 1 -2212 0 0 -0.11163287e+02 -0.16405042e+00 -0.10143184e+01 0.93827000e+00
- 1 211 0 0 -0.23589778e+01 0.40794425e-01 -0.30618534e+00 0.13957000e+00
- 1 22 0 0 0.10039100e+00 -0.23641534e+00 0.23558659e+00 0.00000000e+00
- 1 22 0 0 0.13528688e+00 -0.58664768e+00 0.33230846e+00 0.00000000e+00
- 1 22 0 0 0.47552567e-01 -0.38080413e-02 -0.29013249e+01 0.00000000e+00
- 1 22 0 0 -0.45583361e-01 0.18866193e-01 -0.52880526e+00 0.00000000e+00
- 1 22 0 0 -0.12524771e+00 0.14245736e-01 -0.46591893e+01 0.00000000e+00
- 1 22 0 0 -0.35473172e-01 -0.85432860e-01 -0.24365297e+01 0.00000000e+00
- 1 22 0 0 0.48889089e-01 -0.49783079e-01 -0.16758495e+01 0.00000000e+00
- 1 22 0 0 -0.63200465e-01 0.24847050e-01 -0.14217232e+01 0.00000000e+00
- 1 22 0 0 0.32728714e-01 -0.38073117e-01 -0.30180042e+00 0.00000000e+00
- 1 22 0 0 -0.37791515e-01 0.76410785e-01 -0.89944556e+00 0.00000000e+00
- 1 22 0 0 -0.18933254e+00 -0.14995395e+00 -0.66778735e+01 0.00000000e+00
- 1 22 0 0 -0.26583958e+00 -0.66478001e-01 -0.55496955e+01 0.00000000e+00
- 1 22 0 0 0.33710482e-01 -0.82455682e-01 -0.52041461e+01 0.00000000e+00
- 1 22 0 0 -0.10099928e+00 -0.61442338e-01 -0.85478253e+01 0.00000000e+00
- 1 22 0 0 0.14208869e+00 0.18964406e-01 -0.16387126e+02 0.00000000e+00
- 1 22 0 0 0.99976701e-01 -0.10905980e+00 -0.17964629e+02 0.00000000e+00
- 1 22 0 0 0.27143776e+00 0.17641564e-01 -0.15302707e+03 0.00000000e+00
- 1 22 0 0 0.44978923e+00 -0.97081213e-01 -0.33642312e+03 0.00000000e+00
- 1 22 0 0 -0.13776583e+00 0.16467482e+00 0.94585197e+01 0.00000000e+00
- 1 22 0 0 -0.23387168e+00 0.17559594e+00 0.20876827e+02 0.00000000e+00
- 1 22 0 0 -0.99639132e-01 0.11268320e+00 0.11312539e+02 0.00000000e+00
- 1 22 0 0 -0.32653193e+00 0.39417062e+00 0.23800656e+02 0.00000000e+00
- 1 22 0 0 -0.13347005e+00 0.13233362e+00 0.25964617e+02 0.00000000e+00
- 1 22 0 0 -0.48205225e+00 0.32136653e+00 0.17810510e+02 0.00000000e+00
- 1 22 0 0 0.73035069e-01 0.15336002e+00 -0.23646464e+00 0.00000000e+00
- 1 22 0 0 -0.42099675e-01 0.47234692e-01 -0.30134073e-01 0.00000000e+00
- 1 22 0 0 0.28465270e+00 0.35847284e+00 -0.35872986e+01 0.00000000e+00
- 1 22 0 0 0.21145714e+00 0.46696153e+00 -0.35157278e+01 0.00000000e+00
- 1 22 0 0 0.44601016e+00 0.99595264e+00 -0.63492452e+01 0.00000000e+00
- 1 22 0 0 0.18105869e-02 0.71848866e-02 -0.96801468e-02 0.00000000e+00
- 1 -2212 0 0 -0.57872095e+00 0.11185563e+01 -0.90143937e+01 0.93827000e+00
- 1 211 0 0 -0.61055480e-01 0.15891243e+00 -0.77604071e+00 0.13957000e+00
- 1 22 0 0 -0.28819305e+00 0.39373186e+00 -0.27963366e+01 0.00000000e+00
- 1 22 0 0 -0.16879034e+00 0.16797755e+00 -0.94254025e+00 0.00000000e+00
- 1 22 0 0 -0.91696511e-01 0.40238460e-01 -0.11868296e+02 0.00000000e+00
- 1 22 0 0 -0.73310300e-01 0.19896053e+00 -0.15388435e+02 0.00000000e+00
- 785
- 2 25 2 3 -0.97178222e+02 -0.52613554e+02 -0.10870868e+04 0.12499904e+03
- 2 23 4 5 -0.96466302e+01 0.71540306e+01 -0.66155631e+02 0.16964646e+02
- 2 23 6 7 -0.87531592e+02 -0.59767584e+02 -0.10209312e+04 0.91307334e+02
- 1 11 0 0 0.43158284e+01 -0.34058085e+00 -0.22224669e+02 0.51000000e-03
- 1 -11 0 0 -0.13962459e+02 0.74946115e+01 -0.43930962e+02 0.51000000e-03
- 1 13 0 0 0.22130948e+01 -0.49516165e+02 -0.35894646e+03 0.10566000e+00
- 1 -13 0 0 -0.89744687e+02 -0.10251420e+02 -0.66198472e+03 0.10566000e+00
- 2 2 91 91 0.48580127e+02 0.51713222e+02 -0.79998281e+03 0.33000000e+00
- 2 21 91 91 0.18711304e+02 0.20681256e+02 -0.33200963e+03 0.00000000e+00
- 2 21 91 91 0.17662221e+02 0.23879971e+02 -0.38248156e+03 0.00000000e+00
- 2 21 91 91 0.18128512e+01 0.58381610e+01 -0.93350965e+02 0.00000000e+00
- 2 21 91 91 0.81342035e+00 -0.29400985e+01 -0.24951459e+02 0.00000000e+00
- 2 21 91 91 0.44371635e+01 -0.24718303e+01 -0.25735110e+02 0.00000000e+00
- 2 21 91 91 -0.10664764e+02 -0.42297465e+01 -0.17179791e+02 0.00000000e+00
- 2 21 91 91 -0.12877018e+01 0.30108817e+00 -0.51192407e+00 0.00000000e+00
- 2 21 91 91 0.12396600e+01 -0.18171817e+01 -0.11754835e+01 0.00000000e+00
- 2 21 91 91 0.17107968e+00 -0.53567682e+01 -0.15088540e+00 0.00000000e+00
- 2 21 91 91 0.99701781e+00 -0.45530401e+02 -0.65616571e+01 0.00000000e+00
- 2 21 91 91 -0.71230435e-01 -0.55932838e+00 0.21275103e+00 0.00000000e+00
- 2 21 91 91 -0.80891638e+00 -0.86614104e+00 0.56826896e+00 0.00000000e+00
- 2 21 91 91 -0.66051973e+00 -0.36081670e+01 0.53305639e+00 0.00000000e+00
- 2 21 91 91 0.11770383e+01 -0.38919858e+00 -0.18897328e+01 0.00000000e+00
- 2 21 91 91 -0.16176072e+00 -0.19493610e+00 -0.13588314e+01 0.00000000e+00
- 2 21 91 91 0.14718070e+00 -0.61652660e+00 -0.87119327e+00 0.00000000e+00
- 2 21 91 91 0.37521604e+00 -0.19504783e+00 0.12395942e+01 0.00000000e+00
- 2 21 91 91 0.91511387e+00 -0.17459190e+00 0.96664062e+00 0.00000000e+00
- 2 21 91 91 0.37544412e+01 0.57189801e+00 0.60513443e+01 0.00000000e+00
- 2 21 91 91 0.46036428e+01 0.16433360e+01 0.60110406e+01 0.00000000e+00
- 2 21 91 91 -0.18280202e+00 -0.21560068e-01 -0.15837375e+01 0.00000000e+00
- 2 21 91 91 0.47080012e-01 0.73801064e+00 0.23870813e+02 0.00000000e+00
- 2 21 91 91 0.35825083e-01 -0.57553471e+00 0.81916346e+02 0.00000000e+00
- 2 2203 91 91 -0.45797549e+00 -0.44793352e+00 0.22287721e+04 0.77133000e+00
- 2 2 147 147 0.73714631e+01 0.37264910e+01 0.43664055e+03 0.00000000e+00
- 2 21 147 147 0.24185654e+01 0.48645938e+01 0.18770748e+03 0.00000000e+00
- 2 21 147 147 -0.12881329e+01 0.29694645e+00 0.12669001e+02 0.00000000e+00
- 2 21 147 147 -0.10961412e+01 0.37290809e+00 0.70990353e+01 0.00000000e+00
- 2 21 147 147 -0.22646087e+01 0.61450640e+00 0.13036322e+02 0.00000000e+00
- 2 21 147 147 -0.30608249e+01 0.30895643e+01 0.17612313e+02 0.00000000e+00
- 2 21 147 147 -0.57558189e+01 -0.38732983e+01 -0.18789333e+01 0.00000000e+00
- 2 21 147 147 -0.58018651e+00 -0.16566960e+00 -0.57370946e+00 0.00000000e+00
- 2 -2 147 147 -0.73714631e+01 -0.37264910e+01 -0.10881790e+02 0.00000000e+00
- 2 1 174 174 0.38592315e+00 0.14307733e+01 -0.95384658e+00 0.00000000e+00
- 2 -1 174 174 -0.38592315e+00 -0.14307733e+01 -0.39275472e+01 0.00000000e+00
- 2 1 179 179 0.63433233e+00 0.22971033e+00 0.11936847e+04 0.33000000e+00
- 2 21 179 179 0.26470646e+00 0.41263486e+00 0.56861959e+01 0.00000000e+00
- 2 21 179 179 -0.32390582e+01 0.23204511e+01 0.79004286e+02 0.00000000e+00
- 2 21 179 179 0.28887465e-01 -0.18439693e+00 0.13581640e+01 0.00000000e+00
- 2 21 179 179 -0.14279388e+00 0.22613200e+00 0.69017844e+00 0.00000000e+00
- 2 21 179 179 0.35706291e+00 0.14945046e+00 0.62894713e+00 0.00000000e+00
- 2 21 179 179 -0.29489824e+01 0.49578327e+01 0.29027664e+01 0.00000000e+00
- 2 21 179 179 0.98213232e+00 0.12635716e+01 0.19760574e+01 0.00000000e+00
- 2 21 179 179 0.37188728e+00 0.35613233e+01 0.60223375e+01 0.00000000e+00
- 2 21 179 179 -0.18817293e+00 0.47429979e+00 0.41354088e+00 0.00000000e+00
- 2 21 179 179 -0.15842772e+01 -0.13603164e+00 0.18621440e+00 0.00000000e+00
- 2 21 179 179 0.32495086e-01 0.90634041e+00 0.17735921e+01 0.00000000e+00
- 2 21 179 179 -0.24185654e+01 -0.48645938e+01 0.41021554e+02 0.00000000e+00
- 2 21 179 179 -0.84669715e+00 0.98690328e+00 0.47370742e+02 0.00000000e+00
- 2 21 179 179 -0.14084219e+01 0.11858313e+01 0.74024768e+02 0.00000000e+00
- 2 21 179 179 -0.63864709e+00 -0.16692188e+00 0.44584227e+02 0.00000000e+00
- 2 21 179 179 -0.11482966e+02 0.53062978e+00 0.21230797e+04 0.00000000e+00
- 2 21 179 179 0.14084219e+01 -0.11858313e+01 0.18568525e+03 0.00000000e+00
- 2 21 179 179 0.11482966e+02 -0.53062978e+00 0.59217133e+02 0.00000000e+00
- 2 21 179 179 0.57558189e+01 0.38732983e+01 0.28607252e+02 0.00000000e+00
- 2 21 179 179 0.22646087e+01 -0.61450640e+00 0.45819548e+01 0.00000000e+00
- 2 21 179 179 0.10961412e+01 -0.37290809e+00 0.19255017e+01 0.00000000e+00
- 2 21 179 179 0.21819666e+01 -0.16589472e+01 0.37841252e+01 0.00000000e+00
- 2 21 179 179 -0.23290258e-01 -0.39003505e+00 0.84162310e+00 0.00000000e+00
- 2 21 179 179 0.27519986e+00 -0.15315864e+01 0.15006281e+01 0.00000000e+00
- 2 21 179 179 0.80304588e+00 -0.12000453e+01 0.64066067e+00 0.00000000e+00
- 2 21 179 179 0.84669715e+00 -0.98690328e+00 -0.33810160e+00 0.00000000e+00
- 2 21 179 179 0.30608249e+01 -0.30895643e+01 0.13972454e+01 0.00000000e+00
- 2 21 179 179 0.12877018e+01 -0.30108817e+00 0.91946396e+00 0.00000000e+00
- 2 21 179 179 0.45301036e+00 0.18218278e+00 0.58713259e+00 0.00000000e+00
- 2 21 179 179 0.58018651e+00 0.16566960e+00 0.22860915e+00 0.00000000e+00
- 2 21 179 179 0.10664764e+02 0.42297465e+01 0.36397776e+00 0.00000000e+00
- 2 21 179 179 0.63864709e+00 0.16692188e+00 -0.16108486e+00 0.00000000e+00
- 2 21 179 179 -0.80304588e+00 0.12000453e+01 -0.24056199e+01 0.00000000e+00
- 2 21 179 179 0.42487520e+00 0.31370991e+01 -0.69987743e+01 0.00000000e+00
- 2 21 179 179 -0.27519986e+00 0.15315864e+01 -0.10389277e+02 0.00000000e+00
- 2 21 179 179 -0.14227987e+01 0.25522666e+01 -0.86496077e+02 0.00000000e+00
- 2 21 179 179 -0.21819666e+01 0.16589472e+01 -0.89360657e+02 0.00000000e+00
- 2 21 179 179 0.38831159e-01 0.81598675e+00 -0.84977983e+02 0.00000000e+00
- 2 21 179 179 0.23290258e-01 0.39003505e+00 -0.19993481e+03 0.00000000e+00
- 2 21 179 179 -0.45301036e+00 -0.18218278e+00 -0.55225263e+03 0.00000000e+00
- 2 21 179 179 -0.38831159e-01 -0.81598675e+00 -0.43968963e+03 0.00000000e+00
- 2 21 179 179 0.12881329e+01 -0.29694645e+00 -0.59545639e+01 0.00000000e+00
- 2 21 179 179 0.14227987e+01 -0.25522666e+01 -0.14045513e+02 0.00000000e+00
- 2 21 179 179 -0.32495086e-01 -0.90634041e+00 -0.68877785e+01 0.00000000e+00
- 2 21 179 179 -0.42487520e+00 -0.31370991e+01 -0.71670058e+01 0.00000000e+00
- 2 2101 179 179 -0.49468050e+00 0.37967271e-01 -0.26374387e+04 0.57933000e+00
- 2 92 92 146 0.91184713e+02 0.35371951e+02 0.66034716e+03 0.40502100e+04
- 2 213 283 284 0.45767171e+02 0.48528474e+02 -0.75888633e+03 0.74089927e+00
- 2 113 285 286 0.97954176e+01 0.11532075e+02 -0.16882702e+03 0.67641021e+00
- 1 -211 0 0 0.58374418e+01 0.68423196e+01 -0.11694759e+03 0.13957000e+00
- 2 111 287 288 0.53540255e+00 0.70693961e+00 -0.95772676e+01 0.13498000e+00
- 1 211 0 0 0.64833213e+01 0.78045379e+01 -0.12671832e+03 0.13957000e+00
- 1 -211 0 0 0.45450151e+01 0.54616413e+01 -0.82208905e+02 0.13957000e+00
- 2 3214 289 290 0.25585140e+01 0.39917953e+01 -0.68695221e+02 0.13723013e+01
- 2 -3314 291 292 0.67505918e+01 0.85633848e+01 -0.14711469e+03 0.15331133e+01
- 2 -323 293 294 0.33239551e+01 0.49733265e+01 -0.73646015e+02 0.92512702e+00
- 2 113 295 296 0.37005555e+00 0.94931336e+00 -0.16034302e+02 0.76464390e+00
- 2 213 297 298 0.17652061e+00 0.26628996e+00 -0.67281504e+01 0.81595056e+00
- 2 311 299 299 0.69986004e+00 0.32207493e+00 -0.24856707e+02 0.49767000e+00
- 2 333 300 301 0.41180754e+00 0.97405562e+00 -0.16089336e+02 0.10109355e+01
- 2 -313 302 303 0.64320132e+00 -0.69351950e+00 -0.88761863e+01 0.90001586e+00
- 1 2112 0 0 0.70625393e+00 -0.13737206e+01 -0.10359930e+02 0.93957000e+00
- 1 -2112 0 0 0.22421739e+01 -0.20814478e+01 -0.17625353e+02 0.93957000e+00
- 2 221 304 305 0.96830340e+00 0.18845982e+00 -0.41073418e+01 0.54745000e+00
- 2 221 306 308 -0.15094274e+01 -0.11783307e+01 -0.41670429e+01 0.54745000e+00
- 2 223 309 311 -0.43841188e+00 0.38035436e-01 -0.18392672e+01 0.78262746e+00
- 2 313 312 313 -0.38099016e+01 -0.10951302e+01 -0.44799104e+01 0.89956375e+00
- 1 -321 0 0 -0.15011728e+00 -0.33059373e+00 -0.84750368e+00 0.49360000e+00
- 2 111 314 315 -0.30545399e+01 -0.18644563e+01 -0.54638629e+01 0.13498000e+00
- 1 211 0 0 -0.15595182e+01 -0.40233252e+00 -0.17910614e+01 0.13957000e+00
- 2 -213 316 317 0.24369199e+00 -0.12817209e+00 -0.43857883e+00 0.74062164e+00
- 1 211 0 0 -0.38770913e-01 0.10022879e+00 -0.26174749e+00 0.13957000e+00
- 2 113 318 319 -0.63628374e+00 -0.20477627e+01 -0.97354741e+00 0.85784733e+00
- 2 223 320 321 0.10433575e-01 -0.28084212e+01 0.64711999e-01 0.78209810e+00
- 2 313 322 323 0.75138026e+00 -0.14553591e+02 -0.20878264e+01 0.92854930e+00
- 2 -323 324 325 0.34862585e+00 -0.79322502e+01 -0.11501665e+01 0.90465393e+00
- 2 213 326 327 0.27508071e+00 -0.18037113e+02 -0.25647453e+01 0.67174702e+00
- 2 221 328 330 -0.27682729e+00 -0.46297760e+01 -0.56768298e-01 0.54745000e+00
- 2 221 331 333 0.15346288e+00 -0.15004370e+01 -0.19751063e+00 0.54745000e+00
- 2 311 334 334 -0.40069808e+00 -0.89388354e+00 0.13172023e+00 0.49767000e+00
- 2 -311 335 335 0.29739375e-01 -0.19000467e+01 -0.39134711e+00 0.49767000e+00
- 1 -211 0 0 -0.31772397e+00 -0.66198005e+00 0.47401536e+00 0.13957000e+00
- 1 211 0 0 -0.46111749e-02 -0.33168243e+00 0.12965684e+00 0.13957000e+00
- 2 221 336 338 0.57186012e+00 -0.33605667e+00 -0.77658024e+00 0.54745000e+00
- 2 223 339 341 -0.58079840e-01 -0.15197573e+01 -0.90875619e+00 0.78351279e+00
- 2 -213 342 343 0.18455728e+00 -0.13866521e+00 0.17799197e+00 0.77599257e+00
- 1 321 0 0 -0.56790382e+00 -0.59570493e+00 -0.12095381e+01 0.49360000e+00
- 2 3212 344 345 0.45252046e+00 -0.54329490e+00 -0.16323054e+00 0.11925500e+01
- 1 -211 0 0 0.79379873e+00 0.66045875e-01 0.42118940e+00 0.13957000e+00
- 1 -2112 0 0 0.45348411e+01 0.12486806e+01 0.63823485e+01 0.93957000e+00
- 2 223 346 348 0.20256528e+01 -0.24385081e-01 0.40583697e+01 0.78171003e+00
- 2 213 349 350 0.21899811e+01 0.34880954e-01 0.22624827e+01 0.10453249e+01
- 2 311 351 351 -0.48661717e-01 0.71144902e+00 -0.57197001e+00 0.49767000e+00
- 2 -311 352 352 -0.63839234e-01 -0.14372584e+00 -0.14131574e+00 0.49767000e+00
- 1 2112 0 0 -0.21661436e+00 -0.14460666e+00 0.82369835e+00 0.93957000e+00
- 2 113 353 354 0.32530898e+00 0.19955037e+00 0.12660042e+01 0.76777967e+00
- 2 -2214 355 356 0.34281334e-01 0.28625294e+00 0.29056811e+02 0.13356578e+01
- 2 213 357 358 0.59764497e-01 0.35815093e+00 0.19837185e+02 0.73729545e+00
- 2 221 359 361 0.28298033e+00 -0.17902670e+00 0.41510670e+02 0.54745000e+00
- 2 -213 362 363 -0.94613157e-01 -0.12955568e+00 0.18920196e+03 0.71179707e+00
- 2 2224 364 365 -0.54533470e+00 -0.34966595e+00 0.56662485e+03 0.12402715e+01
- 2 223 366 368 -0.10637699e+00 -0.22692089e+00 0.14857044e+04 0.79006014e+00
- 2 92 148 173 -0.11627148e+02 0.51995511e+01 0.66143027e+03 0.22104309e+03
- 1 321 0 0 0.16529701e+01 0.13030875e+01 0.11988000e+03 0.49360000e+00
- 2 -313 369 370 0.43529052e+01 0.22631455e+01 0.24245769e+03 0.10068975e+01
- 2 221 371 372 0.63190981e+00 0.13168129e+01 0.55115652e+02 0.54745000e+00
- 2 113 373 374 0.86067615e+00 0.10750438e+01 0.70544337e+02 0.10835880e+01
- 2 111 375 376 -0.27917387e-01 -0.41751252e-01 0.20678316e+02 0.13498000e+00
- 1 -211 0 0 0.13815728e+01 0.89320547e+00 0.47832608e+02 0.13957000e+00
- 2 221 377 379 0.16708721e+00 0.17751559e+01 0.50452328e+02 0.54745000e+00
- 2 221 380 381 -0.47599245e-01 -0.37707033e+00 0.79898725e+01 0.54745000e+00
- 1 211 0 0 -0.27452175e+00 0.28898989e+00 0.78818269e+01 0.13957000e+00
- 2 -213 382 383 -0.67501346e-01 0.52398933e+00 0.85455965e+01 0.78340879e+00
- 1 211 0 0 -0.24798568e+01 0.99507633e+00 0.17324605e+02 0.13957000e+00
- 1 -211 0 0 -0.26283715e+00 0.80382748e+00 0.31686971e+01 0.13957000e+00
- 1 321 0 0 -0.49197071e+00 0.55884295e+00 0.42335201e+01 0.49360000e+00
- 2 -323 384 385 -0.23991962e+01 0.68125929e+00 0.13167386e+02 0.89952883e+00
- 1 211 0 0 -0.44454819e+00 0.16569184e+00 0.95409361e+00 0.13957000e+00
- 2 221 386 388 -0.48588317e+00 0.48480086e+00 0.34814676e+01 0.54745000e+00
- 2 221 389 391 -0.12339713e+00 0.11595730e+00 0.72725715e+00 0.54745000e+00
- 2 -213 392 393 -0.15661640e+01 -0.99530651e+00 -0.60690203e+00 0.73846325e+00
- 2 113 394 395 -0.14934543e+01 -0.81084726e+00 -0.54826769e+00 0.72874539e+00
- 2 111 396 397 -0.76423717e-01 -0.26793762e+00 -0.25334389e-01 0.13498000e+00
- 2 111 398 399 -0.32181809e+00 -0.27947267e+00 -0.51411099e+00 0.13498000e+00
- 1 211 0 0 -0.85355453e+00 -0.51551752e+00 -0.68629180e+00 0.13957000e+00
- 2 111 400 401 -0.25103736e+00 -0.75365908e-01 -0.27573589e+00 0.13498000e+00
- 2 223 402 404 -0.28340236e+01 -0.17970189e+01 -0.15162503e+01 0.78059378e+00
- 2 -213 405 406 -0.17516925e+01 -0.52231687e+00 -0.23953384e+01 0.74652430e+00
- 2 223 407 409 -0.44208718e+01 -0.23627303e+01 -0.64367527e+01 0.78381190e+00
- 2 92 175 178 0.00000000e+00 0.00000000e+00 -0.48813938e+01 0.34198799e+01
- 2 -213 410 411 -0.11042896e+00 0.24646199e+00 -0.67156190e+00 0.74510096e+00
- 2 113 412 413 0.20206197e+00 0.16600370e+00 -0.61099833e+00 0.79543390e+00
- 1 211 0 0 -0.31268233e+00 -0.16616742e+00 -0.34907282e+01 0.13957000e+00
- 2 111 414 415 0.22104932e+00 -0.24629827e+00 -0.10810540e+00 0.13498000e+00
- 2 92 180 282 0.17620657e+02 0.12042052e+02 -0.22980964e+03 0.80885741e+04
- 2 311 416 416 0.11069576e+00 -0.16754760e+00 0.27081002e+03 0.49767000e+00
- 2 -323 417 418 0.69404044e+00 0.27749646e+00 0.37214171e+03 0.92294417e+00
- 2 213 419 420 -0.22857231e+00 0.73010210e-01 0.36387704e+03 0.91377266e+00
- 1 2112 0 0 0.44461054e+00 0.53941861e+00 0.83792751e+02 0.93957000e+00
- 2 113 421 422 -0.11065662e+01 0.46034199e+00 0.80466445e+02 0.82867741e+00
- 1 -2112 0 0 0.86952272e-01 0.35551593e+00 0.50798346e+02 0.93957000e+00
- 2 313 423 424 -0.77062801e+00 0.25696681e+00 0.17040095e+02 0.95223006e+00
- 2 -313 425 426 -0.20325005e+01 0.10555683e+01 0.32712404e+02 0.86041784e+00
- 1 -211 0 0 0.80267930e+00 0.40690555e+00 0.85735255e+01 0.13957000e+00
- 2 111 427 428 -0.18484642e+00 -0.16674033e+00 0.70738774e-01 0.13498000e+00
- 2 111 429 430 -0.82657491e+00 0.12094231e+01 0.17317010e+01 0.13498000e+00
- 2 323 431 432 -0.62418464e+00 0.18569478e+01 0.78577671e+00 0.91451524e+00
- 2 -323 433 434 -0.56670999e+00 0.13164278e+01 0.10943655e+01 0.89722670e+00
- 2 323 435 436 0.43274199e-01 0.16254235e+01 0.26807311e+01 0.92174454e+00
- 2 -313 437 438 -0.10841651e+00 0.13427080e+01 0.14111385e+01 0.86655179e+00
- 2 111 439 440 0.25146869e+00 0.36090128e+00 0.11003208e+01 0.13498000e+00
- 2 313 441 442 -0.60086161e-02 0.12623111e+01 0.13822219e+01 0.98009362e+00
- 2 -323 443 444 -0.45919873e+00 0.95175084e+00 0.15179198e+01 0.10448622e+01
- 2 323 445 446 -0.33251801e+00 0.65159107e+00 0.20585015e+01 0.88482374e+00
- 2 221 447 449 -0.35429460e+00 -0.69621287e-01 0.65316223e+00 0.54745000e+00
- 1 -321 0 0 -0.45519305e-01 0.50855982e-01 0.11386006e+01 0.49360000e+00
- 1 211 0 0 -0.10948155e+00 0.66622636e-01 0.38013207e+00 0.13957000e+00
- 2 113 450 451 -0.24665462e+00 -0.58871248e+00 0.16654170e+01 0.77690050e+00
- 2 221 452 454 -0.58090140e+00 -0.62323043e+00 0.53206879e+01 0.54745000e+00
- 1 2112 0 0 -0.63074057e+00 -0.31689357e-01 0.41798315e+01 0.93957000e+00
- 2 -313 455 456 -0.32326487e+00 -0.36791801e+00 0.10735311e+02 0.83272885e+00
- 2 -3224 457 458 -0.12618889e+01 -0.18736547e+01 0.22740342e+02 0.13822581e+01
- 1 211 0 0 -0.30207620e+00 0.39518916e+00 0.36702814e+02 0.13957000e+00
- 2 223 459 461 -0.42708242e+00 0.49585283e+00 0.33415570e+02 0.78246487e+00
- 1 -211 0 0 -0.73746093e-01 0.68418594e-01 0.57828451e+00 0.13957000e+00
- 2 113 462 463 -0.31574426e+00 -0.54856642e+00 0.49461373e+02 0.75452658e+00
- 1 321 0 0 -0.33124309e+00 -0.69553536e-01 0.23128905e+02 0.49360000e+00
- 1 -321 0 0 -0.48112670e+00 0.89219413e-01 0.67360151e+02 0.49360000e+00
- 2 111 464 465 -0.14124398e+00 0.17250131e+00 0.10926637e+02 0.13498000e+00
- 1 211 0 0 -0.10641226e+00 0.19672830e+00 0.12301576e+02 0.13957000e+00
- 2 221 466 468 -0.35848838e+00 0.21996655e+00 0.40990107e+02 0.54745000e+00
- 2 311 469 469 -0.76685660e+00 0.57662569e-01 0.10467233e+03 0.49767000e+00
- 1 -321 0 0 -0.16487422e+01 0.44747014e+00 0.26164080e+03 0.49360000e+00
- 2 223 470 472 -0.27334432e+01 -0.10605598e+00 0.53898183e+03 0.81348477e+00
- 2 323 473 474 -0.21717012e+01 -0.16061216e+00 0.40403132e+03 0.85691856e+00
- 1 -321 0 0 -0.27470395e+01 -0.79699804e-01 0.54725835e+03 0.49360000e+00
- 1 211 0 0 0.23277654e-01 0.64888145e+00 0.60388131e+02 0.13957000e+00
- 2 313 475 476 -0.63172978e+00 -0.11134995e+01 0.21276190e+03 0.90306461e+00
- 2 -323 477 478 0.24924987e+00 -0.36973632e+00 0.27746541e+02 0.88349599e+00
- 2 213 479 480 0.13547766e+01 -0.19229982e+00 0.31879502e+02 0.79532390e+00
- 2 111 481 482 -0.18186130e+00 0.30247719e+00 0.26722414e+01 0.13498000e+00
- 2 -213 483 484 0.68901848e+00 -0.48616146e+00 0.82944786e+01 0.61876435e+00
- 1 211 0 0 0.40062092e+01 0.25128230e+00 0.20984333e+02 0.13957000e+00
- 2 113 485 486 0.47931087e+01 -0.43429620e+00 0.25456265e+02 0.68908812e+00
- 1 -211 0 0 0.41303742e+01 0.18927391e+01 0.20625544e+02 0.13957000e+00
- 2 323 487 488 0.65706154e+00 0.17655466e+00 0.27827378e+01 0.87571739e+00
- 2 333 489 490 0.38383303e+01 0.14824807e+01 0.13592199e+02 0.10188726e+01
- 2 -311 491 491 0.72435546e+00 -0.29465753e+00 0.96401399e+00 0.49767000e+00
- 2 311 492 492 0.47790207e+00 -0.55821090e+00 0.18748015e+01 0.49767000e+00
- 2 -323 493 494 0.14744077e+01 -0.80346201e+00 0.34989557e+01 0.79754200e+00
- 2 111 495 496 -0.14125292e-01 0.20844184e+00 0.14185789e+00 0.13498000e+00
- 2 113 497 498 0.21678350e+01 -0.19645985e+01 0.31539227e+01 0.84004712e+00
- 2 213 499 500 0.16185997e+01 -0.25878845e+01 0.15243458e+01 0.87339464e+00
- 2 -213 501 502 0.46772679e+00 -0.40887018e+00 0.66447635e+00 0.84045495e+00
- 1 2212 0 0 0.52913380e+00 -0.73896410e+00 0.10517279e+01 0.93827000e+00
- 1 -2112 0 0 0.25521504e+01 -0.21851739e+01 0.51259972e+00 0.93957000e+00
- 2 111 503 504 0.37346408e+01 0.53488483e+00 0.33787757e+00 0.13498000e+00
- 1 -211 0 0 0.16204166e+01 0.13639603e+01 0.56251296e+00 0.13957000e+00
- 2 113 505 506 0.15012724e+01 0.26304756e+00 0.87813073e-01 0.74718324e+00
- 2 323 507 508 0.53637636e+01 0.24552761e+01 0.35584457e+00 0.89136500e+00
- 2 -313 509 510 -0.40256275e-01 0.84022585e+00 -0.21121613e+01 0.10256294e+01
- 2 2114 511 512 -0.75912023e-01 0.18416023e+01 -0.63041201e+01 0.11594881e+01
- 1 -2112 0 0 -0.41083121e+00 0.15754714e+01 -0.48821251e+01 0.93957000e+00
- 2 111 513 514 -0.10440711e+00 0.15355706e+00 -0.25766437e+01 0.13498000e+00
- 2 2214 515 516 0.21718130e+00 0.64424200e+00 -0.10278306e+02 0.12688483e+01
- 2 -2224 517 518 0.11788376e-01 0.49326670e+00 -0.98570481e+01 0.12119932e+01
- 2 323 519 520 -0.71186806e+00 0.94814570e+00 -0.27538135e+02 0.74696040e+00
- 2 -313 521 522 -0.25698319e+00 0.48450766e+00 -0.21390911e+02 0.88967119e+00
- 1 -211 0 0 -0.15797607e+00 0.25136760e+00 -0.31896717e+01 0.13957000e+00
- 2 111 523 524 -0.47263718e+00 0.59027551e+00 -0.28688316e+02 0.13498000e+00
- 1 321 0 0 -0.15203132e+00 0.43187021e+00 -0.27731091e+02 0.49360000e+00
- 2 -323 525 526 -0.57493141e+00 0.11609989e+01 -0.44106451e+02 0.90065890e+00
- 2 221 527 528 -0.10048151e+01 0.41656615e+00 -0.96329260e+02 0.54745000e+00
- 2 111 529 530 -0.10052043e+00 0.41560876e+00 -0.47322652e+02 0.13498000e+00
- 1 321 0 0 0.51621638e-01 0.10403442e+00 -0.51065407e+02 0.49360000e+00
- 2 -313 531 532 -0.45851919e+00 -0.28545253e+00 -0.29833332e+03 0.90809002e+00
- 2 113 533 534 0.65405295e+00 0.17856040e+00 -0.16460299e+03 0.76471383e+00
- 2 -213 535 536 -0.52030149e+00 -0.31820217e-01 -0.24352743e+03 0.63415464e+00
- 2 113 537 538 -0.27419090e+00 0.36693058e-01 -0.20376020e+03 0.72683517e+00
- 2 323 539 540 0.38827578e+00 -0.10618758e+00 -0.11575312e+03 0.88326463e+00
- 2 3224 541 542 0.16896957e+00 -0.79058178e+00 -0.28148566e+02 0.13741552e+01
- 2 -213 543 544 -0.20794388e+00 0.44612125e+00 -0.16558284e+02 0.75343945e+00
- 2 -3122 545 546 0.67494800e+00 -0.39996030e+00 -0.19209538e+02 0.11156800e+01
- 2 -311 547 547 0.37771193e+00 -0.83114454e-01 -0.47162072e+01 0.49767000e+00
- 2 223 548 550 0.21352920e+00 -0.68800335e+00 -0.59768358e+01 0.79381495e+00
- 2 111 551 552 0.78254762e+00 -0.14328466e+01 -0.94370171e+01 0.13498000e+00
- 2 111 553 554 0.23496208e+00 -0.53388408e+00 -0.12476299e+01 0.13498000e+00
- 1 -211 0 0 -0.30013757e+00 -0.16134730e+01 -0.47238313e+01 0.13957000e+00
- 1 321 0 0 0.33927199e+00 -0.90744907e-01 -0.17510940e+01 0.49360000e+00
- 2 -323 555 556 -0.66357375e+00 -0.15254876e+01 -0.15458641e+02 0.85648028e+00
- 2 3222 557 558 0.29779811e-03 0.61664602e+00 -0.13258460e+02 0.11893700e+01
- 2 -3212 559 560 0.15888636e+00 -0.44766575e+00 -0.14559655e+02 0.11925500e+01
- 2 223 561 563 0.33499642e-01 0.72313143e-01 -0.54455398e+02 0.78850139e+00
- 2 221 564 566 0.35160928e+00 -0.46240550e+00 -0.63237407e+02 0.54745000e+00
- 2 113 567 568 -0.54503002e+00 -0.41065940e-01 -0.63881228e+03 0.74011600e+00
- 1 -211 0 0 0.29724674e+00 0.26842986e+00 -0.83428961e+02 0.13957000e+00
- 2 2224 569 570 -0.67967191e+00 -0.11430061e+00 -0.35278139e+03 0.12938507e+01
- 2 -213 571 572 0.20159566e+00 -0.13326251e+00 -0.14069230e+04 0.82105518e+00
- 1 211 0 0 0.24226607e+02 0.25321934e+02 -0.39600271e+03 0.13957000e+00
- 2 111 573 574 0.21540564e+02 0.23206540e+02 -0.36288362e+03 0.13498000e+00
- 1 211 0 0 0.16894088e+01 0.23365992e+01 -0.31966957e+02 0.13957000e+00
- 1 -211 0 0 0.81060088e+01 0.91954762e+01 -0.13686006e+03 0.13957000e+00
- 1 22 0 0 0.12461839e+00 0.24892900e+00 -0.33848628e+01 0.00000000e+00
- 1 22 0 0 0.41078416e+00 0.45801061e+00 -0.61924048e+01 0.00000000e+00
- 2 3122 575 576 0.18113043e+01 0.31191830e+01 -0.53683772e+02 0.11156800e+01
- 2 111 577 578 0.74720963e+00 0.87261229e+00 -0.15011450e+02 0.13498000e+00
- 2 -3312 579 580 0.55729653e+01 0.69312714e+01 -0.11882810e+03 0.13213000e+01
- 2 111 581 582 0.11776265e+01 0.16321134e+01 -0.28286592e+02 0.13498000e+00
- 2 -311 583 583 0.12916568e+01 0.24016782e+01 -0.33402239e+02 0.49767000e+00
- 1 -211 0 0 0.20322982e+01 0.25716483e+01 -0.40243776e+02 0.13957000e+00
- 1 -211 0 0 0.22805738e-01 0.54395126e+00 -0.11977838e+02 0.13957000e+00
- 1 211 0 0 0.34724981e+00 0.40536210e+00 -0.40564647e+01 0.13957000e+00
- 1 211 0 0 0.25691580e+00 -0.21138204e+00 -0.22601463e+01 0.13957000e+00
- 2 111 584 585 -0.80395199e-01 0.47767200e+00 -0.44680041e+01 0.13498000e+00
- 1 130 0 0 0.69986004e+00 0.32207493e+00 -0.24856707e+02 0.49767000e+00
- 2 113 586 587 0.20836924e+00 0.84473723e+00 -0.11487861e+02 0.76227701e+00
- 2 111 588 589 0.20343830e+00 0.12931839e+00 -0.46014746e+01 0.13498000e+00
- 1 -321 0 0 0.49610155e+00 -0.51997300e+00 -0.81762341e+01 0.49360000e+00
- 1 211 0 0 0.14709976e+00 -0.17354649e+00 -0.69995218e+00 0.13957000e+00
- 1 22 0 0 0.72343227e+00 -0.87099968e-01 -0.31602261e+01 0.00000000e+00
- 1 22 0 0 0.24487113e+00 0.27555979e+00 -0.94711573e+00 0.00000000e+00
- 2 111 590 591 -0.51946553e+00 -0.44039877e+00 -0.11160499e+01 0.13498000e+00
- 2 111 592 593 -0.46401714e+00 -0.31068688e+00 -0.14984256e+01 0.13498000e+00
- 2 111 594 595 -0.52594470e+00 -0.42724501e+00 -0.15525673e+01 0.13498000e+00
- 1 211 0 0 -0.64248661e-01 0.41447068e-01 -0.49345713e+00 0.13957000e+00
- 1 -211 0 0 -0.31640047e-01 0.22143143e+00 -0.73169538e+00 0.13957000e+00
- 2 111 596 597 -0.34252317e+00 -0.22484306e+00 -0.61411468e+00 0.13498000e+00
- 1 321 0 0 -0.24463413e+01 -0.71831964e+00 -0.33167687e+01 0.49360000e+00
- 1 -211 0 0 -0.13635603e+01 -0.37681052e+00 -0.11631418e+01 0.13957000e+00
- 1 22 0 0 -0.11122144e+01 -0.60378255e+00 -0.19442502e+01 0.00000000e+00
- 1 22 0 0 -0.19423254e+01 -0.12606738e+01 -0.35196126e+01 0.00000000e+00
- 1 -211 0 0 -0.21587193e+00 -0.97383194e-01 -0.35955145e-01 0.13957000e+00
- 2 111 598 599 0.45956392e+00 -0.30788896e-01 -0.40262368e+00 0.13498000e+00
- 1 211 0 0 -0.44098384e-01 0.25761484e-01 -0.61579315e-01 0.13957000e+00
- 1 -211 0 0 -0.59218536e+00 -0.20735242e+01 -0.91196809e+00 0.13957000e+00
- 1 211 0 0 0.80655994e-01 -0.26810443e+01 -0.45518918e-01 0.13957000e+00
- 1 -211 0 0 -0.70222419e-01 -0.12737684e+00 0.11023092e+00 0.13957000e+00
- 1 321 0 0 0.55146505e+00 -0.13478014e+02 -0.19828313e+01 0.49360000e+00
- 1 -211 0 0 0.19991521e+00 -0.10755768e+01 -0.10499514e+00 0.13957000e+00
- 2 -311 600 600 0.29003246e+00 -0.37039259e+01 -0.75927832e+00 0.49767000e+00
- 1 -211 0 0 0.58593389e-01 -0.42283243e+01 -0.39088815e+00 0.13957000e+00
- 1 211 0 0 -0.90282420e-01 -0.33074268e+01 -0.30044323e+00 0.13957000e+00
- 2 111 601 602 0.36536313e+00 -0.14729686e+02 -0.22643021e+01 0.13498000e+00
- 1 22 0 0 -0.17330122e+00 -0.11325001e+01 0.31446663e-01 0.00000000e+00
- 1 211 0 0 -0.70623533e-01 -0.55359073e+00 -0.44316920e-01 0.13957000e+00
- 1 -211 0 0 -0.32902531e-01 -0.29436851e+01 -0.43898040e-01 0.13957000e+00
- 1 22 0 0 0.10704110e+00 -0.95797623e+00 -0.10603944e+00 0.00000000e+00
- 1 -211 0 0 -0.25458368e-01 -0.30493172e+00 -0.12798378e+00 0.13957000e+00
- 1 211 0 0 0.71880143e-01 -0.23752906e+00 0.36512600e-01 0.13957000e+00
- 2 310 603 604 -0.40069808e+00 -0.89388354e+00 0.13172023e+00 0.49767000e+00
- 2 310 605 606 0.29739375e-01 -0.19000467e+01 -0.39134711e+00 0.49767000e+00
- 2 111 607 608 0.36667711e+00 -0.24217883e+00 -0.47173519e+00 0.13498000e+00
- 2 111 609 610 0.16616797e+00 -0.68770950e-01 -0.90103673e-01 0.13498000e+00
- 2 111 611 612 0.39015051e-01 -0.25106891e-01 -0.21474138e+00 0.13498000e+00
- 1 211 0 0 -0.14321961e+00 -0.61874228e+00 -0.10909597e+00 0.13957000e+00
- 1 -211 0 0 0.87001439e-01 -0.82519232e+00 -0.68947429e+00 0.13957000e+00
- 2 111 613 615 -0.18616689e-02 -0.75822677e-01 -0.11018593e+00 0.13498000e+00
- 1 -211 0 0 -0.15113978e+00 0.21401353e+00 0.12060020e+00 0.13957000e+00
- 2 111 616 617 0.33569706e+00 -0.35267875e+00 0.57391770e-01 0.13498000e+00
- 2 3122 618 619 0.49346122e+00 -0.48393205e+00 -0.17075666e+00 0.11156800e+01
- 1 22 0 0 -0.40940767e-01 -0.59362844e-01 0.75261127e-02 0.00000000e+00
- 1 211 0 0 0.12548262e+01 -0.14551346e+00 0.23250443e+01 0.13957000e+00
- 1 -211 0 0 0.32389453e+00 0.27041873e-01 0.11317668e+01 0.13957000e+00
- 2 111 620 621 0.44693204e+00 0.94086508e-01 0.60155861e+00 0.13498000e+00
- 1 211 0 0 0.19931244e+01 0.34460527e+00 0.17896364e+01 0.13957000e+00
- 2 111 622 623 0.19685670e+00 -0.30972432e+00 0.47284624e+00 0.13498000e+00
- 2 310 624 625 -0.48661717e-01 0.71144902e+00 -0.57197001e+00 0.49767000e+00
- 2 310 626 627 -0.63839234e-01 -0.14372584e+00 -0.14131574e+00 0.49767000e+00
- 1 -211 0 0 0.41075443e+00 0.37852481e-02 0.11840462e+01 0.13957000e+00
- 1 211 0 0 -0.85445451e-01 0.19576512e+00 0.81957961e-01 0.13957000e+00
- 1 -2112 0 0 0.14908511e+00 -0.83215336e-01 0.20102505e+02 0.93957000e+00
- 1 -211 0 0 -0.11480377e+00 0.36946828e+00 0.89543062e+01 0.13957000e+00
- 1 211 0 0 0.32725757e+00 0.23357375e+00 0.70059692e+01 0.13957000e+00
- 2 111 628 629 -0.26749307e+00 0.12457718e+00 0.12831216e+02 0.13498000e+00
- 2 111 630 631 0.67719808e-01 0.47129911e-01 0.10764158e+02 0.13498000e+00
- 2 111 632 633 0.11166100e+00 0.27078878e-01 0.10399521e+02 0.13498000e+00
- 2 111 634 635 0.10359952e+00 -0.25323549e+00 0.20346992e+02 0.13498000e+00
- 1 -211 0 0 -0.25447693e+00 -0.32131798e+00 0.96301801e+02 0.13957000e+00
- 2 111 636 637 0.15986378e+00 0.19176231e+00 0.92900160e+02 0.13498000e+00
- 1 2212 0 0 -0.58914537e+00 -0.16616287e+00 0.40219731e+03 0.93827000e+00
- 1 211 0 0 0.43810668e-01 -0.18350308e+00 0.16442754e+03 0.13957000e+00
- 1 -211 0 0 0.13507257e+00 -0.70943693e-01 0.24868370e+03 0.13957000e+00
- 1 211 0 0 -0.25226290e+00 -0.22823415e+00 0.52533378e+03 0.13957000e+00
- 2 111 638 639 0.10813340e-01 0.72256951e-01 0.71168696e+03 0.13498000e+00
- 1 -321 0 0 0.25899137e+01 0.15626312e+01 0.13401824e+03 0.49360000e+00
- 1 211 0 0 0.17629915e+01 0.70051429e+00 0.10843945e+03 0.13957000e+00
- 1 22 0 0 -0.43877240e-01 0.29437894e+00 0.67760905e+01 0.00000000e+00
- 1 22 0 0 0.67578705e+00 0.10224339e+01 0.48339561e+02 0.00000000e+00
- 1 211 0 0 0.79021591e+00 0.17985461e+00 0.39023385e+02 0.13957000e+00
- 1 -211 0 0 0.70460240e-01 0.89518921e+00 0.31520952e+02 0.13957000e+00
- 1 22 0 0 -0.21874262e-01 -0.89047615e-01 0.10916728e+02 0.00000000e+00
- 1 22 0 0 -0.60431247e-02 0.47296364e-01 0.97615877e+01 0.00000000e+00
- 2 111 640 641 0.60693224e-01 0.29017241e+00 0.11321004e+02 0.13498000e+00
- 2 111 642 643 0.59048825e-01 0.74960845e+00 0.17125932e+02 0.13498000e+00
- 2 111 644 645 0.47345157e-01 0.73537501e+00 0.22005393e+02 0.13498000e+00
- 1 22 0 0 0.22469798e+00 -0.15450826e+00 0.21594744e+01 0.00000000e+00
- 1 22 0 0 -0.27229722e+00 -0.22256207e+00 0.58303981e+01 0.00000000e+00
- 1 -211 0 0 -0.13414845e+00 0.56229937e+00 0.35348983e+01 0.13957000e+00
- 2 111 646 647 0.66647107e-01 -0.38310047e-01 0.50106982e+01 0.13498000e+00
- 1 -321 0 0 -0.21878629e+01 0.45333400e+00 0.10766071e+02 0.49360000e+00
- 2 111 648 649 -0.21133332e+00 0.22792529e+00 0.24013151e+01 0.13498000e+00
- 2 111 650 651 -0.21749382e+00 0.13205240e+00 0.79655703e+00 0.13498000e+00
- 2 111 652 653 -0.15559031e+00 0.14157394e+00 0.17871406e+01 0.13498000e+00
- 2 111 654 655 -0.11279904e+00 0.21117452e+00 0.89777001e+00 0.13498000e+00
- 1 -211 0 0 0.12718526e-01 0.15723465e+00 0.24640297e+00 0.13957000e+00
- 1 211 0 0 0.26883742e-01 -0.35106029e-01 0.15568607e+00 0.13957000e+00
- 2 111 656 657 -0.16299940e+00 -0.61713218e-02 0.32516811e+00 0.13498000e+00
- 1 -211 0 0 -0.75983243e+00 -0.34648094e+00 -0.61018982e+00 0.13957000e+00
- 2 111 658 659 -0.80633160e+00 -0.64882557e+00 0.32877828e-02 0.13498000e+00
- 1 -211 0 0 -0.10135603e+01 -0.20820232e+00 -0.45931369e+00 0.13957000e+00
- 1 211 0 0 -0.47989402e+00 -0.60264493e+00 -0.88954005e-01 0.13957000e+00
- 1 22 0 0 -0.14621522e-01 -0.19012188e+00 0.35724188e-01 0.00000000e+00
- 1 22 0 0 -0.61802195e-01 -0.77815731e-01 -0.61058577e-01 0.00000000e+00
- 1 22 0 0 -0.12368600e+00 -0.53663878e-01 -0.91986654e-01 0.00000000e+00
- 1 22 0 0 -0.19813209e+00 -0.22580879e+00 -0.42212433e+00 0.00000000e+00
- 1 22 0 0 -0.67010059e-01 0.19084869e-01 -0.15744478e-01 0.00000000e+00
- 1 22 0 0 -0.18402730e+00 -0.94450777e-01 -0.25999142e+00 0.00000000e+00
- 1 -211 0 0 -0.12468554e+01 -0.59612981e+00 -0.83177155e+00 0.13957000e+00
- 1 211 0 0 -0.13985977e+01 -0.10712456e+01 -0.60250058e+00 0.13957000e+00
- 2 111 660 661 -0.18857051e+00 -0.12964356e+00 -0.81978194e-01 0.13498000e+00
- 1 -211 0 0 -0.23634676e+00 -0.23831979e-01 -0.79160435e+00 0.13957000e+00
- 2 111 662 663 -0.15153457e+01 -0.49848489e+00 -0.16037341e+01 0.13498000e+00
- 1 -211 0 0 -0.54727887e+00 -0.21720601e+00 -0.67802971e+00 0.13957000e+00
- 1 211 0 0 -0.13123140e+01 -0.65475444e+00 -0.22883195e+01 0.13957000e+00
- 2 111 664 665 -0.25612790e+01 -0.14907699e+01 -0.34704035e+01 0.13498000e+00
- 1 -211 0 0 -0.38361634e+00 0.15491659e+00 -0.54017659e+00 0.13957000e+00
- 2 111 666 667 0.27318738e+00 0.91545398e-01 -0.13138531e+00 0.13498000e+00
- 1 211 0 0 -0.10779683e-01 -0.75816543e-01 -0.66280784e+00 0.13957000e+00
- 1 -211 0 0 0.21284166e+00 0.24182024e+00 0.51809513e-01 0.13957000e+00
- 1 22 0 0 0.20286791e+00 -0.13990792e+00 -0.52389444e-01 0.00000000e+00
- 1 22 0 0 0.18181409e-01 -0.10639035e+00 -0.55715953e-01 0.00000000e+00
- 2 310 668 669 0.11069576e+00 -0.16754760e+00 0.27081002e+03 0.49767000e+00
- 2 -311 670 670 0.47072600e+00 0.47267407e+00 0.29937404e+03 0.49767000e+00
- 1 -211 0 0 0.22331444e+00 -0.19517761e+00 0.72767670e+02 0.13957000e+00
- 1 211 0 0 0.11790846e+00 0.40402324e+00 0.15586966e+03 0.13957000e+00
- 2 111 671 672 -0.34648077e+00 -0.33101303e+00 0.20800738e+03 0.13498000e+00
- 1 -211 0 0 -0.39714457e+00 0.93955169e-02 0.48526226e+02 0.13957000e+00
- 1 211 0 0 -0.70942163e+00 0.45094647e+00 0.31940220e+02 0.13957000e+00
- 1 321 0 0 -0.29799072e+00 0.13798772e+00 0.49651651e+01 0.49360000e+00
- 1 -211 0 0 -0.47263729e+00 0.11897909e+00 0.12074930e+02 0.13957000e+00
- 1 -321 0 0 -0.68465599e+00 0.38141889e+00 0.11250668e+02 0.49360000e+00
- 1 211 0 0 -0.13478445e+01 0.67414945e+00 0.21461737e+02 0.13957000e+00
- 1 22 0 0 -0.98111786e-02 -0.41215404e-01 -0.32141388e-01 0.00000000e+00
- 1 22 0 0 -0.17503524e+00 -0.12552493e+00 0.10288016e+00 0.00000000e+00
- 1 22 0 0 -0.34247026e+00 0.60779118e+00 0.86880347e+00 0.00000000e+00
- 1 22 0 0 -0.48410465e+00 0.60163193e+00 0.86289755e+00 0.00000000e+00
- 2 311 673 673 -0.77704949e-01 0.87452988e+00 0.21495463e+00 0.49767000e+00
- 1 211 0 0 -0.54647969e+00 0.98241796e+00 0.57082209e+00 0.13957000e+00
- 2 -311 674 674 -0.63066901e+00 0.73933420e+00 0.75312637e+00 0.49767000e+00
- 1 -211 0 0 0.63959022e-01 0.57709365e+00 0.34123915e+00 0.13957000e+00
- 2 311 675 675 -0.23320530e+00 0.86817096e+00 0.17449499e+01 0.49767000e+00
- 1 211 0 0 0.27647950e+00 0.75725257e+00 0.93578122e+00 0.13957000e+00
- 2 -311 676 676 -0.17637798e+00 0.44394633e+00 0.63477276e+00 0.49767000e+00
- 2 111 677 678 0.67961468e-01 0.89876170e+00 0.77636572e+00 0.13498000e+00
- 1 22 0 0 0.21448231e+00 0.36434714e+00 0.10201516e+01 0.00000000e+00
- 1 22 0 0 0.36986382e-01 -0.34458584e-02 0.80169209e-01 0.00000000e+00
- 1 321 0 0 -0.61794127e-01 0.23364975e+00 0.37405438e+00 0.49360000e+00
- 1 -211 0 0 0.55785511e-01 0.10286613e+01 0.10081676e+01 0.13957000e+00
- 1 -321 0 0 -0.45354330e+00 0.10683014e+01 0.14751389e+01 0.49360000e+00
- 2 111 679 680 -0.56554300e-02 -0.11655053e+00 0.42780957e-01 0.13498000e+00
- 1 321 0 0 -0.37758549e+00 0.47032043e+00 0.96967537e+00 0.49360000e+00
- 2 111 681 682 0.45067479e-01 0.18127064e+00 0.10888261e+01 0.13498000e+00
- 1 211 0 0 -0.66215276e-01 -0.12896449e+00 0.31404341e+00 0.13957000e+00
- 1 -211 0 0 -0.13985706e+00 0.11264356e+00 0.19956113e+00 0.13957000e+00
- 2 111 683 684 -0.14822227e+00 -0.53300355e-01 0.13955768e+00 0.13498000e+00
- 1 211 0 0 0.18812771e+00 0.66836592e-03 0.60804325e+00 0.13957000e+00
- 1 -211 0 0 -0.43478233e+00 -0.58938085e+00 0.10573737e+01 0.13957000e+00
- 2 111 685 686 -0.13653553e+00 -0.32671244e+00 0.25168768e+01 0.13498000e+00
- 2 111 687 688 -0.23503641e+00 -0.73744852e-01 0.14031755e+01 0.13498000e+00
- 2 111 689 690 -0.20932946e+00 -0.22277314e+00 0.14006357e+01 0.13498000e+00
- 2 -311 691 691 -0.16897325e+00 0.20849591e-01 0.56615553e+01 0.49767000e+00
- 2 111 692 693 -0.15429162e+00 -0.38876760e+00 0.50737555e+01 0.13498000e+00
- 2 -3122 694 695 -0.12270966e+01 -0.17179155e+01 0.19297817e+02 0.11156800e+01
- 1 -211 0 0 -0.34792286e-01 -0.15573926e+00 0.34425256e+01 0.13957000e+00
- 1 211 0 0 -0.16064026e-01 0.53608187e-01 0.11259900e+02 0.13957000e+00
- 1 -211 0 0 -0.34799658e+00 0.50224008e-01 0.11837075e+02 0.13957000e+00
- 2 111 696 697 -0.63021822e-01 0.39202064e+00 0.10318596e+02 0.13498000e+00
- 1 -211 0 0 0.17766668e+00 -0.31867482e+00 0.26753679e+02 0.13957000e+00
- 1 211 0 0 -0.49341094e+00 -0.22989160e+00 0.22707693e+02 0.13957000e+00
- 1 22 0 0 -0.70115627e-01 0.36791824e-01 0.17078136e+01 0.00000000e+00
- 1 22 0 0 -0.71128348e-01 0.13570949e+00 0.92188238e+01 0.00000000e+00
- 1 211 0 0 -0.10422734e-01 0.47573923e-01 0.79805826e+01 0.13957000e+00
- 1 -211 0 0 -0.81878138e-01 -0.33569385e-01 0.71961835e+01 0.13957000e+00
- 2 111 698 699 -0.26618751e+00 0.20596201e+00 0.25813341e+02 0.13498000e+00
- 1 130 0 0 -0.76685660e+00 0.57662569e-01 0.10467233e+03 0.49767000e+00
- 1 211 0 0 -0.83347344e+00 0.41607484e-01 0.14648105e+03 0.13957000e+00
- 1 -211 0 0 -0.32972816e+00 0.12925162e+00 0.10133013e+03 0.13957000e+00
- 2 111 700 701 -0.15702416e+01 -0.27691508e+00 0.29117065e+03 0.13498000e+00
- 2 311 702 702 -0.79107548e+00 0.51034145e-01 0.15769056e+03 0.49767000e+00
- 1 211 0 0 -0.13806257e+01 -0.21164630e+00 0.24634076e+03 0.13957000e+00
- 1 321 0 0 -0.59112730e+00 -0.58354521e+00 0.15969061e+03 0.49360000e+00
- 1 -211 0 0 -0.40602476e-01 -0.52995433e+00 0.53071292e+02 0.13957000e+00
- 1 -321 0 0 0.11184812e+00 -0.37210409e-01 0.21402314e+02 0.49360000e+00
- 2 111 703 704 0.13740174e+00 -0.33252591e+00 0.63442264e+01 0.13498000e+00
- 1 211 0 0 0.58296165e+00 0.16064926e+00 0.80992076e+01 0.13957000e+00
- 2 111 705 706 0.77181494e+00 -0.35294908e+00 0.23780295e+02 0.13498000e+00
- 1 22 0 0 -0.16916290e+00 0.15373002e+00 0.16197735e+01 0.00000000e+00
- 1 22 0 0 -0.12698399e-01 0.14874717e+00 0.10524679e+01 0.00000000e+00
- 1 -211 0 0 0.42872745e+00 -0.26819455e+00 0.25141088e+01 0.13957000e+00
- 2 111 707 708 0.26029103e+00 -0.21796691e+00 0.57803698e+01 0.13498000e+00
- 1 211 0 0 0.12655212e+01 0.15316454e+00 0.65432437e+01 0.13957000e+00
- 1 -211 0 0 0.35275875e+01 -0.58746073e+00 0.18913021e+02 0.13957000e+00
- 2 311 709 709 0.57693221e+00 -0.71680224e-01 0.23491828e+01 0.49767000e+00
- 1 211 0 0 0.80129333e-01 0.24823489e+00 0.43355501e+00 0.13957000e+00
- 1 321 0 0 0.19581887e+01 0.88610032e+00 0.71652148e+01 0.49360000e+00
- 1 -321 0 0 0.18801417e+01 0.59638033e+00 0.64269837e+01 0.49360000e+00
- 1 130 0 0 0.72435546e+00 -0.29465753e+00 0.96401399e+00 0.49767000e+00
- 2 310 710 711 0.47790207e+00 -0.55821090e+00 0.18748015e+01 0.49767000e+00
- 1 -321 0 0 0.13746920e+01 -0.64175603e+00 0.32536136e+01 0.49360000e+00
- 2 111 712 713 0.99715629e-01 -0.16170598e+00 0.24534211e+00 0.13498000e+00
- 1 22 0 0 0.56497192e-01 0.53043883e-01 0.35648824e-01 0.00000000e+00
- 1 22 0 0 -0.70622484e-01 0.15539795e+00 0.10620907e+00 0.00000000e+00
- 1 211 0 0 0.42452658e+00 -0.20453989e+00 0.21372300e+00 0.13957000e+00
- 1 -211 0 0 0.17433084e+01 -0.17600586e+01 0.29401997e+01 0.13957000e+00
- 1 211 0 0 0.13950957e+01 -0.17782816e+01 0.13994990e+01 0.13957000e+00
- 2 111 714 715 0.22350400e+00 -0.80960287e+00 0.12484678e+00 0.13498000e+00
- 1 -211 0 0 -0.13822198e+00 0.11661722e+00 0.18795653e+00 0.13957000e+00
- 2 111 716 717 0.60594876e+00 -0.52548740e+00 0.47651982e+00 0.13498000e+00
- 1 22 0 0 0.36503787e+01 0.50349498e+00 0.33717380e+00 0.00000000e+00
- 1 22 0 0 0.84262127e-01 0.31389848e-01 0.70377630e-03 0.00000000e+00
- 1 211 0 0 0.83790903e+00 -0.35442634e-01 0.34230257e+00 0.13957000e+00
- 1 -211 0 0 0.66336338e+00 0.29849020e+00 -0.25448950e+00 0.13957000e+00
- 2 311 718 718 0.18001939e+01 0.92224217e+00 0.17973828e+00 0.49767000e+00
- 1 211 0 0 0.35635697e+01 0.15330339e+01 0.17610630e+00 0.13957000e+00
- 1 -321 0 0 -0.50664836e-01 0.97286912e+00 -0.15220002e+01 0.49360000e+00
- 1 211 0 0 0.10408561e-01 -0.13264327e+00 -0.59016111e+00 0.13957000e+00
- 1 2112 0 0 -0.12172251e+00 0.14990733e+01 -0.47075297e+01 0.93957000e+00
- 2 111 719 720 0.45810485e-01 0.34252904e+00 -0.15965904e+01 0.13498000e+00
- 1 22 0 0 -0.11704230e+00 0.16557728e+00 -0.25017030e+01 0.00000000e+00
- 1 22 0 0 0.12635186e-01 -0.12020225e-01 -0.74940655e-01 0.00000000e+00
- 1 2212 0 0 -0.92408588e-01 0.53772874e+00 -0.77543330e+01 0.93827000e+00
- 2 111 721 722 0.30958989e+00 0.10651327e+00 -0.25239735e+01 0.13498000e+00
- 1 -2212 0 0 -0.17317284e+00 0.48489367e+00 -0.84492710e+01 0.93827000e+00
- 1 -211 0 0 0.18496122e+00 0.83730266e-02 -0.14077771e+01 0.13957000e+00
- 1 321 0 0 -0.62996955e+00 0.54841564e+00 -0.18515892e+02 0.49360000e+00
- 2 111 723 724 -0.81898516e-01 0.39973006e+00 -0.90222427e+01 0.13498000e+00
- 1 -321 0 0 -0.36612151e+00 0.34422978e+00 -0.19390925e+02 0.49360000e+00
- 1 211 0 0 0.10913832e+00 0.14027788e+00 -0.19999860e+01 0.13957000e+00
- 1 22 0 0 -0.35728585e+00 0.40355834e+00 -0.22299495e+02 0.00000000e+00
- 1 22 0 0 -0.11535132e+00 0.18671716e+00 -0.63888208e+01 0.00000000e+00
- 2 -311 725 725 -0.65338998e+00 0.11540265e+01 -0.40104629e+02 0.49767000e+00
- 1 -211 0 0 0.78458572e-01 0.69723826e-02 -0.40018215e+01 0.13957000e+00
- 1 22 0 0 -0.61577543e+00 0.52632321e+00 -0.67587926e+02 0.00000000e+00
- 1 22 0 0 -0.38903965e+00 -0.10975706e+00 -0.28741334e+02 0.00000000e+00
- 1 22 0 0 0.15658535e-01 0.16761504e+00 -0.21977788e+02 0.00000000e+00
- 1 22 0 0 -0.11617896e+00 0.24799372e+00 -0.25344865e+02 0.00000000e+00
- 2 -311 726 726 -0.50375637e+00 -0.44985632e+00 -0.23901558e+03 0.49767000e+00
- 2 111 727 728 0.45237179e-01 0.16440378e+00 -0.59317738e+02 0.13498000e+00
- 1 -211 0 0 0.18725120e+00 0.29862387e+00 -0.32359296e+02 0.13957000e+00
- 1 211 0 0 0.46680175e+00 -0.12006347e+00 -0.13224370e+03 0.13957000e+00
- 1 -211 0 0 -0.91696122e-01 0.70331149e-01 -0.16066618e+03 0.13957000e+00
- 2 111 729 730 -0.42860537e+00 -0.10215137e+00 -0.82861243e+02 0.13498000e+00
- 1 211 0 0 -0.49983651e-01 -0.13462235e+00 -0.16744509e+03 0.13957000e+00
- 1 -211 0 0 -0.22420725e+00 0.17131541e+00 -0.36315113e+02 0.13957000e+00
- 2 311 731 731 0.16114981e+00 0.10961877e+00 -0.43936146e+02 0.49767000e+00
- 1 211 0 0 0.22712597e+00 -0.21580636e+00 -0.71816972e+02 0.13957000e+00
- 2 3122 732 733 0.24268739e+00 -0.69945469e+00 -0.20913881e+02 0.11156800e+01
- 1 211 0 0 -0.73717817e-01 -0.91127086e-01 -0.72346847e+01 0.13957000e+00
- 1 -211 0 0 0.46158334e-01 -0.29148105e-01 -0.75794496e+00 0.13957000e+00
- 2 111 734 735 -0.25410222e+00 0.47526935e+00 -0.15800339e+02 0.13498000e+00
- 1 -2112 0 0 0.67130540e+00 -0.29235730e+00 -0.16843348e+02 0.93957000e+00
- 2 111 736 737 0.36425993e-02 -0.10760300e+00 -0.23661900e+01 0.13498000e+00
- 1 130 0 0 0.37771193e+00 -0.83114454e-01 -0.47162072e+01 0.49767000e+00
- 1 211 0 0 -0.15450640e+00 -0.44494933e+00 -0.24048172e+01 0.13957000e+00
- 1 -211 0 0 0.15994280e+00 -0.11844462e+00 -0.24437315e+01 0.13957000e+00
- 2 111 738 739 0.20809280e+00 -0.12460940e+00 -0.11282872e+01 0.13498000e+00
- 1 22 0 0 0.63096729e+00 -0.11432478e+01 -0.72141121e+01 0.00000000e+00
- 1 22 0 0 0.15158032e+00 -0.28959889e+00 -0.22229050e+01 0.00000000e+00
- 1 22 0 0 0.62743422e-01 -0.23286252e+00 -0.38728492e+00 0.00000000e+00
- 1 22 0 0 0.17221866e+00 -0.30102156e+00 -0.86034493e+00 0.00000000e+00
- 2 -311 740 740 -0.37818407e+00 -0.13702251e+01 -0.13138024e+02 0.49767000e+00
- 1 -211 0 0 -0.28538967e+00 -0.15526256e+00 -0.23206168e+01 0.13957000e+00
- 1 2212 0 0 -0.14798668e+00 0.43239349e+00 -0.93570779e+01 0.93827000e+00
- 2 111 741 742 0.14828448e+00 0.18425253e+00 -0.39013818e+01 0.13498000e+00
- 2 -3122 743 744 0.19141953e+00 -0.46245604e+00 -0.14427683e+02 0.11156800e+01
- 1 22 0 0 -0.32533169e-01 0.14790290e-01 -0.13197159e+00 0.00000000e+00
- 1 -211 0 0 -0.14799691e+00 0.75082809e-01 -0.77296010e+01 0.13957000e+00
- 1 211 0 0 -0.36641274e-01 -0.51038404e-01 -0.32311271e+02 0.13957000e+00
- 2 111 745 746 0.21813783e+00 0.48268737e-01 -0.14414526e+02 0.13498000e+00
- 2 111 747 748 0.58134406e-01 -0.10700298e+00 -0.25534047e+02 0.13498000e+00
- 2 111 749 751 0.12034971e+00 -0.44533184e-01 -0.95253828e+01 0.13498000e+00
- 2 111 752 753 0.17312516e+00 -0.31086933e+00 -0.28177977e+02 0.13498000e+00
- 1 -211 0 0 -0.26594159e+00 -0.35362570e+00 -0.27066322e+03 0.13957000e+00
- 1 211 0 0 -0.27908843e+00 0.31255976e+00 -0.36814906e+03 0.13957000e+00
- 1 2212 0 0 -0.73376792e+00 -0.16725111e+00 -0.33895734e+03 0.93827000e+00
- 1 211 0 0 0.54096009e-01 0.52950491e-01 -0.13824046e+02 0.13957000e+00
- 1 -211 0 0 0.41292607e+00 -0.26245082e+00 -0.11349607e+04 0.13957000e+00
- 2 111 754 755 -0.21133041e+00 0.12918831e+00 -0.27196228e+03 0.13498000e+00
- 1 22 0 0 0.13077200e+01 0.13665090e+01 -0.21517798e+02 0.00000000e+00
- 1 22 0 0 0.20232844e+02 0.21840031e+02 -0.34136583e+03 0.00000000e+00
- 1 2212 0 0 0.16406313e+01 0.27456122e+01 -0.48568022e+02 0.93827000e+00
- 1 -211 0 0 0.17067303e+00 0.37357084e+00 -0.51157499e+01 0.13957000e+00
- 1 22 0 0 0.50625213e+00 0.55974109e+00 -0.90350390e+01 0.00000000e+00
- 1 22 0 0 0.24095750e+00 0.31287121e+00 -0.59764108e+01 0.00000000e+00
- 2 -3122 756 757 0.46853941e+01 0.56659701e+01 -0.99476814e+02 0.11156800e+01
- 1 211 0 0 0.88757122e+00 0.12653014e+01 -0.19351287e+02 0.13957000e+00
- 1 22 0 0 0.74891931e-01 0.78731253e-01 -0.19480035e+01 0.00000000e+00
- 1 22 0 0 0.11027346e+01 0.15533821e+01 -0.26338589e+02 0.00000000e+00
- 1 130 0 0 0.12916568e+01 0.24016782e+01 -0.33402239e+02 0.49767000e+00
- 1 22 0 0 -0.96506190e-01 0.21173646e+00 -0.18125637e+01 0.00000000e+00
- 1 22 0 0 0.16110992e-01 0.26593555e+00 -0.26554403e+01 0.00000000e+00
- 1 -211 0 0 0.12523629e+00 0.17307955e+00 -0.70496865e+01 0.13957000e+00
- 1 211 0 0 0.83132952e-01 0.67165768e+00 -0.44381749e+01 0.13957000e+00
- 1 22 0 0 0.18018884e+00 0.45350056e-01 -0.27786672e+01 0.00000000e+00
- 1 22 0 0 0.23249454e-01 0.83968334e-01 -0.18228074e+01 0.00000000e+00
- 1 22 0 0 -0.62916437e-01 -0.45618329e-02 -0.99459406e-01 0.00000000e+00
- 1 22 0 0 -0.45654909e+00 -0.43583693e+00 -0.10165905e+01 0.00000000e+00
- 1 22 0 0 -0.51104476e-01 -0.86786202e-01 -0.34459516e+00 0.00000000e+00
- 1 22 0 0 -0.41291267e+00 -0.22390068e+00 -0.11538305e+01 0.00000000e+00
- 1 22 0 0 -0.26081309e-02 -0.38871034e-01 -0.77262013e-01 0.00000000e+00
- 1 22 0 0 -0.52333657e+00 -0.38837398e+00 -0.14753053e+01 0.00000000e+00
- 1 22 0 0 -0.25708594e+00 -0.22942330e+00 -0.46796946e+00 0.00000000e+00
- 1 22 0 0 -0.85437229e-01 0.45802404e-02 -0.14614522e+00 0.00000000e+00
- 1 22 0 0 0.12232650e-01 -0.17385886e-01 -0.57566289e-01 0.00000000e+00
- 1 22 0 0 0.44733127e+00 -0.13403010e-01 -0.34505739e+00 0.00000000e+00
- 1 130 0 0 0.29003246e+00 -0.37039259e+01 -0.75927832e+00 0.49767000e+00
- 1 22 0 0 0.35119956e+00 -0.14055187e+02 -0.21889717e+01 0.00000000e+00
- 1 22 0 0 0.14163566e-01 -0.67449899e+00 -0.75330430e-01 0.00000000e+00
- 1 -211 0 0 -0.32604237e+00 -0.40686567e+00 -0.92464576e-01 0.13957000e+00
- 1 211 0 0 -0.74655707e-01 -0.48701787e+00 0.22418481e+00 0.13957000e+00
- 1 211 0 0 0.20244366e+00 -0.88280631e+00 -0.10043183e+00 0.13957000e+00
- 1 -211 0 0 -0.17270429e+00 -0.10172404e+01 -0.29091528e+00 0.13957000e+00
- 1 22 0 0 0.27479205e+00 -0.13427360e+00 -0.24765379e+00 0.00000000e+00
- 1 22 0 0 0.91885059e-01 -0.10790523e+00 -0.22408140e+00 0.00000000e+00
- 1 22 0 0 -0.19030191e-01 -0.29652954e-01 -0.19075021e-01 0.00000000e+00
- 1 22 0 0 0.18519816e+00 -0.39117996e-01 -0.71028652e-01 0.00000000e+00
- 1 22 0 0 -0.43468806e-01 0.21963099e-02 -0.27643310e-01 0.00000000e+00
- 1 22 0 0 0.82483857e-01 -0.27303200e-01 -0.18709806e+00 0.00000000e+00
- 1 22 0 0 -0.29506519e-01 -0.93337394e-01 -0.80596600e-01 0.00000000e+00
- 1 -11 0 0 -0.76722462e-02 0.92745900e-03 -0.22208879e-01 0.51000000e-03
- 1 11 0 0 0.35317096e-01 0.16587258e-01 -0.73804530e-02 0.51000000e-03
- 1 22 0 0 0.16905821e-01 -0.67842412e-01 0.40235249e-01 0.00000000e+00
- 1 22 0 0 0.31879124e+00 -0.28483633e+00 0.17156522e-01 0.00000000e+00
- 1 2112 0 0 0.39942251e+00 -0.34012365e+00 -0.22263650e+00 0.93957000e+00
- 2 111 758 759 0.94038711e-01 -0.14380840e+00 0.51879846e-01 0.13498000e+00
- 1 22 0 0 0.98430534e-01 -0.35142869e-01 0.13667774e+00 0.00000000e+00
- 1 22 0 0 0.34850151e+00 0.12922938e+00 0.46488087e+00 0.00000000e+00
- 1 22 0 0 0.15025101e+00 -0.26064417e+00 0.28696659e+00 0.00000000e+00
- 1 22 0 0 0.46605685e-01 -0.49080153e-01 0.18587965e+00 0.00000000e+00
- 1 -211 0 0 -0.10594485e-01 0.49882660e+00 -0.58736575e+00 0.13957000e+00
- 1 211 0 0 -0.38067232e-01 0.21262242e+00 0.15395739e-01 0.13957000e+00
- 1 211 0 0 0.14924586e+00 -0.91382084e-01 -0.16719101e+00 0.13957000e+00
- 1 -211 0 0 -0.21308510e+00 -0.52343752e-01 0.25875269e-01 0.13957000e+00
- 1 22 0 0 -0.11234532e+00 0.97605402e-01 0.83718618e+01 0.00000000e+00
- 1 22 0 0 -0.15514776e+00 0.26971778e-01 0.44593540e+01 0.00000000e+00
- 1 22 0 0 -0.88666312e-02 -0.23144220e-01 0.48176922e+00 0.00000000e+00
- 1 22 0 0 0.76586439e-01 0.70274131e-01 0.10282388e+02 0.00000000e+00
- 1 22 0 0 0.48879110e-01 -0.16758947e-01 0.82258461e+01 0.00000000e+00
- 1 22 0 0 0.62781894e-01 0.43837824e-01 0.21736747e+01 0.00000000e+00
- 1 22 0 0 0.29913494e-01 -0.12516563e-01 0.59356639e+01 0.00000000e+00
- 1 22 0 0 0.73686025e-01 -0.24071893e+00 0.14411328e+02 0.00000000e+00
- 1 22 0 0 0.62384669e-02 0.49668433e-02 0.26986699e+00 0.00000000e+00
- 1 22 0 0 0.15362531e+00 0.18679546e+00 0.92630293e+02 0.00000000e+00
- 1 22 0 0 -0.29750707e-01 -0.29976232e-01 0.24095953e+03 0.00000000e+00
- 1 22 0 0 0.40564047e-01 0.10223318e+00 0.47072743e+03 0.00000000e+00
- 1 22 0 0 0.73115297e-01 0.90215944e-01 0.29429453e+01 0.00000000e+00
- 1 22 0 0 -0.12422073e-01 0.19995646e+00 0.83780582e+01 0.00000000e+00
- 1 22 0 0 0.10296132e+00 0.52867837e+00 0.12192796e+02 0.00000000e+00
- 1 22 0 0 -0.43912500e-01 0.22093008e+00 0.49331353e+01 0.00000000e+00
- 1 22 0 0 -0.37991937e-01 0.38103303e+00 0.10518547e+02 0.00000000e+00
- 1 22 0 0 0.85337094e-01 0.35434198e+00 0.11486846e+02 0.00000000e+00
- 1 22 0 0 0.41537641e-01 0.11884678e-01 0.45165321e+00 0.00000000e+00
- 1 22 0 0 0.25109465e-01 -0.50194725e-01 0.45590450e+01 0.00000000e+00
- 1 22 0 0 -0.19658252e+00 0.17652031e+00 0.15701366e+01 0.00000000e+00
- 1 22 0 0 -0.14750793e-01 0.51404982e-01 0.83117843e+00 0.00000000e+00
- 1 22 0 0 -0.23573661e+00 0.12773759e+00 0.76073792e+00 0.00000000e+00
- 1 22 0 0 0.18242781e-01 0.43148079e-02 0.35819113e-01 0.00000000e+00
- 1 22 0 0 -0.10039955e-01 -0.23081729e-01 0.99041337e-01 0.00000000e+00
- 1 22 0 0 -0.14555035e+00 0.16465567e+00 0.16880993e+01 0.00000000e+00
- 1 22 0 0 -0.10746328e+00 0.59499841e-01 0.38226866e+00 0.00000000e+00
- 1 22 0 0 -0.53357590e-02 0.15167468e+00 0.51550136e+00 0.00000000e+00
- 1 22 0 0 -0.25790134e-02 0.31651794e-01 0.11661664e-01 0.00000000e+00
- 1 22 0 0 -0.16042039e+00 -0.37823116e-01 0.31350644e+00 0.00000000e+00
- 1 22 0 0 -0.62193243e+00 -0.48324851e+00 0.58665777e-01 0.00000000e+00
- 1 22 0 0 -0.18439917e+00 -0.16557706e+00 -0.55377995e-01 0.00000000e+00
- 1 22 0 0 -0.17453252e-01 -0.87559105e-01 -0.22724206e-01 0.00000000e+00
- 1 22 0 0 -0.17111725e+00 -0.42084456e-01 -0.59253989e-01 0.00000000e+00
- 1 22 0 0 -0.97603859e+00 -0.38850452e+00 -0.10553717e+01 0.00000000e+00
- 1 22 0 0 -0.53930712e+00 -0.10998036e+00 -0.54836241e+00 0.00000000e+00
- 1 22 0 0 -0.13791164e+01 -0.76116678e+00 -0.19316528e+01 0.00000000e+00
- 1 22 0 0 -0.11821626e+01 -0.72960312e+00 -0.15387507e+01 0.00000000e+00
- 1 22 0 0 0.19353069e+00 0.73030429e-01 -0.15571032e+00 0.00000000e+00
- 1 22 0 0 0.79656692e-01 0.18514969e-01 0.24325009e-01 0.00000000e+00
- 1 211 0 0 0.25853493e-01 0.66036753e-01 0.34021735e+02 0.13957000e+00
- 1 -211 0 0 0.84842263e-01 -0.23358435e+00 0.23678828e+03 0.13957000e+00
- 1 130 0 0 0.47072600e+00 0.47267407e+00 0.29937404e+03 0.49767000e+00
- 1 22 0 0 -0.25941879e+00 -0.30228836e+00 0.15260592e+03 0.00000000e+00
- 1 22 0 0 -0.87061983e-01 -0.28724664e-01 0.55401459e+02 0.00000000e+00
- 2 310 760 761 -0.77704949e-01 0.87452988e+00 0.21495463e+00 0.49767000e+00
- 1 130 0 0 -0.63066901e+00 0.73933420e+00 0.75312637e+00 0.49767000e+00
- 1 130 0 0 -0.23320530e+00 0.86817096e+00 0.17449499e+01 0.49767000e+00
- 1 130 0 0 -0.17637798e+00 0.44394633e+00 0.63477276e+00 0.49767000e+00
- 1 22 0 0 0.11426515e-01 0.10847314e+00 0.15888323e+00 0.00000000e+00
- 1 22 0 0 0.56534953e-01 0.79028857e+00 0.61748249e+00 0.00000000e+00
- 1 22 0 0 0.52566033e-01 -0.10120428e+00 0.88854865e-02 0.00000000e+00
- 1 22 0 0 -0.58221463e-01 -0.15346248e-01 0.33895470e-01 0.00000000e+00
- 1 22 0 0 0.44143137e-01 0.74968675e-01 0.20425360e+00 0.00000000e+00
- 1 22 0 0 0.92434234e-03 0.10630197e+00 0.88457255e+00 0.00000000e+00
- 1 22 0 0 -0.13232714e+00 0.17451878e-01 0.76042900e-01 0.00000000e+00
- 1 22 0 0 -0.15895128e-01 -0.70752233e-01 0.63514780e-01 0.00000000e+00
- 1 22 0 0 -0.76832677e-01 -0.97689388e-01 0.53290645e+00 0.00000000e+00
- 1 22 0 0 -0.59702854e-01 -0.22902305e+00 0.19839703e+01 0.00000000e+00
- 1 22 0 0 -0.10354463e+00 -0.99851575e-01 0.62177832e+00 0.00000000e+00
- 1 22 0 0 -0.13149178e+00 0.26106723e-01 0.78139717e+00 0.00000000e+00
- 1 22 0 0 -0.90474374e-02 -0.28046610e-01 0.39904643e+00 0.00000000e+00
- 1 22 0 0 -0.20028202e+00 -0.19472653e+00 0.10015893e+01 0.00000000e+00
- 1 130 0 0 -0.16897325e+00 0.20849591e-01 0.56615553e+01 0.49767000e+00
- 1 22 0 0 -0.13097851e+00 -0.31003676e+00 0.45675999e+01 0.00000000e+00
- 1 22 0 0 -0.23313110e-01 -0.78730838e-01 0.50615567e+00 0.00000000e+00
- 1 -2212 0 0 -0.11042417e+01 -0.15554449e+01 0.16519787e+02 0.93827000e+00
- 1 211 0 0 -0.12285494e+00 -0.16247055e+00 0.27780293e+01 0.13957000e+00
- 1 22 0 0 -0.81827519e-01 0.36891823e+00 0.86468848e+01 0.00000000e+00
- 1 22 0 0 0.18805697e-01 0.23102406e-01 0.16717111e+01 0.00000000e+00
- 1 22 0 0 -0.17555362e+00 0.12729086e+00 0.11503342e+02 0.00000000e+00
- 1 22 0 0 -0.90633887e-01 0.78671150e-01 0.14309999e+02 0.00000000e+00
- 1 22 0 0 -0.53552790e+00 -0.32748838e-01 0.94202927e+02 0.00000000e+00
- 1 22 0 0 -0.10347137e+01 -0.24416624e+00 0.19696772e+03 0.00000000e+00
- 2 310 762 763 -0.79107548e+00 0.51034145e-01 0.15769056e+03 0.49767000e+00
- 1 22 0 0 0.64763650e-01 -0.13996654e+00 0.38742656e+01 0.00000000e+00
- 1 22 0 0 0.72638093e-01 -0.19255937e+00 0.24699608e+01 0.00000000e+00
- 1 22 0 0 0.41478006e+00 -0.11547486e+00 0.11885613e+02 0.00000000e+00
- 1 22 0 0 0.35703488e+00 -0.23747422e+00 0.11894681e+02 0.00000000e+00
- 1 22 0 0 0.26987951e+00 -0.20104769e+00 0.50105671e+01 0.00000000e+00
- 1 22 0 0 -0.95884722e-02 -0.16919223e-01 0.76980270e+00 0.00000000e+00
- 2 310 764 765 0.57693221e+00 -0.71680224e-01 0.23491828e+01 0.49767000e+00
- 1 -211 0 0 0.33247630e+00 -0.50317649e+00 0.16726685e+01 0.13957000e+00
- 1 211 0 0 0.14542577e+00 -0.55034403e-01 0.20213301e+00 0.13957000e+00
- 1 22 0 0 -0.21429625e-01 -0.40593678e-01 0.11283644e+00 0.00000000e+00
- 1 22 0 0 0.12114525e+00 -0.12111230e+00 0.13250567e+00 0.00000000e+00
- 1 22 0 0 0.72590456e-01 -0.47366911e+00 0.33651642e-01 0.00000000e+00
- 1 22 0 0 0.15091355e+00 -0.33593376e+00 0.91195143e-01 0.00000000e+00
- 1 22 0 0 0.52155555e+00 -0.50367577e+00 0.40952010e+00 0.00000000e+00
- 1 22 0 0 0.84393210e-01 -0.21811628e-01 0.66999723e-01 0.00000000e+00
- 2 310 766 767 0.18001939e+01 0.92224217e+00 0.17973828e+00 0.49767000e+00
- 1 22 0 0 0.45995596e-01 0.16744163e+00 -0.10750649e+01 0.00000000e+00
- 1 22 0 0 -0.18511118e-03 0.17508740e+00 -0.52152549e+00 0.00000000e+00
- 1 22 0 0 0.14957819e+00 -0.16970245e-01 -0.11939752e+01 0.00000000e+00
- 1 22 0 0 0.16001170e+00 0.12348351e+00 -0.13299983e+01 0.00000000e+00
- 1 22 0 0 -0.82725793e-01 0.12680589e+00 -0.25640540e+01 0.00000000e+00
- 1 22 0 0 0.82727670e-03 0.27292417e+00 -0.64581887e+01 0.00000000e+00
- 1 130 0 0 -0.65338998e+00 0.11540265e+01 -0.40104629e+02 0.49767000e+00
- 2 310 768 769 -0.50375637e+00 -0.44985632e+00 -0.23901558e+03 0.49767000e+00
- 1 22 0 0 -0.24466721e-01 0.29672935e-01 -0.38687308e+01 0.00000000e+00
- 1 22 0 0 0.69703900e-01 0.13473085e+00 -0.55449007e+02 0.00000000e+00
- 1 22 0 0 -0.31002016e-01 0.21894633e-01 -0.11779673e+02 0.00000000e+00
- 1 22 0 0 -0.39760336e+00 -0.12404600e+00 -0.71081570e+02 0.00000000e+00
- 1 130 0 0 0.16114981e+00 0.10961877e+00 -0.43936146e+02 0.49767000e+00
- 1 2112 0 0 0.11805331e+00 -0.64861324e+00 -0.18141754e+02 0.93957000e+00
- 2 111 770 771 0.12463409e+00 -0.50841451e-01 -0.27721277e+01 0.13498000e+00
- 1 22 0 0 0.10110296e-01 0.12714728e-01 -0.10932966e+01 0.00000000e+00
- 1 22 0 0 -0.26421252e+00 0.46255463e+00 -0.14707043e+02 0.00000000e+00
- 1 22 0 0 0.39889885e-01 -0.30606194e-02 -0.23196540e+00 0.00000000e+00
- 1 22 0 0 -0.36247286e-01 -0.10454238e+00 -0.21342246e+01 0.00000000e+00
- 1 22 0 0 0.10178174e-01 0.18664929e-01 -0.29849001e-01 0.00000000e+00
- 1 22 0 0 0.19791463e+00 -0.14327433e+00 -0.10984382e+01 0.00000000e+00
- 1 130 0 0 -0.37818407e+00 -0.13702251e+01 -0.13138024e+02 0.49767000e+00
- 1 22 0 0 0.12147935e+00 0.20497913e+00 -0.33694054e+01 0.00000000e+00
- 1 22 0 0 0.26805123e-01 -0.20726599e-01 -0.53197644e+00 0.00000000e+00
- 1 -2212 0 0 0.17713216e+00 -0.49821283e+00 -0.12899554e+02 0.93827000e+00
- 1 211 0 0 0.14287375e-01 0.35756789e-01 -0.15281292e+01 0.13957000e+00
- 1 22 0 0 0.41998507e-01 -0.31723896e-01 -0.55653650e+01 0.00000000e+00
- 1 22 0 0 0.17613932e+00 0.79992634e-01 -0.88491611e+01 0.00000000e+00
- 1 22 0 0 -0.16871204e-01 -0.86786139e-01 -0.18636655e+02 0.00000000e+00
- 1 22 0 0 0.75005610e-01 -0.20216842e-01 -0.68973919e+01 0.00000000e+00
- 1 22 0 0 0.37168802e-01 -0.18680267e-01 -0.83641994e+00 0.00000000e+00
- 1 -11 0 0 0.58039344e-01 -0.24858383e-02 -0.76485417e+01 0.51000000e-03
- 1 11 0 0 0.25141567e-01 -0.23367079e-01 -0.10404211e+01 0.51000000e-03
- 1 22 0 0 0.13538645e+00 -0.11092545e+00 -0.11578794e+02 0.00000000e+00
- 1 22 0 0 0.37738710e-01 -0.19994388e+00 -0.16599183e+02 0.00000000e+00
- 1 22 0 0 -0.11539973e+00 0.14451101e+00 -0.17803698e+03 0.00000000e+00
- 1 22 0 0 -0.95930675e-01 -0.15322695e-01 -0.93925303e+02 0.00000000e+00
- 1 -2112 0 0 0.42997598e+01 0.52297552e+01 -0.92271649e+02 0.93957000e+00
- 2 111 772 773 0.38563434e+00 0.43621487e+00 -0.72051657e+01 0.13498000e+00
- 1 22 0 0 -0.66773721e-02 -0.90737481e-01 -0.15493444e-01 0.00000000e+00
- 1 22 0 0 0.10071608e+00 -0.53070918e-01 0.67373290e-01 0.00000000e+00
- 1 -211 0 0 0.14319845e+00 0.27549627e+00 -0.10319955e-01 0.13957000e+00
- 1 211 0 0 -0.22090340e+00 0.59903361e+00 0.22527458e+00 0.13957000e+00
- 2 111 774 775 -0.33235468e+00 -0.18191877e+00 0.72898313e+02 0.13498000e+00
- 2 111 776 777 -0.45872079e+00 0.23295291e+00 0.84792245e+02 0.13498000e+00
- 2 111 778 779 0.11130275e+00 -0.58064231e-01 0.22021835e+00 0.13498000e+00
- 2 111 780 781 0.46562946e+00 -0.13615993e-01 0.21289644e+01 0.13498000e+00
- 1 211 0 0 0.41936079e+00 0.65953910e-01 -0.22761602e-01 0.13957000e+00
- 1 -211 0 0 0.13808331e+01 0.85628826e+00 0.20249988e+00 0.13957000e+00
- 2 111 782 783 -0.35528327e+00 -0.49860349e+00 -0.19083525e+03 0.13498000e+00
- 2 111 784 785 -0.14847310e+00 0.48747169e-01 -0.48180332e+02 0.13498000e+00
- 1 22 0 0 0.40510110e-01 0.45523256e-01 -0.72673607e+00 0.00000000e+00
- 1 22 0 0 0.84123976e-01 -0.96364707e-01 -0.20453916e+01 0.00000000e+00
- 1 22 0 0 0.94764465e-01 0.17814596e+00 -0.30138055e+01 0.00000000e+00
- 1 22 0 0 0.29086987e+00 0.25806891e+00 -0.41913602e+01 0.00000000e+00
- 1 22 0 0 -0.11456524e+00 -0.22503859e-01 0.32391050e+02 0.00000000e+00
- 1 22 0 0 -0.21778944e+00 -0.15941491e+00 0.40507264e+02 0.00000000e+00
- 1 22 0 0 -0.81542812e-01 -0.30890872e-02 0.93472580e+01 0.00000000e+00
- 1 22 0 0 -0.37717798e+00 0.23604200e+00 0.75444987e+02 0.00000000e+00
- 1 22 0 0 0.73207875e-01 0.34569174e-01 0.72284337e-01 0.00000000e+00
- 1 22 0 0 0.38094874e-01 -0.92633405e-01 0.14793402e+00 0.00000000e+00
- 1 22 0 0 0.43236706e+00 -0.76809441e-02 0.20768934e+01 0.00000000e+00
- 1 22 0 0 0.33262401e-01 -0.59350488e-02 0.52071017e-01 0.00000000e+00
- 1 22 0 0 -0.25240700e+00 -0.23925651e+00 -0.10795027e+03 0.00000000e+00
- 1 22 0 0 -0.10287627e+00 -0.25934698e+00 -0.82884972e+02 0.00000000e+00
- 1 22 0 0 -0.52882458e-01 0.18392798e-01 -0.35557025e+02 0.00000000e+00
- 1 22 0 0 -0.95590643e-01 0.30354371e-01 -0.12623307e+02 0.00000000e+00
- 618
- 2 25 2 3 0.12113277e+02 -0.20530254e+02 -0.37606631e+03 0.12500339e+03
- 2 23 4 8 0.69650909e+01 -0.31346539e+02 -0.33200458e+03 0.92414069e+02
- 2 23 9 14 0.51481857e+01 0.10816285e+02 -0.44061729e+02 0.22479402e+02
- 1 22 0 0 0.57479932e-01 -0.40949317e-01 -0.23616830e+00 0.00000000e+00
- 1 -13 0 0 -0.41391331e+02 -0.36349246e+01 -0.14345182e+03 0.10566000e+00
- 1 22 0 0 -0.27199668e+00 -0.30547445e+00 -0.21981301e+01 0.00000000e+00
- 1 13 0 0 0.48570929e+02 -0.27365184e+02 -0.18611839e+03 0.10566000e+00
- 1 22 0 0 0.90516851e-05 -0.63226879e-05 -0.69179600e-04 0.00000000e+00
- 1 22 0 0 0.41874165e-07 0.15682316e-07 -0.11116092e-06 0.00000000e+00
- 1 -11 0 0 0.51267134e+01 0.24593745e+01 -0.41867957e+02 0.51000000e-03
- 1 22 0 0 0.39095749e-03 0.16381173e-03 -0.30668093e-02 0.00000000e+00
- 1 22 0 0 0.45235968e-08 -0.38720597e-09 -0.76175328e-09 0.00000000e+00
- 1 11 0 0 0.21081284e-01 0.83567469e+01 -0.21907047e+01 0.51000000e-03
- 1 22 0 0 0.10843016e-07 0.23016543e-08 -0.10944008e-08 0.00000000e+00
- 2 2203 80 80 -0.83759426e+00 0.81255947e+00 0.21491715e+04 0.77133000e+00
- 2 21 80 80 -0.88613910e+00 -0.10251297e+01 0.10135315e+02 0.00000000e+00
- 2 21 80 80 -0.22617735e+01 -0.32004397e+00 0.17370704e+01 0.00000000e+00
- 2 21 80 80 -0.34682089e+01 -0.19245933e+01 0.41299323e+01 0.00000000e+00
- 2 21 80 80 -0.87583866e+00 -0.89237127e+00 0.23746403e+01 0.00000000e+00
- 2 21 80 80 0.65530127e+00 -0.18485731e+01 0.79349104e+01 0.00000000e+00
- 2 21 80 80 0.12471637e+00 -0.21426900e+01 0.89519520e+01 0.00000000e+00
- 2 21 80 80 -0.32482255e+01 -0.32610650e+01 0.16723647e+02 0.00000000e+00
- 2 21 80 80 -0.26287256e+01 -0.67877849e+00 0.20726371e+02 0.00000000e+00
- 2 21 80 80 -0.14933532e+01 0.22654708e+00 0.13187759e+02 0.00000000e+00
- 2 21 80 80 0.19116920e+00 -0.42983424e+00 0.54519502e+01 0.00000000e+00
- 2 21 80 80 -0.15331182e+01 -0.15503904e+01 0.84813094e+02 0.00000000e+00
- 2 21 80 80 -0.35017000e+01 -0.13926819e+01 0.24072225e+03 0.00000000e+00
- 2 21 80 80 -0.29611335e+00 -0.96051926e+00 0.14327135e+03 0.00000000e+00
- 2 21 80 80 -0.55737408e+00 -0.13480337e+01 0.44504097e+03 0.00000000e+00
- 2 21 80 80 0.29611335e+00 0.96051926e+00 0.14159676e+03 0.00000000e+00
- 2 21 80 80 0.35017000e+01 0.13926819e+01 0.11681070e+03 0.00000000e+00
- 2 21 80 80 0.32482255e+01 0.32610650e+01 0.10290488e+03 0.00000000e+00
- 2 21 80 80 0.30987457e+00 0.10515736e+01 0.13089043e+02 0.00000000e+00
- 2 21 80 80 -0.65530127e+00 0.18485731e+01 0.94001696e+01 0.00000000e+00
- 2 21 80 80 0.87970980e+00 0.20475406e-01 0.39469079e+01 0.00000000e+00
- 2 21 80 80 0.34682089e+01 0.19245933e+01 0.17177117e+02 0.00000000e+00
- 2 21 80 80 0.11815651e+01 0.12748106e+01 0.66216306e+01 0.00000000e+00
- 2 21 80 80 0.15331182e+01 0.15503904e+01 0.72907393e+01 0.00000000e+00
- 2 21 80 80 0.15868705e+02 0.68723277e+01 0.31468548e+02 0.00000000e+00
- 2 21 80 80 0.75521686e-01 0.80762679e+00 0.57009236e+00 0.00000000e+00
- 2 21 80 80 0.26287256e+01 0.67877849e+00 0.44795292e+00 0.00000000e+00
- 2 21 80 80 0.14933532e+01 -0.22654708e+00 0.47100842e-01 0.00000000e+00
- 2 21 80 80 0.39424335e+01 -0.10691199e+01 -0.43651207e+01 0.00000000e+00
- 2 21 80 80 0.26476879e+01 0.30143752e+00 -0.45113995e+01 0.00000000e+00
- 2 21 80 80 0.22617735e+01 0.32004397e+00 -0.88811852e+01 0.00000000e+00
- 2 21 80 80 0.50317020e+00 -0.85987987e+00 -0.22707076e+02 0.00000000e+00
- 2 21 80 80 0.68772680e+00 -0.23379537e+00 -0.47393473e+02 0.00000000e+00
- 2 21 80 80 0.12292385e+01 0.23657733e+00 -0.35133920e+03 0.00000000e+00
- 2 2 80 80 -0.11983977e+01 -0.68220020e+00 -0.14917414e+02 0.33000000e+00
- 2 1 150 150 -0.69691588e-01 0.11475434e+01 0.31505621e+04 0.33000000e+00
- 2 21 150 150 0.47445628e+00 -0.10424880e+01 0.93222452e+02 0.00000000e+00
- 2 21 150 150 -0.83252090e+00 -0.47374894e+00 0.99538687e+02 0.00000000e+00
- 2 21 150 150 -0.11912181e+02 0.21813934e+02 0.15503808e+02 0.00000000e+00
- 2 21 150 150 -0.91115721e+00 0.97615309e+00 0.17574912e+01 0.00000000e+00
- 2 21 150 150 0.70291822e+00 0.51058659e+00 -0.19860600e+00 0.00000000e+00
- 2 21 150 150 0.28364044e+01 -0.46106026e+00 -0.47631847e+01 0.00000000e+00
- 2 21 150 150 0.79541624e+00 -0.27253584e+00 -0.10089751e+01 0.00000000e+00
- 2 21 150 150 0.10204547e+01 -0.28706464e+01 -0.31935639e+01 0.00000000e+00
- 2 21 150 150 -0.75521686e-01 -0.80762679e+00 -0.95682359e+00 0.00000000e+00
- 2 21 150 150 -0.30987457e+00 -0.10515736e+01 -0.92553670e+00 0.00000000e+00
- 2 21 150 150 -0.39424335e+01 0.10691199e+01 -0.28377515e+00 0.00000000e+00
- 2 21 150 150 -0.26476879e+01 -0.30143752e+00 -0.41653678e+01 0.00000000e+00
- 2 21 150 150 -0.15868705e+02 -0.68723277e+01 -0.91663345e+02 0.00000000e+00
- 2 21 150 150 -0.11815651e+01 -0.12748106e+01 -0.39008532e+02 0.00000000e+00
- 2 21 150 150 -0.21032473e-01 -0.11572084e+01 -0.81311959e+02 0.00000000e+00
- 2 21 150 150 -0.72209774e+00 -0.12343847e+01 -0.18230006e+03 0.00000000e+00
- 2 21 150 150 0.21032473e-01 0.11572084e+01 -0.42963733e+03 0.00000000e+00
- 2 21 150 150 0.87583866e+00 0.89237127e+00 -0.10576991e+04 0.00000000e+00
- 2 21 150 150 0.24804533e+00 0.28257935e+00 -0.11839766e+01 0.00000000e+00
- 2 21 150 150 -0.52795757e+00 0.43227258e+00 -0.54197091e+01 0.00000000e+00
- 2 21 150 150 -0.16232123e+01 0.16995873e+01 -0.59323331e+01 0.00000000e+00
- 2 2101 150 150 -0.18122559e+01 0.53994586e+00 -0.41268018e+04 0.57933000e+00
- 2 21 217 217 0.75637608e+01 -0.13876146e+01 -0.69915196e+02 0.00000000e+00
- 2 21 217 217 0.55737408e+00 0.13480337e+01 -0.18324371e+01 0.00000000e+00
- 2 21 217 217 0.72209774e+00 0.12343847e+01 -0.13429991e+01 0.00000000e+00
- 2 21 217 217 -0.12471637e+00 0.21426900e+01 -0.29669736e+01 0.00000000e+00
- 2 21 217 217 -0.19116920e+00 0.42983424e+00 -0.26402275e+00 0.00000000e+00
- 2 21 217 217 -0.75637608e+01 0.13876146e+01 -0.20189268e+02 0.00000000e+00
- 2 21 217 217 -0.87970980e+00 -0.20475406e-01 -0.31828134e+01 0.00000000e+00
- 2 92 81 149 0.23286175e+02 0.26943340e+01 0.31516294e+04 0.25867266e+04
- 2 213 231 232 -0.54961249e+00 0.34962533e+00 0.10498050e+04 0.53709086e+00
- 1 2212 0 0 -0.20300129e+00 0.14664412e-02 0.41939806e+03 0.93827000e+00
- 2 -213 233 234 -0.36447986e+00 0.52499820e+00 0.36854121e+03 0.77380457e+00
- 2 -313 235 236 0.50316852e+00 -0.39772980e+00 0.15680848e+03 0.90732569e+00
- 2 311 237 237 0.61918162e-01 -0.10594384e+00 0.93194714e+02 0.49767000e+00
- 2 113 238 239 -0.65702407e+00 -0.10132373e+00 0.50543307e+02 0.79260241e+00
- 1 211 0 0 -0.97073866e-01 0.13337704e+00 0.47747163e+00 0.13957000e+00
- 2 -213 240 241 -0.23742413e+00 -0.20283942e+00 0.15779826e+02 0.78255527e+00
- 2 113 242 243 -0.31010544e+00 -0.29004065e+00 0.19531955e+01 0.73886622e+00
- 2 213 244 245 -0.16143706e+01 -0.12487518e+00 0.34229664e+01 0.76252087e+00
- 1 -2212 0 0 -0.13472927e+01 -0.17084086e+01 0.27106924e+01 0.93827000e+00
- 2 223 246 248 -0.23199130e+00 -0.44372747e+00 0.12823072e+01 0.78037510e+00
- 2 2114 249 250 -0.89579691e+00 -0.43663828e+00 0.28187823e+01 0.12600275e+01
- 2 111 251 252 -0.12193384e+01 -0.75390450e+00 0.18769857e+01 0.13498000e+00
- 2 213 253 254 -0.38839346e+00 -0.30115160e+00 0.16418933e+01 0.80889667e+00
- 1 -321 0 0 0.11753130e+00 -0.40970674e+00 0.16027255e+01 0.49360000e+00
- 2 313 255 256 -0.11104040e+01 -0.19539414e+01 0.79425489e+01 0.92651369e+00
- 2 213 257 258 -0.84252190e+00 -0.18989334e+01 0.11821347e+02 0.83088097e+00
- 2 223 259 261 -0.43580592e+00 -0.30778867e+00 0.48560719e+01 0.77370506e+00
- 1 -211 0 0 -0.53920678e+00 -0.10731700e+01 0.40751759e+01 0.13957000e+00
- 2 -311 262 262 -0.65452721e+00 0.44675423e-02 0.68953030e+01 0.49767000e+00
- 2 323 263 264 -0.11427692e+01 -0.12187543e+01 0.84079446e+01 0.88738905e+00
- 2 223 265 266 -0.67600131e+00 -0.25868983e+00 0.44860500e+01 0.78047105e+00
- 2 -213 267 268 -0.16642589e+01 -0.37196173e+00 0.35199560e+02 0.81719214e+00
- 2 113 269 270 -0.90175782e+00 -0.40770114e+00 0.20478300e+02 0.80492238e+00
- 2 223 271 272 -0.28936389e+00 -0.16950809e+00 0.24722198e+02 0.80481699e+00
- 2 213 273 274 -0.45061058e+00 -0.66424062e+00 0.24817285e+02 0.90367531e+00
- 1 -211 0 0 -0.24961976e+01 -0.14682123e+01 0.14847738e+03 0.13957000e+00
- 2 221 275 276 -0.13976685e+01 -0.74906474e+00 0.19397531e+03 0.54745000e+00
- 1 211 0 0 -0.31041383e+00 -0.16826005e+01 0.27753700e+03 0.13957000e+00
- 2 -213 277 278 0.13375511e+00 0.48289571e+00 0.17523442e+03 0.63639960e+00
- 2 113 279 280 -0.29755100e+00 0.23009328e+00 0.11120098e+03 0.83450057e+00
- 2 -313 281 282 0.21900769e+01 0.86667842e+00 0.77286108e+02 0.85488374e+00
- 2 311 283 283 -0.57389704e-01 0.17766832e+00 0.14403318e+02 0.49767000e+00
- 2 -313 284 285 0.19850198e+01 0.12861525e+01 0.84908577e+02 0.88494660e+00
- 2 323 286 287 0.72771015e+00 0.11316777e+01 0.56057932e+02 0.91315213e+00
- 2 113 288 289 0.70335143e+00 0.43245262e+00 0.12663915e+02 0.72990890e+00
- 2 221 290 291 0.58431215e+00 0.12363919e+01 0.38776519e+02 0.54745000e+00
- 2 223 292 294 0.51925345e+00 0.87847715e+00 0.83465044e+01 0.78091192e+00
- 2 -213 295 296 0.91911563e-01 0.12662244e+01 0.12267092e+02 0.97949907e+00
- 1 211 0 0 0.47983816e+00 -0.85206281e-01 0.30940857e+01 0.13957000e+00
- 2 -213 297 298 0.20724258e+01 0.19655580e+01 0.12006015e+02 0.69834097e+00
- 2 -311 299 299 0.12188389e+01 0.39855790e+00 0.60977610e+01 0.49767000e+00
- 2 323 300 301 0.35895568e+01 0.20580710e+01 0.94376366e+01 0.77412320e+00
- 2 113 302 303 0.12079032e+01 0.12029718e+01 0.61129717e+01 0.83403916e+00
- 1 -2212 0 0 0.32186078e+01 0.13235627e+01 0.69849897e+01 0.93827000e+00
- 1 2212 0 0 0.32781971e+01 0.15586321e+01 0.82598382e+01 0.93827000e+00
- 2 -323 304 305 0.29061895e+01 0.60584858e+00 0.66671874e+01 0.92477583e+00
- 2 323 306 307 0.36381972e+01 0.29429125e+01 0.77847966e+01 0.94739790e+00
- 2 -213 308 309 0.31126829e+01 0.78745813e+00 0.21582786e+01 0.69954374e+00
- 2 -3114 310 311 0.48212459e+00 -0.42205364e+00 -0.11028777e+01 0.13905602e+01
- 1 -321 0 0 0.13915759e+01 -0.17268138e+00 -0.54217251e+00 0.49360000e+00
- 1 2212 0 0 0.20479148e+01 0.79919906e+00 -0.77048908e+00 0.93827000e+00
- 1 -2212 0 0 0.13392012e+01 0.76257467e-01 -0.14663127e+01 0.93827000e+00
- 1 2112 0 0 0.36351609e+01 -0.10843009e+01 -0.50886245e+01 0.93957000e+00
- 1 211 0 0 0.39864850e-02 0.28029300e+00 -0.59458632e+01 0.13957000e+00
- 2 223 312 314 0.85186787e+00 -0.13709461e+00 -0.80890056e+01 0.78957202e+00
- 1 -211 0 0 -0.49627277e+00 0.88497612e-01 -0.32628475e+01 0.13957000e+00
- 1 211 0 0 0.82018147e+00 0.67894075e-01 -0.36223469e+01 0.13957000e+00
- 2 223 315 317 0.51032012e+00 -0.45714749e+00 -0.53758543e+01 0.78534112e+00
- 1 -321 0 0 0.66412885e+00 0.59349865e+00 -0.88489615e+01 0.49360000e+00
- 2 333 318 319 0.19107414e+00 -0.43073680e-01 -0.17274547e+02 0.10197643e+01
- 1 321 0 0 0.98382710e-01 0.26307049e-01 -0.29287876e+02 0.49360000e+00
- 1 -211 0 0 0.73869593e+00 -0.26149229e+00 -0.10690295e+03 0.13957000e+00
- 2 -311 320 320 0.47281501e+00 0.35560216e+00 -0.28241886e+02 0.49767000e+00
- 1 321 0 0 -0.31574220e-01 -0.88066255e+00 -0.73958904e+02 0.49360000e+00
- 2 -2214 321 322 0.30523848e+00 0.19472404e+00 -0.10064410e+03 0.12457568e+01
- 2 -213 323 324 -0.25568511e+00 0.23891065e+00 -0.27832269e+02 0.53351777e+00
- 2 2224 325 326 -0.44105486e+00 -0.82849964e+00 -0.25410713e+02 0.12426799e+01
- 2 92 151 216 -0.35483328e+02 0.12701452e+02 -0.26758694e+04 0.90338800e+04
- 2 113 327 328 0.20690059e+00 0.10185415e+00 0.16893035e+04 0.10669316e+01
- 2 3114 329 330 -0.66301915e+00 0.54811622e+00 0.74849242e+03 0.14117744e+01
- 2 213 331 332 0.25693608e+00 -0.12275315e+00 0.24409856e+03 0.90726840e+00
- 2 -3224 333 334 -0.14071489e+00 -0.29519288e+00 0.26293586e+03 0.13819208e+01
- 2 213 335 336 -0.19212733e+00 0.13204276e+00 0.98893162e+02 0.62459322e+00
- 2 -213 337 338 -0.38546601e-01 0.14404408e-01 0.12212044e+03 0.68112702e+00
- 2 113 339 340 0.47663119e+00 -0.11282668e+00 0.54722740e+02 0.84651472e+00
- 1 211 0 0 -0.10354000e+00 0.16866527e+00 0.88521730e+01 0.13957000e+00
- 2 313 341 342 0.41466526e+00 -0.48571460e+00 0.37371841e+02 0.96314915e+00
- 2 -323 343 344 -0.16116607e+00 0.73387655e+00 0.20243806e+02 0.89513975e+00
- 1 211 0 0 -0.47153750e+00 -0.66521573e+00 0.13878123e+02 0.13957000e+00
- 2 313 345 346 0.13611720e+00 0.11454801e+00 0.18496919e+02 0.91553079e+00
- 1 -321 0 0 -0.61474610e+00 -0.59248096e-01 0.24483827e+02 0.49360000e+00
- 2 213 347 348 -0.37435347e+01 0.79532716e+01 0.51331571e+01 0.72292722e+00
- 2 223 349 350 -0.18990007e+01 0.30071456e+01 0.26864197e+01 0.79648021e+00
- 1 -211 0 0 -0.41349050e+00 0.26978334e+00 0.49991422e+00 0.13957000e+00
- 2 213 351 352 -0.27085003e+01 0.46086652e+01 0.33263664e+01 0.80845212e+00
- 2 221 353 355 -0.10318944e+01 0.21575629e+01 0.15656102e+01 0.54745000e+00
- 2 221 356 359 -0.13063357e+01 0.30215801e+01 0.17864588e+01 0.54745000e+00
- 2 113 360 361 0.29591963e+00 0.50790048e+00 -0.31734561e-01 0.70082342e+00
- 1 -211 0 0 -0.29386710e+00 0.25925396e+00 0.22747855e-01 0.13957000e+00
- 1 211 0 0 -0.47301022e+00 0.80080975e+00 0.71117935e+00 0.13957000e+00
- 2 113 362 363 -0.29240919e+00 0.53850338e+00 -0.73293699e-01 0.81599617e+00
- 1 -211 0 0 0.15200917e+01 -0.62020319e+00 -0.17585147e+01 0.13957000e+00
- 2 223 364 366 0.53915103e+00 -0.82949979e+00 -0.14790666e+01 0.78493099e+00
- 2 223 367 369 0.90447443e+00 -0.77456259e+00 -0.87127910e+00 0.78263346e+00
- 2 113 370 371 0.13750590e+01 -0.35842780e+00 -0.19583306e+01 0.56312286e+00
- 2 213 372 373 -0.32088937e+00 -0.11857695e+01 -0.16722953e+01 0.68314863e+00
- 1 -211 0 0 -0.11769411e+00 -0.87188866e+00 0.45040945e-01 0.13957000e+00
- 2 213 374 375 -0.60871641e-01 -0.89721184e-02 -0.12760169e+01 0.51953657e+00
- 2 -213 376 377 -0.88806288e+00 0.18663006e+00 -0.93444946e+00 0.68460550e+00
- 2 2214 378 379 -0.75931454e+00 -0.77085489e+00 -0.82680421e+00 0.11992057e+01
- 2 111 380 381 -0.33121592e+00 0.11147152e+00 -0.18730570e+00 0.13498000e+00
- 1 -2112 0 0 -0.17709080e+01 0.51007706e+00 -0.46580022e+00 0.93957000e+00
- 2 113 382 383 -0.72183582e+00 -0.59119721e+00 -0.14953889e+01 0.69810192e+00
- 2 313 384 385 -0.19002323e+01 -0.12050780e+00 -0.58566482e+01 0.89294295e+00
- 2 -311 386 386 -0.24497025e+00 -0.50163529e+00 -0.32441446e+01 0.49767000e+00
- 2 -213 387 388 -0.43605218e+01 -0.17036619e+01 -0.24579527e+02 0.75502789e+00
- 1 211 0 0 -0.22502599e+01 -0.10906534e+01 -0.11736392e+02 0.13957000e+00
- 1 -211 0 0 -0.27686176e+00 -0.59799974e-01 -0.12166143e+01 0.13957000e+00
- 1 211 0 0 -0.55362583e+00 0.24749584e+00 -0.28301322e+01 0.13957000e+00
- 1 2212 0 0 -0.60741012e+01 -0.24244067e+01 -0.37910946e+02 0.93827000e+00
- 2 -213 389 390 -0.16055829e+01 -0.92269186e+00 -0.11812017e+02 0.85926994e+00
- 1 -2112 0 0 -0.74215511e+00 -0.66415564e+00 -0.29226257e+02 0.93957000e+00
- 2 -213 391 392 0.16692832e+00 -0.75311639e+00 -0.55132025e+02 0.81433295e+00
- 2 213 393 394 -0.16850251e+00 0.15380615e-01 -0.47121990e+02 0.60687536e+00
- 2 -213 395 396 0.23115707e+00 -0.74202506e+00 -0.31251313e+02 0.95393956e+00
- 2 111 397 398 -0.13501726e+01 -0.43591963e+00 -0.44347009e+02 0.13498000e+00
- 1 211 0 0 0.75940291e-01 -0.66523617e-01 -0.12882155e+02 0.13957000e+00
- 2 113 399 400 -0.21618544e-01 0.89375925e-01 -0.21239890e+03 0.81751716e+00
- 2 1114 401 402 0.13288357e+00 0.36151339e+00 -0.59163988e+03 0.11218883e+01
- 2 223 403 405 -0.74807417e-01 0.59297639e-01 -0.80371701e+02 0.78438161e+00
- 2 -1114 406 407 0.56377705e+00 0.40681336e+00 -0.63150132e+03 0.11711667e+01
- 2 113 408 409 0.53133893e+00 0.33184593e+00 -0.28953552e+02 0.85632301e+00
- 2 313 410 411 -0.72301271e+00 0.35094689e+00 -0.11804589e+02 0.90070687e+00
- 2 3212 412 413 -0.10422511e+01 0.62988866e+00 -0.11169691e+02 0.11925500e+01
- 2 -2114 414 415 0.45157169e+00 -0.18047276e+00 -0.56514964e+01 0.11349010e+01
- 2 311 416 416 -0.86378649e+00 0.62047182e+00 -0.83409722e+01 0.49767000e+00
- 2 -311 417 417 -0.18567868e+00 0.57735046e+00 -0.32152406e+01 0.49767000e+00
- 2 331 418 420 0.97618835e-01 0.13665648e+00 -0.23886349e+02 0.95775217e+00
- 2 -213 421 422 -0.45591934e+00 0.22167132e+00 -0.23024290e+03 0.79483923e+00
- 2 111 423 424 0.86954422e-01 -0.30794386e+00 -0.11390104e+03 0.13498000e+00
- 2 111 425 426 -0.33698588e+00 -0.21139696e+00 -0.42970506e+02 0.13498000e+00
- 2 323 427 428 0.21656163e+00 0.36026076e+00 -0.54985050e+03 0.89780564e+00
- 2 3122 429 430 -0.85343294e+00 0.51036731e+00 -0.74253778e+03 0.11156800e+01
- 2 111 431 432 -0.56129367e+00 -0.26808475e-01 -0.24149258e+04 0.13498000e+00
- 2 92 218 230 0.83876447e-01 0.51344673e+01 -0.99693711e+02 0.28259010e+02
- 2 221 433 434 0.47884264e+00 -0.78437094e-01 -0.46108012e+01 0.54745000e+00
- 2 223 435 437 0.84914158e+00 0.55920077e-01 -0.59822013e+01 0.75935250e+00
- 2 213 438 439 0.46212796e+00 0.54615066e+00 -0.79325296e+01 0.66906970e+00
- 2 -323 440 441 0.67680885e+00 0.77217568e+00 -0.13959643e+01 0.87813036e+00
- 2 311 442 442 0.71113970e+00 0.16428722e+01 -0.17037493e+01 0.49767000e+00
- 2 223 443 445 -0.11511132e+00 0.87668412e+00 -0.21449877e+01 0.77964225e+00
- 2 213 446 447 -0.18480521e+01 0.17476240e+01 -0.72329436e+01 0.83359035e+00
- 2 -323 448 449 -0.25544457e+01 0.24837099e-03 -0.61996865e+01 0.87073806e+00
- 2 323 450 451 -0.36433309e+01 0.61664210e+00 -0.90405494e+01 0.84740099e+00
- 2 223 452 454 0.81524376e+00 -0.58451611e+00 -0.14435488e+02 0.78464176e+00
- 1 -211 0 0 0.12362562e+01 -0.85718736e-01 -0.73572699e+01 0.13957000e+00
- 1 211 0 0 0.26755683e+01 -0.12191151e+00 -0.30450499e+02 0.13957000e+00
- 1 -211 0 0 0.33968749e+00 -0.25326645e+00 -0.12070413e+01 0.13957000e+00
- 1 211 0 0 -0.35449610e+00 0.41460062e-01 0.30940474e+03 0.13957000e+00
- 2 111 455 456 -0.19511639e+00 0.30816527e+00 0.74040027e+03 0.13498000e+00
- 1 -211 0 0 0.21155361e+00 0.16420312e+00 0.13534413e+03 0.13957000e+00
- 2 111 457 458 -0.57603347e+00 0.36079509e+00 0.23319708e+03 0.13498000e+00
- 1 -321 0 0 0.17300164e+00 -0.43981041e+00 0.12541941e+03 0.49360000e+00
- 1 211 0 0 0.33016688e+00 0.42080609e-01 0.31389064e+02 0.13957000e+00
- 1 130 0 0 0.61918162e-01 -0.10594384e+00 0.93194714e+02 0.49767000e+00
- 1 211 0 0 -0.72462726e+00 -0.10580528e+00 0.48039152e+02 0.13957000e+00
- 1 -211 0 0 0.67603188e-01 0.44815433e-02 0.25041552e+01 0.13957000e+00
- 1 -211 0 0 0.11078732e+00 -0.23852467e+00 0.12045845e+02 0.13957000e+00
- 2 111 459 460 -0.34821144e+00 0.35685256e-01 0.37339809e+01 0.13498000e+00
- 1 -211 0 0 -0.16986357e-01 0.12564864e+00 0.12015794e+00 0.13957000e+00
- 1 211 0 0 -0.29311909e+00 -0.41568929e+00 0.18330375e+01 0.13957000e+00
- 1 211 0 0 -0.13233665e+01 -0.16647980e+00 0.20327248e+01 0.13957000e+00
- 2 111 461 462 -0.29100408e+00 0.41604615e-01 0.13902415e+01 0.13498000e+00
- 1 -211 0 0 -0.20499405e-01 -0.41440648e+00 0.55264356e+00 0.13957000e+00
- 1 211 0 0 -0.29158931e+00 0.10158072e-01 0.44818113e+00 0.13957000e+00
- 2 111 463 464 0.80097408e-01 -0.39479065e-01 0.28148249e+00 0.13498000e+00
- 1 2212 0 0 -0.47756695e+00 -0.44595139e+00 0.22583168e+01 0.93827000e+00
- 1 -211 0 0 -0.41822996e+00 0.93131130e-02 0.56046550e+00 0.13957000e+00
- 1 22 0 0 -0.28152248e+00 -0.12435883e+00 0.34517913e+00 0.00000000e+00
- 1 22 0 0 -0.93781597e+00 -0.62954568e+00 0.15318065e+01 0.00000000e+00
- 1 211 0 0 0.97131108e-01 -0.38503824e+00 0.57847491e+00 0.13957000e+00
- 2 111 465 466 -0.48552457e+00 0.83886637e-01 0.10634184e+01 0.13498000e+00
- 1 321 0 0 -0.11653133e+01 -0.16613149e+01 0.65265237e+01 0.49360000e+00
- 1 -211 0 0 0.54909310e-01 -0.29262652e+00 0.14160251e+01 0.13957000e+00
- 1 211 0 0 -0.31614730e+00 -0.15159592e+01 0.89378857e+01 0.13957000e+00
- 2 111 467 468 -0.52637459e+00 -0.38297417e+00 0.28834609e+01 0.13498000e+00
- 1 -211 0 0 -0.34899272e+00 -0.36695149e+00 0.30149301e+01 0.13957000e+00
- 1 211 0 0 -0.84081153e-01 0.16700468e+00 0.11488142e+01 0.13957000e+00
- 2 111 469 470 -0.27320450e-02 -0.10784187e+00 0.69232758e+00 0.13498000e+00
- 2 310 471 472 -0.65452721e+00 0.44675423e-02 0.68953030e+01 0.49767000e+00
- 2 311 473 473 -0.64583903e+00 -0.60443522e+00 0.58470097e+01 0.49767000e+00
- 1 211 0 0 -0.49693017e+00 -0.61431912e+00 0.25609349e+01 0.13957000e+00
- 1 -211 0 0 -0.72457915e+00 -0.36542016e+00 0.29167284e+01 0.13957000e+00
- 1 211 0 0 0.48577840e-01 0.10673033e+00 0.15693216e+01 0.13957000e+00
- 1 -211 0 0 -0.53436320e+00 0.23617135e+00 0.11008413e+02 0.13957000e+00
- 2 111 474 475 -0.11298957e+01 -0.60813308e+00 0.24191147e+02 0.13498000e+00
- 1 -211 0 0 0.94369240e-01 0.37785435e-01 0.23378024e+01 0.13957000e+00
- 1 211 0 0 -0.99612706e+00 -0.44548657e+00 0.18140497e+02 0.13957000e+00
- 1 22 0 0 -0.24852761e+00 -0.15763930e+00 0.28969540e+01 0.00000000e+00
- 2 111 476 477 -0.40836279e-01 -0.11868781e-01 0.21825244e+02 0.13498000e+00
- 1 211 0 0 -0.31917730e-01 -0.11953153e+00 0.89771314e+00 0.13957000e+00
- 2 111 478 479 -0.41869285e+00 -0.54470910e+00 0.23919572e+02 0.13498000e+00
- 1 22 0 0 -0.11675570e+01 -0.39698117e+00 0.15753418e+03 0.00000000e+00
- 1 22 0 0 -0.23011153e+00 -0.35208356e+00 0.36441125e+02 0.00000000e+00
- 1 -211 0 0 0.34049775e+00 0.20516135e+00 0.11073181e+03 0.13957000e+00
- 2 111 480 481 -0.20674264e+00 0.27773436e+00 0.64502609e+02 0.13498000e+00
- 1 -211 0 0 -0.10164777e+00 0.39167067e+00 0.28080069e+02 0.13957000e+00
- 1 211 0 0 -0.19590323e+00 -0.16157739e+00 0.83120909e+02 0.13957000e+00
- 1 -321 0 0 0.11138928e+01 0.52586068e+00 0.48481918e+02 0.49360000e+00
- 1 211 0 0 0.10761841e+01 0.34081774e+00 0.28804190e+02 0.13957000e+00
- 1 130 0 0 -0.57389704e-01 0.17766832e+00 0.14403318e+02 0.49767000e+00
- 1 -321 0 0 0.12418463e+01 0.10741026e+01 0.52311921e+02 0.49360000e+00
- 1 211 0 0 0.74317349e+00 0.21204997e+00 0.32596656e+02 0.13957000e+00
- 2 311 482 482 0.52470574e+00 0.35274944e+00 0.29898337e+02 0.49767000e+00
- 1 211 0 0 0.20300442e+00 0.77892824e+00 0.26159595e+02 0.13957000e+00
- 1 -211 0 0 0.70234031e+00 0.41952535e+00 0.74685154e+01 0.13957000e+00
- 1 211 0 0 0.10111247e-02 0.12927269e-01 0.51953993e+01 0.13957000e+00
- 1 22 0 0 0.35501521e+00 0.35098969e+00 0.19363883e+02 0.00000000e+00
- 1 22 0 0 0.22929695e+00 0.88540219e+00 0.19412636e+02 0.00000000e+00
- 1 -211 0 0 0.36020910e+00 0.26697253e+00 0.27078206e+01 0.13957000e+00
- 1 211 0 0 0.14118464e+00 0.79962034e-01 0.25986133e+01 0.13957000e+00
- 2 111 483 484 0.17859711e-01 0.53154259e+00 0.30400705e+01 0.13498000e+00
- 1 -211 0 0 -0.12810855e-01 0.19835239e+00 0.51166905e+00 0.13957000e+00
- 2 111 485 486 0.10472242e+00 0.10678720e+01 0.11755423e+02 0.13498000e+00
- 1 -211 0 0 0.70991154e+00 0.87213044e+00 0.59263631e+01 0.13957000e+00
- 2 111 487 488 0.13625143e+01 0.10934276e+01 0.60796522e+01 0.13498000e+00
- 2 310 489 490 0.12188389e+01 0.39855790e+00 0.60977610e+01 0.49767000e+00
- 1 321 0 0 0.26544507e+01 0.17111446e+01 0.74150073e+01 0.49360000e+00
- 2 111 491 492 0.93510610e+00 0.34692639e+00 0.20226293e+01 0.13498000e+00
- 1 211 0 0 0.36513042e-01 0.14705409e+00 0.23116711e+00 0.13957000e+00
- 1 -211 0 0 0.11713902e+01 0.10559177e+01 0.58818046e+01 0.13957000e+00
- 2 -311 493 493 0.16370518e+01 0.87925732e-01 0.32954877e+01 0.49767000e+00
- 1 -211 0 0 0.12691376e+01 0.51792285e+00 0.33716996e+01 0.13957000e+00
- 2 311 494 494 0.30838590e+01 0.24625562e+01 0.60135778e+01 0.49767000e+00
- 1 211 0 0 0.55433822e+00 0.48035629e+00 0.17712188e+01 0.13957000e+00
- 1 -211 0 0 0.25443352e+01 0.64660303e+00 0.20186983e+01 0.13957000e+00
- 2 111 495 496 0.56834769e+00 0.14085511e+00 0.13958028e+00 0.13498000e+00
- 2 -3122 497 498 0.36546195e+00 -0.43845209e+00 -0.11471989e+01 0.11156800e+01
- 1 211 0 0 0.11666264e+00 0.16398453e-01 0.44321137e-01 0.13957000e+00
- 1 -211 0 0 0.20524247e+00 -0.12535228e+00 -0.12784608e+01 0.13957000e+00
- 1 211 0 0 0.69928469e+00 -0.31622418e-01 -0.57780601e+01 0.13957000e+00
- 2 111 499 500 -0.52659289e-01 0.19880087e-01 -0.10324846e+01 0.13498000e+00
- 1 -211 0 0 0.74162268e-02 -0.67071528e-02 -0.21295512e+01 0.13957000e+00
- 1 211 0 0 0.19304507e+00 -0.36734248e+00 -0.20302862e+01 0.13957000e+00
- 2 111 501 502 0.30985882e+00 -0.83097848e-01 -0.12160168e+01 0.13498000e+00
- 1 22 0 0 0.38485712e+00 -0.19307139e+00 -0.83008756e+01 0.00000000e+00
- 2 221 503 504 -0.19378298e+00 0.14999771e+00 -0.89736717e+01 0.54745000e+00
- 1 130 0 0 0.47281501e+00 0.35560216e+00 -0.28241886e+02 0.49767000e+00
- 1 -2212 0 0 0.29990651e+00 0.33618267e+00 -0.70010765e+02 0.93827000e+00
- 2 111 505 506 0.53319767e-02 -0.14145863e+00 -0.30633335e+02 0.13498000e+00
- 1 -211 0 0 0.49535721e-01 -0.78885692e-01 -0.97334849e+01 0.13957000e+00
- 2 111 507 508 -0.30522084e+00 0.31779635e+00 -0.18098784e+02 0.13498000e+00
- 1 2212 0 0 -0.40514751e+00 -0.80374942e+00 -0.18282106e+02 0.93827000e+00
- 1 211 0 0 -0.35907348e-01 -0.24750221e-01 -0.71286068e+01 0.13957000e+00
- 1 -211 0 0 -0.98120092e-01 -0.42382088e+00 0.83580826e+03 0.13957000e+00
- 1 211 0 0 0.30502068e+00 0.52567504e+00 0.85349523e+03 0.13957000e+00
- 2 3122 509 510 -0.76024858e+00 0.56631554e+00 0.62931955e+03 0.11156800e+01
- 1 -211 0 0 0.97229429e-01 -0.18199315e-01 0.11917287e+03 0.13957000e+00
- 1 211 0 0 0.14977460e+00 0.17605203e+00 0.23026584e+02 0.13957000e+00
- 2 111 511 512 0.10716149e+00 -0.29880518e+00 0.22107198e+03 0.13498000e+00
- 2 -3122 513 514 -0.53327580e-01 -0.44012821e+00 0.22079216e+03 0.11156800e+01
- 1 -211 0 0 -0.87387314e-01 0.14493533e+00 0.42143700e+02 0.13957000e+00
- 1 211 0 0 0.29724081e-01 0.13072604e+00 0.82195855e+02 0.13957000e+00
- 2 111 515 516 -0.22185141e+00 0.13167103e-02 0.16697307e+02 0.13498000e+00
- 1 -211 0 0 -0.97172294e-02 0.62401263e-01 0.64673815e+01 0.13957000e+00
- 2 111 517 518 -0.28829372e-01 -0.47996855e-01 0.11565305e+03 0.13498000e+00
- 1 211 0 0 -0.17655374e-01 0.22493372e+00 0.74143669e+01 0.13957000e+00
- 1 -211 0 0 0.49428657e+00 -0.33776040e+00 0.47308373e+02 0.13957000e+00
- 1 321 0 0 0.61354211e+00 -0.35927387e+00 0.25437235e+02 0.49360000e+00
- 1 -211 0 0 -0.19887685e+00 -0.12644073e+00 0.11934606e+02 0.13957000e+00
- 2 -311 519 519 -0.25411387e+00 0.69291758e+00 0.12444396e+02 0.49767000e+00
- 1 -211 0 0 0.92947804e-01 0.40958972e-01 0.77994098e+01 0.13957000e+00
- 2 311 520 520 0.27493362e+00 0.44011451e-01 0.16979050e+02 0.49767000e+00
- 2 111 521 522 -0.13881642e+00 0.70536560e-01 0.15178683e+01 0.13498000e+00
- 1 211 0 0 -0.72793139e+00 0.20745836e+01 0.14957675e+01 0.13957000e+00
- 1 22 0 0 -0.30156033e+01 0.58786880e+01 0.36373896e+01 0.00000000e+00
- 1 22 0 0 -0.90511899e+00 0.75321794e+00 0.88366999e+00 0.00000000e+00
- 2 111 523 524 -0.99388167e+00 0.22539277e+01 0.18027497e+01 0.13498000e+00
- 1 211 0 0 -0.23192582e+01 0.42794522e+01 0.28842924e+01 0.13957000e+00
- 2 111 525 526 -0.38924202e+00 0.32921301e+00 0.44207398e+00 0.13498000e+00
- 1 211 0 0 -0.12278046e+00 0.35685194e+00 0.37041392e+00 0.13957000e+00
- 1 -211 0 0 -0.57218578e+00 0.12076361e+01 0.77372834e+00 0.13957000e+00
- 2 111 527 528 -0.33692820e+00 0.59307484e+00 0.42146797e+00 0.13498000e+00
- 1 211 0 0 -0.35185435e+00 0.74490239e+00 0.40760296e+00 0.13957000e+00
- 1 -211 0 0 -0.40917030e+00 0.13742407e+01 0.80598301e+00 0.13957000e+00
- 1 11 0 0 -0.81122231e-01 0.82067250e-01 0.41178970e-01 0.51000000e-03
- 1 -11 0 0 -0.46418878e+00 0.82036979e+00 0.53169387e+00 0.51000000e-03
- 1 211 0 0 -0.16637645e+00 0.54503516e-01 0.90819331e-01 0.13957000e+00
- 1 -211 0 0 0.46229608e+00 0.45339696e+00 -0.12255389e+00 0.13957000e+00
- 1 211 0 0 -0.36974634e+00 -0.13575910e-01 -0.18674464e+00 0.13957000e+00
- 1 -211 0 0 0.77337150e-01 0.55207929e+00 0.11345094e+00 0.13957000e+00
- 1 211 0 0 0.30655407e+00 -0.15827967e+00 -0.16302926e+00 0.13957000e+00
- 1 -211 0 0 0.24705070e-01 -0.42087872e+00 -0.70401275e+00 0.13957000e+00
- 2 111 529 530 0.20789189e+00 -0.25034140e+00 -0.61202463e+00 0.13498000e+00
- 1 -211 0 0 0.13920753e-01 -0.10088693e+00 -0.21177518e+00 0.13957000e+00
- 1 211 0 0 0.46271380e+00 -0.54960679e+00 -0.55844255e+00 0.13957000e+00
- 2 111 531 532 0.42783987e+00 -0.12406887e+00 -0.10106137e+00 0.13498000e+00
- 1 211 0 0 0.65303687e+00 -0.38193896e+00 -0.78358626e+00 0.13957000e+00
- 1 -211 0 0 0.72202215e+00 0.23511156e-01 -0.11747443e+01 0.13957000e+00
- 1 211 0 0 -0.28419387e-01 -0.86514633e+00 -0.73980022e+00 0.13957000e+00
- 2 111 533 534 -0.29246998e+00 -0.32062320e+00 -0.93249512e+00 0.13498000e+00
- 1 211 0 0 -0.97004333e-02 -0.16864040e+00 -0.25760605e+00 0.13957000e+00
- 2 111 535 536 -0.51171207e-01 0.15966828e+00 -0.10184109e+01 0.13498000e+00
- 1 -211 0 0 -0.18079701e-01 -0.13916381e+00 -0.15633233e+00 0.13957000e+00
- 2 111 537 538 -0.86998318e+00 0.32579387e+00 -0.77811713e+00 0.13498000e+00
- 1 2112 0 0 -0.41869760e+00 -0.68287216e+00 -0.59345275e+00 0.93957000e+00
- 1 211 0 0 -0.34061694e+00 -0.87982729e-01 -0.23335146e+00 0.13957000e+00
- 1 22 0 0 -0.20634190e+00 0.13089822e+00 -0.94243792e-01 0.00000000e+00
- 1 22 0 0 -0.12487402e+00 -0.19426703e-01 -0.93061904e-01 0.00000000e+00
- 1 211 0 0 -0.51001629e+00 -0.41625899e+00 -0.14305370e+01 0.13957000e+00
- 1 -211 0 0 -0.21181953e+00 -0.17493821e+00 -0.64851842e-01 0.13957000e+00
- 2 311 539 539 -0.16928155e+01 -0.15969921e+00 -0.43750948e+01 0.49767000e+00
- 2 111 540 541 -0.20741686e+00 0.39191409e-01 -0.14815534e+01 0.13498000e+00
- 2 310 542 543 -0.24497025e+00 -0.50163529e+00 -0.32441446e+01 0.49767000e+00
- 1 -211 0 0 -0.29502475e+01 -0.14699700e+01 -0.17737620e+02 0.13957000e+00
- 2 111 544 545 -0.14102743e+01 -0.23369194e+00 -0.68419075e+01 0.13498000e+00
- 1 -211 0 0 -0.12690657e+01 -0.81208130e+00 -0.70760439e+01 0.13957000e+00
- 2 111 546 547 -0.33651718e+00 -0.11061057e+00 -0.47359726e+01 0.13498000e+00
- 1 -211 0 0 0.42319118e+00 -0.54970028e+00 -0.27340849e+02 0.13957000e+00
- 2 111 548 549 -0.25626287e+00 -0.20341611e+00 -0.27791176e+02 0.13498000e+00
- 1 211 0 0 -0.23463596e+00 0.18919574e+00 -0.37487406e+02 0.13957000e+00
- 2 111 550 551 0.66133456e-01 -0.17381513e+00 -0.96345840e+01 0.13498000e+00
- 1 -211 0 0 -0.23519747e-01 0.47597974e-01 -0.87968949e+00 0.13957000e+00
- 2 111 552 553 0.25467682e+00 -0.78962304e+00 -0.30371624e+02 0.13498000e+00
- 1 22 0 0 -0.10518306e+01 -0.39680867e+00 -0.34745960e+02 0.00000000e+00
- 1 22 0 0 -0.29834201e+00 -0.39110967e-01 -0.96010496e+01 0.00000000e+00
- 1 211 0 0 -0.26848703e+00 0.19840942e+00 -0.17450611e+03 0.13957000e+00
- 1 -211 0 0 0.24686849e+00 -0.10903350e+00 -0.37892787e+02 0.13957000e+00
- 1 2112 0 0 0.12671217e+00 0.22345174e+00 -0.45097181e+03 0.93957000e+00
- 1 -211 0 0 0.61713974e-02 0.13806165e+00 -0.14066806e+03 0.13957000e+00
- 1 211 0 0 -0.32155145e-01 0.22083177e+00 -0.46471474e+02 0.13957000e+00
- 1 -211 0 0 0.99761280e-01 -0.38427417e-01 -0.23029684e+02 0.13957000e+00
- 2 111 554 555 -0.14241355e+00 -0.12310671e+00 -0.10870543e+02 0.13498000e+00
- 1 -2112 0 0 0.48638400e+00 0.50156360e+00 -0.52365691e+03 0.93957000e+00
- 1 211 0 0 0.77393057e-01 -0.94750237e-01 -0.10784441e+03 0.13957000e+00
- 1 211 0 0 0.64229030e+00 0.19707985e+00 -0.13180011e+02 0.13957000e+00
- 1 -211 0 0 -0.11095136e+00 0.13476608e+00 -0.15773541e+02 0.13957000e+00
- 1 321 0 0 -0.82109176e+00 0.34892875e+00 -0.92910835e+01 0.49360000e+00
- 1 -211 0 0 0.98079046e-01 0.20181395e-02 -0.25135054e+01 0.13957000e+00
- 2 3122 556 557 -0.10217811e+01 0.55374262e+00 -0.10885381e+02 0.11156800e+01
- 1 22 0 0 -0.20470005e-01 0.76146039e-01 -0.28431042e+00 0.00000000e+00
- 1 -2112 0 0 0.46723834e+00 -0.25070863e+00 -0.50702046e+01 0.93957000e+00
- 2 111 558 559 -0.15666654e-01 0.70235870e-01 -0.58129181e+00 0.13498000e+00
- 2 310 560 561 -0.86378649e+00 0.62047182e+00 -0.83409722e+01 0.49767000e+00
- 2 310 562 563 -0.18567868e+00 0.57735046e+00 -0.32152406e+01 0.49767000e+00
- 1 211 0 0 0.12508262e+00 0.79151713e-01 -0.55570672e+01 0.13957000e+00
- 1 -211 0 0 -0.94157984e-01 -0.68322712e-01 -0.28936498e+01 0.13957000e+00
- 2 221 564 565 0.66694197e-01 0.12582748e+00 -0.15435632e+02 0.54745000e+00
- 1 -211 0 0 -0.59152116e+00 0.64403170e-01 -0.11175110e+03 0.13957000e+00
- 2 111 566 567 0.13560182e+00 0.15726815e+00 -0.11849179e+03 0.13498000e+00
- 1 22 0 0 0.53156238e-01 -0.65181148e-01 -0.15855363e+02 0.00000000e+00
- 1 22 0 0 0.33798184e-01 -0.24276271e+00 -0.98045675e+02 0.00000000e+00
- 1 22 0 0 -0.31648479e+00 -0.23053414e+00 -0.39535517e+02 0.00000000e+00
- 1 22 0 0 -0.20501088e-01 0.19137183e-01 -0.34349889e+01 0.00000000e+00
- 2 311 568 568 0.22471817e+00 0.42101638e+00 -0.27944101e+03 0.49767000e+00
- 1 211 0 0 -0.81565435e-02 -0.60755622e-01 -0.27040948e+03 0.13957000e+00
- 1 2112 0 0 -0.75457610e+00 0.54657836e+00 -0.65465659e+03 0.93957000e+00
- 2 111 569 570 -0.98856840e-01 -0.36211052e-01 -0.87881194e+02 0.13498000e+00
- 1 22 0 0 -0.46201784e+00 -0.69805477e-01 -0.18671186e+04 0.00000000e+00
- 1 22 0 0 -0.99275833e-01 0.42997003e-01 -0.54780721e+03 0.00000000e+00
- 1 22 0 0 0.13652328e+00 0.16554305e+00 -0.28549350e+01 0.00000000e+00
- 1 22 0 0 0.34231936e+00 -0.24398015e+00 -0.17558661e+01 0.00000000e+00
- 1 211 0 0 0.56562913e+00 -0.54560404e-01 -0.35601155e+01 0.13957000e+00
- 1 -211 0 0 0.37272052e-01 -0.11302208e+00 -0.80218595e+00 0.13957000e+00
- 2 111 571 572 0.24624039e+00 0.22350256e+00 -0.16198998e+01 0.13498000e+00
- 1 211 0 0 0.57974170e-01 0.22640070e+00 -0.90411897e+00 0.13957000e+00
- 2 111 573 574 0.40415379e+00 0.31974996e+00 -0.70284106e+01 0.13498000e+00
- 2 -311 575 575 0.70951126e+00 0.42370777e+00 -0.11036289e+01 0.49767000e+00
- 1 -211 0 0 -0.32702415e-01 0.34846791e+00 -0.29233541e+00 0.13957000e+00
- 2 310 576 577 0.71113970e+00 0.16428722e+01 -0.17037493e+01 0.49767000e+00
- 1 -211 0 0 -0.45208207e-01 0.35544857e+00 -0.12323711e+01 0.13957000e+00
- 1 211 0 0 -0.33455291e-01 -0.24966186e-01 -0.16274742e+00 0.13957000e+00
- 2 111 578 579 -0.36447818e-01 0.54620174e+00 -0.74986915e+00 0.13498000e+00
- 1 211 0 0 -0.65193720e+00 0.11429899e+01 -0.38503520e+01 0.13957000e+00
- 2 111 580 581 -0.11961149e+01 0.60463416e+00 -0.33825916e+01 0.13498000e+00
- 1 -321 0 0 -0.21958400e+01 0.15318194e+00 -0.48238030e+01 0.49360000e+00
- 2 111 582 583 -0.35860571e+00 -0.15293357e+00 -0.13758835e+01 0.13498000e+00
- 2 311 584 584 -0.20434957e+01 0.40752709e+00 -0.45369376e+01 0.49767000e+00
- 1 211 0 0 -0.15998352e+01 0.20911500e+00 -0.45036118e+01 0.13957000e+00
- 1 -211 0 0 0.21613460e+00 0.28654649e-01 -0.21607833e+01 0.13957000e+00
- 1 211 0 0 0.59151696e+00 -0.47469570e+00 -0.82488644e+01 0.13957000e+00
- 2 111 585 586 0.75922041e-02 -0.13847506e+00 -0.40258403e+01 0.13498000e+00
- 1 22 0 0 -0.34114329e-01 -0.70203222e-02 0.60495526e+02 0.00000000e+00
- 1 22 0 0 -0.16100206e+00 0.31518559e+00 0.67990475e+03 0.00000000e+00
- 1 22 0 0 -0.40208540e+00 0.18164999e+00 0.15734956e+03 0.00000000e+00
- 1 22 0 0 -0.17394807e+00 0.17914510e+00 0.75847519e+02 0.00000000e+00
- 1 22 0 0 -0.13098988e+00 0.71941344e-01 0.12058910e+01 0.00000000e+00
- 1 22 0 0 -0.21722156e+00 -0.36256088e-01 0.25280898e+01 0.00000000e+00
- 1 22 0 0 -0.38842542e-01 0.12277007e-01 0.49973340e+00 0.00000000e+00
- 1 22 0 0 -0.25216154e+00 0.29327609e-01 0.89050815e+00 0.00000000e+00
- 1 22 0 0 0.91999440e-01 0.20937973e-01 0.21078736e+00 0.00000000e+00
- 1 22 0 0 -0.11902032e-01 -0.60417038e-01 0.70695122e-01 0.00000000e+00
- 1 22 0 0 -0.23676234e-01 -0.23646496e-01 0.42495422e-01 0.00000000e+00
- 1 22 0 0 -0.46184833e+00 0.10753313e+00 0.10209230e+01 0.00000000e+00
- 1 22 0 0 -0.20221698e+00 -0.69409499e-01 0.93111025e+00 0.00000000e+00
- 1 22 0 0 -0.32415762e+00 -0.31356467e+00 0.19523506e+01 0.00000000e+00
- 1 22 0 0 -0.29591286e-01 0.10474657e-01 0.44402089e-01 0.00000000e+00
- 1 22 0 0 0.26859241e-01 -0.11831652e+00 0.64792549e+00 0.00000000e+00
- 2 111 587 588 -0.59828602e+00 -0.83737183e-01 0.44429856e+01 0.13498000e+00
- 2 111 589 590 -0.56241186e-01 0.88204725e-01 0.24523174e+01 0.13498000e+00
- 1 130 0 0 -0.64583903e+00 -0.60443522e+00 0.58470097e+01 0.49767000e+00
- 1 22 0 0 -0.38771559e-02 -0.18549444e-01 0.41778863e+00 0.00000000e+00
- 1 22 0 0 -0.11260186e+01 -0.58958363e+00 0.23773358e+02 0.00000000e+00
- 1 22 0 0 0.12384833e-01 -0.37339779e-01 0.20876413e+01 0.00000000e+00
- 1 22 0 0 -0.53221112e-01 0.25470998e-01 0.19737603e+02 0.00000000e+00
- 1 22 0 0 -0.44078977e-01 -0.44566237e-01 0.38763033e+01 0.00000000e+00
- 1 22 0 0 -0.37461387e+00 -0.50014286e+00 0.20043268e+02 0.00000000e+00
- 1 22 0 0 -0.76356100e-01 0.84386515e-01 0.11645910e+02 0.00000000e+00
- 1 22 0 0 -0.13038654e+00 0.19334784e+00 0.52856699e+02 0.00000000e+00
- 1 130 0 0 0.52470574e+00 0.35274944e+00 0.29898337e+02 0.49767000e+00
- 1 22 0 0 0.19128443e-01 0.46647733e+00 0.23411193e+01 0.00000000e+00
- 1 22 0 0 -0.12687318e-02 0.65065261e-01 0.69895119e+00 0.00000000e+00
- 1 22 0 0 0.25668134e-01 0.82269057e+00 0.91362333e+01 0.00000000e+00
- 1 22 0 0 0.79054283e-01 0.24518142e+00 0.26191892e+01 0.00000000e+00
- 1 22 0 0 0.34824847e+00 0.23719349e+00 0.13000043e+01 0.00000000e+00
- 1 22 0 0 0.10142658e+01 0.85623409e+00 0.47796479e+01 0.00000000e+00
- 2 111 591 592 0.10824011e+01 0.22053748e+00 0.50229966e+01 0.13498000e+00
- 2 111 593 594 0.13643783e+00 0.17802042e+00 0.10747643e+01 0.13498000e+00
- 1 22 0 0 0.30768658e+00 0.17710425e+00 0.65706743e+00 0.00000000e+00
- 1 22 0 0 0.62741952e+00 0.16982214e+00 0.13655618e+01 0.00000000e+00
- 2 310 595 596 0.16370518e+01 0.87925732e-01 0.32954877e+01 0.49767000e+00
- 1 130 0 0 0.30838590e+01 0.24625562e+01 0.60135778e+01 0.49767000e+00
- 1 22 0 0 0.53280949e+00 0.11580975e+00 0.92903662e-01 0.00000000e+00
- 1 22 0 0 0.35538201e-01 0.25045359e-01 0.46676615e-01 0.00000000e+00
- 1 -2112 0 0 0.28430398e+00 -0.45426893e+00 -0.90840570e+00 0.93957000e+00
- 2 111 597 598 0.81157966e-01 0.15816838e-01 -0.23879316e+00 0.13498000e+00
- 1 22 0 0 -0.41135653e-01 0.73091132e-01 -0.44859630e+00 0.00000000e+00
- 1 22 0 0 -0.11523636e-01 -0.53211045e-01 -0.58388832e+00 0.00000000e+00
- 1 22 0 0 0.15479845e+00 -0.96070883e-01 -0.50111331e+00 0.00000000e+00
- 1 22 0 0 0.15506037e+00 0.12973035e-01 -0.71490353e+00 0.00000000e+00
- 1 22 0 0 -0.23421226e+00 0.32191865e+00 -0.48786843e+01 0.00000000e+00
- 1 22 0 0 0.40429278e-01 -0.17192093e+00 -0.40949874e+01 0.00000000e+00
- 1 22 0 0 0.55403982e-01 -0.69247123e-01 -0.87819836e+01 0.00000000e+00
- 1 22 0 0 -0.50072005e-01 -0.72211506e-01 -0.21851352e+02 0.00000000e+00
- 1 22 0 0 -0.26031730e+00 0.29703428e+00 -0.14007819e+02 0.00000000e+00
- 1 22 0 0 -0.44903531e-01 0.20762063e-01 -0.40909646e+01 0.00000000e+00
- 1 2112 0 0 -0.64688280e+00 0.41659958e+00 0.48650188e+03 0.93957000e+00
- 2 111 599 600 -0.11336578e+00 0.14971596e+00 0.14281768e+03 0.13498000e+00
- 1 22 0 0 -0.16593110e-01 -0.64875620e-01 0.74580862e+02 0.00000000e+00
- 1 22 0 0 0.12375460e+00 -0.23392956e+00 0.14649112e+03 0.00000000e+00
- 1 -2212 0 0 -0.12885986e+00 -0.37700003e+00 0.19800423e+03 0.93827000e+00
- 1 211 0 0 0.75532284e-01 -0.63128185e-01 0.22787926e+02 0.13957000e+00
- 1 22 0 0 -0.19041063e+00 0.50954416e-01 0.11523018e+02 0.00000000e+00
- 1 22 0 0 -0.31440781e-01 -0.49637706e-01 0.51742889e+01 0.00000000e+00
- 1 22 0 0 0.18298352e-01 0.63246230e-02 0.26994082e+01 0.00000000e+00
- 1 22 0 0 -0.47127724e-01 -0.54321478e-01 0.11295365e+03 0.00000000e+00
- 1 130 0 0 -0.25411387e+00 0.69291758e+00 0.12444396e+02 0.49767000e+00
- 1 130 0 0 0.27493362e+00 0.44011451e-01 0.16979050e+02 0.49767000e+00
- 1 22 0 0 -0.91442958e-01 0.62905940e-01 0.47396312e+00 0.00000000e+00
- 1 22 0 0 -0.47373463e-01 0.76306206e-02 0.10439052e+01 0.00000000e+00
- 1 22 0 0 -0.91887463e+00 0.21559916e+01 0.17158208e+01 0.00000000e+00
- 1 22 0 0 -0.75007042e-01 0.97936126e-01 0.86928913e-01 0.00000000e+00
- 1 22 0 0 -0.11836027e+00 0.16093737e+00 0.23253733e+00 0.00000000e+00
- 1 22 0 0 -0.27088174e+00 0.16827564e+00 0.20953664e+00 0.00000000e+00
- 1 22 0 0 -0.12386009e+00 0.13484105e+00 0.63467720e-01 0.00000000e+00
- 1 22 0 0 -0.21306811e+00 0.45823379e+00 0.35800025e+00 0.00000000e+00
- 1 22 0 0 0.13275707e+00 -0.10691002e+00 -0.43001851e+00 0.00000000e+00
- 1 22 0 0 0.75134820e-01 -0.14343138e+00 -0.18200612e+00 0.00000000e+00
- 1 22 0 0 0.82278683e-01 0.27313967e-01 -0.34051131e-01 0.00000000e+00
- 1 22 0 0 0.34556119e+00 -0.15138284e+00 -0.67010242e-01 0.00000000e+00
- 1 22 0 0 -0.15024881e+00 -0.20115492e+00 -0.67240622e+00 0.00000000e+00
- 1 22 0 0 -0.14222117e+00 -0.11946828e+00 -0.26008890e+00 0.00000000e+00
- 1 22 0 0 -0.73791162e-01 0.61579419e-01 -0.71027156e+00 0.00000000e+00
- 1 22 0 0 0.22619955e-01 0.98088865e-01 -0.30813933e+00 0.00000000e+00
- 1 22 0 0 -0.80925928e-01 -0.93358092e-02 -0.67786629e-01 0.00000000e+00
- 1 22 0 0 -0.78905725e+00 0.33512968e+00 -0.71033050e+00 0.00000000e+00
- 1 130 0 0 -0.16928155e+01 -0.15969921e+00 -0.43750948e+01 0.49767000e+00
- 1 22 0 0 0.21180523e-02 -0.21272656e-01 -0.32187248e+00 0.00000000e+00
- 1 22 0 0 -0.20953491e+00 0.60464065e-01 -0.11596809e+01 0.00000000e+00
- 1 -211 0 0 0.21505159e-01 0.22066216e-01 -0.55569823e+00 0.13957000e+00
- 1 211 0 0 -0.26647541e+00 -0.52370151e+00 -0.26884464e+01 0.13957000e+00
- 1 22 0 0 -0.13985815e+00 -0.63746206e-01 -0.78717632e+00 0.00000000e+00
- 1 22 0 0 -0.12704161e+01 -0.16994573e+00 -0.60547311e+01 0.00000000e+00
- 1 22 0 0 -0.23617484e+00 -0.96938068e-02 -0.30592393e+01 0.00000000e+00
- 1 22 0 0 -0.10034234e+00 -0.10091676e+00 -0.16767333e+01 0.00000000e+00
- 1 22 0 0 -0.45030036e-01 0.38326813e-02 -0.17927318e+01 0.00000000e+00
- 1 22 0 0 -0.21123283e+00 -0.20724879e+00 -0.25998444e+02 0.00000000e+00
- 1 22 0 0 0.40100464e-01 -0.82827491e-01 -0.19625660e+01 0.00000000e+00
- 1 22 0 0 0.26032991e-01 -0.90987639e-01 -0.76720180e+01 0.00000000e+00
- 1 22 0 0 0.20268562e+00 -0.50376356e+00 -0.21578335e+02 0.00000000e+00
- 1 22 0 0 0.51991197e-01 -0.28585948e+00 -0.87932886e+01 0.00000000e+00
- 1 22 0 0 -0.13075443e+00 -0.14645434e+00 -0.10300222e+02 0.00000000e+00
- 1 22 0 0 -0.11659117e-01 0.23347625e-01 -0.57032084e+00 0.00000000e+00
- 1 2212 0 0 -0.76165801e+00 0.50653459e+00 -0.86586013e+01 0.93827000e+00
- 1 -211 0 0 -0.26012305e+00 0.47208039e-01 -0.22267797e+01 0.13957000e+00
- 1 22 0 0 -0.42489235e-02 0.77486119e-01 -0.14399312e+00 0.00000000e+00
- 1 22 0 0 -0.11417731e-01 -0.72502490e-02 -0.43729869e+00 0.00000000e+00
- 1 211 0 0 -0.68261704e+00 0.28905876e+00 -0.60870816e+01 0.13957000e+00
- 1 -211 0 0 -0.18116945e+00 0.33141306e+00 -0.22538906e+01 0.13957000e+00
- 1 -211 0 0 -0.24077359e+00 0.56877262e+00 -0.26624979e+01 0.13957000e+00
- 1 211 0 0 0.55094914e-01 0.85778339e-02 -0.55274276e+00 0.13957000e+00
- 1 22 0 0 -0.20007004e-01 0.33584215e+00 -0.98433225e+01 0.00000000e+00
- 1 22 0 0 0.86701201e-01 -0.21001467e+00 -0.55923096e+01 0.00000000e+00
- 1 22 0 0 0.87176917e-01 0.55583635e-02 -0.36867215e+02 0.00000000e+00
- 1 22 0 0 0.48424905e-01 0.15170979e+00 -0.81624580e+02 0.00000000e+00
- 2 310 601 602 0.22471817e+00 0.42101638e+00 -0.27944101e+03 0.49767000e+00
- 1 22 0 0 -0.72045609e-02 -0.30878507e-02 -0.59310141e+02 0.00000000e+00
- 1 22 0 0 -0.91652279e-01 -0.33123201e-01 -0.28571054e+02 0.00000000e+00
- 1 22 0 0 0.14418327e+00 0.14544060e+00 -0.12706026e+01 0.00000000e+00
- 1 22 0 0 0.10205712e+00 0.78061956e-01 -0.34929723e+00 0.00000000e+00
- 1 22 0 0 0.23217642e+00 0.20778792e+00 -0.33564981e+01 0.00000000e+00
- 1 22 0 0 0.17197736e+00 0.11196204e+00 -0.36719125e+01 0.00000000e+00
- 2 310 603 604 0.70951126e+00 0.42370777e+00 -0.11036289e+01 0.49767000e+00
- 2 111 605 606 0.55461097e+00 0.13879970e+01 -0.15535406e+01 0.13498000e+00
- 2 111 607 608 0.15652873e+00 0.25487518e+00 -0.15020870e+00 0.13498000e+00
- 1 22 0 0 -0.72099719e-01 0.16002686e+00 -0.21602000e+00 0.00000000e+00
- 1 22 0 0 0.35651901e-01 0.38617488e+00 -0.53384915e+00 0.00000000e+00
- 1 22 0 0 -0.18650556e+00 0.91475081e-01 -0.40350062e+00 0.00000000e+00
- 1 22 0 0 -0.10096093e+01 0.51315908e+00 -0.29790910e+01 0.00000000e+00
- 1 22 0 0 -0.20420757e+00 -0.15570186e+00 -0.80200957e+00 0.00000000e+00
- 1 22 0 0 -0.15439814e+00 0.27682919e-02 -0.57387395e+00 0.00000000e+00
- 2 310 609 610 -0.20434957e+01 0.40752709e+00 -0.45369376e+01 0.49767000e+00
- 1 22 0 0 -0.12412463e-01 -0.10793168e+00 -0.13388452e+01 0.00000000e+00
- 1 22 0 0 0.20004667e-01 -0.30543379e-01 -0.26869950e+01 0.00000000e+00
- 1 22 0 0 -0.39042833e+00 -0.66596461e-01 0.24206539e+01 0.00000000e+00
- 1 22 0 0 -0.20785769e+00 -0.17140722e-01 0.20223318e+01 0.00000000e+00
- 1 22 0 0 0.12251066e-02 0.10890270e+00 0.14552679e+01 0.00000000e+00
- 1 22 0 0 -0.57466292e-01 -0.20697973e-01 0.99704948e+00 0.00000000e+00
- 1 22 0 0 0.15052476e+00 0.73137276e-01 0.65155518e+00 0.00000000e+00
- 1 22 0 0 0.93187631e+00 0.14740020e+00 0.43714414e+01 0.00000000e+00
- 1 22 0 0 0.11898623e+00 0.63218473e-01 0.73166197e+00 0.00000000e+00
- 1 22 0 0 0.17451604e-01 0.11480194e+00 0.34310237e+00 0.00000000e+00
- 1 -211 0 0 0.15258464e+00 -0.36762359e-01 0.30477494e+00 0.13957000e+00
- 1 211 0 0 0.14844672e+01 0.12468809e+00 0.29907128e+01 0.13957000e+00
- 1 22 0 0 0.11130219e+00 0.84156993e-02 -0.22760085e+00 0.00000000e+00
- 1 22 0 0 -0.30144222e-01 0.74011392e-02 -0.11192314e-01 0.00000000e+00
- 1 22 0 0 -0.73811951e-01 -0.22060165e-02 0.49892210e+02 0.00000000e+00
- 1 22 0 0 -0.39553826e-01 0.15192197e+00 0.92925468e+02 0.00000000e+00
- 1 211 0 0 0.12467172e+00 0.40748008e+00 -0.24585833e+03 0.13957000e+00
- 1 -211 0 0 0.10004645e+00 0.13536297e-01 -0.33582686e+02 0.13957000e+00
- 2 111 611 612 0.50600420e+00 0.33117570e+00 -0.46147911e+00 0.13498000e+00
- 2 111 613 614 0.20350706e+00 0.92532073e-01 -0.64214980e+00 0.13498000e+00
- 1 22 0 0 0.11603160e+00 0.18389413e+00 -0.18889090e+00 0.00000000e+00
- 1 22 0 0 0.43857937e+00 0.12041029e+01 -0.13646497e+01 0.00000000e+00
- 1 22 0 0 0.53386879e-01 0.20816383e+00 -0.10038746e+00 0.00000000e+00
- 1 22 0 0 0.10314185e+00 0.46711356e-01 -0.49821238e-01 0.00000000e+00
- 2 111 615 616 -0.15222285e+01 0.45690986e+00 -0.35524399e+01 0.13498000e+00
- 2 111 617 618 -0.52126718e+00 -0.49382769e-01 -0.98449774e+00 0.13498000e+00
- 1 22 0 0 0.42286424e+00 0.21492494e+00 -0.32525031e+00 0.00000000e+00
- 1 22 0 0 0.83139964e-01 0.11625076e+00 -0.13622879e+00 0.00000000e+00
- 1 22 0 0 0.19323477e+00 0.12149299e+00 -0.53280643e+00 0.00000000e+00
- 1 22 0 0 0.10272292e-01 -0.28960917e-01 -0.10934337e+00 0.00000000e+00
- 1 22 0 0 -0.11424112e+01 0.40275616e+00 -0.27120080e+01 0.00000000e+00
- 1 22 0 0 -0.37981725e+00 0.54153701e-01 -0.84043191e+00 0.00000000e+00
- 1 22 0 0 -0.36043781e-01 0.17904162e-01 -0.29472464e-01 0.00000000e+00
- 1 22 0 0 -0.48522340e+00 -0.67286931e-01 -0.95502528e+00 0.00000000e+00
- 219
- 2 25 2 3 0.23564688e+02 -0.75995226e+01 0.29714182e+03 0.12500123e+03
- 2 23 4 5 0.99266245e+01 -0.32161544e+02 0.21786492e+03 0.12757161e+02
- 2 23 6 8 0.13638063e+02 0.24562022e+02 0.79276895e+02 0.58575807e+02
- 1 11 0 0 0.38059062e+01 -0.21632147e+02 0.17066116e+03 0.51000000e-03
- 1 -11 0 0 0.61207184e+01 -0.10529397e+02 0.47203769e+02 0.51000000e-03
- 1 13 0 0 -0.20762805e+02 0.19299378e+02 0.47779361e+02 0.10566000e+00
- 1 -13 0 0 0.34399476e+02 0.52632193e+01 0.31497935e+02 0.10566000e+00
- 1 22 0 0 0.13913905e-02 -0.57618743e-03 -0.40069763e-03 0.00000000e+00
- 2 1 31 31 0.13832416e+01 0.78534987e+00 -0.10240755e+04 0.33000000e+00
- 2 21 31 31 0.34012345e-01 0.89085540e+00 -0.20500280e+03 0.00000000e+00
- 2 21 31 31 -0.77962016e+00 0.93821702e+00 -0.85330030e+02 0.00000000e+00
- 2 21 31 31 -0.20176020e+01 0.20017069e+01 -0.63968934e+01 0.00000000e+00
- 2 21 31 31 -0.24788891e+00 0.10628657e+00 -0.14002063e+02 0.00000000e+00
- 2 21 31 31 -0.38441496e+00 -0.16112312e+01 -0.42506811e+01 0.00000000e+00
- 2 21 31 31 0.48297893e-01 0.63832743e+00 0.54831488e+01 0.00000000e+00
- 2 21 31 31 0.38754808e+00 -0.37221260e+00 0.10741717e+02 0.00000000e+00
- 2 2203 31 31 -0.17375884e+00 -0.12609836e+00 0.65204487e+04 0.77133000e+00
- 2 1 56 56 0.26422016e+00 -0.55250122e-01 0.80208221e+02 0.33000000e+00
- 2 21 56 56 -0.14607018e+01 -0.17382908e+01 0.96956112e+01 0.00000000e+00
- 2 21 56 56 -0.56755508e+00 -0.14772231e+01 0.43893451e+02 0.00000000e+00
- 2 21 56 56 -0.64532488e+00 -0.78160238e+00 0.11267674e+02 0.00000000e+00
- 2 21 56 56 -0.60189284e-01 -0.86167409e-01 0.29427553e+00 0.00000000e+00
- 2 21 56 56 -0.44952762e+01 0.24744383e+01 -0.23517642e+01 0.00000000e+00
- 2 21 56 56 -0.10979163e+01 0.19438664e+00 -0.19566105e+01 0.00000000e+00
- 2 21 56 56 -0.68579214e+01 0.85183944e+00 -0.65486627e+01 0.00000000e+00
- 2 21 56 56 -0.13466128e+01 0.14260856e+01 -0.23419570e+01 0.00000000e+00
- 2 21 56 56 -0.31957948e+01 0.24535743e+01 -0.12606887e+01 0.00000000e+00
- 2 21 56 56 -0.13108037e+01 0.16176703e+00 0.14703011e+00 0.00000000e+00
- 2 21 56 56 -0.41083675e+00 0.70271179e+00 0.10802467e+01 0.00000000e+00
- 2 2203 56 56 -0.62978969e+00 0.22205232e+00 -0.56268854e+04 0.77133000e+00
- 2 92 32 55 -0.17501850e+01 0.32512010e+01 0.51976156e+04 0.59183913e+04
- 1 -211 0 0 0.11270719e+01 0.44026410e+00 -0.60231940e+03 0.13957000e+00
- 2 113 93 94 -0.49228448e+00 0.96260416e+00 -0.30765127e+03 0.91585423e+00
- 1 211 0 0 0.20781954e+00 0.76022540e+00 -0.15892635e+03 0.13957000e+00
- 2 311 95 95 0.68375935e-02 -0.31360002e-01 -0.18855007e+03 0.49767000e+00
- 1 -321 0 0 -0.12944992e+00 -0.23546361e+00 -0.13067616e+02 0.49360000e+00
- 2 111 96 97 0.72469137e-01 0.54097606e+00 -0.28472847e+02 0.13498000e+00
- 2 323 98 99 -0.16074534e+00 0.45949495e+00 -0.53925270e+01 0.88299948e+00
- 2 3114 100 101 -0.46733967e+00 0.48081648e+00 -0.10389773e+02 0.14016096e+01
- 2 213 102 103 -0.63566722e+00 0.24317947e+00 -0.10009924e+02 0.60835663e+00
- 1 -2212 0 0 -0.13595157e+01 0.67934514e+00 -0.49725770e+01 0.93827000e+00
- 2 111 104 105 -0.15449625e+00 -0.66421602e+00 -0.94187513e+00 0.13498000e+00
- 1 211 0 0 0.34952781e+00 0.49301556e+00 -0.53608979e+01 0.13957000e+00
- 2 111 106 107 0.50595570e-01 -0.29933659e-01 0.12646271e+00 0.13498000e+00
- 1 -211 0 0 -0.14366914e+00 -0.85067151e-01 0.94878988e-01 0.13957000e+00
- 2 323 108 109 -0.40241896e-01 0.32322284e-01 -0.57552904e+00 0.89450403e+00
- 2 -311 110 110 -0.11701559e+00 -0.64442397e+00 -0.10534089e+01 0.49767000e+00
- 1 2112 0 0 0.22016753e+00 0.10641435e+00 -0.32887323e+00 0.93957000e+00
- 1 -2212 0 0 -0.57253712e+00 -0.73705772e+00 0.22069220e+01 0.93827000e+00
- 2 323 111 112 0.30429108e+00 0.73201568e+00 0.47777043e+01 0.88829099e+00
- 2 -313 113 114 0.44408163e-01 0.29582030e-01 0.23813002e+02 0.88734249e+00
- 1 -211 0 0 -0.41240364e+00 0.10740040e-01 0.30586577e+02 0.13957000e+00
- 2 113 115 116 0.49450865e+00 -0.21630806e+00 0.53321155e+02 0.64569934e+00
- 2 2214 117 118 0.33644930e+00 0.35737888e+00 0.95178278e+03 0.12540578e+01
- 2 213 119 120 -0.27896530e+00 -0.43334339e+00 0.54689191e+04 0.78241806e+00
- 2 92 57 92 -0.21814503e+02 0.43483216e+01 -0.54947586e+04 0.18565693e+04
- 2 311 121 121 -0.45923942e-01 0.13030144e+00 0.24347932e+02 0.49767000e+00
- 2 -313 122 123 0.39171292e-01 -0.41670728e+00 0.33642356e+02 0.89911660e+00
- 1 -211 0 0 0.17608927e+00 0.18610486e+00 0.43576654e+01 0.13957000e+00
- 2 111 124 125 -0.21265322e+00 0.51840600e+00 0.10311720e+02 0.13498000e+00
- 2 213 126 127 -0.85069176e+00 -0.22574366e+01 0.26635939e+02 0.70176025e+00
- 1 -211 0 0 -0.30884384e+00 -0.30981948e+00 0.38271709e+01 0.13957000e+00
- 2 213 128 129 -0.27800566e+00 0.32685631e+00 0.94882404e+01 0.78556388e+00
- 2 -213 130 131 -0.20758906e+00 -0.17481766e+01 0.15886252e+02 0.73047520e+00
- 2 323 132 133 -0.45636354e-01 -0.26982068e-01 0.53551846e+01 0.89601369e+00
- 2 -323 134 135 -0.49030351e+00 0.10560418e+00 0.10744739e+02 0.87076193e+00
- 1 211 0 0 -0.17471521e+00 -0.69216394e-01 -0.51169748e-01 0.13957000e+00
- 2 221 136 138 -0.24393759e+01 0.23748970e+00 -0.10855304e+01 0.54745000e+00
- 1 -211 0 0 -0.33870977e+00 0.60338558e+00 0.14706832e+00 0.13957000e+00
- 1 2212 0 0 -0.35906627e+00 -0.62738149e-01 -0.78239312e+00 0.93827000e+00
- 1 -2212 0 0 -0.29985997e+01 0.14759731e+01 -0.18795222e+01 0.93827000e+00
- 2 213 139 140 -0.21060889e+01 0.12309220e+00 -0.22292160e+01 0.78691501e+00
- 2 -213 141 142 -0.24829362e+01 0.97495059e+00 -0.27101277e+01 0.72907276e+00
- 2 221 143 144 -0.14235447e+01 0.20764525e+00 -0.14034535e+01 0.54745000e+00
- 1 211 0 0 -0.80770750e-01 0.51125218e-01 -0.37973460e+00 0.13957000e+00
- 1 2112 0 0 -0.35242639e+01 0.17449487e+01 -0.20492554e+01 0.93957000e+00
- 1 -2212 0 0 -0.28940472e+00 0.45154508e+00 0.53415273e+00 0.93827000e+00
- 1 211 0 0 -0.18154857e+01 0.11612846e+01 -0.16586944e+01 0.13957000e+00
- 2 -213 145 146 -0.52248171e+00 0.32397934e+00 -0.57689598e+00 0.71591373e+00
- 2 113 147 148 -0.76295091e+00 0.55794188e+00 -0.33862176e+01 0.74511785e+00
- 2 331 149 151 0.51777504e+00 -0.35384719e+00 -0.50482916e+00 0.95786802e+00
- 1 211 0 0 -0.19719456e+00 -0.35473301e+00 -0.21803366e+00 0.13957000e+00
- 2 113 152 153 -0.49465491e-01 0.97040661e+00 -0.25290276e+01 0.74771586e+00
- 1 -211 0 0 0.29713121e+00 -0.24851120e+00 -0.13503297e+02 0.13957000e+00
- 2 113 154 155 -0.19384849e+00 -0.43039816e+00 -0.57330459e+01 0.69687130e+00
- 1 211 0 0 0.39620206e+00 0.49020534e+00 -0.62287239e+01 0.13957000e+00
- 2 223 156 158 -0.83997783e+00 -0.45352079e+00 -0.63324649e+02 0.77294370e+00
- 2 -213 159 160 0.21852812e+00 0.77108271e-01 -0.80782419e+01 0.75531841e+00
- 1 211 0 0 0.73703056e-01 0.15870569e+00 -0.16489288e+03 0.13957000e+00
- 2 -213 161 162 -0.55317354e+00 0.50133924e-01 -0.41180143e+03 0.76617946e+00
- 1 2212 0 0 0.53189345e+00 0.33433756e-01 -0.89084540e+03 0.93827000e+00
- 1 211 0 0 -0.47329445e+00 0.11978086e+00 -0.40541852e+04 0.13957000e+00
- 1 -211 0 0 -0.58066070e+00 0.97705548e+00 -0.20999170e+03 0.13957000e+00
- 1 211 0 0 0.88376217e-01 -0.14451318e-01 -0.97659573e+02 0.13957000e+00
- 2 310 163 164 0.68375935e-02 -0.31360002e-01 -0.18855007e+03 0.49767000e+00
- 1 22 0 0 0.61010006e-01 0.79810808e-01 -0.55608257e+01 0.00000000e+00
- 1 22 0 0 0.11459131e-01 0.46116526e+00 -0.22912021e+02 0.00000000e+00
- 2 311 165 165 0.13116718e+00 0.23785180e+00 -0.23078470e+01 0.49767000e+00
- 1 211 0 0 -0.29191251e+00 0.22164316e+00 -0.30846800e+01 0.13957000e+00
- 2 3122 166 167 -0.28981625e+00 0.52205896e+00 -0.74607494e+01 0.11156800e+01
- 1 -211 0 0 -0.17752342e+00 -0.41242475e-01 -0.29290236e+01 0.13957000e+00
- 1 211 0 0 -0.32907339e+00 -0.13051455e+00 -0.56379996e+01 0.13957000e+00
- 2 111 168 169 -0.30659383e+00 0.37369403e+00 -0.43719247e+01 0.13498000e+00
- 1 22 0 0 0.23048573e-01 -0.10602112e+00 -0.17006052e+00 0.00000000e+00
- 1 22 0 0 -0.17754483e+00 -0.55819490e+00 -0.77181462e+00 0.00000000e+00
- 1 22 0 0 0.74988187e-01 0.24962126e-01 0.10244617e+00 0.00000000e+00
- 1 22 0 0 -0.24392618e-01 -0.54895785e-01 0.24016549e-01 0.00000000e+00
- 1 321 0 0 -0.35633000e-01 -0.15802401e+00 -0.63852754e+00 0.49360000e+00
- 2 111 170 171 -0.46088965e-02 0.19034629e+00 0.62998504e-01 0.13498000e+00
- 2 310 172 173 -0.11701559e+00 -0.64442397e+00 -0.10534089e+01 0.49767000e+00
- 2 311 174 174 -0.44810572e-01 0.21419727e+00 0.19308140e+01 0.49767000e+00
- 1 211 0 0 0.34910165e+00 0.51781841e+00 0.28468903e+01 0.13957000e+00
- 1 -321 0 0 0.10849578e+00 0.28188456e+00 0.17696267e+02 0.49360000e+00
- 1 211 0 0 -0.64087621e-01 -0.25230253e+00 0.61167351e+01 0.13957000e+00
- 1 211 0 0 0.21200265e+00 -0.14002673e-02 0.40897441e+02 0.13957000e+00
- 1 -211 0 0 0.28250599e+00 -0.21490779e+00 0.12423714e+02 0.13957000e+00
- 1 2212 0 0 0.33281096e+00 0.12949679e+00 0.85527561e+03 0.93827000e+00
- 2 111 175 176 0.36383325e-02 0.22788209e+00 0.96507171e+02 0.13498000e+00
- 1 211 0 0 -0.30213518e+00 -0.54632451e+00 0.50741835e+04 0.13957000e+00
- 2 111 177 178 0.23169882e-01 0.11298112e+00 0.39473554e+03 0.13498000e+00
- 1 130 0 0 -0.45923942e-01 0.13030144e+00 0.24347932e+02 0.49767000e+00
- 2 -311 179 179 -0.23279559e+00 -0.22823771e+00 0.16128028e+02 0.49767000e+00
- 2 111 180 181 0.27196688e+00 -0.18846957e+00 0.17514329e+02 0.13498000e+00
- 1 22 0 0 -0.11084800e+00 0.40890142e+00 0.80710636e+01 0.00000000e+00
- 1 22 0 0 -0.10180523e+00 0.10950458e+00 0.22406565e+01 0.00000000e+00
- 1 211 0 0 0.53402585e-01 -0.30862909e+00 0.48660755e+01 0.13957000e+00
- 2 111 182 183 -0.90409435e+00 -0.19488076e+01 0.21769864e+02 0.13498000e+00
- 1 211 0 0 0.14646052e+00 -0.90604920e-01 0.44100467e+01 0.13957000e+00
- 2 111 184 185 -0.42446618e+00 0.41746123e+00 0.50781937e+01 0.13498000e+00
- 1 -211 0 0 -0.18886499e-01 -0.49405766e+00 0.24352571e+01 0.13957000e+00
- 2 111 186 187 -0.18870256e+00 -0.12541189e+01 0.13450995e+02 0.13498000e+00
- 2 311 188 188 0.98886103e-02 0.15168158e+00 0.19998517e+01 0.49767000e+00
- 1 211 0 0 -0.55524964e-01 -0.17866365e+00 0.33553330e+01 0.13957000e+00
- 2 -311 189 189 -0.11368047e+00 0.63645882e-01 0.80907212e+01 0.49767000e+00
- 1 -211 0 0 -0.37662303e+00 0.41958298e-01 0.26540175e+01 0.13957000e+00
- 1 -211 0 0 -0.47954592e+00 0.15247792e-01 -0.24615450e+00 0.13957000e+00
- 1 211 0 0 -0.14071890e+01 0.76685451e-01 -0.50753436e+00 0.13957000e+00
- 2 111 190 191 -0.55264101e+00 0.14555646e+00 -0.33184155e+00 0.13498000e+00
- 1 211 0 0 -0.10826457e+01 -0.12802238e+00 -0.15758156e+01 0.13957000e+00
- 2 111 192 193 -0.10234432e+01 0.25111458e+00 -0.65340039e+00 0.13498000e+00
- 1 -211 0 0 -0.57822110e+00 0.69968408e-02 -0.37123214e+00 0.13957000e+00
- 2 111 194 195 -0.19047151e+01 0.96795374e+00 -0.23388956e+01 0.13498000e+00
- 1 22 0 0 -0.11557545e+00 -0.14094028e+00 -0.21351138e+00 0.00000000e+00
- 1 22 0 0 -0.13079693e+01 0.34858553e+00 -0.11899421e+01 0.00000000e+00
- 1 -211 0 0 -0.47366236e+00 0.47687534e+00 -0.57630308e+00 0.13957000e+00
- 2 111 196 197 -0.48819346e-01 -0.15289600e+00 -0.59289959e-03 0.13498000e+00
- 1 211 0 0 0.32209621e-01 0.13500201e+00 -0.13315827e+01 0.13957000e+00
- 1 -211 0 0 -0.79516053e+00 0.42293988e+00 -0.20546349e+01 0.13957000e+00
- 1 211 0 0 0.22795012e+00 -0.95771538e-01 -0.17715473e+00 0.13957000e+00
- 1 -211 0 0 -0.25269630e-01 -0.13642181e+00 -0.15517262e+00 0.13957000e+00
- 2 221 198 199 0.31509455e+00 -0.12165384e+00 -0.17250181e+00 0.54745000e+00
- 1 -211 0 0 0.25269281e+00 0.78020055e+00 -0.18963572e+01 0.13957000e+00
- 1 211 0 0 -0.30215830e+00 0.19020606e+00 -0.63267042e+00 0.13957000e+00
- 1 211 0 0 0.97121417e-01 -0.43686916e+00 -0.23642436e+01 0.13957000e+00
- 1 -211 0 0 -0.29096990e+00 0.64709998e-02 -0.33688023e+01 0.13957000e+00
- 1 -211 0 0 -0.10550732e+00 -0.24611367e+00 -0.99463054e+01 0.13957000e+00
- 1 211 0 0 -0.32422616e+00 0.40338956e-01 -0.15586400e+02 0.13957000e+00
- 2 111 200 201 -0.41024435e+00 -0.24774608e+00 -0.37791944e+02 0.13498000e+00
- 1 -211 0 0 0.13390237e+00 -0.36942774e-01 -0.75627583e+01 0.13957000e+00
- 2 111 202 203 0.84625745e-01 0.11405104e+00 -0.51548358e+00 0.13498000e+00
- 1 -211 0 0 -0.22121571e+00 -0.72209502e-01 -0.33854266e+03 0.13957000e+00
- 2 111 204 205 -0.33195783e+00 0.12234343e+00 -0.73258767e+02 0.13498000e+00
- 1 -211 0 0 -0.17640182e+00 0.84068081e-01 -0.85233881e+02 0.13957000e+00
- 1 211 0 0 0.18323941e+00 -0.11542808e+00 -0.10331619e+03 0.13957000e+00
- 1 130 0 0 0.13116718e+00 0.23785180e+00 -0.23078470e+01 0.49767000e+00
- 1 2212 0 0 -0.18075545e+00 0.49134485e+00 -0.59893349e+01 0.93827000e+00
- 1 -211 0 0 -0.10906079e+00 0.30714103e-01 -0.14714145e+01 0.13957000e+00
- 1 22 0 0 -0.16083649e+00 0.21975074e+00 -0.30120097e+01 0.00000000e+00
- 1 22 0 0 -0.14575734e+00 0.15394329e+00 -0.13599149e+01 0.00000000e+00
- 1 22 0 0 0.60898046e-02 0.14107603e+00 -0.22008496e-01 0.00000000e+00
- 1 22 0 0 -0.10698701e-01 0.49270267e-01 0.85007000e-01 0.00000000e+00
- 2 111 206 207 0.56345950e-01 -0.20158598e+00 -0.11171145e+00 0.13498000e+00
- 2 111 208 209 -0.17336154e+00 -0.44283798e+00 -0.94169749e+00 0.13498000e+00
- 1 130 0 0 -0.44810572e-01 0.21419727e+00 0.19308140e+01 0.49767000e+00
- 1 22 0 0 0.70852011e-02 0.26327283e-01 0.39113069e+02 0.00000000e+00
- 1 22 0 0 -0.34468686e-02 0.20155481e+00 0.57394102e+02 0.00000000e+00
- 1 22 0 0 -0.10433219e-01 0.90965965e-01 0.36640939e+03 0.00000000e+00
- 1 22 0 0 0.33603101e-01 0.22015155e-01 0.28326141e+02 0.00000000e+00
- 2 310 210 211 -0.23279559e+00 -0.22823771e+00 0.16128028e+02 0.49767000e+00
- 1 22 0 0 0.15458450e+00 -0.37078727e-01 0.96700932e+01 0.00000000e+00
- 1 22 0 0 0.11738239e+00 -0.15139084e+00 0.78442355e+01 0.00000000e+00
- 1 22 0 0 -0.14967252e-01 -0.69309571e-02 0.13776215e+00 0.00000000e+00
- 1 22 0 0 -0.88912710e+00 -0.19418766e+01 0.21632102e+02 0.00000000e+00
- 1 22 0 0 -0.40949142e+00 0.34199266e+00 0.44317184e+01 0.00000000e+00
- 1 22 0 0 -0.14974765e-01 0.75468570e-01 0.64647532e+00 0.00000000e+00
- 1 22 0 0 0.67718112e-02 -0.27058706e-02 0.14503353e+00 0.00000000e+00
- 1 22 0 0 -0.19547437e+00 -0.12514130e+01 0.13305962e+02 0.00000000e+00
- 2 310 212 213 0.98886103e-02 0.15168158e+00 0.19998517e+01 0.49767000e+00
- 2 310 214 215 -0.11368047e+00 0.63645882e-01 0.80907212e+01 0.49767000e+00
- 1 22 0 0 -0.16643719e+00 0.96982883e-01 -0.15360587e+00 0.00000000e+00
- 1 22 0 0 -0.38620382e+00 0.48573576e-01 -0.17823568e+00 0.00000000e+00
- 1 22 0 0 -0.12238599e+00 0.66550065e-01 -0.53959421e-01 0.00000000e+00
- 1 22 0 0 -0.90105723e+00 0.18456452e+00 -0.59944097e+00 0.00000000e+00
- 1 22 0 0 -0.18905591e+01 0.94448733e+00 -0.23114602e+01 0.00000000e+00
- 1 22 0 0 -0.14156014e-01 0.23466417e-01 -0.27435404e-01 0.00000000e+00
- 1 22 0 0 -0.92263634e-01 -0.96658225e-01 0.21397770e-01 0.00000000e+00
- 1 22 0 0 0.43444288e-01 -0.56237777e-01 -0.21990669e-01 0.00000000e+00
- 1 22 0 0 0.10235081e+00 0.21044827e+00 0.36349075e-02 0.00000000e+00
- 1 22 0 0 0.21274374e+00 -0.33210211e+00 -0.17613672e+00 0.00000000e+00
- 1 22 0 0 -0.13266255e+00 -0.15740958e+00 -0.16048138e+02 0.00000000e+00
- 1 22 0 0 -0.27758180e+00 -0.90336500e-01 -0.21743805e+02 0.00000000e+00
- 1 22 0 0 0.10716074e+00 0.12881783e+00 -0.41826544e+00 0.00000000e+00
- 1 22 0 0 -0.22534996e-01 -0.14766781e-01 -0.97218139e-01 0.00000000e+00
- 1 22 0 0 -0.24176084e+00 0.61520078e-01 -0.60517694e+02 0.00000000e+00
- 1 22 0 0 -0.90196987e-01 0.60823348e-01 -0.12741072e+02 0.00000000e+00
- 1 22 0 0 0.24552643e-01 -0.20786796e+00 -0.71208345e-01 0.00000000e+00
- 1 22 0 0 0.31793307e-01 0.62819814e-02 -0.40503102e-01 0.00000000e+00
- 1 22 0 0 -0.47596128e-01 -0.49377182e-01 -0.23703360e+00 0.00000000e+00
- 1 22 0 0 -0.12576541e+00 -0.39346080e+00 -0.70466389e+00 0.00000000e+00
- 1 -211 0 0 -0.21048780e-01 -0.29979697e+00 0.88563795e+01 0.13957000e+00
- 1 211 0 0 -0.21174681e+00 0.71559265e-01 0.72716481e+01 0.13957000e+00
- 2 111 216 217 0.28430499e-01 0.11847942e+00 0.18583436e+01 0.13498000e+00
- 2 111 218 219 -0.18541888e-01 0.33202167e-01 0.14150808e+00 0.13498000e+00
- 1 -211 0 0 0.15080235e+00 0.56273694e-01 0.37451323e+01 0.13957000e+00
- 1 211 0 0 -0.26448283e+00 0.73721883e-02 0.43455889e+01 0.13957000e+00
- 1 22 0 0 0.95959074e-02 -0.12162366e-01 0.86564395e+00 0.00000000e+00
- 1 22 0 0 0.18834591e-01 0.13064178e+00 0.99269962e+00 0.00000000e+00
- 1 22 0 0 -0.46800411e-01 -0.27833908e-01 0.15873804e-01 0.00000000e+00
- 1 22 0 0 0.28258523e-01 0.61036075e-01 0.12563428e+00 0.00000000e+00
- 480
- 2 25 2 3 -0.81416914e+02 0.93533524e+01 -0.10955328e+03 0.12500144e+03
- 2 23 4 6 -0.57719803e+02 0.50147336e+01 -0.47791972e+02 0.90558346e+02
- 2 23 7 9 -0.23697111e+02 0.43386188e+01 -0.61761307e+02 0.13577004e+02
- 1 13 0 0 0.21450784e+02 -0.99078928e+01 0.66074385e+00 0.10566000e+00
- 1 -13 0 0 -0.79002589e+02 0.14890682e+02 -0.48347705e+02 0.10566000e+00
- 1 22 0 0 -0.16799760e+00 0.31944287e-01 -0.10501071e+00 0.00000000e+00
- 1 -13 0 0 -0.89719135e+01 -0.40450455e+01 -0.15076941e+02 0.10566000e+00
- 1 13 0 0 -0.14523667e+02 0.82656409e+01 -0.46024327e+02 0.10566000e+00
- 1 22 0 0 -0.20153098e+00 0.11802337e+00 -0.66003944e+00 0.00000000e+00
- 2 3 65 65 -0.10097459e+02 -0.19981349e+01 0.46490551e+02 0.50000000e+00
- 2 21 65 65 0.45812050e+00 -0.24844122e+00 0.13659504e+02 0.00000000e+00
- 2 21 65 65 -0.10761215e+01 0.32716147e+00 0.14417764e+02 0.00000000e+00
- 2 21 65 65 0.32086496e+00 0.17209902e+00 0.34360570e+02 0.00000000e+00
- 2 2203 65 65 -0.14303726e+01 -0.10504899e+01 0.47099319e+04 0.77133000e+00
- 2 -4 82 82 0.65239144e+02 0.24190637e+02 0.14426833e+03 0.15000000e+01
- 2 21 82 82 0.12593690e+02 0.53984156e+01 0.26973840e+02 0.00000000e+00
- 2 21 82 82 0.56720562e+01 0.82173527e+00 0.10334716e+02 0.00000000e+00
- 2 21 82 82 0.48549817e+01 0.10784221e+01 0.11151302e+02 0.00000000e+00
- 2 21 82 82 0.17713592e+01 0.15176040e+01 0.71687585e+01 0.00000000e+00
- 2 21 82 82 0.35139291e+01 0.21341744e+01 0.91986360e+01 0.00000000e+00
- 2 21 82 82 -0.10705157e+00 -0.21071164e+00 -0.45345580e+00 0.00000000e+00
- 2 21 82 82 0.22836098e+01 -0.65076651e+00 0.17010941e+02 0.00000000e+00
- 2 21 82 82 0.11475063e+01 0.22335298e+01 0.16999687e+02 0.00000000e+00
- 2 21 82 82 0.35229069e+01 0.10899482e+01 0.13339617e+02 0.00000000e+00
- 2 21 82 82 0.90758969e+01 0.11604212e+01 0.11361272e+02 0.00000000e+00
- 2 21 82 82 0.30261380e+01 -0.10396600e+01 0.37429532e+01 0.00000000e+00
- 2 21 82 82 0.21109394e+01 0.24911479e+01 -0.87187038e-01 0.00000000e+00
- 2 21 82 82 0.77897396e+00 0.11594749e+01 -0.14227772e+00 0.00000000e+00
- 2 21 82 82 -0.22125526e+01 0.21456766e+01 -0.20593195e+01 0.00000000e+00
- 2 21 82 82 0.13474347e+01 -0.10138088e+01 -0.67195752e+00 0.00000000e+00
- 2 21 82 82 0.22125526e+01 -0.21456766e+01 -0.28458973e+01 0.00000000e+00
- 2 21 82 82 -0.11475063e+01 -0.22335298e+01 -0.25106456e+01 0.00000000e+00
- 2 21 82 82 -0.21109394e+01 -0.24911479e+01 -0.15093564e+01 0.00000000e+00
- 2 21 82 82 -0.30261380e+01 0.10396600e+01 0.37988566e+01 0.00000000e+00
- 2 21 82 82 -0.25596431e+00 0.59746666e+00 0.15287109e+01 0.00000000e+00
- 2 21 82 82 0.13868950e+00 -0.54511107e+00 0.27569678e+01 0.00000000e+00
- 2 21 82 82 -0.35229069e+01 -0.10899482e+01 0.82774158e+03 0.00000000e+00
- 2 21 82 82 -0.13474347e+01 0.10138088e+01 0.99452731e+03 0.00000000e+00
- 2 1 82 82 -0.12660461e+01 -0.76744361e+00 0.14515037e+02 0.33000000e+00
- 2 2 144 144 0.88545613e+00 -0.29856979e+02 -0.14637609e+04 0.33000000e+00
- 2 21 144 144 0.18334342e+00 -0.92347487e+01 -0.41472654e+03 0.00000000e+00
- 2 21 144 144 -0.10738511e+00 -0.10519988e+01 -0.13546859e+02 0.00000000e+00
- 2 21 144 144 -0.11852462e+00 0.20072515e+00 -0.15670250e+01 0.00000000e+00
- 2 21 144 144 -0.10315653e+00 -0.33584484e+00 -0.71859705e+00 0.00000000e+00
- 2 21 144 144 -0.32143281e+00 -0.82805176e+00 -0.55385638e+00 0.00000000e+00
- 2 21 144 144 -0.90758969e+01 -0.11604212e+01 -0.47303534e+02 0.00000000e+00
- 2 21 144 144 -0.22836098e+01 0.65076651e+00 -0.39805710e+02 0.00000000e+00
- 2 21 144 144 -0.39736571e+00 -0.82964469e+00 -0.36530936e+02 0.00000000e+00
- 2 21 144 144 0.25596431e+00 -0.59746666e+00 -0.18639886e+02 0.00000000e+00
- 2 21 144 144 -0.77897396e+00 -0.11594749e+01 -0.87707164e+02 0.00000000e+00
- 2 21 144 144 0.99480636e+00 -0.26909094e+01 -0.28488144e+03 0.00000000e+00
- 2 21 144 144 0.68928358e+00 -0.52779310e-01 -0.56275033e+02 0.00000000e+00
- 2 21 144 144 -0.10435925e+01 -0.55024933e+00 -0.18229656e+03 0.00000000e+00
- 2 21 144 144 -0.34941909e+00 0.80669716e-01 -0.38866503e+03 0.00000000e+00
- 2 21 144 144 0.11250078e+01 -0.56967277e+00 -0.10360547e+04 0.00000000e+00
- 2 21 144 144 -0.29047371e+00 0.87025607e-01 -0.81698157e+02 0.00000000e+00
- 2 2203 144 144 0.42071328e+00 0.13935241e+01 -0.26252759e+04 0.77133000e+00
- 2 21 173 173 -0.14980214e+01 -0.25322978e+01 -0.12127536e+02 0.00000000e+00
- 2 21 173 173 -0.99480636e+00 0.26909094e+01 -0.98317479e+01 0.00000000e+00
- 2 21 173 173 -0.59730676e+00 0.23923165e+01 -0.72748410e+01 0.00000000e+00
- 2 21 173 173 0.39736571e+00 0.82964469e+00 -0.32806605e+01 0.00000000e+00
- 2 21 173 173 -0.13868950e+00 0.54511107e+00 0.22737108e+00 0.00000000e+00
- 2 21 173 173 0.14980214e+01 0.25322978e+01 0.24946678e+01 0.00000000e+00
- 2 21 173 173 0.59730676e+00 -0.23923165e+01 -0.56448992e+01 0.00000000e+00
- 2 92 66 81 -0.11824968e+02 -0.27978055e+01 0.48188603e+04 0.10616098e+03
- 2 333 189 190 -0.24991355e+01 -0.52461386e+00 0.12849956e+02 0.10207557e+01
- 1 -321 0 0 -0.10612163e+01 -0.51655811e+00 0.88455232e+01 0.49360000e+00
- 2 323 191 192 -0.15170237e+01 -0.23150240e+00 0.77343129e+01 0.84372223e+00
- 2 3122 193 194 -0.16944077e+01 -0.71528456e+00 0.12413138e+02 0.11156800e+01
- 1 -2112 0 0 -0.26295942e+01 0.39124477e+00 0.12677455e+02 0.93957000e+00
- 2 111 195 196 -0.11218463e+01 -0.96671995e-01 0.80563346e+01 0.13498000e+00
- 2 111 197 198 0.23410990e+00 -0.68662758e+00 0.30020577e+02 0.13498000e+00
- 2 223 199 201 0.40796746e+00 0.30808443e+00 0.38498661e+02 0.77535549e+00
- 1 -211 0 0 -0.45327480e+00 0.74052857e-01 0.19058464e+02 0.13957000e+00
- 1 211 0 0 -0.18781890e+00 -0.12740423e+00 0.28896080e+03 0.13957000e+00
- 2 111 202 203 -0.48647493e+00 -0.10148971e+00 0.24954255e+03 0.13498000e+00
- 2 -213 204 205 0.20920309e+00 -0.85956725e-01 0.47920661e+03 0.75489695e+00
- 2 111 206 207 -0.56424541e+00 0.16648734e+00 0.85525045e+02 0.13498000e+00
- 2 111 208 209 0.35664608e+00 0.58590888e+00 0.29853492e+03 0.13498000e+00
- 2 2214 210 211 -0.50376052e+00 -0.84222430e+00 0.20769886e+04 0.12624893e+01
- 2 213 212 213 -0.31409594e+00 -0.39525031e+00 0.11899474e+04 0.76175268e+00
- 2 92 83 143 0.10429327e+03 0.35884318e+02 0.21061384e+04 0.50287039e+03
- 2 -4212 214 215 0.40702436e+02 0.15773815e+02 0.89602314e+02 0.24535000e+01
- 2 111 216 217 0.24759478e+02 0.89606844e+01 0.53576973e+02 0.13498000e+00
- 1 2212 0 0 0.12523278e+02 0.41480066e+01 0.27466473e+02 0.93827000e+00
- 2 221 218 219 0.37578648e+01 0.10638635e+01 0.78429259e+01 0.54745000e+00
- 1 -211 0 0 0.22824646e+01 0.44842468e+00 0.55880441e+01 0.13957000e+00
- 1 211 0 0 0.99745016e+00 0.26717851e+00 0.19675791e+01 0.13957000e+00
- 2 113 220 221 0.26337663e+01 0.20419649e+01 0.78647705e+01 0.77448797e+00
- 2 331 222 223 0.14697238e+01 0.40411240e+00 0.32306846e+01 0.95777607e+00
- 2 111 224 225 0.11501550e+01 0.83808119e-01 0.27282000e+01 0.13498000e+00
- 2 111 226 227 0.11330708e+01 -0.44505914e-01 0.21072941e+01 0.13498000e+00
- 1 -321 0 0 0.58129823e+00 0.49996879e+00 0.14389023e+01 0.49360000e+00
- 2 313 228 229 0.18396717e+00 0.17147777e+00 0.29245500e+01 0.89397236e+00
- 2 113 230 231 0.16438380e+01 0.10836666e+01 0.50577645e+01 0.65733335e+00
- 2 111 232 233 0.15552062e-01 -0.93784125e-02 0.28223711e+00 0.13498000e+00
- 2 -1114 234 235 0.11672387e+01 -0.16494094e+00 0.44307990e+01 0.11912240e+01
- 2 221 236 237 -0.24106539e+00 0.75288475e-01 0.13970349e+01 0.54745000e+00
- 2 1114 238 239 0.29020709e+00 0.62917789e+00 0.82715222e+01 0.13131413e+01
- 1 211 0 0 0.12135356e+01 0.33715065e+00 0.35630791e+01 0.13957000e+00
- 2 221 240 242 0.88268550e+00 0.69729418e-01 0.34977620e+01 0.54745000e+00
- 2 -213 243 244 0.14474074e+01 0.92932299e+00 0.14319706e+02 0.79239237e+00
- 2 213 245 246 0.75004187e+00 0.34526548e+00 0.28020255e+01 0.81067162e+00
- 1 -211 0 0 0.88622744e+00 0.46655639e+00 0.22907761e+01 0.13957000e+00
- 2 111 247 248 0.41910912e+00 -0.10879049e+00 0.19082074e+01 0.13498000e+00
- 2 113 249 250 0.19978824e+01 0.48232294e+00 0.37130754e+01 0.84290882e+00
- 2 213 251 252 0.29112522e+01 0.25789373e+00 0.39347441e+01 0.94864176e+00
- 2 113 253 254 0.36193170e+01 -0.22210382e+00 0.49671869e+01 0.73451459e+00
- 2 -323 255 256 0.12184948e+01 0.43533890e+00 0.14921038e+01 0.79504597e+00
- 2 311 257 257 0.20640901e+01 0.32103135e+00 0.22036377e+01 0.49767000e+00
- 1 -2112 0 0 0.91277670e+00 0.61778532e+00 -0.25408638e+00 0.93957000e+00
- 1 2112 0 0 0.59264647e+00 0.26184135e+00 0.29251398e+00 0.93957000e+00
- 2 213 258 259 -0.23985631e+00 0.21490113e-02 -0.24408542e+00 0.58976127e+00
- 2 -2224 260 261 -0.10863653e+00 0.18032119e+01 -0.39604083e+00 0.12210773e+01
- 1 211 0 0 0.91429052e+00 0.71535560e+00 -0.25800129e-01 0.13957000e+00
- 1 2212 0 0 -0.96292585e-02 -0.21025744e+00 -0.24812642e+00 0.93827000e+00
- 2 -2114 262 263 -0.14411424e+00 0.49059637e+00 -0.60035766e+00 0.12135351e+01
- 2 -213 264 265 0.10190933e+01 -0.70588835e+00 -0.20469894e+01 0.69453746e+00
- 1 2212 0 0 -0.12257793e+00 -0.29962323e+00 -0.46744635e+00 0.93827000e+00
- 2 -213 266 267 -0.72546411e+00 -0.86229166e+00 -0.75751133e+00 0.72952122e+00
- 2 223 268 270 0.14899307e+00 -0.12073550e+01 -0.16118261e+01 0.77841767e+00
- 2 113 271 272 -0.93125882e-01 -0.93756922e+00 -0.91491773e+00 0.86365923e+00
- 2 -2214 273 274 0.20204345e+00 -0.58358533e+00 0.54612605e-01 0.11752700e+01
- 2 213 275 276 -0.80282454e+00 -0.84104761e-01 -0.18868383e+00 0.75806224e+00
- 1 2212 0 0 -0.88946362e+00 -0.12811633e+01 -0.28149223e+00 0.93827000e+00
- 1 -2112 0 0 -0.61355697e+00 0.44695084e+00 0.13706470e+01 0.93957000e+00
- 2 221 277 278 -0.21998732e+00 -0.98604964e-01 -0.32736049e-03 0.54745000e+00
- 2 1114 279 280 -0.12868764e+01 -0.47224402e-01 0.54895515e+00 0.11097279e+01
- 1 211 0 0 -0.31572678e+00 0.13875055e-01 0.25279807e+01 0.13957000e+00
- 2 223 281 283 -0.17064860e+00 -0.34756988e+00 0.73163960e+01 0.78101786e+00
- 2 -2114 284 285 -0.35985101e+00 0.30971860e+00 0.15882393e+02 0.12234295e+01
- 2 1114 286 287 -0.60091568e-01 0.21465150e+00 0.14689286e+02 0.12591847e+01
- 2 213 288 289 -0.11977054e+00 0.30265233e-01 0.32571320e+02 0.60771675e+00
- 2 331 290 291 0.15457961e+00 -0.51811823e+00 0.69477876e+02 0.95840419e+00
- 2 221 292 293 -0.18909248e+00 0.44441651e+00 0.65173230e+02 0.54745000e+00
- 2 -213 294 295 -0.13379388e+01 -0.61582692e+00 0.25485116e+03 0.75087516e+00
- 2 223 296 298 -0.20380678e+00 0.23966986e-01 0.29633805e+03 0.80033475e+00
- 2 213 299 300 -0.14256006e+01 -0.61488483e-01 0.35518955e+03 0.79430393e+00
- 2 223 301 303 -0.10732348e+01 0.16060712e-01 0.63201027e+03 0.79627718e+00
- 1 -211 0 0 -0.27763704e+00 0.78200616e-01 0.19639572e+02 0.13957000e+00
- 1 -2112 0 0 -0.93305521e+00 -0.91605950e-02 0.22679250e+02 0.93957000e+00
- 2 -213 304 305 -0.11321728e+00 -0.22034229e-02 0.11929947e+02 0.74511257e+00
- 1 2212 0 0 -0.27613704e+00 -0.45902217e+00 0.41162720e+02 0.93827000e+00
- 2 92 145 172 -0.10315256e+02 -0.46505530e+02 -0.67800078e+04 0.15963690e+03
- 2 2224 306 307 0.96872550e+00 -0.18709231e+02 -0.90485958e+03 0.13322232e+01
- 2 -213 308 309 -0.21411991e+00 -0.74714702e+01 -0.33961346e+03 0.88344535e+00
- 2 -2214 310 311 0.39431789e+00 -0.11635735e+02 -0.57452214e+03 0.12138216e+01
- 2 2114 312 313 -0.24606541e+00 -0.97560152e+00 -0.20283210e+02 0.12022454e+01
- 2 213 314 315 0.34817032e+00 -0.37355514e+00 -0.27459036e+02 0.81778636e+00
- 1 -2212 0 0 0.39429108e-01 -0.31905396e+00 -0.98186766e+01 0.93827000e+00
- 2 213 316 317 -0.37750760e+00 -0.68111878e+00 -0.63813601e+01 0.73829550e+00
- 2 2214 318 319 -0.32986256e+00 -0.42059420e+00 -0.56333945e+01 0.11677116e+01
- 1 -211 0 0 -0.55802714e+00 0.31280698e+00 -0.49916362e+01 0.13957000e+00
- 1 -2212 0 0 -0.58059035e+00 -0.74398640e+00 -0.87564098e+01 0.93827000e+00
- 2 111 320 321 -0.11110411e+01 0.10765917e+00 -0.20676793e+01 0.13498000e+00
- 2 213 322 323 -0.25520734e+01 -0.86304306e+00 -0.14647625e+02 0.50498736e+00
- 2 -213 324 325 -0.13574678e+01 0.29815619e+00 -0.82230744e+01 0.78377933e+00
- 1 321 0 0 -0.10892885e+01 -0.48960603e+00 -0.79893730e+01 0.49360000e+00
- 2 -323 326 327 -0.20943640e+01 0.60349382e+00 -0.15982208e+02 0.88981337e+00
- 1 211 0 0 -0.46251866e+00 -0.47089515e+00 -0.43383533e+01 0.13957000e+00
- 1 2112 0 0 -0.87280862e+00 -0.63375598e+00 -0.27560544e+02 0.93957000e+00
- 2 -3122 328 329 -0.86439375e+00 -0.12376233e+00 -0.29152308e+02 0.11156800e+01
- 2 -313 330 331 -0.63318338e+00 -0.53962564e+00 -0.48332854e+02 0.85924716e+00
- 1 2112 0 0 0.91671400e+00 -0.15827241e+01 -0.15822733e+03 0.93957000e+00
- 2 113 332 333 -0.52188687e+00 -0.91566622e+00 -0.10943003e+03 0.94572911e+00
- 2 -2114 334 335 0.27426121e-01 -0.12617728e+01 -0.23185283e+03 0.12202818e+01
- 2 -213 336 337 0.29670756e+00 -0.31360978e+00 -0.18632162e+03 0.57477998e+00
- 2 111 338 339 0.24236823e+00 -0.28707589e+00 -0.35081265e+02 0.13498000e+00
- 1 211 0 0 -0.27533467e+00 0.30249804e+00 -0.98493699e+02 0.13957000e+00
- 2 313 340 341 -0.14675532e+00 -0.52521192e+00 -0.77414293e+03 0.91329595e+00
- 2 3224 342 343 0.85399401e+00 0.75107022e+00 -0.23808556e+04 0.13815303e+01
- 2 223 344 346 -0.11581956e+00 0.45587933e+00 -0.74498958e+03 0.78835115e+00
- 2 92 174 188 -0.73613015e+00 0.40656652e+01 -0.35437646e+02 0.26485074e+02
- 2 213 347 348 0.40474010e+00 -0.34576133e+00 -0.27961556e+00 0.70108397e+00
- 2 113 349 350 0.15868106e+00 -0.51230624e+00 -0.19253164e+01 0.75857052e+00
- 1 -211 0 0 -0.71631413e-01 -0.49265234e+00 -0.31365803e+01 0.13957000e+00
- 2 111 351 352 -0.89098899e+00 -0.81711204e+00 -0.38643421e+01 0.13498000e+00
- 2 213 353 354 0.70159992e+00 -0.16332251e+00 -0.15774802e+01 0.57189104e+00
- 1 -2212 0 0 -0.94258890e+00 -0.12540263e+01 -0.79628458e+01 0.93827000e+00
- 1 2112 0 0 -0.29429802e-01 0.26647010e+00 -0.26888635e+01 0.93957000e+00
- 2 -311 355 355 -0.61366679e+00 0.19557855e+01 -0.86999310e+01 0.49767000e+00
- 2 333 356 357 -0.28696047e+00 0.14163039e+01 -0.35595853e+01 0.10195537e+01
- 2 313 358 359 0.60104096e-01 0.94784927e+00 -0.16992876e+01 0.89900841e+00
- 2 -313 360 361 -0.22342398e+00 0.54732191e+00 -0.52173503e+00 0.91612999e+00
- 2 323 362 363 0.64359809e+00 0.14648063e+00 -0.20000767e+00 0.91289199e+00
- 2 221 364 365 0.10160694e+00 0.39008199e+00 0.39651472e+00 0.54745000e+00
- 1 -321 0 0 -0.25373555e+00 0.70182379e+00 -0.68673986e+00 0.49360000e+00
- 2 313 366 367 0.50596554e+00 0.12787288e+01 0.96817007e+00 0.98009097e+00
- 1 321 0 0 -0.92184877e+00 -0.21334412e+00 0.51680939e+01 0.49360000e+00
- 1 -321 0 0 -0.15772867e+01 -0.31126974e+00 0.76818621e+01 0.49360000e+00
- 2 311 368 368 -0.12364645e+01 -0.39062254e+00 0.64992758e+01 0.49767000e+00
- 1 211 0 0 -0.28055924e+00 0.15912014e+00 0.12350370e+01 0.13957000e+00
- 1 2212 0 0 -0.15402617e+01 -0.72258854e+00 0.11256631e+02 0.93827000e+00
- 1 -211 0 0 -0.15414593e+00 0.73039798e-02 0.11565069e+01 0.13957000e+00
- 1 22 0 0 -0.42642735e+00 -0.79657507e-02 0.34808550e+01 0.00000000e+00
- 1 22 0 0 -0.69541897e+00 -0.88706245e-01 0.45754796e+01 0.00000000e+00
- 1 22 0 0 0.64593257e-01 -0.70228288e-01 0.49374869e+01 0.00000000e+00
- 1 22 0 0 0.16951665e+00 -0.61639930e+00 0.25083090e+02 0.00000000e+00
- 1 211 0 0 0.32204410e+00 0.17782131e+00 0.11914581e+02 0.13957000e+00
- 1 -211 0 0 0.44703203e-01 0.20490973e+00 0.22734801e+02 0.13957000e+00
- 2 111 369 370 0.41220159e-01 -0.74646615e-01 0.38492800e+01 0.13498000e+00
- 1 22 0 0 -0.33494575e+00 -0.48990119e-01 0.13756203e+03 0.00000000e+00
- 1 22 0 0 -0.15152919e+00 -0.52499591e-01 0.11198052e+03 0.00000000e+00
- 1 -211 0 0 0.13024823e+00 -0.10010140e+00 0.37467250e+02 0.13957000e+00
- 2 111 371 372 0.78954859e-01 0.14144671e-01 0.44173936e+03 0.13498000e+00
- 1 22 0 0 -0.47545971e+00 0.16989710e+00 0.77326842e+02 0.00000000e+00
- 1 22 0 0 -0.88785701e-01 -0.34097640e-02 0.81982024e+01 0.00000000e+00
- 1 22 0 0 0.95817280e-01 0.19819344e+00 0.71991385e+02 0.00000000e+00
- 1 22 0 0 0.26082880e+00 0.38771544e+00 0.22654354e+03 0.00000000e+00
- 1 2212 0 0 -0.61107881e+00 -0.80722355e+00 0.19566632e+04 0.93827000e+00
- 2 111 373 374 0.10731829e+00 -0.35000749e-01 0.12032533e+03 0.13498000e+00
- 1 211 0 0 0.96024932e-01 -0.88518829e-01 0.76092531e+03 0.13957000e+00
- 2 111 375 376 -0.41012087e+00 -0.30673148e+00 0.42902213e+03 0.13498000e+00
- 2 -4122 377 379 0.38042714e+02 0.14845548e+02 0.83862420e+02 0.22849000e+01
- 2 111 380 381 0.26597226e+01 0.92826777e+00 0.57398934e+01 0.13498000e+00
- 1 22 0 0 0.10919637e+02 0.39476051e+01 0.23474410e+02 0.00000000e+00
- 1 22 0 0 0.13839841e+02 0.50130793e+01 0.30102563e+02 0.00000000e+00
- 1 22 0 0 0.16333703e+01 0.22291978e+00 0.36039360e+01 0.00000000e+00
- 1 22 0 0 0.21244945e+01 0.84094376e+00 0.42389899e+01 0.00000000e+00
- 1 211 0 0 0.11817680e+01 0.10017425e+01 0.27799513e+01 0.13957000e+00
- 1 -211 0 0 0.14519982e+01 0.10402224e+01 0.50848192e+01 0.13957000e+00
- 1 22 0 0 0.70467127e+00 -0.94285299e-02 0.11926820e+01 0.00000000e+00
- 2 113 382 383 0.76505249e+00 0.41354093e+00 0.20380026e+01 0.66366060e+00
- 1 22 0 0 0.29239208e+00 0.75199892e-01 0.64870913e+00 0.00000000e+00
- 1 22 0 0 0.85776297e+00 0.86082267e-02 0.20794908e+01 0.00000000e+00
- 1 22 0 0 0.30787820e+00 -0.20970132e-01 0.70487789e+00 0.00000000e+00
- 1 22 0 0 0.82519257e+00 -0.23535781e-01 0.14024162e+01 0.00000000e+00
- 2 311 384 384 0.17767506e+00 -0.15833522e+00 0.20770765e+01 0.49767000e+00
- 2 111 385 386 0.62921109e-02 0.32981299e+00 0.84747348e+00 0.13498000e+00
- 1 -211 0 0 0.15035883e+01 0.75415650e+00 0.39914192e+01 0.13957000e+00
- 1 211 0 0 0.14024965e+00 0.32951012e+00 0.10663453e+01 0.13957000e+00
- 1 22 0 0 0.33946871e-01 0.54450790e-01 0.94396571e-01 0.00000000e+00
- 1 22 0 0 -0.18394809e-01 -0.63829202e-01 0.18784054e+00 0.00000000e+00
- 1 -2112 0 0 0.82695458e+00 -0.46587159e-01 0.29112764e+01 0.93957000e+00
- 1 211 0 0 0.34028408e+00 -0.11835378e+00 0.15195226e+01 0.13957000e+00
- 1 22 0 0 -0.21510573e+00 -0.21918220e+00 0.73045215e+00 0.00000000e+00
- 1 22 0 0 -0.25959663e-01 0.29447067e+00 0.66658274e+00 0.00000000e+00
- 1 2112 0 0 0.36557763e+00 0.53309195e+00 0.50635565e+01 0.93957000e+00
- 1 -211 0 0 -0.75370540e-01 0.96085946e-01 0.32079658e+01 0.13957000e+00
- 1 22 0 0 0.15752319e+00 0.40338763e-01 0.39227666e+00 0.00000000e+00
- 1 -211 0 0 0.26199764e+00 0.18029945e+00 0.98116644e+00 0.13957000e+00
- 1 211 0 0 0.46316467e+00 -0.15090879e+00 0.21243189e+01 0.13957000e+00
- 1 -211 0 0 0.20893578e+00 0.36801632e+00 0.56634865e+01 0.13957000e+00
- 2 111 387 388 0.12384716e+01 0.56130667e+00 0.86562196e+01 0.13498000e+00
- 1 211 0 0 0.12224977e+00 0.15034718e+00 0.12079985e+00 0.13957000e+00
- 2 111 389 390 0.62779210e+00 0.19491830e+00 0.26812257e+01 0.13498000e+00
- 1 22 0 0 0.63605571e-01 0.29803477e-01 0.36419457e+00 0.00000000e+00
- 1 22 0 0 0.35550355e+00 -0.13859396e+00 0.15440128e+01 0.00000000e+00
- 1 211 0 0 0.10227420e+01 -0.10940786e+00 0.21431405e+01 0.13957000e+00
- 1 -211 0 0 0.97514034e+00 0.59173079e+00 0.15699349e+01 0.13957000e+00
- 1 211 0 0 0.24109233e+01 0.51799734e+00 0.29278959e+01 0.13957000e+00
- 2 111 391 392 0.50032887e+00 -0.26010361e+00 0.10068481e+01 0.13498000e+00
- 1 -211 0 0 0.18020093e+01 -0.45089033e+00 0.25077067e+01 0.13957000e+00
- 1 211 0 0 0.18173077e+01 0.22878652e+00 0.24594802e+01 0.13957000e+00
- 2 -311 393 393 0.93842096e+00 0.36222796e+00 0.14008454e+01 0.49767000e+00
- 1 -211 0 0 0.28007386e+00 0.73110939e-01 0.91258461e-01 0.13957000e+00
- 1 130 0 0 0.20640901e+01 0.32103135e+00 0.22036377e+01 0.49767000e+00
- 1 211 0 0 -0.16129050e+00 -0.25799923e-01 0.14665800e+00 0.13957000e+00
- 2 111 394 395 -0.78565803e-01 0.27948935e-01 -0.39074341e+00 0.13498000e+00
- 1 -2212 0 0 0.10756096e+00 0.14877734e+01 -0.40816499e+00 0.93827000e+00
- 1 -211 0 0 -0.21619749e+00 0.31543844e+00 0.12124163e-01 0.13957000e+00
- 1 -2112 0 0 -0.64759728e-01 0.18247639e+00 -0.35283856e+00 0.93957000e+00
- 2 111 396 398 -0.79354508e-01 0.30811998e+00 -0.24751910e+00 0.13498000e+00
- 1 -211 0 0 0.10494985e+01 -0.71112245e+00 -0.19130944e+01 0.13957000e+00
- 2 111 399 400 -0.30405175e-01 0.52340995e-02 -0.13389506e+00 0.13498000e+00
- 1 -211 0 0 -0.41358635e+00 -0.48329227e-01 -0.38449234e+00 0.13957000e+00
- 2 111 401 402 -0.31187776e+00 -0.81396244e+00 -0.37301899e+00 0.13498000e+00
- 1 -211 0 0 0.15095611e+00 -0.43245723e+00 -0.57386471e+00 0.13957000e+00
- 1 211 0 0 -0.24949735e+00 -0.46038220e+00 -0.57607639e+00 0.13957000e+00
- 2 111 403 404 0.24753431e+00 -0.31451553e+00 -0.46188504e+00 0.13498000e+00
- 1 -211 0 0 -0.28543281e+00 -0.26611078e-01 -0.35204567e+00 0.13957000e+00
- 1 211 0 0 0.19230693e+00 -0.91095814e+00 -0.56287206e+00 0.13957000e+00
- 1 -2212 0 0 0.24608163e+00 -0.42290544e+00 0.19010854e+00 0.93827000e+00
- 2 111 405 406 -0.44038178e-01 -0.16067990e+00 -0.13549593e+00 0.13498000e+00
- 1 211 0 0 0.10510946e-01 0.65777211e-01 -0.23807833e+00 0.13957000e+00
- 2 111 407 408 -0.81333549e+00 -0.14988197e+00 0.49394502e-01 0.13498000e+00
- 1 22 0 0 -0.27977147e+00 -0.21385345e+00 -0.16466729e+00 0.00000000e+00
- 1 22 0 0 0.59784151e-01 0.11524849e+00 0.16433992e+00 0.00000000e+00
- 1 2112 0 0 -0.11298763e+01 -0.11522094e+00 0.52306780e+00 0.93957000e+00
- 1 -211 0 0 -0.15700009e+00 0.67996540e-01 0.25887349e-01 0.13957000e+00
- 1 211 0 0 -0.13660526e+00 -0.34292137e+00 0.43533010e+01 0.13957000e+00
- 1 -211 0 0 -0.87076733e-01 -0.12634614e+00 0.83048943e+00 0.13957000e+00
- 2 111 409 410 0.53033401e-01 0.12169762e+00 0.21326056e+01 0.13498000e+00
- 1 -2112 0 0 -0.12731962e+00 0.26276796e+00 0.10134392e+02 0.93957000e+00
- 2 111 411 412 -0.23253140e+00 0.46950643e-01 0.57480005e+01 0.13498000e+00
- 1 2112 0 0 0.17284798e+00 0.40762135e-01 0.11064304e+02 0.93957000e+00
- 1 -211 0 0 -0.23293955e+00 0.17388936e+00 0.36249822e+01 0.13957000e+00
- 1 211 0 0 -0.12605090e+00 0.21081446e+00 0.26813855e+02 0.13957000e+00
- 2 111 413 414 0.62803682e-02 -0.18054923e+00 0.57574645e+01 0.13498000e+00
- 1 22 0 0 -0.25430655e-01 -0.45582289e-02 0.10981504e+02 0.00000000e+00
- 2 113 415 416 0.18001027e+00 -0.51356000e+00 0.58496372e+02 0.84840998e+00
- 1 22 0 0 -0.31932674e+00 0.14711942e+00 0.21424108e+02 0.00000000e+00
- 1 22 0 0 0.13023426e+00 0.29729708e+00 0.43749122e+02 0.00000000e+00
- 1 -211 0 0 -0.12562781e+01 -0.65972388e+00 0.19833697e+03 0.13957000e+00
- 2 111 417 418 -0.81660758e-01 0.43896957e-01 0.56514192e+02 0.13498000e+00
- 1 211 0 0 0.95962115e-01 0.44980149e-03 0.37432541e+02 0.13957000e+00
- 1 -211 0 0 -0.31889315e+00 -0.17522916e+00 0.16260977e+03 0.13957000e+00
- 2 111 419 420 0.19124259e-01 0.19874635e+00 0.96295732e+02 0.13498000e+00
- 1 211 0 0 -0.36978480e+00 0.28413882e+00 0.13974064e+03 0.13957000e+00
- 2 111 421 422 -0.10558158e+01 -0.34562730e+00 0.21544890e+03 0.13498000e+00
- 1 211 0 0 -0.31727876e+00 0.18562981e+00 0.21803433e+03 0.13957000e+00
- 1 -211 0 0 -0.72614805e+00 -0.54208594e-01 0.29992241e+03 0.13957000e+00
- 2 111 423 424 -0.29808020e-01 -0.11536050e+00 0.11405353e+03 0.13498000e+00
- 1 -211 0 0 -0.22481054e+00 0.27320035e+00 0.42941386e+01 0.13957000e+00
- 2 111 425 426 0.11159326e+00 -0.27540377e+00 0.76358085e+01 0.13498000e+00
- 1 2212 0 0 0.49820701e+00 -0.14318952e+02 -0.68238451e+03 0.93827000e+00
- 1 211 0 0 0.47051849e+00 -0.43902788e+01 -0.22247507e+03 0.13957000e+00
- 1 -211 0 0 0.34431575e-01 -0.19079655e+00 -0.96506173e+01 0.13957000e+00
- 2 111 427 428 -0.24855148e+00 -0.72806737e+01 -0.32996285e+03 0.13498000e+00
- 1 -2212 0 0 0.40278598e+00 -0.11127063e+02 -0.55204951e+03 0.93827000e+00
- 2 111 429 430 -0.84680867e-02 -0.50867174e+00 -0.22472630e+02 0.13498000e+00
- 1 2212 0 0 -0.19684555e+00 -0.99199487e+00 -0.19304869e+02 0.93827000e+00
- 1 -211 0 0 -0.49219867e-01 0.16393342e-01 -0.97834141e+00 0.13957000e+00
- 1 211 0 0 0.27633904e+00 0.99595088e-01 -0.45859998e+01 0.13957000e+00
- 2 111 431 432 0.71831279e-01 -0.47315022e+00 -0.22873036e+02 0.13498000e+00
- 1 211 0 0 -0.57370558e-01 0.87468271e-01 -0.50279923e+00 0.13957000e+00
- 2 111 433 434 -0.32013704e+00 -0.76858705e+00 -0.58785609e+01 0.13498000e+00
- 1 2212 0 0 -0.41595156e+00 -0.44862839e+00 -0.48183125e+01 0.93827000e+00
- 2 111 435 436 0.86088999e-01 0.28034196e-01 -0.81508204e+00 0.13498000e+00
- 1 22 0 0 -0.49838416e+00 0.11572873e+00 -0.94825524e+00 0.00000000e+00
- 1 22 0 0 -0.61265696e+00 -0.80695596e-02 -0.11194240e+01 0.00000000e+00
- 1 211 0 0 -0.21295870e+01 -0.65315961e+00 -0.12611069e+02 0.13957000e+00
- 2 111 437 438 -0.42248640e+00 -0.20988346e+00 -0.20365558e+01 0.13498000e+00
- 1 -211 0 0 -0.17547710e+00 -0.71612071e-01 -0.48923902e+00 0.13957000e+00
- 2 111 439 440 -0.11819907e+01 0.36976826e+00 -0.77338354e+01 0.13498000e+00
- 2 -311 441 441 -0.13260198e+01 0.64174121e+00 -0.11522315e+02 0.49767000e+00
- 1 -211 0 0 -0.76834420e+00 -0.38247395e-01 -0.44598923e+01 0.13957000e+00
- 1 -2112 0 0 -0.64625972e+00 -0.75424225e-01 -0.22029917e+02 0.93957000e+00
- 2 111 442 443 -0.21813404e+00 -0.48338107e-01 -0.71223909e+01 0.13498000e+00
- 1 -321 0 0 -0.22106053e+00 -0.46311423e+00 -0.35633319e+02 0.49360000e+00
- 1 211 0 0 -0.41212285e+00 -0.76511409e-01 -0.12699535e+02 0.13957000e+00
- 1 -211 0 0 -0.47390265e-01 -0.69188974e+00 -0.34811907e+02 0.13957000e+00
- 1 211 0 0 -0.47449661e+00 -0.22377648e+00 -0.74618124e+02 0.13957000e+00
- 1 -2212 0 0 0.20073005e+00 -0.11344150e+01 -0.18629613e+03 0.93827000e+00
- 1 211 0 0 -0.17330393e+00 -0.12735777e+00 -0.45556692e+02 0.13957000e+00
- 1 -211 0 0 0.32243495e+00 -0.27269643e+00 -0.76481356e+02 0.13957000e+00
- 2 111 444 445 -0.25727390e-01 -0.40913350e-01 -0.10984027e+03 0.13498000e+00
- 1 22 0 0 0.16824732e+00 -0.23158747e+00 -0.20777317e+02 0.00000000e+00
- 1 22 0 0 0.74120915e-01 -0.55488416e-01 -0.14303947e+02 0.00000000e+00
- 1 321 0 0 -0.20831582e-01 -0.11739810e+00 -0.57513451e+03 0.49360000e+00
- 1 -211 0 0 -0.12592374e+00 -0.40781382e+00 -0.19900842e+03 0.13957000e+00
- 2 3122 446 447 0.88567675e+00 0.52888175e+00 -0.20900837e+04 0.11156800e+01
- 1 211 0 0 -0.31682739e-01 0.22218847e+00 -0.29077190e+03 0.13957000e+00
- 1 211 0 0 -0.49174977e-01 -0.68921762e-01 -0.15304490e+03 0.13957000e+00
- 1 -211 0 0 -0.23373240e+00 0.23564072e+00 -0.20997346e+03 0.13957000e+00
- 2 111 448 449 0.16708782e+00 0.28916037e+00 -0.38197122e+03 0.13498000e+00
- 1 211 0 0 0.16681854e+00 -0.45670631e+00 -0.35617105e+00 0.13957000e+00
- 2 111 450 451 0.23792156e+00 0.11094497e+00 0.76555487e-01 0.13498000e+00
- 1 211 0 0 0.33471569e+00 -0.57555374e+00 -0.15877382e+01 0.13957000e+00
- 1 -211 0 0 -0.17603463e+00 0.63247501e-01 -0.33757820e+00 0.13957000e+00
- 1 22 0 0 -0.18147003e+00 -0.12206900e+00 -0.57202819e+00 0.00000000e+00
- 1 22 0 0 -0.70951896e+00 -0.69504305e+00 -0.32923140e+01 0.00000000e+00
- 1 211 0 0 0.51120346e+00 0.12886029e+00 -0.90729879e+00 0.13957000e+00
- 2 111 452 453 0.19039646e+00 -0.29218280e+00 -0.67018145e+00 0.13498000e+00
- 1 130 0 0 -0.61366679e+00 0.19557855e+01 -0.86999310e+01 0.49767000e+00
- 1 130 0 0 -0.22989678e+00 0.61821221e+00 -0.16678415e+01 0.49767000e+00
- 2 310 454 455 -0.57063694e-01 0.79809165e+00 -0.18917438e+01 0.49767000e+00
- 2 311 456 456 0.16859989e+00 0.55665509e+00 -0.14736002e+01 0.49767000e+00
- 2 111 457 458 -0.10849579e+00 0.39119418e+00 -0.22568737e+00 0.13498000e+00
- 1 -321 0 0 -0.39914417e+00 0.38514424e+00 -0.55892644e+00 0.49360000e+00
- 1 211 0 0 0.17572019e+00 0.16217767e+00 0.37191408e-01 0.13957000e+00
- 2 311 459 459 0.29951604e+00 -0.18607333e+00 -0.80128591e-02 0.49767000e+00
- 1 211 0 0 0.34408205e+00 0.33255396e+00 -0.19199481e+00 0.13957000e+00
- 1 22 0 0 -0.78157096e-01 0.52983989e-01 -0.11487076e+00 0.00000000e+00
- 1 22 0 0 0.17976403e+00 0.33709800e+00 0.51138549e+00 0.00000000e+00
- 2 311 460 460 0.41851305e+00 0.13092271e+01 0.10109770e+01 0.49767000e+00
- 2 111 461 462 0.87452489e-01 -0.30498259e-01 -0.42806960e-01 0.13498000e+00
- 2 310 463 464 -0.12364645e+01 -0.39062254e+00 0.64992758e+01 0.49767000e+00
- 1 22 0 0 -0.40187186e-01 0.10702642e-01 0.93850287e+00 0.00000000e+00
- 1 22 0 0 0.81407345e-01 -0.85349257e-01 0.29107771e+01 0.00000000e+00
- 1 22 0 0 0.47059723e-01 0.60565806e-01 0.12880273e+03 0.00000000e+00
- 1 22 0 0 0.31895137e-01 -0.46421135e-01 0.31293663e+03 0.00000000e+00
- 1 22 0 0 0.12010016e+00 -0.45132749e-01 0.65194040e+02 0.00000000e+00
- 1 22 0 0 -0.12781867e-01 0.10132000e-01 0.55131292e+02 0.00000000e+00
- 1 22 0 0 -0.22279099e+00 -0.18881439e+00 0.19003132e+03 0.00000000e+00
- 1 22 0 0 -0.18732988e+00 -0.11791709e+00 0.23899081e+03 0.00000000e+00
- 2 113 465 466 0.15868194e+02 0.61400129e+01 0.35405032e+02 0.84781639e+00
- 1 -211 0 0 0.15521033e+01 0.47454344e+00 0.34511642e+01 0.13957000e+00
- 2 -3122 467 468 0.20622417e+02 0.82309913e+01 0.45006224e+02 0.11156800e+01
- 1 22 0 0 0.96172308e+00 0.33382517e+00 0.19290682e+01 0.00000000e+00
- 1 22 0 0 0.16979995e+01 0.59444260e+00 0.38108252e+01 0.00000000e+00
- 1 211 0 0 0.67675129e+00 0.17419706e+00 0.95427307e+00 0.13957000e+00
- 1 -211 0 0 0.88301202e-01 0.23934387e+00 0.10837295e+01 0.13957000e+00
- 1 130 0 0 0.17767506e+00 -0.15833522e+00 0.20770765e+01 0.49767000e+00
- 1 22 0 0 -0.42360119e-01 0.13792773e+00 0.48936577e+00 0.00000000e+00
- 1 22 0 0 0.48652230e-01 0.19188526e+00 0.35810771e+00 0.00000000e+00
- 1 22 0 0 0.67671502e-02 -0.45332436e-02 0.22470979e-01 0.00000000e+00
- 1 22 0 0 0.12317044e+01 0.56583991e+00 0.86337486e+01 0.00000000e+00
- 1 22 0 0 0.44179663e+00 0.70789958e-01 0.17993726e+01 0.00000000e+00
- 1 22 0 0 0.18599547e+00 0.12412834e+00 0.88185306e+00 0.00000000e+00
- 1 22 0 0 0.42106521e+00 -0.15741340e+00 0.80246875e+00 0.00000000e+00
- 1 22 0 0 0.79263657e-01 -0.10269022e+00 0.20437938e+00 0.00000000e+00
- 1 130 0 0 0.93842096e+00 0.36222796e+00 0.14008454e+01 0.49767000e+00
- 1 22 0 0 -0.19855872e-01 0.74316435e-01 -0.25947412e+00 0.00000000e+00
- 1 22 0 0 -0.58709931e-01 -0.46367500e-01 -0.13126929e+00 0.00000000e+00
- 1 22 0 0 0.14952947e-01 0.57215813e-03 -0.25590910e-01 0.00000000e+00
- 1 -11 0 0 0.87717717e-02 0.27773210e-01 -0.18101427e-01 0.51000000e-03
- 1 11 0 0 -0.10307923e+00 0.27977461e+00 -0.20382676e+00 0.51000000e-03
- 1 22 0 0 -0.56192812e-01 0.43020689e-01 -0.12829940e+00 0.00000000e+00
- 1 22 0 0 0.25787636e-01 -0.37786590e-01 -0.55956552e-02 0.00000000e+00
- 1 22 0 0 -0.19663978e+00 -0.62771899e+00 -0.32397179e+00 0.00000000e+00
- 1 22 0 0 -0.11523798e+00 -0.18624344e+00 -0.49047195e-01 0.00000000e+00
- 1 22 0 0 0.23695125e+00 -0.27241818e+00 -0.33777649e+00 0.00000000e+00
- 1 22 0 0 0.10583059e-01 -0.42097345e-01 -0.12410855e+00 0.00000000e+00
- 1 22 0 0 -0.30131693e-01 -0.18431709e+00 -0.12200169e+00 0.00000000e+00
- 1 22 0 0 -0.13906485e-01 0.23637197e-01 -0.13494244e-01 0.00000000e+00
- 1 22 0 0 -0.56755506e+00 -0.16682001e+00 0.30866964e-01 0.00000000e+00
- 1 22 0 0 -0.24578043e+00 0.16938038e-01 0.18527537e-01 0.00000000e+00
- 1 22 0 0 -0.48560953e-02 0.52755809e-01 0.15966758e+01 0.00000000e+00
- 1 22 0 0 0.57889497e-01 0.68941815e-01 0.53592978e+00 0.00000000e+00
- 1 22 0 0 -0.80781601e-02 -0.33419276e-01 0.66402093e+00 0.00000000e+00
- 1 22 0 0 -0.22445324e+00 0.80369919e-01 0.50839796e+01 0.00000000e+00
- 1 22 0 0 -0.34264824e-01 -0.25090812e-03 0.15213833e+01 0.00000000e+00
- 1 22 0 0 0.40545192e-01 -0.18029832e+00 0.42360813e+01 0.00000000e+00
- 1 -211 0 0 0.66002505e-01 -0.67091556e-01 0.21347860e+01 0.13957000e+00
- 1 211 0 0 0.11400776e+00 -0.44646844e+00 0.56361586e+02 0.13957000e+00
- 1 22 0 0 -0.10101092e+00 0.73634259e-01 0.48103444e+02 0.00000000e+00
- 1 22 0 0 0.19350162e-01 -0.29737302e-01 0.84107479e+01 0.00000000e+00
- 1 22 0 0 -0.52142947e-01 0.91144505e-01 0.54894805e+02 0.00000000e+00
- 1 22 0 0 0.71267205e-01 0.10760184e+00 0.41400927e+02 0.00000000e+00
- 1 22 0 0 -0.64547632e+00 -0.20021268e+00 0.11818082e+03 0.00000000e+00
- 1 22 0 0 -0.41033945e+00 -0.14541463e+00 0.97268081e+02 0.00000000e+00
- 1 22 0 0 -0.21961345e-01 -0.11976424e+00 0.52405345e+02 0.00000000e+00
- 1 22 0 0 -0.78466746e-02 0.44037368e-02 0.61648184e+02 0.00000000e+00
- 1 22 0 0 0.71559483e-02 -0.19354828e+00 0.45274021e+01 0.00000000e+00
- 1 22 0 0 0.10443731e+00 -0.81855493e-01 0.31084064e+01 0.00000000e+00
- 1 22 0 0 -0.26521467e+00 -0.69574937e+01 -0.31519820e+03 0.00000000e+00
- 1 22 0 0 0.16663188e-01 -0.32318004e+00 -0.14764644e+02 0.00000000e+00
- 1 22 0 0 0.47784360e-01 -0.94912999e-01 -0.37373563e+01 0.00000000e+00
- 1 22 0 0 -0.56252446e-01 -0.41375874e+00 -0.18735274e+02 0.00000000e+00
- 1 22 0 0 -0.71641468e-02 -0.52191057e-01 -0.49804438e+01 0.00000000e+00
- 1 22 0 0 0.78995426e-01 -0.42095917e+00 -0.17892592e+02 0.00000000e+00
- 1 22 0 0 -0.24101721e+00 -0.69242912e+00 -0.51771626e+01 0.00000000e+00
- 1 22 0 0 -0.79119835e-01 -0.76157932e-01 -0.70139829e+00 0.00000000e+00
- 1 22 0 0 -0.12230263e-01 -0.12901423e-01 -0.46182723e+00 0.00000000e+00
- 1 22 0 0 0.98319261e-01 0.40935619e-01 -0.35325481e+00 0.00000000e+00
- 1 22 0 0 -0.29142700e+00 -0.82301922e-01 -0.11207377e+01 0.00000000e+00
- 1 22 0 0 -0.13105941e+00 -0.12758153e+00 -0.91581803e+00 0.00000000e+00
- 1 22 0 0 -0.10505882e+00 -0.59241246e-02 -0.65970649e+00 0.00000000e+00
- 1 22 0 0 -0.10769318e+01 0.37569238e+00 -0.70741289e+01 0.00000000e+00
- 1 130 0 0 -0.13260198e+01 0.64174121e+00 -0.11522315e+02 0.49767000e+00
- 1 22 0 0 -0.18798644e+00 0.35786720e-02 -0.42533123e+01 0.00000000e+00
- 1 22 0 0 -0.30147600e-01 -0.51916779e-01 -0.28690786e+01 0.00000000e+00
- 1 22 0 0 -0.51800033e-01 -0.75148050e-01 -0.90330635e+02 0.00000000e+00
- 1 22 0 0 0.26072643e-01 0.34234700e-01 -0.19509633e+02 0.00000000e+00
- 1 2212 0 0 0.74036765e+00 0.52802407e+00 -0.18870349e+04 0.93827000e+00
- 1 -211 0 0 0.14530910e+00 0.85767236e-03 -0.20304883e+03 0.13957000e+00
- 1 22 0 0 0.35702046e-02 0.11217648e+00 -0.89025020e+02 0.00000000e+00
- 1 22 0 0 0.16351762e+00 0.17698389e+00 -0.29294620e+03 0.00000000e+00
- 1 22 0 0 0.13176819e+00 0.11706998e-01 -0.15099203e-01 0.00000000e+00
- 1 22 0 0 0.10615338e+00 0.99237976e-01 0.91654689e-01 0.00000000e+00
- 1 22 0 0 0.72460939e-01 -0.79598037e-01 -0.97202134e-01 0.00000000e+00
- 1 22 0 0 0.11793553e+00 -0.21258477e+00 -0.57297931e+00 0.00000000e+00
- 2 111 469 470 0.80622350e-01 0.43782887e-01 -0.30227758e+00 0.13498000e+00
- 2 111 471 472 -0.13768604e+00 0.75430876e+00 -0.15894663e+01 0.13498000e+00
- 2 310 473 474 0.16859989e+00 0.55665509e+00 -0.14736002e+01 0.49767000e+00
- 1 22 0 0 0.23422283e-01 0.23797554e-01 -0.12592001e-02 0.00000000e+00
- 1 22 0 0 -0.13191807e+00 0.36739663e+00 -0.22442817e+00 0.00000000e+00
- 1 130 0 0 0.29951604e+00 -0.18607333e+00 -0.80128591e-02 0.49767000e+00
- 2 310 475 476 0.41851305e+00 0.13092271e+01 0.10109770e+01 0.49767000e+00
- 1 22 0 0 -0.98313773e-04 -0.33638177e-01 0.37487746e-01 0.00000000e+00
- 1 22 0 0 0.87550803e-01 0.31399175e-02 -0.80294706e-01 0.00000000e+00
- 1 211 0 0 -0.62396033e+00 -0.21691813e+00 0.23205462e+01 0.13957000e+00
- 1 -211 0 0 -0.61250413e+00 -0.17370440e+00 0.41787296e+01 0.13957000e+00
- 1 -211 0 0 0.10063304e+02 0.41838617e+01 0.22035674e+02 0.13957000e+00
- 1 211 0 0 0.58048898e+01 0.19561512e+01 0.13369358e+02 0.13957000e+00
- 1 -2212 0 0 0.16740089e+02 0.67616691e+01 0.36469021e+02 0.93827000e+00
- 1 211 0 0 0.38823281e+01 0.14693221e+01 0.85372032e+01 0.13957000e+00
- 1 22 0 0 -0.24045260e-01 -0.10078574e-01 -0.14361670e+00 0.00000000e+00
- 1 22 0 0 0.10466761e+00 0.53861461e-01 -0.15866087e+00 0.00000000e+00
- 1 22 0 0 -0.34490796e-01 0.18265014e+00 -0.52979722e+00 0.00000000e+00
- 1 22 0 0 -0.10319525e+00 0.57165861e+00 -0.10596691e+01 0.00000000e+00
- 1 -211 0 0 -0.83221457e-01 0.40569781e-01 -0.23938156e+00 0.13957000e+00
- 1 211 0 0 0.25182134e+00 0.51608531e+00 -0.12342187e+01 0.13957000e+00
- 2 111 477 478 0.14471240e+00 0.12924773e+00 0.22989203e+00 0.13498000e+00
- 2 111 479 480 0.27380066e+00 0.11799794e+01 0.78108500e+00 0.13498000e+00
- 1 22 0 0 0.62237004e-01 0.13212481e+00 0.18524178e+00 0.00000000e+00
- 1 22 0 0 0.82475391e-01 -0.28770821e-02 0.44650253e-01 0.00000000e+00
- 1 22 0 0 0.17245447e+00 0.58762754e+00 0.32578298e+00 0.00000000e+00
- 1 22 0 0 0.10134618e+00 0.59235182e+00 0.45530202e+00 0.00000000e+00
- 614
- 2 25 2 3 -0.66312427e+01 -0.95580367e+01 0.23472308e+03 0.12500003e+03
- 2 23 6 10 0.55769410e+01 0.23034658e+00 0.13861532e+03 0.90165307e+02
- 2 23 4 5 -0.12208184e+02 -0.97883833e+01 0.96107753e+02 0.25795624e+02
- 1 13 0 0 -0.16324812e+02 -0.15421594e+02 0.62621556e+02 0.10566000e+00
- 1 -13 0 0 0.41166286e+01 0.56332106e+01 0.33486197e+02 0.10566000e+00
- 1 11 0 0 -0.37411052e+02 0.17275776e+02 0.45049330e+02 0.51000000e-03
- 1 22 0 0 -0.93856714e-05 0.42814615e-05 0.10996058e-04 0.00000000e+00
- 1 22 0 0 0.22158748e+01 -0.34375787e+00 0.40479591e+01 0.00000000e+00
- 1 -11 0 0 0.40772130e+02 -0.16701677e+02 0.89518019e+02 0.51000000e-03
- 1 22 0 0 -0.24452323e-05 0.89509873e-06 0.43798668e-05 0.00000000e+00
- 2 1 70 70 0.77800327e+00 -0.65690625e+00 0.22309430e+02 0.00000000e+00
- 2 -1 70 70 -0.77800327e+00 0.65690625e+00 0.91333614e+00 0.00000000e+00
- 2 2101 76 76 0.34440173e+00 0.26241653e+00 0.45928922e+04 0.57933000e+00
- 2 21 76 76 0.10240428e+01 0.49344844e+00 0.37881833e+02 0.00000000e+00
- 2 21 76 76 0.10987040e+01 0.62447290e+00 0.17032032e+02 0.00000000e+00
- 2 21 76 76 -0.24391106e+00 0.12941585e+01 0.55159050e+01 0.00000000e+00
- 2 21 76 76 -0.84548749e+00 -0.18381208e+01 0.31059496e+01 0.00000000e+00
- 2 21 76 76 -0.12958492e+00 0.31315344e+00 0.76718019e+00 0.00000000e+00
- 2 21 76 76 -0.89174394e+00 0.79210531e-01 0.65306159e+02 0.00000000e+00
- 2 21 76 76 -0.12661926e+01 0.23931914e+00 0.50914316e+02 0.00000000e+00
- 2 21 76 76 -0.36382880e+01 -0.11755425e+02 0.10560910e+03 0.00000000e+00
- 2 21 76 76 -0.60709370e+01 -0.24625549e+01 0.33745640e+02 0.00000000e+00
- 2 21 76 76 -0.32029965e+01 -0.73651813e+00 0.59937514e+01 0.00000000e+00
- 2 21 76 76 -0.23560772e+00 -0.52479100e+00 0.87841240e+00 0.00000000e+00
- 2 21 76 76 -0.51303817e+00 0.17692036e-01 -0.67552904e-01 0.00000000e+00
- 2 21 76 76 -0.18703919e+01 0.92986647e+00 -0.13400332e+01 0.00000000e+00
- 2 21 76 76 -0.18912258e+01 -0.66097116e+00 -0.43750810e+01 0.00000000e+00
- 2 21 76 76 -0.13870896e+01 -0.12877373e+01 -0.45071157e+01 0.00000000e+00
- 2 21 76 76 0.61342816e+00 -0.20985920e+01 -0.11757879e+02 0.00000000e+00
- 2 21 76 76 0.10563007e+01 -0.55515699e+00 -0.13424365e+01 0.00000000e+00
- 2 1 76 76 -0.52096743e+00 0.12051281e+00 -0.10823251e+04 0.33000000e+00
- 2 2 124 124 0.37658304e+00 0.22802742e+00 0.30348668e+02 0.33000000e+00
- 2 21 124 124 -0.20193761e+01 -0.39855500e+01 0.85441635e+03 0.00000000e+00
- 2 21 124 124 0.89174394e+00 -0.79210531e-01 0.32470860e+03 0.00000000e+00
- 2 21 124 124 -0.22720538e+01 0.18717132e+01 0.33038644e+03 0.00000000e+00
- 2 21 124 124 0.23560772e+00 0.52479100e+00 0.35825155e+02 0.00000000e+00
- 2 21 124 124 0.13870896e+01 0.12877373e+01 0.99430011e+02 0.00000000e+00
- 2 21 124 124 0.60709370e+01 0.24625549e+01 0.67762653e+02 0.00000000e+00
- 2 21 124 124 0.12661926e+01 -0.23931914e+00 0.80638469e+01 0.00000000e+00
- 2 21 124 124 0.18334111e+01 0.17467383e+01 0.54928673e+01 0.00000000e+00
- 2 21 124 124 0.12810182e+01 0.63175445e+00 0.23823666e+01 0.00000000e+00
- 2 21 124 124 0.18622217e+01 -0.15850187e+01 0.47247367e+01 0.00000000e+00
- 2 21 124 124 0.18703919e+01 -0.92986647e+00 0.33318125e+01 0.00000000e+00
- 2 21 124 124 0.22720538e+01 -0.18717132e+01 0.27568817e+01 0.00000000e+00
- 2 21 124 124 0.20193761e+01 0.39855500e+01 0.26802781e+01 0.00000000e+00
- 2 21 124 124 0.36382880e+01 0.11755425e+02 0.75313984e+01 0.00000000e+00
- 2 21 124 124 0.51303817e+00 -0.17692036e-01 -0.11772056e+01 0.00000000e+00
- 2 21 124 124 0.32029965e+01 0.73651813e+00 -0.29869559e+02 0.00000000e+00
- 2 21 124 124 0.18912258e+01 0.66097116e+00 -0.27847486e+02 0.00000000e+00
- 2 21 124 124 0.14945298e+00 0.29869462e+00 -0.50120551e+01 0.00000000e+00
- 2 21 124 124 0.19691757e+01 -0.25138170e+01 -0.35528491e+02 0.00000000e+00
- 2 21 124 124 0.19792762e+01 -0.19602006e+01 -0.53485202e+02 0.00000000e+00
- 2 21 124 124 0.30174401e+01 -0.11889090e+01 -0.15681715e+03 0.00000000e+00
- 2 21 124 124 -0.10183263e+01 -0.16471379e+01 -0.81329329e+02 0.00000000e+00
- 2 21 124 124 -0.19792762e+01 0.19602006e+01 -0.93345466e+03 0.00000000e+00
- 2 21 124 124 0.10183263e+01 0.16471379e+01 -0.28260571e+03 0.00000000e+00
- 2 21 124 124 -0.19691757e+01 0.25138170e+01 -0.22615957e+03 0.00000000e+00
- 2 21 124 124 -0.61342816e+00 0.20985920e+01 -0.60787250e+02 0.00000000e+00
- 2 21 124 124 -0.18622217e+01 0.15850187e+01 -0.64001258e+02 0.00000000e+00
- 2 21 124 124 -0.30174401e+01 0.11889090e+01 -0.15159428e+02 0.00000000e+00
- 2 21 124 124 -0.12810182e+01 -0.63175445e+00 -0.99143883e+01 0.00000000e+00
- 2 21 124 124 -0.18334111e+01 -0.17467383e+01 -0.13653435e+02 0.00000000e+00
- 2 21 124 124 0.43854887e+01 0.57482675e+01 0.82214685e+01 0.00000000e+00
- 2 21 124 124 0.14726363e+01 0.32864314e+01 0.30273139e+01 0.00000000e+00
- 2 21 124 124 -0.13907963e+01 -0.17799162e+01 -0.33857421e+02 0.00000000e+00
- 2 2203 124 124 0.38324586e-02 0.13603417e+01 -0.38309414e+04 0.77133000e+00
- 2 21 209 209 -0.17025111e+01 -0.70867862e+00 -0.28742848e+01 0.00000000e+00
- 2 21 209 209 -0.14945298e+00 -0.29869462e+00 -0.33199489e+00 0.00000000e+00
- 2 21 209 209 0.17025111e+01 0.70867862e+00 0.18464530e+01 0.00000000e+00
- 2 92 71 75 0.00000000e+00 0.00000000e+00 0.23222766e+02 0.47346382e+01
- 2 -213 217 218 0.62740567e+00 -0.28564494e+00 0.93930922e+01 0.82138245e+00
- 2 111 219 220 -0.30987622e+00 -0.58977577e-01 0.13483094e+01 0.13498000e+00
- 2 213 221 222 0.19398145e+00 0.14975477e+00 0.22459818e+01 0.78852479e+00
- 1 -211 0 0 -0.12574693e+00 -0.31313864e+00 0.93747169e+01 0.13957000e+00
- 1 211 0 0 -0.38576397e+00 0.50800638e+00 0.86066587e+00 0.13957000e+00
- 2 92 77 123 -0.18570585e+02 -0.17545616e+02 0.38139272e+04 0.46727563e+04
- 1 2112 0 0 -0.17944445e+00 0.38052047e-01 0.19461756e+04 0.93957000e+00
- 1 211 0 0 0.93387274e+00 0.12319013e+01 0.13473044e+04 0.13957000e+00
- 1 -211 0 0 -0.30182655e+00 -0.10635388e+01 0.10206960e+04 0.13957000e+00
- 1 211 0 0 0.27118912e+00 0.51992643e-01 0.37076422e+02 0.13957000e+00
- 1 -211 0 0 0.82094381e+00 0.19325648e+00 0.51317872e+02 0.13957000e+00
- 2 113 223 224 -0.86868146e+00 0.39665225e+00 0.19429701e+03 0.82999086e+00
- 1 211 0 0 0.77367167e+00 0.35489664e+00 0.11843363e+02 0.13957000e+00
- 2 113 225 226 -0.10567068e+00 0.21276480e+00 0.16558930e+02 0.10886054e+01
- 2 113 227 228 0.95378637e+00 0.60248797e+00 0.20363848e+02 0.58210480e+00
- 2 -213 229 230 -0.19990200e+00 0.29839328e-01 0.74074134e+01 0.69875491e+00
- 2 221 231 232 -0.85115679e-01 -0.57368064e+00 0.12902440e+01 0.54745000e+00
- 2 223 233 235 -0.27546466e+00 0.49804407e-01 0.36298215e+01 0.77654518e+00
- 2 213 236 237 -0.42262348e-02 0.99981369e-01 0.36839795e+01 0.89163332e+00
- 2 223 238 240 -0.11298140e+00 0.20908988e+00 0.33589541e+01 0.77205008e+00
- 2 -2214 241 242 -0.56820503e+00 -0.79825424e+00 0.85775251e+01 0.11457281e+01
- 2 3214 243 244 -0.23242884e+00 0.31571605e-02 0.19692457e+02 0.14022824e+01
- 2 221 245 247 -0.31065148e+00 0.23826863e+00 0.14749228e+02 0.54745000e+00
- 2 311 248 248 -0.53390495e+00 -0.17312547e+00 0.76290461e+01 0.49767000e+00
- 2 221 249 250 -0.50705213e+00 -0.27649816e+00 0.52132317e+02 0.54745000e+00
- 2 213 251 252 -0.14513309e+01 -0.16978729e+01 0.22362462e+02 0.76822607e+00
- 2 -213 253 254 -0.50699040e+00 -0.22382938e+01 0.22856737e+02 0.75209927e+00
- 2 -313 255 256 -0.33573272e+00 -0.14032355e+01 0.10306561e+02 0.87812050e+00
- 2 331 257 259 -0.16845790e+01 -0.45999773e+01 0.46449946e+02 0.95787876e+00
- 2 311 260 260 -0.32999173e+00 -0.47036365e+00 0.69836634e+01 0.49767000e+00
- 2 213 261 262 -0.27530647e+01 -0.14429568e+01 0.17968318e+02 0.86045366e+00
- 2 -323 263 264 -0.27024649e+01 -0.16060605e+01 0.14992862e+02 0.89247271e+00
- 2 -3122 265 266 -0.14981826e+01 -0.54199413e+00 0.34482530e+01 0.11156800e+01
- 2 -213 267 268 -0.37834028e+00 0.15331888e+00 0.14343827e+01 0.79223215e+00
- 1 2212 0 0 -0.79002770e+00 -0.61992411e+00 0.13683429e+01 0.93827000e+00
- 2 223 269 271 -0.66919625e+00 0.35455259e+00 0.19386980e+01 0.78225013e+00
- 1 211 0 0 -0.54778156e+00 0.15507644e+00 0.23731629e+00 0.13957000e+00
- 2 223 272 274 -0.76849509e+00 -0.37699014e+00 0.63344264e+00 0.77248818e+00
- 2 221 275 277 -0.34025807e+00 0.32159862e+00 -0.16529574e+00 0.54745000e+00
- 2 223 278 280 -0.50304180e+00 -0.33749152e+00 -0.85637843e+00 0.78250360e+00
- 2 -213 281 282 -0.10029629e+01 -0.66135181e+00 -0.19065790e+01 0.81606189e+00
- 2 -2114 283 284 -0.15453423e+01 0.42790085e+00 -0.28657941e+01 0.12789801e+01
- 2 111 285 286 -0.40243993e+00 -0.10620938e+01 -0.52517921e+01 0.13498000e+00
- 2 3122 287 288 -0.55070312e+00 -0.19322911e+01 -0.58417111e+01 0.11156800e+01
- 1 321 0 0 0.73168168e+00 -0.47525525e+00 -0.28403498e+01 0.49360000e+00
- 2 -323 289 290 0.37532962e+00 -0.58036555e+00 -0.64721210e+01 0.86914659e+00
- 2 313 291 292 0.50628363e+00 0.24636069e+00 -0.16201827e+02 0.10359926e+01
- 1 -2112 0 0 -0.54217954e+00 -0.11318937e+00 -0.12825773e+02 0.93957000e+00
- 2 223 293 295 -0.18820791e+00 0.30878122e+00 -0.95158218e+01 0.80488020e+00
- 1 2112 0 0 -0.49547135e-02 -0.31223636e-02 -0.31551824e+03 0.93957000e+00
- 2 113 296 297 -0.10623955e+00 -0.29020647e+00 -0.22919376e+03 0.51537619e+00
- 2 -313 298 299 -0.10623943e+00 -0.26361019e+00 -0.34240978e+03 0.89037770e+00
- 2 311 300 300 0.56959173e-01 0.37639345e+00 -0.15297298e+03 0.49767000e+00
- 2 92 125 208 0.25351280e+02 0.27402347e+02 -0.40705101e+04 0.65029309e+04
- 1 211 0 0 -0.50958346e+00 -0.27221115e+00 0.82805401e+02 0.13957000e+00
- 2 111 301 302 0.63632412e+00 0.17097283e+00 0.89376386e+02 0.13498000e+00
- 2 313 303 304 -0.10023792e+01 -0.19846026e+01 0.39012208e+03 0.91049680e+00
- 2 -313 305 306 0.37222513e+00 -0.67493340e+00 0.21660876e+03 0.89467074e+00
- 2 113 307 308 -0.11758333e+01 0.97023563e-01 0.30245192e+03 0.78910310e+00
- 1 2112 0 0 -0.70812694e+00 -0.69355572e+00 0.15425979e+03 0.93957000e+00
- 2 -3122 309 310 0.70109493e+00 0.14245310e+01 0.24645975e+03 0.11156800e+01
- 2 3224 311 312 -0.67632437e+00 0.78697408e+00 0.10996698e+03 0.13834375e+01
- 2 111 313 314 0.11763478e+00 -0.11902156e+00 0.82018685e+01 0.13498000e+00
- 2 -2224 315 316 0.12245820e+01 0.10841486e+01 0.70218884e+02 0.12690903e+01
- 2 111 317 318 0.34303477e+00 -0.88230727e-01 0.34222382e+01 0.13498000e+00
- 2 213 319 320 0.27123530e+01 0.14066232e+01 0.31544718e+02 0.81565786e+00
- 1 -211 0 0 0.40315639e-01 -0.34336664e-01 0.17669825e+01 0.13957000e+00
- 2 213 321 322 0.30875348e+01 0.69567712e+00 0.31254410e+02 0.10455662e+01
- 2 313 323 324 0.65733374e+00 0.41056279e+00 0.89627738e+01 0.95373369e+00
- 2 -313 325 326 0.71221898e+00 0.89245588e+00 0.28831184e+01 0.89940610e+00
- 1 -211 0 0 0.35165470e+00 0.19261582e+00 0.90410267e+00 0.13957000e+00
- 1 211 0 0 0.84113066e+00 -0.10712133e+00 0.26932346e+01 0.13957000e+00
- 2 313 327 328 0.72394558e+00 -0.37971601e-01 0.37352477e+01 0.86960361e+00
- 2 -313 329 330 0.25119296e+01 -0.66917744e+00 0.44489306e+01 0.93369589e+00
- 2 -213 331 332 0.39139552e-01 -0.17274726e+00 0.53980998e+00 0.46512024e+00
- 2 323 333 334 0.11352569e+01 -0.12585952e+00 0.19238798e+01 0.92008532e+00
- 2 -311 335 335 0.13879990e+01 -0.86339810e+00 0.27011351e+01 0.49767000e+00
- 2 -213 336 337 0.11612235e+01 -0.50844275e+00 0.20946026e+01 0.10914271e+01
- 2 113 338 339 0.32922163e+00 0.28900430e+00 0.41620461e+00 0.74216898e+00
- 1 211 0 0 0.15440023e+01 0.26042478e+01 0.20928349e+01 0.13957000e+00
- 2 221 340 342 0.34716675e+00 0.91969079e+00 0.39686982e+00 0.54745000e+00
- 2 331 343 344 0.10342469e+01 0.32486306e+01 0.23927618e+01 0.95766450e+00
- 2 223 345 347 0.22252692e+01 0.60353359e+01 0.40520071e+01 0.79735668e+00
- 2 223 348 350 0.15520604e+00 0.13179393e+01 0.58103733e+00 0.78000150e+00
- 2 -213 351 352 0.57134680e+00 0.28203374e+00 -0.63420898e+00 0.96594608e+00
- 1 211 0 0 0.82082612e+00 0.25973362e+00 -0.23882707e+01 0.13957000e+00
- 1 -211 0 0 -0.90809203e-01 -0.13589516e+00 0.13092444e+00 0.13957000e+00
- 2 223 353 355 0.79968823e+00 0.10325233e+01 -0.16027096e+02 0.78496233e+00
- 2 223 356 358 0.21721501e+01 -0.33766905e+00 -0.18743583e+02 0.77986851e+00
- 2 2114 359 360 0.12508361e+01 -0.91030790e+00 -0.32655490e+02 0.11542903e+01
- 2 213 361 362 0.11146352e+01 -0.69727595e+00 -0.15824106e+02 0.77333297e+00
- 1 -2112 0 0 0.13730255e+01 0.11580618e+00 -0.27311633e+02 0.93957000e+00
- 1 -211 0 0 0.16492361e+00 0.37997398e+00 -0.63577969e+01 0.13957000e+00
- 2 213 363 364 0.21808505e+01 -0.21291331e+01 -0.57297945e+02 0.76098018e+00
- 2 -213 365 366 0.71766686e+00 -0.43389286e-01 -0.24744958e+02 0.75466445e+00
- 2 213 367 368 0.40871931e+00 -0.11938356e+01 -0.44805612e+02 0.80779940e+00
- 1 -211 0 0 -0.19021962e+00 -0.16632671e+00 -0.19241494e+02 0.13957000e+00
- 2 223 369 371 0.74998855e+00 -0.11809548e+00 -0.48466998e+02 0.78459707e+00
- 1 2212 0 0 0.18952145e-01 -0.48763685e+00 -0.13910621e+03 0.93827000e+00
- 1 211 0 0 -0.13122490e+00 0.18651435e+00 -0.38596482e+02 0.13957000e+00
- 2 -2224 372 373 -0.63006898e+00 0.80330523e+00 -0.27223116e+03 0.13292188e+01
- 2 323 374 375 -0.14659637e+00 -0.79181820e+00 -0.10474379e+03 0.77900815e+00
- 2 -323 376 377 -0.39862051e+00 0.18402282e+00 -0.10041899e+03 0.85355459e+00
- 2 2214 378 379 -0.28130629e+00 0.18347329e+01 -0.46670615e+03 0.12430459e+01
- 2 111 380 381 -0.11649835e+01 0.10373598e+01 -0.11401095e+03 0.13498000e+00
- 1 -2112 0 0 0.59920370e+00 0.73802718e+00 -0.10363375e+03 0.93957000e+00
- 2 331 382 383 -0.51876177e+00 0.54275230e+00 -0.70793378e+02 0.95774128e+00
- 2 1114 384 385 -0.11381877e+01 0.18483890e+01 -0.11410951e+03 0.12675754e+01
- 2 223 386 388 -0.72559718e-01 0.16388433e+00 -0.15040414e+02 0.78478406e+00
- 2 -2114 389 390 -0.11264636e+01 0.16698131e+01 -0.66218013e+02 0.13022010e+01
- 2 111 391 392 -0.15117311e+00 0.25871756e+00 -0.12443353e+02 0.13498000e+00
- 2 111 393 394 0.21795281e+00 -0.12344835e+00 -0.19658245e+01 0.13498000e+00
- 2 323 395 396 -0.77571320e+00 0.26644068e+00 -0.11342783e+02 0.82116741e+00
- 2 -323 397 398 -0.89970355e+00 0.35844605e+00 -0.12673830e+02 0.90313183e+00
- 2 111 399 400 -0.54424516e+00 0.51644542e+00 -0.86138425e+01 0.13498000e+00
- 1 211 0 0 -0.26200950e+01 -0.25490909e+00 -0.15966907e+02 0.13957000e+00
- 2 221 401 403 0.15202831e+00 0.26495480e-01 -0.10231366e+01 0.54745000e+00
- 2 -213 404 405 -0.20620760e+00 -0.71697910e+00 -0.38657245e+01 0.72805612e+00
- 2 2224 406 407 -0.14243242e+01 -0.34478995e+00 -0.51086828e+01 0.11845486e+01
- 2 111 408 409 0.53760905e+00 -0.66422416e+00 -0.20747997e+01 0.13498000e+00
- 2 -2224 410 411 -0.10098383e+00 0.10511180e+01 -0.41944872e+00 0.13415888e+01
- 2 323 412 413 0.16675636e+01 0.20537084e+01 0.40445446e+01 0.90170284e+00
- 2 -313 414 415 0.17050363e+01 0.31402377e+01 0.30041375e+01 0.89080739e+00
- 1 -211 0 0 0.79834347e+00 0.20237896e+00 0.87260332e+00 0.13957000e+00
- 2 113 416 417 0.45879695e+00 0.20870527e+01 0.12808466e+01 0.78172518e+00
- 1 211 0 0 0.38055028e+00 0.17699346e+00 0.51476654e+00 0.13957000e+00
- 2 113 418 419 -0.14705866e-01 0.71323930e+00 -0.34883376e-02 0.73008547e+00
- 1 2112 0 0 -0.17184293e+00 -0.38612834e+00 -0.88114730e+01 0.93957000e+00
- 1 -211 0 0 -0.38143764e-01 -0.48471129e+00 -0.15744403e+01 0.13957000e+00
- 2 -1114 420 421 -0.42840973e+00 -0.33863878e+00 -0.35587206e+02 0.11618505e+01
- 2 -213 422 423 -0.56164561e+00 -0.36580516e+00 -0.19919989e+02 0.83208030e+00
- 2 223 424 426 0.27491819e+00 -0.29295898e+00 -0.14309981e+03 0.77964231e+00
- 2 213 427 428 -0.62603547e-01 -0.30309306e+00 -0.32430889e+02 0.73781539e+00
- 2 111 429 430 -0.37812820e+00 0.11619078e+00 -0.46803691e+03 0.13498000e+00
- 2 111 431 432 0.71757039e-01 0.65575464e+00 -0.51125447e+03 0.13498000e+00
- 2 -213 433 434 0.22577655e+00 0.39030088e+00 -0.63912781e+03 0.54775886e+00
- 2 2224 435 436 0.45611593e+00 0.42442316e+00 -0.11815956e+04 0.13489799e+01
- 2 111 437 438 -0.59005023e+00 -0.52221725e-01 -0.82258823e+03 0.13498000e+00
- 2 92 210 216 -0.14945298e+00 -0.29869462e+00 -0.13598267e+01 0.63428466e+01
- 1 211 0 0 -0.28879398e+00 -0.49341062e+00 -0.28177499e+00 0.13957000e+00
- 2 221 439 441 0.77795748e+00 0.81710448e+00 -0.38518178e-01 0.54745000e+00
- 2 221 442 444 -0.21475122e+00 -0.76722231e+00 -0.14318413e+00 0.54745000e+00
- 2 111 445 446 -0.92277162e-01 0.54498957e+00 0.38838610e+00 0.13498000e+00
- 2 -213 447 448 0.42040099e+00 0.29131418e+00 -0.18170163e+00 0.75329123e+00
- 1 211 0 0 -0.90628609e+00 -0.87222835e+00 -0.11550390e+01 0.13957000e+00
- 1 -211 0 0 0.15429700e+00 0.18075842e+00 0.52005120e-01 0.13957000e+00
- 1 -211 0 0 0.28959211e+00 0.11479585e+00 0.66162907e+01 0.13957000e+00
- 2 111 449 450 0.33781357e+00 -0.40044079e+00 0.27768015e+01 0.13498000e+00
- 1 22 0 0 -0.21791658e+00 -0.17246626e-01 0.11272004e+01 0.00000000e+00
- 1 22 0 0 -0.91959638e-01 -0.41730951e-01 0.22110894e+00 0.00000000e+00
- 1 211 0 0 0.24744882e+00 0.41133138e+00 0.16796949e+01 0.13957000e+00
- 2 111 451 452 -0.53467371e-01 -0.26157661e+00 0.56628699e+00 0.13498000e+00
- 1 211 0 0 -0.90452662e+00 0.98309115e-01 0.12941807e+03 0.13957000e+00
- 1 -211 0 0 0.35845154e-01 0.29834313e+00 0.64878937e+02 0.13957000e+00
- 1 211 0 0 -0.48957854e+00 0.25531480e+00 0.54124356e+01 0.13957000e+00
- 1 -211 0 0 0.38390786e+00 -0.42550005e-01 0.11146494e+02 0.13957000e+00
- 1 -211 0 0 0.67010209e-01 0.21356098e+00 0.63157715e+01 0.13957000e+00
- 1 211 0 0 0.88677616e+00 0.38892699e+00 0.14048077e+02 0.13957000e+00
- 1 -211 0 0 0.87685429e-01 -0.44154338e-01 0.58180338e+01 0.13957000e+00
- 2 111 453 454 -0.28758743e+00 0.73993666e-01 0.15893796e+01 0.13498000e+00
- 1 22 0 0 0.12455858e-01 -0.18561336e+00 0.10132108e+01 0.00000000e+00
- 1 22 0 0 -0.97571537e-01 -0.38806729e+00 0.27703315e+00 0.00000000e+00
- 1 -211 0 0 -0.13432948e+00 0.50086524e-01 0.21015686e+01 0.13957000e+00
- 1 211 0 0 -0.20001193e+00 0.14808036e+00 0.67279421e+00 0.13957000e+00
- 2 111 455 456 0.58876749e-01 -0.14836248e+00 0.85545872e+00 0.13498000e+00
- 1 211 0 0 -0.18132161e+00 0.29743871e+00 0.32109308e+01 0.13957000e+00
- 2 111 457 458 0.17709538e+00 -0.19745735e+00 0.47304876e+00 0.13498000e+00
- 1 -211 0 0 0.64148734e-01 0.15373562e+00 0.37195372e+00 0.13957000e+00
- 1 211 0 0 -0.12048063e+00 -0.13406407e+00 0.12653936e+01 0.13957000e+00
- 2 111 459 460 -0.56649513e-01 0.18941834e+00 0.17216068e+01 0.13498000e+00
- 1 -2212 0 0 -0.58756734e+00 -0.80826996e+00 0.78297252e+01 0.93827000e+00
- 2 111 461 462 0.19362311e-01 0.10015712e-01 0.74779992e+00 0.13498000e+00
- 2 3122 463 464 -0.33667767e+00 0.14630362e+00 0.14979291e+02 0.11156800e+01
- 2 111 465 466 0.10424883e+00 -0.14314646e+00 0.47131658e+01 0.13498000e+00
- 1 -211 0 0 0.20828116e-01 0.18152310e+00 0.43707187e+01 0.13957000e+00
- 1 211 0 0 -0.14630595e+00 0.53071261e-01 0.45469382e+01 0.13957000e+00
- 2 111 467 468 -0.18517365e+00 0.36742766e-02 0.58315714e+01 0.13498000e+00
- 2 310 469 470 -0.53390495e+00 -0.17312547e+00 0.76290461e+01 0.49767000e+00
- 1 22 0 0 -0.15281036e+00 -0.39278388e-01 0.36274906e+02 0.00000000e+00
- 1 22 0 0 -0.35424176e+00 -0.23721977e+00 0.15857412e+02 0.00000000e+00
- 1 211 0 0 -0.22384566e+00 -0.33145123e+00 0.72892963e+01 0.13957000e+00
- 2 111 471 472 -0.12274853e+01 -0.13664217e+01 0.15073165e+02 0.13498000e+00
- 1 -211 0 0 -0.41699466e+00 -0.12118129e+01 0.95326739e+01 0.13957000e+00
- 2 111 473 474 -0.89995742e-01 -0.10264810e+01 0.13324063e+02 0.13498000e+00
- 1 -321 0 0 -0.34374022e+00 -0.53431917e+00 0.53001478e+01 0.49360000e+00
- 1 211 0 0 0.80074984e-02 -0.86891635e+00 0.50064134e+01 0.13957000e+00
- 1 211 0 0 -0.34813472e+00 -0.86713015e+00 0.89918443e+01 0.13957000e+00
- 1 -211 0 0 -0.59199213e+00 -0.13954674e+01 0.12821864e+02 0.13957000e+00
- 2 221 475 477 -0.74445215e+00 -0.23373797e+01 0.24636238e+02 0.54745000e+00
- 1 130 0 0 -0.32999173e+00 -0.47036365e+00 0.69836634e+01 0.49767000e+00
- 1 211 0 0 -0.40406750e-01 -0.11314989e+00 0.67190917e+00 0.13957000e+00
- 2 111 478 479 -0.27126579e+01 -0.13298069e+01 0.17296408e+02 0.13498000e+00
- 2 -311 480 480 -0.21211602e+01 -0.95107592e+00 0.11241790e+02 0.49767000e+00
- 1 -211 0 0 -0.58130472e+00 -0.65498458e+00 0.37510717e+01 0.13957000e+00
- 1 -2212 0 0 -0.12970093e+01 -0.36236256e+00 0.29171151e+01 0.93827000e+00
- 1 211 0 0 -0.20117327e+00 -0.17963157e+00 0.53113784e+00 0.13957000e+00
- 1 -211 0 0 -0.14100701e+00 -0.14629123e+00 0.11902603e+01 0.13957000e+00
- 2 111 481 482 -0.23733327e+00 0.29961011e+00 0.24412236e+00 0.13498000e+00
- 1 -211 0 0 -0.29482574e+00 -0.87322849e-01 0.48500020e+00 0.13957000e+00
- 1 211 0 0 -0.40196478e+00 0.21364610e+00 0.95000282e+00 0.13957000e+00
- 2 111 483 484 0.27594279e-01 0.22822934e+00 0.50369498e+00 0.13498000e+00
- 1 211 0 0 -0.21011400e+00 0.13503877e+00 0.27911006e+00 0.13957000e+00
- 1 -211 0 0 -0.92294340e-01 -0.21871708e+00 0.14678965e+00 0.13957000e+00
- 2 111 485 486 -0.46608675e+00 -0.29331183e+00 0.20754294e+00 0.13498000e+00
- 2 111 487 488 0.15873412e-01 0.13789966e+00 -0.57978582e-01 0.13498000e+00
- 2 111 489 490 -0.47219630e-01 0.66035787e-01 -0.85530326e-01 0.13498000e+00
- 2 111 491 492 -0.30891185e+00 0.11766318e+00 -0.21786834e-01 0.13498000e+00
- 1 211 0 0 -0.27740316e+00 -0.33729382e+00 -0.38123512e+00 0.13957000e+00
- 1 -211 0 0 -0.26497308e+00 0.68418738e-01 -0.13020813e+00 0.13957000e+00
- 2 111 493 494 0.39334444e-01 -0.68616441e-01 -0.34493518e+00 0.13498000e+00
- 1 -211 0 0 -0.72083074e-01 -0.40848373e+00 -0.34936700e+00 0.13957000e+00
- 2 111 495 496 -0.93087983e+00 -0.25286807e+00 -0.15572120e+01 0.13498000e+00
- 1 -2112 0 0 -0.14762727e+01 0.20421368e+00 -0.26297807e+01 0.93957000e+00
- 2 111 497 498 -0.69069616e-01 0.22368717e+00 -0.23601335e+00 0.13498000e+00
- 1 22 0 0 -0.33174498e+00 -0.81522026e+00 -0.38022976e+01 0.00000000e+00
- 1 22 0 0 -0.70694943e-01 -0.24687354e+00 -0.14494945e+01 0.00000000e+00
- 1 2212 0 0 -0.41909979e+00 -0.15080667e+01 -0.48500180e+01 0.93827000e+00
- 1 -211 0 0 -0.13160333e+00 -0.42422439e+00 -0.99169310e+00 0.13957000e+00
- 2 -311 499 499 0.50205998e+00 -0.33403316e+00 -0.40490527e+01 0.49767000e+00
- 1 -211 0 0 -0.12673035e+00 -0.24633239e+00 -0.24230683e+01 0.13957000e+00
- 1 321 0 0 -0.22641091e-01 0.19811544e+00 -0.11230414e+02 0.49360000e+00
- 1 -211 0 0 0.52892472e+00 0.48245246e-01 -0.49714131e+01 0.13957000e+00
- 1 -211 0 0 -0.97513132e-01 -0.77701199e-01 -0.14858008e+01 0.13957000e+00
- 1 211 0 0 0.29454690e-01 0.28737729e+00 -0.20006840e+01 0.13957000e+00
- 2 111 500 501 -0.12014946e+00 0.99105129e-01 -0.60293370e+01 0.13498000e+00
- 1 -211 0 0 -0.19402302e+00 -0.17878753e+00 -0.19369967e+03 0.13957000e+00
- 1 211 0 0 0.87783473e-01 -0.11141894e+00 -0.35494092e+02 0.13957000e+00
- 1 -321 0 0 0.10746522e+00 -0.11462494e+00 -0.12481762e+03 0.49360000e+00
- 1 211 0 0 -0.21370465e+00 -0.14898525e+00 -0.21759216e+03 0.13957000e+00
- 1 130 0 0 0.56959173e-01 0.37639345e+00 -0.15297298e+03 0.49767000e+00
- 1 22 0 0 0.12213520e+00 0.89039562e-01 0.18393881e+02 0.00000000e+00
- 1 22 0 0 0.51418893e+00 0.81933267e-01 0.70982506e+02 0.00000000e+00
- 1 321 0 0 -0.60081071e+00 -0.10209572e+01 0.25842185e+03 0.49360000e+00
- 1 -211 0 0 -0.40156851e+00 -0.96364540e+00 0.13170023e+03 0.13957000e+00
- 1 -321 0 0 -0.66645832e-01 -0.41429322e+00 0.12787075e+03 0.49360000e+00
- 1 211 0 0 0.43887096e+00 -0.26064019e+00 0.88738014e+02 0.13957000e+00
- 1 -211 0 0 -0.18436580e+00 0.54519146e-01 0.18031408e+02 0.13957000e+00
- 1 211 0 0 -0.99146747e+00 0.42504416e-01 0.28442051e+03 0.13957000e+00
- 1 -2112 0 0 0.54326992e+00 0.12624283e+01 0.20210846e+03 0.93957000e+00
- 2 111 502 503 0.15782500e+00 0.16210272e+00 0.44351293e+02 0.13498000e+00
- 2 3122 504 505 -0.55609400e+00 0.47648230e+00 0.76393212e+02 0.11156800e+01
- 1 211 0 0 -0.12023037e+00 0.31049177e+00 0.33573769e+02 0.13957000e+00
- 1 22 0 0 0.81229063e-01 -0.75893115e-01 0.24300020e+01 0.00000000e+00
- 1 22 0 0 0.36405714e-01 -0.43128443e-01 0.57718665e+01 0.00000000e+00
- 1 -2212 0 0 0.69764973e+00 0.59104540e+00 0.49973215e+02 0.93827000e+00
- 1 -211 0 0 0.52693223e+00 0.49310320e+00 0.20245669e+02 0.13957000e+00
- 1 22 0 0 0.31611674e+00 -0.10431724e+00 0.27304019e+01 0.00000000e+00
- 1 22 0 0 0.26918027e-01 0.16086511e-01 0.69183629e+00 0.00000000e+00
- 1 211 0 0 0.22437426e+01 0.11523276e+01 0.22490287e+02 0.13957000e+00
- 2 111 506 507 0.46861037e+00 0.25429560e+00 0.90544303e+01 0.13498000e+00
- 1 211 0 0 0.10086264e-01 0.39820383e-02 0.26149105e+01 0.13957000e+00
- 2 111 508 509 0.30774486e+01 0.69169508e+00 0.28639500e+02 0.13498000e+00
- 2 311 510 510 0.71695839e+00 0.54385491e+00 0.76792082e+01 0.49767000e+00
- 2 111 511 512 -0.59624652e-01 -0.13329213e+00 0.12835656e+01 0.13498000e+00
- 2 -311 513 513 0.29036568e+00 0.74237273e+00 0.15133901e+01 0.49767000e+00
- 2 111 514 515 0.42185330e+00 0.15008315e+00 0.13697284e+01 0.13498000e+00
- 1 321 0 0 0.50512747e+00 0.24514139e+00 0.25208069e+01 0.49360000e+00
- 1 -211 0 0 0.21881811e+00 -0.28311299e+00 0.12144409e+01 0.13957000e+00
- 2 -311 516 516 0.89367525e+00 -0.41333723e+00 0.20583870e+01 0.49767000e+00
- 2 111 517 518 0.16182543e+01 -0.25584020e+00 0.23905436e+01 0.13498000e+00
- 1 -211 0 0 0.80196768e-01 0.82743700e-01 0.10109592e+00 0.13957000e+00
- 2 111 519 521 -0.41057216e-01 -0.25549097e+00 0.43871406e+00 0.13498000e+00
- 2 311 522 522 0.59128739e+00 -0.36688822e+00 0.11116490e+01 0.49767000e+00
- 1 211 0 0 0.54396950e+00 0.24102870e+00 0.81223082e+00 0.13957000e+00
- 1 130 0 0 0.13879990e+01 -0.86339810e+00 0.27011351e+01 0.49767000e+00
- 1 -211 0 0 0.46712836e+00 -0.36823076e+00 0.18332167e+00 0.13957000e+00
- 2 111 523 524 0.69409518e+00 -0.14021200e+00 0.19112809e+01 0.13498000e+00
- 1 -211 0 0 0.14923289e+00 0.29165304e+00 0.57713762e+00 0.13957000e+00
- 1 211 0 0 0.17998874e+00 -0.26487482e-02 -0.16093300e+00 0.13957000e+00
- 2 111 525 526 0.10650679e+00 0.42864015e+00 0.22368044e+00 0.13498000e+00
- 2 111 527 528 0.18014317e+00 0.43576653e+00 0.80995245e-01 0.13498000e+00
- 2 111 529 530 0.60516795e-01 0.55284107e-01 0.92194129e-01 0.13498000e+00
- 1 22 0 0 0.11164899e-01 0.12656296e+00 0.16199402e+00 0.00000000e+00
- 2 113 531 532 0.10230820e+01 0.31220676e+01 0.22307678e+01 0.88203942e+00
- 1 211 0 0 0.68043842e+00 0.22481026e+01 0.13064383e+01 0.13957000e+00
- 1 -211 0 0 0.29427616e+00 0.83159289e+00 0.78836216e+00 0.13957000e+00
- 2 111 533 534 0.12505547e+01 0.29556404e+01 0.19572066e+01 0.13498000e+00
- 1 211 0 0 -0.14836893e+00 0.29211777e+00 0.70239467e-01 0.13957000e+00
- 1 -211 0 0 0.23382938e+00 0.40225726e+00 0.40376031e+00 0.13957000e+00
- 2 111 535 536 0.69745586e-01 0.62356431e+00 0.10703756e+00 0.13498000e+00
- 1 -211 0 0 -0.13971920e+00 0.13243216e+00 -0.51992488e+00 0.13957000e+00
- 2 111 537 538 0.71106600e+00 0.14960158e+00 -0.11428410e+00 0.13498000e+00
- 1 -211 0 0 0.19602304e+00 0.14298672e+00 -0.14265506e+01 0.13957000e+00
- 1 211 0 0 0.54631831e+00 0.73531145e+00 -0.11103402e+02 0.13957000e+00
- 2 111 539 540 0.57346886e-01 0.15422510e+00 -0.34971432e+01 0.13498000e+00
- 1 211 0 0 0.79587909e+00 0.13835192e+00 -0.74845567e+01 0.13957000e+00
- 1 -211 0 0 0.31383051e+00 -0.16814231e+00 -0.33298257e+01 0.13957000e+00
- 2 111 541 542 0.10624405e+01 -0.30787866e+00 -0.79292005e+01 0.13498000e+00
- 1 2112 0 0 0.97222647e+00 -0.56375964e+00 -0.24428182e+02 0.93957000e+00
- 2 111 543 544 0.27860966e+00 -0.34654826e+00 -0.82273084e+01 0.13498000e+00
- 1 211 0 0 0.21189799e+00 0.63237343e-01 -0.53096703e+01 0.13957000e+00
- 2 111 545 546 0.90273722e+00 -0.76051329e+00 -0.10514435e+02 0.13498000e+00
- 1 211 0 0 0.96427020e+00 -0.76005263e+00 -0.17411741e+02 0.13957000e+00
- 2 111 547 548 0.12165803e+01 -0.13690805e+01 -0.39886203e+02 0.13498000e+00
- 1 -211 0 0 0.69129234e+00 -0.19913171e-01 -0.23906933e+02 0.13957000e+00
- 2 111 549 550 0.26374520e-01 -0.23476115e-01 -0.83802503e+00 0.13498000e+00
- 1 211 0 0 0.16241676e+00 -0.11809138e+01 -0.38643660e+02 0.13957000e+00
- 2 111 551 552 0.24630254e+00 -0.12921809e-01 -0.61619513e+01 0.13498000e+00
- 1 211 0 0 0.50862390e+00 0.12347094e+00 -0.25499492e+02 0.13957000e+00
- 1 -211 0 0 0.12122092e+00 -0.18347635e+00 -0.61998446e+01 0.13957000e+00
- 2 111 553 555 0.12014373e+00 -0.58090066e-01 -0.16767661e+02 0.13498000e+00
- 1 -2212 0 0 -0.46028231e+00 0.29216491e+00 -0.20424298e+03 0.93827000e+00
- 1 -211 0 0 -0.16978666e+00 0.51114031e+00 -0.67988177e+02 0.13957000e+00
- 2 311 556 556 0.50176794e-01 -0.68076921e+00 -0.73207451e+02 0.49767000e+00
- 1 211 0 0 -0.19677316e+00 -0.11104899e+00 -0.31536335e+02 0.13957000e+00
- 2 -311 557 557 -0.50765884e+00 0.23031300e+00 -0.68822572e+02 0.49767000e+00
- 1 -211 0 0 0.10903833e+00 -0.46290185e-01 -0.31596415e+02 0.13957000e+00
- 1 2212 0 0 -0.13439822e-01 0.12435440e+01 -0.30311072e+03 0.93827000e+00
- 2 111 558 559 -0.26786647e+00 0.59118887e+00 -0.16359543e+03 0.13498000e+00
- 1 22 0 0 -0.70208395e+00 0.70050341e+00 -0.74628953e+02 0.00000000e+00
- 1 22 0 0 -0.46289951e+00 0.33685641e+00 -0.39382001e+02 0.00000000e+00
- 1 22 0 0 -0.17602672e-01 0.43119651e-01 -0.33904229e+00 0.00000000e+00
- 2 113 560 561 -0.50115910e+00 0.49963265e+00 -0.70454336e+02 0.72413215e+00
- 1 2112 0 0 -0.79122660e+00 0.10167337e+01 -0.68323374e+02 0.93957000e+00
- 1 -211 0 0 -0.34696112e+00 0.83165528e+00 -0.45786134e+02 0.13957000e+00
- 1 -211 0 0 -0.21269834e+00 0.28731488e+00 -0.74849938e+01 0.13957000e+00
- 1 211 0 0 0.17116618e-01 -0.22370419e-01 -0.53367202e+01 0.13957000e+00
- 2 111 562 563 0.12302201e+00 -0.10106012e+00 -0.22187002e+01 0.13498000e+00
- 1 -2112 0 0 -0.12135016e+01 0.13763046e+01 -0.57969969e+02 0.93957000e+00
- 2 111 564 565 0.87038012e-01 0.29350856e+00 -0.82480441e+01 0.13498000e+00
- 1 22 0 0 -0.16474309e+00 0.18991889e+00 -0.85058469e+01 0.00000000e+00
- 1 22 0 0 0.13569985e-01 0.68798671e-01 -0.39375059e+01 0.00000000e+00
- 1 22 0 0 0.11395574e+00 -0.69839968e-01 -0.15028135e+01 0.00000000e+00
- 1 22 0 0 0.10399707e+00 -0.53608383e-01 -0.46301094e+00 0.00000000e+00
- 2 311 566 566 -0.44327240e+00 0.35253903e+00 -0.61567747e+01 0.49767000e+00
- 1 211 0 0 -0.33244081e+00 -0.86098351e-01 -0.51860087e+01 0.13957000e+00
- 2 -311 567 567 -0.67376105e+00 0.32296986e+00 -0.63305450e+01 0.49767000e+00
- 1 -211 0 0 -0.22594250e+00 0.35476185e-01 -0.63432855e+01 0.13957000e+00
- 1 22 0 0 -0.11603206e+00 0.54482294e-01 -0.11454196e+01 0.00000000e+00
- 1 22 0 0 -0.42821310e+00 0.46196313e+00 -0.74684228e+01 0.00000000e+00
- 1 22 0 0 0.38644438e-01 0.41255671e-01 -0.21312041e-01 0.00000000e+00
- 1 211 0 0 -0.25552401e-01 -0.26634369e-02 -0.70988957e-01 0.13957000e+00
- 1 -211 0 0 0.13893628e+00 -0.12096754e-01 -0.93083562e+00 0.13957000e+00
- 1 -211 0 0 0.79168436e-01 -0.42305144e+00 -0.30273937e+01 0.13957000e+00
- 2 111 568 569 -0.28537604e+00 -0.29392766e+00 -0.83833078e+00 0.13498000e+00
- 1 2212 0 0 -0.12209932e+01 -0.10993703e+00 -0.41873238e+01 0.93827000e+00
- 1 211 0 0 -0.20333096e+00 -0.23485292e+00 -0.92135897e+00 0.13957000e+00
- 1 22 0 0 0.14015697e+00 -0.11082999e+00 -0.53747891e+00 0.00000000e+00
- 1 22 0 0 0.39745208e+00 -0.55339417e+00 -0.15373208e+01 0.00000000e+00
- 1 -2212 0 0 -0.57019322e-03 0.90967268e+00 -0.63077447e+00 0.93827000e+00
- 1 -211 0 0 -0.10041364e+00 0.14144531e+00 0.21132575e+00 0.13957000e+00
- 2 311 570 570 0.59246561e+00 0.65594107e+00 0.16942559e+01 0.49767000e+00
- 1 211 0 0 0.10750980e+01 0.13977673e+01 0.23502887e+01 0.13957000e+00
- 1 -321 0 0 0.85373751e+00 0.12767319e+01 0.11043217e+01 0.49360000e+00
- 1 211 0 0 0.85129882e+00 0.18635058e+01 0.18998158e+01 0.13957000e+00
- 1 -211 0 0 0.45568501e+00 0.54004830e+00 0.45486828e+00 0.13957000e+00
- 1 211 0 0 0.31119402e-02 0.15470044e+01 0.82597830e+00 0.13957000e+00
- 1 -211 0 0 -0.27085127e+00 0.26531383e+00 -0.20055927e+00 0.13957000e+00
- 1 211 0 0 0.25614541e+00 0.44792547e+00 0.19707093e+00 0.13957000e+00
- 1 -2112 0 0 -0.45921412e+00 -0.40494481e+00 -0.30090094e+02 0.93957000e+00
- 1 211 0 0 0.30804390e-01 0.66306032e-01 -0.54971120e+01 0.13957000e+00
- 1 -211 0 0 -0.12757935e+00 -0.28384002e+00 -0.15651541e+02 0.13957000e+00
- 2 111 571 572 -0.43406626e+00 -0.81965146e-01 -0.42684485e+01 0.13498000e+00
- 1 211 0 0 0.39574178e-02 -0.52787438e-01 -0.75981695e+01 0.13957000e+00
- 1 -211 0 0 -0.26066135e-01 0.23257842e-01 -0.23828725e+02 0.13957000e+00
- 2 111 573 574 0.29702691e+00 -0.26342938e+00 -0.11167292e+03 0.13498000e+00
- 1 211 0 0 -0.84619438e-01 -0.51867224e+00 -0.21279131e+02 0.13957000e+00
- 2 111 575 576 0.22015891e-01 0.21557918e+00 -0.11151759e+02 0.13498000e+00
- 1 22 0 0 -0.91507125e-01 0.92433229e-01 -0.15410578e+03 0.00000000e+00
- 1 22 0 0 -0.28662107e+00 0.23757554e-01 -0.31393113e+03 0.00000000e+00
- 1 22 0 0 -0.29008815e-01 0.28121868e+00 -0.23876155e+03 0.00000000e+00
- 1 22 0 0 0.10076585e+00 0.37453596e+00 -0.27249292e+03 0.00000000e+00
- 1 -211 0 0 0.13939663e+00 0.92840660e-02 -0.81002464e+02 0.13957000e+00
- 2 111 577 578 0.86379920e-01 0.38101681e+00 -0.55812535e+03 0.13498000e+00
- 1 2212 0 0 0.80865989e-01 0.51699441e+00 -0.87015400e+03 0.93827000e+00
- 1 211 0 0 0.37524994e+00 -0.92571248e-01 -0.31144164e+03 0.13957000e+00
- 1 22 0 0 -0.19961061e+00 -0.34077467e-01 -0.37074591e+03 0.00000000e+00
- 1 22 0 0 -0.39043962e+00 -0.18144258e-01 -0.45184232e+03 0.00000000e+00
- 2 111 579 580 0.28217784e+00 0.28153350e+00 0.86661892e-01 0.13498000e+00
- 2 111 581 582 0.43801146e+00 0.39339855e+00 -0.14001841e+00 0.13498000e+00
- 2 111 583 584 0.57768172e-01 0.14217242e+00 0.14838335e-01 0.13498000e+00
- 1 211 0 0 -0.87026133e-01 -0.21901089e+00 -0.85510417e-01 0.13957000e+00
- 1 -211 0 0 -0.63172424e-01 -0.55369995e-01 -0.64446508e-01 0.13957000e+00
- 2 111 585 586 -0.64552661e-01 -0.49284143e+00 0.67727915e-02 0.13498000e+00
- 1 22 0 0 -0.10486474e+00 0.24934786e+00 0.15284125e+00 0.00000000e+00
- 1 22 0 0 0.12587579e-01 0.29564172e+00 0.23554486e+00 0.00000000e+00
- 1 -211 0 0 -0.18988920e+00 0.10240483e+00 -0.66612822e-01 0.13957000e+00
- 2 111 587 588 0.61029019e+00 0.18890935e+00 -0.11508880e+00 0.13498000e+00
- 1 22 0 0 -0.93549144e-02 -0.32104304e-01 0.12878695e+00 0.00000000e+00
- 1 22 0 0 0.34716848e+00 -0.36833649e+00 0.26480145e+01 0.00000000e+00
- 1 22 0 0 -0.47842911e-01 -0.18515356e+00 0.24853524e+00 0.00000000e+00
- 1 22 0 0 -0.56244603e-02 -0.76423045e-01 0.31775175e+00 0.00000000e+00
- 1 22 0 0 -0.15409392e+00 -0.14475429e-01 0.57065390e+00 0.00000000e+00
- 1 22 0 0 -0.13349351e+00 0.88469095e-01 0.10187257e+01 0.00000000e+00
- 1 22 0 0 0.93110886e-01 -0.13487082e+00 0.77522681e+00 0.00000000e+00
- 1 22 0 0 -0.34234137e-01 -0.13491661e-01 0.80231906e-01 0.00000000e+00
- 1 22 0 0 0.34331902e-01 0.24371500e-02 0.14516071e+00 0.00000000e+00
- 1 22 0 0 0.14276347e+00 -0.19989450e+00 0.32788805e+00 0.00000000e+00
- 1 22 0 0 -0.57381065e-02 0.58891701e-01 0.16531323e+00 0.00000000e+00
- 1 22 0 0 -0.50911406e-01 0.13052664e+00 0.15562936e+01 0.00000000e+00
- 1 22 0 0 -0.30897478e-01 -0.30719832e-01 0.55751627e+00 0.00000000e+00
- 1 22 0 0 0.50259789e-01 0.40735544e-01 0.19028365e+00 0.00000000e+00
- 1 2112 0 0 -0.22901248e+00 0.35321386e-01 0.12052215e+02 0.93957000e+00
- 2 111 589 590 -0.10766519e+00 0.11098224e+00 0.29270759e+01 0.13498000e+00
- 1 22 0 0 0.12437786e+00 -0.12280517e+00 0.30458502e+01 0.00000000e+00
- 1 22 0 0 -0.20129025e-01 -0.20341297e-01 0.16673156e+01 0.00000000e+00
- 1 22 0 0 -0.20163020e+00 0.22520448e-01 0.53598799e+01 0.00000000e+00
- 1 22 0 0 0.16456551e-01 -0.18846172e-01 0.47169145e+00 0.00000000e+00
- 1 -211 0 0 -0.18861176e+00 -0.21596424e+00 0.50045996e+01 0.13957000e+00
- 1 211 0 0 -0.34529319e+00 0.42838771e-01 0.26244465e+01 0.13957000e+00
- 1 22 0 0 -0.11950535e+01 -0.12887492e+01 0.14397759e+02 0.00000000e+00
- 1 22 0 0 -0.32431748e-01 -0.77672556e-01 0.67540612e+00 0.00000000e+00
- 1 22 0 0 -0.35776724e-01 -0.77831503e+00 0.93866044e+01 0.00000000e+00
- 1 22 0 0 -0.54219018e-01 -0.24816596e+00 0.39374583e+01 0.00000000e+00
- 1 -211 0 0 -0.16386369e+00 -0.77823526e+00 0.82008625e+01 0.13957000e+00
- 1 211 0 0 -0.27282325e+00 -0.49715528e+00 0.64012530e+01 0.13957000e+00
- 2 111 591 592 -0.30776522e+00 -0.10619892e+01 0.10034123e+02 0.13498000e+00
- 1 22 0 0 -0.21253381e+01 -0.10931269e+01 0.13496557e+02 0.00000000e+00
- 1 22 0 0 -0.58731980e+00 -0.23668007e+00 0.37998514e+01 0.00000000e+00
- 2 310 593 594 -0.21211602e+01 -0.95107592e+00 0.11241790e+02 0.49767000e+00
- 1 22 0 0 -0.41994995e-01 0.41033325e-01 0.10546292e+00 0.00000000e+00
- 1 22 0 0 -0.19533828e+00 0.25857679e+00 0.13865944e+00 0.00000000e+00
- 1 22 0 0 0.44524953e-01 0.97719250e-02 0.11480305e+00 0.00000000e+00
- 1 22 0 0 -0.16930674e-01 0.21845742e+00 0.38889193e+00 0.00000000e+00
- 1 22 0 0 -0.39678667e+00 -0.27876486e+00 0.21896042e+00 0.00000000e+00
- 1 22 0 0 -0.69300079e-01 -0.14546977e-01 -0.11417480e-01 0.00000000e+00
- 1 22 0 0 0.57694810e-01 0.11873720e-01 -0.48817405e-02 0.00000000e+00
- 1 22 0 0 -0.41821398e-01 0.12602594e+00 -0.53096842e-01 0.00000000e+00
- 1 22 0 0 -0.55117935e-01 0.10323764e+00 -0.77504156e-01 0.00000000e+00
- 1 22 0 0 0.78983051e-02 -0.37201857e-01 -0.80261700e-02 0.00000000e+00
- 1 22 0 0 -0.13463694e+00 -0.74274842e-02 0.27487709e-01 0.00000000e+00
- 1 22 0 0 -0.17427491e+00 0.12509066e+00 -0.49274543e-01 0.00000000e+00
- 1 22 0 0 -0.13968754e-01 -0.30164845e-01 -0.29328707e+00 0.00000000e+00
- 1 22 0 0 0.53303198e-01 -0.38451596e-01 -0.51648110e-01 0.00000000e+00
- 1 22 0 0 -0.47142082e+00 -0.11457160e+00 -0.65794299e+00 0.00000000e+00
- 1 22 0 0 -0.45945901e+00 -0.13829647e+00 -0.89926900e+00 0.00000000e+00
- 1 22 0 0 -0.14977872e-01 0.15648674e+00 -0.70803125e-01 0.00000000e+00
- 1 22 0 0 -0.54091744e-01 0.67200433e-01 -0.16521023e+00 0.00000000e+00
- 2 310 595 596 0.50205998e+00 -0.33403316e+00 -0.40490527e+01 0.49767000e+00
- 1 22 0 0 -0.11781197e+00 0.25613650e-01 -0.46503629e+01 0.00000000e+00
- 1 22 0 0 -0.23374930e-02 0.73491478e-01 -0.13789741e+01 0.00000000e+00
- 1 22 0 0 -0.15162738e-01 -0.10960349e-01 0.33681106e+01 0.00000000e+00
- 1 22 0 0 0.17298774e+00 0.17306307e+00 0.40983183e+02 0.00000000e+00
- 1 2112 0 0 -0.47427215e+00 0.35944907e+00 0.58450052e+02 0.93957000e+00
- 2 111 597 598 -0.81821850e-01 0.11703324e+00 0.17943159e+02 0.13498000e+00
- 1 22 0 0 0.40435526e+00 0.20345391e+00 0.82804673e+01 0.00000000e+00
- 1 22 0 0 0.64255108e-01 0.50841692e-01 0.77396303e+00 0.00000000e+00
- 1 22 0 0 0.17374908e+01 0.44273840e+00 0.15874742e+02 0.00000000e+00
- 1 22 0 0 0.13399577e+01 0.24895669e+00 0.12764758e+02 0.00000000e+00
- 1 130 0 0 0.71695839e+00 0.54385491e+00 0.76792082e+01 0.49767000e+00
- 1 22 0 0 -0.77208624e-01 -0.86888835e-01 0.48355598e+00 0.00000000e+00
- 1 22 0 0 0.17583972e-01 -0.46403290e-01 0.80000963e+00 0.00000000e+00
- 1 130 0 0 0.29036568e+00 0.74237273e+00 0.15133901e+01 0.49767000e+00
- 1 22 0 0 0.38015581e+00 0.96273087e-01 0.12445439e+01 0.00000000e+00
- 1 22 0 0 0.41697490e-01 0.53810061e-01 0.12518446e+00 0.00000000e+00
- 2 310 599 600 0.89367525e+00 -0.41333723e+00 0.20583870e+01 0.49767000e+00
- 1 22 0 0 0.63333892e+00 -0.50077480e-01 0.10024987e+01 0.00000000e+00
- 1 22 0 0 0.98491539e+00 -0.20576272e+00 0.13880449e+01 0.00000000e+00
- 1 22 0 0 -0.16675437e-01 -0.22161437e+00 0.25436189e+00 0.00000000e+00
- 1 11 0 0 -0.12435704e-01 -0.17840221e-01 0.80255876e-01 0.51000000e-03
- 1 -11 0 0 -0.11946075e-01 -0.16036372e-01 0.10409630e+00 0.51000000e-03
- 2 310 601 602 0.59128739e+00 -0.36688822e+00 0.11116490e+01 0.49767000e+00
- 1 22 0 0 0.23710251e-01 0.20535174e-01 0.90765057e-01 0.00000000e+00
- 1 22 0 0 0.67038493e+00 -0.16074717e+00 0.18205159e+01 0.00000000e+00
- 1 22 0 0 0.10535156e+00 0.34562656e+00 0.12086428e+00 0.00000000e+00
- 1 22 0 0 0.11552234e-02 0.83013590e-01 0.10281617e+00 0.00000000e+00
- 1 22 0 0 0.10270782e+00 0.34982770e+00 0.10407374e+00 0.00000000e+00
- 1 22 0 0 0.77435350e-01 0.85938830e-01 -0.23078494e-01 0.00000000e+00
- 1 22 0 0 0.50085378e-01 -0.23062306e-01 -0.74880706e-02 0.00000000e+00
- 1 22 0 0 0.10431418e-01 0.78346413e-01 0.99682200e-01 0.00000000e+00
- 1 211 0 0 0.55328375e+00 0.60268848e+00 0.64347719e+00 0.13957000e+00
- 1 -211 0 0 0.46979820e+00 0.25193791e+01 0.15872906e+01 0.13957000e+00
- 1 22 0 0 0.77736768e+00 0.18770934e+01 0.11645469e+01 0.00000000e+00
- 1 22 0 0 0.47318697e+00 0.10785470e+01 0.79265971e+00 0.00000000e+00
- 1 22 0 0 0.10670294e-01 0.73201158e-02 0.22365066e-01 0.00000000e+00
- 1 22 0 0 0.59075292e-01 0.61624419e+00 0.84672491e-01 0.00000000e+00
- 1 22 0 0 0.33745985e+00 0.39433656e-01 0.71981170e-02 0.00000000e+00
- 1 22 0 0 0.37360615e+00 0.11016792e+00 -0.12148222e+00 0.00000000e+00
- 1 22 0 0 -0.77161880e-02 0.25821176e-01 -0.18488055e+01 0.00000000e+00
- 1 22 0 0 0.65063074e-01 0.12840393e+00 -0.16483378e+01 0.00000000e+00
- 1 22 0 0 0.20071946e+00 -0.11271077e+00 -0.15341576e+01 0.00000000e+00
- 1 22 0 0 0.86172100e+00 -0.19516789e+00 -0.63950429e+01 0.00000000e+00
- 1 22 0 0 0.11985701e+00 -0.70181490e-01 -0.18852814e+01 0.00000000e+00
- 1 22 0 0 0.15875265e+00 -0.27636677e+00 -0.63420270e+01 0.00000000e+00
- 1 22 0 0 0.76464846e+00 -0.64528839e+00 -0.92998168e+01 0.00000000e+00
- 1 22 0 0 0.13808877e+00 -0.11522491e+00 -0.12146187e+01 0.00000000e+00
- 1 22 0 0 0.97918639e+00 -0.11376627e+01 -0.31609701e+02 0.00000000e+00
- 1 22 0 0 0.23739394e+00 -0.23141775e+00 -0.82765018e+01 0.00000000e+00
- 1 22 0 0 -0.45436304e-01 0.24478661e-01 -0.37720401e+00 0.00000000e+00
- 1 22 0 0 0.71810825e-01 -0.47954777e-01 -0.46082102e+00 0.00000000e+00
- 1 22 0 0 0.21549470e+00 0.22464505e-01 -0.39689655e+01 0.00000000e+00
- 1 22 0 0 0.30807844e-01 -0.35386314e-01 -0.21929858e+01 0.00000000e+00
- 1 22 0 0 0.64906381e-02 0.19385070e-02 -0.82705562e+01 0.00000000e+00
- 1 -11 0 0 0.41074497e-01 -0.29174496e-01 -0.45839084e+01 0.51000000e-03
- 1 11 0 0 0.72578592e-01 -0.30854078e-01 -0.39131962e+01 0.51000000e-03
- 1 130 0 0 0.50176794e-01 -0.68076921e+00 -0.73207451e+02 0.49767000e+00
- 2 310 603 604 -0.50765884e+00 0.23031300e+00 -0.68822572e+02 0.49767000e+00
- 1 22 0 0 -0.50705847e-02 -0.65485895e-02 -0.38166878e+01 0.00000000e+00
- 1 22 0 0 -0.26279588e+00 0.59773746e+00 -0.15977874e+03 0.00000000e+00
- 1 -211 0 0 -0.65052945e+00 0.31148524e+00 -0.51373833e+02 0.13957000e+00
- 1 211 0 0 0.14937035e+00 0.18814741e+00 -0.19080503e+02 0.13957000e+00
- 1 22 0 0 0.79262313e-01 -0.12073563e+00 -0.11988412e+01 0.00000000e+00
- 1 22 0 0 0.43759693e-01 0.19675501e-01 -0.10198590e+01 0.00000000e+00
- 1 22 0 0 0.12342075e+00 0.21750989e+00 -0.60328128e+01 0.00000000e+00
- 1 22 0 0 -0.36382740e-01 0.75998677e-01 -0.22152313e+01 0.00000000e+00
- 2 310 605 606 -0.44327240e+00 0.35253903e+00 -0.61567747e+01 0.49767000e+00
- 1 130 0 0 -0.67376105e+00 0.32296986e+00 -0.63305450e+01 0.49767000e+00
- 1 22 0 0 -0.16476086e+00 -0.12800162e+00 -0.28928513e+00 0.00000000e+00
- 1 22 0 0 -0.12061517e+00 -0.16592604e+00 -0.54904565e+00 0.00000000e+00
- 1 130 0 0 0.59246561e+00 0.65594107e+00 0.16942559e+01 0.49767000e+00
- 1 22 0 0 -0.11778064e+00 -0.52969719e-01 -0.17896884e+01 0.00000000e+00
- 1 22 0 0 -0.31628562e+00 -0.28995427e-01 -0.24787600e+01 0.00000000e+00
- 1 22 0 0 0.10143113e-01 -0.73640812e-01 -0.22994781e+02 0.00000000e+00
- 1 22 0 0 0.28688379e+00 -0.18978857e+00 -0.88678139e+02 0.00000000e+00
- 1 22 0 0 -0.49634422e-01 0.95156464e-01 -0.35203292e+01 0.00000000e+00
- 1 22 0 0 0.71650313e-01 0.12042272e+00 -0.76314296e+01 0.00000000e+00
- 1 22 0 0 0.38471946e-01 0.27159110e+00 -0.29994083e+03 0.00000000e+00
- 1 22 0 0 0.47907974e-01 0.10942571e+00 -0.25818452e+03 0.00000000e+00
- 1 22 0 0 0.20595996e+00 0.11564451e+00 0.69947234e-01 0.00000000e+00
- 1 22 0 0 0.76217886e-01 0.16588899e+00 0.16714658e-01 0.00000000e+00
- 1 22 0 0 0.17186641e+00 0.77725283e-01 -0.70265521e-01 0.00000000e+00
- 1 22 0 0 0.26614505e+00 0.31567327e+00 -0.69752884e-01 0.00000000e+00
- 1 22 0 0 0.41458098e-01 0.20188916e-01 -0.48144515e-01 0.00000000e+00
- 1 22 0 0 0.16310075e-01 0.12198351e+00 0.62982850e-01 0.00000000e+00
- 1 22 0 0 -0.62340397e-01 -0.29628510e+00 0.65834335e-01 0.00000000e+00
- 1 22 0 0 -0.22122647e-02 -0.19655633e+00 -0.59061543e-01 0.00000000e+00
- 1 22 0 0 0.53344825e+00 0.12073941e+00 -0.12088902e+00 0.00000000e+00
- 1 22 0 0 0.76841941e-01 0.68169944e-01 0.58002166e-02 0.00000000e+00
- 1 22 0 0 -0.82273529e-01 -0.48274139e-02 0.15044473e+01 0.00000000e+00
- 1 22 0 0 -0.25391659e-01 0.11580965e+00 0.14226286e+01 0.00000000e+00
- 1 22 0 0 -0.20940277e+00 -0.87004752e+00 0.77582964e+01 0.00000000e+00
- 1 22 0 0 -0.98362443e-01 -0.19194166e+00 0.22758264e+01 0.00000000e+00
- 2 111 607 608 -0.10090547e+01 -0.54198628e+00 0.45994187e+01 0.13498000e+00
- 2 111 609 610 -0.11121055e+01 -0.40908964e+00 0.66423716e+01 0.13498000e+00
- 1 -211 0 0 0.39642935e+00 -0.23243501e-01 -0.19758483e+01 0.13957000e+00
- 1 211 0 0 0.10563063e+00 -0.31078966e+00 -0.20732044e+01 0.13957000e+00
- 1 22 0 0 -0.69941780e-01 0.82524120e-02 0.37999523e+01 0.00000000e+00
- 1 22 0 0 -0.11880071e-01 0.10878083e+00 0.14143207e+02 0.00000000e+00
- 1 211 0 0 0.85843427e+00 -0.30805908e+00 0.16669181e+01 0.13957000e+00
- 1 -211 0 0 0.35240983e-01 -0.10527816e+00 0.39146895e+00 0.13957000e+00
- 1 -211 0 0 0.41180971e+00 -0.61184772e-01 0.79131192e+00 0.13957000e+00
- 1 211 0 0 0.17947768e+00 -0.30570345e+00 0.32033705e+00 0.13957000e+00
- 2 111 611 612 -0.37650375e+00 0.24913604e+00 -0.30972046e+02 0.13498000e+00
- 2 111 613 614 -0.13115510e+00 -0.18823033e-01 -0.37850526e+02 0.13498000e+00
- 1 -211 0 0 0.40672295e-01 0.15391375e+00 -0.16035004e+01 0.13957000e+00
- 1 211 0 0 -0.48394469e+00 0.19862528e+00 -0.45532743e+01 0.13957000e+00
- 1 22 0 0 -0.57080210e+00 -0.31313598e+00 0.28838124e+01 0.00000000e+00
- 1 22 0 0 -0.43825255e+00 -0.22885031e+00 0.17156063e+01 0.00000000e+00
- 1 22 0 0 -0.65721293e+00 -0.27609411e+00 0.36565701e+01 0.00000000e+00
- 1 22 0 0 -0.45489258e+00 -0.13299552e+00 0.29858015e+01 0.00000000e+00
- 1 22 0 0 -0.31918521e+00 0.14465199e+00 -0.24174124e+02 0.00000000e+00
- 1 22 0 0 -0.57318535e-01 0.10448404e+00 -0.67979215e+01 0.00000000e+00
- 1 22 0 0 0.19698584e-01 0.22816041e-01 -0.87354424e+01 0.00000000e+00
- 1 22 0 0 -0.15085368e+00 -0.41639074e-01 -0.29115084e+02 0.00000000e+00
- 436
- 2 25 2 3 -0.11856041e+03 0.23709951e+02 -0.23123579e+03 0.12500018e+03
- 2 23 4 5 -0.11554809e+03 0.34661720e+02 -0.18217464e+03 0.91499174e+02
- 2 23 6 9 -0.30123263e+01 -0.10951769e+02 -0.49061142e+02 0.14671721e+02
- 1 13 0 0 -0.53337453e+02 0.62582955e+02 -0.86000516e+02 0.10566000e+00
- 1 -13 0 0 -0.62210632e+02 -0.27921235e+02 -0.96174127e+02 0.10566000e+00
- 1 -13 0 0 0.48048780e+01 -0.86873140e+01 -0.20952472e+02 0.10566000e+00
- 1 22 0 0 -0.10075023e-01 -0.24334528e-01 -0.12579245e+00 0.00000000e+00
- 1 13 0 0 -0.73053888e+01 -0.21346983e+01 -0.26235833e+02 0.10566000e+00
- 1 22 0 0 -0.50174043e+00 -0.10542252e+00 -0.17470456e+01 0.00000000e+00
- 2 1 50 50 0.19771458e+02 0.12003115e+02 -0.35605724e+02 0.33000000e+00
- 2 21 50 50 0.33862761e+02 0.21381262e+02 -0.53778599e+02 0.00000000e+00
- 2 21 50 50 0.33701672e+01 0.19810578e+01 -0.58346745e+01 0.00000000e+00
- 2 21 50 50 0.21059680e+02 0.18450892e+02 -0.46965618e+02 0.00000000e+00
- 2 21 50 50 0.88272250e+00 -0.18285335e+00 0.40318516e-01 0.00000000e+00
- 2 21 50 50 0.29215576e+01 -0.13826051e+01 -0.34364090e+01 0.00000000e+00
- 2 21 50 50 -0.36318899e+00 -0.21969233e+01 -0.40768873e+02 0.00000000e+00
- 2 21 50 50 -0.14832306e+01 -0.15775947e+01 -0.38695643e+03 0.00000000e+00
- 2 21 50 50 0.36318899e+00 0.21969233e+01 -0.48350119e+03 0.00000000e+00
- 2 21 50 50 0.14832306e+01 0.15775947e+01 -0.37297882e+03 0.00000000e+00
- 2 21 50 50 0.17975209e+01 -0.37772346e+00 -0.24052687e+01 0.00000000e+00
- 2 21 50 50 0.49852198e+00 0.21597571e+01 -0.16602186e+01 0.00000000e+00
- 2 21 50 50 0.76746040e+00 0.39476796e+01 -0.11145567e+01 0.00000000e+00
- 2 21 50 50 -0.88074401e+00 0.41075621e+00 0.94723946e+01 0.00000000e+00
- 2 21 50 50 0.96003948e-01 -0.45509756e+00 0.10116980e+02 0.00000000e+00
- 2 21 50 50 -0.13077390e+01 0.61817170e-01 0.15265842e+04 0.00000000e+00
- 2 21 50 50 0.53122688e+00 -0.81515068e-01 0.24688006e+03 0.00000000e+00
- 2 2101 50 50 -0.40105926e-01 0.10581303e+00 0.24703200e+04 0.57933000e+00
- 2 2 100 100 0.16080091e+02 -0.18333147e+01 -0.43136067e+02 0.33000000e+00
- 2 21 100 100 0.13827247e+01 -0.13257558e+00 -0.72348135e+02 0.00000000e+00
- 2 2203 100 100 -0.28410729e+00 -0.17013912e+01 -0.49343569e+04 0.77133000e+00
- 2 -2 111 111 0.50112756e+01 -0.72423956e+01 -0.92288615e+02 0.33000000e+00
- 2 21 111 111 0.87316396e+01 -0.99587736e+01 -0.13423778e+03 0.00000000e+00
- 2 21 111 111 -0.49852198e+00 -0.21597571e+01 0.71366518e-01 0.00000000e+00
- 2 21 111 111 -0.17975209e+01 0.37772346e+00 0.22098308e+02 0.00000000e+00
- 2 21 111 111 -0.57668483e+01 -0.94455906e+00 0.72452917e+02 0.00000000e+00
- 2 21 111 111 -0.76746040e+00 -0.39476796e+01 0.28330910e+03 0.00000000e+00
- 2 21 111 111 0.13554688e+01 -0.15275336e+01 0.83222842e+03 0.00000000e+00
- 2 21 111 111 0.57668483e+01 0.94455906e+00 0.10209495e+04 0.00000000e+00
- 2 21 111 111 -0.13554688e+01 0.15275336e+01 0.10136473e+02 0.00000000e+00
- 2 21 111 111 0.16986462e+01 -0.92819944e+01 0.21847238e+02 0.00000000e+00
- 2 21 111 111 0.99595953e+01 -0.44625590e+02 0.97251129e+02 0.00000000e+00
- 2 21 111 111 -0.99528470e+00 -0.15417727e+01 0.45089984e+01 0.00000000e+00
- 2 21 111 111 -0.77151986e+00 -0.35076459e+00 0.32895619e+01 0.00000000e+00
- 2 21 111 111 -0.11816769e+01 0.33224597e+00 0.14581470e+02 0.00000000e+00
- 2 21 111 111 -0.16901200e+01 0.16339515e+00 0.94071460e+00 0.00000000e+00
- 2 21 111 111 0.47762911e+00 0.40529903e+00 0.12232098e+01 0.00000000e+00
- 2 21 111 111 -0.40089123e+00 -0.26990202e+00 0.14658129e+02 0.00000000e+00
- 2 21 111 111 0.22738697e-01 -0.54797945e+00 0.16755860e+02 0.00000000e+00
- 2 2 111 111 0.25268342e+00 0.58292074e+00 0.26289274e+03 0.33000000e+00
- 2 92 51 99 0.83330491e+02 0.58022355e+02 0.28284076e+04 0.49874379e+04
- 2 111 171 172 0.36877996e+01 0.22700579e+01 -0.65417233e+01 0.13498000e+00
- 2 223 173 175 0.91201244e+01 0.53572867e+01 -0.15155220e+02 0.78527179e+00
- 2 223 176 178 0.83097960e+01 0.52488771e+01 -0.14859513e+02 0.77690848e+00
- 2 -213 179 180 0.24161156e+02 0.15511006e+02 -0.40346175e+02 0.87861934e+00
- 2 323 181 182 0.55130183e+01 0.39117390e+01 -0.97778799e+01 0.81915132e+00
- 1 -321 0 0 0.18005852e+01 0.10954397e+01 -0.36870108e+01 0.49360000e+00
- 1 2212 0 0 0.11329923e+02 0.91388695e+01 -0.22879709e+02 0.93827000e+00
- 1 -2112 0 0 0.40307922e+01 0.20615856e+01 -0.54551282e+01 0.93957000e+00
- 1 -211 0 0 0.45544224e+01 0.47173419e+01 -0.11267947e+02 0.13957000e+00
- 1 211 0 0 0.22104780e+01 0.14463772e+01 -0.39429536e+01 0.13957000e+00
- 2 311 183 183 0.16640069e+01 0.80457131e+00 -0.33574337e+01 0.49767000e+00
- 2 -323 184 185 0.10638601e+01 0.63017084e+00 -0.17995037e+01 0.85946359e+00
- 2 213 186 187 0.61638755e+00 0.90148928e+00 -0.16304992e+01 0.74240470e+00
- 2 -213 188 189 0.18760659e+01 0.14820893e-01 -0.35125134e+01 0.69005719e+00
- 2 213 190 191 0.41312414e+00 -0.65693019e+00 -0.12889923e+01 0.79088919e+00
- 1 -211 0 0 -0.76701363e-02 0.28256533e+00 -0.43607836e+00 0.13957000e+00
- 2 111 192 193 0.16588252e+00 0.59609531e-01 -0.44767914e+00 0.13498000e+00
- 2 213 194 195 0.32185837e+00 -0.79852853e+00 -0.24821803e+01 0.79610583e+00
- 2 2114 196 197 0.79875617e+00 -0.11736715e+00 -0.33802506e+01 0.11464511e+01
- 2 111 198 199 0.20196576e+00 -0.15478416e+00 -0.61552901e+01 0.13498000e+00
- 1 -2112 0 0 -0.21169305e+00 -0.21463072e+00 -0.98860303e+01 0.93957000e+00
- 1 -211 0 0 -0.35774959e+00 -0.30289447e+00 -0.18090265e+02 0.13957000e+00
- 2 213 200 201 -0.26069687e+00 -0.62844532e+00 -0.17315076e+02 0.72177933e+00
- 2 3112 202 203 -0.62260518e+00 -0.15112436e+01 -0.21180027e+03 0.11974400e+01
- 2 -3112 204 205 -0.52107300e-01 -0.20409554e+00 -0.83502077e+02 0.11974400e+01
- 2 313 206 207 0.13601892e+01 0.12473388e+01 -0.45191354e+03 0.84772928e+00
- 1 -321 0 0 -0.36977497e+00 0.70100586e+00 -0.10827104e+03 0.49360000e+00
- 2 213 208 209 0.93721354e-01 0.70275759e+00 -0.22852419e+03 0.83034894e+00
- 1 -211 0 0 0.13081361e+00 0.23020792e+00 -0.10001091e+02 0.13957000e+00
- 2 223 210 212 0.40434904e-01 0.52573790e+00 -0.10596538e+03 0.78773499e+00
- 2 323 213 214 0.64239954e+00 -0.13124740e+00 -0.75971838e+01 0.74248597e+00
- 1 -321 0 0 -0.43774194e+00 0.75681437e-02 -0.15198444e+02 0.49360000e+00
- 2 111 215 216 0.87340913e+00 -0.55838927e-01 -0.15800588e+01 0.13498000e+00
- 1 321 0 0 0.38120055e+00 0.40203295e+00 -0.32325596e+01 0.49360000e+00
- 2 -323 217 218 0.83737945e-01 0.17851229e+01 -0.92709336e+00 0.87067339e+00
- 2 331 219 220 0.81059121e+00 0.81699041e+00 0.23272583e+00 0.95790534e+00
- 1 211 0 0 0.12932857e+00 0.10889455e+01 -0.25635980e+01 0.13957000e+00
- 1 2112 0 0 0.75807524e+00 0.20432948e+01 0.11231481e+01 0.93957000e+00
- 1 -321 0 0 0.15430622e+00 -0.52591988e+00 0.12062176e+01 0.49360000e+00
- 2 -3112 221 222 -0.31728542e+00 0.46967320e+00 0.31105311e+01 0.11974400e+01
- 2 113 223 224 0.58470152e-01 -0.17120261e+00 0.15466186e+02 0.81120266e+00
- 2 313 225 226 -0.30598231e+00 0.27100284e-02 0.37832793e+02 0.91167292e+00
- 2 333 227 228 -0.16512151e-01 0.17600294e+00 0.58031244e+02 0.10175599e+01
- 2 -323 229 230 0.12896647e-01 0.11945777e+00 0.23858712e+02 0.88956549e+00
- 1 211 0 0 -0.65696968e+00 0.22998872e+00 0.22599240e+02 0.13957000e+00
- 2 -213 231 232 0.18779575e+00 -0.74165045e+00 0.11875490e+03 0.85169225e+00
- 2 331 233 235 -0.25099323e+00 0.40372322e+00 0.79771021e+03 0.95792631e+00
- 1 321 0 0 -0.69456321e+00 -0.69404382e-01 0.42957159e+03 0.49360000e+00
- 2 3122 236 237 0.33546367e+00 -0.97828092e-01 0.27536817e+04 0.11156800e+01
- 2 92 101 110 0.17178708e+02 -0.36672815e+01 -0.50498411e+04 0.17176946e+03
- 2 113 238 239 0.37595600e+01 -0.31630111e+00 -0.10662844e+02 0.71233009e+00
- 2 323 240 241 0.11964652e+02 -0.15111795e+01 -0.31957689e+02 0.94503065e+00
- 2 -313 242 243 0.85276119e-01 -0.22253355e+00 -0.16202837e+02 0.89369826e+00
- 2 111 244 245 0.91080536e+00 0.36045149e+00 -0.17220680e+02 0.13498000e+00
- 1 -211 0 0 -0.17975930e+00 -0.56736842e+00 -0.72863742e+02 0.13957000e+00
- 2 111 246 247 0.48694566e+00 0.51385076e+00 -0.61974142e+02 0.13498000e+00
- 2 323 248 249 -0.24483677e+00 -0.42716412e+00 -0.57314484e+03 0.99624799e+00
- 2 -311 250 250 0.73362104e+00 0.30755623e+00 -0.14679910e+03 0.49767000e+00
- 2 2214 251 252 -0.23653531e+00 -0.43677527e+00 -0.39383328e+03 0.11770011e+01
- 2 331 253 254 -0.10102079e+00 -0.13678180e+01 -0.37251820e+04 0.95778488e+00
- 2 92 112 170 0.18051212e+02 -0.78065024e+02 0.24526688e+04 0.15887070e+04
- 2 111 255 256 0.22609201e+01 -0.32187027e+01 -0.43520521e+02 0.13498000e+00
- 1 -211 0 0 0.57945048e+01 -0.69356728e+01 -0.90097324e+02 0.13957000e+00
- 2 111 257 258 0.13949397e+01 -0.19221142e+01 -0.19128458e+02 0.13498000e+00
- 1 211 0 0 0.27076820e+01 -0.28904229e+01 -0.46725188e+02 0.13957000e+00
- 1 -211 0 0 0.39958635e+00 -0.10289421e+01 -0.67554533e+01 0.13957000e+00
- 1 211 0 0 0.37215336e+00 -0.27708885e+00 -0.38247767e+01 0.13957000e+00
- 2 -2224 259 260 0.52252544e-01 -0.14359803e+00 -0.93990218e+01 0.12600713e+01
- 2 111 261 262 0.26377775e-01 -0.25162508e+00 -0.21550861e+01 0.13498000e+00
- 2 2224 263 264 0.68149061e+00 -0.12317241e+01 -0.44459637e+01 0.12225081e+01
- 2 111 265 266 -0.61550273e-01 0.17509505e-01 0.89797626e-01 0.13498000e+00
- 1 -211 0 0 -0.38279161e+00 -0.66066072e+00 -0.55402255e+00 0.13957000e+00
- 2 113 267 268 0.57917126e+00 0.11147345e+00 0.54445698e+00 0.69123174e+00
- 2 111 269 270 -0.10731833e+01 -0.53635226e+00 0.25635371e+01 0.13498000e+00
- 2 213 271 272 0.48916444e+00 -0.26185967e+00 0.40681618e+01 0.93799156e+00
- 2 113 273 274 -0.93342743e+00 -0.28041571e-01 0.57508929e+01 0.53019678e+00
- 2 221 275 277 -0.16234149e+01 0.12187631e+00 0.19850558e+02 0.54745000e+00
- 2 223 278 279 -0.14202904e+01 -0.11141716e+00 0.21584180e+02 0.83450412e+00
- 1 -211 0 0 -0.96415659e-01 -0.59353964e+00 0.96551615e+01 0.13957000e+00
- 2 -313 280 281 -0.30042986e+01 0.83000636e-01 0.40464835e+02 0.85839456e+00
- 2 323 282 283 -0.20169329e+00 -0.98346931e+00 0.49132022e+02 0.94933939e+00
- 2 221 284 286 -0.14156189e+00 -0.29476065e-01 0.12129057e+02 0.54745000e+00
- 1 -211 0 0 -0.31897952e+00 -0.97039219e+00 0.32777686e+02 0.13957000e+00
- 2 223 287 288 -0.40841644e+00 -0.14915121e+01 0.18100533e+03 0.78832693e+00
- 1 211 0 0 0.16056777e+00 -0.49646634e+00 0.48304729e+02 0.13957000e+00
- 1 -321 0 0 -0.11082718e+00 -0.43298080e+00 0.64972648e+02 0.49360000e+00
- 2 323 289 290 0.66574275e+00 -0.30048772e+00 0.31036546e+03 0.86660780e+00
- 2 -213 291 292 0.88005998e+00 -0.62270684e+00 0.31956269e+03 0.74498390e+00
- 2 113 293 294 0.24947436e+01 0.50230987e+00 0.55092899e+03 0.74252234e+00
- 1 211 0 0 0.13625299e+00 -0.66408923e-01 0.35560765e+02 0.13957000e+00
- 2 -2224 295 296 0.58938385e+00 -0.20731239e+00 0.14170627e+03 0.11583423e+01
- 1 211 0 0 0.93518504e-01 0.99418819e-01 0.60103391e+02 0.13957000e+00
- 1 2112 0 0 0.45206547e+00 0.10313712e+00 0.87440142e+02 0.93957000e+00
- 2 223 297 299 0.96321267e+00 0.15833214e+00 0.15064456e+03 0.74329441e+00
- 1 211 0 0 0.41090018e+00 -0.12156258e-01 0.43481309e+02 0.13957000e+00
- 1 -2112 0 0 0.28103864e-01 0.18933722e+00 0.14074175e+02 0.93957000e+00
- 2 113 300 301 0.13319660e+00 0.45360960e+00 0.12887659e+02 0.79402119e+00
- 1 2112 0 0 -0.98040995e+00 0.12281127e+00 0.22215843e+02 0.93957000e+00
- 1 -211 0 0 -0.97733358e-01 -0.97230203e+00 0.86698277e+00 0.13957000e+00
- 2 221 302 303 0.55360654e+00 -0.10195956e+01 0.56119671e+01 0.54745000e+00
- 2 213 304 305 0.34543406e+00 -0.35953270e+01 0.70459551e+01 0.59380451e+00
- 2 -213 306 307 0.48013096e+01 -0.20650248e+02 0.45094052e+02 0.80406160e+00
- 2 113 308 309 0.14636643e+01 -0.66939614e+01 0.16318016e+02 0.81466451e+00
- 2 111 310 311 0.24857375e+01 -0.10788013e+02 0.23563917e+02 0.13498000e+00
- 2 213 312 313 0.45270315e-01 -0.56623696e+01 0.11439049e+02 0.73295622e+00
- 1 -211 0 0 0.60185943e+00 -0.15766251e+01 0.49159039e+01 0.13957000e+00
- 2 113 314 315 0.38178258e+00 -0.18723204e+01 0.45390025e+01 0.66805392e+00
- 2 213 316 317 -0.23235205e+00 -0.98195248e+00 0.33664533e+01 0.74730667e+00
- 1 -211 0 0 0.13346327e+00 -0.85235453e-01 0.71792391e+00 0.13957000e+00
- 1 -2112 0 0 -0.57462246e+00 0.24761424e+00 0.55110814e+01 0.93957000e+00
- 1 2112 0 0 -0.13572778e+01 -0.84155364e+00 0.46304800e+01 0.93957000e+00
- 2 113 318 319 -0.23266375e+00 -0.37738127e+00 0.57894319e+01 0.75792948e+00
- 1 211 0 0 -0.65708654e+00 0.30202283e+00 0.13693502e+01 0.13957000e+00
- 1 -321 0 0 0.36905052e+00 0.45067197e+00 0.11821019e+01 0.49360000e+00
- 2 313 320 321 -0.58907673e+00 -0.26688661e+00 0.18311402e+01 0.90698962e+00
- 2 113 322 323 -0.31465661e+00 -0.33546215e+00 0.21129346e+01 0.79989201e+00
- 2 213 324 325 0.17844160e+00 0.25107026e+00 0.14192288e+02 0.11147143e+01
- 1 -211 0 0 -0.69043244e+00 -0.45836771e-01 0.29482471e+02 0.13957000e+00
- 2 113 326 327 0.75577531e-01 -0.38852123e+00 0.34001418e+02 0.73032041e+00
- 1 211 0 0 0.35318571e+00 0.57950240e+00 0.21382837e+03 0.13957000e+00
- 1 22 0 0 0.64396589e+00 0.36256357e+00 -0.10418849e+01 0.00000000e+00
- 1 22 0 0 0.30438337e+01 0.19074943e+01 -0.54998384e+01 0.00000000e+00
- 1 -211 0 0 0.30828806e+01 0.17371287e+01 -0.47532935e+01 0.13957000e+00
- 1 211 0 0 0.37214187e+01 0.20359592e+01 -0.60312993e+01 0.13957000e+00
- 2 111 328 329 0.23158252e+01 0.15841989e+01 -0.43706270e+01 0.13498000e+00
- 1 -211 0 0 0.32504620e+01 0.22427502e+01 -0.60360651e+01 0.13957000e+00
- 1 211 0 0 0.40975117e+00 0.23452967e+00 -0.76966011e+00 0.13957000e+00
- 2 111 330 331 0.46495828e+01 0.27715972e+01 -0.80537874e+01 0.13498000e+00
- 1 -211 0 0 0.10608288e+02 0.72602871e+01 -0.17766685e+02 0.13957000e+00
- 2 111 332 333 0.13552868e+02 0.82507187e+01 -0.22579490e+02 0.13498000e+00
- 1 321 0 0 0.27962906e+01 0.19319951e+01 -0.46077250e+01 0.49360000e+00
- 2 111 334 335 0.27167277e+01 0.19797439e+01 -0.51701549e+01 0.13498000e+00
- 2 310 336 337 0.16640069e+01 0.80457131e+00 -0.33574337e+01 0.49767000e+00
- 2 -311 338 338 0.73782203e+00 0.67511505e+00 -0.11387168e+01 0.49767000e+00
- 1 -211 0 0 0.32603802e+00 -0.44944205e-01 -0.66078686e+00 0.13957000e+00
- 1 211 0 0 0.69023394e+00 0.44394112e+00 -0.93940356e+00 0.13957000e+00
- 2 111 339 340 -0.73846395e-01 0.45754816e+00 -0.69109569e+00 0.13498000e+00
- 1 -211 0 0 0.62055782e+00 0.29355849e+00 -0.10961701e+01 0.13957000e+00
- 2 111 341 342 0.12555081e+01 -0.27873759e+00 -0.24163433e+01 0.13498000e+00
- 1 211 0 0 0.40581865e+00 -0.66822717e+00 -0.59416533e+00 0.13957000e+00
- 2 111 343 344 0.73054854e-02 0.11296987e-01 -0.69482692e+00 0.13498000e+00
- 1 22 0 0 0.12921534e+00 0.49961130e-01 -0.43963591e+00 0.00000000e+00
- 1 22 0 0 0.36667176e-01 0.96484013e-02 -0.80432284e-02 0.00000000e+00
- 1 211 0 0 0.12891929e+00 -0.22439690e+00 -0.14648336e+00 0.13957000e+00
- 2 111 345 346 0.19293908e+00 -0.57413164e+00 -0.23356969e+01 0.13498000e+00
- 1 2112 0 0 0.75893139e+00 -0.19332912e+00 -0.31504497e+01 0.93957000e+00
- 2 111 347 348 0.39824784e-01 0.75961967e-01 -0.22980090e+00 0.13498000e+00
- 1 22 0 0 0.25652403e-01 -0.10025756e+00 -0.22007868e+01 0.00000000e+00
- 1 22 0 0 0.17631335e+00 -0.54526600e-01 -0.39545034e+01 0.00000000e+00
- 1 211 0 0 -0.13125917e+00 0.19488037e-01 -0.12992333e+01 0.13957000e+00
- 2 111 349 350 -0.12943770e+00 -0.64793335e+00 -0.16015843e+02 0.13498000e+00
- 1 2112 0 0 -0.44615129e+00 -0.14104683e+01 -0.17199857e+03 0.93957000e+00
- 1 -211 0 0 -0.17645389e+00 -0.10077527e+00 -0.39801700e+02 0.13957000e+00
- 1 -2112 0 0 -0.65513653e-01 -0.17454774e+00 -0.53946125e+02 0.93957000e+00
- 1 211 0 0 0.13406353e-01 -0.29547798e-01 -0.29555952e+02 0.13957000e+00
- 1 321 0 0 0.12699983e+01 0.11166305e+01 -0.42811199e+03 0.49360000e+00
- 1 -211 0 0 0.90190914e-01 0.13070826e+00 -0.23801545e+02 0.13957000e+00
- 1 211 0 0 0.18936415e+00 0.29986836e+00 -0.34256639e+02 0.13957000e+00
- 2 111 351 352 -0.95642801e-01 0.40288923e+00 -0.19426755e+03 0.13498000e+00
- 1 -211 0 0 -0.40548037e-02 0.30857631e+00 -0.24780934e+02 0.13957000e+00
- 1 211 0 0 -0.97795776e-02 0.33438385e+00 -0.60309025e+02 0.13957000e+00
- 2 111 353 355 0.54269286e-01 -0.11722226e+00 -0.20875418e+02 0.13498000e+00
- 2 311 356 356 0.34288534e+00 0.16477411e-01 -0.55193221e+01 0.49767000e+00
- 1 211 0 0 0.29951420e+00 -0.14772481e+00 -0.20778618e+01 0.13957000e+00
- 1 22 0 0 0.47667604e+00 -0.27134115e-01 -0.72296940e+00 0.00000000e+00
- 1 22 0 0 0.39673308e+00 -0.28704812e-01 -0.85708936e+00 0.00000000e+00
- 2 -311 357 357 0.44514835e-01 0.17036299e+01 -0.96807221e+00 0.49767000e+00
- 1 -211 0 0 0.39223110e-01 0.81493028e-01 0.40978849e-01 0.13957000e+00
- 1 22 0 0 0.17944096e+00 0.15621664e+00 0.21049627e+00 0.00000000e+00
- 2 113 358 359 0.63115025e+00 0.66077377e+00 0.22229556e-01 0.77393364e+00
- 1 -2112 0 0 -0.40821817e+00 0.43757301e+00 0.29227798e+01 0.93957000e+00
- 1 211 0 0 0.90932744e-01 0.32100192e-01 0.18775125e+00 0.13957000e+00
- 1 -211 0 0 -0.30935052e+00 -0.18790834e+00 0.10313052e+02 0.13957000e+00
- 1 211 0 0 0.36782067e+00 0.16705729e-01 0.51531341e+01 0.13957000e+00
- 2 311 360 360 -0.50982069e+00 0.21017645e-01 0.29533077e+02 0.49767000e+00
- 2 111 361 362 0.20383838e+00 -0.18307617e-01 0.82997159e+01 0.13498000e+00
- 1 130 0 0 -0.57686343e-01 0.16752507e+00 0.26944995e+02 0.49767000e+00
- 2 310 363 364 0.41174192e-01 0.84778729e-02 0.31086249e+02 0.49767000e+00
- 2 -311 365 365 0.59933887e-02 -0.18938791e+00 0.17218779e+02 0.49767000e+00
- 1 -211 0 0 0.69032587e-02 0.30884568e+00 0.66399333e+01 0.13957000e+00
- 1 -211 0 0 -0.29942418e+00 -0.38767818e+00 0.64414329e+02 0.13957000e+00
- 2 111 366 367 0.48721993e+00 -0.35397227e+00 0.54340567e+02 0.13498000e+00
- 2 111 368 369 -0.38252677e-01 0.74811119e-02 0.10206737e+03 0.13498000e+00
- 2 111 370 371 -0.25132534e+00 0.14935557e+00 0.27817285e+03 0.13498000e+00
- 2 221 372 374 0.38584789e-01 0.24688653e+00 0.41746999e+03 0.54745000e+00
- 1 2212 0 0 0.29680280e+00 -0.81277162e-02 0.21672440e+04 0.93827000e+00
- 1 -211 0 0 0.38660870e-01 -0.89700376e-01 0.58643767e+03 0.13957000e+00
- 1 211 0 0 0.29798647e+01 -0.14420552e+00 -0.76285048e+01 0.13957000e+00
- 1 -211 0 0 0.77969532e+00 -0.17209558e+00 -0.30343387e+01 0.13957000e+00
- 1 321 0 0 0.85773722e+01 -0.13243303e+01 -0.22395253e+02 0.49360000e+00
- 2 111 375 376 0.33872800e+01 -0.18684923e+00 -0.95624359e+01 0.13498000e+00
- 1 -321 0 0 0.29607103e+00 -0.41399018e-01 -0.81672618e+01 0.49360000e+00
- 1 211 0 0 -0.21079491e+00 -0.18113453e+00 -0.80355750e+01 0.13957000e+00
- 1 22 0 0 0.75438187e+00 0.24961904e+00 -0.13363692e+02 0.00000000e+00
- 1 22 0 0 0.15642349e+00 0.11083245e+00 -0.38569881e+01 0.00000000e+00
- 1 22 0 0 0.45890083e+00 0.42154371e+00 -0.54754025e+02 0.00000000e+00
- 1 22 0 0 0.28044831e-01 0.92307043e-01 -0.72201169e+01 0.00000000e+00
- 2 311 377 377 -0.49341795e-01 0.74515521e-01 -0.35852989e+03 0.49767000e+00
- 1 211 0 0 -0.19549498e+00 -0.50167964e+00 -0.21461495e+03 0.13957000e+00
- 1 130 0 0 0.73362104e+00 0.30755623e+00 -0.14679910e+03 0.49767000e+00
- 1 2212 0 0 -0.98993183e-01 -0.29382563e+00 -0.35174605e+03 0.93827000e+00
- 2 111 378 379 -0.13754213e+00 -0.14294964e+00 -0.42087229e+02 0.13498000e+00
- 1 22 0 0 0.13148929e+00 -0.64409173e+00 -0.15279045e+04 0.00000000e+00
- 2 113 380 381 -0.23251008e+00 -0.72372627e+00 -0.21972775e+04 0.67183603e+00
- 1 22 0 0 0.20210323e+01 -0.28825650e+01 -0.38472775e+02 0.00000000e+00
- 1 22 0 0 0.23988782e+00 -0.33613771e+00 -0.50477460e+01 0.00000000e+00
- 1 22 0 0 0.45562232e+00 -0.58269094e+00 -0.55065584e+01 0.00000000e+00
- 1 22 0 0 0.93931735e+00 -0.13394232e+01 -0.13621900e+02 0.00000000e+00
- 1 -2212 0 0 0.24477706e+00 -0.33812058e-01 -0.63006360e+01 0.93827000e+00
- 1 -211 0 0 -0.19252452e+00 -0.10978597e+00 -0.30983858e+01 0.13957000e+00
- 1 22 0 0 0.76686093e-01 -0.19597201e+00 -0.14931287e+01 0.00000000e+00
- 1 22 0 0 -0.50308318e-01 -0.55653063e-01 -0.66195741e+00 0.00000000e+00
- 1 2212 0 0 0.74565274e+00 -0.11374896e+01 -0.36758525e+01 0.93827000e+00
- 1 211 0 0 -0.64162135e-01 -0.94234487e-01 -0.77011124e+00 0.13957000e+00
- 1 22 0 0 -0.41549033e-01 0.67310216e-01 0.12335915e-01 0.00000000e+00
- 1 22 0 0 -0.20001240e-01 -0.49800710e-01 0.77461710e-01 0.00000000e+00
- 1 211 0 0 0.10615265e-01 -0.18371479e+00 0.45549423e-01 0.13957000e+00
- 1 -211 0 0 0.56855599e+00 0.29518824e+00 0.49890756e+00 0.13957000e+00
- 1 22 0 0 -0.58193215e+00 -0.21708513e+00 0.12860582e+01 0.00000000e+00
- 1 22 0 0 -0.49125111e+00 -0.31926713e+00 0.12774788e+01 0.00000000e+00
- 1 211 0 0 0.48956702e+00 -0.25577979e+00 0.10858438e+01 0.13957000e+00
- 2 111 382 383 -0.40258865e-03 -0.60798837e-02 0.29823180e+01 0.13498000e+00
- 1 211 0 0 -0.71557248e+00 0.71470102e-01 0.31203194e+01 0.13957000e+00
- 1 -211 0 0 -0.21785495e+00 -0.99511673e-01 0.26305735e+01 0.13957000e+00
- 1 211 0 0 -0.27298112e+00 0.50000216e-01 0.29070158e+01 0.13957000e+00
- 1 -211 0 0 -0.30251094e+00 0.33249077e-01 0.48107366e+01 0.13957000e+00
- 2 111 384 385 -0.10479229e+01 0.38627018e-01 0.12132805e+02 0.13498000e+00
- 1 22 0 0 -0.14054937e+01 0.48858467e-01 0.19967905e+02 0.00000000e+00
- 2 111 386 387 -0.14796668e-01 -0.16027563e+00 0.16162744e+01 0.13498000e+00
- 1 -321 0 0 -0.23578032e+01 0.69328381e-01 0.28235226e+02 0.49360000e+00
- 1 211 0 0 -0.64649534e+00 0.13672255e-01 0.12229609e+02 0.13957000e+00
- 1 321 0 0 0.40295745e-01 -0.25553793e+00 0.26932896e+02 0.49360000e+00
- 2 111 388 389 -0.24198903e+00 -0.72793139e+00 0.22199126e+02 0.13498000e+00
- 2 111 390 391 -0.79034526e-01 0.38074863e-01 0.55892411e+01 0.13498000e+00
- 2 111 392 393 0.18796199e-01 -0.10004579e+00 0.17396419e+01 0.13498000e+00
- 2 111 394 395 -0.81323559e-01 0.32494860e-01 0.48001740e+01 0.13498000e+00
- 2 221 396 397 -0.52184542e+00 -0.13898205e+01 0.16315338e+03 0.54745000e+00
- 1 22 0 0 0.11342898e+00 -0.10169159e+00 0.17851943e+02 0.00000000e+00
- 2 311 398 398 0.51464062e+00 0.54345911e-01 0.18278007e+03 0.49767000e+00
- 1 211 0 0 0.15110214e+00 -0.35483364e+00 0.12758539e+03 0.13957000e+00
- 1 -211 0 0 0.81556316e+00 -0.19919035e+00 0.18943814e+03 0.13957000e+00
- 2 111 399 400 0.64496825e-01 -0.42351649e+00 0.13012454e+03 0.13498000e+00
- 1 -211 0 0 0.23256974e+00 0.18225080e+00 0.44197439e+02 0.13957000e+00
- 1 211 0 0 0.22621739e+01 0.32005907e+00 0.50673155e+03 0.13957000e+00
- 1 -2212 0 0 0.39942907e+00 -0.59059683e-01 0.11950190e+03 0.93827000e+00
- 1 -211 0 0 0.18995478e+00 -0.14825271e+00 0.22204372e+02 0.13957000e+00
- 1 -211 0 0 0.51639172e+00 -0.73304698e-01 0.55374421e+02 0.13957000e+00
- 1 211 0 0 0.67764503e-01 -0.68074994e-01 0.23870592e+02 0.13957000e+00
- 2 111 401 402 0.37905644e+00 0.29971183e+00 0.71399548e+02 0.13498000e+00
- 1 211 0 0 -0.16005067e-01 -0.17655900e+00 0.50903915e+01 0.13957000e+00
- 1 -211 0 0 0.14920166e+00 0.63016860e+00 0.77972674e+01 0.13957000e+00
- 1 22 0 0 0.37379594e+00 -0.19475049e+00 0.14506315e+01 0.00000000e+00
- 1 22 0 0 0.17981060e+00 -0.82484515e+00 0.41613356e+01 0.00000000e+00
- 1 211 0 0 0.37921424e+00 -0.13794127e+01 0.26208074e+01 0.13957000e+00
- 2 111 403 404 -0.33780173e-01 -0.22159144e+01 0.44251478e+01 0.13498000e+00
- 1 -211 0 0 0.30477180e+01 -0.12685153e+02 0.28571608e+02 0.13957000e+00
- 2 111 405 406 0.17535916e+01 -0.79650944e+01 0.16522445e+02 0.13498000e+00
- 1 -211 0 0 0.12379983e+01 -0.42533757e+01 0.11019402e+02 0.13957000e+00
- 1 211 0 0 0.22566597e+00 -0.24405857e+01 0.52986141e+01 0.13957000e+00
- 1 22 0 0 0.60664671e-01 -0.36883017e+00 0.80897480e+00 0.00000000e+00
- 1 22 0 0 0.24250728e+01 -0.10419183e+02 0.22754942e+02 0.00000000e+00
- 1 211 0 0 0.24303509e+00 -0.36993119e+01 0.69105512e+01 0.13957000e+00
- 2 111 407 408 -0.19776478e+00 -0.19630577e+01 0.45284975e+01 0.13498000e+00
- 1 211 0 0 0.38721973e+00 -0.11215260e+01 0.21224312e+01 0.13957000e+00
- 1 -211 0 0 -0.54371541e-02 -0.75079436e+00 0.24165712e+01 0.13957000e+00
- 1 211 0 0 -0.54695663e-01 0.76587809e-01 0.57962751e+00 0.13957000e+00
- 2 111 409 410 -0.17765639e+00 -0.10585403e+01 0.27868258e+01 0.13498000e+00
- 1 211 0 0 -0.17968416e+00 -0.48585556e+00 0.23166355e+01 0.13957000e+00
- 1 -211 0 0 -0.52979594e-01 0.10847430e+00 0.34727964e+01 0.13957000e+00
- 1 321 0 0 -0.65699254e+00 -0.30972481e+00 0.17607810e+01 0.49360000e+00
- 1 -211 0 0 0.67915814e-01 0.42838194e-01 0.70359121e-01 0.13957000e+00
- 1 211 0 0 -0.97155328e-01 0.10719864e+00 0.14684709e+01 0.13957000e+00
- 1 -211 0 0 -0.21750129e+00 -0.44266079e+00 0.64446371e+00 0.13957000e+00
- 1 211 0 0 -0.15901176e+00 0.18027415e+00 0.12655879e+02 0.13957000e+00
- 2 111 411 412 0.33745336e+00 0.70796111e-01 0.15364090e+01 0.13498000e+00
- 1 -211 0 0 -0.18984909e+00 -0.37594824e+00 0.27087530e+02 0.13957000e+00
- 1 211 0 0 0.26542662e+00 -0.12572989e-01 0.69138882e+01 0.13957000e+00
- 1 22 0 0 0.23160768e+01 0.15809105e+01 -0.43696964e+01 0.00000000e+00
- 1 22 0 0 -0.25165369e-03 0.32883540e-02 -0.93059736e-03 0.00000000e+00
- 1 22 0 0 0.16281814e+01 0.93130066e+00 -0.26931371e+01 0.00000000e+00
- 1 22 0 0 0.30214014e+01 0.18402965e+01 -0.53606504e+01 0.00000000e+00
- 1 22 0 0 0.67981620e+01 0.41631540e+01 -0.11232558e+02 0.00000000e+00
- 1 22 0 0 0.67547058e+01 0.40875648e+01 -0.11346932e+02 0.00000000e+00
- 1 22 0 0 0.34404281e+00 0.30800441e+00 -0.71540132e+00 0.00000000e+00
- 1 22 0 0 0.23726849e+01 0.16717395e+01 -0.44547536e+01 0.00000000e+00
- 2 111 413 414 0.67605520e+00 0.11859916e+00 -0.11068140e+01 0.13498000e+00
- 2 111 415 416 0.98795170e+00 0.68597215e+00 -0.22506197e+01 0.13498000e+00
- 1 130 0 0 0.73782203e+00 0.67511505e+00 -0.11387168e+01 0.49767000e+00
- 1 22 0 0 -0.30591464e-01 0.40370177e-01 -0.15038038e+00 0.00000000e+00
- 1 22 0 0 -0.43254931e-01 0.41717798e+00 -0.54071530e+00 0.00000000e+00
- 1 22 0 0 0.10840897e-01 0.10249528e-01 -0.20951646e-01 0.00000000e+00
- 1 22 0 0 0.12446672e+01 -0.28898712e+00 -0.23953916e+01 0.00000000e+00
- 1 22 0 0 0.39656021e-02 -0.62031434e-01 -0.33120783e+00 0.00000000e+00
- 1 22 0 0 0.33398833e-02 0.73328421e-01 -0.36361910e+00 0.00000000e+00
- 1 22 0 0 0.93531777e-01 -0.20781144e+00 -0.64907396e+00 0.00000000e+00
- 1 22 0 0 0.99407299e-01 -0.36632020e+00 -0.16866230e+01 0.00000000e+00
- 1 22 0 0 0.10412254e-01 -0.98794885e-02 -0.17153655e+00 0.00000000e+00
- 1 22 0 0 0.29412530e-01 0.85841456e-01 -0.58264347e-01 0.00000000e+00
- 1 22 0 0 -0.13591029e+00 -0.60164553e+00 -0.15433004e+02 0.00000000e+00
- 1 22 0 0 0.64725945e-02 -0.46287828e-01 -0.58283853e+00 0.00000000e+00
- 1 22 0 0 -0.39355488e-01 0.28058235e+00 -0.10329228e+03 0.00000000e+00
- 1 22 0 0 -0.56287313e-01 0.12230689e+00 -0.90975279e+02 0.00000000e+00
- 1 22 0 0 0.93046860e-02 -0.13004880e+00 -0.12101493e+02 0.00000000e+00
- 1 11 0 0 0.32302980e-01 0.13881945e-01 -0.69844729e+01 0.51000000e-03
- 1 -11 0 0 0.12661620e-01 -0.10554075e-02 -0.17894516e+01 0.51000000e-03
- 1 130 0 0 0.34288534e+00 0.16477411e-01 -0.55193221e+01 0.49767000e+00
- 1 130 0 0 0.44514835e-01 0.17036299e+01 -0.96807221e+00 0.49767000e+00
- 1 -211 0 0 0.11156889e+00 -0.12528101e+00 0.10380544e+00 0.13957000e+00
- 1 211 0 0 0.51958136e+00 0.78605478e+00 -0.81575880e-01 0.13957000e+00
- 2 310 417 418 -0.50982069e+00 0.21017645e-01 0.29533077e+02 0.49767000e+00
- 1 22 0 0 0.46832976e-01 0.54696340e-01 0.24078892e+01 0.00000000e+00
- 1 22 0 0 0.15700540e+00 -0.73003957e-01 0.58918267e+01 0.00000000e+00
- 2 111 419 420 0.14636074e+00 -0.26397336e-01 0.26392164e+02 0.13498000e+00
- 2 111 421 422 -0.10518655e+00 0.34875209e-01 0.46940850e+01 0.13498000e+00
- 2 310 423 424 0.59933887e-02 -0.18938791e+00 0.17218779e+02 0.49767000e+00
- 1 22 0 0 0.39518513e+00 -0.24080049e+00 0.37065563e+02 0.00000000e+00
- 1 22 0 0 0.92034796e-01 -0.11317179e+00 0.17275004e+02 0.00000000e+00
- 1 22 0 0 0.45758876e-01 0.10673331e-02 0.56686195e+02 0.00000000e+00
- 1 22 0 0 -0.84011553e-01 0.64137788e-02 0.45381177e+02 0.00000000e+00
- 1 22 0 0 -0.11318223e+00 0.14334727e+00 0.14684099e+03 0.00000000e+00
- 1 22 0 0 -0.13814311e+00 0.60083055e-02 0.13133186e+03 0.00000000e+00
- 1 -211 0 0 -0.11628414e-01 0.43095309e-01 0.41643682e+02 0.13957000e+00
- 1 211 0 0 -0.14388468e-01 0.63921010e-01 0.13248631e+03 0.13957000e+00
- 2 111 425 426 0.64601672e-01 0.13987022e+00 0.24334000e+03 0.13498000e+00
- 1 22 0 0 0.15391605e+01 -0.92234460e-01 -0.41472585e+01 0.00000000e+00
- 1 22 0 0 0.18481195e+01 -0.94614772e-01 -0.54151774e+01 0.00000000e+00
- 2 310 427 428 -0.49341795e-01 0.74515521e-01 -0.35852989e+03 0.49767000e+00
- 1 22 0 0 -0.98742840e-01 -0.10591062e+00 -0.38598564e+02 0.00000000e+00
- 1 22 0 0 -0.38799286e-01 -0.37039015e-01 -0.34886646e+01 0.00000000e+00
- 1 211 0 0 -0.20907485e+00 -0.79166754e+00 -0.19966877e+04 0.13957000e+00
- 1 -211 0 0 -0.23435226e-01 0.67941276e-01 -0.20058981e+03 0.13957000e+00
- 1 22 0 0 -0.35054522e-01 0.22545057e-01 0.32280756e+00 0.00000000e+00
- 1 22 0 0 0.34651933e-01 -0.28624941e-01 0.26595104e+01 0.00000000e+00
- 1 22 0 0 -0.81602163e+00 -0.59360877e-02 0.98771019e+01 0.00000000e+00
- 1 22 0 0 -0.23190124e+00 0.44563106e-01 0.22557035e+01 0.00000000e+00
- 1 22 0 0 0.51490501e-02 0.19306555e-01 0.37274676e+00 0.00000000e+00
- 1 22 0 0 -0.19945718e-01 -0.17958218e+00 0.12435276e+01 0.00000000e+00
- 1 22 0 0 -0.38206499e-01 -0.22646898e+00 0.81527160e+01 0.00000000e+00
- 1 22 0 0 -0.20378253e+00 -0.50146241e+00 0.14046410e+02 0.00000000e+00
- 1 22 0 0 0.11094154e-01 -0.38273404e-01 0.99068895e+00 0.00000000e+00
- 1 22 0 0 -0.90128680e-01 0.76348267e-01 0.45985522e+01 0.00000000e+00
- 1 22 0 0 0.16843980e-01 -0.11766827e+00 0.17028761e+01 0.00000000e+00
- 1 22 0 0 0.19522193e-02 0.17622483e-01 0.36765774e-01 0.00000000e+00
- 1 22 0 0 -0.15004009e-01 -0.30813709e-01 0.31255541e+01 0.00000000e+00
- 1 22 0 0 -0.66319550e-01 0.63308569e-01 0.16746199e+01 0.00000000e+00
- 1 22 0 0 -0.22797890e+00 -0.87348345e-01 0.29025239e+02 0.00000000e+00
- 1 22 0 0 -0.29386651e+00 -0.13024722e+01 0.13412815e+03 0.00000000e+00
- 1 130 0 0 0.51464062e+00 0.54345911e-01 0.18278007e+03 0.49767000e+00
- 1 22 0 0 0.18133392e-01 -0.20996312e-01 0.29681862e+01 0.00000000e+00
- 1 22 0 0 0.46363433e-01 -0.40252018e+00 0.12715636e+03 0.00000000e+00
- 1 22 0 0 0.98637824e-01 0.34234170e-01 0.22296551e+02 0.00000000e+00
- 1 22 0 0 0.28041862e+00 0.26547766e+00 0.49102997e+02 0.00000000e+00
- 1 22 0 0 -0.44342329e-01 -0.15026668e+01 0.28662686e+01 0.00000000e+00
- 1 22 0 0 0.10562155e-01 -0.71324752e+00 0.15588792e+01 0.00000000e+00
- 1 22 0 0 0.13546000e+01 -0.59002072e+01 0.12209944e+02 0.00000000e+00
- 1 22 0 0 0.39899153e+00 -0.20648872e+01 0.43125007e+01 0.00000000e+00
- 1 22 0 0 -0.18619890e+00 -0.19522468e+01 0.44791623e+01 0.00000000e+00
- 1 22 0 0 -0.11565883e-01 -0.10810842e-01 0.49335211e-01 0.00000000e+00
- 1 22 0 0 -0.48033539e-01 -0.24329537e+00 0.49882253e+00 0.00000000e+00
- 1 22 0 0 -0.12962285e+00 -0.81524492e+00 0.22880032e+01 0.00000000e+00
- 1 22 0 0 0.38863763e-01 -0.32974108e-01 0.29529132e+00 0.00000000e+00
- 1 22 0 0 0.29858960e+00 0.10377022e+00 0.12411177e+01 0.00000000e+00
- 1 22 0 0 0.76384488e-01 0.37861975e-01 -0.76784136e-01 0.00000000e+00
- 1 22 0 0 0.59967072e+00 0.80737189e-01 -0.10300299e+01 0.00000000e+00
- 1 22 0 0 0.25209905e+00 0.12674262e+00 -0.44341794e+00 0.00000000e+00
- 1 22 0 0 0.73585265e+00 0.55922953e+00 -0.18072017e+01 0.00000000e+00
- 2 111 429 430 -0.20236986e+00 0.30322834e-01 0.47481990e+01 0.13498000e+00
- 2 111 431 432 -0.30745083e+00 -0.93051889e-02 0.24784878e+02 0.13498000e+00
- 1 22 0 0 0.11351853e+00 0.33543728e-01 0.20959595e+02 0.00000000e+00
- 1 22 0 0 0.32842212e-01 -0.59941064e-01 0.54325687e+01 0.00000000e+00
- 1 22 0 0 -0.77706291e-01 0.64384100e-01 0.43012408e+01 0.00000000e+00
- 1 22 0 0 -0.27480260e-01 -0.29508891e-01 0.39284427e+00 0.00000000e+00
- 1 -211 0 0 0.19062395e+00 -0.17626134e+00 0.83419005e+01 0.13957000e+00
- 1 211 0 0 -0.18463056e+00 -0.13126571e-01 0.88768786e+01 0.13957000e+00
- 1 22 0 0 0.26478462e-01 -0.22397808e-01 0.61628690e+02 0.00000000e+00
- 1 22 0 0 0.38123210e-01 0.16226802e+00 0.18171131e+03 0.00000000e+00
- 2 111 433 434 -0.83442919e-01 0.66169014e-01 -0.32729503e+03 0.13498000e+00
- 2 111 435 436 0.34101124e-01 0.83465074e-02 -0.31234860e+02 0.13498000e+00
- 1 22 0 0 -0.82221571e-01 0.57322068e-01 0.31468275e+01 0.00000000e+00
- 1 22 0 0 -0.12014828e+00 -0.26999234e-01 0.16013716e+01 0.00000000e+00
- 1 22 0 0 -0.14104798e+00 -0.69290067e-01 0.10363967e+02 0.00000000e+00
- 1 22 0 0 -0.16640285e+00 0.59984879e-01 0.14420911e+02 0.00000000e+00
- 1 22 0 0 -0.77614827e-01 0.10154006e+00 -0.28934866e+03 0.00000000e+00
- 1 22 0 0 -0.58280925e-02 -0.35371044e-01 -0.37946367e+02 0.00000000e+00
- 1 22 0 0 -0.25253307e-01 0.24659503e-01 -0.24612506e+02 0.00000000e+00
- 1 22 0 0 0.59354432e-01 -0.16312996e-01 -0.66223541e+01 0.00000000e+00
- 355
- 2 25 2 3 0.71090613e+00 -0.14293964e+01 0.44302574e+03 0.12500344e+03
- 2 23 6 8 0.63976041e+01 0.24207732e+02 0.10482953e+03 0.16589082e+02
- 2 23 4 5 -0.56866980e+01 -0.25637129e+02 0.33819621e+03 0.91271053e+02
- 1 13 0 0 -0.79421360e+01 -0.51402072e+02 0.30392416e+03 0.10566000e+00
- 1 -13 0 0 0.22554381e+01 0.25764943e+02 0.34272054e+02 0.10566000e+00
- 1 13 0 0 0.29444178e+01 0.25444133e+02 0.98029933e+02 0.10566000e+00
- 1 -13 0 0 0.34344191e+01 -0.12284323e+01 0.67603990e+01 0.10566000e+00
- 1 22 0 0 0.18767239e-01 -0.79683552e-02 0.39197761e-01 0.00000000e+00
- 2 2 33 33 0.19767250e+01 -0.56941326e+00 -0.11065604e+04 0.33000000e+00
- 2 21 33 33 0.30406947e+00 -0.82449045e+00 -0.72080473e+03 0.00000000e+00
- 2 21 33 33 0.11362274e+01 0.44716976e+00 -0.35748990e+03 0.00000000e+00
- 2 21 33 33 -0.89122024e-01 -0.95257128e+00 -0.71636948e+00 0.00000000e+00
- 2 21 33 33 0.32589297e-02 -0.96055814e+00 -0.25562102e+01 0.00000000e+00
- 2 21 33 33 -0.98624935e+01 0.18228031e+01 -0.20243717e+03 0.00000000e+00
- 2 21 33 33 -0.41742133e+00 0.31796656e-01 -0.23883363e+02 0.00000000e+00
- 2 21 33 33 0.26028876e+00 -0.89202655e-01 -0.36568694e+01 0.00000000e+00
- 2 21 33 33 -0.10994446e+01 -0.61973544e+00 -0.25435771e+00 0.00000000e+00
- 2 21 33 33 0.48653686e+00 0.20520598e+00 -0.81748492e+00 0.00000000e+00
- 2 21 33 33 0.11748162e+00 -0.85856608e+00 -0.48943696e+01 0.00000000e+00
- 2 21 33 33 -0.12917606e+01 -0.20555446e+01 -0.71602959e+02 0.00000000e+00
- 2 21 33 33 -0.11748162e+00 0.85856608e+00 -0.64447712e+01 0.00000000e+00
- 2 21 33 33 -0.15500350e+00 0.62665923e+00 0.31462525e+00 0.00000000e+00
- 2 21 33 33 0.12917606e+01 0.20555446e+01 0.16632114e+01 0.00000000e+00
- 2 21 33 33 0.35284618e+01 0.28481134e+01 0.21591587e+02 0.00000000e+00
- 2 2203 33 33 -0.22496122e+00 0.34963013e+00 0.59655259e+04 0.77133000e+00
- 2 1 86 86 -0.20795181e+00 0.12324778e+00 0.54108737e+03 0.33000000e+00
- 2 21 86 86 0.15500350e+00 -0.62665923e+00 0.98289776e+00 0.00000000e+00
- 2 21 86 86 -0.35284618e+01 -0.28481134e+01 0.31376110e+01 0.00000000e+00
- 2 21 86 86 0.50336101e+01 -0.75526649e+00 0.19844604e+01 0.00000000e+00
- 2 21 86 86 0.11579016e+01 0.35254094e+00 0.11082317e+01 0.00000000e+00
- 2 21 86 86 0.17575449e+01 0.28681162e+01 0.48961531e+01 0.00000000e+00
- 2 2101 86 86 -0.92567468e+00 0.12355338e-03 -0.44831994e+04 0.57933000e+00
- 2 92 34 85 -0.41528781e+01 0.23154070e+01 0.34869764e+04 0.77470697e+04
- 2 331 116 118 0.12976105e+01 -0.11542085e+01 -0.10663704e+04 0.95822326e+00
- 2 221 119 121 0.10271652e+01 0.25449103e+00 -0.61877121e+03 0.54745000e+00
- 2 113 122 123 0.12466311e+00 0.48698796e+00 -0.22434361e+03 0.88435898e+00
- 2 223 124 126 0.57988233e+00 -0.91561240e+00 -0.70838049e+02 0.78425059e+00
- 2 213 127 128 -0.29840962e+00 0.27851423e+00 -0.95236993e+02 0.97988778e+00
- 2 111 129 130 0.56848638e+00 -0.39140799e+00 -0.21710292e+02 0.13498000e+00
- 2 113 131 132 0.15290857e+00 0.36917596e+00 -0.28541562e+02 0.82319404e+00
- 2 111 133 134 -0.49818233e+00 -0.49622607e-02 -0.26014642e+02 0.13498000e+00
- 1 -211 0 0 0.57736606e+00 -0.35081885e+00 -0.23560370e+02 0.13957000e+00
- 2 113 135 136 -0.65922078e-01 0.43287143e+00 -0.51745255e+01 0.54097082e+00
- 2 223 137 139 -0.26992441e+00 -0.14879924e+01 -0.66014668e+01 0.78690235e+00
- 1 211 0 0 -0.12069532e+00 0.10782769e+00 -0.68017797e+01 0.13957000e+00
- 2 113 140 141 0.96483440e-01 -0.77544161e+00 -0.32102003e+01 0.98958743e+00
- 1 -211 0 0 -0.12119929e+01 0.73291757e+00 -0.18220896e+02 0.13957000e+00
- 2 213 142 143 -0.12823200e+01 -0.10902341e-01 -0.19185031e+02 0.96809178e+00
- 2 -213 144 145 -0.87775062e+00 0.48088931e+00 -0.22351581e+02 0.82055828e+00
- 2 111 146 147 -0.69605267e+00 0.27502782e+00 -0.71589670e+01 0.13498000e+00
- 2 323 148 149 -0.73161780e+00 -0.53206362e+00 -0.37081050e+02 0.92159922e+00
- 2 -311 150 150 -0.12998710e+01 0.27167566e+00 -0.22862198e+02 0.49767000e+00
- 2 2114 151 152 -0.25563031e+01 0.77409016e+00 -0.57131587e+02 0.12475399e+01
- 2 -2114 153 154 -0.13093255e+01 -0.44926930e+00 -0.33236197e+02 0.12330626e+01
- 1 -211 0 0 -0.18430418e+00 0.78110360e+00 -0.18574678e+01 0.13957000e+00
- 1 211 0 0 -0.94322646e-01 -0.91541681e+00 -0.75256816e+00 0.13957000e+00
- 1 -211 0 0 -0.32517431e+00 0.29635885e-01 -0.30854951e+01 0.13957000e+00
- 1 211 0 0 -0.90057869e-01 -0.40517841e-01 0.58870343e-01 0.13957000e+00
- 2 -213 155 156 0.40446099e-01 -0.62184970e+00 -0.27989238e+01 0.69894108e+00
- 2 223 157 159 -0.25818807e+00 0.12064682e+00 -0.38855803e+01 0.77676333e+00
- 2 213 160 161 -0.27293598e-01 -0.29391669e+00 -0.14088229e+02 0.77249582e+00
- 2 -213 162 163 -0.73065357e+00 -0.25872981e+00 -0.10182928e+02 0.63278191e+00
- 2 213 164 165 0.87428205e+00 -0.94317150e-01 -0.90838052e+01 0.64262966e+00
- 2 221 166 168 -0.54961018e+00 -0.91600442e+00 -0.23454863e+02 0.54745000e+00
- 2 113 169 170 -0.18928191e+00 0.96948002e-01 -0.50785003e+01 0.80419369e+00
- 2 -213 171 172 -0.22667204e+00 -0.54936268e+00 -0.28234237e+01 0.60848906e+00
- 2 323 173 174 -0.79632100e-01 0.80349136e+00 -0.48613424e+01 0.89051333e+00
- 2 -323 175 176 0.30860225e+00 -0.41258357e+00 -0.30137567e+01 0.84164360e+00
- 2 223 177 179 -0.39581618e+00 0.38485386e+00 -0.74216447e+00 0.78972241e+00
- 2 2114 180 181 0.53745164e-01 0.76703138e+00 -0.11210196e+01 0.11556073e+01
- 2 -2114 182 183 0.74711856e+00 0.65028984e+00 0.50159820e+00 0.11941491e+01
- 2 2214 184 185 0.22561179e+00 0.43170540e+00 0.21568990e+01 0.11657254e+01
- 2 113 186 187 0.63773748e+00 0.57737759e+00 0.24468415e+01 0.75335420e+00
- 2 -2214 188 189 0.62518971e+00 0.16571300e+01 0.73123282e+01 0.12072653e+01
- 2 3222 190 191 0.83951838e+00 0.17016775e+00 0.52651330e+01 0.11893700e+01
- 2 -3324 192 193 0.16772915e+01 0.98769226e+00 0.19128911e+02 0.15042758e+01
- 2 -311 194 194 -0.47233175e+00 0.14889743e+00 0.23497656e+02 0.49767000e+00
- 2 223 195 197 0.15210427e+00 -0.15667448e+00 0.10890038e+02 0.77657752e+00
- 2 111 198 199 0.70404337e+00 -0.47167372e-01 0.38963660e+02 0.13498000e+00
- 2 -213 200 201 -0.57401282e+00 -0.23005325e+00 0.85894592e+02 0.74615451e+00
- 2 221 202 203 -0.80545038e-01 0.31563712e+00 0.41403247e+03 0.54745000e+00
- 1 211 0 0 0.20275571e+00 0.40583112e+00 0.10560309e+03 0.13957000e+00
- 1 -211 0 0 0.92553060e-01 -0.36482093e+00 0.28648396e+03 0.13957000e+00
- 2 2224 204 205 -0.23953475e+00 0.40558019e+00 0.26811775e+04 0.12822698e+01
- 2 221 206 208 -0.22644692e-01 0.91012617e-01 0.23047956e+04 0.54745000e+00
- 2 92 87 115 0.34419719e+01 -0.88601059e+00 -0.39300027e+04 0.31618383e+04
- 2 -213 209 210 0.12163919e+00 -0.27320522e-01 0.48602619e+03 0.80998367e+00
- 1 211 0 0 0.31223155e+00 0.39921484e+00 0.41133841e+02 0.13957000e+00
- 2 223 211 213 -0.45668867e+00 0.60413865e-01 0.90599943e+01 0.78155702e+00
- 2 -213 214 215 -0.43677983e+00 -0.69965114e+00 0.37200481e+01 0.80970740e+00
- 1 211 0 0 -0.11530174e+00 -0.42203626e+00 0.15000902e+01 0.13957000e+00
- 2 111 216 217 -0.63288694e+00 -0.33645625e+00 0.45637047e+00 0.13498000e+00
- 2 311 218 218 -0.76511645e+00 -0.64137867e+00 0.61772805e+00 0.49767000e+00
- 2 -313 219 220 -0.43212050e+00 -0.11226137e+01 0.25018340e+01 0.98018614e+00
- 2 2214 221 222 0.27360702e+00 0.22428684e+00 0.56376652e-01 0.12374784e+01
- 2 -213 223 224 0.31973987e+00 -0.56250446e+00 0.50127668e+00 0.62502988e+00
- 1 -2112 0 0 0.11953782e+01 -0.41877928e+00 0.11044705e+01 0.93957000e+00
- 2 -213 225 226 0.78290949e+00 0.87521957e-02 0.78926567e+00 0.76015396e+00
- 1 211 0 0 0.21667600e+01 -0.97466894e-01 0.10635428e+01 0.13957000e+00
- 2 -213 227 228 0.47322339e+00 0.88337435e+00 0.14442207e+01 0.73070218e+00
- 2 213 229 230 0.78741839e+00 0.71979453e+00 0.12575650e+01 0.89565640e+00
- 2 311 231 231 0.14263556e+00 0.66458141e+00 0.11731392e+01 0.49767000e+00
- 2 -323 232 233 0.51097835e+00 0.18599933e+00 -0.94583346e+00 0.89743516e+00
- 2 2224 234 235 0.10601245e-01 -0.42451444e-01 -0.42456892e+00 0.11999644e+01
- 1 -2212 0 0 -0.55236076e-01 -0.14825334e+00 -0.91660226e+01 0.93827000e+00
- 1 -211 0 0 0.22221801e-01 0.51519607e+00 -0.74103125e+00 0.13957000e+00
- 2 213 236 237 0.18961898e+00 0.19592068e+00 -0.18709746e+02 0.73462642e+00
- 1 -211 0 0 -0.20254891e+00 0.38019247e-01 -0.57282756e+02 0.13957000e+00
- 2 221 238 240 -0.16376563e+00 -0.43536824e+00 -0.50466522e+02 0.54745000e+00
- 2 221 241 242 0.35048404e+00 0.25621079e+00 -0.11891724e+03 0.54745000e+00
- 1 211 0 0 0.27062705e+00 0.19171203e+00 -0.32785434e+03 0.13957000e+00
- 2 221 243 245 -0.37717064e+00 -0.26586040e+00 -0.10523024e+03 0.54745000e+00
- 2 -213 246 247 -0.69651084e-01 -0.27554424e-01 -0.46586538e+03 0.79520737e+00
- 1 211 0 0 -0.28299882e+00 -0.80651581e-02 -0.45397797e+03 0.13957000e+00
- 1 2112 0 0 -0.49783694e+00 0.26273460e-01 -0.28728270e+04 0.93957000e+00
- 1 -211 0 0 0.42566174e+00 -0.39009472e+00 -0.29810237e+03 0.13957000e+00
- 1 211 0 0 0.24108043e+00 -0.36375380e+00 -0.27865762e+03 0.13957000e+00
- 2 221 248 250 0.63086831e+00 -0.40036002e+00 -0.48961044e+03 0.54745000e+00
- 1 211 0 0 0.16702192e+00 0.12886731e+00 -0.14902652e+03 0.13957000e+00
- 1 -211 0 0 0.54734802e+00 0.23961826e-01 -0.32755844e+03 0.13957000e+00
- 2 111 251 252 0.31279527e+00 0.10166189e+00 -0.14218624e+03 0.13498000e+00
- 1 211 0 0 0.52376155e-01 0.40328576e+00 -0.21590232e+03 0.13957000e+00
- 1 -211 0 0 0.72286951e-01 0.83702204e-01 -0.84412930e+01 0.13957000e+00
- 1 211 0 0 0.15823544e-01 -0.18152173e+00 -0.67669783e+01 0.13957000e+00
- 1 -211 0 0 0.51048228e+00 -0.73902747e+00 -0.56994308e+02 0.13957000e+00
- 2 111 253 254 0.53576513e-01 0.49367989e-02 -0.70767624e+01 0.13498000e+00
- 1 211 0 0 -0.16454867e+00 -0.20228090e+00 -0.69977479e+02 0.13957000e+00
- 2 111 255 256 -0.13386095e+00 0.48079513e+00 -0.25259514e+02 0.13498000e+00
- 1 22 0 0 0.49528917e+00 -0.35741923e+00 -0.17598701e+02 0.00000000e+00
- 1 22 0 0 0.73197211e-01 -0.33988765e-01 -0.41115914e+01 0.00000000e+00
- 1 -211 0 0 -0.78615381e-02 0.11226705e+00 -0.24575559e+02 0.13957000e+00
- 1 211 0 0 0.16077011e+00 0.25690891e+00 -0.39660031e+01 0.13957000e+00
- 1 22 0 0 -0.17668533e+00 -0.66188595e-01 -0.98797655e+01 0.00000000e+00
- 1 22 0 0 -0.32149699e+00 0.61226335e-01 -0.16134876e+02 0.00000000e+00
- 1 211 0 0 0.17975153e-01 0.41747961e+00 -0.46701364e+01 0.13957000e+00
- 1 -211 0 0 -0.83897231e-01 0.15391817e-01 -0.50438903e+00 0.13957000e+00
- 1 211 0 0 -0.16249107e+00 -0.50591009e+00 -0.13872111e+01 0.13957000e+00
- 1 -211 0 0 0.26893406e-01 -0.10153075e+00 -0.11412653e+01 0.13957000e+00
- 2 111 257 258 -0.13432675e+00 -0.88055154e+00 -0.40729904e+01 0.13498000e+00
- 1 -211 0 0 -0.10967566e-01 0.15064376e+00 -0.17274627e+00 0.13957000e+00
- 1 211 0 0 0.10745101e+00 -0.92608537e+00 -0.30374540e+01 0.13957000e+00
- 1 211 0 0 -0.10109498e+01 -0.41315565e+00 -0.12697077e+02 0.13957000e+00
- 2 111 259 260 -0.27137028e+00 0.40225330e+00 -0.64879536e+01 0.13498000e+00
- 1 -211 0 0 -0.27088644e+00 0.57817473e+00 -0.12866144e+02 0.13957000e+00
- 2 111 261 262 -0.60686418e+00 -0.97285420e-01 -0.94854378e+01 0.13498000e+00
- 1 22 0 0 -0.41838930e+00 0.11579484e+00 -0.45687092e+01 0.00000000e+00
- 1 22 0 0 -0.27766337e+00 0.15923297e+00 -0.25902578e+01 0.00000000e+00
- 1 321 0 0 -0.54936068e+00 -0.38856810e+00 -0.16808183e+02 0.49360000e+00
- 2 111 263 264 -0.18225712e+00 -0.14349552e+00 -0.20272867e+02 0.13498000e+00
- 1 130 0 0 -0.12998710e+01 0.27167566e+00 -0.22862198e+02 0.49767000e+00
- 1 2112 0 0 -0.18221787e+01 0.55432100e+00 -0.45882203e+02 0.93957000e+00
- 2 111 265 266 -0.73412439e+00 0.21976916e+00 -0.11249383e+02 0.13498000e+00
- 1 -2112 0 0 -0.97587356e+00 -0.45625748e+00 -0.29429184e+02 0.93957000e+00
- 2 111 267 268 -0.33345197e+00 0.69881844e-02 -0.38070133e+01 0.13498000e+00
- 1 -211 0 0 0.16847146e+00 -0.23379935e+00 -0.21438436e+01 0.13957000e+00
- 2 111 269 270 -0.12802537e+00 -0.38805035e+00 -0.65508026e+00 0.13498000e+00
- 1 -211 0 0 0.69577481e-02 -0.15080624e+00 -0.12075984e+01 0.13957000e+00
- 1 211 0 0 -0.33677840e-01 0.21555300e+00 -0.19979805e+01 0.13957000e+00
- 2 111 271 272 -0.23146797e+00 0.55900057e-01 -0.68000135e+00 0.13498000e+00
- 1 211 0 0 -0.54797472e-01 -0.51929784e+00 -0.10869188e+02 0.13957000e+00
- 2 111 273 274 0.27503874e-01 0.22538115e+00 -0.32190405e+01 0.13498000e+00
- 1 -211 0 0 0.16565165e-01 -0.19122480e+00 -0.22303966e+01 0.13957000e+00
- 2 111 275 276 -0.74721873e+00 -0.67505011e-01 -0.79525313e+01 0.13498000e+00
- 1 211 0 0 0.50700360e-01 -0.15974558e+00 -0.11089565e+01 0.13957000e+00
- 2 111 277 278 0.82358169e+00 0.65428427e-01 -0.79748487e+01 0.13498000e+00
- 2 111 279 280 -0.14224466e+00 -0.12594572e+00 -0.29301073e+01 0.13498000e+00
- 2 111 281 282 -0.22420450e+00 -0.52892674e+00 -0.13558802e+02 0.13498000e+00
- 2 111 283 284 -0.18316102e+00 -0.26113195e+00 -0.69659535e+01 0.13498000e+00
- 1 211 0 0 -0.22790022e+00 0.31989271e+00 -0.43632709e+01 0.13957000e+00
- 1 -211 0 0 0.38618319e-01 -0.22294471e+00 -0.71522937e+00 0.13957000e+00
- 1 -211 0 0 -0.35069096e+00 -0.34807835e+00 -0.23230680e+01 0.13957000e+00
- 2 111 285 286 0.12401892e+00 -0.20128433e+00 -0.50035568e+00 0.13498000e+00
- 1 321 0 0 -0.11144101e+00 0.83503567e+00 -0.33403364e+01 0.49360000e+00
- 2 111 287 288 0.31808909e-01 -0.31544307e-01 -0.15210060e+01 0.13498000e+00
- 1 -321 0 0 0.89249917e-01 -0.11597702e+00 -0.22957223e+01 0.49360000e+00
- 2 111 289 290 0.21935233e+00 -0.29660655e+00 -0.71803440e+00 0.13498000e+00
- 1 211 0 0 -0.26321864e+00 -0.13940908e+00 -0.27942796e+00 0.13957000e+00
- 1 -211 0 0 -0.55244881e-01 0.21525412e+00 -0.31085310e+00 0.13957000e+00
- 2 111 291 292 -0.77352661e-01 0.30900883e+00 -0.15188341e+00 0.13498000e+00
- 1 2112 0 0 -0.21875586e-01 0.48537527e+00 -0.77035788e+00 0.93957000e+00
- 2 111 293 294 0.75620750e-01 0.28165611e+00 -0.35066175e+00 0.13498000e+00
- 1 -2212 0 0 0.66572285e+00 0.56535845e+00 0.22851825e+00 0.93827000e+00
- 1 211 0 0 0.81395708e-01 0.84931392e-01 0.27307996e+00 0.13957000e+00
- 1 2212 0 0 0.28487425e+00 0.22570681e+00 0.16404888e+01 0.93827000e+00
- 2 111 295 296 -0.59262461e-01 0.20599859e+00 0.51641013e+00 0.13498000e+00
- 1 211 0 0 0.48999688e+00 0.13690202e+00 0.63680537e+00 0.13957000e+00
- 1 -211 0 0 0.14774060e+00 0.44047557e+00 0.18100361e+01 0.13957000e+00
- 1 -2112 0 0 0.35280250e+00 0.11514833e+01 0.57560159e+01 0.93957000e+00
- 1 -211 0 0 0.27238721e+00 0.50564670e+00 0.15563123e+01 0.13957000e+00
- 1 2212 0 0 0.86043701e+00 0.51223596e-01 0.43639725e+01 0.93827000e+00
- 2 111 297 298 -0.20918636e-01 0.11894416e+00 0.90116051e+00 0.13498000e+00
- 2 -3312 299 300 0.15848923e+01 0.91168542e+00 0.16886951e+02 0.13213000e+01
- 1 -211 0 0 0.92399153e-01 0.76006845e-01 0.22419605e+01 0.13957000e+00
- 2 310 301 302 -0.47233175e+00 0.14889743e+00 0.23497656e+02 0.49767000e+00
- 1 211 0 0 0.71584226e-01 0.42572271e-01 0.57345999e+01 0.13957000e+00
- 1 -211 0 0 0.38324205e-01 -0.10275707e+00 0.63634326e+00 0.13957000e+00
- 2 111 303 304 0.42195840e-01 -0.96489678e-01 0.45190946e+01 0.13498000e+00
- 1 22 0 0 0.22452298e+00 0.18790841e-01 0.15434075e+02 0.00000000e+00
- 1 22 0 0 0.47952038e+00 -0.65958214e-01 0.23529584e+02 0.00000000e+00
- 1 -211 0 0 -0.25045670e-01 0.74753408e-01 0.43731390e+01 0.13957000e+00
- 2 111 305 306 -0.54896715e+00 -0.30480666e+00 0.81521453e+02 0.13498000e+00
- 1 22 0 0 0.19599743e+00 0.14848591e+00 0.27697951e+03 0.00000000e+00
- 1 22 0 0 -0.27654247e+00 0.16715121e+00 0.13705296e+03 0.00000000e+00
- 1 2212 0 0 0.52826878e-01 0.14639874e+00 0.18794128e+04 0.93827000e+00
- 1 211 0 0 -0.29236163e+00 0.25918145e+00 0.80176462e+03 0.13957000e+00
- 2 111 307 308 -0.11696967e+00 0.31069704e-01 0.52242668e+03 0.13498000e+00
- 2 111 309 310 0.13387139e+00 0.38332109e-01 0.72668897e+03 0.13498000e+00
- 2 111 311 312 -0.39546415e-01 0.21610803e-01 0.10556799e+04 0.13498000e+00
- 1 -211 0 0 -0.43145291e-01 0.31384103e+00 0.32664948e+03 0.13957000e+00
- 2 111 313 314 0.16478448e+00 -0.34116155e+00 0.15937670e+03 0.13498000e+00
- 1 -211 0 0 -0.25162565e-01 0.29132826e-01 0.95395578e+00 0.13957000e+00
- 1 211 0 0 -0.21260130e+00 0.11707406e-01 0.70030672e+01 0.13957000e+00
- 2 111 315 316 -0.21892480e+00 0.19573633e-01 0.11029713e+01 0.13498000e+00
- 1 -211 0 0 0.11670605e+00 -0.35728735e+00 0.73427319e+00 0.13957000e+00
- 2 111 317 318 -0.55348588e+00 -0.34236379e+00 0.29857749e+01 0.13498000e+00
- 1 22 0 0 -0.10822879e+00 -0.64354584e-01 0.24250611e-01 0.00000000e+00
- 1 22 0 0 -0.52465815e+00 -0.27210166e+00 0.43211986e+00 0.00000000e+00
- 1 130 0 0 -0.76511645e+00 -0.64137867e+00 0.61772805e+00 0.49767000e+00
- 1 -321 0 0 -0.25270592e+00 -0.35324170e+00 0.64408354e+00 0.49360000e+00
- 1 211 0 0 -0.17941458e+00 -0.76937204e+00 0.18577505e+01 0.13957000e+00
- 1 2212 0 0 0.29034988e+00 -0.36455608e-01 -0.24975495e-01 0.93827000e+00
- 2 111 319 320 -0.16742862e-01 0.26074244e+00 0.81352148e-01 0.13498000e+00
- 1 -211 0 0 -0.10689508e+00 -0.14578190e+00 -0.15981308e-01 0.13957000e+00
- 2 111 321 322 0.42663495e+00 -0.41672256e+00 0.51725799e+00 0.13498000e+00
- 1 -211 0 0 0.79915912e+00 -0.17544023e+00 0.74133638e+00 0.13957000e+00
- 2 111 323 324 -0.16249634e-01 0.18419243e+00 0.47929290e-01 0.13498000e+00
- 1 -211 0 0 0.29405054e+00 0.81871523e-01 0.74325626e+00 0.13957000e+00
- 2 111 325 326 0.17917285e+00 0.80150282e+00 0.70096441e+00 0.13498000e+00
- 1 211 0 0 -0.18487629e-01 0.52457560e+00 0.60360124e+00 0.13957000e+00
- 2 111 327 328 0.80590602e+00 0.19521893e+00 0.65396373e+00 0.13498000e+00
- 2 310 329 330 0.14263556e+00 0.66458141e+00 0.11731392e+01 0.49767000e+00
- 2 -311 331 331 0.33627357e-02 0.46820549e-01 -0.38471743e+00 0.49767000e+00
- 1 -211 0 0 0.50761561e+00 0.13917878e+00 -0.56111603e+00 0.13957000e+00
- 1 2212 0 0 -0.42171485e-01 -0.12969086e+00 -0.16593757e+00 0.93827000e+00
- 1 211 0 0 0.52772730e-01 0.87239411e-01 -0.25863136e+00 0.13957000e+00
- 1 211 0 0 -0.18614286e+00 0.13027383e+00 -0.31890123e+01 0.13957000e+00
- 2 111 332 333 0.37576185e+00 0.65646853e-01 -0.15520734e+02 0.13498000e+00
- 1 22 0 0 -0.11581256e+00 -0.17433445e+00 -0.39902665e+02 0.00000000e+00
- 1 -11 0 0 -0.34425061e-01 -0.27799115e+00 -0.88630244e+01 0.51000000e-03
- 1 11 0 0 -0.13528017e-01 0.16957356e-01 -0.17008327e+01 0.51000000e-03
- 1 22 0 0 0.28618851e+00 0.28000835e+00 -0.39621100e+02 0.00000000e+00
- 1 22 0 0 0.64295529e-01 -0.23797562e-01 -0.79296137e+02 0.00000000e+00
- 1 -211 0 0 -0.88119507e-01 -0.10978474e+00 -0.23884976e+02 0.13957000e+00
- 1 211 0 0 -0.27853592e+00 -0.19351877e+00 -0.63579819e+02 0.13957000e+00
- 2 111 334 335 -0.10515209e-01 0.37443114e-01 -0.17765443e+02 0.13498000e+00
- 1 -211 0 0 0.33541466e+00 -0.68482051e-01 -0.21173623e+03 0.13957000e+00
- 2 111 336 337 -0.40506574e+00 0.40927626e-01 -0.25412915e+03 0.13498000e+00
- 2 111 338 339 0.18421779e+00 -0.13814768e+00 -0.95844297e+02 0.13498000e+00
- 2 111 340 341 0.22377107e+00 -0.10138871e-01 -0.13827059e+03 0.13498000e+00
- 2 111 342 343 0.22287946e+00 -0.25207347e+00 -0.25549556e+03 0.13498000e+00
- 1 22 0 0 0.18029464e+00 0.64416533e-01 -0.10764394e+03 0.00000000e+00
- 1 22 0 0 0.13250063e+00 0.37245362e-01 -0.34542304e+02 0.00000000e+00
- 1 22 0 0 0.77186235e-01 0.51657832e-01 -0.46394689e+01 0.00000000e+00
- 1 22 0 0 -0.23609722e-01 -0.46721033e-01 -0.24372935e+01 0.00000000e+00
- 1 22 0 0 -0.12095144e+00 0.47775364e+00 -0.23132000e+02 0.00000000e+00
- 1 22 0 0 -0.12909507e-01 0.30414860e-02 -0.21275138e+01 0.00000000e+00
- 1 22 0 0 0.20041830e-01 -0.44777265e-01 -0.16742863e+00 0.00000000e+00
- 1 22 0 0 -0.15436858e+00 -0.83577428e+00 -0.39055617e+01 0.00000000e+00
- 1 22 0 0 -0.10900765e+00 0.20329575e+00 -0.22641423e+01 0.00000000e+00
- 1 22 0 0 -0.16236263e+00 0.19895756e+00 -0.42238113e+01 0.00000000e+00
- 1 22 0 0 -0.43484622e+00 -0.11034053e+00 -0.61129860e+01 0.00000000e+00
- 1 22 0 0 -0.17201797e+00 0.13055110e-01 -0.33724518e+01 0.00000000e+00
- 1 22 0 0 -0.19402932e+00 -0.11223351e+00 -0.15045259e+02 0.00000000e+00
- 1 22 0 0 0.11772209e-01 -0.31262013e-01 -0.52276079e+01 0.00000000e+00
- 1 22 0 0 -0.35886959e-01 0.46370215e-01 -0.87416143e+00 0.00000000e+00
- 1 22 0 0 -0.69823743e+00 0.17339895e+00 -0.10375222e+02 0.00000000e+00
- 1 22 0 0 0.93418645e-02 -0.12231317e-01 -0.11285294e+00 0.00000000e+00
- 1 22 0 0 -0.34279383e+00 0.19219501e-01 -0.36941604e+01 0.00000000e+00
- 1 22 0 0 -0.32381741e-01 -0.34175242e-02 -0.34506822e-01 0.00000000e+00
- 1 22 0 0 -0.95643625e-01 -0.38463283e+00 -0.62057344e+00 0.00000000e+00
- 1 22 0 0 -0.19548400e+00 -0.11981467e-01 -0.51600409e+00 0.00000000e+00
- 1 22 0 0 -0.35983971e-01 0.67881524e-01 -0.16399726e+00 0.00000000e+00
- 1 22 0 0 0.25488832e-01 0.92886157e-01 -0.61940603e+00 0.00000000e+00
- 1 22 0 0 0.20150419e-02 0.13249499e+00 -0.25996345e+01 0.00000000e+00
- 1 22 0 0 -0.15496850e+00 -0.24009467e-01 -0.11616367e+01 0.00000000e+00
- 1 22 0 0 -0.59225023e+00 -0.43495544e-01 -0.67908946e+01 0.00000000e+00
- 1 22 0 0 0.64093311e+00 0.68537887e-01 -0.66735705e+01 0.00000000e+00
- 1 22 0 0 0.18264858e+00 -0.31094597e-02 -0.13012782e+01 0.00000000e+00
- 1 22 0 0 -0.13199566e-01 -0.82295337e-01 -0.16316315e+01 0.00000000e+00
- 1 22 0 0 -0.12904509e+00 -0.43650384e-01 -0.12984758e+01 0.00000000e+00
- 1 22 0 0 -0.84238147e-01 -0.34146031e+00 -0.89392600e+01 0.00000000e+00
- 1 22 0 0 -0.13996635e+00 -0.18746643e+00 -0.46195420e+01 0.00000000e+00
- 1 22 0 0 -0.96006392e-01 -0.32678491e-01 -0.18894156e+01 0.00000000e+00
- 1 22 0 0 -0.87154628e-01 -0.22845346e+00 -0.50765379e+01 0.00000000e+00
- 1 22 0 0 0.11540322e-01 -0.52181122e-02 -0.16330712e+00 0.00000000e+00
- 1 22 0 0 0.11247860e+00 -0.19606622e+00 -0.33704856e+00 0.00000000e+00
- 1 22 0 0 -0.22922331e-01 -0.27422602e-01 -0.12785605e+01 0.00000000e+00
- 1 22 0 0 0.54731240e-01 -0.41217055e-02 -0.24244550e+00 0.00000000e+00
- 1 22 0 0 0.16169922e-02 -0.14859997e-01 0.21118652e-02 0.00000000e+00
- 1 22 0 0 0.21773534e+00 -0.28174655e+00 -0.72014627e+00 0.00000000e+00
- 1 22 0 0 -0.87691350e-01 0.11012341e+00 -0.97978822e-01 0.00000000e+00
- 1 22 0 0 0.10338690e-01 0.19888542e+00 -0.53904589e-01 0.00000000e+00
- 1 22 0 0 0.22140707e-02 0.17832483e+00 -0.12832183e+00 0.00000000e+00
- 1 22 0 0 0.73406679e-01 0.10333128e+00 -0.22233991e+00 0.00000000e+00
- 1 22 0 0 0.13949574e-01 0.13368699e+00 0.38809571e+00 0.00000000e+00
- 1 22 0 0 -0.73212035e-01 0.72311601e-01 0.12831441e+00 0.00000000e+00
- 1 22 0 0 0.35894587e-01 0.48041117e-01 0.13586099e+00 0.00000000e+00
- 1 22 0 0 -0.56813223e-01 0.70903042e-01 0.76529952e+00 0.00000000e+00
- 2 -3122 344 345 0.12109067e+01 0.63119484e+00 0.13657269e+02 0.11156800e+01
- 1 211 0 0 0.37398566e+00 0.28049058e+00 0.32296815e+01 0.13957000e+00
- 2 111 346 347 -0.32245595e-01 -0.63875364e-02 0.19203402e+01 0.13498000e+00
- 2 111 348 349 -0.44008615e+00 0.15528496e+00 0.21577316e+02 0.13498000e+00
- 1 22 0 0 0.48313396e-01 -0.98788855e-01 0.18682730e+01 0.00000000e+00
- 1 22 0 0 -0.61175562e-02 0.22991767e-02 0.26508216e+01 0.00000000e+00
- 1 22 0 0 -0.14824510e+00 -0.14522508e+00 0.22705714e+02 0.00000000e+00
- 1 22 0 0 -0.40072205e+00 -0.15958158e+00 0.58815739e+02 0.00000000e+00
- 1 22 0 0 0.24851778e-01 -0.18441013e-01 0.82029559e+02 0.00000000e+00
- 1 22 0 0 -0.14182145e+00 0.49510717e-01 0.44039712e+03 0.00000000e+00
- 1 22 0 0 0.10446753e+00 -0.31425400e-01 0.31436361e+03 0.00000000e+00
- 1 22 0 0 0.29403867e-01 0.69757509e-01 0.41232536e+03 0.00000000e+00
- 1 22 0 0 -0.45097114e-01 -0.49811444e-01 0.39590126e+03 0.00000000e+00
- 1 22 0 0 0.55506986e-02 0.71422247e-01 0.65977866e+03 0.00000000e+00
- 1 22 0 0 0.62756332e-01 -0.25997541e+00 0.11756169e+03 0.00000000e+00
- 1 22 0 0 0.10202815e+00 -0.81186144e-01 0.41815010e+02 0.00000000e+00
- 1 22 0 0 -0.20210108e+00 -0.22471821e-01 0.99635795e+00 0.00000000e+00
- 1 22 0 0 -0.16823718e-01 0.42045455e-01 0.10661338e+00 0.00000000e+00
- 1 22 0 0 -0.44011329e+00 -0.33052606e+00 0.25055577e+01 0.00000000e+00
- 1 22 0 0 -0.11337259e+00 -0.11837732e-01 0.48021726e+00 0.00000000e+00
- 1 22 0 0 0.14925551e-01 0.11433669e+00 -0.29216627e-01 0.00000000e+00
- 1 22 0 0 -0.31668413e-01 0.14640575e+00 0.11056877e+00 0.00000000e+00
- 1 22 0 0 0.79823329e-01 -0.18805471e-01 0.50624087e-01 0.00000000e+00
- 1 22 0 0 0.34681162e+00 -0.39791709e+00 0.46663390e+00 0.00000000e+00
- 1 22 0 0 -0.74540386e-02 0.20138897e+00 0.61021131e-01 0.00000000e+00
- 1 22 0 0 -0.87955949e-02 -0.17196543e-01 -0.13091842e-01 0.00000000e+00
- 1 22 0 0 -0.55218510e-02 0.68509785e-01 0.10535320e+00 0.00000000e+00
- 1 22 0 0 0.18469470e+00 0.73299304e+00 0.59561121e+00 0.00000000e+00
- 1 22 0 0 0.26281306e+00 0.60185589e-01 0.13541534e+00 0.00000000e+00
- 1 22 0 0 0.54309295e+00 0.13503334e+00 0.51854838e+00 0.00000000e+00
- 2 111 350 351 -0.55863575e-01 0.85022023e-01 0.87236855e-01 0.13498000e+00
- 2 111 352 353 0.19849914e+00 0.57955938e+00 0.10859024e+01 0.13498000e+00
- 2 310 354 355 0.33627357e-02 0.46820549e-01 -0.38471743e+00 0.49767000e+00
- 1 22 0 0 0.30503826e+00 0.66464316e-01 -0.10130118e+02 0.00000000e+00
- 1 22 0 0 0.70723591e-01 -0.81746320e-03 -0.53906160e+01 0.00000000e+00
- 1 22 0 0 0.15992444e-01 0.84605848e-01 -0.11434198e+02 0.00000000e+00
- 1 22 0 0 -0.26507653e-01 -0.47162734e-01 -0.63312454e+01 0.00000000e+00
- 1 22 0 0 -0.15534452e+00 0.66480974e-01 -0.77955510e+02 0.00000000e+00
- 1 22 0 0 -0.24972122e+00 -0.25553348e-01 -0.17617364e+03 0.00000000e+00
- 1 22 0 0 0.10408710e-01 0.11947929e-01 -0.23873929e+02 0.00000000e+00
- 1 22 0 0 0.17380908e+00 -0.15009561e+00 -0.71970368e+02 0.00000000e+00
- 1 22 0 0 0.20536723e+00 0.26157366e-01 -0.12788858e+03 0.00000000e+00
- 1 22 0 0 0.18403838e-01 -0.36296236e-01 -0.10382006e+02 0.00000000e+00
- 1 22 0 0 -0.48644998e-03 -0.56429707e-01 -0.66519786e+02 0.00000000e+00
- 1 22 0 0 0.22336591e+00 -0.19564376e+00 -0.18897577e+03 0.00000000e+00
- 1 -2212 0 0 0.88217977e+00 0.48137931e+00 0.10860369e+02 0.93827000e+00
- 1 211 0 0 0.32872690e+00 0.14981553e+00 0.27969004e+01 0.13957000e+00
- 1 22 0 0 0.32889353e-01 -0.45918448e-01 0.11127053e+01 0.00000000e+00
- 1 22 0 0 -0.65134948e-01 0.39530911e-01 0.80763486e+00 0.00000000e+00
- 1 22 0 0 -0.16513319e+00 -0.82914301e-02 0.78390481e+01 0.00000000e+00
- 1 22 0 0 -0.27495297e+00 0.16357639e+00 0.13738268e+02 0.00000000e+00
- 1 22 0 0 -0.78815384e-01 0.23455828e-01 0.93131264e-01 0.00000000e+00
- 1 22 0 0 0.22951809e-01 0.61566196e-01 -0.58944088e-02 0.00000000e+00
- 1 22 0 0 0.12197873e+00 0.16201954e+00 0.34823973e+00 0.00000000e+00
- 1 22 0 0 0.76520406e-01 0.41753985e+00 0.73766265e+00 0.00000000e+00
- 1 -211 0 0 0.14948307e+00 0.10549937e+00 -0.34797687e+00 0.13957000e+00
- 1 211 0 0 -0.14612033e+00 -0.58678818e-01 -0.36740565e-01 0.13957000e+00
- 865
- 2 25 2 3 0.32121420e+02 -0.33374454e+02 0.21956253e+03 0.12499535e+03
- 2 23 4 5 0.21208212e+01 -0.13048888e+02 0.15278350e+03 0.90760256e+02
- 2 23 6 7 0.30000599e+02 -0.20325567e+02 0.66779031e+02 0.20370040e+02
- 1 13 0 0 -0.42248052e+02 -0.19356186e+02 0.86398561e+02 0.10566000e+00
- 1 -13 0 0 0.44368873e+02 0.63072980e+01 0.66384940e+02 0.10566000e+00
- 1 13 0 0 0.31807241e+02 -0.13611716e+02 0.56480840e+02 0.10566000e+00
- 1 -13 0 0 -0.18066424e+01 -0.67138508e+01 0.10298190e+02 0.10566000e+00
- 2 4 94 94 0.18183405e+01 0.34788372e+00 0.87908895e+00 0.15000000e+01
- 2 21 94 94 -0.27885045e+01 -0.71220254e+00 -0.77214178e+01 0.00000000e+00
- 2 21 94 94 -0.25776276e+01 -0.94139034e-02 -0.35107300e+01 0.00000000e+00
- 2 21 94 94 -0.60950677e+01 0.47606768e+01 -0.10669299e+02 0.00000000e+00
- 2 21 94 94 -0.10547971e+02 0.71053369e+01 -0.14672046e+02 0.00000000e+00
- 2 21 94 94 -0.93720201e+01 0.62165869e+01 -0.14911330e+02 0.00000000e+00
- 2 21 94 94 -0.61164666e+00 0.52106060e+00 -0.62206038e+00 0.00000000e+00
- 2 21 94 94 -0.88178731e+00 0.73000267e-01 -0.10477040e+01 0.00000000e+00
- 2 21 94 94 -0.41066717e+01 0.15004999e+02 -0.18319861e+03 0.00000000e+00
- 2 21 94 94 -0.12062048e+00 0.63087589e+01 -0.99801899e+02 0.00000000e+00
- 2 21 94 94 -0.55303619e+00 0.20134015e+00 -0.23847793e+01 0.00000000e+00
- 2 21 94 94 -0.26272617e+01 0.50523644e+00 -0.94242023e+01 0.00000000e+00
- 2 21 94 94 -0.11394827e+01 0.10408385e+01 -0.10865169e+02 0.00000000e+00
- 2 21 94 94 0.94102565e+00 -0.16544737e+01 0.22626014e+01 0.00000000e+00
- 2 21 94 94 0.31475602e+01 -0.38647851e+00 0.36196846e+01 0.00000000e+00
- 2 21 94 94 0.12937355e+01 0.21210946e+00 0.13701782e+01 0.00000000e+00
- 2 21 94 94 0.30824627e+00 0.32258155e+00 0.41204515e+00 0.00000000e+00
- 2 21 94 94 0.24979031e+01 0.84966261e+00 0.71235596e+01 0.00000000e+00
- 2 21 94 94 0.30854520e+01 0.80232764e+00 0.28590353e+02 0.00000000e+00
- 2 21 94 94 -0.11247668e-01 0.55674380e+01 0.65938388e+02 0.00000000e+00
- 2 21 94 94 0.66562481e+00 -0.23348812e+01 0.29159258e+00 0.00000000e+00
- 2 -3 94 94 0.30098581e+01 -0.34369757e+01 0.25785594e+02 0.50000000e+00
- 2 -4 153 153 0.31180277e+01 0.24604804e+01 0.37456234e+00 0.15000000e+01
- 2 2 153 153 0.78935043e+00 -0.17940430e+01 -0.36956883e+03 0.33000000e+00
- 2 3 165 165 -0.58294952e+00 -0.11210156e+01 0.32047948e+01 0.50000000e+00
- 2 21 165 165 -0.19055762e+01 -0.10483585e+01 0.45891194e+01 0.00000000e+00
- 2 2101 165 165 0.73150704e+00 -0.22307477e+01 0.19304672e+04 0.57933000e+00
- 2 2 177 177 -0.11663811e+01 0.77113339e+00 0.51477668e+03 0.33000000e+00
- 2 21 177 177 0.69612202e+00 0.22351177e-01 0.70426670e+02 0.00000000e+00
- 2 21 177 177 0.11572527e+01 0.48505875e+00 0.55932051e+02 0.00000000e+00
- 2 21 177 177 0.73632194e+00 0.99048648e+00 0.45095605e+02 0.00000000e+00
- 2 21 177 177 -0.11903327e+00 -0.31268678e+00 0.26788897e+00 0.00000000e+00
- 2 21 177 177 0.14985274e+01 -0.11614756e+01 0.14867986e+03 0.00000000e+00
- 2 21 177 177 -0.67687988e+00 0.26563087e+00 0.42489234e+02 0.00000000e+00
- 2 21 177 177 -0.36123127e+00 0.11173729e+01 0.23571035e+02 0.00000000e+00
- 2 21 177 177 -0.15889361e+00 0.15228605e+00 0.99782580e+00 0.00000000e+00
- 2 21 177 177 0.32328862e+01 0.19573422e+01 0.14872629e+03 0.00000000e+00
- 2 21 177 177 0.21670249e+01 0.16052530e+01 0.67725911e+02 0.00000000e+00
- 2 21 177 177 0.34255581e+01 0.14864856e+01 0.84412713e+02 0.00000000e+00
- 2 21 177 177 0.22401749e+01 -0.19558436e+00 0.50779236e+02 0.00000000e+00
- 2 21 177 177 0.81572163e+00 0.64263342e+00 0.10794784e+04 0.00000000e+00
- 2 21 177 177 0.38119331e+00 -0.86997599e+00 0.32868165e+03 0.00000000e+00
- 2 21 177 177 -0.32328862e+01 -0.19573422e+01 0.55579770e+03 0.00000000e+00
- 2 21 177 177 0.11247668e-01 -0.55674380e+01 0.42350137e+03 0.00000000e+00
- 2 21 177 177 0.83642639e+00 -0.14737286e+01 0.11607489e+03 0.00000000e+00
- 2 21 177 177 0.16933177e+01 -0.26707772e+01 0.32329596e+03 0.00000000e+00
- 2 21 177 177 0.26273298e+01 -0.58622539e+00 0.19935936e+03 0.00000000e+00
- 2 21 177 177 -0.30824627e+00 -0.32258155e+00 0.32968243e+01 0.00000000e+00
- 2 21 177 177 -0.24979031e+01 -0.84966261e+00 0.22436279e+02 0.00000000e+00
- 2 21 177 177 -0.10116776e+01 0.94985447e+00 0.14044215e+02 0.00000000e+00
- 2 21 177 177 -0.83642639e+00 0.14737286e+01 0.10089573e+02 0.00000000e+00
- 2 21 177 177 -0.16933177e+01 0.26707772e+01 0.11619161e+02 0.00000000e+00
- 2 21 177 177 -0.10514020e+01 0.84953158e+00 0.33802673e+01 0.00000000e+00
- 2 21 177 177 -0.31475602e+01 0.38647851e+00 0.15028165e+02 0.00000000e+00
- 2 21 177 177 -0.22401749e+01 0.19558436e+00 0.65911571e+01 0.00000000e+00
- 2 21 177 177 -0.66492960e+01 0.70067223e-01 0.17412810e+02 0.00000000e+00
- 2 21 177 177 -0.12937355e+01 -0.21210946e+00 0.22623117e+01 0.00000000e+00
- 2 21 177 177 -0.34255581e+01 -0.14864856e+01 0.62194508e+01 0.00000000e+00
- 2 21 177 177 -0.21670249e+01 -0.16052530e+01 0.11926530e+01 0.00000000e+00
- 2 21 177 177 -0.26273298e+01 0.58622539e+00 0.12310001e+01 0.00000000e+00
- 2 21 177 177 -0.38119331e+00 0.86997599e+00 -0.35961714e+00 0.00000000e+00
- 2 21 177 177 0.46676275e+00 0.82605993e+00 -0.26189464e+00 0.00000000e+00
- 2 21 177 177 0.66492960e+01 -0.70067223e-01 -0.10080645e+02 0.00000000e+00
- 2 21 177 177 0.17006848e+01 -0.33129254e+01 -0.69856064e+01 0.00000000e+00
- 2 21 177 177 0.13679525e+01 -0.24831441e+01 -0.15658381e+01 0.00000000e+00
- 2 2101 177 177 0.50290212e-01 -0.81426275e+00 -0.22682653e+04 0.57933000e+00
- 2 1 252 252 -0.17444788e+01 -0.15518070e+01 0.40603732e+02 0.00000000e+00
- 2 -1 252 252 0.17444788e+01 0.15518070e+01 0.16069691e+02 0.00000000e+00
- 2 21 257 257 0.44766723e+01 0.13896664e+01 -0.30629675e+02 0.00000000e+00
- 2 21 257 257 0.25435797e+01 0.89781066e+00 -0.10523780e+02 0.00000000e+00
- 2 21 257 257 0.36709093e+01 0.18481059e+01 -0.14880990e+02 0.00000000e+00
- 2 21 257 257 -0.25435797e+01 -0.89781066e+00 -0.15774195e+02 0.00000000e+00
- 2 21 257 257 -0.81572163e+00 -0.64263342e+00 -0.87759718e+01 0.00000000e+00
- 2 21 257 257 -0.30854520e+01 -0.80232764e+00 -0.23741055e+02 0.00000000e+00
- 2 21 257 257 -0.13679525e+01 0.24831441e+01 -0.35862661e+02 0.00000000e+00
- 2 21 257 257 -0.17006848e+01 0.33129254e+01 -0.11302922e+03 0.00000000e+00
- 2 21 257 257 -0.44766723e+01 -0.13896664e+01 -0.20270429e+03 0.00000000e+00
- 2 21 257 257 -0.23950885e+01 -0.10401524e+01 -0.13869107e+03 0.00000000e+00
- 2 21 257 257 -0.46676275e+00 -0.82605993e+00 -0.12022885e+03 0.00000000e+00
- 2 21 257 257 -0.36709093e+01 -0.18481059e+01 -0.26129635e+04 0.00000000e+00
- 2 21 257 257 -0.94102565e+00 0.16544737e+01 -0.29839048e+03 0.00000000e+00
- 2 21 257 257 0.23950885e+01 0.10401524e+01 -0.26394346e+03 0.00000000e+00
- 2 21 257 257 0.10116776e+01 -0.94985447e+00 -0.32582442e+02 0.00000000e+00
- 2 21 294 294 0.27570008e+00 -0.19965638e+01 0.20888793e+03 0.00000000e+00
- 2 21 294 294 0.10514020e+01 -0.84953158e+00 0.44686315e+01 0.00000000e+00
- 2 21 294 294 -0.27570008e+00 0.19965638e+01 -0.20736988e+02 0.00000000e+00
- 2 92 95 152 -0.24665200e+02 0.41305411e+02 -0.22255616e+03 0.46452361e+03
- 2 413 316 317 0.87607003e+00 0.16016389e+00 -0.16476967e+00 0.20100000e+01
- 2 1114 318 319 -0.62242209e+00 -0.34498702e+00 -0.18943833e+01 0.11841478e+01
- 1 211 0 0 0.37759940e+00 -0.20152931e+00 -0.83431978e+00 0.13957000e+00
- 1 -2112 0 0 -0.18362102e+01 0.28447165e+00 -0.15339827e+01 0.93957000e+00
- 2 223 320 322 -0.50241952e+00 -0.13318344e+00 -0.94935804e+00 0.82859384e+00
- 2 113 323 324 -0.73383644e+00 0.12367376e+01 -0.19539376e+01 0.80387223e+00
- 1 2112 0 0 -0.11282744e+01 0.13413267e+00 -0.24641856e+01 0.93957000e+00
- 1 -2212 0 0 -0.23655070e+01 0.16189025e+01 -0.58303069e+01 0.93827000e+00
- 2 223 325 327 -0.41323971e+01 0.17385360e+01 -0.47224560e+01 0.80051615e+00
- 2 223 328 330 -0.70026217e+01 0.44424537e+01 -0.10223034e+02 0.78148936e+00
- 1 2212 0 0 -0.34152599e+01 0.23849828e+01 -0.64359819e+01 0.93827000e+00
- 2 213 331 332 -0.34607379e+01 0.25936085e+01 -0.52539878e+01 0.78353595e+00
- 2 -2224 333 334 -0.51808543e+01 0.34055763e+01 -0.80433625e+01 0.13223951e+01
- 2 213 335 336 -0.27267521e+00 0.17101381e+00 -0.42381427e+01 0.85533981e+00
- 2 311 337 337 -0.10259075e+01 0.16193380e+01 -0.30985353e+01 0.49767000e+00
- 2 -311 338 338 -0.32632346e+00 -0.38243225e-01 -0.33446053e+01 0.49767000e+00
- 2 313 339 340 -0.47522235e-01 0.75961701e+00 -0.90145382e+01 0.90448276e+00
- 2 -323 341 342 -0.37574271e+00 0.36030087e+00 -0.66813313e+01 0.88629195e+00
- 2 213 343 344 -0.15506671e+01 0.61468270e+01 -0.71815259e+02 0.81699649e+00
- 2 -213 345 346 -0.15653853e+01 0.44111123e+01 -0.61093026e+02 0.77926325e+00
- 2 223 347 348 -0.65342824e+00 0.40997331e+01 -0.52804879e+02 0.84549688e+00
- 1 211 0 0 -0.32539540e+00 0.57933503e+00 -0.11169093e+02 0.13957000e+00
- 2 3112 349 350 -0.50684177e+00 0.33466552e+01 -0.44190344e+02 0.11974400e+01
- 2 -3112 351 352 -0.50044119e+00 0.48916193e+00 -0.11404228e+02 0.11974400e+01
- 2 311 353 353 -0.71174693e+00 0.36437230e+00 -0.31374619e+01 0.49767000e+00
- 2 -323 354 355 -0.36419745e+00 0.21114307e+00 -0.69612465e+01 0.91709974e+00
- 2 111 356 357 0.19456189e-01 0.58276046e-01 -0.19110689e-01 0.13498000e+00
- 1 211 0 0 -0.27815199e+00 0.64014396e+00 -0.52360476e+01 0.13957000e+00
- 1 -211 0 0 -0.38083666e-02 0.13832692e+00 -0.19060002e+01 0.13957000e+00
- 2 213 358 359 -0.33686486e+00 0.18663825e-01 -0.41495514e+01 0.77383930e+00
- 1 2112 0 0 -0.70074991e+00 -0.25525285e+00 -0.12355502e+01 0.93957000e+00
- 2 -313 360 361 0.15278457e-01 0.72819763e+00 -0.19978205e+01 0.82598008e+00
- 2 -3212 362 363 -0.70367969e+00 -0.35354559e+00 -0.18963421e+01 0.11925500e+01
- 2 313 364 365 0.40402809e+00 -0.62767910e+00 0.14326644e+00 0.87084564e+00
- 1 -321 0 0 -0.35501608e-01 0.26902145e+00 -0.91900631e+00 0.49360000e+00
- 1 321 0 0 0.28380748e+00 0.30938519e+00 0.64635258e+00 0.49360000e+00
- 2 -313 366 367 0.20293684e+01 -0.49661334e+00 0.15029704e+01 0.88549892e+00
- 2 313 368 369 0.84759242e+00 -0.36406812e+00 0.16227606e+01 0.92234677e+00
- 2 -323 370 371 0.11386358e+01 0.12467236e+00 0.32461600e+01 0.93442274e+00
- 2 213 372 373 0.43725871e+00 0.15635297e+00 0.18181424e+01 0.59673139e+00
- 2 -213 374 375 0.49564725e+00 0.90691427e-01 0.15017098e+01 0.77825850e+00
- 1 2212 0 0 0.13872255e+01 -0.40036333e-01 0.44793555e+01 0.93827000e+00
- 2 223 376 378 0.83353053e+00 0.16503815e+00 0.55884290e+01 0.78051514e+00
- 2 -2214 379 380 0.77412993e+00 0.15359946e+01 0.10333418e+02 0.11731778e+01
- 2 111 381 382 0.49047772e+00 -0.11810046e+00 0.79226727e+00 0.13498000e+00
- 2 323 383 384 0.14687900e+01 0.14181343e+01 0.30265074e+02 0.89316802e+00
- 2 -323 385 386 0.70715225e+00 0.75706080e+00 0.14073447e+02 0.92943684e+00
- 2 213 387 388 -0.18813851e+00 0.10034861e+01 0.11178656e+02 0.82619971e+00
- 1 -211 0 0 -0.16114813e+00 -0.89176818e-01 0.95969787e+00 0.13957000e+00
- 2 323 389 390 -0.13512749e+00 0.13889614e+01 0.15262223e+02 0.80142087e+00
- 2 -323 391 392 0.59989340e+00 0.14033206e+00 0.26457454e+01 0.87583891e+00
- 1 211 0 0 -0.33890853e+00 0.27800203e+00 0.27773275e+00 0.13957000e+00
- 2 223 393 395 0.43025680e+00 -0.84767807e+00 0.13820934e+01 0.76049345e+00
- 2 -213 396 397 0.65432438e+00 -0.22195773e+00 0.10696752e+01 0.64014643e+00
- 2 223 398 400 -0.23364590e+00 -0.50976385e+00 0.66245198e+00 0.79078131e+00
- 2 223 401 403 0.46505177e+00 -0.11277230e+01 0.45511641e+01 0.78298345e+00
- 2 113 404 405 0.44112277e+00 -0.25458898e-01 0.46256439e+01 0.73120421e+00
- 2 323 406 407 0.18806431e+01 -0.26785078e+01 0.15431588e+02 0.96616571e+00
- 2 92 154 164 0.39073782e+01 0.66643744e+00 -0.36919427e+03 0.58596219e+02
- 2 -411 408 412 0.18577671e+01 0.16392834e+01 -0.60134525e+00 0.18693000e+01
- 2 213 413 414 0.78077464e+00 0.62465811e+00 0.41287215e+00 0.72012594e+00
- 1 -2212 0 0 0.27743452e+00 0.14887587e+00 -0.51632223e+01 0.93827000e+00
- 2 221 415 417 0.14615748e+00 -0.41860649e+00 -0.11792425e+01 0.54745000e+00
- 2 2114 418 419 0.41710235e+00 0.55710883e+00 -0.27538787e+02 0.12022759e+01
- 1 211 0 0 -0.11213576e+00 -0.75761806e+00 -0.44393286e+02 0.13957000e+00
- 1 -211 0 0 0.37564087e+00 0.33176738e+00 -0.15713293e+02 0.13957000e+00
- 2 111 420 421 -0.35239497e+00 -0.19952405e-01 -0.42311665e+01 0.13498000e+00
- 1 211 0 0 0.41134472e-01 -0.43968758e+00 -0.61305296e+02 0.13957000e+00
- 2 -323 422 423 -0.41261844e-01 -0.73696195e+00 -0.12117869e+03 0.86827075e+00
- 2 323 424 425 0.51715933e+00 -0.26242967e+00 -0.88302811e+02 0.93192179e+00
- 2 92 166 176 -0.17570187e+01 -0.44001219e+01 0.19382612e+04 0.54326868e+02
- 2 -313 426 427 -0.16395510e+01 -0.93067804e+00 0.56111946e+01 0.89153692e+00
- 2 111 428 429 -0.25467224e+00 -0.10376683e+01 0.19611600e+01 0.13498000e+00
- 2 -213 430 431 -0.14628479e+00 -0.21408740e+00 0.15528797e+02 0.98378655e+00
- 2 113 432 433 -0.10370928e+00 -0.51892187e+00 0.20817272e+02 0.77567709e+00
- 2 223 434 436 -0.45387774e+00 0.76946825e+00 0.22678881e+02 0.72991827e+00
- 2 111 437 438 0.48569616e+00 -0.45026458e+00 0.17836447e+02 0.13498000e+00
- 2 113 439 440 -0.10991134e+00 0.73023341e-01 0.69539588e+02 0.78603204e+00
- 2 111 441 442 -0.21584493e+00 -0.91200383e-01 0.42306719e+01 0.13498000e+00
- 2 213 443 444 0.92717674e-01 -0.31228980e+00 0.95773375e+02 0.75584829e+00
- 2 3212 445 446 0.73528484e+00 -0.93847013e+00 0.10143413e+04 0.11925500e+01
- 2 313 447 448 -0.14686602e+00 -0.74903293e+00 0.66994246e+03 0.88344415e+00
- 2 92 178 251 -0.32920602e+01 -0.75774088e+01 0.21073553e+04 0.63566343e+04
- 1 321 0 0 -0.39186845e+00 0.22738544e+00 0.16418615e+03 0.49360000e+00
- 2 -313 449 450 0.56369835e-01 0.27566390e+00 0.16705097e+03 0.86086381e+00
- 1 2112 0 0 -0.21861061e+00 0.40402609e+00 0.17784042e+03 0.93957000e+00
- 2 -313 451 452 0.65735026e+00 0.30236964e+00 0.58640554e+02 0.84377151e+00
- 2 -3222 453 454 -0.91206285e-01 0.40855761e+00 0.43345990e+02 0.11893700e+01
- 2 213 455 456 0.16769576e+01 0.64995340e+00 0.73763387e+02 0.84084146e+00
- 1 -211 0 0 -0.72110322e+00 -0.38570170e+00 0.75345735e+01 0.13957000e+00
- 1 2212 0 0 0.10586196e+01 -0.70329427e+00 0.42243393e+02 0.93827000e+00
- 2 -3214 457 458 0.17378118e+00 0.23669243e+00 0.16358732e+02 0.14023409e+01
- 2 -311 459 459 -0.22560389e+00 0.13629254e+00 0.25814752e+02 0.49767000e+00
- 2 223 460 462 0.24159092e+00 -0.58359685e+00 0.74218151e+02 0.78033237e+00
- 2 113 463 464 -0.11712730e+00 0.23764131e+00 0.25088044e+02 0.81622099e+00
- 1 2212 0 0 0.17785679e+00 0.13575122e+01 0.50687373e+02 0.93827000e+00
- 2 111 465 466 0.68587710e-01 0.37341930e+00 0.35604338e+01 0.13498000e+00
- 2 -3224 467 468 0.36288043e+01 0.17800127e+01 0.11808800e+03 0.13962801e+01
- 2 -323 469 470 0.18959921e+01 0.11262045e+01 0.76343058e+02 0.93113098e+00
- 2 113 471 472 0.19688187e+01 0.34313747e+00 0.54385679e+02 0.69700813e+00
- 2 213 473 474 0.46040368e+00 0.84761152e+00 0.31148118e+02 0.71357409e+00
- 2 -213 475 476 0.21480003e+01 0.32752560e+00 0.67930659e+02 0.81738775e+00
- 2 213 477 478 -0.15548148e-01 0.45907755e-01 0.11377765e+03 0.77874826e+00
- 2 1114 479 480 0.91037031e+00 -0.28119089e-01 0.50300553e+03 0.13389946e+01
- 2 213 481 482 -0.22120533e+00 -0.45762153e+00 0.14818918e+03 0.81150965e+00
- 1 -2212 0 0 0.19444388e-01 0.27142158e+00 0.53000347e+03 0.93827000e+00
- 1 211 0 0 -0.49778209e+00 -0.80784989e+00 0.11932202e+03 0.13957000e+00
- 2 313 483 484 -0.76800612e+00 -0.87087474e+00 0.24345130e+03 0.10083044e+01
- 2 -311 485 485 0.23420383e+00 -0.50566910e+00 0.67252496e+02 0.49767000e+00
- 2 223 486 488 -0.38634393e+00 -0.50030557e+00 0.14389212e+03 0.75932091e+00
- 2 -213 489 490 -0.75609066e+00 -0.20376315e+01 0.25045013e+03 0.94898663e+00
- 1 321 0 0 0.55649614e+00 -0.22541445e+01 0.17462380e+03 0.49360000e+00
- 2 3122 491 492 0.16205465e+01 -0.52976029e+00 0.16924150e+03 0.11156800e+01
- 2 -3122 493 494 0.41163174e+00 -0.33743001e+01 0.25926865e+03 0.11156800e+01
- 2 -323 495 496 0.61892564e+00 -0.13526847e+01 0.13105581e+03 0.88312869e+00
- 1 211 0 0 0.12873486e+00 0.44083650e+00 0.31042818e+02 0.13957000e+00
- 2 111 497 498 0.15207667e+01 -0.14950670e+01 0.11003662e+03 0.13498000e+00
- 2 313 499 500 -0.94691759e+00 0.49343127e+00 0.12807710e+02 0.89844214e+00
- 2 -323 501 502 -0.17336642e+01 -0.49515092e+00 0.21697675e+02 0.90252013e+00
- 2 221 503 505 -0.15621639e+01 0.14423070e+01 0.13580552e+02 0.54745000e+00
- 1 321 0 0 -0.30609572e+00 0.41672153e+00 0.25699073e+01 0.49360000e+00
- 2 333 506 507 -0.72766547e+00 0.78418702e+00 0.67055077e+01 0.10174458e+01
- 2 -313 508 509 -0.14167721e+01 0.14815999e+01 0.11163704e+02 0.90664102e+00
- 1 -211 0 0 -0.24130615e+01 -0.21435923e+00 0.78223335e+01 0.13957000e+00
- 1 211 0 0 -0.22677559e+01 0.14564504e+01 0.92726821e+01 0.13957000e+00
- 1 2112 0 0 -0.12164401e+01 0.33381868e+00 0.53841276e+01 0.93957000e+00
- 1 -2212 0 0 -0.29505835e+01 0.89673254e-01 0.91186328e+01 0.93827000e+00
- 2 323 510 511 -0.35602887e+01 -0.82862433e-01 0.86574110e+01 0.85996195e+00
- 2 -313 512 513 -0.12591165e+01 -0.47413259e+00 0.21539692e+01 0.85841577e+00
- 1 2112 0 0 -0.13012136e+01 -0.77643937e-01 0.27140369e+01 0.93957000e+00
- 1 -2212 0 0 -0.13330047e+01 -0.56205304e+00 0.20116046e+01 0.93827000e+00
- 1 321 0 0 -0.75010943e+00 -0.27956201e+00 0.87985072e+00 0.49360000e+00
- 2 -311 514 514 -0.22259952e+01 -0.31710717e+00 0.34060056e+01 0.49767000e+00
- 1 -211 0 0 -0.12229524e+00 0.11718040e+00 0.56943413e+00 0.13957000e+00
- 2 213 515 516 -0.81352110e+00 -0.77618853e+00 0.61834876e+00 0.86553003e+00
- 2 113 517 518 -0.93677364e+00 0.88734739e-01 0.59754902e+00 0.83057642e+00
- 2 223 519 521 -0.35225996e+00 0.37560121e+00 -0.43992408e+00 0.78211590e+00
- 2 -213 522 523 -0.11074406e+01 0.98422770e+00 -0.70144321e+00 0.79724610e+00
- 2 323 524 525 0.39372728e+01 -0.32997173e+00 -0.48381672e+01 0.81365485e+00
- 1 -321 0 0 0.19512426e+00 -0.64309511e+00 -0.15430193e+01 0.49360000e+00
- 2 213 526 527 0.10075728e+01 0.35521872e+00 -0.16006546e+01 0.72870859e+00
- 2 313 528 529 0.25703109e+01 -0.14645565e+01 -0.40059100e+01 0.87122565e+00
- 2 -323 530 531 0.33930095e+00 -0.59151322e+00 -0.73637160e+00 0.87645511e+00
- 2 2224 532 533 0.10794459e+01 -0.86695790e+00 -0.51913210e+01 0.12305842e+01
- 1 -321 0 0 0.29952184e+00 -0.12029697e+01 -0.12103311e+01 0.49360000e+00
- 2 -3222 534 535 0.45527153e+00 -0.90087243e+00 -0.41400683e+01 0.11893700e+01
- 1 2212 0 0 0.90342197e-01 0.22424735e+00 -0.69966789e+01 0.93827000e+00
- 1 -2112 0 0 -0.21880008e-02 0.14060598e+00 -0.38900622e+01 0.93957000e+00
- 1 -211 0 0 0.55222469e-01 -0.26873840e+00 -0.37178002e+01 0.13957000e+00
- 2 323 536 537 0.11617215e+00 0.33156287e+00 -0.11563155e+03 0.88733555e+00
- 2 -311 538 538 -0.34101080e+00 0.30116679e-01 -0.54578971e+02 0.49767000e+00
- 1 -211 0 0 0.29600578e+00 -0.16061802e+00 -0.11647942e+02 0.13957000e+00
- 2 111 539 540 -0.22133297e+00 -0.25670137e+00 -0.35467624e+02 0.13498000e+00
- 2 323 541 542 0.31781297e+00 -0.40723165e+00 -0.94724158e+03 0.88463297e+00
- 2 -323 543 544 0.18166625e+00 -0.12273289e+00 -0.19925746e+03 0.85967250e+00
- 1 211 0 0 -0.29426837e+00 0.13774736e+00 -0.24134546e+03 0.13957000e+00
- 1 2112 0 0 0.10507877e+00 -0.27137276e+00 -0.64303487e+03 0.93957000e+00
- 2 92 253 256 0.00000000e+00 0.00000000e+00 0.56673423e+02 0.51752275e+01
- 1 -211 0 0 -0.87167700e+00 -0.10519499e+01 0.27225901e+02 0.13957000e+00
- 2 323 545 546 -0.22493823e+00 0.11113270e+00 0.11241791e+02 0.91426126e+00
- 1 -321 0 0 0.14463967e+01 0.11783672e+01 0.13025686e+02 0.49360000e+00
- 1 211 0 0 -0.34978147e+00 -0.23755001e+00 0.51800449e+01 0.13957000e+00
- 2 92 258 293 -0.73659217e+01 0.42296678e+01 -0.39227216e+04 0.12700502e+03
- 2 223 547 549 0.24901031e+01 0.91665882e+00 -0.12592776e+02 0.78577734e+00
- 2 111 550 551 0.21661366e+01 0.36064850e+00 -0.86336247e+01 0.13498000e+00
- 2 213 552 553 0.15792349e+01 0.73628290e+00 -0.12044601e+02 0.74930221e+00
- 2 313 554 555 0.10316525e+01 0.75548049e+00 -0.51572326e+01 0.97168160e+00
- 2 -313 556 557 -0.48515100e+00 0.35769214e-01 -0.49774627e+01 0.84616739e+00
- 2 -213 558 559 0.21795617e+00 0.22830656e+00 -0.29080188e+01 0.66135292e+00
- 1 2212 0 0 -0.17173638e+01 -0.10347187e+01 -0.19742405e+02 0.93827000e+00
- 1 211 0 0 -0.21796311e+01 -0.18118300e+00 -0.11506104e+02 0.13957000e+00
- 2 -2224 560 561 -0.94512877e+00 0.24781559e+00 -0.16445915e+02 0.12266178e+01
- 2 213 562 563 -0.11845123e+01 0.15204702e+01 -0.47009570e+02 0.72561390e+00
- 1 -211 0 0 -0.24567613e+00 0.13941404e+00 -0.17139281e+02 0.13957000e+00
- 2 113 564 565 -0.20854345e+00 0.22789908e+00 -0.12596254e+02 0.71920311e+00
- 2 223 566 568 -0.90440609e+00 0.74548317e+00 -0.24134613e+02 0.78380533e+00
- 2 223 569 571 -0.54652812e+00 0.67403102e+00 -0.17393491e+02 0.76937225e+00
- 2 223 572 573 -0.17426286e+01 0.23502590e+00 -0.85328404e+02 0.77388028e+00
- 2 213 574 575 -0.11159506e+01 -0.11496355e+00 -0.69798837e+02 0.79967250e+00
- 1 -211 0 0 -0.12208996e+01 -0.54989996e+00 -0.52502048e+02 0.13957000e+00
- 2 113 576 577 -0.19875605e+00 -0.92709316e-01 -0.86787950e+02 0.92734547e+00
- 1 211 0 0 -0.24151184e+01 0.21608683e-01 -0.11060872e+03 0.13957000e+00
- 2 223 578 580 -0.90990537e+00 -0.10151322e+01 -0.19770781e+03 0.78391195e+00
- 1 -211 0 0 0.33236173e+00 -0.16561430e+00 -0.24958877e+03 0.13957000e+00
- 1 211 0 0 -0.68706180e+00 -0.16287137e+00 -0.24165892e+03 0.13957000e+00
- 1 2112 0 0 -0.11938724e+01 -0.79135445e+00 -0.65764610e+03 0.93957000e+00
- 1 -2212 0 0 -0.12549391e+01 -0.32404625e+00 -0.60954686e+03 0.93827000e+00
- 1 2212 0 0 -0.64454271e+00 0.20366766e+00 -0.34178301e+03 0.93827000e+00
- 1 -2212 0 0 0.92631364e-01 0.15233519e+00 -0.19128789e+03 0.93827000e+00
- 2 111 581 582 -0.11707546e+00 0.59138590e-01 -0.13482468e+03 0.13498000e+00
- 2 213 583 584 -0.29177408e+00 0.70733151e-01 -0.26193649e+03 0.79651863e+00
- 2 -213 585 586 0.55448288e+00 0.43252756e+00 -0.10684233e+03 0.77328618e+00
- 1 211 0 0 -0.25973323e+00 0.30155480e+00 -0.14670311e+03 0.13957000e+00
- 1 -211 0 0 0.19169536e+00 0.35796264e+00 -0.15034775e+02 0.13957000e+00
- 1 211 0 0 0.59818361e+00 -0.17528059e+00 -0.74311890e+02 0.13957000e+00
- 2 313 587 588 0.10543295e+01 0.25118806e+00 -0.36143898e+02 0.84219651e+00
- 2 -311 589 589 0.86688158e+00 -0.47637123e+00 -0.17059360e+02 0.49767000e+00
- 2 313 590 591 0.87717526e+00 0.48375561e+00 -0.13113595e+02 0.10368143e+01
- 2 -323 592 593 0.10504521e+01 0.15605529e+00 -0.10224824e+02 0.90845822e+00
- 2 92 295 315 0.10514020e+01 -0.84953158e+00 0.19261958e+03 0.13356527e+03
- 2 -311 594 594 -0.36317715e+00 0.30875770e+00 0.76609436e+00 0.49767000e+00
- 1 -211 0 0 -0.21718746e+00 0.56861170e-01 -0.70716454e-01 0.13957000e+00
- 1 321 0 0 0.22431223e+00 -0.10274671e+01 0.13105540e+01 0.49360000e+00
- 2 333 595 596 -0.49235073e+00 0.45547576e+00 0.49439998e+00 0.10225293e+01
- 2 -313 597 598 0.78580222e+00 -0.24287291e+00 0.18666196e+02 0.90170464e+00
- 2 1114 599 600 -0.14184413e+00 -0.66867749e+00 0.81578600e+02 0.13147664e+01
- 2 113 601 602 0.98264362e+00 -0.82742730e+00 0.45967814e+02 0.72082001e+00
- 2 -2114 603 604 -0.87245715e+00 -0.40077680e+00 0.42142665e+02 0.12622317e+01
- 2 323 605 606 0.33631566e+00 -0.30379734e+00 0.10295608e+02 0.91591587e+00
- 2 -323 607 608 0.24904169e+00 -0.18935496e+00 0.79464272e+01 0.87805971e+00
- 2 113 609 610 0.19572220e+00 -0.15318908e+00 0.17158154e+01 0.73002729e+00
- 2 213 611 612 -0.11587298e+00 0.35430731e+00 0.12911619e+00 0.68378271e+00
- 2 -213 613 614 0.57836585e+00 -0.18502346e+00 -0.84206863e+00 0.71208085e+00
- 2 221 615 617 -0.13761950e+00 0.71281532e-01 -0.23978272e+01 0.54745000e+00
- 1 211 0 0 -0.14051035e+00 0.16295326e+00 -0.12122261e+01 0.13957000e+00
- 2 -213 618 619 -0.41879172e-01 0.42656175e+00 -0.53816914e+01 0.85923390e+00
- 2 213 620 621 0.32546580e+00 0.81692915e+00 -0.15665219e+01 0.81978115e+00
- 2 313 622 623 -0.38895701e+00 0.32064446e+00 -0.38490456e+01 0.74035896e+00
- 2 -313 624 625 0.34178400e-01 -0.19795011e+00 -0.11647337e+01 0.85220740e+00
- 2 -213 626 627 -0.25465292e+00 0.61925839e-01 -0.11743532e+01 0.87138675e+00
- 2 323 628 629 0.50606288e+00 0.31130708e+00 -0.73453046e+00 0.81607538e+00
- 2 421 630 633 0.85099985e+00 0.15074786e+00 -0.13544870e+00 0.18645000e+01
- 1 211 0 0 0.25070183e-01 0.94160322e-02 -0.29320968e-01 0.13957000e+00
- 1 2112 0 0 -0.50130132e+00 -0.29539382e+00 -0.12314170e+01 0.93957000e+00
- 1 -211 0 0 -0.12112077e+00 -0.49593209e-01 -0.66296625e+00 0.13957000e+00
- 1 211 0 0 -0.41692325e+00 -0.15665206e+00 -0.62028844e+00 0.13957000e+00
- 1 -211 0 0 -0.11702292e+00 -0.16763219e+00 -0.19658550e+00 0.13957000e+00
- 2 111 634 635 0.31526657e-01 0.19110081e+00 -0.13248410e+00 0.13498000e+00
- 1 211 0 0 -0.47014507e+00 0.10262845e+01 -0.18576348e+01 0.13957000e+00
- 1 -211 0 0 -0.26369137e+00 0.21045310e+00 -0.96302817e-01 0.13957000e+00
- 1 -211 0 0 -0.23422336e+01 0.12528555e+01 -0.26280614e+01 0.13957000e+00
- 1 211 0 0 -0.92305486e+00 0.25372231e+00 -0.12591157e+01 0.13957000e+00
- 2 111 636 637 -0.86710864e+00 0.23195820e+00 -0.83527887e+00 0.13498000e+00
- 1 -211 0 0 -0.22098183e+01 0.14402003e+01 -0.34178588e+01 0.13957000e+00
- 1 211 0 0 -0.33024775e+01 0.22754771e+01 -0.50262012e+01 0.13957000e+00
- 2 111 638 639 -0.14903258e+01 0.72677636e+00 -0.17789737e+01 0.13498000e+00
- 1 211 0 0 -0.31161161e+01 0.20570093e+01 -0.43314532e+01 0.13957000e+00
- 2 111 640 641 -0.34462181e+00 0.53659921e+00 -0.92253455e+00 0.13498000e+00
- 1 -2212 0 0 -0.28813707e+01 0.17466080e+01 -0.45933134e+01 0.93827000e+00
- 1 -211 0 0 -0.22994836e+01 0.16589682e+01 -0.34500491e+01 0.13957000e+00
- 1 211 0 0 -0.25420198e+00 -0.29793211e+00 -0.16371083e+01 0.13957000e+00
- 2 111 642 643 -0.18473236e-01 0.46894593e+00 -0.26010344e+01 0.13498000e+00
- 1 130 0 0 -0.10259075e+01 0.16193380e+01 -0.30985353e+01 0.49767000e+00
- 1 130 0 0 -0.32632346e+00 -0.38243225e-01 -0.33446053e+01 0.49767000e+00
- 1 321 0 0 0.25651184e+00 0.42161583e+00 -0.48135203e+01 0.49360000e+00
- 1 -211 0 0 -0.30403407e+00 0.33800117e+00 -0.42010178e+01 0.13957000e+00
- 2 -311 644 644 -0.39260820e+00 0.29900198e+00 -0.64104355e+01 0.49767000e+00
- 1 -211 0 0 0.16865494e-01 0.61298888e-01 -0.27089575e+00 0.13957000e+00
- 1 211 0 0 -0.12660083e+00 0.16202415e+01 -0.20479650e+02 0.13957000e+00
- 2 111 645 646 -0.14240663e+01 0.45265855e+01 -0.51335609e+02 0.13498000e+00
- 1 -211 0 0 -0.11291127e+01 0.38623463e+01 -0.52826300e+02 0.13957000e+00
- 2 111 647 648 -0.43627261e+00 0.54876596e+00 -0.82667263e+01 0.13498000e+00
- 1 22 0 0 0.16346211e+00 0.38011394e+00 -0.40908155e+01 0.00000000e+00
- 2 111 649 650 -0.81689035e+00 0.37196191e+01 -0.48714064e+02 0.13498000e+00
- 1 2112 0 0 -0.49959268e+00 0.32436594e+01 -0.42409805e+02 0.93957000e+00
- 1 -211 0 0 -0.72490868e-02 0.10299578e+00 -0.17805386e+01 0.13957000e+00
- 1 -2112 0 0 -0.54956928e+00 0.54243230e+00 -0.94966624e+01 0.93957000e+00
- 1 211 0 0 0.49128094e-01 -0.53270371e-01 -0.19075652e+01 0.13957000e+00
- 2 310 651 652 -0.71174693e+00 0.36437230e+00 -0.31374619e+01 0.49767000e+00
- 1 -321 0 0 -0.31240666e+00 0.44478366e+00 -0.51166349e+01 0.49360000e+00
- 2 111 653 654 -0.51790799e-01 -0.23364059e+00 -0.18446115e+01 0.13498000e+00
- 1 22 0 0 -0.19186054e-01 0.52477209e-02 -0.65968990e-01 0.00000000e+00
- 1 22 0 0 0.38642243e-01 0.53028325e-01 0.46858302e-01 0.00000000e+00
- 1 211 0 0 -0.55400240e+00 -0.18493084e-01 -0.31910203e+01 0.13957000e+00
- 2 111 655 656 0.21713754e+00 0.37156909e-01 -0.95853108e+00 0.13498000e+00
- 1 -321 0 0 -0.20233022e+00 0.51572059e+00 -0.11372913e+01 0.49360000e+00
- 1 211 0 0 0.21760867e+00 0.21247704e+00 -0.86052919e+00 0.13957000e+00
- 2 -3122 657 658 -0.72869026e+00 -0.32226276e+00 -0.17514825e+01 0.11156800e+01
- 1 22 0 0 0.25010572e-01 -0.31282828e-01 -0.14485961e+00 0.00000000e+00
- 1 321 0 0 0.47342268e+00 -0.65412228e+00 0.23227702e+00 0.49360000e+00
- 1 -211 0 0 -0.69394582e-01 0.26443186e-01 -0.89010580e-01 0.13957000e+00
- 1 -321 0 0 0.72623660e+00 -0.13295421e+00 0.41617877e+00 0.49360000e+00
- 1 211 0 0 0.13031318e+01 -0.36365913e+00 0.10867916e+01 0.13957000e+00
- 1 321 0 0 0.79845109e+00 -0.53259742e+00 0.13128727e+01 0.49360000e+00
- 1 -211 0 0 0.49141334e-01 0.16852930e+00 0.30988786e+00 0.13957000e+00
- 2 -311 659 659 0.53373121e+00 0.27154602e+00 0.12637284e+01 0.49767000e+00
- 1 -211 0 0 0.60490456e+00 -0.14687366e+00 0.19824316e+01 0.13957000e+00
- 1 211 0 0 0.55329780e-01 -0.48874264e-01 0.88830514e-01 0.13957000e+00
- 2 111 660 661 0.38192893e+00 0.20522723e+00 0.17293118e+01 0.13498000e+00
- 1 -211 0 0 0.16867552e+00 -0.31048955e+00 0.48546126e+00 0.13957000e+00
- 2 111 662 663 0.32697173e+00 0.40118098e+00 0.10162485e+01 0.13498000e+00
- 1 -211 0 0 0.19027364e+00 -0.11817276e-01 0.50035411e+00 0.13957000e+00
- 1 211 0 0 0.78705425e-01 0.99114523e-01 0.20720814e+01 0.13957000e+00
- 2 111 664 665 0.56455146e+00 0.77740904e-01 0.30159936e+01 0.13498000e+00
- 1 -2212 0 0 0.60736379e+00 0.14850138e+01 0.90547430e+01 0.93827000e+00
- 2 111 666 667 0.16676614e+00 0.50980835e-01 0.12786752e+01 0.13498000e+00
- 1 22 0 0 0.84023044e-02 0.17665663e-01 0.16879237e-01 0.00000000e+00
- 1 22 0 0 0.48207542e+00 -0.13576612e+00 0.77538803e+00 0.00000000e+00
- 2 311 668 668 0.14376279e+01 0.14199407e+01 0.28739408e+02 0.49767000e+00
- 1 211 0 0 0.31162118e-01 -0.18064229e-02 0.15256658e+01 0.13957000e+00
- 1 -321 0 0 0.64571573e+00 0.35363353e+00 0.11391069e+02 0.49360000e+00
- 2 111 669 670 0.61436517e-01 0.40342728e+00 0.26823787e+01 0.13498000e+00
- 1 211 0 0 0.15262428e+00 0.28498353e+00 0.63690221e+01 0.13957000e+00
- 2 111 671 672 -0.34076278e+00 0.71850257e+00 0.48096340e+01 0.13498000e+00
- 2 311 673 673 -0.12840666e-01 0.12734566e+01 0.12086397e+02 0.49767000e+00
- 1 211 0 0 -0.12228683e+00 0.11550474e+00 0.31758263e+01 0.13957000e+00
- 1 -321 0 0 0.21295481e+00 -0.14419358e+00 0.11527250e+01 0.49360000e+00
- 2 111 674 675 0.38693858e+00 0.28452564e+00 0.14930204e+01 0.13498000e+00
- 1 211 0 0 0.25132555e+00 -0.37980516e+00 0.62600341e+00 0.13957000e+00
- 1 -211 0 0 -0.10082163e-01 0.50563786e-01 0.26651480e+00 0.13957000e+00
- 2 111 676 677 0.18901342e+00 -0.51843670e+00 0.48957515e+00 0.13498000e+00
- 1 -211 0 0 0.32256169e+00 -0.12284724e+00 0.97222627e+00 0.13957000e+00
- 2 111 678 679 0.33176269e+00 -0.99110487e-01 0.97448932e-01 0.13498000e+00
- 1 211 0 0 -0.33990403e-01 -0.10224853e+00 -0.12569182e-01 0.13957000e+00
- 1 -211 0 0 0.75429713e-01 -0.24069935e-01 0.40841869e+00 0.13957000e+00
- 2 111 680 681 -0.27508521e+00 -0.38344539e+00 0.26660247e+00 0.13498000e+00
- 1 211 0 0 0.57851862e-01 -0.31040048e+00 0.22508801e+01 0.13957000e+00
- 1 -211 0 0 0.27681883e+00 -0.39520599e+00 0.13991524e+01 0.13957000e+00
- 2 111 682 683 0.13038108e+00 -0.42211649e+00 0.90113155e+00 0.13498000e+00
- 1 -211 0 0 -0.14213085e+00 0.19879378e-01 0.57552401e+00 0.13957000e+00
- 1 211 0 0 0.58325362e+00 -0.45338276e-01 0.40501199e+01 0.13957000e+00
- 2 311 684 684 0.16934927e+01 -0.20661797e+01 0.13281092e+02 0.49767000e+00
- 1 211 0 0 0.18715037e+00 -0.61232816e+00 0.21504959e+01 0.13957000e+00
- 1 321 0 0 0.10790718e+01 0.78101332e+00 -0.45826497e+00 0.49360000e+00
- 1 -211 0 0 0.66258134e+00 0.13392033e+00 0.20884206e+00 0.13957000e+00
- 1 -211 0 0 0.10834737e+00 0.37060160e+00 -0.21268816e+00 0.13957000e+00
- 2 111 685 686 0.69918159e-01 0.16389925e+00 -0.60306623e-01 0.13498000e+00
- 2 111 687 688 -0.62151559e-01 0.18984892e+00 -0.78927565e-01 0.13498000e+00
- 1 211 0 0 0.30436442e+00 -0.93292221e-01 0.20294927e+00 0.13957000e+00
- 2 111 689 690 0.47641021e+00 0.71795033e+00 0.20992288e+00 0.13498000e+00
- 2 111 691 692 0.76610712e-01 -0.30787436e+00 -0.52505920e+00 0.13498000e+00
- 2 111 693 694 -0.15894690e-01 -0.22693618e-01 -0.45507014e+00 0.13498000e+00
- 2 111 695 696 0.85441458e-01 -0.88038518e-01 -0.19911319e+00 0.13498000e+00
- 1 2112 0 0 0.19836513e+00 0.30467733e+00 -0.17949240e+02 0.93957000e+00
- 2 111 697 698 0.21873722e+00 0.25243150e+00 -0.95895472e+01 0.13498000e+00
- 1 22 0 0 -0.19703227e+00 -0.77604489e-01 -0.22749655e+01 0.00000000e+00
- 1 22 0 0 -0.15536270e+00 0.57652084e-01 -0.19562010e+01 0.00000000e+00
- 2 -311 699 699 0.53796629e-01 -0.17114465e+00 -0.46062365e+02 0.49767000e+00
- 1 -211 0 0 -0.95058473e-01 -0.56581730e+00 -0.75116327e+02 0.13957000e+00
- 2 311 700 700 0.44810486e+00 -0.23143207e+00 -0.85048001e+02 0.49767000e+00
- 1 211 0 0 0.69054463e-01 -0.30997605e-01 -0.32548096e+01 0.13957000e+00
- 1 -321 0 0 -0.82907028e+00 -0.20070016e+00 0.27004422e+01 0.49360000e+00
- 1 211 0 0 -0.81048072e+00 -0.72997788e+00 0.29107524e+01 0.13957000e+00
- 1 22 0 0 -0.20525991e+00 -0.58397338e+00 0.11883346e+01 0.00000000e+00
- 1 22 0 0 -0.49412330e-01 -0.45369494e+00 0.77282538e+00 0.00000000e+00
- 1 -211 0 0 0.71849605e-01 -0.43438622e+00 0.13278379e+02 0.13957000e+00
- 2 111 701 702 -0.21813439e+00 0.22029883e+00 0.22504174e+01 0.13498000e+00
- 1 -211 0 0 0.40861035e-02 0.64319434e-01 0.99519712e+00 0.13957000e+00
- 1 211 0 0 -0.10779538e+00 -0.58324130e+00 0.19822075e+02 0.13957000e+00
- 1 211 0 0 -0.14001618e+00 0.23520569e+00 0.81818813e+01 0.13957000e+00
- 1 -211 0 0 0.53038978e-01 0.37650116e+00 0.69635925e+01 0.13957000e+00
- 2 111 703 704 -0.36690053e+00 0.15776139e+00 0.75334070e+01 0.13498000e+00
- 1 22 0 0 0.24610491e+00 -0.29484030e+00 0.11405186e+02 0.00000000e+00
- 1 22 0 0 0.23959125e+00 -0.15542427e+00 0.64312616e+01 0.00000000e+00
- 1 211 0 0 0.21394117e+00 -0.18358349e+00 0.41321593e+02 0.13957000e+00
- 1 -211 0 0 -0.32385250e+00 0.25660683e+00 0.28217995e+02 0.13957000e+00
- 1 22 0 0 -0.95564917e-01 -0.19461640e-01 0.82323717e+00 0.00000000e+00
- 1 22 0 0 -0.12028002e+00 -0.71738742e-01 0.34074347e+01 0.00000000e+00
- 1 211 0 0 0.38320088e+00 -0.28890383e+00 0.54909751e+02 0.13957000e+00
- 2 111 705 706 -0.29048321e+00 -0.23385968e-01 0.40863624e+02 0.13498000e+00
- 2 3122 707 708 0.76636358e+00 -0.86775665e+00 0.95904898e+03 0.11156800e+01
- 1 22 0 0 -0.31078742e-01 -0.70713479e-01 0.55292330e+02 0.00000000e+00
- 1 321 0 0 -0.35812214e+00 -0.41301156e+00 0.38213382e+03 0.49360000e+00
- 1 -211 0 0 0.21125612e+00 -0.33602137e+00 0.28780863e+03 0.13957000e+00
- 1 -321 0 0 -0.17955950e+00 0.77837974e-01 0.12357876e+03 0.49360000e+00
- 1 211 0 0 0.23592933e+00 0.19782593e+00 0.43472205e+02 0.13957000e+00
- 1 -321 0 0 0.62605974e+00 0.11289922e+00 0.52108995e+02 0.49360000e+00
- 1 211 0 0 0.31290522e-01 0.18947042e+00 0.65315583e+01 0.13957000e+00
- 1 -2112 0 0 -0.55244242e-01 0.13527841e+00 0.33464456e+02 0.93957000e+00
- 1 -211 0 0 -0.35962043e-01 0.27327920e+00 0.98815346e+01 0.13957000e+00
- 1 211 0 0 0.16937058e+00 0.16400152e+00 0.44137702e+01 0.13957000e+00
- 2 111 709 710 0.15075870e+01 0.48595188e+00 0.69349617e+02 0.13498000e+00
- 2 -3122 711 712 -0.28621185e-01 0.20700114e+00 0.14800951e+02 0.11156800e+01
- 2 111 713 714 0.20240236e+00 0.29691289e-01 0.15577815e+01 0.13498000e+00
- 2 310 715 716 -0.22560389e+00 0.13629254e+00 0.25814752e+02 0.49767000e+00
- 1 -211 0 0 0.27453158e+00 -0.23793654e+00 0.31645590e+02 0.13957000e+00
- 1 211 0 0 0.59970854e-01 -0.39130173e+00 0.24494344e+02 0.13957000e+00
- 2 111 717 718 -0.92911507e-01 0.45641423e-01 0.18078217e+02 0.13498000e+00
- 1 -211 0 0 -0.23008140e+00 0.40314685e+00 0.21888856e+02 0.13957000e+00
- 1 211 0 0 0.11295410e+00 -0.16550554e+00 0.31991880e+01 0.13957000e+00
- 1 22 0 0 -0.93848167e-02 0.13417265e+00 0.17743434e+01 0.00000000e+00
- 1 22 0 0 0.77972527e-01 0.23924665e+00 0.17860904e+01 0.00000000e+00
- 2 -3122 719 720 0.29228403e+01 0.16092915e+01 0.93073996e+02 0.11156800e+01
- 1 -211 0 0 0.70596406e+00 0.17072112e+00 0.25013999e+02 0.13957000e+00
- 2 -311 721 721 0.17356138e+01 0.11951724e+01 0.67632828e+02 0.49767000e+00
- 1 -211 0 0 0.16037829e+00 -0.68967869e-01 0.87102295e+01 0.13957000e+00
- 1 211 0 0 0.81029572e+00 -0.10763055e+00 0.26790990e+02 0.13957000e+00
- 1 -211 0 0 0.11585229e+01 0.45076802e+00 0.27594689e+02 0.13957000e+00
- 1 211 0 0 0.13666288e+00 0.82500691e+00 0.21588783e+02 0.13957000e+00
- 2 111 722 723 0.32374080e+00 0.22604606e-01 0.95593352e+01 0.13498000e+00
- 1 -211 0 0 0.10764755e+01 -0.13896661e+00 0.39850383e+02 0.13957000e+00
- 2 111 724 725 0.10715249e+01 0.46649222e+00 0.28080276e+02 0.13498000e+00
- 1 211 0 0 0.49970884e-01 -0.84790673e-01 0.10597783e+03 0.13957000e+00
- 2 111 726 727 -0.65519032e-01 0.13069843e+00 0.77998252e+01 0.13498000e+00
- 1 2112 0 0 0.67935000e+00 -0.33615156e+00 0.36263241e+03 0.93957000e+00
- 1 -211 0 0 0.23102030e+00 0.30803247e+00 0.14037313e+03 0.13957000e+00
- 1 211 0 0 0.60953071e-01 0.95093032e-01 0.78361190e+02 0.13957000e+00
- 2 111 728 729 -0.28215841e+00 -0.55271456e+00 0.69827992e+02 0.13498000e+00
- 1 321 0 0 -0.70288935e+00 -0.27446223e+00 0.16335586e+03 0.49360000e+00
- 1 -211 0 0 -0.65116767e-01 -0.59641251e+00 0.80095431e+02 0.13957000e+00
- 1 130 0 0 0.23420383e+00 -0.50566910e+00 0.67252496e+02 0.49767000e+00
- 1 -211 0 0 -0.17557044e+00 -0.54899097e+00 0.97856900e+02 0.13957000e+00
- 1 211 0 0 -0.19721066e+00 0.35369486e-01 0.32074693e+02 0.13957000e+00
- 2 111 730 731 -0.13562830e-01 0.13315910e-01 0.13960525e+02 0.13498000e+00
- 1 -211 0 0 0.12252872e+00 -0.50785094e+00 0.86270050e+02 0.13957000e+00
- 2 111 732 733 -0.87861938e+00 -0.15297805e+01 0.16418008e+03 0.13498000e+00
- 1 2212 0 0 0.15265375e+01 -0.44957295e+00 0.15645078e+03 0.93827000e+00
- 1 -211 0 0 0.94009024e-01 -0.80187346e-01 0.12790720e+02 0.13957000e+00
- 1 -2212 0 0 0.44954293e+00 -0.28576428e+01 0.21986046e+03 0.93827000e+00
- 1 211 0 0 -0.37911194e-01 -0.51665732e+00 0.39408187e+02 0.13957000e+00
- 2 -311 734 734 0.69067796e+00 -0.11711192e+01 0.99874329e+02 0.49767000e+00
- 1 -211 0 0 -0.71752319e-01 -0.18156544e+00 0.31181484e+02 0.13957000e+00
- 1 22 0 0 0.56602823e+00 -0.64903737e+00 0.44603490e+02 0.00000000e+00
- 1 22 0 0 0.95473849e+00 -0.84602958e+00 0.65433133e+02 0.00000000e+00
- 1 321 0 0 -0.10043929e+01 0.51407309e+00 0.11840092e+02 0.49360000e+00
- 1 -211 0 0 0.57475298e-01 -0.20641823e-01 0.96761821e+00 0.13957000e+00
- 2 -311 735 735 -0.15659201e+01 -0.24825767e+00 0.16644295e+02 0.49767000e+00
- 1 -211 0 0 -0.16774416e+00 -0.24689325e+00 0.50533800e+01 0.13957000e+00
- 2 111 736 737 -0.27899468e+00 0.42336858e+00 0.31254374e+01 0.13498000e+00
- 2 111 738 739 -0.32386171e+00 0.32329768e+00 0.31175891e+01 0.13498000e+00
- 2 111 740 741 -0.95930754e+00 0.69564073e+00 0.73375257e+01 0.13498000e+00
- 1 130 0 0 -0.38524076e+00 0.27799234e+00 0.30681429e+01 0.49767000e+00
- 2 310 742 743 -0.34242471e+00 0.50619469e+00 0.36373648e+01 0.49767000e+00
- 1 -321 0 0 -0.49558750e+00 0.37321101e+00 0.38099286e+01 0.49360000e+00
- 1 211 0 0 -0.92118462e+00 0.11083889e+01 0.73537755e+01 0.13957000e+00
- 2 311 744 744 -0.14125776e+01 -0.17244017e+00 0.34149979e+01 0.49767000e+00
- 1 211 0 0 -0.21477111e+01 0.89577737e-01 0.52424131e+01 0.13957000e+00
- 1 -321 0 0 -0.56759058e+00 -0.41390848e+00 0.92192543e+00 0.49360000e+00
- 1 211 0 0 -0.69152590e+00 -0.60224112e-01 0.12320438e+01 0.13957000e+00
- 2 310 745 746 -0.22259952e+01 -0.31710717e+00 0.34060056e+01 0.49767000e+00
- 1 211 0 0 0.10019389e+00 -0.87631792e-01 -0.70735560e-01 0.13957000e+00
- 2 111 747 748 -0.91371499e+00 -0.68855674e+00 0.68908432e+00 0.13498000e+00
- 1 -211 0 0 -0.14866986e+00 0.33949827e+00 0.31170170e+00 0.13957000e+00
- 1 211 0 0 -0.78810378e+00 -0.25076353e+00 0.28584732e+00 0.13957000e+00
- 1 -211 0 0 -0.11445884e+00 0.35364303e+00 -0.23216683e+00 0.13957000e+00
- 1 211 0 0 0.99686259e-01 0.16058772e-01 -0.66678083e-01 0.13957000e+00
- 2 111 749 750 -0.33748738e+00 0.58994145e-02 -0.14107917e+00 0.13498000e+00
- 1 -211 0 0 -0.11074890e+00 0.49427968e+00 -0.41075711e+00 0.13957000e+00
- 2 111 751 752 -0.99669167e+00 0.48994802e+00 -0.29068610e+00 0.13498000e+00
- 2 311 753 753 0.25284779e+01 -0.20492662e+00 -0.34647962e+01 0.49767000e+00
- 1 211 0 0 0.14087949e+01 -0.12504511e+00 -0.13733710e+01 0.13957000e+00
- 1 211 0 0 0.77694661e+00 0.31485563e+00 -0.65132300e+00 0.13957000e+00
- 2 111 754 755 0.23062620e+00 0.40363081e-01 -0.94933157e+00 0.13498000e+00
- 1 321 0 0 0.12687551e+01 -0.10212120e+01 -0.22161892e+01 0.49360000e+00
- 1 -211 0 0 0.13015558e+01 -0.44334453e+00 -0.17897208e+01 0.13957000e+00
- 2 -311 756 756 0.38745497e-01 -0.59632173e+00 -0.48533497e+00 0.49767000e+00
- 1 -211 0 0 0.30055545e+00 0.48085089e-02 -0.25103663e+00 0.13957000e+00
- 1 2212 0 0 0.70897796e+00 -0.57104203e+00 -0.42794876e+01 0.93827000e+00
- 1 211 0 0 0.37046795e+00 -0.29591586e+00 -0.91183333e+00 0.13957000e+00
- 1 -2212 0 0 0.39441145e+00 -0.50290509e+00 -0.30312227e+01 0.93827000e+00
- 2 111 757 758 0.60860075e-01 -0.39796735e+00 -0.11088455e+01 0.13498000e+00
- 2 311 759 759 0.14632195e+00 0.45279583e+00 -0.10522377e+03 0.49767000e+00
- 1 211 0 0 -0.30149802e-01 -0.12123296e+00 -0.10407781e+02 0.13957000e+00
- 1 130 0 0 -0.34101080e+00 0.30116679e-01 -0.54578971e+02 0.49767000e+00
- 1 22 0 0 -0.19855623e+00 -0.27245953e+00 -0.32732011e+02 0.00000000e+00
- 1 22 0 0 -0.22776742e-01 0.15758154e-01 -0.27356125e+01 0.00000000e+00
- 1 321 0 0 0.48011129e+00 -0.25315125e+00 -0.58570590e+03 0.49360000e+00
- 2 111 760 761 -0.16229831e+00 -0.15408040e+00 -0.36153569e+03 0.13498000e+00
- 2 -311 762 762 -0.17117509e-01 -0.28642375e+00 -0.11067835e+03 0.49767000e+00
- 1 -211 0 0 0.19878376e+00 0.16369087e+00 -0.88579112e+02 0.13957000e+00
- 2 311 763 763 -0.88448415e-01 0.72380383e-01 0.10536409e+02 0.49767000e+00
- 1 211 0 0 -0.13648981e+00 0.38752314e-01 0.70538265e+00 0.13957000e+00
- 1 211 0 0 0.55232693e+00 0.25103128e+00 -0.31448813e+01 0.13957000e+00
- 1 -211 0 0 0.12277659e+01 0.13766570e+00 -0.57115620e+01 0.13957000e+00
- 2 111 764 765 0.71001027e+00 0.52796184e+00 -0.37363328e+01 0.13498000e+00
- 1 22 0 0 0.84676152e-01 -0.12054712e-01 -0.33887054e+00 0.00000000e+00
- 1 22 0 0 0.20814604e+01 0.37270321e+00 -0.82947542e+01 0.00000000e+00
- 1 211 0 0 0.14051675e+01 0.84231185e+00 -0.10826210e+02 0.13957000e+00
- 2 111 766 767 0.17406739e+00 -0.10602895e+00 -0.12183913e+01 0.13498000e+00
- 1 321 0 0 0.87775050e+00 0.25293746e+00 -0.29191329e+01 0.49360000e+00
- 1 -211 0 0 0.15390198e+00 0.50254303e+00 -0.22380998e+01 0.13957000e+00
- 1 -321 0 0 -0.90844851e-01 -0.86931363e-01 -0.20401391e+01 0.49360000e+00
- 1 211 0 0 -0.39430615e+00 0.12270058e+00 -0.29373235e+01 0.13957000e+00
- 1 -211 0 0 0.37997631e+00 0.83468474e-01 -0.11422802e+01 0.13957000e+00
- 2 111 768 769 -0.16202015e+00 0.14483809e+00 -0.17657386e+01 0.13498000e+00
- 1 -2212 0 0 -0.50717595e+00 0.14898168e+00 -0.10115898e+02 0.93827000e+00
- 1 -211 0 0 -0.43795282e+00 0.98833908e-01 -0.63300174e+01 0.13957000e+00
- 1 211 0 0 -0.79293411e+00 0.12500662e+01 -0.40018386e+02 0.13957000e+00
- 2 111 770 771 -0.39157821e+00 0.27040404e+00 -0.69911845e+01 0.13498000e+00
- 1 211 0 0 -0.12240419e+00 0.44610411e+00 -0.95027226e+01 0.13957000e+00
- 1 -211 0 0 -0.86139255e-01 -0.21820503e+00 -0.30935315e+01 0.13957000e+00
- 1 -211 0 0 -0.28502259e+00 0.40996448e+00 -0.81339851e+01 0.13957000e+00
- 1 211 0 0 -0.19830797e+00 0.86379195e-01 -0.21509847e+01 0.13957000e+00
- 2 111 772 773 -0.42107553e+00 0.24913950e+00 -0.13849643e+02 0.13498000e+00
- 1 -211 0 0 -0.11286779e-01 0.30852062e+00 -0.36636701e+01 0.13957000e+00
- 1 211 0 0 -0.71161133e-01 0.45490656e-01 -0.55867805e+01 0.13957000e+00
- 2 111 774 775 -0.46408021e+00 0.32001975e+00 -0.81430405e+01 0.13498000e+00
- 1 22 0 0 -0.17650582e+01 0.25322793e+00 -0.79191764e+02 0.00000000e+00
- 2 111 776 777 0.22429589e-01 -0.18202029e-01 -0.61366397e+01 0.13498000e+00
- 1 211 0 0 -0.71648722e+00 0.49428822e-01 -0.58444924e+02 0.13957000e+00
- 2 111 778 779 -0.39946342e+00 -0.16439237e+00 -0.11353913e+02 0.13498000e+00
- 1 -211 0 0 -0.58193435e-01 -0.36041182e+00 -0.17223049e+02 0.13957000e+00
- 1 211 0 0 -0.14056262e+00 0.26770250e+00 -0.69564901e+02 0.13957000e+00
- 1 211 0 0 -0.54827679e+00 -0.32704626e+00 -0.89888169e+02 0.13957000e+00
- 1 -211 0 0 -0.34247047e+00 -0.35794774e+00 -0.46726599e+02 0.13957000e+00
- 2 111 780 781 -0.19158105e-01 -0.33013824e+00 -0.61093039e+02 0.13498000e+00
- 1 22 0 0 0.17619120e-01 0.32785122e-01 -0.55621384e+02 0.00000000e+00
- 1 22 0 0 -0.13469458e+00 0.26353468e-01 -0.79203296e+02 0.00000000e+00
- 1 211 0 0 -0.34258362e+00 -0.22989310e+00 -0.89399518e+02 0.13957000e+00
- 2 111 782 783 0.50809537e-01 0.30062625e+00 -0.17253697e+03 0.13498000e+00
- 1 -211 0 0 0.53840926e+00 0.60745517e+00 -0.84675668e+02 0.13957000e+00
- 2 111 784 785 0.16073624e-01 -0.17492760e+00 -0.22166660e+02 0.13498000e+00
- 2 311 786 786 0.10813129e+01 0.19995223e+00 -0.29950630e+02 0.49767000e+00
- 2 111 787 788 -0.26983488e-01 0.51235835e-01 -0.61932684e+01 0.13498000e+00
- 2 310 789 790 0.86688158e+00 -0.47637123e+00 -0.17059360e+02 0.49767000e+00
- 2 311 791 791 0.99269007e+00 0.51693378e+00 -0.10175777e+02 0.49767000e+00
- 2 111 792 793 -0.11551481e+00 -0.33178170e-01 -0.29378186e+01 0.13498000e+00
- 2 -311 794 794 0.33986075e+00 -0.13409359e+00 -0.44910337e+01 0.49767000e+00
- 1 -211 0 0 0.71059130e+00 0.29014888e+00 -0.57337908e+01 0.13957000e+00
- 1 130 0 0 -0.36317715e+00 0.30875770e+00 0.76609436e+00 0.49767000e+00
- 1 130 0 0 -0.27301365e+00 0.26215957e+00 0.37671404e+00 0.49767000e+00
- 2 310 795 796 -0.21933708e+00 0.19331619e+00 0.11768594e+00 0.49767000e+00
- 1 -321 0 0 0.14716015e+00 -0.37283585e-01 0.64433312e+01 0.49360000e+00
- 1 211 0 0 0.63864206e+00 -0.20558932e+00 0.12222865e+02 0.13957000e+00
- 1 2112 0 0 -0.23401879e+00 -0.80885640e+00 0.67990810e+02 0.93957000e+00
- 1 -211 0 0 0.92174667e-01 0.14017892e+00 0.13587790e+02 0.13957000e+00
- 1 -211 0 0 -0.39698300e-01 -0.25017686e+00 0.98858202e+01 0.13957000e+00
- 1 211 0 0 0.10223419e+01 -0.57725044e+00 0.36081994e+02 0.13957000e+00
- 1 -2112 0 0 -0.83715395e+00 -0.35781009e+00 0.40954855e+02 0.93957000e+00
- 2 111 797 798 -0.35303204e-01 -0.42966706e-01 0.11878104e+01 0.13498000e+00
- 1 321 0 0 -0.76491648e-01 -0.17498299e+00 0.40940810e+01 0.49360000e+00
- 2 111 799 800 0.41280730e+00 -0.12881435e+00 0.62015266e+01 0.13498000e+00
- 2 -311 801 801 0.44781168e+00 -0.14465972e+00 0.57597500e+01 0.49767000e+00
- 1 -211 0 0 -0.19876998e+00 -0.44695233e-01 0.21866771e+01 0.13957000e+00
- 1 211 0 0 0.13080206e+00 0.16110206e+00 0.13573007e+01 0.13957000e+00
- 1 -211 0 0 0.64920143e-01 -0.31429114e+00 0.35851465e+00 0.13957000e+00
- 1 211 0 0 0.25232788e+00 0.78802054e-01 0.64678484e-01 0.13957000e+00
- 2 111 802 803 -0.36820086e+00 0.27550526e+00 0.64437707e-01 0.13498000e+00
- 1 -211 0 0 0.16238585e+00 0.24291538e+00 -0.28069668e+00 0.13957000e+00
- 2 111 804 805 0.41598001e+00 -0.42793884e+00 -0.56137195e+00 0.13498000e+00
- 1 211 0 0 0.21693185e-01 -0.10987887e+00 -0.10590371e+01 0.13957000e+00
- 1 -211 0 0 -0.44689167e-01 0.89854522e-01 -0.52013828e+00 0.13957000e+00
- 2 111 806 807 -0.11462352e+00 0.91305882e-01 -0.81865182e+00 0.13498000e+00
- 1 -211 0 0 0.19815078e+00 -0.12582881e+00 -0.27523522e+01 0.13957000e+00
- 2 111 808 809 -0.24002995e+00 0.55239056e+00 -0.26293392e+01 0.13498000e+00
- 1 211 0 0 0.20595317e+00 0.91472964e+00 -0.14671697e+01 0.13957000e+00
- 2 111 810 811 0.11951263e+00 -0.97800486e-01 -0.99352182e-01 0.13498000e+00
- 1 321 0 0 -0.45879399e+00 0.29458277e+00 -0.30617215e+01 0.49360000e+00
- 1 -211 0 0 0.69836988e-01 0.26061687e-01 -0.78732416e+00 0.13957000e+00
- 1 -321 0 0 0.70943964e-01 0.11874710e+00 -0.55846904e+00 0.49360000e+00
- 1 211 0 0 -0.36765564e-01 -0.31669721e+00 -0.60626465e+00 0.13957000e+00
- 1 -211 0 0 0.18076518e+00 -0.24432111e+00 -0.28023329e+00 0.13957000e+00
- 2 111 812 813 -0.43541810e+00 0.30624695e+00 -0.89411994e+00 0.13498000e+00
- 2 311 814 814 0.18555207e+00 0.25670470e+00 -0.66296233e+00 0.49767000e+00
- 1 211 0 0 0.32051081e+00 0.54602375e-01 -0.71568130e-01 0.13957000e+00
- 2 -311 815 815 0.31563256e+00 -0.19728116e+00 -0.27245787e+00 0.49767000e+00
- 1 321 0 0 0.38106179e+00 0.16100386e+00 -0.59790314e-01 0.49360000e+00
- 1 -321 0 0 0.11233412e+00 0.12393246e+00 0.23952039e+00 0.49360000e+00
- 2 111 816 817 0.41971379e-01 0.63092705e-01 -0.42720915e-01 0.13498000e+00
- 1 22 0 0 0.97956750e-02 -0.15466094e-01 0.79777589e-02 0.00000000e+00
- 1 22 0 0 0.21730982e-01 0.20656690e+00 -0.14046185e+00 0.00000000e+00
- 1 22 0 0 -0.52375071e+00 0.17973971e+00 -0.58449431e+00 0.00000000e+00
- 1 22 0 0 -0.34335793e+00 0.52218487e-01 -0.25078456e+00 0.00000000e+00
- 1 22 0 0 -0.14536765e+01 0.68412449e+00 -0.17049832e+01 0.00000000e+00
- 1 22 0 0 -0.36649300e-01 0.42651861e-01 -0.73990512e-01 0.00000000e+00
- 1 22 0 0 -0.28313002e+00 0.50209493e+00 -0.77283804e+00 0.00000000e+00
- 1 22 0 0 -0.61491791e-01 0.34504280e-01 -0.14969651e+00 0.00000000e+00
- 1 22 0 0 0.50518986e-01 0.32195216e+00 -0.17560992e+01 0.00000000e+00
- 1 22 0 0 -0.68992222e-01 0.14699377e+00 -0.84493516e+00 0.00000000e+00
- 2 310 818 819 -0.39260820e+00 0.29900198e+00 -0.64104355e+01 0.49767000e+00
- 1 22 0 0 -0.10373791e+01 0.33710651e+01 -0.37551884e+02 0.00000000e+00
- 1 22 0 0 -0.38668719e+00 0.11555203e+01 -0.13783726e+02 0.00000000e+00
- 1 22 0 0 -0.32667135e+00 0.30801118e+00 -0.50631399e+01 0.00000000e+00
- 1 22 0 0 -0.10960126e+00 0.24075478e+00 -0.32035864e+01 0.00000000e+00
- 1 22 0 0 -0.19065636e+00 0.82352860e+00 -0.11538150e+02 0.00000000e+00
- 1 22 0 0 -0.62623399e+00 0.28960905e+01 -0.37175914e+02 0.00000000e+00
- 1 211 0 0 -0.14844188e+00 0.24354917e+00 -0.72389248e+00 0.13957000e+00
- 1 -211 0 0 -0.56330504e+00 0.12082313e+00 -0.24135694e+01 0.13957000e+00
- 1 22 0 0 -0.38422809e-01 -0.16251863e+00 -0.16288233e+01 0.00000000e+00
- 1 22 0 0 -0.13367991e-01 -0.71121962e-01 -0.21578826e+00 0.00000000e+00
- 1 22 0 0 0.18061044e+00 0.70292159e-02 -0.49810984e+00 0.00000000e+00
- 1 22 0 0 0.36527107e-01 0.30127693e-01 -0.46042124e+00 0.00000000e+00
- 1 -2212 0 0 -0.69751755e+00 -0.35949509e+00 -0.15681893e+01 0.93827000e+00
- 1 211 0 0 -0.31172714e-01 0.37232323e-01 -0.18329323e+00 0.13957000e+00
- 2 310 820 821 0.53373121e+00 0.27154602e+00 0.12637284e+01 0.49767000e+00
- 1 22 0 0 0.18012828e+00 0.50437053e-01 0.53239922e+00 0.00000000e+00
- 1 22 0 0 0.20180064e+00 0.15479018e+00 0.11969126e+01 0.00000000e+00
- 1 22 0 0 0.19048620e+00 0.14457317e+00 0.38109281e+00 0.00000000e+00
- 1 22 0 0 0.13648552e+00 0.25660781e+00 0.63515573e+00 0.00000000e+00
- 1 22 0 0 0.43243828e+00 0.36951224e-01 0.25337940e+01 0.00000000e+00
- 1 22 0 0 0.13211318e+00 0.40789680e-01 0.48219958e+00 0.00000000e+00
- 1 22 0 0 0.41857287e-01 0.63332751e-01 0.76524306e+00 0.00000000e+00
- 1 22 0 0 0.12490885e+00 -0.12351916e-01 0.51343216e+00 0.00000000e+00
- 2 310 822 823 0.14376279e+01 0.14199407e+01 0.28739408e+02 0.49767000e+00
- 1 22 0 0 0.36781465e-01 0.28722766e+00 0.22364530e+01 0.00000000e+00
- 1 22 0 0 0.24655052e-01 0.11619962e+00 0.44592570e+00 0.00000000e+00
- 1 22 0 0 -0.28194879e+00 0.55139971e+00 0.40287809e+01 0.00000000e+00
- 1 22 0 0 -0.58813990e-01 0.16710285e+00 0.78085313e+00 0.00000000e+00
- 2 310 824 825 -0.12840666e-01 0.12734566e+01 0.12086397e+02 0.49767000e+00
- 1 22 0 0 0.36613060e-01 0.42327254e-01 0.34868178e+00 0.00000000e+00
- 1 22 0 0 0.35032552e+00 0.24219839e+00 0.11443387e+01 0.00000000e+00
- 1 22 0 0 0.13655353e+00 -0.34821501e+00 0.40960758e+00 0.00000000e+00
- 1 22 0 0 0.52459885e-01 -0.17022170e+00 0.79967565e-01 0.00000000e+00
- 1 22 0 0 0.25848323e-01 -0.30067961e-01 0.54886056e-01 0.00000000e+00
- 1 22 0 0 0.30591436e+00 -0.69042526e-01 0.42562875e-01 0.00000000e+00
- 1 22 0 0 -0.15240812e+00 -0.10525348e+00 0.79427966e-01 0.00000000e+00
- 1 22 0 0 -0.12267710e+00 -0.27819192e+00 0.18717450e+00 0.00000000e+00
- 1 22 0 0 0.73466878e-02 0.98641728e-02 0.32541707e-01 0.00000000e+00
- 1 22 0 0 0.12303439e+00 -0.43198066e+00 0.86858984e+00 0.00000000e+00
- 1 130 0 0 0.16934927e+01 -0.20661797e+01 0.13281092e+02 0.49767000e+00
- 1 22 0 0 0.87988552e-01 0.39572459e-01 -0.39213228e-01 0.00000000e+00
- 1 22 0 0 -0.18070393e-01 0.12432680e+00 -0.21093395e-01 0.00000000e+00
- 1 22 0 0 0.80535898e-02 -0.19055843e-01 -0.59197559e-02 0.00000000e+00
- 1 22 0 0 -0.70205149e-01 0.20890476e+00 -0.73007810e-01 0.00000000e+00
- 1 22 0 0 0.88309246e-01 0.13492017e+00 0.95413199e-01 0.00000000e+00
- 1 22 0 0 0.38810097e+00 0.58303015e+00 0.11450968e+00 0.00000000e+00
- 1 22 0 0 0.25564130e-01 -0.28821670e+00 -0.45582649e+00 0.00000000e+00
- 1 22 0 0 0.51046582e-01 -0.19657655e-01 -0.69232713e-01 0.00000000e+00
- 1 22 0 0 -0.12528489e-01 0.12115170e-01 0.15686779e-02 0.00000000e+00
- 1 22 0 0 -0.33662006e-02 -0.34808788e-01 -0.45663881e+00 0.00000000e+00
- 1 22 0 0 -0.82369434e-02 -0.66186363e-01 -0.14513706e+00 0.00000000e+00
- 1 22 0 0 0.93678402e-01 -0.21852155e-01 -0.53976137e-01 0.00000000e+00
- 1 22 0 0 0.37113862e-01 0.11936167e+00 -0.24151168e+01 0.00000000e+00
- 1 22 0 0 0.18162336e+00 0.13306984e+00 -0.71744304e+01 0.00000000e+00
- 2 310 826 827 0.53796629e-01 -0.17114465e+00 -0.46062365e+02 0.49767000e+00
- 2 310 828 829 0.44810486e+00 -0.23143207e+00 -0.85048001e+02 0.49767000e+00
- 1 22 0 0 0.11799001e-01 0.15314315e-01 0.46810296e-01 0.00000000e+00
- 1 22 0 0 -0.22993340e+00 0.20498451e+00 0.22036071e+01 0.00000000e+00
- 1 22 0 0 -0.22671268e+00 0.55786320e-01 0.33061934e+01 0.00000000e+00
- 1 22 0 0 -0.14018785e+00 0.10197507e+00 0.42272135e+01 0.00000000e+00
- 1 22 0 0 -0.14616341e+00 0.53360849e-01 0.22271975e+02 0.00000000e+00
- 1 22 0 0 -0.14431980e+00 -0.76746818e-01 0.18591649e+02 0.00000000e+00
- 1 2212 0 0 0.77005239e+00 -0.78256508e+00 0.85929740e+03 0.93827000e+00
- 1 -211 0 0 -0.36888050e-02 -0.85191570e-01 0.99751589e+02 0.13957000e+00
- 1 22 0 0 0.14660689e+01 0.45235339e+00 0.66296089e+02 0.00000000e+00
- 1 22 0 0 0.41518095e-01 0.33598487e-01 0.30535281e+01 0.00000000e+00
- 1 -2212 0 0 -0.31707801e-01 0.76501844e-01 0.11951211e+02 0.93827000e+00
- 1 211 0 0 0.30866155e-02 0.13049930e+00 0.28497397e+01 0.13957000e+00
- 1 22 0 0 0.17096667e-01 0.55367579e-01 0.35327344e+00 0.00000000e+00
- 1 22 0 0 0.18530569e+00 -0.25676290e-01 0.12045080e+01 0.00000000e+00
- 1 -211 0 0 -0.98088845e-01 -0.14523627e+00 0.10227717e+02 0.13957000e+00
- 1 211 0 0 -0.12751504e+00 0.28152881e+00 0.15587035e+02 0.13957000e+00
- 1 22 0 0 -0.76955703e-01 0.75295504e-01 0.77768836e+01 0.00000000e+00
- 1 22 0 0 -0.15955804e-01 -0.29654082e-01 0.10301333e+02 0.00000000e+00
- 1 -2212 0 0 0.23469833e+01 0.12004768e+01 0.74333806e+02 0.93827000e+00
- 1 211 0 0 0.57585691e+00 0.40881477e+00 0.18740190e+02 0.13957000e+00
- 2 310 830 831 0.17356138e+01 0.11951724e+01 0.67632828e+02 0.49767000e+00
- 1 22 0 0 0.67452600e-01 0.56468474e-01 0.17908049e+01 0.00000000e+00
- 1 22 0 0 0.25628820e+00 -0.33863868e-01 0.77685303e+01 0.00000000e+00
- 1 22 0 0 0.72078074e+00 0.26946912e+00 0.19589538e+02 0.00000000e+00
- 1 22 0 0 0.35074414e+00 0.19702309e+00 0.84907377e+01 0.00000000e+00
- 1 22 0 0 -0.31506653e-01 0.11619434e+00 0.30251826e+01 0.00000000e+00
- 1 22 0 0 -0.34012379e-01 0.14504088e-01 0.47746427e+01 0.00000000e+00
- 1 22 0 0 -0.24641793e-01 -0.23159423e-01 0.83357885e+01 0.00000000e+00
- 1 22 0 0 -0.25751661e+00 -0.52955514e+00 0.61492204e+02 0.00000000e+00
- 1 22 0 0 -0.26435716e-01 -0.56259609e-01 0.50060709e+01 0.00000000e+00
- 1 22 0 0 0.12872886e-01 0.69575519e-01 0.89544538e+01 0.00000000e+00
- 1 22 0 0 -0.84689013e+00 -0.14841906e+01 0.15639872e+03 0.00000000e+00
- 1 22 0 0 -0.31729252e-01 -0.45589892e-01 0.77813614e+01 0.00000000e+00
- 1 130 0 0 0.69067796e+00 -0.11711192e+01 0.99874329e+02 0.49767000e+00
- 1 130 0 0 -0.15659201e+01 -0.24825767e+00 0.16644295e+02 0.49767000e+00
- 1 22 0 0 -0.10484383e+00 0.13319557e+00 0.14518433e+01 0.00000000e+00
- 1 22 0 0 -0.17415085e+00 0.29017301e+00 0.16735941e+01 0.00000000e+00
- 1 22 0 0 -0.23014723e+00 0.23236704e+00 0.25808776e+01 0.00000000e+00
- 1 22 0 0 -0.93714483e-01 0.90930633e-01 0.53671148e+00 0.00000000e+00
- 1 22 0 0 -0.80244427e+00 0.51574977e+00 0.59021303e+01 0.00000000e+00
- 1 22 0 0 -0.15686328e+00 0.17989096e+00 0.14353954e+01 0.00000000e+00
- 2 111 832 833 -0.21868782e+00 0.27475700e+00 0.10083654e+01 0.13498000e+00
- 2 111 834 835 -0.12373689e+00 0.23143769e+00 0.26289994e+01 0.13498000e+00
- 1 130 0 0 -0.14125776e+01 -0.17244017e+00 0.34149979e+01 0.49767000e+00
- 1 211 0 0 -0.14260635e+01 -0.38074149e-01 0.19327330e+01 0.13957000e+00
- 1 -211 0 0 -0.79993177e+00 -0.27903302e+00 0.14732726e+01 0.13957000e+00
- 1 22 0 0 -0.69424935e+00 -0.57744655e+00 0.58057794e+00 0.00000000e+00
- 1 22 0 0 -0.21946564e+00 -0.11111019e+00 0.10850638e+00 0.00000000e+00
- 1 22 0 0 -0.45851648e-01 -0.19331652e-02 -0.79467711e-01 0.00000000e+00
- 1 22 0 0 -0.29163573e+00 0.78325797e-02 -0.61611462e-01 0.00000000e+00
- 1 22 0 0 -0.35464387e+00 0.12867799e+00 -0.48198335e-01 0.00000000e+00
- 1 22 0 0 -0.64204780e+00 0.36127003e+00 -0.24248777e+00 0.00000000e+00
- 2 310 836 837 0.25284779e+01 -0.20492662e+00 -0.34647962e+01 0.49767000e+00
- 1 22 0 0 0.24671417e-02 -0.31071994e-01 -0.10786927e+00 0.00000000e+00
- 1 22 0 0 0.22815906e+00 0.71435075e-01 -0.84146229e+00 0.00000000e+00
- 2 310 838 839 0.38745497e-01 -0.59632173e+00 -0.48533497e+00 0.49767000e+00
- 1 22 0 0 -0.37062721e-01 -0.11797653e+00 -0.40819873e+00 0.00000000e+00
- 1 22 0 0 0.97922796e-01 -0.27999081e+00 -0.70064679e+00 0.00000000e+00
- 1 130 0 0 0.14632195e+00 0.45279583e+00 -0.10522377e+03 0.49767000e+00
- 1 22 0 0 -0.17169680e+00 -0.17078713e+00 -0.33541574e+03 0.00000000e+00
- 1 22 0 0 0.93984829e-02 0.16706733e-01 -0.26119946e+02 0.00000000e+00
- 1 130 0 0 -0.17117509e-01 -0.28642375e+00 -0.11067835e+03 0.49767000e+00
- 1 130 0 0 -0.88448415e-01 0.72380383e-01 0.10536409e+02 0.49767000e+00
- 1 22 0 0 0.23090760e+00 0.25281510e+00 -0.13960502e+01 0.00000000e+00
- 1 22 0 0 0.47910266e+00 0.27514674e+00 -0.23402826e+01 0.00000000e+00
- 1 22 0 0 0.10055595e+00 0.12166497e-01 -0.62660656e+00 0.00000000e+00
- 1 22 0 0 0.73511439e-01 -0.11819545e+00 -0.59178475e+00 0.00000000e+00
- 1 22 0 0 -0.41013450e-01 -0.37653117e-02 -0.11132654e+00 0.00000000e+00
- 1 22 0 0 -0.12100670e+00 0.14860340e+00 -0.16544121e+01 0.00000000e+00
- 1 22 0 0 -0.23056047e-01 0.71850370e-01 -0.11952293e+01 0.00000000e+00
- 1 22 0 0 -0.36852217e+00 0.19855367e+00 -0.57959552e+01 0.00000000e+00
- 1 22 0 0 -0.20110815e+00 0.15800693e+00 -0.55619421e+01 0.00000000e+00
- 1 22 0 0 -0.21996738e+00 0.91132568e-01 -0.82877007e+01 0.00000000e+00
- 1 22 0 0 -0.41745188e+00 0.32548939e+00 -0.71968862e+01 0.00000000e+00
- 1 22 0 0 -0.46628326e-01 -0.54696430e-02 -0.94615435e+00 0.00000000e+00
- 1 22 0 0 -0.37567397e-01 0.37147436e-01 -0.17660564e+01 0.00000000e+00
- 1 22 0 0 0.59996986e-01 -0.55349465e-01 -0.43705833e+01 0.00000000e+00
- 1 22 0 0 -0.28024062e+00 -0.85147229e-01 -0.89219485e+01 0.00000000e+00
- 1 22 0 0 -0.11922280e+00 -0.79245144e-01 -0.24319646e+01 0.00000000e+00
- 1 22 0 0 -0.39387471e-01 -0.15104171e+00 -0.18341358e+02 0.00000000e+00
- 1 22 0 0 0.20229366e-01 -0.17909653e+00 -0.42751681e+02 0.00000000e+00
- 1 22 0 0 -0.23459144e-01 0.12933771e+00 -0.98095476e+02 0.00000000e+00
- 1 22 0 0 0.74268681e-01 0.17128854e+00 -0.74441495e+02 0.00000000e+00
- 1 22 0 0 0.35853852e-01 -0.46123531e-01 -0.13508893e+02 0.00000000e+00
- 1 22 0 0 -0.19780227e-01 -0.12880407e+00 -0.86577664e+01 0.00000000e+00
- 1 130 0 0 0.10813129e+01 0.19995223e+00 -0.29950630e+02 0.49767000e+00
- 1 22 0 0 0.82367653e-02 0.49479672e-01 -0.77256284e+00 0.00000000e+00
- 1 22 0 0 -0.35220254e-01 0.17561630e-02 -0.54207055e+01 0.00000000e+00
- 1 -211 0 0 0.79974980e+00 -0.28883141e+00 -0.13748130e+02 0.13957000e+00
- 1 211 0 0 0.67131781e-01 -0.18753982e+00 -0.33112308e+01 0.13957000e+00
- 2 310 840 841 0.99269007e+00 0.51693378e+00 -0.10175777e+02 0.49767000e+00
- 1 22 0 0 -0.73918054e-01 0.43849026e-01 -0.18689617e+01 0.00000000e+00
- 1 22 0 0 -0.41596760e-01 -0.77027196e-01 -0.10688569e+01 0.00000000e+00
- 2 310 842 843 0.33986075e+00 -0.13409359e+00 -0.44910337e+01 0.49767000e+00
- 2 111 844 845 -0.25041965e+00 0.25624832e+00 -0.20667022e-01 0.13498000e+00
- 2 111 846 847 0.31082575e-01 -0.62932129e-01 0.13835297e+00 0.13498000e+00
- 1 22 0 0 -0.31793316e-01 0.43936536e-01 0.31708234e+00 0.00000000e+00
- 1 22 0 0 -0.35098875e-02 -0.86903242e-01 0.87072811e+00 0.00000000e+00
- 1 22 0 0 0.35005779e-01 -0.45381853e-01 0.13069059e+01 0.00000000e+00
- 1 22 0 0 0.37780153e+00 -0.83432501e-01 0.48946207e+01 0.00000000e+00
- 1 130 0 0 0.44781168e+00 -0.14465972e+00 0.57597500e+01 0.49767000e+00
- 1 22 0 0 -0.28168393e+00 0.17842787e+00 -0.10290257e-01 0.00000000e+00
- 1 22 0 0 -0.86516931e-01 0.97077390e-01 0.74727964e-01 0.00000000e+00
- 1 22 0 0 0.41172965e+00 -0.43513469e+00 -0.53661977e+00 0.00000000e+00
- 1 22 0 0 0.42503555e-02 0.71958518e-02 -0.24752182e-01 0.00000000e+00
- 1 22 0 0 -0.13129813e+00 0.93954827e-01 -0.80442948e+00 0.00000000e+00
- 1 22 0 0 0.16674609e-01 -0.26489446e-02 -0.14222342e-01 0.00000000e+00
- 1 22 0 0 -0.18573268e+00 0.46536763e+00 -0.23599721e+01 0.00000000e+00
- 1 22 0 0 -0.54297271e-01 0.87022931e-01 -0.26936708e+00 0.00000000e+00
- 1 22 0 0 0.93590408e-01 -0.10922784e+00 -0.21985472e-01 0.00000000e+00
- 1 22 0 0 0.25922224e-01 0.11427354e-01 -0.77366709e-01 0.00000000e+00
- 1 22 0 0 -0.31569419e+00 0.24468488e+00 -0.76384468e+00 0.00000000e+00
- 1 22 0 0 -0.11972391e+00 0.61562069e-01 -0.13027526e+00 0.00000000e+00
- 2 310 848 849 0.18555207e+00 0.25670470e+00 -0.66296233e+00 0.49767000e+00
- 1 130 0 0 0.31563256e+00 -0.19728116e+00 -0.27245787e+00 0.49767000e+00
- 1 22 0 0 0.70910455e-01 0.25835547e-02 -0.58170143e-01 0.00000000e+00
- 1 22 0 0 -0.28939076e-01 0.60509150e-01 0.15449228e-01 0.00000000e+00
- 1 -211 0 0 -0.34245796e+00 0.18508183e+00 -0.25197981e+01 0.13957000e+00
- 1 211 0 0 -0.50150245e-01 0.11392015e+00 -0.38906375e+01 0.13957000e+00
- 1 211 0 0 0.49880401e+00 0.10553689e+00 0.10611549e+01 0.13957000e+00
- 1 -211 0 0 0.34927204e-01 0.16600913e+00 0.20257349e+00 0.13957000e+00
- 2 111 850 851 0.72647903e+00 0.82485724e+00 0.12846058e+02 0.13498000e+00
- 2 111 852 853 0.71114890e+00 0.59508350e+00 0.15893350e+02 0.13498000e+00
- 1 -211 0 0 0.14820806e+00 0.98280520e+00 0.85108703e+01 0.13957000e+00
- 1 211 0 0 -0.16104873e+00 0.29065144e+00 0.35755266e+01 0.13957000e+00
- 1 211 0 0 0.29164240e-02 0.16493698e-01 -0.35690959e+02 0.13957000e+00
- 1 -211 0 0 0.50880205e-01 -0.18763835e+00 -0.10371406e+02 0.13957000e+00
- 1 211 0 0 -0.37923899e-01 -0.82540182e-01 -0.13873127e+02 0.13957000e+00
- 1 -211 0 0 0.48602876e+00 -0.14889189e+00 -0.71174874e+02 0.13957000e+00
- 2 111 854 855 0.67671826e+00 0.45523026e+00 0.20278959e+02 0.13498000e+00
- 2 111 856 857 0.10588955e+01 0.73994211e+00 0.47353869e+02 0.13498000e+00
- 1 22 0 0 -0.77105624e-01 0.14539553e+00 0.29758787e+00 0.00000000e+00
- 1 22 0 0 -0.14158220e+00 0.12936147e+00 0.71077751e+00 0.00000000e+00
- 1 22 0 0 -0.40430802e-01 0.10468673e+00 0.57056855e+00 0.00000000e+00
- 1 22 0 0 -0.83306089e-01 0.12675096e+00 0.20584309e+01 0.00000000e+00
- 1 -211 0 0 0.19674636e+01 -0.21660976e+00 -0.24269432e+01 0.13957000e+00
- 1 211 0 0 0.56101425e+00 0.11683143e-01 -0.10378530e+01 0.13957000e+00
- 1 -211 0 0 0.77238990e-01 -0.59969159e+00 -0.32450938e+00 0.13957000e+00
- 1 211 0 0 -0.38493493e-01 0.33698547e-02 -0.16082559e+00 0.13957000e+00
- 2 111 858 859 0.94112276e+00 0.48823580e+00 -0.84846461e+01 0.13498000e+00
- 2 111 860 861 0.51567312e-01 0.28697981e-01 -0.16911307e+01 0.13498000e+00
- 1 -211 0 0 0.45260352e-01 0.12316090e+00 -0.10569057e+01 0.13957000e+00
- 1 211 0 0 0.29460040e+00 -0.25725450e+00 -0.34341280e+01 0.13957000e+00
- 1 22 0 0 -0.82952330e-01 0.12806501e-01 0.16752270e-01 0.00000000e+00
- 1 22 0 0 -0.16746732e+00 0.24344182e+00 -0.37419293e-01 0.00000000e+00
- 1 22 0 0 0.29021002e-01 -0.92774338e-01 0.44080244e-01 0.00000000e+00
- 1 22 0 0 0.20615725e-02 0.29842208e-01 0.94272723e-01 0.00000000e+00
- 2 111 862 863 0.28415100e+00 0.22495734e+00 -0.58254439e+00 0.13498000e+00
- 2 111 864 865 -0.98598930e-01 0.31747359e-01 -0.80417939e-01 0.13498000e+00
- 1 22 0 0 0.95958500e-02 0.29513127e-03 0.40755297e-01 0.00000000e+00
- 1 22 0 0 0.71688318e+00 0.82456211e+00 0.12805303e+02 0.00000000e+00
- 1 22 0 0 0.29943843e+00 0.31319833e+00 0.81942016e+01 0.00000000e+00
- 1 22 0 0 0.41171047e+00 0.28188517e+00 0.76991482e+01 0.00000000e+00
- 1 22 0 0 0.21154532e+00 0.74653976e-01 0.60390031e+01 0.00000000e+00
- 1 22 0 0 0.46517294e+00 0.38057628e+00 0.14239956e+02 0.00000000e+00
- 1 22 0 0 0.32377677e+00 0.19752981e+00 0.16054498e+02 0.00000000e+00
- 1 22 0 0 0.73511875e+00 0.54241230e+00 0.31299371e+02 0.00000000e+00
- 1 22 0 0 0.79496825e+00 0.41271632e+00 -0.75152938e+01 0.00000000e+00
- 1 22 0 0 0.14615451e+00 0.75519477e-01 -0.96935229e+00 0.00000000e+00
- 1 22 0 0 0.88671089e-01 -0.12936067e-01 -0.90365307e+00 0.00000000e+00
- 1 22 0 0 -0.37103777e-01 0.41634048e-01 -0.78747759e+00 0.00000000e+00
- 1 22 0 0 0.21556442e+00 0.20937425e+00 -0.53722285e+00 0.00000000e+00
- 1 22 0 0 0.68586581e-01 0.15583091e-01 -0.45321541e-01 0.00000000e+00
- 1 22 0 0 0.24996170e-01 -0.20353600e-01 -0.86385052e-03 0.00000000e+00
- 1 22 0 0 -0.12359510e+00 0.52100959e-01 -0.79554088e-01 0.00000000e+00
- 752
- 2 25 2 3 0.21795565e+01 -0.43678862e+01 -0.58420482e+03 0.12499956e+03
- 2 23 4 5 0.12285200e+02 -0.13352933e+02 -0.21125795e+03 0.20691250e+02
- 2 23 6 9 -0.10105643e+02 0.89850468e+01 -0.37294687e+03 0.92168220e+02
- 1 11 0 0 -0.53016533e+01 -0.70648075e+01 -0.65171152e+02 0.51000000e-03
- 1 -11 0 0 0.17586853e+02 -0.62881255e+01 -0.14608680e+03 0.51000000e-03
- 1 -13 0 0 0.25549447e+02 0.33908262e+02 -0.11047909e+03 0.10566000e+00
- 1 22 0 0 -0.25250292e-03 -0.50233691e-04 -0.35334085e-03 0.00000000e+00
- 1 13 0 0 -0.35604340e+02 -0.24903775e+02 -0.26216260e+03 0.10566000e+00
- 1 22 0 0 -0.50498157e-01 -0.19390226e-01 -0.30483003e+00 0.00000000e+00
- 2 2 106 106 -0.71025970e+00 0.22874144e+01 0.51510024e+03 0.33000000e+00
- 2 21 106 106 0.45422809e+00 0.47576085e+00 0.27950126e+03 0.00000000e+00
- 2 21 106 106 -0.77378207e+00 0.81108986e+00 0.89869002e+02 0.00000000e+00
- 2 21 106 106 0.35382148e+00 -0.31406127e-01 0.20589170e+01 0.00000000e+00
- 2 21 106 106 -0.13758098e+01 0.15288878e+01 0.56617423e+01 0.00000000e+00
- 2 21 106 106 -0.88744942e-02 -0.53029502e+00 0.49817796e+00 0.00000000e+00
- 2 21 106 106 -0.11238665e+01 0.12734109e+01 0.80146144e+00 0.00000000e+00
- 2 21 106 106 0.58045665e+01 -0.40745244e+01 0.22716372e+02 0.00000000e+00
- 2 21 106 106 0.18645414e+01 -0.14130923e+01 0.32197806e+01 0.00000000e+00
- 2 21 106 106 0.30785778e+01 0.38687741e+01 0.83891505e+01 0.00000000e+00
- 2 21 106 106 0.86924236e+01 0.42208664e+01 0.92138622e+01 0.00000000e+00
- 2 21 106 106 0.17623759e+01 0.22397620e+00 0.17849779e+00 0.00000000e+00
- 2 21 106 106 0.53847256e+01 0.40407921e+01 0.82828301e+00 0.00000000e+00
- 2 21 106 106 0.89470802e-01 0.54599805e+00 0.62358438e-01 0.00000000e+00
- 2 21 106 106 0.30426285e+01 0.10020291e+02 0.10787815e+01 0.00000000e+00
- 2 21 106 106 0.84219107e+00 0.11756908e+01 -0.32826161e+00 0.00000000e+00
- 2 21 106 106 0.45678375e+00 0.54022081e+00 -0.43543998e+00 0.00000000e+00
- 2 21 106 106 0.47941936e+01 0.44423310e+01 -0.48659754e+01 0.00000000e+00
- 2 21 106 106 0.23810419e+01 -0.15770372e+01 -0.42386177e+01 0.00000000e+00
- 2 21 106 106 0.40195670e+01 -0.21020247e+01 -0.66410897e+01 0.00000000e+00
- 2 21 106 106 0.33726451e+01 0.15537730e+00 -0.76021186e+01 0.00000000e+00
- 2 21 106 106 0.25936195e+01 0.32941867e+00 -0.48978462e+01 0.00000000e+00
- 2 21 106 106 0.63262500e+00 0.13609717e+01 -0.22107244e+01 0.00000000e+00
- 2 21 106 106 0.15258377e+01 0.35327640e+01 -0.64307191e+01 0.00000000e+00
- 2 21 106 106 0.14913909e+00 0.14059828e+01 -0.54166201e+01 0.00000000e+00
- 2 21 106 106 0.35137201e-01 0.57964503e+00 -0.23258255e+01 0.00000000e+00
- 2 21 106 106 -0.51384623e+00 0.60487881e+01 -0.30620881e+02 0.00000000e+00
- 2 21 106 106 -0.23810419e+01 0.15770372e+01 -0.42664192e+02 0.00000000e+00
- 2 21 106 106 0.54997044e-01 0.11340184e+01 -0.37708927e+02 0.00000000e+00
- 2 21 106 106 -0.10837743e+01 0.27083617e+01 -0.14495952e+03 0.00000000e+00
- 2 21 106 106 -0.40195670e+01 0.21020247e+01 -0.13550627e+04 0.00000000e+00
- 2 21 106 106 -0.21174919e+01 -0.99785718e+00 -0.58906646e+03 0.00000000e+00
- 2 21 106 106 0.70539275e+00 0.47634027e-01 -0.36581159e+03 0.00000000e+00
- 2 21 106 106 0.22824600e+01 -0.82271160e+00 -0.32656816e+02 0.00000000e+00
- 2 21 106 106 0.18250842e+00 -0.69689432e+00 -0.20790580e+02 0.00000000e+00
- 2 21 106 106 0.14812871e+00 -0.61904442e-01 -0.14383256e+02 0.00000000e+00
- 2 21 106 106 -0.86942853e+00 0.19015033e+01 -0.57668832e+02 0.00000000e+00
- 2 21 106 106 -0.12864200e+01 0.40375431e+00 -0.63247520e+02 0.00000000e+00
- 2 2101 106 106 0.13072462e+00 0.15272279e+01 -0.21127783e+04 0.57933000e+00
- 2 1 103 103 -0.41341468e+00 0.34780705e+00 0.79766360e+00 0.00000000e+00
- 2 -1 103 103 0.41341468e+00 -0.34780705e+00 0.45066019e+00 0.00000000e+00
- 2 2101 184 184 0.47314557e+00 -0.98474764e+00 0.37368281e+04 0.57933000e+00
- 2 21 184 184 -0.23863026e+00 0.25208542e-01 0.23594012e+00 0.00000000e+00
- 2 21 184 184 -0.79112550e+00 -0.22798203e+00 0.36075628e+01 0.00000000e+00
- 2 21 184 184 0.24107398e+01 -0.33723449e+01 0.64040300e+02 0.00000000e+00
- 2 21 184 184 -0.42798286e-01 0.12184239e+00 0.34216908e+00 0.00000000e+00
- 2 21 184 184 -0.21591572e+00 -0.24220605e+01 0.14293999e+02 0.00000000e+00
- 2 21 184 184 -0.30426285e+01 -0.10020291e+02 0.65328844e+02 0.00000000e+00
- 2 21 184 184 0.11659936e+01 -0.30002998e+00 0.16869318e+02 0.00000000e+00
- 2 21 184 184 0.71105730e+00 -0.21163843e+00 0.96291600e+01 0.00000000e+00
- 2 21 184 184 0.15013961e+00 -0.66332378e+00 0.15103293e+02 0.00000000e+00
- 2 21 184 184 0.15295913e+01 -0.10145424e+01 0.31304410e+02 0.00000000e+00
- 2 21 184 184 0.45792686e+01 -0.52574001e+01 0.17100362e+03 0.00000000e+00
- 2 21 184 184 0.12042669e+01 -0.29353860e+00 0.36390818e+02 0.00000000e+00
- 2 21 184 184 0.89226986e+00 -0.26779493e+00 0.37288176e+03 0.00000000e+00
- 2 21 184 184 -0.15013961e+00 0.66332378e+00 0.36383915e+03 0.00000000e+00
- 2 21 184 184 -0.35137201e-01 -0.57964503e+00 0.14290361e+03 0.00000000e+00
- 2 21 184 184 -0.30785778e+01 -0.38687741e+01 0.59035699e+03 0.00000000e+00
- 2 21 184 184 -0.71105730e+00 0.21163843e+00 0.16809521e+02 0.00000000e+00
- 2 21 184 184 -0.45792686e+01 0.52574001e+01 0.10336170e+03 0.00000000e+00
- 2 21 184 184 -0.25936195e+01 -0.32941867e+00 0.19563701e+02 0.00000000e+00
- 2 21 184 184 -0.11659936e+01 0.30002998e+00 0.57105086e+01 0.00000000e+00
- 2 21 184 184 -0.89226986e+00 0.26779493e+00 0.32647055e+01 0.00000000e+00
- 2 21 184 184 -0.53847256e+01 -0.40407921e+01 0.10945603e+02 0.00000000e+00
- 2 21 184 184 -0.45678375e+00 -0.54022081e+00 0.92809200e+00 0.00000000e+00
- 2 21 184 184 -0.84219107e+00 -0.11756908e+01 0.15089548e+01 0.00000000e+00
- 2 21 184 184 -0.18645414e+01 0.14130923e+01 0.96139652e+00 0.00000000e+00
- 2 21 184 184 -0.58045665e+01 0.40745244e+01 0.68107168e-01 0.00000000e+00
- 2 21 184 184 -0.20513774e+01 0.11673351e+01 -0.69909102e+00 0.00000000e+00
- 2 21 184 184 -0.19226190e+01 0.76304305e+00 -0.23004759e+01 0.00000000e+00
- 2 21 184 184 -0.47941936e+01 -0.44423310e+01 -0.38441606e+01 0.00000000e+00
- 2 21 184 184 0.10837743e+01 -0.27083617e+01 -0.55358890e+00 0.00000000e+00
- 2 21 184 184 -0.89470802e-01 -0.54599805e+00 -0.66655979e+00 0.00000000e+00
- 2 21 184 184 -0.63262500e+00 -0.13609717e+01 -0.22627267e+01 0.00000000e+00
- 2 21 184 184 -0.15295913e+01 0.10145424e+01 -0.65620243e+01 0.00000000e+00
- 2 21 184 184 -0.70539275e+00 -0.47634027e-01 -0.31715851e+01 0.00000000e+00
- 2 21 184 184 -0.17623759e+01 -0.22397620e+00 -0.10898934e+02 0.00000000e+00
- 2 21 184 184 -0.33726451e+01 -0.15537730e+00 -0.29139783e+02 0.00000000e+00
- 2 21 184 184 -0.86924236e+01 -0.42208664e+01 -0.18690801e+03 0.00000000e+00
- 2 21 184 184 0.21174919e+01 0.99785718e+00 -0.46907830e+02 0.00000000e+00
- 2 21 184 184 0.19226190e+01 -0.76304305e+00 -0.24828939e+02 0.00000000e+00
- 2 21 184 184 0.20513774e+01 -0.11673351e+01 -0.29947912e+02 0.00000000e+00
- 2 21 184 184 -0.14913909e+00 -0.14059828e+01 -0.12760078e+02 0.00000000e+00
- 2 21 184 184 0.51384623e+00 -0.60487881e+01 -0.15776108e+03 0.00000000e+00
- 2 21 184 184 -0.15258377e+01 -0.35327640e+01 -0.20354974e+03 0.00000000e+00
- 2 21 184 184 -0.54997044e-01 -0.11340184e+01 -0.15957467e+03 0.00000000e+00
- 2 21 184 184 0.61633132e+00 0.80961977e+00 -0.86549479e+02 0.00000000e+00
- 2 21 184 184 -0.10532395e+01 -0.12132448e+01 -0.79481365e+02 0.00000000e+00
- 2 2 184 184 -0.95740981e+00 0.11436971e+01 -0.41610715e+03 0.33000000e+00
- 2 21 274 274 0.21516704e+01 0.11411463e+01 0.20268615e+03 0.00000000e+00
- 2 21 274 274 0.21591572e+00 0.24220605e+01 0.13383029e+02 0.00000000e+00
- 2 21 274 274 -0.12042669e+01 0.29353860e+00 0.21578385e+01 0.00000000e+00
- 2 21 274 274 -0.21516704e+01 -0.11411463e+01 0.47616048e+01 0.00000000e+00
- 2 91 104 105 0.00000000e+00 0.00000000e+00 0.12483238e+01 0.11047218e+01
- 2 -213 289 290 -0.27202348e-01 0.37963709e+00 0.78553165e+00 0.58665930e+00
- 1 211 0 0 0.27202348e-01 -0.37963709e+00 0.46279214e+00 0.13957000e+00
- 2 92 107 183 0.38570190e+02 0.47962266e+02 -0.39736350e+04 0.43468334e+04
- 1 211 0 0 -0.15270919e-01 -0.60380059e-01 0.12640244e+02 0.13957000e+00
- 2 -213 291 292 -0.43077406e+00 0.19074293e+01 0.31132674e+03 0.71786919e+00
- 2 323 293 294 -0.53946860e+00 0.47792276e+00 0.23146752e+03 0.80526554e+00
- 2 -311 295 295 0.46578257e+00 0.39340936e+00 0.17894041e+03 0.49767000e+00
- 1 -211 0 0 -0.12683702e-01 -0.13389589e+00 0.40682717e+01 0.13957000e+00
- 1 211 0 0 0.27613981e+00 0.16122267e+00 0.67683538e+02 0.13957000e+00
- 1 -211 0 0 -0.89125344e+00 0.53788006e+00 0.67705035e+02 0.13957000e+00
- 2 223 296 298 -0.51598687e+00 0.36776776e+00 0.51921154e+01 0.77793785e+00
- 2 111 299 300 0.40515043e+00 0.48154793e+00 0.27643074e+01 0.13498000e+00
- 2 111 301 302 -0.28923780e-01 0.38181973e+00 0.22429267e+01 0.13498000e+00
- 1 211 0 0 0.35056605e+00 -0.36266120e+00 0.43007421e+01 0.13957000e+00
- 2 2114 303 304 -0.85063605e+00 0.44064233e+00 0.18075936e+01 0.12101593e+01
- 2 -2114 305 306 -0.10682424e+00 0.73572539e+00 0.26819480e+01 0.12502713e+01
- 1 2112 0 0 0.21216275e+00 -0.79848072e+00 0.39294921e+01 0.93957000e+00
- 1 -2212 0 0 0.22490269e+00 0.43894779e+00 0.57497141e+00 0.93827000e+00
- 1 211 0 0 0.13144979e+01 -0.10607572e+01 0.67645600e+01 0.13957000e+00
- 2 -213 307 308 0.22622368e+01 -0.19263813e+01 0.60307671e+01 0.71704115e+00
- 2 113 309 310 0.15570936e+01 -0.48950818e+00 0.92386107e+01 0.66486126e+00
- 2 213 311 312 0.15851575e+01 -0.51557724e-01 0.26664660e+01 0.81691052e+00
- 2 113 313 314 0.12705852e+01 0.10674332e+01 0.22429645e+01 0.91901483e+00
- 2 -213 315 316 0.19277859e+01 0.11107535e+01 0.20665341e+01 0.70130941e+00
- 2 2224 317 318 0.38987726e+01 0.25952024e+01 0.54793373e+01 0.12185836e+01
- 2 -2224 319 320 0.92364252e+00 0.56560883e+00 0.10707478e+01 0.11992983e+01
- 2 213 321 322 0.39642568e+01 0.17744050e+01 0.39219851e+01 0.76018175e+00
- 2 221 323 324 0.20014656e+01 0.13592148e+01 0.32324137e+00 0.54745000e+00
- 2 223 325 327 0.15927798e+01 0.19309999e+01 -0.28512172e-02 0.77793836e+00
- 2 -213 328 329 0.20673545e+01 0.16051452e+01 0.12417709e+01 0.86863317e+00
- 2 213 330 331 0.13775290e+01 0.31461428e+01 0.10720341e+00 0.83823240e+00
- 1 2112 0 0 0.16827254e+01 0.34633409e+01 0.20475180e+00 0.93957000e+00
- 2 -323 332 333 0.49269584e+00 0.25117958e+01 -0.96154911e-01 0.89575447e+00
- 2 -3214 334 335 0.26859130e+01 0.28902045e+01 -0.14508589e+01 0.13608779e+01
- 1 211 0 0 0.37870872e+00 0.12437985e+01 -0.11453763e+01 0.13957000e+00
- 2 -213 336 337 0.81172115e+00 0.75227021e+00 -0.74689462e+00 0.81790828e+00
- 2 113 338 339 0.24272207e+01 0.11013975e+01 -0.18888973e+01 0.57784261e+00
- 1 321 0 0 0.31809821e+00 -0.93708979e-01 -0.74045914e+00 0.49360000e+00
- 1 -321 0 0 0.35835849e+01 -0.74528778e+00 -0.51930727e+01 0.49360000e+00
- 1 321 0 0 0.32744086e+00 -0.35055442e+00 -0.19191506e+01 0.49360000e+00
- 2 -323 340 341 0.27154536e+01 -0.10503753e+01 -0.42611097e+01 0.90826565e+00
- 2 113 342 343 0.43200980e+01 0.46892139e+00 -0.10837357e+02 0.46030988e+00
- 2 213 344 345 0.95374833e+00 0.23606148e+00 -0.12547522e+01 0.75772847e+00
- 2 311 346 346 0.88663439e+00 0.25373309e+01 -0.58249495e+01 0.49767000e+00
- 2 -323 347 348 0.60831269e+00 0.11594395e+01 -0.20911231e+01 0.84555554e+00
- 1 211 0 0 0.32990527e+00 0.66295953e+00 -0.21330703e+01 0.13957000e+00
- 2 -213 349 350 0.32318611e-01 0.27874428e+00 -0.20961648e+01 0.67863595e+00
- 2 111 351 352 0.15217753e+00 0.18029811e+01 -0.61473690e+01 0.13498000e+00
- 2 223 353 355 -0.80632015e-01 0.21107505e+01 -0.96429949e+01 0.78409497e+00
- 2 111 356 357 0.36538532e-02 0.83497468e+00 -0.10804874e+02 0.13498000e+00
- 2 223 358 360 -0.75377484e+00 0.22639663e+01 -0.13720145e+02 0.77679112e+00
- 2 213 361 362 -0.44797648e+00 0.35572286e+00 -0.98581872e+01 0.82237609e+00
- 2 223 363 365 -0.22109758e+00 0.15566667e+01 -0.17399641e+02 0.78563462e+00
- 2 221 366 367 -0.95855251e+00 0.67704748e+00 -0.25369698e+02 0.54745000e+00
- 2 223 368 370 0.13444143e+00 0.24345327e+01 -0.15218964e+03 0.78469579e+00
- 2 111 371 372 -0.12436167e+01 0.43738047e+00 -0.54953130e+02 0.13498000e+00
- 2 113 373 374 -0.13927321e+00 0.44207374e+00 -0.10173750e+03 0.86104889e+00
- 2 111 375 376 -0.88683484e+00 0.62451883e+00 -0.27090822e+03 0.13498000e+00
- 2 1114 377 378 -0.18901049e+01 -0.25727167e+00 -0.43535399e+03 0.11400785e+01
- 1 211 0 0 0.75088971e-01 0.23012502e+00 -0.13799264e+03 0.13957000e+00
- 1 -2112 0 0 -0.30110497e+01 0.79731250e+00 -0.97703625e+03 0.93957000e+00
- 1 -211 0 0 0.28086309e+00 -0.28930396e+00 -0.35355378e+02 0.13957000e+00
- 1 211 0 0 0.24691459e+00 -0.13995110e+00 -0.47129125e+02 0.13957000e+00
- 2 223 379 381 -0.33922146e+00 0.27475324e+00 -0.82086976e+02 0.78739493e+00
- 1 -211 0 0 0.67124010e+00 -0.37404213e+00 -0.47993172e+02 0.13957000e+00
- 1 211 0 0 -0.44688679e+00 0.28984529e+00 -0.54494299e+02 0.13957000e+00
- 1 -211 0 0 0.10383256e+01 -0.56583985e+00 -0.25260231e+02 0.13957000e+00
- 1 211 0 0 0.66571845e-01 0.17109030e-01 -0.17413159e+02 0.13957000e+00
- 2 313 382 383 0.17052770e+00 -0.41147928e+00 -0.50234642e+02 0.84667008e+00
- 2 -323 384 385 -0.15440208e+00 0.34790811e+00 -0.42992813e+02 0.93717835e+00
- 1 321 0 0 0.14346183e+00 0.31371972e+00 -0.65883282e+01 0.49360000e+00
- 1 -321 0 0 0.68757498e-01 0.73201472e-01 -0.56269384e+01 0.49360000e+00
- 2 113 386 387 0.28717875e-01 -0.58096781e+00 -0.35031756e+02 0.74012339e+00
- 2 213 388 389 0.20483744e+00 0.77253491e+00 -0.65731139e+02 0.62305321e+00
- 2 113 390 391 -0.28730654e+00 0.18096992e+00 -0.41054433e+02 0.81355823e+00
- 2 313 392 393 -0.55842189e+00 0.57144503e+00 -0.13555020e+03 0.88848693e+00
- 2 -311 394 394 0.11346062e+00 0.57146269e+00 -0.13909599e+03 0.49767000e+00
- 2 -213 395 396 -0.30503151e+00 -0.22370361e+00 -0.17815994e+03 0.74173431e+00
- 2 213 397 398 0.21427370e+00 -0.34775597e+00 -0.29575092e+03 0.47673175e+00
- 1 2112 0 0 -0.15956103e+00 0.15096428e+01 -0.13419738e+04 0.93957000e+00
- 2 92 185 273 -0.39761395e+02 -0.46309979e+02 0.43336061e+04 0.58580907e+04
- 2 113 399 400 0.31324782e+00 -0.42935658e+00 0.21598596e+04 0.76718799e+00
- 2 2114 401 402 0.36372279e+00 -0.46786105e+00 0.13080662e+04 0.12429770e+01
- 2 111 403 404 0.16328319e+00 0.41533820e-01 0.18028385e+02 0.13498000e+00
- 1 211 0 0 0.10774027e+00 -0.19620411e+00 0.77368782e+02 0.13957000e+00
- 1 -211 0 0 -0.40502745e+00 0.27955946e+00 0.71683354e+02 0.13957000e+00
- 1 -2112 0 0 -0.74738507e-01 -0.22010724e+00 0.96877631e+02 0.93957000e+00
- 2 213 405 406 -0.38373569e+00 -0.14764469e+00 0.48777743e+01 0.78339373e+00
- 2 1114 407 408 -0.35867468e-02 -0.10554083e+01 0.17468088e+02 0.12346150e+01
- 2 113 409 410 0.42010443e+00 0.65565068e-01 0.64057588e+01 0.84408191e+00
- 1 -2112 0 0 0.30491866e-01 -0.80970919e+00 0.14319994e+02 0.93957000e+00
- 1 2112 0 0 0.79564742e+00 -0.21532515e+01 0.30364709e+02 0.93957000e+00
- 2 113 411 412 -0.10333490e+01 -0.45936428e+01 0.27673764e+02 0.78851716e+00
- 2 -1114 413 414 0.31221068e+00 -0.10107677e+01 0.16255421e+02 0.13136613e+01
- 2 223 415 417 -0.36870516e+00 -0.32810443e+01 0.23914253e+02 0.78388882e+00
- 2 1114 418 419 -0.12048816e+01 -0.31286283e+01 0.23712564e+02 0.11627120e+01
- 2 223 420 422 0.32635188e+00 -0.60278572e+00 0.11645830e+02 0.78287043e+00
- 2 213 423 424 0.26235816e+01 -0.13943817e+01 0.55993218e+02 0.80000381e+00
- 2 111 425 426 0.13182634e+01 -0.13414761e+01 0.46075955e+02 0.13498000e+00
- 2 113 427 428 0.18601935e+01 -0.13897148e+01 0.51513200e+02 0.74558661e+00
- 2 113 429 430 0.24037665e+01 -0.27314881e+01 0.99840722e+02 0.10334046e+01
- 2 -213 431 432 0.71992134e+00 0.90898563e-01 0.82785722e+02 0.72573798e+00
- 1 211 0 0 -0.80129637e-01 -0.20280572e+00 0.57695900e+02 0.13957000e+00
- 2 -2114 433 434 -0.58075881e+00 -0.52835279e+00 0.41099664e+03 0.12207052e+01
- 1 2112 0 0 0.19214359e+00 -0.34009280e+00 0.12932987e+03 0.93957000e+00
- 2 113 435 436 -0.12210725e+00 -0.43448579e+00 0.11589635e+03 0.73534327e+00
- 1 -211 0 0 0.29780759e+00 -0.27262945e+00 0.23809479e+03 0.13957000e+00
- 2 213 437 438 -0.80114929e+00 0.15018126e+00 0.88146191e+02 0.56267894e+00
- 1 -2112 0 0 -0.18206103e+01 -0.22243149e+01 0.30318960e+03 0.93957000e+00
- 2 -213 439 440 -0.25624080e+00 0.83558944e-01 0.46098282e+02 0.79049900e+00
- 1 2112 0 0 -0.96058482e+00 0.11288785e+01 0.26190856e+02 0.93957000e+00
- 2 -2114 441 442 -0.27928973e+01 0.14842707e+01 0.56674949e+02 0.12288269e+01
- 1 211 0 0 0.24943987e+00 0.37107038e-01 0.18577956e+01 0.13957000e+00
- 2 1114 443 444 -0.23267324e+01 0.11540055e+01 0.37437118e+02 0.11966468e+01
- 2 213 445 446 -0.18605589e+01 0.13820234e+01 0.14090297e+02 0.74005661e+00
- 2 -213 447 448 -0.90838439e+00 -0.43846674e+00 0.10093686e+02 0.79853901e+00
- 2 331 449 451 -0.29337667e+01 -0.13057176e+01 0.58706911e+01 0.95762455e+00
- 2 223 452 454 -0.10230899e+01 -0.87277590e+00 0.26587994e+01 0.77852041e+00
- 1 -2112 0 0 -0.38430939e+00 -0.26883068e+00 0.20045124e+01 0.93957000e+00
- 1 2212 0 0 -0.25579398e+01 -0.19032789e+01 0.43306932e+01 0.93827000e+00
- 2 -323 455 456 -0.52629001e+00 -0.14100576e+00 0.11194627e+01 0.78676058e+00
- 2 323 457 458 -0.26146779e+01 0.17513728e+01 0.12264599e+01 0.83321452e+00
- 2 223 459 461 -0.17024560e+01 0.72554975e+00 -0.12404539e+00 0.78023559e+00
- 2 223 462 464 -0.97751245e+00 0.20587995e+00 0.13011005e+00 0.76382864e+00
- 2 -213 465 466 -0.15640217e+01 0.87265928e+00 -0.30032591e+00 0.70016461e+00
- 2 -311 467 467 -0.58027799e+00 0.68056634e+00 -0.92490202e+00 0.49767000e+00
- 2 313 468 469 -0.15278413e+01 0.11675369e+01 -0.30092349e+00 0.91345027e+00
- 2 -2114 470 471 -0.27478621e+01 -0.62269198e+00 -0.10409997e+01 0.12377701e+01
- 1 211 0 0 -0.99785454e-01 -0.74302521e-01 -0.50727252e-01 0.13957000e+00
- 2 1114 472 473 -0.15727167e+01 -0.14761071e+01 -0.54672005e+00 0.12366777e+01
- 2 111 474 475 -0.38634788e+00 0.62689251e+00 -0.11821834e+01 0.13498000e+00
- 1 211 0 0 -0.12936024e+01 -0.12016194e+01 -0.12612727e+01 0.13957000e+00
- 2 113 476 477 0.20971803e+00 -0.98844214e+00 -0.98660764e+00 0.77337498e+00
- 1 -321 0 0 -0.39159707e+00 -0.95214445e+00 -0.76293082e+00 0.49360000e+00
- 2 323 478 479 -0.89128749e+00 -0.11996887e+01 -0.95829275e+00 0.88940567e+00
- 1 -211 0 0 0.35465310e-01 -0.80908609e-01 0.33265468e-01 0.13957000e+00
- 2 -311 480 480 -0.26684016e+00 0.14648793e+00 -0.21609968e+00 0.49767000e+00
- 2 313 481 482 -0.66203245e-01 -0.12770385e+01 -0.23302581e+01 0.96661082e+00
- 2 -313 483 484 -0.17202539e+01 0.26691841e+00 -0.11014908e+02 0.87891308e+00
- 2 313 485 486 -0.12124591e+01 -0.71470556e+00 -0.10068784e+02 0.92123051e+00
- 2 223 487 489 -0.29615567e+00 0.24500915e+00 -0.37958272e+01 0.77625628e+00
- 2 221 490 492 -0.10474155e+01 -0.13091240e+00 -0.46047689e+01 0.54745000e+00
- 2 -311 493 493 -0.11044060e+01 0.53626327e+00 -0.14847590e+02 0.49767000e+00
- 2 -3322 494 495 -0.58706474e+01 -0.26457985e+01 -0.99179297e+02 0.13149000e+01
- 2 3222 496 497 -0.11640743e+01 -0.20984513e+00 -0.26966207e+02 0.11893700e+01
- 2 223 498 500 -0.15306101e+01 -0.67038388e+00 -0.32631835e+02 0.78336077e+00
- 1 -321 0 0 0.27063318e+00 -0.27787979e+00 -0.68865188e+01 0.49360000e+00
- 2 313 501 502 -0.17635857e+00 0.29003125e+00 -0.25999853e+02 0.10297297e+01
- 2 221 503 504 -0.59777255e-01 -0.26420927e+00 -0.10049716e+02 0.54745000e+00
- 2 213 505 506 -0.13296982e+00 -0.34177388e+00 -0.19355020e+02 0.64343438e+00
- 1 -211 0 0 0.19033644e+00 -0.69731760e-01 -0.31475319e+01 0.13957000e+00
- 2 221 507 509 0.63614137e+00 -0.14478504e+00 -0.84122152e+01 0.54745000e+00
- 2 111 510 511 0.54425280e+00 -0.73920703e+00 -0.11111701e+02 0.13498000e+00
- 2 213 512 513 0.67984989e+00 -0.59825001e-01 -0.21400980e+02 0.79632107e+00
- 2 -323 514 515 0.28522655e+00 -0.35160404e+00 -0.14652359e+02 0.89128521e+00
- 2 323 516 517 0.66412438e+00 -0.52980036e+00 -0.11706445e+02 0.89653610e+00
- 2 -213 518 519 0.11897244e+01 -0.10600413e+01 -0.31788691e+02 0.81870367e+00
- 2 111 520 521 -0.88092666e-01 -0.12590380e+00 -0.28507361e+01 0.13498000e+00
- 1 211 0 0 -0.38912120e-01 -0.30335336e+00 -0.11696604e+02 0.13957000e+00
- 2 331 522 524 0.43613999e+00 -0.29933428e+01 -0.63677677e+02 0.95793198e+00
- 2 -2224 525 526 -0.67924964e+00 -0.19344798e+01 -0.12132752e+03 0.12885920e+01
- 2 213 527 528 0.11957747e-01 -0.21368859e+01 -0.10591612e+03 0.72625288e+00
- 1 2112 0 0 0.38255419e+00 -0.12171221e+01 -0.44921075e+02 0.93957000e+00
- 2 213 529 530 -0.15215617e+01 -0.15569809e+01 -0.21959142e+03 0.45523194e+00
- 1 -211 0 0 0.18329077e+00 -0.29632342e+00 -0.90791290e+01 0.13957000e+00
- 2 331 531 533 0.22137988e+00 0.22600179e+00 -0.61112082e+02 0.95752316e+00
- 2 111 534 535 -0.22576257e+00 0.10486795e+00 -0.11622336e+03 0.13498000e+00
- 2 213 536 537 -0.46672371e+00 0.25035529e+00 -0.92054440e+02 0.51173587e+00
- 2 111 538 539 -0.27082663e+00 -0.17686658e+00 -0.11365813e+03 0.13498000e+00
- 2 223 540 542 -0.50124695e+00 0.40698033e+00 -0.12357626e+03 0.78038703e+00
- 2 92 275 288 -0.98835122e+00 0.27155991e+01 0.22298862e+03 0.22502606e+02
- 2 223 543 544 0.83751506e+00 -0.10848055e+00 0.25534830e+02 0.78457814e+00
- 2 213 545 546 -0.13428156e+00 -0.10393706e+00 0.19437257e+02 0.73426337e+00
- 2 111 547 548 -0.79152131e-01 0.76249066e+00 0.32637888e+02 0.13498000e+00
- 1 -211 0 0 0.44266611e+00 0.22530206e+00 0.70196535e+02 0.13957000e+00
- 2 -313 549 550 0.98819052e+00 0.45610595e+00 0.36765127e+02 0.87690858e+00
- 2 323 551 552 -0.12371249e+00 0.43258491e+00 0.49990980e+01 0.88748211e+00
- 1 -211 0 0 -0.22235181e+00 0.88771300e+00 0.73007162e+01 0.13957000e+00
- 2 113 553 554 -0.31392466e+00 -0.53641715e-01 0.22258691e+01 0.75929440e+00
- 1 -2112 0 0 -0.38152317e+00 0.39131540e+00 0.55570335e+01 0.93957000e+00
- 1 2112 0 0 -0.49532012e+00 -0.74765957e-01 0.20625873e+01 0.93957000e+00
- 1 -2112 0 0 -0.12127307e+01 -0.52306196e+00 0.67344307e+01 0.93957000e+00
- 1 2112 0 0 0.30537067e+00 0.37749233e+00 0.33145659e+01 0.93957000e+00
- 1 211 0 0 -0.13555137e+00 0.11269140e+00 0.32832704e+01 0.13957000e+00
- 1 -211 0 0 -0.46354559e+00 -0.66209334e-01 0.29394094e+01 0.13957000e+00
- 1 -211 0 0 0.18269433e+00 0.53157740e-01 0.10848650e+00 0.13957000e+00
- 2 111 555 556 -0.20989667e+00 0.32647935e+00 0.67704515e+00 0.13498000e+00
- 1 -211 0 0 -0.40412842e+00 0.53841419e+00 0.84580806e+02 0.13957000e+00
- 2 111 557 558 -0.26645631e-01 0.13690151e+01 0.22674594e+03 0.13498000e+00
- 2 311 559 559 -0.62237933e+00 0.33812221e+00 0.18190071e+03 0.49767000e+00
- 1 211 0 0 0.82910730e-01 0.13980055e+00 0.49566809e+02 0.13957000e+00
- 2 310 560 561 0.46578257e+00 0.39340936e+00 0.17894041e+03 0.49767000e+00
- 1 211 0 0 -0.35725071e+00 0.33091830e+00 0.18875043e+01 0.13957000e+00
- 1 -211 0 0 -0.12754376e+00 -0.12210580e+00 0.14597970e+01 0.13957000e+00
- 2 111 562 563 -0.31192400e-01 0.15895526e+00 0.18448142e+01 0.13498000e+00
- 1 22 0 0 0.24489186e+00 0.26638308e+00 0.12928665e+01 0.00000000e+00
- 1 22 0 0 0.16025857e+00 0.21516484e+00 0.14714409e+01 0.00000000e+00
- 1 22 0 0 -0.83107032e-01 0.24535036e+00 0.14033662e+01 0.00000000e+00
- 1 22 0 0 0.54183252e-01 0.13646937e+00 0.83956048e+00 0.00000000e+00
- 1 2112 0 0 -0.89501275e+00 0.27944780e+00 0.15871220e+01 0.93957000e+00
- 2 111 564 565 0.44376696e-01 0.16119453e+00 0.22047165e+00 0.13498000e+00
- 1 -2212 0 0 -0.24452033e+00 0.71361878e+00 0.19392408e+01 0.93827000e+00
- 1 211 0 0 0.13769608e+00 0.22106614e-01 0.74270727e+00 0.13957000e+00
- 1 -211 0 0 0.13687137e+01 -0.90791287e+00 0.38797518e+01 0.13957000e+00
- 2 111 566 567 0.89352310e+00 -0.10184684e+01 0.21510153e+01 0.13498000e+00
- 1 211 0 0 0.11708593e+01 -0.14906858e+00 0.53666860e+01 0.13957000e+00
- 1 -211 0 0 0.38623432e+00 -0.34043960e+00 0.38719247e+01 0.13957000e+00
- 1 211 0 0 0.73764525e-02 -0.13816541e+00 0.25351505e+00 0.13957000e+00
- 2 111 568 569 0.15777811e+01 0.86607683e-01 0.24129510e+01 0.13498000e+00
- 1 -211 0 0 0.10638169e+01 0.11669268e+01 0.21064319e+01 0.13957000e+00
- 1 211 0 0 0.20676826e+00 -0.99493684e-01 0.13653253e+00 0.13957000e+00
- 1 -211 0 0 0.11457303e+01 0.29537738e+00 0.11431156e+01 0.13957000e+00
- 2 111 570 571 0.78205559e+00 0.81537613e+00 0.92341843e+00 0.13498000e+00
- 1 2212 0 0 0.30093328e+01 0.17979808e+01 0.42924908e+01 0.93827000e+00
- 1 211 0 0 0.88943976e+00 0.79722159e+00 0.11868465e+01 0.13957000e+00
- 1 -2212 0 0 0.59690113e+00 0.59175617e+00 0.83795692e+00 0.93827000e+00
- 1 -211 0 0 0.32674139e+00 -0.26147340e-01 0.23279091e+00 0.13957000e+00
- 1 211 0 0 0.22718387e+01 0.63368039e+00 0.20342802e+01 0.13957000e+00
- 2 111 572 573 0.16924181e+01 0.11407246e+01 0.18877049e+01 0.13498000e+00
- 1 22 0 0 0.76547879e+00 0.34727791e+00 0.33285688e+00 0.00000000e+00
- 1 22 0 0 0.12359868e+01 0.10119369e+01 -0.96155156e-02 0.00000000e+00
- 1 -211 0 0 0.75949975e+00 0.10116584e+01 -0.16808742e+00 0.13957000e+00
- 1 211 0 0 0.11604253e+00 0.45764500e-01 -0.28025513e-03 0.13957000e+00
- 2 111 574 575 0.71723753e+00 0.87357701e+00 0.16551645e+00 0.13498000e+00
- 1 -211 0 0 0.19333048e+01 0.12483347e+01 0.12446170e+01 0.13957000e+00
- 2 111 576 577 0.13404969e+00 0.35681055e+00 -0.28461261e-02 0.13498000e+00
- 1 211 0 0 0.66754412e+00 0.21808089e+01 0.33602346e+00 0.13957000e+00
- 2 111 578 579 0.70998485e+00 0.96533381e+00 -0.22882005e+00 0.13498000e+00
- 1 -321 0 0 0.16207872e+00 0.19979263e+01 -0.21868853e+00 0.49360000e+00
- 2 111 580 581 0.33061712e+00 0.51386955e+00 0.12253362e+00 0.13498000e+00
- 2 -3122 582 583 0.19494533e+01 0.22529698e+01 -0.12307290e+01 0.11156800e+01
- 2 111 584 585 0.73645973e+00 0.63723476e+00 -0.22012987e+00 0.13498000e+00
- 1 -211 0 0 0.80914289e+00 0.83101511e+00 -0.49381648e+00 0.13957000e+00
- 2 111 586 587 0.25782633e-02 -0.78744892e-01 -0.25307814e+00 0.13498000e+00
- 1 -211 0 0 0.18839871e+01 0.72371834e+00 -0.16126494e+01 0.13957000e+00
- 1 211 0 0 0.54323364e+00 0.37767918e+00 -0.27624781e+00 0.13957000e+00
- 2 -311 588 588 0.23015877e+01 -0.89720217e+00 -0.31322354e+01 0.49767000e+00
- 1 -211 0 0 0.41386591e+00 -0.15317310e+00 -0.11288743e+01 0.13957000e+00
- 1 211 0 0 0.22510873e+01 0.38960911e+00 -0.59822405e+01 0.13957000e+00
- 1 -211 0 0 0.20690106e+01 0.79312274e-01 -0.48551163e+01 0.13957000e+00
- 1 211 0 0 0.41209277e+00 0.42089634e+00 -0.87730036e+00 0.13957000e+00
- 2 111 589 590 0.54165555e+00 -0.18483486e+00 -0.37745185e+00 0.13498000e+00
- 2 310 591 592 0.88663439e+00 0.25373309e+01 -0.58249495e+01 0.49767000e+00
- 1 -321 0 0 0.31590584e+00 0.33960061e+00 -0.87721561e+00 0.49360000e+00
- 2 111 593 594 0.29240685e+00 0.81983884e+00 -0.12139075e+01 0.13498000e+00
- 1 -211 0 0 0.17891481e+00 0.27713157e-01 -0.21840477e+00 0.13957000e+00
- 2 111 595 596 -0.14659620e+00 0.25103112e+00 -0.18777601e+01 0.13498000e+00
- 1 22 0 0 0.10208672e+00 0.96604529e+00 -0.35249098e+01 0.00000000e+00
- 1 22 0 0 0.50090809e-01 0.83693578e+00 -0.26224591e+01 0.00000000e+00
- 1 -211 0 0 -0.13132378e+00 0.26886089e+00 -0.15270926e+01 0.13957000e+00
- 1 211 0 0 0.55958931e-03 0.35358885e+00 -0.25026043e+01 0.13957000e+00
- 2 111 597 598 0.50132177e-01 0.14883008e+01 -0.56132980e+01 0.13498000e+00
- 1 22 0 0 -0.43531079e-01 0.61763066e+00 -0.84031660e+01 0.00000000e+00
- 1 22 0 0 0.47184932e-01 0.21734402e+00 -0.24017083e+01 0.00000000e+00
- 1 211 0 0 -0.38814799e+00 0.12064026e+01 -0.70877626e+01 0.13957000e+00
- 1 -211 0 0 -0.62037354e-01 0.61375250e+00 -0.25956354e+01 0.13957000e+00
- 2 111 599 600 -0.30358950e+00 0.44381124e+00 -0.40367471e+01 0.13498000e+00
- 1 211 0 0 -0.42920352e+00 0.58033256e+00 -0.68613169e+01 0.13957000e+00
- 2 111 601 602 -0.18772953e-01 -0.22460969e+00 -0.29968702e+01 0.13498000e+00
- 1 -211 0 0 0.78579588e-01 0.15926234e+00 -0.13120552e+01 0.13957000e+00
- 1 211 0 0 -0.66356769e-01 0.75561899e+00 -0.69160410e+01 0.13957000e+00
- 2 111 603 604 -0.23332040e+00 0.64178534e+00 -0.91715450e+01 0.13498000e+00
- 1 22 0 0 -0.23624544e+00 -0.45575483e-01 -0.29661330e+01 0.00000000e+00
- 1 22 0 0 -0.72230707e+00 0.72262297e+00 -0.22403565e+02 0.00000000e+00
- 1 -211 0 0 -0.88133835e-01 0.40909095e+00 -0.23733503e+02 0.13957000e+00
- 1 211 0 0 -0.60543884e-01 0.13930133e+01 -0.91221685e+02 0.13957000e+00
- 2 111 605 606 0.28311915e+00 0.63242844e+00 -0.37234451e+02 0.13498000e+00
- 1 22 0 0 -0.47120042e+00 0.16017787e+00 -0.23521067e+02 0.00000000e+00
- 1 22 0 0 -0.77241626e+00 0.27720260e+00 -0.31432062e+02 0.00000000e+00
- 1 211 0 0 -0.42822620e+00 0.46376218e+00 -0.74363144e+02 0.13957000e+00
- 1 -211 0 0 0.28895299e+00 -0.21688443e-01 -0.27374360e+02 0.13957000e+00
- 1 22 0 0 -0.59532202e+00 0.33944082e+00 -0.16965970e+03 0.00000000e+00
- 1 22 0 0 -0.29151282e+00 0.28507801e+00 -0.10124852e+03 0.00000000e+00
- 1 2112 0 0 -0.15112401e+01 -0.13068865e+00 -0.33026804e+03 0.93957000e+00
- 1 -211 0 0 -0.37886486e+00 -0.12658301e+00 -0.10508595e+03 0.13957000e+00
- 1 211 0 0 -0.39258917e+00 0.86092221e-02 -0.27939253e+02 0.13957000e+00
- 1 -211 0 0 -0.11227491e-01 0.24032268e+00 -0.27797971e+02 0.13957000e+00
- 2 111 607 608 0.64595198e-01 0.25821341e-01 -0.26349752e+02 0.13498000e+00
- 1 321 0 0 0.25111107e+00 -0.41456600e+00 -0.28071482e+02 0.49360000e+00
- 1 -211 0 0 -0.80583370e-01 0.30867235e-02 -0.22163160e+02 0.13957000e+00
- 2 -311 609 609 -0.39306838e+00 0.30401693e+00 -0.34828429e+02 0.49767000e+00
- 1 -211 0 0 0.23866629e+00 0.43891187e-01 -0.81643845e+01 0.13957000e+00
- 1 -211 0 0 0.20178506e+00 -0.55723154e+00 -0.31319484e+02 0.13957000e+00
- 1 211 0 0 -0.17306718e+00 -0.23736268e-01 -0.37122723e+01 0.13957000e+00
- 1 211 0 0 -0.22293719e-01 0.39685284e+00 -0.48051532e+02 0.13957000e+00
- 2 111 610 611 0.22713116e+00 0.37568207e+00 -0.17679606e+02 0.13498000e+00
- 1 211 0 0 -0.13321100e+00 0.37063228e+00 -0.35399461e+02 0.13957000e+00
- 1 -211 0 0 -0.15409554e+00 -0.18966236e+00 -0.56549725e+01 0.13957000e+00
- 1 321 0 0 -0.99447658e-01 0.47318320e+00 -0.89343221e+02 0.49360000e+00
- 1 -211 0 0 -0.45897423e+00 0.98261826e-01 -0.46206979e+02 0.13957000e+00
- 2 310 612 613 0.11346062e+00 0.57146269e+00 -0.13909599e+03 0.49767000e+00
- 1 -211 0 0 -0.30050975e+00 0.53406385e-02 -0.32234127e+02 0.13957000e+00
- 2 111 614 615 -0.45217516e-02 -0.22904425e+00 -0.14592581e+03 0.13498000e+00
- 1 211 0 0 0.15781684e+00 -0.11058349e+00 -0.56136457e+02 0.13957000e+00
- 2 111 616 617 0.56456857e-01 -0.23717249e+00 -0.23961446e+03 0.13498000e+00
- 1 -211 0 0 -0.96876344e-01 -0.25826960e+00 0.15227569e+04 0.13957000e+00
- 1 211 0 0 0.41012416e+00 -0.17108698e+00 0.63710269e+03 0.13957000e+00
- 1 2112 0 0 0.25535771e+00 -0.54174215e+00 0.12271884e+04 0.93957000e+00
- 2 111 618 619 0.10836508e+00 0.73881100e-01 0.80877811e+02 0.13498000e+00
- 1 22 0 0 0.39736004e-01 0.70121092e-01 0.47170945e+01 0.00000000e+00
- 1 22 0 0 0.12354719e+00 -0.28587271e-01 0.13311291e+02 0.00000000e+00
- 1 211 0 0 -0.11850945e+00 0.29535477e+00 0.21446992e+01 0.13957000e+00
- 2 111 620 621 -0.26522624e+00 -0.44299947e+00 0.27330751e+01 0.13498000e+00
- 1 2112 0 0 0.32730958e-01 -0.81051016e+00 0.11134130e+02 0.93957000e+00
- 1 -211 0 0 -0.36317704e-01 -0.24489811e+00 0.63339584e+01 0.13957000e+00
- 1 211 0 0 0.31683457e+00 0.29294780e+00 0.56306630e+01 0.13957000e+00
- 1 -211 0 0 0.10326986e+00 -0.22738274e+00 0.77509579e+00 0.13957000e+00
- 1 -211 0 0 -0.46032855e+00 -0.27434861e+01 0.14327467e+02 0.13957000e+00
- 1 211 0 0 -0.57302048e+00 -0.18501567e+01 0.13346297e+02 0.13957000e+00
- 1 -2112 0 0 0.45752746e+00 -0.57863966e+00 0.10560589e+02 0.93957000e+00
- 1 211 0 0 -0.14531678e+00 -0.43212802e+00 0.56948316e+01 0.13957000e+00
- 1 -211 0 0 -0.13354990e+00 -0.42231794e+00 0.27293661e+01 0.13957000e+00
- 1 211 0 0 -0.52763622e-01 -0.13314338e+01 0.81782949e+01 0.13957000e+00
- 2 111 622 623 -0.18239164e+00 -0.15272925e+01 0.13006592e+02 0.13498000e+00
- 1 2112 0 0 -0.11232017e+01 -0.29732275e+01 0.22592822e+02 0.93957000e+00
- 1 -211 0 0 -0.81679932e-01 -0.15540087e+00 0.11197418e+01 0.13957000e+00
- 1 -211 0 0 0.11124570e+00 -0.48286125e+00 0.74208860e+01 0.13957000e+00
- 1 211 0 0 0.12194483e+00 0.65487465e-01 0.28259542e+01 0.13957000e+00
- 2 111 624 625 0.93161348e-01 -0.18541194e+00 0.13989899e+01 0.13498000e+00
- 1 211 0 0 0.13642471e+01 -0.10338225e+01 0.26976870e+02 0.13957000e+00
- 2 111 626 627 0.12593345e+01 -0.36055922e+00 0.29016347e+02 0.13498000e+00
- 1 22 0 0 0.56005318e+00 -0.50771765e+00 0.19728820e+02 0.00000000e+00
- 1 22 0 0 0.75821024e+00 -0.83375843e+00 0.26347135e+02 0.00000000e+00
- 1 211 0 0 0.99748318e+00 -0.71786937e+00 0.19837237e+02 0.13957000e+00
- 1 -211 0 0 0.86271033e+00 -0.67184542e+00 0.31675963e+02 0.13957000e+00
- 1 -211 0 0 0.12190787e+01 -0.76809228e+00 0.31980649e+02 0.13957000e+00
- 1 211 0 0 0.11846878e+01 -0.19633958e+01 0.67860073e+02 0.13957000e+00
- 1 -211 0 0 0.47161602e+00 0.13712927e+00 0.73866527e+02 0.13957000e+00
- 2 111 628 629 0.24830532e+00 -0.46230709e-01 0.89191947e+01 0.13498000e+00
- 1 -2112 0 0 -0.55568154e+00 -0.40981406e+00 0.27878131e+03 0.93957000e+00
- 2 111 630 631 -0.25077274e-01 -0.11853873e+00 0.13221533e+03 0.13498000e+00
- 1 211 0 0 0.10171920e+00 -0.18851751e+00 0.93162423e+02 0.13957000e+00
- 1 -211 0 0 -0.22382645e+00 -0.24596828e+00 0.22733923e+02 0.13957000e+00
- 1 211 0 0 -0.17479259e+00 0.12769011e+00 0.11503792e+02 0.13957000e+00
- 2 111 632 633 -0.62635670e+00 0.22491153e-01 0.76642398e+02 0.13498000e+00
- 1 -211 0 0 0.19381293e+00 -0.14172859e+00 0.23063511e+02 0.13957000e+00
- 2 111 634 635 -0.45005372e+00 0.22528753e+00 0.23034771e+02 0.13498000e+00
- 1 -2212 0 0 -0.20072564e+01 0.94738944e+00 0.43247114e+02 0.93827000e+00
- 1 211 0 0 -0.78564092e+00 0.53688123e+00 0.13427835e+02 0.13957000e+00
- 1 2112 0 0 -0.21868828e+01 0.11385962e+01 0.35801391e+02 0.93957000e+00
- 1 -211 0 0 -0.13984956e+00 0.15409242e-01 0.16357276e+01 0.13957000e+00
- 1 211 0 0 -0.11517823e+00 0.14134706e+00 0.67462449e+00 0.13957000e+00
- 2 111 636 637 -0.17453807e+01 0.12406764e+01 0.13415672e+02 0.13498000e+00
- 1 -211 0 0 0.11246813e+00 -0.57579607e-01 0.15581299e+01 0.13957000e+00
- 2 111 638 639 -0.10208525e+01 -0.38088713e+00 0.85355557e+01 0.13498000e+00
- 2 111 640 641 -0.62487552e+00 -0.29684897e+00 0.12383745e+01 0.13498000e+00
- 2 111 642 643 -0.42659163e+00 -0.14966666e-01 0.82577024e+00 0.13498000e+00
- 2 221 644 646 -0.18822996e+01 -0.99390194e+00 0.38065464e+01 0.54745000e+00
- 1 -211 0 0 -0.56353039e+00 -0.56889705e+00 0.13140914e+01 0.13957000e+00
- 1 211 0 0 -0.41891698e+00 -0.49328917e-01 0.73557064e+00 0.13957000e+00
- 2 111 647 648 -0.40642534e-01 -0.25454992e+00 0.60913733e+00 0.13498000e+00
- 1 -321 0 0 -0.16870084e+00 -0.13917431e+00 0.84294595e+00 0.49360000e+00
- 2 111 649 650 -0.35758917e+00 -0.18314502e-02 0.27651678e+00 0.13498000e+00
- 2 311 651 651 -0.95078147e+00 0.63754706e+00 0.45881602e+00 0.49767000e+00
- 1 211 0 0 -0.16638965e+01 0.11138258e+01 0.76764384e+00 0.13957000e+00
- 1 211 0 0 -0.74355464e+00 0.46117041e+00 0.80899144e-01 0.13957000e+00
- 1 -211 0 0 -0.64419927e+00 0.16685913e+00 0.54244493e-01 0.13957000e+00
- 2 111 652 653 -0.31470210e+00 0.97520214e-01 -0.25918902e+00 0.13498000e+00
- 1 211 0 0 -0.24049305e+00 -0.55471086e-01 -0.10146535e+00 0.13957000e+00
- 1 -211 0 0 -0.86593327e-02 0.15268926e-01 0.97329186e-01 0.13957000e+00
- 2 111 654 655 -0.72836007e+00 0.24608211e+00 0.13424622e+00 0.13498000e+00
- 1 -211 0 0 -0.11400377e+00 0.31429055e+00 -0.81823571e-01 0.13957000e+00
- 2 111 656 657 -0.14500180e+01 0.55836873e+00 -0.21850234e+00 0.13498000e+00
- 1 130 0 0 -0.58027799e+00 0.68056634e+00 -0.92490202e+00 0.49767000e+00
- 1 321 0 0 -0.10777590e+01 0.44576347e+00 -0.19881756e+00 0.49360000e+00
- 1 -211 0 0 -0.45008238e+00 0.72177339e+00 -0.10210593e+00 0.13957000e+00
- 1 -2112 0 0 -0.15945359e+01 -0.33334679e+00 -0.61916168e+00 0.93957000e+00
- 2 111 658 659 -0.11533262e+01 -0.28934519e+00 -0.42183805e+00 0.13498000e+00
- 1 2112 0 0 -0.10801515e+01 -0.10005468e+01 -0.59529765e+00 0.93957000e+00
- 1 -211 0 0 -0.49256521e+00 -0.47556029e+00 0.48577603e-01 0.13957000e+00
- 1 22 0 0 -0.29504856e-01 0.89702414e-02 -0.24554203e-01 0.00000000e+00
- 1 22 0 0 -0.35684302e+00 0.61792227e+00 -0.11576292e+01 0.00000000e+00
- 1 -211 0 0 -0.83478946e-01 -0.45793765e+00 -0.84101026e+00 0.13957000e+00
- 1 211 0 0 0.29319697e+00 -0.53050449e+00 -0.14559738e+00 0.13957000e+00
- 2 311 660 660 -0.51345699e+00 -0.86180615e+00 -0.33202809e+00 0.49767000e+00
- 1 211 0 0 -0.37783050e+00 -0.33788251e+00 -0.62626466e+00 0.13957000e+00
- 2 310 661 662 -0.26684016e+00 0.14648793e+00 -0.21609968e+00 0.49767000e+00
- 1 321 0 0 0.13473083e+00 -0.38843392e+00 -0.12720474e+01 0.49360000e+00
- 1 -211 0 0 -0.20093408e+00 -0.88860460e+00 -0.10582108e+01 0.13957000e+00
- 1 -321 0 0 -0.15291397e+01 0.37141956e+00 -0.10161083e+02 0.49360000e+00
- 1 211 0 0 -0.19111418e+00 -0.10450115e+00 -0.85382510e+00 0.13957000e+00
- 1 321 0 0 -0.33559906e+00 -0.45529601e+00 -0.49569388e+01 0.49360000e+00
- 1 -211 0 0 -0.87686005e+00 -0.25940955e+00 -0.51118456e+01 0.13957000e+00
- 1 211 0 0 -0.56450367e-01 0.27604396e+00 -0.18235207e+01 0.13957000e+00
- 1 -211 0 0 -0.14953927e+00 0.45891802e-01 -0.33055298e+00 0.13957000e+00
- 2 111 663 664 -0.90166030e-01 -0.76926616e-01 -0.16417535e+01 0.13498000e+00
- 2 111 665 666 -0.21179270e+00 -0.24078953e-01 -0.14632008e+01 0.13498000e+00
- 2 111 667 668 -0.26843417e+00 0.48750041e-01 -0.92555687e+00 0.13498000e+00
- 2 111 669 670 -0.56718867e+00 -0.15558349e+00 -0.22160112e+01 0.13498000e+00
- 1 130 0 0 -0.11044060e+01 0.53626327e+00 -0.14847590e+02 0.49767000e+00
- 2 -3122 671 672 -0.52757881e+01 -0.24668696e+01 -0.90813642e+02 0.11156800e+01
- 2 111 673 674 -0.59485923e+00 -0.17892891e+00 -0.83656552e+01 0.13498000e+00
- 1 2212 0 0 -0.91814285e+00 -0.21153942e-01 -0.19253267e+02 0.93827000e+00
- 2 111 675 676 -0.24593148e+00 -0.18869119e+00 -0.77129399e+01 0.13498000e+00
- 1 -211 0 0 -0.38857763e-01 -0.10448667e+00 -0.49173337e+01 0.13957000e+00
- 1 211 0 0 -0.68894089e+00 -0.19675244e+00 -0.14811664e+02 0.13957000e+00
- 2 111 677 678 -0.80281144e+00 -0.36914477e+00 -0.12902837e+02 0.13498000e+00
- 1 321 0 0 0.82335777e-02 0.34050693e+00 -0.85570923e+01 0.49360000e+00
- 1 -211 0 0 -0.18459215e+00 -0.50475684e-01 -0.17442760e+02 0.13957000e+00
- 1 22 0 0 -0.10630564e+00 -0.18785330e+00 -0.12787539e+01 0.00000000e+00
- 1 22 0 0 0.46528382e-01 -0.76355964e-01 -0.87709620e+01 0.00000000e+00
- 1 211 0 0 0.20998697e+00 -0.87472457e-01 -0.49325942e+01 0.13957000e+00
- 2 111 679 680 -0.34295679e+00 -0.25430143e+00 -0.14422426e+02 0.13498000e+00
- 2 111 681 682 0.42825746e-01 -0.16518442e-01 -0.12933050e+01 0.13498000e+00
- 2 111 683 684 0.29412406e+00 -0.20456035e-01 -0.46247472e+01 0.13498000e+00
- 2 111 685 686 0.29919156e+00 -0.10781057e+00 -0.24941630e+01 0.13498000e+00
- 1 22 0 0 0.24898591e-01 -0.98586717e-01 -0.10381606e+01 0.00000000e+00
- 1 22 0 0 0.51935421e+00 -0.64062031e+00 -0.10073540e+02 0.00000000e+00
- 1 211 0 0 0.64955707e+00 -0.30264683e+00 -0.12504817e+02 0.13957000e+00
- 2 111 687 688 0.30292825e-01 0.24282183e+00 -0.88961630e+01 0.13498000e+00
- 1 -321 0 0 0.23147494e+00 -0.45720160e+00 -0.79831622e+01 0.49360000e+00
- 2 111 689 690 0.53751612e-01 0.10559756e+00 -0.66691971e+01 0.13498000e+00
- 2 311 691 691 0.17728999e+00 -0.54405948e-01 -0.43655139e+01 0.49767000e+00
- 1 211 0 0 0.48683440e+00 -0.47539441e+00 -0.73409312e+01 0.13957000e+00
- 1 -211 0 0 0.86015986e+00 -0.26218537e+00 -0.14735576e+02 0.13957000e+00
- 2 111 692 693 0.32956451e+00 -0.79785596e+00 -0.17053115e+02 0.13498000e+00
- 1 22 0 0 -0.10286893e+00 -0.11971071e+00 -0.17231390e+01 0.00000000e+00
- 1 22 0 0 0.14776263e-01 -0.61930897e-02 -0.11275971e+01 0.00000000e+00
- 2 111 694 695 0.10361753e+00 -0.41107821e+00 -0.73703313e+01 0.13498000e+00
- 2 111 696 697 -0.47537851e-01 -0.80309300e+00 -0.18136789e+02 0.13498000e+00
- 2 221 698 700 0.38006031e+00 -0.17791716e+01 -0.38170557e+02 0.54745000e+00
- 1 -2212 0 0 -0.38492092e+00 -0.15515345e+01 -0.10520335e+03 0.93827000e+00
- 1 -211 0 0 -0.29432873e+00 -0.38294534e+00 -0.16124172e+02 0.13957000e+00
- 1 211 0 0 0.22141922e+00 -0.90290617e+00 -0.33858492e+02 0.13957000e+00
- 2 111 701 702 -0.20946148e+00 -0.12339797e+01 -0.72057628e+02 0.13498000e+00
- 1 211 0 0 -0.60745136e+00 -0.85343859e+00 -0.96655244e+02 0.13957000e+00
- 2 111 703 704 -0.91411037e+00 -0.70354228e+00 -0.12293618e+03 0.13498000e+00
- 1 211 0 0 -0.10437182e+00 -0.47055788e-01 -0.12868547e+02 0.13957000e+00
- 1 -211 0 0 0.12780377e+00 0.44213047e-01 -0.92976204e+01 0.13957000e+00
- 2 221 705 707 0.19794793e+00 0.22884453e+00 -0.38945915e+02 0.54745000e+00
- 1 22 0 0 0.11394005e-01 -0.77932461e-03 -0.17455534e+02 0.00000000e+00
- 1 22 0 0 -0.23715658e+00 0.10564727e+00 -0.98767825e+02 0.00000000e+00
- 1 211 0 0 -0.25824190e+00 0.28771168e+00 -0.74675548e+02 0.13957000e+00
- 2 111 708 709 -0.20848182e+00 -0.37356390e-01 -0.17378892e+02 0.13498000e+00
- 1 22 0 0 -0.28580360e+00 -0.16438783e+00 -0.10921288e+03 0.00000000e+00
- 1 22 0 0 0.14976968e-01 -0.12478752e-01 -0.44452494e+01 0.00000000e+00
- 1 -211 0 0 -0.23532071e+00 0.78189347e-01 -0.46072639e+02 0.13957000e+00
- 1 211 0 0 -0.31464742e-01 -0.77537372e-01 -0.85781360e+01 0.13957000e+00
- 2 111 710 711 -0.23446150e+00 0.40632835e+00 -0.68925488e+02 0.13498000e+00
- 1 -211 0 0 0.41820393e+00 0.11079560e+00 0.19682368e+02 0.13957000e+00
- 1 211 0 0 0.41931113e+00 -0.21927615e+00 0.58524622e+01 0.13957000e+00
- 1 211 0 0 -0.13754650e+00 -0.23384681e+00 0.34387573e+01 0.13957000e+00
- 2 111 712 713 0.32649437e-02 0.12990975e+00 0.15998500e+02 0.13498000e+00
- 1 22 0 0 0.19058741e-01 0.27205598e+00 0.13434311e+02 0.00000000e+00
- 1 22 0 0 -0.98210872e-01 0.49043468e+00 0.19203577e+02 0.00000000e+00
- 1 -321 0 0 0.40726426e+00 0.22043194e+00 0.12731571e+02 0.49360000e+00
- 1 211 0 0 0.58092626e+00 0.23567400e+00 0.24033556e+02 0.13957000e+00
- 2 311 714 714 -0.62030936e-01 0.52439460e+00 0.46393064e+01 0.49767000e+00
- 1 211 0 0 -0.61681551e-01 -0.91809691e-01 0.35979162e+00 0.13957000e+00
- 1 -211 0 0 -0.31671321e-01 -0.17354583e+00 0.15029922e+00 0.13957000e+00
- 1 211 0 0 -0.28225334e+00 0.11990412e+00 0.20755699e+01 0.13957000e+00
- 1 22 0 0 -0.16734457e+00 0.17677154e+00 0.50107799e+00 0.00000000e+00
- 1 22 0 0 -0.42552101e-01 0.14970781e+00 0.17596716e+00 0.00000000e+00
- 1 22 0 0 0.16454526e-01 0.12287792e+01 0.20103105e+03 0.00000000e+00
- 1 22 0 0 -0.43100157e-01 0.14023593e+00 0.25714889e+02 0.00000000e+00
- 1 130 0 0 -0.62237933e+00 0.33812221e+00 0.18190071e+03 0.49767000e+00
- 1 -211 0 0 0.14953170e+00 0.26823481e+00 0.12612856e+03 0.13957000e+00
- 1 211 0 0 0.31625087e+00 0.12517455e+00 0.52811857e+02 0.13957000e+00
- 1 22 0 0 -0.32008541e-01 -0.21797716e-02 0.69898512e+00 0.00000000e+00
- 1 22 0 0 0.81614082e-03 0.16113503e+00 0.11458290e+01 0.00000000e+00
- 1 22 0 0 -0.41220594e-01 0.97963307e-01 0.13201876e+00 0.00000000e+00
- 1 22 0 0 0.85597290e-01 0.63231223e-01 0.88452883e-01 0.00000000e+00
- 1 22 0 0 0.91859224e-01 -0.98211925e-01 0.29754515e+00 0.00000000e+00
- 1 22 0 0 0.80166387e+00 -0.92025648e+00 0.18534701e+01 0.00000000e+00
- 1 22 0 0 0.14896460e+01 0.11227076e+00 0.22847894e+01 0.00000000e+00
- 1 22 0 0 0.88135066e-01 -0.25663080e-01 0.12816151e+00 0.00000000e+00
- 1 22 0 0 0.75562808e+00 0.74203326e+00 0.84538725e+00 0.00000000e+00
- 1 22 0 0 0.26427506e-01 0.73342863e-01 0.78031185e-01 0.00000000e+00
- 1 22 0 0 0.12535028e+01 0.85867040e+00 0.14819080e+01 0.00000000e+00
- 1 22 0 0 0.43891531e+00 0.28205421e+00 0.40579696e+00 0.00000000e+00
- 1 22 0 0 0.41520813e+00 0.54254017e+00 0.37334492e-01 0.00000000e+00
- 1 22 0 0 0.30202939e+00 0.33103685e+00 0.12818196e+00 0.00000000e+00
- 1 22 0 0 0.30507710e-01 0.13883504e+00 -0.63277291e-01 0.00000000e+00
- 1 22 0 0 0.10354198e+00 0.21797551e+00 0.60431164e-01 0.00000000e+00
- 1 22 0 0 0.28473759e+00 0.46201362e+00 -0.52079347e-01 0.00000000e+00
- 1 22 0 0 0.42524726e+00 0.50332019e+00 -0.17674071e+00 0.00000000e+00
- 1 22 0 0 0.17389765e+00 0.23517248e+00 0.12457852e+00 0.00000000e+00
- 1 22 0 0 0.15671948e+00 0.27869708e+00 -0.20449018e-02 0.00000000e+00
- 1 -2112 0 0 0.14439790e+01 0.17329768e+01 -0.95825091e+00 0.93957000e+00
- 2 111 715 716 0.50547434e+00 0.51999296e+00 -0.27247809e+00 0.13498000e+00
- 1 22 0 0 0.31822850e+00 0.24962147e+00 -0.15685464e+00 0.00000000e+00
- 1 22 0 0 0.41823124e+00 0.38761329e+00 -0.63275236e-01 0.00000000e+00
- 1 22 0 0 0.76725873e-03 -0.88315896e-01 -0.26656302e+00 0.00000000e+00
- 1 22 0 0 0.18110046e-02 0.95710037e-02 0.13484872e-01 0.00000000e+00
- 1 130 0 0 0.23015877e+01 -0.89720217e+00 -0.31322354e+01 0.49767000e+00
- 1 22 0 0 0.47142743e+00 -0.15574262e+00 -0.26436550e+00 0.00000000e+00
- 1 22 0 0 0.70228118e-01 -0.29092235e-01 -0.11308634e+00 0.00000000e+00
- 2 111 717 718 0.28885408e+00 0.69506411e+00 -0.12621424e+01 0.13498000e+00
- 2 111 719 720 0.59778031e+00 0.18422668e+01 -0.45628071e+01 0.13498000e+00
- 1 22 0 0 0.28248182e+00 0.73660811e+00 -0.10275701e+01 0.00000000e+00
- 1 22 0 0 0.99250257e-02 0.83230730e-01 -0.18633737e+00 0.00000000e+00
- 1 22 0 0 0.42803202e-03 0.80184951e-01 -0.27722108e+00 0.00000000e+00
- 1 22 0 0 -0.14702423e+00 0.17084617e+00 -0.16005390e+01 0.00000000e+00
- 1 22 0 0 -0.73396559e-02 0.35770590e-01 -0.79404467e-01 0.00000000e+00
- 1 22 0 0 0.57471833e-01 0.14525302e+01 -0.55338935e+01 0.00000000e+00
- 1 22 0 0 -0.14795433e+00 0.15728098e+00 -0.20461523e+01 0.00000000e+00
- 1 22 0 0 -0.15563516e+00 0.28653026e+00 -0.19905948e+01 0.00000000e+00
- 1 22 0 0 0.23461426e-02 -0.22952662e+00 -0.29012354e+01 0.00000000e+00
- 1 22 0 0 -0.21119096e-01 0.49169316e-02 -0.95634775e-01 0.00000000e+00
- 1 22 0 0 0.17217629e-01 0.26147723e-01 -0.37833980e+00 0.00000000e+00
- 1 22 0 0 -0.25053803e+00 0.61563762e+00 -0.87932052e+01 0.00000000e+00
- 1 22 0 0 0.10715577e+00 0.37529906e+00 -0.18699203e+02 0.00000000e+00
- 1 22 0 0 0.17596338e+00 0.25712938e+00 -0.18535248e+02 0.00000000e+00
- 1 22 0 0 0.82574250e-01 0.67187752e-01 -0.17740810e+02 0.00000000e+00
- 1 22 0 0 -0.17979051e-01 -0.41366411e-01 -0.86089413e+01 0.00000000e+00
- 1 130 0 0 -0.39306838e+00 0.30401693e+00 -0.34828429e+02 0.49767000e+00
- 1 22 0 0 0.28466691e-01 0.10775670e+00 -0.27825110e+01 0.00000000e+00
- 1 22 0 0 0.19866447e+00 0.26792537e+00 -0.14897095e+02 0.00000000e+00
- 1 -211 0 0 0.27363890e-01 0.41183046e+00 -0.11916653e+03 0.13957000e+00
- 1 211 0 0 0.86096733e-01 0.15963223e+00 -0.19929462e+02 0.13957000e+00
- 1 22 0 0 0.10876690e-01 -0.68086627e-01 -0.84914022e+02 0.00000000e+00
- 1 22 0 0 -0.15398441e-01 -0.16095762e+00 -0.61011789e+02 0.00000000e+00
- 1 22 0 0 -0.14257273e-01 -0.10510524e+00 -0.14941130e+03 0.00000000e+00
- 1 22 0 0 0.70714130e-01 -0.13206725e+00 -0.90203166e+02 0.00000000e+00
- 1 22 0 0 0.21699156e-01 0.94871880e-01 0.36738465e+02 0.00000000e+00
- 1 22 0 0 0.86665922e-01 -0.20990780e-01 0.44139346e+02 0.00000000e+00
- 1 22 0 0 -0.70083384e-01 -0.12518109e+00 0.48075836e+00 0.00000000e+00
- 1 22 0 0 -0.19514286e+00 -0.31781837e+00 0.22523167e+01 0.00000000e+00
- 1 22 0 0 0.18561062e-01 -0.82622190e-01 0.62376301e+00 0.00000000e+00
- 1 22 0 0 -0.20095270e+00 -0.14446703e+01 0.12382829e+02 0.00000000e+00
- 1 22 0 0 0.11661611e+00 -0.15890172e+00 0.94404084e+00 0.00000000e+00
- 1 22 0 0 -0.23454759e-01 -0.26510222e-01 0.45494904e+00 0.00000000e+00
- 1 22 0 0 0.28113728e+00 -0.14010751e+00 0.68469574e+01 0.00000000e+00
- 1 22 0 0 0.97819718e+00 -0.22045170e+00 0.22169390e+02 0.00000000e+00
- 1 22 0 0 -0.57506625e-02 -0.23500716e-01 0.36887186e+00 0.00000000e+00
- 1 22 0 0 0.25405598e+00 -0.22729993e-01 0.85503229e+01 0.00000000e+00
- 1 22 0 0 0.14221136e-01 -0.85658555e-01 0.33944029e+02 0.00000000e+00
- 1 22 0 0 -0.39298410e-01 -0.32880179e-01 0.98271300e+02 0.00000000e+00
- 1 22 0 0 -0.45555377e+00 -0.14769796e-01 0.48626154e+02 0.00000000e+00
- 1 22 0 0 -0.17080293e+00 0.37260949e-01 0.28016244e+02 0.00000000e+00
- 1 22 0 0 -0.11155021e+00 0.11689264e+00 0.59328226e+01 0.00000000e+00
- 1 22 0 0 -0.33850351e+00 0.10839489e+00 0.17101948e+02 0.00000000e+00
- 1 22 0 0 -0.27205413e+00 0.19242645e+00 0.17955919e+01 0.00000000e+00
- 1 22 0 0 -0.14733266e+01 0.10482499e+01 0.11620080e+02 0.00000000e+00
- 1 22 0 0 -0.45246234e+00 -0.23807519e+00 0.41180954e+01 0.00000000e+00
- 1 22 0 0 -0.56839018e+00 -0.14281194e+00 0.44174604e+01 0.00000000e+00
- 1 22 0 0 -0.54645578e+00 -0.23122608e+00 0.96253435e+00 0.00000000e+00
- 1 22 0 0 -0.78419733e-01 -0.65622888e-01 0.27584016e+00 0.00000000e+00
- 1 22 0 0 -0.30880288e-01 0.24917676e-01 0.30164194e-01 0.00000000e+00
- 1 22 0 0 -0.39571134e+00 -0.39884343e-01 0.79560604e+00 0.00000000e+00
- 2 111 721 722 -0.19603921e+00 -0.17005726e+00 0.53040527e+00 0.13498000e+00
- 2 111 723 724 -0.11260994e+01 -0.61268628e+00 0.23056986e+01 0.13498000e+00
- 2 111 725 726 -0.56016096e+00 -0.21115840e+00 0.97044252e+00 0.13498000e+00
- 1 22 0 0 -0.78731226e-01 -0.11787352e+00 0.37977877e+00 0.00000000e+00
- 1 22 0 0 0.38088692e-01 -0.13667640e+00 0.22935856e+00 0.00000000e+00
- 1 22 0 0 -0.36344575e+00 0.12195113e-02 0.24207091e+00 0.00000000e+00
- 1 22 0 0 0.58565836e-02 -0.30509615e-02 0.34445871e-01 0.00000000e+00
- 2 310 727 728 -0.95078147e+00 0.63754706e+00 0.45881602e+00 0.49767000e+00
- 1 22 0 0 -0.16009596e+00 0.91888858e-02 -0.19180622e+00 0.00000000e+00
- 1 22 0 0 -0.15460614e+00 0.88331328e-01 -0.67382800e-01 0.00000000e+00
- 1 22 0 0 -0.50661625e-01 -0.14698914e-01 -0.37687442e-02 0.00000000e+00
- 1 22 0 0 -0.67769845e+00 0.26078103e+00 0.13801497e+00 0.00000000e+00
- 1 22 0 0 -0.92594643e+00 0.41540306e+00 -0.10844949e+00 0.00000000e+00
- 1 22 0 0 -0.52407154e+00 0.14296567e+00 -0.11005285e+00 0.00000000e+00
- 1 22 0 0 -0.59672868e+00 -0.11565798e+00 -0.15287303e+00 0.00000000e+00
- 1 22 0 0 -0.55659757e+00 -0.17368721e+00 -0.26896502e+00 0.00000000e+00
- 2 310 729 730 -0.51345699e+00 -0.86180615e+00 -0.33202809e+00 0.49767000e+00
- 2 111 731 732 -0.20229949e+00 0.28706013e+00 -0.16334987e+00 0.13498000e+00
- 2 111 733 734 -0.64540671e-01 -0.14057220e+00 -0.52749815e-01 0.13498000e+00
- 1 22 0 0 0.41243016e-02 -0.80859646e-01 -0.94004067e+00 0.00000000e+00
- 1 22 0 0 -0.94290331e-01 0.39330304e-02 -0.70171280e+00 0.00000000e+00
- 1 22 0 0 -0.24330207e-01 -0.92096812e-02 -0.31765515e-01 0.00000000e+00
- 1 22 0 0 -0.18746249e+00 -0.14869271e-01 -0.14314353e+01 0.00000000e+00
- 1 22 0 0 -0.27014685e+00 0.37075249e-01 -0.92274935e+00 0.00000000e+00
- 1 22 0 0 0.17126771e-02 0.11674793e-01 -0.28075238e-02 0.00000000e+00
- 1 22 0 0 -0.59227201e-02 0.68475359e-02 -0.13253717e+00 0.00000000e+00
- 1 22 0 0 -0.56126595e+00 -0.16243102e+00 -0.20834740e+01 0.00000000e+00
- 1 -2112 0 0 -0.42518580e+01 -0.20451000e+01 -0.72449354e+02 0.93957000e+00
- 2 111 735 736 -0.10239301e+01 -0.42176954e+00 -0.18364289e+02 0.13498000e+00
- 1 22 0 0 -0.58365228e+00 -0.14823542e+00 -0.78304422e+01 0.00000000e+00
- 1 22 0 0 -0.11206948e-01 -0.30693488e-01 -0.53521301e+00 0.00000000e+00
- 1 22 0 0 -0.26072215e+00 -0.16531604e+00 -0.68302518e+01 0.00000000e+00
- 1 22 0 0 0.14790674e-01 -0.23375149e-01 -0.88268807e+00 0.00000000e+00
- 1 22 0 0 -0.48292154e+00 -0.27824680e+00 -0.74777843e+01 0.00000000e+00
- 1 22 0 0 -0.31988990e+00 -0.90897971e-01 -0.54250531e+01 0.00000000e+00
- 1 22 0 0 -0.17484384e+00 -0.97010733e-01 -0.47443620e+01 0.00000000e+00
- 1 22 0 0 -0.16811295e+00 -0.15729069e+00 -0.96780637e+01 0.00000000e+00
- 1 22 0 0 -0.68161651e-02 -0.58041972e-01 -0.29464573e+00 0.00000000e+00
- 1 22 0 0 0.49641911e-01 0.41523530e-01 -0.99865924e+00 0.00000000e+00
- 1 22 0 0 0.29672992e+00 -0.77034397e-02 -0.45768974e+01 0.00000000e+00
- 1 22 0 0 -0.26058587e-02 -0.12752595e-01 -0.47849802e-01 0.00000000e+00
- 1 22 0 0 0.25694973e+00 -0.74833574e-01 -0.16015526e+01 0.00000000e+00
- 1 22 0 0 0.42241826e-01 -0.32976994e-01 -0.89261043e+00 0.00000000e+00
- 1 22 0 0 0.14734323e-01 0.10398491e+00 -0.18325445e+01 0.00000000e+00
- 1 22 0 0 0.15558502e-01 0.13883692e+00 -0.70636185e+01 0.00000000e+00
- 1 22 0 0 0.32523267e-01 0.90569815e-01 -0.64713949e+01 0.00000000e+00
- 1 22 0 0 0.21228346e-01 0.15027745e-01 -0.19780219e+00 0.00000000e+00
- 2 310 737 738 0.17728999e+00 -0.54405948e-01 -0.43655139e+01 0.49767000e+00
- 1 22 0 0 0.46241334e-01 -0.22788950e+00 -0.38216345e+01 0.00000000e+00
- 1 22 0 0 0.28332317e+00 -0.56996647e+00 -0.13231480e+02 0.00000000e+00
- 1 22 0 0 0.16518079e-01 -0.16597274e+00 -0.19272229e+01 0.00000000e+00
- 1 22 0 0 0.87099446e-01 -0.24510547e+00 -0.54431084e+01 0.00000000e+00
- 1 22 0 0 -0.27146553e-01 -0.28730116e+00 -0.51474445e+01 0.00000000e+00
- 1 22 0 0 -0.20391298e-01 -0.51579185e+00 -0.12989344e+02 0.00000000e+00
- 1 211 0 0 0.14769939e+00 -0.10385986e+01 -0.23315195e+02 0.13957000e+00
- 1 -211 0 0 0.64979165e-01 -0.36177256e+00 -0.64560090e+01 0.13957000e+00
- 2 111 739 740 0.16738176e+00 -0.37880049e+00 -0.83993533e+01 0.13498000e+00
- 1 22 0 0 -0.83484095e-01 -0.86171003e+00 -0.49066032e+02 0.00000000e+00
- 1 22 0 0 -0.12597738e+00 -0.37226971e+00 -0.22991596e+02 0.00000000e+00
- 1 22 0 0 -0.11411984e+00 -0.46497124e-01 -0.16016758e+02 0.00000000e+00
- 1 22 0 0 -0.79999053e+00 -0.65704516e+00 -0.10691942e+03 0.00000000e+00
- 2 111 741 742 0.16299887e-01 0.13730506e+00 -0.17261789e+02 0.13498000e+00
- 2 111 743 744 0.20616921e-01 -0.51291780e-01 -0.10751660e+02 0.13498000e+00
- 2 111 745 746 0.16103113e+00 0.14283125e+00 -0.10932465e+02 0.13498000e+00
- 1 22 0 0 -0.73712484e-02 -0.47300024e-01 -0.42710695e+01 0.00000000e+00
- 1 22 0 0 -0.20111057e+00 0.99436334e-02 -0.13107823e+02 0.00000000e+00
- 1 22 0 0 -0.14036049e+00 0.15398608e+00 -0.23204259e+02 0.00000000e+00
- 1 22 0 0 -0.94101004e-01 0.25234227e+00 -0.45721229e+02 0.00000000e+00
- 1 22 0 0 -0.34877142e-01 -0.14661668e-01 0.31469554e+01 0.00000000e+00
- 1 22 0 0 0.38142086e-01 0.14457142e+00 0.12851544e+02 0.00000000e+00
- 2 310 747 748 -0.62030936e-01 0.52439460e+00 0.46393064e+01 0.49767000e+00
- 1 22 0 0 0.43045723e+00 0.48624782e+00 -0.27208001e+00 0.00000000e+00
- 1 22 0 0 0.75017110e-01 0.33745143e-01 -0.39808157e-03 0.00000000e+00
- 1 22 0 0 0.27280866e+00 0.51421623e+00 -0.99397715e+00 0.00000000e+00
- 1 22 0 0 0.16045418e-01 0.18084788e+00 -0.26816523e+00 0.00000000e+00
- 1 22 0 0 0.57022808e+00 0.17754633e+01 -0.44474934e+01 0.00000000e+00
- 1 22 0 0 0.27552229e-01 0.66803511e-01 -0.11531372e+00 0.00000000e+00
- 1 22 0 0 -0.91052267e-01 -0.15722811e+00 0.27864098e+00 0.00000000e+00
- 1 22 0 0 -0.10498694e+00 -0.12829151e-01 0.25176429e+00 0.00000000e+00
- 1 22 0 0 -0.77523732e+00 -0.44428005e+00 0.17223151e+01 0.00000000e+00
- 1 22 0 0 -0.35086212e+00 -0.16840623e+00 0.58338344e+00 0.00000000e+00
- 1 22 0 0 -0.16769534e+00 -0.94525026e-01 0.42150663e+00 0.00000000e+00
- 1 22 0 0 -0.39246561e+00 -0.11663338e+00 0.54893589e+00 0.00000000e+00
- 1 211 0 0 -0.78032081e+00 0.62808417e+00 0.28981478e+00 0.13957000e+00
- 1 -211 0 0 -0.17046066e+00 0.94628883e-02 0.16900125e+00 0.13957000e+00
- 1 -211 0 0 -0.15578404e-01 -0.23283859e+00 0.36360882e-01 0.13957000e+00
- 1 211 0 0 -0.49787859e+00 -0.62896756e+00 -0.36838897e+00 0.13957000e+00
- 1 22 0 0 -0.18585875e+00 0.19631625e+00 -0.70689853e-01 0.00000000e+00
- 1 22 0 0 -0.16440739e-01 0.90743877e-01 -0.92660014e-01 0.00000000e+00
- 1 22 0 0 0.22694263e-02 -0.41554971e-01 -0.79337949e-01 0.00000000e+00
- 1 22 0 0 -0.66810097e-01 -0.99017230e-01 0.26588134e-01 0.00000000e+00
- 1 22 0 0 -0.49480255e+00 -0.18100741e+00 -0.97927945e+01 0.00000000e+00
- 1 22 0 0 -0.52912755e+00 -0.24076213e+00 -0.85714943e+01 0.00000000e+00
- 2 111 749 750 -0.40449254e-01 0.14512656e+00 -0.14181092e+01 0.13498000e+00
- 2 111 751 752 0.21773924e+00 -0.19953251e+00 -0.29474047e+01 0.13498000e+00
- 1 22 0 0 0.66555762e-01 -0.21520842e+00 -0.33078998e+01 0.00000000e+00
- 1 22 0 0 0.10082600e+00 -0.16359208e+00 -0.50914534e+01 0.00000000e+00
- 1 22 0 0 -0.57542789e-01 0.73517237e-01 -0.71194201e+01 0.00000000e+00
- 1 22 0 0 0.73842676e-01 0.63787823e-01 -0.10142369e+02 0.00000000e+00
- 1 22 0 0 0.19190681e-01 0.24388792e-01 -0.76600504e+01 0.00000000e+00
- 1 22 0 0 0.14262399e-02 -0.75680572e-01 -0.30916097e+01 0.00000000e+00
- 1 22 0 0 0.50149450e-01 0.10348769e-01 -0.89392366e+00 0.00000000e+00
- 1 22 0 0 0.11088167e+00 0.13248248e+00 -0.10038541e+02 0.00000000e+00
- 1 211 0 0 -0.12773642e+00 0.68536338e-01 0.22133011e+01 0.13957000e+00
- 1 -211 0 0 0.65705482e-01 0.45585826e+00 0.24260052e+01 0.13957000e+00
- 1 22 0 0 -0.64517270e-01 0.16095416e+00 -0.12290361e+01 0.00000000e+00
- 1 22 0 0 0.24068016e-01 -0.15827600e-01 -0.18907312e+00 0.00000000e+00
- 1 22 0 0 -0.56460481e-02 -0.17833234e-01 -0.59231910e+00 0.00000000e+00
- 1 22 0 0 0.22338529e+00 -0.18169928e+00 -0.23550856e+01 0.00000000e+00
- 766
- 2 25 2 3 -0.52265085e+01 -0.20515432e+01 0.57625682e+03 0.12501000e+03
- 2 23 4 6 -0.69347532e+01 0.14377756e+02 0.64953493e+02 0.21791948e+02
- 2 23 7 11 0.17082446e+01 -0.16429300e+02 0.51130332e+03 0.89501952e+02
- 1 11 0 0 -0.48651998e+01 0.13198680e+02 0.15875835e+02 0.51000000e-03
- 1 -11 0 0 -0.20549310e+01 0.11691147e+01 0.48726572e+02 0.51000000e-03
- 1 22 0 0 -0.14622330e-01 0.99620396e-02 0.35108566e+00 0.00000000e+00
- 1 11 0 0 -0.32240772e+02 -0.15049790e+02 0.93237541e+02 0.51000000e-03
- 1 22 0 0 0.16802671e+01 -0.10520595e+01 0.94019332e+01 0.00000000e+00
- 1 22 0 0 0.21693528e+00 -0.31461095e-02 0.28230905e+01 0.00000000e+00
- 1 -11 0 0 0.32028851e+02 -0.32397102e+00 0.40554863e+03 0.51000000e-03
- 1 22 0 0 0.22963013e-01 -0.33340269e-03 0.29213113e+00 0.00000000e+00
- 2 1 96 96 0.28037795e+01 0.21690973e+01 0.10513732e+04 0.33000000e+00
- 2 21 96 96 0.29489007e+01 0.37672701e+01 0.91272324e+03 0.00000000e+00
- 2 21 96 96 -0.16186346e+01 0.23076904e+00 0.92676598e+02 0.00000000e+00
- 2 21 96 96 -0.57727345e+00 0.44853678e+00 0.69053444e+02 0.00000000e+00
- 2 21 96 96 -0.16117708e+01 0.16672188e+01 0.82219831e+02 0.00000000e+00
- 2 21 96 96 -0.13593027e+01 -0.93100868e+00 0.30511459e+02 0.00000000e+00
- 2 21 96 96 -0.19627316e+01 -0.10894670e+01 0.22613911e+02 0.00000000e+00
- 2 21 96 96 -0.91655575e+00 -0.14969113e+01 0.73402850e+01 0.00000000e+00
- 2 21 96 96 0.42697961e+00 0.32061004e+01 0.19170507e+02 0.00000000e+00
- 2 21 96 96 0.11143198e+01 0.26956860e+01 0.10719570e+02 0.00000000e+00
- 2 21 96 96 -0.22502629e+00 0.13057388e+01 0.30372145e+01 0.00000000e+00
- 2 21 96 96 -0.10831334e+01 0.15483386e+01 0.45221486e+01 0.00000000e+00
- 2 21 96 96 -0.47073460e+01 0.63588125e+01 0.18224315e+02 0.00000000e+00
- 2 21 96 96 -0.83359681e+00 0.76027287e+00 0.12898387e+01 0.00000000e+00
- 2 21 96 96 -0.71871877e+00 0.32211729e+01 0.30106498e+01 0.00000000e+00
- 2 21 96 96 0.19515505e+00 0.31315040e+01 -0.40874755e+00 0.00000000e+00
- 2 21 96 96 0.13175424e+01 0.74132736e+01 -0.14754892e+02 0.00000000e+00
- 2 21 96 96 -0.74274600e+00 0.19853795e+01 -0.35501227e+01 0.00000000e+00
- 2 21 96 96 -0.90496679e+00 0.25454876e+01 -0.58789242e+01 0.00000000e+00
- 2 21 96 96 -0.74652851e+00 -0.71916620e+00 -0.12489240e+00 0.00000000e+00
- 2 21 96 96 0.48982395e+00 0.32142256e+01 -0.74890471e+03 0.00000000e+00
- 2 2101 96 96 -0.68000587e+00 -0.12397896e+01 -0.89433280e+03 0.57933000e+00
- 2 2 142 142 0.10241987e+01 -0.10713308e+01 0.32615512e+03 0.00000000e+00
- 2 21 142 142 -0.97502230e+00 -0.10577591e+01 0.63398283e+03 0.00000000e+00
- 2 21 142 142 0.97502230e+00 0.10577591e+01 0.98294802e+02 0.00000000e+00
- 2 -2 142 142 -0.10241987e+01 0.10713308e+01 0.24348492e+00 0.00000000e+00
- 2 2203 159 159 -0.88771527e+00 -0.14888361e+01 0.25644152e+04 0.77133000e+00
- 2 21 159 159 -0.11143198e+01 -0.26956860e+01 0.10323458e+03 0.00000000e+00
- 2 21 159 159 -0.42697961e+00 -0.32061004e+01 0.95379270e+02 0.00000000e+00
- 2 21 159 159 0.47073460e+01 -0.63588125e+01 0.17147923e+03 0.00000000e+00
- 2 21 159 159 0.16186346e+01 -0.23076904e+00 0.30319311e+02 0.00000000e+00
- 2 21 159 159 0.90496679e+00 -0.25454876e+01 0.18066110e+02 0.00000000e+00
- 2 21 159 159 0.28306267e+01 -0.28629933e+01 0.10544605e+02 0.00000000e+00
- 2 21 159 159 0.12111929e+01 -0.52355537e+00 0.30385329e+01 0.00000000e+00
- 2 21 159 159 0.19627316e+01 0.10894670e+01 0.22753884e+01 0.00000000e+00
- 2 21 159 159 0.74274600e+00 -0.19853795e+01 0.65250431e+00 0.00000000e+00
- 2 21 159 159 0.22502629e+00 -0.13057388e+01 0.82801215e+00 0.00000000e+00
- 2 21 159 159 0.46066392e+00 -0.13190374e+01 0.82142907e+00 0.00000000e+00
- 2 21 159 159 0.71871877e+00 -0.32211729e+01 0.81415499e+00 0.00000000e+00
- 2 21 159 159 -0.13175424e+01 -0.74132736e+01 0.15999339e+01 0.00000000e+00
- 2 21 159 159 -0.67823115e+00 -0.16385611e+01 -0.54020786e+00 0.00000000e+00
- 2 21 159 159 -0.94916101e+00 -0.64739080e+00 -0.13667675e+01 0.00000000e+00
- 2 21 159 159 -0.22058674e+01 -0.14355300e+01 -0.34643864e+01 0.00000000e+00
- 2 21 159 159 0.91655575e+00 0.14969113e+01 -0.68624293e+01 0.00000000e+00
- 2 21 159 159 0.53658287e-01 0.17906171e+01 -0.20373575e+02 0.00000000e+00
- 2 21 159 159 -0.16899095e+00 0.11255460e+01 -0.15774364e+02 0.00000000e+00
- 2 21 159 159 0.67823115e+00 0.16385611e+01 -0.24810420e+02 0.00000000e+00
- 2 21 159 159 -0.66691483e+00 0.17174379e+01 -0.17978699e+02 0.00000000e+00
- 2 21 159 159 -0.46066392e+00 0.13190374e+01 -0.12379218e+02 0.00000000e+00
- 2 21 159 159 -0.96621805e-01 0.51516310e+00 -0.31130423e+01 0.00000000e+00
- 2 21 159 159 0.84350208e-01 -0.14168890e+01 0.11958210e+01 0.00000000e+00
- 2 21 159 159 0.19743599e+01 -0.21222449e+01 -0.14442295e+01 0.00000000e+00
- 2 21 159 159 -0.34230701e+00 0.25461274e+00 -0.11685801e+01 0.00000000e+00
- 2 2 159 159 -0.41814909e+00 -0.36673669e+00 -0.12508724e+01 0.33000000e+00
- 2 21 209 209 0.61204032e+01 0.14583424e+01 -0.32083685e+01 0.00000000e+00
- 2 21 209 209 0.53097748e+00 -0.81502219e+00 -0.10378475e+01 0.00000000e+00
- 2 21 209 209 0.83359681e+00 -0.76027287e+00 -0.21716080e+01 0.00000000e+00
- 2 21 209 209 0.29397196e+00 -0.15854071e+00 -0.11456568e+01 0.00000000e+00
- 2 21 209 209 0.16117708e+01 -0.16672188e+01 -0.98180983e+01 0.00000000e+00
- 2 21 209 209 0.66691483e+00 -0.17174379e+01 -0.97647945e+01 0.00000000e+00
- 2 21 209 209 0.39088080e+00 -0.76652916e+00 -0.85595091e+01 0.00000000e+00
- 2 21 209 209 0.10831334e+01 -0.15483386e+01 -0.30356107e+02 0.00000000e+00
- 2 21 209 209 0.57727345e+00 -0.44853678e+00 -0.18082693e+02 0.00000000e+00
- 2 21 209 209 0.16899095e+00 -0.11255460e+01 -0.28003141e+02 0.00000000e+00
- 2 21 209 209 -0.19515505e+00 -0.31315040e+01 -0.10194204e+03 0.00000000e+00
- 2 21 209 209 0.22119097e+00 0.27157367e+01 -0.83673481e+02 0.00000000e+00
- 2 21 209 209 0.25496244e+01 0.34783253e+01 -0.34707881e+03 0.00000000e+00
- 2 21 209 209 0.22058674e+01 0.14355300e+01 -0.18313766e+03 0.00000000e+00
- 2 21 209 209 0.94916101e+00 0.64739080e+00 -0.18469985e+03 0.00000000e+00
- 2 21 209 209 -0.29397196e+00 0.15854071e+00 -0.31763936e+03 0.00000000e+00
- 2 21 209 209 0.96621805e-01 -0.51516310e+00 -0.14294264e+04 0.00000000e+00
- 2 21 209 209 -0.53658287e-01 -0.17906171e+01 -0.15668824e+03 0.00000000e+00
- 2 21 209 209 -0.22119097e+00 -0.27157367e+01 -0.59957896e+03 0.00000000e+00
- 2 21 209 209 -0.25496244e+01 -0.34783253e+01 -0.82936064e+03 0.00000000e+00
- 2 21 209 209 -0.12111929e+01 0.52355537e+00 -0.12885358e+03 0.00000000e+00
- 2 21 209 209 -0.28306267e+01 0.28629933e+01 -0.23912433e+03 0.00000000e+00
- 2 21 209 209 -0.53097748e+00 0.81502219e+00 -0.45079515e+02 0.00000000e+00
- 2 21 209 209 -0.61204032e+01 -0.14583424e+01 -0.11294024e+03 0.00000000e+00
- 2 21 209 209 0.13593027e+01 0.93100868e+00 -0.30826469e+01 0.00000000e+00
- 2 21 257 257 0.85461181e+00 -0.16341750e+01 0.61865075e+00 0.00000000e+00
- 2 21 257 257 -0.39088080e+00 0.76652916e+00 -0.93760513e+02 0.00000000e+00
- 2 21 257 257 -0.85461181e+00 0.16341750e+01 -0.22596640e+03 0.00000000e+00
- 2 21 274 274 -0.68286233e+00 0.21442696e+00 0.36995659e+01 0.00000000e+00
- 2 21 274 274 0.68286233e+00 -0.21442696e+00 0.26071641e+00 0.00000000e+00
- 2 92 97 141 -0.93918362e+01 0.40192542e+02 0.66053116e+03 0.39533682e+04
- 2 -213 278 279 0.36846599e+01 0.29462079e+01 0.12318566e+04 0.71331534e+00
- 2 113 280 281 0.23450999e+00 0.53350470e+00 0.12012412e+03 0.37506847e+00
- 2 2214 282 283 0.16001552e+00 0.91487021e+00 0.31110073e+03 0.13274619e+01
- 2 -2214 284 285 0.21759362e+00 0.80859013e+00 0.16349463e+03 0.11962145e+01
- 2 221 286 288 0.38715204e-01 0.30852669e+00 0.16097116e+03 0.54745000e+00
- 2 111 289 290 -0.47876611e+00 0.13440404e+01 0.52124771e+02 0.13498000e+00
- 1 211 0 0 -0.48034115e+00 -0.38863710e-01 0.21495199e+02 0.13957000e+00
- 2 -213 291 292 0.40711553e+00 -0.26309334e+00 0.23989631e+02 0.69968851e+00
- 2 223 293 295 -0.21506801e+01 0.87762161e+00 0.12092354e+03 0.77585019e+00
- 1 211 0 0 -0.62347143e+00 0.15287005e+00 0.12581218e+02 0.13957000e+00
- 2 311 296 296 -0.22306687e+00 -0.35270607e-01 0.93175903e+01 0.49767000e+00
- 2 -323 297 298 -0.13423908e+01 -0.91680841e+00 0.11236809e+02 0.74378513e+00
- 2 223 299 301 -0.11419405e+01 -0.52960768e+00 0.20311454e+02 0.78599647e+00
- 2 111 302 303 -0.36108155e+00 -0.89342077e+00 0.70495737e+01 0.13498000e+00
- 2 213 304 305 0.75471352e-02 0.19679152e+00 0.45759383e+01 0.74431403e+00
- 2 113 306 307 0.27328001e-01 0.19067104e+01 0.76026171e+01 0.77726121e+00
- 2 223 308 310 0.22695222e+00 0.15136727e+01 0.11672137e+02 0.77791083e+00
- 1 -211 0 0 0.53542035e+00 0.13820662e+01 0.50921196e+01 0.13957000e+00
- 2 111 311 312 -0.10435633e+01 0.86761052e+00 0.26250904e+01 0.13498000e+00
- 2 223 313 315 -0.93593986e+00 0.24116360e+01 0.77642534e+01 0.76639756e+00
- 2 111 316 317 -0.51244727e+00 0.41407454e+00 0.16727038e+01 0.13498000e+00
- 2 113 318 319 -0.45065731e+00 0.19079976e+01 0.45991980e+01 0.81566784e+00
- 2 213 320 321 -0.55897018e+00 0.18968267e+01 0.40394201e+01 0.81335265e+00
- 1 -211 0 0 -0.13249813e+01 0.15757228e+01 0.44419892e+01 0.13957000e+00
- 2 213 322 323 -0.75011098e+00 0.15642703e+01 0.45471601e+01 0.71022374e+00
- 2 223 324 326 -0.98978417e+00 0.23193199e+01 0.20699526e+01 0.78138162e+00
- 2 111 327 328 -0.30635762e+00 0.16102537e+00 -0.93178756e-01 0.13498000e+00
- 1 -211 0 0 0.80820200e-01 0.11585773e+00 0.30554712e+00 0.13957000e+00
- 2 213 329 330 0.33255824e+00 0.18071089e+01 0.10329039e+01 0.73420342e+00
- 2 2114 331 332 0.58836870e+00 0.59695478e+01 -0.90046637e+01 0.13036081e+01
- 2 221 333 335 -0.30642774e+00 0.34899097e+00 -0.13848203e+01 0.54745000e+00
- 2 -2114 336 337 -0.69864319e+00 0.21739352e+01 -0.43685938e+01 0.13038261e+01
- 2 221 338 340 0.23375576e+00 0.11301064e+01 -0.24010584e+01 0.54745000e+00
- 2 111 341 342 -0.29263447e+00 0.36207216e+01 -0.57451860e+01 0.13498000e+00
- 2 -213 343 344 -0.24648757e+00 -0.66760742e+00 -0.20549260e+01 0.77958479e+00
- 2 323 345 346 -0.13784871e+00 0.84193350e+00 -0.21584863e+01 0.93429625e+00
- 2 -323 347 348 -0.69932574e+00 -0.16615328e+00 -0.39907016e+01 0.97715162e+00
- 2 113 349 350 0.19644004e+00 0.21211085e+00 -0.45922793e+02 0.90217081e+00
- 2 113 351 352 0.82601531e-01 -0.39282981e+00 -0.69144988e+01 0.79114563e+00
- 1 211 0 0 -0.45959432e+00 0.51058696e+00 -0.28018455e+02 0.13957000e+00
- 2 -213 353 354 0.47753332e+00 0.13540543e+01 -0.29123235e+03 0.79395530e+00
- 2 223 355 357 0.11150423e+00 -0.16835868e+00 -0.57309061e+02 0.78084528e+00
- 2 111 358 359 0.56266048e-01 0.55237643e+00 -0.65687937e+02 0.13498000e+00
- 2 221 360 361 -0.88478389e-01 0.58324571e+00 -0.54915215e+03 0.54745000e+00
- 1 2212 0 0 -0.48755100e+00 -0.95997716e+00 -0.59264799e+03 0.93827000e+00
- 2 92 143 158 0.00000000e+00 0.00000000e+00 0.10586762e+04 0.51954090e+02
- 2 213 362 363 0.16875967e-01 -0.30468973e+00 0.26718786e+03 0.76868200e+00
- 2 -213 364 365 0.24404202e+00 -0.11121162e+01 0.30526336e+03 0.82171924e+00
- 1 321 0 0 0.55264245e+00 -0.12399146e+00 0.22413983e+03 0.49360000e+00
- 2 -311 366 366 0.18689779e+00 0.60483586e-01 0.58494565e+02 0.49767000e+00
- 2 223 367 368 -0.15304904e+00 0.19858410e+00 0.71742487e+02 0.79433209e+00
- 1 -211 0 0 -0.29203084e+00 -0.14840411e+00 0.28100582e+02 0.13957000e+00
- 1 211 0 0 0.28791421e+00 -0.12338871e+00 0.46769205e+02 0.13957000e+00
- 2 111 369 370 -0.60957720e+00 -0.56383079e-01 0.61842351e+01 0.13498000e+00
- 2 223 371 372 0.14856652e-01 0.19094874e+00 0.21725120e+02 0.85668795e+00
- 1 -211 0 0 0.31908790e+00 -0.42348902e-01 0.22532677e+02 0.13957000e+00
- 1 211 0 0 -0.90040281e-01 0.34698410e+00 0.16179165e+01 0.13957000e+00
- 1 -211 0 0 0.31596153e+00 0.23820245e+00 0.67382825e+00 0.13957000e+00
- 2 111 373 374 0.11071556e+00 -0.18157435e+00 0.39910036e+00 0.13498000e+00
- 2 113 375 376 -0.10334968e+00 0.26952334e-03 0.21751453e+01 0.69604039e+00
- 1 321 0 0 -0.70981089e+00 0.10660804e+01 0.10464861e+01 0.49360000e+00
- 1 -321 0 0 -0.91136149e-01 -0.86564230e-02 0.62383606e+00 0.49360000e+00
- 2 92 160 208 0.93563447e+01 -0.31836841e+02 0.28941373e+04 0.12055516e+04
- 2 113 377 378 -0.41911893e+00 -0.14474854e+01 0.15460414e+04 0.84742192e+00
- 2 2224 379 380 -0.45516595e+00 0.52490852e+00 0.43975604e+03 0.12430967e+01
- 2 113 381 382 -0.23906644e-01 -0.59139077e+00 0.26766987e+03 0.10744497e+01
- 2 -213 383 384 -0.44776679e+00 -0.34222463e+00 0.20132733e+03 0.66886215e+00
- 2 111 385 386 0.82144494e+00 -0.38290717e+00 0.99913399e+02 0.13498000e+00
- 2 -311 387 387 -0.10873918e+01 -0.29223288e+01 0.95892007e+02 0.49767000e+00
- 2 323 388 389 0.12283301e+01 -0.84142979e+00 0.59238814e+02 0.89749209e+00
- 2 -213 390 391 -0.79124994e-01 -0.11307179e+01 0.32813802e+02 0.68152051e+00
- 1 211 0 0 0.35165578e+00 0.21379863e-01 0.14557634e+02 0.13957000e+00
- 2 331 392 393 0.25066941e+00 -0.42038195e+01 0.11403535e+03 0.95763952e+00
- 1 -211 0 0 0.26550332e+01 -0.17430048e+01 0.60805374e+02 0.13957000e+00
- 1 211 0 0 0.21303957e+00 -0.13302827e+01 0.13394961e+02 0.13957000e+00
- 2 331 394 396 0.10455671e+01 -0.96842765e+00 0.11827091e+02 0.95780518e+00
- 1 -211 0 0 0.38803055e+00 -0.16857149e-01 0.36045019e+01 0.13957000e+00
- 2 113 397 398 -0.45958651e-01 -0.36515501e+00 0.75730942e+01 0.60603680e+00
- 1 211 0 0 0.11323890e+00 0.16213138e+00 0.54898881e+00 0.13957000e+00
- 2 -213 399 400 0.89958240e+00 -0.10715925e+01 0.87169739e+01 0.72291252e+00
- 1 211 0 0 0.32941784e+00 -0.11149430e+01 0.78553879e+01 0.13957000e+00
- 2 -323 401 402 0.93905490e+00 -0.44964684e-01 0.39029681e+01 0.92209724e+00
- 2 323 403 404 0.11661185e+01 -0.62296707e+00 0.29751575e+01 0.87902249e+00
- 2 -2214 405 406 0.22170258e+01 -0.70206881e+00 0.42540332e+01 0.12803381e+01
- 1 -211 0 0 -0.17913385e+00 -0.45920960e+00 0.47586302e+00 0.13957000e+00
- 2 2224 407 408 0.79136200e+00 0.62649224e-01 0.14156340e+01 0.11053252e+01
- 2 113 409 410 0.94999774e+00 -0.31716452e+01 0.22637098e+01 0.69181538e+00
- 1 -211 0 0 0.81730433e-01 -0.22317212e+01 -0.44916275e+00 0.13957000e+00
- 1 211 0 0 -0.20492623e+00 -0.32287000e+01 0.14927346e+01 0.13957000e+00
- 2 331 411 413 0.68325268e+00 -0.15254779e+01 0.15767249e+00 0.95799001e+00
- 1 -321 0 0 -0.48898594e+00 -0.23257079e+01 0.66113229e+00 0.49360000e+00
- 2 313 414 415 -0.11762960e+01 -0.30653640e+01 -0.91338015e+00 0.85964017e+00
- 1 211 0 0 0.43479994e-01 -0.46393071e+00 0.44464042e+00 0.13957000e+00
- 1 -211 0 0 -0.11855709e+01 -0.56613261e+00 -0.14078175e+01 0.13957000e+00
- 2 223 416 418 -0.72887997e+00 -0.10268057e+01 -0.21104181e+01 0.80127876e+00
- 2 223 419 421 -0.14523321e+00 -0.12924704e+00 -0.62461613e+00 0.78016974e+00
- 2 111 422 423 0.36228530e-01 0.50760754e+00 -0.21256956e+01 0.13498000e+00
- 2 113 424 425 -0.20715108e+00 0.25862097e-01 -0.10757430e+02 0.96827499e+00
- 2 213 426 427 -0.30051232e+00 0.10764775e+01 -0.10548062e+02 0.72464803e+00
- 1 -211 0 0 0.24172929e+00 0.21566468e+00 -0.83957051e+01 0.13957000e+00
- 2 223 428 430 0.87936636e-01 0.19367361e+01 -0.15334835e+02 0.76708956e+00
- 2 -313 431 432 -0.28159349e+00 0.12583073e+01 -0.68454154e+01 0.90256340e+00
- 2 323 433 434 0.58304035e+00 0.24605631e+01 -0.30739684e+02 0.90843995e+00
- 2 113 435 436 -0.69605290e+00 0.98714827e+00 -0.12143936e+02 0.68018842e+00
- 2 223 437 439 -0.13095466e+00 0.84713341e-02 -0.62571915e+00 0.78415824e+00
- 1 -2212 0 0 0.45877407e+00 -0.18945438e+00 -0.21325843e+00 0.93827000e+00
- 1 -211 0 0 0.80921884e-01 -0.75895685e-01 -0.83893242e+00 0.13957000e+00
- 2 2224 440 441 -0.42789418e-01 0.21121299e+00 -0.17847874e+01 0.12476278e+01
- 2 -323 442 443 0.12358860e+00 -0.46175638e+00 -0.10378124e-01 0.89647485e+00
- 2 323 444 445 0.10754733e+01 -0.26009578e+01 -0.12379938e+01 0.89565815e+00
- 1 -211 0 0 0.33228761e+00 0.33034209e+00 -0.48907394e+00 0.13957000e+00
- 2 213 446 447 -0.50515382e+00 -0.26172975e+00 -0.18819840e+01 0.66057467e+00
- 2 92 210 256 0.56528809e+01 -0.70706861e+01 -0.48744535e+04 0.24080863e+03
- 2 311 448 448 -0.13114308e+01 0.11442430e+01 -0.99916700e+02 0.49767000e+00
- 2 -313 449 450 -0.63256776e+00 0.26317961e+00 -0.10466620e+03 0.89837484e+00
- 2 331 451 453 -0.74088924e+00 0.34096204e+00 -0.70198225e+02 0.95766863e+00
- 1 -211 0 0 -0.77174416e+00 0.51349425e+00 -0.66578192e+02 0.13957000e+00
- 2 221 454 455 -0.58589265e+00 -0.28874679e+00 -0.35812739e+02 0.54745000e+00
- 2 223 456 458 -0.10793329e+01 0.43710225e+00 -0.58266030e+02 0.78246118e+00
- 2 223 459 461 -0.90950083e+00 0.48221524e+00 -0.25314369e+02 0.77185496e+00
- 2 223 462 464 -0.88335868e+00 0.42161042e-01 -0.24269665e+02 0.72990543e+00
- 2 213 465 466 -0.21245613e+00 -0.15821155e+00 -0.17955003e+02 0.83012951e+00
- 2 111 467 468 -0.22373997e+01 0.23633793e+00 -0.28428582e+02 0.13498000e+00
- 1 -211 0 0 -0.72621484e+00 -0.47748817e+00 -0.28522737e+02 0.13957000e+00
- 2 223 469 470 0.59979148e+00 -0.22111668e+00 -0.15354137e+01 0.78153639e+00
- 2 2224 471 472 0.24754410e+00 0.80307363e+00 -0.12593205e+01 0.12522429e+01
- 2 -213 473 474 0.20587730e+01 0.47164184e+00 -0.21258916e+01 0.78885153e+00
- 2 -2214 475 476 0.30964987e+01 0.92344303e+00 -0.26010037e+01 0.12171687e+01
- 1 211 0 0 0.20071339e+00 -0.66968655e-01 -0.25945602e+00 0.13957000e+00
- 2 -213 477 478 0.13373527e+01 -0.55786176e+00 -0.19965649e+01 0.88008225e+00
- 2 323 479 480 0.18869736e+00 -0.27146703e+00 -0.19133424e+01 0.92994282e+00
- 2 -323 481 482 0.26943949e+01 -0.24933388e+01 -0.15547709e+02 0.95685769e+00
- 2 331 483 484 0.14494709e+00 -0.49787834e+00 -0.46630121e+01 0.95783680e+00
- 1 211 0 0 0.11446002e+00 -0.11187795e+01 -0.60402286e+01 0.13957000e+00
- 1 -211 0 0 0.45630030e+00 -0.40121058e+00 -0.36677335e+01 0.13957000e+00
- 2 213 485 486 0.10152596e+01 -0.92492885e+00 -0.32241412e+02 0.83410910e+00
- 2 113 487 488 0.14717360e+00 -0.22861514e+01 -0.49670893e+02 0.70429858e+00
- 1 -211 0 0 -0.11953941e+00 -0.13440081e+00 -0.88358602e+01 0.13957000e+00
- 2 111 489 490 0.52401797e+00 0.25362423e+00 -0.18087405e+02 0.13498000e+00
- 2 221 491 493 0.54009372e+00 -0.17865166e+01 -0.34165338e+02 0.54745000e+00
- 1 211 0 0 0.13773552e+00 0.35581529e+00 -0.28531669e+02 0.13957000e+00
- 2 -213 494 495 -0.21503348e+00 0.15728387e+00 -0.19471583e+02 0.74154493e+00
- 2 113 496 497 0.16060622e-02 -0.32059781e+00 -0.40058839e+02 0.75154822e+00
- 1 211 0 0 0.41728602e+00 0.16576475e+00 -0.12139268e+02 0.13957000e+00
- 1 -211 0 0 -0.14774051e+00 0.23709600e+00 -0.69889166e+01 0.13957000e+00
- 2 323 498 499 0.25918516e+00 0.86239035e+00 -0.84533317e+02 0.87724765e+00
- 2 -323 500 501 0.22582640e+01 0.23454452e+01 -0.26031435e+03 0.92068503e+00
- 2 213 502 503 0.71650001e+00 0.11285073e+01 -0.11998913e+03 0.83016511e+00
- 2 223 504 505 0.11069519e+01 0.27628635e+00 -0.10487254e+03 0.78606016e+00
- 2 223 506 507 0.54339324e+00 0.11293029e+01 -0.53307112e+03 0.81181731e+00
- 2 -213 508 509 0.39393146e+00 -0.44705202e+00 -0.14183153e+03 0.87236141e+00
- 1 2212 0 0 -0.14562146e+00 0.18713854e+00 -0.35251186e+03 0.93827000e+00
- 1 -2212 0 0 0.42678483e+00 -0.21754954e+00 -0.25865054e+03 0.93827000e+00
- 2 223 510 512 -0.64827412e+00 -0.93294382e+00 -0.23503345e+03 0.77801175e+00
- 2 213 513 514 -0.36431940e+00 -0.13454691e+01 -0.56201400e+03 0.83158551e+00
- 2 111 515 516 0.30656302e+00 0.29182439e+00 -0.89142391e+02 0.13498000e+00
- 2 223 517 519 -0.39327865e-01 -0.48970325e+00 -0.16214384e+03 0.77991614e+00
- 2 113 520 521 -0.60206764e+00 -0.22709922e+01 -0.47072671e+03 0.70075457e+00
- 2 223 522 524 -0.13607991e+01 -0.19915287e+01 -0.46062947e+03 0.78289236e+00
- 2 111 525 526 -0.54782755e+00 -0.41811715e+00 -0.18726000e+03 0.13498000e+00
- 2 92 258 273 -0.39088080e+00 0.76652916e+00 -0.31910826e+03 0.40613736e+02
- 2 -213 527 528 -0.33441663e-01 -0.13676590e-01 -0.23824263e+01 0.69073821e+00
- 2 113 529 530 -0.12554102e-01 -0.30445718e+00 -0.38099148e+01 0.10969177e+01
- 2 113 531 532 0.16280876e+00 -0.33815305e+00 -0.15277116e+00 0.96647671e+00
- 2 213 533 534 -0.30534226e-01 -0.20441505e+00 -0.33303554e+01 0.73860398e+00
- 2 -213 535 536 0.53066487e+00 -0.13393716e+00 -0.62861022e+00 0.66404279e+00
- 2 221 537 539 -0.15753901e-01 -0.13475936e+00 -0.28298931e+00 0.54745000e+00
- 2 221 540 542 0.24735649e+00 -0.59294694e+00 -0.13769889e+01 0.54745000e+00
- 2 -313 543 544 0.33612869e+00 0.32938412e+00 -0.51208749e+01 0.92059507e+00
- 2 333 545 546 0.14174045e-01 -0.13727548e+00 -0.11670096e+02 0.10268578e+01
- 2 313 547 548 -0.16633447e+00 -0.15199829e+00 -0.13222052e+02 0.97030956e+00
- 2 -2114 549 550 -0.52709259e+00 0.89746146e+00 -0.87525449e+02 0.12092974e+01
- 1 -211 0 0 0.17302750e+00 0.10149287e+00 -0.43893424e+02 0.13957000e+00
- 2 2224 551 552 -0.88622517e+00 0.34458020e+00 -0.39439660e+02 0.11980239e+01
- 1 -211 0 0 0.19992073e+00 0.21704179e+00 -0.57413382e+01 0.13957000e+00
- 2 113 553 554 -0.10527090e+00 0.53956826e+00 -0.98711343e+02 0.82975334e+00
- 1 211 0 0 -0.27775486e+00 0.34861956e+00 -0.18199654e+01 0.13957000e+00
- 2 92 275 277 0.00000000e+00 0.00000000e+00 0.39602823e+01 0.21991439e+01
- 1 211 0 0 0.26002990e+00 0.27236631e-02 0.58715388e+00 0.13957000e+00
- 2 -213 555 556 0.63615507e-01 -0.27424248e+00 0.57858014e+00 0.76524201e+00
- 2 113 557 558 -0.32364541e+00 0.27151882e+00 0.27945483e+01 0.51563132e+00
- 1 -211 0 0 0.15142055e+00 0.25544789e+00 0.85042058e+02 0.13957000e+00
- 2 111 559 560 0.35332393e+01 0.26907600e+01 0.11468145e+04 0.13498000e+00
- 1 -211 0 0 0.22013116e+00 0.31233409e+00 0.56757919e+02 0.13957000e+00
- 1 211 0 0 0.14378832e-01 0.22117061e+00 0.63366199e+02 0.13957000e+00
- 1 2212 0 0 0.12457648e+00 0.69673329e+00 0.29309482e+03 0.93827000e+00
- 2 111 561 562 0.35439036e-01 0.21813692e+00 0.18005909e+02 0.13498000e+00
- 1 -2212 0 0 0.26399483e+00 0.47022827e+00 0.13010722e+03 0.93827000e+00
- 2 111 563 564 -0.46401213e-01 0.33836185e+00 0.33387409e+02 0.13498000e+00
- 2 111 565 566 0.28434428e-01 0.49244029e-01 0.22268535e+02 0.13498000e+00
- 2 111 567 568 0.32588914e-01 0.75499463e-01 0.96364769e+02 0.13498000e+00
- 2 111 569 570 -0.22308138e-01 0.18378320e+00 0.42337855e+02 0.13498000e+00
- 1 22 0 0 -0.20749148e+00 0.41014638e+00 0.15834464e+02 0.00000000e+00
- 1 22 0 0 -0.27127463e+00 0.93389407e+00 0.36290307e+02 0.00000000e+00
- 1 -211 0 0 0.25776125e+00 -0.23278604e+00 0.49950991e+01 0.13957000e+00
- 2 111 571 572 0.14935428e+00 -0.30307296e-01 0.18994532e+02 0.13498000e+00
- 1 -211 0 0 -0.12634680e+01 0.53016222e+00 0.56826287e+02 0.13957000e+00
- 1 211 0 0 -0.55288304e+00 0.26670315e+00 0.33861014e+02 0.13957000e+00
- 2 111 573 574 -0.33432906e+00 0.80756246e-01 0.30236243e+02 0.13498000e+00
- 1 130 0 0 -0.22306687e+00 -0.35270607e-01 0.93175903e+01 0.49767000e+00
- 2 -311 575 575 -0.66719460e+00 -0.58133525e+00 0.68443939e+01 0.49767000e+00
- 1 -211 0 0 -0.67519620e+00 -0.33547317e+00 0.43924153e+01 0.13957000e+00
- 1 211 0 0 -0.11195429e+00 -0.23098949e+00 0.35456705e+01 0.13957000e+00
- 1 -211 0 0 -0.24604063e+00 -0.21668054e+00 0.71744678e+01 0.13957000e+00
- 2 111 576 577 -0.78394560e+00 -0.81937651e-01 0.95913153e+01 0.13498000e+00
- 1 22 0 0 -0.34932765e+00 -0.88970580e+00 0.68383874e+01 0.00000000e+00
- 1 22 0 0 -0.11753906e-01 -0.37149736e-02 0.21118635e+00 0.00000000e+00
- 1 211 0 0 -0.55831754e-01 0.44945524e+00 0.26369796e+01 0.13957000e+00
- 2 111 578 579 0.63378889e-01 -0.25266372e+00 0.19389587e+01 0.13498000e+00
- 1 211 0 0 -0.34169197e+00 0.11136531e+01 0.42734861e+01 0.13957000e+00
- 1 -211 0 0 0.36901997e+00 0.79305728e+00 0.33291309e+01 0.13957000e+00
- 1 -211 0 0 0.89573483e-01 0.13403889e+00 0.10472970e+01 0.13957000e+00
- 1 211 0 0 0.21231737e+00 0.79020914e+00 0.46868539e+01 0.13957000e+00
- 2 111 580 581 -0.74938628e-01 0.58942467e+00 0.59379857e+01 0.13498000e+00
- 1 22 0 0 -0.92881147e+00 0.71272735e+00 0.22751078e+01 0.00000000e+00
- 1 22 0 0 -0.11475184e+00 0.15488317e+00 0.34998263e+00 0.00000000e+00
- 1 211 0 0 -0.26857440e+00 0.35321533e+00 0.13129460e+01 0.13957000e+00
- 1 -211 0 0 0.38491992e-01 0.30153215e+00 0.98929192e+00 0.13957000e+00
- 2 111 582 583 -0.70585745e+00 0.17568885e+01 0.54620154e+01 0.13498000e+00
- 1 22 0 0 -0.21843062e+00 0.10360340e+00 0.69029266e+00 0.00000000e+00
- 1 22 0 0 -0.29401665e+00 0.31047114e+00 0.98241111e+00 0.00000000e+00
- 1 -211 0 0 -0.47540709e+00 0.19113123e+01 0.41729428e+01 0.13957000e+00
- 1 211 0 0 0.24749777e-01 -0.33146554e-02 0.42625522e+00 0.13957000e+00
- 1 211 0 0 -0.73310081e+00 0.16251185e+01 0.33600187e+01 0.13957000e+00
- 2 111 584 585 0.17413063e+00 0.27170821e+00 0.67940141e+00 0.13498000e+00
- 1 211 0 0 -0.65902095e+00 0.71137953e+00 0.19950480e+01 0.13957000e+00
- 2 111 586 587 -0.91090024e-01 0.85289075e+00 0.25521121e+01 0.13498000e+00
- 1 -211 0 0 -0.27073024e-01 0.57159339e-01 0.92665815e-01 0.13957000e+00
- 1 211 0 0 -0.31290011e+00 0.77200731e+00 0.80553380e+00 0.13957000e+00
- 2 111 588 589 -0.64981103e+00 0.14901533e+01 0.11717530e+01 0.13498000e+00
- 1 22 0 0 -0.23712092e+00 0.90361578e-01 -0.11970431e+00 0.00000000e+00
- 1 22 0 0 -0.69236699e-01 0.70663792e-01 0.26525552e-01 0.00000000e+00
- 1 211 0 0 0.57624357e-01 0.37392906e+00 0.56402598e+00 0.13957000e+00
- 2 111 590 592 0.27493388e+00 0.14331798e+01 0.46887793e+00 0.13498000e+00
- 1 2112 0 0 0.49187163e+00 0.41682684e+01 -0.58422998e+01 0.93957000e+00
- 2 111 593 594 0.96497070e-01 0.18012794e+01 -0.31623639e+01 0.13498000e+00
- 2 111 595 596 -0.14150180e+00 0.20530147e+00 -0.48700902e+00 0.13498000e+00
- 2 111 597 598 -0.68827776e-01 0.17620531e+00 -0.32779639e+00 0.13498000e+00
- 2 111 599 600 -0.96098159e-01 -0.32515803e-01 -0.57001484e+00 0.13498000e+00
- 1 -2112 0 0 -0.68231918e+00 0.20202255e+01 -0.42844244e+01 0.93957000e+00
- 2 111 601 602 -0.16324017e-01 0.15370973e+00 -0.84169347e-01 0.13498000e+00
- 2 111 603 604 0.14332359e+00 0.25150743e+00 -0.59219380e+00 0.13498000e+00
- 2 111 605 606 0.82216233e-01 0.31965994e+00 -0.47233283e+00 0.13498000e+00
- 2 111 607 608 0.82159356e-02 0.55893903e+00 -0.13365317e+01 0.13498000e+00
- 1 22 0 0 -0.52487760e-01 0.13535664e+01 -0.22018967e+01 0.00000000e+00
- 1 22 0 0 -0.24014671e+00 0.22671553e+01 -0.35432893e+01 0.00000000e+00
- 1 -211 0 0 -0.12622695e-01 -0.74815706e+00 -0.13299183e+01 0.13957000e+00
- 2 111 609 610 -0.23386488e+00 0.80549641e-01 -0.72500776e+00 0.13498000e+00
- 2 311 611 611 0.54658624e-01 0.34469973e+00 -0.16247280e+01 0.49767000e+00
- 1 211 0 0 -0.19250733e+00 0.49723377e+00 -0.53375825e+00 0.13957000e+00
- 2 -311 612 612 -0.42401659e+00 0.90742556e-01 -0.13817672e+01 0.49767000e+00
- 1 -211 0 0 -0.27530915e+00 -0.25689584e+00 -0.26089344e+01 0.13957000e+00
- 1 -211 0 0 0.50024807e-02 -0.23146873e+00 -0.54974387e+01 0.13957000e+00
- 1 211 0 0 0.19143756e+00 0.44357958e+00 -0.40425355e+02 0.13957000e+00
- 1 -211 0 0 0.22280966e+00 -0.55365626e+00 -0.41603992e+01 0.13957000e+00
- 1 211 0 0 -0.14020813e+00 0.16082645e+00 -0.27540996e+01 0.13957000e+00
- 1 -211 0 0 0.61231226e+00 0.12275516e+01 -0.26633794e+03 0.13957000e+00
- 2 111 613 614 -0.13477895e+00 0.12650265e+00 -0.24894409e+02 0.13498000e+00
- 1 -211 0 0 0.21616390e+00 -0.29213519e+00 -0.27799653e+02 0.13957000e+00
- 1 211 0 0 -0.14063837e-01 0.18655169e+00 -0.13689395e+02 0.13957000e+00
- 2 111 615 616 -0.90595838e-01 -0.62775177e-01 -0.15820013e+02 0.13498000e+00
- 1 22 0 0 -0.11658681e-01 0.15761619e-01 -0.83703543e+00 0.00000000e+00
- 1 22 0 0 0.67924729e-01 0.53661481e+00 -0.64850902e+02 0.00000000e+00
- 1 22 0 0 0.12139676e+00 -0.47871022e-01 -0.12523036e+03 0.00000000e+00
- 1 22 0 0 -0.20987515e+00 0.63111673e+00 -0.42392180e+03 0.00000000e+00
- 1 211 0 0 0.34526900e+00 -0.22221905e-01 0.12389271e+03 0.13957000e+00
- 2 111 617 618 -0.32839304e+00 -0.28246783e+00 0.14329515e+03 0.13498000e+00
- 1 -211 0 0 -0.17176447e+00 -0.43006982e+00 0.62252966e+02 0.13957000e+00
- 2 111 619 620 0.41580649e+00 -0.68204636e+00 0.24301040e+03 0.13498000e+00
- 2 310 621 622 0.18689779e+00 0.60483586e-01 0.58494565e+02 0.49767000e+00
- 1 22 0 0 -0.92624723e-01 0.15207711e+00 0.69135868e+02 0.00000000e+00
- 2 111 623 624 -0.60424320e-01 0.46506990e-01 0.26066189e+01 0.13498000e+00
- 1 22 0 0 -0.32290693e+00 -0.95513368e-01 0.31673719e+01 0.00000000e+00
- 1 22 0 0 -0.28667027e+00 0.39130289e-01 0.30168632e+01 0.00000000e+00
- 1 22 0 0 -0.21940838e+00 0.45131246e+00 0.12007736e+02 0.00000000e+00
- 2 111 625 626 0.23426503e+00 -0.26036372e+00 0.97173841e+01 0.13498000e+00
- 1 22 0 0 0.12195159e+00 -0.13504469e+00 0.37822748e+00 0.00000000e+00
- 1 22 0 0 -0.11236028e-01 -0.46529659e-01 0.20872879e-01 0.00000000e+00
- 1 211 0 0 -0.18920401e+00 0.11832207e+00 0.20045819e+01 0.13957000e+00
- 1 -211 0 0 0.85854330e-01 -0.11805254e+00 0.17056337e+00 0.13957000e+00
- 1 211 0 0 -0.39942072e+00 -0.14125715e+01 0.11571343e+04 0.13957000e+00
- 1 -211 0 0 -0.19698214e-01 -0.34913902e-01 0.38890708e+03 0.13957000e+00
- 1 2212 0 0 -0.16925087e+00 0.53957888e+00 0.31712979e+03 0.93827000e+00
- 1 211 0 0 -0.28591508e+00 -0.14670364e-01 0.12262626e+03 0.13957000e+00
- 1 211 0 0 0.12656518e+00 0.27409602e+00 0.62997780e+02 0.13957000e+00
- 1 -211 0 0 -0.15047183e+00 -0.86548680e+00 0.20467209e+03 0.13957000e+00
- 1 -211 0 0 -0.39978542e+00 0.68191489e-01 0.84065939e+02 0.13957000e+00
- 2 111 627 628 -0.47981376e-01 -0.41041612e+00 0.11726139e+03 0.13498000e+00
- 1 22 0 0 0.60677033e+00 -0.33417908e+00 0.71909441e+02 0.00000000e+00
- 1 22 0 0 0.21467460e+00 -0.48728094e-01 0.28003959e+02 0.00000000e+00
- 1 130 0 0 -0.10873918e+01 -0.29223288e+01 0.95892007e+02 0.49767000e+00
- 1 321 0 0 0.49784394e+00 -0.14181900e+00 0.22780328e+02 0.49360000e+00
- 2 111 629 630 0.73048619e+00 -0.69961078e+00 0.36458486e+02 0.13498000e+00
- 1 -211 0 0 -0.42522731e-01 0.32700182e-01 0.41953606e+01 0.13957000e+00
- 2 111 631 632 -0.36602263e-01 -0.11634181e+01 0.28618441e+02 0.13498000e+00
- 1 22 0 0 -0.12022014e+00 -0.22383572e+01 0.59049100e+02 0.00000000e+00
- 2 113 633 634 0.37088955e+00 -0.19654623e+01 0.54986252e+02 0.56050165e+00
- 1 211 0 0 0.10519433e+00 -0.87395757e-02 0.10977322e+01 0.13957000e+00
- 1 -211 0 0 0.14200997e+00 -0.30637197e+00 0.30577132e+01 0.13957000e+00
- 2 221 635 636 0.79836284e+00 -0.65331610e+00 0.76716452e+01 0.54745000e+00
- 1 211 0 0 -0.15675050e+00 -0.96793140e-01 0.57660704e+01 0.13957000e+00
- 1 -211 0 0 0.11079185e+00 -0.26836187e+00 0.18070238e+01 0.13957000e+00
- 1 -211 0 0 0.26001825e+00 -0.17307973e+00 0.90523084e+00 0.13957000e+00
- 2 111 637 638 0.63956415e+00 -0.89851278e+00 0.78117431e+01 0.13498000e+00
- 1 -321 0 0 0.61221091e+00 -0.30328547e+00 0.20796288e+01 0.49360000e+00
- 2 111 639 640 0.32684399e+00 0.25832079e+00 0.18233393e+01 0.13498000e+00
- 2 311 641 641 0.31073703e+00 -0.20972750e+00 0.12951787e+01 0.49767000e+00
- 1 211 0 0 0.85538148e+00 -0.41323958e+00 0.16799788e+01 0.13957000e+00
- 1 -2212 0 0 0.17060647e+01 -0.60447979e+00 0.37935622e+01 0.93827000e+00
- 2 111 642 643 0.51096111e+00 -0.97589019e-01 0.46047099e+00 0.13498000e+00
- 1 2212 0 0 0.66884973e+00 0.10994229e+00 0.11152892e+01 0.93827000e+00
- 1 211 0 0 0.12251227e+00 -0.47293062e-01 0.30034474e+00 0.13957000e+00
- 1 -211 0 0 -0.95646174e-02 -0.29224622e+00 0.96840540e-01 0.13957000e+00
- 1 211 0 0 0.95956236e+00 -0.28793990e+01 0.21668693e+01 0.13957000e+00
- 1 -211 0 0 0.21945443e+00 -0.49170014e+00 0.17070391e-01 0.13957000e+00
- 1 211 0 0 -0.11656789e-01 -0.33065966e+00 0.26890794e-01 0.13957000e+00
- 2 221 644 646 0.47545504e+00 -0.70311813e+00 0.11371131e+00 0.54745000e+00
- 2 311 647 647 -0.10007833e+01 -0.29207457e+01 -0.87581770e+00 0.49767000e+00
- 2 111 648 649 -0.17551270e+00 -0.14461828e+00 -0.37562455e-01 0.13498000e+00
- 1 211 0 0 -0.40958455e+00 -0.54910825e+00 -0.14237933e+01 0.13957000e+00
- 1 -211 0 0 0.18239948e-01 -0.26002610e+00 -0.22106311e+00 0.13957000e+00
- 2 111 650 651 -0.33753537e+00 -0.21767138e+00 -0.46556172e+00 0.13498000e+00
- 1 211 0 0 -0.70018460e-01 -0.23222569e+00 -0.31905935e+00 0.13957000e+00
- 1 -211 0 0 -0.18659579e+00 0.19586583e+00 -0.23071551e+00 0.13957000e+00
- 2 111 652 653 0.11138104e+00 -0.92887187e-01 -0.74841270e-01 0.13498000e+00
- 1 22 0 0 0.62774621e-02 0.30853833e+00 -0.10056882e+01 0.00000000e+00
- 1 22 0 0 0.29951068e-01 0.19906921e+00 -0.11200074e+01 0.00000000e+00
- 1 211 0 0 0.14208634e-01 -0.65710271e-01 -0.26585200e+00 0.13957000e+00
- 1 -211 0 0 -0.22135971e+00 0.91572368e-01 -0.10491578e+02 0.13957000e+00
- 1 211 0 0 -0.32102333e+00 0.11317937e+01 -0.93815158e+01 0.13957000e+00
- 2 111 654 655 0.20511009e-01 -0.55316218e-01 -0.11665462e+01 0.13498000e+00
- 1 211 0 0 -0.11595869e+00 0.10047738e+01 -0.79773322e+01 0.13957000e+00
- 1 -211 0 0 -0.16730478e-01 0.41956539e+00 -0.21913956e+01 0.13957000e+00
- 2 111 656 657 0.22062580e+00 0.51239693e+00 -0.51661074e+01 0.13498000e+00
- 1 -321 0 0 -0.18987756e+00 0.43915611e+00 -0.39885451e+01 0.49360000e+00
- 1 211 0 0 -0.91715930e-01 0.81915114e+00 -0.28568703e+01 0.13957000e+00
- 2 311 658 658 0.63077227e+00 0.23690524e+01 -0.27908747e+02 0.49767000e+00
- 1 211 0 0 -0.47731919e-01 0.91510720e-01 -0.28309375e+01 0.13957000e+00
- 1 211 0 0 -0.21062573e+00 0.48579131e+00 -0.79562076e+01 0.13957000e+00
- 1 -211 0 0 -0.48542717e+00 0.50135696e+00 -0.41877286e+01 0.13957000e+00
- 1 -211 0 0 -0.13944310e+00 0.17540711e+00 -0.14500392e+00 0.13957000e+00
- 1 211 0 0 0.11409031e+00 -0.11736462e+00 -0.48663558e+00 0.13957000e+00
- 2 111 659 660 -0.10560187e+00 -0.49571158e-01 0.59203532e-02 0.13498000e+00
- 1 2212 0 0 -0.44039406e-01 0.40824209e+00 -0.14206557e+01 0.93827000e+00
- 1 211 0 0 0.12499875e-02 -0.19702909e+00 -0.36413166e+00 0.13957000e+00
- 2 -311 661 661 -0.13090591e+00 -0.72674698e-01 -0.79292606e-01 0.49767000e+00
- 1 -211 0 0 0.25449451e+00 -0.38908168e+00 0.68914482e-01 0.13957000e+00
- 1 321 0 0 0.94005507e+00 -0.16432322e+01 -0.10008914e+01 0.49360000e+00
- 2 111 662 663 0.13541822e+00 -0.95772565e+00 -0.23710242e+00 0.13498000e+00
- 1 211 0 0 -0.55707883e+00 -0.21050448e+00 -0.95209366e+00 0.13957000e+00
- 2 111 664 665 0.51925011e-01 -0.51225274e-01 -0.92989030e+00 0.13498000e+00
- 1 130 0 0 -0.13114308e+01 0.11442430e+01 -0.99916700e+02 0.49767000e+00
- 1 -321 0 0 -0.51865704e+00 -0.71049275e-01 -0.56106278e+02 0.49360000e+00
- 1 211 0 0 -0.11391071e+00 0.33422889e+00 -0.48559922e+02 0.13957000e+00
- 1 211 0 0 -0.19970030e+00 0.82640540e-01 -0.21602212e+02 0.13957000e+00
- 1 -211 0 0 -0.27310298e+00 0.36714607e-01 -0.19982206e+02 0.13957000e+00
- 2 221 666 668 -0.26808596e+00 0.22160689e+00 -0.28613807e+02 0.54745000e+00
- 1 22 0 0 -0.57401435e+00 -0.14363715e+00 -0.18360661e+02 0.00000000e+00
- 1 22 0 0 -0.11878300e-01 -0.14510964e+00 -0.17452077e+02 0.00000000e+00
- 1 211 0 0 -0.38699972e+00 0.37595006e+00 -0.30413977e+02 0.13957000e+00
- 1 -211 0 0 -0.63112480e+00 0.92901780e-01 -0.23773300e+02 0.13957000e+00
- 2 111 669 670 -0.61208435e-01 -0.31749591e-01 -0.40787531e+01 0.13498000e+00
- 1 -211 0 0 -0.25233328e+00 0.32328521e+00 -0.91508767e+01 0.13957000e+00
- 1 211 0 0 -0.90902371e-01 0.17720083e+00 -0.31354391e+01 0.13957000e+00
- 2 111 671 672 -0.56626518e+00 -0.18270808e-01 -0.13028053e+02 0.13498000e+00
- 1 211 0 0 -0.41863065e+00 0.89477168e-01 -0.66840970e+01 0.13957000e+00
- 1 -211 0 0 -0.45156618e+00 -0.12552345e+00 -0.12676147e+02 0.13957000e+00
- 2 111 673 674 -0.13161857e-01 0.78207320e-01 -0.49094208e+01 0.13498000e+00
- 1 211 0 0 -0.45723030e+00 -0.16239183e+00 -0.14847651e+02 0.13957000e+00
- 2 111 675 676 0.24477417e+00 0.41802789e-02 -0.31073519e+01 0.13498000e+00
- 1 22 0 0 -0.83760906e+00 0.11082878e+00 -0.99072924e+01 0.00000000e+00
- 1 22 0 0 -0.13997906e+01 0.12550914e+00 -0.18521289e+02 0.00000000e+00
- 1 211 0 0 0.54142100e+00 -0.39863076e+00 -0.14202221e+01 0.13957000e+00
- 1 -211 0 0 0.58370484e-01 0.17751409e+00 -0.11519163e+00 0.13957000e+00
- 1 2212 0 0 0.37144724e+00 0.49745193e+00 -0.79148725e+00 0.93827000e+00
- 1 211 0 0 -0.12390314e+00 0.30562170e+00 -0.46783330e+00 0.13957000e+00
- 1 -211 0 0 0.14184276e+01 0.71346144e-01 -0.10250620e+01 0.13957000e+00
- 2 111 677 678 0.64034539e+00 0.40029570e+00 -0.11008296e+01 0.13498000e+00
- 1 -2112 0 0 0.26693729e+01 0.64750833e+00 -0.23684554e+01 0.93957000e+00
- 1 -211 0 0 0.42712582e+00 0.27593469e+00 -0.23254832e+00 0.13957000e+00
- 1 -211 0 0 0.12076758e+01 -0.61199669e+00 -0.20060323e+01 0.13957000e+00
- 2 111 679 680 0.12967697e+00 0.54134937e-01 0.94674111e-02 0.13498000e+00
- 1 321 0 0 -0.15751185e+00 -0.55018014e-01 -0.13280979e+01 0.49360000e+00
- 2 111 681 682 0.34620921e+00 -0.21644902e+00 -0.58524446e+00 0.13498000e+00
- 2 -311 683 683 0.10728054e+01 -0.12425391e+01 -0.80122299e+01 0.49767000e+00
- 1 -211 0 0 0.16215895e+01 -0.12507997e+01 -0.75354788e+01 0.13957000e+00
- 1 22 0 0 0.43660794e-01 -0.92028360e-01 -0.22390258e+00 0.00000000e+00
- 2 113 684 685 0.10128630e+00 -0.40584998e+00 -0.44391095e+01 0.86837127e+00
- 1 211 0 0 0.43323315e+00 -0.44437292e+00 -0.71317743e+01 0.13957000e+00
- 2 111 686 687 0.58202648e+00 -0.48055593e+00 -0.25109638e+02 0.13498000e+00
- 1 -211 0 0 -0.24765373e+00 -0.11357472e+01 -0.23355244e+02 0.13957000e+00
- 1 211 0 0 0.39482733e+00 -0.11504042e+01 -0.26315649e+02 0.13957000e+00
- 1 22 0 0 0.88552972e-01 0.93871077e-01 -0.49574136e+01 0.00000000e+00
- 1 22 0 0 0.43546500e+00 0.15975316e+00 -0.13129992e+02 0.00000000e+00
- 2 111 688 689 0.26079544e+00 -0.65319453e+00 -0.10820928e+02 0.13498000e+00
- 2 111 690 691 0.22932203e-01 -0.38398401e+00 -0.69002888e+01 0.13498000e+00
- 2 111 692 693 0.25636607e+00 -0.74933801e+00 -0.16444122e+02 0.13498000e+00
- 1 -211 0 0 -0.23167230e+00 0.67764227e-01 -0.18520600e+02 0.13957000e+00
- 2 111 694 695 0.16638825e-01 0.89519640e-01 -0.95098381e+00 0.13498000e+00
- 1 211 0 0 -0.29275661e+00 -0.35961079e+00 -0.21726133e+02 0.13957000e+00
- 1 -211 0 0 0.29436267e+00 0.39012976e-01 -0.18332707e+02 0.13957000e+00
- 1 321 0 0 -0.86729640e-01 0.40384925e+00 -0.35906724e+02 0.49360000e+00
- 2 111 696 697 0.34591480e+00 0.45854111e+00 -0.48626593e+02 0.13498000e+00
- 2 -311 698 698 0.18233741e+01 0.16385075e+01 -0.17574076e+03 0.49767000e+00
- 1 -211 0 0 0.43488984e+00 0.70693770e+00 -0.84573585e+02 0.13957000e+00
- 1 211 0 0 0.43555835e+00 0.10843885e+01 -0.10713270e+03 0.13957000e+00
- 2 111 699 700 0.28094166e+00 0.44118789e-01 -0.12856430e+02 0.13498000e+00
- 1 22 0 0 0.63477869e+00 0.15301756e+00 -0.85635717e+02 0.00000000e+00
- 2 111 701 702 0.47217321e+00 0.12326879e+00 -0.19236819e+02 0.13498000e+00
- 1 22 0 0 0.49822999e+00 0.42495186e+00 -0.36056640e+03 0.00000000e+00
- 2 111 703 704 0.45163250e-01 0.70435101e+00 -0.17250472e+03 0.13498000e+00
- 1 -211 0 0 -0.11565333e+00 -0.19307158e+00 -0.13483036e+02 0.13957000e+00
- 2 111 705 706 0.50958479e+00 -0.25398044e+00 -0.12834849e+03 0.13498000e+00
- 1 -211 0 0 -0.88858299e-01 -0.26146240e+00 -0.55823039e+02 0.13957000e+00
- 1 211 0 0 -0.28115638e+00 -0.42346014e-01 -0.33741382e+02 0.13957000e+00
- 2 111 707 708 -0.27825944e+00 -0.62913541e+00 -0.14546903e+03 0.13498000e+00
- 1 211 0 0 -0.22149190e-01 -0.11890601e+01 -0.37327704e+03 0.13957000e+00
- 2 111 709 710 -0.34217021e+00 -0.15640902e+00 -0.18873696e+03 0.13498000e+00
- 1 22 0 0 0.18604541e-01 -0.40328042e-02 -0.13275126e+01 0.00000000e+00
- 1 22 0 0 0.28795848e+00 0.29585719e+00 -0.87814878e+02 0.00000000e+00
- 1 211 0 0 -0.14835763e+00 -0.32253771e+00 -0.75137112e+02 0.13957000e+00
- 1 -211 0 0 -0.81256428e-01 0.35126276e-01 -0.52777887e+02 0.13957000e+00
- 2 111 711 712 0.19028619e+00 -0.20229181e+00 -0.34228842e+02 0.13498000e+00
- 1 -211 0 0 -0.65322353e+00 -0.18820429e+01 -0.35307225e+03 0.13957000e+00
- 1 211 0 0 0.51155889e-01 -0.38894932e+00 -0.11765446e+03 0.13957000e+00
- 1 -211 0 0 -0.36179217e+00 -0.32488984e+00 -0.69167164e+02 0.13957000e+00
- 1 211 0 0 -0.78563405e+00 -0.14777031e+01 -0.31439296e+03 0.13957000e+00
- 2 111 713 714 -0.21337287e+00 -0.18893578e+00 -0.77069346e+02 0.13498000e+00
- 1 22 0 0 -0.36426366e-01 0.11320209e-02 -0.60162850e+01 0.00000000e+00
- 1 22 0 0 -0.51140118e+00 -0.41924917e+00 -0.18124371e+03 0.00000000e+00
- 1 -211 0 0 -0.62632270e-01 -0.25137575e+00 -0.51410916e+00 0.13957000e+00
- 2 111 715 716 0.29190608e-01 0.23769916e+00 -0.18683172e+01 0.13498000e+00
- 1 211 0 0 -0.13545116e-01 -0.47197642e+00 -0.68357232e+00 0.13957000e+00
- 1 -211 0 0 0.99101399e-03 0.16751924e+00 -0.31263424e+01 0.13957000e+00
- 1 -211 0 0 -0.16536383e+00 -0.26273852e+00 -0.45933290e+00 0.13957000e+00
- 1 211 0 0 0.32817259e+00 -0.75414528e-01 0.30656174e+00 0.13957000e+00
- 1 211 0 0 0.15209506e+00 0.20457300e+00 -0.10373140e+01 0.13957000e+00
- 2 111 717 718 -0.18262928e+00 -0.40898805e+00 -0.22930413e+01 0.13498000e+00
- 1 -211 0 0 0.62274967e+00 -0.19763943e+00 -0.57721992e+00 0.13957000e+00
- 2 111 719 720 -0.92084794e-01 0.63702272e-01 -0.51390300e-01 0.13498000e+00
- 1 -211 0 0 -0.72915090e-01 -0.71757969e-01 -0.91181102e-01 0.13957000e+00
- 1 211 0 0 0.10967768e+00 -0.56421035e-01 -0.21943889e+00 0.13957000e+00
- 2 111 721 722 -0.52516488e-01 -0.65803543e-02 0.27630683e-01 0.13498000e+00
- 2 111 723 724 0.78746217e-01 -0.36669067e-01 -0.27475670e+00 0.13498000e+00
- 2 111 725 726 0.58756602e-02 -0.10364989e+00 -0.17829353e+00 0.13498000e+00
- 2 111 727 728 0.16273461e+00 -0.45262798e+00 -0.92393866e+00 0.13498000e+00
- 1 -321 0 0 -0.69600525e-01 0.33104042e+00 -0.32645660e+01 0.49360000e+00
- 1 211 0 0 0.40572921e+00 -0.16562919e-02 -0.18563089e+01 0.13957000e+00
- 2 113 729 730 -0.99692659e-01 -0.29603597e+00 -0.83610140e+01 0.72739921e+00
- 2 111 731 732 0.11386670e+00 0.15876049e+00 -0.33090825e+01 0.13498000e+00
- 1 321 0 0 -0.19416970e+00 0.32710357e-02 -0.12385813e+02 0.49360000e+00
- 1 -211 0 0 0.27835232e-01 -0.15526933e+00 -0.83623856e+00 0.13957000e+00
- 1 -2112 0 0 -0.30129532e+00 0.84708187e+00 -0.65462488e+02 0.93957000e+00
- 2 111 733 734 -0.22579727e+00 0.50379583e-01 -0.22062961e+02 0.13498000e+00
- 1 2212 0 0 -0.69958791e+00 0.47403133e+00 -0.32326027e+02 0.93827000e+00
- 1 211 0 0 -0.18663726e+00 -0.12945114e+00 -0.71136328e+01 0.13957000e+00
- 1 -211 0 0 0.55918893e-01 -0.18011364e+00 -0.30032919e+02 0.13957000e+00
- 1 211 0 0 -0.16118979e+00 0.71968190e+00 -0.68678424e+02 0.13957000e+00
- 1 -211 0 0 0.28307061e+00 -0.21286478e+00 0.62412476e+00 0.13957000e+00
- 2 111 735 736 -0.21945510e+00 -0.61377699e-01 -0.45544619e-01 0.13498000e+00
- 1 211 0 0 -0.21007207e+00 0.37982434e+00 0.18539467e+01 0.13957000e+00
- 1 -211 0 0 -0.11357334e+00 -0.10830552e+00 0.94060158e+00 0.13957000e+00
- 1 22 0 0 0.14433390e+01 0.10244034e+01 0.44946176e+03 0.00000000e+00
- 1 22 0 0 0.20899004e+01 0.16663565e+01 0.69735274e+03 0.00000000e+00
- 1 22 0 0 0.80671689e-01 0.13247124e+00 0.12996249e+02 0.00000000e+00
- 1 22 0 0 -0.45232653e-01 0.85665681e-01 0.50096593e+01 0.00000000e+00
- 1 22 0 0 -0.58742829e-01 0.30173558e+00 0.24397415e+02 0.00000000e+00
- 1 22 0 0 0.12341616e-01 0.36626267e-01 0.89899935e+01 0.00000000e+00
- 1 22 0 0 -0.30714809e-01 0.25799105e-01 0.17626687e+02 0.00000000e+00
- 1 22 0 0 0.59149237e-01 0.23444924e-01 0.46418482e+01 0.00000000e+00
- 1 22 0 0 0.77840234e-01 0.76579926e-01 0.76575061e+02 0.00000000e+00
- 1 22 0 0 -0.45251319e-01 -0.10804631e-02 0.19789707e+02 0.00000000e+00
- 1 22 0 0 0.17225370e-01 0.90343587e-01 0.90929014e+01 0.00000000e+00
- 1 22 0 0 -0.39533508e-01 0.93439613e-01 0.33244954e+02 0.00000000e+00
- 1 22 0 0 0.11257858e+00 0.42656163e-01 0.12412368e+02 0.00000000e+00
- 1 22 0 0 0.36775704e-01 -0.72963459e-01 0.65821645e+01 0.00000000e+00
- 1 22 0 0 -0.78697651e-01 -0.25945701e-01 0.44660503e+01 0.00000000e+00
- 1 22 0 0 -0.25563141e+00 0.10670195e+00 0.25770193e+02 0.00000000e+00
- 2 310 737 738 -0.66719460e+00 -0.58133525e+00 0.68443939e+01 0.49767000e+00
- 1 22 0 0 -0.22585983e+00 0.24914767e-01 0.23140865e+01 0.00000000e+00
- 1 22 0 0 -0.55808577e+00 -0.10685242e+00 0.72772288e+01 0.00000000e+00
- 1 22 0 0 0.46818708e-01 -0.26195040e+00 0.16381476e+01 0.00000000e+00
- 1 22 0 0 0.16560182e-01 0.92866808e-02 0.30081117e+00 0.00000000e+00
- 1 22 0 0 -0.10847820e+00 0.52627685e+00 0.51619446e+01 0.00000000e+00
- 1 22 0 0 0.33539568e-01 0.63147821e-01 0.77604111e+00 0.00000000e+00
- 1 22 0 0 -0.33069835e+00 0.69671137e+00 0.23653176e+01 0.00000000e+00
- 1 22 0 0 -0.37515910e+00 0.10601771e+01 0.30966978e+01 0.00000000e+00
- 1 22 0 0 0.13116455e+00 0.10233552e+00 0.41647116e+00 0.00000000e+00
- 1 22 0 0 0.42966074e-01 0.16937269e+00 0.26293025e+00 0.00000000e+00
- 1 22 0 0 -0.63229449e-01 0.80346079e+00 0.24473081e+01 0.00000000e+00
- 1 22 0 0 -0.27860576e-01 0.49429961e-01 0.10480400e+00 0.00000000e+00
- 1 22 0 0 -0.59063655e+00 0.12520308e+01 0.96323894e+00 0.00000000e+00
- 1 22 0 0 -0.59174478e-01 0.23812248e+00 0.20851410e+00 0.00000000e+00
- 1 22 0 0 0.78193880e-01 0.63117510e+00 0.15056865e+00 0.00000000e+00
- 1 -11 0 0 0.58389092e-01 0.21222436e+00 0.87782912e-01 0.51000000e-03
- 1 11 0 0 0.13835091e+00 0.58978034e+00 0.23052636e+00 0.51000000e-03
- 1 22 0 0 0.12529148e+00 0.11145679e+01 -0.19578324e+01 0.00000000e+00
- 1 22 0 0 -0.28794407e-01 0.68671157e+00 -0.12045315e+01 0.00000000e+00
- 1 22 0 0 -0.15300020e+00 0.16567963e+00 -0.31986817e+00 0.00000000e+00
- 1 22 0 0 0.11498400e-01 0.39621830e-01 -0.16714085e+00 0.00000000e+00
- 1 22 0 0 0.27869432e-01 0.96465632e-01 -0.19424723e+00 0.00000000e+00
- 1 22 0 0 -0.96697208e-01 0.79739673e-01 -0.13354916e+00 0.00000000e+00
- 1 22 0 0 0.11895951e-01 0.41202814e-02 -0.31378145e+00 0.00000000e+00
- 1 22 0 0 -0.10799411e+00 -0.36636084e-01 -0.25623339e+00 0.00000000e+00
- 1 22 0 0 -0.22505219e-01 -0.13670461e-01 -0.41183893e-01 0.00000000e+00
- 1 22 0 0 0.61812023e-02 0.16738019e+00 -0.42985455e-01 0.00000000e+00
- 1 22 0 0 0.12053048e+00 0.13367586e+00 -0.46171024e+00 0.00000000e+00
- 1 22 0 0 0.22793112e-01 0.11783157e+00 -0.13048355e+00 0.00000000e+00
- 1 22 0 0 0.65136307e-02 0.17242337e+00 -0.14651647e+00 0.00000000e+00
- 1 22 0 0 0.75702603e-01 0.14723657e+00 -0.32581636e+00 0.00000000e+00
- 1 22 0 0 -0.93439406e-02 0.16178275e+00 -0.24906653e+00 0.00000000e+00
- 1 22 0 0 0.17559876e-01 0.39715628e+00 -0.10874652e+01 0.00000000e+00
- 1 22 0 0 -0.15379650e-01 -0.26559032e-01 -0.15598035e+00 0.00000000e+00
- 1 22 0 0 -0.21848523e+00 0.10710867e+00 -0.56902741e+00 0.00000000e+00
- 1 130 0 0 0.54658624e-01 0.34469973e+00 -0.16247280e+01 0.49767000e+00
- 2 310 739 740 -0.42401659e+00 0.90742556e-01 -0.13817672e+01 0.49767000e+00
- 1 22 0 0 -0.14497229e+00 0.67685698e-01 -0.14543036e+02 0.00000000e+00
- 1 22 0 0 0.10193345e-01 0.58816950e-01 -0.10351373e+02 0.00000000e+00
- 1 22 0 0 -0.43930451e-01 0.27668852e-01 -0.23413765e+01 0.00000000e+00
- 1 22 0 0 -0.46665387e-01 -0.90444030e-01 -0.13478637e+02 0.00000000e+00
- 1 22 0 0 -0.30206798e+00 -0.27819132e+00 0.11993142e+03 0.00000000e+00
- 1 22 0 0 -0.26325060e-01 -0.42765079e-02 0.23363724e+02 0.00000000e+00
- 1 22 0 0 0.29301032e+00 -0.35212548e+00 0.13763127e+03 0.00000000e+00
- 1 22 0 0 0.12279616e+00 -0.32992087e+00 0.10537912e+03 0.00000000e+00
- 2 111 741 742 0.65586231e-02 -0.98653564e-01 0.82846728e+01 0.13498000e+00
- 2 111 743 744 0.18033917e+00 0.15913715e+00 0.50209892e+02 0.13498000e+00
- 1 22 0 0 0.13491710e-01 0.65605641e-01 0.73373483e+00 0.00000000e+00
- 1 22 0 0 -0.73916030e-01 -0.19098651e-01 0.18728841e+01 0.00000000e+00
- 1 22 0 0 0.21574768e+00 -0.26740520e+00 0.95321312e+01 0.00000000e+00
- 1 22 0 0 0.18517354e-01 0.70414819e-02 0.18525295e+00 0.00000000e+00
- 1 22 0 0 -0.91030822e-01 -0.31283608e+00 0.93164185e+02 0.00000000e+00
- 1 22 0 0 0.43049446e-01 -0.97580044e-01 0.24097203e+02 0.00000000e+00
- 1 22 0 0 0.56483307e+00 -0.50549722e+00 0.29035493e+02 0.00000000e+00
- 1 22 0 0 0.16565311e+00 -0.19411357e+00 0.74229930e+01 0.00000000e+00
- 1 22 0 0 0.13003401e-01 -0.36666698e+00 0.76594370e+01 0.00000000e+00
- 1 22 0 0 -0.49605664e-01 -0.79675110e+00 0.20959004e+02 0.00000000e+00
- 1 211 0 0 -0.17204517e-01 -0.37197450e+00 0.15172998e+02 0.13957000e+00
- 1 -211 0 0 0.38809407e+00 -0.15934878e+01 0.39813254e+02 0.13957000e+00
- 1 22 0 0 0.56481429e+00 -0.40588706e+00 0.65782600e+01 0.00000000e+00
- 1 22 0 0 0.23354855e+00 -0.24742904e+00 0.10933852e+01 0.00000000e+00
- 1 22 0 0 0.37514717e+00 -0.59083716e+00 0.45547280e+01 0.00000000e+00
- 1 22 0 0 0.26441699e+00 -0.30767562e+00 0.32570151e+01 0.00000000e+00
- 1 22 0 0 0.13285351e+00 0.72723366e-01 0.93438730e+00 0.00000000e+00
- 1 22 0 0 0.19399048e+00 0.18559742e+00 0.88895196e+00 0.00000000e+00
- 1 130 0 0 0.31073703e+00 -0.20972750e+00 0.12951787e+01 0.49767000e+00
- 1 22 0 0 0.27566469e+00 -0.92690495e-01 0.18188215e+00 0.00000000e+00
- 1 22 0 0 0.23529642e+00 -0.48985243e-02 0.27858884e+00 0.00000000e+00
- 2 111 745 746 0.12823342e+00 -0.21031824e+00 -0.60000534e-01 0.13498000e+00
- 2 111 747 748 0.25984247e+00 -0.17198992e+00 0.24274791e-01 0.13498000e+00
- 2 111 749 750 0.87379153e-01 -0.32080996e+00 0.14943705e+00 0.13498000e+00
- 2 310 751 752 -0.10007833e+01 -0.29207457e+01 -0.87581770e+00 0.49767000e+00
- 1 22 0 0 -0.74583294e-01 -0.15796759e-01 -0.66208557e-01 0.00000000e+00
- 1 22 0 0 -0.10092940e+00 -0.12882152e+00 0.28646103e-01 0.00000000e+00
- 1 22 0 0 -0.24248801e+00 -0.20044981e+00 -0.28394001e+00 0.00000000e+00
- 1 22 0 0 -0.95047356e-01 -0.17221574e-01 -0.18162171e+00 0.00000000e+00
- 1 22 0 0 0.35644256e-01 -0.73335570e-02 0.37003349e-01 0.00000000e+00
- 1 22 0 0 0.75736779e-01 -0.85553630e-01 -0.11184462e+00 0.00000000e+00
- 1 22 0 0 0.16795522e-01 -0.44423298e-01 -0.11796744e+00 0.00000000e+00
- 1 22 0 0 0.37154867e-02 -0.10892920e-01 -0.10485788e+01 0.00000000e+00
- 1 22 0 0 -0.16670387e-01 0.27691513e-01 -0.40846131e+00 0.00000000e+00
- 1 22 0 0 0.23729619e+00 0.48470542e+00 -0.47576461e+01 0.00000000e+00
- 1 130 0 0 0.63077227e+00 0.23690524e+01 -0.27908747e+02 0.49767000e+00
- 1 22 0 0 -0.24399066e-01 0.15542310e-01 -0.51914407e-01 0.00000000e+00
- 1 22 0 0 -0.81202807e-01 -0.65113468e-01 0.57834760e-01 0.00000000e+00
- 1 130 0 0 -0.13090591e+00 -0.72674698e-01 -0.79292606e-01 0.49767000e+00
- 1 22 0 0 -0.66719368e-02 -0.42690667e+00 -0.94692467e-01 0.00000000e+00
- 1 22 0 0 0.14209016e+00 -0.53081899e+00 -0.14240995e+00 0.00000000e+00
- 1 22 0 0 -0.89890205e-02 -0.46281220e-01 -0.10255142e+00 0.00000000e+00
- 1 22 0 0 0.60914031e-01 -0.49440531e-02 -0.82733888e+00 0.00000000e+00
- 2 111 753 754 -0.12351211e+00 0.59091726e-01 -0.16000444e+02 0.13498000e+00
- 2 111 755 756 -0.15793248e-02 0.58897582e-01 -0.29864494e+01 0.13498000e+00
- 2 111 757 758 -0.14299452e+00 0.10361758e+00 -0.96269130e+01 0.13498000e+00
- 1 22 0 0 0.42331792e-01 0.21686536e-02 -0.12461856e+01 0.00000000e+00
- 1 22 0 0 -0.10354023e+00 -0.33918244e-01 -0.28325675e+01 0.00000000e+00
- 1 22 0 0 -0.51048556e+00 -0.22729410e-01 -0.10536412e+02 0.00000000e+00
- 1 22 0 0 -0.55779626e-01 0.44586014e-02 -0.24916415e+01 0.00000000e+00
- 1 22 0 0 0.44727124e-01 0.45713613e-01 -0.37832814e+01 0.00000000e+00
- 1 22 0 0 -0.57888981e-01 0.32493706e-01 -0.11261394e+01 0.00000000e+00
- 1 22 0 0 0.78540041e-01 0.65551780e-01 -0.11081394e+01 0.00000000e+00
- 1 22 0 0 0.16623413e+00 -0.61371502e-01 -0.19992126e+01 0.00000000e+00
- 1 22 0 0 0.38299349e+00 0.30317053e+00 -0.64041685e+00 0.00000000e+00
- 1 22 0 0 0.25735190e+00 0.97125167e-01 -0.46041278e+00 0.00000000e+00
- 1 22 0 0 0.41197488e-01 0.74106758e-01 0.46967378e-01 0.00000000e+00
- 1 22 0 0 0.88479482e-01 -0.19971821e-01 -0.37499967e-01 0.00000000e+00
- 1 22 0 0 0.14425750e+00 -0.15042710e+00 -0.21543230e+00 0.00000000e+00
- 1 22 0 0 0.20195171e+00 -0.66021920e-01 -0.36981216e+00 0.00000000e+00
- 1 130 0 0 0.10728054e+01 -0.12425391e+01 -0.80122299e+01 0.49767000e+00
- 1 211 0 0 -0.32941963e+00 -0.26636738e+00 -0.14799404e+01 0.13957000e+00
- 1 -211 0 0 0.43070593e+00 -0.13948260e+00 -0.29591692e+01 0.13957000e+00
- 1 22 0 0 0.92721183e-01 -0.14628961e+00 -0.62254818e+01 0.00000000e+00
- 1 22 0 0 0.48930529e+00 -0.33426632e+00 -0.18884156e+02 0.00000000e+00
- 1 22 0 0 0.26706167e+00 -0.53649593e+00 -0.90766346e+01 0.00000000e+00
- 1 22 0 0 -0.62662283e-02 -0.11669860e+00 -0.17442929e+01 0.00000000e+00
- 1 22 0 0 -0.98268863e-02 -0.76231414e-01 -0.67864946e+00 0.00000000e+00
- 1 22 0 0 0.32759089e-01 -0.30775260e+00 -0.62216394e+01 0.00000000e+00
- 1 22 0 0 0.13903219e+00 -0.36098469e+00 -0.66822031e+01 0.00000000e+00
- 1 22 0 0 0.11733388e+00 -0.38835331e+00 -0.97619187e+01 0.00000000e+00
- 1 22 0 0 -0.17609049e-01 -0.30160038e-01 -0.30146934e+00 0.00000000e+00
- 1 22 0 0 0.34247873e-01 0.11967968e+00 -0.64951447e+00 0.00000000e+00
- 1 22 0 0 0.32496025e+00 0.35718893e+00 -0.37783661e+02 0.00000000e+00
- 1 22 0 0 0.20954548e-01 0.10135218e+00 -0.10842931e+02 0.00000000e+00
- 1 130 0 0 0.18233741e+01 0.16385075e+01 -0.17574076e+03 0.49767000e+00
- 1 22 0 0 0.86106069e-01 0.71554138e-01 -0.59409753e+01 0.00000000e+00
- 1 22 0 0 0.19483559e+00 -0.27435349e-01 -0.69154547e+01 0.00000000e+00
- 1 22 0 0 0.42354647e+00 0.98375992e-01 -0.18226889e+02 0.00000000e+00
- 1 22 0 0 0.48626743e-01 0.24892799e-01 -0.10099300e+01 0.00000000e+00
- 1 22 0 0 0.61270818e-01 0.36186160e+00 -0.75735257e+02 0.00000000e+00
- 1 22 0 0 -0.16107569e-01 0.34248941e+00 -0.96769465e+02 0.00000000e+00
- 1 22 0 0 0.26688770e+00 -0.82854352e-01 -0.51239026e+02 0.00000000e+00
- 1 22 0 0 0.24269709e+00 -0.17112608e+00 -0.77109469e+02 0.00000000e+00
- 1 22 0 0 -0.22465997e+00 -0.42656195e+00 -0.11156603e+03 0.00000000e+00
- 1 22 0 0 -0.53599469e-01 -0.20257346e+00 -0.33903002e+02 0.00000000e+00
- 1 22 0 0 -0.18363678e-01 -0.34515305e-01 -0.40764391e+02 0.00000000e+00
- 1 22 0 0 -0.32380653e+00 -0.12189371e+00 -0.14797257e+03 0.00000000e+00
- 1 22 0 0 0.76435741e-01 -0.15417462e+00 -0.24559509e+02 0.00000000e+00
- 1 22 0 0 0.11385045e+00 -0.48117197e-01 -0.96693330e+01 0.00000000e+00
- 1 22 0 0 -0.10011111e+00 -0.14204776e+00 -0.57407770e+02 0.00000000e+00
- 1 22 0 0 -0.11326177e+00 -0.46888022e-01 -0.19661576e+02 0.00000000e+00
- 1 22 0 0 0.66552838e-01 0.53866042e-01 -0.68694650e+00 0.00000000e+00
- 1 22 0 0 -0.37362230e-01 0.18383312e+00 -0.11813707e+01 0.00000000e+00
- 1 22 0 0 -0.26526322e-01 -0.22284264e+00 -0.10495975e+01 0.00000000e+00
- 1 22 0 0 -0.15610296e+00 -0.18614541e+00 -0.12434438e+01 0.00000000e+00
- 1 22 0 0 0.10676931e-01 0.59410823e-01 -0.52342280e-01 0.00000000e+00
- 1 22 0 0 -0.10276172e+00 0.42914487e-02 0.95198006e-03 0.00000000e+00
- 1 22 0 0 0.15263142e-01 -0.57921398e-01 0.93690805e-02 0.00000000e+00
- 1 22 0 0 -0.67779629e-01 0.51341043e-01 0.18261602e-01 0.00000000e+00
- 1 22 0 0 -0.26668536e-01 0.13871111e-02 -0.14191288e+00 0.00000000e+00
- 1 22 0 0 0.10541475e+00 -0.38056178e-01 -0.13284382e+00 0.00000000e+00
- 1 22 0 0 0.21383991e-01 0.29280812e-01 -0.42970728e-01 0.00000000e+00
- 1 22 0 0 -0.15508331e-01 -0.13293071e+00 -0.13532281e+00 0.00000000e+00
- 1 22 0 0 0.50872474e-01 -0.11745330e+00 -0.13572821e+00 0.00000000e+00
- 1 22 0 0 0.11186214e+00 -0.33517468e+00 -0.78821045e+00 0.00000000e+00
- 1 211 0 0 0.23835058e+00 0.48136653e-01 -0.24143227e+01 0.13957000e+00
- 1 -211 0 0 -0.33804324e+00 -0.34417262e+00 -0.59466913e+01 0.13957000e+00
- 1 22 0 0 0.10200456e+00 0.15794495e+00 -0.20871562e+01 0.00000000e+00
- 1 22 0 0 0.11862143e-01 0.81553609e-03 -0.12219263e+01 0.00000000e+00
- 1 22 0 0 -0.63406805e-01 0.76856446e-01 -0.66279460e+01 0.00000000e+00
- 1 22 0 0 -0.16239047e+00 -0.26476863e-01 -0.15435015e+02 0.00000000e+00
- 1 22 0 0 -0.16230118e+00 0.53040086e-02 0.13447232e-01 0.00000000e+00
- 1 22 0 0 -0.57153917e-01 -0.66681707e-01 -0.58991851e-01 0.00000000e+00
- 2 111 759 760 -0.35623655e+00 -0.66873798e-01 0.31835306e+01 0.13498000e+00
- 2 111 761 762 -0.31095804e+00 -0.51446145e+00 0.36608633e+01 0.13498000e+00
- 2 111 763 764 -0.21650128e+00 0.20943916e+00 -0.10502319e+01 0.13498000e+00
- 2 111 765 766 -0.20751531e+00 -0.11869660e+00 -0.33153525e+00 0.13498000e+00
- 1 22 0 0 0.63249121e-01 -0.43395728e-01 0.25796169e+01 0.00000000e+00
- 1 22 0 0 -0.56690498e-01 -0.55257836e-01 0.57050559e+01 0.00000000e+00
- 1 22 0 0 0.69101580e-01 0.93039541e-01 0.35476559e+02 0.00000000e+00
- 1 22 0 0 0.11123759e+00 0.66097609e-01 0.14733334e+02 0.00000000e+00
- 1 22 0 0 0.62957737e-01 -0.12528007e-01 -0.45013138e-01 0.00000000e+00
- 1 22 0 0 0.65275681e-01 -0.19779023e+00 -0.14987396e-01 0.00000000e+00
- 1 22 0 0 0.13536029e+00 -0.13043138e+00 0.71302295e-01 0.00000000e+00
- 1 22 0 0 0.12448218e+00 -0.41558543e-01 -0.47027504e-01 0.00000000e+00
- 1 22 0 0 0.45406362e-01 -0.20696945e+00 0.22431486e-01 0.00000000e+00
- 1 22 0 0 0.41972791e-01 -0.11384051e+00 0.12700556e+00 0.00000000e+00
- 1 -211 0 0 -0.33628602e+00 -0.12631512e+01 -0.55924592e+00 0.13957000e+00
- 1 211 0 0 -0.66449726e+00 -0.16575945e+01 -0.31657177e+00 0.13957000e+00
- 1 22 0 0 -0.72001451e-01 0.75880835e-02 -0.27438855e+01 0.00000000e+00
- 1 22 0 0 -0.51510659e-01 0.51503643e-01 -0.13256559e+02 0.00000000e+00
- 1 22 0 0 -0.35362868e-01 -0.32347981e-01 -0.12340192e+01 0.00000000e+00
- 1 22 0 0 0.33783543e-01 0.91245563e-01 -0.17524302e+01 0.00000000e+00
- 1 22 0 0 -0.90985923e-01 0.12821157e+00 -0.80093191e+01 0.00000000e+00
- 1 22 0 0 -0.52008599e-01 -0.24593988e-01 -0.16175940e+01 0.00000000e+00
- 1 22 0 0 -0.78134831e-01 -0.49002304e-02 0.12590720e+01 0.00000000e+00
- 1 22 0 0 -0.27810172e+00 -0.61973567e-01 0.19244586e+01 0.00000000e+00
- 1 22 0 0 -0.35868866e-01 -0.16718790e+00 0.11618714e+01 0.00000000e+00
- 1 22 0 0 -0.27508918e+00 -0.34727355e+00 0.24989919e+01 0.00000000e+00
- 1 22 0 0 -0.11841020e+00 0.45328878e-01 -0.28155760e+00 0.00000000e+00
- 1 22 0 0 -0.98091081e-01 0.16411028e+00 -0.76867435e+00 0.00000000e+00
- 1 22 0 0 -0.23488874e-01 -0.69004414e-01 -0.15209334e+00 0.00000000e+00
- 1 22 0 0 -0.18402644e+00 -0.49692188e-01 -0.17944191e+00 0.00000000e+00
- 564
- 2 25 2 3 0.45161895e+01 -0.12472032e+00 -0.11825697e+04 0.12500006e+03
- 2 23 4 5 -0.26809253e+01 -0.18684181e+02 -0.14412226e+03 0.30237593e+02
- 2 23 6 7 0.71971147e+01 0.18559461e+02 -0.10384475e+04 0.65498955e+02
- 1 13 0 0 0.17558377e+01 -0.86017014e+01 -0.79391380e+01 0.10566000e+00
- 1 -13 0 0 -0.44367629e+01 -0.10082480e+02 -0.13618312e+03 0.10566000e+00
- 1 11 0 0 -0.11779657e+02 0.28549734e+02 -0.24167498e+03 0.51000000e-03
- 1 -11 0 0 0.18976771e+02 -0.99902737e+01 -0.79677250e+03 0.51000000e-03
- 2 2101 68 68 0.14659216e+01 0.28556298e+00 0.34055322e+04 0.57933000e+00
- 2 21 68 68 0.17018568e+01 0.19287068e+00 0.33294109e+01 0.00000000e+00
- 2 21 68 68 0.18505364e+01 -0.84284845e+00 0.20855493e+01 0.00000000e+00
- 2 21 68 68 0.82197574e+00 -0.17105106e+01 0.19243408e+01 0.00000000e+00
- 2 21 68 68 0.35340840e+00 -0.25112903e+01 0.15655271e+01 0.00000000e+00
- 2 21 68 68 -0.81318755e+00 -0.24284031e+01 0.20197928e-01 0.00000000e+00
- 2 21 68 68 -0.34324849e-01 -0.87998853e+00 -0.45094867e+00 0.00000000e+00
- 2 21 68 68 0.77453279e+00 -0.13296805e+01 -0.16007355e+01 0.00000000e+00
- 2 21 68 68 -0.33374562e+01 -0.56861535e+00 -0.25654030e+02 0.00000000e+00
- 2 21 68 68 -0.99962825e+00 -0.19066836e+01 -0.26776602e+02 0.00000000e+00
- 2 21 68 68 -0.20526813e+00 -0.85853436e+00 -0.14285278e+02 0.00000000e+00
- 2 21 68 68 -0.20100468e+01 -0.12524731e+01 -0.69559278e+02 0.00000000e+00
- 2 21 68 68 0.36621538e+00 -0.23802060e+01 -0.35224326e+03 0.00000000e+00
- 2 21 68 68 0.60941921e+00 -0.24502505e+00 -0.18531418e+03 0.00000000e+00
- 2 2 68 68 -0.50985255e+00 0.71579250e+00 -0.45120344e+03 0.33000000e+00
- 2 2 101 101 0.17917208e+01 -0.35014902e+00 0.11775388e+04 0.33000000e+00
- 2 21 101 101 -0.90898135e+00 0.12236346e+00 0.62583021e+02 0.00000000e+00
- 2 21 101 101 0.26090896e-01 -0.44056860e+00 0.80721263e+02 0.00000000e+00
- 2 21 101 101 -0.84462568e+00 0.12737698e+01 0.14831072e+03 0.00000000e+00
- 2 21 101 101 -0.51716876e+01 -0.29267641e+01 0.95230983e+02 0.00000000e+00
- 2 21 101 101 0.27155952e+00 0.10361974e+01 0.65722964e+01 0.00000000e+00
- 2 21 101 101 0.57691236e+00 -0.48254799e+00 0.47922973e+00 0.00000000e+00
- 2 21 101 101 -0.46345978e+00 -0.18070368e+00 -0.11397135e+02 0.00000000e+00
- 2 21 101 101 -0.47644267e+00 0.22597307e+00 -0.20921037e+01 0.00000000e+00
- 2 21 101 101 0.25352462e+01 -0.29401418e+00 0.83580410e+00 0.00000000e+00
- 2 21 101 101 0.20100468e+01 0.12524731e+01 -0.62524769e+01 0.00000000e+00
- 2 21 101 101 0.19034798e+01 -0.10444705e+01 -0.79748074e+01 0.00000000e+00
- 2 21 101 101 0.33374562e+01 0.56861535e+00 -0.20307105e+02 0.00000000e+00
- 2 21 101 101 0.99962825e+00 0.19066836e+01 -0.64412299e+02 0.00000000e+00
- 2 21 101 101 -0.36621538e+00 0.23802060e+01 -0.82008000e+02 0.00000000e+00
- 2 21 101 101 -0.19034798e+01 0.10444705e+01 -0.48677130e+03 0.00000000e+00
- 2 2101 101 101 -0.27334501e+00 0.84579449e+00 -0.35906590e+04 0.57933000e+00
- 2 21 146 146 -0.29109183e+01 -0.33307020e+01 0.69325470e+01 0.00000000e+00
- 2 21 146 146 -0.17018568e+01 -0.19287068e+00 0.27022247e+01 0.00000000e+00
- 2 21 146 146 -0.35340840e+00 0.25112903e+01 0.39297853e+01 0.00000000e+00
- 2 21 146 146 0.34324849e-01 0.87998853e+00 0.42884405e+00 0.00000000e+00
- 2 21 146 146 0.37712492e+00 0.47961043e+00 0.64008537e+00 0.00000000e+00
- 2 21 146 146 0.20526813e+00 0.85853436e+00 0.92384627e+00 0.00000000e+00
- 2 21 146 146 0.81318755e+00 0.24284031e+01 0.39556404e+01 0.00000000e+00
- 2 21 146 146 0.29109183e+01 0.33307020e+01 0.86234625e+01 0.00000000e+00
- 2 21 146 146 0.18432980e+01 0.85888115e+00 0.69161090e+03 0.00000000e+00
- 2 21 146 146 -0.18432980e+01 -0.85888115e+00 0.93766209e+03 0.00000000e+00
- 2 21 146 146 -0.37712492e+00 -0.47961043e+00 0.16828861e+03 0.00000000e+00
- 2 21 146 146 -0.25352462e+01 0.29401418e+00 0.11810779e+03 0.00000000e+00
- 2 21 146 146 0.70032621e+00 -0.93485935e+00 0.69334301e+01 0.00000000e+00
- 2 21 175 175 -0.16785054e+01 0.14356973e+01 0.30792202e+02 0.00000000e+00
- 2 21 175 175 -0.15448653e+01 0.66123843e+00 0.11313980e+01 0.00000000e+00
- 2 21 175 175 -0.18505364e+01 0.84284845e+00 0.74490863e+00 0.00000000e+00
- 2 21 175 175 -0.84660088e+00 -0.56533028e-01 0.27792730e-01 0.00000000e+00
- 2 21 175 175 -0.66164163e+00 0.36540979e+00 -0.12751213e+01 0.00000000e+00
- 2 21 175 175 -0.77453279e+00 0.13296805e+01 -0.32300505e+01 0.00000000e+00
- 2 21 175 175 -0.82197574e+00 0.17105106e+01 -0.73098056e+01 0.00000000e+00
- 2 21 175 175 -0.79671419e+00 0.76103650e+00 -0.59102535e+01 0.00000000e+00
- 2 21 175 175 -0.60941921e+00 0.24502505e+00 -0.12189337e+02 0.00000000e+00
- 2 21 175 175 0.16785054e+01 -0.14356973e+01 -0.22350464e+03 0.00000000e+00
- 2 21 175 175 0.79671419e+00 -0.76103650e+00 -0.66746375e+02 0.00000000e+00
- 2 21 175 175 0.84660088e+00 0.56533028e-01 -0.37634346e+02 0.00000000e+00
- 2 21 175 175 0.15448653e+01 -0.66123843e+00 -0.40014873e+02 0.00000000e+00
- 2 21 175 175 0.66164163e+00 -0.36540979e+00 -0.67822372e+01 0.00000000e+00
- 2 21 175 175 -0.70032621e+00 0.93485935e+00 0.15961348e+02 0.00000000e+00
- 2 92 69 100 0.34101948e-01 -0.15720033e+02 0.22873694e+04 0.39321364e+04
- 2 223 207 209 0.32333793e+00 0.26221017e+00 0.10158887e+04 0.84881688e+00
- 2 2214 210 211 0.88143863e+00 -0.33240706e+00 0.22979966e+04 0.12425086e+01
- 1 -211 0 0 0.16290738e+00 0.93352113e+00 0.64337494e+02 0.13957000e+00
- 2 213 212 213 0.48402981e+00 -0.83308810e+00 0.19632473e+02 0.90473395e+00
- 2 -213 214 215 0.16846188e+00 0.39065269e+00 0.51621134e+01 0.65560167e+00
- 2 223 216 218 0.10769232e+01 0.22682481e-01 0.17651963e+01 0.77982827e+00
- 2 213 219 220 0.90460961e+00 -0.16310457e+01 0.25327340e+01 0.94330704e+00
- 2 -213 221 222 0.30983784e+00 -0.53578315e+00 0.30820013e+01 0.94247224e+00
- 2 111 223 224 0.28397531e-01 0.84765533e-01 0.57025329e+00 0.13498000e+00
- 2 113 225 226 0.65590444e+00 -0.50336480e+00 0.10244004e+01 0.78246444e+00
- 2 -2114 227 228 0.30796667e+00 -0.13784877e+01 0.72126769e+00 0.12187802e+01
- 2 111 229 230 0.75804600e-01 -0.53298982e+00 -0.24124874e+00 0.13498000e+00
- 1 2112 0 0 0.10987086e+00 -0.15615257e+01 0.14329325e+01 0.93957000e+00
- 2 111 231 232 0.49339430e+00 -0.91370623e+00 -0.24801331e+00 0.13498000e+00
- 2 -311 233 233 -0.17243789e+00 -0.14619992e+01 -0.29042421e-01 0.49767000e+00
- 2 311 234 234 -0.20020915e+00 0.12231984e+00 -0.10301730e+01 0.49767000e+00
- 2 111 235 236 0.25820240e+00 -0.98518585e+00 -0.10576902e+01 0.13498000e+00
- 2 -313 237 238 -0.66646450e+00 0.10644572e+00 -0.31478680e+01 0.89119729e+00
- 2 311 239 239 -0.22072813e-01 -0.63893095e+00 -0.79400933e+01 0.49767000e+00
- 2 213 240 241 -0.72792552e+00 -0.29490775e+00 -0.27391644e+01 0.52950448e+00
- 1 -211 0 0 -0.98945906e+00 -0.99294597e+00 -0.16043321e+02 0.13957000e+00
- 2 221 242 244 -0.10768956e+01 -0.30151788e+00 -0.98801615e+01 0.54745000e+00
- 2 221 245 246 -0.58768605e+00 -0.12177832e+01 -0.36312865e+02 0.54745000e+00
- 2 111 247 248 -0.55296023e+00 0.21927573e+00 -0.17797401e+02 0.13498000e+00
- 2 213 249 250 -0.17512753e+00 -0.53427761e+00 -0.11661705e+02 0.73511776e+00
- 1 -211 0 0 -0.75123419e+00 -0.65680704e+00 -0.29110987e+02 0.13957000e+00
- 1 211 0 0 0.72472987e+00 -0.22361940e+00 -0.43749049e+02 0.13957000e+00
- 2 223 251 253 -0.12369313e+01 -0.14218520e+01 -0.78617800e+02 0.77775559e+00
- 2 111 254 255 -0.18936418e-01 -0.16863561e+00 -0.60051095e+02 0.13498000e+00
- 2 -323 256 257 -0.33867633e-01 -0.54675656e+00 -0.17156703e+03 0.92705826e+00
- 2 313 258 259 0.97374381e+00 -0.62179250e+00 -0.39241111e+03 0.10193520e+01
- 1 211 0 0 -0.69325095e+00 0.42750369e+00 -0.24314085e+03 0.13957000e+00
- 2 92 102 145 0.30439036e+01 0.49373287e+01 -0.26996020e+04 0.51874386e+04
- 2 3224 260 261 -0.88911246e-01 0.23935837e-01 0.23299995e+03 0.13859067e+01
- 2 -3324 262 263 0.73627301e+00 0.54773315e-01 0.84537032e+03 0.15325694e+01
- 1 -321 0 0 0.40414038e+00 -0.32670766e+00 0.12576814e+03 0.49360000e+00
- 2 213 264 265 -0.36594940e+00 0.38431289e+00 0.11917345e+03 0.70859305e+00
- 2 313 266 267 -0.34041612e+00 -0.29537335e+00 0.71472781e+02 0.88120047e+00
- 2 -311 268 268 -0.12694903e+00 0.43603575e+00 0.34044504e+02 0.49767000e+00
- 2 111 269 270 0.38969073e-01 -0.40988992e+00 0.16084106e+02 0.13498000e+00
- 1 -211 0 0 -0.26970465e+01 -0.81500027e+00 0.46632537e+02 0.13957000e+00
- 1 211 0 0 -0.44132698e+00 0.71674263e+00 0.29720705e+02 0.13957000e+00
- 1 -211 0 0 -0.20255709e+00 -0.41828394e+00 0.32684862e+01 0.13957000e+00
- 2 213 271 272 -0.13336590e+01 -0.91997657e+00 0.30128018e+02 0.77010960e+00
- 2 -213 273 274 -0.32432411e+00 0.11960750e+00 0.94817182e+01 0.75754729e+00
- 1 321 0 0 -0.59643694e+00 -0.23341798e+00 0.42442876e+01 0.49360000e+00
- 2 3122 275 276 0.87741701e+00 0.41569282e+00 0.21143354e+01 0.11156800e+01
- 1 -2212 0 0 0.16352121e+00 0.85147770e-01 0.16579518e-01 0.93827000e+00
- 2 111 277 278 -0.38250736e+00 -0.21439008e+00 -0.27937283e+00 0.13498000e+00
- 1 211 0 0 0.27632921e+00 0.28571766e-01 -0.66137332e+00 0.13957000e+00
- 2 313 279 280 -0.49092495e+00 -0.66605255e+00 -0.16026698e+01 0.73769796e+00
- 2 3122 281 282 0.43922831e-01 0.13391065e+00 -0.34638435e+01 0.11156800e+01
- 1 -2212 0 0 0.37490194e+00 0.72328076e-01 -0.24834658e+01 0.93827000e+00
- 2 213 283 284 -0.34747508e+00 -0.29811429e+00 -0.17164889e+01 0.77711686e+00
- 2 311 285 285 -0.47864149e-01 0.24016121e+00 -0.87195335e-01 0.49767000e+00
- 2 -313 286 287 0.82493605e+00 -0.81257948e+00 -0.92108857e+00 0.86740767e+00
- 1 -211 0 0 0.71781375e+00 0.10925539e+01 -0.94711217e+00 0.13957000e+00
- 1 211 0 0 0.40415117e+00 0.10046384e+00 -0.19541426e+01 0.13957000e+00
- 2 -213 288 289 0.65316056e+00 -0.79902407e-01 -0.44965617e+00 0.86313573e+00
- 2 221 290 291 0.31719932e+00 0.16595822e+00 -0.35209052e+00 0.54745000e+00
- 2 323 292 293 0.11800701e+01 -0.37309744e+00 -0.41325503e+01 0.99938783e+00
- 1 -321 0 0 0.17611067e+01 -0.15703997e+00 -0.12379140e+02 0.49360000e+00
- 2 213 294 295 0.53405376e+00 0.62908666e+00 -0.45365726e+01 0.69796604e+00
- 2 -213 296 297 0.39246084e+00 0.84091272e+00 -0.33756829e+01 0.77104236e+00
- 2 113 298 299 0.10224122e+01 -0.21999489e+00 -0.17222403e+02 0.10346649e+01
- 2 113 300 301 0.26671856e+00 0.10038597e+00 -0.22103279e+01 0.52716403e+00
- 1 211 0 0 0.14725478e+01 -0.16319196e+00 -0.11897632e+02 0.13957000e+00
- 1 -211 0 0 -0.93132076e-02 0.51275660e+00 -0.97317940e+01 0.13957000e+00
- 2 223 302 304 -0.74085203e-01 0.12648002e+01 -0.37264104e+02 0.77412438e+00
- 1 211 0 0 -0.18468743e-01 -0.44504803e+00 -0.45163011e+02 0.13957000e+00
- 1 2112 0 0 0.52678438e+00 0.20721409e+01 -0.82622582e+02 0.93957000e+00
- 1 -2112 0 0 -0.20819273e+00 0.38830934e+00 -0.13580164e+03 0.93957000e+00
- 2 313 305 306 -0.89745475e+00 0.31999460e+00 -0.13030986e+03 0.88458766e+00
- 2 333 307 308 0.44380461e+00 0.30871391e+00 -0.21594781e+03 0.10208335e+01
- 1 -321 0 0 -0.39755984e+00 0.51278435e+00 -0.33302823e+03 0.49360000e+00
- 2 2114 309 310 -0.70605096e+00 0.30917628e+00 -0.60017547e+03 0.13029250e+01
- 2 213 311 312 -0.29131747e+00 0.45613174e+00 -0.26094046e+04 0.90441371e+00
- 2 92 147 174 -0.28374047e+01 0.58445005e+01 0.19507393e+04 0.14831308e+03
- 2 -213 313 314 0.77775258e-01 -0.43087576e+00 0.14352533e+02 0.10466426e+01
- 1 211 0 0 0.30373047e+00 0.29241981e+00 0.14581964e+03 0.13957000e+00
- 2 113 315 316 0.36303808e+00 -0.10802159e+00 0.16201692e+03 0.67524407e+00
- 2 111 317 318 -0.40476785e+00 0.23061952e+00 0.19384754e+02 0.13498000e+00
- 2 111 319 320 0.17361574e+00 0.38750845e+00 0.31403218e+02 0.13498000e+00
- 2 -213 321 322 -0.70692495e+00 -0.15161275e+00 0.19381995e+03 0.78989252e+00
- 2 -1114 323 324 -0.68775898e-01 -0.67977983e+00 0.43734024e+03 0.13199424e+01
- 2 113 325 326 0.65154385e+00 0.25825568e+00 0.15776318e+03 0.65872358e+00
- 2 2114 327 328 -0.12125026e+01 0.20984552e+00 0.24333518e+03 0.12691809e+01
- 2 -2214 329 330 -0.53068586e+00 -0.68325321e+00 0.25197037e+03 0.12255015e+01
- 2 2214 331 332 -0.64302428e+00 0.52454036e+00 0.13168541e+03 0.13604725e+01
- 1 -211 0 0 0.62722003e-01 -0.36353942e+00 0.42059500e+02 0.13957000e+00
- 2 -3112 333 334 -0.92226208e+00 -0.46140256e+00 0.47928140e+02 0.11974400e+01
- 2 3212 335 336 -0.83349611e-01 -0.41128386e+00 0.12092528e+02 0.11925500e+01
- 2 -323 337 338 -0.71967159e+00 -0.96305983e+00 0.36829816e+01 0.95023004e+00
- 2 313 339 340 -0.36124936e+00 -0.15402600e+00 0.37039746e+01 0.98715554e+00
- 1 211 0 0 -0.14496691e+01 -0.56164155e+00 0.18831451e+01 0.13957000e+00
- 2 -323 341 342 -0.57272240e+00 -0.21069906e+00 0.18332121e+01 0.90282980e+00
- 2 221 343 344 -0.38342406e+00 -0.89339891e+00 0.12497330e+01 0.54745000e+00
- 2 311 345 345 -0.52143632e+00 0.47518802e+00 0.12079531e+01 0.49767000e+00
- 2 111 346 347 0.12987956e+00 -0.62663929e-01 0.76894693e+00 0.13498000e+00
- 2 111 348 349 0.14983678e+00 0.56693626e+00 0.94930152e+00 0.13498000e+00
- 1 211 0 0 -0.19373555e+00 0.89114845e+00 0.10785218e+01 0.13957000e+00
- 2 -2214 350 351 0.13611997e+01 0.18454890e+01 0.29012915e+01 0.12044746e+01
- 2 2214 352 353 0.29776491e+00 0.19514876e+01 0.52719454e+01 0.12895841e+01
- 2 -323 354 355 0.97360899e+00 0.29404696e+01 0.44716888e+01 0.89003241e+00
- 2 323 356 357 0.82792531e+00 0.10268695e+01 0.33566998e+01 0.90035075e+00
- 2 111 358 359 0.56415616e+00 0.37898102e+00 0.27408303e+02 0.13498000e+00
- 2 92 176 206 -0.47567904e+01 0.50629239e+01 -0.35593939e+03 0.28739945e+03
- 2 -311 360 360 -0.84659498e-01 0.40603135e+00 0.10750457e+01 0.49767000e+00
- 2 -213 361 362 -0.13549085e+01 0.66115369e+00 0.20315240e+02 0.45312959e+00
- 2 223 363 364 -0.77529851e+00 0.10387909e+01 0.11109048e+02 0.78027159e+00
- 1 211 0 0 -0.31332118e+00 0.65055365e+00 0.71282422e+01 0.13957000e+00
- 2 -213 365 366 -0.52914780e+00 0.32470659e+00 0.39071377e+01 0.64897152e+00
- 2 113 367 368 -0.22921970e+00 -0.15915947e+00 0.84791202e+00 0.87218309e+00
- 2 223 369 371 -0.11711359e+01 0.56684184e+00 0.15724346e+01 0.77885527e+00
- 2 221 372 374 -0.10894522e+01 -0.33473971e+00 -0.14510839e+00 0.54745000e+00
- 2 113 375 376 0.15264624e-01 0.42462527e+00 -0.30352498e+00 0.85324396e+00
- 1 211 0 0 -0.68369819e+00 0.13126881e+01 -0.10299636e+01 0.13957000e+00
- 1 -211 0 0 -0.87489531e+00 0.48008820e+00 -0.16261433e+01 0.13957000e+00
- 1 211 0 0 -0.16854159e+00 0.22887271e+00 -0.65014328e+00 0.13957000e+00
- 2 223 377 379 0.16463702e+00 0.25435132e+00 -0.19002126e+01 0.77872225e+00
- 2 -213 380 381 -0.61302833e+00 0.22137666e+00 -0.82315449e+00 0.74440818e+00
- 2 111 382 383 -0.83241506e+00 -0.28703021e+00 -0.18555551e+01 0.13498000e+00
- 1 211 0 0 -0.86546439e+00 0.14939762e+01 -0.41200593e+01 0.13957000e+00
- 2 113 384 385 -0.18392172e-01 0.88511196e+00 -0.68449498e+01 0.75986577e+00
- 2 223 386 388 -0.12861091e+00 0.32836328e+00 -0.17531672e+02 0.76712905e+00
- 2 111 389 390 0.47454591e+00 -0.66253365e+00 -0.45857192e+02 0.13498000e+00
- 1 -211 0 0 -0.19883567e+00 -0.23854769e-02 -0.14450716e+02 0.13957000e+00
- 2 111 391 392 0.19884448e+00 -0.40792786e+00 -0.22624538e+02 0.13498000e+00
- 2 213 393 394 -0.17649846e-01 0.23879174e+00 -0.28892098e+02 0.66374617e+00
- 2 113 395 396 0.87526577e+00 -0.11417057e+00 -0.40683564e+02 0.82207758e+00
- 2 313 397 398 0.61491556e+00 -0.72630936e+00 -0.80727367e+02 0.88348614e+00
- 2 3114 399 400 0.11337400e+01 -0.84111315e+00 -0.68747958e+02 0.13800252e+01
- 1 211 0 0 -0.90740842e-01 -0.19251334e-01 -0.74181952e+00 0.13957000e+00
- 2 -2214 401 402 0.11997349e+01 -0.40735851e+00 -0.48011707e+02 0.13289820e+01
- 2 221 403 405 0.29016145e+00 -0.38607531e-01 -0.95915148e+01 0.54745000e+00
- 2 113 406 407 0.26070529e+00 -0.63989336e-01 -0.57687516e+01 0.76261682e+00
- 2 113 408 409 -0.41908369e+00 0.20702476e+00 -0.24179503e+00 0.73205901e+00
- 2 323 410 411 0.47389390e+00 -0.59584808e+00 0.12750585e+01 0.96874989e+00
- 1 -211 0 0 -0.43612762e-01 0.31656906e+00 0.43857053e+03 0.13957000e+00
- 1 211 0 0 0.28518937e+00 0.10526127e+00 0.43019517e+03 0.13957000e+00
- 2 111 412 413 0.81761320e-01 -0.15962016e+00 0.14712299e+03 0.13498000e+00
- 1 2212 0 0 0.54111546e+00 -0.15926208e+00 0.19198105e+04 0.93827000e+00
- 2 111 414 415 0.34032318e+00 -0.17314498e+00 0.37818611e+03 0.13498000e+00
- 1 211 0 0 0.23062870e+00 -0.96551419e+00 0.14328382e+02 0.13957000e+00
- 2 111 416 417 0.25340111e+00 0.13242610e+00 0.53040911e+01 0.13498000e+00
- 1 -211 0 0 0.36769507e-01 0.40737586e+00 0.17145392e+01 0.13957000e+00
- 2 111 418 419 0.13169237e+00 -0.16723163e-01 0.34475742e+01 0.13498000e+00
- 1 211 0 0 0.23520659e+00 0.16974160e+00 0.58721029e+00 0.13957000e+00
- 1 -211 0 0 0.53081888e+00 -0.27540203e-01 0.38863177e+00 0.13957000e+00
- 2 111 420 421 0.31089778e+00 -0.11951891e+00 0.78935421e+00 0.13498000e+00
- 1 211 0 0 0.10380799e+01 -0.11378030e+01 0.17068385e+01 0.13957000e+00
- 2 111 422 423 -0.13347034e+00 -0.49324272e+00 0.82589553e+00 0.13498000e+00
- 1 -211 0 0 0.25612048e+00 -0.24141677e+00 0.28612423e+01 0.13957000e+00
- 2 111 424 425 0.53717353e-01 -0.29436638e+00 0.22075907e+00 0.13498000e+00
- 1 22 0 0 0.98258179e-02 -0.16970879e-02 0.40700544e+00 0.00000000e+00
- 1 22 0 0 0.18571713e-01 0.86462621e-01 0.16324785e+00 0.00000000e+00
- 1 211 0 0 0.57369034e+00 -0.23038966e+00 0.10352114e+01 0.13957000e+00
- 1 -211 0 0 0.82214096e-01 -0.27297513e+00 -0.10811017e-01 0.13957000e+00
- 1 -2212 0 0 0.25486441e+00 -0.77455026e+00 0.50038609e+00 0.93827000e+00
- 1 211 0 0 0.53102260e-01 -0.60393741e+00 0.22088161e+00 0.13957000e+00
- 1 22 0 0 0.10715344e+00 -0.41826107e+00 -0.15698289e+00 0.00000000e+00
- 1 22 0 0 -0.31348836e-01 -0.11472875e+00 -0.84265852e-01 0.00000000e+00
- 1 22 0 0 0.34238592e+00 -0.73893903e+00 -0.16701629e+00 0.00000000e+00
- 1 22 0 0 0.15100838e+00 -0.17476720e+00 -0.80997026e-01 0.00000000e+00
- 2 310 426 427 -0.17243789e+00 -0.14619992e+01 -0.29042421e-01 0.49767000e+00
- 1 130 0 0 -0.20020915e+00 0.12231984e+00 -0.10301730e+01 0.49767000e+00
- 1 22 0 0 0.42137536e-04 -0.10528849e+00 -0.68157342e-01 0.00000000e+00
- 1 22 0 0 0.25816026e+00 -0.87989736e+00 -0.98953283e+00 0.00000000e+00
- 2 -311 428 428 -0.62345886e+00 0.24874811e+00 -0.29178736e+01 0.49767000e+00
- 2 111 429 430 -0.43005639e-01 -0.14230239e+00 -0.22999440e+00 0.13498000e+00
- 2 310 431 432 -0.22072813e-01 -0.63893095e+00 -0.79400933e+01 0.49767000e+00
- 1 211 0 0 -0.68585805e-01 -0.16053531e+00 -0.37501022e+00 0.13957000e+00
- 2 111 433 434 -0.65933971e+00 -0.13437244e+00 -0.23641542e+01 0.13498000e+00
- 1 211 0 0 -0.46950622e+00 -0.67184474e-01 -0.49726184e+01 0.13957000e+00
- 1 -211 0 0 -0.27112486e+00 -0.19330358e+00 -0.26157683e+01 0.13957000e+00
- 2 111 435 436 -0.33626452e+00 -0.41029823e-01 -0.22917748e+01 0.13498000e+00
- 1 22 0 0 -0.40484298e+00 -0.51558503e+00 -0.11488212e+02 0.00000000e+00
- 1 22 0 0 -0.18284307e+00 -0.70219817e+00 -0.24824653e+02 0.00000000e+00
- 1 22 0 0 -0.13199917e+00 0.11638780e+00 -0.47789309e+01 0.00000000e+00
- 1 22 0 0 -0.42096106e+00 0.10288793e+00 -0.13018470e+02 0.00000000e+00
- 1 211 0 0 0.24163355e+00 -0.10849464e+00 -0.48941856e+01 0.13957000e+00
- 2 111 437 438 -0.41676108e+00 -0.42578297e+00 -0.67675190e+01 0.13498000e+00
- 1 -211 0 0 -0.40582829e+00 -0.42833192e+00 -0.19212398e+02 0.13957000e+00
- 1 211 0 0 -0.79063410e+00 -0.96778493e+00 -0.55490296e+02 0.13957000e+00
- 2 111 439 440 -0.40468900e-01 -0.25735151e-01 -0.39151058e+01 0.13498000e+00
- 1 22 0 0 0.48889782e-01 -0.12951747e+00 -0.37490606e+02 0.00000000e+00
- 1 22 0 0 -0.67826199e-01 -0.39118141e-01 -0.22560489e+02 0.00000000e+00
- 2 -311 441 441 -0.23593734e+00 -0.26166935e+00 -0.13646852e+03 0.49767000e+00
- 1 -211 0 0 0.20206971e+00 -0.28508721e+00 -0.35098511e+02 0.13957000e+00
- 1 321 0 0 0.60397217e+00 -0.41367914e+00 -0.14906610e+03 0.49360000e+00
- 1 -211 0 0 0.36977163e+00 -0.20811336e+00 -0.24334501e+03 0.13957000e+00
- 2 3122 442 443 -0.72806355e-01 -0.17982748e+00 0.20046560e+03 0.11156800e+01
- 1 211 0 0 -0.16104891e-01 0.20376331e+00 0.32534343e+02 0.13957000e+00
- 2 -3312 444 445 0.67706837e+00 0.13181993e+00 0.80080379e+03 0.13213000e+01
- 1 -211 0 0 0.59204639e-01 -0.77046616e-01 0.44566530e+02 0.13957000e+00
- 1 211 0 0 0.17507541e+00 0.45079429e-01 0.36248069e+02 0.13957000e+00
- 2 111 446 447 -0.54102481e+00 0.33923346e+00 0.82925378e+02 0.13498000e+00
- 2 311 448 448 -0.46374370e+00 -0.82102413e-01 0.42891727e+02 0.49767000e+00
- 2 111 449 450 0.12332759e+00 -0.21327094e+00 0.28581055e+02 0.13498000e+00
- 2 310 451 452 -0.12694903e+00 0.43603575e+00 0.34044504e+02 0.49767000e+00
- 1 22 0 0 0.72859906e-01 -0.26333989e+00 0.86517803e+01 0.00000000e+00
- 1 22 0 0 -0.33890832e-01 -0.14655003e+00 0.74323259e+01 0.00000000e+00
- 1 211 0 0 -0.15220747e+00 0.59837856e-01 0.62507913e+01 0.13957000e+00
- 2 111 453 454 -0.11814516e+01 -0.97981443e+00 0.23877227e+02 0.13498000e+00
- 1 -211 0 0 -0.26054156e+00 -0.68640126e-01 0.13815098e+01 0.13957000e+00
- 2 111 455 456 -0.63782555e-01 0.18824763e+00 0.81002084e+01 0.13498000e+00
- 1 2112 0 0 0.67687219e+00 0.24679733e+00 0.17040963e+01 0.93957000e+00
- 2 111 457 458 0.20054482e+00 0.16889549e+00 0.41023905e+00 0.13498000e+00
- 1 22 0 0 -0.35711828e+00 -0.23369558e+00 -0.26294310e+00 0.00000000e+00
- 1 22 0 0 -0.25389075e-01 0.19305506e-01 -0.16429729e-01 0.00000000e+00
- 1 321 0 0 -0.44711023e+00 -0.42101402e+00 -0.13702784e+01 0.49360000e+00
- 1 -211 0 0 -0.43814726e-01 -0.24503853e+00 -0.23239144e+00 0.13957000e+00
- 1 2112 0 0 -0.45371275e-01 0.92453573e-01 -0.31109852e+01 0.93957000e+00
- 2 111 459 460 0.89294106e-01 0.41457080e-01 -0.35285827e+00 0.13498000e+00
- 1 211 0 0 0.65479203e-01 -0.42212982e+00 -0.81654435e+00 0.13957000e+00
- 2 111 461 462 -0.41295428e+00 0.12401553e+00 -0.89994460e+00 0.13498000e+00
- 2 310 463 464 -0.47864149e-01 0.24016121e+00 -0.87195335e-01 0.49767000e+00
- 1 -321 0 0 0.85677010e+00 -0.81447667e+00 -0.72389128e+00 0.49360000e+00
- 1 211 0 0 -0.31834051e-01 0.18971930e-02 -0.19719728e+00 0.13957000e+00
- 1 -211 0 0 0.77407402e+00 -0.51552081e-03 -0.12758868e+00 0.13957000e+00
- 2 111 465 466 -0.12091346e+00 -0.79386887e-01 -0.32206748e+00 0.13498000e+00
- 1 22 0 0 0.42393369e+00 -0.15380134e-01 -0.14684634e+00 0.00000000e+00
- 1 22 0 0 -0.10673436e+00 0.18133835e+00 -0.20524418e+00 0.00000000e+00
- 1 321 0 0 0.20490602e+00 -0.70309199e-01 -0.10902672e+01 0.49360000e+00
- 2 111 467 468 0.97516413e+00 -0.30278824e+00 -0.30422832e+01 0.13498000e+00
- 1 211 0 0 -0.39950562e-01 0.43142594e+00 -0.21098282e+01 0.13957000e+00
- 2 111 469 470 0.57400432e+00 0.19766072e+00 -0.24267444e+01 0.13498000e+00
- 1 -211 0 0 0.46332144e+00 0.87270050e+00 -0.24383692e+01 0.13957000e+00
- 2 111 471 472 -0.70860599e-01 -0.31787775e-01 -0.93731373e+00 0.13498000e+00
- 1 -211 0 0 0.81888988e+00 -0.53711946e+00 -0.14441018e+02 0.13957000e+00
- 1 211 0 0 0.20352229e+00 0.31712457e+00 -0.27813853e+01 0.13957000e+00
- 1 211 0 0 0.68077383e-01 -0.17367552e+00 -0.83356759e+00 0.13957000e+00
- 1 -211 0 0 0.19864117e+00 0.27406149e+00 -0.13767603e+01 0.13957000e+00
- 1 -211 0 0 0.15054745e+00 0.35307689e+00 -0.80583885e+01 0.13957000e+00
- 1 211 0 0 -0.26260185e+00 0.30292107e+00 -0.98466640e+01 0.13957000e+00
- 2 111 473 474 0.37969190e-01 0.60880228e+00 -0.19359051e+02 0.13498000e+00
- 1 321 0 0 -0.84321166e+00 0.47316259e+00 -0.10774325e+03 0.49360000e+00
- 1 -211 0 0 -0.54243082e-01 -0.15316798e+00 -0.22566614e+02 0.13957000e+00
- 1 130 0 0 0.21046690e+00 0.22806957e+00 -0.12704668e+03 0.49767000e+00
- 2 310 475 476 0.23333772e+00 0.80644335e-01 -0.88901126e+02 0.49767000e+00
- 1 2212 0 0 -0.81453534e+00 0.31375043e+00 -0.45598819e+03 0.93827000e+00
- 1 -211 0 0 0.10848439e+00 -0.45741540e-02 -0.14418727e+03 0.13957000e+00
- 1 211 0 0 -0.14444506e+00 -0.62254680e-01 -0.18413985e+04 0.13957000e+00
- 2 111 477 478 -0.14687241e+00 0.51838642e+00 -0.76800614e+03 0.13498000e+00
- 1 -211 0 0 -0.93475162e-01 0.11028672e+00 0.60706805e+00 0.13957000e+00
- 2 111 479 480 0.17125042e+00 -0.54116248e+00 0.13745465e+02 0.13498000e+00
- 1 -211 0 0 0.43433445e-02 0.22527900e+00 0.56133840e+02 0.13957000e+00
- 1 211 0 0 0.35869474e+00 -0.33330059e+00 0.10588308e+03 0.13957000e+00
- 1 22 0 0 -0.32800461e+00 0.13628690e+00 0.12724532e+02 0.00000000e+00
- 1 22 0 0 -0.76763243e-01 0.94332618e-01 0.66602222e+01 0.00000000e+00
- 1 22 0 0 0.47247113e-01 0.19530382e+00 0.10731923e+02 0.00000000e+00
- 1 22 0 0 0.12636862e+00 0.19220463e+00 0.20671295e+02 0.00000000e+00
- 1 -211 0 0 -0.17671646e+00 -0.81659281e-01 0.13568859e+02 0.13957000e+00
- 2 111 481 482 -0.53020849e+00 -0.69953472e-01 0.18025109e+03 0.13498000e+00
- 1 -2112 0 0 -0.10030417e+00 -0.43771103e+00 0.40392679e+03 0.93957000e+00
- 1 211 0 0 0.31528268e-01 -0.24206880e+00 0.33413453e+02 0.13957000e+00
- 1 -211 0 0 0.52289164e+00 0.44813975e-01 0.58486941e+02 0.13957000e+00
- 1 211 0 0 0.12865221e+00 0.21344170e+00 0.99276237e+02 0.13957000e+00
- 1 2112 0 0 -0.11950134e+01 0.61267922e-02 0.20472521e+03 0.93957000e+00
- 2 111 483 484 -0.17489241e-01 0.20371872e+00 0.38609977e+02 0.13498000e+00
- 1 -2212 0 0 -0.34808781e+00 -0.32975456e+00 0.19954047e+03 0.93827000e+00
- 2 111 485 486 -0.18259805e+00 -0.35349865e+00 0.52429904e+02 0.13498000e+00
- 1 2212 0 0 -0.42772138e+00 0.46875170e-01 0.95845497e+02 0.93827000e+00
- 2 111 487 488 -0.21530290e+00 0.47766519e+00 0.35839910e+02 0.13498000e+00
- 1 -2112 0 0 -0.66527443e+00 -0.19741001e+00 0.38735738e+02 0.93957000e+00
- 1 211 0 0 -0.25698764e+00 -0.26399255e+00 0.91924022e+01 0.13957000e+00
- 2 3122 489 490 -0.94492002e-02 -0.37538232e+00 0.10995888e+02 0.11156800e+01
- 1 22 0 0 -0.73900411e-01 -0.35901541e-01 0.10966395e+01 0.00000000e+00
- 2 -311 491 491 -0.60066393e+00 -0.10661123e+01 0.31246843e+01 0.49767000e+00
- 1 -211 0 0 -0.11900766e+00 0.10305243e+00 0.55829731e+00 0.13957000e+00
- 1 321 0 0 -0.28603081e+00 0.24905500e+00 0.19660944e+01 0.49360000e+00
- 1 -211 0 0 -0.75218547e-01 -0.40308100e+00 0.17378802e+01 0.13957000e+00
- 2 -311 492 492 -0.58244379e+00 -0.51618010e-01 0.93545517e+00 0.49767000e+00
- 1 -211 0 0 0.97213852e-02 -0.15908105e+00 0.89775691e+00 0.13957000e+00
- 1 22 0 0 -0.11693711e+00 -0.80729087e+00 0.78108596e+00 0.00000000e+00
- 1 22 0 0 -0.26648696e+00 -0.86108044e-01 0.46864705e+00 0.00000000e+00
- 1 130 0 0 -0.52143632e+00 0.47518802e+00 0.12079531e+01 0.49767000e+00
- 1 22 0 0 0.11323764e+00 -0.57361360e-01 0.76569361e+00 0.00000000e+00
- 1 22 0 0 0.16641922e-01 -0.53025689e-02 0.32533261e-02 0.00000000e+00
- 1 22 0 0 0.16874126e+00 0.49599622e+00 0.78239279e+00 0.00000000e+00
- 1 22 0 0 -0.18904477e-01 0.70940039e-01 0.16690873e+00 0.00000000e+00
- 1 -2112 0 0 0.97272403e+00 0.13484308e+01 0.18733263e+01 0.93957000e+00
- 1 -211 0 0 0.38847571e+00 0.49705822e+00 0.10279652e+01 0.13957000e+00
- 1 2212 0 0 0.33693970e+00 0.10820616e+01 0.30961134e+01 0.93827000e+00
- 2 111 493 494 -0.39174789e-01 0.86942603e+00 0.21758319e+01 0.13498000e+00
- 1 -321 0 0 0.88136333e+00 0.28343446e+01 0.40313802e+01 0.49360000e+00
- 2 111 495 496 0.92245661e-01 0.10612500e+00 0.44030868e+00 0.13498000e+00
- 2 311 497 497 0.65447324e+00 0.10103157e+01 0.23575857e+01 0.49767000e+00
- 1 211 0 0 0.17345207e+00 0.16553731e-01 0.99911401e+00 0.13957000e+00
- 1 22 0 0 0.26988666e+00 0.16878687e+00 0.15496951e+02 0.00000000e+00
- 1 22 0 0 0.29426950e+00 0.21019415e+00 0.11911352e+02 0.00000000e+00
- 2 310 498 499 -0.84659498e-01 0.40603135e+00 0.10750457e+01 0.49767000e+00
- 1 -211 0 0 -0.46334651e+00 0.27753702e+00 0.53971574e+01 0.13957000e+00
- 2 111 500 501 -0.89156204e+00 0.38361667e+00 0.14918083e+02 0.13498000e+00
- 1 22 0 0 -0.29807275e+00 0.44727480e+00 0.20353304e+01 0.00000000e+00
- 2 111 502 503 -0.47722577e+00 0.59151606e+00 0.90737179e+01 0.13498000e+00
- 1 -211 0 0 -0.34002110e-01 -0.12312192e+00 0.50271571e+00 0.13957000e+00
- 2 111 504 505 -0.49514569e+00 0.44782851e+00 0.34044220e+01 0.13498000e+00
- 1 -211 0 0 -0.28151511e+00 -0.36866317e+00 0.86386294e+00 0.13957000e+00
- 1 211 0 0 0.52295411e-01 0.20950369e+00 -0.15950915e-01 0.13957000e+00
- 1 -211 0 0 -0.32106945e-01 0.36463080e-01 0.32408978e+00 0.13957000e+00
- 1 211 0 0 -0.48561349e+00 0.56426815e-01 0.37746458e+00 0.13957000e+00
- 2 111 506 507 -0.65341548e+00 0.47395194e+00 0.87088027e+00 0.13498000e+00
- 2 111 508 509 -0.15716416e+00 -0.47612017e-01 -0.86782826e-01 0.13498000e+00
- 2 111 510 511 -0.39416494e+00 -0.19354369e+00 0.73417665e-01 0.13498000e+00
- 2 111 512 513 -0.53812308e+00 -0.93584001e-01 -0.13174323e+00 0.13498000e+00
- 1 211 0 0 -0.13560073e+00 -0.19084100e+00 0.23783412e-01 0.13957000e+00
- 1 -211 0 0 0.15086535e+00 0.61546627e+00 -0.32730839e+00 0.13957000e+00
- 1 -211 0 0 0.27605538e+00 -0.86893517e-01 -0.87940908e+00 0.13957000e+00
- 1 211 0 0 -0.46883196e-01 0.29026388e+00 -0.83152524e+00 0.13957000e+00
- 2 111 514 515 -0.64535158e-01 0.50980948e-01 -0.18927825e+00 0.13498000e+00
- 1 -211 0 0 -0.45452932e+00 -0.59422340e-01 -0.10820743e+00 0.13957000e+00
- 2 111 516 517 -0.15849901e+00 0.28079900e+00 -0.71494706e+00 0.13498000e+00
- 1 22 0 0 -0.58794645e+00 -0.24447595e+00 -0.14362746e+01 0.00000000e+00
- 1 22 0 0 -0.24446861e+00 -0.42554254e-01 -0.41928045e+00 0.00000000e+00
- 1 -211 0 0 -0.19980266e+00 -0.75458826e-03 -0.17989727e+01 0.13957000e+00
- 1 211 0 0 0.18141049e+00 0.88586655e+00 -0.50459771e+01 0.13957000e+00
- 1 -211 0 0 -0.39355813e-01 0.29050125e+00 -0.65800397e+01 0.13957000e+00
- 1 211 0 0 0.79950962e-02 0.17210285e+00 -0.25581568e+01 0.13957000e+00
- 2 111 518 519 -0.97250190e-01 -0.13424083e+00 -0.83934758e+01 0.13498000e+00
- 1 22 0 0 0.39937606e+00 -0.59093761e+00 -0.41939617e+02 0.00000000e+00
- 1 22 0 0 0.75169853e-01 -0.71596039e-01 -0.39175752e+01 0.00000000e+00
- 1 22 0 0 0.41216218e-01 -0.71944393e-01 -0.21638426e+01 0.00000000e+00
- 1 22 0 0 0.15762826e+00 -0.33598346e+00 -0.20460696e+02 0.00000000e+00
- 1 211 0 0 -0.56589968e-01 -0.81016098e-01 -0.23105361e+01 0.13957000e+00
- 2 111 520 521 0.38940123e-01 0.31980783e+00 -0.26581562e+02 0.13498000e+00
- 1 -211 0 0 -0.77010602e-01 0.48100010e-01 -0.12247046e+02 0.13957000e+00
- 1 211 0 0 0.95227637e+00 -0.16227058e+00 -0.28436519e+02 0.13957000e+00
- 2 311 522 522 0.31829271e+00 -0.50052405e+00 -0.34244113e+02 0.49767000e+00
- 2 111 523 524 0.29662285e+00 -0.22578531e+00 -0.46483254e+02 0.13498000e+00
- 2 3122 525 526 0.79515281e+00 -0.46012201e+00 -0.49680333e+02 0.11156800e+01
- 1 -211 0 0 0.33858719e+00 -0.38099114e+00 -0.19067625e+02 0.13957000e+00
- 1 -2212 0 0 0.10953127e+01 -0.14051940e+00 -0.33058011e+02 0.93827000e+00
- 2 111 527 528 0.10442222e+00 -0.26683910e+00 -0.14953697e+02 0.13498000e+00
- 2 111 529 530 0.86683160e-01 -0.11916038e+00 -0.57222379e+01 0.13498000e+00
- 2 111 531 532 0.49050254e-01 0.26287370e-01 -0.14851134e+01 0.13498000e+00
- 2 111 533 534 0.15442804e+00 0.54265478e-01 -0.23841634e+01 0.13498000e+00
- 1 -211 0 0 0.25774996e+00 0.28497237e+00 -0.22972021e+01 0.13957000e+00
- 1 211 0 0 0.29553351e-02 -0.34896171e+00 -0.34715495e+01 0.13957000e+00
- 1 -211 0 0 -0.42448196e+00 -0.11049420e+00 -0.30060164e+00 0.13957000e+00
- 1 211 0 0 0.53982758e-02 0.31751896e+00 0.58806605e-01 0.13957000e+00
- 1 321 0 0 0.31907186e+00 -0.76131739e+00 0.92156592e+00 0.49360000e+00
- 2 111 535 536 0.15482204e+00 0.16546931e+00 0.35349259e+00 0.13498000e+00
- 1 22 0 0 0.15996619e-02 -0.40231686e-01 0.83088851e+02 0.00000000e+00
- 1 22 0 0 0.80161658e-01 -0.11938848e+00 0.64034139e+02 0.00000000e+00
- 1 22 0 0 0.14764889e+00 -0.47165632e-01 0.98325646e+02 0.00000000e+00
- 1 22 0 0 0.19267429e+00 -0.12597935e+00 0.27986046e+03 0.00000000e+00
- 1 22 0 0 0.63665559e-01 0.10498905e+00 0.23442742e+01 0.00000000e+00
- 1 22 0 0 0.18973555e+00 0.27437046e-01 0.29598168e+01 0.00000000e+00
- 1 22 0 0 0.12184823e+00 0.41922057e-01 0.21877248e+01 0.00000000e+00
- 1 22 0 0 0.98441406e-02 -0.58645220e-01 0.12598494e+01 0.00000000e+00
- 1 22 0 0 0.72223168e-01 -0.33098730e-02 0.32026774e+00 0.00000000e+00
- 1 22 0 0 0.23867461e+00 -0.11620904e+00 0.46908647e+00 0.00000000e+00
- 1 22 0 0 0.20855021e-01 -0.15168773e-01 0.33049794e-01 0.00000000e+00
- 1 22 0 0 -0.15432536e+00 -0.47807395e+00 0.79284574e+00 0.00000000e+00
- 1 22 0 0 0.65669909e-01 -0.29005671e+00 0.16851453e+00 0.00000000e+00
- 1 22 0 0 -0.11952557e-01 -0.43096683e-02 0.52244538e-01 0.00000000e+00
- 1 -211 0 0 -0.10109764e+00 -0.11776862e+01 0.12144831e+00 0.13957000e+00
- 1 211 0 0 -0.71340251e-01 -0.28431294e+00 -0.15049073e+00 0.13957000e+00
- 2 310 537 538 -0.62345886e+00 0.24874811e+00 -0.29178736e+01 0.49767000e+00
- 1 22 0 0 -0.75410049e-01 -0.13874462e+00 -0.22077214e+00 0.00000000e+00
- 1 22 0 0 0.32404410e-01 -0.35577761e-02 -0.92222552e-02 0.00000000e+00
- 1 -211 0 0 -0.55390111e-01 -0.95218547e-02 -0.21744460e+01 0.13957000e+00
- 1 211 0 0 0.33317299e-01 -0.62940909e+00 -0.57656474e+01 0.13957000e+00
- 1 22 0 0 -0.43288420e-01 -0.37652182e-01 -0.30088023e+00 0.00000000e+00
- 1 22 0 0 -0.61605129e+00 -0.96720262e-01 -0.20632740e+01 0.00000000e+00
- 1 22 0 0 -0.30373924e+00 -0.69885015e-01 -0.21450073e+01 0.00000000e+00
- 1 22 0 0 -0.32525278e-01 0.28855191e-01 -0.14676747e+00 0.00000000e+00
- 1 22 0 0 -0.37401695e-01 -0.95946144e-01 -0.85336115e+00 0.00000000e+00
- 1 22 0 0 -0.37935939e+00 -0.32983682e+00 -0.59141578e+01 0.00000000e+00
- 1 22 0 0 0.45096381e-01 -0.88761092e-02 -0.74243449e+00 0.00000000e+00
- 1 22 0 0 -0.85565281e-01 -0.16859042e-01 -0.31726713e+01 0.00000000e+00
- 1 130 0 0 -0.23593734e+00 -0.26166935e+00 -0.13646852e+03 0.49767000e+00
- 1 2212 0 0 -0.25037502e-01 -0.80585413e-01 0.15613759e+03 0.93827000e+00
- 1 -211 0 0 -0.47768854e-01 -0.99242063e-01 0.44328011e+02 0.13957000e+00
- 2 -3122 539 540 0.68112313e+00 0.14758902e+00 0.76144480e+03 0.11156800e+01
- 1 211 0 0 -0.40547667e-02 -0.15769092e-01 0.39358988e+02 0.13957000e+00
- 1 22 0 0 -0.16243020e+00 0.15521505e+00 0.34936846e+02 0.00000000e+00
- 1 22 0 0 -0.37859461e+00 0.18401841e+00 0.47988532e+02 0.00000000e+00
- 2 310 541 542 -0.46374370e+00 -0.82102413e-01 0.42891727e+02 0.49767000e+00
- 1 22 0 0 -0.22931213e-01 -0.58780707e-01 0.91050761e+01 0.00000000e+00
- 1 22 0 0 0.14625880e+00 -0.15449023e+00 0.19475979e+02 0.00000000e+00
- 2 111 543 544 0.12963231e+00 0.89086272e-01 0.14220975e+02 0.13498000e+00
- 2 111 545 546 -0.25658133e+00 0.34694947e+00 0.19823530e+02 0.13498000e+00
- 1 22 0 0 -0.10862332e+01 -0.88923068e+00 0.22335793e+02 0.00000000e+00
- 1 22 0 0 -0.95218349e-01 -0.90583750e-01 0.15414337e+01 0.00000000e+00
- 1 22 0 0 0.24694554e-02 0.16840750e+00 0.51556708e+01 0.00000000e+00
- 1 22 0 0 -0.66252010e-01 0.19840132e-01 0.29445376e+01 0.00000000e+00
- 1 22 0 0 0.20162672e+00 0.17658933e+00 0.41647739e+00 0.00000000e+00
- 1 22 0 0 -0.10819034e-02 -0.76938449e-02 -0.62383339e-02 0.00000000e+00
- 1 22 0 0 0.24199135e-02 -0.34729721e-01 -0.25205591e-01 0.00000000e+00
- 1 22 0 0 0.86874193e-01 0.76186801e-01 -0.32765268e+00 0.00000000e+00
- 1 22 0 0 -0.43407555e-01 0.24347134e-01 -0.23087114e+00 0.00000000e+00
- 1 22 0 0 -0.36954673e+00 0.99668396e-01 -0.66907346e+00 0.00000000e+00
- 1 211 0 0 0.17559377e+00 0.16909505e+00 -0.28475500e-01 0.13957000e+00
- 1 -211 0 0 -0.22345791e+00 0.71066159e-01 -0.58719835e-01 0.13957000e+00
- 1 22 0 0 -0.12382676e+00 -0.20174766e-01 -0.14759924e+00 0.00000000e+00
- 1 22 0 0 0.29132996e-02 -0.59212120e-01 -0.17446824e+00 0.00000000e+00
- 1 22 0 0 0.67694619e+00 -0.27421032e+00 -0.21496105e+01 0.00000000e+00
- 1 22 0 0 0.29821794e+00 -0.28577917e-01 -0.89267269e+00 0.00000000e+00
- 1 22 0 0 0.38113906e+00 0.18331063e+00 -0.18127811e+01 0.00000000e+00
- 1 22 0 0 0.19286526e+00 0.14350090e-01 -0.61396330e+00 0.00000000e+00
- 1 22 0 0 -0.80544964e-01 -0.58112772e-01 -0.40105025e+00 0.00000000e+00
- 1 22 0 0 0.96843648e-02 0.26324997e-01 -0.53626348e+00 0.00000000e+00
- 1 22 0 0 0.24741657e-01 0.12031586e-01 -0.73586072e+00 0.00000000e+00
- 1 22 0 0 0.13227533e-01 0.59677070e+00 -0.18623191e+02 0.00000000e+00
- 1 -211 0 0 0.32353694e+00 0.60050388e-01 -0.72496484e+02 0.13957000e+00
- 1 211 0 0 -0.90199220e-01 0.20593947e-01 -0.16404642e+02 0.13957000e+00
- 1 22 0 0 -0.10880160e+00 0.38576874e+00 -0.64247817e+03 0.00000000e+00
- 1 22 0 0 -0.38070818e-01 0.13261768e+00 -0.12552797e+03 0.00000000e+00
- 1 22 0 0 0.98137894e-01 -0.13716088e+00 0.47955244e+01 0.00000000e+00
- 1 22 0 0 0.73112526e-01 -0.40400160e+00 0.89499402e+01 0.00000000e+00
- 1 22 0 0 -0.52708684e-01 0.14942529e-01 0.32940471e+02 0.00000000e+00
- 1 22 0 0 -0.47749981e+00 -0.84896000e-01 0.14731062e+03 0.00000000e+00
- 1 22 0 0 0.34044532e-01 0.17308677e+00 0.23683409e+02 0.00000000e+00
- 1 22 0 0 -0.51533772e-01 0.30631955e-01 0.14926568e+02 0.00000000e+00
- 1 22 0 0 -0.17426181e+00 -0.36580991e+00 0.50756187e+02 0.00000000e+00
- 1 22 0 0 -0.83362449e-02 0.12311264e-01 0.16737169e+01 0.00000000e+00
- 1 22 0 0 -0.24501586e-01 0.18173165e-01 0.47967856e+01 0.00000000e+00
- 1 22 0 0 -0.19080132e+00 0.45949202e+00 0.31043124e+02 0.00000000e+00
- 1 2212 0 0 0.24526076e-01 -0.34000292e+00 0.10236141e+02 0.93827000e+00
- 1 -211 0 0 -0.33975276e-01 -0.35379396e-01 0.75974757e+00 0.13957000e+00
- 2 310 547 548 -0.60066393e+00 -0.10661123e+01 0.31246843e+01 0.49767000e+00
- 2 310 549 550 -0.58244379e+00 -0.51618010e-01 0.93545517e+00 0.49767000e+00
- 1 22 0 0 0.48277566e-01 0.39316658e+00 0.94520708e+00 0.00000000e+00
- 1 22 0 0 -0.87452355e-01 0.47625944e+00 0.12306249e+01 0.00000000e+00
- 1 22 0 0 0.33793843e-01 0.11360190e+00 0.37627314e+00 0.00000000e+00
- 1 22 0 0 0.58451818e-01 -0.74768999e-02 0.64035537e-01 0.00000000e+00
- 1 130 0 0 0.65447324e+00 0.10103157e+01 0.23575857e+01 0.49767000e+00
- 1 -211 0 0 -0.34415042e-02 0.66587593e-01 0.48730962e-01 0.13957000e+00
- 1 211 0 0 -0.81217994e-01 0.33944376e+00 0.10263147e+01 0.13957000e+00
- 1 22 0 0 -0.84767836e-01 -0.38500262e-02 0.12449848e+01 0.00000000e+00
- 1 22 0 0 -0.80679420e+00 0.38746670e+00 0.13673098e+02 0.00000000e+00
- 1 22 0 0 -0.71311738e-01 0.15617371e+00 0.16307160e+01 0.00000000e+00
- 1 22 0 0 -0.40591403e+00 0.43534234e+00 0.74430019e+01 0.00000000e+00
- 1 22 0 0 -0.84890433e-01 0.98846834e-01 0.43802636e+00 0.00000000e+00
- 1 22 0 0 -0.41025525e+00 0.34898167e+00 0.29663956e+01 0.00000000e+00
- 1 22 0 0 -0.24452361e+00 0.21036451e+00 0.26090506e+00 0.00000000e+00
- 1 22 0 0 -0.40889188e+00 0.26358743e+00 0.60997522e+00 0.00000000e+00
- 1 22 0 0 0.16146635e-01 0.19419942e-01 -0.19405256e-02 0.00000000e+00
- 1 22 0 0 -0.17331080e+00 -0.67031959e-01 -0.84842301e-01 0.00000000e+00
- 1 22 0 0 -0.20934667e+00 -0.13939810e+00 0.10029842e+00 0.00000000e+00
- 1 22 0 0 -0.18481828e+00 -0.54145588e-01 -0.26880757e-01 0.00000000e+00
- 1 22 0 0 -0.37639797e+00 -0.99614748e-01 -0.38957689e-01 0.00000000e+00
- 1 22 0 0 -0.16172510e+00 0.60307465e-02 -0.92785544e-01 0.00000000e+00
- 1 22 0 0 -0.10039555e+00 0.63031796e-01 -0.15790120e+00 0.00000000e+00
- 1 22 0 0 0.35860394e-01 -0.12050848e-01 -0.31377050e-01 0.00000000e+00
- 1 22 0 0 -0.67467586e-01 0.31717708e-01 -0.24644571e+00 0.00000000e+00
- 1 22 0 0 -0.91031427e-01 0.24908129e+00 -0.46850135e+00 0.00000000e+00
- 1 22 0 0 -0.10997286e+00 -0.92277832e-01 -0.41264024e+01 0.00000000e+00
- 1 22 0 0 0.12722674e-01 -0.41962994e-01 -0.42670734e+01 0.00000000e+00
- 1 22 0 0 0.88242208e-01 0.17463168e+00 -0.15468532e+02 0.00000000e+00
- 1 22 0 0 -0.49302086e-01 0.14517616e+00 -0.11113029e+02 0.00000000e+00
- 2 310 551 552 0.31829271e+00 -0.50052405e+00 -0.34244113e+02 0.49767000e+00
- 1 22 0 0 0.27521709e+00 -0.15568493e+00 -0.33801975e+02 0.00000000e+00
- 1 22 0 0 0.21405760e-01 -0.70100385e-01 -0.12681280e+02 0.00000000e+00
- 1 2212 0 0 0.63840984e+00 -0.35087253e+00 -0.37795058e+02 0.93827000e+00
- 1 -211 0 0 0.15674298e+00 -0.10924948e+00 -0.11885275e+02 0.13957000e+00
- 1 22 0 0 0.65339845e-01 -0.19580443e+00 -0.72797736e+01 0.00000000e+00
- 1 22 0 0 0.39082375e-01 -0.71034667e-01 -0.76739230e+01 0.00000000e+00
- 1 22 0 0 0.15022177e-01 -0.91090086e-01 -0.45641893e+01 0.00000000e+00
- 1 22 0 0 0.71660983e-01 -0.28070294e-01 -0.11580486e+01 0.00000000e+00
- 1 22 0 0 -0.49621669e-02 -0.15733283e-01 -0.11561138e+01 0.00000000e+00
- 1 22 0 0 0.54012421e-01 0.42020653e-01 -0.32899960e+00 0.00000000e+00
- 1 22 0 0 0.14891937e+00 0.72449327e-01 -0.23351870e+01 0.00000000e+00
- 1 22 0 0 0.55086713e-02 -0.18183849e-01 -0.48976456e-01 0.00000000e+00
- 1 22 0 0 0.13221696e+00 0.12587452e+00 0.35070557e+00 0.00000000e+00
- 1 22 0 0 0.22605080e-01 0.39594792e-01 0.27870192e-02 0.00000000e+00
- 2 111 553 554 -0.12285054e+00 0.16206548e+00 -0.45008213e+00 0.13498000e+00
- 2 111 555 556 -0.50060832e+00 0.86682627e-01 -0.24677915e+01 0.13498000e+00
- 1 -2212 0 0 0.65023506e+00 0.77441050e-01 0.69725957e+03 0.93827000e+00
- 1 211 0 0 0.30888071e-01 0.70147974e-01 0.64185231e+02 0.13957000e+00
- 1 -211 0 0 -0.17358620e+00 -0.10827765e+00 0.31278065e+02 0.13957000e+00
- 1 211 0 0 -0.29015751e+00 0.26175236e-01 0.11613662e+02 0.13957000e+00
- 1 22 0 0 0.14545064e+00 0.37579867e-01 0.11460794e+02 0.00000000e+00
- 1 22 0 0 -0.15818332e-01 0.51506405e-01 0.27601806e+01 0.00000000e+00
- 1 22 0 0 -0.18768093e+00 0.33065882e+00 0.17187840e+02 0.00000000e+00
- 1 22 0 0 -0.68900405e-01 0.16290659e-01 0.26356896e+01 0.00000000e+00
- 2 111 557 558 -0.18307344e+00 -0.50982517e+00 0.91416591e+00 0.13498000e+00
- 2 111 559 560 -0.41759049e+00 -0.55628709e+00 0.22105184e+01 0.13498000e+00
- 2 111 561 562 -0.25772964e+00 0.12898814e+00 0.64642920e+00 0.13498000e+00
- 2 111 563 564 -0.32471415e+00 -0.18060615e+00 0.28902597e+00 0.13498000e+00
- 1 211 0 0 -0.29248369e-01 0.46606715e-02 -0.52895995e+01 0.13957000e+00
- 1 -211 0 0 0.34754108e+00 -0.50518472e+00 -0.28954513e+02 0.13957000e+00
- 1 22 0 0 0.23229829e-02 -0.12214696e-01 -0.10443680e+00 0.00000000e+00
- 1 22 0 0 -0.12517352e+00 0.17428018e+00 -0.34564533e+00 0.00000000e+00
- 1 22 0 0 -0.28096554e+00 0.10573599e+00 -0.12474823e+01 0.00000000e+00
- 1 22 0 0 -0.21964278e+00 -0.19053365e-01 -0.12203092e+01 0.00000000e+00
- 1 22 0 0 -0.11579216e+00 -0.45690403e+00 0.74562579e+00 0.00000000e+00
- 1 22 0 0 -0.67281283e-01 -0.52921137e-01 0.16854012e+00 0.00000000e+00
- 1 22 0 0 -0.50686260e-01 -0.12863151e+00 0.31982196e+00 0.00000000e+00
- 1 22 0 0 -0.36690423e+00 -0.42765558e+00 0.18906964e+01 0.00000000e+00
- 1 22 0 0 -0.17793296e-01 -0.23817722e-01 0.10216978e+00 0.00000000e+00
- 1 22 0 0 -0.23993634e+00 0.15280586e+00 0.54425942e+00 0.00000000e+00
- 1 22 0 0 -0.14627213e+00 -0.42307581e-01 0.18919615e+00 0.00000000e+00
- 1 22 0 0 -0.17844202e+00 -0.13829857e+00 0.99829822e-01 0.00000000e+00
- 220
- 2 25 2 3 -0.17797030e+01 0.36117181e+01 0.82412833e+02 0.12500021e+03
- 2 23 4 6 0.87015830e+01 -0.82749549e+01 0.20786395e+02 0.31194920e+02
- 2 23 7 11 -0.10481286e+02 0.11886673e+02 0.61626438e+02 0.90235430e+02
- 1 -11 0 0 -0.63729012e+00 -0.42086615e+01 -0.78699543e+01 0.51000000e-03
- 1 11 0 0 0.72270567e+01 -0.30506579e+01 0.21684505e+02 0.51000000e-03
- 1 22 0 0 0.21118164e+01 -0.10156356e+01 0.69718451e+01 0.00000000e+00
- 1 13 0 0 0.30430374e+01 0.30490687e+02 0.76878058e+02 0.10566000e+00
- 1 22 0 0 -0.66457480e-04 0.72503507e-03 0.12727050e-02 0.00000000e+00
- 1 22 0 0 0.51012397e-01 -0.73373473e-01 -0.98784349e-01 0.00000000e+00
- 1 -13 0 0 -0.13575249e+02 -0.18531221e+02 -0.15154120e+02 0.10566000e+00
- 1 22 0 0 -0.20607382e-04 -0.14460873e-03 0.11017042e-04 0.00000000e+00
- 2 1 32 32 -0.86093096e+00 -0.77335055e+00 0.45039394e+03 0.33000000e+00
- 2 21 32 32 -0.98917418e+00 -0.44178470e-01 0.29568003e+01 0.00000000e+00
- 2 21 32 32 -0.90778291e+00 -0.89875346e+00 0.20720300e+01 0.00000000e+00
- 2 21 32 32 -0.14257048e+01 -0.22658102e+01 0.31102397e+01 0.00000000e+00
- 2 21 32 32 -0.57357103e+00 0.58431771e+00 0.12628666e+01 0.00000000e+00
- 2 21 32 32 0.10810811e+01 -0.24758773e+00 -0.81975351e+01 0.00000000e+00
- 2 21 32 32 0.88349841e-01 -0.17296599e+01 -0.51455077e+03 0.00000000e+00
- 2 21 32 32 -0.88349841e-01 0.17296599e+01 -0.14808992e+03 0.00000000e+00
- 2 21 32 32 0.41291183e+00 -0.26320019e+01 -0.11918555e+01 0.00000000e+00
- 2 21 32 32 0.14066506e+01 0.20371395e+00 -0.61961927e-01 0.00000000e+00
- 2 21 32 32 0.30607650e+01 -0.88058356e+00 -0.13148775e+01 0.00000000e+00
- 2 21 32 32 0.16330610e+00 -0.17652850e+01 -0.38604856e+01 0.00000000e+00
- 2 21 32 32 0.53302802e+00 0.33885685e+01 -0.18008540e+01 0.00000000e+00
- 2 21 32 32 -0.59328114e+00 0.64580871e+00 -0.16000284e+01 0.00000000e+00
- 2 2203 32 32 0.91373150e-01 -0.38572427e+00 -0.62282545e+04 0.77133000e+00
- 2 2203 83 83 0.12807707e+01 0.23231002e+01 0.63815356e+04 0.77133000e+00
- 2 21 83 83 0.78647591e+00 -0.96724280e+00 0.36583373e+02 0.00000000e+00
- 2 21 83 83 -0.78647591e+00 0.96724280e+00 0.71158789e+00 0.00000000e+00
- 2 21 83 83 -0.10810811e+01 0.24758773e+00 -0.15085970e+02 0.00000000e+00
- 2 1 83 83 0.18134253e+00 -0.11115397e+01 -0.37030479e+02 0.33000000e+00
- 2 92 33 82 0.13986708e+01 -0.50708664e+01 -0.64491269e+04 0.35847690e+04
- 1 -211 0 0 -0.20386743e+00 -0.41891475e+00 0.23896609e+03 0.13957000e+00
- 1 211 0 0 -0.10716865e+01 -0.25121236e+00 0.98271735e+02 0.13957000e+00
- 2 -213 99 100 0.67456106e+00 -0.23697943e+00 0.88745750e+02 0.64565849e+00
- 2 111 101 102 -0.74985872e+00 0.72604721e+00 0.13794123e+02 0.13498000e+00
- 2 223 103 105 -0.92166974e+00 -0.47456449e+00 0.69354198e+01 0.77735556e+00
- 1 211 0 0 -0.60761842e-02 -0.96691119e+00 0.51982291e+01 0.13957000e+00
- 2 111 106 107 0.12560231e+00 0.15370279e+00 0.89612175e-02 0.13498000e+00
- 2 -213 108 109 -0.98661752e+00 -0.12425410e-01 0.31226507e+01 0.72628219e+00
- 1 211 0 0 -0.11066515e+00 -0.75550118e+00 0.11177114e+01 0.13957000e+00
- 2 221 110 112 -0.46743847e+00 -0.54759480e+00 0.15779120e+01 0.54745000e+00
- 2 3112 113 114 -0.17656606e+00 -0.84292651e+00 0.67434699e+00 0.11974400e+01
- 2 -3112 115 116 -0.90821005e+00 0.94335812e-01 -0.15232548e+00 0.11974400e+01
- 1 -211 0 0 0.88689718e-01 0.26742290e-01 0.22473986e+00 0.13957000e+00
- 1 211 0 0 0.10194566e+00 -0.22181870e+00 -0.77583989e+00 0.13957000e+00
- 1 -211 0 0 0.98052473e-01 -0.12100805e+00 -0.13685393e+01 0.13957000e+00
- 2 111 117 118 0.51214532e+00 0.22758042e+00 -0.13499373e+01 0.13498000e+00
- 2 213 119 120 -0.33593966e+00 0.39852677e+00 -0.32206175e+01 0.39718063e+00
- 1 2112 0 0 0.46564774e+00 -0.35742258e+00 -0.35774910e+01 0.93957000e+00
- 1 -2112 0 0 -0.84183495e-01 -0.24027582e+00 -0.89757024e+01 0.93957000e+00
- 1 -211 0 0 0.22865806e+00 0.47653218e+00 -0.16518458e+01 0.13957000e+00
- 1 211 0 0 0.16585952e+00 -0.61825368e+00 -0.21607745e+02 0.13957000e+00
- 1 -211 0 0 -0.63841926e+00 -0.44104487e+00 -0.27049755e+02 0.13957000e+00
- 2 323 121 122 0.32791962e+00 0.74429522e+00 -0.21626464e+03 0.99472220e+00
- 1 -321 0 0 0.20512222e+00 -0.43259036e+00 -0.20746587e+03 0.49360000e+00
- 2 113 123 124 -0.23950797e+00 -0.73285931e+00 -0.87101570e+02 0.70334946e+00
- 2 213 125 126 0.45133050e+00 0.11598161e+01 -0.80438968e+02 0.59233057e+00
- 2 -213 127 128 -0.39946340e+00 -0.45171957e+00 -0.24841748e+01 0.81934348e+00
- 1 211 0 0 -0.59369293e-01 -0.39988735e+00 -0.44093937e+01 0.13957000e+00
- 2 113 129 130 0.56678681e+00 -0.33024862e+00 -0.27922629e+00 0.78046377e+00
- 2 311 131 131 0.71442370e+00 0.29297508e-01 -0.57278962e+00 0.49767000e+00
- 2 -313 132 133 0.29329696e+00 -0.31981151e+00 -0.83646442e+00 0.89806374e+00
- 2 -213 134 135 0.10779331e+01 -0.24804102e+00 -0.10156228e+01 0.74806251e+00
- 2 213 136 137 0.15842787e+00 -0.13634346e+01 -0.19808962e+01 0.80202179e+00
- 1 -211 0 0 -0.15504582e+00 0.37693646e-01 0.74527633e-01 0.13957000e+00
- 2 223 138 140 0.80514834e+00 -0.73596850e+00 -0.61241927e+00 0.78235204e+00
- 2 113 141 142 0.11818954e+01 0.38287027e+00 -0.85657469e+00 0.63748563e+00
- 2 113 143 144 0.61926726e+00 -0.12253342e+01 -0.16145854e+01 0.72636510e+00
- 2 331 145 146 0.35818300e+00 0.14436231e+01 -0.13975584e+01 0.95775509e+00
- 2 223 147 149 -0.19501353e+00 0.12064917e+01 -0.54756565e+00 0.78448510e+00
- 2 213 150 151 0.76786736e-01 0.43984344e+00 -0.27360816e+01 0.77708304e+00
- 2 113 152 153 -0.65818229e-01 -0.12646965e+00 -0.10657291e+02 0.78488934e+00
- 1 -211 0 0 -0.12986266e+00 -0.95318904e-01 -0.28212538e+01 0.13957000e+00
- 2 223 154 156 0.10770799e+00 0.38541527e+00 -0.92923911e+01 0.78077902e+00
- 2 213 157 158 -0.45354145e+00 0.60148519e+00 -0.84335277e+01 0.65824818e+00
- 2 111 159 160 0.41721299e+00 -0.33693293e+00 -0.11228954e+02 0.13498000e+00
- 1 -211 0 0 0.62792647e-01 -0.17157923e-01 -0.10993208e+02 0.13957000e+00
- 1 211 0 0 -0.16132323e-01 -0.14303395e+00 -0.89935404e+01 0.13957000e+00
- 1 -211 0 0 -0.60413532e-01 0.48882837e+00 -0.16920061e+02 0.13957000e+00
- 2 2224 161 162 -0.45525912e+00 -0.39760165e+00 -0.30997345e+04 0.11830002e+01
- 2 113 163 164 0.40389924e+00 -0.23072982e+00 -0.30484202e+04 0.72181849e+00
- 2 92 84 98 0.38103217e+00 0.14591482e+01 0.63667141e+04 0.11612592e+04
- 1 211 0 0 -0.91303303e-01 0.30562091e+00 0.75090530e+03 0.13957000e+00
- 1 2212 0 0 0.14109247e+01 0.17664091e+01 0.55677554e+04 0.93827000e+00
- 1 -211 0 0 -0.28503008e+00 0.99362395e-01 0.35991467e+02 0.13957000e+00
- 1 211 0 0 0.32688587e+00 -0.63519391e+00 0.27062155e+02 0.13957000e+00
- 1 -211 0 0 0.61384727e+00 0.50262237e+00 0.25562575e+02 0.13957000e+00
- 2 223 165 167 -0.61479792e+00 -0.52365261e+00 0.71228100e+01 0.77751303e+00
- 1 211 0 0 -0.14429765e+00 0.36573400e+00 0.33401490e+01 0.13957000e+00
- 1 -211 0 0 0.76084680e+00 0.97865753e-01 0.26912756e+00 0.13957000e+00
- 1 211 0 0 -0.74928401e+00 0.16853083e+00 -0.41247543e+00 0.13957000e+00
- 2 -323 168 169 0.59349271e-01 -0.40957345e+00 -0.19572670e+00 0.88736697e+00
- 2 323 170 171 -0.12642157e+00 0.67097992e+00 -0.26409783e+01 0.75548634e+00
- 2 -213 172 173 -0.25167832e+00 0.46178067e+00 -0.29753435e+01 0.88799560e+00
- 1 -2112 0 0 0.29356150e+00 -0.69178623e+00 -0.10328905e+02 0.93957000e+00
- 2 111 174 175 -0.67448134e+00 -0.29478378e+00 -0.11359023e+02 0.13498000e+00
- 1 2112 0 0 -0.14708910e+00 -0.42476771e+00 -0.23382376e+02 0.93957000e+00
- 1 -211 0 0 -0.74645033e-01 -0.17216117e-01 0.10348999e+02 0.13957000e+00
- 2 111 176 177 0.74920610e+00 -0.21976331e+00 0.78396751e+02 0.13498000e+00
- 1 22 0 0 -0.73462830e-01 0.13074205e+00 0.17292639e+01 0.00000000e+00
- 1 22 0 0 -0.67639589e+00 0.59530516e+00 0.12064859e+02 0.00000000e+00
- 1 -211 0 0 -0.41218257e+00 -0.10554463e-01 0.17798390e+01 0.13957000e+00
- 1 211 0 0 -0.35028136e+00 -0.31321101e+00 0.20883526e+01 0.13957000e+00
- 2 111 178 179 -0.15920582e+00 -0.15079901e+00 0.30672283e+01 0.13498000e+00
- 1 22 0 0 0.38698283e-01 0.37399592e-01 0.65173710e-01 0.00000000e+00
- 1 22 0 0 0.86904022e-01 0.11630320e+00 -0.56212492e-01 0.00000000e+00
- 1 -211 0 0 -0.59713838e+00 -0.28785011e+00 0.13049671e+01 0.13957000e+00
- 2 111 180 181 -0.38947915e+00 0.27542470e+00 0.18176836e+01 0.13498000e+00
- 1 211 0 0 -0.19717252e+00 -0.19470999e+00 0.54312292e+00 0.13957000e+00
- 1 -211 0 0 -0.10650176e+00 -0.30777335e+00 0.79199771e+00 0.13957000e+00
- 2 111 182 183 -0.16376419e+00 -0.45111454e-01 0.24279134e+00 0.13498000e+00
- 1 2112 0 0 -0.29705875e+00 -0.68411219e+00 0.42306419e+00 0.93957000e+00
- 1 -211 0 0 0.12049268e+00 -0.15881433e+00 0.25128280e+00 0.13957000e+00
- 1 -2112 0 0 -0.86939948e+00 0.66668637e-01 -0.28728281e+00 0.93957000e+00
- 1 211 0 0 -0.38810576e-01 0.27667175e-01 0.13495733e+00 0.13957000e+00
- 1 22 0 0 0.33368894e+00 0.78955280e-01 -0.85287028e+00 0.00000000e+00
- 1 22 0 0 0.17845639e+00 0.14862514e+00 -0.49706698e+00 0.00000000e+00
- 1 211 0 0 -0.10932518e+00 0.32525613e+00 -0.15457367e+01 0.13957000e+00
- 2 111 184 185 -0.22661448e+00 0.73270635e-01 -0.16748808e+01 0.13498000e+00
- 1 321 0 0 0.20887455e+00 0.40397841e+00 -0.67889664e+02 0.49360000e+00
- 2 111 186 187 0.11904507e+00 0.34031680e+00 -0.14837498e+03 0.13498000e+00
- 1 211 0 0 -0.22725885e+00 -0.83059501e+00 -0.73742837e+02 0.13957000e+00
- 1 -211 0 0 -0.12249124e-01 0.97735698e-01 -0.13358733e+02 0.13957000e+00
- 1 211 0 0 -0.71861254e-02 0.20075623e-01 -0.93272004e+01 0.13957000e+00
- 2 111 188 189 0.45851662e+00 0.11397405e+01 -0.71111768e+02 0.13498000e+00
- 1 -211 0 0 0.18975727e+00 0.99425489e-02 -0.84656840e+00 0.13957000e+00
- 2 111 190 191 -0.58922066e+00 -0.46166211e+00 -0.16376064e+01 0.13498000e+00
- 1 211 0 0 -0.10765698e+00 0.94472566e-01 0.32752312e-02 0.13957000e+00
- 1 -211 0 0 0.67444379e+00 -0.42472118e+00 -0.28250152e+00 0.13957000e+00
- 1 130 0 0 0.71442370e+00 0.29297508e-01 -0.57278962e+00 0.49767000e+00
- 2 -311 192 192 -0.80514582e-01 -0.20402223e+00 -0.65054657e+00 0.49767000e+00
- 2 111 193 194 0.37381155e+00 -0.11578928e+00 -0.18591786e+00 0.13498000e+00
- 1 -211 0 0 0.93230185e+00 -0.21577545e+00 -0.42983159e+00 0.13957000e+00
- 2 111 195 196 0.14563129e+00 -0.32265563e-01 -0.58579123e+00 0.13498000e+00
- 1 211 0 0 0.33130894e-01 -0.15224741e-01 -0.53636508e+00 0.13957000e+00
- 2 111 197 198 0.12529698e+00 -0.13482099e+01 -0.14445311e+01 0.13498000e+00
- 1 -211 0 0 0.11777729e+00 -0.46739632e+00 -0.17526848e+00 0.13957000e+00
- 1 211 0 0 0.23288249e+00 0.24708606e-01 -0.19997103e+00 0.13957000e+00
- 2 111 199 200 0.45448856e+00 -0.29328079e+00 -0.23717977e+00 0.13498000e+00
- 1 -211 0 0 0.64828559e+00 0.46799993e+00 -0.66112583e+00 0.13957000e+00
- 1 211 0 0 0.53360985e+00 -0.85129657e-01 -0.19544886e+00 0.13957000e+00
- 1 211 0 0 0.85917010e-01 0.51849402e-02 -0.42726906e-01 0.13957000e+00
- 1 -211 0 0 0.53335025e+00 -0.12305191e+01 -0.15718585e+01 0.13957000e+00
- 1 22 0 0 0.90196464e-01 0.14971293e+00 -0.12835551e+00 0.00000000e+00
- 2 113 201 202 0.26798654e+00 0.12939101e+01 -0.12692029e+01 0.89171129e+00
- 1 -211 0 0 -0.12083976e+00 0.45148894e+00 -0.46619180e+00 0.13957000e+00
- 1 211 0 0 0.66041193e-01 0.98763091e-01 0.23723542e-01 0.13957000e+00
- 2 111 203 204 -0.14021495e+00 0.65623971e+00 -0.10509739e+00 0.13498000e+00
- 1 211 0 0 0.35794839e+00 0.37207089e+00 -0.21055935e+01 0.13957000e+00
- 2 111 205 206 -0.28116166e+00 0.67772557e-01 -0.63048812e+00 0.13498000e+00
- 1 -211 0 0 -0.37634840e+00 0.18296970e-01 -0.68857109e+01 0.13957000e+00
- 1 211 0 0 0.31053017e+00 -0.14476662e+00 -0.37715806e+01 0.13957000e+00
- 1 211 0 0 0.34469554e-01 0.33847543e+00 -0.39103177e+01 0.13957000e+00
- 1 -211 0 0 -0.54666593e-01 -0.55105511e-01 -0.65036035e+00 0.13957000e+00
- 2 111 207 208 0.12790503e+00 0.10204536e+00 -0.47317131e+01 0.13498000e+00
- 1 211 0 0 -0.48705166e+00 0.24113592e+00 -0.62577915e+01 0.13957000e+00
- 2 111 209 210 0.33510208e-01 0.36034927e+00 -0.21757362e+01 0.13498000e+00
- 1 22 0 0 0.19440824e+00 -0.20848694e+00 -0.69941587e+01 0.00000000e+00
- 1 22 0 0 0.22280475e+00 -0.12844600e+00 -0.42347950e+01 0.00000000e+00
- 1 2212 0 0 -0.37791840e+00 -0.14393192e+00 -0.25218701e+04 0.93827000e+00
- 1 211 0 0 -0.77340718e-01 -0.25366973e+00 -0.57786443e+03 0.13957000e+00
- 1 -211 0 0 0.23190226e+00 -0.38007720e+00 -0.10565506e+04 0.13957000e+00
- 1 211 0 0 0.17199697e+00 0.14934738e+00 -0.19918696e+04 0.13957000e+00
- 1 211 0 0 -0.25670490e+00 -0.31819942e-01 0.15129157e+01 0.13957000e+00
- 1 -211 0 0 -0.26502633e+00 -0.56408255e+00 0.42869643e+01 0.13957000e+00
- 2 111 211 213 -0.93066696e-01 0.72249883e-01 0.13229300e+01 0.13498000e+00
- 1 -321 0 0 -0.76008792e-01 -0.49251400e+00 0.15770990e-01 0.49360000e+00
- 2 111 214 215 0.13535806e+00 0.82940544e-01 -0.21149769e+00 0.13498000e+00
- 2 311 216 216 -0.11143477e+00 0.24058994e+00 -0.13828620e+01 0.49767000e+00
- 1 211 0 0 -0.14986804e-01 0.43038998e+00 -0.12581163e+01 0.13957000e+00
- 1 -211 0 0 -0.17842716e+00 0.67225994e+00 -0.16113473e+01 0.13957000e+00
- 2 111 217 218 -0.73251162e-01 -0.21047927e+00 -0.13639962e+01 0.13498000e+00
- 1 22 0 0 -0.28777636e+00 -0.16441318e+00 -0.42370050e+01 0.00000000e+00
- 1 22 0 0 -0.38670498e+00 -0.13037060e+00 -0.71220181e+01 0.00000000e+00
- 1 22 0 0 0.27002182e+00 -0.14586903e+00 0.28912324e+02 0.00000000e+00
- 1 22 0 0 0.47918427e+00 -0.73894279e-01 0.49484427e+02 0.00000000e+00
- 1 22 0 0 -0.25778526e-01 -0.17876916e-01 0.99690762e-01 0.00000000e+00
- 1 22 0 0 -0.13342729e+00 -0.13292210e+00 0.29675375e+01 0.00000000e+00
- 1 22 0 0 -0.17817754e+00 0.49521133e-01 0.61060786e+00 0.00000000e+00
- 1 22 0 0 -0.21130161e+00 0.22590357e+00 0.12070758e+01 0.00000000e+00
- 1 22 0 0 -0.17967133e-01 -0.45167138e-01 0.13729680e+00 0.00000000e+00
- 1 22 0 0 -0.14579705e+00 0.55683802e-04 0.10549454e+00 0.00000000e+00
- 1 22 0 0 -0.61532104e-01 0.48431175e-01 -0.23779929e+00 0.00000000e+00
- 1 22 0 0 -0.16508237e+00 0.24839460e-01 -0.14370815e+01 0.00000000e+00
- 1 22 0 0 0.12215462e+00 0.14563814e+00 -0.70978748e+02 0.00000000e+00
- 1 22 0 0 -0.31095503e-02 0.19467866e+00 -0.77396229e+02 0.00000000e+00
- 1 22 0 0 0.32846129e+00 0.63850246e+00 -0.41042443e+02 0.00000000e+00
- 1 22 0 0 0.13005533e+00 0.50123800e+00 -0.30069324e+02 0.00000000e+00
- 1 22 0 0 -0.59966035e-01 -0.46186688e-02 -0.15914514e+00 0.00000000e+00
- 1 22 0 0 -0.52925463e+00 -0.45704345e+00 -0.14784612e+01 0.00000000e+00
- 1 130 0 0 -0.80514582e-01 -0.20402223e+00 -0.65054657e+00 0.49767000e+00
- 1 22 0 0 0.17105501e+00 -0.69437807e-01 -0.16152409e-01 0.00000000e+00
- 1 22 0 0 0.20275654e+00 -0.46351477e-01 -0.16976545e+00 0.00000000e+00
- 1 22 0 0 0.16836900e+00 -0.34162919e-01 -0.55542429e+00 0.00000000e+00
- 1 22 0 0 -0.22737707e-01 0.18973566e-02 -0.30366939e-01 0.00000000e+00
- 1 22 0 0 0.50505727e-02 -0.71331891e+00 -0.71598612e+00 0.00000000e+00
- 1 22 0 0 0.12024641e+00 -0.63489096e+00 -0.72854498e+00 0.00000000e+00
- 1 22 0 0 0.40553498e+00 -0.25445636e+00 -0.25285709e+00 0.00000000e+00
- 1 22 0 0 0.48953577e-01 -0.38824424e-01 0.15677328e-01 0.00000000e+00
- 1 211 0 0 0.70415318e-01 -0.90964060e-01 -0.21194385e+00 0.13957000e+00
- 1 -211 0 0 0.19757122e+00 0.13848742e+01 -0.10572590e+01 0.13957000e+00
- 1 22 0 0 -0.87593517e-01 0.42511704e+00 -0.20642155e-02 0.00000000e+00
- 1 22 0 0 -0.52621438e-01 0.23112267e+00 -0.10303317e+00 0.00000000e+00
- 1 22 0 0 -0.61861760e-01 -0.19594220e-01 -0.56529327e-01 0.00000000e+00
- 1 22 0 0 -0.21929990e+00 0.87366776e-01 -0.57395879e+00 0.00000000e+00
- 1 22 0 0 0.14335249e+00 0.11717279e+00 -0.38072713e+01 0.00000000e+00
- 1 22 0 0 -0.15447461e-01 -0.15127435e-01 -0.92444179e+00 0.00000000e+00
- 1 22 0 0 0.69983071e-01 0.33343653e+00 -0.18948391e+01 0.00000000e+00
- 1 22 0 0 -0.36472863e-01 0.26912739e-01 -0.28089709e+00 0.00000000e+00
- 1 22 0 0 -0.14973684e-01 -0.23602203e-01 0.49851045e+00 0.00000000e+00
- 1 -11 0 0 -0.15748465e-01 0.24252536e-01 0.38852834e+00 0.51000000e-03
- 1 11 0 0 -0.62344547e-01 0.71599551e-01 0.43589122e+00 0.51000000e-03
- 1 22 0 0 0.11008479e+00 -0.11038500e-01 -0.12190796e+00 0.00000000e+00
- 1 22 0 0 0.25273273e-01 0.93979044e-01 -0.89589731e-01 0.00000000e+00
- 2 310 219 220 -0.11143477e+00 0.24058994e+00 -0.13828620e+01 0.49767000e+00
- 1 22 0 0 -0.71848669e-01 -0.33118742e-01 -0.31561162e+00 0.00000000e+00
- 1 22 0 0 -0.14024930e-02 -0.17736053e+00 -0.10483846e+01 0.00000000e+00
- 1 211 0 0 -0.26544084e+00 0.15941102e+00 -0.88022005e+00 0.13957000e+00
- 1 -211 0 0 0.15400608e+00 0.81178923e-01 -0.50264192e+00 0.13957000e+00
- 823
- 2 25 2 3 0.35380610e+02 -0.17639333e+02 -0.13239306e+04 0.12500025e+03
- 2 23 4 5 0.21661664e+02 -0.26846946e+02 -0.11557662e+04 0.89608377e+02
- 2 23 6 7 0.13718946e+02 0.92076129e+01 -0.16816447e+03 0.23915494e+02
- 1 13 0 0 -0.32607153e+02 -0.26063981e+02 -0.50093425e+03 0.10566000e+00
- 1 -13 0 0 0.54268817e+02 -0.78296540e+00 -0.65483193e+03 0.10566000e+00
- 1 11 0 0 0.13035668e+02 0.16899183e+02 -0.12234257e+03 0.51000000e-03
- 1 -11 0 0 0.68327728e+00 -0.76915698e+01 -0.45821898e+02 0.51000000e-03
- 2 -1 109 109 0.45030042e+01 -0.51945886e+00 0.48188814e+01 0.33000000e+00
- 2 21 109 109 0.96891065e+00 0.81216131e+00 0.18236165e+01 0.00000000e+00
- 2 21 109 109 -0.17461445e+00 -0.12327583e-01 0.22996074e+00 0.00000000e+00
- 2 21 109 109 -0.35377831e+00 -0.76590138e+00 -0.11218949e+01 0.00000000e+00
- 2 21 109 109 -0.49676419e-01 -0.42214155e+00 -0.80798079e+00 0.00000000e+00
- 2 21 109 109 0.26265399e+00 -0.34661423e+00 -0.19462554e+01 0.00000000e+00
- 2 2 109 109 -0.13933073e+00 0.27717552e+00 0.41806173e+03 0.33000000e+00
- 2 2 129 129 -0.13762175e+02 0.11305634e+01 -0.29992262e+02 0.33000000e+00
- 2 21 129 129 -0.15726713e+02 0.52777909e+01 -0.44566112e+02 0.00000000e+00
- 2 21 129 129 -0.10491000e+02 0.28511919e+01 -0.27522069e+02 0.00000000e+00
- 2 21 129 129 -0.31291385e+01 0.42349253e+00 -0.78707945e+01 0.00000000e+00
- 2 21 129 129 -0.51500323e+01 0.55341896e+00 0.33397854e+00 0.00000000e+00
- 2 21 129 129 -0.64667457e+00 0.41709265e+00 -0.36024057e+00 0.00000000e+00
- 2 21 129 129 -0.20607857e+01 0.36446108e+01 -0.39539526e+01 0.00000000e+00
- 2 21 129 129 -0.16436900e+00 0.15892854e+01 -0.40904405e+00 0.00000000e+00
- 2 21 129 129 0.45484345e+00 0.48489891e+01 -0.82952136e-01 0.00000000e+00
- 2 21 129 129 0.10657643e+01 0.22198846e+01 -0.15273211e-01 0.00000000e+00
- 2 21 129 129 0.26418083e+01 0.22723235e+01 0.45829586e+01 0.00000000e+00
- 2 21 129 129 0.62341677e+01 0.19661121e+01 0.68346616e+01 0.00000000e+00
- 2 21 129 129 -0.45484345e+00 -0.48489891e+01 0.18733182e+02 0.00000000e+00
- 2 21 129 129 0.10042375e+01 -0.63191612e+01 0.62265241e+02 0.00000000e+00
- 2 21 129 129 -0.39076940e+00 -0.10265662e+01 0.15025839e+02 0.00000000e+00
- 2 21 129 129 -0.12357616e+00 -0.79274163e+00 0.13635574e+02 0.00000000e+00
- 2 21 129 129 -0.73537868e+00 -0.26845079e+00 0.12772159e+03 0.00000000e+00
- 2 21 129 129 0.12357616e+00 0.79274163e+00 0.11329993e+04 0.00000000e+00
- 2 21 129 129 -0.44225752e-01 -0.33105702e+00 0.48398665e+02 0.00000000e+00
- 2 21 129 129 0.70885648e+00 -0.25213544e+01 0.31114654e+03 0.00000000e+00
- 2 21 129 129 0.23810906e+01 -0.20432959e+01 0.18425330e+03 0.00000000e+00
- 2 21 129 129 0.28187657e+01 -0.29762387e+00 0.13141720e+03 0.00000000e+00
- 2 21 129 129 0.32644311e+01 0.21796278e+01 0.21401196e+03 0.00000000e+00
- 2 21 129 129 0.73537868e+00 0.26845079e+00 0.67114572e+01 0.00000000e+00
- 2 21 129 129 0.93630528e+00 0.15817489e+01 0.14813735e+02 0.00000000e+00
- 2 21 129 129 0.44225752e-01 0.33105702e+00 0.42233064e+01 0.00000000e+00
- 2 21 129 129 -0.38013355e+00 0.16581998e+01 0.21307638e+02 0.00000000e+00
- 2 21 129 129 -0.70885648e+00 0.25213544e+01 0.50306369e+02 0.00000000e+00
- 2 21 129 129 -0.21581989e+01 0.23410639e+01 0.84401894e+02 0.00000000e+00
- 2 21 129 129 -0.32644311e+01 -0.21796278e+01 0.24139757e+03 0.00000000e+00
- 2 21 129 129 -0.62341677e+01 -0.19661121e+01 0.17429188e+03 0.00000000e+00
- 2 21 129 129 -0.26418083e+01 -0.22723235e+01 0.42390872e+02 0.00000000e+00
- 2 21 129 129 -0.23810906e+01 0.20432959e+01 0.37487990e+02 0.00000000e+00
- 2 21 129 129 0.88407059e+00 -0.40427894e+01 0.14828691e+01 0.00000000e+00
- 2 21 129 129 0.23696424e+00 -0.38573907e+00 0.83162270e+00 0.00000000e+00
- 2 21 129 129 -0.88274817e+00 -0.34974730e+00 0.14625302e+01 0.00000000e+00
- 2 21 129 129 0.44561527e+00 -0.29004750e+00 -0.76384704e-01 0.00000000e+00
- 2 21 129 129 -0.75050509e+00 -0.72625276e+00 0.46283413e+02 0.00000000e+00
- 2 21 129 129 0.73221746e+00 0.87370173e+00 0.51084657e+01 0.00000000e+00
- 2 21 129 129 0.41120195e+00 -0.69703216e+00 0.22280058e+01 0.00000000e+00
- 2 2101 129 129 -0.18580003e+00 0.38818646e+00 0.35133011e+04 0.57933000e+00
- 2 1 225 225 -0.24433630e+01 -0.38215442e+00 -0.25360589e+02 0.33000000e+00
- 2 21 225 225 -0.24341208e+00 0.14809135e+01 -0.38599854e+01 0.00000000e+00
- 2 21 225 225 -0.10042375e+01 0.63191612e+01 -0.14498586e+02 0.00000000e+00
- 2 21 225 225 0.18863466e+01 0.67275471e+00 -0.58970321e+01 0.00000000e+00
- 2 21 225 225 0.69219676e+00 -0.53457743e-02 -0.32095562e+01 0.00000000e+00
- 2 21 225 225 -0.61803601e-01 0.31084007e+01 -0.30260531e+02 0.00000000e+00
- 2 21 225 225 0.91092611e+00 0.63377198e+01 -0.79506095e+02 0.00000000e+00
- 2 21 225 225 0.16757702e+01 0.20290764e+01 -0.33209619e+02 0.00000000e+00
- 2 21 225 225 0.44733358e+01 0.91534444e-01 -0.56084048e+02 0.00000000e+00
- 2 21 225 225 0.51500323e+01 -0.55341896e+00 -0.63463802e+02 0.00000000e+00
- 2 21 225 225 0.14544843e+01 -0.16232881e+01 -0.35049271e+02 0.00000000e+00
- 2 21 225 225 0.61803601e-01 -0.31084007e+01 -0.37128750e+02 0.00000000e+00
- 2 21 225 225 0.24341208e+00 -0.14809135e+01 -0.15430184e+02 0.00000000e+00
- 2 21 225 225 0.20607857e+01 -0.36446108e+01 -0.40366276e+02 0.00000000e+00
- 2 21 225 225 0.21581989e+01 -0.23410639e+01 -0.19483654e+02 0.00000000e+00
- 2 21 225 225 0.64667457e+00 -0.41709265e+00 -0.20474727e+01 0.00000000e+00
- 2 21 225 225 0.99068582e+00 -0.31690925e+01 -0.84711311e+01 0.00000000e+00
- 2 21 225 225 0.16436900e+00 -0.15892854e+01 -0.33244637e+01 0.00000000e+00
- 2 21 225 225 0.12462667e+01 -0.15496160e+01 -0.16736336e+01 0.00000000e+00
- 2 21 225 225 0.38013355e+00 -0.16581998e+01 -0.13354077e+01 0.00000000e+00
- 2 21 225 225 -0.16757702e+01 -0.20290764e+01 -0.66559796e+01 0.00000000e+00
- 2 21 225 225 -0.69219676e+00 0.53457743e-02 -0.14046181e+01 0.00000000e+00
- 2 21 225 225 -0.28187657e+01 0.29762387e+00 -0.63053809e+01 0.00000000e+00
- 2 21 225 225 -0.44733358e+01 -0.91534444e-01 -0.63558752e+02 0.00000000e+00
- 2 21 225 225 -0.14544843e+01 0.16232881e+01 -0.23566594e+02 0.00000000e+00
- 2 21 225 225 -0.99068582e+00 0.31690925e+01 -0.89191754e+02 0.00000000e+00
- 2 21 225 225 0.56397413e+00 0.84615243e+00 -0.37839255e+02 0.00000000e+00
- 2 21 225 225 0.27763679e+01 -0.50131259e+00 -0.11260387e+03 0.00000000e+00
- 2 21 225 225 -0.56397413e+00 -0.84615243e+00 -0.28166482e+02 0.00000000e+00
- 2 21 225 225 -0.93630528e+00 -0.15817489e+01 -0.10866334e+03 0.00000000e+00
- 2 21 225 225 -0.91092611e+00 -0.63377198e+01 -0.13912034e+04 0.00000000e+00
- 2 2101 225 225 0.16295119e+01 0.10149040e+01 -0.26407875e+04 0.57933000e+00
- 2 -1 286 286 -0.85318314e-01 -0.35264234e+00 -0.74027755e+01 0.33000000e+00
- 2 21 286 286 -0.21372513e+00 -0.13129419e+00 -0.13493189e+02 0.00000000e+00
- 2 21 286 286 0.90313404e+00 0.70645494e+00 -0.11484608e+02 0.00000000e+00
- 2 1 286 286 0.20299918e+01 0.13307853e+02 -0.24017415e+03 0.33000000e+00
- 2 2 293 293 0.33625315e+00 0.32649956e+01 -0.32590022e+00 0.00000000e+00
- 2 21 293 293 0.62029511e-01 0.22302573e+01 0.94846653e+00 0.00000000e+00
- 2 21 293 293 0.52662578e+00 -0.54097767e+00 0.45580839e+00 0.00000000e+00
- 2 21 293 293 -0.62029511e-01 -0.22302573e+01 0.33753695e+01 0.00000000e+00
- 2 -2 293 293 -0.33625315e+00 -0.32649956e+01 0.38017059e+01 0.00000000e+00
- 2 2 302 302 -0.51185606e+00 -0.27861122e+01 -0.23924895e+01 0.00000000e+00
- 2 21 302 302 -0.10657643e+01 -0.22198846e+01 -0.29561103e+01 0.00000000e+00
- 2 21 302 302 -0.18863466e+01 -0.67275471e+00 -0.62700057e+00 0.00000000e+00
- 2 21 302 302 -0.27763679e+01 0.50131259e+00 0.39216550e+01 0.00000000e+00
- 2 21 302 302 -0.12462667e+01 0.15496160e+01 0.31447003e+01 0.00000000e+00
- 2 21 302 302 0.39076940e+00 0.10265662e+01 0.21719152e+01 0.00000000e+00
- 2 -2 302 302 0.51185606e+00 0.27861122e+01 0.46807820e+01 0.00000000e+00
- 2 1 313 313 -0.99723831e+00 -0.11775014e+01 -0.49631144e+01 0.00000000e+00
- 2 -1 313 313 0.99723831e+00 0.11775014e+01 -0.64905034e+00 0.00000000e+00
- 2 1 318 318 0.30714788e+00 -0.78469536e+00 -0.89774060e+02 0.00000000e+00
- 2 21 318 318 -0.52662578e+00 0.54097767e+00 -0.94829412e+02 0.00000000e+00
- 2 -1 318 318 -0.30714788e+00 0.78469536e+00 -0.65490642e+02 0.00000000e+00
- 2 92 110 128 0.50171689e+01 -0.97710678e+00 0.42105806e+03 0.94236282e+02
- 2 111 321 322 -0.45823670e-01 -0.75712126e-01 0.29632345e+00 0.13498000e+00
- 2 213 323 324 0.13485084e+01 0.54049291e+00 0.17911192e+01 0.65970605e+00
- 2 -213 325 326 0.27131722e+01 -0.12285483e+01 0.23632547e+01 0.66291556e+00
- 2 223 327 329 0.15445845e+01 0.74530312e+00 0.13832338e+01 0.78001994e+00
- 2 223 330 331 -0.42668863e+00 -0.64603311e+00 -0.60105777e+00 0.78327802e+00
- 2 221 332 334 -0.44672758e-01 0.31998334e+00 -0.54945033e+00 0.54745000e+00
- 1 211 0 0 0.34986367e+00 -0.10138992e+00 0.37776509e+00 0.13957000e+00
- 2 -323 335 336 -0.78117707e+00 -0.11286540e+01 -0.12403227e+01 0.96444330e+00
- 2 311 337 337 0.17346258e+00 0.48674546e+00 0.14193512e+01 0.49767000e+00
- 2 113 338 339 0.50370223e+00 -0.68407678e-01 0.25378463e+01 0.86412957e+00
- 2 111 340 341 -0.27135364e+00 -0.43965960e+00 0.91791569e+00 0.13498000e+00
- 1 211 0 0 0.13399121e+00 0.39093374e+00 0.62290092e+01 0.13957000e+00
- 2 -213 342 343 0.10890679e+00 -0.12083691e+00 0.74404481e+01 0.80812541e+00
- 2 -313 344 345 -0.21541357e+00 0.37006162e-01 0.16251634e+02 0.86823071e+00
- 1 321 0 0 0.12883471e+00 0.35251400e+00 0.23535501e+02 0.49360000e+00
- 1 -211 0 0 -0.22557345e+00 -0.35138773e+00 0.29699667e+02 0.13957000e+00
- 1 -2112 0 0 0.37659861e-01 0.53140766e+00 0.19307322e+03 0.93957000e+00
- 1 2112 0 0 -0.61014335e-01 -0.78248975e-01 0.11334988e+03 0.93957000e+00
- 1 211 0 0 0.46199954e-01 -0.14261478e+00 0.22782718e+02 0.13957000e+00
- 2 92 130 224 -0.47343901e+02 0.10815272e+02 0.64045416e+04 0.18563593e+04
- 2 213 346 347 -0.10724353e+02 0.15067378e+01 -0.24243906e+02 0.79173792e+00
- 1 -211 0 0 -0.29428634e+01 -0.74657518e-02 -0.70421365e+01 0.13957000e+00
- 2 223 348 350 -0.29559607e+01 0.91783056e+00 -0.83718646e+01 0.77091741e+00
- 2 213 351 352 -0.86250422e+01 0.23201825e+01 -0.23103395e+02 0.11320433e+01
- 2 -213 353 354 -0.22109705e+01 0.29005811e+00 -0.54279178e+01 0.44705891e+00
- 2 113 355 356 -0.54774532e+01 0.14927012e+01 -0.14452475e+02 0.71339242e+00
- 1 2112 0 0 -0.45142972e+01 0.22769617e+01 -0.11856853e+02 0.93957000e+00
- 2 -1114 357 358 -0.38741221e+01 0.27329337e+00 -0.97261072e+01 0.11928294e+01
- 2 311 359 359 -0.11100668e+01 0.32890878e+00 -0.27337846e+01 0.49767000e+00
- 2 333 360 361 -0.76783119e+00 0.40189669e+00 -0.13043128e+01 0.10230513e+01
- 1 -321 0 0 -0.10471454e+01 0.34653978e+00 -0.15782507e+01 0.49360000e+00
- 2 213 362 363 -0.95315031e+00 0.16443931e+00 0.45529235e-01 0.88616085e+00
- 1 -211 0 0 -0.12091369e+01 0.39965889e+00 -0.73380457e+00 0.13957000e+00
- 1 211 0 0 -0.32813367e+00 0.12950039e+00 -0.26119791e+00 0.13957000e+00
- 1 -211 0 0 -0.16989768e+01 0.78252215e-02 0.30293810e+00 0.13957000e+00
- 2 213 364 365 -0.10232700e+01 0.16676592e+01 -0.12054655e+01 0.87481695e+00
- 2 111 366 367 0.51154973e-01 -0.17590178e-02 -0.22108800e-01 0.13498000e+00
- 1 -211 0 0 -0.12370062e+01 0.27086219e+01 -0.13442061e+01 0.13957000e+00
- 2 113 368 369 -0.16383201e+00 0.68720240e+00 -0.43140266e+00 0.77834101e+00
- 1 211 0 0 0.32697331e+00 0.59728697e+00 -0.19701741e+00 0.13957000e+00
- 2 223 370 372 0.13527913e-02 0.22460786e+01 0.50694367e-01 0.74820568e+00
- 2 -213 373 374 0.94656934e+00 0.42691951e+00 -0.24917246e+00 0.77598363e+00
- 2 113 375 376 -0.44864898e-02 0.27161700e+01 0.57349500e+00 0.79256511e+00
- 2 2114 377 378 0.13204037e+01 0.12575315e+01 0.20206884e+01 0.12333033e+01
- 2 -1114 379 380 0.21303680e+01 0.14289650e+01 0.14456927e+01 0.12414907e+01
- 1 -211 0 0 0.32213537e+00 -0.16973224e+00 0.71137602e+00 0.13957000e+00
- 1 211 0 0 0.79889004e+00 0.84907922e+00 0.65866543e+00 0.13957000e+00
- 1 2112 0 0 0.18838951e+01 0.13185424e+01 0.34923046e+01 0.93957000e+00
- 1 -2112 0 0 0.99831883e-01 -0.47322061e+00 0.13884991e+01 0.93957000e+00
- 1 2212 0 0 0.92215546e+00 -0.62144994e+00 0.30476311e+01 0.93827000e+00
- 1 -211 0 0 0.59457383e-01 0.20232327e+00 0.77381106e+00 0.13957000e+00
- 1 -2212 0 0 0.13044448e+01 -0.10493723e+00 0.21979609e+01 0.93827000e+00
- 2 213 381 382 -0.38056913e+00 -0.91613409e+00 0.68349373e+01 0.74152685e+00
- 2 111 383 384 0.26676845e-01 -0.20443032e+01 0.10195177e+02 0.13498000e+00
- 1 -211 0 0 0.18286401e+00 -0.48743458e+00 0.85970936e+01 0.13957000e+00
- 2 323 385 386 0.57541669e-02 -0.28007986e+01 0.20178213e+02 0.89759488e+00
- 1 -321 0 0 -0.40378840e+00 -0.11506207e+01 0.12736457e+02 0.49360000e+00
- 2 113 387 388 0.61982059e+00 -0.21655703e+01 0.21047254e+02 0.76250825e+00
- 2 223 389 391 -0.78570071e-01 -0.15062279e+01 0.31609192e+02 0.80633892e+00
- 2 111 392 393 0.16484664e-01 0.77883084e-01 0.10895146e+01 0.13498000e+00
- 1 211 0 0 -0.53984220e+00 -0.34789869e+00 0.71303016e+02 0.13957000e+00
- 2 2214 394 395 0.64823873e-01 -0.23362590e+00 0.28159247e+03 0.13544339e+01
- 2 -2224 396 397 -0.33818127e+00 0.69621630e-01 0.42255412e+03 0.12016560e+01
- 2 213 398 399 0.66675206e-01 -0.30139211e+00 0.37026889e+03 0.84085286e+00
- 2 111 400 401 0.79307207e+00 -0.11576162e+01 0.13012284e+03 0.13498000e+00
- 2 313 402 403 0.11798679e+01 -0.10104661e+01 0.15097173e+03 0.83221347e+00
- 2 333 404 405 0.40173535e+00 0.50834286e+00 0.62946687e+02 0.10253795e+01
- 2 -313 406 407 0.13506731e+01 -0.24225316e+00 0.18741101e+03 0.90298537e+00
- 2 -213 408 409 -0.30897527e+00 -0.14195462e+00 0.38151987e+02 0.72173181e+00
- 2 323 410 411 0.23368705e+01 -0.12932368e+01 0.25535896e+03 0.86641098e+00
- 2 -311 412 412 0.19098646e+01 0.50360820e+00 0.55693655e+02 0.49767000e+00
- 2 111 413 414 0.67677588e+00 -0.49507763e+00 0.36298030e+02 0.13498000e+00
- 1 -211 0 0 0.80963496e+00 0.22138653e+01 0.31166699e+02 0.13957000e+00
- 2 223 415 417 0.96718991e+00 0.71389104e+00 0.58150562e+02 0.78924301e+00
- 2 323 418 419 0.89313579e-02 0.60610200e+00 0.15292230e+02 0.90620205e+00
- 1 -321 0 0 -0.24716648e+00 0.82282769e+00 0.35505396e+02 0.49360000e+00
- 1 211 0 0 -0.77490423e+00 0.13131307e+01 0.35764901e+02 0.13957000e+00
- 2 111 420 421 0.56374655e-01 0.38836014e+00 0.63962673e+01 0.13498000e+00
- 1 -211 0 0 0.18660214e+00 0.18626605e+00 0.15505663e+01 0.13957000e+00
- 2 111 422 423 -0.20717517e+00 0.12469625e+01 0.11567181e+02 0.13498000e+00
- 1 321 0 0 -0.44709816e+00 0.21268073e+00 0.53357379e+02 0.49360000e+00
- 2 331 424 426 -0.53804401e+00 0.83614464e+00 0.30578361e+02 0.95793825e+00
- 2 -311 427 427 -0.61420341e+00 -0.39334786e+00 0.52297287e+02 0.49767000e+00
- 2 111 428 429 -0.65107334e+00 0.20079770e-01 0.22508248e+02 0.13498000e+00
- 1 -211 0 0 -0.93976565e+00 -0.19071859e-01 0.13328286e+02 0.13957000e+00
- 2 221 430 432 -0.12248795e+01 -0.14071131e+00 0.47358300e+02 0.54745000e+00
- 2 113 433 434 -0.17904487e+01 -0.32747591e+00 0.67623939e+02 0.56020770e+00
- 2 323 435 436 -0.14920883e+01 -0.81612874e+00 0.80275755e+02 0.86000699e+00
- 1 -321 0 0 -0.25836371e+00 -0.38009207e+00 0.17053136e+02 0.49360000e+00
- 1 211 0 0 0.28315900e-01 0.12377543e+00 0.33829932e+01 0.13957000e+00
- 1 -211 0 0 -0.17160546e+01 -0.12579703e+01 0.33743705e+02 0.13957000e+00
- 2 323 437 438 -0.25382951e+01 -0.15963303e+00 0.78883152e+02 0.90123044e+00
- 2 3122 439 440 -0.56798579e+00 0.48777005e+00 0.12348556e+02 0.11156800e+01
- 1 -2212 0 0 -0.22273765e+01 -0.10147871e+01 0.23358109e+02 0.93827000e+00
- 1 211 0 0 0.17398198e+00 -0.68997030e-01 0.10918844e+02 0.13957000e+00
- 2 -213 441 442 -0.14386678e+00 -0.19480488e+00 0.13039439e+01 0.61729816e+00
- 1 2212 0 0 -0.86241392e+00 0.71750095e-01 0.55474331e+01 0.93827000e+00
- 2 -3122 443 444 0.73226111e+00 -0.24177172e+00 0.53025346e+01 0.11156800e+01
- 1 -321 0 0 -0.61275838e+00 0.33383096e+00 0.12141963e+01 0.49360000e+00
- 2 331 445 447 0.18499315e+00 -0.10053420e+01 0.11759957e+01 0.95842670e+00
- 1 211 0 0 0.12110848e+00 -0.93112890e-01 0.50078574e+00 0.13957000e+00
- 1 2112 0 0 -0.30834537e+00 -0.10456107e+01 0.54037930e+00 0.93957000e+00
- 2 113 448 449 0.19701489e+00 -0.16752849e+01 0.13386724e+01 0.93729479e+00
- 2 -2114 450 451 0.34974912e+00 -0.14597677e+00 0.31096014e+01 0.12627395e+01
- 2 113 452 453 -0.18152887e+00 -0.38221339e+00 0.66037687e+01 0.79271094e+00
- 2 311 454 454 -0.49686032e+00 0.32736778e+00 0.11775202e+02 0.49767000e+00
- 2 331 455 456 0.86514853e+00 -0.10280143e+00 0.35349916e+01 0.95787621e+00
- 2 -323 457 458 -0.51276002e+00 -0.36386684e+00 0.33515819e+02 0.84529123e+00
- 2 323 459 460 0.38723911e+00 0.24355263e+00 0.45909271e+01 0.90694115e+00
- 2 -313 461 462 0.24382886e-01 -0.17588127e+00 0.38198446e+02 0.91677456e+00
- 2 -213 463 464 0.36479747e+00 -0.10451044e+01 0.10466274e+03 0.63703783e+00
- 2 323 465 466 -0.15137438e+00 0.67722688e+00 0.28922129e+03 0.88771689e+00
- 2 -313 467 468 -0.34258709e-01 0.51550340e+00 0.60489687e+03 0.88976539e+00
- 2 221 469 471 -0.47532066e+00 0.11246830e+00 0.24194018e+03 0.54745000e+00
- 1 2112 0 0 0.33121665e+00 -0.37491953e-01 0.22257729e+04 0.93957000e+00
- 2 92 226 285 0.10896016e+02 -0.59140596e+01 -0.49896070e+04 0.28913665e+03
- 1 -211 0 0 -0.69923851e-01 0.34743735e+00 -0.81317344e+00 0.13957000e+00
- 1 211 0 0 -0.76254273e+00 0.44992253e+00 -0.30865793e+01 0.13957000e+00
- 2 311 472 472 -0.42916749e+00 0.24654799e+00 -0.74015293e+01 0.49767000e+00
- 2 333 473 474 -0.12756007e+01 -0.20840280e+00 -0.15674785e+02 0.10158051e+01
- 2 -323 475 476 -0.38525477e+00 0.11919491e+01 -0.34006142e+01 0.89514205e+00
- 2 213 477 478 -0.22681334e+00 0.17087546e+01 -0.50349473e+01 0.77175049e+00
- 2 111 479 480 0.63598560e+00 0.78782094e+00 -0.36527417e+01 0.13498000e+00
- 2 -213 481 482 -0.74585219e-01 0.17185533e+01 -0.36624672e+01 0.70203187e+00
- 2 323 483 484 0.28363920e+00 0.83673078e+00 -0.43068120e+01 0.93897392e+00
- 2 -313 485 486 -0.19229490e+00 0.46702915e+00 -0.38118719e+01 0.88050725e+00
- 2 1114 487 488 0.44901018e+00 0.13251391e+01 -0.10408233e+02 0.12361352e+01
- 2 -2114 489 490 0.88896024e+00 0.28942674e+01 -0.30496223e+02 0.12581318e+01
- 2 213 491 492 0.20441967e+00 0.89482368e+00 -0.14602996e+02 0.95877192e+00
- 2 221 493 494 0.97756049e+00 0.73031137e+00 -0.10015255e+02 0.54745000e+00
- 1 -211 0 0 -0.10006480e+00 0.21098868e+01 -0.20399023e+02 0.13957000e+00
- 2 213 495 496 0.89253146e+00 0.24199801e+01 -0.38983159e+02 0.80754489e+00
- 2 -213 497 498 0.37527046e+00 0.74929388e+00 -0.87717594e+01 0.61111926e+00
- 2 113 499 500 0.39586435e+01 0.33606636e+00 -0.54036884e+02 0.81663829e+00
- 2 323 501 502 0.14849746e+01 -0.38287781e-01 -0.29369025e+02 0.10790730e+01
- 2 3214 503 504 0.11915075e+01 -0.57038814e+00 -0.19480035e+02 0.13927635e+01
- 2 111 505 506 0.29482317e+01 -0.12078843e+01 -0.48736322e+02 0.13498000e+00
- 1 -2212 0 0 0.13260245e+01 -0.31474184e+00 -0.13913164e+02 0.93827000e+00
- 2 223 507 509 0.11603406e+01 -0.31520077e+01 -0.37470833e+02 0.83952770e+00
- 2 113 510 511 0.90391364e+00 -0.14687582e+01 -0.16808239e+02 0.74448969e+00
- 2 213 512 513 0.10303000e+01 -0.11130742e+01 -0.19479231e+02 0.78151616e+00
- 2 -213 514 515 0.19839451e+00 -0.22717233e+01 -0.22095509e+02 0.84262506e+00
- 2 221 516 517 0.10774929e+01 -0.10648951e+01 -0.79401543e+01 0.54745000e+00
- 1 211 0 0 -0.27476548e+00 -0.14617963e+01 -0.24104150e+01 0.13957000e+00
- 2 111 518 519 0.14300182e+01 -0.15140089e+01 -0.58624367e+01 0.13498000e+00
- 2 -213 520 521 0.67093364e+00 -0.11115969e+01 -0.77008636e+01 0.81074911e+00
- 2 323 522 523 0.66919173e+00 -0.11350308e+01 -0.26309002e+01 0.91055948e+00
- 2 -313 524 525 0.45252657e+00 -0.15555356e+01 -0.28045353e+01 0.94389421e+00
- 2 1114 526 527 -0.19441814e+00 -0.10994625e+01 -0.40494463e+01 0.11493266e+01
- 2 -1114 528 529 0.23684387e+00 -0.23815480e+01 -0.34668334e+01 0.12413001e+01
- 1 -211 0 0 -0.11188091e+00 -0.24628917e+00 -0.79027753e+00 0.13957000e+00
- 2 213 530 531 -0.16689561e+01 -0.50938750e+00 -0.49643570e+01 0.94011907e+00
- 2 111 532 533 -0.47855899e-01 -0.64310703e-01 -0.16953416e+01 0.13498000e+00
- 2 223 534 536 -0.12965748e+01 0.13798383e-01 -0.59254725e+01 0.78736416e+00
- 2 -213 537 538 -0.63272407e+00 -0.10674058e+00 -0.30234382e+01 0.75338679e+00
- 1 211 0 0 -0.23333246e+00 0.35624269e+00 -0.34151557e+01 0.13957000e+00
- 2 -213 539 540 -0.13417016e+01 -0.59504863e+00 -0.10079093e+02 0.81978457e+00
- 1 2212 0 0 -0.13584199e+01 0.15805569e+01 -0.20106833e+02 0.93827000e+00
- 2 -3122 541 542 -0.21169098e+01 -0.47497176e+00 -0.45669493e+02 0.11156800e+01
- 2 -323 543 544 -0.11794477e+01 0.18276701e+01 -0.33449295e+02 0.85101465e+00
- 2 2224 545 546 0.13386149e+00 0.83813856e+00 -0.37895323e+02 0.12633432e+01
- 2 111 547 548 0.24043227e-01 -0.56731884e-01 -0.91115812e+01 0.13498000e+00
- 2 -3224 549 550 -0.25397920e+00 -0.19168731e+00 -0.30202521e+02 0.13901453e+01
- 1 -321 0 0 0.54264867e+00 0.13935814e+01 -0.55919648e+02 0.49360000e+00
- 2 331 551 552 0.94287179e-01 -0.17263176e-01 -0.40114707e+02 0.95808260e+00
- 1 211 0 0 0.69000148e+00 -0.23763641e+00 -0.19267818e+02 0.13957000e+00
- 2 313 553 554 0.29828427e+00 -0.38009273e+00 -0.10402866e+03 0.91183028e+00
- 2 331 555 556 -0.67964566e+00 -0.59864611e+00 -0.81060148e+02 0.95781814e+00
- 2 -311 557 557 0.15294138e+00 -0.64775173e+00 -0.61308553e+02 0.49767000e+00
- 2 113 558 559 -0.26901927e+00 -0.15826376e+01 -0.22329340e+03 0.77254634e+00
- 1 -211 0 0 -0.83727544e+00 -0.11526145e+01 -0.31546338e+03 0.13957000e+00
- 2 213 560 561 0.68096374e+00 -0.93690516e+00 -0.34419033e+03 0.70886306e+00
- 1 2112 0 0 -0.28434178e+00 -0.66846939e+00 -0.53424429e+03 0.93957000e+00
- 2 -2114 562 563 -0.34418915e-01 -0.12689752e+01 -0.44390413e+03 0.12300697e+01
- 2 2114 564 565 0.61789576e+00 0.41778035e+00 -0.79286554e+03 0.12664279e+01
- 2 113 566 567 0.54628881e+00 -0.15104062e+00 -0.12848412e+04 0.11265226e+01
- 2 92 287 292 0.26340824e+01 0.13530372e+02 -0.27255472e+03 0.75532166e+01
- 2 111 568 569 0.94660394e-01 -0.19911546e+00 -0.11743433e+02 0.13498000e+00
- 1 211 0 0 0.11360403e+00 0.13659890e+00 -0.13916187e+01 0.13957000e+00
- 1 -211 0 0 -0.16178679e+00 0.25314053e+00 -0.39323340e+01 0.13957000e+00
- 2 -3114 570 571 0.44824081e+00 0.77322894e+00 -0.28395157e+02 0.14031533e+01
- 2 -311 572 572 0.40776058e+00 0.17171426e+01 -0.24830156e+02 0.49767000e+00
- 2 1114 573 574 0.17316034e+01 0.10849376e+02 -0.20226202e+03 0.11694354e+01
- 2 92 294 301 0.52662578e+00 -0.54097767e+00 0.82554501e+01 0.13301550e+02
- 2 331 575 576 -0.18914678e-01 0.24904088e+01 0.84621296e-01 0.95783414e+00
- 2 213 577 578 0.52529309e+00 0.13845521e+01 0.78091945e+00 0.49169417e+00
- 1 -211 0 0 0.24054034e+00 0.72589894e+00 -0.27902229e+00 0.13957000e+00
- 1 2212 0 0 -0.20578060e+00 -0.10066223e+01 0.13389514e+01 0.93827000e+00
- 2 -3122 579 580 -0.26654172e+00 -0.39395724e+00 0.15037839e+01 0.11156800e+01
- 2 221 581 582 0.68796078e-01 -0.76112988e+00 0.27960844e+00 0.54745000e+00
- 2 -323 583 584 0.44008471e+00 -0.23353998e+01 0.34616612e+01 0.89978797e+00
- 2 111 585 586 -0.25685144e+00 -0.64472827e+00 0.10849266e+01 0.13498000e+00
- 2 92 303 312 -0.65839761e+01 0.18485547e+00 0.79434523e+01 0.23985116e+02
- 1 321 0 0 -0.77793290e+00 -0.18517296e+01 -0.17042904e+01 0.49360000e+00
- 2 -311 587 587 -0.50922337e+00 -0.15609638e+01 -0.17365603e+01 0.49767000e+00
- 2 313 588 589 -0.85616014e+00 -0.20326797e+01 -0.19251990e+01 0.87123905e+00
- 2 -313 590 591 -0.21732565e+01 -0.86076997e-01 0.49438389e-01 0.85605303e+00
- 1 -211 0 0 -0.22826323e+00 0.18111093e+00 0.11258962e+01 0.13957000e+00
- 2 223 592 594 -0.91742913e+00 0.11607196e+01 0.22305398e+01 0.78086530e+00
- 1 321 0 0 -0.14382058e+00 0.19714434e+00 0.14208939e+01 0.49360000e+00
- 2 -323 595 596 -0.91758801e+00 0.44849706e+00 0.12920604e+01 0.92772203e+00
- 2 111 597 598 0.87443641e-02 0.20283094e+01 0.37697241e+01 0.13498000e+00
- 2 113 599 600 -0.69046562e-01 0.17005244e+01 0.34209492e+01 0.96351030e+00
- 2 92 314 317 0.00000000e+00 0.00000000e+00 -0.56121647e+01 0.39648938e+01
- 1 -211 0 0 -0.45792401e+00 -0.59954555e+00 -0.25833601e+01 0.13957000e+00
- 1 321 0 0 -0.27666901e+00 0.23904294e+00 -0.47345075e+00 0.49360000e+00
- 2 -323 601 602 -0.82746577e-01 0.17187769e+00 -0.71523832e+00 0.83953547e+00
- 2 213 603 604 0.81733960e+00 0.18862492e+00 -0.18401155e+01 0.10567313e+01
- 2 92 319 320 -0.52662578e+00 0.54097767e+00 -0.25009411e+03 0.23712987e+01
- 2 113 605 606 0.43639815e+00 -0.48312557e+00 -0.13845580e+03 0.72884732e+00
- 2 111 607 608 -0.96302393e+00 0.10241032e+01 -0.11163832e+03 0.13498000e+00
- 1 22 0 0 -0.51341779e-02 0.39181653e-01 0.71694097e-01 0.00000000e+00
- 1 22 0 0 -0.40689493e-01 -0.11489378e+00 0.22462935e+00 0.00000000e+00
- 1 211 0 0 0.84559663e-01 0.31690090e-01 0.46010624e+00 0.13957000e+00
- 2 111 609 610 0.12639487e+01 0.50880282e+00 0.13310129e+01 0.13498000e+00
- 1 -211 0 0 0.20457107e+01 -0.77617230e+00 0.14245655e+01 0.13957000e+00
- 2 111 611 612 0.66746144e+00 -0.45237598e+00 0.93868920e+00 0.13498000e+00
- 1 -211 0 0 0.10472537e+01 0.42908949e+00 0.10902306e+01 0.13957000e+00
- 1 211 0 0 0.30759307e+00 0.31520900e+00 0.24095302e+00 0.13957000e+00
- 2 111 613 614 0.18973772e+00 0.10046313e-02 0.52050150e-01 0.13498000e+00
- 1 22 0 0 0.10527063e+00 -0.20452150e+00 -0.49040637e+00 0.00000000e+00
- 2 111 615 616 -0.53195926e+00 -0.44151161e+00 -0.11065141e+00 0.13498000e+00
- 2 111 617 618 -0.36362170e-01 0.18303482e+00 -0.23608580e+00 0.13498000e+00
- 2 111 619 620 0.48696232e-01 0.11563177e+00 -0.24633414e-01 0.13498000e+00
- 2 111 621 622 -0.57006820e-01 0.21316748e-01 -0.28873111e+00 0.13498000e+00
- 2 -311 623 623 -0.59624853e+00 -0.36100450e+00 -0.48254795e+00 0.49767000e+00
- 1 -211 0 0 -0.18492854e+00 -0.76764955e+00 -0.75777479e+00 0.13957000e+00
- 2 310 624 625 0.17346258e+00 0.48674546e+00 0.14193512e+01 0.49767000e+00
- 1 -211 0 0 0.65017804e+00 -0.23161942e+00 0.14742064e+01 0.13957000e+00
- 1 211 0 0 -0.14647581e+00 0.16321174e+00 0.10636399e+01 0.13957000e+00
- 1 22 0 0 -0.24419219e+00 -0.40504409e+00 0.73663014e+00 0.00000000e+00
- 1 22 0 0 -0.27161451e-01 -0.34615512e-01 0.18128555e+00 0.00000000e+00
- 1 -211 0 0 0.71379474e-02 0.32121284e+00 0.33254757e+01 0.13957000e+00
- 2 111 626 627 0.10176884e+00 -0.44204975e+00 0.41149724e+01 0.13498000e+00
- 1 -321 0 0 -0.28599454e-04 -0.17518704e+00 0.12090395e+02 0.49360000e+00
- 1 211 0 0 -0.21538497e+00 0.21219320e+00 0.41612394e+01 0.13957000e+00
- 1 211 0 0 -0.17950908e+01 -0.42705064e-02 -0.38973264e+01 0.13957000e+00
- 2 111 628 629 -0.89292624e+01 0.15110083e+01 -0.20346580e+02 0.13498000e+00
- 1 211 0 0 -0.45540715e+00 0.16844871e-01 -0.99367907e+00 0.13957000e+00
- 1 -211 0 0 -0.17299206e+01 0.44084501e+00 -0.47444167e+01 0.13957000e+00
- 2 111 630 631 -0.77063301e+00 0.46014068e+00 -0.26337688e+01 0.13498000e+00
- 1 211 0 0 -0.22050972e+01 0.16521629e+00 -0.63117390e+01 0.13957000e+00
- 2 111 632 633 -0.64199451e+01 0.21549662e+01 -0.16791656e+02 0.13498000e+00
- 1 -211 0 0 -0.43568036e+00 0.15983413e+00 -0.13170019e+01 0.13957000e+00
- 2 111 634 635 -0.17752902e+01 0.13022398e+00 -0.41109159e+01 0.13498000e+00
- 1 -211 0 0 -0.10558950e+01 0.47738224e+00 -0.25122062e+01 0.13957000e+00
- 1 211 0 0 -0.44215582e+01 0.10153189e+01 -0.11940269e+02 0.13957000e+00
- 1 -2112 0 0 -0.33947453e+01 0.23180594e+00 -0.80216015e+01 0.93957000e+00
- 1 211 0 0 -0.47937681e+00 0.41487434e-01 -0.17045057e+01 0.13957000e+00
- 1 130 0 0 -0.11100668e+01 0.32890878e+00 -0.27337846e+01 0.49767000e+00
- 1 321 0 0 -0.30672483e+00 0.81644967e-01 -0.48373473e+00 0.49360000e+00
- 1 -321 0 0 -0.46110635e+00 0.32025172e+00 -0.82057808e+00 0.49360000e+00
- 1 211 0 0 -0.98447585e+00 0.36878967e+00 -0.52452746e-02 0.13957000e+00
- 2 111 636 637 0.31325545e-01 -0.20435035e+00 0.50774509e-01 0.13498000e+00
- 1 211 0 0 -0.53035876e+00 0.14026637e+01 -0.11203010e+01 0.13957000e+00
- 2 111 638 639 -0.49291122e+00 0.26499553e+00 -0.85164545e-01 0.13498000e+00
- 1 22 0 0 -0.67692862e-02 -0.20602389e-01 0.48298068e-01 0.00000000e+00
- 1 22 0 0 0.57924259e-01 0.18843371e-01 -0.70406869e-01 0.00000000e+00
- 1 211 0 0 -0.36653524e+00 0.61463380e+00 -0.48290230e+00 0.13957000e+00
- 1 -211 0 0 0.20270323e+00 0.72568601e-01 0.51499640e-01 0.13957000e+00
- 1 -211 0 0 0.23856041e+00 0.78999155e+00 -0.26474172e-01 0.13957000e+00
- 1 211 0 0 -0.64561830e-01 0.49103013e+00 0.15644079e+00 0.13957000e+00
- 2 111 640 641 -0.17264578e+00 0.96505692e+00 -0.79272253e-01 0.13498000e+00
- 1 -211 0 0 0.77724368e+00 0.51416033e+00 0.46320015e-01 0.13957000e+00
- 2 111 642 643 0.16932566e+00 -0.87240820e-01 -0.29549247e+00 0.13498000e+00
- 1 211 0 0 0.34090310e-01 0.77240373e+00 -0.16468807e+00 0.13957000e+00
- 1 -211 0 0 -0.38576800e-01 0.19437663e+01 0.73818306e+00 0.13957000e+00
- 1 2112 0 0 0.76844736e+00 0.99040925e+00 0.13331737e+01 0.93957000e+00
- 2 111 644 645 0.55195638e+00 0.26712222e+00 0.68751473e+00 0.13498000e+00
- 1 -2112 0 0 0.15743155e+01 0.11855709e+01 0.87927985e+00 0.93957000e+00
- 1 211 0 0 0.55605254e+00 0.24339415e+00 0.56641280e+00 0.13957000e+00
- 1 211 0 0 -0.20911072e+00 -0.95542047e+00 0.48965653e+01 0.13957000e+00
- 2 111 646 647 -0.17145841e+00 0.39286374e-01 0.19383720e+01 0.13498000e+00
- 1 22 0 0 0.48387129e-01 -0.19032341e+01 0.93468886e+01 0.00000000e+00
- 1 22 0 0 -0.21710284e-01 -0.14106907e+00 0.84828807e+00 0.00000000e+00
- 2 311 648 648 -0.24125511e+00 -0.15847131e+01 0.12536576e+02 0.49767000e+00
- 1 211 0 0 0.24700928e+00 -0.12160855e+01 0.76416366e+01 0.13957000e+00
- 1 -211 0 0 -0.90469127e-01 -0.91221095e+00 0.87823767e+01 0.13957000e+00
- 1 211 0 0 0.71028972e+00 -0.12533593e+01 0.12264878e+02 0.13957000e+00
- 1 -211 0 0 0.49941455e-01 -0.39029311e+00 0.82870908e+01 0.13957000e+00
- 1 211 0 0 -0.43281613e-01 -0.67187379e+00 0.83396905e+01 0.13957000e+00
- 2 111 649 650 -0.85229913e-01 -0.44406097e+00 0.14982411e+02 0.13498000e+00
- 1 22 0 0 -0.43658157e-01 -0.13975023e-01 0.38259817e+00 0.00000000e+00
- 1 22 0 0 0.60142821e-01 0.91858107e-01 0.70691640e+00 0.00000000e+00
- 1 2212 0 0 0.86854298e-01 -0.66459280e-01 0.26784015e+03 0.93827000e+00
- 2 111 651 652 -0.22030425e-01 -0.16716662e+00 0.13752313e+02 0.13498000e+00
- 1 -2212 0 0 -0.31130958e+00 0.40587092e-01 0.40623644e+03 0.93827000e+00
- 1 -211 0 0 -0.26871682e-01 0.29034539e-01 0.16317673e+02 0.13957000e+00
- 1 211 0 0 -0.24096850e+00 -0.38384562e+00 0.28307847e+03 0.13957000e+00
- 2 111 653 654 0.30764371e+00 0.82453509e-01 0.87190416e+02 0.13498000e+00
- 1 22 0 0 0.64011325e+00 -0.97075877e+00 0.10310681e+03 0.00000000e+00
- 1 22 0 0 0.15295882e+00 -0.18685741e+00 0.27016033e+02 0.00000000e+00
- 1 321 0 0 0.78122071e+00 -0.37305236e+00 0.82772799e+02 0.49360000e+00
- 1 -211 0 0 0.39864722e+00 -0.63741370e+00 0.68198931e+02 0.13957000e+00
- 1 130 0 0 0.17924789e+00 0.32160329e+00 0.27222787e+02 0.49767000e+00
- 2 310 655 656 0.22248746e+00 0.18673956e+00 0.35723900e+02 0.49767000e+00
- 1 -321 0 0 0.12672207e+01 -0.23546830e+00 0.18052401e+03 0.49360000e+00
- 1 211 0 0 0.83452384e-01 -0.67848584e-02 0.68869998e+01 0.13957000e+00
- 1 -211 0 0 -0.31540394e-01 0.14054263e+00 0.26620771e+02 0.13957000e+00
- 2 111 657 658 -0.27743487e+00 -0.28249725e+00 0.11531216e+02 0.13498000e+00
- 2 311 659 659 0.19103432e+01 -0.11953368e+01 0.22682550e+03 0.49767000e+00
- 1 211 0 0 0.42652733e+00 -0.97900005e-01 0.28533466e+02 0.13957000e+00
- 1 130 0 0 0.19098646e+01 0.50360820e+00 0.55693655e+02 0.49767000e+00
- 1 22 0 0 0.17985312e+00 -0.80667023e-01 0.10287725e+02 0.00000000e+00
- 1 22 0 0 0.49692275e+00 -0.41441061e+00 0.26010304e+02 0.00000000e+00
- 1 -211 0 0 0.37670161e+00 0.27281671e+00 0.26926126e+02 0.13957000e+00
- 1 211 0 0 0.23100155e+00 0.45266090e+00 0.19425978e+02 0.13957000e+00
- 2 111 660 661 0.35948674e+00 -0.11586568e-01 0.11798458e+02 0.13498000e+00
- 2 311 662 662 -0.19087812e+00 0.14122853e+00 0.66079905e+01 0.49767000e+00
- 1 211 0 0 0.19980948e+00 0.46487347e+00 0.86842398e+01 0.13957000e+00
- 1 22 0 0 0.20704895e-01 0.20904476e+00 0.44265278e+01 0.00000000e+00
- 1 22 0 0 0.35669760e-01 0.17931537e+00 0.19697396e+01 0.00000000e+00
- 1 22 0 0 -0.14710270e+00 0.58182380e+00 0.58924286e+01 0.00000000e+00
- 1 22 0 0 -0.60072470e-01 0.66513868e+00 0.56747523e+01 0.00000000e+00
- 1 211 0 0 -0.22836821e+00 0.32518460e+00 0.75742177e+01 0.13957000e+00
- 1 -211 0 0 -0.15833209e+00 0.55726734e-01 0.54276841e+01 0.13957000e+00
- 2 221 663 664 -0.15134371e+00 0.45523331e+00 0.17576459e+02 0.54745000e+00
- 2 310 665 666 -0.61420341e+00 -0.39334786e+00 0.52297287e+02 0.49767000e+00
- 1 22 0 0 -0.17327095e+00 0.60072802e-01 0.71111002e+01 0.00000000e+00
- 1 22 0 0 -0.47780239e+00 -0.39993032e-01 0.15397148e+02 0.00000000e+00
- 2 111 667 668 -0.40936072e+00 -0.79169931e-01 0.11094268e+02 0.13498000e+00
- 2 111 669 670 -0.40849155e+00 -0.10532574e+00 0.17461733e+02 0.13498000e+00
- 2 111 671 672 -0.40702720e+00 0.43784362e-01 0.18802299e+02 0.13498000e+00
- 1 211 0 0 -0.77393064e+00 -0.18117862e+00 0.21441024e+02 0.13957000e+00
- 1 -211 0 0 -0.10165181e+01 -0.14629729e+00 0.46182916e+02 0.13957000e+00
- 1 321 0 0 -0.13571622e+01 -0.55787592e+00 0.59500441e+02 0.49360000e+00
- 2 111 673 674 -0.13492604e+00 -0.25825281e+00 0.20775314e+02 0.13498000e+00
- 1 321 0 0 -0.23189166e+01 -0.15581895e+00 0.74984284e+02 0.49360000e+00
- 2 111 675 676 -0.21937849e+00 -0.38140773e-02 0.38988687e+01 0.13498000e+00
- 1 2212 0 0 -0.47048287e+00 0.50420899e+00 0.11170523e+02 0.93827000e+00
- 1 -211 0 0 -0.97502919e-01 -0.16438948e-01 0.11780327e+01 0.13957000e+00
- 1 -211 0 0 -0.35298801e+00 -0.11128652e+00 0.86965415e+00 0.13957000e+00
- 2 111 677 678 0.20912123e+00 -0.83518364e-01 0.43428979e+00 0.13498000e+00
- 1 -2212 0 0 0.62782116e+00 -0.30604002e+00 0.45102110e+01 0.93827000e+00
- 1 211 0 0 0.10443995e+00 0.64268299e-01 0.79232363e+00 0.13957000e+00
- 2 111 679 680 0.87132318e-01 -0.35583789e+00 0.25914481e+00 0.13498000e+00
- 2 111 681 682 0.56080082e-02 0.17493349e-01 0.15035288e+00 0.13498000e+00
- 2 221 683 685 0.92252823e-01 -0.66699747e+00 0.76649801e+00 0.54745000e+00
- 1 -211 0 0 -0.12338941e+00 -0.10294068e-01 0.30615296e+00 0.13957000e+00
- 1 211 0 0 0.32040430e+00 -0.16649909e+01 0.10325195e+01 0.13957000e+00
- 1 -2212 0 0 0.38321776e+00 -0.34044719e+00 0.26653360e+01 0.93827000e+00
- 1 211 0 0 -0.33468635e-01 0.19447042e+00 0.44426539e+00 0.13957000e+00
- 1 -211 0 0 -0.34753081e+00 -0.36796108e-02 0.16640694e+01 0.13957000e+00
- 1 211 0 0 0.16600195e+00 -0.37853378e+00 0.49396993e+01 0.13957000e+00
- 2 310 686 687 -0.49686032e+00 0.32736778e+00 0.11775202e+02 0.49767000e+00
- 1 22 0 0 0.53203947e+00 0.96042730e-01 0.15278108e+01 0.00000000e+00
- 2 113 688 689 0.33310906e+00 -0.19884416e+00 0.20071809e+01 0.64618992e+00
- 2 -311 690 690 -0.53649606e+00 -0.46683508e+00 0.25899701e+02 0.49767000e+00
- 1 -211 0 0 0.23736040e-01 0.10296825e+00 0.76161182e+01 0.13957000e+00
- 2 311 691 691 0.47233830e+00 0.31369507e+00 0.27229907e+01 0.49767000e+00
- 1 211 0 0 -0.85099190e-01 -0.70142441e-01 0.18679364e+01 0.13957000e+00
- 2 -311 692 692 0.16559460e-01 -0.22212069e+00 0.13069164e+02 0.49767000e+00
- 1 22 0 0 0.78234263e-02 0.46239423e-01 0.25129282e+02 0.00000000e+00
- 1 -211 0 0 0.47720749e+00 -0.61111385e+00 0.74393302e+02 0.13957000e+00
- 2 111 693 694 -0.11241002e+00 -0.43399052e+00 0.30269434e+02 0.13498000e+00
- 2 311 695 695 -0.20428616e+00 0.75704391e+00 0.26358025e+03 0.49767000e+00
- 1 211 0 0 0.52911779e-01 -0.79817028e-01 0.25641040e+02 0.13957000e+00
- 2 -311 696 696 0.89316504e-01 0.56073894e-01 0.37358917e+03 0.49767000e+00
- 2 111 697 698 -0.12357521e+00 0.45942951e+00 0.23130770e+03 0.13498000e+00
- 2 111 699 700 -0.11323725e+00 0.80095691e-02 0.71321658e+02 0.13498000e+00
- 2 111 701 702 0.15491619e-01 0.23876671e-01 0.33411303e+02 0.13498000e+00
- 2 111 703 704 -0.37757503e+00 0.80582057e-01 0.13720722e+03 0.13498000e+00
- 2 310 705 706 -0.42916749e+00 0.24654799e+00 -0.74015293e+01 0.49767000e+00
- 2 113 707 708 -0.10243927e+01 -0.77448839e-01 -0.13521209e+02 0.81140578e+00
- 2 111 709 710 -0.25120803e+00 -0.13095396e+00 -0.21535766e+01 0.13498000e+00
- 1 -321 0 0 -0.10635068e+00 0.49257820e+00 -0.10842926e+01 0.49360000e+00
- 2 111 711 712 -0.27890409e+00 0.69937094e+00 -0.23163216e+01 0.13498000e+00
- 1 211 0 0 -0.46683832e+00 0.10584721e+01 -0.27726634e+01 0.13957000e+00
- 2 111 713 714 0.24002498e+00 0.65028252e+00 -0.22622839e+01 0.13498000e+00
- 1 22 0 0 0.18964743e+00 0.33424363e+00 -0.14485107e+01 0.00000000e+00
- 1 22 0 0 0.44633817e+00 0.45357731e+00 -0.22042310e+01 0.00000000e+00
- 1 -211 0 0 -0.10314870e+00 0.11155322e+01 -0.29747072e+01 0.13957000e+00
- 2 111 715 716 0.28563481e-01 0.60302107e+00 -0.68776004e+00 0.13498000e+00
- 2 311 717 717 0.11558888e+00 0.54070504e+00 -0.37836068e+01 0.49767000e+00
- 1 211 0 0 0.16805032e+00 0.29602574e+00 -0.52320516e+00 0.13957000e+00
- 1 -321 0 0 -0.12384176e+00 0.43407500e+00 -0.36738175e+01 0.49360000e+00
- 1 211 0 0 -0.68453136e-01 0.32954144e-01 -0.13805435e+00 0.13957000e+00
- 1 2112 0 0 0.23630620e+00 0.11185557e+01 -0.72714609e+01 0.93957000e+00
- 1 -211 0 0 0.21270398e+00 0.20658339e+00 -0.31367718e+01 0.13957000e+00
- 1 -2112 0 0 0.66894774e+00 0.25630443e+01 -0.27995640e+02 0.93957000e+00
- 2 111 718 719 0.22001249e+00 0.33122311e+00 -0.25005831e+01 0.13498000e+00
- 1 211 0 0 0.96090785e-01 0.34743597e+00 -0.11563228e+02 0.13957000e+00
- 2 111 720 721 0.10832888e+00 0.54738771e+00 -0.30397674e+01 0.13498000e+00
- 1 22 0 0 0.92040512e+00 0.44301610e+00 -0.69059357e+01 0.00000000e+00
- 1 22 0 0 0.57155373e-01 0.28729528e+00 -0.31093197e+01 0.00000000e+00
- 1 211 0 0 0.35355764e+00 0.89377498e+00 -0.96795365e+01 0.13957000e+00
- 2 111 722 723 0.53897382e+00 0.15262051e+01 -0.29303623e+02 0.13498000e+00
- 1 -211 0 0 0.33789172e+00 0.11553810e+00 -0.28607004e+01 0.13957000e+00
- 2 111 724 726 0.37378734e-01 0.63375578e+00 -0.59110589e+01 0.13498000e+00
- 1 -211 0 0 0.14042862e+01 0.35277535e+00 -0.23535525e+02 0.13957000e+00
- 1 211 0 0 0.25543573e+01 -0.16708991e-01 -0.30501359e+02 0.13957000e+00
- 2 311 727 727 0.15599444e+01 0.58924187e-01 -0.27242060e+02 0.49767000e+00
- 1 211 0 0 -0.74969812e-01 -0.97211968e-01 -0.21269650e+01 0.13957000e+00
- 2 3122 728 729 0.10526312e+01 -0.53615819e+00 -0.14553513e+02 0.11156800e+01
- 2 111 730 731 0.13887626e+00 -0.34229952e-01 -0.49265223e+01 0.13498000e+00
- 1 22 0 0 0.20976672e+01 -0.89475308e+00 -0.34075231e+02 0.00000000e+00
- 1 22 0 0 0.85056453e+00 -0.31313126e+00 -0.14661091e+02 0.00000000e+00
- 1 211 0 0 0.36553909e+00 -0.48713059e+00 -0.61697204e+01 0.13957000e+00
- 1 -211 0 0 0.27324637e+00 -0.11134234e+01 -0.10504920e+02 0.13957000e+00
- 2 111 732 733 0.52155513e+00 -0.15514537e+01 -0.20796193e+02 0.13498000e+00
- 1 -211 0 0 0.20523836e+00 -0.63289054e+00 -0.92897406e+01 0.13957000e+00
- 1 211 0 0 0.69867528e+00 -0.83586761e+00 -0.75184986e+01 0.13957000e+00
- 1 211 0 0 0.19971693e+00 -0.56622937e+00 -0.46524445e+01 0.13957000e+00
- 2 111 734 735 0.83058310e+00 -0.54684487e+00 -0.14826787e+02 0.13498000e+00
- 1 -211 0 0 -0.82402202e-01 -0.13204110e+01 -0.15604360e+02 0.13957000e+00
- 2 111 736 737 0.28079671e+00 -0.95131228e+00 -0.64911490e+01 0.13498000e+00
- 1 22 0 0 0.33901538e+00 -0.16558572e+00 -0.10861729e+01 0.00000000e+00
- 1 22 0 0 0.73847753e+00 -0.89930933e+00 -0.68539813e+01 0.00000000e+00
- 1 22 0 0 0.77510935e+00 -0.90884213e+00 -0.32725091e+01 0.00000000e+00
- 1 22 0 0 0.65490885e+00 -0.60516679e+00 -0.25899276e+01 0.00000000e+00
- 1 -211 0 0 0.10152549e+00 -0.46647403e-01 -0.26703966e+01 0.13957000e+00
- 2 111 738 739 0.56940815e+00 -0.10649495e+01 -0.50304671e+01 0.13498000e+00
- 2 311 740 740 0.65142376e+00 -0.56682285e+00 -0.14168928e+01 0.49767000e+00
- 1 211 0 0 0.17767965e-01 -0.56820791e+00 -0.12140074e+01 0.13957000e+00
- 2 -311 741 741 0.53756908e+00 -0.15453943e+01 -0.24906095e+01 0.49767000e+00
- 2 111 742 743 -0.85042508e-01 -0.10141247e-01 -0.31392585e+00 0.13498000e+00
- 1 2112 0 0 -0.29863218e+00 -0.95012867e+00 -0.35658532e+01 0.93957000e+00
- 1 -211 0 0 0.10421404e+00 -0.14933381e+00 -0.48359310e+00 0.13957000e+00
- 1 -2112 0 0 0.72604742e-01 -0.21415330e+01 -0.27842347e+01 0.93957000e+00
- 1 211 0 0 0.16423913e+00 -0.24001500e+00 -0.68259872e+00 0.13957000e+00
- 1 211 0 0 -0.67096402e+00 -0.22076076e+00 -0.92369590e+00 0.13957000e+00
- 2 111 744 745 -0.99799211e+00 -0.28862674e+00 -0.40406611e+01 0.13498000e+00
- 1 22 0 0 -0.38422039e-01 0.37628447e-01 -0.50325060e+00 0.00000000e+00
- 1 22 0 0 -0.94338596e-02 -0.10193915e+00 -0.11920910e+01 0.00000000e+00
- 1 -211 0 0 -0.72742274e+00 -0.58726413e-01 -0.38472823e+01 0.13957000e+00
- 1 211 0 0 -0.40883241e-01 -0.53263129e-01 -0.52038974e+00 0.13957000e+00
- 2 111 746 747 -0.52826881e+00 0.12578792e+00 -0.15578005e+01 0.13498000e+00
- 1 -211 0 0 -0.41503137e-01 -0.30363171e+00 -0.13244217e+01 0.13957000e+00
- 2 111 748 749 -0.59122093e+00 0.19689113e+00 -0.16990164e+01 0.13498000e+00
- 1 -211 0 0 -0.60705070e+00 0.11706923e+00 -0.45260678e+01 0.13957000e+00
- 2 111 750 751 -0.73465085e+00 -0.71211785e+00 -0.55530252e+01 0.13498000e+00
- 1 -2212 0 0 -0.19197854e+01 -0.40026762e+00 -0.39279938e+02 0.93827000e+00
- 1 211 0 0 -0.19712447e+00 -0.74704143e-01 -0.63895547e+01 0.13957000e+00
- 2 -311 752 752 -0.78672166e+00 0.80771814e+00 -0.17072521e+02 0.49767000e+00
- 1 -211 0 0 -0.39272603e+00 0.10199520e+01 -0.16376774e+02 0.13957000e+00
- 1 2212 0 0 -0.45342978e-01 0.75490451e+00 -0.34899251e+02 0.93827000e+00
- 1 211 0 0 0.17920447e+00 0.83234053e-01 -0.29960715e+01 0.13957000e+00
- 1 22 0 0 -0.11251825e-01 -0.65111152e-01 -0.19553564e+01 0.00000000e+00
- 1 22 0 0 0.35295052e-01 0.83792672e-02 -0.71562248e+01 0.00000000e+00
- 2 -3122 753 754 -0.11725359e+00 -0.32172067e+00 -0.22700298e+02 0.11156800e+01
- 1 -211 0 0 -0.13672561e+00 0.13003336e+00 -0.75022229e+01 0.13957000e+00
- 1 22 0 0 -0.12485524e+00 -0.30850621e-01 -0.23958831e+01 0.00000000e+00
- 2 113 755 756 0.21914241e+00 0.13587445e-01 -0.37718824e+02 0.75050375e+00
- 2 311 757 757 -0.72876360e-01 -0.30900484e+00 -0.75325467e+02 0.49767000e+00
- 2 111 758 759 0.37116063e+00 -0.71087894e-01 -0.28703193e+02 0.13498000e+00
- 1 22 0 0 -0.42768076e+00 -0.47751985e+00 -0.40197649e+02 0.00000000e+00
- 2 113 760 761 -0.25196490e+00 -0.12112626e+00 -0.40862499e+02 0.61651542e+00
- 2 310 762 763 0.15294138e+00 -0.64775173e+00 -0.61308553e+02 0.49767000e+00
- 1 -211 0 0 -0.43114788e-01 -0.10770161e+01 -0.10261972e+03 0.13957000e+00
- 1 211 0 0 -0.22590448e+00 -0.50562151e+00 -0.12067368e+03 0.13957000e+00
- 1 211 0 0 0.68705795e-01 -0.47163845e-01 -0.15028440e+02 0.13957000e+00
- 2 111 764 765 0.61225795e+00 -0.88974131e+00 -0.32916189e+03 0.13498000e+00
- 1 -2112 0 0 -0.46875405e-01 -0.84327178e+00 -0.27134838e+03 0.93957000e+00
- 2 111 766 767 0.12456490e-01 -0.42570345e+00 -0.17255575e+03 0.13498000e+00
- 1 2112 0 0 0.73677280e+00 0.26099945e+00 -0.62763660e+03 0.93957000e+00
- 2 111 768 769 -0.11887704e+00 0.15678090e+00 -0.16522894e+03 0.13498000e+00
- 1 -211 0 0 -0.19371639e+00 0.21379867e-01 -0.77179765e+03 0.13957000e+00
- 1 211 0 0 0.74000519e+00 -0.17242049e+00 -0.51304351e+03 0.13957000e+00
- 1 22 0 0 0.91590318e-01 -0.12449586e+00 -0.10062280e+02 0.00000000e+00
- 1 22 0 0 0.30700757e-02 -0.74619597e-01 -0.16811533e+01 0.00000000e+00
- 2 -3122 770 771 0.41506880e+00 0.87453535e+00 -0.24219584e+02 0.11156800e+01
- 1 211 0 0 0.33172011e-01 -0.10130641e+00 -0.41755726e+01 0.13957000e+00
- 1 130 0 0 0.40776058e+00 0.17171426e+01 -0.24830156e+02 0.49767000e+00
- 1 2112 0 0 0.14827140e+01 0.97685710e+01 -0.17970572e+03 0.93957000e+00
- 1 -211 0 0 0.24888935e+00 0.10808053e+01 -0.22556303e+02 0.13957000e+00
- 1 22 0 0 0.12394423e+00 0.20484182e+00 -0.46463730e-01 0.00000000e+00
- 2 113 772 773 -0.14285891e+00 0.22855670e+01 0.13108503e+00 0.78928925e+00
- 1 211 0 0 0.18989604e+00 0.98982976e+00 0.42888572e+00 0.13957000e+00
- 2 111 774 775 0.33539705e+00 0.39472230e+00 0.35203372e+00 0.13498000e+00
- 1 -2112 0 0 -0.26438501e+00 -0.34787352e+00 0.11367469e+01 0.93957000e+00
- 2 111 776 777 -0.21567117e-02 -0.46083716e-01 0.36703705e+00 0.13498000e+00
- 1 22 0 0 -0.69071667e-01 -0.21007762e+00 0.34416561e+00 0.00000000e+00
- 1 22 0 0 0.13786774e+00 -0.55105226e+00 -0.64557171e-01 0.00000000e+00
- 2 -311 778 778 0.28074522e+00 -0.18532684e+01 0.30955066e+01 0.49767000e+00
- 1 -211 0 0 0.15933949e+00 -0.48213135e+00 0.36615459e+00 0.13957000e+00
- 1 22 0 0 -0.40467236e-01 -0.37312709e-01 0.43845736e-01 0.00000000e+00
- 1 22 0 0 -0.21638420e+00 -0.60741556e+00 0.10410809e+01 0.00000000e+00
- 1 130 0 0 -0.50922337e+00 -0.15609638e+01 -0.17365603e+01 0.49767000e+00
- 1 321 0 0 -0.86488745e+00 -0.19767687e+01 -0.18568833e+01 0.49360000e+00
- 1 -211 0 0 0.87273094e-02 -0.55911010e-01 -0.68315665e-01 0.13957000e+00
- 2 -311 779 779 -0.15138590e+01 -0.11688303e+00 -0.21865417e+00 0.49767000e+00
- 2 111 780 781 -0.65939746e+00 0.30806032e-01 0.26809256e+00 0.13498000e+00
- 1 211 0 0 -0.12664485e-01 0.22375934e+00 0.43388576e+00 0.13957000e+00
- 1 -211 0 0 -0.53838547e+00 0.79022921e+00 0.14241877e+01 0.13957000e+00
- 2 111 782 783 -0.36637918e+00 0.14673101e+00 0.37246635e+00 0.13498000e+00
- 2 -311 784 784 -0.21028273e+00 0.20902796e+00 0.33787888e+00 0.49767000e+00
- 1 -211 0 0 -0.70730528e+00 0.23946910e+00 0.95418156e+00 0.13957000e+00
- 1 22 0 0 0.59301964e-02 0.16862328e+01 0.32350717e+01 0.00000000e+00
- 1 22 0 0 0.28141676e-02 0.34207654e+00 0.53465234e+00 0.00000000e+00
- 1 211 0 0 0.31379172e+00 0.11659719e+01 0.16740850e+01 0.13957000e+00
- 1 -211 0 0 -0.38283828e+00 0.53455255e+00 0.17468642e+01 0.13957000e+00
- 1 -321 0 0 -0.27419151e+00 0.77758397e-02 -0.55339476e+00 0.49360000e+00
- 2 111 785 786 0.19144493e+00 0.16410185e+00 -0.16184356e+00 0.13498000e+00
- 1 211 0 0 0.30984843e+00 0.83018610e-01 -0.16894716e+01 0.13957000e+00
- 2 111 787 788 0.50749116e+00 0.10560631e+00 -0.15064388e+00 0.13498000e+00
- 1 -211 0 0 0.14887262e+00 -0.35370536e+00 -0.28675057e+02 0.13957000e+00
- 1 211 0 0 0.28752554e+00 -0.12942022e+00 -0.10978074e+03 0.13957000e+00
- 1 22 0 0 -0.29077653e+00 0.30238462e+00 -0.28645508e+02 0.00000000e+00
- 1 22 0 0 -0.67224740e+00 0.72171862e+00 -0.82992810e+02 0.00000000e+00
- 1 22 0 0 0.51421996e+00 0.26891997e+00 0.61238630e+00 0.00000000e+00
- 1 22 0 0 0.74972873e+00 0.23988284e+00 0.71862663e+00 0.00000000e+00
- 1 22 0 0 0.56602142e-01 -0.91236858e-01 0.13915233e+00 0.00000000e+00
- 1 22 0 0 0.61085930e+00 -0.36113912e+00 0.79953687e+00 0.00000000e+00
- 1 22 0 0 -0.10188623e-02 0.38350275e-01 0.11347195e-01 0.00000000e+00
- 1 22 0 0 0.19075658e+00 -0.37345644e-01 0.40702955e-01 0.00000000e+00
- 1 22 0 0 -0.47876188e+00 -0.34264572e+00 -0.11816455e+00 0.00000000e+00
- 1 22 0 0 -0.53197386e-01 -0.98865891e-01 0.75131401e-02 0.00000000e+00
- 1 22 0 0 -0.75242208e-01 0.16241843e+00 -0.15165605e+00 0.00000000e+00
- 1 22 0 0 0.38880038e-01 0.20616396e-01 -0.84429751e-01 0.00000000e+00
- 1 22 0 0 0.36617273e-02 0.12003948e+00 0.20708785e-01 0.00000000e+00
- 1 22 0 0 0.45034504e-01 -0.44077130e-02 -0.45342199e-01 0.00000000e+00
- 1 22 0 0 -0.85599568e-02 0.52494033e-01 -0.24871315e+00 0.00000000e+00
- 1 22 0 0 -0.48446863e-01 -0.31177285e-01 -0.40017961e-01 0.00000000e+00
- 1 130 0 0 -0.59624853e+00 -0.36100450e+00 -0.48254795e+00 0.49767000e+00
- 2 111 789 790 0.23477876e+00 0.42910502e+00 0.12870580e+01 0.13498000e+00
- 2 111 791 792 -0.61316184e-01 0.57640433e-01 0.13229323e+00 0.13498000e+00
- 1 22 0 0 0.11277191e+00 -0.41532411e+00 0.34862957e+01 0.00000000e+00
- 1 22 0 0 -0.11003072e-01 -0.26725641e-01 0.62867678e+00 0.00000000e+00
- 1 22 0 0 -0.70733036e+01 0.11953889e+01 -0.16250256e+02 0.00000000e+00
- 1 22 0 0 -0.18559588e+01 0.31561935e+00 -0.40963240e+01 0.00000000e+00
- 1 22 0 0 -0.41570183e+00 0.20020493e+00 -0.15117573e+01 0.00000000e+00
- 1 22 0 0 -0.35493118e+00 0.25993575e+00 -0.11220115e+01 0.00000000e+00
- 1 22 0 0 -0.37714943e+00 0.15803983e+00 -0.10462751e+01 0.00000000e+00
- 1 22 0 0 -0.60427956e+01 0.19969264e+01 -0.15745381e+02 0.00000000e+00
- 1 22 0 0 -0.56812438e+00 0.40153297e-01 -0.11614473e+01 0.00000000e+00
- 1 22 0 0 -0.12071658e+01 0.90070683e-01 -0.29494686e+01 0.00000000e+00
- 1 22 0 0 0.13409237e-01 -0.49304491e-01 -0.45724615e-01 0.00000000e+00
- 1 22 0 0 0.17916308e-01 -0.15504586e+00 0.96499124e-01 0.00000000e+00
- 1 22 0 0 -0.43006599e+00 0.25118894e+00 -0.33056076e-01 0.00000000e+00
- 1 22 0 0 -0.62845230e-01 0.13806589e-01 -0.52108469e-01 0.00000000e+00
- 1 22 0 0 -0.94795671e-01 0.51876241e+00 -0.11007128e+00 0.00000000e+00
- 1 22 0 0 -0.77850113e-01 0.44629451e+00 0.30799031e-01 0.00000000e+00
- 1 22 0 0 0.20511020e-01 -0.19167110e-01 -0.16475618e+00 0.00000000e+00
- 1 22 0 0 0.14881464e+00 -0.68073710e-01 -0.13073629e+00 0.00000000e+00
- 1 22 0 0 0.31231078e+00 0.19540815e+00 0.48605146e+00 0.00000000e+00
- 1 22 0 0 0.23964559e+00 0.71714072e-01 0.20146327e+00 0.00000000e+00
- 1 22 0 0 -0.11092444e+00 0.13370654e-01 0.55829873e+00 0.00000000e+00
- 1 22 0 0 -0.60533970e-01 0.25915719e-01 0.13800733e+01 0.00000000e+00
- 1 130 0 0 -0.24125511e+00 -0.15847131e+01 0.12536576e+02 0.49767000e+00
- 1 22 0 0 -0.50548847e-01 -0.11546008e+00 0.60652264e+01 0.00000000e+00
- 1 22 0 0 -0.34681066e-01 -0.32860090e+00 0.89171845e+01 0.00000000e+00
- 1 22 0 0 0.48669648e-01 -0.42106862e-01 0.61659786e+01 0.00000000e+00
- 1 22 0 0 -0.70700072e-01 -0.12505976e+00 0.75863349e+01 0.00000000e+00
- 1 22 0 0 0.21567508e+00 0.64092712e-01 0.74496811e+02 0.00000000e+00
- 1 22 0 0 0.91968626e-01 0.18360797e-01 0.12693605e+02 0.00000000e+00
- 1 -211 0 0 -0.21668525e-01 -0.70030582e-01 0.55331207e+01 0.13957000e+00
- 1 211 0 0 0.24415598e+00 0.25677015e+00 0.30190779e+02 0.13957000e+00
- 1 22 0 0 -0.25947178e-01 -0.34681373e-01 0.48099452e+00 0.00000000e+00
- 1 22 0 0 -0.25148770e+00 -0.24781588e+00 0.11050222e+02 0.00000000e+00
- 2 310 793 794 0.19103432e+01 -0.11953368e+01 0.22682550e+03 0.49767000e+00
- 1 22 0 0 0.86901181e-01 0.29612393e-01 0.47086599e+01 0.00000000e+00
- 1 22 0 0 0.27258556e+00 -0.41198962e-01 0.70897981e+01 0.00000000e+00
- 2 310 795 796 -0.19087812e+00 0.14122853e+00 0.66079905e+01 0.49767000e+00
- 1 22 0 0 -0.20753011e+00 0.57088791e-01 0.11379291e+02 0.00000000e+00
- 1 22 0 0 0.56186400e-01 0.39814452e+00 0.61971681e+01 0.00000000e+00
- 1 211 0 0 -0.36497312e+00 -0.43038064e+00 0.39017182e+02 0.13957000e+00
- 1 -211 0 0 -0.24923029e+00 0.37032776e-01 0.13280105e+02 0.13957000e+00
- 1 22 0 0 0.31972904e-02 -0.17185273e-01 0.23873361e+00 0.00000000e+00
- 1 22 0 0 -0.41255801e+00 -0.61984658e-01 0.10855535e+02 0.00000000e+00
- 1 22 0 0 -0.24032418e+00 -0.31696904e-01 0.74753354e+01 0.00000000e+00
- 1 22 0 0 -0.16816737e+00 -0.73628838e-01 0.99863975e+01 0.00000000e+00
- 1 22 0 0 -0.39077520e+00 0.66877326e-01 0.16476710e+02 0.00000000e+00
- 1 22 0 0 -0.16251998e-01 -0.23092964e-01 0.23255889e+01 0.00000000e+00
- 1 22 0 0 -0.10023190e+00 -0.55171154e-01 0.80805719e+01 0.00000000e+00
- 1 22 0 0 -0.34694148e-01 -0.20308166e+00 0.12694742e+02 0.00000000e+00
- 1 22 0 0 -0.14915788e+00 -0.66652116e-01 0.24643130e+01 0.00000000e+00
- 1 22 0 0 -0.70220606e-01 0.62838038e-01 0.14345557e+01 0.00000000e+00
- 1 22 0 0 0.20366189e+00 -0.37561723e-01 0.29299086e+00 0.00000000e+00
- 1 22 0 0 0.54593406e-02 -0.45956641e-01 0.14129894e+00 0.00000000e+00
- 1 22 0 0 0.12263548e+00 -0.24460115e+00 0.17861916e+00 0.00000000e+00
- 1 22 0 0 -0.35503159e-01 -0.11123674e+00 0.80525657e-01 0.00000000e+00
- 1 22 0 0 -0.17313010e-01 0.57639007e-01 0.18189404e-01 0.00000000e+00
- 1 22 0 0 0.22921018e-01 -0.40145658e-01 0.13216348e+00 0.00000000e+00
- 2 111 797 798 -0.62121057e-01 -0.25263074e+00 0.33766668e+00 0.13498000e+00
- 2 111 799 800 0.16194634e-01 -0.11114591e+00 0.25948424e+00 0.13498000e+00
- 2 111 801 802 0.13817925e+00 -0.30322081e+00 0.16934709e+00 0.13498000e+00
- 1 -211 0 0 -0.27287964e+00 0.16865903e+00 0.92798215e+01 0.13957000e+00
- 1 211 0 0 -0.22398068e+00 0.15870875e+00 0.24953805e+01 0.13957000e+00
- 1 -211 0 0 0.23517237e+00 -0.25670668e+00 0.18952627e+01 0.13957000e+00
- 1 211 0 0 0.97936692e-01 0.57862520e-01 0.11191818e+00 0.13957000e+00
- 1 130 0 0 -0.53649606e+00 -0.46683508e+00 0.25899701e+02 0.49767000e+00
- 1 130 0 0 0.47233830e+00 0.31369507e+00 0.27229907e+01 0.49767000e+00
- 2 310 803 804 0.16559460e-01 -0.22212069e+00 0.13069164e+02 0.49767000e+00
- 1 22 0 0 -0.11829569e-01 -0.89006269e-01 0.10270497e+02 0.00000000e+00
- 1 22 0 0 -0.10058045e+00 -0.34498426e+00 0.19998937e+02 0.00000000e+00
- 1 130 0 0 -0.20428616e+00 0.75704391e+00 0.26358025e+03 0.49767000e+00
- 2 310 805 806 0.89316504e-01 0.56073894e-01 0.37358917e+03 0.49767000e+00
- 1 22 0 0 -0.32617863e-01 0.32440632e+00 0.13687424e+03 0.00000000e+00
- 1 22 0 0 -0.90957350e-01 0.13502319e+00 0.94433463e+02 0.00000000e+00
- 1 22 0 0 -0.80608932e-02 -0.53581193e-01 0.20067002e+02 0.00000000e+00
- 1 22 0 0 -0.10517636e+00 0.61590762e-01 0.51254656e+02 0.00000000e+00
- 1 22 0 0 -0.23095953e-01 0.14764128e-01 0.30526653e+02 0.00000000e+00
- 1 22 0 0 0.38587572e-01 0.91125431e-02 0.28846501e+01 0.00000000e+00
- 1 22 0 0 -0.28884723e+00 0.10000959e+00 0.11785800e+03 0.00000000e+00
- 1 22 0 0 -0.88727806e-01 -0.19427537e-01 0.19349222e+02 0.00000000e+00
- 2 111 807 808 -0.50221908e-01 0.24340515e+00 -0.22896346e+01 0.13498000e+00
- 2 111 809 810 -0.37894559e+00 0.31428419e-02 -0.51118947e+01 0.13498000e+00
- 1 -211 0 0 -0.41181375e+00 -0.25099990e+00 -0.92661113e+01 0.13957000e+00
- 1 211 0 0 -0.61257895e+00 0.17355106e+00 -0.42550973e+01 0.13957000e+00
- 1 22 0 0 -0.25752476e+00 -0.99960113e-01 -0.20321753e+01 0.00000000e+00
- 1 22 0 0 0.63167331e-02 -0.30993850e-01 -0.12140126e+00 0.00000000e+00
- 1 22 0 0 -0.11589565e+00 0.34763034e+00 -0.13307897e+01 0.00000000e+00
- 1 22 0 0 -0.16300844e+00 0.35174060e+00 -0.98553190e+00 0.00000000e+00
- 1 22 0 0 0.66105682e-01 0.81925926e-01 -0.47107974e+00 0.00000000e+00
- 1 22 0 0 0.17391930e+00 0.56835659e+00 -0.17912042e+01 0.00000000e+00
- 1 22 0 0 0.62934200e-01 0.55580674e+00 -0.60780401e+00 0.00000000e+00
- 1 22 0 0 -0.34370719e-01 0.47214330e-01 -0.79956026e-01 0.00000000e+00
- 1 130 0 0 0.11558888e+00 0.54070504e+00 -0.37836068e+01 0.49767000e+00
- 1 22 0 0 0.13431263e+00 0.84755614e-01 -0.91233939e+00 0.00000000e+00
- 1 22 0 0 0.85699870e-01 0.24646749e+00 -0.15882437e+01 0.00000000e+00
- 1 22 0 0 0.49535534e-01 0.48742607e+00 -0.25665716e+01 0.00000000e+00
- 1 22 0 0 0.58793347e-01 0.59961636e-01 -0.47319574e+00 0.00000000e+00
- 1 22 0 0 -0.38798206e-02 0.45805787e-01 -0.64843885e+00 0.00000000e+00
- 1 22 0 0 0.54285364e+00 0.14803994e+01 -0.28655184e+02 0.00000000e+00
- 1 22 0 0 0.43493440e-01 0.92085208e-01 -0.12506616e+01 0.00000000e+00
- 1 11 0 0 -0.86778536e-02 0.38234702e+00 -0.32846550e+01 0.51000000e-03
- 1 -11 0 0 0.25631475e-02 0.15932355e+00 -0.13757424e+01 0.51000000e-03
- 2 310 811 812 0.15599444e+01 0.58924187e-01 -0.27242060e+02 0.49767000e+00
- 1 2212 0 0 0.86254828e+00 -0.36711219e+00 -0.11319742e+02 0.93827000e+00
- 1 -211 0 0 0.19008297e+00 -0.16904600e+00 -0.32337711e+01 0.13957000e+00
- 1 22 0 0 0.73987549e-01 -0.41802102e-01 -0.42331964e+01 0.00000000e+00
- 1 22 0 0 0.64888712e-01 0.75721502e-02 -0.69332586e+00 0.00000000e+00
- 1 22 0 0 0.48445080e-01 -0.60742167e-01 -0.11163152e+01 0.00000000e+00
- 1 22 0 0 0.47311005e+00 -0.14907116e+01 -0.19679878e+02 0.00000000e+00
- 1 22 0 0 0.46017533e+00 -0.23130357e+00 -0.80838316e+01 0.00000000e+00
- 1 22 0 0 0.37040777e+00 -0.31554130e+00 -0.67429550e+01 0.00000000e+00
- 1 22 0 0 0.44179627e-01 -0.34638794e+00 -0.24853417e+01 0.00000000e+00
- 1 22 0 0 0.23661708e+00 -0.60492434e+00 -0.40058073e+01 0.00000000e+00
- 1 22 0 0 0.42683270e+00 -0.69005300e+00 -0.35235266e+01 0.00000000e+00
- 1 22 0 0 0.14257544e+00 -0.37489653e+00 -0.15069404e+01 0.00000000e+00
- 2 310 813 814 0.65142376e+00 -0.56682285e+00 -0.14168928e+01 0.49767000e+00
- 1 130 0 0 0.53756908e+00 -0.15453943e+01 -0.24906095e+01 0.49767000e+00
- 1 22 0 0 -0.87164290e-01 0.46724569e-01 -0.23518609e+00 0.00000000e+00
- 1 22 0 0 0.21217819e-02 -0.56865816e-01 -0.78739764e-01 0.00000000e+00
- 1 22 0 0 -0.43015786e+00 -0.19388157e+00 -0.18496104e+01 0.00000000e+00
- 1 22 0 0 -0.56783425e+00 -0.94745165e-01 -0.21910507e+01 0.00000000e+00
- 1 22 0 0 -0.30356781e+00 0.25404150e-01 -0.71344282e+00 0.00000000e+00
- 1 22 0 0 -0.22470100e+00 0.10038378e+00 -0.84435764e+00 0.00000000e+00
- 1 22 0 0 -0.33629336e+00 0.60825178e-01 -0.78661098e+00 0.00000000e+00
- 1 22 0 0 -0.25492757e+00 0.13606595e+00 -0.91240546e+00 0.00000000e+00
- 1 22 0 0 -0.13777621e+00 -0.67646393e-01 -0.85613262e+00 0.00000000e+00
- 1 22 0 0 -0.59687464e+00 -0.64447146e+00 -0.46968926e+01 0.00000000e+00
- 1 130 0 0 -0.78672166e+00 0.80771814e+00 -0.17072521e+02 0.49767000e+00
- 1 -2212 0 0 -0.13796658e+00 -0.33494946e+00 -0.18220042e+02 0.93827000e+00
- 1 211 0 0 0.20712996e-01 0.13228793e-01 -0.44802561e+01 0.13957000e+00
- 1 -211 0 0 0.64431392e-01 -0.33183766e+00 -0.14564469e+02 0.13957000e+00
- 1 211 0 0 0.15471102e+00 0.34542511e+00 -0.23154355e+02 0.13957000e+00
- 2 310 815 816 -0.72876360e-01 -0.30900484e+00 -0.75325467e+02 0.49767000e+00
- 1 22 0 0 0.31166701e-01 0.32709216e-01 -0.37785854e+01 0.00000000e+00
- 1 22 0 0 0.33999393e+00 -0.10379711e+00 -0.24924608e+02 0.00000000e+00
- 1 211 0 0 -0.13802409e+00 0.86893534e-01 -0.50625727e+01 0.13957000e+00
- 1 -211 0 0 -0.11394080e+00 -0.20801979e+00 -0.35799926e+02 0.13957000e+00
- 1 211 0 0 -0.14757672e-01 0.13901816e-02 -0.13460902e+02 0.13957000e+00
- 1 -211 0 0 0.16769906e+00 -0.64914191e+00 -0.47847651e+02 0.13957000e+00
- 1 22 0 0 0.58076881e+00 -0.84057703e+00 -0.29963809e+03 0.00000000e+00
- 1 22 0 0 0.31489134e-01 -0.49164283e-01 -0.29523802e+02 0.00000000e+00
- 1 22 0 0 0.53717903e-01 -0.38478646e+00 -0.14862936e+03 0.00000000e+00
- 1 22 0 0 -0.41261413e-01 -0.40916983e-01 -0.23926388e+02 0.00000000e+00
- 1 22 0 0 -0.66621256e-01 0.52022587e-01 -0.11687507e+03 0.00000000e+00
- 1 22 0 0 -0.52255788e-01 0.10475832e+00 -0.48353867e+02 0.00000000e+00
- 1 -2212 0 0 0.39335166e+00 0.66940866e+00 -0.21071406e+02 0.93827000e+00
- 1 211 0 0 0.21717146e-01 0.20512669e+00 -0.31481788e+01 0.13957000e+00
- 1 211 0 0 -0.13021167e+00 0.11833050e+01 0.43289598e+00 0.13957000e+00
- 1 -211 0 0 -0.12647240e-01 0.11022619e+01 -0.30181095e+00 0.13957000e+00
- 1 22 0 0 0.32874858e+00 0.35723723e+00 0.28332792e+00 0.00000000e+00
- 1 22 0 0 0.66484658e-02 0.37485067e-01 0.68705805e-01 0.00000000e+00
- 1 22 0 0 -0.52454227e-01 0.14756626e-01 0.22269204e+00 0.00000000e+00
- 1 22 0 0 0.50297515e-01 -0.60840342e-01 0.14434502e+00 0.00000000e+00
- 1 130 0 0 0.28074522e+00 -0.18532684e+01 0.30955066e+01 0.49767000e+00
- 1 130 0 0 -0.15138590e+01 -0.11688303e+00 -0.21865417e+00 0.49767000e+00
- 1 22 0 0 -0.16395928e+00 0.61766457e-01 0.44829572e-01 0.00000000e+00
- 1 22 0 0 -0.49543819e+00 -0.30960425e-01 0.22326299e+00 0.00000000e+00
- 1 22 0 0 -0.19368956e+00 0.13298188e+00 0.27011091e+00 0.00000000e+00
- 1 22 0 0 -0.17268962e+00 0.13749132e-01 0.10235544e+00 0.00000000e+00
- 2 310 817 818 -0.21028273e+00 0.20902796e+00 0.33787888e+00 0.49767000e+00
- 1 22 0 0 0.78762344e-01 0.15216627e+00 -0.11289054e+00 0.00000000e+00
- 1 22 0 0 0.11268258e+00 0.11935585e-01 -0.48953015e-01 0.00000000e+00
- 1 22 0 0 0.37539133e+00 0.12684137e+00 -0.14685397e+00 0.00000000e+00
- 1 22 0 0 0.13209983e+00 -0.21235057e-01 -0.37899029e-02 0.00000000e+00
- 1 22 0 0 0.14426106e-01 -0.81241591e-02 0.62548829e-01 0.00000000e+00
- 1 22 0 0 0.22035266e+00 0.43722918e+00 0.12245091e+01 0.00000000e+00
- 1 22 0 0 -0.37045685e-01 0.86164140e-01 0.30818761e-01 0.00000000e+00
- 1 22 0 0 -0.24270499e-01 -0.28523707e-01 0.10147447e+00 0.00000000e+00
- 1 -211 0 0 0.10698247e+01 -0.86623811e+00 0.14714779e+03 0.13957000e+00
- 1 211 0 0 0.84051846e+00 -0.32909867e+00 0.79677704e+02 0.13957000e+00
- 1 -211 0 0 -0.47422492e-01 0.25055763e+00 0.47737296e+01 0.13957000e+00
- 1 211 0 0 -0.14345563e+00 -0.10932910e+00 0.18342609e+01 0.13957000e+00
- 1 22 0 0 -0.49288568e-01 -0.25525000e+00 0.34510328e+00 0.00000000e+00
- 1 22 0 0 -0.12832489e-01 0.26192592e-02 -0.74366008e-02 0.00000000e+00
- 1 22 0 0 0.23602506e-01 -0.12885353e+00 0.26298528e+00 0.00000000e+00
- 1 22 0 0 -0.74078717e-02 0.17707621e-01 -0.35010375e-02 0.00000000e+00
- 1 22 0 0 0.11085430e-01 -0.25155866e-02 0.47676669e-01 0.00000000e+00
- 1 22 0 0 0.12709382e+00 -0.30070523e+00 0.12167043e+00 0.00000000e+00
- 2 111 819 820 0.87500392e-01 -0.25563508e+00 0.45876046e+01 0.13498000e+00
- 2 111 821 823 -0.70940932e-01 0.33514385e-01 0.84815589e+01 0.13498000e+00
- 1 -211 0 0 0.34261686e-02 -0.12741890e+00 0.26511294e+03 0.13957000e+00
- 1 211 0 0 0.85890336e-01 0.18349280e+00 0.10847623e+03 0.13957000e+00
- 1 22 0 0 -0.92059300e-01 0.20977469e+00 -0.18728662e+01 0.00000000e+00
- 1 22 0 0 0.41837392e-01 0.33630462e-01 -0.41676835e+00 0.00000000e+00
- 1 22 0 0 -0.36742510e+00 -0.17482949e-01 -0.49897734e+01 0.00000000e+00
- 1 22 0 0 -0.11520485e-01 0.20625790e-01 -0.12212126e+00 0.00000000e+00
- 1 -211 0 0 0.51033121e+00 -0.15527976e+00 -0.80687798e+01 0.13957000e+00
- 1 211 0 0 0.10496132e+01 0.21420394e+00 -0.19173280e+02 0.13957000e+00
- 1 -211 0 0 0.35465104e-01 -0.46389072e-01 -0.98369750e-01 0.13957000e+00
- 1 211 0 0 0.61595866e+00 -0.52043378e+00 -0.13185231e+01 0.13957000e+00
- 1 211 0 0 -0.19784923e-01 -0.35528360e-01 -0.65747264e+01 0.13957000e+00
- 1 -211 0 0 -0.53091436e-01 -0.27347648e+00 -0.68750740e+02 0.13957000e+00
- 1 -211 0 0 -0.23207433e+00 0.26819383e+00 0.11112997e+00 0.13957000e+00
- 1 211 0 0 0.21791602e-01 -0.59165872e-01 0.22674890e+00 0.13957000e+00
- 1 22 0 0 0.48196688e-01 -0.18055208e+00 0.39373823e+01 0.00000000e+00
- 1 22 0 0 0.39303704e-01 -0.75082998e-01 0.65022239e+00 0.00000000e+00
- 1 22 0 0 0.34081457e-01 -0.16222954e-01 0.19906521e+01 0.00000000e+00
- 1 -11 0 0 -0.88122406e-01 0.42174084e-01 0.58339990e+01 0.51000000e-03
- 1 11 0 0 -0.16899984e-01 0.75632548e-02 0.65690772e+00 0.51000000e-03
- 914
- 2 25 2 3 -0.57998516e+01 0.61118093e+02 -0.40141642e+03 0.12500041e+03
- 2 23 4 5 0.15481178e+02 0.10870705e+02 -0.14151329e+03 0.30605871e+02
- 2 23 6 8 -0.21281030e+02 0.50247388e+02 -0.25990313e+03 0.85100734e+02
- 1 13 0 0 -0.39060272e+01 0.15512672e+02 -0.59302847e+02 0.10566000e+00
- 1 -13 0 0 0.19387205e+02 -0.46419666e+01 -0.82210441e+02 0.10566000e+00
- 1 13 0 0 -0.20404785e+02 0.10719843e+02 -0.89299953e+01 0.10566000e+00
- 1 -13 0 0 0.27571629e+01 0.21414573e+02 -0.13824279e+03 0.10566000e+00
- 1 22 0 0 -0.36334079e+01 0.18112972e+02 -0.11273035e+03 0.00000000e+00
- 2 1 125 125 -0.12854692e+02 0.35754466e+01 0.33805234e+01 0.33000000e+00
- 2 21 125 125 -0.21596492e+01 0.60285093e+00 0.53548024e+00 0.00000000e+00
- 2 21 125 125 -0.11926549e+02 0.31412682e+01 0.14356926e+01 0.00000000e+00
- 2 21 125 125 -0.32838494e+02 0.85960974e+01 0.19579981e+01 0.00000000e+00
- 2 21 125 125 -0.16009746e+01 0.56527146e+00 0.43556837e+01 0.00000000e+00
- 2 21 125 125 -0.24667322e+01 -0.15806312e+00 0.63772762e+01 0.00000000e+00
- 2 21 125 125 -0.29016769e+00 0.40875035e+00 0.21128388e+01 0.00000000e+00
- 2 21 125 125 -0.26021741e+01 0.33972432e+01 0.18147919e+02 0.00000000e+00
- 2 21 125 125 -0.19224112e+01 0.96199022e+00 0.10640951e+02 0.00000000e+00
- 2 21 125 125 -0.33597886e+01 -0.52851803e+00 0.21704648e+02 0.00000000e+00
- 2 21 125 125 -0.41158654e+01 -0.61751464e+00 0.29054806e+02 0.00000000e+00
- 2 21 125 125 -0.13345777e+01 -0.28602162e+00 0.11823109e+02 0.00000000e+00
- 2 21 125 125 -0.11845960e+01 -0.82798033e+00 0.23670371e+02 0.00000000e+00
- 2 21 125 125 -0.23142190e+01 0.15080603e+00 0.64959097e+02 0.00000000e+00
- 2 21 125 125 -0.42041437e+00 0.51754461e+00 0.16100789e+02 0.00000000e+00
- 2 21 125 125 -0.43744623e+00 0.37496378e+00 0.11189222e+02 0.00000000e+00
- 2 21 125 125 -0.19529191e+00 0.61624661e+00 0.68076740e+01 0.00000000e+00
- 2 21 125 125 -0.24968128e+00 0.24830543e+01 0.40642152e+02 0.00000000e+00
- 2 21 125 125 -0.31080289e+00 0.25717076e+01 0.15337239e+03 0.00000000e+00
- 2 21 125 125 -0.54295833e+00 0.20789908e+01 0.18324503e+03 0.00000000e+00
- 2 21 125 125 -0.32184590e+00 0.31034289e+01 0.22996173e+03 0.00000000e+00
- 2 21 125 125 0.11845960e+01 0.82798033e+00 0.36444188e+03 0.00000000e+00
- 2 21 125 125 0.32184590e+00 -0.31034289e+01 0.17883841e+04 0.00000000e+00
- 2 21 125 125 -0.21192129e+00 -0.48654860e+00 0.66373611e+00 0.00000000e+00
- 2 21 125 125 0.27442877e+01 0.31074406e+01 0.70807987e+01 0.00000000e+00
- 2 21 125 125 0.20502994e+00 -0.15943188e+00 0.21098195e+01 0.00000000e+00
- 2 21 125 125 0.14377780e+01 0.71165118e+00 0.10667945e+01 0.00000000e+00
- 2 21 125 125 0.22803400e+00 -0.91437765e+00 0.26733706e+01 0.00000000e+00
- 2 21 125 125 0.53871175e-01 -0.11805092e+01 0.14268209e+02 0.00000000e+00
- 2 21 125 125 -0.14600993e+00 -0.28908316e+00 0.55234937e+00 0.00000000e+00
- 2 21 125 125 -0.70614750e+00 -0.48074225e+00 0.28503314e+01 0.00000000e+00
- 2 21 125 125 -0.30029852e+01 0.36960876e+00 0.29869472e+02 0.00000000e+00
- 2 2103 125 125 0.11646813e+01 0.18130825e+01 0.32925012e+04 0.77133000e+00
- 2 2 185 185 0.68693319e+02 -0.81413106e+02 -0.89529111e+03 0.33000000e+00
- 2 21 185 185 -0.19207884e+00 -0.18422183e+00 -0.45358487e-01 0.00000000e+00
- 2 21 185 185 0.31080289e+00 -0.25717076e+01 -0.68451202e+01 0.00000000e+00
- 2 21 185 185 -0.16588312e+01 0.36789502e+01 -0.12439400e+02 0.00000000e+00
- 2 21 185 185 -0.16381078e+01 0.20055662e+00 -0.43574293e+01 0.00000000e+00
- 2 21 185 185 -0.38759681e+01 0.10993622e+01 -0.15073311e+02 0.00000000e+00
- 2 21 185 185 -0.50946733e+00 0.90566000e+00 -0.56256964e+01 0.00000000e+00
- 2 21 185 185 -0.30037294e+01 0.39283726e+01 -0.41963084e+02 0.00000000e+00
- 2 21 185 185 -0.10003119e+01 -0.81738737e-01 -0.57413677e+01 0.00000000e+00
- 2 21 185 185 -0.11123239e+01 -0.18145220e+00 -0.85669799e+01 0.00000000e+00
- 2 21 185 185 -0.34537504e+01 -0.10128054e+01 -0.52694555e+02 0.00000000e+00
- 2 21 185 185 -0.18330830e+01 -0.30027145e+00 -0.82745513e+02 0.00000000e+00
- 2 21 185 185 -0.32281002e+01 -0.68628150e-01 -0.20841915e+03 0.00000000e+00
- 2 21 185 185 -0.12501696e+01 -0.30399239e+00 -0.11533259e+03 0.00000000e+00
- 2 21 185 185 0.30037294e+01 -0.39283726e+01 -0.50079925e+02 0.00000000e+00
- 2 21 185 185 0.63348284e-02 0.34239523e+00 -0.26649552e+02 0.00000000e+00
- 2 21 185 185 -0.35090457e+01 0.61274582e+00 -0.27825600e+03 0.00000000e+00
- 2 21 185 185 -0.29888349e+01 0.13609235e+01 -0.37104085e+03 0.00000000e+00
- 2 2203 185 185 0.18029233e+01 -0.24358260e+00 -0.31189737e+04 0.77133000e+00
- 2 2 236 236 -0.92298414e+00 0.46248043e+01 0.81735479e+01 0.00000000e+00
- 2 21 236 236 0.63553122e+00 0.12887212e+01 0.50040271e+01 0.00000000e+00
- 2 21 236 236 0.41158654e+01 0.61751464e+00 0.11561784e+02 0.00000000e+00
- 2 21 236 236 0.54295833e+00 -0.20789908e+01 0.58606167e+01 0.00000000e+00
- 2 21 236 236 0.50946733e+00 -0.90566000e+00 0.22194259e+01 0.00000000e+00
- 2 21 236 236 0.16588312e+01 -0.36789502e+01 0.10033802e+02 0.00000000e+00
- 2 21 236 236 0.26021741e+01 -0.33972432e+01 0.15729648e+02 0.00000000e+00
- 2 21 236 236 0.19529191e+00 -0.61624661e+00 0.51480300e+01 0.00000000e+00
- 2 21 236 236 0.43744623e+00 -0.37496378e+00 0.43861230e+01 0.00000000e+00
- 2 21 236 236 0.29016769e+00 -0.40875035e+00 0.92867373e+01 0.00000000e+00
- 2 21 236 236 0.77748023e+00 -0.62370878e+00 0.11256804e+02 0.00000000e+00
- 2 21 236 236 0.32281002e+01 0.68628150e-01 0.48256808e+02 0.00000000e+00
- 2 21 236 236 0.53926419e+00 0.13895694e+00 0.71885153e+01 0.00000000e+00
- 2 21 236 236 0.23142190e+01 -0.15080603e+00 0.14950200e+03 0.00000000e+00
- 2 21 236 236 0.40914280e+00 -0.14644518e+01 0.39609634e+02 0.00000000e+00
- 2 -2 236 236 0.92298414e+00 -0.46248043e+01 0.21633901e+03 0.00000000e+00
- 2 2 259 259 -0.11923214e+01 0.22459647e+01 -0.35558838e+01 0.00000000e+00
- 2 21 259 259 -0.77635661e+00 0.16975269e+01 -0.21987269e+01 0.00000000e+00
- 2 21 259 259 -0.77748023e+00 0.62370878e+00 -0.64092676e+00 0.00000000e+00
- 2 21 259 259 -0.12627751e+01 0.21107946e+01 -0.28217829e+01 0.00000000e+00
- 2 21 259 259 0.53437345e+00 0.19489086e+01 -0.11896539e+03 0.00000000e+00
- 2 21 259 259 0.46541328e+00 0.15450465e+01 -0.13996580e+03 0.00000000e+00
- 2 21 259 259 0.12589797e+00 -0.13995199e+01 -0.31450767e+03 0.00000000e+00
- 2 -2 259 259 0.11923214e+01 -0.22459647e+01 -0.29649188e+03 0.00000000e+00
- 2 2 274 274 0.18319662e+01 0.11646762e-01 0.34176653e+01 0.00000000e+00
- 2 21 274 274 0.13345777e+01 0.28602162e+00 0.24607247e+01 0.00000000e+00
- 2 -2 274 274 -0.18319662e+01 -0.11646762e-01 -0.23795726e+00 0.00000000e+00
- 2 3 281 281 -0.63044888e+00 0.76386236e+00 0.20190423e+01 0.00000000e+00
- 2 -3 281 281 0.63044888e+00 -0.76386236e+00 -0.23300558e+01 0.00000000e+00
- 2 21 286 286 -0.28518065e+01 0.32706919e+01 0.82319195e+01 0.00000000e+00
- 2 21 286 286 -0.63553122e+00 -0.12887212e+01 0.29004165e+01 0.00000000e+00
- 2 21 286 286 0.24968128e+00 -0.24830543e+01 0.27506115e+01 0.00000000e+00
- 2 21 286 286 0.13054827e+00 -0.28848263e+01 0.19011412e+01 0.00000000e+00
- 2 21 286 286 0.19224112e+01 -0.96199022e+00 0.18529558e+01 0.00000000e+00
- 2 21 286 286 0.18317631e+01 0.12151660e+01 0.28834396e+00 0.00000000e+00
- 2 21 286 286 0.33597886e+01 0.52851803e+00 0.12471503e+01 0.00000000e+00
- 2 21 286 286 0.38759681e+01 -0.10993622e+01 0.54628484e+00 0.00000000e+00
- 2 21 286 286 0.16009746e+01 -0.56527146e+00 -0.56654935e+00 0.00000000e+00
- 2 21 286 286 0.10815828e+01 -0.19275502e+01 -0.12381103e+01 0.00000000e+00
- 2 21 286 286 0.77635661e+00 -0.16975269e+01 -0.12106230e+01 0.00000000e+00
- 2 21 286 286 0.42041437e+00 -0.51754461e+00 -0.73857128e+00 0.00000000e+00
- 2 21 286 286 0.22171374e+01 -0.15911555e+01 -0.24503570e+01 0.00000000e+00
- 2 21 286 286 0.11123239e+01 0.18145220e+00 -0.54045071e+00 0.00000000e+00
- 2 21 286 286 0.12501696e+01 0.30399239e+00 -0.77538010e+00 0.00000000e+00
- 2 21 286 286 0.34537504e+01 0.10128054e+01 -0.76317845e+01 0.00000000e+00
- 2 21 286 286 0.16381078e+01 -0.20055662e+00 -0.80772446e+01 0.00000000e+00
- 2 21 286 286 0.24667322e+01 0.15806312e+00 -0.13481249e+02 0.00000000e+00
- 2 21 286 286 0.10003119e+01 0.81738737e-01 -0.71792512e+01 0.00000000e+00
- 2 21 286 286 0.18330830e+01 0.30027145e+00 -0.19928386e+02 0.00000000e+00
- 2 21 286 286 0.28518065e+01 -0.32706919e+01 -0.26375393e+02 0.00000000e+00
- 2 21 286 286 0.12627751e+01 -0.21107946e+01 -0.10448614e+02 0.00000000e+00
- 2 21 286 286 -0.13054827e+00 0.28848263e+01 -0.10192272e+00 0.00000000e+00
- 2 21 286 286 -0.12589797e+00 0.13995199e+01 0.60558710e+00 0.00000000e+00
- 2 21 286 286 -0.40914280e+00 0.14644518e+01 0.42305897e-01 0.00000000e+00
- 2 21 286 286 -0.10815828e+01 0.19275502e+01 0.95109868e-01 0.00000000e+00
- 2 21 286 286 -0.22171374e+01 0.15911555e+01 0.31969463e+01 0.00000000e+00
- 2 21 332 332 0.15129554e+00 0.24540524e+01 0.22152169e+01 0.00000000e+00
- 2 21 332 332 -0.53926419e+00 -0.13895694e+00 -0.28434125e+00 0.00000000e+00
- 2 21 332 332 -0.18317631e+01 -0.12151660e+01 -0.10622321e+01 0.00000000e+00
- 2 21 332 332 -0.46541328e+00 -0.15450465e+01 -0.94999713e+01 0.00000000e+00
- 2 21 332 332 -0.15129554e+00 -0.24540524e+01 -0.10663018e+03 0.00000000e+00
- 2 21 332 332 -0.53437345e+00 -0.19489086e+01 -0.11171441e+03 0.00000000e+00
- 2 21 353 353 -0.48536887e+00 -0.14083246e+00 -0.18558660e+02 0.00000000e+00
- 2 21 353 353 0.48536887e+00 0.14083246e+00 0.50156738e+00 0.00000000e+00
- 2 92 126 184 -0.80176272e+02 0.30943205e+02 0.63479374e+04 0.87369955e+03
- 1 -211 0 0 -0.71822674e+01 0.21460625e+01 0.75226007e+00 0.13957000e+00
- 1 211 0 0 -0.24925942e+01 0.63563971e+00 0.59974068e+00 0.13957000e+00
- 2 223 360 362 -0.17908978e+02 0.38950495e+01 0.15800891e+01 0.79239622e+00
- 2 -213 363 364 -0.43646409e+01 0.14710021e+01 0.15164983e+01 0.76949218e+00
- 2 111 365 366 -0.77642066e+00 0.24940824e+00 0.12634879e-02 0.13498000e+00
- 2 213 367 368 -0.11200097e+02 0.38403767e+01 0.23173953e+01 0.74289344e+00
- 2 311 369 369 -0.15593472e+02 0.35610487e+01 0.11945129e+01 0.49767000e+00
- 2 -313 370 371 -0.86890800e+00 0.50490132e+00 0.16647555e+01 0.92966644e+00
- 2 113 372 373 -0.75812892e+00 -0.35095519e+00 0.17138903e+01 0.76957277e+00
- 2 313 374 375 -0.76915514e+00 0.54972114e+00 0.42094296e+01 0.90052094e+00
- 2 -323 376 377 -0.22715200e+01 0.10218931e+01 0.62270281e+01 0.87114798e+00
- 2 213 378 379 -0.13346134e+01 0.85651690e+00 0.87945921e+01 0.78533506e+00
- 2 -213 380 381 -0.23715427e+01 0.19073878e+01 0.15816182e+02 0.87423651e+00
- 2 213 382 383 -0.12445582e+01 -0.12934980e+00 0.52273288e+01 0.77418804e+00
- 1 -211 0 0 -0.36886821e+01 0.31914848e+00 0.23750631e+02 0.13957000e+00
- 2 323 384 385 -0.16065370e+01 -0.78302754e-01 0.13803524e+02 0.84498401e+00
- 2 -323 386 387 -0.28520531e+01 -0.62443107e+00 0.30948914e+02 0.89082371e+00
- 1 211 0 0 -0.26671881e+00 -0.64395124e+00 0.58515033e+01 0.13957000e+00
- 2 -213 388 389 -0.21590600e+01 0.55377607e+00 0.37135156e+02 0.75763058e+00
- 2 213 390 391 -0.16130937e+01 -0.80372615e-01 0.39735324e+02 0.99335669e+00
- 2 -213 392 393 -0.35318789e-01 0.98302568e+00 0.27954705e+02 0.10549220e+01
- 1 211 0 0 -0.45368455e+00 0.18492270e+01 0.53943974e+02 0.13957000e+00
- 1 -211 0 0 -0.27069312e+00 0.10247365e+00 0.59297147e+01 0.13957000e+00
- 2 113 394 395 -0.50191104e+00 0.64441187e+00 0.20529534e+02 0.77119480e+00
- 1 2212 0 0 -0.23431102e+00 0.39259957e+01 0.29626122e+03 0.93827000e+00
- 2 111 396 397 0.32434631e+00 0.33893592e+00 0.26624167e+02 0.13498000e+00
- 1 -2212 0 0 -0.84758280e+00 0.24775211e+01 0.16583188e+03 0.93827000e+00
- 1 211 0 0 0.22256963e+00 0.50872791e+00 0.18116915e+03 0.13957000e+00
- 2 111 398 399 0.12160638e+00 0.57807080e-01 0.95052252e+01 0.13498000e+00
- 1 -211 0 0 0.30030534e+00 0.26510525e+00 0.31826460e+02 0.13957000e+00
- 2 323 400 401 -0.25765485e+00 -0.18314985e+00 0.45021966e+03 0.88921943e+00
- 2 -313 402 403 0.32395878e+00 -0.52616658e+00 0.30786192e+03 0.72045056e+00
- 2 113 404 405 0.28519844e+00 0.50439968e-01 0.24152148e+03 0.74929646e+00
- 2 221 406 408 0.49214040e+00 -0.15057733e+01 0.49426621e+03 0.54745000e+00
- 2 2114 409 410 0.18649689e+00 -0.89244526e-01 0.16354033e+03 0.12377965e+01
- 2 213 411 412 0.12617137e-01 0.13182615e+00 0.79742485e+02 0.86848764e+00
- 2 -3222 413 414 -0.33991438e+00 -0.27246896e-01 0.12163930e+03 0.11893700e+01
- 2 -313 415 416 0.46283092e+00 -0.11410504e+00 0.30618378e+02 0.86864973e+00
- 2 223 417 419 -0.55075412e+00 -0.13537468e+00 0.62571464e+02 0.75320423e+00
- 1 -211 0 0 0.12119684e+00 0.57620386e+00 0.11450718e+02 0.13957000e+00
- 1 321 0 0 -0.91377667e-01 -0.92712674e+00 0.63455174e+01 0.49360000e+00
- 2 -323 420 421 0.60942866e+00 0.12267918e+01 0.54809288e+01 0.81005860e+00
- 2 223 422 424 0.80158062e+00 0.14204635e+00 0.13653734e+01 0.78178313e+00
- 2 213 425 426 0.16610943e+01 0.11121827e+01 0.36746265e+01 0.78383341e+00
- 2 223 427 429 0.49622895e+00 0.66118510e+00 0.12155083e+01 0.78057343e+00
- 2 -213 430 431 0.61583861e+00 -0.78373674e-01 0.20520551e+01 0.11461946e+01
- 1 321 0 0 0.29941511e+00 -0.36748041e+00 0.61380876e+01 0.49360000e+00
- 1 -321 0 0 0.14112099e+00 -0.11291170e+01 0.30932884e+01 0.49360000e+00
- 2 213 432 433 -0.14005175e+01 -0.61863145e+00 0.14837895e+02 0.72912158e+00
- 2 311 434 434 -0.37171492e+00 0.23325547e+00 0.55298120e+01 0.49767000e+00
- 1 -321 0 0 -0.77036396e-01 0.30581665e+00 0.40046702e+01 0.49360000e+00
- 2 111 435 436 -0.36757705e+00 -0.10577243e+01 0.12408820e+02 0.13498000e+00
- 2 111 437 438 -0.12081200e+01 0.58896729e+00 0.25513168e+02 0.13498000e+00
- 2 223 439 441 -0.12091635e+00 -0.43115279e+00 0.31797036e+02 0.75997246e+00
- 2 213 442 443 -0.52701220e-01 -0.10078668e+00 0.26968900e+02 0.74752318e+00
- 2 223 444 446 -0.16056175e+00 0.82934858e+00 0.10448966e+03 0.78069555e+00
- 1 -211 0 0 0.22730527e+00 -0.47049438e-01 0.22861001e+02 0.13957000e+00
- 2 213 447 448 -0.23597752e+00 -0.26926188e+00 0.24427919e+03 0.85456170e+00
- 2 2114 449 450 0.10198145e+01 0.19351054e+01 0.28400339e+04 0.12618243e+01
- 2 92 186 235 0.44563308e+02 -0.78160913e+02 -0.53001407e+04 0.30426331e+03
- 1 211 0 0 0.83823849e+01 -0.94769458e+01 -0.10543575e+03 0.13957000e+00
- 2 113 451 452 0.28676538e+02 -0.34600076e+02 -0.37758043e+03 0.76325067e+00
- 1 2112 0 0 0.11337131e+02 -0.13244523e+02 -0.14995142e+03 0.93957000e+00
- 1 -2212 0 0 0.17262247e+02 -0.20470163e+02 -0.21902987e+03 0.93827000e+00
- 1 211 0 0 0.36365342e+00 -0.11977362e+01 -0.15529795e+02 0.13957000e+00
- 1 -211 0 0 0.80422376e+00 -0.50102990e+00 -0.79137986e+01 0.13957000e+00
- 2 323 453 454 0.75532747e+00 -0.11041913e+01 -0.10084065e+02 0.94466948e+00
- 2 -311 455 455 0.45460384e+00 -0.12130427e+01 -0.29572990e+01 0.49767000e+00
- 2 113 456 457 0.65157560e+00 -0.73675692e+00 -0.10753653e+02 0.97741494e+00
- 2 311 458 458 0.85084808e-01 -0.23230367e+00 -0.10217435e+01 0.49767000e+00
- 2 -323 459 460 -0.30537394e+00 0.64065706e+00 -0.32821506e+01 0.88971912e+00
- 2 111 461 462 -0.67711197e+00 0.58752353e+00 -0.34623021e+01 0.13498000e+00
- 2 323 463 464 -0.40672116e+00 -0.49580613e+00 -0.23144714e+01 0.90109267e+00
- 2 -313 465 466 -0.19651698e+01 0.16921474e+00 -0.68458777e+01 0.96720876e+00
- 1 2112 0 0 -0.11826956e+01 0.17758222e+01 -0.11608606e+02 0.93957000e+00
- 1 -2212 0 0 -0.15836621e+01 0.89276538e+00 -0.55334241e+01 0.93827000e+00
- 1 321 0 0 -0.12246827e+01 0.59518600e+00 -0.83848559e+01 0.49360000e+00
- 2 -323 467 468 -0.10796456e+01 0.15083426e+01 -0.13693590e+02 0.86954262e+00
- 1 211 0 0 -0.11379723e+00 -0.27725738e-01 -0.62272235e+00 0.13957000e+00
- 2 221 469 470 -0.23630868e+01 0.17728658e+01 -0.19393541e+02 0.54745000e+00
- 1 -211 0 0 -0.39384502e+00 0.44914600e-01 -0.63915485e+01 0.13957000e+00
- 2 111 471 472 -0.38798879e-01 -0.59656279e-01 -0.36190626e+01 0.13498000e+00
- 2 213 473 474 -0.12107523e+01 0.24193136e+00 -0.13370428e+02 0.72052609e+00
- 2 221 475 476 -0.64176797e+00 0.18939441e+00 -0.14261422e+02 0.54745000e+00
- 2 3112 477 478 -0.94762491e+00 -0.42600863e+00 -0.25370008e+02 0.11974400e+01
- 2 -3112 479 480 -0.18561047e+01 -0.11546548e+00 -0.40892514e+02 0.11974400e+01
- 1 -211 0 0 -0.17231847e+00 -0.13180246e+00 -0.22493434e+02 0.13957000e+00
- 1 321 0 0 -0.11154381e+01 -0.25390846e+00 -0.21836793e+02 0.49360000e+00
- 2 -311 481 481 -0.25951044e+01 0.76359808e-01 -0.13503539e+03 0.49767000e+00
- 2 113 482 483 -0.86087174e+00 -0.26601877e+00 -0.48273141e+02 0.10874001e+01
- 2 313 484 485 0.40254329e+00 -0.50394588e+00 -0.45453295e+02 0.89618054e+00
- 2 3114 486 487 -0.15383497e+01 -0.42704678e+00 -0.79627436e+02 0.14080077e+01
- 2 -1114 488 489 0.31565582e+00 0.20476766e-01 -0.29989661e+02 0.12468288e+01
- 2 113 490 491 0.83939714e+00 -0.14149949e+01 -0.29185944e+02 0.91052291e+00
- 1 -211 0 0 0.36274293e+00 -0.52307628e+00 -0.48031352e+01 0.13957000e+00
- 2 221 492 494 0.15780171e+00 0.25396710e+00 -0.17785996e+02 0.54745000e+00
- 1 211 0 0 0.25472899e-01 -0.94967751e+00 -0.25756550e+02 0.13957000e+00
- 2 313 495 496 -0.88092034e+00 0.58923643e+00 -0.41228398e+02 0.86279935e+00
- 2 -313 497 498 -0.25742340e+00 -0.47345350e+00 -0.34397008e+02 0.90451343e+00
- 2 111 499 500 -0.91832439e-01 -0.16370195e+00 -0.19277984e+02 0.13498000e+00
- 2 -213 501 502 0.25846871e+00 0.49748539e+00 -0.33668724e+02 0.75564254e+00
- 2 323 503 504 -0.96336874e+00 -0.22503947e+00 -0.70379327e+02 0.89459664e+00
- 2 221 505 507 -0.12260542e+01 0.22273142e+00 -0.18155574e+03 0.54745000e+00
- 2 -323 508 509 -0.58035989e+00 0.27664874e+00 -0.84535669e+02 0.88633897e+00
- 1 211 0 0 -0.15664174e+00 0.19800018e+00 -0.15666629e+02 0.13957000e+00
- 2 111 510 511 -0.12600146e+01 0.88296311e+00 -0.20328627e+03 0.13498000e+00
- 2 331 512 513 -0.12483183e-01 -0.37099713e+00 -0.42945271e+03 0.95734291e+00
- 2 -213 514 515 -0.14034806e+00 0.20584520e+00 -0.22542565e+03 0.72870263e+00
- 2 213 516 517 0.45876955e+00 -0.31365671e+00 -0.83194987e+03 0.73711031e+00
- 1 2212 0 0 0.81205517e+00 0.11550582e+00 -0.15897716e+04 0.93827000e+00
- 2 92 237 258 0.18255940e+02 -0.11585951e+02 0.54955651e+03 0.67243443e+02
- 1 211 0 0 0.77877958e-01 0.26198033e-01 0.29900768e+00 0.13957000e+00
- 1 -211 0 0 -0.33800935e+00 0.50496539e+01 0.94378964e+01 0.13957000e+00
- 2 113 518 519 0.84052441e+00 -0.25686046e+00 0.39670075e+01 0.76591935e+00
- 2 221 520 522 0.91289534e+00 0.79258180e+00 0.39831939e+01 0.54745000e+00
- 2 213 523 524 0.24278742e+00 -0.11363504e+00 0.15587955e+01 0.78966911e+00
- 1 -211 0 0 0.14836359e+01 0.65328094e+00 0.52189563e+01 0.13957000e+00
- 2 221 525 527 0.53077593e+00 -0.75729993e+00 0.24519750e+01 0.54745000e+00
- 1 211 0 0 0.15933597e+01 -0.28607196e+01 0.92439740e+01 0.13957000e+00
- 2 -213 528 529 0.87917376e+00 -0.59089726e+00 0.43461731e+01 0.64860054e+00
- 2 213 530 531 0.13994962e+01 -0.25526593e+01 0.97626901e+01 0.81702008e+00
- 2 111 532 533 0.56417925e+00 -0.10793187e+01 0.24434184e+01 0.13498000e+00
- 1 -211 0 0 0.11654829e+00 -0.90315261e+00 0.42221258e+01 0.13957000e+00
- 1 211 0 0 0.11265001e+01 -0.13801040e+01 0.12734751e+02 0.13957000e+00
- 2 -213 534 535 0.83628729e+00 -0.22551738e+00 0.10375714e+02 0.79581100e+00
- 2 323 536 537 0.24410390e+00 -0.48006090e-01 0.59820433e+01 0.95207078e+00
- 2 -323 538 539 0.27666248e+01 -0.12434257e+01 0.39883320e+02 0.98610200e+00
- 2 221 540 541 0.45445296e+00 0.21676645e+00 0.11017479e+02 0.54745000e+00
- 2 213 542 543 0.64855125e+00 0.92756859e-01 0.23592657e+02 0.82109005e+00
- 2 -213 544 545 0.12470483e+01 -0.69859233e+00 0.54987711e+02 0.10293771e+01
- 2 221 546 548 0.13526065e+01 -0.37350785e+00 0.96118435e+02 0.54745000e+00
- 2 113 549 550 0.59754078e+00 -0.43363977e+01 0.19195826e+03 0.71492105e+00
- 2 221 551 553 0.67897929e+00 -0.99709456e+00 0.45970931e+02 0.54745000e+00
- 2 92 260 273 -0.16909272e+01 0.65264654e+01 -0.87914807e+03 0.72465825e+02
- 2 113 554 555 -0.13503593e+01 0.18511887e+01 -0.22966479e+01 0.53059316e+00
- 2 213 556 557 -0.10023114e+01 0.20396143e+01 -0.44304731e+01 0.69267548e+00
- 1 -211 0 0 -0.20779024e+00 0.12477454e+01 -0.13501991e+01 0.13957000e+00
- 2 113 558 559 -0.10713653e+01 0.78563059e+00 -0.13121972e+01 0.81976633e+00
- 1 211 0 0 -0.44513272e+00 0.51692310e+00 -0.34311478e+01 0.13957000e+00
- 1 -211 0 0 0.14274459e+00 0.36438314e-01 -0.52017036e+01 0.13957000e+00
- 2 113 560 561 -0.47923262e-01 0.94830544e-01 -0.61650728e+01 0.59495751e+00
- 2 113 562 563 0.48481838e+00 0.17761056e+01 -0.70615613e+02 0.58858019e+00
- 2 3212 564 565 -0.26857041e+00 0.21044750e-01 -0.37957425e+02 0.11925500e+01
- 1 321 0 0 0.24603309e+00 -0.60156043e+00 -0.37832593e+02 0.49360000e+00
- 1 -2212 0 0 0.24621616e+00 0.11590135e+01 -0.84215417e+02 0.93827000e+00
- 2 221 566 568 0.42709532e+00 0.16288356e-01 -0.19523963e+03 0.54745000e+00
- 2 213 569 570 0.35655426e+00 -0.71932445e+00 -0.63252483e+02 0.74062029e+00
- 1 -211 0 0 0.79906346e+00 -0.16974730e+01 -0.36584746e+03 0.13957000e+00
- 2 92 275 280 0.13345777e+01 0.28602162e+00 0.56404327e+01 0.62639746e+01
- 2 223 571 573 0.75275291e+00 0.22329064e+00 0.20174431e+01 0.78928067e+00
- 2 221 574 576 0.61255275e+00 -0.28631790e+00 0.66966615e+00 0.54745000e+00
- 2 221 577 579 0.93640873e+00 0.54310887e+00 0.16825901e+01 0.54745000e+00
- 2 113 580 581 -0.37028807e+00 -0.50859746e-01 0.97658429e-01 0.37202143e+00
- 2 113 582 583 0.43254190e+00 -0.31865931e+00 -0.10800822e+00 0.42012323e+00
- 2 113 584 585 -0.10293905e+01 0.17545906e+00 0.12810832e+01 0.79904205e+00
- 2 92 282 285 0.00000000e+00 0.00000000e+00 -0.31101353e+00 0.47705773e+01
- 2 -311 586 586 -0.18519949e+00 0.64867241e+00 0.22982639e+00 0.49767000e+00
- 1 2112 0 0 0.65539086e+00 -0.87457543e+00 -0.85293462e+00 0.93957000e+00
- 2 113 587 588 -0.75375145e-01 0.34392560e+00 0.24046912e-01 0.67222058e+00
- 2 -3214 589 590 -0.39481622e+00 -0.11802259e+00 0.28804779e+00 0.13893428e+01
- 2 92 287 331 0.26884040e+02 -0.42788430e+01 -0.77085115e+02 0.13038312e+03
- 2 111 591 592 0.60209322e+00 0.43087407e+00 0.53786392e+00 0.13498000e+00
- 1 -211 0 0 0.22072828e+01 0.38835075e-01 -0.11561386e+00 0.13957000e+00
- 2 213 593 594 0.22494171e+01 0.30469758e+00 0.58741001e+00 0.58343083e+00
- 1 -211 0 0 0.84892057e+00 -0.12100915e+01 -0.36836352e+00 0.13957000e+00
- 1 211 0 0 0.32502411e+01 -0.85206831e+00 -0.54103532e-01 0.13957000e+00
- 2 -213 595 596 0.11451748e+01 -0.88509360e+00 -0.15742203e+01 0.70280814e+00
- 2 2114 597 598 0.17160588e+01 -0.17590471e+01 -0.18854464e+01 0.12668505e+01
- 2 111 599 600 0.11721626e+00 -0.49600328e+00 -0.35518144e+00 0.13498000e+00
- 2 -1114 601 602 0.26982192e+01 -0.13822837e+01 -0.28414464e+01 0.12191407e+01
- 2 -213 603 604 0.62184803e+00 -0.11358431e+00 -0.96533066e+00 0.73095562e+00
- 2 111 605 606 0.26610012e+00 0.48402698e+00 -0.54957073e+00 0.13498000e+00
- 1 211 0 0 0.83400917e+00 0.10948411e+00 -0.83340771e+00 0.13957000e+00
- 2 111 607 608 0.26177419e-01 -0.37296721e-01 -0.21723093e+00 0.13498000e+00
- 2 313 609 610 0.13741576e+01 -0.34468050e-01 -0.29401771e+01 0.85411940e+00
- 2 -311 611 611 0.55601349e+00 0.10660629e-02 -0.38348491e+01 0.49767000e+00
- 2 -213 612 613 0.20919534e+01 -0.35886330e+00 -0.11442341e+02 0.74131656e+00
- 2 323 614 615 0.73561460e+00 0.38186077e+00 -0.55674767e+01 0.87203077e+00
- 2 -313 616 617 0.24937590e+01 0.37460504e+00 -0.93360567e+01 0.97398270e+00
- 2 311 618 618 0.10276110e+01 -0.13562085e+01 -0.12210148e+02 0.49767000e+00
- 2 -311 619 619 0.23923425e+01 -0.45525868e+00 -0.13429614e+02 0.49767000e+00
- 1 -211 0 0 0.12095420e+00 0.25250931e+00 -0.37347829e+01 0.13957000e+00
- 2 113 620 621 0.12420834e+01 -0.11059833e+01 -0.12663456e+02 0.83777296e+00
- 1 211 0 0 0.12963365e+01 -0.84698065e+00 -0.10371106e+02 0.13957000e+00
- 2 311 622 622 0.48672728e+00 -0.36623392e+00 -0.31572574e+01 0.49767000e+00
- 1 -321 0 0 -0.44659970e-01 -0.34642279e+00 -0.14603655e+01 0.49360000e+00
- 2 221 623 624 -0.35631478e+00 0.45156297e+00 -0.15589084e+00 0.54745000e+00
- 1 211 0 0 0.21596345e+00 0.20555651e+01 0.29120413e+00 0.13957000e+00
- 2 111 625 626 -0.22383033e+00 0.14923054e-01 0.17797171e+00 0.13498000e+00
- 1 -211 0 0 -0.61056574e+00 0.87420541e+00 -0.52123820e+00 0.13957000e+00
- 2 323 627 628 -0.39455842e+00 0.93330064e+00 0.90653832e+00 0.89724393e+00
- 2 -311 629 629 -0.49679242e+00 0.17935668e+01 0.83728170e+00 0.49767000e+00
- 2 -213 630 631 -0.40913007e+00 0.19148337e+01 0.11580934e+01 0.79213062e+00
- 2 113 632 633 -0.11690595e+01 0.66401713e+00 0.10257100e+01 0.84980355e+00
- 2 323 634 635 -0.12531776e+01 0.98947322e+00 0.33884284e+01 0.93149670e+00
- 2 3222 636 637 -0.16927710e+01 0.87429593e+00 0.31746475e+01 0.11893700e+01
- 2 111 638 639 -0.11026150e+00 0.84115201e-01 0.78770798e+00 0.13498000e+00
- 2 -2224 640 641 -0.55903852e-02 -0.98626662e+00 0.13616443e+01 0.10964286e+01
- 2 213 642 643 -0.23219168e+00 -0.60115699e+00 0.12684966e+01 0.86702690e+00
- 2 111 644 645 -0.26948378e-01 -0.35089940e-01 0.16329367e+00 0.13498000e+00
- 2 223 646 648 -0.12627568e+00 -0.12045871e+00 0.10802583e+01 0.78314108e+00
- 2 223 649 651 -0.18048063e+00 -0.89369690e+00 0.14899978e+01 0.78225682e+00
- 1 2112 0 0 0.42512913e+00 -0.16952041e+01 0.25680763e+01 0.93957000e+00
- 1 -2112 0 0 0.48145611e+00 -0.11137014e+01 0.67492346e+00 0.93957000e+00
- 2 331 652 653 0.79987375e+00 0.19025534e+00 0.90663693e+00 0.95769561e+00
- 2 331 654 656 0.18939138e+01 -0.44545405e+00 0.11133748e+01 0.95756237e+00
- 2 92 333 352 -0.33708140e+01 -0.48480780e+01 -0.22697592e+03 0.58240834e+02
- 2 111 657 658 -0.47687839e+00 0.11089173e+00 -0.93372716e+00 0.13498000e+00
- 1 -211 0 0 0.63045109e-01 0.99833087e-01 -0.10955380e+00 0.13957000e+00
- 2 111 659 660 0.27016418e-01 -0.16243354e-01 -0.14648123e-01 0.13498000e+00
- 1 211 0 0 -0.64386075e-01 -0.39203258e+00 -0.29876904e+00 0.13957000e+00
- 1 -211 0 0 0.12649550e+00 0.76217571e+00 -0.73020248e+00 0.13957000e+00
- 2 213 661 662 -0.24460456e-01 0.51824682e+00 0.62879056e+00 0.60953023e+00
- 2 -2214 663 664 -0.99321009e+00 -0.24592713e+00 -0.19051055e-01 0.11195268e+01
- 2 313 665 666 0.67249862e-01 0.33985640e+00 0.12536422e+00 0.89827042e+00
- 2 3222 667 668 -0.46485598e+00 0.47353996e-01 -0.61364607e+00 0.11893700e+01
- 2 111 669 670 0.17739964e+00 0.35440954e+00 -0.37085894e+00 0.13498000e+00
- 2 -213 671 672 -0.62288578e+00 -0.11993612e+01 -0.12139182e+01 0.78569808e+00
- 2 111 673 674 -0.46650614e+00 -0.23931750e-01 -0.76780439e+01 0.13498000e+00
- 1 -2112 0 0 0.13580046e+00 -0.76166296e+00 -0.51816559e+01 0.93957000e+00
- 2 113 675 676 -0.15371645e+00 0.31248387e+00 -0.10206636e+02 0.69139117e+00
- 2 2214 677 678 -0.85624562e+00 -0.25806799e+01 -0.94410771e+02 0.12276812e+01
- 1 -211 0 0 -0.29110975e-01 -0.15016061e+00 -0.91353085e+00 0.13957000e+00
- 2 223 679 681 0.28130502e+00 -0.15053571e+01 -0.78565709e+02 0.78429829e+00
- 1 211 0 0 -0.15365443e+00 -0.42921391e+00 -0.94850872e+01 0.13957000e+00
- 2 113 682 683 -0.90084490e+00 0.22460537e+00 -0.11094559e+02 0.78814732e+00
- 2 113 684 685 0.95762930e+00 -0.31336401e+00 -0.58897057e+01 0.93692355e+00
- 2 92 354 359 0.00000000e+00 0.00000000e+00 -0.18057093e+02 0.67502674e+01
- 2 331 686 688 -0.49056646e+00 0.35915756e+00 -0.21790743e+01 0.95786154e+00
- 1 211 0 0 0.77016710e+00 -0.21552204e+00 -0.34883858e+01 0.13957000e+00
- 2 -213 689 690 -0.42450333e+00 -0.48258991e+00 -0.93470606e+00 0.83338737e+00
- 1 211 0 0 -0.57684363e-01 0.36521947e+00 -0.34559558e+01 0.13957000e+00
- 2 313 691 692 -0.48967206e+00 0.39359325e+00 -0.65101296e+01 0.79076466e+00
- 1 -321 0 0 0.69225911e+00 -0.41985834e+00 -0.14888415e+01 0.49360000e+00
- 1 -211 0 0 -0.27836481e+01 0.72460085e+00 0.15211351e+00 0.13957000e+00
- 1 211 0 0 -0.53358524e+01 0.11422394e+01 0.71599055e+00 0.13957000e+00
- 2 111 693 694 -0.97894780e+01 0.20282092e+01 0.71198502e+00 0.13498000e+00
- 1 -211 0 0 -0.21492309e+00 0.20472279e+00 0.81120663e-01 0.13957000e+00
- 2 111 695 696 -0.41497178e+01 0.12662793e+01 0.14353777e+01 0.13498000e+00
- 1 22 0 0 -0.45925924e+00 0.13953166e+00 -0.65274843e-01 0.00000000e+00
- 1 22 0 0 -0.31716142e+00 0.10987658e+00 0.66538331e-01 0.00000000e+00
- 1 211 0 0 -0.26622767e+01 0.62002647e+00 0.57892674e+00 0.13957000e+00
- 2 111 697 698 -0.85378205e+01 0.32203502e+01 0.17384685e+01 0.13498000e+00
- 1 130 0 0 -0.15593472e+02 0.35610487e+01 0.11945129e+01 0.49767000e+00
- 2 -311 699 699 -0.91890843e+00 0.57336125e+00 0.15653481e+01 0.49767000e+00
- 2 111 700 701 0.50000437e-01 -0.68459926e-01 0.99407388e-01 0.13498000e+00
- 1 -211 0 0 -0.81730637e+00 -0.28332517e+00 0.16675954e+01 0.13957000e+00
- 1 211 0 0 0.59177454e-01 -0.67630015e-01 0.46294924e-01 0.13957000e+00
- 1 321 0 0 -0.38110196e+00 0.60292579e+00 0.32018482e+01 0.49360000e+00
- 1 -211 0 0 -0.38805319e+00 -0.53204647e-01 0.10075814e+01 0.13957000e+00
- 2 -311 702 702 -0.79045692e+00 0.40624902e+00 0.27074010e+01 0.49767000e+00
- 1 -211 0 0 -0.14810630e+01 0.61564405e+00 0.35196271e+01 0.13957000e+00
- 1 211 0 0 -0.25118927e+00 0.56777417e+00 0.28878792e+01 0.13957000e+00
- 2 111 703 704 -0.10834241e+01 0.28874274e+00 0.59067130e+01 0.13498000e+00
- 1 -211 0 0 -0.91515678e+00 0.79888859e+00 0.84842997e+01 0.13957000e+00
- 2 111 705 706 -0.14563860e+01 0.11084992e+01 0.73318825e+01 0.13498000e+00
- 1 211 0 0 -0.48956175e+00 -0.39240155e+00 0.19001144e+01 0.13957000e+00
- 2 111 707 708 -0.75499643e+00 0.26305175e+00 0.33272144e+01 0.13498000e+00
- 2 311 709 709 -0.75490265e+00 -0.34857249e-01 0.86407779e+01 0.49767000e+00
- 1 211 0 0 -0.85163438e+00 -0.43445505e-01 0.51627456e+01 0.13957000e+00
- 2 -311 710 710 -0.18175203e+01 -0.68494639e+00 0.19830333e+02 0.49767000e+00
- 1 -211 0 0 -0.10345328e+01 0.60515319e-01 0.11118581e+02 0.13957000e+00
- 1 -211 0 0 -0.67080188e+00 0.51875369e+00 0.13486365e+02 0.13957000e+00
- 2 111 711 712 -0.14882581e+01 0.35022377e-01 0.23648790e+02 0.13498000e+00
- 1 211 0 0 -0.71998772e+00 -0.20345203e+00 0.91386781e+01 0.13957000e+00
- 2 111 713 714 -0.89310595e+00 0.12307942e+00 0.30596646e+02 0.13498000e+00
- 1 -211 0 0 0.42384831e-02 0.16905659e+00 0.96699808e+00 0.13957000e+00
- 2 111 715 716 -0.39557272e-01 0.81396909e+00 0.26987707e+02 0.13498000e+00
- 1 211 0 0 -0.58614631e+00 0.48885779e+00 0.10685710e+02 0.13957000e+00
- 1 -211 0 0 0.84235270e-01 0.15555407e+00 0.98438236e+01 0.13957000e+00
- 1 22 0 0 0.11970566e+00 0.20291252e+00 0.15260679e+02 0.00000000e+00
- 1 22 0 0 0.20464065e+00 0.13602340e+00 0.11363488e+02 0.00000000e+00
- 1 22 0 0 0.92546835e-01 0.88770332e-01 0.47762677e+01 0.00000000e+00
- 1 22 0 0 0.29059546e-01 -0.30963253e-01 0.47289575e+01 0.00000000e+00
- 1 321 0 0 -0.44172035e+00 -0.18272527e+00 0.28342055e+03 0.49360000e+00
- 2 111 717 718 0.18406550e+00 -0.42458032e-03 0.16679911e+03 0.13498000e+00
- 2 -311 719 719 0.33277091e+00 -0.29048041e+00 0.19480751e+03 0.49767000e+00
- 2 111 720 721 -0.88121334e-02 -0.23568617e+00 0.11305442e+03 0.13498000e+00
- 1 211 0 0 -0.11494375e+00 -0.20544214e+00 0.12262002e+03 0.13957000e+00
- 1 -211 0 0 0.40014219e+00 0.25588211e+00 0.11890146e+03 0.13957000e+00
- 1 211 0 0 0.11215877e+00 -0.39312697e+00 0.10240010e+03 0.13957000e+00
- 1 -211 0 0 0.11203586e+00 -0.19619547e+00 0.81616350e+02 0.13957000e+00
- 2 111 722 723 0.26794577e+00 -0.91645085e+00 0.31024976e+03 0.13498000e+00
- 1 2212 0 0 0.43216884e-01 -0.27831979e+00 0.12837628e+03 0.93827000e+00
- 1 -211 0 0 0.14328001e+00 0.18907527e+00 0.35164055e+02 0.13957000e+00
- 1 211 0 0 0.40113841e+00 0.14978267e+00 0.49270739e+02 0.13957000e+00
- 2 111 724 725 -0.38852127e+00 -0.17956512e-01 0.30471746e+02 0.13498000e+00
- 1 -2112 0 0 -0.96760564e-01 -0.45945785e-01 0.86495030e+02 0.93957000e+00
- 1 -211 0 0 -0.24315382e+00 0.18698889e-01 0.35144266e+02 0.13957000e+00
- 1 -321 0 0 0.37973147e+00 -0.20676266e+00 0.28563597e+02 0.49360000e+00
- 1 211 0 0 0.83099442e-01 0.92657626e-01 0.20547813e+01 0.13957000e+00
- 1 211 0 0 -0.21354615e+00 0.88202468e-01 0.38954686e+02 0.13957000e+00
- 1 -211 0 0 -0.19806552e+00 -0.19324119e+00 0.18154046e+02 0.13957000e+00
- 2 111 726 727 -0.13914245e+00 -0.30335961e-01 0.54627317e+01 0.13498000e+00
- 2 -311 728 728 0.25919089e+00 0.93086752e+00 0.42379276e+01 0.49767000e+00
- 1 -211 0 0 0.35023777e+00 0.29592424e+00 0.12430012e+01 0.13957000e+00
- 1 -211 0 0 -0.13797314e-01 -0.76637761e-01 0.19995129e+00 0.13957000e+00
- 1 211 0 0 0.34991138e+00 -0.12167658e-01 0.24365581e+00 0.13957000e+00
- 2 111 729 730 0.46546656e+00 0.23085177e+00 0.92176635e+00 0.13498000e+00
- 1 211 0 0 0.18076585e+00 -0.26682648e-01 0.18281702e+00 0.13957000e+00
- 2 111 731 732 0.14803284e+01 0.11388654e+01 0.34918095e+01 0.13498000e+00
- 1 211 0 0 0.47895846e-01 -0.97631032e-02 0.41992773e+00 0.13957000e+00
- 1 -211 0 0 0.76825569e-01 0.41598147e+00 0.46719259e+00 0.13957000e+00
- 2 111 733 734 0.37150753e+00 0.25496674e+00 0.32838794e+00 0.13498000e+00
- 1 -211 0 0 -0.16293311e+00 -0.23367551e+00 0.12676499e+01 0.13957000e+00
- 2 111 735 736 0.77877172e+00 0.15530183e+00 0.78440514e+00 0.13498000e+00
- 1 211 0 0 -0.98023546e+00 -0.59748282e+00 0.12627758e+02 0.13957000e+00
- 2 111 737 738 -0.42028206e+00 -0.21148633e-01 0.22101368e+01 0.13498000e+00
- 1 130 0 0 -0.37171492e+00 0.23325547e+00 0.55298120e+01 0.49767000e+00
- 1 22 0 0 -0.15771232e+00 -0.61691905e+00 0.74625720e+01 0.00000000e+00
- 1 22 0 0 -0.20986474e+00 -0.44080528e+00 0.49462480e+01 0.00000000e+00
- 1 22 0 0 -0.77415046e+00 0.36213457e+00 0.17388221e+02 0.00000000e+00
- 1 22 0 0 -0.43396956e+00 0.22683272e+00 0.81249465e+01 0.00000000e+00
- 1 211 0 0 -0.77135291e-02 0.61798853e-01 0.23827778e+01 0.13957000e+00
- 1 -211 0 0 -0.19814376e+00 -0.31095540e+00 0.14440201e+02 0.13957000e+00
- 2 111 739 740 0.84940943e-01 -0.18199625e+00 0.14974057e+02 0.13498000e+00
- 1 211 0 0 -0.43523215e-01 0.19504450e+00 0.21221012e+02 0.13957000e+00
- 2 111 741 742 -0.91780046e-02 -0.29583119e+00 0.57478886e+01 0.13498000e+00
- 1 -211 0 0 0.33953326e-01 -0.14785248e-01 0.14241336e+02 0.13957000e+00
- 1 211 0 0 -0.19772173e+00 0.66489036e+00 0.50393730e+02 0.13957000e+00
- 2 111 743 744 0.32066633e-02 0.17924347e+00 0.39854599e+02 0.13498000e+00
- 1 211 0 0 0.10291380e+00 0.14887423e+00 0.14679301e+03 0.13957000e+00
- 2 111 745 746 -0.33889132e+00 -0.41813611e+00 0.97486180e+02 0.13498000e+00
- 1 2212 0 0 0.84154643e+00 0.11956789e+01 0.18178509e+04 0.93827000e+00
- 1 -211 0 0 0.17826811e+00 0.73942652e+00 0.10221830e+04 0.13957000e+00
- 1 -211 0 0 0.77908380e+01 -0.98879028e+01 -0.10604136e+03 0.13957000e+00
- 1 211 0 0 0.20885700e+02 -0.24712174e+02 -0.27153906e+03 0.13957000e+00
- 2 311 747 747 0.76165511e+00 -0.80509780e+00 -0.61859996e+01 0.49767000e+00
- 1 211 0 0 -0.63276380e-02 -0.29909350e+00 -0.38980652e+01 0.13957000e+00
- 1 130 0 0 0.45460384e+00 -0.12130427e+01 -0.29572990e+01 0.49767000e+00
- 1 211 0 0 0.33444939e+00 -0.83202951e+00 -0.93432864e+01 0.13957000e+00
- 1 -211 0 0 0.31712621e+00 0.95272586e-01 -0.14103666e+01 0.13957000e+00
- 2 310 748 749 0.85084808e-01 -0.23230367e+00 -0.10217435e+01 0.49767000e+00
- 2 -311 750 750 -0.46667748e+00 0.35081469e+00 -0.24483986e+01 0.49767000e+00
- 1 -211 0 0 0.16130354e+00 0.28984237e+00 -0.83375204e+00 0.13957000e+00
- 1 22 0 0 -0.16102815e+00 0.15296086e+00 -0.11037179e+01 0.00000000e+00
- 1 22 0 0 -0.51608382e+00 0.43456266e+00 -0.23585842e+01 0.00000000e+00
- 2 311 751 751 -0.23688448e+00 -0.63828915e+00 -0.18038708e+01 0.49767000e+00
- 1 211 0 0 -0.16983668e+00 0.14248302e+00 -0.51060059e+00 0.13957000e+00
- 1 -321 0 0 -0.10479504e+01 0.19129675e+00 -0.48273534e+01 0.49360000e+00
- 1 211 0 0 -0.91721942e+00 -0.22082005e-01 -0.20185243e+01 0.13957000e+00
- 2 -311 752 752 -0.62083796e+00 0.12537068e+01 -0.10835769e+02 0.49767000e+00
- 1 -211 0 0 -0.45880759e+00 0.25463580e+00 -0.28578207e+01 0.13957000e+00
- 1 22 0 0 -0.12159067e+01 0.10586334e+01 -0.89186379e+01 0.00000000e+00
- 1 22 0 0 -0.11471801e+01 0.71423243e+00 -0.10474903e+02 0.00000000e+00
- 1 22 0 0 -0.88822656e-01 -0.48705710e-01 -0.24592990e+01 0.00000000e+00
- 1 22 0 0 0.50023777e-01 -0.10950569e-01 -0.11597636e+01 0.00000000e+00
- 1 211 0 0 -0.11044044e+01 0.17102874e+00 -0.12731340e+02 0.13957000e+00
- 2 111 753 754 -0.10634790e+00 0.70902614e-01 -0.63908838e+00 0.13498000e+00
- 1 22 0 0 -0.36618980e+00 0.17373301e+00 -0.12319133e+02 0.00000000e+00
- 1 22 0 0 -0.27557817e+00 0.15661401e-01 -0.19422893e+01 0.00000000e+00
- 1 2112 0 0 -0.51561585e+00 -0.31642200e+00 -0.18262141e+02 0.93957000e+00
- 1 -211 0 0 -0.43200906e+00 -0.10958663e+00 -0.71078672e+01 0.13957000e+00
- 1 -2112 0 0 -0.16458260e+01 -0.85084878e-01 -0.38404004e+02 0.93957000e+00
- 1 211 0 0 -0.21027874e+00 -0.30380603e-01 -0.24885105e+01 0.13957000e+00
- 1 130 0 0 -0.25951044e+01 0.76359808e-01 -0.13503539e+03 0.49767000e+00
- 1 -211 0 0 -0.57640864e+00 -0.58842559e+00 -0.20562183e+02 0.13957000e+00
- 1 211 0 0 -0.28446309e+00 0.32240682e+00 -0.27710958e+02 0.13957000e+00
- 2 311 755 755 -0.34752258e-01 -0.16218173e+00 -0.18981202e+02 0.49767000e+00
- 2 111 756 757 0.43729554e+00 -0.34176416e+00 -0.26472093e+02 0.13498000e+00
- 2 3212 758 759 -0.12660489e+01 -0.50704240e+00 -0.67013907e+02 0.11925500e+01
- 1 -211 0 0 -0.27230088e+00 0.79995618e-01 -0.12613529e+02 0.13957000e+00
- 1 -2112 0 0 0.28584221e+00 0.24048387e+00 -0.25365521e+02 0.93957000e+00
- 1 211 0 0 0.29813616e-01 -0.22000711e+00 -0.46241394e+01 0.13957000e+00
- 1 -211 0 0 -0.14573279e+00 -0.44194651e+00 -0.68662527e+01 0.13957000e+00
- 1 211 0 0 0.98512993e+00 -0.97304839e+00 -0.22319691e+02 0.13957000e+00
- 2 111 760 761 -0.74620023e-01 -0.10033220e-01 -0.39543663e+01 0.13498000e+00
- 2 111 762 763 0.16914733e+00 0.16635737e+00 -0.64634668e+01 0.13498000e+00
- 2 111 764 765 0.63274405e-01 0.97642946e-01 -0.73681632e+01 0.13498000e+00
- 2 311 766 766 -0.21454911e+00 0.34074499e+00 -0.20612968e+02 0.49767000e+00
- 2 111 767 768 -0.66637123e+00 0.24849144e+00 -0.20615430e+02 0.13498000e+00
- 1 -321 0 0 0.63514207e-01 -0.12626053e+00 -0.12463195e+02 0.49360000e+00
- 1 211 0 0 -0.32093761e+00 -0.34719297e+00 -0.21933813e+02 0.13957000e+00
- 1 22 0 0 -0.11320640e+00 -0.17063338e+00 -0.16017871e+02 0.00000000e+00
- 1 22 0 0 0.21373965e-01 0.69314283e-02 -0.32601134e+01 0.00000000e+00
- 1 -211 0 0 0.25269515e+00 0.50790252e+00 -0.13440492e+02 0.13957000e+00
- 2 111 769 770 0.57735594e-02 -0.10417121e-01 -0.20228232e+02 0.13498000e+00
- 2 311 771 771 -0.80156760e+00 -0.26398534e+00 -0.40501136e+02 0.49767000e+00
- 1 211 0 0 -0.16180114e+00 0.38945867e-01 -0.29878190e+02 0.13957000e+00
- 2 111 772 773 -0.41261608e+00 0.18788537e+00 -0.52683127e+02 0.13498000e+00
- 2 111 774 775 -0.36097630e+00 -0.71756127e-01 -0.56968153e+02 0.13498000e+00
- 2 111 776 777 -0.45246182e+00 0.10660217e+00 -0.71904464e+02 0.13498000e+00
- 2 -311 778 778 -0.57370907e+00 -0.25883575e-01 -0.56481685e+02 0.49767000e+00
- 1 -211 0 0 -0.66508224e-02 0.30253232e+00 -0.28053985e+02 0.13957000e+00
- 1 22 0 0 -0.29272550e+00 0.14895555e+00 -0.47435217e+02 0.00000000e+00
- 1 22 0 0 -0.96728906e+00 0.73400757e+00 -0.15585105e+03 0.00000000e+00
- 1 22 0 0 0.10465477e+00 -0.38830900e+00 -0.11522436e+03 0.00000000e+00
- 2 113 779 780 -0.11713795e+00 0.17311874e-01 -0.31422835e+03 0.56243572e+00
- 1 -211 0 0 0.13390291e+00 -0.13170691e+00 -0.35589818e+02 0.13957000e+00
- 2 111 781 782 -0.27425097e+00 0.33755211e+00 -0.18983583e+03 0.13498000e+00
- 1 211 0 0 0.76789886e-01 0.16730981e+00 -0.38555933e+03 0.13957000e+00
- 2 111 783 784 0.38197967e+00 -0.48096652e+00 -0.44639054e+03 0.13498000e+00
- 1 -211 0 0 0.33004505e+00 -0.33018856e+00 0.91809671e+00 0.13957000e+00
- 1 211 0 0 0.51047936e+00 0.73328100e-01 0.30489108e+01 0.13957000e+00
- 2 111 785 786 0.53795866e+00 0.35147970e+00 0.20094574e+01 0.13498000e+00
- 2 111 787 788 0.19127184e+00 0.10741227e+00 0.93632750e+00 0.13498000e+00
- 2 111 789 790 0.18366484e+00 0.33368983e+00 0.10374091e+01 0.13498000e+00
- 1 211 0 0 0.11929244e+00 0.30552893e+00 0.49577166e+00 0.13957000e+00
- 2 111 791 792 0.12349498e+00 -0.41916396e+00 0.10630238e+01 0.13498000e+00
- 1 -211 0 0 0.23052826e+00 -0.31287230e+00 0.14120026e+01 0.13957000e+00
- 1 211 0 0 0.89120949e-01 -0.14701365e+00 0.39584746e+00 0.13957000e+00
- 2 111 793 794 0.21112672e+00 -0.29741398e+00 0.64412486e+00 0.13498000e+00
- 1 -211 0 0 0.10948150e+00 -0.36103360e+00 0.10384516e+01 0.13957000e+00
- 2 111 795 796 0.76969226e+00 -0.22986366e+00 0.33077215e+01 0.13498000e+00
- 1 211 0 0 0.14404126e+01 -0.23028537e+01 0.84666758e+01 0.13957000e+00
- 2 111 797 798 -0.40916453e-01 -0.24980561e+00 0.12960143e+01 0.13498000e+00
- 1 22 0 0 0.20533174e+00 -0.53820882e+00 0.11455420e+01 0.00000000e+00
- 1 22 0 0 0.35884751e+00 -0.54110986e+00 0.12978763e+01 0.00000000e+00
- 1 -211 0 0 0.65461706e+00 -0.48398651e+00 0.78112645e+01 0.13957000e+00
- 2 111 799 800 0.18167024e+00 0.25846913e+00 0.25644497e+01 0.13498000e+00
- 2 311 801 801 0.18670884e+00 -0.12417398e+00 0.18988768e+01 0.49767000e+00
- 1 211 0 0 0.57395062e-01 0.76167894e-01 0.40831664e+01 0.13957000e+00
- 2 -311 802 802 0.21995020e+01 -0.87400787e+00 0.34211509e+02 0.49767000e+00
- 1 -211 0 0 0.56712274e+00 -0.36941788e+00 0.56718109e+01 0.13957000e+00
- 1 22 0 0 0.97245892e-01 -0.17359697e+00 0.21046801e+01 0.00000000e+00
- 1 22 0 0 0.35720706e+00 0.39036342e+00 0.89127988e+01 0.00000000e+00
- 1 211 0 0 -0.27170461e-01 0.20330533e+00 0.26085767e+01 0.13957000e+00
- 2 111 803 804 0.67572171e+00 -0.11054847e+00 0.20984081e+02 0.13498000e+00
- 1 -211 0 0 0.45419872e+00 -0.80231337e+00 0.25448456e+02 0.13957000e+00
- 2 111 805 806 0.79284962e+00 0.10372104e+00 0.29539255e+02 0.13498000e+00
- 1 -211 0 0 0.65001438e+00 -0.17877735e+00 0.53298581e+02 0.13957000e+00
- 1 211 0 0 0.27518526e+00 -0.82290246e-01 0.21303912e+02 0.13957000e+00
- 2 111 807 808 0.42740684e+00 -0.11244026e+00 0.21515942e+02 0.13498000e+00
- 1 -211 0 0 0.27043236e+00 -0.13939927e+01 0.75811679e+02 0.13957000e+00
- 1 211 0 0 0.32710842e+00 -0.29424049e+01 0.11614658e+03 0.13957000e+00
- 1 211 0 0 0.27029394e+00 -0.23186247e+00 0.13197337e+02 0.13957000e+00
- 1 -211 0 0 0.36067707e+00 -0.55899311e+00 0.21488917e+02 0.13957000e+00
- 2 111 809 810 0.48008281e-01 -0.20623897e+00 0.11284678e+02 0.13498000e+00
- 1 -211 0 0 -0.77245207e+00 0.12294214e+01 -0.11706460e+01 0.13957000e+00
- 1 211 0 0 -0.57790719e+00 0.62176737e+00 -0.11260020e+01 0.13957000e+00
- 1 211 0 0 -0.80645414e+00 0.10330126e+01 -0.28275285e+01 0.13957000e+00
- 2 111 811 812 -0.19585722e+00 0.10066017e+01 -0.16029446e+01 0.13498000e+00
- 1 211 0 0 -0.89826122e+00 0.90244410e+00 -0.93377951e+00 0.13957000e+00
- 1 -211 0 0 -0.17310405e+00 -0.11681350e+00 -0.37841766e+00 0.13957000e+00
- 1 -211 0 0 -0.18324360e+00 0.26134257e+00 -0.35177518e+01 0.13957000e+00
- 1 211 0 0 0.13532034e+00 -0.16651203e+00 -0.26473211e+01 0.13957000e+00
- 1 211 0 0 0.21678109e+00 0.14026315e+01 -0.57414535e+02 0.13957000e+00
- 1 -211 0 0 0.26803728e+00 0.37347415e+00 -0.13201078e+02 0.13957000e+00
- 2 3122 813 814 -0.31464119e+00 0.52278830e-01 -0.36877177e+02 0.11156800e+01
- 1 22 0 0 0.46070781e-01 -0.31234080e-01 -0.10802481e+01 0.00000000e+00
- 2 111 815 816 0.11396803e+00 0.94316039e-01 -0.50089431e+02 0.13498000e+00
- 2 111 817 818 0.20787336e+00 -0.12640778e+00 -0.59519833e+02 0.13498000e+00
- 2 111 819 820 0.10525393e+00 0.48380093e-01 -0.85630369e+02 0.13498000e+00
- 1 211 0 0 0.25183802e+00 -0.74239711e+00 -0.35648334e+02 0.13957000e+00
- 2 111 821 822 0.10471624e+00 0.23072654e-01 -0.27604149e+02 0.13498000e+00
- 1 211 0 0 0.23593540e+00 0.61021079e-01 0.35428179e+00 0.13957000e+00
- 1 -211 0 0 0.19895520e+00 0.23472898e+00 0.32705470e+00 0.13957000e+00
- 2 111 823 824 0.31786231e+00 -0.72459414e-01 0.13361066e+01 0.13498000e+00
- 1 -211 0 0 0.38875069e+00 -0.80379813e-01 0.26778635e+00 0.13957000e+00
- 1 211 0 0 0.13332271e+00 -0.16018906e+00 0.13921483e+00 0.13957000e+00
- 2 111 825 826 0.90479356e-01 -0.45749029e-01 0.26266497e+00 0.13498000e+00
- 2 111 827 828 0.24632676e+00 0.25410023e+00 0.58764207e+00 0.13498000e+00
- 2 111 829 830 0.52195934e+00 0.26363642e+00 0.90935401e+00 0.13498000e+00
- 2 111 831 832 0.16812262e+00 0.25372230e-01 0.18559400e+00 0.13498000e+00
- 1 211 0 0 -0.29658591e+00 0.54664305e-01 0.97986147e-01 0.13957000e+00
- 1 -211 0 0 -0.73702158e-01 -0.10552405e+00 -0.32771821e-03 0.13957000e+00
- 1 211 0 0 0.43539641e+00 -0.28375168e+00 -0.84566705e-01 0.13957000e+00
- 1 -211 0 0 -0.28545113e-02 -0.34907632e-01 -0.23441518e-01 0.13957000e+00
- 1 -211 0 0 -0.73265166e+00 0.42004208e+00 0.61464262e+00 0.13957000e+00
- 1 211 0 0 -0.29673882e+00 -0.24458301e+00 0.66644055e+00 0.13957000e+00
- 1 130 0 0 -0.18519949e+00 0.64867241e+00 0.22982639e+00 0.49767000e+00
- 1 211 0 0 -0.26846659e+00 0.32659592e+00 0.17306940e+00 0.13957000e+00
- 1 -211 0 0 0.19309145e+00 0.17329683e-01 -0.14902249e+00 0.13957000e+00
- 2 -3122 833 834 -0.40398872e+00 -0.24325407e+00 0.38271961e+00 0.11156800e+01
- 2 111 835 836 0.91724989e-02 0.12523148e+00 -0.94671817e-01 0.13498000e+00
- 1 22 0 0 0.55892188e+00 0.34631407e+00 0.47561635e+00 0.00000000e+00
- 1 22 0 0 0.43171343e-01 0.84559997e-01 0.62247574e-01 0.00000000e+00
- 1 211 0 0 0.79973728e+00 0.28198043e+00 0.39111466e-01 0.13957000e+00
- 2 111 837 838 0.14496799e+01 0.22717153e-01 0.54829854e+00 0.13498000e+00
- 1 -211 0 0 0.90745956e+00 -0.31614265e+00 -0.85229052e+00 0.13957000e+00
- 2 111 839 840 0.23771521e+00 -0.56895095e+00 -0.72192977e+00 0.13498000e+00
- 1 2112 0 0 0.10547949e+01 -0.13348383e+01 -0.15309512e+01 0.93957000e+00
- 2 111 841 842 0.66126393e+00 -0.42420887e+00 -0.35449515e+00 0.13498000e+00
- 1 22 0 0 -0.24083908e-01 -0.78008294e-01 -0.87315725e-01 0.00000000e+00
- 1 22 0 0 0.14130017e+00 -0.41799499e+00 -0.26786572e+00 0.00000000e+00
- 1 -2112 0 0 0.22204027e+01 -0.13423610e+01 -0.22865211e+01 0.93957000e+00
- 1 211 0 0 0.47781656e+00 -0.39922690e-01 -0.55492534e+00 0.13957000e+00
- 1 -211 0 0 0.20291840e+00 -0.31884898e-01 0.52655525e-01 0.13957000e+00
- 2 111 843 844 0.41892963e+00 -0.81699409e-01 -0.10179862e+01 0.13498000e+00
- 1 22 0 0 0.24617824e+00 0.42578040e+00 -0.41774654e+00 0.00000000e+00
- 1 22 0 0 0.19921883e-01 0.58246583e-01 -0.13182419e+00 0.00000000e+00
- 1 22 0 0 0.24118985e-01 0.24057053e-01 -0.25861221e-04 0.00000000e+00
- 1 22 0 0 0.20584337e-02 -0.61353775e-01 -0.21720507e+00 0.00000000e+00
- 1 321 0 0 0.97311886e+00 -0.17326270e+00 -0.24790692e+01 0.49360000e+00
- 1 -211 0 0 0.40103877e+00 0.13879465e+00 -0.46110783e+00 0.13957000e+00
- 1 130 0 0 0.55601349e+00 0.10660629e-02 -0.38348491e+01 0.49767000e+00
- 1 -211 0 0 0.18294280e+01 -0.19966043e+00 -0.10497953e+02 0.13957000e+00
- 2 111 845 846 0.26252541e+00 -0.15920286e+00 -0.94438803e+00 0.13498000e+00
- 2 311 847 847 0.27550871e+00 -0.40943642e-02 -0.31608374e+01 0.49767000e+00
- 1 211 0 0 0.46010589e+00 0.38595513e+00 -0.24066393e+01 0.13957000e+00
- 1 -321 0 0 0.22721998e+01 0.52004738e+00 -0.78506259e+01 0.49360000e+00
- 1 211 0 0 0.22155921e+00 -0.14544235e+00 -0.14854308e+01 0.13957000e+00
- 2 310 848 849 0.10276110e+01 -0.13562085e+01 -0.12210148e+02 0.49767000e+00
- 2 310 850 851 0.23923425e+01 -0.45525868e+00 -0.13429614e+02 0.49767000e+00
- 1 -211 0 0 0.61449334e+00 -0.53737331e+00 -0.89527098e+01 0.13957000e+00
- 1 211 0 0 0.62759010e+00 -0.56861000e+00 -0.37107465e+01 0.13957000e+00
- 1 130 0 0 0.48672728e+00 -0.36623392e+00 -0.31572574e+01 0.49767000e+00
- 1 22 0 0 -0.86221569e-01 0.81178063e-02 -0.26490087e+00 0.00000000e+00
- 1 22 0 0 -0.27009322e+00 0.44344517e+00 0.10901003e+00 0.00000000e+00
- 1 22 0 0 -0.82003881e-01 0.53083920e-01 0.12886728e+00 0.00000000e+00
- 1 22 0 0 -0.14182645e+00 -0.38160866e-01 0.49104436e-01 0.00000000e+00
- 1 321 0 0 -0.34728100e+00 0.69614327e+00 0.31135906e+00 0.49360000e+00
- 2 111 852 853 -0.47277418e-01 0.23715737e+00 0.59517927e+00 0.13498000e+00
- 2 310 854 855 -0.49679242e+00 0.17935668e+01 0.83728170e+00 0.49767000e+00
- 1 -211 0 0 -0.26609404e+00 0.15225067e+01 0.52447657e+00 0.13957000e+00
- 2 111 856 857 -0.14303603e+00 0.39232701e+00 0.63361686e+00 0.13498000e+00
- 1 211 0 0 -0.42442464e+00 -0.10030369e+00 0.55079823e+00 0.13957000e+00
- 1 -211 0 0 -0.74463484e+00 0.76432082e+00 0.47491180e+00 0.13957000e+00
- 2 311 858 858 -0.99083509e+00 0.87493602e+00 0.31791924e+01 0.49767000e+00
- 1 211 0 0 -0.26234248e+00 0.11453720e+00 0.20923603e+00 0.13957000e+00
- 1 2112 0 0 -0.10997641e+01 0.49777376e+00 0.21786785e+01 0.93957000e+00
- 1 211 0 0 -0.59300691e+00 0.37652217e+00 0.99596899e+00 0.13957000e+00
- 1 22 0 0 -0.28438980e-01 0.94154469e-01 0.27992081e+00 0.00000000e+00
- 1 22 0 0 -0.81822519e-01 -0.10039269e-01 0.50778717e+00 0.00000000e+00
- 1 -2212 0 0 0.54888025e-01 -0.83135180e+00 0.12032913e+01 0.93827000e+00
- 1 -211 0 0 -0.60478410e-01 -0.15491482e+00 0.15835297e+00 0.13957000e+00
- 1 211 0 0 -0.30563794e+00 -0.72853167e+00 0.70378722e+00 0.13957000e+00
- 2 111 859 860 0.73446255e-01 0.12737468e+00 0.56470937e+00 0.13498000e+00
- 1 22 0 0 -0.66710371e-01 -0.60201588e-01 0.13292864e+00 0.00000000e+00
- 1 22 0 0 0.39761993e-01 0.25111648e-01 0.30365029e-01 0.00000000e+00
- 1 -211 0 0 -0.16686636e+00 -0.18323585e+00 0.85901468e-01 0.13957000e+00
- 1 211 0 0 -0.47051025e-01 0.10200111e-01 0.62501198e+00 0.13957000e+00
- 2 111 861 862 0.87641711e-01 0.52577033e-01 0.36934489e+00 0.13498000e+00
- 1 -211 0 0 -0.67129915e-01 -0.54193748e-01 0.57806661e+00 0.13957000e+00
- 1 211 0 0 -0.14087642e-01 -0.68066029e+00 0.78927703e+00 0.13957000e+00
- 2 111 863 864 -0.99263073e-01 -0.15884286e+00 0.12265419e+00 0.13498000e+00
- 1 22 0 0 0.17960229e-01 -0.29855551e-02 -0.46030671e-01 0.00000000e+00
- 2 113 865 866 0.78191352e+00 0.19324089e+00 0.95266760e+00 0.84110328e+00
- 1 211 0 0 0.23493021e+00 -0.73506372e-01 0.67731985e-01 0.13957000e+00
- 1 -211 0 0 0.37865518e+00 -0.28608832e-01 0.66267787e-01 0.13957000e+00
- 2 221 867 868 0.12803284e+01 -0.34333885e+00 0.97937504e+00 0.54745000e+00
- 1 22 0 0 -0.89402946e-01 -0.21162156e-01 -0.24565229e+00 0.00000000e+00
- 1 22 0 0 -0.38747545e+00 0.13205389e+00 -0.68807487e+00 0.00000000e+00
- 1 22 0 0 0.14958501e-01 -0.63935754e-01 0.30693965e-01 0.00000000e+00
- 1 22 0 0 0.12057916e-01 0.47692400e-01 -0.45342088e-01 0.00000000e+00
- 1 211 0 0 0.78166087e-01 0.76903798e-01 0.49598585e+00 0.13957000e+00
- 2 111 869 870 -0.10262654e+00 0.44134302e+00 0.13280471e+00 0.13498000e+00
- 1 -2112 0 0 -0.73437110e+00 -0.15983605e+00 -0.74148074e-01 0.93957000e+00
- 1 -211 0 0 -0.25883899e+00 -0.86091082e-01 0.55097020e-01 0.13957000e+00
- 2 311 871 871 -0.15973050e+00 0.12214695e+00 -0.11970649e+00 0.49767000e+00
- 2 111 872 873 0.22698036e+00 0.21770945e+00 0.24507071e+00 0.13498000e+00
- 1 2112 0 0 -0.39687680e+00 -0.75998194e-01 -0.33633975e+00 0.93957000e+00
- 1 211 0 0 -0.67979183e-01 0.12335219e+00 -0.27730632e+00 0.13957000e+00
- 1 22 0 0 0.30637192e-01 0.14818226e+00 -0.71709627e-01 0.00000000e+00
- 1 22 0 0 0.14676245e+00 0.20622728e+00 -0.29914931e+00 0.00000000e+00
- 1 -211 0 0 -0.30799727e+00 -0.15397006e+00 -0.63599480e+00 0.13957000e+00
- 2 111 874 875 -0.31488851e+00 -0.10453912e+01 -0.57792345e+00 0.13498000e+00
- 1 22 0 0 -0.32215904e+00 0.17226436e-02 -0.61279543e+01 0.00000000e+00
- 1 22 0 0 -0.14434711e+00 -0.25654393e-01 -0.15500897e+01 0.00000000e+00
- 1 -211 0 0 0.16794053e+00 -0.15780826e-01 -0.56141280e+01 0.13957000e+00
- 1 211 0 0 -0.32165698e+00 0.32826470e+00 -0.45925084e+01 0.13957000e+00
- 1 2212 0 0 -0.47712389e+00 -0.21498370e+01 -0.76016837e+02 0.93827000e+00
- 2 111 876 877 -0.37912174e+00 -0.43084295e+00 -0.18393934e+02 0.13498000e+00
- 1 211 0 0 0.27503847e+00 -0.36524234e+00 -0.15457221e+02 0.13957000e+00
- 1 -211 0 0 0.46084758e-01 -0.31110847e+00 -0.13866389e+02 0.13957000e+00
- 2 111 878 879 -0.39818208e-01 -0.82900630e+00 -0.49242100e+02 0.13498000e+00
- 1 211 0 0 -0.65917095e+00 0.22943142e+00 -0.41180883e+01 0.13957000e+00
- 1 -211 0 0 -0.24167395e+00 -0.48260470e-02 -0.69764703e+01 0.13957000e+00
- 1 -211 0 0 0.33114836e-01 -0.37714137e+00 -0.24586033e+01 0.13957000e+00
- 1 211 0 0 0.92451446e+00 0.63777360e-01 -0.34311024e+01 0.13957000e+00
- 1 211 0 0 -0.61216820e-01 0.66983402e-01 -0.27469544e+00 0.13957000e+00
- 1 -211 0 0 -0.12955633e-01 0.22840125e+00 -0.65899051e+00 0.13957000e+00
- 2 221 880 882 -0.41639401e+00 0.63772912e-01 -0.12453884e+01 0.54745000e+00
- 1 -211 0 0 -0.37902639e+00 -0.43638702e-01 -0.84483250e+00 0.13957000e+00
- 2 111 883 884 -0.45476934e-01 -0.43895121e+00 -0.89873563e-01 0.13498000e+00
- 1 321 0 0 -0.43226390e+00 0.48850557e+00 -0.57069079e+01 0.49360000e+00
- 1 -211 0 0 -0.57408164e-01 -0.94912314e-01 -0.80322177e+00 0.13957000e+00
- 1 22 0 0 -0.27837251e+01 0.58696487e+00 0.26286367e+00 0.00000000e+00
- 1 22 0 0 -0.70057529e+01 0.14412444e+01 0.44912135e+00 0.00000000e+00
- 1 22 0 0 -0.24840114e+01 0.69928055e+00 0.81634744e+00 0.00000000e+00
- 1 22 0 0 -0.16657064e+01 0.56699878e+00 0.61903022e+00 0.00000000e+00
- 1 22 0 0 -0.26686680e+01 0.93988938e+00 0.54072465e+00 0.00000000e+00
- 1 22 0 0 -0.58691525e+01 0.22804608e+01 0.11977439e+01 0.00000000e+00
- 1 130 0 0 -0.91890843e+00 0.57336125e+00 0.15653481e+01 0.49767000e+00
- 1 22 0 0 -0.25365746e-01 -0.75447939e-01 0.29714299e-01 0.00000000e+00
- 1 22 0 0 0.75366183e-01 0.69880129e-02 0.69693089e-01 0.00000000e+00
- 1 130 0 0 -0.79045692e+00 0.40624902e+00 0.27074010e+01 0.49767000e+00
- 1 22 0 0 -0.15816938e+00 0.69467140e-02 0.10170760e+01 0.00000000e+00
- 1 22 0 0 -0.92525470e+00 0.28179602e+00 0.48896369e+01 0.00000000e+00
- 1 22 0 0 -0.31154788e+00 0.17158319e+00 0.13768420e+01 0.00000000e+00
- 1 22 0 0 -0.11448381e+01 0.93691603e+00 0.59550405e+01 0.00000000e+00
- 1 22 0 0 -0.61450845e+00 0.25497863e+00 0.28753643e+01 0.00000000e+00
- 1 22 0 0 -0.14048798e+00 0.80731158e-02 0.45185018e+00 0.00000000e+00
- 2 310 885 886 -0.75490265e+00 -0.34857249e-01 0.86407779e+01 0.49767000e+00
- 1 130 0 0 -0.18175203e+01 -0.68494639e+00 0.19830333e+02 0.49767000e+00
- 1 22 0 0 -0.64931513e+00 0.53255857e-01 0.94698689e+01 0.00000000e+00
- 1 22 0 0 -0.83894294e+00 -0.18233480e-01 0.14178922e+02 0.00000000e+00
- 1 22 0 0 -0.59960833e+00 0.80431813e-01 0.18285524e+02 0.00000000e+00
- 1 22 0 0 -0.29349762e+00 0.42647606e-01 0.12311122e+02 0.00000000e+00
- 1 22 0 0 0.98176899e-02 0.47140086e-01 0.86495344e+00 0.00000000e+00
- 1 22 0 0 -0.49374962e-01 0.76682901e+00 0.26122754e+02 0.00000000e+00
- 1 22 0 0 -0.99371763e-02 -0.29511252e-01 0.28582864e+02 0.00000000e+00
- 1 22 0 0 0.19400268e+00 0.29086672e-01 0.13821625e+03 0.00000000e+00
- 1 130 0 0 0.33277091e+00 -0.29048041e+00 0.19480751e+03 0.49767000e+00
- 1 22 0 0 -0.12192273e-01 -0.25168579e+00 0.10047871e+03 0.00000000e+00
- 1 22 0 0 0.33801400e-02 0.15999621e-01 0.12575701e+02 0.00000000e+00
- 1 22 0 0 0.47385567e-01 -0.98870132e-01 0.24760680e+02 0.00000000e+00
- 1 22 0 0 0.22056020e+00 -0.81758072e+00 0.28548908e+03 0.00000000e+00
- 1 22 0 0 -0.27874831e+00 0.43842493e-01 0.22812762e+02 0.00000000e+00
- 1 22 0 0 -0.10977296e+00 -0.61799005e-01 0.76589837e+01 0.00000000e+00
- 1 22 0 0 0.83163958e-02 -0.43282902e-01 0.84245259e+00 0.00000000e+00
- 1 22 0 0 -0.14745884e+00 0.12946941e-01 0.46202791e+01 0.00000000e+00
- 2 310 887 888 0.25919089e+00 0.93086752e+00 0.42379276e+01 0.49767000e+00
- 1 22 0 0 0.22226793e+00 0.36000679e-01 0.38183653e+00 0.00000000e+00
- 1 22 0 0 0.24319864e+00 0.19485109e+00 0.53992982e+00 0.00000000e+00
- 1 22 0 0 0.97700179e+00 0.79391256e+00 0.24632443e+01 0.00000000e+00
- 1 22 0 0 0.50332665e+00 0.34495283e+00 0.10285652e+01 0.00000000e+00
- 1 22 0 0 0.32579700e+00 0.25775713e+00 0.25591585e+00 0.00000000e+00
- 1 22 0 0 0.45710530e-01 -0.27903882e-02 0.72472090e-01 0.00000000e+00
- 1 22 0 0 0.37254696e+00 0.32856673e-01 0.29295696e+00 0.00000000e+00
- 1 22 0 0 0.40622476e+00 0.12244516e+00 0.49144818e+00 0.00000000e+00
- 1 22 0 0 -0.19002815e+00 -0.43472072e-01 0.72094169e+00 0.00000000e+00
- 1 22 0 0 -0.23025391e+00 0.22323438e-01 0.14891951e+01 0.00000000e+00
- 1 22 0 0 0.63687574e-02 -0.84096346e-01 0.10055026e+02 0.00000000e+00
- 1 22 0 0 0.78572185e-01 -0.97899904e-01 0.49190315e+01 0.00000000e+00
- 1 22 0 0 0.15498528e-01 -0.58691626e-01 0.48264026e+00 0.00000000e+00
- 1 22 0 0 -0.24676532e-01 -0.23713956e+00 0.52652484e+01 0.00000000e+00
- 1 22 0 0 -0.50019720e-01 0.15818268e+00 0.31368473e+02 0.00000000e+00
- 1 22 0 0 0.53226383e-01 0.21060784e-01 0.84861259e+01 0.00000000e+00
- 1 22 0 0 -0.29181062e+00 -0.30590101e+00 0.82589103e+02 0.00000000e+00
- 1 22 0 0 -0.47080697e-01 -0.11223509e+00 0.14897077e+02 0.00000000e+00
- 2 310 889 890 0.76165511e+00 -0.80509780e+00 -0.61859996e+01 0.49767000e+00
- 1 -211 0 0 0.10768749e+00 -0.16669130e+00 -0.96846412e+00 0.13957000e+00
- 1 211 0 0 -0.22602682e-01 -0.65612371e-01 -0.53279330e-01 0.13957000e+00
- 2 310 891 892 -0.46667748e+00 0.35081469e+00 -0.24483986e+01 0.49767000e+00
- 1 130 0 0 -0.23688448e+00 -0.63828915e+00 -0.18038708e+01 0.49767000e+00
- 1 130 0 0 -0.62083796e+00 0.12537068e+01 -0.10835769e+02 0.49767000e+00
- 1 22 0 0 0.84816238e-02 0.47259062e-01 -0.35521376e+00 0.00000000e+00
- 1 22 0 0 -0.11482952e+00 0.23643551e-01 -0.28387462e+00 0.00000000e+00
- 2 310 893 894 -0.34752258e-01 -0.16218173e+00 -0.18981202e+02 0.49767000e+00
- 1 22 0 0 0.26347311e+00 -0.28126076e+00 -0.16920845e+02 0.00000000e+00
- 1 22 0 0 0.17382243e+00 -0.60503396e-01 -0.95512482e+01 0.00000000e+00
- 2 3122 895 896 -0.10967766e+01 -0.43868432e+00 -0.61511987e+02 0.11156800e+01
- 1 22 0 0 -0.16927226e+00 -0.68358083e-01 -0.55019200e+01 0.00000000e+00
- 1 22 0 0 -0.10105552e+00 -0.19310763e-01 -0.18679080e+01 0.00000000e+00
- 1 22 0 0 0.26435496e-01 0.92775434e-02 -0.20864583e+01 0.00000000e+00
- 1 22 0 0 -0.18069129e-01 -0.36528458e-02 -0.65325513e+00 0.00000000e+00
- 1 22 0 0 0.18721646e+00 0.17001022e+00 -0.58102116e+01 0.00000000e+00
- 1 22 0 0 0.65173458e-01 0.37768089e-01 -0.15349729e+01 0.00000000e+00
- 1 22 0 0 -0.18990524e-02 0.59874857e-01 -0.58331903e+01 0.00000000e+00
- 2 310 897 898 -0.21454911e+00 0.34074499e+00 -0.20612968e+02 0.49767000e+00
- 1 22 0 0 -0.64834941e+00 0.25203827e+00 -0.20419856e+02 0.00000000e+00
- 1 22 0 0 -0.18021819e-01 -0.35468312e-02 -0.19557325e+00 0.00000000e+00
- 1 22 0 0 0.31003993e-01 0.36506481e-01 -0.30911042e+01 0.00000000e+00
- 1 22 0 0 -0.25230434e-01 -0.46923603e-01 -0.17137128e+02 0.00000000e+00
- 2 310 899 900 -0.80156760e+00 -0.26398534e+00 -0.40501136e+02 0.49767000e+00
- 1 22 0 0 -0.30171911e+00 0.12576137e+00 -0.30308741e+02 0.00000000e+00
- 1 22 0 0 -0.11089697e+00 0.62124008e-01 -0.22374385e+02 0.00000000e+00
- 1 22 0 0 0.77687042e-02 -0.11842938e-01 -0.43257329e+01 0.00000000e+00
- 1 22 0 0 -0.36874500e+00 -0.59913189e-01 -0.52642420e+02 0.00000000e+00
- 1 22 0 0 -0.39027623e-01 0.54682988e-01 -0.93109114e+01 0.00000000e+00
- 1 22 0 0 -0.41343420e+00 0.51919182e-01 -0.62593553e+02 0.00000000e+00
- 1 130 0 0 -0.57370907e+00 -0.25883575e-01 -0.56481685e+02 0.49767000e+00
- 1 211 0 0 0.69639551e-01 0.21340997e+00 -0.16834448e+03 0.13957000e+00
- 1 -211 0 0 -0.18677750e+00 -0.19609810e+00 -0.14588386e+03 0.13957000e+00
- 1 22 0 0 -0.25345290e+00 0.31052475e+00 -0.18459800e+03 0.00000000e+00
- 1 22 0 0 -0.20798066e-01 0.27027364e-01 -0.52378285e+01 0.00000000e+00
- 1 22 0 0 0.10019570e+00 -0.20866611e+00 -0.19531622e+03 0.00000000e+00
- 1 22 0 0 0.28178397e+00 -0.27230041e+00 -0.25107432e+03 0.00000000e+00
- 1 22 0 0 0.17019450e+00 0.58763123e-01 0.43195446e+00 0.00000000e+00
- 1 22 0 0 0.36776415e+00 0.29271658e+00 0.15775029e+01 0.00000000e+00
- 1 22 0 0 0.58995352e-01 -0.29948312e-01 0.21086069e+00 0.00000000e+00
- 1 22 0 0 0.13227649e+00 0.13736058e+00 0.72546682e+00 0.00000000e+00
- 1 22 0 0 0.71519558e-02 0.14309364e+00 0.33102480e+00 0.00000000e+00
- 1 22 0 0 0.17651289e+00 0.19059619e+00 0.70638425e+00 0.00000000e+00
- 1 22 0 0 0.10724263e+00 -0.41926156e+00 0.10521636e+01 0.00000000e+00
- 1 22 0 0 0.16252353e-01 0.97592623e-04 0.10860255e-01 0.00000000e+00
- 1 22 0 0 0.64387485e-02 -0.91835336e-01 0.22093901e+00 0.00000000e+00
- 1 22 0 0 0.20468797e+00 -0.20557864e+00 0.42318585e+00 0.00000000e+00
- 1 22 0 0 0.74759175e+00 -0.20135450e+00 0.32182064e+01 0.00000000e+00
- 1 22 0 0 0.22100511e-01 -0.28509155e-01 0.89515117e-01 0.00000000e+00
- 1 22 0 0 -0.14494607e-01 -0.15266779e-02 0.30681955e+00 0.00000000e+00
- 1 22 0 0 -0.26421846e-01 -0.24827893e+00 0.98919471e+00 0.00000000e+00
- 1 22 0 0 0.13966226e+00 0.16631336e+00 0.12262375e+01 0.00000000e+00
- 1 22 0 0 0.42007979e-01 0.92155771e-01 0.13382121e+01 0.00000000e+00
- 1 130 0 0 0.18670884e+00 -0.12417398e+00 0.18988768e+01 0.49767000e+00
- 1 130 0 0 0.21995020e+01 -0.87400787e+00 0.34211509e+02 0.49767000e+00
- 1 22 0 0 0.56386382e+00 -0.59040284e-01 0.18296753e+02 0.00000000e+00
- 1 22 0 0 0.11185790e+00 -0.51508189e-01 0.26873281e+01 0.00000000e+00
- 1 22 0 0 -0.41567138e-02 -0.39461280e-02 0.36675951e+00 0.00000000e+00
- 1 22 0 0 0.79700633e+00 0.10766717e+00 0.29172495e+02 0.00000000e+00
- 1 22 0 0 0.58397999e-01 -0.47414903e-01 0.21004382e+01 0.00000000e+00
- 1 22 0 0 0.36900884e+00 -0.65025354e-01 0.19415504e+02 0.00000000e+00
- 1 22 0 0 -0.54900534e-02 -0.18703268e-01 0.17501493e+00 0.00000000e+00
- 1 22 0 0 0.53498335e-01 -0.18753571e+00 0.11109663e+02 0.00000000e+00
- 1 22 0 0 -0.26739497e-01 0.47151348e+00 -0.77173470e+00 0.00000000e+00
- 1 22 0 0 -0.16911772e+00 0.53508825e+00 -0.83120990e+00 0.00000000e+00
- 1 2212 0 0 -0.33375053e+00 0.12081875e+00 -0.31494089e+02 0.93827000e+00
- 1 -211 0 0 0.19109343e-01 -0.68539923e-01 -0.53830872e+01 0.13957000e+00
- 1 22 0 0 0.11656703e+00 0.10687567e+00 -0.31588413e+02 0.00000000e+00
- 1 22 0 0 -0.25989943e-02 -0.12559635e-01 -0.18501018e+02 0.00000000e+00
- 1 22 0 0 0.12240430e+00 -0.12027548e+00 -0.49029577e+02 0.00000000e+00
- 1 22 0 0 0.85469057e-01 -0.61322922e-02 -0.10490257e+02 0.00000000e+00
- 1 22 0 0 -0.25409752e-01 0.41136724e-02 -0.30950469e+02 0.00000000e+00
- 1 22 0 0 0.13066368e+00 0.44266420e-01 -0.54679901e+02 0.00000000e+00
- 1 22 0 0 0.11884494e+00 0.59601088e-01 -0.20652416e+02 0.00000000e+00
- 1 22 0 0 -0.14128701e-01 -0.36528434e-01 -0.69517333e+01 0.00000000e+00
- 1 22 0 0 0.13448020e+00 0.32598444e-01 0.44119904e+00 0.00000000e+00
- 1 22 0 0 0.18338211e+00 -0.10505786e+00 0.89490760e+00 0.00000000e+00
- 1 22 0 0 0.17176395e-01 -0.75959085e-01 0.18731494e+00 0.00000000e+00
- 1 22 0 0 0.73302961e-01 0.30210056e-01 0.75350032e-01 0.00000000e+00
- 1 22 0 0 0.26629476e-02 0.77267599e-01 0.13312630e+00 0.00000000e+00
- 1 22 0 0 0.24366381e+00 0.17683263e+00 0.45451577e+00 0.00000000e+00
- 1 22 0 0 0.35260723e+00 0.10494480e+00 0.54527579e+00 0.00000000e+00
- 1 22 0 0 0.16935211e+00 0.15869161e+00 0.36407822e+00 0.00000000e+00
- 1 22 0 0 0.89050927e-01 -0.47126020e-01 0.13093600e+00 0.00000000e+00
- 1 22 0 0 0.79071698e-01 0.72498250e-01 0.54658007e-01 0.00000000e+00
- 1 -2212 0 0 -0.23658132e+00 -0.18617265e+00 0.29639440e+00 0.93827000e+00
- 1 211 0 0 -0.16740741e+00 -0.57081424e-01 0.86325202e-01 0.13957000e+00
- 1 22 0 0 0.61397200e-01 0.11036668e+00 -0.46275269e-01 0.00000000e+00
- 1 22 0 0 -0.52224701e-01 0.14864806e-01 -0.48396548e-01 0.00000000e+00
- 1 22 0 0 0.10209899e+01 0.17030698e-01 0.31933391e+00 0.00000000e+00
- 1 22 0 0 0.42868999e+00 0.56864551e-02 0.22896463e+00 0.00000000e+00
- 1 22 0 0 0.13561721e+00 -0.40015211e+00 -0.57229863e+00 0.00000000e+00
- 1 22 0 0 0.10209800e+00 -0.16879884e+00 -0.14963114e+00 0.00000000e+00
- 1 22 0 0 0.13990506e+00 -0.15867144e+00 -0.10814535e+00 0.00000000e+00
- 1 22 0 0 0.52135887e+00 -0.26553742e+00 -0.24634979e+00 0.00000000e+00
- 1 22 0 0 0.15461297e+00 -0.67801871e-01 -0.53892073e+00 0.00000000e+00
- 1 22 0 0 0.26431666e+00 -0.13897537e-01 -0.47906546e+00 0.00000000e+00
- 1 22 0 0 0.30575303e-01 -0.52413982e-01 -0.77321325e-01 0.00000000e+00
- 1 22 0 0 0.23195010e+00 -0.10678888e+00 -0.86706670e+00 0.00000000e+00
- 2 310 901 902 0.27550871e+00 -0.40943642e-02 -0.31608374e+01 0.49767000e+00
- 1 211 0 0 0.77171822e+00 -0.89291151e+00 -0.70964718e+01 0.13957000e+00
- 1 -211 0 0 0.25589275e+00 -0.46329701e+00 -0.51136761e+01 0.13957000e+00
- 1 211 0 0 0.63731341e+00 0.30955868e-01 -0.31353830e+01 0.13957000e+00
- 1 -211 0 0 0.17550291e+01 -0.48621455e+00 -0.10294231e+02 0.13957000e+00
- 1 22 0 0 -0.22503005e-01 0.14864048e-01 0.20459007e+00 0.00000000e+00
- 1 22 0 0 -0.24774413e-01 0.22229332e+00 0.39058919e+00 0.00000000e+00
- 1 -211 0 0 -0.22581210e+00 0.68333864e+00 0.11661333e+00 0.13957000e+00
- 1 211 0 0 -0.27098032e+00 0.11102282e+01 0.72066837e+00 0.13957000e+00
- 1 22 0 0 -0.30462514e-01 0.20146451e-01 0.12687692e+00 0.00000000e+00
- 1 22 0 0 -0.11257351e+00 0.37218055e+00 0.50673994e+00 0.00000000e+00
- 1 130 0 0 -0.99083509e+00 0.87493602e+00 0.31791924e+01 0.49767000e+00
- 1 22 0 0 0.53638136e-02 -0.15324684e-01 0.20959790e+00 0.00000000e+00
- 1 22 0 0 0.68082442e-01 0.14269937e+00 0.35511147e+00 0.00000000e+00
- 1 22 0 0 0.93835530e-01 0.76771803e-01 0.35960740e+00 0.00000000e+00
- 1 22 0 0 -0.61938191e-02 -0.24194770e-01 0.97374884e-02 0.00000000e+00
- 1 22 0 0 -0.69496039e-01 -0.10656087e+00 0.14885620e+00 0.00000000e+00
- 1 22 0 0 -0.29767034e-01 -0.52281985e-01 -0.26202010e-01 0.00000000e+00
- 1 -211 0 0 0.66293907e+00 -0.13002863e+00 0.89258110e+00 0.13957000e+00
- 1 211 0 0 0.11897445e+00 0.32326953e+00 0.60086497e-01 0.13957000e+00
- 1 22 0 0 0.10001905e+01 -0.14707505e+00 0.45041346e+00 0.00000000e+00
- 1 22 0 0 0.28013785e+00 -0.19626379e+00 0.52896158e+00 0.00000000e+00
- 1 22 0 0 -0.68380531e-01 0.12180988e+00 0.91728348e-01 0.00000000e+00
- 1 22 0 0 -0.34246012e-01 0.31953314e+00 0.41076359e-01 0.00000000e+00
- 1 130 0 0 -0.15973050e+00 0.12214695e+00 -0.11970649e+00 0.49767000e+00
- 1 22 0 0 0.21171753e-01 0.88291773e-01 0.11068561e+00 0.00000000e+00
- 1 22 0 0 0.20580860e+00 0.12941768e+00 0.13438510e+00 0.00000000e+00
- 1 22 0 0 -0.12372307e+00 -0.21628421e+00 -0.12515921e+00 0.00000000e+00
- 1 22 0 0 -0.19116545e+00 -0.82910694e+00 -0.45276424e+00 0.00000000e+00
- 1 22 0 0 -0.19439043e+00 -0.19300515e+00 -0.10807048e+02 0.00000000e+00
- 1 22 0 0 -0.18473131e+00 -0.23783780e+00 -0.75868859e+01 0.00000000e+00
- 1 22 0 0 -0.43084871e-01 -0.23153803e+00 -0.11086689e+02 0.00000000e+00
- 1 22 0 0 0.32666627e-02 -0.59746826e+00 -0.38155411e+02 0.00000000e+00
- 2 111 903 904 -0.25386551e+00 -0.95103616e-01 -0.45397754e+00 0.13498000e+00
- 2 111 905 906 -0.15575808e+00 0.84471427e-01 -0.52943678e+00 0.13498000e+00
- 2 111 907 908 -0.67704257e-02 0.74405100e-01 -0.26197408e+00 0.13498000e+00
- 1 22 0 0 0.30651879e-01 -0.27978819e+00 -0.26597507e-01 0.00000000e+00
- 1 22 0 0 -0.76128812e-01 -0.15916301e+00 -0.63276056e-01 0.00000000e+00
- 1 211 0 0 -0.40546179e+00 0.11649270e+00 0.59833250e+01 0.13957000e+00
- 1 -211 0 0 -0.34944086e+00 -0.15134995e+00 0.26574529e+01 0.13957000e+00
- 1 211 0 0 -0.96084207e-01 0.21552922e+00 0.11881896e+01 0.13957000e+00
- 1 -211 0 0 0.35527509e+00 0.71533830e+00 0.30497380e+01 0.13957000e+00
- 1 211 0 0 0.42144535e+00 -0.16848481e+00 -0.27080121e+01 0.13957000e+00
- 1 -211 0 0 0.34020976e+00 -0.63661299e+00 -0.34779875e+01 0.13957000e+00
- 1 -211 0 0 -0.33718946e+00 0.39474286e+00 -0.20848630e+01 0.13957000e+00
- 1 211 0 0 -0.12948802e+00 -0.43928166e-01 -0.36353557e+00 0.13957000e+00
- 1 211 0 0 0.12685089e+00 0.32996991e-01 -0.11600811e+02 0.13957000e+00
- 1 -211 0 0 -0.16160315e+00 -0.19517872e+00 -0.73803917e+01 0.13957000e+00
- 1 2112 0 0 -0.10085088e+01 -0.45997039e+00 -0.53071548e+02 0.93957000e+00
- 2 111 909 910 -0.88267843e-01 0.21286073e-01 -0.84404394e+01 0.13498000e+00
- 1 -211 0 0 -0.18508908e+00 0.65380250e-02 -0.12050484e+02 0.13957000e+00
- 1 211 0 0 -0.29460028e-01 0.33420696e+00 -0.85624844e+01 0.13957000e+00
- 1 211 0 0 -0.73318652e+00 -0.20838543e+00 -0.27872804e+02 0.13957000e+00
- 1 -211 0 0 -0.68381074e-01 -0.55599914e-01 -0.12628332e+02 0.13957000e+00
- 2 111 911 912 0.32834577e+00 -0.12704088e+00 -0.19801257e+01 0.13498000e+00
- 2 111 913 914 -0.52837055e-01 0.12294652e+00 -0.11807117e+01 0.13498000e+00
- 1 22 0 0 -0.13286719e+00 -0.10938690e-01 -0.11492822e+00 0.00000000e+00
- 1 22 0 0 -0.12099832e+00 -0.84164926e-01 -0.33904932e+00 0.00000000e+00
- 1 22 0 0 -0.16852366e+00 0.38172249e-01 -0.44293117e+00 0.00000000e+00
- 1 22 0 0 0.12765584e-01 0.46299179e-01 -0.86505603e-01 0.00000000e+00
- 1 22 0 0 -0.64297506e-02 0.34566817e-02 0.15762432e-01 0.00000000e+00
- 1 22 0 0 -0.34067513e-03 0.70948419e-01 -0.27773651e+00 0.00000000e+00
- 1 22 0 0 0.10410744e-01 0.13733810e-01 -0.52597441e+01 0.00000000e+00
- 1 22 0 0 -0.98678587e-01 0.75522630e-02 -0.31806953e+01 0.00000000e+00
- 1 22 0 0 0.14052768e+00 -0.41536397e-01 -0.11934391e+01 0.00000000e+00
- 1 22 0 0 0.18781809e+00 -0.85504482e-01 -0.78668651e+00 0.00000000e+00
- 1 22 0 0 -0.33594695e-01 0.12360869e+00 -0.54274833e+00 0.00000000e+00
- 1 22 0 0 -0.19242360e-01 -0.66217731e-03 -0.63796340e+00 0.00000000e+00
- 232
- 2 25 2 3 0.16159535e+03 0.14991784e+03 0.84377896e+02 0.12500110e+03
- 2 23 4 5 0.10547781e+03 0.12438684e+03 0.83179587e+02 0.85923074e+02
- 2 23 6 7 0.56117539e+02 0.25531001e+02 0.11983095e+01 0.20068033e+02
- 1 13 0 0 0.81107227e+02 0.82735113e+02 0.98005764e+02 0.10566000e+00
- 1 -13 0 0 0.24370582e+02 0.41651723e+02 -0.14826177e+02 0.10566000e+00
- 1 13 0 0 0.27322810e+02 0.78047514e+01 0.96208994e+01 0.10566000e+00
- 1 -13 0 0 0.28794729e+02 0.17726250e+02 -0.84225899e+01 0.10566000e+00
- 2 2 31 31 0.50898970e+01 0.89845445e+01 0.62905288e+02 0.33000000e+00
- 2 21 31 31 -0.58154592e+00 -0.63334337e+01 0.12628048e+03 0.00000000e+00
- 2 21 31 31 -0.19112614e+01 -0.42306530e+01 0.87517163e+02 0.00000000e+00
- 2 21 31 31 -0.22932359e+00 -0.14081131e+01 0.26664197e+02 0.00000000e+00
- 2 21 31 31 -0.85056407e+01 -0.12286733e+02 0.29880394e+03 0.00000000e+00
- 2 21 31 31 -0.16802687e+01 0.23107556e+00 0.30251361e+02 0.00000000e+00
- 2 21 31 31 0.54964559e-01 -0.18345422e+01 0.96206762e+01 0.00000000e+00
- 2 21 31 31 -0.23206862e+00 0.46521752e+00 0.78567651e+00 0.00000000e+00
- 2 21 31 31 -0.16019589e+01 -0.14410495e+01 0.19967539e+02 0.00000000e+00
- 2 21 31 31 -0.84063128e+00 -0.11617090e+01 0.21106829e+02 0.00000000e+00
- 2 2203 31 31 -0.62812221e+00 -0.20376310e+01 0.61319783e+04 0.77133000e+00
- 2 1 58 58 -0.12988782e+03 -0.11346053e+03 -0.15029246e+04 0.33000000e+00
- 2 21 58 58 -0.20389287e+02 -0.18083100e+02 -0.23071843e+03 0.00000000e+00
- 2 21 58 58 -0.13089368e+01 0.21361082e+01 -0.66848598e+01 0.00000000e+00
- 2 21 58 58 0.48236250e+00 -0.14686564e+01 0.31415828e+00 0.00000000e+00
- 2 21 58 58 0.13878457e+01 0.72263967e+00 -0.28587039e+01 0.00000000e+00
- 2 21 58 58 -0.48236250e+00 0.14686564e+01 -0.27588712e+01 0.00000000e+00
- 2 21 58 58 0.44012390e+00 -0.15975073e+00 -0.42817859e+01 0.00000000e+00
- 2 21 58 58 -0.13878457e+01 -0.72263967e+00 -0.25106968e+02 0.00000000e+00
- 2 21 58 58 0.84063128e+00 0.11617090e+01 -0.31125564e+03 0.00000000e+00
- 2 21 58 58 -0.44012390e+00 0.15975073e+00 -0.21550214e+03 0.00000000e+00
- 2 21 58 58 -0.28797298e+00 -0.10762024e+01 -0.37038035e+03 0.00000000e+00
- 2 2101 58 58 0.50400031e+00 0.45720802e+00 -0.42281017e+04 0.57933000e+00
- 2 92 32 57 -0.11065960e+02 -0.21053027e+02 0.68158814e+04 0.16670658e+03
- 2 213 86 87 0.27896724e+01 0.43607675e+01 0.31751559e+02 0.72142113e+00
- 2 -213 88 89 0.56134981e+00 0.12224049e+01 0.11847269e+02 0.80556689e+00
- 2 213 90 91 0.15024238e+01 0.28250562e+01 0.16853827e+02 0.68564737e+00
- 2 313 92 93 -0.23036297e-02 -0.80444890e+00 0.22092282e+02 0.94334080e+00
- 2 -323 94 95 -0.16891956e+00 -0.24761263e+01 0.49963208e+02 0.86721394e+00
- 2 323 96 97 -0.15534857e+01 -0.44914255e+01 0.10019038e+03 0.10206819e+01
- 2 -311 98 98 -0.29055050e+01 -0.45213245e+01 0.11452608e+03 0.49767000e+00
- 2 -213 99 100 -0.17775700e+01 -0.35280383e+01 0.74988677e+02 0.88293408e+00
- 1 211 0 0 -0.15581842e+00 -0.11132398e+01 0.25905973e+02 0.13957000e+00
- 2 -213 101 102 -0.28223580e+01 -0.39947574e+01 0.82438380e+02 0.74729045e+00
- 2 331 103 105 -0.22219169e+01 -0.25840140e+01 0.81494318e+02 0.95768004e+00
- 2 223 106 108 -0.70642608e+00 -0.25789281e+00 0.90114222e+01 0.78295730e+00
- 2 111 109 110 -0.14132059e+00 -0.59873436e+00 0.11497554e+02 0.13498000e+00
- 2 213 111 112 -0.23079272e+00 -0.39289055e+00 0.39397639e+01 0.41209828e+00
- 1 2112 0 0 -0.24139043e+00 0.10139572e+00 0.31720451e+01 0.93957000e+00
- 1 -2212 0 0 -0.64626872e+00 -0.12273492e+01 0.99200036e+01 0.93827000e+00
- 1 211 0 0 -0.41037707e+00 -0.12562508e-01 0.14892026e+02 0.13957000e+00
- 2 111 113 114 -0.39428111e+00 -0.37510357e+00 0.19040648e+02 0.13498000e+00
- 2 -213 115 116 0.78932281e-01 -0.84433147e-01 0.11980439e+02 0.75389008e+00
- 2 323 117 118 -0.73069766e+00 -0.49271500e+00 0.18078724e+02 0.10245478e+01
- 2 3214 119 120 -0.41221330e-01 -0.31132687e+00 0.61612645e+02 0.13803976e+01
- 2 221 121 122 -0.34923759e-01 -0.66696830e+00 0.31004012e+03 0.54745000e+00
- 1 -2212 0 0 -0.31387364e+00 -0.43921876e+00 0.27460472e+03 0.93827000e+00
- 2 223 123 125 0.13551621e+00 -0.16315815e+00 0.13314563e+04 0.77123424e+00
- 2 2224 126 127 -0.69588928e+00 -0.48382285e+00 0.26389260e+04 0.11653580e+01
- 2 111 128 129 0.61485293e-01 -0.54310068e+00 0.14856570e+04 0.13498000e+00
- 2 92 59 85 -0.15052939e+03 -0.12886481e+03 -0.69002599e+04 0.40468194e+03
- 2 -213 130 131 -0.35759687e+02 -0.31829337e+02 -0.41794505e+03 0.76726984e+00
- 2 223 132 134 -0.10397851e+03 -0.90188491e+02 -0.11935281e+04 0.78032530e+00
- 2 113 135 136 -0.50526139e+01 -0.49377868e+01 -0.64317642e+02 0.91558959e+00
- 2 331 137 138 -0.37824426e+01 -0.29437630e+01 -0.34815097e+02 0.95782783e+00
- 1 211 0 0 -0.86903453e+00 -0.84771352e+00 -0.15067811e+02 0.13957000e+00
- 2 111 139 140 -0.62770882e+00 0.68317892e-01 -0.35555425e+01 0.13498000e+00
- 2 -213 141 142 0.36042685e-01 0.58696043e+00 -0.34841621e+01 0.85224723e+00
- 1 211 0 0 -0.27119393e+00 -0.62823011e+00 -0.93737214e+00 0.13957000e+00
- 2 111 143 144 0.26291834e-01 0.24939368e+00 -0.98230922e+00 0.13498000e+00
- 1 -211 0 0 -0.14322588e+00 -0.33845145e+00 -0.27972289e+01 0.13957000e+00
- 2 213 145 146 -0.10639258e+01 0.67067697e+00 -0.16078448e+01 0.90869083e+00
- 2 1114 147 148 0.12835851e+01 0.36684835e+00 -0.15646307e+01 0.12576633e+01
- 1 211 0 0 -0.44660138e+00 -0.16678516e+00 -0.37396346e+00 0.13957000e+00
- 1 -2212 0 0 -0.75825777e-01 0.41098538e+00 -0.14249270e+01 0.93827000e+00
- 2 323 149 150 0.39194159e+00 -0.49014785e+00 -0.25012601e+01 0.10139888e+01
- 2 3114 151 152 0.14881719e+00 0.73060669e+00 -0.63490753e+01 0.14265242e+01
- 2 213 153 154 0.16016315e+00 0.17840790e-01 -0.24581980e+01 0.84037235e+00
- 2 -2214 155 156 -0.60258398e+00 0.31272933e-01 -0.14856880e+02 0.12036423e+01
- 2 111 157 158 0.89358630e-01 0.81231433e-01 -0.12347082e+02 0.13498000e+00
- 2 213 159 160 0.74581038e-01 -0.31234662e+00 -0.67449433e+02 0.84286924e+00
- 2 -213 161 162 -0.31084289e+00 0.11277784e+00 -0.26792614e+02 0.72931523e+00
- 2 223 163 165 0.23023015e+00 0.53256635e+00 -0.93728006e+02 0.78368420e+00
- 1 2212 0 0 -0.36535174e+00 -0.64961366e+00 -0.20025676e+03 0.93827000e+00
- 2 331 166 168 0.29531434e+00 0.43836109e-01 -0.27506460e+03 0.95880813e+00
- 1 -2112 0 0 -0.65493146e-01 0.28176760e+00 -0.64544816e+03 0.93957000e+00
- 2 3212 169 170 -0.34757381e+00 0.58618741e+00 -0.26349866e+04 0.11925500e+01
- 2 311 171 171 0.49690284e+00 -0.30341379e+00 -0.11756195e+04 0.49767000e+00
- 1 211 0 0 0.26382757e+01 0.38585336e+01 0.27843794e+02 0.13957000e+00
- 2 111 172 173 0.15139665e+00 0.50223393e+00 0.39077651e+01 0.13498000e+00
- 1 -211 0 0 0.64227002e+00 0.11502894e+01 0.88829902e+01 0.13957000e+00
- 2 111 174 175 -0.80920213e-01 0.72115521e-01 0.29642791e+01 0.13498000e+00
- 1 211 0 0 0.42820246e+00 0.14160708e+01 0.70293936e+01 0.13957000e+00
- 2 111 176 177 0.10742213e+01 0.14089854e+01 0.98244335e+01 0.13498000e+00
- 1 321 0 0 -0.29176734e+00 -0.58387146e+00 0.17098254e+02 0.49360000e+00
- 1 -211 0 0 0.28946371e+00 -0.22057744e+00 0.49940283e+01 0.13957000e+00
- 1 -321 0 0 -0.34553705e-01 -0.10012914e+01 0.24909449e+02 0.49360000e+00
- 2 111 178 179 -0.13436585e+00 -0.14748349e+01 0.25053758e+02 0.13498000e+00
- 2 311 180 180 -0.51961385e+00 -0.12177329e+01 0.32311367e+02 0.49767000e+00
- 1 211 0 0 -0.10338719e+01 -0.32736926e+01 0.67879010e+02 0.13957000e+00
- 1 130 0 0 -0.29055050e+01 -0.45213245e+01 0.11452608e+03 0.49767000e+00
- 1 -211 0 0 -0.15119629e+01 -0.26780425e+01 0.51514354e+02 0.13957000e+00
- 2 111 181 182 -0.26560710e+00 -0.84999582e+00 0.23474323e+02 0.13498000e+00
- 1 -211 0 0 -0.11039535e+00 -0.15975012e+00 0.30123141e+01 0.13957000e+00
- 2 111 183 184 -0.27119626e+01 -0.38350073e+01 0.79426066e+02 0.13498000e+00
- 1 211 0 0 -0.34690336e+00 -0.38447953e+00 0.15373162e+02 0.13957000e+00
- 1 -211 0 0 -0.48656481e+00 -0.59404452e+00 0.20526387e+02 0.13957000e+00
- 2 221 185 186 -0.13884487e+01 -0.16054900e+01 0.45594769e+02 0.54745000e+00
- 1 211 0 0 -0.21002036e+00 -0.20686812e-01 0.11390692e+01 0.13957000e+00
- 1 -211 0 0 -0.53671723e+00 -0.27599523e+00 0.66123599e+01 0.13957000e+00
- 2 111 187 188 0.40311515e-01 0.38789232e-01 0.12599931e+01 0.13498000e+00
- 1 22 0 0 -0.10508338e+00 -0.34407369e+00 0.55247969e+01 0.00000000e+00
- 1 22 0 0 -0.36237206e-01 -0.25466067e+00 0.59727574e+01 0.00000000e+00
- 1 211 0 0 -0.45156730e-01 -0.26594233e-01 0.53846567e+00 0.13957000e+00
- 2 111 189 190 -0.18563599e+00 -0.36629631e+00 0.34012982e+01 0.13498000e+00
- 1 22 0 0 -0.15022531e+00 -0.20226724e+00 0.69778078e+01 0.00000000e+00
- 1 22 0 0 -0.24405580e+00 -0.17283633e+00 0.12062840e+02 0.00000000e+00
- 1 -211 0 0 -0.30754520e+00 -0.69702532e-02 0.62539745e+01 0.13957000e+00
- 2 111 191 192 0.38647748e+00 -0.77462894e-01 0.57264642e+01 0.13498000e+00
- 1 321 0 0 -0.17463102e-01 -0.83040627e-01 0.54500321e+01 0.49360000e+00
- 2 111 193 194 -0.71323455e+00 -0.40967437e+00 0.12628692e+02 0.13498000e+00
- 2 3122 195 196 -0.27980065e-01 -0.43668788e+00 0.47772611e+02 0.11156800e+01
- 2 111 197 198 -0.13241265e-01 0.12536101e+00 0.13840035e+02 0.13498000e+00
- 1 22 0 0 0.23063140e+00 -0.37620502e+00 0.12380868e+03 0.00000000e+00
- 1 22 0 0 -0.26555516e+00 -0.29076328e+00 0.18623144e+03 0.00000000e+00
- 1 -211 0 0 -0.80730332e-01 -0.27192858e+00 0.30968768e+03 0.13957000e+00
- 1 211 0 0 0.78384538e-01 0.11802512e+00 0.40755820e+03 0.13957000e+00
- 2 111 199 200 0.13786200e+00 -0.92546885e-02 0.61421046e+03 0.13498000e+00
- 1 2212 0 0 -0.53474399e+00 -0.52790488e+00 0.20428744e+04 0.93827000e+00
- 1 211 0 0 -0.16114530e+00 0.44082024e-01 0.59605166e+03 0.13957000e+00
- 1 22 0 0 0.38854553e-01 -0.21208931e+00 0.42394961e+03 0.00000000e+00
- 1 22 0 0 0.22630740e-01 -0.33101138e+00 0.10617074e+04 0.00000000e+00
- 1 -211 0 0 -0.27110333e+02 -0.24458480e+02 -0.31725749e+03 0.13957000e+00
- 2 111 201 202 -0.86493540e+01 -0.73708571e+01 -0.10068756e+03 0.13498000e+00
- 1 -211 0 0 -0.17066017e+02 -0.14965343e+02 -0.19578862e+03 0.13957000e+00
- 1 211 0 0 -0.29192898e+02 -0.25032252e+02 -0.33347545e+03 0.13957000e+00
- 2 111 203 204 -0.57719598e+02 -0.50190897e+02 -0.66426407e+03 0.13498000e+00
- 1 211 0 0 -0.14709944e+00 -0.78565690e-01 -0.18886172e+01 0.13957000e+00
- 1 -211 0 0 -0.49055144e+01 -0.48592211e+01 -0.62429025e+02 0.13957000e+00
- 1 22 0 0 -0.15019879e+00 -0.22288845e+00 -0.19161251e+01 0.00000000e+00
- 2 113 205 206 -0.36322438e+01 -0.27208746e+01 -0.32898971e+02 0.85938557e+00
- 1 22 0 0 -0.22409456e+00 0.39523678e-01 -0.94707370e+00 0.00000000e+00
- 1 22 0 0 -0.40361426e+00 0.28794214e-01 -0.26084688e+01 0.00000000e+00
- 1 -211 0 0 -0.25459657e+00 0.19599024e+00 -0.51479026e+00 0.13957000e+00
- 2 111 207 208 0.29063926e+00 0.39097019e+00 -0.29693719e+01 0.13498000e+00
- 1 22 0 0 0.58767022e-01 0.10796172e+00 -0.28280748e+00 0.00000000e+00
- 1 22 0 0 -0.32475188e-01 0.14143196e+00 -0.69950174e+00 0.00000000e+00
- 1 211 0 0 -0.38084079e-01 0.21169692e+00 -0.80989752e+00 0.13957000e+00
- 2 111 209 210 -0.10258417e+01 0.45898005e+00 -0.79794730e+00 0.13498000e+00
- 1 2112 0 0 0.69932040e+00 0.12430544e+00 -0.89680315e+00 0.93957000e+00
- 1 -211 0 0 0.58426467e+00 0.24254291e+00 -0.66782758e+00 0.13957000e+00
- 1 321 0 0 0.15858281e+00 0.62947574e-01 -0.15719693e+01 0.49360000e+00
- 2 111 211 212 0.23335878e+00 -0.55309542e+00 -0.92929074e+00 0.13498000e+00
- 2 3122 213 214 -0.95900286e-01 0.61515703e+00 -0.45806079e+01 0.11156800e+01
- 1 -211 0 0 0.24471747e+00 0.11544966e+00 -0.17684673e+01 0.13957000e+00
- 1 211 0 0 0.37758120e+00 -0.49039661e-01 -0.58932084e+00 0.13957000e+00
- 2 111 215 216 -0.21741804e+00 0.66880451e-01 -0.18688772e+01 0.13498000e+00
- 1 -2212 0 0 -0.51218701e+00 -0.56529022e-01 -0.14017436e+02 0.93827000e+00
- 2 111 217 218 -0.90396970e-01 0.87801954e-01 -0.83944379e+00 0.13498000e+00
- 1 22 0 0 0.14566142e-01 -0.36281528e-01 -0.19207638e+01 0.00000000e+00
- 1 22 0 0 0.74792487e-01 0.11751296e+00 -0.10426318e+02 0.00000000e+00
- 1 211 0 0 -0.30609773e+00 0.46420094e-01 -0.19166980e+02 0.13957000e+00
- 2 111 219 220 0.38067877e+00 -0.35876672e+00 -0.48282452e+02 0.13498000e+00
- 1 -211 0 0 -0.30675225e+00 0.34064055e+00 -0.21501196e+02 0.13957000e+00
- 2 111 221 222 -0.40906461e-02 -0.22786271e+00 -0.52914184e+01 0.13498000e+00
- 1 211 0 0 0.15430918e+00 -0.21275628e-01 -0.99772860e+01 0.13957000e+00
- 1 -211 0 0 0.10329324e+00 0.84705917e-01 -0.31501270e+02 0.13957000e+00
- 2 111 223 224 -0.27372267e-01 0.46913606e+00 -0.52249450e+02 0.13498000e+00
- 1 -211 0 0 0.31748514e-01 -0.40162609e-01 -0.27360211e+02 0.13957000e+00
- 1 211 0 0 -0.51643197e-02 0.17583672e+00 -0.63908175e+02 0.13957000e+00
- 2 221 225 226 0.26873015e+00 -0.91838006e-01 -0.18379622e+03 0.54745000e+00
- 2 3122 227 228 -0.38241943e+00 0.51474747e+00 -0.24052133e+04 0.11156800e+01
- 1 22 0 0 0.34845619e-01 0.71439939e-01 -0.22977331e+03 0.00000000e+00
- 1 130 0 0 0.49690284e+00 -0.30341379e+00 -0.11756195e+04 0.49767000e+00
- 1 22 0 0 -0.12415201e-01 0.46221317e-01 0.62017836e+00 0.00000000e+00
- 1 22 0 0 0.16381185e+00 0.45601262e+00 0.32875867e+01 0.00000000e+00
- 1 22 0 0 -0.29774474e-01 -0.35297571e-01 0.12915631e+01 0.00000000e+00
- 1 22 0 0 -0.51145740e-01 0.10741309e+00 0.16727160e+01 0.00000000e+00
- 1 22 0 0 0.72738808e+00 0.10538716e+01 0.70739216e+01 0.00000000e+00
- 1 22 0 0 0.34683327e+00 0.35511388e+00 0.27505119e+01 0.00000000e+00
- 1 22 0 0 -0.58419493e-01 -0.17757985e+00 0.34079208e+01 0.00000000e+00
- 1 22 0 0 -0.75946362e-01 -0.12972550e+01 0.21645838e+02 0.00000000e+00
- 2 310 229 230 -0.51961385e+00 -0.12177329e+01 0.32311367e+02 0.49767000e+00
- 1 22 0 0 -0.25976994e+00 -0.80078871e+00 0.22755366e+02 0.00000000e+00
- 1 22 0 0 -0.58371595e-02 -0.49207104e-01 0.71895679e+00 0.00000000e+00
- 1 22 0 0 -0.66500829e+00 -0.95300104e+00 0.20645549e+02 0.00000000e+00
- 1 22 0 0 -0.20469543e+01 -0.28820062e+01 0.58780517e+02 0.00000000e+00
- 1 22 0 0 -0.35949910e-01 -0.11509904e+00 0.99556333e+00 0.00000000e+00
- 1 22 0 0 -0.13524988e+01 -0.14903909e+01 0.44599206e+02 0.00000000e+00
- 1 22 0 0 0.26024839e-01 -0.45473080e-01 0.70016597e+00 0.00000000e+00
- 1 22 0 0 0.14286676e-01 0.84262311e-01 0.55982712e+00 0.00000000e+00
- 1 22 0 0 -0.67604907e-01 -0.59013520e-01 0.11398043e+01 0.00000000e+00
- 1 22 0 0 -0.11803108e+00 -0.30728279e+00 0.22614939e+01 0.00000000e+00
- 1 22 0 0 -0.74471012e-02 -0.16070820e-01 0.20695551e+00 0.00000000e+00
- 1 22 0 0 0.39392458e+00 -0.61392073e-01 0.55195087e+01 0.00000000e+00
- 1 22 0 0 -0.50458826e+00 -0.27733181e+00 0.78454162e+01 0.00000000e+00
- 1 22 0 0 -0.20864629e+00 -0.13234256e+00 0.47832756e+01 0.00000000e+00
- 1 2212 0 0 0.52744241e-01 -0.41954676e+00 0.42861063e+02 0.93827000e+00
- 1 -211 0 0 -0.80724305e-01 -0.17141118e-01 0.49115478e+01 0.13957000e+00
- 1 22 0 0 0.37594023e-01 -0.90228566e-02 0.21299427e+01 0.00000000e+00
- 1 22 0 0 -0.50835288e-01 0.13438387e+00 0.11710092e+02 0.00000000e+00
- 1 22 0 0 -0.11316031e-01 -0.13497636e-01 0.23958540e+03 0.00000000e+00
- 1 22 0 0 0.14917803e+00 0.42429471e-02 0.37462507e+03 0.00000000e+00
- 1 22 0 0 -0.70609073e+01 -0.60057903e+01 -0.81666124e+02 0.00000000e+00
- 1 22 0 0 -0.15884467e+01 -0.13650668e+01 -0.19021436e+02 0.00000000e+00
- 1 22 0 0 -0.55824938e+02 -0.48511368e+02 -0.64227589e+03 0.00000000e+00
- 1 22 0 0 -0.18946600e+01 -0.16795291e+01 -0.21988176e+02 0.00000000e+00
- 1 -211 0 0 -0.55681119e+00 -0.64527421e+00 -0.81625249e+01 0.13957000e+00
- 1 211 0 0 -0.30754326e+01 -0.20756004e+01 -0.24736447e+02 0.13957000e+00
- 1 22 0 0 -0.85571549e-02 0.53595662e-01 -0.28768482e+00 0.00000000e+00
- 1 22 0 0 0.29919641e+00 0.33737453e+00 -0.26816870e+01 0.00000000e+00
- 1 22 0 0 -0.94456693e+00 0.39005820e+00 -0.68902219e+00 0.00000000e+00
- 1 22 0 0 -0.81274791e-01 0.68921846e-01 -0.10892511e+00 0.00000000e+00
- 1 22 0 0 0.10242725e+00 -0.25646439e+00 -0.55070886e+00 0.00000000e+00
- 1 22 0 0 0.13093153e+00 -0.29663103e+00 -0.37858188e+00 0.00000000e+00
- 1 2112 0 0 -0.34675648e-01 0.43421642e+00 -0.39266055e+01 0.93957000e+00
- 2 111 231 232 -0.61224638e-01 0.18094061e+00 -0.65400245e+00 0.13498000e+00
- 1 22 0 0 -0.10257813e+00 0.22667296e-01 -0.40294151e+00 0.00000000e+00
- 1 22 0 0 -0.11483992e+00 0.44213156e-01 -0.14659357e+01 0.00000000e+00
- 1 22 0 0 -0.13026148e-01 0.88344340e-01 -0.25955148e+00 0.00000000e+00
- 1 22 0 0 -0.77370821e-01 -0.54238566e-03 -0.57989231e+00 0.00000000e+00
- 1 22 0 0 0.38894272e+00 -0.34403470e+00 -0.47509771e+02 0.00000000e+00
- 1 22 0 0 -0.82639485e-02 -0.14732018e-01 -0.77268130e+00 0.00000000e+00
- 1 22 0 0 -0.47932273e-02 -0.50008046e-01 -0.27280367e+01 0.00000000e+00
- 1 22 0 0 0.70258122e-03 -0.17785467e+00 -0.25633817e+01 0.00000000e+00
- 1 22 0 0 0.49660789e-01 0.24779300e+00 -0.29370731e+02 0.00000000e+00
- 1 22 0 0 -0.77033056e-01 0.22134306e+00 -0.22878719e+02 0.00000000e+00
- 1 22 0 0 -0.12172174e+00 -0.79372581e-01 -0.10184050e+03 0.00000000e+00
- 1 22 0 0 0.39045189e+00 -0.12465426e-01 -0.81955721e+02 0.00000000e+00
- 1 2212 0 0 -0.42292367e+00 0.41734456e+00 -0.21132910e+04 0.93827000e+00
- 1 -211 0 0 0.40504236e-01 0.97402909e-01 -0.29192231e+03 0.13957000e+00
- 1 211 0 0 -0.43665245e+00 -0.10621669e+01 0.29154860e+02 0.13957000e+00
- 1 -211 0 0 -0.82961401e-01 -0.15556604e+00 0.31565071e+01 0.13957000e+00
- 1 22 0 0 0.63345886e-02 0.33501499e-01 -0.18687031e-01 0.00000000e+00
- 1 22 0 0 -0.67559227e-01 0.14743912e+00 -0.63531541e+00 0.00000000e+00
- 1034
- 2 25 2 3 -0.17382618e+02 0.18925082e+02 -0.29516039e+03 0.12497739e+03
- 2 23 6 9 -0.22602838e+02 0.40076589e+01 -0.20445596e+03 0.92527829e+02
- 2 23 4 5 0.52202206e+01 0.14917423e+02 -0.90704434e+02 0.27070740e+02
- 1 13 0 0 0.11848031e+02 0.94331947e+01 -0.83152963e+02 0.10566000e+00
- 1 -13 0 0 -0.66278104e+01 0.54842285e+01 -0.75514716e+01 0.10566000e+00
- 1 13 0 0 -0.28116081e+01 -0.97828362e+01 -0.19291603e+03 0.10566000e+00
- 1 22 0 0 0.77402034e+00 -0.26435031e+01 -0.42810005e+01 0.00000000e+00
- 1 -13 0 0 -0.17411349e+02 0.13761618e+02 -0.59258518e+01 0.10566000e+00
- 1 22 0 0 -0.31539013e+01 0.26723804e+01 -0.13330745e+01 0.00000000e+00
- 2 2 136 136 0.23938945e+01 0.49993163e+01 -0.20919570e+03 0.33000000e+00
- 2 21 136 136 0.20854345e+01 -0.16647256e+01 -0.54273429e+02 0.00000000e+00
- 2 21 136 136 -0.39606740e+01 -0.55484197e+01 -0.33861506e+02 0.00000000e+00
- 2 21 136 136 -0.43111077e+01 -0.44474804e+01 -0.64059430e+01 0.00000000e+00
- 2 21 136 136 -0.28550073e+01 -0.22342152e+01 -0.51441231e+00 0.00000000e+00
- 2 21 136 136 -0.81082867e+00 -0.53477455e+01 -0.60861980e+00 0.00000000e+00
- 2 21 136 136 0.26571615e+01 -0.78730924e+01 -0.81898114e+00 0.00000000e+00
- 2 21 136 136 0.13794792e+01 -0.31456900e+01 -0.68841980e+00 0.00000000e+00
- 2 21 136 136 0.69453121e+00 -0.56825301e+00 -0.32526688e+00 0.00000000e+00
- 2 21 136 136 0.11363579e+01 -0.15869842e+01 0.31432792e+00 0.00000000e+00
- 2 21 136 136 -0.58948479e+01 -0.57807462e+01 0.11791921e+02 0.00000000e+00
- 2 21 136 136 -0.59034526e+01 -0.37330378e+00 0.94733860e+01 0.00000000e+00
- 2 21 136 136 -0.59356949e+01 -0.84695683e+00 0.11260502e+02 0.00000000e+00
- 2 21 136 136 -0.55725593e+00 -0.29241272e+00 0.26692526e+01 0.00000000e+00
- 2 21 136 136 -0.78143986e+01 -0.81794204e+00 0.37200453e+02 0.00000000e+00
- 2 21 136 136 0.43387120e-01 0.16514891e+00 -0.86405313e+00 0.00000000e+00
- 2 21 136 136 -0.12136451e+01 -0.36292397e+00 0.21752405e+01 0.00000000e+00
- 2 21 136 136 0.27606006e+01 -0.76979083e+00 0.53426757e+01 0.00000000e+00
- 2 21 136 136 0.34654323e+01 -0.24735544e+01 0.77479057e+01 0.00000000e+00
- 2 21 136 136 0.20591904e+01 0.20556525e+00 0.52707222e+01 0.00000000e+00
- 2 21 136 136 -0.97676603e+00 -0.58124524e+00 0.19098238e-01 0.00000000e+00
- 2 21 136 136 -0.97328194e-01 0.52332793e+00 0.98619345e+02 0.00000000e+00
- 2 21 136 136 -0.73882904e+00 -0.62724586e-01 0.10927690e+02 0.00000000e+00
- 2 21 136 136 -0.92062563e-02 0.88009025e+00 0.26845471e+02 0.00000000e+00
- 2 21 136 136 0.33504438e+00 -0.37324183e+00 0.10137055e+03 0.00000000e+00
- 2 2101 136 136 0.39869923e+00 -0.77428199e+00 0.12758048e+04 0.57933000e+00
- 2 2 200 200 -0.39390001e+01 -0.29288427e+01 -0.56326138e+01 0.00000000e+00
- 2 21 200 200 -0.41391582e+01 -0.12902188e+01 -0.60439856e+01 0.00000000e+00
- 2 21 200 200 0.28550073e+01 0.22342152e+01 -0.19308785e+01 0.00000000e+00
- 2 -2 200 200 0.39390001e+01 0.29288427e+01 -0.12947595e+01 0.00000000e+00
- 2 2 208 208 0.24430547e+01 0.91887365e-01 -0.38793698e+02 0.00000000e+00
- 2 21 208 208 0.31684441e+00 0.12443039e+00 -0.35009476e+01 0.00000000e+00
- 2 21 208 208 -0.14785439e+01 -0.15899853e+01 -0.55724260e+02 0.00000000e+00
- 2 21 208 208 -0.12841629e+01 -0.35720134e+00 -0.91132958e+02 0.00000000e+00
- 2 21 208 208 0.84688158e+00 -0.11970922e+01 -0.22279833e+03 0.00000000e+00
- 2 21 208 208 -0.57840131e+00 -0.22626305e+01 -0.46057806e+03 0.00000000e+00
- 2 21 208 208 -0.81071116e+00 -0.21816107e+01 -0.67453162e+03 0.00000000e+00
- 2 21 208 208 -0.31684441e+00 -0.12443039e+00 -0.67865563e+02 0.00000000e+00
- 2 -2 208 208 -0.24430547e+01 -0.91887365e-01 -0.53033561e+03 0.00000000e+00
- 2 2 221 221 -0.11365613e+01 -0.16305264e+01 0.16792071e+02 0.00000000e+00
- 2 21 221 221 -0.94006079e+00 -0.84150529e+00 0.84255671e+01 0.00000000e+00
- 2 21 221 221 0.94006079e+00 0.84150529e+00 0.32988893e+01 0.00000000e+00
- 2 -2 221 221 0.11365613e+01 0.16305264e+01 0.50931316e+01 0.00000000e+00
- 2 2 227 227 0.47060917e-01 0.73753373e+00 -0.45072503e+01 0.00000000e+00
- 2 -2 227 227 -0.47060917e-01 -0.73753373e+00 -0.50781565e+00 0.00000000e+00
- 2 2 230 230 -0.33780568e-01 0.11388118e+00 0.17741056e+02 0.33000000e+00
- 2 21 230 230 -0.25602651e+01 -0.79893205e+00 0.56266199e+02 0.00000000e+00
- 2 21 230 230 0.38656465e+00 -0.34511540e+00 0.23084029e+01 0.00000000e+00
- 2 21 230 230 0.41715031e+00 0.60301775e+01 0.80571854e+02 0.00000000e+00
- 2 21 230 230 0.85793393e-01 -0.35138685e+00 0.22954585e+01 0.00000000e+00
- 2 21 230 230 0.26060243e+01 -0.20696289e+01 0.12945031e+02 0.00000000e+00
- 2 21 230 230 -0.92806034e+00 0.14793833e+01 0.67575926e+01 0.00000000e+00
- 2 21 230 230 -0.26571615e+01 0.78730924e+01 0.41407191e+02 0.00000000e+00
- 2 21 230 230 0.81082867e+00 0.53477455e+01 0.20487225e+02 0.00000000e+00
- 2 21 230 230 0.55725593e+00 0.29241272e+00 0.81365859e+01 0.00000000e+00
- 2 21 230 230 -0.17406732e+01 -0.14249253e+01 0.22037083e+03 0.00000000e+00
- 2 21 230 230 -0.12198667e+01 -0.34059328e+01 0.43307133e+03 0.00000000e+00
- 2 21 230 230 -0.98624932e+00 -0.23709024e+01 0.45521210e+03 0.00000000e+00
- 2 21 230 230 0.92806034e+00 -0.14793833e+01 0.35691617e+03 0.00000000e+00
- 2 21 230 230 0.12198667e+01 0.34059328e+01 0.23875653e+04 0.00000000e+00
- 2 21 230 230 0.98624932e+00 0.23709024e+01 0.11855008e+03 0.00000000e+00
- 2 21 230 230 -0.28555955e+01 0.73361727e+01 0.37747287e+03 0.00000000e+00
- 2 21 230 230 -0.11363579e+01 0.15869842e+01 0.36768389e+02 0.00000000e+00
- 2 21 230 230 -0.62943563e+01 0.70547432e+00 0.17832245e+03 0.00000000e+00
- 2 21 230 230 -0.43754546e+01 -0.23246988e+01 0.93144318e+02 0.00000000e+00
- 2 21 230 230 0.27699579e+00 -0.38909306e+00 0.84840856e+01 0.00000000e+00
- 2 21 230 230 0.28555955e+01 -0.73361727e+01 0.83856787e+02 0.00000000e+00
- 2 21 230 230 0.19811345e+01 -0.13622835e+01 0.11366332e+02 0.00000000e+00
- 2 21 230 230 0.43754546e+01 0.23246988e+01 0.25373289e+02 0.00000000e+00
- 2 21 230 230 0.59356949e+01 0.84695683e+00 0.95570865e+01 0.00000000e+00
- 2 21 230 230 0.41391582e+01 0.12902188e+01 0.38808780e+01 0.00000000e+00
- 2 21 230 230 0.62943563e+01 -0.70547432e+00 0.58569378e+01 0.00000000e+00
- 2 21 230 230 0.59034526e+01 0.37330378e+00 0.10587140e+01 0.00000000e+00
- 2 21 230 230 -0.16149184e-01 0.88710146e+00 0.17711452e+00 0.00000000e+00
- 2 21 230 230 0.57840131e+00 0.22626305e+01 0.75328706e+00 0.00000000e+00
- 2 21 230 230 0.39606740e+01 0.55484197e+01 -0.16302992e+00 0.00000000e+00
- 2 21 230 230 0.99579741e+00 -0.65782941e+00 -0.21337567e+01 0.00000000e+00
- 2 21 230 230 0.11647718e+01 -0.28498561e+00 -0.19560375e+01 0.00000000e+00
- 2 21 230 230 0.78143986e+01 0.81794204e+00 -0.11799097e+02 0.00000000e+00
- 2 21 230 230 0.58948479e+01 0.57807462e+01 -0.12455033e+02 0.00000000e+00
- 2 21 230 230 0.43111077e+01 0.44474804e+01 -0.12459560e+02 0.00000000e+00
- 2 21 230 230 -0.20854345e+01 0.16647256e+01 -0.12908313e+02 0.00000000e+00
- 2 21 230 230 -0.99579741e+00 0.65782941e+00 -0.90963740e+01 0.00000000e+00
- 2 21 230 230 -0.19455520e+01 -0.11496933e+01 -0.79063707e+01 0.00000000e+00
- 2 21 230 230 -0.11439844e+01 -0.26691867e+01 -0.56145716e+01 0.00000000e+00
- 2 21 230 230 0.30178077e+01 -0.65202177e+01 -0.25394646e+02 0.00000000e+00
- 2 21 230 230 0.41539809e+01 -0.81404083e+01 -0.38871924e+02 0.00000000e+00
- 2 21 230 230 0.37648137e+00 -0.10777620e+01 -0.28917104e+01 0.00000000e+00
- 2 21 230 230 -0.71031587e-01 -0.78612616e+00 -0.10175373e+01 0.00000000e+00
- 2 21 230 230 -0.36627018e+00 0.32109704e+00 -0.21305926e+01 0.00000000e+00
- 2 21 230 230 0.18276028e+01 -0.27050370e-01 -0.82981256e+02 0.00000000e+00
- 2 21 230 230 0.45930561e+00 0.16641792e+00 -0.12330528e+03 0.00000000e+00
- 2 21 230 230 0.32278859e+01 -0.22258151e+01 -0.16186573e+03 0.00000000e+00
- 2 21 230 230 -0.31220493e+00 -0.19480488e+01 -0.15622181e+03 0.00000000e+00
- 2 21 230 230 -0.17835841e-01 -0.17874640e+00 -0.14863423e+01 0.00000000e+00
- 2 2103 230 230 -0.11455287e+01 0.13557764e+01 -0.19197658e+04 0.77133000e+00
- 2 21 356 356 -0.25188823e+01 0.25079322e+01 -0.75148931e+01 0.00000000e+00
- 2 21 356 356 -0.13794792e+01 0.31456900e+01 -0.18273148e+01 0.00000000e+00
- 2 21 356 356 -0.27699579e+00 0.38909306e+00 0.24073726e+00 0.00000000e+00
- 2 21 356 356 -0.19811345e+01 0.13622835e+01 0.10612662e+01 0.00000000e+00
- 2 21 356 356 0.25188823e+01 -0.25079322e+01 0.33552375e+01 0.00000000e+00
- 2 21 356 356 -0.11647718e+01 0.28498561e+00 -0.25992498e+01 0.00000000e+00
- 2 21 370 370 -0.62845792e+00 -0.32374930e+01 -0.16477362e+02 0.00000000e+00
- 2 21 370 370 0.16149184e-01 -0.88710146e+00 -0.39593574e+01 0.00000000e+00
- 2 21 370 370 0.14785439e+01 0.15899853e+01 0.24227169e+01 0.00000000e+00
- 2 21 370 370 0.17406732e+01 0.14249253e+01 0.31566786e+01 0.00000000e+00
- 2 21 370 370 0.81071116e+00 0.21816107e+01 0.58717317e+01 0.00000000e+00
- 2 21 370 370 0.62845792e+00 0.32374930e+01 0.89054546e+01 0.00000000e+00
- 2 21 392 392 -0.43799381e+00 -0.18924227e+01 -0.29870257e+02 0.00000000e+00
- 2 21 392 392 -0.37329426e+00 -0.42032721e+00 -0.74745884e+01 0.00000000e+00
- 2 21 392 392 -0.84688158e+00 0.11970922e+01 -0.54490282e+02 0.00000000e+00
- 2 21 392 392 -0.69453121e+00 0.56825301e+00 -0.93909615e+02 0.00000000e+00
- 2 21 392 392 0.37329426e+00 0.42032721e+00 -0.64146010e+02 0.00000000e+00
- 2 21 392 392 -0.23887670e+00 0.62387604e+00 -0.80426477e+02 0.00000000e+00
- 2 21 392 392 0.43799381e+00 0.18924227e+01 -0.11912105e+04 0.00000000e+00
- 2 21 403 403 -0.15442698e+01 -0.66179480e+00 0.25019874e+01 0.00000000e+00
- 2 21 403 403 0.12841629e+01 0.35720134e+00 -0.14636840e+01 0.00000000e+00
- 2 21 403 403 0.15442698e+01 0.66179480e+00 -0.15050194e+01 0.00000000e+00
- 2 21 410 410 -0.22566430e+00 0.95308193e+00 0.10254929e+02 0.00000000e+00
- 2 21 410 410 0.23887670e+00 -0.62387604e+00 -0.74227765e+01 0.00000000e+00
- 2 21 410 410 0.22566430e+00 -0.95308193e+00 -0.16112313e+02 0.00000000e+00
- 2 21 133 133 -0.94510959e-01 0.33673168e+00 0.33869434e+02 0.00000000e+00
- 2 21 133 133 0.94510959e-01 -0.33673168e+00 0.17196835e+03 0.00000000e+00
- 2 91 134 135 0.00000000e+00 0.00000000e+00 0.20583779e+03 0.94328482e+00
- 1 -211 0 0 0.42559416e+00 0.14544530e+00 0.97219925e+02 0.13957000e+00
- 1 211 0 0 -0.42559416e+00 -0.14544530e+00 0.10861786e+03 0.13957000e+00
- 2 92 137 199 -0.21669829e+02 -0.39152282e+02 0.12992770e+04 0.14517170e+04
- 2 213 425 426 0.17056088e+01 0.40317130e+01 -0.18800641e+03 0.75745402e+00
- 2 -213 427 428 0.15213276e+01 -0.31903822e+00 -0.27214589e+02 0.72757925e+00
- 2 221 429 431 0.16538898e+00 -0.21385592e+00 -0.58934481e+01 0.54745000e+00
- 1 211 0 0 -0.17806632e+00 0.78156600e-01 -0.71378477e+01 0.13957000e+00
- 2 111 432 433 -0.27362018e+00 0.10871892e+00 -0.52601614e+01 0.13498000e+00
- 2 331 434 436 0.98945520e+00 -0.72300047e+00 -0.25926501e+02 0.95773206e+00
- 2 2114 437 438 -0.65207116e+00 -0.92747804e+00 -0.11142242e+02 0.12356463e+01
- 2 111 439 440 -0.19991672e+00 -0.42063622e+00 -0.56507955e+01 0.13498000e+00
- 1 -2212 0 0 -0.25052391e+01 -0.34335254e+01 -0.19852007e+02 0.93827000e+00
- 1 321 0 0 -0.30248808e+01 -0.35541670e+01 -0.46371074e+01 0.49360000e+00
- 2 -311 441 441 -0.11943018e+00 0.32570700e-01 -0.23013349e+00 0.49767000e+00
- 1 -211 0 0 -0.70196996e+00 -0.82530145e+00 -0.26441199e+00 0.13957000e+00
- 1 321 0 0 -0.87092839e+00 -0.51334739e+00 -0.99327804e+00 0.49360000e+00
- 1 -321 0 0 -0.68401905e-01 -0.16778079e+01 -0.11881714e+01 0.49360000e+00
- 1 211 0 0 -0.19072474e+01 -0.14496201e+01 -0.69656147e+00 0.13957000e+00
- 1 -211 0 0 0.13246491e+00 -0.35842908e+00 0.13538811e+00 0.13957000e+00
- 1 321 0 0 0.26970675e+00 -0.11847485e+01 -0.71353192e+00 0.49360000e+00
- 2 -313 442 443 -0.13189807e+00 -0.31107993e+01 -0.71914694e+00 0.87978261e+00
- 2 -213 444 445 0.28405413e+00 -0.27680860e+01 0.20458150e+00 0.84639112e+00
- 1 211 0 0 -0.21993342e-01 -0.96791723e+00 -0.43079302e-01 0.13957000e+00
- 2 221 446 448 0.46813964e+00 -0.18314578e+01 -0.31821752e+00 0.54745000e+00
- 2 223 449 451 0.71743417e+00 -0.20152145e+01 0.41155541e+00 0.78485528e+00
- 2 111 452 453 -0.70666526e-01 0.63118748e-01 -0.24341977e+00 0.13498000e+00
- 2 -213 454 455 0.23814404e+01 -0.47445134e+01 -0.40679936e+00 0.84721141e+00
- 2 213 456 457 -0.17603015e+00 -0.11898805e+01 0.69664579e+00 0.94634577e+00
- 2 113 458 459 -0.37386338e+00 0.17441176e-01 0.69448486e+00 0.62905726e+00
- 2 -213 460 461 -0.13777724e+01 -0.18454359e+01 0.26398315e+01 0.93951036e+00
- 2 331 462 463 -0.38123386e+01 -0.27521298e+01 0.74127223e+01 0.95783201e+00
- 2 323 464 465 -0.30521498e+01 -0.93948791e+00 0.51713680e+01 0.86445023e+00
- 2 -311 466 466 -0.21354036e+01 -0.37930527e+00 0.43904730e+01 0.49767000e+00
- 1 -211 0 0 -0.17862496e+00 0.97740539e-01 0.53501093e+00 0.13957000e+00
- 1 211 0 0 -0.28660066e+01 -0.20329092e-01 0.52556054e+01 0.13957000e+00
- 2 313 467 468 -0.21787536e+01 -0.98066600e+00 0.53611454e+01 0.88634711e+00
- 1 -321 0 0 -0.16234923e+01 0.28581173e+00 0.66027094e+01 0.49360000e+00
- 1 211 0 0 -0.18765769e+01 -0.33265290e+00 0.82048111e+01 0.13957000e+00
- 1 2112 0 0 -0.16958234e+01 -0.22295940e+00 0.49652259e+01 0.93957000e+00
- 1 -2212 0 0 -0.20832389e+01 -0.45445395e+00 0.92786210e+01 0.93827000e+00
- 2 221 469 471 -0.41887921e+00 0.19897951e+00 0.33819072e+01 0.54745000e+00
- 2 223 472 474 -0.51278545e+00 -0.30720631e+00 0.45104739e+01 0.78159446e+00
- 1 2212 0 0 -0.10055382e+01 0.23963780e+00 0.84120944e+00 0.93827000e+00
- 1 -2212 0 0 -0.48301993e+00 0.42573786e+00 0.22494498e+01 0.93827000e+00
- 2 3222 475 476 -0.38389779e+00 -0.88841382e+00 0.12482558e+01 0.11893700e+01
- 2 -3222 477 478 0.13921827e+01 -0.80227206e+00 0.31966777e+01 0.11893700e+01
- 1 321 0 0 0.28843694e+00 -0.78079599e-01 0.56400664e+00 0.49360000e+00
- 1 -321 0 0 0.50482967e+00 -0.27012078e+00 0.82649825e+00 0.49360000e+00
- 1 211 0 0 0.15377033e+01 -0.57108530e+00 0.43690366e+01 0.13957000e+00
- 2 313 479 480 0.79743440e+00 -0.29881186e+00 0.22200565e+01 0.99497531e+00
- 2 3122 481 482 0.23263631e+01 -0.13933548e+01 0.39905908e+01 0.11156800e+01
- 1 -2212 0 0 0.48139826e+00 0.28668323e+00 0.25962680e+01 0.93827000e+00
- 1 211 0 0 0.20037204e+00 -0.60971286e+00 0.15191054e+01 0.13957000e+00
- 2 313 483 484 -0.13607804e+00 0.16471355e+00 0.14877634e+01 0.88310855e+00
- 2 -323 485 486 -0.39477249e+00 0.49613882e+00 0.10264937e+02 0.91306148e+00
- 1 211 0 0 -0.48001497e+00 -0.25680326e-01 0.26684384e+01 0.13957000e+00
- 2 -213 487 488 0.32501908e-02 -0.38832309e+00 0.47497414e+01 0.82783245e+00
- 2 113 489 490 0.27346320e+00 0.12799382e+00 0.94386514e+01 0.84176039e+00
- 2 331 491 493 -0.35663302e+00 0.74181294e+00 0.40002743e+02 0.95757991e+00
- 2 111 494 495 -0.33552568e+00 -0.51097592e+00 0.24049627e+02 0.13498000e+00
- 2 213 496 497 -0.76673928e-01 -0.61823064e-01 0.74274632e+02 0.80449627e+00
- 2 111 498 499 0.16609087e+00 0.37223285e+00 0.97438340e+02 0.13498000e+00
- 1 -211 0 0 -0.21073321e+00 -0.63611741e+00 0.96746314e+02 0.13957000e+00
- 2 2224 500 501 0.25147243e-01 0.59999274e+00 0.18913049e+03 0.11993459e+01
- 2 -2224 502 503 0.11713921e+00 -0.58221341e-01 0.14492544e+03 0.12075054e+01
- 1 2212 0 0 0.53229571e+00 -0.46503312e+00 0.81716406e+03 0.93827000e+00
- 2 92 201 207 -0.12841509e+01 0.94399640e+00 -0.14902238e+02 0.18864636e+02
- 1 211 0 0 -0.12949348e+01 -0.91741860e+00 -0.24087047e+01 0.13957000e+00
- 2 3112 504 505 -0.24565252e+01 -0.72081123e+00 -0.32787455e+01 0.11974400e+01
- 2 -3212 506 507 -0.22050185e+01 -0.16509162e+01 -0.30450312e+01 0.11925500e+01
- 1 211 0 0 -0.13034536e+01 -0.77852778e+00 -0.23582782e+01 0.13957000e+00
- 2 111 508 509 -0.56379287e+00 0.34011991e+00 -0.99747072e+00 0.13498000e+00
- 2 223 510 511 0.54318559e+01 0.41788413e+01 -0.23413740e+01 0.75346147e+00
- 1 -211 0 0 0.11077181e+01 0.49270898e+00 -0.47263313e+00 0.13957000e+00
- 2 92 209 220 -0.33049377e+01 -0.75885200e+01 -0.21452610e+04 0.25435397e+02
- 2 113 512 513 0.17361023e+01 -0.44593593e+00 -0.39782956e+02 0.10873133e+01
- 2 113 514 515 -0.10545864e-01 0.23732243e+00 -0.99508006e+01 0.84352557e+00
- 1 211 0 0 -0.14080573e+00 -0.91642119e+00 -0.46366268e+02 0.13957000e+00
- 2 313 516 517 -0.13343748e+00 0.15798077e+00 -0.30775327e+02 0.92119255e+00
- 1 -321 0 0 -0.73849439e+00 -0.27237090e+00 -0.29351761e+02 0.49360000e+00
- 2 213 518 519 -0.83102855e-01 -0.86472709e+00 -0.61484359e+02 0.75217918e+00
- 2 223 520 521 0.17453078e+00 -0.10718181e+01 -0.24122247e+03 0.78619018e+00
- 2 223 522 523 -0.49014640e+00 0.42309096e-01 -0.23248811e+03 0.77805218e+00
- 2 -213 524 525 -0.10880410e+01 -0.27644474e+01 -0.48644637e+03 0.95964217e+00
- 2 331 526 528 -0.51699159e+00 -0.34752291e+00 -0.21948961e+03 0.95745117e+00
- 2 213 529 530 -0.17541223e+01 -0.14825701e+01 -0.67626158e+03 0.78592133e+00
- 1 -211 0 0 -0.25988316e+00 0.13968130e+00 -0.71641435e+02 0.13957000e+00
- 2 92 222 226 0.00000000e+00 0.22204460e-15 0.33609659e+02 0.74614670e+01
- 1 211 0 0 -0.99583314e+00 -0.67271040e+00 0.16119932e+02 0.13957000e+00
- 2 -213 531 532 -0.89266072e+00 -0.85749330e+00 0.46345127e+01 0.64943882e+00
- 2 111 533 534 0.77927664e+00 0.44235481e-01 0.22632347e+01 0.13498000e+00
- 2 213 535 536 0.16890361e+00 -0.15365311e+00 0.56304951e+01 0.93970652e+00
- 1 -211 0 0 0.94031361e+00 0.16396213e+01 0.49614844e+01 0.13957000e+00
- 2 92 228 229 0.00000000e+00 0.00000000e+00 -0.50150660e+01 0.21692760e+01
- 2 213 537 538 0.34113827e-01 0.77364067e+00 -0.42013344e+01 0.71887943e+00
- 1 -211 0 0 -0.34113827e-01 -0.77364067e+00 -0.81373161e+00 0.13957000e+00
- 2 92 231 355 0.44655089e+02 0.15257705e+02 0.24642501e+04 0.72787641e+04
- 1 211 0 0 -0.28038506e+00 -0.38075680e+00 0.13808677e+02 0.13957000e+00
- 2 311 539 539 -0.36693175e+00 0.32324750e-01 0.11642600e+02 0.49767000e+00
- 2 -311 540 540 -0.55175567e+00 0.16360675e+00 0.15550956e+02 0.49767000e+00
- 1 -211 0 0 -0.60997185e+00 -0.21122138e-02 0.14261696e+02 0.13957000e+00
- 2 113 541 542 0.13818245e+00 -0.51359924e+00 0.10827753e+02 0.72037477e+00
- 1 211 0 0 -0.42879890e+00 0.16820533e+01 0.21824495e+02 0.13957000e+00
- 2 111 543 544 0.25538351e+00 0.50200199e+00 0.21496202e+02 0.13498000e+00
- 2 -213 545 546 -0.13200763e+00 0.48445339e-01 0.10955918e+02 0.90392274e+00
- 2 111 547 548 -0.22927078e+00 0.16369915e+01 0.17203202e+02 0.13498000e+00
- 1 211 0 0 -0.31058956e-02 0.38146661e+00 0.22983852e+01 0.13957000e+00
- 2 113 549 550 0.50486440e+00 0.11274117e+01 0.13672994e+02 0.79182607e+00
- 1 -211 0 0 0.11443319e+01 -0.11022918e+01 0.81148455e+01 0.13957000e+00
- 1 2212 0 0 -0.17036690e+00 0.84655997e+00 0.68864551e+01 0.93827000e+00
- 2 -2114 551 552 0.58096738e+00 -0.25909720e+00 0.44858510e+01 0.12334319e+01
- 1 -211 0 0 0.11064443e+00 -0.11265043e+00 0.70224981e+01 0.13957000e+00
- 2 213 553 554 -0.46508808e+00 0.20132164e+01 0.79067321e+01 0.96322925e+00
- 2 111 555 556 -0.33184588e+00 0.98194209e+00 0.51867145e+01 0.13498000e+00
- 2 113 557 558 -0.84444270e+00 0.15703945e+01 0.81093784e+01 0.71608712e+00
- 1 -211 0 0 -0.22884116e+00 0.24267841e+01 0.13891173e+02 0.13957000e+00
- 2 213 559 560 -0.37680022e+00 0.29077080e+01 0.12895470e+02 0.93786014e+00
- 1 -211 0 0 0.85259556e-01 0.21363353e+00 0.12384247e+01 0.13957000e+00
- 2 113 561 562 0.33669987e+00 0.24442035e+01 0.11628719e+02 0.74980753e+00
- 2 111 563 564 -0.10472089e+00 0.34930291e+00 0.15281092e+01 0.13498000e+00
- 1 211 0 0 0.57939830e+00 -0.10296900e+00 0.71215986e+01 0.13957000e+00
- 2 -213 565 566 -0.71328793e+00 0.30623877e+00 0.11747386e+02 0.69917098e+00
- 2 223 567 569 0.16233696e+00 0.14539927e+00 0.25317275e+02 0.78446252e+00
- 1 321 0 0 0.46827503e+00 -0.43721537e+00 0.25622252e+02 0.49360000e+00
- 2 -323 570 571 -0.68911039e+00 -0.45605417e+00 0.99585598e+02 0.91889584e+00
- 1 321 0 0 -0.76281466e+00 -0.10711778e+01 0.12265928e+03 0.49360000e+00
- 2 -323 572 573 -0.11612154e+01 -0.21514429e+01 0.44047846e+03 0.89580717e+00
- 2 323 574 575 -0.51067347e+00 -0.13510000e+01 0.17028367e+03 0.87708267e+00
- 2 333 576 577 0.13491749e-01 -0.23443236e+01 0.47676218e+03 0.10113535e+01
- 2 -323 578 579 0.78256007e+00 -0.89479032e-02 0.79619322e+03 0.89269856e+00
- 1 211 0 0 0.16133034e+00 0.11011711e+01 0.44811609e+03 0.13957000e+00
- 2 223 580 582 0.16884326e+00 0.56827896e+00 0.50376412e+03 0.77582408e+00
- 2 111 583 584 0.34418457e-01 0.93806413e-01 0.13055194e+03 0.13498000e+00
- 2 -213 585 586 0.16821669e+00 0.70050766e+00 0.31860409e+03 0.71338853e+00
- 2 213 587 588 0.51770721e-01 0.17225750e+00 0.17034363e+03 0.96911224e+00
- 2 223 589 591 0.59113637e+00 0.21048840e+01 0.14056494e+03 0.79743098e+00
- 1 -211 0 0 -0.61677896e+00 0.26409293e+00 0.59130276e+02 0.13957000e+00
- 2 221 592 593 -0.82526054e+00 0.30139500e+01 0.16113223e+03 0.54745000e+00
- 2 213 594 595 0.38384407e+00 0.44331506e+00 0.63495011e+02 0.73307078e+00
- 2 223 596 598 -0.73027295e+00 0.27027282e+01 0.13459479e+03 0.78505391e+00
- 2 -213 599 600 -0.14862220e+01 0.21312125e+01 0.66999357e+02 0.70883678e+00
- 2 2214 601 602 -0.32153682e+01 0.97182861e+00 0.10780993e+03 0.12498201e+01
- 2 111 603 604 -0.84434038e+00 -0.22424565e+00 0.16627296e+02 0.13498000e+00
- 1 -2112 0 0 -0.21900730e+01 -0.35562666e+00 0.56957759e+02 0.93957000e+00
- 1 -211 0 0 -0.43352886e+00 -0.36575845e+00 0.97905556e+01 0.13957000e+00
- 1 211 0 0 -0.15716668e+00 -0.43498302e+00 0.59466132e+01 0.13957000e+00
- 2 111 605 606 -0.33789187e+00 0.13702019e+00 0.21214794e+02 0.13498000e+00
- 2 311 607 607 -0.96964705e+00 0.27074660e+00 0.20495779e+02 0.49767000e+00
- 1 -321 0 0 -0.11726142e+01 -0.60734611e+00 0.30233426e+02 0.49360000e+00
- 2 331 608 609 -0.52637303e+00 -0.11803985e+01 0.30036212e+02 0.95755597e+00
- 2 113 610 611 0.82510129e+00 -0.17158715e+01 0.16430919e+02 0.85187256e+00
- 1 2212 0 0 0.54067173e+00 -0.16694434e+01 0.19020426e+02 0.93827000e+00
- 2 223 612 614 0.24318067e+00 -0.29517815e+00 0.75613105e+01 0.78406137e+00
- 1 -2212 0 0 0.62913868e+00 -0.23401596e+01 0.27103667e+02 0.93827000e+00
- 1 211 0 0 0.15382590e+00 -0.23585213e+00 0.31864543e+01 0.13957000e+00
- 2 111 615 616 0.74185559e+00 -0.70964546e+00 0.11696670e+02 0.13498000e+00
- 1 -211 0 0 -0.19080130e-01 -0.11243779e+00 0.35639629e+00 0.13957000e+00
- 2 2214 617 618 0.10740079e+01 -0.31205323e+00 0.91858618e+01 0.11770443e+01
- 1 -211 0 0 0.24984745e+01 0.72069260e+00 0.13608585e+02 0.13957000e+00
- 2 -2114 619 620 0.85993992e+00 0.40674849e+00 0.63547126e+01 0.11881943e+01
- 2 223 621 623 0.39414030e+01 0.58457943e+00 0.66029455e+01 0.72927348e+00
- 2 221 624 626 0.28514644e+00 0.49973305e+00 0.27712333e+01 0.54745000e+00
- 2 111 627 628 0.18955180e+01 0.43091246e-01 0.35337053e+01 0.13498000e+00
- 2 323 629 630 0.12113292e+01 0.51061083e+00 0.29481153e+01 0.90634320e+00
- 2 3122 631 632 0.43989218e+01 -0.25381132e+00 0.36737732e+01 0.11156800e+01
- 1 -2212 0 0 0.37855569e+01 0.87076674e+00 0.36336460e+01 0.93827000e+00
- 1 211 0 0 0.13148831e+01 0.34139697e+00 0.88098423e-01 0.13957000e+00
- 1 -211 0 0 0.33113361e+01 -0.41831021e+00 0.27568664e+01 0.13957000e+00
- 1 211 0 0 0.66720821e-01 0.68779010e+00 0.22533545e+00 0.13957000e+00
- 2 223 633 635 0.23596334e+01 0.38112788e+00 0.10224399e+01 0.75753252e+00
- 2 113 636 637 0.19671334e+01 0.22567876e+01 -0.10399813e-01 0.77385184e+00
- 2 313 638 639 0.69336251e+00 0.14727474e+01 -0.39279897e+00 0.96970271e+00
- 2 333 640 641 0.27608410e+00 0.13356078e+01 0.52357806e+00 0.10204697e+01
- 2 -323 642 643 0.13460311e+01 0.16112209e+01 -0.39645261e+00 0.80770377e+00
- 2 213 644 645 0.90543230e+00 0.49945460e-01 -0.44863344e+00 0.63014047e+00
- 2 113 646 647 0.22208618e+01 0.29719855e+00 -0.31139298e+01 0.10372723e+01
- 2 221 648 649 0.25132592e+01 0.41644828e+00 -0.31983319e+01 0.54745000e+00
- 2 1114 650 651 0.12403385e+01 0.34216414e+00 -0.40820671e+01 0.11850827e+01
- 2 -2114 652 653 0.46855778e+01 0.20914648e+01 -0.64658760e+01 0.11879448e+01
- 1 321 0 0 0.16760844e+01 0.43468099e+00 -0.42882220e+01 0.49360000e+00
- 1 -321 0 0 0.18974915e+01 0.16225111e+01 -0.38671580e+01 0.49360000e+00
- 2 113 654 655 0.60616586e+00 0.12246186e+01 -0.37410184e+01 0.55851829e+00
- 2 213 656 657 0.23234106e+01 0.20390446e+01 -0.40243736e+01 0.73655059e+00
- 2 113 658 659 0.15398180e+01 0.17926887e+01 -0.63432647e+01 0.69872580e+00
- 1 2112 0 0 -0.67907343e+00 0.90461621e+00 -0.46295649e+01 0.93957000e+00
- 2 221 660 662 0.42624950e+00 0.25633437e+00 -0.53811916e+01 0.54745000e+00
- 2 -2114 663 664 -0.12721964e+01 0.35791412e+00 -0.65570211e+01 0.12476521e+01
- 1 2112 0 0 0.15987886e+00 -0.29185918e+00 -0.13917366e+01 0.93957000e+00
- 1 -2212 0 0 -0.98988032e+00 -0.10826960e+00 -0.37245724e+01 0.93827000e+00
- 1 211 0 0 -0.80878473e+00 0.13834817e+00 -0.78277992e+01 0.13957000e+00
- 2 1114 665 666 -0.17883388e+00 -0.16614989e+01 -0.83097357e+01 0.11808064e+01
- 2 223 667 669 0.55278309e+00 -0.52687655e+00 -0.22585364e+01 0.79143212e+00
- 2 -1114 670 671 -0.84716110e-01 -0.28300400e+01 -0.11786489e+02 0.12254229e+01
- 1 -211 0 0 0.84118407e+00 -0.72641077e+00 -0.39591191e+01 0.13957000e+00
- 2 113 672 673 0.12485417e+01 -0.51491332e+01 -0.16517299e+02 0.78857829e+00
- 2 111 674 675 -0.16874807e+00 -0.37792679e-01 -0.64119417e+00 0.13498000e+00
- 2 213 676 677 0.15233326e+01 -0.23478216e+01 -0.11551830e+02 0.81787184e+00
- 1 -211 0 0 0.48427913e+00 -0.75881260e+00 -0.26500030e+01 0.13957000e+00
- 2 213 678 679 0.52142438e+00 -0.78021808e+00 -0.42101160e+01 0.78967124e+00
- 1 -211 0 0 0.24401972e+00 -0.10294865e+01 -0.62878595e+01 0.13957000e+00
- 1 211 0 0 0.92704891e-01 -0.59262592e+00 -0.42775472e+01 0.13957000e+00
- 2 111 680 681 0.18560084e+00 -0.44130024e+00 -0.32508200e+01 0.13498000e+00
- 2 -213 682 683 0.29951745e+00 -0.53037257e+00 -0.24220568e+01 0.69966521e+00
- 2 113 684 685 0.24377978e+00 -0.29356067e-01 -0.34796213e+01 0.87273296e+00
- 2 213 686 687 0.44988310e+00 -0.64203002e+00 -0.13690375e+02 0.91553341e+00
- 2 113 688 689 -0.22924568e+00 -0.18432828e+00 -0.11529860e+02 0.76519441e+00
- 2 223 690 692 0.56644069e+00 -0.90137128e-01 -0.26738622e+02 0.78817643e+00
- 2 113 693 694 0.11530666e+00 0.25499725e+00 -0.16693405e+02 0.52274444e+00
- 1 -211 0 0 -0.30986204e-01 -0.63846522e-01 -0.35510929e+01 0.13957000e+00
- 1 211 0 0 -0.34419029e-01 0.19591878e+00 -0.12211294e+02 0.13957000e+00
- 1 2112 0 0 0.24242100e+01 -0.87455398e+00 -0.13174976e+03 0.93957000e+00
- 1 -2212 0 0 0.22874057e+00 -0.11800933e+01 -0.96424221e+02 0.93827000e+00
- 2 213 695 696 0.39964054e+00 -0.12896133e+00 -0.87546433e+02 0.76586898e+00
- 1 -211 0 0 0.47581284e+00 0.79256914e-01 -0.11793550e+02 0.13957000e+00
- 2 223 697 699 0.79651277e+00 -0.11772494e+01 -0.12336807e+03 0.81231591e+00
- 2 223 700 702 -0.62566874e+00 -0.53971342e+00 -0.12358963e+03 0.78193959e+00
- 1 211 0 0 0.13932292e+00 -0.14489695e+00 -0.26934186e+02 0.13957000e+00
- 2 113 703 704 0.14007283e+00 0.43831445e+00 -0.43805896e+03 0.97897883e+00
- 2 221 705 706 -0.60643083e+00 -0.19684701e+00 -0.17222408e+03 0.54745000e+00
- 1 -211 0 0 -0.10707732e+00 0.55444959e+00 -0.22150764e+03 0.13957000e+00
- 1 2212 0 0 -0.26305210e+00 -0.34966103e+00 -0.62772243e+03 0.93827000e+00
- 2 223 707 709 -0.88635299e-01 0.52735646e+00 -0.29583138e+03 0.80819240e+00
- 2 92 357 369 -0.48023813e+01 0.51820522e+01 -0.72842166e+01 0.20770927e+02
- 2 333 710 711 -0.12845420e+01 0.13144347e+01 0.48983690e+00 0.10194117e+01
- 2 -313 712 713 -0.29434633e+00 0.23515063e+00 -0.40161568e+00 0.88025367e+00
- 2 2114 714 715 -0.93965581e+00 0.22177682e+00 0.13469703e+01 0.11032390e+01
- 2 223 716 717 0.12551103e+01 -0.92090469e-01 0.44708564e+00 0.77940527e+00
- 1 -2112 0 0 0.28018186e+00 -0.70670510e+00 0.10492670e+01 0.93957000e+00
- 2 331 718 719 -0.24006687e-01 -0.59013932e+00 0.21146100e-01 0.95749864e+00
- 2 221 720 721 0.82221630e-01 0.34221836e+00 -0.10375889e+01 0.54745000e+00
- 2 221 722 723 0.18963158e+00 0.50984418e-01 0.72856223e-01 0.54745000e+00
- 2 111 724 725 -0.50648749e+00 0.55020784e+00 -0.10305630e+01 0.13498000e+00
- 1 -211 0 0 -0.17147704e+01 0.75623123e+00 -0.43186181e+01 0.13957000e+00
- 1 211 0 0 0.21143605e+00 0.15248260e+00 -0.23743062e-01 0.13957000e+00
- 2 -213 726 727 -0.16606715e+01 0.15163133e+01 -0.26650560e+01 0.75133292e+00
- 1 321 0 0 -0.39648243e+00 0.14311872e+01 -0.12341941e+01 0.49360000e+00
- 2 92 371 391 0.40460775e+01 0.43094198e+01 -0.80137454e-01 0.43403085e+02
- 2 111 728 729 0.59814768e+00 -0.18630638e+00 -0.46530292e+00 0.13498000e+00
- 2 2214 730 731 -0.48478695e+00 -0.31144140e+00 -0.38152662e+01 0.11848614e+01
- 2 -213 732 733 -0.22781280e+00 -0.66398033e+00 -0.10004203e+01 0.74050574e+00
- 1 -2212 0 0 -0.20483770e+00 -0.65332679e+00 -0.16816442e+01 0.93827000e+00
- 2 323 734 735 0.43976444e+00 0.92469669e-01 -0.16147241e+01 0.87612192e+00
- 2 -313 736 737 0.11784285e+00 -0.69579411e+00 -0.51367408e+01 0.95419652e+00
- 1 -211 0 0 0.40160708e-01 -0.10224483e+01 -0.34160334e+01 0.13957000e+00
- 1 211 0 0 -0.37892948e+00 0.69204348e+00 0.20885794e+00 0.13957000e+00
- 2 -213 738 739 0.14382196e+00 -0.56834511e+00 -0.34011905e+00 0.63393603e+00
- 1 211 0 0 0.61555027e+00 0.14674920e+00 0.27778475e+00 0.13957000e+00
- 2 111 740 741 0.19389996e+00 0.26135035e-01 -0.17388195e+00 0.13498000e+00
- 2 311 742 742 0.30670298e+00 -0.58965329e-01 -0.10875861e+00 0.49767000e+00
- 2 -313 743 744 0.32023036e+00 0.23254482e+01 0.30614061e+01 0.90391891e+00
- 2 331 745 746 0.16530134e+01 0.11707374e+01 0.52714356e+01 0.95768171e+00
- 2 -213 747 748 0.31777179e+00 0.57352106e+00 0.20448657e+01 0.71067966e+00
- 2 323 749 750 0.67800253e+00 0.20773521e+01 0.40161921e+01 0.87216777e+00
- 1 -321 0 0 -0.80591122e-01 0.17623910e+00 0.22470980e+00 0.49360000e+00
- 1 211 0 0 0.26450958e-01 0.58981293e+00 0.22945130e+01 0.13957000e+00
- 1 -211 0 0 0.17655636e+00 -0.69192901e-01 -0.18200849e+00 0.13957000e+00
- 2 111 751 752 -0.18041357e+00 0.26218241e+00 0.56338544e+00 0.13498000e+00
- 2 213 753 754 -0.24467099e-01 0.40652981e+00 -0.10838775e+00 0.79860863e+00
- 2 92 393 402 -0.17802895e+01 0.23892212e+01 -0.15215278e+04 0.18471615e+02
- 2 311 755 755 0.14071157e+00 0.26471632e-01 -0.16444275e+02 0.49767000e+00
- 2 -323 756 757 -0.45820461e+00 -0.96283568e+00 -0.30976800e+02 0.87434055e+00
- 1 211 0 0 0.96317025e-01 -0.25862115e+00 -0.10978538e+02 0.13957000e+00
- 2 313 758 759 -0.65337346e-01 -0.32479769e+00 -0.13241728e+02 0.90212330e+00
- 2 -313 760 761 -0.84651329e+00 0.17044023e-01 -0.54887256e+02 0.91600501e+00
- 2 111 762 763 -0.63374329e+00 0.14340985e+01 -0.84924259e+02 0.13498000e+00
- 2 223 764 766 0.50831700e+00 0.13975505e+01 -0.35185487e+03 0.79505816e+00
- 1 -211 0 0 -0.77926549e-01 0.10692945e+01 -0.60736240e+03 0.13957000e+00
- 2 213 767 768 0.53391793e-01 -0.12353563e+00 -0.14911312e+03 0.59512905e+00
- 2 113 769 770 -0.49730180e+00 0.11455220e+00 -0.20174451e+03 0.74532078e+00
- 2 92 404 409 0.12841629e+01 0.35720134e+00 -0.46671602e+00 0.71101253e+01
- 2 113 771 772 -0.10226041e+00 -0.47498574e+00 0.46639593e+00 0.94277077e+00
- 2 331 773 774 -0.51843352e+00 -0.28309238e+00 0.68770394e-01 0.95781626e+00
- 2 -213 775 776 0.37503208e+00 -0.56881251e-01 0.29268845e-01 0.73171725e+00
- 2 223 777 779 -0.18362314e+00 -0.51531908e+00 0.36491902e+00 0.78198150e+00
- 1 211 0 0 0.45226114e+00 0.55204337e+00 -0.93614532e+00 0.13957000e+00
- 2 113 780 781 0.12611867e+01 0.11354364e+01 -0.45992489e+00 0.79877710e+00
- 2 92 411 424 0.23887670e+00 -0.62387604e+00 -0.13280160e+02 0.31179461e+02
- 1 -211 0 0 0.19181730e+00 -0.16182709e+00 0.71495103e+00 0.13957000e+00
- 2 223 782 783 -0.11559285e+00 -0.47539142e-01 0.20468891e-01 0.77390864e+00
- 2 3222 784 785 0.11625592e+00 0.65765095e-01 0.28876104e+01 0.11893700e+01
- 2 -3212 786 787 -0.21118005e+00 -0.40129387e-01 -0.37874338e+00 0.11925500e+01
- 2 -213 788 789 -0.39893439e+00 0.22687596e+00 0.42139177e+01 0.88449028e+00
- 2 2214 790 791 0.78896315e-01 0.11928554e+00 -0.12837956e+01 0.11204840e+01
- 1 211 0 0 0.73552132e+00 0.10079496e+00 -0.11892936e+00 0.13957000e+00
- 2 -2224 792 793 -0.27203900e+00 0.88361460e-01 -0.16457586e+01 0.12287111e+01
- 2 221 794 796 0.27043202e+00 -0.36821560e+00 -0.44058171e+01 0.54745000e+00
- 2 213 797 798 -0.46768812e+00 -0.10539473e+01 -0.79547343e+01 0.75433840e+00
- 1 -211 0 0 0.88063761e+00 0.19942733e+00 -0.23311912e+01 0.13957000e+00
- 2 113 799 800 -0.35298585e+00 -0.32180996e+00 -0.27299142e+01 0.79225685e+00
- 1 211 0 0 -0.14745710e+00 -0.39647698e-01 0.11724394e+00 0.13957000e+00
- 2 221 801 802 -0.68806437e-01 0.60872976e+00 -0.38546819e+00 0.54745000e+00
- 1 211 0 0 0.98677585e+00 0.23243344e+01 -0.93284726e+02 0.13957000e+00
- 2 111 803 804 0.71883296e+00 0.17073787e+01 -0.94721687e+02 0.13498000e+00
- 1 -211 0 0 0.61221534e+00 -0.19580121e+00 -0.64696069e+01 0.13957000e+00
- 2 111 805 806 0.90911222e+00 -0.12323701e+00 -0.20744982e+02 0.13498000e+00
- 2 111 807 808 0.11469704e+00 -0.25318892e+00 -0.22947827e+01 0.13498000e+00
- 2 111 809 810 0.17237523e-01 0.96968017e-02 -0.19011769e+01 0.13498000e+00
- 2 111 811 812 0.33454414e-01 0.29636201e-01 -0.16974885e+01 0.13498000e+00
- 1 22 0 0 -0.88747829e-01 -0.19988410e-01 -0.20838181e+01 0.00000000e+00
- 1 22 0 0 -0.18487235e+00 0.12870733e+00 -0.31763434e+01 0.00000000e+00
- 1 -211 0 0 0.60275297e-01 -0.18139014e+00 -0.55735642e+01 0.13957000e+00
- 1 211 0 0 0.39179204e+00 -0.21159053e+00 -0.73138850e+01 0.13957000e+00
- 2 221 813 815 0.53738786e+00 -0.33001980e+00 -0.13039052e+02 0.54745000e+00
- 1 2112 0 0 -0.33232518e+00 -0.73989845e+00 -0.72434305e+01 0.93957000e+00
- 2 111 816 817 -0.31974598e+00 -0.18757960e+00 -0.38988111e+01 0.13498000e+00
- 1 22 0 0 -0.76470929e-01 -0.87789842e-01 -0.89607085e+00 0.00000000e+00
- 1 22 0 0 -0.12344579e+00 -0.33284638e+00 -0.47547247e+01 0.00000000e+00
- 1 130 0 0 -0.11943018e+00 0.32570700e-01 -0.23013349e+00 0.49767000e+00
- 1 -321 0 0 -0.31762301e+00 -0.15495416e+01 -0.37913678e+00 0.49360000e+00
- 1 211 0 0 0.18572494e+00 -0.15612577e+01 -0.34001016e+00 0.13957000e+00
- 1 -211 0 0 0.46442475e+00 -0.97135818e+00 -0.51324547e-01 0.13957000e+00
- 2 111 818 819 -0.18037062e+00 -0.17967278e+01 0.25590605e+00 0.13498000e+00
- 1 211 0 0 0.48496518e-01 -0.28178110e+00 -0.45863024e-01 0.13957000e+00
- 1 -211 0 0 0.35239800e+00 -0.94542185e+00 -0.86727971e-01 0.13957000e+00
- 2 111 820 821 0.67245116e-01 -0.60425486e+00 -0.18562653e+00 0.13498000e+00
- 1 -211 0 0 0.17415849e+00 -0.19286321e+00 0.94739677e-01 0.13957000e+00
- 1 211 0 0 0.10946971e-01 -0.60714723e+00 -0.42467637e-01 0.13957000e+00
- 2 111 822 823 0.53232871e+00 -0.12152041e+01 0.35928337e+00 0.13498000e+00
- 1 22 0 0 -0.76402134e-01 -0.16282298e-01 -0.77723434e-01 0.00000000e+00
- 1 22 0 0 0.57356076e-02 0.79401046e-01 -0.16569634e+00 0.00000000e+00
- 1 -211 0 0 0.15208131e+01 -0.30495273e+01 -0.64367405e+00 0.13957000e+00
- 2 111 824 825 0.86062723e+00 -0.16949861e+01 0.23687469e+00 0.13498000e+00
- 1 211 0 0 0.34487667e+00 -0.55887101e+00 0.14885964e+00 0.13957000e+00
- 2 111 826 827 -0.52090682e+00 -0.63100951e+00 0.54778615e+00 0.13498000e+00
- 1 211 0 0 -0.36585613e+00 -0.15774784e+00 0.20215292e+00 0.13957000e+00
- 1 -211 0 0 -0.80072522e-02 0.17518901e+00 0.49233193e+00 0.13957000e+00
- 1 -211 0 0 -0.48194648e+00 -0.40167470e+00 0.13308651e+01 0.13957000e+00
- 2 111 828 829 -0.89582597e+00 -0.14437612e+01 0.13089664e+01 0.13498000e+00
- 1 22 0 0 -0.77517441e+00 -0.25244925e+00 0.10763283e+01 0.00000000e+00
- 2 113 830 831 -0.30371642e+01 -0.24996805e+01 0.63363940e+01 0.57334333e+00
- 1 321 0 0 -0.28348720e+01 -0.79129969e+00 0.44349547e+01 0.49360000e+00
- 2 111 832 833 -0.21727785e+00 -0.14818822e+00 0.73641333e+00 0.13498000e+00
- 1 130 0 0 -0.21354036e+01 -0.37930527e+00 0.43904730e+01 0.49767000e+00
- 1 321 0 0 -0.17947006e+01 -0.10071042e+01 0.41673283e+01 0.49360000e+00
- 1 -211 0 0 -0.38405291e+00 0.26438158e-01 0.11938171e+01 0.13957000e+00
- 1 211 0 0 -0.15245724e+00 -0.71895956e-01 0.13669613e+01 0.13957000e+00
- 1 -211 0 0 -0.60926195e-01 0.12693896e+00 0.94554801e+00 0.13957000e+00
- 2 111 834 835 -0.20549578e+00 0.14393651e+00 0.10693979e+01 0.13498000e+00
- 1 211 0 0 -0.25462574e-01 -0.25312137e+00 0.13038569e+01 0.13957000e+00
- 1 -211 0 0 -0.36307351e+00 -0.35800500e-01 0.28746853e+01 0.13957000e+00
- 2 111 836 837 -0.12424937e+00 -0.18284439e-01 0.33193164e+00 0.13498000e+00
- 1 2112 0 0 -0.28000838e+00 -0.51029403e+00 0.79262353e+00 0.93957000e+00
- 1 211 0 0 -0.10388941e+00 -0.37811980e+00 0.45563224e+00 0.13957000e+00
- 1 -2212 0 0 0.10565909e+01 -0.42342911e+00 0.23372815e+01 0.93827000e+00
- 2 111 838 839 0.33559182e+00 -0.37884296e+00 0.85939618e+00 0.13498000e+00
- 2 311 840 840 0.76564615e+00 -0.49526263e+00 0.19896803e+01 0.49767000e+00
- 2 111 841 842 0.31788254e-01 0.19645077e+00 0.23037614e+00 0.13498000e+00
- 1 2212 0 0 0.18029544e+01 -0.11362698e+01 0.32759768e+01 0.93827000e+00
- 1 -211 0 0 0.52340868e+00 -0.25708498e+00 0.71461402e+00 0.13957000e+00
- 2 311 843 843 -0.27904962e+00 0.24938441e+00 0.74860324e+00 0.49767000e+00
- 2 111 844 845 0.14297158e+00 -0.84670864e-01 0.73916017e+00 0.13498000e+00
- 2 -311 846 846 -0.40451214e-01 0.58111085e-01 0.36239462e+01 0.49767000e+00
- 1 -211 0 0 -0.35432128e+00 0.43802774e+00 0.66409912e+01 0.13957000e+00
- 1 -211 0 0 0.13287183e+00 0.20287662e+00 0.11072565e+01 0.13957000e+00
- 2 111 847 848 -0.12962164e+00 -0.59119971e+00 0.36424849e+01 0.13498000e+00
- 1 -211 0 0 0.43383255e+00 0.11059915e+00 0.86853448e+01 0.13957000e+00
- 1 211 0 0 -0.16036935e+00 0.17394663e-01 0.75330662e+00 0.13957000e+00
- 1 211 0 0 -0.22585285e+00 0.23810173e+00 0.15302401e+02 0.13957000e+00
- 1 -211 0 0 -0.41958893e-01 0.47645506e-01 0.30313274e+01 0.13957000e+00
- 2 221 849 851 -0.88821272e-01 0.45606571e+00 0.21669014e+02 0.54745000e+00
- 1 22 0 0 -0.23563230e+00 -0.33908535e+00 0.13642594e+02 0.00000000e+00
- 1 22 0 0 -0.99893380e-01 -0.17189057e+00 0.10407033e+02 0.00000000e+00
- 1 211 0 0 -0.17780086e+00 -0.20393412e+00 0.11483477e+02 0.13957000e+00
- 2 111 852 853 0.10112694e+00 0.14211105e+00 0.62791155e+02 0.13498000e+00
- 1 22 0 0 -0.15646626e-01 0.10388696e+00 0.22535013e+02 0.00000000e+00
- 1 22 0 0 0.18173749e+00 0.26834589e+00 0.74903327e+02 0.00000000e+00
- 1 2212 0 0 -0.88866611e-01 0.56910734e+00 0.13655767e+03 0.93827000e+00
- 1 211 0 0 0.11401385e+00 0.30885404e-01 0.52572816e+02 0.13957000e+00
- 1 -2212 0 0 0.16434819e+00 0.13765952e+00 0.10873881e+03 0.93827000e+00
- 1 -211 0 0 -0.47208979e-01 -0.19588086e+00 0.36186627e+02 0.13957000e+00
- 1 2112 0 0 -0.15998037e+01 -0.50517622e+00 -0.23951495e+01 0.93957000e+00
- 1 -211 0 0 -0.85672147e+00 -0.21563501e+00 -0.88359604e+00 0.13957000e+00
- 2 -3122 854 855 -0.20366993e+01 -0.14848219e+01 -0.28857779e+01 0.11156800e+01
- 1 22 0 0 -0.16831924e+00 -0.16609425e+00 -0.15925327e+00 0.00000000e+00
- 1 22 0 0 -0.61127711e-01 0.16024229e-02 -0.54712278e-01 0.00000000e+00
- 1 22 0 0 -0.50266516e+00 0.33851749e+00 -0.94275845e+00 0.00000000e+00
- 1 211 0 0 0.23321072e+01 0.14570299e+01 -0.11627891e+01 0.13957000e+00
- 1 -211 0 0 0.30997487e+01 0.27218114e+01 -0.11785849e+01 0.13957000e+00
- 1 211 0 0 0.10895001e+01 -0.86037747e-01 -0.13664117e+02 0.13957000e+00
- 1 -211 0 0 0.64660223e+00 -0.35989818e+00 -0.26118838e+02 0.13957000e+00
- 1 -211 0 0 0.16134434e+00 0.42176108e+00 -0.83077438e+01 0.13957000e+00
- 1 211 0 0 -0.17189020e+00 -0.18443864e+00 -0.16430568e+01 0.13957000e+00
- 1 321 0 0 -0.19804983e+00 -0.13147121e+00 -0.13116688e+02 0.49360000e+00
- 1 -211 0 0 0.64612357e-01 0.28945198e+00 -0.17658639e+02 0.13957000e+00
- 1 211 0 0 -0.13058656e+00 -0.53968846e+00 -0.53254982e+02 0.13957000e+00
- 2 111 856 857 0.47483709e-01 -0.32503863e+00 -0.82293773e+01 0.13498000e+00
- 1 22 0 0 0.43238417e+00 -0.60034954e+00 -0.10547764e+03 0.00000000e+00
- 2 111 858 859 -0.25785339e+00 -0.47146853e+00 -0.13574483e+03 0.13498000e+00
- 1 22 0 0 0.16795642e-01 -0.29311849e+00 -0.85327229e+02 0.00000000e+00
- 2 111 860 861 -0.50694204e+00 0.33542759e+00 -0.14716088e+03 0.13498000e+00
- 1 -211 0 0 -0.11656043e+01 -0.27032363e+01 -0.45154843e+03 0.13957000e+00
- 2 111 862 863 0.77563331e-01 -0.61211154e-01 -0.34897935e+02 0.13498000e+00
- 2 111 864 865 -0.67888752e-01 -0.12779915e+00 -0.24831720e+02 0.13498000e+00
- 2 111 866 867 0.33980547e-01 -0.11044185e+00 -0.29667239e+02 0.13498000e+00
- 2 221 868 870 -0.48308339e+00 -0.10928192e+00 -0.16499065e+03 0.54745000e+00
- 1 211 0 0 -0.53853724e+00 -0.74401601e-01 -0.14825352e+03 0.13957000e+00
- 2 111 871 872 -0.12155851e+01 -0.14081685e+01 -0.52800806e+03 0.13498000e+00
- 1 -211 0 0 -0.10440446e+00 -0.11615604e+00 0.26820266e+00 0.13957000e+00
- 2 111 873 874 -0.78825626e+00 -0.74133726e+00 0.43663101e+01 0.13498000e+00
- 1 22 0 0 0.78262107e+00 0.48859066e-01 0.22572794e+01 0.00000000e+00
- 1 22 0 0 -0.33444243e-02 -0.46235846e-02 0.59553016e-02 0.00000000e+00
- 1 211 0 0 -0.16357425e+00 0.29910165e+00 0.16414597e+01 0.13957000e+00
- 2 111 875 876 0.33247786e+00 -0.45275476e+00 0.39890355e+01 0.13498000e+00
- 1 211 0 0 -0.80791900e-02 -0.53264336e-01 -0.23871977e+00 0.13957000e+00
- 2 111 877 878 0.42193017e-01 0.82690501e+00 -0.39626146e+01 0.13498000e+00
- 1 130 0 0 -0.36693175e+00 0.32324750e-01 0.11642600e+02 0.49767000e+00
- 2 310 879 880 -0.55175567e+00 0.16360675e+00 0.15550956e+02 0.49767000e+00
- 1 -211 0 0 -0.10161172e+00 -0.33239173e+00 0.89577462e+01 0.13957000e+00
- 1 211 0 0 0.23979416e+00 -0.18120750e+00 0.18700063e+01 0.13957000e+00
- 1 22 0 0 0.24158778e-01 0.12436630e+00 0.66205829e+01 0.00000000e+00
- 1 22 0 0 0.23122473e+00 0.37763569e+00 0.14875620e+02 0.00000000e+00
- 1 -211 0 0 0.29354980e-01 -0.33874711e+00 0.76581655e+01 0.13957000e+00
- 2 111 881 882 -0.16136261e+00 0.38719245e+00 0.32977527e+01 0.13498000e+00
- 1 22 0 0 -0.20442386e+00 0.12497066e+01 0.12631853e+02 0.00000000e+00
- 1 22 0 0 -0.24846914e-01 0.38728491e+00 0.45713493e+01 0.00000000e+00
- 1 211 0 0 0.13610034e+00 0.71858757e+00 0.45213781e+01 0.13957000e+00
- 1 -211 0 0 0.36876406e+00 0.40882409e+00 0.91516161e+01 0.13957000e+00
- 1 -2112 0 0 0.25456355e+00 -0.45368141e-01 0.30948940e+01 0.93957000e+00
- 2 111 883 884 0.32640383e+00 -0.21372906e+00 0.13909570e+01 0.13498000e+00
- 1 211 0 0 0.14804014e+00 0.28148006e+00 0.59798844e+00 0.13957000e+00
- 2 111 885 886 -0.61312822e+00 0.17317363e+01 0.73087437e+01 0.13498000e+00
- 1 22 0 0 0.38798960e-02 0.23506408e-01 0.23534129e+00 0.00000000e+00
- 1 22 0 0 -0.33572578e+00 0.95843568e+00 0.49513732e+01 0.00000000e+00
- 1 -211 0 0 -0.42959968e+00 0.92529095e+00 0.59429010e+01 0.13957000e+00
- 1 211 0 0 -0.41484303e+00 0.64510351e+00 0.21664774e+01 0.13957000e+00
- 1 211 0 0 0.10193498e+00 0.22199928e+01 0.90733423e+01 0.13957000e+00
- 2 111 887 888 -0.47873520e+00 0.68771518e+00 0.38221274e+01 0.13498000e+00
- 1 211 0 0 0.29190571e+00 0.24052100e+01 0.10974094e+02 0.13957000e+00
- 1 -211 0 0 0.44794166e-01 0.38993550e-01 0.65462447e+00 0.13957000e+00
- 1 22 0 0 -0.88840986e-01 0.35554464e+00 0.14982096e+01 0.00000000e+00
- 1 22 0 0 -0.15879904e-01 -0.62417327e-02 0.29899639e-01 0.00000000e+00
- 1 -211 0 0 -0.39174378e+00 0.45714013e+00 0.88501199e+01 0.13957000e+00
- 2 111 889 890 -0.32154415e+00 -0.15090136e+00 0.28972663e+01 0.13498000e+00
- 1 -211 0 0 -0.18384934e-01 0.13133010e+00 0.14622641e+02 0.13957000e+00
- 1 211 0 0 0.71737129e-01 0.10550673e-01 0.12033973e+01 0.13957000e+00
- 2 111 891 892 0.10898477e+00 0.35184943e-02 0.94912375e+01 0.13498000e+00
- 2 -311 893 893 -0.14240377e+00 -0.23259910e+00 0.63782335e+02 0.49767000e+00
- 1 -211 0 0 -0.54670662e+00 -0.22345507e+00 0.35803263e+02 0.13957000e+00
- 2 -311 894 894 -0.91239044e+00 -0.10969494e+01 0.25871310e+03 0.49767000e+00
- 1 -211 0 0 -0.24882495e+00 -0.10544935e+01 0.18176537e+03 0.13957000e+00
- 2 311 895 895 -0.24346100e+00 -0.10791591e+01 0.10268870e+03 0.49767000e+00
- 1 211 0 0 -0.26721248e+00 -0.27184088e+00 0.67594972e+02 0.13957000e+00
- 1 321 0 0 -0.74493124e-01 -0.12439662e+01 0.26328064e+03 0.49360000e+00
- 1 -321 0 0 0.87984873e-01 -0.11003574e+01 0.21348154e+03 0.49360000e+00
- 2 -311 896 896 0.21281537e+00 0.26715366e-01 0.26111192e+03 0.49767000e+00
- 1 -211 0 0 0.56974470e+00 -0.35663269e-01 0.53508130e+03 0.13957000e+00
- 1 -211 0 0 -0.16559350e+00 0.22344561e+00 0.15554575e+03 0.13957000e+00
- 1 211 0 0 0.28940349e+00 0.33168055e+00 0.18645081e+03 0.13957000e+00
- 2 111 897 898 0.45033267e-01 0.13152800e-01 0.16176757e+03 0.13498000e+00
- 1 22 0 0 0.81782913e-02 0.93898335e-01 0.12581727e+03 0.00000000e+00
- 1 22 0 0 0.26240165e-01 -0.91921821e-04 0.47346751e+01 0.00000000e+00
- 1 -211 0 0 0.54990364e-01 0.58511192e+00 0.29637406e+03 0.13957000e+00
- 2 111 899 900 0.11322633e+00 0.11539574e+00 0.22230028e+02 0.13498000e+00
- 1 211 0 0 -0.40858182e+00 0.20098010e+00 0.64360843e+02 0.13957000e+00
- 2 111 901 902 0.46035254e+00 -0.28722604e-01 0.10598279e+03 0.13498000e+00
- 1 211 0 0 0.23329403e+00 0.35186980e+00 0.26758822e+02 0.13957000e+00
- 1 -211 0 0 0.10482822e+00 0.52200048e+00 0.22072667e+02 0.13957000e+00
- 2 111 903 904 0.25301412e+00 0.12310137e+01 0.91733454e+02 0.13498000e+00
- 1 22 0 0 -0.18003648e+00 0.10992149e+01 0.69748819e+02 0.00000000e+00
- 1 22 0 0 -0.64522406e+00 0.19147350e+01 0.91383409e+02 0.00000000e+00
- 1 211 0 0 0.21409848e+00 0.17795996e+00 0.82495663e+01 0.13957000e+00
- 2 111 905 906 0.16974559e+00 0.26535509e+00 0.55245445e+02 0.13498000e+00
- 1 -211 0 0 -0.27081042e+00 0.11528899e+01 0.44792909e+02 0.13957000e+00
- 1 211 0 0 -0.46164776e-01 0.18100700e+00 0.13622311e+02 0.13957000e+00
- 2 111 907 908 -0.41329776e+00 0.13688312e+01 0.76179566e+02 0.13498000e+00
- 1 -211 0 0 -0.63765942e+00 0.14369749e+01 0.42248982e+02 0.13957000e+00
- 2 111 909 910 -0.84856258e+00 0.69423756e+00 0.24750375e+02 0.13498000e+00
- 1 2112 0 0 -0.29760035e+01 0.80193139e+00 0.92494130e+02 0.93957000e+00
- 1 211 0 0 -0.23936467e+00 0.16989723e+00 0.15315801e+02 0.13957000e+00
- 1 22 0 0 -0.65590202e-01 -0.50403793e-01 0.11878359e+01 0.00000000e+00
- 1 22 0 0 -0.77875018e+00 -0.17384185e+00 0.15439460e+02 0.00000000e+00
- 1 22 0 0 -0.48937098e-01 0.64613681e-01 0.68119074e+01 0.00000000e+00
- 1 22 0 0 -0.28895477e+00 0.72406507e-01 0.14402886e+02 0.00000000e+00
- 2 310 911 912 -0.96964705e+00 0.27074660e+00 0.20495779e+02 0.49767000e+00
- 1 22 0 0 0.38500135e-01 -0.43951084e+00 0.92889304e+01 0.00000000e+00
- 2 113 913 914 -0.56487316e+00 -0.74088764e+00 0.20747282e+02 0.69601587e+00
- 1 -211 0 0 0.35948515e+00 -0.10893980e+00 0.37035094e+01 0.13957000e+00
- 1 211 0 0 0.46561614e+00 -0.16069317e+01 0.12727410e+02 0.13957000e+00
- 1 -211 0 0 0.13320852e+00 -0.24406280e+00 0.45847174e+01 0.13957000e+00
- 1 211 0 0 0.55719494e-02 0.12404595e+00 0.20284961e+01 0.13957000e+00
- 2 111 915 916 0.10440020e+00 -0.17516129e+00 0.94809703e+00 0.13498000e+00
- 1 22 0 0 0.37703562e+00 -0.44088514e+00 0.61836493e+01 0.00000000e+00
- 1 22 0 0 0.36481997e+00 -0.26876032e+00 0.55130204e+01 0.00000000e+00
- 1 2112 0 0 0.74638720e+00 -0.19419551e+00 0.61215955e+01 0.93957000e+00
- 1 211 0 0 0.32762071e+00 -0.11785772e+00 0.30642663e+01 0.13957000e+00
- 1 -2212 0 0 0.57366122e+00 0.33974662e+00 0.41822736e+01 0.93827000e+00
- 1 211 0 0 0.28627870e+00 0.67001870e-01 0.21724390e+01 0.13957000e+00
- 1 -211 0 0 0.10133945e+01 -0.28506810e-01 0.17209599e+01 0.13957000e+00
- 1 211 0 0 0.20510380e+01 0.55822658e+00 0.36255277e+01 0.13957000e+00
- 2 111 917 918 0.87697051e+00 0.54859662e-01 0.12564579e+01 0.13498000e+00
- 1 22 0 0 0.49414739e-01 0.33040304e+00 0.10689969e+01 0.00000000e+00
- 1 -211 0 0 0.13221624e+00 0.59150266e-01 0.43854379e+00 0.13957000e+00
- 1 211 0 0 0.10351545e+00 0.11017975e+00 0.12636926e+01 0.13957000e+00
- 1 22 0 0 0.10388952e+01 -0.42118229e-01 0.19036167e+01 0.00000000e+00
- 1 22 0 0 0.85662282e+00 0.85209475e-01 0.16300886e+01 0.00000000e+00
- 2 311 919 919 0.29678045e+00 0.17013602e+00 0.97068136e+00 0.49767000e+00
- 1 211 0 0 0.91454879e+00 0.34047480e+00 0.19774339e+01 0.13957000e+00
- 1 2112 0 0 0.38920430e+01 -0.12810903e+00 0.32367251e+01 0.93957000e+00
- 2 111 920 921 0.50687882e+00 -0.12570229e+00 0.43704819e+00 0.13498000e+00
- 1 211 0 0 0.11620878e+01 0.97870959e-02 0.53892654e+00 0.13957000e+00
- 1 -211 0 0 0.72436888e+00 0.38974196e+00 0.37658124e+00 0.13957000e+00
- 2 111 922 923 0.47317674e+00 -0.18401177e-01 0.10693212e+00 0.13498000e+00
- 1 211 0 0 0.12819429e+01 0.13686954e+01 -0.34823125e+00 0.13957000e+00
- 1 -211 0 0 0.68519054e+00 0.88809221e+00 0.33783144e+00 0.13957000e+00
- 1 321 0 0 0.11278557e+00 0.33978905e+00 -0.66121990e-01 0.49360000e+00
- 1 -211 0 0 0.58057694e+00 0.11329583e+01 -0.32667697e+00 0.13957000e+00
- 1 130 0 0 0.43728273e-01 0.65957726e+00 0.32269651e+00 0.49767000e+00
- 2 310 924 925 0.23235582e+00 0.67603050e+00 0.20088155e+00 0.49767000e+00
- 1 -321 0 0 0.12232826e+01 0.15772248e+01 -0.41516836e+00 0.49360000e+00
- 2 111 926 927 0.12274855e+00 0.33996195e-01 0.18715755e-01 0.13498000e+00
- 1 211 0 0 0.16725949e+00 0.57550960e-02 0.12053237e+00 0.13957000e+00
- 2 111 928 929 0.73817281e+00 0.44190364e-01 -0.56916581e+00 0.13498000e+00
- 1 211 0 0 0.16076365e+01 -0.17654225e+00 -0.24759300e+01 0.13957000e+00
- 1 -211 0 0 0.61322524e+00 0.47374080e+00 -0.63799987e+00 0.13957000e+00
- 1 22 0 0 0.19748795e+01 0.39805527e+00 -0.21475584e+01 0.00000000e+00
- 1 22 0 0 0.53837970e+00 0.18393005e-01 -0.10507735e+01 0.00000000e+00
- 1 2112 0 0 0.93066021e+00 0.41063852e+00 -0.34957204e+01 0.93957000e+00
- 1 -211 0 0 0.30967827e+00 -0.68474384e-01 -0.58634663e+00 0.13957000e+00
- 1 -2112 0 0 0.37196073e+01 0.18510264e+01 -0.51252825e+01 0.93957000e+00
- 2 111 930 931 0.96597047e+00 0.24043839e+00 -0.13405935e+01 0.13498000e+00
- 1 211 0 0 0.15250048e+00 0.84033579e+00 -0.22122624e+01 0.13957000e+00
- 1 -211 0 0 0.45366537e+00 0.38428285e+00 -0.15287560e+01 0.13957000e+00
- 1 211 0 0 0.11904846e+01 0.64295009e+00 -0.14899000e+01 0.13957000e+00
- 2 111 932 933 0.11329260e+01 0.13960945e+01 -0.25344736e+01 0.13498000e+00
- 1 211 0 0 0.55595576e+00 0.29461676e+00 -0.12983906e+01 0.13957000e+00
- 1 -211 0 0 0.98386227e+00 0.14980720e+01 -0.50448741e+01 0.13957000e+00
- 1 -211 0 0 0.99838227e-01 0.10666786e+00 -0.15714131e+01 0.13957000e+00
- 1 211 0 0 0.29869126e-01 0.98297647e-01 -0.20276341e+01 0.13957000e+00
- 2 111 934 935 0.29654214e+00 0.51368858e-01 -0.17821444e+01 0.13498000e+00
- 1 -2212 0 0 -0.12449486e+01 0.16038067e+00 -0.54539697e+01 0.93827000e+00
- 1 211 0 0 -0.27247844e-01 0.19753345e+00 -0.11030514e+01 0.13957000e+00
- 1 2112 0 0 -0.30181517e+00 -0.13134698e+01 -0.69905492e+01 0.93957000e+00
- 1 -211 0 0 0.12298129e+00 -0.34802910e+00 -0.13191866e+01 0.13957000e+00
- 1 -211 0 0 0.24077249e+00 -0.32489459e+00 -0.52105339e+00 0.13957000e+00
- 1 211 0 0 0.72806090e-01 0.10201717e+00 -0.61606345e+00 0.13957000e+00
- 2 111 936 937 0.23920452e+00 -0.30399913e+00 -0.11214196e+01 0.13498000e+00
- 1 -2112 0 0 0.13805981e+00 -0.22908335e+01 -0.97630422e+01 0.93957000e+00
- 1 211 0 0 -0.22277592e+00 -0.53920657e+00 -0.20234464e+01 0.13957000e+00
- 1 -211 0 0 0.65822481e+00 -0.25518658e+01 -0.70268999e+01 0.13957000e+00
- 1 211 0 0 0.59031690e+00 -0.25972674e+01 -0.94903990e+01 0.13957000e+00
- 1 22 0 0 0.18017540e-01 0.16155142e-01 -0.54828235e-01 0.00000000e+00
- 1 22 0 0 -0.18676562e+00 -0.53947820e-01 -0.58636594e+00 0.00000000e+00
- 1 211 0 0 0.92703697e+00 -0.18559725e+01 -0.92965639e+01 0.13957000e+00
- 2 111 938 939 0.59629564e+00 -0.49184909e+00 -0.22552665e+01 0.13498000e+00
- 1 211 0 0 -0.17594474e-01 -0.19144381e+00 -0.25711092e+00 0.13957000e+00
- 2 111 940 941 0.53901886e+00 -0.58877427e+00 -0.39530051e+01 0.13498000e+00
- 1 22 0 0 0.12165453e+00 -0.40578339e+00 -0.27104593e+01 0.00000000e+00
- 1 22 0 0 0.63946304e-01 -0.35516855e-01 -0.54036069e+00 0.00000000e+00
- 1 -211 0 0 0.29122237e+00 0.10977027e-01 -0.52742518e+00 0.13957000e+00
- 2 111 942 943 0.82950758e-02 -0.54134959e+00 -0.18946316e+01 0.13498000e+00
- 1 211 0 0 0.54564224e+00 -0.46047913e-01 -0.24190350e+01 0.13957000e+00
- 1 -211 0 0 -0.30186246e+00 0.16691846e-01 -0.10605863e+01 0.13957000e+00
- 1 211 0 0 0.38823299e+00 -0.73604244e+00 -0.13105774e+02 0.13957000e+00
- 2 111 944 945 0.61650106e-01 0.94012413e-01 -0.58460147e+00 0.13498000e+00
- 1 -211 0 0 -0.21253139e+00 -0.26737842e+00 -0.24489550e+01 0.13957000e+00
- 1 211 0 0 -0.16714284e-01 0.83050136e-01 -0.90809055e+01 0.13957000e+00
- 1 211 0 0 0.13674128e+00 -0.25794358e+00 -0.99389453e+01 0.13957000e+00
- 1 -211 0 0 -0.31783330e-01 0.41336399e-01 -0.44458769e+01 0.13957000e+00
- 2 111 946 947 0.46148274e+00 0.12647005e+00 -0.12353799e+02 0.13498000e+00
- 1 -211 0 0 -0.16122313e+00 0.53614508e-01 -0.71429065e+01 0.13957000e+00
- 1 211 0 0 0.27652979e+00 0.20138274e+00 -0.95504980e+01 0.13957000e+00
- 1 211 0 0 0.36009948e+00 0.20491768e+00 -0.64771944e+02 0.13957000e+00
- 2 111 948 949 0.39541060e-01 -0.33387901e+00 -0.22774489e+02 0.13498000e+00
- 1 -211 0 0 0.28006738e+00 -0.48430720e+00 -0.44203760e+02 0.13957000e+00
- 1 211 0 0 0.16357471e+00 -0.64071560e+00 -0.47603774e+02 0.13957000e+00
- 2 111 950 951 0.35287069e+00 -0.52226553e-01 -0.31560535e+02 0.13498000e+00
- 1 -211 0 0 -0.40687768e-03 -0.67717999e-01 -0.74216955e+01 0.13957000e+00
- 1 211 0 0 -0.30411586e+00 -0.42034521e+00 -0.83171480e+02 0.13957000e+00
- 2 111 952 953 -0.32114600e+00 -0.51650205e-01 -0.32996452e+02 0.13498000e+00
- 1 211 0 0 0.56859817e-01 0.68870552e+00 -0.21959959e+03 0.13957000e+00
- 1 -211 0 0 0.83213011e-01 -0.25039107e+00 -0.21845938e+03 0.13957000e+00
- 1 22 0 0 -0.31529710e+00 -0.13518733e+00 -0.14531163e+03 0.00000000e+00
- 1 22 0 0 -0.29113373e+00 -0.61659687e-01 -0.26912446e+02 0.00000000e+00
- 1 211 0 0 0.62468958e-01 0.11414578e+00 -0.33771356e+02 0.13957000e+00
- 1 -211 0 0 -0.22860438e+00 0.34922733e+00 -0.10084660e+03 0.13957000e+00
- 2 111 954 955 0.77500127e-01 0.63983352e-01 -0.16121343e+03 0.13498000e+00
- 1 -321 0 0 -0.70288307e+00 0.79529264e+00 0.17818975e+00 0.49360000e+00
- 1 321 0 0 -0.58165890e+00 0.51914202e+00 0.31164716e+00 0.49360000e+00
- 1 -321 0 0 -0.38701761e+00 0.37831800e+00 -0.26465838e+00 0.49360000e+00
- 1 211 0 0 0.92671279e-01 -0.14316737e+00 -0.13695731e+00 0.13957000e+00
- 1 2212 0 0 -0.85884974e+00 0.26208598e+00 0.11689866e+01 0.93827000e+00
- 1 -211 0 0 -0.80806063e-01 -0.40309155e-01 0.17798366e+00 0.13957000e+00
- 1 22 0 0 0.25994967e+00 -0.53571996e-01 0.47144874e+00 0.00000000e+00
- 2 111 956 957 0.99516062e+00 -0.38518472e-01 -0.24363103e-01 0.13498000e+00
- 1 22 0 0 -0.23986319e-01 -0.15297783e+00 0.90952161e-01 0.00000000e+00
- 2 113 958 959 -0.20368792e-04 -0.43716149e+00 -0.69806061e-01 0.83559761e+00
- 1 22 0 0 0.89602404e-02 0.72279819e-02 -0.81699939e+00 0.00000000e+00
- 1 22 0 0 0.73261389e-01 0.33499038e+00 -0.22058953e+00 0.00000000e+00
- 1 22 0 0 0.12380823e+00 0.28801001e+00 -0.39009077e-01 0.00000000e+00
- 1 22 0 0 0.65823357e-01 -0.23702559e+00 0.11186530e+00 0.00000000e+00
- 1 22 0 0 -0.70924035e-01 0.15167435e+00 -0.18972421e+00 0.00000000e+00
- 1 22 0 0 -0.43556346e+00 0.39853348e+00 -0.84083879e+00 0.00000000e+00
- 1 -211 0 0 -0.34036606e+00 0.58426241e+00 -0.45912993e+00 0.13957000e+00
- 2 111 960 961 -0.13203055e+01 0.93205087e+00 -0.22059261e+01 0.13498000e+00
- 1 22 0 0 0.35442793e+00 -0.44223458e-01 -0.23224469e+00 0.00000000e+00
- 1 22 0 0 0.24371975e+00 -0.14208292e+00 -0.23305823e+00 0.00000000e+00
- 1 2212 0 0 -0.41969588e+00 -0.34456074e+00 -0.36634492e+01 0.93827000e+00
- 2 111 962 963 -0.65091070e-01 0.33119338e-01 -0.15181705e+00 0.13498000e+00
- 1 -211 0 0 -0.23005264e+00 -0.47034772e+00 -0.10556010e+01 0.13957000e+00
- 2 111 964 965 0.22398443e-02 -0.19363261e+00 0.55180714e-01 0.13498000e+00
- 1 321 0 0 0.22244428e+00 0.24240419e+00 -0.14134382e+01 0.49360000e+00
- 2 111 966 967 0.21732016e+00 -0.14993452e+00 -0.20128587e+00 0.13498000e+00
- 1 -321 0 0 -0.43097976e-01 -0.57264966e-01 -0.17838997e+01 0.49360000e+00
- 1 211 0 0 0.16094083e+00 -0.63852914e+00 -0.33528410e+01 0.13957000e+00
- 1 -211 0 0 0.17505738e+00 -0.36382563e+00 0.85746000e-01 0.13957000e+00
- 2 111 968 969 -0.31235424e-01 -0.20451948e+00 -0.42586505e+00 0.13498000e+00
- 1 22 0 0 0.46944126e-02 -0.32435301e-01 -0.53468338e-01 0.00000000e+00
- 1 22 0 0 0.18920555e+00 0.58570336e-01 -0.12041362e+00 0.00000000e+00
- 2 310 970 971 0.30670298e+00 -0.58965329e-01 -0.10875861e+00 0.49767000e+00
- 1 -321 0 0 0.10315753e+00 0.20925920e+01 0.24702266e+01 0.49360000e+00
- 1 211 0 0 0.21707282e+00 0.23285622e+00 0.59117949e+00 0.13957000e+00
- 1 22 0 0 0.59951595e-01 0.18546413e+00 0.22605519e+00 0.00000000e+00
- 2 113 972 973 0.15930618e+01 0.98527330e+00 0.50453804e+01 0.71662732e+00
- 1 -211 0 0 -0.18972252e-01 -0.75604292e-01 0.12444616e+00 0.13957000e+00
- 2 111 974 975 0.33674404e+00 0.64912536e+00 0.19204195e+01 0.13498000e+00
- 2 311 976 976 0.73859437e+00 0.18673968e+01 0.33217954e+01 0.49767000e+00
- 1 211 0 0 -0.60591833e-01 0.20995534e+00 0.69439675e+00 0.13957000e+00
- 1 22 0 0 -0.14817226e+00 0.10138091e+00 0.33113838e+00 0.00000000e+00
- 1 22 0 0 -0.32241312e-01 0.16080150e+00 0.23224706e+00 0.00000000e+00
- 1 211 0 0 0.27211446e+00 -0.60444373e-01 -0.11843132e+00 0.13957000e+00
- 2 111 977 978 -0.29658156e+00 0.46697419e+00 0.10043576e-01 0.13498000e+00
- 2 310 979 980 0.14071157e+00 0.26471632e-01 -0.16444275e+02 0.49767000e+00
- 1 -321 0 0 -0.13025386e+00 -0.80140707e+00 -0.24954966e+02 0.49360000e+00
- 2 111 981 982 -0.32795076e+00 -0.16142862e+00 -0.60218339e+01 0.13498000e+00
- 1 321 0 0 -0.20820017e+00 -0.46860265e+00 -0.93457580e+01 0.49360000e+00
- 1 -211 0 0 0.14286283e+00 0.14380497e+00 -0.38959696e+01 0.13957000e+00
- 1 -321 0 0 -0.73570093e+00 0.77886008e-01 -0.29335473e+02 0.49360000e+00
- 1 211 0 0 -0.11081236e+00 -0.60841986e-01 -0.25551782e+02 0.13957000e+00
- 1 22 0 0 -0.50109431e+00 0.10697469e+01 -0.66626852e+02 0.00000000e+00
- 1 22 0 0 -0.13264897e+00 0.36435158e+00 -0.18297407e+02 0.00000000e+00
- 1 211 0 0 0.27072422e+00 0.32225565e+00 -0.13562311e+03 0.13957000e+00
- 1 -211 0 0 0.15348282e+00 0.24673705e+00 -0.40113669e+02 0.13957000e+00
- 2 111 983 984 0.84109952e-01 0.82855785e+00 -0.17611810e+03 0.13498000e+00
- 1 211 0 0 -0.91957247e-01 -0.70593211e-01 -0.13033166e+03 0.13957000e+00
- 2 111 985 986 0.14534904e+00 -0.52942422e-01 -0.18781460e+02 0.13498000e+00
- 1 -211 0 0 -0.42424908e+00 -0.22989629e+00 -0.13635453e+03 0.13957000e+00
- 1 211 0 0 -0.73052711e-01 0.34444849e+00 -0.65389987e+02 0.13957000e+00
- 1 -211 0 0 -0.34557755e+00 -0.47401052e+00 0.59760006e+00 0.13957000e+00
- 1 211 0 0 0.24331714e+00 -0.97522098e-03 -0.13120412e+00 0.13957000e+00
- 1 22 0 0 0.55486349e-01 0.11595883e+00 -0.60122522e-02 0.00000000e+00
- 2 113 987 988 -0.57391986e+00 -0.39905121e+00 0.74782647e-01 0.70938282e+00
- 1 -211 0 0 -0.14367930e+00 -0.17883523e+00 -0.36943379e-01 0.13957000e+00
- 2 111 989 990 0.51871138e+00 0.12195398e+00 0.66212224e-01 0.13498000e+00
- 1 211 0 0 -0.89464048e-01 -0.48154695e+00 0.45282487e+00 0.13957000e+00
- 1 -211 0 0 -0.10814899e+00 0.26965969e-01 -0.63577559e-01 0.13957000e+00
- 2 111 991 992 0.13989900e-01 -0.60738104e-01 -0.24328291e-01 0.13498000e+00
- 1 211 0 0 0.33306526e+00 0.79267439e+00 -0.14160899e+00 0.13957000e+00
- 1 -211 0 0 0.92812146e+00 0.34276204e+00 -0.31831591e+00 0.13957000e+00
- 1 22 0 0 -0.43114064e+00 0.28168706e-01 -0.14791484e-02 0.00000000e+00
- 2 111 993 994 0.31554779e+00 -0.75707849e-01 0.21948039e-01 0.13498000e+00
- 1 2212 0 0 0.13229833e+00 0.13298517e+00 0.27794947e+01 0.93827000e+00
- 2 111 995 996 -0.16042411e-01 -0.67220076e-01 0.10811569e+00 0.13498000e+00
- 2 -3122 997 998 -0.18115128e+00 -0.10155604e-01 -0.42427746e+00 0.11156800e+01
- 1 22 0 0 -0.30028769e-01 -0.29973783e-01 0.45534080e-01 0.00000000e+00
- 1 -211 0 0 -0.41892569e+00 -0.24333895e+00 0.19790708e+01 0.13957000e+00
- 2 111 999 1000 0.19991300e-01 0.47021491e+00 0.22348469e+01 0.13498000e+00
- 1 2112 0 0 -0.44677541e-02 0.17042868e+00 -0.11392480e+01 0.93957000e+00
- 1 211 0 0 0.83364069e-01 -0.51143145e-01 -0.14454759e+00 0.13957000e+00
- 1 -2212 0 0 -0.22183798e+00 -0.94124018e-01 -0.15316296e+01 0.93827000e+00
- 1 -211 0 0 -0.50201013e-01 0.18248548e+00 -0.11412901e+00 0.13957000e+00
- 2 111 1001 1002 0.76256913e-01 -0.85871031e-01 -0.13198679e+01 0.13498000e+00
- 2 111 1003 1004 0.10972657e+00 0.33519154e-01 -0.11165239e+01 0.13498000e+00
- 2 111 1005 1006 0.84448536e-01 -0.31586372e+00 -0.19694254e+01 0.13498000e+00
- 1 211 0 0 -0.63710013e+00 -0.68291090e+00 -0.57412304e+01 0.13957000e+00
- 2 111 1007 1008 0.16941201e+00 -0.37103636e+00 -0.22135039e+01 0.13498000e+00
- 1 211 0 0 -0.35240202e+00 0.12690647e+00 -0.77743586e+00 0.13957000e+00
- 1 -211 0 0 -0.58383158e-03 -0.44871643e+00 -0.19524784e+01 0.13957000e+00
- 1 22 0 0 0.14096926e+00 0.18150336e+00 -0.36474502e+00 0.00000000e+00
- 1 22 0 0 -0.20977570e+00 0.42722639e+00 -0.20723170e-01 0.00000000e+00
- 1 22 0 0 0.64738227e+00 0.14103504e+01 -0.78767301e+02 0.00000000e+00
- 1 22 0 0 0.71450685e-01 0.29702825e+00 -0.15954385e+02 0.00000000e+00
- 1 22 0 0 0.59148274e+00 -0.13057296e+00 -0.14480874e+02 0.00000000e+00
- 1 22 0 0 0.31762948e+00 0.73359521e-02 -0.62641079e+01 0.00000000e+00
- 1 22 0 0 0.28180597e-01 -0.20106283e+00 -0.13250506e+01 0.00000000e+00
- 1 22 0 0 0.86516447e-01 -0.52126094e-01 -0.96973210e+00 0.00000000e+00
- 1 22 0 0 0.52366539e-01 0.49584956e-01 -0.69820754e+00 0.00000000e+00
- 1 22 0 0 -0.35129016e-01 -0.39888154e-01 -0.12029694e+01 0.00000000e+00
- 1 22 0 0 -0.16865679e-01 0.46727522e-01 -0.14218896e+01 0.00000000e+00
- 1 22 0 0 0.50320093e-01 -0.17091321e-01 -0.27559892e+00 0.00000000e+00
- 1 211 0 0 0.76569329e-01 -0.86271925e-01 -0.41247805e+01 0.13957000e+00
- 1 -211 0 0 0.47672271e-01 -0.63834556e-01 -0.28489503e+01 0.13957000e+00
- 2 111 1009 1010 0.41314626e+00 -0.17991332e+00 -0.60653208e+01 0.13498000e+00
- 1 22 0 0 -0.67622809e-01 -0.11221746e+00 -0.13752348e+01 0.00000000e+00
- 1 22 0 0 -0.25212317e+00 -0.75362132e-01 -0.25235763e+01 0.00000000e+00
- 1 22 0 0 -0.19925375e+00 -0.16742243e+01 0.25208686e+00 0.00000000e+00
- 1 22 0 0 0.18883126e-01 -0.12250346e+00 0.38191858e-02 0.00000000e+00
- 1 22 0 0 0.99758183e-01 -0.52778701e+00 -0.14004099e+00 0.00000000e+00
- 1 22 0 0 -0.32513067e-01 -0.76467846e-01 -0.45585541e-01 0.00000000e+00
- 1 22 0 0 0.28849515e+00 -0.80927181e+00 0.25504850e+00 0.00000000e+00
- 1 22 0 0 0.24383356e+00 -0.40593226e+00 0.10423487e+00 0.00000000e+00
- 1 22 0 0 0.13291766e-01 -0.87609650e-01 0.15075788e-01 0.00000000e+00
- 1 22 0 0 0.84733546e+00 -0.16073765e+01 0.22179890e+00 0.00000000e+00
- 1 22 0 0 -0.28535228e+00 -0.38889094e+00 0.24861666e+00 0.00000000e+00
- 1 22 0 0 -0.23555454e+00 -0.24211858e+00 0.29916948e+00 0.00000000e+00
- 1 22 0 0 -0.28871470e+00 -0.36642955e+00 0.39688887e+00 0.00000000e+00
- 1 22 0 0 -0.60711127e+00 -0.10773317e+01 0.91207753e+00 0.00000000e+00
- 1 211 0 0 -0.27678863e+01 -0.21290763e+01 0.56360463e+01 0.13957000e+00
- 1 -211 0 0 -0.26927794e+00 -0.37060419e+00 0.70034767e+00 0.13957000e+00
- 1 22 0 0 -0.31946492e-01 -0.27121328e-01 0.25742108e-01 0.00000000e+00
- 1 22 0 0 -0.18533136e+00 -0.12106690e+00 0.71067122e+00 0.00000000e+00
- 1 22 0 0 -0.16117670e+00 0.16926567e+00 0.88981853e+00 0.00000000e+00
- 1 22 0 0 -0.44319083e-01 -0.25329167e-01 0.17957935e+00 0.00000000e+00
- 1 22 0 0 -0.10919761e+00 0.41091830e-01 0.16666761e+00 0.00000000e+00
- 1 22 0 0 -0.15051758e-01 -0.59376269e-01 0.16526403e+00 0.00000000e+00
- 1 22 0 0 0.33068786e+00 -0.30744489e+00 0.72303275e+00 0.00000000e+00
- 1 22 0 0 0.49039615e-02 -0.71398070e-01 0.13636343e+00 0.00000000e+00
- 2 310 1011 1012 0.76564615e+00 -0.49526263e+00 0.19896803e+01 0.49767000e+00
- 1 22 0 0 0.21008085e-01 0.95966739e-01 0.20722544e+00 0.00000000e+00
- 1 22 0 0 0.10780169e-01 0.10048404e+00 0.23150705e-01 0.00000000e+00
- 2 310 1013 1014 -0.27904962e+00 0.24938441e+00 0.74860324e+00 0.49767000e+00
- 1 22 0 0 0.66189193e-01 0.32217868e-01 0.22788797e+00 0.00000000e+00
- 1 22 0 0 0.76782388e-01 -0.11688873e+00 0.51127220e+00 0.00000000e+00
- 1 130 0 0 -0.40451214e-01 0.58111085e-01 0.36239462e+01 0.49767000e+00
- 1 22 0 0 -0.68402624e-01 -0.42736826e+00 0.28979732e+01 0.00000000e+00
- 1 22 0 0 -0.61219019e-01 -0.16383145e+00 0.74451175e+00 0.00000000e+00
- 2 111 1015 1016 -0.25057739e-01 -0.23446453e-01 0.40292867e+01 0.13498000e+00
- 2 111 1017 1018 0.22551463e-01 0.12858879e+00 0.47339123e+01 0.13498000e+00
- 2 111 1019 1020 -0.86314996e-01 0.35092337e+00 0.12905815e+02 0.13498000e+00
- 1 22 0 0 0.99824528e-01 0.72379327e-01 0.23341442e+02 0.00000000e+00
- 1 22 0 0 0.13024093e-02 0.69731728e-01 0.39449713e+02 0.00000000e+00
- 1 -2112 0 0 -0.16767509e+01 -0.12558482e+01 -0.25493466e+01 0.93957000e+00
- 2 111 1021 1022 -0.35994835e+00 -0.22897369e+00 -0.33643132e+00 0.13498000e+00
- 1 22 0 0 0.53533687e-01 -0.24086388e+00 -0.45446455e+01 0.00000000e+00
- 1 22 0 0 -0.60499782e-02 -0.84174752e-01 -0.36847317e+01 0.00000000e+00
- 1 22 0 0 -0.19077000e+00 -0.43873294e+00 -0.12004718e+03 0.00000000e+00
- 1 22 0 0 -0.67083390e-01 -0.32735587e-01 -0.15697655e+02 0.00000000e+00
- 1 22 0 0 -0.35974405e+00 0.30618556e+00 -0.11323149e+03 0.00000000e+00
- 1 22 0 0 -0.14719799e+00 0.29242031e-01 -0.33929386e+02 0.00000000e+00
- 1 22 0 0 0.22195597e-01 -0.49978217e-01 -0.30360055e+02 0.00000000e+00
- 1 22 0 0 0.55367734e-01 -0.11232937e-01 -0.45378805e+01 0.00000000e+00
- 1 22 0 0 0.13169490e-01 0.19148867e-01 -0.14497865e+01 0.00000000e+00
- 1 22 0 0 -0.81058243e-01 -0.14694801e+00 -0.23381933e+02 0.00000000e+00
- 1 22 0 0 -0.75732204e-02 0.20346920e-01 -0.11245313e+02 0.00000000e+00
- 1 22 0 0 0.41553768e-01 -0.13078877e+00 -0.18421926e+02 0.00000000e+00
- 2 111 1023 1024 -0.20886385e+00 0.32842600e-02 -0.39021894e+02 0.13498000e+00
- 2 111 1025 1026 -0.27659822e+00 -0.36058832e-01 -0.85546141e+02 0.13498000e+00
- 2 111 1027 1028 0.23786857e-02 -0.76507345e-01 -0.40422616e+02 0.13498000e+00
- 1 22 0 0 -0.12808834e+00 -0.15020685e+00 -0.68932732e+02 0.00000000e+00
- 1 22 0 0 -0.10874967e+01 -0.12579616e+01 -0.45907533e+03 0.00000000e+00
- 1 22 0 0 -0.57320264e+00 -0.46282407e+00 0.30757500e+01 0.00000000e+00
- 1 22 0 0 -0.21505361e+00 -0.27851319e+00 0.12905601e+01 0.00000000e+00
- 1 22 0 0 0.14753640e+00 -0.10053461e+00 0.11116401e+01 0.00000000e+00
- 1 22 0 0 0.18494145e+00 -0.35222016e+00 0.28773954e+01 0.00000000e+00
- 1 22 0 0 0.47781641e-01 0.11029454e+00 -0.67637327e+00 0.00000000e+00
- 1 22 0 0 -0.55886239e-02 0.71661047e+00 -0.32862413e+01 0.00000000e+00
- 1 211 0 0 -0.46136672e+00 -0.36697484e-01 0.11573052e+02 0.13957000e+00
- 1 -211 0 0 -0.90388947e-01 0.20030424e+00 0.39779044e+01 0.13957000e+00
- 1 22 0 0 -0.13202436e+00 0.18766457e+00 0.20939498e+01 0.00000000e+00
- 1 22 0 0 -0.29338249e-01 0.19952788e+00 0.12038029e+01 0.00000000e+00
- 1 22 0 0 0.68200391e-01 -0.11981483e+00 0.44241507e+00 0.00000000e+00
- 1 22 0 0 0.25820344e+00 -0.93914231e-01 0.94854190e+00 0.00000000e+00
- 1 22 0 0 -0.44787679e+00 0.10738724e+01 0.46699866e+01 0.00000000e+00
- 1 22 0 0 -0.16525143e+00 0.65786392e+00 0.26387571e+01 0.00000000e+00
- 1 22 0 0 -0.13226797e+00 0.10922530e+00 0.65269724e+00 0.00000000e+00
- 1 22 0 0 -0.34646722e+00 0.57848987e+00 0.31694302e+01 0.00000000e+00
- 1 22 0 0 -0.35117388e-01 -0.25599834e-01 0.84673634e+00 0.00000000e+00
- 1 22 0 0 -0.28642676e+00 -0.12530152e+00 0.20505299e+01 0.00000000e+00
- 1 22 0 0 0.75302320e-01 -0.31482980e-01 0.85040415e+01 0.00000000e+00
- 1 22 0 0 0.33682447e-01 0.35001474e-01 0.98719598e+00 0.00000000e+00
- 1 130 0 0 -0.14240377e+00 -0.23259910e+00 0.63782335e+02 0.49767000e+00
- 2 310 1029 1030 -0.91239044e+00 -0.10969494e+01 0.25871310e+03 0.49767000e+00
- 1 130 0 0 -0.24346100e+00 -0.10791591e+01 0.10268870e+03 0.49767000e+00
- 1 130 0 0 0.21281537e+00 0.26715366e-01 0.26111192e+03 0.49767000e+00
- 1 22 0 0 0.54488254e-01 0.61205007e-01 0.66435618e+02 0.00000000e+00
- 1 22 0 0 -0.94549865e-02 -0.48052207e-01 0.95331951e+02 0.00000000e+00
- 1 22 0 0 0.11074171e+00 0.13875011e+00 0.21136239e+02 0.00000000e+00
- 1 22 0 0 0.24846114e-02 -0.23354368e-01 0.10937896e+01 0.00000000e+00
- 1 22 0 0 0.38780075e+00 -0.34323146e-01 0.97509612e+02 0.00000000e+00
- 1 22 0 0 0.72551789e-01 0.56005426e-02 0.84731747e+01 0.00000000e+00
- 1 22 0 0 0.15672265e+00 0.10174801e+01 0.74003341e+02 0.00000000e+00
- 1 22 0 0 0.96291472e-01 0.21353367e+00 0.17730113e+02 0.00000000e+00
- 1 22 0 0 0.17130537e+00 0.15641396e+00 0.40111677e+02 0.00000000e+00
- 1 22 0 0 -0.15597775e-02 0.10894114e+00 0.15133768e+02 0.00000000e+00
- 1 22 0 0 -0.35568120e+00 0.12796243e+01 0.69427517e+02 0.00000000e+00
- 1 22 0 0 -0.57616557e-01 0.89206901e-01 0.67520488e+01 0.00000000e+00
- 1 22 0 0 -0.82681949e+00 0.64370810e+00 0.23171078e+02 0.00000000e+00
- 1 22 0 0 -0.21743081e-01 0.50529460e-01 0.15792977e+01 0.00000000e+00
- 1 211 0 0 -0.16161643e+00 0.16282066e+00 0.33198009e+01 0.13957000e+00
- 1 -211 0 0 -0.80803062e+00 0.10792594e+00 0.17175978e+02 0.13957000e+00
- 1 -211 0 0 -0.10085849e+00 0.94728458e-01 0.37336776e+01 0.13957000e+00
- 1 211 0 0 -0.46401468e+00 -0.83561610e+00 0.17013604e+02 0.13957000e+00
- 1 22 0 0 0.47235885e-01 -0.10511201e+00 0.77804368e+00 0.00000000e+00
- 1 22 0 0 0.57164313e-01 -0.70049287e-01 0.17005335e+00 0.00000000e+00
- 1 22 0 0 0.52238846e+00 0.81400651e-01 0.67219219e+00 0.00000000e+00
- 1 22 0 0 0.35458206e+00 -0.26540989e-01 0.58426570e+00 0.00000000e+00
- 2 310 1031 1032 0.29678045e+00 0.17013602e+00 0.97068136e+00 0.49767000e+00
- 1 22 0 0 0.19525206e+00 -0.40964466e-01 0.25412855e+00 0.00000000e+00
- 1 22 0 0 0.31162676e+00 -0.84737823e-01 0.18291964e+00 0.00000000e+00
- 1 22 0 0 0.28579020e-01 -0.99682110e-02 -0.25840389e-01 0.00000000e+00
- 1 22 0 0 0.44459772e+00 -0.84329656e-02 0.13277251e+00 0.00000000e+00
- 1 -211 0 0 0.18394748e+00 0.63572487e+00 0.48872934e-01 0.13957000e+00
- 1 211 0 0 0.48408344e-01 0.40305623e-01 0.15200862e+00 0.13957000e+00
- 1 22 0 0 0.14454127e+00 0.24520718e-03 0.22055513e-01 0.00000000e+00
- 1 22 0 0 -0.21792720e-01 0.33750988e-01 -0.33397575e-02 0.00000000e+00
- 1 22 0 0 0.72861307e+00 0.50747965e-01 -0.53102927e+00 0.00000000e+00
- 1 22 0 0 0.95597415e-02 -0.65576012e-02 -0.38136539e-01 0.00000000e+00
- 1 22 0 0 0.42742836e+00 0.82233367e-01 -0.69145861e+00 0.00000000e+00
- 1 22 0 0 0.53854211e+00 0.15820502e+00 -0.64913486e+00 0.00000000e+00
- 1 22 0 0 0.18830743e+00 0.17004662e+00 -0.40327316e+00 0.00000000e+00
- 1 22 0 0 0.94461860e+00 0.12260479e+01 -0.21312005e+01 0.00000000e+00
- 1 22 0 0 0.21078344e+00 0.32396522e-01 -0.85814290e+00 0.00000000e+00
- 1 22 0 0 0.85758703e-01 0.18972336e-01 -0.92400149e+00 0.00000000e+00
- 1 22 0 0 0.16642106e+00 -0.28112708e+00 -0.81260129e+00 0.00000000e+00
- 1 22 0 0 0.72783455e-01 -0.22872054e-01 -0.30881831e+00 0.00000000e+00
- 1 22 0 0 0.21155451e+00 -0.22132398e+00 -0.10622111e+01 0.00000000e+00
- 1 22 0 0 0.38474113e+00 -0.27052510e+00 -0.11930554e+01 0.00000000e+00
- 1 22 0 0 0.17301105e+00 -0.18982909e+00 -0.16063980e+01 0.00000000e+00
- 1 22 0 0 0.36600781e+00 -0.39894518e+00 -0.23466070e+01 0.00000000e+00
- 1 22 0 0 -0.32885811e-01 -0.22266291e+00 -0.59021430e+00 0.00000000e+00
- 1 22 0 0 0.41180887e-01 -0.31868669e+00 -0.13044173e+01 0.00000000e+00
- 1 22 0 0 0.27389090e-02 -0.22608114e-01 -0.25281577e+00 0.00000000e+00
- 1 22 0 0 0.58911197e-01 0.11662053e+00 -0.33178569e+00 0.00000000e+00
- 1 22 0 0 0.27153628e+00 0.44248094e-01 -0.84943557e+01 0.00000000e+00
- 1 22 0 0 0.18994646e+00 0.82221956e-01 -0.38594438e+01 0.00000000e+00
- 1 22 0 0 0.11660951e-01 0.10662263e-01 -0.72478966e+00 0.00000000e+00
- 1 22 0 0 0.27880110e-01 -0.34454127e+00 -0.22049700e+02 0.00000000e+00
- 1 22 0 0 0.26152068e+00 -0.75195272e-01 -0.18963076e+02 0.00000000e+00
- 1 22 0 0 0.91350006e-01 0.22968719e-01 -0.12597459e+02 0.00000000e+00
- 1 22 0 0 -0.25228519e+00 -0.84758682e-01 -0.28370522e+02 0.00000000e+00
- 1 22 0 0 -0.68860806e-01 0.33108478e-01 -0.46259296e+01 0.00000000e+00
- 1 22 0 0 0.96318286e-01 0.67760387e-01 -0.81070441e+02 0.00000000e+00
- 1 22 0 0 -0.18818159e-01 -0.37770353e-02 -0.80142985e+02 0.00000000e+00
- 1 22 0 0 0.49325757e-01 0.19185623e-01 -0.23012727e-01 0.00000000e+00
- 1 22 0 0 0.94583486e+00 -0.57704095e-01 -0.13503763e-02 0.00000000e+00
- 1 -211 0 0 0.37182821e+00 -0.13633573e+00 0.75461506e-01 0.13957000e+00
- 1 211 0 0 -0.37184858e+00 -0.30082577e+00 -0.14526757e+00 0.13957000e+00
- 1 22 0 0 -0.12852619e+01 0.87512470e+00 -0.21126029e+01 0.00000000e+00
- 1 22 0 0 -0.35043548e-01 0.56926172e-01 -0.93323153e-01 0.00000000e+00
- 1 22 0 0 -0.25646781e-02 -0.17042390e-01 0.19925868e-01 0.00000000e+00
- 1 22 0 0 -0.62526392e-01 0.50161728e-01 -0.17174292e+00 0.00000000e+00
- 1 22 0 0 0.60432595e-01 -0.12865594e+00 0.59851399e-02 0.00000000e+00
- 1 22 0 0 -0.58192751e-01 -0.64976672e-01 0.49195574e-01 0.00000000e+00
- 1 22 0 0 0.11351501e+00 -0.10635889e+00 -0.38127311e-01 0.00000000e+00
- 1 22 0 0 0.10380515e+00 -0.43575633e-01 -0.16315856e+00 0.00000000e+00
- 1 22 0 0 0.49072283e-01 -0.40575361e-01 -0.93461056e-01 0.00000000e+00
- 1 22 0 0 -0.80307707e-01 -0.16394412e+00 -0.33240400e+00 0.00000000e+00
- 1 -211 0 0 0.30681415e+00 -0.73368061e-01 -0.22791674e+00 0.13957000e+00
- 1 211 0 0 -0.11116802e-03 0.14402732e-01 0.11915813e+00 0.13957000e+00
- 1 211 0 0 0.10811516e+01 0.35284007e+00 0.24259008e+01 0.13957000e+00
- 1 -211 0 0 0.51191023e+00 0.63243322e+00 0.26194796e+01 0.13957000e+00
- 1 22 0 0 0.34173670e+00 0.58834749e+00 0.17133297e+01 0.00000000e+00
- 1 22 0 0 -0.49926555e-02 0.60777865e-01 0.20708980e+00 0.00000000e+00
- 2 310 1033 1034 0.73859437e+00 0.18673968e+01 0.33217954e+01 0.49767000e+00
- 1 22 0 0 -0.10589118e+00 0.19406928e+00 -0.60475316e-01 0.00000000e+00
- 1 22 0 0 -0.19069038e+00 0.27290491e+00 0.70518893e-01 0.00000000e+00
- 1 211 0 0 0.15581512e+00 0.19128460e+00 -0.11374782e+02 0.13957000e+00
- 1 -211 0 0 -0.15103547e-01 -0.16481296e+00 -0.50694932e+01 0.13957000e+00
- 1 22 0 0 -0.55683664e-01 -0.85158177e-01 -0.20641455e+01 0.00000000e+00
- 1 22 0 0 -0.27226709e+00 -0.76270438e-01 -0.39576883e+01 0.00000000e+00
- 1 22 0 0 -0.35882134e-01 0.22277796e+00 -0.44534216e+02 0.00000000e+00
- 1 22 0 0 0.11999209e+00 0.60577988e+00 -0.13158388e+03 0.00000000e+00
- 1 22 0 0 -0.17137049e-02 -0.49206703e-01 -0.26975636e+01 0.00000000e+00
- 1 22 0 0 0.14706274e+00 -0.37357189e-02 -0.16083896e+02 0.00000000e+00
- 1 211 0 0 0.96408508e-01 0.33571683e-01 0.75769925e-01 0.13957000e+00
- 1 -211 0 0 -0.67032837e+00 -0.43262290e+00 -0.98727840e-03 0.13957000e+00
- 1 22 0 0 0.38195128e+00 0.80065792e-01 -0.12395819e-01 0.00000000e+00
- 1 22 0 0 0.13676010e+00 0.41888191e-01 0.78608043e-01 0.00000000e+00
- 1 22 0 0 0.19519832e-01 -0.10256328e+00 -0.28592763e-01 0.00000000e+00
- 1 22 0 0 -0.55299323e-02 0.41825177e-01 0.42644720e-02 0.00000000e+00
- 1 22 0 0 0.11902469e+00 -0.91847683e-01 -0.16492531e-01 0.00000000e+00
- 1 22 0 0 0.19652310e+00 0.16139834e-01 0.38440570e-01 0.00000000e+00
- 1 22 0 0 -0.66393579e-01 -0.59409865e-02 0.74857587e-01 0.00000000e+00
- 1 22 0 0 0.50351168e-01 -0.61279089e-01 0.33258101e-01 0.00000000e+00
- 1 -2212 0 0 -0.12330440e+00 -0.53148742e-01 -0.26622661e+00 0.93827000e+00
- 1 211 0 0 -0.57846885e-01 0.42993137e-01 -0.15805085e+00 0.13957000e+00
- 1 22 0 0 0.56747642e-01 0.85525028e-01 0.42696503e+00 0.00000000e+00
- 1 22 0 0 -0.36756342e-01 0.38468989e+00 0.18078819e+01 0.00000000e+00
- 1 22 0 0 0.54860600e-01 -0.10791098e+00 -0.12438015e+01 0.00000000e+00
- 1 22 0 0 0.21396314e-01 0.22039952e-01 -0.76066330e-01 0.00000000e+00
- 1 22 0 0 0.18644864e-01 0.74292361e-01 -0.53750197e+00 0.00000000e+00
- 1 22 0 0 0.91081711e-01 -0.40773206e-01 -0.57902189e+00 0.00000000e+00
- 1 22 0 0 0.99992034e-01 -0.26861690e+00 -0.13818794e+01 0.00000000e+00
- 1 22 0 0 -0.15543498e-01 -0.47246821e-01 -0.58754603e+00 0.00000000e+00
- 1 22 0 0 0.16365617e+00 -0.37872668e+00 -0.21993245e+01 0.00000000e+00
- 1 22 0 0 0.57558310e-02 0.76903165e-02 -0.14179367e-01 0.00000000e+00
- 1 22 0 0 0.23717511e+00 -0.12834405e+00 -0.43732558e+01 0.00000000e+00
- 1 22 0 0 0.17597115e+00 -0.51569269e-01 -0.16920650e+01 0.00000000e+00
- 1 -211 0 0 0.50220440e+00 -0.89004362e-01 0.11403104e+01 0.13957000e+00
- 1 211 0 0 0.26344175e+00 -0.40625827e+00 0.84936999e+00 0.13957000e+00
- 1 211 0 0 -0.28959159e+00 0.18652290e+00 0.23984380e+00 0.13957000e+00
- 1 -211 0 0 0.10541965e-01 0.62861514e-01 0.50875944e+00 0.13957000e+00
- 1 22 0 0 0.39877430e-02 -0.22283349e-01 0.11032535e+00 0.00000000e+00
- 1 22 0 0 -0.29045482e-01 -0.11631032e-02 0.39189613e+01 0.00000000e+00
- 1 22 0 0 0.52055397e-01 0.73728384e-01 0.40193453e+01 0.00000000e+00
- 1 22 0 0 -0.29503934e-01 0.54860406e-01 0.71456705e+00 0.00000000e+00
- 1 22 0 0 -0.85429244e-01 0.87507430e-01 0.41961079e+01 0.00000000e+00
- 1 22 0 0 -0.88575216e-03 0.26341594e+00 0.87097069e+01 0.00000000e+00
- 1 22 0 0 -0.23259129e+00 -0.14422795e+00 -0.29269687e+00 0.00000000e+00
- 1 22 0 0 -0.12735706e+00 -0.84745739e-01 -0.43734454e-01 0.00000000e+00
- 1 22 0 0 -0.18522928e+00 0.53842260e-01 -0.30252205e+02 0.00000000e+00
- 1 22 0 0 -0.23634571e-01 -0.50558000e-01 -0.87696884e+01 0.00000000e+00
- 1 22 0 0 -0.13027709e+00 0.10779292e-01 -0.22918058e+02 0.00000000e+00
- 1 22 0 0 -0.14632113e+00 -0.46838125e-01 -0.62628082e+02 0.00000000e+00
- 1 22 0 0 0.26830834e-01 -0.13569801e-01 -0.18937698e+01 0.00000000e+00
- 1 22 0 0 -0.24452149e-01 -0.62937544e-01 -0.38528846e+02 0.00000000e+00
- 1 -211 0 0 -0.74963893e+00 -0.10360459e+01 0.22479365e+03 0.13957000e+00
- 1 211 0 0 -0.16275151e+00 -0.60903547e-01 0.33919451e+02 0.13957000e+00
- 1 211 0 0 -0.86043455e-01 0.92200958e-01 0.27386789e+00 0.13957000e+00
- 1 -211 0 0 0.38282390e+00 0.77935064e-01 0.69681347e+00 0.13957000e+00
- 1 211 0 0 0.64018125e+00 0.14532263e+01 0.23077133e+01 0.13957000e+00
- 1 -211 0 0 0.98413115e-01 0.41417045e+00 0.10140821e+01 0.13957000e+00
- 673
- 2 25 2 3 0.12965792e+03 0.20032575e+03 0.32609619e+02 0.12499974e+03
- 2 23 4 6 0.68883335e+02 0.89780957e+02 0.55471992e+02 0.64727644e+02
- 2 23 7 10 0.60774588e+02 0.11054479e+03 -0.22862374e+02 0.19449532e+02
- 1 -13 0 0 0.58174855e+02 0.99866314e+02 0.50753678e+02 0.10566000e+00
- 1 13 0 0 0.10708071e+02 -0.10085424e+02 0.47181838e+01 0.10566000e+00
- 1 22 0 0 0.40846236e-03 0.67344928e-04 0.13035159e-03 0.00000000e+00
- 1 -11 0 0 0.60519831e+02 0.98649674e+02 -0.20307718e+02 0.51000000e-03
- 1 22 0 0 0.55865859e-06 0.90154960e-06 -0.34791406e-06 0.00000000e+00
- 1 11 0 0 0.25449442e+00 0.11883847e+02 -0.25522737e+01 0.51000000e-03
- 1 22 0 0 0.26154987e-03 0.11269221e-01 -0.23820154e-02 0.00000000e+00
- 2 4 77 77 0.42726387e+01 -0.61124503e+02 0.41367688e+02 0.15000000e+01
- 2 21 77 77 -0.17035793e+00 -0.77245017e+00 0.10601526e+01 0.00000000e+00
- 2 21 77 77 0.94041691e-01 -0.25254387e+00 0.26073172e+01 0.00000000e+00
- 2 21 77 77 0.21381669e+00 0.27289686e+01 0.43419122e+01 0.00000000e+00
- 2 21 77 77 0.85853780e+00 0.14558237e+01 0.92196805e+01 0.00000000e+00
- 2 21 77 77 -0.43461095e+00 0.65834918e-01 0.46879889e+01 0.00000000e+00
- 2 21 77 77 0.43947700e+00 0.80970865e+00 0.35495177e+02 0.00000000e+00
- 2 21 77 77 0.43461095e+00 -0.65834918e-01 0.33532878e+02 0.00000000e+00
- 2 21 77 77 0.14546540e+02 -0.10505763e+02 0.12914060e+03 0.00000000e+00
- 2 21 77 77 -0.43947700e+00 -0.80970865e+00 0.57286620e+01 0.00000000e+00
- 2 21 77 77 -0.85853780e+00 -0.14558237e+01 0.38992220e+01 0.00000000e+00
- 2 21 77 77 0.10692505e+00 -0.39491669e+00 -0.45366471e-01 0.00000000e+00
- 2 21 77 77 -0.16335533e+01 -0.25328017e+00 -0.24478286e+01 0.00000000e+00
- 2 21 77 77 -0.75772401e+01 -0.49904016e+01 -0.29025101e+02 0.00000000e+00
- 2 21 77 77 0.60941334e+00 -0.16697005e+01 -0.94269220e+01 0.00000000e+00
- 2 21 77 77 -0.21381669e+00 -0.27289686e+01 -0.53153882e+02 0.00000000e+00
- 2 21 77 77 -0.32917672e+00 0.56545174e-01 -0.13424595e+02 0.00000000e+00
- 2 21 77 77 0.16335533e+01 0.25328017e+00 -0.17477280e+02 0.00000000e+00
- 2 21 77 77 -0.60941334e+00 0.16697005e+01 -0.12837417e+02 0.00000000e+00
- 2 21 77 77 -0.10692505e+00 0.39491669e+00 -0.16802696e+01 0.00000000e+00
- 2 21 77 77 -0.14546540e+02 0.10505763e+02 -0.63473882e+02 0.00000000e+00
- 2 21 77 77 0.32917672e+00 -0.56545174e-01 -0.45605881e+00 0.00000000e+00
- 2 21 77 77 -0.12938856e+00 0.69333253e+00 -0.12865321e+01 0.00000000e+00
- 2 21 77 77 0.38304583e+01 0.61077100e+00 -0.61564419e+02 0.00000000e+00
- 2 21 77 77 0.28184911e+01 -0.13441310e+00 -0.29874474e+02 0.00000000e+00
- 2 21 77 77 -0.31719170e+01 -0.78256825e+00 -0.75163286e+02 0.00000000e+00
- 2 21 77 77 0.33807708e+00 0.55909802e+00 -0.42503641e+02 0.00000000e+00
- 2 21 77 77 -0.35462117e+00 0.21318343e+00 -0.42484317e+02 0.00000000e+00
- 2 21 77 77 0.84963896e-01 -0.81344653e+00 -0.30091724e+02 0.00000000e+00
- 2 21 77 77 0.69715816e+00 -0.85174590e+00 -0.72419801e+02 0.00000000e+00
- 2 21 77 77 0.30450034e+00 0.80200813e+00 -0.27992605e+02 0.00000000e+00
- 2 21 77 77 -0.83455956e+00 -0.42494307e+00 -0.71965027e+02 0.00000000e+00
- 2 21 77 77 0.94635800e+00 -0.88371696e+00 -0.19321620e+03 0.00000000e+00
- 2 2203 77 77 0.41980287e-01 0.21841068e+01 -0.54942045e+04 0.77133000e+00
- 2 -4 150 150 -0.11722493e+02 -0.20266146e+02 0.37624159e+03 0.15000000e+01
- 2 21 150 150 -0.22774859e+01 -0.32835992e+01 0.45814225e+02 0.00000000e+00
- 2 21 150 150 -0.16284334e+01 0.40229828e+00 0.10015049e+02 0.00000000e+00
- 2 21 150 150 -0.81975303e+00 0.45958439e-01 0.11346206e+02 0.00000000e+00
- 2 21 150 150 -0.18558054e+02 0.12688700e+01 0.80085939e+02 0.00000000e+00
- 2 21 150 150 -0.57102679e+01 0.45272443e+00 0.26576783e+02 0.00000000e+00
- 2 21 150 150 -0.15871090e+02 -0.17579475e+01 0.91239285e+02 0.00000000e+00
- 2 1 150 150 -0.23089710e+00 0.11606797e+01 0.11108777e+04 0.33000000e+00
- 2 2203 173 173 0.27769030e+00 0.10212965e+00 0.46618175e+04 0.77133000e+00
- 2 21 173 173 -0.62026103e+00 0.60599370e+00 0.23271306e+02 0.00000000e+00
- 2 21 173 173 -0.34823800e+00 -0.42047866e-01 0.92650996e+02 0.00000000e+00
- 2 21 173 173 0.75772401e+01 0.49904016e+01 0.11359011e+01 0.00000000e+00
- 2 21 173 173 -0.24537068e+00 -0.27962864e+00 -0.11860058e+01 0.00000000e+00
- 2 21 173 173 -0.20705248e-01 -0.59943264e+00 -0.16527903e+01 0.00000000e+00
- 2 21 173 173 -0.55303915e+00 -0.94352153e+01 -0.13129590e+02 0.00000000e+00
- 2 21 173 173 -0.44769983e+00 -0.17882624e+01 -0.37088970e+01 0.00000000e+00
- 2 21 173 173 -0.21116389e+01 -0.54613627e-01 -0.25213081e+01 0.00000000e+00
- 2 21 173 173 -0.31021527e-01 -0.15819349e+00 -0.10625056e+01 0.00000000e+00
- 2 21 173 173 -0.24303606e+01 -0.16874035e+01 -0.74048376e+01 0.00000000e+00
- 2 21 173 173 -0.15710816e+02 -0.41909254e+01 -0.28840867e+02 0.00000000e+00
- 2 21 173 173 -0.19217454e+02 -0.57591286e+01 -0.37875402e+02 0.00000000e+00
- 2 21 173 173 -0.87706141e+00 -0.68283286e+00 -0.38850856e+01 0.00000000e+00
- 2 21 173 173 -0.64183780e+01 -0.86557266e+01 -0.22971192e+02 0.00000000e+00
- 2 21 173 173 -0.31319273e+00 -0.22731803e+00 -0.16556755e+01 0.00000000e+00
- 2 21 173 173 -0.84129987e-01 -0.52218078e+00 -0.20743134e+01 0.00000000e+00
- 2 21 173 173 -0.19680174e+01 -0.31673504e+01 -0.91126022e+01 0.00000000e+00
- 2 21 173 173 -0.96888391e+01 -0.24360014e+02 -0.58729238e+02 0.00000000e+00
- 2 21 173 173 -0.15526061e+02 -0.40403441e+02 -0.93626397e+02 0.00000000e+00
- 2 21 173 173 -0.46928011e+01 -0.11189267e+02 -0.20380070e+02 0.00000000e+00
- 2 21 173 173 -0.62438066e+00 -0.23456306e+01 -0.52865723e+01 0.00000000e+00
- 2 21 173 173 0.67625136e+00 -0.49049872e+01 -0.26353992e+02 0.00000000e+00
- 2 1 173 173 -0.63174814e+00 0.23747219e+01 -0.14709090e+03 0.33000000e+00
- 2 92 78 149 0.11905832e+01 -0.65968232e+02 -0.60751338e+04 0.27251868e+04
- 2 431 221 223 0.18881419e+01 -0.25322421e+02 0.17566872e+02 0.19685000e+01
- 2 221 224 226 0.15097035e+01 -0.28733707e+02 0.19009182e+02 0.54745000e+00
- 2 -311 227 227 0.70004632e+00 -0.13783510e+01 0.19985252e+01 0.49767000e+00
- 2 221 228 229 -0.21526351e+00 -0.29438232e+01 0.19679583e+01 0.54745000e+00
- 2 221 230 232 0.37020896e+00 -0.14461906e+01 0.18412705e+01 0.54745000e+00
- 2 111 233 234 0.10589680e+00 -0.76255648e+00 0.13896253e+00 0.13498000e+00
- 2 223 235 237 -0.29864297e-01 -0.83724122e+00 0.13008103e+01 0.78232825e+00
- 2 113 238 239 0.32597744e+00 0.15639212e+01 0.25247869e+01 0.78399239e+00
- 2 -213 240 241 -0.90414397e-01 -0.29516646e+00 0.56901119e+01 0.78049475e+00
- 2 2224 242 243 0.19780759e+00 0.13780482e+01 0.87042079e+01 0.12177568e+01
- 2 -2224 244 245 0.20431514e+00 0.43801399e+00 0.34347761e+01 0.11103495e+01
- 2 111 246 247 0.40855067e-01 0.72106137e+00 0.26184493e+02 0.13498000e+00
- 2 223 248 250 0.46731271e+00 0.47722208e-01 0.10137902e+02 0.76638871e+00
- 2 2214 251 252 0.22778875e+00 -0.19262190e+00 0.10550709e+02 0.11878179e+01
- 2 -2114 253 254 0.16870688e+01 -0.46037153e+00 0.20829523e+02 0.12634678e+01
- 2 -213 255 256 0.16403316e+01 -0.69642353e+00 0.22828307e+02 0.86753399e+00
- 1 321 0 0 0.29520179e+01 -0.25472545e+01 0.28745740e+02 0.49360000e+00
- 2 331 257 259 0.49135870e+00 -0.78322567e+00 0.13152841e+02 0.95783307e+00
- 2 -311 260 260 0.24831712e+01 -0.19336021e+01 0.20534530e+02 0.49767000e+00
- 2 223 261 263 0.85264999e+00 -0.10708826e+01 0.11337828e+02 0.78818435e+00
- 2 223 264 266 0.10547929e+01 -0.12384653e+01 0.93874985e+01 0.77706525e+00
- 2 -213 267 268 0.58705476e+00 -0.26177620e+00 0.55003239e+01 0.75579483e+00
- 2 213 269 270 0.19814018e+01 -0.10569094e+01 0.17345338e+02 0.63250804e+00
- 2 223 271 273 -0.20997850e+00 -0.73975395e+00 0.35927181e+01 0.78235842e+00
- 1 -211 0 0 0.61968239e+00 -0.35138606e+00 0.27893983e+01 0.13957000e+00
- 2 113 274 275 -0.21518761e+00 -0.33422452e+00 0.18277616e+01 0.62943221e+00
- 1 211 0 0 -0.93688175e+00 -0.11821446e+01 0.32267728e+00 0.13957000e+00
- 1 -211 0 0 0.42513833e+00 0.48793316e+00 0.32133288e+00 0.13957000e+00
- 2 213 276 277 -0.79649071e+00 0.17002195e+00 0.27470022e+00 0.74950457e+00
- 2 113 278 279 -0.47256133e+00 -0.88347090e+00 -0.13399796e+01 0.81276242e+00
- 2 311 280 280 -0.57159404e+00 -0.44079582e+00 -0.33728813e+01 0.49767000e+00
- 2 -323 281 282 -0.25198499e+01 -0.13743373e+01 -0.90227930e+01 0.89116020e+00
- 2 213 283 284 -0.11870754e+01 -0.96691813e+00 -0.45461354e+01 0.85210085e+00
- 2 -213 285 286 -0.12741351e+01 -0.10337287e+01 -0.47971245e+01 0.82875079e+00
- 2 323 287 288 -0.87269551e+00 -0.65226355e+00 -0.64077401e+01 0.89219930e+00
- 2 -313 289 290 -0.51899415e+00 -0.80037971e+00 -0.58330393e+01 0.89613249e+00
- 2 223 291 293 -0.50684541e+00 -0.61281416e+00 -0.88779929e+01 0.78310698e+00
- 2 -213 294 295 0.79782775e-02 -0.65090957e+00 -0.14138712e+02 0.83653227e+00
- 2 323 296 297 -0.80254277e-01 -0.61014167e+00 -0.96682073e+01 0.79847071e+00
- 2 -311 298 298 -0.12593974e+00 -0.36917983e+00 -0.19877752e+01 0.49767000e+00
- 1 -211 0 0 0.15641302e+00 -0.14502891e+00 -0.65310372e+01 0.13957000e+00
- 2 2214 299 300 0.73714633e+00 -0.97202643e+00 -0.24647025e+02 0.13391202e+01
- 1 -211 0 0 0.29790564e-02 -0.52373160e+00 -0.10929233e+02 0.13957000e+00
- 2 -3112 301 302 -0.42413269e+00 0.99051102e+00 -0.14424793e+02 0.11974400e+01
- 2 -313 303 304 -0.54616822e-01 0.29635484e+00 -0.33658821e+01 0.86976801e+00
- 2 111 305 306 -0.11233343e+01 0.83404800e+00 -0.77471543e+01 0.13498000e+00
- 2 -213 307 308 -0.35824203e+00 0.11408670e+01 -0.53277288e+01 0.49801793e+00
- 2 221 309 311 -0.17671712e+01 0.11655722e+01 -0.87559441e+01 0.54745000e+00
- 2 213 312 313 -0.24837708e+01 0.21907257e+01 -0.10897837e+02 0.79327773e+00
- 1 -211 0 0 -0.44659473e+00 0.51080409e+00 -0.31278625e+01 0.13957000e+00
- 2 213 314 315 -0.16382397e+01 0.79418259e+00 -0.76415313e+01 0.74158935e+00
- 1 -211 0 0 -0.26030401e+00 0.17311419e+00 -0.22104573e+01 0.13957000e+00
- 1 211 0 0 -0.32641183e+01 0.24325745e+01 -0.15197129e+02 0.13957000e+00
- 2 313 316 317 -0.23546427e+01 0.21282839e+01 -0.89239689e+01 0.89061329e+00
- 2 -311 318 318 -0.30298114e+00 0.78896829e+00 -0.40653648e+01 0.49767000e+00
- 2 1114 319 320 0.17380702e+01 -0.37671131e-01 -0.22171018e+02 0.13018323e+01
- 2 -1114 321 322 0.11404432e+01 0.20898780e+00 -0.15573234e+02 0.11798912e+01
- 2 113 323 324 0.14042486e+00 -0.21969576e-01 -0.10225779e+02 0.77026735e+00
- 2 -213 325 326 0.30206140e+01 0.60912736e+00 -0.40816043e+02 0.77528239e+00
- 2 221 327 329 -0.88094281e+00 -0.16028423e+00 -0.23084369e+02 0.54745000e+00
- 2 113 330 331 -0.19376430e+00 -0.55790900e+00 -0.18596087e+02 0.71073255e+00
- 2 111 332 333 -0.59304841e+00 -0.79373474e-01 -0.28663156e+02 0.13498000e+00
- 2 221 334 336 -0.33055265e+00 0.10316679e+00 -0.10522223e+02 0.54745000e+00
- 2 223 337 339 -0.36316597e-01 -0.20080298e+00 -0.37058472e+02 0.77908453e+00
- 2 213 340 341 -0.68483072e+00 0.15708286e-02 -0.37698996e+02 0.98347793e+00
- 2 313 342 343 0.11664985e+01 -0.61586941e+00 -0.93460071e+02 0.90298251e+00
- 2 -323 344 345 -0.41373140e+00 -0.27422106e+00 -0.69525659e+02 0.96113169e+00
- 1 211 0 0 0.87551680e-01 0.14788829e+00 -0.28935606e+02 0.13957000e+00
- 2 -213 346 347 0.28257860e+00 -0.10970164e+01 -0.87977909e+02 0.71823651e+00
- 2 223 348 350 -0.13406892e+00 0.77742069e-01 -0.19712419e+03 0.75974715e+00
- 1 2212 0 0 0.12187440e+00 0.86972213e+00 -0.22885786e+04 0.93827000e+00
- 1 211 0 0 0.14471842e+00 0.14101764e+01 -0.31311782e+04 0.13957000e+00
- 2 92 151 172 -0.56818474e+02 -0.21977162e+02 0.17521967e+04 0.12062649e+03
- 2 -411 351 353 -0.97299345e+01 -0.17029856e+02 0.30966299e+03 0.18693000e+01
- 2 113 354 355 -0.27027448e+01 -0.39342471e+01 0.79260591e+02 0.81029441e+00
- 1 211 0 0 -0.48105327e+00 -0.73658858e+00 0.78079660e+01 0.13957000e+00
- 1 -211 0 0 -0.70073250e+00 -0.64163168e-01 0.99205702e+01 0.13957000e+00
- 2 -313 356 357 -0.12857691e+01 -0.88752003e+00 0.12837920e+02 0.87346727e+00
- 2 311 358 358 -0.76680853e+00 0.40382759e+00 0.95585570e+01 0.49767000e+00
- 2 221 359 361 -0.12379218e+01 -0.71718756e+00 0.93032680e+01 0.54745000e+00
- 2 223 362 364 -0.70797372e+00 -0.32912182e+00 0.75874065e+01 0.77742393e+00
- 2 213 365 366 -0.35740405e+01 -0.10596264e+00 0.16369595e+02 0.70649623e+00
- 2 -213 367 368 -0.91424001e+01 0.10097794e+01 0.44457740e+02 0.74096480e+00
- 1 211 0 0 -0.36075589e+01 0.31891640e+00 0.14337420e+02 0.13957000e+00
- 2 113 369 370 -0.54872530e+01 -0.23833366e+00 0.32182065e+02 0.65154459e+00
- 1 -211 0 0 -0.14659840e+01 -0.45436265e+00 0.70354233e+01 0.13957000e+00
- 2 223 371 373 -0.80179204e+01 0.78963340e+00 0.39340363e+02 0.77954308e+00
- 1 211 0 0 -0.32019167e+01 -0.82302203e+00 0.16538751e+02 0.13957000e+00
- 2 221 374 375 -0.15571660e+01 -0.26943912e+00 0.88573934e+01 0.54745000e+00
- 2 -213 376 377 -0.21276766e+01 -0.55251175e+00 0.16225318e+02 0.73128594e+00
- 2 223 378 380 -0.10414587e+01 0.84104859e+00 0.28767359e+02 0.82865416e+00
- 2 113 381 382 0.37226001e+00 -0.28996599e-01 0.31359228e+02 0.75011984e+00
- 2 213 383 384 -0.54686665e-01 -0.50483489e+00 0.25986263e+03 0.81450613e+00
- 2 -213 385 386 -0.92688832e-01 0.10028843e+01 0.21737700e+03 0.84936844e+00
- 2 331 387 388 -0.20704537e+00 0.33289561e+00 0.57354717e+03 0.95801332e+00
- 2 92 174 220 -0.74030032e+02 -0.11238035e+03 0.42903275e+04 0.31302100e+04
- 2 323 389 390 0.12150766e+00 -0.15796842e+00 0.21865699e+04 0.85168873e+00
- 2 3224 391 392 -0.12725554e-01 0.47992727e+00 0.21238059e+04 0.13851295e+01
- 2 223 393 395 0.28030857e+00 0.15934012e+00 0.27868546e+03 0.79090963e+00
- 2 -213 396 397 0.27816437e-01 0.67515494e-01 0.46707363e+02 0.71611148e+00
- 2 213 398 399 -0.73725630e+00 0.48311913e+00 0.53282025e+02 0.70277372e+00
- 2 331 400 402 -0.43858606e+00 -0.69763111e+00 0.39106038e+02 0.95803936e+00
- 2 221 403 405 0.62440396e+00 0.64666796e+00 0.13907203e+02 0.54745000e+00
- 2 223 406 408 -0.39035628e+00 -0.56582404e+00 0.25853445e+02 0.78994962e+00
- 2 -213 409 410 -0.37853667e+00 0.44292019e+00 0.66370831e+01 0.81801731e+00
- 2 113 411 412 0.44099245e+00 -0.78085493e-01 0.26327782e+01 0.74337408e+00
- 2 223 413 415 0.22095747e+01 0.11588782e+01 0.11688936e+00 0.78514756e+00
- 2 213 416 417 0.12667073e+01 0.12496420e+01 0.83039001e+00 0.78435729e+00
- 2 223 418 420 0.22676153e+00 -0.11209417e+00 -0.73979717e+00 0.78024453e+00
- 2 -213 421 422 0.19832932e+01 0.11877016e+01 0.63679604e+00 0.46706965e+00
- 2 223 423 424 0.86537212e+00 0.63495623e+00 0.11076942e-01 0.78639431e+00
- 2 -313 425 426 0.67481714e+00 0.98222400e-01 -0.72725505e+00 0.95035357e+00
- 2 323 427 428 -0.24923963e+00 -0.45707839e+01 -0.62898885e+01 0.90390865e+00
- 1 -211 0 0 -0.10230568e+00 -0.22572839e+00 -0.27816724e+00 0.13957000e+00
- 2 213 429 430 -0.37354279e+00 -0.37579962e+01 -0.67153037e+01 0.71876122e+00
- 2 221 431 432 -0.24239074e+00 -0.66286547e+00 -0.11372129e+01 0.54745000e+00
- 1 -211 0 0 -0.34692924e+00 -0.11290691e+00 -0.86436076e+00 0.13957000e+00
- 2 -313 433 434 -0.16265561e+00 -0.11666502e+01 -0.13043323e+01 0.88772439e+00
- 2 323 435 436 -0.11616771e+01 -0.12661056e+01 -0.49978919e+01 0.87864769e+00
- 2 -213 437 438 -0.52418144e+01 -0.80170178e+00 -0.93285644e+01 0.80059976e+00
- 2 213 439 440 -0.10855517e+02 -0.40321327e+01 -0.20864748e+02 0.67153814e+00
- 2 223 441 443 -0.49867216e+01 -0.17850494e+01 -0.11930083e+02 0.77922527e+00
- 1 -211 0 0 -0.14033357e+01 -0.60030914e+00 -0.28990488e+01 0.13957000e+00
- 1 211 0 0 -0.12376482e+02 -0.28469950e+01 -0.23700587e+02 0.13957000e+00
- 2 -213 444 445 -0.37154809e+01 -0.36955895e+01 -0.98563280e+01 0.68068224e+00
- 1 211 0 0 -0.30375818e+00 -0.51418240e+00 -0.22591095e+01 0.13957000e+00
- 2 -2224 446 447 -0.30967732e+01 -0.21427413e+01 -0.85225862e+01 0.12627363e+01
- 2 2214 448 449 -0.39053215e+01 -0.55963942e+01 -0.17032045e+02 0.13409068e+01
- 2 -313 450 451 -0.13858468e+02 -0.33576183e+02 -0.79570356e+02 0.88203735e+00
- 2 323 452 453 -0.11558301e+01 -0.30431505e+01 -0.71463443e+01 0.89329748e+00
- 2 -3222 454 455 -0.44625394e+01 -0.10459197e+02 -0.25045340e+02 0.11893700e+01
- 2 3212 456 457 -0.61894324e+01 -0.17310882e+02 -0.38132043e+02 0.11925500e+01
- 1 211 0 0 -0.20254922e+01 -0.41006752e+01 -0.94502611e+01 0.13957000e+00
- 2 -323 458 459 -0.25280723e+01 -0.62146335e+01 -0.15259759e+02 0.83360650e+00
- 2 -3122 460 461 -0.13218967e+01 -0.48260482e+01 -0.89642275e+01 0.11156800e+01
- 2 111 462 463 -0.27512362e+00 -0.84989249e+00 -0.13539140e+01 0.13498000e+00
- 2 2214 464 465 0.14560646e+00 -0.32637279e+01 -0.15435592e+02 0.13292060e+01
- 2 223 466 468 -0.37364471e+00 -0.13961707e+01 -0.83257973e+01 0.78126100e+00
- 1 -211 0 0 0.45859704e+00 0.27220766e+00 -0.19302921e+02 0.13957000e+00
- 1 -2112 0 0 -0.32013542e+00 0.29088346e+00 -0.15626965e+02 0.93957000e+00
- 1 2112 0 0 0.35630272e+00 -0.82902184e+00 -0.13322863e+02 0.93957000e+00
- 2 111 469 470 -0.23225131e+00 0.35014305e+00 -0.33119505e+02 0.13498000e+00
- 2 113 471 472 -0.48780195e+00 0.13568390e+01 -0.68951682e+02 0.70569092e+00
- 2 111 473 474 0.29238871e+00 -0.38095788e+01 0.23725876e+01 0.13498000e+00
- 1 321 0 0 0.11158747e+01 -0.92687799e+01 0.63094056e+01 0.49360000e+00
- 2 -313 475 476 0.47987851e+00 -0.12244062e+02 0.88848786e+01 0.88383389e+00
- 1 -211 0 0 0.22424871e+00 -0.46144328e+01 0.29777478e+01 0.13957000e+00
- 1 211 0 0 0.49523399e+00 -0.89858812e+01 0.60905049e+01 0.13957000e+00
- 2 111 477 478 0.79022078e+00 -0.15133393e+02 0.99409297e+01 0.13498000e+00
- 1 130 0 0 0.70004632e+00 -0.13783510e+01 0.19985252e+01 0.49767000e+00
- 1 22 0 0 0.92764659e-01 -0.16143259e+01 0.12738356e+01 0.00000000e+00
- 1 22 0 0 -0.30802817e+00 -0.13294973e+01 0.69412269e+00 0.00000000e+00
- 2 111 479 480 0.55682984e-01 -0.45139837e+00 0.48634017e+00 0.13498000e+00
- 2 111 481 482 0.32075787e+00 -0.63276176e+00 0.80753802e+00 0.13498000e+00
- 2 111 483 484 -0.62318850e-02 -0.36203043e+00 0.54739227e+00 0.13498000e+00
- 1 22 0 0 -0.26424507e-01 -0.21274749e+00 0.14770664e-01 0.00000000e+00
- 1 22 0 0 0.13232130e+00 -0.54980898e+00 0.12419186e+00 0.00000000e+00
- 1 -211 0 0 0.26412182e+00 -0.35834251e+00 0.54941794e+00 0.13957000e+00
- 1 211 0 0 -0.21976643e+00 -0.15265549e+00 0.23223663e+00 0.13957000e+00
- 2 111 485 486 -0.74219687e-01 -0.32624321e+00 0.51915568e+00 0.13498000e+00
- 1 211 0 0 0.37504227e+00 0.79906413e+00 0.81284291e+00 0.13957000e+00
- 1 -211 0 0 -0.49064833e-01 0.76485711e+00 0.17119440e+01 0.13957000e+00
- 1 -211 0 0 -0.86626594e-01 0.16119178e+00 0.36310160e+01 0.13957000e+00
- 2 111 487 488 -0.37878036e-02 -0.45635824e+00 0.20590959e+01 0.13498000e+00
- 1 2212 0 0 0.75784423e-01 0.12156990e+01 0.64409373e+01 0.93827000e+00
- 1 211 0 0 0.12202317e+00 0.16234923e+00 0.22632706e+01 0.13957000e+00
- 1 -2212 0 0 0.26558930e+00 0.39434188e+00 0.30213040e+01 0.93827000e+00
- 1 -211 0 0 -0.61274161e-01 0.43672104e-01 0.41347211e+00 0.13957000e+00
- 1 22 0 0 -0.23072629e-01 0.26514772e+00 0.77880506e+01 0.00000000e+00
- 1 22 0 0 0.63927696e-01 0.45591365e+00 0.18396442e+02 0.00000000e+00
- 1 -211 0 0 0.40425620e+00 -0.19609521e+00 0.58522985e+01 0.13957000e+00
- 1 211 0 0 0.12185909e+00 0.17945081e+00 0.29514518e+01 0.13957000e+00
- 2 111 489 490 -0.58802574e-01 0.64366613e-01 0.13341519e+01 0.13498000e+00
- 1 2212 0 0 0.91273697e-01 -0.14118890e+00 0.69118640e+01 0.93827000e+00
- 2 111 491 492 0.13651505e+00 -0.51433002e-01 0.36388447e+01 0.13498000e+00
- 1 -2212 0 0 0.10529981e+01 -0.33999705e+00 0.16156972e+02 0.93827000e+00
- 1 211 0 0 0.63407070e+00 -0.12037448e+00 0.46725506e+01 0.13957000e+00
- 1 -211 0 0 0.14119169e+01 -0.82230640e+00 0.17129226e+02 0.13957000e+00
- 2 111 493 494 0.22841470e+00 0.12588287e+00 0.56990807e+01 0.13498000e+00
- 2 111 495 496 0.21176880e+00 -0.16468819e+00 0.20738100e+01 0.13498000e+00
- 2 111 497 498 0.14486109e+00 -0.99907752e-01 0.17133337e+01 0.13498000e+00
- 2 221 499 501 0.13472881e+00 -0.51862973e+00 0.93656971e+01 0.54745000e+00
- 2 310 502 503 0.24831712e+01 -0.19336021e+01 0.20534530e+02 0.49767000e+00
- 1 211 0 0 -0.35874169e-02 -0.17558558e+00 0.26826683e+01 0.13957000e+00
- 1 -211 0 0 0.43168861e+00 -0.23339773e+00 0.28106770e+01 0.13957000e+00
- 2 111 504 505 0.42454880e+00 -0.66189931e+00 0.58444831e+01 0.13498000e+00
- 1 211 0 0 0.74554243e+00 -0.53991515e+00 0.55902971e+01 0.13957000e+00
- 1 -211 0 0 0.11617431e+00 -0.33938270e+00 0.23786838e+01 0.13957000e+00
- 2 111 506 507 0.19307619e+00 -0.35916741e+00 0.14185176e+01 0.13498000e+00
- 1 -211 0 0 0.11689672e-03 -0.17658607e+00 0.32570382e+01 0.13957000e+00
- 2 111 508 509 0.58693786e+00 -0.85190137e-01 0.22432857e+01 0.13498000e+00
- 1 211 0 0 0.17490545e+01 -0.10121025e+01 0.14095200e+02 0.13957000e+00
- 2 111 510 511 0.23234736e+00 -0.44806938e-01 0.32501377e+01 0.13498000e+00
- 1 -211 0 0 -0.35694628e+00 -0.45346370e+00 0.21099227e+01 0.13957000e+00
- 1 211 0 0 0.10132837e+00 -0.23955266e+00 0.12726418e+01 0.13957000e+00
- 2 111 512 513 0.45639411e-01 -0.46737584e-01 0.21015363e+00 0.13498000e+00
- 1 211 0 0 -0.40796374e-02 -0.15209083e+00 0.15251088e+01 0.13957000e+00
- 1 -211 0 0 -0.21110797e+00 -0.18213369e+00 0.30265282e+00 0.13957000e+00
- 1 211 0 0 -0.74182220e+00 0.38466390e+00 0.20014718e+00 0.13957000e+00
- 2 111 514 515 -0.54668517e-01 -0.21464195e+00 0.74553036e-01 0.13498000e+00
- 1 -211 0 0 -0.55617734e+00 -0.61445265e+00 -0.53598042e+00 0.13957000e+00
- 1 211 0 0 0.83616010e-01 -0.26901824e+00 -0.80399914e+00 0.13957000e+00
- 2 310 516 517 -0.57159404e+00 -0.44079582e+00 -0.33728813e+01 0.49767000e+00
- 2 -311 518 518 -0.10345456e+01 -0.43454085e+00 -0.41739599e+01 0.49767000e+00
- 1 -211 0 0 -0.14853043e+01 -0.93979643e+00 -0.48488331e+01 0.13957000e+00
- 1 211 0 0 -0.48162262e+00 -0.74724289e+00 -0.32679037e+01 0.13957000e+00
- 2 111 519 520 -0.70545275e+00 -0.21967524e+00 -0.12782317e+01 0.13498000e+00
- 1 -211 0 0 -0.67613267e+00 -0.84742013e+00 -0.37822845e+01 0.13957000e+00
- 2 111 521 522 -0.59800247e+00 -0.18630852e+00 -0.10148400e+01 0.13498000e+00
- 1 321 0 0 -0.19022470e+00 -0.18462006e+00 -0.21994110e+01 0.49360000e+00
- 2 111 523 524 -0.68247081e+00 -0.46764348e+00 -0.42083290e+01 0.13498000e+00
- 2 -311 525 525 -0.48564755e+00 -0.30601449e+00 -0.27705361e+01 0.49767000e+00
- 2 111 526 527 -0.33346606e-01 -0.49436522e+00 -0.30625033e+01 0.13498000e+00
- 1 -211 0 0 -0.13210857e+00 -0.25668822e+00 -0.58475445e+01 0.13957000e+00
- 1 211 0 0 -0.20158947e+00 -0.86258995e-01 -0.11290899e+01 0.13957000e+00
- 2 111 528 529 -0.17314736e+00 -0.26986695e+00 -0.19013584e+01 0.13498000e+00
- 1 -211 0 0 0.27916817e+00 0.10509351e-01 -0.30859384e+01 0.13957000e+00
- 2 111 530 531 -0.27118989e+00 -0.66141892e+00 -0.11052773e+02 0.13498000e+00
- 1 321 0 0 -0.11566511e+00 -0.56010915e+00 -0.57252273e+01 0.49360000e+00
- 2 111 532 533 0.35410829e-01 -0.50032525e-01 -0.39429799e+01 0.13498000e+00
- 1 130 0 0 -0.12593974e+00 -0.36917983e+00 -0.19877752e+01 0.49767000e+00
- 1 2112 0 0 0.79498071e+00 -0.81075166e+00 -0.17145947e+02 0.93957000e+00
- 1 211 0 0 -0.57834380e-01 -0.16127476e+00 -0.75010781e+01 0.13957000e+00
- 1 -2112 0 0 -0.34187803e+00 0.55163827e+00 -0.10474273e+02 0.93957000e+00
- 1 211 0 0 -0.82254656e-01 0.43887276e+00 -0.39505203e+01 0.13957000e+00
- 2 -311 534 534 -0.29280221e+00 0.10668974e+00 -0.21084435e+01 0.49767000e+00
- 2 111 535 536 0.23818539e+00 0.18966511e+00 -0.12574385e+01 0.13498000e+00
- 1 22 0 0 -0.36083826e+00 0.28997716e+00 -0.22316785e+01 0.00000000e+00
- 1 22 0 0 -0.76249602e+00 0.54407084e+00 -0.55154758e+01 0.00000000e+00
- 1 -211 0 0 -0.13288721e+00 0.40483469e+00 -0.28450817e+01 0.13957000e+00
- 2 111 537 538 -0.22535482e+00 0.73603228e+00 -0.24826471e+01 0.13498000e+00
- 1 -211 0 0 -0.81098341e+00 0.47652865e+00 -0.42166550e+01 0.13957000e+00
- 1 211 0 0 -0.59667034e+00 0.47360960e+00 -0.32039964e+01 0.13957000e+00
- 2 111 539 540 -0.35951742e+00 0.21543390e+00 -0.13352927e+01 0.13498000e+00
- 1 211 0 0 -0.64711259e+00 0.43858507e+00 -0.36940666e+01 0.13957000e+00
- 2 111 541 542 -0.18366582e+01 0.17521407e+01 -0.72037702e+01 0.13498000e+00
- 1 211 0 0 -0.14759182e+01 0.89210936e+00 -0.68656548e+01 0.13957000e+00
- 2 111 543 544 -0.16232153e+00 -0.97926771e-01 -0.77587643e+00 0.13498000e+00
- 2 311 545 545 -0.17801294e+01 0.15778718e+01 -0.58381316e+01 0.49767000e+00
- 2 111 546 547 -0.57451331e+00 0.55041207e+00 -0.30858374e+01 0.13498000e+00
- 2 310 548 549 -0.30298114e+00 0.78896829e+00 -0.40653648e+01 0.49767000e+00
- 1 2112 0 0 0.15358964e+01 0.22084785e+00 -0.18237756e+02 0.93957000e+00
- 1 -211 0 0 0.20217381e+00 -0.25851898e+00 -0.39332614e+01 0.13957000e+00
- 1 -2112 0 0 0.84060999e+00 0.32174389e+00 -0.12682784e+02 0.93957000e+00
- 1 211 0 0 0.29983319e+00 -0.11275608e+00 -0.28904503e+01 0.13957000e+00
- 1 211 0 0 -0.26035384e+00 0.14232044e+00 -0.44216070e+01 0.13957000e+00
- 1 -211 0 0 0.40077870e+00 -0.16429001e+00 -0.58041719e+01 0.13957000e+00
- 1 -211 0 0 0.13762350e+01 0.16712288e+00 -0.22863550e+02 0.13957000e+00
- 2 111 550 551 0.16443790e+01 0.44200448e+00 -0.17952493e+02 0.13498000e+00
- 1 -211 0 0 -0.32409572e+00 0.11114631e-01 -0.67416970e+01 0.13957000e+00
- 1 211 0 0 -0.14380066e+00 -0.38730547e-01 -0.30361480e+01 0.13957000e+00
- 2 111 552 553 -0.41304643e+00 -0.13266832e+00 -0.13306524e+02 0.13498000e+00
- 1 211 0 0 -0.41599061e+00 -0.20604605e+00 -0.10031794e+02 0.13957000e+00
- 1 -211 0 0 0.22222631e+00 -0.35186294e+00 -0.85642927e+01 0.13957000e+00
- 1 22 0 0 -0.56379126e+00 -0.10045646e+00 -0.27627160e+02 0.00000000e+00
- 1 22 0 0 -0.29257143e-01 0.21082983e-01 -0.10359953e+01 0.00000000e+00
- 1 -211 0 0 -0.37634929e-01 0.12545533e+00 -0.52707892e+01 0.13957000e+00
- 1 211 0 0 -0.16254296e+00 -0.45464840e-02 -0.21276899e+01 0.13957000e+00
- 2 111 554 555 -0.13037476e+00 -0.17742052e-01 -0.31237442e+01 0.13498000e+00
- 1 -211 0 0 0.40386184e-01 -0.40258938e-01 -0.97370764e+01 0.13957000e+00
- 1 211 0 0 -0.76586533e-01 -0.17364845e+00 -0.25912565e+02 0.13957000e+00
- 2 111 556 557 -0.11624757e-03 0.13104407e-01 -0.14088307e+01 0.13498000e+00
- 1 211 0 0 -0.83083712e+00 -0.24510208e+00 -0.29026980e+02 0.13957000e+00
- 2 111 558 559 0.14600640e+00 0.24667291e+00 -0.86720163e+01 0.13498000e+00
- 1 321 0 0 0.80986090e+00 -0.34153375e+00 -0.77948764e+02 0.49360000e+00
- 1 -211 0 0 0.35663756e+00 -0.27433566e+00 -0.15511307e+02 0.13957000e+00
- 2 -311 560 560 -0.41434187e+00 -0.41379997e+00 -0.64444750e+02 0.49767000e+00
- 1 -211 0 0 0.61047031e-03 0.13957891e+00 -0.50809096e+01 0.13957000e+00
- 1 -211 0 0 0.28759215e+00 -0.91566901e+00 -0.49161795e+02 0.13957000e+00
- 2 111 561 562 -0.50135514e-02 -0.18134735e+00 -0.38816114e+02 0.13498000e+00
- 1 -211 0 0 0.10312884e+00 -0.16624004e-01 -0.99931344e+02 0.13957000e+00
- 1 211 0 0 0.14894117e-01 0.40636753e-01 -0.12202534e+02 0.13957000e+00
- 2 111 563 564 -0.25209187e+00 0.53729321e-01 -0.84990314e+02 0.13498000e+00
- 1 11 0 0 -0.27001212e+01 -0.57422839e+01 0.94223686e+02 0.51000000e-03
- 1 -12 0 0 -0.45803894e+01 -0.76275418e+01 0.13931104e+03 0.00000000e+00
- 2 311 565 565 -0.24494239e+01 -0.36600298e+01 0.76128265e+02 0.49767000e+00
- 1 -211 0 0 -0.83445291e+00 -0.99540672e+00 0.27053995e+02 0.13957000e+00
- 1 211 0 0 -0.18682919e+01 -0.29388403e+01 0.52206596e+02 0.13957000e+00
- 1 -321 0 0 -0.80302732e+00 -0.72396558e+00 0.69875458e+01 0.49360000e+00
- 1 211 0 0 -0.48274178e+00 -0.16355445e+00 0.58503745e+01 0.13957000e+00
- 1 130 0 0 -0.76680853e+00 0.40382759e+00 0.95585570e+01 0.49767000e+00
- 1 -211 0 0 -0.12141399e+00 -0.72787512e-01 0.91545734e+00 0.13957000e+00
- 1 211 0 0 -0.60591490e+00 -0.27517911e+00 0.43734474e+01 0.13957000e+00
- 2 111 566 567 -0.51059286e+00 -0.36922093e+00 0.40143633e+01 0.13498000e+00
- 1 211 0 0 -0.38638352e+00 -0.15602311e+00 0.16662810e+01 0.13957000e+00
- 1 -211 0 0 -0.30824721e+00 -0.83572268e-01 0.35609576e+01 0.13957000e+00
- 2 111 568 569 -0.13342982e-01 -0.89526445e-01 0.23601679e+01 0.13498000e+00
- 1 211 0 0 -0.15662202e+01 0.20691222e+00 0.80967837e+01 0.13957000e+00
- 2 111 570 571 -0.20078203e+01 -0.31287486e+00 0.82728110e+01 0.13498000e+00
- 1 -211 0 0 -0.40643526e+00 0.72261933e-01 0.18082423e+01 0.13957000e+00
- 2 111 572 573 -0.87359649e+01 0.93751745e+00 0.42649498e+02 0.13498000e+00
- 1 211 0 0 -0.49943960e+01 -0.32686953e+00 0.28769469e+02 0.13957000e+00
- 1 -211 0 0 -0.49285692e+00 0.88535874e-01 0.34125962e+01 0.13957000e+00
- 1 -211 0 0 -0.33173072e+01 0.49601713e+00 0.17194153e+02 0.13957000e+00
- 1 211 0 0 -0.40330164e+01 0.31249048e+00 0.19097697e+02 0.13957000e+00
- 2 111 574 575 -0.66759681e+00 -0.18874207e-01 0.30485139e+01 0.13498000e+00
- 1 22 0 0 -0.78768590e+00 0.13989037e+00 0.43829999e+01 0.00000000e+00
- 1 22 0 0 -0.76948008e+00 -0.40932949e+00 0.44743935e+01 0.00000000e+00
- 1 -211 0 0 -0.17028278e+01 -0.56746936e+00 0.14337208e+02 0.13957000e+00
- 2 111 576 577 -0.42484873e+00 0.14957612e-01 0.18881097e+01 0.13498000e+00
- 1 211 0 0 -0.13195042e+00 0.25123847e+00 0.69340007e+01 0.13957000e+00
- 1 -211 0 0 -0.76145524e+00 0.39733687e+00 0.19492465e+02 0.13957000e+00
- 2 111 578 579 -0.14805304e+00 0.19247325e+00 0.23408933e+01 0.13498000e+00
- 1 -211 0 0 0.31907703e+00 -0.30353096e+00 0.24153848e+02 0.13957000e+00
- 1 211 0 0 0.53182984e-01 0.27453436e+00 0.72053801e+01 0.13957000e+00
- 1 211 0 0 0.10580917e+00 -0.66936603e+00 0.19366506e+03 0.13957000e+00
- 2 111 580 581 -0.16049583e+00 0.16453114e+00 0.66197572e+02 0.13498000e+00
- 1 -211 0 0 0.26940124e+00 0.11737261e+00 0.38085817e+02 0.13957000e+00
- 2 111 582 583 -0.36209008e+00 0.88551166e+00 0.17929118e+03 0.13498000e+00
- 1 22 0 0 -0.86819765e-01 -0.16913068e-01 0.54417199e+02 0.00000000e+00
- 2 113 584 585 -0.12022560e+00 0.34980868e+00 0.51912997e+03 0.87083850e+00
- 2 311 586 586 0.12135441e+00 -0.18794309e+00 0.20882835e+04 0.49767000e+00
- 1 211 0 0 0.15325018e-03 0.29974673e-01 0.98286337e+02 0.13957000e+00
- 2 3122 587 588 0.41815178e-01 0.40625165e+00 0.14548608e+04 0.11156800e+01
- 1 211 0 0 -0.54540731e-01 0.73675616e-01 0.66894509e+03 0.13957000e+00
- 1 -211 0 0 0.58367095e-01 -0.84538973e-01 0.75590638e+02 0.13957000e+00
- 1 211 0 0 0.26522627e+00 0.17876470e+00 0.18760828e+03 0.13957000e+00
- 2 111 589 590 -0.43284795e-01 0.65114400e-01 0.15486537e+02 0.13498000e+00
- 1 -211 0 0 0.14979753e+00 0.14984241e+00 0.63682084e+01 0.13957000e+00
- 2 111 591 592 -0.12198109e+00 -0.82326916e-01 0.40339155e+02 0.13498000e+00
- 1 211 0 0 -0.38180737e+00 -0.10139313e+00 0.16521336e+02 0.13957000e+00
- 2 111 593 594 -0.35544893e+00 0.58451226e+00 0.36760690e+02 0.13498000e+00
- 1 211 0 0 0.12277002e-02 -0.46732989e-01 0.25803924e+01 0.13957000e+00
- 1 -211 0 0 -0.24829981e+00 -0.19632738e+00 0.99920511e+01 0.13957000e+00
- 2 221 595 596 -0.19151395e+00 -0.45457074e+00 0.26533594e+02 0.54745000e+00
- 2 111 597 598 0.26489145e+00 0.43135848e+00 0.61431999e+01 0.13498000e+00
- 2 111 599 600 0.25412294e+00 0.19492378e+00 0.49396906e+01 0.13498000e+00
- 2 111 601 602 0.10538958e+00 0.20385696e-01 0.28243128e+01 0.13498000e+00
- 1 -211 0 0 -0.21938602e+00 -0.12568598e+00 0.34229376e+01 0.13957000e+00
- 1 211 0 0 -0.19392631e+00 -0.16161046e+00 0.70391803e+01 0.13957000e+00
- 2 111 603 604 0.22956051e-01 -0.27852760e+00 0.15391327e+02 0.13498000e+00
- 1 -211 0 0 -0.58979831e+00 0.20636004e+00 0.49030775e+01 0.13957000e+00
- 2 111 605 606 0.21126164e+00 0.23656015e+00 0.17340056e+01 0.13498000e+00
- 1 -211 0 0 -0.13774733e+00 -0.17536960e+00 0.72507273e+00 0.13957000e+00
- 1 211 0 0 0.57873978e+00 0.97284106e-01 0.19077055e+01 0.13957000e+00
- 1 -211 0 0 0.26832779e+00 0.11319400e+00 0.13682209e+00 0.13957000e+00
- 1 211 0 0 0.67095325e+00 0.42910988e+00 -0.21258893e+00 0.13957000e+00
- 2 111 607 608 0.12702936e+01 0.61657428e+00 0.19265619e+00 0.13498000e+00
- 1 211 0 0 0.12887056e+01 0.93374906e+00 0.63897391e+00 0.13957000e+00
- 2 111 609 610 -0.21998268e-01 0.31589291e+00 0.19141610e+00 0.13498000e+00
- 1 -211 0 0 0.14345314e+00 -0.10862615e+00 -0.47946190e+00 0.13957000e+00
- 1 211 0 0 0.19510809e+00 0.12437541e+00 -0.56422537e-01 0.13957000e+00
- 2 111 611 612 -0.11179970e+00 -0.12784343e+00 -0.20391274e+00 0.13498000e+00
- 1 -211 0 0 0.15940159e+01 0.10820886e+01 0.48865746e+00 0.13957000e+00
- 2 111 613 614 0.38927722e+00 0.10561299e+00 0.14813858e+00 0.13498000e+00
- 1 22 0 0 0.86274906e+00 0.64971954e+00 0.19956033e+00 0.00000000e+00
- 2 111 615 616 0.26230627e-02 -0.14763317e-01 -0.18848339e+00 0.13498000e+00
- 1 -321 0 0 0.51377275e+00 -0.22225778e-02 -0.11545872e+00 0.49360000e+00
- 1 211 0 0 0.16104439e+00 0.10044498e+00 -0.61179634e+00 0.13957000e+00
- 2 311 617 617 -0.16258644e+00 -0.37367682e+01 -0.55089906e+01 0.49767000e+00
- 1 211 0 0 -0.86653186e-01 -0.83401572e+00 -0.78089788e+00 0.13957000e+00
- 1 211 0 0 -0.82754854e-01 -0.19248809e+01 -0.40506612e+01 0.13957000e+00
- 2 111 618 619 -0.29078794e+00 -0.18331153e+01 -0.26646426e+01 0.13498000e+00
- 1 22 0 0 -0.27337851e+00 -0.65431001e-01 -0.25114585e+00 0.00000000e+00
- 1 22 0 0 0.30987768e-01 -0.59743446e+00 -0.88606704e+00 0.00000000e+00
- 1 -321 0 0 0.16987365e-01 -0.11268757e+01 -0.11883726e+01 0.49360000e+00
- 1 211 0 0 -0.17964298e+00 -0.39774480e-01 -0.11595975e+00 0.13957000e+00
- 1 321 0 0 -0.11285277e+01 -0.11635326e+01 -0.48219658e+01 0.49360000e+00
- 2 111 620 621 -0.33149431e-01 -0.10257297e+00 -0.17592614e+00 0.13498000e+00
- 1 -211 0 0 -0.10592374e+01 -0.19950950e+00 -0.25399505e+01 0.13957000e+00
- 2 111 622 623 -0.41825770e+01 -0.60219228e+00 -0.67886139e+01 0.13498000e+00
- 1 211 0 0 -0.11510562e+01 -0.52996517e+00 -0.25603640e+01 0.13957000e+00
- 2 111 624 625 -0.97044604e+01 -0.35021675e+01 -0.18304384e+02 0.13498000e+00
- 1 211 0 0 -0.16950770e+01 -0.61017142e+00 -0.46214419e+01 0.13957000e+00
- 1 -211 0 0 -0.83608414e+00 -0.41769212e+00 -0.17531346e+01 0.13957000e+00
- 2 111 626 627 -0.24555605e+01 -0.75718588e+00 -0.55555063e+01 0.13498000e+00
- 1 -211 0 0 -0.16655804e+01 -0.19762162e+01 -0.52958501e+01 0.13957000e+00
- 2 111 628 629 -0.20499005e+01 -0.17193733e+01 -0.45604779e+01 0.13498000e+00
- 1 -2212 0 0 -0.29454114e+01 -0.19159101e+01 -0.75011381e+01 0.93827000e+00
- 1 -211 0 0 -0.15136178e+00 -0.22683124e+00 -0.10214481e+01 0.13957000e+00
- 1 2212 0 0 -0.33899301e+01 -0.43895059e+01 -0.13381071e+02 0.93827000e+00
- 2 111 630 631 -0.51539141e+00 -0.12068883e+01 -0.36509741e+01 0.13498000e+00
- 1 -321 0 0 -0.99458104e+01 -0.24485578e+02 -0.58436029e+02 0.49360000e+00
- 1 211 0 0 -0.39126578e+01 -0.90906049e+01 -0.21134327e+02 0.13957000e+00
- 2 311 632 632 -0.56305481e+00 -0.17768494e+01 -0.35127141e+01 0.49767000e+00
- 1 211 0 0 -0.59277533e+00 -0.12663011e+01 -0.36336302e+01 0.13957000e+00
- 1 -2112 0 0 -0.40037606e+01 -0.90410006e+01 -0.21513610e+02 0.93957000e+00
- 1 -211 0 0 -0.45877880e+00 -0.14181968e+01 -0.35317298e+01 0.13957000e+00
- 2 3122 633 634 -0.59389950e+01 -0.16443692e+02 -0.36367376e+02 0.11156800e+01
- 1 22 0 0 -0.25043740e+00 -0.86719016e+00 -0.17646669e+01 0.00000000e+00
- 2 -311 635 635 -0.12454573e+01 -0.36019495e+01 -0.89374716e+01 0.49767000e+00
- 1 -211 0 0 -0.12826150e+01 -0.26126840e+01 -0.63222869e+01 0.13957000e+00
- 1 -2212 0 0 -0.11050059e+01 -0.43302421e+01 -0.80591776e+01 0.93827000e+00
- 1 211 0 0 -0.21689080e+00 -0.49580611e+00 -0.90504991e+00 0.13957000e+00
- 1 22 0 0 -0.27666229e+00 -0.69442064e+00 -0.11004795e+01 0.00000000e+00
- 1 22 0 0 0.15386722e-02 -0.15547185e+00 -0.25343448e+00 0.00000000e+00
- 1 2212 0 0 -0.13384904e+00 -0.20286674e+01 -0.10510257e+02 0.93827000e+00
- 2 111 636 637 0.27945550e+00 -0.12350605e+01 -0.49253342e+01 0.13498000e+00
- 1 -211 0 0 0.60329791e-01 -0.26473750e+00 -0.25469440e+01 0.13957000e+00
- 1 211 0 0 -0.54474529e-01 -0.47409360e+00 -0.17517587e+01 0.13957000e+00
- 2 111 638 639 -0.37949997e+00 -0.65733963e+00 -0.40270947e+01 0.13498000e+00
- 1 22 0 0 -0.16649764e+00 0.21167963e+00 -0.16124475e+02 0.00000000e+00
- 1 22 0 0 -0.65753671e-01 0.13846341e+00 -0.16995030e+02 0.00000000e+00
- 1 -211 0 0 -0.72285787e-01 0.10597653e+01 -0.43673633e+02 0.13957000e+00
- 1 211 0 0 -0.41551617e+00 0.29707370e+00 -0.25278049e+02 0.13957000e+00
- 1 22 0 0 0.11626187e+00 -0.12479073e+01 0.84928084e+00 0.00000000e+00
- 1 22 0 0 0.17612684e+00 -0.25616715e+01 0.15233067e+01 0.00000000e+00
- 1 -321 0 0 0.93796700e-01 -0.82605671e+01 0.61864418e+01 0.49360000e+00
- 1 211 0 0 0.38608181e+00 -0.39834948e+01 0.26984368e+01 0.13957000e+00
- 1 22 0 0 0.21362749e+00 -0.30958586e+01 0.20554055e+01 0.00000000e+00
- 1 22 0 0 0.57659329e+00 -0.12037535e+02 0.78855242e+01 0.00000000e+00
- 1 22 0 0 0.40290068e-01 -0.10275339e+00 0.19817270e+00 0.00000000e+00
- 1 22 0 0 0.15392916e-01 -0.34864498e+00 0.28816747e+00 0.00000000e+00
- 1 22 0 0 0.17246875e+00 -0.46606816e+00 0.51840742e+00 0.00000000e+00
- 1 22 0 0 0.14828912e+00 -0.16669360e+00 0.28913059e+00 0.00000000e+00
- 1 22 0 0 -0.45261008e-02 -0.33585202e+00 0.40925232e+00 0.00000000e+00
- 1 22 0 0 -0.17057842e-02 -0.26178416e-01 0.13813995e+00 0.00000000e+00
- 1 22 0 0 -0.15058627e-01 -0.27497576e+00 0.45089735e+00 0.00000000e+00
- 1 22 0 0 -0.59161060e-01 -0.51267450e-01 0.68258337e-01 0.00000000e+00
- 1 22 0 0 -0.62187647e-01 -0.17322942e+00 0.91476772e+00 0.00000000e+00
- 1 22 0 0 0.58399843e-01 -0.28312882e+00 0.11443281e+01 0.00000000e+00
- 1 22 0 0 -0.59456804e-01 0.50614815e-01 0.31447435e+00 0.00000000e+00
- 1 22 0 0 0.65423085e-03 0.13751798e-01 0.10196776e+01 0.00000000e+00
- 1 22 0 0 0.14444829e-01 0.45870694e-02 0.19603485e+01 0.00000000e+00
- 1 22 0 0 0.12207023e+00 -0.56020071e-01 0.16784962e+01 0.00000000e+00
- 1 22 0 0 0.17486314e+00 0.42305123e-01 0.27421160e+01 0.00000000e+00
- 1 22 0 0 0.53551555e-01 0.83577746e-01 0.29569646e+01 0.00000000e+00
- 1 22 0 0 0.24633055e-01 -0.84657119e-01 0.88003480e+00 0.00000000e+00
- 1 22 0 0 0.18713574e+00 -0.80031073e-01 0.11937752e+01 0.00000000e+00
- 1 22 0 0 0.16696926e-01 0.99207646e-02 0.70484221e+00 0.00000000e+00
- 1 22 0 0 0.12816416e+00 -0.10982852e+00 0.10084915e+01 0.00000000e+00
- 1 -211 0 0 0.17778040e+00 -0.33598286e+00 0.44710716e+01 0.13957000e+00
- 1 211 0 0 0.22721402e-01 -0.55319839e-01 0.26561388e+01 0.13957000e+00
- 2 111 640 641 -0.65772993e-01 -0.12732702e+00 0.22384867e+01 0.13498000e+00
- 2 111 642 643 0.35909713e+00 -0.22208217e+00 0.22983609e+01 0.13498000e+00
- 2 111 644 645 0.21240741e+01 -0.17115199e+01 0.18236169e+02 0.13498000e+00
- 1 22 0 0 0.44821972e-01 -0.12277242e+00 0.69783584e+00 0.00000000e+00
- 1 22 0 0 0.37972683e+00 -0.53912689e+00 0.51466472e+01 0.00000000e+00
- 1 22 0 0 0.57794596e-01 -0.16090611e+00 0.81276693e+00 0.00000000e+00
- 1 22 0 0 0.13528159e+00 -0.19826130e+00 0.60575072e+00 0.00000000e+00
- 1 22 0 0 0.32791702e+00 -0.10921922e-01 0.14438621e+01 0.00000000e+00
- 1 22 0 0 0.25902084e+00 -0.74268215e-01 0.79942361e+00 0.00000000e+00
- 1 22 0 0 0.22215681e+00 -0.77385062e-01 0.29751748e+01 0.00000000e+00
- 1 22 0 0 0.10190550e-01 0.32578124e-01 0.27496283e+00 0.00000000e+00
- 1 22 0 0 0.55420187e-01 -0.53632936e-01 0.38679958e-01 0.00000000e+00
- 1 22 0 0 -0.97807767e-02 0.68953520e-02 0.17147367e+00 0.00000000e+00
- 1 22 0 0 -0.13394911e-01 -0.51873426e-01 -0.39786502e-01 0.00000000e+00
- 1 22 0 0 -0.41273606e-01 -0.16276852e+00 0.11433954e+00 0.00000000e+00
- 1 -211 0 0 -0.41339152e+00 -0.38219763e+00 -0.29731329e+01 0.13957000e+00
- 1 211 0 0 -0.15820252e+00 -0.58598197e-01 -0.39974845e+00 0.13957000e+00
- 2 310 646 647 -0.10345456e+01 -0.43454085e+00 -0.41739599e+01 0.49767000e+00
- 1 22 0 0 -0.25885776e+00 -0.53694380e-01 -0.34386085e+00 0.00000000e+00
- 1 22 0 0 -0.44659499e+00 -0.16598086e+00 -0.93437086e+00 0.00000000e+00
- 1 22 0 0 -0.48313646e+00 -0.20407087e+00 -0.83543586e+00 0.00000000e+00
- 1 22 0 0 -0.11486602e+00 0.17762348e-01 -0.17940415e+00 0.00000000e+00
- 1 22 0 0 -0.37740007e-01 -0.46797954e-02 -0.33727617e+00 0.00000000e+00
- 1 22 0 0 -0.64473080e+00 -0.46296369e+00 -0.38710529e+01 0.00000000e+00
- 2 310 648 649 -0.48564755e+00 -0.30601449e+00 -0.27705361e+01 0.49767000e+00
- 1 22 0 0 -0.84348425e-01 -0.26401220e+00 -0.15889702e+01 0.00000000e+00
- 1 22 0 0 0.51001819e-01 -0.23035302e+00 -0.14735331e+01 0.00000000e+00
- 1 22 0 0 -0.73220945e-01 -0.72298963e-01 -0.97771147e+00 0.00000000e+00
- 1 22 0 0 -0.99926419e-01 -0.19756798e+00 -0.92364696e+00 0.00000000e+00
- 1 22 0 0 0.11682368e-01 -0.16363445e-01 -0.17865465e+00 0.00000000e+00
- 1 22 0 0 -0.28287226e+00 -0.64505548e+00 -0.10874119e+02 0.00000000e+00
- 1 22 0 0 -0.42272518e-01 -0.23935483e-01 -0.66944945e+00 0.00000000e+00
- 1 22 0 0 0.77683347e-01 -0.26097042e-01 -0.32735305e+01 0.00000000e+00
- 1 130 0 0 -0.29280221e+00 0.10668974e+00 -0.21084435e+01 0.49767000e+00
- 1 22 0 0 0.16597514e-01 0.54619505e-02 -0.31042192e+00 0.00000000e+00
- 1 22 0 0 0.22158788e+00 0.18420316e+00 -0.94701663e+00 0.00000000e+00
- 1 22 0 0 -0.86083229e-01 0.12305731e+00 -0.56997097e+00 0.00000000e+00
- 1 22 0 0 -0.13927159e+00 0.61297497e+00 -0.19126761e+01 0.00000000e+00
- 1 22 0 0 -0.83417962e-01 0.12405720e+00 -0.45417630e+00 0.00000000e+00
- 1 22 0 0 -0.27609945e+00 0.91376699e-01 -0.88111645e+00 0.00000000e+00
- 1 22 0 0 -0.13157931e+00 0.13143421e+00 -0.64163283e+00 0.00000000e+00
- 1 22 0 0 -0.17050789e+01 0.16207065e+01 -0.65621373e+01 0.00000000e+00
- 1 22 0 0 -0.15105246e+00 -0.12802926e+00 -0.61933774e+00 0.00000000e+00
- 1 22 0 0 -0.11269074e-01 0.30102488e-01 -0.15653870e+00 0.00000000e+00
- 2 310 650 651 -0.17801294e+01 0.15778718e+01 -0.58381316e+01 0.49767000e+00
- 1 22 0 0 -0.40578840e+00 0.36629219e+00 -0.23427199e+01 0.00000000e+00
- 1 22 0 0 -0.16872491e+00 0.18411989e+00 -0.74311741e+00 0.00000000e+00
- 1 211 0 0 -0.38714438e+00 0.50292529e+00 -0.28132782e+01 0.13957000e+00
- 1 -211 0 0 0.84163245e-01 0.28604300e+00 -0.12520866e+01 0.13957000e+00
- 1 22 0 0 0.10509616e+01 0.24464877e+00 -0.11923597e+02 0.00000000e+00
- 1 22 0 0 0.59341736e+00 0.19735571e+00 -0.60288966e+01 0.00000000e+00
- 1 22 0 0 -0.39986029e+00 -0.10521378e+00 -0.11371079e+02 0.00000000e+00
- 1 22 0 0 -0.13186145e-01 -0.27454537e-01 -0.19354456e+01 0.00000000e+00
- 1 22 0 0 -0.13548837e+00 0.28686536e-01 -0.25635964e+01 0.00000000e+00
- 1 22 0 0 0.51136095e-02 -0.46428588e-01 -0.56014782e+00 0.00000000e+00
- 1 22 0 0 -0.62730422e-01 0.29734860e-01 -0.62657116e+00 0.00000000e+00
- 1 22 0 0 0.62614175e-01 -0.16630453e-01 -0.78225953e+00 0.00000000e+00
- 1 22 0 0 0.65990586e-02 0.12253675e+00 -0.43978691e+01 0.00000000e+00
- 1 22 0 0 0.13940734e+00 0.12413616e+00 -0.42741472e+01 0.00000000e+00
- 2 310 652 653 -0.41434187e+00 -0.41379997e+00 -0.64444750e+02 0.49767000e+00
- 1 22 0 0 0.39173348e-01 -0.96721672e-01 -0.29159880e+02 0.00000000e+00
- 1 22 0 0 -0.44186900e-01 -0.84625673e-01 -0.96562333e+01 0.00000000e+00
- 1 22 0 0 -0.20837733e+00 0.68860878e-01 -0.51686881e+02 0.00000000e+00
- 1 22 0 0 -0.43714541e-01 -0.15131557e-01 -0.33303433e+02 0.00000000e+00
- 1 130 0 0 -0.24494239e+01 -0.36600298e+01 0.76128265e+02 0.49767000e+00
- 1 22 0 0 -0.38557569e+00 -0.20269954e+00 0.27941682e+01 0.00000000e+00
- 1 22 0 0 -0.12501717e+00 -0.16652140e+00 0.12201950e+01 0.00000000e+00
- 1 22 0 0 -0.62456161e-01 -0.83580251e-01 0.19167353e+01 0.00000000e+00
- 1 22 0 0 0.49113179e-01 -0.59461940e-02 0.44343262e+00 0.00000000e+00
- 1 22 0 0 -0.16999392e+01 -0.30214611e+00 0.68836083e+01 0.00000000e+00
- 1 22 0 0 -0.30788108e+00 -0.10728743e-01 0.13892027e+01 0.00000000e+00
- 1 22 0 0 -0.40110379e+01 0.47392451e+00 0.19860486e+02 0.00000000e+00
- 1 22 0 0 -0.47249269e+01 0.46359295e+00 0.22789012e+02 0.00000000e+00
- 1 22 0 0 -0.41259535e+00 -0.64470222e-01 0.16980246e+01 0.00000000e+00
- 1 22 0 0 -0.25500147e+00 0.45596015e-01 0.13504893e+01 0.00000000e+00
- 1 22 0 0 -0.52744140e-01 -0.44722524e-01 0.28718498e+00 0.00000000e+00
- 1 22 0 0 -0.37210459e+00 0.59680136e-01 0.16009247e+01 0.00000000e+00
- 1 22 0 0 0.24770490e-01 0.37671024e-01 0.44771494e+00 0.00000000e+00
- 1 22 0 0 -0.17282353e+00 0.15480223e+00 0.18931783e+01 0.00000000e+00
- 1 22 0 0 -0.15400096e+00 0.68315946e-01 0.38456974e+02 0.00000000e+00
- 1 22 0 0 -0.64948729e-02 0.96215191e-01 0.27740598e+02 0.00000000e+00
- 1 22 0 0 -0.26510135e+00 0.48839833e+00 0.10845113e+03 0.00000000e+00
- 1 22 0 0 -0.96988728e-01 0.39711333e+00 0.70840052e+02 0.00000000e+00
- 1 211 0 0 -0.26594840e+00 0.45022136e+00 0.18635923e+03 0.13957000e+00
- 1 -211 0 0 0.14572280e+00 -0.10041268e+00 0.33277074e+03 0.13957000e+00
- 2 310 654 655 0.12135441e+00 -0.18794309e+00 0.20882835e+04 0.49767000e+00
- 1 2112 0 0 -0.12206756e-01 0.26706417e+00 0.11271987e+04 0.93957000e+00
- 2 111 656 657 0.54021934e-01 0.13918748e+00 0.32766215e+03 0.13498000e+00
- 1 22 0 0 -0.92805134e-03 0.40172064e-01 0.11507916e+01 0.00000000e+00
- 1 22 0 0 -0.42356743e-01 0.24942336e-01 0.14335745e+02 0.00000000e+00
- 1 22 0 0 -0.12396965e+00 -0.14459473e-01 0.30785597e+02 0.00000000e+00
- 1 22 0 0 0.19885574e-02 -0.67867443e-01 0.95535573e+01 0.00000000e+00
- 1 22 0 0 -0.28676738e+00 0.50471648e+00 0.28264962e+02 0.00000000e+00
- 1 22 0 0 -0.68681546e-01 0.79795781e-01 0.84957282e+01 0.00000000e+00
- 1 22 0 0 0.11325708e+00 -0.12185730e+00 0.22910889e+01 0.00000000e+00
- 1 22 0 0 -0.30477103e+00 -0.33271344e+00 0.24242506e+02 0.00000000e+00
- 1 22 0 0 0.13573256e+00 0.33855290e+00 0.42235843e+01 0.00000000e+00
- 1 22 0 0 0.12915889e+00 0.92805579e-01 0.19196156e+01 0.00000000e+00
- 1 22 0 0 0.58269198e-01 -0.10543977e-01 0.11963599e+01 0.00000000e+00
- 1 22 0 0 0.19585374e+00 0.20546776e+00 0.37433307e+01 0.00000000e+00
- 1 22 0 0 0.42700937e-01 -0.42905282e-01 0.51538847e+00 0.00000000e+00
- 1 22 0 0 0.62688639e-01 0.63290978e-01 0.23089243e+01 0.00000000e+00
- 1 22 0 0 0.58313148e-01 -0.24838238e+00 0.11379463e+02 0.00000000e+00
- 1 22 0 0 -0.35357097e-01 -0.30145220e-01 0.40118635e+01 0.00000000e+00
- 1 22 0 0 0.21883314e-01 0.11481388e+00 0.49248778e+00 0.00000000e+00
- 1 22 0 0 0.18937833e+00 0.12174627e+00 0.12415178e+01 0.00000000e+00
- 1 22 0 0 0.47819646e+00 0.27219354e+00 0.19544385e-01 0.00000000e+00
- 1 22 0 0 0.79209716e+00 0.34438074e+00 0.17311181e+00 0.00000000e+00
- 1 22 0 0 -0.15762049e-02 0.11153394e+00 -0.22680470e-02 0.00000000e+00
- 1 22 0 0 -0.20422063e-01 0.20435897e+00 0.19368414e+00 0.00000000e+00
- 1 22 0 0 0.45580789e-02 -0.94046400e-01 -0.10735167e+00 0.00000000e+00
- 1 22 0 0 -0.11635778e+00 -0.33797028e-01 -0.96561062e-01 0.00000000e+00
- 1 22 0 0 -0.34144958e-02 -0.11645201e-01 0.15405982e-01 0.00000000e+00
- 1 22 0 0 0.39269171e+00 0.11725819e+00 0.13273260e+00 0.00000000e+00
- 1 22 0 0 -0.55434453e-01 -0.25492885e-01 -0.41155956e-01 0.00000000e+00
- 1 22 0 0 0.58057515e-01 0.10729568e-01 -0.14732743e+00 0.00000000e+00
- 2 310 658 659 -0.16258644e+00 -0.37367682e+01 -0.55089906e+01 0.49767000e+00
- 1 22 0 0 -0.15510658e+00 -0.11140669e+01 -0.15040671e+01 0.00000000e+00
- 1 22 0 0 -0.13568135e+00 -0.71904847e+00 -0.11605755e+01 0.00000000e+00
- 1 22 0 0 0.36935612e-01 -0.91909484e-01 -0.12386867e+00 0.00000000e+00
- 1 22 0 0 -0.70085043e-01 -0.10663484e-01 -0.52057464e-01 0.00000000e+00
- 1 22 0 0 -0.34776359e+01 -0.53816368e+00 -0.57152791e+01 0.00000000e+00
- 1 22 0 0 -0.70494108e+00 -0.64028593e-01 -0.10733348e+01 0.00000000e+00
- 1 22 0 0 -0.76084576e+01 -0.27382066e+01 -0.14233265e+02 0.00000000e+00
- 1 22 0 0 -0.20960027e+01 -0.76396092e+00 -0.40711187e+01 0.00000000e+00
- 1 22 0 0 -0.16909100e+00 -0.30820336e-01 -0.31157698e+00 0.00000000e+00
- 1 22 0 0 -0.22864695e+01 -0.72636554e+00 -0.52439293e+01 0.00000000e+00
- 1 22 0 0 -0.15879802e+01 -0.13903252e+01 -0.36570832e+01 0.00000000e+00
- 1 22 0 0 -0.46192029e+00 -0.32904812e+00 -0.90339469e+00 0.00000000e+00
- 1 22 0 0 -0.42425870e+00 -0.93510702e+00 -0.26954181e+01 0.00000000e+00
- 1 22 0 0 -0.91132706e-01 -0.27178131e+00 -0.95555602e+00 0.00000000e+00
- 1 130 0 0 -0.56305481e+00 -0.17768494e+01 -0.35127141e+01 0.49767000e+00
- 1 2212 0 0 -0.49190571e+01 -0.13539403e+02 -0.30183782e+02 0.93827000e+00
- 1 -211 0 0 -0.10199378e+01 -0.29042888e+01 -0.61835936e+01 0.13957000e+00
- 2 310 660 661 -0.12454573e+01 -0.36019495e+01 -0.89374716e+01 0.49767000e+00
- 1 22 0 0 0.65381721e-01 -0.59174173e+00 -0.23363393e+01 0.00000000e+00
- 1 22 0 0 0.21407378e+00 -0.64331876e+00 -0.25889949e+01 0.00000000e+00
- 1 22 0 0 -0.27795402e+00 -0.36138732e+00 -0.25356172e+01 0.00000000e+00
- 1 22 0 0 -0.10154595e+00 -0.29595231e+00 -0.14914775e+01 0.00000000e+00
- 1 22 0 0 -0.21698235e-01 0.25543048e-01 0.59972050e+00 0.00000000e+00
- 1 22 0 0 -0.44074758e-01 -0.15287007e+00 0.16387662e+01 0.00000000e+00
- 1 22 0 0 0.36095054e+00 -0.22933609e+00 0.21472751e+01 0.00000000e+00
- 1 22 0 0 -0.18534157e-02 0.72539207e-02 0.15108581e+00 0.00000000e+00
- 1 22 0 0 0.12128477e+01 -0.10481094e+01 0.10455769e+02 0.00000000e+00
- 1 22 0 0 0.91122636e+00 -0.66341060e+00 0.77803998e+01 0.00000000e+00
- 2 111 662 663 -0.64703753e+00 -0.47671021e+00 -0.27923784e+01 0.13498000e+00
- 2 111 664 665 -0.38750804e+00 0.42169362e-01 -0.13815815e+01 0.13498000e+00
- 1 -211 0 0 -0.28863269e+00 -0.33736148e+00 -0.22569795e+01 0.13957000e+00
- 1 211 0 0 -0.19701486e+00 0.31346984e-01 -0.51355655e+00 0.13957000e+00
- 1 -211 0 0 -0.88110209e+00 0.72748254e+00 -0.33326629e+01 0.13957000e+00
- 1 211 0 0 -0.89902728e+00 0.85038925e+00 -0.25054686e+01 0.13957000e+00
- 1 211 0 0 -0.24188840e+00 -0.34975789e-01 -0.15052571e+02 0.13957000e+00
- 1 -211 0 0 -0.17245347e+00 -0.37882418e+00 -0.49392178e+02 0.13957000e+00
- 2 111 666 667 0.10675596e+00 0.11924619e+00 0.76258714e+03 0.13498000e+00
- 2 111 668 669 0.14598452e-01 -0.30718928e+00 0.13256964e+04 0.13498000e+00
- 1 22 0 0 -0.39713746e-01 0.73952334e-01 0.16804057e+03 0.00000000e+00
- 1 22 0 0 0.93735680e-01 0.65235147e-01 0.15962158e+03 0.00000000e+00
- 2 111 670 671 0.12489158e+00 -0.98986396e+00 -0.15477303e+01 0.13498000e+00
- 2 111 672 673 -0.28747802e+00 -0.27469043e+01 -0.39612603e+01 0.13498000e+00
- 1 211 0 0 -0.11433574e+01 -0.32575027e+01 -0.79197653e+01 0.13957000e+00
- 1 -211 0 0 -0.10209992e+00 -0.34444680e+00 -0.10177064e+01 0.13957000e+00
- 1 22 0 0 -0.12812075e-01 -0.12562247e-01 -0.18388075e-01 0.00000000e+00
- 1 22 0 0 -0.63422546e+00 -0.46414797e+00 -0.27739903e+01 0.00000000e+00
- 1 22 0 0 -0.38458505e+00 0.33176894e-01 -0.13790554e+01 0.00000000e+00
- 1 22 0 0 -0.29229907e-02 0.89924679e-02 -0.25260784e-02 0.00000000e+00
- 1 22 0 0 0.43530623e-01 -0.51912960e-02 0.65028084e+02 0.00000000e+00
- 1 22 0 0 0.63225334e-01 0.12443748e+00 0.69755906e+03 0.00000000e+00
- 1 22 0 0 0.69515171e-01 -0.15605395e+00 0.78702721e+03 0.00000000e+00
- 1 22 0 0 -0.54916719e-01 -0.15113534e+00 0.53866918e+03 0.00000000e+00
- 1 22 0 0 0.41633429e-01 -0.43364315e+00 -0.79771968e+00 0.00000000e+00
- 1 22 0 0 0.83258147e-01 -0.55622081e+00 -0.75001064e+00 0.00000000e+00
- 1 22 0 0 -0.27158505e+00 -0.20300017e+01 -0.29232017e+01 0.00000000e+00
- 1 22 0 0 -0.15892970e-01 -0.71690255e+00 -0.10380586e+01 0.00000000e+00
- 246
- 2 25 2 3 -0.18919824e+02 0.85401506e+01 -0.64546338e+02 0.12501966e+03
- 2 23 6 8 0.49453282e-01 0.13664673e+02 -0.33112276e+02 0.86711844e+02
- 2 23 4 5 -0.18969277e+02 -0.51245222e+01 -0.31434062e+02 0.31122197e+02
- 1 11 0 0 -0.14037633e+02 0.10819106e+02 -0.75475990e+01 0.51000000e-03
- 1 -11 0 0 -0.49316442e+01 -0.15943629e+02 -0.23886463e+02 0.51000000e-03
- 1 13 0 0 -0.12614148e+02 0.16485295e+02 0.25878356e+02 0.10566000e+00
- 1 -13 0 0 0.34386558e+01 -0.27491778e+00 -0.27945987e+02 0.10566000e+00
- 1 22 0 0 0.92249457e+01 -0.25457043e+01 -0.31044646e+02 0.00000000e+00
- 1 321 0 0 0.57583656e+00 0.13834611e+00 -0.72770319e+03 0.49360000e+00
- 2 1 35 35 0.18038969e+01 0.16691734e+01 0.12197304e+00 0.33000000e+00
- 2 21 35 35 0.13039787e+01 -0.74547535e+00 0.42524364e+01 0.00000000e+00
- 2 21 35 35 0.23943014e+00 0.12958829e+00 0.16357240e+00 0.00000000e+00
- 2 21 35 35 0.15034588e+00 0.18897771e+00 0.67193610e+00 0.00000000e+00
- 2 21 35 35 0.30535687e+00 0.33471661e+00 0.14123111e+01 0.00000000e+00
- 2 21 35 35 0.15485167e+01 -0.37465704e+01 0.44889043e+03 0.00000000e+00
- 2 -4 35 35 0.28628341e+01 -0.58939449e+01 0.35375037e+03 0.15000000e+01
- 2 -1 48 48 0.62037556e+01 -0.84666819e+00 -0.20227767e+01 0.33000000e+00
- 2 21 48 48 -0.46026412e+00 0.59416196e+00 -0.67738509e-01 0.00000000e+00
- 2 21 48 48 -0.51490966e+00 0.14297336e+01 -0.13199528e+01 0.00000000e+00
- 2 21 48 48 0.26620286e+01 0.84724682e+01 -0.13609554e+02 0.00000000e+00
- 2 21 48 48 0.54939079e+00 -0.22302168e+01 -0.77042098e+01 0.00000000e+00
- 2 4 48 48 0.36126355e+01 -0.70524115e+01 -0.35257831e+03 0.15000000e+01
- 2 -4 66 66 -0.14935358e+01 -0.14011660e+01 -0.30262979e+03 0.15000000e+01
- 2 21 66 66 0.27414249e+00 0.65544636e-01 -0.12974666e+02 0.00000000e+00
- 2 3 66 66 0.10386569e+01 0.33007337e+00 -0.13598047e+03 0.50000000e+00
- 2 4 70 70 -0.55656707e+00 0.19530307e+00 0.20758203e+04 0.15000000e+01
- 2 21 70 70 -0.20402242e+00 -0.30741587e+00 0.94878002e+02 0.00000000e+00
- 2 2203 70 70 0.57573182e+00 -0.73331013e-01 0.38304701e+04 0.77133000e+00
- 2 1 74 74 0.21220112e+00 -0.44022255e+00 0.33674648e+02 0.33000000e+00
- 2 21 74 74 -0.30158433e+01 0.82163655e+00 0.14233953e+02 0.00000000e+00
- 2 21 74 74 -0.29884434e+01 -0.38671804e+01 0.44647683e+02 0.00000000e+00
- 2 21 74 74 0.29884434e+01 0.38671804e+01 0.49565756e+02 0.00000000e+00
- 2 21 74 74 0.30158433e+01 -0.82163655e+00 0.10590633e+01 0.00000000e+00
- 2 2101 74 74 -0.17696161e+01 0.64918500e+00 -0.53324800e+04 0.57933000e+00
- 2 92 36 47 0.82143593e+01 -0.80635347e+01 0.80926302e+03 0.68404228e+02
- 1 -211 0 0 0.23551970e+00 0.20107122e+00 -0.33876013e+00 0.13957000e+00
- 2 113 100 101 0.16066013e+01 0.72907041e+00 0.15747693e+01 0.78949665e+00
- 2 213 102 103 -0.15714779e-01 0.35341801e-01 0.48571495e+00 0.81874889e+00
- 1 -211 0 0 0.81044191e+00 0.83264829e+00 0.18325240e+01 0.13957000e+00
- 1 211 0 0 0.29469640e+00 -0.54842806e+00 0.48147805e+01 0.13957000e+00
- 1 -211 0 0 0.77668397e+00 0.31487905e+00 0.11326842e+01 0.13957000e+00
- 2 223 104 106 -0.31029213e+00 -0.45860323e+00 0.59493445e+02 0.76633875e+00
- 2 223 107 109 0.14640205e+01 -0.22069092e+01 0.17035819e+03 0.78818783e+00
- 2 323 110 111 0.70157708e+00 -0.80439341e+00 0.89952539e+02 0.77197971e+00
- 1 -321 0 0 0.34919654e+00 -0.11506055e+01 0.65989521e+02 0.49360000e+00
- 1 211 0 0 0.63161305e+00 -0.37077435e+00 0.62213672e+02 0.13957000e+00
- 2 -411 112 116 0.16700158e+01 -0.46368318e+01 0.35175394e+03 0.18693000e+01
- 2 92 49 65 0.12052637e+02 0.36706737e+00 -0.37730254e+03 0.82083332e+02
- 2 113 117 118 0.32429522e+01 -0.29634884e+00 -0.96885240e+00 0.88275981e+00
- 2 223 119 121 0.39078105e+00 -0.33588207e+00 -0.59122595e+00 0.77468457e+00
- 1 211 0 0 0.10854263e+01 -0.33731061e-01 -0.16794797e+00 0.13957000e+00
- 1 -211 0 0 -0.70354070e-01 0.58840377e+00 0.10577854e+00 0.13957000e+00
- 2 221 122 124 0.79453979e+00 0.15385676e+00 -0.99790556e+00 0.54745000e+00
- 1 211 0 0 0.21570963e+00 0.11692706e+01 -0.10287469e+01 0.13957000e+00
- 1 -2212 0 0 0.45645138e+00 0.91393601e+00 -0.15171215e+01 0.93827000e+00
- 1 2212 0 0 0.33914888e+00 0.36047149e+01 -0.43932869e+01 0.93827000e+00
- 2 331 125 127 0.81137856e+00 0.16862426e+01 -0.47124482e+01 0.95821310e+00
- 1 -321 0 0 0.56349550e+00 0.14881309e+01 -0.37939469e+01 0.49360000e+00
- 2 311 128 128 -0.18290799e+00 -0.95099709e+00 -0.25068996e+01 0.49767000e+00
- 2 -311 129 129 0.72544355e+00 0.15324898e+00 -0.32253984e+01 0.49767000e+00
- 2 313 130 131 0.32518254e-01 -0.30559218e+00 -0.29771345e+01 0.89658813e+00
- 1 -2112 0 0 0.58504489e+00 -0.66866568e+00 -0.33763559e+02 0.93957000e+00
- 1 2212 0 0 -0.20283511e+00 -0.98998006e+00 -0.32517430e+02 0.93827000e+00
- 1 -211 0 0 0.11408469e+01 -0.14738585e+01 -0.64241769e+02 0.13957000e+00
- 2 411 132 134 0.21249970e+01 -0.43356817e+01 -0.22000464e+03 0.18693000e+01
- 2 92 67 69 -0.18073638e+00 -0.10055480e+01 -0.45158493e+03 0.40139265e+01
- 2 -413 135 136 -0.93277908e+00 -0.61977569e+00 -0.27474464e+03 0.20100000e+01
- 2 213 137 138 0.78182129e-02 -0.15152546e+00 -0.72691145e+02 0.86185740e+00
- 1 -321 0 0 0.74422449e+00 -0.23424682e+00 -0.10414915e+03 0.49360000e+00
- 2 92 71 73 -0.18485767e+00 -0.18544381e+00 0.60011684e+04 0.41847533e+01
- 2 413 139 140 -0.40449016e+00 -0.45822733e-01 0.22151719e+04 0.20100000e+01
- 2 2114 141 142 0.67630499e-01 -0.31948373e+00 0.16597174e+04 0.12433362e+01
- 1 211 0 0 0.15200199e+00 0.17986265e+00 0.21262791e+04 0.13957000e+00
- 2 92 75 99 -0.15574150e+01 0.20896245e+00 -0.51892989e+04 0.17572481e+04
- 2 -213 143 144 -0.46230907e-01 0.11032457e+00 0.22413711e+02 0.88291866e+00
- 2 111 145 146 0.10739110e+00 -0.34887148e+00 0.34637740e+01 0.13498000e+00
- 2 223 147 148 -0.92081761e+00 0.10066915e-02 0.13589154e+02 0.78294404e+00
- 2 221 149 151 -0.35479825e+00 -0.25998860e+00 0.21536972e+01 0.54745000e+00
- 1 211 0 0 -0.20535334e+01 -0.50686562e-01 0.15319313e+02 0.13957000e+00
- 1 -211 0 0 -0.41651578e+00 -0.12378533e+01 0.12930355e+02 0.13957000e+00
- 1 211 0 0 -0.28905280e+00 0.51862102e+00 0.19233071e+01 0.13957000e+00
- 2 223 152 153 -0.13097276e+01 -0.18536380e+01 0.25734687e+02 0.78677343e+00
- 2 -213 154 155 0.97024698e+00 0.16753221e+01 0.16633475e+02 0.66359946e+00
- 1 211 0 0 0.33048754e+00 -0.91912617e-01 0.26713298e+01 0.13957000e+00
- 1 -211 0 0 -0.31000858e+00 -0.17056137e+00 0.39188322e+01 0.13957000e+00
- 2 223 156 158 0.14346780e+01 0.13008579e+01 0.14032692e+02 0.71731368e+00
- 2 223 159 161 0.34847722e+00 0.81454868e+00 0.58589583e+01 0.78342481e+00
- 1 211 0 0 0.54329344e-02 -0.21525790e+00 0.54541845e+00 0.13957000e+00
- 2 113 162 163 0.10006254e+01 -0.14081096e+00 0.76331439e+00 0.75855972e+00
- 2 223 164 166 -0.12691873e+00 0.39147957e+00 0.55917258e+00 0.78053799e+00
- 1 -211 0 0 0.58525061e+00 -0.52795473e+00 -0.99830835e+00 0.13957000e+00
- 1 211 0 0 0.23249210e+00 0.89700390e-01 -0.24366390e-01 0.13957000e+00
- 2 -213 167 168 0.91635805e+00 -0.63512361e+00 -0.20101256e+00 0.70205873e+00
- 1 211 0 0 0.16982133e-01 -0.40865378e+00 -0.17493613e+01 0.13957000e+00
- 2 313 169 170 -0.24178652e+00 0.94744915e+00 -0.32107214e+01 0.10173217e+01
- 2 -313 171 172 0.64022300e+00 -0.48298667e+00 -0.10249573e+02 0.10801940e+01
- 1 2112 0 0 -0.29223962e+00 0.10230469e+00 -0.10740000e+03 0.93957000e+00
- 1 -2112 0 0 -0.26012537e+00 0.11883607e+00 -0.80989582e+02 0.93957000e+00
- 1 2112 0 0 -0.15243048e+01 0.56281131e+00 -0.51269872e+04 0.93957000e+00
- 1 211 0 0 0.61689885e-01 -0.15036377e-01 -0.10546215e-01 0.13957000e+00
- 1 -211 0 0 0.15449114e+01 0.74410678e+00 0.15853155e+01 0.13957000e+00
- 1 211 0 0 0.35110455e+00 0.10306606e+00 0.37188246e+00 0.13957000e+00
- 2 111 173 174 -0.36681933e+00 -0.67724259e-01 0.11383249e+00 0.13498000e+00
- 1 211 0 0 -0.37980750e-02 -0.40068762e+00 0.27930131e+02 0.13957000e+00
- 1 -211 0 0 -0.79929477e-01 0.78310979e-01 0.18740538e+02 0.13957000e+00
- 2 111 175 176 -0.22656458e+00 -0.13622660e+00 0.12822776e+02 0.13498000e+00
- 1 -211 0 0 0.25529315e+00 -0.30217212e+00 0.34459738e+02 0.13957000e+00
- 1 211 0 0 0.36695399e+00 -0.97237276e+00 0.68297907e+02 0.13957000e+00
- 2 111 177 178 0.84177338e+00 -0.93236428e+00 0.67600546e+02 0.13498000e+00
- 2 311 179 179 0.26808211e+00 -0.43212681e+00 0.41846852e+02 0.49767000e+00
- 1 211 0 0 0.43349496e+00 -0.37226660e+00 0.48105687e+02 0.13957000e+00
- 2 311 180 180 0.25617177e+00 -0.73234510e+00 0.52112116e+02 0.49767000e+00
- 1 -211 0 0 0.31706564e+00 -0.11151170e+01 0.97312900e+02 0.13957000e+00
- 1 -211 0 0 0.16426908e+00 -0.11094687e+01 0.88613028e+02 0.13957000e+00
- 1 211 0 0 0.18504076e+00 -0.36185988e+00 0.18608566e+02 0.13957000e+00
- 2 111 181 182 0.74746852e+00 -0.13180411e+01 0.95107328e+02 0.13498000e+00
- 1 -211 0 0 0.28289272e+01 -0.59365849e-01 -0.61168181e+00 0.13957000e+00
- 1 211 0 0 0.41402503e+00 -0.23698299e+00 -0.35717059e+00 0.13957000e+00
- 1 -211 0 0 -0.58369217e-01 -0.84198311e-01 -0.21909920e+00 0.13957000e+00
- 1 211 0 0 0.19660535e+00 -0.32579130e+00 -0.91752631e-01 0.13957000e+00
- 2 111 183 184 0.25254492e+00 0.74107545e-01 -0.28037412e+00 0.13498000e+00
- 2 111 185 186 0.30862405e+00 -0.34570076e-01 -0.21137265e+00 0.13498000e+00
- 2 111 187 188 0.93487716e-01 0.20723786e-01 -0.19938011e+00 0.13498000e+00
- 2 111 189 190 0.39242803e+00 0.16770305e+00 -0.58715280e+00 0.13498000e+00
- 1 211 0 0 0.18022275e-01 0.39262830e+00 -0.74381130e+00 0.13957000e+00
- 1 -211 0 0 0.13526740e+00 0.31526733e+00 -0.76164138e+00 0.13957000e+00
- 2 221 191 193 0.65808889e+00 0.97834694e+00 -0.32069955e+01 0.54745000e+00
- 2 310 194 195 -0.18290799e+00 -0.95099709e+00 -0.25068996e+01 0.49767000e+00
- 2 310 196 197 0.72544355e+00 0.15324898e+00 -0.32253984e+01 0.49767000e+00
- 1 321 0 0 0.16661488e+00 -0.73968906e-01 -0.10578778e+01 0.49360000e+00
- 1 -211 0 0 -0.13409662e+00 -0.23162328e+00 -0.19192567e+01 0.13957000e+00
- 1 -13 0 0 0.14661093e+00 -0.11794928e+01 -0.71430902e+02 0.10566000e+00
- 1 14 0 0 0.23664794e+00 -0.75655436e+00 -0.19807622e+02 0.00000000e+00
- 2 -311 198 198 0.17417381e+01 -0.23996346e+01 -0.12876612e+03 0.49767000e+00
- 2 -411 199 202 -0.86715513e+00 -0.54006990e+00 -0.25621460e+03 0.18693000e+01
- 2 111 203 204 -0.65623948e-01 -0.79705795e-01 -0.18530037e+02 0.13498000e+00
- 1 211 0 0 0.14210867e+00 0.23377369e+00 -0.51467738e+02 0.13957000e+00
- 2 111 205 206 -0.13429046e+00 -0.38529915e+00 -0.21223408e+02 0.13498000e+00
- 2 421 207 208 -0.35181655e+00 -0.70585114e-01 0.20678719e+04 0.18645000e+01
- 1 211 0 0 -0.52673604e-01 0.24762381e-01 0.14730005e+03 0.13957000e+00
- 1 2112 0 0 -0.40115697e-01 -0.46198865e+00 0.15483701e+04 0.93957000e+00
- 1 22 0 0 0.10774620e+00 0.14250491e+00 0.11134726e+03 0.00000000e+00
- 1 -211 0 0 0.73424620e-01 0.34921667e+00 0.19192151e+02 0.13957000e+00
- 2 111 209 210 -0.11965553e+00 -0.23889210e+00 0.32215594e+01 0.13498000e+00
- 1 22 0 0 0.47985693e-01 -0.17571517e-01 0.57018817e+00 0.00000000e+00
- 1 22 0 0 0.59405408e-01 -0.33129997e+00 0.28935859e+01 0.00000000e+00
- 1 22 0 0 -0.35893584e+00 -0.18410969e+00 0.21470095e+01 0.00000000e+00
- 2 111 211 212 -0.56188178e+00 0.18511638e+00 0.11442144e+02 0.13498000e+00
- 2 111 213 214 -0.95840177e-01 -0.19022237e+00 0.72131806e+00 0.13498000e+00
- 2 111 215 216 -0.80390618e-01 -0.64527431e-01 0.99938911e+00 0.13498000e+00
- 2 111 217 218 -0.17856746e+00 -0.52387973e-02 0.43298998e+00 0.13498000e+00
- 1 -211 0 0 -0.70003518e+00 -0.64039515e+00 0.75396951e+01 0.13957000e+00
- 1 211 0 0 -0.60969240e+00 -0.12132429e+01 0.18194992e+02 0.13957000e+00
- 1 -211 0 0 0.60752377e+00 0.58121823e+00 0.55864597e+01 0.13957000e+00
- 2 111 219 220 0.36272320e+00 0.10941038e+01 0.11047015e+02 0.13498000e+00
- 1 211 0 0 0.78051906e+00 0.78562670e+00 0.73200921e+01 0.13957000e+00
- 1 -211 0 0 0.54280266e+00 0.52888937e+00 0.56036970e+01 0.13957000e+00
- 2 111 221 222 0.11135623e+00 -0.13658201e-01 0.11089029e+01 0.13498000e+00
- 1 -211 0 0 0.40197474e+00 0.48952667e+00 0.26014573e+01 0.13957000e+00
- 1 211 0 0 -0.39798565e-01 0.24395379e-01 0.15498098e+01 0.13957000e+00
- 2 111 223 225 -0.13698953e-01 0.30062663e+00 0.17076913e+01 0.13498000e+00
- 1 -211 0 0 0.43209579e+00 0.16108172e+00 0.64802483e+00 0.13957000e+00
- 1 211 0 0 0.56852956e+00 -0.30189267e+00 0.11528956e+00 0.13957000e+00
- 1 -211 0 0 -0.11003607e+00 0.17595552e+00 0.35467727e+00 0.13957000e+00
- 1 211 0 0 0.17773637e+00 0.21432730e+00 0.23079476e-01 0.13957000e+00
- 2 111 226 227 -0.19461903e+00 0.11967483e-02 0.18141583e+00 0.13498000e+00
- 1 -211 0 0 0.27273876e+00 0.86272516e-01 -0.15889640e+00 0.13957000e+00
- 2 111 228 229 0.64361928e+00 -0.72139612e+00 -0.42116162e-01 0.13498000e+00
- 2 311 230 230 -0.23089413e+00 0.60457120e+00 -0.11304423e+01 0.49767000e+00
- 2 111 231 232 -0.10892397e-01 0.34287795e+00 -0.20802792e+01 0.13498000e+00
- 1 -321 0 0 0.42601277e+00 -0.55877094e+00 -0.44676862e+01 0.49360000e+00
- 1 211 0 0 0.21421023e+00 0.75784267e-01 -0.57818873e+01 0.13957000e+00
- 1 22 0 0 -0.28877533e+00 -0.23364524e-01 0.32449938e-01 0.00000000e+00
- 1 22 0 0 -0.78044006e-01 -0.44359735e-01 0.81382555e-01 0.00000000e+00
- 1 22 0 0 -0.20047047e+00 -0.14800521e+00 0.93586522e+01 0.00000000e+00
- 1 22 0 0 -0.26094102e-01 0.11778613e-01 0.34641236e+01 0.00000000e+00
- 1 22 0 0 0.16009251e+00 -0.12182366e+00 0.12644503e+02 0.00000000e+00
- 1 22 0 0 0.68168087e+00 -0.81054062e+00 0.54956044e+02 0.00000000e+00
- 1 130 0 0 0.26808211e+00 -0.43212681e+00 0.41846852e+02 0.49767000e+00
- 2 310 233 234 0.25617177e+00 -0.73234510e+00 0.52112116e+02 0.49767000e+00
- 1 22 0 0 0.12036014e-01 -0.20108685e-01 0.29356190e+01 0.00000000e+00
- 1 22 0 0 0.73543251e+00 -0.12979324e+01 0.92171709e+02 0.00000000e+00
- 1 22 0 0 0.11428923e+00 -0.95710009e-02 -0.19124479e+00 0.00000000e+00
- 1 22 0 0 0.13825568e+00 0.83678546e-01 -0.89129335e-01 0.00000000e+00
- 1 22 0 0 0.23649751e+00 -0.75356070e-01 -0.11957562e+00 0.00000000e+00
- 1 22 0 0 0.72126537e-01 0.40785994e-01 -0.91797027e-01 0.00000000e+00
- 1 22 0 0 -0.22758834e-01 -0.75651311e-02 0.28453715e-02 0.00000000e+00
- 1 22 0 0 0.11624655e+00 0.28288917e-01 -0.20222548e+00 0.00000000e+00
- 1 22 0 0 0.13074761e+00 0.73439850e-01 -0.10991730e+00 0.00000000e+00
- 1 22 0 0 0.26168042e+00 0.94263202e-01 -0.47723550e+00 0.00000000e+00
- 1 -211 0 0 0.28298123e+00 0.37548327e+00 -0.10799298e+01 0.13957000e+00
- 1 211 0 0 0.18385460e+00 0.49367040e+00 -0.13675433e+01 0.13957000e+00
- 2 111 235 236 0.19125306e+00 0.10919327e+00 -0.75952237e+00 0.13498000e+00
- 1 -211 0 0 -0.29657960e+00 -0.75011215e+00 -0.19202497e+01 0.13957000e+00
- 1 211 0 0 0.11367161e+00 -0.20088494e+00 -0.58664986e+00 0.13957000e+00
- 1 -211 0 0 0.21858835e+00 0.12871914e+00 -0.56596698e+00 0.13957000e+00
- 1 211 0 0 0.50685520e+00 0.24529840e-01 -0.26594315e+01 0.13957000e+00
- 1 130 0 0 0.17417381e+01 -0.23996346e+01 -0.12876612e+03 0.49767000e+00
- 1 13 0 0 0.22952876e+00 0.37919795e-01 -0.32159448e+02 0.10566000e+00
- 1 -14 0 0 -0.38723192e+00 -0.18911640e+00 -0.20040060e+02 0.00000000e+00
- 1 321 0 0 -0.29603755e+00 -0.35146997e-01 -0.93191485e+02 0.49360000e+00
- 1 -211 0 0 -0.41341442e+00 -0.35372629e+00 -0.11082361e+03 0.13957000e+00
- 1 22 0 0 -0.40380084e-01 -0.68075227e-01 -0.41631053e+01 0.00000000e+00
- 1 22 0 0 -0.25243865e-01 -0.11630568e-01 -0.14366932e+02 0.00000000e+00
- 1 22 0 0 0.27645935e-01 -0.61218678e-01 -0.30328633e+01 0.00000000e+00
- 1 22 0 0 -0.16193640e+00 -0.32408047e+00 -0.18190545e+02 0.00000000e+00
- 1 -321 0 0 -0.53046243e+00 -0.21151542e-01 0.17432958e+04 0.49360000e+00
- 2 213 237 238 0.17864588e+00 -0.49433572e-01 0.32457611e+03 0.65853648e+00
- 1 22 0 0 -0.89682252e-01 -0.40312561e-01 0.11134895e+01 0.00000000e+00
- 1 22 0 0 -0.29973275e-01 -0.19857954e+00 0.21080699e+01 0.00000000e+00
- 1 22 0 0 -0.90982210e-01 -0.75095661e-02 0.12111256e+01 0.00000000e+00
- 1 22 0 0 -0.47089957e+00 0.19262595e+00 0.10231019e+02 0.00000000e+00
- 1 22 0 0 -0.49220066e-01 -0.11685870e+00 0.20877873e+00 0.00000000e+00
- 1 22 0 0 -0.46620111e-01 -0.73363667e-01 0.51253933e+00 0.00000000e+00
- 1 22 0 0 0.26275077e-01 -0.13780533e-02 0.52236942e-01 0.00000000e+00
- 1 22 0 0 -0.10666569e+00 -0.63149377e-01 0.94715217e+00 0.00000000e+00
- 1 22 0 0 0.18353205e-01 0.40347998e-02 0.89168026e-01 0.00000000e+00
- 1 22 0 0 -0.19692066e+00 -0.92735972e-02 0.34382195e+00 0.00000000e+00
- 1 22 0 0 0.34882876e+00 0.89521720e+00 0.90376182e+01 0.00000000e+00
- 1 22 0 0 0.13894448e-01 0.19888663e+00 0.20093966e+01 0.00000000e+00
- 1 22 0 0 -0.13693702e-01 0.28946832e-01 0.95405994e-01 0.00000000e+00
- 1 22 0 0 0.12504994e+00 -0.42605033e-01 0.10134969e+01 0.00000000e+00
- 1 22 0 0 -0.74340869e-01 0.16611182e+00 0.97570603e+00 0.00000000e+00
- 1 -11 0 0 0.91083934e-02 0.22752821e-01 0.11817350e+00 0.51000000e-03
- 1 11 0 0 0.51533523e-01 0.11176199e+00 0.61381173e+00 0.51000000e-03
- 1 22 0 0 -0.15737613e+00 -0.27557516e-01 0.64469309e-01 0.00000000e+00
- 1 22 0 0 -0.37242904e-01 0.28754264e-01 0.11694652e+00 0.00000000e+00
- 1 22 0 0 0.41964855e+00 -0.39887524e+00 -0.71171918e-01 0.00000000e+00
- 1 22 0 0 0.22397074e+00 -0.32252088e+00 0.29055756e-01 0.00000000e+00
- 2 310 239 240 -0.23089413e+00 0.60457120e+00 -0.11304423e+01 0.49767000e+00
- 1 22 0 0 0.27333647e-01 0.30899008e+00 -0.16071081e+01 0.00000000e+00
- 1 22 0 0 -0.38226044e-01 0.33887874e-01 -0.47317111e+00 0.00000000e+00
- 2 111 241 242 0.21789380e+00 -0.64681602e+00 0.47731739e+02 0.13498000e+00
- 2 111 243 244 0.38277967e-01 -0.85529077e-01 0.43803774e+01 0.13498000e+00
- 1 22 0 0 0.47117086e-01 0.18000160e-01 -0.41248416e+00 0.00000000e+00
- 1 22 0 0 0.14413597e+00 0.91193114e-01 -0.34703821e+00 0.00000000e+00
- 1 211 0 0 0.38357112e+00 -0.11312998e+00 0.22471346e+03 0.13957000e+00
- 2 111 245 246 -0.20492523e+00 0.63696413e-01 0.99862657e+02 0.13498000e+00
- 1 211 0 0 -0.20807730e+00 0.40124523e+00 -0.38820223e+00 0.13957000e+00
- 1 -211 0 0 -0.22816830e-01 0.20332597e+00 -0.74224005e+00 0.13957000e+00
- 1 22 0 0 0.14091373e-01 -0.20860493e+00 0.12344559e+02 0.00000000e+00
- 1 22 0 0 0.20380243e+00 -0.43821109e+00 0.35387179e+02 0.00000000e+00
- 1 22 0 0 0.61095274e-01 -0.90966719e-01 0.20240183e+01 0.00000000e+00
- 1 22 0 0 -0.22817308e-01 0.54376415e-02 0.23563591e+01 0.00000000e+00
- 1 22 0 0 -0.15112208e+00 0.44198672e-01 0.91042271e+02 0.00000000e+00
- 1 22 0 0 -0.53803159e-01 0.19497741e-01 0.88203862e+01 0.00000000e+00
- 1139
- 2 25 2 3 0.42580020e+02 0.23405580e+02 -0.23767108e+03 0.12500039e+03
- 2 23 4 6 0.66788081e+01 -0.10296839e+02 -0.69713833e+02 0.26568944e+02
- 2 23 7 10 0.35901212e+02 0.33702418e+02 -0.16795724e+03 0.91044665e+02
- 1 13 0 0 -0.40244542e+01 -0.15044763e+02 -0.25795743e+02 0.10566000e+00
- 1 -13 0 0 0.10714386e+02 0.47999263e+01 -0.43616488e+02 0.10566000e+00
- 1 22 0 0 -0.11124008e-01 -0.52001629e-01 -0.30160212e+00 0.00000000e+00
- 1 -11 0 0 0.16991372e+02 0.44230938e+01 0.69951794e+01 0.51000000e-03
- 1 22 0 0 0.23652067e-01 0.33424653e-01 -0.20179375e+00 0.00000000e+00
- 1 11 0 0 0.18860066e+02 0.29205458e+02 -0.17450904e+03 0.51000000e-03
- 1 22 0 0 0.26122221e-01 0.40441568e-01 -0.24158677e+00 0.00000000e+00
- 2 3122 121 122 0.75579150e+00 -0.91315380e-01 -0.21848274e+04 0.11156800e+01
- 2 4 123 123 0.14961533e+01 0.39327940e+00 -0.53242313e+02 0.15000000e+01
- 2 21 123 123 -0.20481279e+01 -0.31121412e+01 -0.35842576e+02 0.00000000e+00
- 2 21 123 123 -0.37095367e+01 -0.30650089e+01 -0.16581325e+03 0.00000000e+00
- 2 21 123 123 -0.27088382e+01 -0.35330595e+01 -0.12418849e+03 0.00000000e+00
- 2 -4 123 123 -0.29521633e+01 -0.35750501e+01 -0.97002677e+02 0.15000000e+01
- 2 -4 132 132 0.88394090e+00 0.49011323e+01 -0.21730210e+03 0.15000000e+01
- 2 21 132 132 -0.54891313e+01 -0.27688871e+01 -0.38967488e+02 0.00000000e+00
- 2 21 132 132 -0.20561108e+01 -0.84221345e+00 -0.92328911e+01 0.00000000e+00
- 2 21 132 132 -0.83527482e+00 -0.13872158e+00 -0.18667397e+01 0.00000000e+00
- 2 21 132 132 -0.37021301e+00 -0.59545470e+00 -0.70490157e+01 0.00000000e+00
- 2 21 132 132 -0.32091299e+00 -0.34904100e+01 -0.25889116e+02 0.00000000e+00
- 2 21 132 132 -0.24808500e+01 -0.93389594e+01 -0.48621762e+02 0.00000000e+00
- 2 21 132 132 0.11321985e+01 -0.70639899e+01 -0.17658822e+02 0.00000000e+00
- 2 21 132 132 -0.30419853e+01 -0.15344516e+01 -0.98673082e+01 0.00000000e+00
- 2 21 132 132 -0.57637048e+00 0.50131499e+01 -0.57408269e+02 0.00000000e+00
- 2 21 132 132 0.32091299e+00 0.34904100e+01 -0.14878500e+03 0.00000000e+00
- 2 21 132 132 0.27716202e-01 0.74469951e+00 -0.51769751e+02 0.00000000e+00
- 2 21 132 132 -0.12943129e+01 0.22846020e+01 -0.18621353e+03 0.00000000e+00
- 2 21 132 132 -0.17153732e+01 0.79009914e+00 -0.51902523e+02 0.00000000e+00
- 2 21 132 132 -0.10247011e+01 -0.14392018e+00 -0.19910567e+02 0.00000000e+00
- 2 21 132 132 -0.18853068e+01 -0.11346342e+01 -0.12357328e+03 0.00000000e+00
- 2 21 132 132 0.12943129e+01 -0.22846020e+01 -0.12191026e+03 0.00000000e+00
- 2 21 132 132 0.18853068e+01 0.11346342e+01 -0.17898298e+03 0.00000000e+00
- 2 21 132 132 -0.54815429e+00 0.75024520e+00 -0.15498062e+03 0.00000000e+00
- 2 21 132 132 -0.82499585e+00 0.49457143e+00 -0.15600100e+03 0.00000000e+00
- 2 21 132 132 0.82499585e+00 -0.49457143e+00 -0.19763899e+03 0.00000000e+00
- 2 2 132 132 0.71135777e+00 -0.33973427e+00 -0.18700759e+04 0.33000000e+00
- 2 2 182 182 -0.14477503e+02 -0.57648541e+01 -0.95763717e+01 0.33000000e+00
- 2 21 182 182 -0.42290876e+01 -0.20597285e+01 -0.21821907e+01 0.00000000e+00
- 2 21 182 182 -0.20401535e+01 -0.81270803e+00 -0.22215425e+01 0.00000000e+00
- 2 21 182 182 -0.43158195e+01 -0.19072083e+01 -0.59518344e+01 0.00000000e+00
- 2 21 182 182 -0.86259950e+00 0.11198643e+00 -0.29000983e+01 0.00000000e+00
- 2 21 182 182 -0.24801398e+01 -0.13144354e+01 0.76727113e+01 0.00000000e+00
- 2 21 182 182 -0.63047627e+01 -0.31821714e+01 0.52313776e+02 0.00000000e+00
- 2 21 182 182 -0.31026113e+01 -0.72532687e+00 0.22239690e+02 0.00000000e+00
- 2 21 182 182 -0.67833241e+00 0.16479499e+01 0.15832716e+02 0.00000000e+00
- 2 21 182 182 0.14481847e+00 0.12779994e+01 0.12599871e+02 0.00000000e+00
- 2 21 182 182 -0.85050104e+00 0.13425223e+01 0.42959290e+02 0.00000000e+00
- 2 21 182 182 -0.26422546e+01 0.23260129e+01 0.82562981e+02 0.00000000e+00
- 2 21 182 182 -0.33228544e+01 0.98219515e+00 0.12679548e+03 0.00000000e+00
- 2 21 182 182 -0.51178092e+00 -0.18472351e+00 0.21601052e+02 0.00000000e+00
- 2 21 182 182 -0.11567227e+01 -0.19334492e+01 0.46763854e+03 0.00000000e+00
- 2 21 182 182 -0.42846107e+01 0.30559267e+00 0.18655117e+04 0.00000000e+00
- 2 21 182 182 0.67833241e+00 -0.16479499e+01 0.80140242e+03 0.00000000e+00
- 2 21 182 182 0.85050104e+00 -0.13425223e+01 0.19069288e+03 0.00000000e+00
- 2 21 182 182 -0.12548540e+01 -0.28675522e+00 0.32390746e+01 0.00000000e+00
- 2 2203 182 182 0.55193682e+00 -0.51459214e+00 0.25582259e+04 0.77133000e+00
- 2 2 240 240 -0.14009601e+01 0.68432480e+00 -0.19796225e+01 0.00000000e+00
- 2 -2 240 240 0.14009601e+01 -0.68432480e+00 -0.48289921e+00 0.00000000e+00
- 2 2 244 244 0.53044194e+00 0.14414359e+01 -0.22371512e+02 0.00000000e+00
- 2 -2 244 244 -0.53044194e+00 -0.14414359e+01 -0.50761042e+00 0.00000000e+00
- 2 1 252 252 0.49271349e+00 -0.99851797e+00 0.23536640e+01 0.00000000e+00
- 2 -1 252 252 -0.49271349e+00 0.99851797e+00 -0.39185661e+01 0.00000000e+00
- 2 1 258 258 0.85182835e+00 -0.25253552e+00 -0.22307827e+01 0.00000000e+00
- 2 -1 258 258 -0.85182835e+00 0.25253552e+00 0.31872714e+01 0.00000000e+00
- 2 1 265 265 0.11630117e+00 -0.47452585e+00 0.53005182e+00 0.00000000e+00
- 2 -1 265 265 -0.11630117e+00 0.47452585e+00 -0.41695799e+01 0.00000000e+00
- 2 21 270 270 -0.26227793e+02 -0.35533626e+01 -0.10775051e+02 0.00000000e+00
- 2 21 270 270 -0.17309474e+01 -0.14241292e+01 -0.15469253e+01 0.00000000e+00
- 2 21 270 270 0.29491591e+00 -0.17148868e+02 -0.80978175e+01 0.00000000e+00
- 2 21 270 270 -0.27716202e-01 -0.74469951e+00 -0.82016396e-01 0.00000000e+00
- 2 21 270 270 0.81973585e+00 -0.37000114e+01 0.15884102e+01 0.00000000e+00
- 2 21 270 270 0.52836360e+01 -0.44302499e+01 -0.49533667e+00 0.00000000e+00
- 2 21 270 270 0.33228544e+01 -0.98219515e+00 0.40954567e+01 0.00000000e+00
- 2 21 270 270 0.26227793e+02 0.35533626e+01 0.20310362e+02 0.00000000e+00
- 2 21 270 270 0.63047627e+01 0.31821714e+01 0.46431759e+01 0.00000000e+00
- 2 21 270 270 0.37021301e+00 0.59545470e+00 -0.58437965e+00 0.00000000e+00
- 2 21 270 270 0.31026113e+01 0.72532687e+00 -0.37698980e+01 0.00000000e+00
- 2 21 270 270 0.17245930e+01 0.23597220e+01 -0.61165558e+01 0.00000000e+00
- 2 21 270 270 0.24808500e+01 0.93389594e+01 -0.38260638e+02 0.00000000e+00
- 2 21 270 270 -0.29491591e+00 0.17148868e+02 -0.37939692e+02 0.00000000e+00
- 2 21 270 270 -0.11321985e+01 0.70639899e+01 -0.14652795e+02 0.00000000e+00
- 2 21 270 270 -0.99781060e+00 0.88473874e+00 -0.90741812e+00 0.00000000e+00
- 2 21 270 270 -0.24927536e+01 0.60639494e+00 0.12218099e+00 0.00000000e+00
- 2 21 325 325 0.69452798e+01 0.76290310e+00 0.40383212e+00 0.00000000e+00
- 2 21 325 325 0.10247011e+01 0.14392018e+00 0.28934946e+00 0.00000000e+00
- 2 21 325 325 0.10946740e+01 0.34126628e+00 0.21964477e+00 0.00000000e+00
- 2 21 325 325 0.11567227e+01 0.19334492e+01 0.45267750e+01 0.00000000e+00
- 2 21 325 325 0.86203185e+00 0.34527343e+01 0.10983449e+02 0.00000000e+00
- 2 21 325 325 -0.81973585e+00 0.37000114e+01 0.66705881e+01 0.00000000e+00
- 2 21 325 325 -0.52836360e+01 0.44302499e+01 0.98288560e+01 0.00000000e+00
- 2 21 325 325 -0.29854257e+01 0.89834093e+00 0.17712512e+01 0.00000000e+00
- 2 21 325 325 -0.69452798e+01 -0.76290310e+00 0.40181518e+02 0.00000000e+00
- 2 21 325 325 -0.86203185e+00 -0.34527343e+01 0.53645332e+01 0.00000000e+00
- 2 21 325 325 0.57637048e+00 -0.50131499e+01 0.14240730e+02 0.00000000e+00
- 2 21 325 325 -0.14481847e+00 -0.12779994e+01 0.11479974e+02 0.00000000e+00
- 2 21 325 325 -0.13686191e+00 -0.39662134e+00 0.45419785e+01 0.00000000e+00
- 2 21 325 325 0.26422546e+01 -0.23260129e+01 0.38625015e+02 0.00000000e+00
- 2 21 325 325 0.29854257e+01 -0.89834093e+00 0.19542421e+02 0.00000000e+00
- 2 21 325 325 0.42846107e+01 -0.30559267e+00 0.23583852e+02 0.00000000e+00
- 2 21 325 325 0.24801398e+01 0.13144354e+01 0.29231874e+02 0.00000000e+00
- 2 21 325 325 0.24927536e+01 -0.60639494e+00 -0.48896678e+00 0.00000000e+00
- 2 21 368 368 -0.35445248e+01 -0.37587244e+01 0.10772248e+00 0.00000000e+00
- 2 21 368 368 -0.17245930e+01 -0.23597220e+01 -0.42509560e+00 0.00000000e+00
- 2 21 368 368 0.99781060e+00 -0.88473874e+00 -0.26313497e+01 0.00000000e+00
- 2 21 368 368 0.17153732e+01 -0.79009914e+00 -0.58494507e+01 0.00000000e+00
- 2 21 368 368 0.30419853e+01 0.15344516e+01 -0.22167100e+02 0.00000000e+00
- 2 21 368 368 0.17309474e+01 0.14241292e+01 -0.12635585e+02 0.00000000e+00
- 2 21 368 368 0.35445248e+01 0.37587244e+01 -0.34245232e+02 0.00000000e+00
- 2 21 368 368 0.13686191e+00 0.39662134e+00 -0.31326510e+01 0.00000000e+00
- 2 21 389 389 -0.24197507e+01 -0.16753267e+00 -0.54440065e+00 0.00000000e+00
- 2 21 389 389 -0.10946740e+01 -0.34126628e+00 -0.95408415e-01 0.00000000e+00
- 2 21 389 389 0.54815429e+00 -0.75024520e+00 -0.15567475e+02 0.00000000e+00
- 2 21 389 389 0.24197507e+01 0.16753267e+00 -0.41256629e+02 0.00000000e+00
- 2 21 401 401 0.13957701e+01 0.59783314e+00 0.16310439e+02 0.00000000e+00
- 2 21 401 401 -0.13957701e+01 -0.59783314e+00 -0.38525850e+01 0.00000000e+00
- 2 21 413 413 -0.67601909e+00 -0.70989764e+00 0.23343475e+02 0.00000000e+00
- 2 21 413 413 0.51178092e+00 0.18472351e+00 0.18580790e+03 0.00000000e+00
- 2 21 413 413 0.67601909e+00 0.70989764e+00 0.16363493e+03 0.00000000e+00
- 1 2212 0 0 0.65506779e+00 0.25657417e-03 -0.19544578e+04 0.93827000e+00
- 1 -211 0 0 0.10072371e+00 -0.91571955e-01 -0.23036959e+03 0.13957000e+00
- 2 92 124 131 -0.99225128e+01 -0.12891980e+02 -0.47608930e+03 0.14828197e+02
- 2 423 418 419 0.12061111e+01 -0.15770147e+00 -0.53143794e+02 0.20067000e+01
- 1 321 0 0 -0.47110558e+00 -0.40518416e+00 -0.39992037e+01 0.49360000e+00
- 2 3122 420 421 -0.12606750e+01 -0.19311794e+01 -0.52156721e+02 0.11156800e+01
- 1 -2112 0 0 -0.86619390e+00 -0.11551413e+01 -0.43942010e+02 0.93957000e+00
- 2 221 422 423 -0.14658021e+01 -0.71631266e+00 -0.36058104e+02 0.54745000e+00
- 2 111 424 425 -0.18997345e+01 -0.25155824e+01 -0.10397345e+03 0.13498000e+00
- 2 223 426 428 -0.95879524e+00 -0.11967367e+01 -0.31942170e+02 0.78221213e+00
- 2 -411 429 431 -0.42063175e+01 -0.48141422e+01 -0.15087385e+03 0.18693000e+01
- 2 92 133 181 -0.15382951e+02 -0.10567006e+02 -0.36956079e+04 0.18341913e+03
- 2 -423 432 433 0.16446709e+00 0.29909677e+01 -0.12448848e+03 0.20067000e+01
- 2 113 434 435 0.25842560e+00 0.21315603e+00 -0.40156775e+02 0.80061633e+00
- 2 111 436 437 0.47923547e-01 0.45643642e+00 -0.20564843e+02 0.13498000e+00
- 1 -2212 0 0 -0.80602552e+00 0.75809046e+00 -0.10843310e+02 0.93827000e+00
- 1 2112 0 0 -0.34696994e+00 -0.15435107e-01 -0.24038848e+02 0.93957000e+00
- 2 221 438 440 -0.71259712e+00 -0.54702859e+00 -0.11903394e+02 0.54745000e+00
- 2 213 441 442 -0.65809649e+00 -0.47847075e+00 -0.55000467e+01 0.89372222e+00
- 2 223 443 445 -0.23490636e+01 -0.85601025e+00 -0.13891444e+02 0.76202600e+00
- 1 -2212 0 0 -0.11549317e+01 -0.11969777e+01 -0.10577520e+02 0.93827000e+00
- 1 2212 0 0 -0.18248077e+01 -0.12126395e+01 -0.14816979e+02 0.93827000e+00
- 2 223 446 448 -0.57404856e+00 -0.97705338e+00 -0.65029250e+01 0.78530898e+00
- 1 -211 0 0 -0.26113709e+00 -0.11819933e+01 -0.72015726e+01 0.13957000e+00
- 2 -311 449 449 -0.23680714e+00 -0.16682121e+01 -0.82413369e+01 0.49767000e+00
- 2 313 450 451 -0.10726609e+01 -0.28521415e+01 -0.17744862e+02 0.89899824e+00
- 2 113 452 453 -0.19489688e+00 -0.10036969e+01 -0.78756884e+01 0.58525698e+00
- 2 213 454 455 -0.41514677e-01 -0.26882045e+01 -0.13004103e+02 0.77894214e+00
- 1 -2212 0 0 0.29845343e+00 -0.34336487e+01 -0.97788304e+01 0.93827000e+00
- 2 3122 456 457 -0.13045974e+01 -0.30371157e+01 -0.14690118e+02 0.11156800e+01
- 2 -3214 458 459 -0.19811632e+00 -0.13759504e+01 -0.38275239e+01 0.13549359e+01
- 2 223 460 462 -0.15610079e-01 -0.72313786e+00 -0.34120416e+01 0.78242805e+00
- 1 2212 0 0 -0.67793957e+00 -0.15897094e+01 -0.66937105e+01 0.93827000e+00
- 1 -2212 0 0 -0.88193237e+00 0.17067898e+00 -0.53791934e+01 0.93827000e+00
- 1 2112 0 0 0.46455544e-01 0.12861162e+01 -0.17145075e+02 0.93957000e+00
- 1 211 0 0 -0.42092501e+00 0.80910433e+00 -0.11735119e+02 0.13957000e+00
- 2 111 463 464 0.26761337e+00 0.10996811e+00 -0.52078565e+01 0.13498000e+00
- 1 -211 0 0 -0.70342982e-01 0.60339406e+00 -0.47603762e+01 0.13957000e+00
- 2 113 465 466 -0.65131491e+00 0.24202609e+01 -0.59007537e+02 0.73079112e+00
- 2 221 467 469 0.19926177e+00 0.85018513e+00 -0.23145235e+02 0.54745000e+00
- 2 223 470 472 -0.12605053e+00 0.12263353e+01 -0.10742775e+03 0.73557261e+00
- 1 -2112 0 0 -0.55917573e+00 0.12071705e+01 -0.55220333e+02 0.93957000e+00
- 1 211 0 0 0.18455387e-01 0.70270573e+00 -0.53008999e+02 0.13957000e+00
- 2 1114 473 474 -0.69144189e+00 0.12233200e+01 -0.73779739e+02 0.11826707e+01
- 1 211 0 0 -0.48944450e+00 0.38743431e+00 -0.13264445e+02 0.13957000e+00
- 1 -211 0 0 -0.77075195e+00 0.63312103e+00 -0.79080350e+02 0.13957000e+00
- 2 221 475 477 -0.84455274e+00 -0.60786870e+00 -0.31107032e+02 0.54745000e+00
- 2 223 478 480 -0.41354963e+00 -0.22431800e+00 -0.48577112e+02 0.77896467e+00
- 2 221 481 483 0.54524037e+00 -0.53752219e+00 -0.42400652e+02 0.54745000e+00
- 1 211 0 0 -0.59586703e+00 0.58771222e-01 -0.17673601e+02 0.13957000e+00
- 2 -213 484 485 -0.38651079e+00 -0.26046709e+00 -0.39203483e+02 0.73489197e+00
- 2 213 486 487 0.63640770e+00 -0.13581171e+00 -0.91331040e+02 0.75186267e+00
- 2 -3122 488 489 -0.38479511e+00 -0.85821367e-01 -0.54498382e+02 0.11156800e+01
- 2 -311 490 490 0.48452017e+00 -0.34242163e+00 -0.12339770e+03 0.49767000e+00
- 2 1114 491 492 0.19274663e+00 -0.13948325e+00 -0.85321112e+02 0.11993289e+01
- 1 211 0 0 0.35788695e+00 0.63385936e+00 -0.91124726e+02 0.13957000e+00
- 2 111 493 494 -0.15844478e+00 0.64397748e-01 -0.33027700e+02 0.13498000e+00
- 1 -211 0 0 -0.50644766e+00 -0.36405180e-01 -0.52759891e+02 0.13957000e+00
- 2 -313 495 496 0.35065255e+00 0.76086495e-01 -0.39040894e+03 0.88561887e+00
- 1 321 0 0 0.79720381e+00 0.33815771e+00 -0.66565312e+03 0.49360000e+00
- 2 223 497 499 0.33270332e+00 -0.57917920e+00 -0.10452070e+04 0.78622574e+00
- 2 92 183 239 -0.50288999e+02 -0.13682166e+02 0.62484560e+04 0.87977072e+03
- 2 111 500 501 -0.13015792e+02 -0.50139441e+01 -0.81510567e+01 0.13498000e+00
- 2 111 502 503 -0.10033424e+01 -0.57153752e+00 -0.15483327e+01 0.13498000e+00
- 1 211 0 0 -0.77090535e+01 -0.38153295e+01 -0.62711689e+01 0.13957000e+00
- 2 113 504 505 -0.10749917e+01 -0.22317854e+00 -0.10590062e+01 0.72000025e+00
- 2 111 506 507 -0.16996201e+00 0.64126262e+00 -0.64587930e+00 0.13498000e+00
- 1 -211 0 0 -0.31061266e+01 -0.15572212e+01 -0.40102079e+01 0.13957000e+00
- 2 111 508 509 0.19680220e-01 -0.15601053e+00 0.11562601e+01 0.13498000e+00
- 2 113 510 511 -0.62197206e+00 -0.42721862e+00 0.21011594e+01 0.80780745e+00
- 2 223 512 514 -0.71851151e-01 0.92512782e-01 0.48860120e+00 0.78270582e+00
- 2 223 515 517 0.73144742e-01 -0.23480620e+00 0.23767226e+00 0.72610570e+00
- 2 111 518 519 -0.45164547e+00 0.16073282e+00 0.58111663e+00 0.13498000e+00
- 2 213 520 521 -0.33272891e+00 -0.25552731e+00 0.18961586e+01 0.78569005e+00
- 2 111 522 523 -0.19161371e+00 0.25405208e+00 0.52831362e+00 0.13498000e+00
- 2 221 524 526 -0.65218571e+00 -0.81978012e+00 0.24304838e+01 0.54745000e+00
- 1 -211 0 0 -0.30866268e+00 -0.22546137e-01 0.51702143e+01 0.13957000e+00
- 2 323 527 528 -0.13027124e+01 -0.93781459e+00 0.90627140e+01 0.88863715e+00
- 2 -311 529 529 -0.24878408e+01 -0.89268538e+00 0.14272492e+02 0.49767000e+00
- 2 -213 530 531 -0.12898389e+01 0.55996514e+00 0.12957699e+02 0.78093382e+00
- 2 223 532 534 -0.96070387e+00 -0.57514800e+00 0.10367492e+02 0.78728250e+00
- 2 223 535 537 -0.16682323e+01 -0.76040789e+00 0.18704792e+02 0.77715131e+00
- 1 211 0 0 -0.11294912e+01 0.62978512e+00 0.61092351e+01 0.13957000e+00
- 1 -211 0 0 -0.40160799e+00 -0.16533023e+00 0.20197335e+01 0.13957000e+00
- 2 223 538 540 -0.11052254e+01 0.14440852e+01 0.43138183e+02 0.78583327e+00
- 2 113 541 542 -0.63925430e+00 0.12873773e+01 0.24596941e+02 0.81406722e+00
- 1 211 0 0 -0.93217751e+00 0.66716074e+00 0.26807459e+02 0.13957000e+00
- 2 -213 543 544 -0.73798208e+00 -0.40431244e+00 0.26833880e+02 0.59829765e+00
- 2 331 545 547 -0.82486457e+00 0.12889205e+01 0.60963809e+02 0.95763099e+00
- 2 213 548 549 -0.12215339e+01 0.33573889e+00 0.32459959e+02 0.65317277e+00
- 2 331 550 552 -0.84204277e+00 0.68680575e+00 0.13097625e+03 0.95779818e+00
- 1 -211 0 0 -0.21850443e+00 -0.65521767e+00 0.28666310e+02 0.13957000e+00
- 2 2214 553 554 -0.14187985e+01 0.17492833e+00 0.16811043e+03 0.12340247e+01
- 2 113 555 556 0.16552647e+00 0.18131723e+00 0.53314886e+02 0.73811837e+00
- 1 -2112 0 0 -0.14181990e+01 -0.46279707e+00 0.16993087e+03 0.93957000e+00
- 1 -211 0 0 -0.28194268e+00 -0.43690569e+00 0.28227254e+03 0.13957000e+00
- 1 211 0 0 -0.61139183e+00 0.35253056e+00 0.19622823e+03 0.13957000e+00
- 2 -213 557 558 -0.94305711e+00 -0.31928862e+00 0.50834092e+03 0.78461152e+00
- 1 321 0 0 -0.44591548e+00 0.81341652e-01 0.37291783e+03 0.49360000e+00
- 2 -323 559 560 -0.94138947e+00 -0.75139606e+00 0.37604705e+03 0.76711143e+00
- 2 213 561 562 -0.47276010e+00 -0.17668991e+00 0.34495533e+03 0.64734505e+00
- 2 111 563 564 0.24412950e+00 0.10975430e+00 0.15567892e+03 0.13498000e+00
- 1 -211 0 0 0.18153404e+00 -0.10680352e+01 0.30337922e+03 0.13957000e+00
- 2 213 565 566 0.19994117e+00 -0.80246611e+00 0.15350572e+03 0.73685697e+00
- 2 -213 567 568 -0.38757913e+00 0.30833149e+00 0.70933642e+02 0.85509343e+00
- 2 111 569 570 0.84304873e+00 -0.13141520e+00 0.31735789e+02 0.13498000e+00
- 2 213 571 572 0.20186071e-02 -0.29360434e+00 0.37864665e+02 0.79189151e+00
- 2 111 573 574 -0.48610007e+00 -0.46991999e+00 0.26921413e+01 0.13498000e+00
- 2 223 575 577 -0.70818142e-01 0.23744557e+00 0.34185593e+02 0.77311489e+00
- 2 -213 578 579 0.55957091e-01 0.27188643e+00 0.17173383e+02 0.74687710e+00
- 2 113 580 581 -0.47426530e+00 -0.28079167e+00 0.65135764e+01 0.64405255e+00
- 1 211 0 0 0.24108926e+00 -0.42084318e+00 0.16303785e+02 0.13957000e+00
- 2 331 582 583 -0.78386032e-02 -0.17624521e+00 0.58266506e+02 0.95775712e+00
- 2 113 584 585 -0.41416006e+00 0.18695340e+00 0.15226475e+02 0.74443943e+00
- 1 -211 0 0 -0.25417823e+00 0.41511660e+00 0.20848817e+02 0.13957000e+00
- 2 323 586 587 0.42397408e+00 -0.37108287e+00 0.45551289e+03 0.86611428e+00
- 2 -313 588 589 0.20791563e+00 -0.25327326e+00 0.66194579e+03 0.85956593e+00
- 2 2214 590 591 0.19864340e+00 -0.14009979e+00 0.11110911e+04 0.12382977e+01
- 2 111 592 594 -0.45268069e-01 -0.73006840e-02 0.18263864e+03 0.13498000e+00
- 2 92 241 243 0.00000000e+00 0.00000000e+00 -0.24625217e+01 0.33430802e+01
- 2 213 595 596 -0.83811543e-01 -0.11154477e+00 -0.16342604e+01 0.69944875e+00
- 2 311 597 597 0.34257063e+00 -0.13583025e+00 0.57121445e+00 0.49767000e+00
- 1 -321 0 0 -0.25875908e+00 0.24737502e+00 -0.13994758e+01 0.49360000e+00
- 2 92 245 251 0.00000000e+00 0.00000000e+00 -0.22879123e+02 0.73861278e+01
- 2 213 598 599 0.59732606e+00 0.97562021e-01 -0.10318925e+02 0.54846627e+00
- 1 -211 0 0 -0.25539677e+00 0.66083980e+00 -0.53861166e+01 0.13957000e+00
- 2 111 600 601 -0.25472988e+00 0.30283545e+00 -0.22953369e+01 0.13498000e+00
- 2 223 602 604 0.12114281e+00 0.21587922e+00 -0.18817777e+01 0.78082162e+00
- 2 113 605 606 -0.72606085e-01 -0.81016652e+00 -0.93428872e+00 0.72338731e+00
- 1 211 0 0 -0.29480877e+00 -0.35344183e+00 -0.89292085e+00 0.13957000e+00
- 2 -213 607 608 0.15907264e+00 -0.11350814e+00 -0.11697567e+01 0.78486755e+00
- 2 92 253 257 0.00000000e+00 0.00000000e+00 -0.15649020e+01 0.64914848e+01
- 2 113 609 610 0.54525275e+00 -0.50116460e-01 0.11102674e+01 0.86469551e+00
- 1 -211 0 0 0.19539955e+00 -0.66935421e+00 0.59694126e+00 0.13957000e+00
- 1 211 0 0 -0.48326421e+00 -0.50227974e-01 -0.85276956e+00 0.13957000e+00
- 2 -213 611 612 -0.34536954e+00 -0.10400391e+00 -0.63890890e+00 0.10212828e+01
- 1 211 0 0 0.87981445e-01 0.87370256e+00 -0.17804322e+01 0.13957000e+00
- 2 92 259 264 0.00000000e+00 0.00000000e+00 0.95648868e+00 0.56293109e+01
- 2 113 613 614 -0.11517607e+00 0.28198704e+00 0.52455606e+00 0.42899491e+00
- 2 313 615 616 0.67357700e+00 -0.56215087e+00 0.24510676e-01 0.84875497e+00
- 2 -313 617 618 -0.52997318e+00 0.54882751e+00 -0.13757283e+00 0.91150225e+00
- 2 113 619 620 0.26314835e+00 0.30359355e-01 -0.88969330e-01 0.70111672e+00
- 2 113 621 622 0.61910717e-01 0.63495797e-01 -0.26834707e+00 0.69612798e+00
- 2 111 623 624 -0.35348681e+00 -0.36251883e+00 0.90231117e+00 0.13498000e+00
- 2 92 266 269 0.00000000e+00 0.00000000e+00 -0.36395280e+01 0.33091054e+01
- 2 111 625 626 -0.30125412e+00 0.14200277e+00 -0.19642365e+00 0.13498000e+00
- 1 -211 0 0 0.32125995e-01 -0.14268124e+00 -0.18310299e+01 0.13957000e+00
- 2 213 627 628 0.55037359e+00 -0.19965491e+00 -0.24069197e-01 0.85506436e+00
- 2 111 629 630 -0.28124546e+00 0.20033338e+00 -0.15880053e+01 0.13498000e+00
- 2 92 271 324 0.17027830e+02 0.13475473e+02 -0.92468938e+02 0.20223613e+03
- 2 -213 631 632 0.17782442e+01 0.54015148e+01 -0.20723888e+02 0.92129037e+00
- 2 113 633 634 0.57651075e+00 0.14868433e+01 -0.58273162e+01 0.92326515e+00
- 2 113 635 636 0.95370373e-01 0.33646590e+01 -0.96047968e+01 0.69030764e+00
- 2 223 637 639 0.23276900e+00 0.34038163e+01 -0.87741505e+01 0.78260443e+00
- 2 111 640 641 0.31448816e+00 0.19746077e+01 -0.45883594e+01 0.13498000e+00
- 2 213 642 643 -0.50917892e+00 0.34543993e+01 -0.91498560e+01 0.67746287e+00
- 1 -211 0 0 0.36400743e+00 0.21257467e+01 -0.41833658e+01 0.13957000e+00
- 2 111 644 645 -0.51265114e+00 0.18145525e+01 -0.48472147e+01 0.13498000e+00
- 2 323 646 647 -0.11805991e+00 0.48154536e+01 -0.10792640e+02 0.92434626e+00
- 2 3214 648 649 -0.54315838e+00 0.48341440e+01 -0.99375013e+01 0.13903703e+01
- 1 -211 0 0 -0.10825917e+01 0.48062077e+00 -0.97004192e+00 0.13957000e+00
- 2 -1114 650 651 -0.21340326e+00 0.11697346e+01 -0.19184881e+01 0.12767880e+01
- 2 -213 652 653 -0.93042964e+00 0.31333804e+00 -0.37539502e+00 0.74341332e+00
- 2 2224 654 655 -0.58596198e+01 -0.51932918e+00 -0.27040698e+01 0.11664446e+01
- 2 -213 656 657 -0.11141480e+01 -0.27813717e+00 -0.45579771e+00 0.57404928e+00
- 2 -2214 658 659 -0.57075572e+01 -0.64040517e+00 -0.30193661e+01 0.11905395e+01
- 2 113 660 661 -0.15604890e+01 -0.49134702e+00 -0.23351846e+00 0.83703533e+00
- 2 113 662 663 -0.10193587e+02 -0.11486048e+01 -0.35389786e+01 0.76942969e+00
- 1 211 0 0 -0.21333489e+01 -0.95485402e+00 -0.12904663e+01 0.13957000e+00
- 2 -213 664 665 -0.36855970e+00 -0.78004053e-01 -0.16503058e+00 0.78744647e+00
- 2 113 666 667 -0.11064527e+01 -0.19323305e+00 -0.23262087e+00 0.42387410e+00
- 2 113 668 669 -0.29607609e+00 -0.36645691e+01 -0.24643455e+01 0.79803283e+00
- 2 111 670 671 -0.51115071e+00 -0.20706297e+01 -0.81610183e+00 0.13498000e+00
- 1 211 0 0 0.90231149e-01 -0.64534230e-01 -0.27255319e+00 0.13957000e+00
- 1 -211 0 0 0.44892252e+00 -0.25672089e+01 -0.13123339e+01 0.13957000e+00
- 2 213 672 673 -0.78989530e+00 -0.12942587e+01 -0.21149190e+00 0.78487971e+00
- 1 -211 0 0 0.15807707e+00 -0.26650831e+01 -0.93470229e+00 0.13957000e+00
- 2 111 674 675 0.53731747e+00 -0.12804360e+01 0.73323264e-01 0.13498000e+00
- 1 211 0 0 -0.30770103e+00 -0.17955866e+01 -0.23083365e+00 0.13957000e+00
- 2 111 676 677 -0.86755948e-01 -0.38881412e+01 -0.14823279e+01 0.13498000e+00
- 2 221 678 679 0.65308131e+00 -0.52336963e+00 -0.12354110e+00 0.54745000e+00
- 2 313 680 681 0.17568093e+01 -0.18292918e+01 -0.25247900e+00 0.89915294e+00
- 2 -323 682 683 0.72350057e+00 -0.12730256e+01 0.15442902e+00 0.92400754e+00
- 1 321 0 0 0.20741696e+01 -0.20757356e+01 0.86401938e+00 0.49360000e+00
- 2 -311 684 684 0.70453546e+00 -0.34290232e+00 0.89835308e-01 0.49767000e+00
- 2 -213 685 686 0.54570891e+00 -0.70478271e+00 0.49161220e+00 0.60251064e+00
- 2 111 687 688 0.81339482e+00 0.27258492e-01 0.43180136e+00 0.13498000e+00
- 1 211 0 0 -0.53944137e-01 0.11230825e+00 0.27707569e+00 0.13957000e+00
- 2 223 689 690 0.90522235e+01 -0.70926608e+00 0.70726857e+01 0.78248551e+00
- 1 -211 0 0 0.54726492e+01 0.14598376e+01 0.45118023e+01 0.13957000e+00
- 2 213 691 692 0.28869207e+01 0.37163685e+00 0.23417861e+01 0.54111338e+00
- 1 2112 0 0 0.46384948e+01 0.84980256e+00 0.33151974e+01 0.93957000e+00
- 2 -3122 693 694 0.74398599e+01 0.19309305e+01 0.51776353e+01 0.11156800e+01
- 2 221 695 697 0.32151173e+01 0.73328561e+00 0.27769178e+01 0.54745000e+00
- 2 -311 698 698 0.72152366e+00 0.52809031e+00 -0.60363274e-01 0.49767000e+00
- 1 2112 0 0 0.73182457e+00 0.47272223e+00 0.61750916e+00 0.93957000e+00
- 1 -2212 0 0 0.16824146e+01 0.39256680e+00 -0.73506735e+00 0.93827000e+00
- 1 211 0 0 0.10948290e+00 0.36606399e-01 -0.53682628e+00 0.13957000e+00
- 2 -213 699 700 0.49452881e+00 0.71028629e+00 -0.95974870e+00 0.58468570e+00
- 2 111 701 702 0.26436106e+00 -0.11332578e+00 -0.77115332e+00 0.13498000e+00
- 1 211 0 0 0.13209258e+01 0.79815071e+00 -0.83985892e+00 0.13957000e+00
- 2 111 703 704 0.27155188e+00 0.10584590e+00 -0.62467574e+00 0.13498000e+00
- 1 -211 0 0 0.20646749e+00 0.57620474e+00 -0.15623362e+01 0.13957000e+00
- 2 213 705 706 0.65110440e+00 0.89657070e+00 -0.31409648e+01 0.88043038e+00
- 2 92 326 367 0.93671748e+01 0.19375613e+01 0.22099668e+03 0.98331477e+02
- 2 223 707 709 -0.17600663e+01 0.61024692e+00 0.24420273e+01 0.76897609e+00
- 2 113 710 711 -0.84405539e+00 -0.15345622e+00 0.18287120e+01 0.78625955e+00
- 2 213 712 713 -0.48101697e+00 0.37544309e+00 0.11828950e+01 0.60981050e+00
- 2 223 714 716 -0.10298346e+01 0.67350868e+00 0.26517670e+01 0.78055334e+00
- 2 311 717 717 -0.59779796e+00 -0.54164312e+00 0.30853273e+01 0.49767000e+00
- 2 -323 718 719 -0.48450752e+00 0.37140614e-03 0.41713322e+01 0.88663172e+00
- 2 3212 720 721 -0.13963810e+01 -0.27871934e-01 0.78139733e+01 0.11925500e+01
- 2 -3112 722 723 -0.16713999e+01 -0.82470567e+00 0.10898443e+02 0.11974400e+01
- 1 -211 0 0 -0.78396650e+00 0.25783457e+00 0.19546169e+01 0.13957000e+00
- 1 211 0 0 -0.14751837e+00 -0.67192597e-01 0.73010865e+00 0.13957000e+00
- 2 223 724 725 -0.45441789e+00 -0.16778148e+01 0.42338870e+01 0.78540952e+00
- 2 331 726 727 -0.24139324e+00 -0.42409614e+00 0.39026731e+01 0.95778777e+00
- 2 -213 728 729 -0.56853398e+00 -0.10676329e+01 0.67985133e+01 0.72379339e+00
- 1 211 0 0 0.18644709e+00 -0.75641313e+00 0.76040291e+00 0.13957000e+00
- 2 -213 730 731 -0.87204670e+00 -0.18003604e+01 0.86478710e+01 0.86801684e+00
- 2 213 732 733 -0.67681222e-03 -0.49566562e+00 0.27770770e+01 0.78174368e+00
- 2 -213 734 735 0.64270652e-01 -0.23422876e+01 0.94205404e+01 0.73487109e+00
- 2 113 736 737 0.31195472e+00 -0.97068528e+00 0.63540200e+01 0.67169395e+00
- 2 113 738 739 0.12060411e+01 -0.87844808e+00 0.13432185e+02 0.63416623e+00
- 2 111 740 741 0.83638052e-01 -0.54090417e+00 0.68313085e+01 0.13498000e+00
- 1 2212 0 0 0.22439104e+01 -0.10910549e+01 0.20630025e+02 0.93827000e+00
- 1 -2212 0 0 0.14782642e+01 -0.51140098e+00 0.10766766e+02 0.93827000e+00
- 1 211 0 0 0.30470951e+00 0.80383409e-01 0.13483913e+01 0.13957000e+00
- 2 223 742 744 0.38716199e+01 -0.68319313e+00 0.29643516e+02 0.74785853e+00
- 2 -213 745 746 0.19694886e+01 0.29878674e+00 0.13669648e+02 0.74677405e+00
- 2 113 747 748 0.28429329e+00 0.48657081e+00 0.54342010e+01 0.91168751e+00
- 2 213 749 750 0.12833511e+00 -0.40836142e+00 0.15022002e+01 0.78183043e+00
- 1 -211 0 0 0.68034536e+00 0.62626272e+00 0.36287693e+01 0.13957000e+00
- 2 111 751 752 -0.95490813e-01 -0.16679606e+00 0.38545962e+00 0.13498000e+00
- 2 2224 753 754 0.33761685e+00 -0.16595145e+00 0.93927304e+00 0.12746371e+01
- 2 331 755 756 0.18180679e+01 0.41292984e+00 0.19749463e+01 0.95768582e+00
- 2 -3222 757 758 0.12944210e+01 0.36152789e+00 -0.36705311e-01 0.11893700e+01
- 2 -311 759 759 0.77007848e+00 -0.97542145e-01 0.31477188e+00 0.49767000e+00
- 2 313 760 761 0.52423626e+01 0.66688377e+00 0.50363900e+00 0.92958206e+00
- 2 -313 762 763 0.26747804e+01 0.21855134e+00 0.76684409e+00 0.86476375e+00
- 2 -213 764 765 0.80331934e+00 0.32615585e+01 0.87544899e+01 0.68415434e+00
- 1 211 0 0 -0.24075899e-01 0.71518987e+00 0.25110727e+01 0.13957000e+00
- 2 223 766 768 -0.77752407e-01 0.10496571e+01 0.27807995e+01 0.77979637e+00
- 1 2112 0 0 -0.17854440e+00 0.21213082e+01 0.38947453e+01 0.93957000e+00
- 2 -3122 769 770 -0.19231158e+01 0.16081910e+01 0.48580219e+01 0.11156800e+01
- 2 -311 771 771 -0.11511117e+01 0.12448248e+01 0.21090031e+01 0.49767000e+00
- 2 -213 772 773 -0.16030856e+01 0.25610085e+01 0.46991171e+01 0.75612382e+00
- 2 92 369 388 0.58983855e+01 -0.67935767e+00 -0.80978742e+02 0.39447711e+02
- 2 2114 774 775 -0.18589099e+01 -0.21983256e+01 0.38687408e+00 0.12720229e+01
- 2 213 776 777 -0.67121332e+00 -0.10596264e+01 -0.12503967e+01 0.74420346e+00
- 2 -2224 778 779 -0.92657464e+00 -0.80971930e+00 -0.44078735e+00 0.11743074e+01
- 2 221 780 782 0.97175532e-01 -0.12441278e+01 -0.51154359e+00 0.54745000e+00
- 2 221 783 784 -0.11770952e+00 0.92447444e-01 -0.47192896e+00 0.54745000e+00
- 2 213 785 786 -0.34090481e+00 -0.59922861e+00 -0.92617275e+00 0.76350418e+00
- 2 111 787 788 0.19820308e+00 0.93651175e-01 -0.42332035e+00 0.13498000e+00
- 2 311 789 789 0.32406326e+00 -0.53972536e+00 -0.21599434e+01 0.49767000e+00
- 2 -311 790 790 -0.31445834e+00 -0.46122566e-01 -0.83278932e+00 0.49767000e+00
- 2 223 791 793 0.73580556e+00 0.93189073e-01 -0.33548747e+01 0.76321388e+00
- 2 111 794 795 0.55180904e+00 -0.71051682e-01 -0.18664809e+01 0.13498000e+00
- 2 223 796 798 0.17642529e+01 0.37426193e+00 -0.79651592e+01 0.78540437e+00
- 2 111 799 800 0.19497753e+01 0.21119575e+01 -0.17718837e+02 0.13498000e+00
- 2 113 801 802 0.12617768e+01 -0.43537295e-01 -0.71275486e+01 0.75868911e+00
- 1 -211 0 0 0.48283289e+00 0.70942868e+00 -0.95952560e+01 0.13957000e+00
- 2 221 803 804 0.21380445e+01 0.20312716e+01 -0.13614593e+02 0.54745000e+00
- 2 111 805 806 -0.33473143e+00 -0.18083980e+00 -0.18356226e+01 0.13498000e+00
- 2 113 807 808 0.32537315e+00 0.60040045e+00 -0.55743638e+01 0.73128822e+00
- 2 113 809 810 0.53783673e+00 0.10785401e+00 -0.42851841e+01 0.72149056e+00
- 2 213 811 812 0.95938638e-01 -0.10151513e+00 -0.14108136e+01 0.78294391e+00
- 2 92 390 400 -0.54651974e+00 -0.10915115e+01 -0.57463914e+02 0.19075262e+02
- 2 -311 813 813 -0.27951215e-01 0.60936897e+00 -0.77865629e+00 0.49767000e+00
- 2 -213 814 815 0.10941988e+00 -0.12867268e+00 -0.21644306e+01 0.76038857e+00
- 2 323 816 817 -0.10717248e+00 0.19471555e+00 -0.93957193e+00 0.85012212e+00
- 2 -323 818 819 -0.92175482e+00 -0.32758400e+00 -0.11860751e+01 0.88084518e+00
- 2 223 820 822 -0.15320786e+01 -0.96599503e-01 -0.15112585e+01 0.81156456e+00
- 1 211 0 0 0.50601357e+00 -0.17561225e+00 -0.95260360e+00 0.13957000e+00
- 2 223 823 825 -0.10006012e+00 -0.53660864e+00 -0.37161064e+01 0.78416080e+00
- 1 -211 0 0 -0.41976059e+00 0.22335862e+00 -0.18777805e+00 0.13957000e+00
- 1 211 0 0 0.95291246e+00 -0.46549074e+00 -0.24320095e+02 0.13957000e+00
- 2 223 826 828 0.83269012e-01 0.19137449e+00 -0.13521317e+01 0.77842427e+00
- 2 313 829 830 0.91064320e+00 -0.57976130e+00 -0.20355207e+02 0.93570276e+00
- 2 92 402 412 0.00000000e+00 0.00000000e+00 0.12457854e+02 0.16308079e+02
- 2 323 831 832 -0.41347218e+00 -0.20175167e+00 0.33529744e+00 0.89621245e+00
- 2 113 833 834 0.47907545e+00 -0.70702015e+00 0.14120546e+01 0.78447003e+00
- 2 111 835 836 -0.44370580e+00 0.51722897e+00 0.90591902e+00 0.13498000e+00
- 2 -2114 837 838 0.36637425e+00 0.44070164e+00 0.39912661e+01 0.12426886e+01
- 1 -211 0 0 -0.59536554e-01 -0.75107106e-01 0.16645478e+01 0.13957000e+00
- 2 3122 839 840 0.68617709e+00 0.51606561e+00 0.27142156e+01 0.11156800e+01
- 2 313 841 842 0.56639764e-01 -0.22081720e+00 0.10802695e+01 0.96043010e+00
- 1 211 0 0 0.38574503e+00 0.17780668e+00 0.12800339e+01 0.13957000e+00
- 2 -323 843 844 -0.15025950e+01 -0.45148296e+00 -0.14222137e+01 0.90989020e+00
- 2 333 845 846 0.31312881e+00 0.48706593e+00 -0.13613635e-01 0.10200454e+01
- 2 333 847 848 0.13216913e+00 -0.48268974e+00 0.51007705e+00 0.10186202e+01
- 2 92 414 417 0.51178092e+00 0.18472351e+00 0.37278631e+03 0.42222072e+01
- 1 -2112 0 0 -0.23039013e+00 -0.24454209e+00 0.85743607e+02 0.93957000e+00
- 1 2112 0 0 0.20705408e+00 0.21096716e-01 0.46713099e+02 0.93957000e+00
- 2 111 849 850 0.98212422e+00 0.21626436e+00 0.17128068e+03 0.13498000e+00
- 2 113 851 852 -0.44700725e+00 0.19190453e+00 0.69048922e+02 0.73109240e+00
- 2 421 853 854 0.11470286e+01 -0.13560776e+00 -0.50469776e+02 0.18645000e+01
- 2 111 855 856 0.59082439e-01 -0.22093718e-01 -0.26740181e+01 0.13498000e+00
- 1 2212 0 0 -0.11176122e+01 -0.18130494e+01 -0.46733091e+02 0.93827000e+00
- 1 -211 0 0 -0.14306279e+00 -0.11812997e+00 -0.54236306e+01 0.13957000e+00
- 1 22 0 0 -0.51790896e+00 -0.46558639e+00 -0.11131133e+02 0.00000000e+00
- 1 22 0 0 -0.94789313e+00 -0.25072627e+00 -0.24926971e+02 0.00000000e+00
- 1 22 0 0 -0.25289442e+00 -0.38191578e+00 -0.13887097e+02 0.00000000e+00
- 1 22 0 0 -0.16468401e+01 -0.21336666e+01 -0.90086354e+02 0.00000000e+00
- 1 -211 0 0 -0.49503293e+00 -0.50368337e+00 -0.10505256e+02 0.13957000e+00
- 1 211 0 0 0.41909262e-01 -0.12159372e+00 -0.39665419e+01 0.13957000e+00
- 2 111 857 858 -0.50567157e+00 -0.57145961e+00 -0.17470372e+02 0.13498000e+00
- 1 13 0 0 -0.68842269e+00 -0.12063117e+01 -0.31810641e+02 0.10566000e+00
- 1 -14 0 0 -0.24362782e+01 -0.25981145e+01 -0.81685089e+02 0.00000000e+00
- 2 313 859 860 -0.10816166e+01 -0.10097160e+01 -0.37378119e+02 0.84657225e+00
- 2 -421 861 864 0.11845736e+00 0.25647531e+01 -0.10772769e+03 0.18645000e+01
- 1 22 0 0 0.46009736e-01 0.42621466e+00 -0.16760789e+02 0.00000000e+00
- 1 211 0 0 0.23827660e+00 0.47796312e+00 -0.22144386e+02 0.13957000e+00
- 1 -211 0 0 0.20148997e-01 -0.26480709e+00 -0.18012389e+02 0.13957000e+00
- 1 22 0 0 0.74617788e-02 0.39284508e+00 -0.18535670e+02 0.00000000e+00
- 1 22 0 0 0.40461769e-01 0.63591342e-01 -0.20291730e+01 0.00000000e+00
- 2 111 865 866 -0.27786365e+00 -0.34895349e+00 -0.62809001e+01 0.13498000e+00
- 2 111 867 868 -0.15895757e+00 -0.88801772e-01 -0.30800883e+01 0.13498000e+00
- 2 111 869 870 -0.27577590e+00 -0.10927332e+00 -0.25424053e+01 0.13498000e+00
- 1 211 0 0 -0.31551193e+00 -0.69204478e+00 -0.38751025e+01 0.13957000e+00
- 2 111 871 872 -0.34258456e+00 0.21357403e+00 -0.16249442e+01 0.13498000e+00
- 1 211 0 0 -0.10089136e+01 -0.22779859e+00 -0.47091062e+01 0.13957000e+00
- 1 -211 0 0 -0.56052475e+00 -0.33403599e+00 -0.50712743e+01 0.13957000e+00
- 2 111 873 874 -0.77962520e+00 -0.29417567e+00 -0.41110640e+01 0.13498000e+00
- 1 -211 0 0 -0.28741866e+00 -0.52483522e+00 -0.24503823e+01 0.13957000e+00
- 1 211 0 0 -0.60759820e-01 -0.29299502e+00 -0.31596066e+01 0.13957000e+00
- 2 111 875 876 -0.22587007e+00 -0.15922314e+00 -0.89293619e+00 0.13498000e+00
- 2 310 877 878 -0.23680714e+00 -0.16682121e+01 -0.82413369e+01 0.49767000e+00
- 2 311 879 879 -0.51790050e+00 -0.16426488e+01 -0.11649735e+02 0.49767000e+00
- 2 111 880 881 -0.55476040e+00 -0.12094927e+01 -0.60951272e+01 0.13498000e+00
- 1 211 0 0 0.13827305e+00 -0.38622607e+00 -0.38769852e+01 0.13957000e+00
- 1 -211 0 0 -0.33316993e+00 -0.61747082e+00 -0.39987032e+01 0.13957000e+00
- 1 211 0 0 -0.29230829e+00 -0.20158940e+01 -0.87022207e+01 0.13957000e+00
- 2 111 882 883 0.25079362e+00 -0.67231046e+00 -0.43018825e+01 0.13498000e+00
- 1 2112 0 0 -0.10770841e+01 -0.23489959e+01 -0.11776764e+02 0.93957000e+00
- 2 111 884 885 -0.22751332e+00 -0.68811980e+00 -0.29133543e+01 0.13498000e+00
- 2 -3122 886 887 -0.53547026e-01 -0.13198725e+01 -0.33012838e+01 0.11156800e+01
- 2 111 888 889 -0.14456930e+00 -0.56077933e-01 -0.52624005e+00 0.13498000e+00
- 1 -211 0 0 -0.91066238e-01 -0.55964655e+00 -0.23893989e+01 0.13957000e+00
- 1 211 0 0 -0.93208236e-01 -0.35517757e-01 -0.59181042e+00 0.13957000e+00
- 2 111 890 891 0.16866440e+00 -0.12797356e+00 -0.43083232e+00 0.13498000e+00
- 1 22 0 0 0.12677314e+00 -0.18806245e-01 -0.21976445e+01 0.00000000e+00
- 1 22 0 0 0.14084023e+00 0.12877435e+00 -0.30102119e+01 0.00000000e+00
- 1 -211 0 0 0.12386451e+00 0.43754305e+00 -0.99769590e+01 0.13957000e+00
- 1 211 0 0 -0.77517942e+00 0.19827179e+01 -0.49030578e+02 0.13957000e+00
- 2 111 892 893 -0.25505615e-01 0.40832173e+00 -0.10004280e+02 0.13498000e+00
- 2 111 894 895 0.19547072e+00 0.30230782e+00 -0.70251645e+01 0.13498000e+00
- 2 111 896 897 0.29296667e-01 0.13955559e+00 -0.61157907e+01 0.13498000e+00
- 1 -211 0 0 0.18188193e-01 0.41698714e+00 -0.44747324e+02 0.13957000e+00
- 1 211 0 0 -0.13618760e+00 0.58441639e+00 -0.53859995e+02 0.13957000e+00
- 2 111 898 899 -0.80511223e-02 0.22493179e+00 -0.88204286e+01 0.13498000e+00
- 1 2112 0 0 -0.59489369e+00 0.80776199e+00 -0.51515588e+02 0.93957000e+00
- 1 -211 0 0 -0.96548200e-01 0.41555799e+00 -0.22264150e+02 0.13957000e+00
- 1 211 0 0 -0.17697069e+00 -0.15604398e+00 -0.43353349e+01 0.13957000e+00
- 1 -211 0 0 -0.32205032e+00 -0.22853178e+00 -0.13469217e+02 0.13957000e+00
- 2 111 900 901 -0.34553173e+00 -0.22329294e+00 -0.13302479e+02 0.13498000e+00
- 1 -211 0 0 0.47640130e-01 0.13286916e+00 -0.99704670e+01 0.13957000e+00
- 1 211 0 0 -0.19000377e+00 -0.32895253e+00 -0.20556564e+02 0.13957000e+00
- 2 111 902 903 -0.27118599e+00 -0.28234629e-01 -0.18050081e+02 0.13498000e+00
- 2 111 904 905 0.24363468e+00 -0.34501907e+00 -0.22536135e+02 0.13498000e+00
- 2 111 906 907 0.37726496e-01 -0.36959887e-01 -0.82043802e+01 0.13498000e+00
- 2 111 908 909 0.26387919e+00 -0.15554323e+00 -0.11660137e+02 0.13498000e+00
- 1 -211 0 0 -0.23976002e+00 0.15061979e+00 -0.78728993e+01 0.13957000e+00
- 2 111 910 911 -0.14675077e+00 -0.41108688e+00 -0.31330584e+02 0.13498000e+00
- 1 211 0 0 0.52205451e+00 0.27416489e-01 -0.83413162e+02 0.13957000e+00
- 2 111 912 913 0.11435318e+00 -0.16322820e+00 -0.79178779e+01 0.13498000e+00
- 1 -2212 0 0 -0.37107324e+00 -0.18526858e-01 -0.43265245e+02 0.93827000e+00
- 1 211 0 0 -0.13721876e-01 -0.67294509e-01 -0.11233136e+02 0.13957000e+00
- 1 130 0 0 0.48452017e+00 -0.34242163e+00 -0.12339770e+03 0.49767000e+00
- 1 2112 0 0 0.11557284e-01 -0.36028788e-01 -0.58166183e+02 0.93957000e+00
- 1 -211 0 0 0.18118935e+00 -0.10345446e+00 -0.27154929e+02 0.13957000e+00
- 1 22 0 0 0.70461091e-03 0.30479008e-01 -0.13692149e+02 0.00000000e+00
- 1 22 0 0 -0.15914939e+00 0.33918740e-01 -0.19335551e+02 0.00000000e+00
- 1 -321 0 0 0.42658699e+00 0.24655879e+00 -0.32641166e+03 0.49360000e+00
- 1 211 0 0 -0.75934441e-01 -0.17047229e+00 -0.63997276e+02 0.13957000e+00
- 1 -211 0 0 0.89951731e-02 -0.32320592e+00 -0.40616451e+03 0.13957000e+00
- 1 211 0 0 0.20517549e+00 -0.32362580e+00 -0.54919055e+03 0.13957000e+00
- 2 111 914 916 0.11853266e+00 0.67652518e-01 -0.89851980e+02 0.13498000e+00
- 1 22 0 0 -0.75109007e+01 -0.29460063e+01 -0.46624913e+01 0.00000000e+00
- 1 22 0 0 -0.55048911e+01 -0.20679378e+01 -0.34885654e+01 0.00000000e+00
- 1 22 0 0 -0.91592689e+00 -0.47556931e+00 -0.13961717e+01 0.00000000e+00
- 1 22 0 0 -0.87415545e-01 -0.95968204e-01 -0.15216099e+00 0.00000000e+00
- 1 -211 0 0 -0.46791993e+00 -0.42542126e+00 -0.63254276e+00 0.13957000e+00
- 1 211 0 0 -0.60707177e+00 0.20224272e+00 -0.42646346e+00 0.13957000e+00
- 1 22 0 0 -0.10340170e+00 0.34211056e+00 -0.43820743e+00 0.00000000e+00
- 1 22 0 0 -0.66560309e-01 0.29915205e+00 -0.20767187e+00 0.00000000e+00
- 1 22 0 0 0.26938704e-01 -0.16013544e+00 0.70947136e+00 0.00000000e+00
- 1 22 0 0 -0.72584843e-02 0.41249104e-02 0.44678873e+00 0.00000000e+00
- 1 211 0 0 0.14135763e+00 0.34435035e-01 0.34827285e+00 0.13957000e+00
- 1 -211 0 0 -0.76332970e+00 -0.46165365e+00 0.17528866e+01 0.13957000e+00
- 1 -211 0 0 -0.67585837e-01 0.50249831e-02 0.20623973e+00 0.13957000e+00
- 1 211 0 0 -0.14862780e+00 -0.90824176e-01 -0.66776297e-01 0.13957000e+00
- 2 111 917 918 0.14436249e+00 0.17831197e+00 0.34913776e+00 0.13498000e+00
- 1 211 0 0 -0.13804921e+00 -0.20585485e+00 0.17309815e+00 0.13957000e+00
- 1 -211 0 0 0.99818461e-01 -0.16810371e+00 0.15323883e-01 0.13957000e+00
- 2 111 919 920 0.11137549e+00 0.13915236e+00 0.49250225e-01 0.13498000e+00
- 1 22 0 0 -0.23915739e+00 0.12395433e+00 0.23467717e+00 0.00000000e+00
- 1 22 0 0 -0.21248808e+00 0.36778491e-01 0.34643946e+00 0.00000000e+00
- 1 211 0 0 -0.52232421e+00 -0.30262374e+00 0.15970630e+01 0.13957000e+00
- 2 111 921 922 0.18959530e+00 0.47096428e-01 0.29909562e+00 0.13498000e+00
- 1 22 0 0 -0.84468212e-01 0.11137501e+00 0.35946379e+00 0.00000000e+00
- 1 22 0 0 -0.10714549e+00 0.14267707e+00 0.16884983e+00 0.00000000e+00
- 2 111 923 924 -0.18493770e+00 -0.12612972e+00 0.49317690e+00 0.13498000e+00
- 2 111 925 926 -0.18045332e+00 -0.20405331e+00 0.41631336e+00 0.13498000e+00
- 2 111 927 928 -0.28679470e+00 -0.48959708e+00 0.15209935e+01 0.13498000e+00
- 2 311 929 929 -0.11491033e+01 -0.53180918e+00 0.61769639e+01 0.49767000e+00
- 1 211 0 0 -0.15360909e+00 -0.40600541e+00 0.28857501e+01 0.13957000e+00
- 2 310 930 931 -0.24878408e+01 -0.89268538e+00 0.14272492e+02 0.49767000e+00
- 1 -211 0 0 -0.42954276e+00 0.65842049e-04 0.66252086e+01 0.13957000e+00
- 2 111 932 933 -0.86029616e+00 0.55989930e+00 0.63324900e+01 0.13498000e+00
- 1 211 0 0 -0.40567120e+00 -0.45824578e+00 0.45424533e+01 0.13957000e+00
- 1 -211 0 0 -0.23299620e+00 -0.16517292e+00 0.40298631e+01 0.13957000e+00
- 2 111 934 935 -0.32203647e+00 0.48270701e-01 0.17951754e+01 0.13498000e+00
- 1 211 0 0 -0.53172666e+00 -0.34075681e+00 0.67251660e+01 0.13957000e+00
- 1 -211 0 0 -0.14565072e+00 -0.14624077e+00 0.12427488e+01 0.13957000e+00
- 2 111 936 937 -0.99085494e+00 -0.27341030e+00 0.10736878e+02 0.13498000e+00
- 1 211 0 0 -0.40528770e+00 0.77083053e+00 0.15338302e+02 0.13957000e+00
- 1 -211 0 0 -0.30870873e+00 0.47668059e+00 0.17858409e+02 0.13957000e+00
- 2 111 938 939 -0.39122900e+00 0.19657406e+00 0.99414725e+01 0.13498000e+00
- 1 211 0 0 0.14904984e+00 0.28541066e+00 0.39239010e+01 0.13957000e+00
- 1 -211 0 0 -0.78830414e+00 0.10019667e+01 0.20673040e+02 0.13957000e+00
- 1 -211 0 0 -0.42991204e+00 -0.44385980e+00 0.21358813e+02 0.13957000e+00
- 2 111 940 941 -0.30807004e+00 0.39547354e-01 0.54750670e+01 0.13498000e+00
- 2 111 942 943 -0.16188723e+00 0.99177682e-01 0.56237614e+01 0.13498000e+00
- 2 111 944 945 -0.81057498e-01 0.11207507e+00 0.44086339e+01 0.13498000e+00
- 2 221 946 947 -0.58191984e+00 0.10776678e+01 0.50931414e+02 0.54745000e+00
- 1 211 0 0 -0.59048576e+00 -0.60505905e-01 0.10045895e+02 0.13957000e+00
- 2 111 948 949 -0.63104809e+00 0.39624480e+00 0.22414064e+02 0.13498000e+00
- 2 111 950 951 -0.15789219e-01 0.83044152e-01 0.16283002e+02 0.13498000e+00
- 2 111 952 953 -0.20544410e+00 0.33092559e+00 0.32680802e+02 0.13498000e+00
- 2 221 954 956 -0.62080944e+00 0.27283601e+00 0.82012450e+02 0.54745000e+00
- 1 2212 0 0 -0.10619392e+01 -0.35818820e-01 0.11315258e+03 0.93827000e+00
- 2 111 957 958 -0.35685927e+00 0.21074715e+00 0.54957853e+02 0.13498000e+00
- 1 -211 0 0 -0.14526965e+00 0.15144392e+00 0.41399712e+02 0.13957000e+00
- 1 211 0 0 0.31079612e+00 0.29873307e-01 0.11915174e+02 0.13957000e+00
- 1 -211 0 0 -0.85484435e+00 -0.40889488e+00 0.30658451e+03 0.13957000e+00
- 2 111 959 960 -0.88212765e-01 0.89606262e-01 0.20175641e+03 0.13498000e+00
- 1 -321 0 0 -0.85183463e+00 -0.73907831e+00 0.35257969e+03 0.49360000e+00
- 2 111 961 962 -0.89554833e-01 -0.12317743e-01 0.23467356e+02 0.13498000e+00
- 1 211 0 0 -0.50152492e+00 -0.30520665e+00 0.21751588e+03 0.13957000e+00
- 2 111 963 964 0.28764824e-01 0.12851674e+00 0.12743944e+03 0.13498000e+00
- 1 22 0 0 0.23816214e+00 0.13032294e+00 0.13214677e+03 0.00000000e+00
- 1 22 0 0 0.59673593e-02 -0.20568644e-01 0.23532145e+02 0.00000000e+00
- 1 211 0 0 -0.23477607e+00 -0.15298538e+00 0.39954859e+02 0.13957000e+00
- 2 111 965 966 0.43471725e+00 -0.64948073e+00 0.11355086e+03 0.13498000e+00
- 1 -211 0 0 -0.45147154e+00 0.51635546e+00 0.58896332e+02 0.13957000e+00
- 2 111 967 968 0.63892405e-01 -0.20802398e+00 0.12037310e+02 0.13498000e+00
- 1 22 0 0 0.36115189e-01 -0.30094069e-01 0.25152305e+01 0.00000000e+00
- 1 22 0 0 0.80693354e+00 -0.10132113e+00 0.29220559e+02 0.00000000e+00
- 1 211 0 0 -0.22078878e+00 -0.41858667e+00 0.30100519e+02 0.13957000e+00
- 2 111 969 970 0.22280739e+00 0.12498233e+00 0.77641465e+01 0.13498000e+00
- 1 22 0 0 -0.15638511e+00 -0.10768168e+00 0.97838798e+00 0.00000000e+00
- 1 22 0 0 -0.32971496e+00 -0.36223831e+00 0.17137533e+01 0.00000000e+00
- 1 211 0 0 -0.23631570e+00 0.21467890e+00 0.11119167e+02 0.13957000e+00
- 1 -211 0 0 0.30106680e-01 0.76981903e-01 0.17294396e+02 0.13957000e+00
- 2 111 971 972 0.13539087e+00 -0.54215237e-01 0.57720310e+01 0.13498000e+00
- 1 -211 0 0 -0.14085416e+00 -0.14231488e+00 0.97750408e+01 0.13957000e+00
- 2 111 973 974 0.19681125e+00 0.41420131e+00 0.73983418e+01 0.13498000e+00
- 1 211 0 0 -0.94359557e-01 -0.33362079e+00 0.18674014e+01 0.13957000e+00
- 1 -211 0 0 -0.37990574e+00 0.52829116e-01 0.46461751e+01 0.13957000e+00
- 1 22 0 0 0.37820860e-01 0.49532694e-02 0.43646328e+00 0.00000000e+00
- 2 113 975 976 -0.45659463e-01 -0.18119848e+00 0.57830042e+02 0.84496541e+00
- 1 -211 0 0 -0.14256736e-01 -0.79867822e-01 0.79228452e+00 0.13957000e+00
- 1 211 0 0 -0.39990332e+00 0.26682122e+00 0.14434190e+02 0.13957000e+00
- 2 311 977 977 0.56642122e-01 -0.38780458e+00 0.25559165e+03 0.49767000e+00
- 1 211 0 0 0.36733196e+00 0.16721710e-01 0.19992124e+03 0.13957000e+00
- 2 -311 978 978 -0.33585902e-01 -0.35384194e+00 0.38942037e+03 0.49767000e+00
- 2 111 979 980 0.24150154e+00 0.10056869e+00 0.27252542e+03 0.13498000e+00
- 1 2212 0 0 0.19503185e+00 0.10326763e+00 0.93480507e+03 0.93827000e+00
- 2 111 981 982 0.36115561e-02 -0.24336741e+00 0.17628606e+03 0.13498000e+00
- 1 22 0 0 -0.73052299e-01 0.12180874e-01 0.54514425e+02 0.00000000e+00
- 1 -11 0 0 0.15523747e-01 -0.18130601e-01 0.71647508e+02 0.51000000e-03
- 1 11 0 0 0.12260483e-01 -0.13509574e-02 0.56476710e+02 0.51000000e-03
- 1 211 0 0 -0.63573590e-01 0.11337388e+00 -0.80126143e-01 0.13957000e+00
- 2 111 983 984 -0.20237953e-01 -0.22491865e+00 -0.15541342e+01 0.13498000e+00
- 1 130 0 0 0.34257063e+00 -0.13583025e+00 0.57121445e+00 0.49767000e+00
- 1 211 0 0 0.63269031e+00 0.15161035e+00 -0.86723231e+01 0.13957000e+00
- 2 111 985 986 -0.35364244e-01 -0.54048325e-01 -0.16466020e+01 0.13498000e+00
- 1 22 0 0 -0.56461963e-02 -0.74313740e-02 -0.20667664e+00 0.00000000e+00
- 1 22 0 0 -0.24908368e+00 0.31026683e+00 -0.20886602e+01 0.00000000e+00
- 1 -211 0 0 0.11014928e+00 -0.34109536e-01 -0.18286845e+00 0.13957000e+00
- 1 211 0 0 0.19629121e+00 0.95598826e-02 -0.58813540e+00 0.13957000e+00
- 2 111 987 988 -0.18529768e+00 0.24042887e+00 -0.11107739e+01 0.13498000e+00
- 1 -211 0 0 -0.34393984e+00 -0.39177746e+00 -0.64623929e+00 0.13957000e+00
- 1 211 0 0 0.27133376e+00 -0.41838906e+00 -0.28804943e+00 0.13957000e+00
- 1 -211 0 0 -0.27822255e+00 -0.99809553e-01 -0.32299766e+00 0.13957000e+00
- 2 111 989 990 0.43729519e+00 -0.13698588e-01 -0.84675905e+00 0.13498000e+00
- 1 -211 0 0 0.18122728e+00 0.58584497e-01 -0.82771220e-01 0.13957000e+00
- 1 211 0 0 0.36402548e+00 -0.10870096e+00 0.11930386e+01 0.13957000e+00
- 1 -211 0 0 -0.32594563e+00 -0.15572022e+00 0.17904867e+00 0.13957000e+00
- 2 111 991 992 -0.19423903e-01 0.51716307e-01 -0.81795757e+00 0.13498000e+00
- 1 211 0 0 0.10618157e+00 0.10213153e+00 0.15272328e+00 0.13957000e+00
- 1 -211 0 0 -0.22135764e+00 0.17985551e+00 0.37183278e+00 0.13957000e+00
- 1 321 0 0 0.65085116e+00 -0.37311075e+00 0.20816700e+00 0.49360000e+00
- 1 -211 0 0 0.22725843e-01 -0.18904012e+00 -0.18365633e+00 0.13957000e+00
- 2 -311 993 993 -0.91751227e-01 0.52470279e+00 -0.10151273e+00 0.49767000e+00
- 2 111 994 995 -0.43822196e+00 0.24124719e-01 -0.36060102e-01 0.13498000e+00
- 1 211 0 0 0.24517403e+00 0.26451042e+00 0.12642546e+00 0.13957000e+00
- 1 -211 0 0 0.17974315e-01 -0.23415107e+00 -0.21539480e+00 0.13957000e+00
- 1 211 0 0 0.57513316e-01 -0.43204076e-01 -0.46309711e+00 0.13957000e+00
- 1 -211 0 0 0.43974013e-02 0.10669987e+00 0.19475004e+00 0.13957000e+00
- 1 22 0 0 -0.30109766e+00 -0.31367542e+00 0.65671673e+00 0.00000000e+00
- 1 22 0 0 -0.52389144e-01 -0.48843408e-01 0.24559444e+00 0.00000000e+00
- 1 22 0 0 -0.10297313e-01 0.28829898e-01 0.13366363e-01 0.00000000e+00
- 1 22 0 0 -0.29095681e+00 0.11317287e+00 -0.20979001e+00 0.00000000e+00
- 1 211 0 0 0.52142003e+00 0.13830779e+00 -0.24625866e+00 0.13957000e+00
- 2 111 996 997 0.28953560e-01 -0.33796270e+00 0.22218947e+00 0.13498000e+00
- 1 22 0 0 -0.16885976e+00 0.57184262e-01 -0.59387397e+00 0.00000000e+00
- 1 22 0 0 -0.11238570e+00 0.14314911e+00 -0.99413136e+00 0.00000000e+00
- 1 -211 0 0 0.87460548e+00 0.32474564e+01 -0.13648549e+02 0.13957000e+00
- 2 111 998 999 0.90363870e+00 0.21540584e+01 -0.70753392e+01 0.13498000e+00
- 1 -211 0 0 0.65410522e+00 0.67467584e+00 -0.22977737e+01 0.13957000e+00
- 1 211 0 0 -0.77594462e-01 0.81216748e+00 -0.35295424e+01 0.13957000e+00
- 1 -211 0 0 0.89213320e-01 0.31139065e+01 -0.83385949e+01 0.13957000e+00
- 1 211 0 0 0.61570530e-02 0.25075249e+00 -0.12662019e+01 0.13957000e+00
- 1 -211 0 0 0.26031174e+00 0.12262085e+01 -0.33422186e+01 0.13957000e+00
- 1 211 0 0 -0.21691726e-01 0.16105271e+01 -0.44211588e+01 0.13957000e+00
- 2 111 1000 1001 -0.58510114e-02 0.56708070e+00 -0.10107731e+01 0.13498000e+00
- 1 22 0 0 0.14269207e+00 0.68084616e+00 -0.17341914e+01 0.00000000e+00
- 1 22 0 0 0.17179608e+00 0.12937616e+01 -0.28541680e+01 0.00000000e+00
- 1 211 0 0 -0.10867800e+00 0.34059620e+00 -0.14635545e+01 0.13957000e+00
- 2 111 1002 1003 -0.40050092e+00 0.31138031e+01 -0.76863015e+01 0.13498000e+00
- 1 22 0 0 -0.37202802e-01 0.52210905e-01 -0.19663332e+00 0.00000000e+00
- 1 22 0 0 -0.47544834e+00 0.17623416e+01 -0.46505814e+01 0.00000000e+00
- 2 311 1004 1004 0.21568276e+00 0.22798732e+01 -0.51370389e+01 0.49767000e+00
- 1 211 0 0 -0.33374267e+00 0.25355804e+01 -0.56556014e+01 0.13957000e+00
- 2 3122 1005 1006 -0.46746261e+00 0.32533564e+01 -0.67948921e+01 0.11156800e+01
- 2 111 1007 1008 -0.75695769e-01 0.15807875e+01 -0.31426092e+01 0.13498000e+00
- 1 -2112 0 0 0.27387368e-01 0.10830495e+01 -0.14357821e+01 0.93957000e+00
- 1 211 0 0 -0.24079063e+00 0.86685083e-01 -0.48270596e+00 0.13957000e+00
- 1 -211 0 0 0.84774024e-01 0.29056930e-01 -0.80774114e-01 0.13957000e+00
- 2 111 1009 1010 -0.10152037e+01 0.28428111e+00 -0.29462090e+00 0.13498000e+00
- 1 2212 0 0 -0.48979581e+01 -0.59457724e+00 -0.22481894e+01 0.93827000e+00
- 1 211 0 0 -0.96166167e+00 0.75248059e-01 -0.45588048e+00 0.13957000e+00
- 1 -211 0 0 -0.33151178e+00 0.13839293e+00 -0.10568029e+00 0.13957000e+00
- 2 111 1011 1012 -0.78263618e+00 -0.41653009e+00 -0.35011743e+00 0.13498000e+00
- 1 -2212 0 0 -0.50739388e+01 -0.64446678e+00 -0.25169796e+01 0.93827000e+00
- 2 111 1013 1014 -0.63361840e+00 0.40616065e-02 -0.50238646e+00 0.13498000e+00
- 1 -211 0 0 -0.60372681e+00 0.57211275e-01 0.20833329e+00 0.13957000e+00
- 1 211 0 0 -0.95676216e+00 -0.54855829e+00 -0.44185175e+00 0.13957000e+00
- 1 -211 0 0 -0.75530606e+01 -0.10166793e+01 -0.28970551e+01 0.13957000e+00
- 1 211 0 0 -0.26405267e+01 -0.13192551e+00 -0.64192348e+00 0.13957000e+00
- 1 -211 0 0 -0.14374069e+00 -0.39653452e+00 -0.17022205e+00 0.13957000e+00
- 2 111 1015 1016 -0.22481900e+00 0.31853046e+00 0.51914691e-02 0.13498000e+00
- 1 -211 0 0 -0.19025342e+00 -0.11421906e+00 0.73784606e-02 0.13957000e+00
- 1 211 0 0 -0.91619928e+00 -0.79013997e-01 -0.23999933e+00 0.13957000e+00
- 1 -211 0 0 -0.43506622e+00 -0.24529268e+01 -0.19488133e+01 0.13957000e+00
- 1 211 0 0 0.13899013e+00 -0.12116422e+01 -0.51553223e+00 0.13957000e+00
- 1 22 0 0 -0.36602181e+00 -0.13118416e+01 -0.46660878e+00 0.00000000e+00
- 1 22 0 0 -0.14512889e+00 -0.75878816e+00 -0.34949305e+00 0.00000000e+00
- 1 211 0 0 -0.23675775e-01 -0.22446179e+00 -0.29274457e+00 0.13957000e+00
- 2 111 1017 1018 -0.76621953e+00 -0.10697969e+01 0.81252665e-01 0.13498000e+00
- 1 22 0 0 -0.21416743e-03 -0.51194340e-01 -0.12512617e-01 0.00000000e+00
- 1 22 0 0 0.53753164e+00 -0.12292417e+01 0.85835881e-01 0.00000000e+00
- 1 22 0 0 0.24807735e-01 -0.11155219e+01 -0.46319216e+00 0.00000000e+00
- 1 22 0 0 -0.11156368e+00 -0.27726193e+01 -0.10191358e+01 0.00000000e+00
- 1 22 0 0 0.32696472e+00 -0.50716742e+00 0.10041456e+00 0.00000000e+00
- 1 22 0 0 0.32611659e+00 -0.16202215e-01 -0.22395566e+00 0.00000000e+00
- 1 321 0 0 0.98685641e+00 -0.70391090e+00 -0.24773350e+00 0.49360000e+00
- 1 -211 0 0 0.76995292e+00 -0.11253809e+01 -0.47455008e-02 0.13957000e+00
- 1 -321 0 0 0.61243374e+00 -0.59017204e+00 -0.10106686e+00 0.49360000e+00
- 2 111 1019 1020 0.11106684e+00 -0.68285359e+00 0.25549588e+00 0.13498000e+00
- 2 310 1021 1022 0.70453546e+00 -0.34290232e+00 0.89835308e-01 0.49767000e+00
- 1 -211 0 0 0.14617954e+00 0.41015746e-01 0.26265171e-01 0.13957000e+00
- 2 111 1023 1024 0.39952937e+00 -0.74579845e+00 0.46534703e+00 0.13498000e+00
- 1 22 0 0 0.41554577e+00 -0.36003701e-01 0.16833832e+00 0.00000000e+00
- 1 22 0 0 0.39784905e+00 0.63262193e-01 0.26346304e+00 0.00000000e+00
- 1 22 0 0 0.72675465e+01 -0.28704852e+00 0.57288498e+01 0.00000000e+00
- 2 111 1025 1026 0.17846769e+01 -0.42221756e+00 0.13438359e+01 0.13498000e+00
- 1 211 0 0 0.24262935e+01 0.20170874e+00 0.20634755e+01 0.13957000e+00
- 2 111 1027 1028 0.46062720e+00 0.16992810e+00 0.27831058e+00 0.13498000e+00
- 1 -2112 0 0 0.64798600e+01 0.16135949e+01 0.45879683e+01 0.93957000e+00
- 2 111 1029 1031 0.95999991e+00 0.31733561e+00 0.58966697e+00 0.13498000e+00
- 1 22 0 0 0.52687656e+00 0.83778781e-01 0.64708318e+00 0.00000000e+00
- 1 211 0 0 0.17978314e+01 0.47769947e+00 0.15079571e+01 0.13957000e+00
- 1 -211 0 0 0.89040932e+00 0.17180736e+00 0.62187746e+00 0.13957000e+00
- 1 130 0 0 0.72152366e+00 0.52809031e+00 -0.60363274e-01 0.49767000e+00
- 1 -211 0 0 0.44061232e+00 0.24482939e+00 -0.31670245e+00 0.13957000e+00
- 2 111 1032 1033 0.53916490e-01 0.46545690e+00 -0.64304625e+00 0.13498000e+00
- 1 22 0 0 0.13279145e+00 -0.10104036e+00 -0.56541763e+00 0.00000000e+00
- 1 22 0 0 0.13156960e+00 -0.12285420e-01 -0.20573569e+00 0.00000000e+00
- 1 22 0 0 0.86102958e-01 0.95868252e-01 -0.32797689e+00 0.00000000e+00
- 1 22 0 0 0.18544893e+00 0.99776497e-02 -0.29669884e+00 0.00000000e+00
- 1 211 0 0 0.74815015e+00 0.96954501e+00 -0.26898583e+01 0.13957000e+00
- 2 111 1034 1035 -0.97045748e-01 -0.72974308e-01 -0.45110649e+00 0.13498000e+00
- 1 211 0 0 -0.11105975e+01 0.34891785e+00 0.14746968e+01 0.13957000e+00
- 1 -211 0 0 -0.54097903e+00 0.33051264e+00 0.81185172e+00 0.13957000e+00
- 2 111 1036 1037 -0.10848972e+00 -0.69183569e-01 0.15547879e+00 0.13498000e+00
- 1 211 0 0 -0.55360168e+00 -0.30220926e+00 0.16463392e+01 0.13957000e+00
- 1 -211 0 0 -0.29045371e+00 0.14875304e+00 0.18237287e+00 0.13957000e+00
- 1 211 0 0 -0.54760838e+00 0.30416371e+00 0.11101811e+01 0.13957000e+00
- 2 111 1038 1039 0.66591404e-01 0.71279381e-01 0.72713825e-01 0.13498000e+00
- 1 211 0 0 -0.86221787e+00 0.38858425e+00 0.14768586e+01 0.13957000e+00
- 1 -211 0 0 -0.41702133e-01 0.24107402e+00 0.65171375e+00 0.13957000e+00
- 2 111 1040 1041 -0.12591464e+00 0.43850417e-01 0.52319458e+00 0.13498000e+00
- 1 130 0 0 -0.59779796e+00 -0.54164312e+00 0.30853273e+01 0.49767000e+00
- 2 -311 1042 1042 -0.56833344e+00 -0.99884064e-01 0.26100989e+01 0.49767000e+00
- 1 -211 0 0 0.83825924e-01 0.10025547e+00 0.15612334e+01 0.13957000e+00
- 2 3122 1043 1044 -0.13805802e+01 0.22035283e-01 0.74165696e+01 0.11156800e+01
- 1 22 0 0 -0.15800788e-01 -0.49907217e-01 0.39740369e+00 0.00000000e+00
- 1 -2112 0 0 -0.16035893e+01 -0.68048594e+00 0.10243621e+02 0.93957000e+00
- 1 211 0 0 -0.67810559e-01 -0.14421974e+00 0.65482141e+00 0.13957000e+00
- 1 22 0 0 0.17081619e+00 -0.69174138e+00 0.12866069e+01 0.00000000e+00
- 2 111 1045 1046 -0.62523407e+00 -0.98607340e+00 0.29472801e+01 0.13498000e+00
- 1 22 0 0 0.26067793e-01 -0.72242382e-01 0.56472297e+00 0.00000000e+00
- 2 113 1047 1048 -0.26746104e+00 -0.35185376e+00 0.33379501e+01 0.87167422e+00
- 1 -211 0 0 -0.35846751e+00 -0.39546652e+00 0.15381672e+01 0.13957000e+00
- 2 111 1049 1050 -0.21006647e+00 -0.67216640e+00 0.52603461e+01 0.13498000e+00
- 1 -211 0 0 -0.95761194e+00 -0.17708990e+01 0.79839564e+01 0.13957000e+00
- 2 111 1051 1052 0.85565248e-01 -0.29461447e-01 0.66391461e+00 0.13498000e+00
- 1 211 0 0 0.32680314e-01 -0.46822878e+00 0.75281626e+00 0.13957000e+00
- 2 111 1053 1054 -0.33357127e-01 -0.27436848e-01 0.20242608e+01 0.13498000e+00
- 1 -211 0 0 0.25833888e+00 -0.15353529e+01 0.51172179e+01 0.13957000e+00
- 2 111 1055 1056 -0.19406822e+00 -0.80693473e+00 0.43033225e+01 0.13498000e+00
- 1 211 0 0 0.16714322e+00 -0.91470263e+00 0.58441564e+01 0.13957000e+00
- 1 -211 0 0 0.14481150e+00 -0.55982648e-01 0.50986366e+00 0.13957000e+00
- 1 211 0 0 0.31704190e+00 -0.90642506e-03 0.38149423e+01 0.13957000e+00
- 1 -211 0 0 0.88899924e+00 -0.87754165e+00 0.96172426e+01 0.13957000e+00
- 1 22 0 0 0.74112927e-01 -0.12889349e+00 0.15193338e+01 0.00000000e+00
- 1 22 0 0 0.95251246e-02 -0.41201068e+00 0.53119747e+01 0.00000000e+00
- 1 211 0 0 0.16356344e+01 -0.14207370e+00 0.11650900e+02 0.13957000e+00
- 1 -211 0 0 0.23244161e+00 -0.12229646e+00 0.20131094e+01 0.13957000e+00
- 2 111 1057 1058 0.20035439e+01 -0.41882297e+00 0.15979507e+02 0.13498000e+00
- 1 -211 0 0 0.15580058e+01 0.22332612e+00 0.84791237e+01 0.13957000e+00
- 2 111 1059 1060 0.41148280e+00 0.75460620e-01 0.51905240e+01 0.13498000e+00
- 1 -211 0 0 0.19643484e+00 0.60344652e+00 0.20921802e+01 0.13957000e+00
- 1 211 0 0 0.87858452e-01 -0.11687572e+00 0.33420208e+01 0.13957000e+00
- 1 211 0 0 0.38560043e+00 -0.40862042e+00 0.11702171e+01 0.13957000e+00
- 2 111 1061 1062 -0.25726531e+00 0.25899743e-03 0.33198308e+00 0.13498000e+00
- 1 22 0 0 -0.11041427e+00 -0.68970982e-01 0.16867928e+00 0.00000000e+00
- 1 22 0 0 0.14923461e-01 -0.97825076e-01 0.21678034e+00 0.00000000e+00
- 1 2212 0 0 0.51924271e+00 -0.15214477e+00 0.86528761e+00 0.93827000e+00
- 1 211 0 0 -0.18162586e+00 -0.13806677e-01 0.73985438e-01 0.13957000e+00
- 1 22 0 0 0.78809288e+00 -0.29840394e+00 0.74099962e+00 0.00000000e+00
- 1 22 0 0 0.10299750e+01 0.71133378e+00 0.12339467e+01 0.00000000e+00
- 1 -2212 0 0 0.81008100e+00 0.14858041e+00 -0.36974322e-01 0.93827000e+00
- 2 111 1063 1064 0.48434002e+00 0.21294748e+00 0.26901092e-03 0.13498000e+00
- 2 310 1065 1066 0.77007848e+00 -0.97542145e-01 0.31477188e+00 0.49767000e+00
- 1 321 0 0 0.25741180e+01 0.58775092e+00 0.38577255e+00 0.49360000e+00
- 1 -211 0 0 0.26682446e+01 0.79132843e-01 0.11786645e+00 0.13957000e+00
- 2 -311 1067 1067 0.15684184e+01 -0.75978056e-01 0.28123051e+00 0.49767000e+00
- 2 111 1068 1069 0.11063619e+01 0.29452939e+00 0.48561358e+00 0.13498000e+00
- 1 -211 0 0 0.84380089e-01 0.11664533e+01 0.24580574e+01 0.13957000e+00
- 2 111 1070 1071 0.71893925e+00 0.20951053e+01 0.62964325e+01 0.13498000e+00
- 1 -211 0 0 0.12019160e-02 0.38915986e+00 0.13983924e+01 0.13957000e+00
- 1 211 0 0 -0.69095215e-01 0.76910296e-01 0.10050066e+00 0.13957000e+00
- 2 111 1072 1073 -0.98591080e-02 0.58358690e+00 0.12819065e+01 0.13498000e+00
- 1 -2212 0 0 -0.14691997e+01 0.12430963e+01 0.39149916e+01 0.93827000e+00
- 1 211 0 0 -0.45391616e+00 0.36509478e+00 0.94303028e+00 0.13957000e+00
- 2 310 1074 1075 -0.11511117e+01 0.12448248e+01 0.21090031e+01 0.49767000e+00
- 1 -211 0 0 -0.49080152e+00 0.11512121e+01 0.24651721e+01 0.13957000e+00
- 2 111 1076 1077 -0.11122841e+01 0.14097964e+01 0.22339450e+01 0.13498000e+00
- 1 2112 0 0 -0.18592525e+01 -0.20941951e+01 0.27376661e+00 0.93957000e+00
- 2 111 1078 1079 0.34265136e-03 -0.10413046e+00 0.11310747e+00 0.13498000e+00
- 1 211 0 0 -0.13663111e+00 -0.84406110e+00 -0.75477182e+00 0.13957000e+00
- 2 111 1080 1081 -0.53458221e+00 -0.21556526e+00 -0.49562489e+00 0.13498000e+00
- 1 -2212 0 0 -0.60188666e+00 -0.55426806e+00 -0.44197449e+00 0.93827000e+00
- 1 -211 0 0 -0.32468799e+00 -0.25545124e+00 0.11871460e-02 0.13957000e+00
- 2 111 1082 1083 -0.80383601e-02 -0.60662864e+00 -0.10690128e+00 0.13498000e+00
- 2 111 1084 1085 0.81737931e-01 -0.20439750e+00 -0.20041292e+00 0.13498000e+00
- 2 111 1086 1087 0.23475962e-01 -0.43310166e+00 -0.20422938e+00 0.13498000e+00
- 1 22 0 0 -0.30280719e+00 0.51741058e-01 -0.10413222e+00 0.00000000e+00
- 1 22 0 0 0.18509767e+00 0.40706386e-01 -0.36779674e+00 0.00000000e+00
- 1 211 0 0 0.15311168e+00 -0.45393409e-01 -0.43531866e+00 0.13957000e+00
- 2 111 1088 1089 -0.49401648e+00 -0.55383520e+00 -0.49085409e+00 0.13498000e+00
- 1 22 0 0 0.20716499e+00 0.50388311e-01 -0.35436667e+00 0.00000000e+00
- 1 22 0 0 -0.89619100e-02 0.43262864e-01 -0.68953682e-01 0.00000000e+00
- 2 310 1090 1091 0.32406326e+00 -0.53972536e+00 -0.21599434e+01 0.49767000e+00
- 1 130 0 0 -0.31445834e+00 -0.46122566e-01 -0.83278932e+00 0.49767000e+00
- 1 211 0 0 0.39067990e-01 0.13720486e+00 -0.96530181e+00 0.13957000e+00
- 1 -211 0 0 0.45926409e+00 -0.12650066e+00 -0.19312448e+01 0.13957000e+00
- 2 111 1092 1093 0.23747348e+00 0.82484870e-01 -0.45832816e+00 0.13498000e+00
- 1 22 0 0 0.28960159e+00 -0.10089108e+00 -0.10826288e+01 0.00000000e+00
- 1 22 0 0 0.26220744e+00 0.29839396e-01 -0.78385211e+00 0.00000000e+00
- 1 -211 0 0 0.17606730e+00 0.32473592e-01 -0.18333648e+01 0.13957000e+00
- 1 211 0 0 0.43296997e+00 0.35881341e-01 -0.12953461e+01 0.13957000e+00
- 2 111 1094 1095 0.11552156e+01 0.30590699e+00 -0.48364483e+01 0.13498000e+00
- 1 22 0 0 0.99861085e+00 0.98274113e+00 -0.85841915e+01 0.00000000e+00
- 1 22 0 0 0.95116449e+00 0.11292163e+01 -0.91346456e+01 0.00000000e+00
- 1 211 0 0 0.44943347e+00 -0.61795354e-01 -0.11512607e+01 0.13957000e+00
- 1 -211 0 0 0.81234329e+00 0.18258059e-01 -0.59762878e+01 0.13957000e+00
- 1 22 0 0 0.13898294e+01 0.16394422e+01 -0.93787133e+01 0.00000000e+00
- 1 22 0 0 0.74821512e+00 0.39182935e+00 -0.42358797e+01 0.00000000e+00
- 1 22 0 0 -0.25320877e+00 -0.93415529e-01 -0.14773644e+01 0.00000000e+00
- 1 22 0 0 -0.81522653e-01 -0.87424270e-01 -0.35825816e+00 0.00000000e+00
- 1 211 0 0 0.31983760e+00 0.53171342e+00 -0.23267270e+01 0.13957000e+00
- 1 -211 0 0 0.55355550e-02 0.68687030e-01 -0.32476369e+01 0.13957000e+00
- 1 -211 0 0 -0.13489946e+00 -0.51008865e-01 -0.89310857e+00 0.13957000e+00
- 1 211 0 0 0.67273618e+00 0.15886287e+00 -0.33920755e+01 0.13957000e+00
- 1 211 0 0 0.85876285e-01 -0.31232253e+00 -0.25080143e+00 0.13957000e+00
- 2 111 1096 1097 0.10062353e-01 0.21080740e+00 -0.11600122e+01 0.13498000e+00
- 1 130 0 0 -0.27951215e-01 0.60936897e+00 -0.77865629e+00 0.49767000e+00
- 1 -211 0 0 0.61178113e-01 0.29112431e+00 -0.10730420e+01 0.13957000e+00
- 2 111 1098 1099 0.48241769e-01 -0.41979699e+00 -0.10913886e+01 0.13498000e+00
- 2 311 1100 1100 0.13825039e+00 0.58879465e-01 -0.37586930e+00 0.49767000e+00
- 1 211 0 0 -0.24542287e+00 0.13583609e+00 -0.56370262e+00 0.13957000e+00
- 2 -311 1101 1101 -0.83048695e+00 -0.43652589e+00 -0.77387216e+00 0.49767000e+00
- 1 -211 0 0 -0.91267868e-01 0.10894189e+00 -0.41220295e+00 0.13957000e+00
- 1 -211 0 0 -0.26821217e+00 0.41791936e-02 -0.53566001e+00 0.13957000e+00
- 1 211 0 0 -0.61395466e+00 0.33229956e-01 -0.73464670e+00 0.13957000e+00
- 2 111 1102 1103 -0.64991180e+00 -0.13400865e+00 -0.24095180e+00 0.13498000e+00
- 1 -211 0 0 -0.15253601e+00 -0.40980321e+00 -0.12690525e+01 0.13957000e+00
- 1 211 0 0 0.11778716e-01 0.99940013e-01 -0.74683673e+00 0.13957000e+00
- 2 111 1104 1105 0.40697174e-01 -0.22674545e+00 -0.17002172e+01 0.13498000e+00
- 1 -211 0 0 -0.13834070e+00 0.20046114e+00 -0.45971016e+00 0.13957000e+00
- 1 211 0 0 0.22827979e+00 0.15713078e+00 -0.55185102e+00 0.13957000e+00
- 2 111 1106 1107 -0.66700774e-02 -0.16621743e+00 -0.34057047e+00 0.13498000e+00
- 1 321 0 0 0.48296496e+00 -0.87970517e-01 -0.73158362e+01 0.49360000e+00
- 1 -211 0 0 0.42767823e+00 -0.49179078e+00 -0.13039371e+02 0.13957000e+00
- 1 321 0 0 -0.13748414e+00 0.11459604e+00 0.31014143e-01 0.49360000e+00
- 2 111 1108 1109 -0.27598804e+00 -0.31634771e+00 0.30428330e+00 0.13498000e+00
- 1 -211 0 0 -0.31558093e-01 -0.37711248e+00 0.17075886e+00 0.13957000e+00
- 1 211 0 0 0.51063354e+00 -0.32990767e+00 0.12412958e+01 0.13957000e+00
- 1 22 0 0 -0.54531871e-01 0.11444897e-01 0.58623003e-01 0.00000000e+00
- 1 22 0 0 -0.38917393e+00 0.50578407e+00 0.84729601e+00 0.00000000e+00
- 1 -2112 0 0 0.19524798e+00 0.25336424e+00 0.35971951e+01 0.93957000e+00
- 2 111 1110 1111 0.17112626e+00 0.18733740e+00 0.39407101e+00 0.13498000e+00
- 1 2212 0 0 0.59442058e+00 0.39669198e+00 0.20817723e+01 0.93827000e+00
- 1 -211 0 0 0.91756509e-01 0.11937363e+00 0.63244326e+00 0.13957000e+00
- 1 321 0 0 0.26995668e+00 -0.34033443e+00 0.52737940e+00 0.49360000e+00
- 1 -211 0 0 -0.21331691e+00 0.11951723e+00 0.55289010e+00 0.13957000e+00
- 2 -311 1112 1112 -0.15325607e+01 -0.39408935e+00 -0.12792993e+01 0.49767000e+00
- 1 -211 0 0 0.29965736e-01 -0.57393615e-01 -0.14291444e+00 0.13957000e+00
- 1 130 0 0 0.41428039e-01 0.21778922e+00 0.93217499e-02 0.49767000e+00
- 2 310 1113 1114 0.27170078e+00 0.26927670e+00 -0.22935385e-01 0.49767000e+00
- 1 -321 0 0 0.55947733e-01 -0.10613726e+00 0.19734601e+00 0.49360000e+00
- 1 321 0 0 0.76221395e-01 -0.37655248e+00 0.31273104e+00 0.49360000e+00
- 1 22 0 0 0.18472690e+00 -0.10384826e-01 0.28919555e+02 0.00000000e+00
- 1 22 0 0 0.79739732e+00 0.22664918e+00 0.14236113e+03 0.00000000e+00
- 1 -211 0 0 0.14035388e+00 -0.45750318e-01 0.10315460e+02 0.13957000e+00
- 1 211 0 0 -0.58736113e+00 0.23765484e+00 0.58733461e+02 0.13957000e+00
- 1 -321 0 0 0.26359079e+00 -0.23993827e+00 -0.61173459e+01 0.49360000e+00
- 2 213 1115 1116 0.88343785e+00 0.10433051e+00 -0.44352430e+02 0.86794729e+00
- 1 22 0 0 0.90487031e-01 0.13845433e-01 -0.21593217e+01 0.00000000e+00
- 1 22 0 0 -0.31404592e-01 -0.35939151e-01 -0.51469647e+00 0.00000000e+00
- 1 22 0 0 -0.30977942e+00 -0.25713311e+00 -0.97166642e+01 0.00000000e+00
- 1 22 0 0 -0.19589215e+00 -0.31432650e+00 -0.77537074e+01 0.00000000e+00
- 1 321 0 0 -0.84373004e+00 -0.77473213e+00 -0.33115835e+02 0.49360000e+00
- 1 -211 0 0 -0.23788657e+00 -0.23498384e+00 -0.42622836e+01 0.13957000e+00
- 2 311 1117 1117 -0.14324098e-01 0.11326447e+01 -0.40724746e+02 0.49767000e+00
- 1 -211 0 0 -0.15483404e+00 -0.10577650e-01 -0.33256580e+01 0.13957000e+00
- 1 211 0 0 0.45457206e+00 0.76710598e+00 -0.42330926e+02 0.13957000e+00
- 2 111 1118 1119 -0.16695656e+00 0.67558003e+00 -0.21346364e+02 0.13498000e+00
- 1 22 0 0 -0.14409563e+00 -0.16250678e+00 -0.39595703e+01 0.00000000e+00
- 1 22 0 0 -0.13376802e+00 -0.18644671e+00 -0.23213297e+01 0.00000000e+00
- 1 22 0 0 -0.86076701e-01 0.94072175e-02 -0.19083196e+01 0.00000000e+00
- 1 22 0 0 -0.72880868e-01 -0.98208990e-01 -0.11717687e+01 0.00000000e+00
- 1 22 0 0 -0.24166981e+00 -0.10408965e+00 -0.24577231e+01 0.00000000e+00
- 1 22 0 0 -0.34106090e-01 -0.51836723e-02 -0.84682119e-01 0.00000000e+00
- 1 22 0 0 -0.23719267e+00 0.21305366e+00 -0.11585250e+01 0.00000000e+00
- 1 22 0 0 -0.10539189e+00 0.52037271e-03 -0.46641920e+00 0.00000000e+00
- 1 22 0 0 -0.71719680e+00 -0.23643508e+00 -0.38028614e+01 0.00000000e+00
- 1 22 0 0 -0.62428402e-01 -0.57740593e-01 -0.30820254e+00 0.00000000e+00
- 1 22 0 0 -0.37092836e-01 0.51207301e-03 -0.29557480e+00 0.00000000e+00
- 1 22 0 0 -0.18877724e+00 -0.15973521e+00 -0.59736139e+00 0.00000000e+00
- 1 -211 0 0 -0.10594600e-01 -0.11696768e+00 -0.92741253e+00 0.13957000e+00
- 1 211 0 0 -0.22621254e+00 -0.15512445e+01 -0.73139244e+01 0.13957000e+00
- 2 310 1120 1121 -0.51790050e+00 -0.16426488e+01 -0.11649735e+02 0.49767000e+00
- 1 22 0 0 -0.24618662e+00 -0.38624937e+00 -0.21476350e+01 0.00000000e+00
- 1 22 0 0 -0.30857378e+00 -0.82324336e+00 -0.39474922e+01 0.00000000e+00
- 1 22 0 0 0.57140252e-01 -0.54094971e-01 -0.61869025e+00 0.00000000e+00
- 1 22 0 0 0.19365336e+00 -0.61821549e+00 -0.36831923e+01 0.00000000e+00
- 1 22 0 0 -0.84920412e-01 -0.29549408e+00 -0.15098506e+01 0.00000000e+00
- 1 22 0 0 -0.14259291e+00 -0.39262572e+00 -0.14035037e+01 0.00000000e+00
- 1 -2212 0 0 -0.94568747e-01 -0.11277102e+01 -0.26230340e+01 0.93827000e+00
- 1 211 0 0 0.41021721e-01 -0.19216226e+00 -0.67824979e+00 0.13957000e+00
- 1 22 0 0 -0.88122210e-01 0.37778260e-01 -0.23381329e+00 0.00000000e+00
- 1 22 0 0 -0.56447085e-01 -0.93856193e-01 -0.29242676e+00 0.00000000e+00
- 1 22 0 0 0.15171967e+00 -0.89631362e-01 -0.41984036e+00 0.00000000e+00
- 1 22 0 0 0.16944728e-01 -0.38342193e-01 -0.10991961e-01 0.00000000e+00
- 1 22 0 0 0.85062310e-02 0.39179335e+00 -0.88982056e+01 0.00000000e+00
- 1 22 0 0 -0.34011846e-01 0.16528380e-01 -0.11060744e+01 0.00000000e+00
- 1 22 0 0 0.11066339e+00 0.21114318e+00 -0.56042651e+01 0.00000000e+00
- 1 22 0 0 0.84807330e-01 0.91164639e-01 -0.14208994e+01 0.00000000e+00
- 1 22 0 0 -0.17568972e-01 0.20474380e-01 -0.34282028e+01 0.00000000e+00
- 1 22 0 0 0.46865638e-01 0.11908121e+00 -0.26875879e+01 0.00000000e+00
- 1 22 0 0 -0.21370245e-01 0.51229545e-02 -0.22218292e+00 0.00000000e+00
- 1 22 0 0 0.13319122e-01 0.21980883e+00 -0.85982456e+01 0.00000000e+00
- 1 22 0 0 -0.16730615e-01 -0.42798582e-01 -0.27432574e+01 0.00000000e+00
- 1 22 0 0 -0.32880111e+00 -0.18049436e+00 -0.10559222e+02 0.00000000e+00
- 1 22 0 0 -0.22856624e+00 0.24626287e-01 -0.12164451e+02 0.00000000e+00
- 1 22 0 0 -0.42619749e-01 -0.52860916e-01 -0.58856307e+01 0.00000000e+00
- 1 22 0 0 0.50982090e-01 -0.16943784e+00 -0.10954493e+02 0.00000000e+00
- 1 22 0 0 0.19265259e+00 -0.17558123e+00 -0.11581642e+02 0.00000000e+00
- 1 22 0 0 0.70024100e-02 -0.24963555e-01 -0.27679332e+00 0.00000000e+00
- 1 22 0 0 0.30724086e-01 -0.11996333e-01 -0.79275869e+01 0.00000000e+00
- 1 22 0 0 0.65353465e-01 0.16175264e-01 -0.16714811e+01 0.00000000e+00
- 1 22 0 0 0.19852572e+00 -0.17171850e+00 -0.99886560e+01 0.00000000e+00
- 1 22 0 0 -0.89028104e-01 -0.34934659e+00 -0.27708489e+02 0.00000000e+00
- 1 22 0 0 -0.57722667e-01 -0.61740295e-01 -0.36220946e+01 0.00000000e+00
- 1 22 0 0 0.11582781e+00 -0.88930118e-01 -0.65606833e+01 0.00000000e+00
- 1 22 0 0 -0.14746289e-02 -0.74298082e-01 -0.13571946e+01 0.00000000e+00
- 1 22 0 0 0.87808105e-01 -0.10719690e-01 -0.64435012e+02 0.00000000e+00
- 1 11 0 0 0.23712632e-02 0.21690731e-01 -0.54417655e+01 0.51000000e-03
- 1 -11 0 0 0.28353289e-01 0.56681477e-01 -0.19975203e+02 0.51000000e-03
- 1 22 0 0 0.14011131e+00 0.15361390e+00 0.35668825e+00 0.00000000e+00
- 1 22 0 0 0.42511766e-02 0.24698070e-01 -0.75504841e-02 0.00000000e+00
- 1 22 0 0 -0.30950396e-01 0.36997954e-01 0.14105958e-01 0.00000000e+00
- 1 22 0 0 0.14232589e+00 0.10215441e+00 0.35144267e-01 0.00000000e+00
- 1 22 0 0 0.16595429e+00 -0.10987938e-01 0.16712514e+00 0.00000000e+00
- 1 22 0 0 0.23641017e-01 0.58084366e-01 0.13197049e+00 0.00000000e+00
- 1 22 0 0 -0.14043954e+00 -0.13991712e+00 0.30093084e+00 0.00000000e+00
- 1 22 0 0 -0.44498153e-01 0.13787395e-01 0.19224606e+00 0.00000000e+00
- 1 22 0 0 -0.67694971e-01 -0.16161427e+00 0.30348048e+00 0.00000000e+00
- 1 22 0 0 -0.11275835e+00 -0.42439044e-01 0.11283288e+00 0.00000000e+00
- 1 22 0 0 -0.87278651e-01 -0.25139016e+00 0.82305732e+00 0.00000000e+00
- 1 22 0 0 -0.19951605e+00 -0.23820692e+00 0.69793621e+00 0.00000000e+00
- 1 130 0 0 -0.11491033e+01 -0.53180918e+00 0.61769639e+01 0.49767000e+00
- 1 211 0 0 -0.14811763e+01 -0.71478029e+00 0.92942376e+01 0.13957000e+00
- 1 -211 0 0 -0.10066645e+01 -0.17790509e+00 0.49782544e+01 0.13957000e+00
- 1 22 0 0 -0.80225709e+00 0.48513579e+00 0.55922377e+01 0.00000000e+00
- 1 22 0 0 -0.58039079e-01 0.74763500e-01 0.74025229e+00 0.00000000e+00
- 1 22 0 0 0.92280994e-02 -0.68864093e-02 0.22758978e-01 0.00000000e+00
- 1 22 0 0 -0.33126457e+00 0.55157111e-01 0.17724164e+01 0.00000000e+00
- 1 22 0 0 -0.29945012e+00 -0.31431429e-01 0.27627459e+01 0.00000000e+00
- 1 22 0 0 -0.69140482e+00 -0.24197887e+00 0.79741318e+01 0.00000000e+00
- 1 22 0 0 -0.83028319e-01 -0.10941991e-01 0.23008563e+01 0.00000000e+00
- 1 22 0 0 -0.30820069e+00 0.20751605e+00 0.76406161e+01 0.00000000e+00
- 1 22 0 0 -0.70716021e-01 0.43975532e-01 0.23433176e+01 0.00000000e+00
- 1 22 0 0 -0.23735402e+00 -0.44281777e-02 0.31317494e+01 0.00000000e+00
- 1 22 0 0 -0.60576754e-01 -0.10355342e-01 0.74124215e+00 0.00000000e+00
- 1 22 0 0 -0.10131048e+00 0.10953302e+00 0.48825193e+01 0.00000000e+00
- 1 22 0 0 -0.11765083e+00 0.10031783e+00 0.36109055e+01 0.00000000e+00
- 1 22 0 0 0.36593330e-01 0.11757234e-01 0.79772844e+00 0.00000000e+00
- 1 22 0 0 -0.43325008e+00 0.39729606e+00 0.16152854e+02 0.00000000e+00
- 1 22 0 0 -0.14866976e+00 0.68037173e+00 0.34778560e+02 0.00000000e+00
- 1 22 0 0 -0.51892920e+00 0.32876238e+00 0.16710747e+02 0.00000000e+00
- 1 22 0 0 -0.11211889e+00 0.67482424e-01 0.57033168e+01 0.00000000e+00
- 1 22 0 0 0.36339420e-01 0.31892183e-02 0.98935330e+01 0.00000000e+00
- 1 22 0 0 -0.52128639e-01 0.79854934e-01 0.63894692e+01 0.00000000e+00
- 1 22 0 0 -0.46825409e-01 0.49337330e-01 0.10788385e+02 0.00000000e+00
- 1 22 0 0 -0.15861869e+00 0.28158826e+00 0.21892418e+02 0.00000000e+00
- 2 111 1122 1123 -0.16020429e+00 0.63078145e-01 0.13159525e+02 0.13498000e+00
- 2 111 1124 1125 -0.38159507e-01 0.30545232e-01 0.16966151e+02 0.13498000e+00
- 2 111 1126 1127 -0.42244564e+00 0.17921263e+00 0.51886773e+02 0.13498000e+00
- 1 22 0 0 -0.26828457e+00 0.19202202e+00 0.35984167e+02 0.00000000e+00
- 1 22 0 0 -0.88574695e-01 0.18725125e-01 0.18973686e+02 0.00000000e+00
- 1 22 0 0 0.32983067e-01 -0.83795618e-03 0.32237195e+02 0.00000000e+00
- 1 22 0 0 -0.12119583e+00 0.90444218e-01 0.16951921e+03 0.00000000e+00
- 1 22 0 0 -0.89493469e-01 -0.46136594e-01 0.21729478e+02 0.00000000e+00
- 1 22 0 0 -0.61363492e-04 0.33818851e-01 0.17378787e+01 0.00000000e+00
- 1 22 0 0 0.33409683e-01 0.11280784e+00 0.50226606e+02 0.00000000e+00
- 1 22 0 0 -0.46448587e-02 0.15708898e-01 0.77212838e+02 0.00000000e+00
- 1 22 0 0 0.28394571e+00 -0.30463645e+00 0.58086734e+02 0.00000000e+00
- 1 22 0 0 0.15077154e+00 -0.34484428e+00 0.55464123e+02 0.00000000e+00
- 1 22 0 0 0.29897867e-01 -0.21415466e+00 0.11059388e+02 0.00000000e+00
- 1 22 0 0 0.33994538e-01 0.61306857e-02 0.97792268e+00 0.00000000e+00
- 1 22 0 0 0.17902363e+00 0.15335636e+00 0.60859723e+01 0.00000000e+00
- 1 22 0 0 0.43783765e-01 -0.28374036e-01 0.16781741e+01 0.00000000e+00
- 1 22 0 0 0.84006454e-01 0.38676271e-01 0.26050977e+01 0.00000000e+00
- 1 22 0 0 0.51384420e-01 -0.92891507e-01 0.31669333e+01 0.00000000e+00
- 1 22 0 0 0.90077899e-01 0.21912069e+00 0.48348531e+01 0.00000000e+00
- 1 22 0 0 0.10673336e+00 0.19508063e+00 0.25634887e+01 0.00000000e+00
- 1 211 0 0 0.20519214e+00 -0.12761528e+00 0.50354117e+02 0.13957000e+00
- 1 -211 0 0 -0.25085161e+00 -0.53583200e-01 0.74759251e+01 0.13957000e+00
- 1 130 0 0 0.56642122e-01 -0.38780458e+00 0.25559165e+03 0.49767000e+00
- 2 310 1128 1129 -0.33585902e-01 -0.35384194e+00 0.38942037e+03 0.49767000e+00
- 1 22 0 0 0.19752232e+00 0.25285121e-01 0.21593897e+03 0.00000000e+00
- 1 22 0 0 0.43979213e-01 0.75283564e-01 0.56586453e+02 0.00000000e+00
- 1 22 0 0 -0.15593799e-02 -0.41731436e-01 0.78785206e+02 0.00000000e+00
- 1 22 0 0 0.51709361e-02 -0.20163598e+00 0.97500858e+02 0.00000000e+00
- 1 22 0 0 0.53748504e-01 -0.14260971e+00 -0.90889580e+00 0.00000000e+00
- 1 22 0 0 -0.73986457e-01 -0.82308947e-01 -0.64523845e+00 0.00000000e+00
- 1 22 0 0 -0.70307229e-01 -0.77015766e-01 -0.99638432e+00 0.00000000e+00
- 1 22 0 0 0.34942985e-01 0.22967440e-01 -0.65021773e+00 0.00000000e+00
- 1 22 0 0 -0.17966162e+00 0.14731557e+00 -0.88755968e+00 0.00000000e+00
- 1 22 0 0 -0.56360651e-02 0.93113302e-01 -0.22321420e+00 0.00000000e+00
- 1 22 0 0 0.31310981e-01 -0.40246987e-01 -0.91879766e-01 0.00000000e+00
- 1 22 0 0 0.40598420e+00 0.26548398e-01 -0.75487928e+00 0.00000000e+00
- 1 22 0 0 0.22161426e-01 0.85936058e-01 -0.58926196e+00 0.00000000e+00
- 1 22 0 0 -0.41585329e-01 -0.34219750e-01 -0.22869561e+00 0.00000000e+00
- 1 130 0 0 -0.91751227e-01 0.52470279e+00 -0.10151273e+00 0.49767000e+00
- 1 22 0 0 -0.38452317e+00 0.66741175e-01 -0.24271208e-01 0.00000000e+00
- 1 22 0 0 -0.53698789e-01 -0.42616456e-01 -0.11788894e-01 0.00000000e+00
- 1 22 0 0 -0.32771956e-02 -0.33142062e+00 0.19390255e+00 0.00000000e+00
- 1 22 0 0 0.32230755e-01 -0.65420811e-02 0.28286917e-01 0.00000000e+00
- 1 22 0 0 0.27049156e+00 0.71882487e+00 -0.25089284e+01 0.00000000e+00
- 1 22 0 0 0.63314714e+00 0.14352335e+01 -0.45664108e+01 0.00000000e+00
- 1 22 0 0 -0.18742261e-01 0.21729027e+00 -0.26656218e+00 0.00000000e+00
- 1 22 0 0 0.12891249e-01 0.34979043e+00 -0.74421088e+00 0.00000000e+00
- 1 22 0 0 -0.15076495e+00 0.83102458e+00 -0.21768992e+01 0.00000000e+00
- 1 22 0 0 -0.24973597e+00 0.22827785e+01 -0.55094023e+01 0.00000000e+00
- 1 130 0 0 0.21568276e+00 0.22798732e+01 -0.51370389e+01 0.49767000e+00
- 1 2212 0 0 -0.36047275e+00 0.29824302e+01 -0.62063623e+01 0.93827000e+00
- 1 -211 0 0 -0.10698987e+00 0.27092623e+00 -0.58852978e+00 0.13957000e+00
- 1 22 0 0 0.33499003e-01 0.23383311e+00 -0.50718294e+00 0.00000000e+00
- 1 22 0 0 -0.10919477e+00 0.13469544e+01 -0.26354263e+01 0.00000000e+00
- 1 22 0 0 -0.68136164e+00 0.15488741e+00 -0.25003610e+00 0.00000000e+00
- 1 22 0 0 -0.33384202e+00 0.12939371e+00 -0.44584801e-01 0.00000000e+00
- 1 22 0 0 -0.59074056e+00 -0.26181319e+00 -0.29405240e+00 0.00000000e+00
- 1 22 0 0 -0.19189562e+00 -0.15471690e+00 -0.56065026e-01 0.00000000e+00
- 1 22 0 0 -0.55176005e+00 0.35885227e-01 -0.38743262e+00 0.00000000e+00
- 1 22 0 0 -0.81858347e-01 -0.31823620e-01 -0.11495384e+00 0.00000000e+00
- 1 22 0 0 -0.90437081e-01 0.67093252e-01 -0.48329974e-01 0.00000000e+00
- 1 22 0 0 -0.13438192e+00 0.25143721e+00 0.53521443e-01 0.00000000e+00
- 1 22 0 0 -0.29270974e+00 -0.35300847e+00 0.84024794e-01 0.00000000e+00
- 1 22 0 0 -0.47350979e+00 -0.71678844e+00 -0.27721291e-02 0.00000000e+00
- 1 22 0 0 0.38144485e-01 -0.46761300e+00 0.11671487e+00 0.00000000e+00
- 1 22 0 0 0.72922351e-01 -0.21524059e+00 0.13878101e+00 0.00000000e+00
- 1 -211 0 0 0.27766516e+00 0.36526367e-01 0.13940587e+00 0.13957000e+00
- 1 211 0 0 0.42687030e+00 -0.37942869e+00 -0.49570563e-01 0.13957000e+00
- 1 22 0 0 0.36961163e+00 -0.70142040e+00 0.39273370e+00 0.00000000e+00
- 1 22 0 0 0.29917737e-01 -0.44378055e-01 0.72613330e-01 0.00000000e+00
- 1 22 0 0 0.17499040e+00 -0.27680711e-01 0.85638731e-01 0.00000000e+00
- 1 22 0 0 0.16096865e+01 -0.39453685e+00 0.12581971e+01 0.00000000e+00
- 1 22 0 0 0.83801828e-01 0.85662155e-01 0.39073916e-01 0.00000000e+00
- 1 22 0 0 0.37682537e+00 0.84265949e-01 0.23923666e+00 0.00000000e+00
- 1 22 0 0 0.43246310e+00 0.73000753e-01 0.24552041e+00 0.00000000e+00
- 1 11 0 0 0.27565034e+00 0.12722488e+00 0.17807715e+00 0.51000000e-03
- 1 -11 0 0 0.25188646e+00 0.11710997e+00 0.16606941e+00 0.51000000e-03
- 1 22 0 0 -0.17809641e-01 0.33340433e+00 -0.39721458e+00 0.00000000e+00
- 1 22 0 0 0.71726132e-01 0.13205257e+00 -0.24583167e+00 0.00000000e+00
- 1 22 0 0 -0.16570179e-01 -0.44972188e-01 -0.35337629e+00 0.00000000e+00
- 1 22 0 0 -0.80475569e-01 -0.28002120e-01 -0.97730194e-01 0.00000000e+00
- 1 22 0 0 -0.16042416e-01 -0.64873272e-01 0.61451573e-02 0.00000000e+00
- 1 22 0 0 -0.92447301e-01 -0.43102970e-02 0.14933363e+00 0.00000000e+00
- 1 22 0 0 0.54288104e-01 0.10804863e+00 0.31127797e-01 0.00000000e+00
- 1 22 0 0 0.12303300e-01 -0.36769247e-01 0.41586028e-01 0.00000000e+00
- 1 22 0 0 0.23389630e-01 0.31327378e-01 0.13035049e+00 0.00000000e+00
- 1 22 0 0 -0.14930427e+00 0.12523039e-01 0.39284409e+00 0.00000000e+00
- 1 130 0 0 -0.56833344e+00 -0.99884064e-01 0.26100989e+01 0.49767000e+00
- 1 2112 0 0 -0.10807912e+01 0.90031051e-01 0.57852571e+01 0.93957000e+00
- 2 111 1130 1131 -0.29978897e+00 -0.67995768e-01 0.16313125e+01 0.13498000e+00
- 1 22 0 0 -0.56393940e+00 -0.94801270e+00 0.27539979e+01 0.00000000e+00
- 1 22 0 0 -0.61294676e-01 -0.38060696e-01 0.19328217e+00 0.00000000e+00
- 1 -211 0 0 -0.18340230e+00 -0.38646869e+00 0.68292852e+00 0.13957000e+00
- 1 211 0 0 -0.84058741e-01 0.34614930e-01 0.26550216e+01 0.13957000e+00
- 1 22 0 0 -0.97624727e-01 -0.41569889e+00 0.27292740e+01 0.00000000e+00
- 1 22 0 0 -0.11244174e+00 -0.25646750e+00 0.25310720e+01 0.00000000e+00
- 1 22 0 0 0.75596273e-01 -0.74808296e-01 0.33879321e+00 0.00000000e+00
- 1 22 0 0 0.99689751e-02 0.45346850e-01 0.32512140e+00 0.00000000e+00
- 1 22 0 0 -0.70698084e-01 0.16393334e-02 0.59749673e+00 0.00000000e+00
- 1 22 0 0 0.37340957e-01 -0.29076181e-01 0.14267640e+01 0.00000000e+00
- 1 22 0 0 -0.46309026e-01 -0.44852548e+00 0.21526585e+01 0.00000000e+00
- 1 22 0 0 -0.14775920e+00 -0.35840925e+00 0.21506641e+01 0.00000000e+00
- 1 22 0 0 0.18590415e+01 -0.36683229e+00 0.14986667e+02 0.00000000e+00
- 1 22 0 0 0.14450238e+00 -0.51990684e-01 0.99283938e+00 0.00000000e+00
- 1 22 0 0 0.10613104e+00 0.37004538e-01 0.21786314e+01 0.00000000e+00
- 1 22 0 0 0.30535176e+00 0.38456082e-01 0.30118926e+01 0.00000000e+00
- 1 22 0 0 -0.88115301e-02 -0.19367782e-01 0.94613721e-01 0.00000000e+00
- 1 22 0 0 -0.24845378e+00 0.19626779e-01 0.23736936e+00 0.00000000e+00
- 1 22 0 0 -0.52368492e-02 -0.23983550e-02 0.94977017e-02 0.00000000e+00
- 1 22 0 0 0.48957687e+00 0.21534583e+00 -0.92286908e-02 0.00000000e+00
- 1 -211 0 0 0.45605796e+00 -0.30887108e-02 -0.30745852e-01 0.13957000e+00
- 1 211 0 0 0.31402052e+00 -0.94453434e-01 0.34551773e+00 0.13957000e+00
- 1 130 0 0 0.15684184e+01 -0.75978056e-01 0.28123051e+00 0.49767000e+00
- 1 22 0 0 0.61624032e+00 0.22159128e+00 0.31654027e+00 0.00000000e+00
- 1 22 0 0 0.49012162e+00 0.72938111e-01 0.16907331e+00 0.00000000e+00
- 1 22 0 0 0.16181112e+00 0.56563105e+00 0.15215292e+01 0.00000000e+00
- 1 22 0 0 0.55712812e+00 0.15294742e+01 0.47749033e+01 0.00000000e+00
- 1 22 0 0 -0.36482119e-01 0.47130994e+00 0.11244121e+01 0.00000000e+00
- 1 22 0 0 0.26623011e-01 0.11227695e+00 0.15749435e+00 0.00000000e+00
- 1 211 0 0 -0.88771496e+00 0.91512254e+00 0.17994697e+01 0.13957000e+00
- 1 -211 0 0 -0.26339672e+00 0.32970222e+00 0.30953343e+00 0.13957000e+00
- 1 22 0 0 -0.80738668e-01 0.16093147e+00 0.19625041e+00 0.00000000e+00
- 1 22 0 0 -0.10315454e+01 0.12488649e+01 0.20376946e+01 0.00000000e+00
- 1 22 0 0 0.11079085e-01 -0.88633567e-01 -0.60272358e-03 0.00000000e+00
- 1 22 0 0 -0.10736434e-01 -0.15496890e-01 0.11371019e+00 0.00000000e+00
- 1 22 0 0 -0.38585583e+00 -0.10385837e+00 -0.38908039e+00 0.00000000e+00
- 1 22 0 0 -0.14872638e+00 -0.11170689e+00 -0.10654450e+00 0.00000000e+00
- 1 22 0 0 -0.88385980e-03 -0.33265906e+00 -0.12645221e+00 0.00000000e+00
- 1 22 0 0 -0.71545003e-02 -0.27396958e+00 0.19550933e-01 0.00000000e+00
- 1 22 0 0 0.10400711e+00 -0.12212867e+00 -0.79757230e-01 0.00000000e+00
- 1 22 0 0 -0.22269182e-01 -0.82268830e-01 -0.12065569e+00 0.00000000e+00
- 1 22 0 0 0.37549298e-01 -0.36369118e+00 -0.21831527e+00 0.00000000e+00
- 1 22 0 0 -0.14073336e-01 -0.69410475e-01 0.14085886e-01 0.00000000e+00
- 1 22 0 0 -0.15334838e+00 -0.26491561e+00 -0.17154873e+00 0.00000000e+00
- 1 22 0 0 -0.34066810e+00 -0.28891959e+00 -0.31930536e+00 0.00000000e+00
- 1 -211 0 0 0.33072780e+00 -0.23539979e+00 -0.85147927e+00 0.13957000e+00
- 1 211 0 0 -0.66645409e-02 -0.30432556e+00 -0.13084641e+01 0.13957000e+00
- 1 22 0 0 0.64240165e-01 -0.63957459e-02 -0.33863259e-01 0.00000000e+00
- 1 22 0 0 0.17323332e+00 0.88880616e-01 -0.42446490e+00 0.00000000e+00
- 1 22 0 0 0.69064060e+00 0.14050402e+00 -0.26254266e+01 0.00000000e+00
- 1 22 0 0 0.46457499e+00 0.16540297e+00 -0.22110217e+01 0.00000000e+00
- 1 22 0 0 -0.57058587e-01 0.11104297e+00 -0.71332626e+00 0.00000000e+00
- 1 22 0 0 0.67120939e-01 0.99764431e-01 -0.44668594e+00 0.00000000e+00
- 1 22 0 0 0.44127546e-01 -0.35621393e+00 -0.75822717e+00 0.00000000e+00
- 1 22 0 0 0.41142233e-02 -0.63583065e-01 -0.33316145e+00 0.00000000e+00
- 1 130 0 0 0.13825039e+00 0.58879465e-01 -0.37586930e+00 0.49767000e+00
- 1 130 0 0 -0.83048695e+00 -0.43652589e+00 -0.77387216e+00 0.49767000e+00
- 1 22 0 0 -0.29516520e+00 -0.10206623e+00 -0.16999867e+00 0.00000000e+00
- 1 22 0 0 -0.35474660e+00 -0.31942422e-01 -0.70953129e-01 0.00000000e+00
- 1 22 0 0 -0.46417995e-01 -0.76787069e-01 -0.72568929e+00 0.00000000e+00
- 1 22 0 0 0.87115169e-01 -0.14995838e+00 -0.97452789e+00 0.00000000e+00
- 1 22 0 0 -0.51436633e-02 -0.19001273e+00 -0.30893692e+00 0.00000000e+00
- 1 22 0 0 -0.15264141e-02 0.23795304e-01 -0.31633553e-01 0.00000000e+00
- 1 22 0 0 0.68777375e-02 -0.28966424e-01 0.52585774e-01 0.00000000e+00
- 1 22 0 0 -0.28286577e+00 -0.28738129e+00 0.25169753e+00 0.00000000e+00
- 1 22 0 0 -0.15710400e-02 0.84169426e-01 0.90849206e-01 0.00000000e+00
- 1 22 0 0 0.17269730e+00 0.10316798e+00 0.30322181e+00 0.00000000e+00
- 2 310 1132 1133 -0.15325607e+01 -0.39408935e+00 -0.12792993e+01 0.49767000e+00
- 1 211 0 0 -0.56657833e-01 0.56774005e-01 -0.12104491e+00 0.13957000e+00
- 1 -211 0 0 0.32835861e+00 0.21250270e+00 0.98109522e-01 0.13957000e+00
- 1 211 0 0 -0.61339588e-01 0.42363072e-01 -0.18809504e+01 0.13957000e+00
- 2 111 1134 1135 0.94477744e+00 0.61967441e-01 -0.42471480e+02 0.13498000e+00
- 1 130 0 0 -0.14324098e-01 0.11326447e+01 -0.40724746e+02 0.49767000e+00
- 1 22 0 0 -0.17518492e+00 0.53906292e+00 -0.18135538e+02 0.00000000e+00
- 1 22 0 0 0.82283590e-02 0.13651710e+00 -0.32108268e+01 0.00000000e+00
- 1 -211 0 0 -0.16288658e+00 -0.11339963e+01 -0.78274717e+01 0.13957000e+00
- 1 211 0 0 -0.35501392e+00 -0.50865244e+00 -0.38222632e+01 0.13957000e+00
- 1 22 0 0 -0.80420054e-01 0.34434342e-01 0.25871598e+01 0.00000000e+00
- 1 22 0 0 -0.79784241e-01 0.28643803e-01 0.10572365e+02 0.00000000e+00
- 1 22 0 0 -0.25905856e-01 -0.28403780e-01 0.13690889e+02 0.00000000e+00
- 1 22 0 0 -0.12253651e-01 0.58949012e-01 0.32752624e+01 0.00000000e+00
- 1 22 0 0 -0.29175856e+00 0.96023152e-01 0.40277180e+02 0.00000000e+00
- 1 22 0 0 -0.13068709e+00 0.83189478e-01 0.11609593e+02 0.00000000e+00
- 2 111 1136 1137 0.16088637e+00 -0.53566572e-01 0.10540573e+03 0.13498000e+00
- 2 111 1138 1139 -0.19447227e+00 -0.30027537e+00 0.28401463e+03 0.13498000e+00
- 1 22 0 0 -0.21365882e+00 -0.71091299e-01 0.84527333e+00 0.00000000e+00
- 1 22 0 0 -0.86130143e-01 0.30955318e-02 0.78603920e+00 0.00000000e+00
- 1 211 0 0 -0.88005746e+00 -0.23905353e+00 -0.98404349e+00 0.13957000e+00
- 1 -211 0 0 -0.65250327e+00 -0.15503582e+00 -0.29525583e+00 0.13957000e+00
- 1 22 0 0 0.17764600e+00 -0.13597409e-03 -0.59208356e+01 0.00000000e+00
- 1 22 0 0 0.76713144e+00 0.62103415e-01 -0.36550644e+02 0.00000000e+00
- 1 22 0 0 0.13189573e+00 -0.78515086e-01 0.98303209e+02 0.00000000e+00
- 1 22 0 0 0.28990638e-01 0.24948514e-01 0.71025226e+01 0.00000000e+00
- 1 22 0 0 -0.16906565e+00 -0.30956639e+00 0.27078585e+03 0.00000000e+00
- 1 22 0 0 -0.25406621e-01 0.92910235e-02 0.13228781e+02 0.00000000e+00
- 991
- 2 25 2 3 0.50035360e+01 -0.99916628e+01 -0.34181402e+02 0.12499935e+03
- 2 23 6 13 0.96615921e+01 0.85633669e+01 -0.39711182e+02 0.91498579e+02
- 2 23 4 5 -0.46580561e+01 -0.18555030e+02 0.55297797e+01 0.21754724e+02
- 1 13 0 0 -0.84985400e+01 0.28331103e+00 -0.21794971e+01 0.10566000e+00
- 1 -13 0 0 0.38404838e+01 -0.18838341e+02 0.77092768e+01 0.10566000e+00
- 1 11 0 0 -0.35053175e+02 -0.15088237e+02 -0.31173056e+02 0.51000000e-03
- 1 22 0 0 0.68641512e-03 0.10041994e-02 -0.17930854e-03 0.00000000e+00
- 1 22 0 0 0.11408925e-01 0.57828539e-02 -0.35321323e-02 0.00000000e+00
- 1 22 0 0 0.41709433e-01 0.23329113e-01 -0.80298919e-02 0.00000000e+00
- 1 22 0 0 0.49354051e-02 0.22660847e-02 -0.98351925e-03 0.00000000e+00
- 1 22 0 0 0.19275299e-04 0.52772378e-05 -0.82337656e-05 0.00000000e+00
- 1 -11 0 0 0.44656007e+02 0.23619216e+02 -0.85253923e+01 0.51000000e-03
- 1 22 0 0 0.21054964e-06 0.13049003e-06 -0.23131437e-07 0.00000000e+00
- 2 2 114 114 0.97257365e+00 0.16467054e+01 -0.64150531e+01 0.33000000e+00
- 2 21 114 114 0.96497702e+00 0.15194700e+00 -0.65551970e+00 0.00000000e+00
- 2 21 114 114 0.13303909e+01 0.72912757e+00 0.46980602e+00 0.00000000e+00
- 2 21 114 114 0.72239868e-02 0.38857561e+00 -0.25130144e+00 0.00000000e+00
- 2 21 114 114 -0.24584971e+00 -0.17587649e+01 -0.58850913e+00 0.00000000e+00
- 2 21 114 114 0.93596411e+00 -0.20574666e+01 -0.14052890e+00 0.00000000e+00
- 2 21 114 114 -0.29677415e+01 -0.20576264e+01 0.10708549e+00 0.00000000e+00
- 2 21 114 114 -0.26321375e+00 -0.21318512e+01 -0.42770528e+00 0.00000000e+00
- 2 21 114 114 0.16502252e+01 -0.14653216e+01 -0.38341273e+01 0.00000000e+00
- 2 21 114 114 0.57600671e+00 -0.12326248e+01 -0.10031431e+01 0.00000000e+00
- 2 21 114 114 -0.43324772e+00 0.69143376e+00 -0.14482410e+02 0.00000000e+00
- 2 21 114 114 -0.61983006e+00 -0.52143371e+00 -0.82655165e+02 0.00000000e+00
- 2 21 114 114 -0.20202221e+01 0.24872680e+01 -0.10977624e+03 0.00000000e+00
- 2 2203 114 114 -0.64078273e+00 -0.10115933e+01 -0.16122457e+04 0.77133000e+00
- 2 -2 142 142 -0.13826905e+01 0.71183495e+01 -0.33061519e+02 0.33000000e+00
- 2 21 142 142 0.10150783e+01 0.19817027e+01 -0.32879095e+01 0.00000000e+00
- 2 21 142 142 -0.67569087e+00 -0.23377466e+01 -0.35360313e+02 0.00000000e+00
- 2 21 142 142 -0.53099755e+01 -0.43210895e+01 -0.12040850e+03 0.00000000e+00
- 2 21 142 142 -0.51102212e+00 -0.51172817e+01 -0.21190987e+02 0.00000000e+00
- 2 21 142 142 -0.40940720e+00 -0.64660103e+00 -0.25212259e+01 0.00000000e+00
- 2 21 142 142 -0.68756783e-01 -0.25027284e+01 -0.29453665e+01 0.00000000e+00
- 2 21 142 142 -0.79629813e+00 -0.39872242e+01 -0.41970303e+01 0.00000000e+00
- 2 21 142 142 -0.64485996e+01 -0.13609660e+01 -0.63893230e+01 0.00000000e+00
- 2 21 142 142 -0.58118063e+01 0.12413341e+02 0.15682994e+01 0.00000000e+00
- 2 21 142 142 -0.80930591e+01 -0.33585107e+01 0.56669239e+01 0.00000000e+00
- 2 21 142 142 -0.23555426e+01 -0.75396391e+00 0.21190683e+01 0.00000000e+00
- 2 21 142 142 -0.24190933e+01 -0.12556926e+00 0.48647682e+01 0.00000000e+00
- 2 21 142 142 0.15857788e+00 0.35883515e+01 0.27610168e+01 0.00000000e+00
- 2 21 142 142 0.80506595e+00 0.35165110e+01 0.55150457e+01 0.00000000e+00
- 2 21 142 142 0.27875209e+01 0.16528238e+01 0.60854987e+01 0.00000000e+00
- 2 21 142 142 0.79629813e+00 0.39872242e+01 0.25252419e+02 0.00000000e+00
- 2 21 142 142 -0.44374285e+01 0.24831480e+01 0.54696917e+02 0.00000000e+00
- 2 21 142 142 -0.35168357e+01 0.19837343e+01 0.10234649e+03 0.00000000e+00
- 2 21 142 142 0.24652419e+01 0.10326124e+02 0.33999978e+03 0.00000000e+00
- 2 21 142 142 0.67569087e+00 0.23377466e+01 0.95758423e+02 0.00000000e+00
- 2 21 142 142 0.11414748e+01 0.75464158e+01 0.59737917e+03 0.00000000e+00
- 2 21 142 142 0.35168357e+01 -0.19837343e+01 0.15917498e+04 0.00000000e+00
- 2 21 142 142 0.44374285e+01 -0.24831480e+01 0.17984048e+03 0.00000000e+00
- 2 21 142 142 0.26872892e+01 0.10607158e+01 0.76915544e+02 0.00000000e+00
- 2 21 142 142 -0.26872892e+01 -0.10607158e+01 0.15029213e+03 0.00000000e+00
- 2 21 142 142 -0.57791858e+01 -0.30047590e+01 0.17480290e+03 0.00000000e+00
- 2 21 142 142 -0.28996112e+01 0.23183068e+01 0.41037538e+01 0.00000000e+00
- 2 21 142 142 0.29996542e+00 -0.11695831e+01 0.10458237e+01 0.00000000e+00
- 2 21 142 142 0.10483174e+01 0.19043914e+01 0.29356520e+03 0.00000000e+00
- 2 21 142 142 0.32931946e+00 -0.81337171e-01 0.88775702e+02 0.00000000e+00
- 2 21 142 142 0.22140670e+01 0.96584177e+00 0.70798016e+02 0.00000000e+00
- 2 21 142 142 -0.91417021e+00 -0.17128180e+01 0.20599794e+03 0.00000000e+00
- 2 21 142 142 0.68001913e+00 -0.54484553e+00 0.21888555e+03 0.00000000e+00
- 2 2 142 142 0.70253574e+00 0.11269168e+00 0.60435065e+00 0.33000000e+00
- 2 3 256 256 0.56483322e-01 -0.37406186e+00 0.30836965e+03 0.50000000e+00
- 2 21 256 256 -0.68842726e+00 -0.13048842e+00 0.11811848e+03 0.00000000e+00
- 2 21 256 256 -0.64700623e+00 -0.88000266e+00 0.73791037e+03 0.00000000e+00
- 2 2101 256 256 0.14382909e+01 0.12115804e+01 0.91748087e+03 0.57933000e+00
- 2 -3 261 261 -0.12399218e+01 0.68085512e+00 0.44561158e+03 0.50000000e+00
- 2 21 261 261 0.82144402e+00 -0.31055868e+00 0.41548928e+01 0.00000000e+00
- 2 21 261 261 -0.86988564e+00 0.87417518e+00 0.63553782e+01 0.00000000e+00
- 2 21 261 261 -0.80506595e+00 -0.35165110e+01 0.12876627e+02 0.00000000e+00
- 2 21 261 261 -0.24652419e+01 -0.10326124e+02 0.22091305e+02 0.00000000e+00
- 2 21 261 261 -0.11414748e+01 -0.75464158e+01 0.16025605e+02 0.00000000e+00
- 2 21 261 261 0.58118063e+01 -0.12413341e+02 0.75168491e+01 0.00000000e+00
- 2 21 261 261 0.53359224e+00 -0.10268429e+01 0.54880875e+00 0.00000000e+00
- 2 21 261 261 -0.17898048e+00 -0.43956284e+01 -0.22326233e+00 0.00000000e+00
- 2 21 261 261 -0.28289118e+00 -0.71113656e+00 0.43900459e+00 0.00000000e+00
- 2 21 261 261 0.23555426e+01 0.75396391e+00 0.20952947e+01 0.00000000e+00
- 2 21 261 261 0.64485996e+01 0.13609660e+01 0.46463936e+01 0.00000000e+00
- 2 21 261 261 0.24190933e+01 0.12556926e+00 0.83848291e+00 0.00000000e+00
- 2 21 261 261 0.57791858e+01 0.30047590e+01 0.16096241e+01 0.00000000e+00
- 2 21 261 261 0.80930591e+01 0.33585107e+01 -0.11992635e+01 0.00000000e+00
- 2 21 261 261 0.28289118e+00 0.71113656e+00 -0.26836063e-01 0.00000000e+00
- 2 21 261 261 0.32991400e+00 -0.57960985e-01 -0.55684080e+00 0.00000000e+00
- 2 21 261 261 0.53099755e+01 0.43210895e+01 -0.24421045e+02 0.00000000e+00
- 2 21 261 261 0.36840724e+00 0.44915979e+00 -0.23173176e+01 0.00000000e+00
- 2 21 261 261 0.12036124e+00 0.11906187e+01 -0.44322123e+01 0.00000000e+00
- 2 21 261 261 0.34854627e+00 0.11148548e+01 -0.54523054e+01 0.00000000e+00
- 2 21 261 261 0.51102212e+00 0.51172817e+01 -0.27060839e+02 0.00000000e+00
- 2 21 261 261 0.68756783e-01 0.25027284e+01 -0.30057481e+02 0.00000000e+00
- 2 21 261 261 -0.15964959e+00 0.18376562e+01 -0.30100798e+02 0.00000000e+00
- 2 21 261 261 -0.53359224e+00 0.10268429e+01 -0.21379906e+02 0.00000000e+00
- 2 21 261 261 -0.32991400e+00 0.57960985e-01 -0.95959496e+01 0.00000000e+00
- 2 21 261 261 0.17898048e+00 0.43956284e+01 -0.40120838e+03 0.00000000e+00
- 2 21 261 261 -0.29277582e+00 0.24820328e+01 -0.23600263e+03 0.00000000e+00
- 2 21 261 261 -0.27875209e+01 -0.16528238e+01 -0.10911564e+04 0.00000000e+00
- 2 21 261 261 -0.36840724e+00 -0.44915979e+00 -0.13455998e+03 0.00000000e+00
- 2 21 261 261 0.15964959e+00 -0.18376562e+01 -0.44945063e+03 0.00000000e+00
- 2 21 261 261 -0.15857788e+00 -0.35883515e+01 -0.47358245e+03 0.00000000e+00
- 2 21 261 261 -0.34854627e+00 -0.11148548e+01 -0.13934322e+03 0.00000000e+00
- 2 21 261 261 0.29277582e+00 -0.24820328e+01 -0.81071689e+02 0.00000000e+00
- 2 21 261 261 -0.12036124e+00 -0.11906187e+01 -0.32507787e+02 0.00000000e+00
- 2 21 261 261 -0.84282939e+00 0.30393252e+00 -0.16458954e+02 0.00000000e+00
- 2 21 261 261 -0.24504721e+01 0.54857114e+01 -0.11260421e+03 0.00000000e+00
- 2 21 261 261 0.34279740e-01 -0.22636993e-01 -0.45717851e+01 0.00000000e+00
- 2 21 261 261 -0.49838174e+00 -0.14367607e+01 -0.10743454e+02 0.00000000e+00
- 2 21 261 261 -0.13432220e+00 -0.42477944e+00 -0.64153389e+00 0.00000000e+00
- 2 21 261 261 -0.63822597e+00 0.48527051e+00 -0.10706627e+03 0.00000000e+00
- 2 21 261 261 0.55953758e+00 0.78470631e+00 -0.43263158e+03 0.00000000e+00
- 2 21 261 261 -0.29279046e+00 0.31788062e+00 -0.11510657e+02 0.00000000e+00
- 2 1 261 261 0.49386715e-01 -0.13242353e+01 -0.35575369e+03 0.33000000e+00
- 2 1 345 345 0.23670210e+01 0.64449132e+00 -0.36138652e+02 0.00000000e+00
- 2 21 345 345 0.40940720e+00 0.64660103e+00 -0.21196959e+02 0.00000000e+00
- 2 -1 345 345 -0.23670210e+01 -0.64449132e+00 -0.50761312e+03 0.00000000e+00
- 2 92 115 141 -0.75352591e+00 -0.61416253e+01 -0.18318985e+04 0.22120802e+03
- 2 223 353 355 0.54202087e+00 0.15166616e+01 -0.37328688e+01 0.77975586e+00
- 2 213 356 357 0.13538319e+01 -0.94131335e-01 -0.13803199e+01 0.81651607e+00
- 2 313 358 359 0.17340143e+00 0.64647217e+00 -0.12778440e+01 0.88244677e+00
- 2 3122 360 361 0.10492589e+00 -0.24679917e+00 -0.82478863e+00 0.11156800e+01
- 2 111 362 363 0.25088101e+00 -0.67599613e+00 -0.41566456e+00 0.13498000e+00
- 2 -2114 364 365 0.35504961e+00 -0.51213119e+00 0.56685858e+00 0.12024870e+01
- 2 223 366 368 0.24926902e+00 -0.41586082e+00 -0.23749712e+00 0.79636822e+00
- 2 223 369 371 -0.87630171e+00 -0.23034949e+00 -0.23003610e+00 0.77918412e+00
- 1 -211 0 0 -0.20454334e+00 -0.13721008e+01 -0.99478660e-01 0.13957000e+00
- 2 323 372 373 0.42428718e+00 -0.10617125e+01 -0.20060925e+00 0.90967803e+00
- 2 -311 374 374 0.33061072e-01 -0.49346994e+00 0.59279582e-01 0.49767000e+00
- 2 313 375 376 -0.17517769e+01 -0.18224518e+01 -0.10520349e+01 0.88817752e+00
- 2 -313 377 378 0.10948339e+01 -0.16596172e+01 -0.18076651e+01 0.10064942e+01
- 2 -213 379 380 0.81961292e+00 -0.44064308e+00 -0.19394424e+01 0.76663098e+00
- 2 113 381 382 -0.95771950e-01 -0.25376137e+00 -0.37767402e+01 0.85195128e+00
- 2 213 383 384 0.20586925e+00 -0.18838622e+00 -0.20618511e+01 0.94100518e+00
- 2 111 385 386 -0.53388193e-01 -0.67964090e-01 -0.31180211e+00 0.13498000e+00
- 2 111 387 388 0.23038957e+00 -0.15437730e-01 -0.23328086e+02 0.13498000e+00
- 2 -213 389 390 -0.88629916e+00 0.12335324e+00 -0.59184023e+02 0.66882321e+00
- 2 221 391 393 -0.31013102e+00 0.43010362e+00 -0.99400247e+01 0.54745000e+00
- 2 111 394 395 -0.98686916e-01 -0.15792069e+00 -0.93351962e+01 0.13498000e+00
- 2 2224 396 397 -0.11855373e+01 0.71563632e+00 -0.78854822e+02 0.12295247e+01
- 2 111 398 399 -0.83984848e-01 0.28589812e+00 -0.81641640e+01 0.13498000e+00
- 2 -2224 400 401 -0.52716594e+00 0.75242484e+00 -0.18101905e+03 0.13084168e+01
- 1 211 0 0 -0.17450363e+00 0.43419256e-01 -0.69935851e+02 0.13957000e+00
- 2 2114 402 403 -0.34439755e+00 -0.10033268e+01 -0.93849035e+03 0.12543321e+01
- 2 213 404 405 0.15289292e-02 0.56466057e-01 -0.43492445e+03 0.60661305e+00
- 2 92 143 255 -0.28755736e+02 0.28744798e+02 0.40720288e+04 0.20620240e+04
- 1 -211 0 0 0.21161737e+00 0.10789941e+01 -0.23017827e+01 0.13957000e+00
- 1 211 0 0 -0.50250230e+00 0.31217002e+01 -0.14614788e+02 0.13957000e+00
- 2 -323 406 407 -0.34225817e+00 0.14302231e+01 -0.70133730e+01 0.90276124e+00
- 2 323 408 409 -0.20145711e+00 0.19391890e+01 -0.77257679e+01 0.87694375e+00
- 2 -213 410 411 0.36200565e+00 0.64362792e+00 -0.84956467e+01 0.91336026e+00
- 2 111 412 413 -0.24704634e+00 0.54582769e+00 -0.19430041e+01 0.13498000e+00
- 1 211 0 0 -0.20386018e-01 -0.45771453e+00 -0.71702200e+00 0.13957000e+00
- 2 111 414 415 0.22650928e+00 -0.32839369e+00 -0.71694152e+01 0.13498000e+00
- 2 -2224 416 417 -0.81852587e+00 -0.95307942e+00 -0.20818445e+02 0.11311203e+01
- 2 331 418 420 -0.10911902e+01 0.75552476e-01 -0.15970756e+02 0.95746189e+00
- 1 2212 0 0 -0.10671044e+01 -0.21453144e+01 -0.37923855e+02 0.93827000e+00
- 2 213 421 422 -0.97068070e+00 -0.12623453e+01 -0.24519418e+02 0.79156161e+00
- 2 -323 423 424 -0.19048598e+01 -0.19119043e+01 -0.42538934e+02 0.86766202e+00
- 2 313 425 426 -0.68929601e+00 -0.16742318e+01 -0.82948165e+01 0.90480270e+00
- 2 213 427 428 0.48056258e+00 -0.13009058e+01 -0.48415841e+01 0.10856019e+01
- 2 111 429 430 -0.54175917e+00 -0.96250973e+00 -0.23654512e+01 0.13498000e+00
- 2 223 431 433 0.70278905e-02 -0.81633566e+00 -0.37296851e+01 0.78080697e+00
- 2 -213 434 435 -0.10926645e+00 -0.16805872e+01 -0.29579846e+01 0.62409008e+00
- 1 211 0 0 -0.48951213e+00 -0.23753728e+00 -0.71828604e+00 0.13957000e+00
- 1 -211 0 0 0.14367256e+00 -0.11364575e+01 -0.26393636e+01 0.13957000e+00
- 1 211 0 0 -0.13745407e+00 -0.67492814e+00 -0.11719944e+01 0.13957000e+00
- 2 -213 436 437 -0.36446319e+00 -0.29691189e+00 -0.16217545e+01 0.57972124e+00
- 2 113 438 439 -0.42377741e+00 -0.18951656e+01 -0.21484237e+01 0.68493446e+00
- 2 221 440 441 -0.62553388e+00 -0.14186283e+00 -0.75121071e+00 0.54745000e+00
- 2 221 442 443 -0.21655261e+01 -0.81985724e+00 -0.26431416e+01 0.54745000e+00
- 2 213 444 445 -0.68301900e+00 -0.61741441e+00 -0.57256824e+00 0.90775080e+00
- 2 -323 446 447 -0.15215417e+01 -0.10161844e+00 -0.18245488e+01 0.89481719e+00
- 2 311 448 448 -0.11005224e+01 0.54139661e+00 -0.72799450e+00 0.49767000e+00
- 1 211 0 0 0.70734897e-01 0.18176078e+00 -0.32126048e-01 0.13957000e+00
- 2 -213 449 450 -0.34524978e+00 -0.32478731e-01 -0.32456131e+00 0.78956663e+00
- 1 211 0 0 -0.20042612e+01 0.47403108e+01 0.57858094e+00 0.13957000e+00
- 2 221 451 453 -0.16598006e+01 0.12223562e+01 0.77611342e-01 0.54745000e+00
- 2 113 454 455 -0.11555443e+01 0.30772580e+01 0.14472678e+00 0.63474878e+00
- 1 -211 0 0 -0.92463022e+00 0.35234059e+00 0.14069777e+01 0.13957000e+00
- 2 213 456 457 -0.20324644e+01 0.23545431e+00 0.90423352e+00 0.83683552e+00
- 2 221 458 460 0.80850653e-01 -0.81800425e-01 0.12793162e+00 0.54745000e+00
- 2 -323 461 462 -0.19711513e+01 -0.18612607e+00 0.11150073e+01 0.81949162e+00
- 2 311 463 463 -0.99239860e+00 -0.60297781e+00 0.79732903e+00 0.49767000e+00
- 2 213 464 465 -0.32024147e+01 -0.78905817e+00 0.25017720e+01 0.81115371e+00
- 1 -321 0 0 -0.52043396e+00 0.10563548e+00 0.11057520e+01 0.49360000e+00
- 2 331 466 467 -0.14929327e+01 -0.60986204e+00 0.23150068e+01 0.95788367e+00
- 2 323 468 469 -0.24376173e+00 0.55150993e-01 0.28062781e+00 0.89994231e+00
- 1 -321 0 0 -0.76420985e+00 0.33616423e+00 0.60104937e+00 0.49360000e+00
- 2 -3322 470 471 -0.67008577e+00 0.14339730e+01 0.29301493e+01 0.13149000e+01
- 2 3222 472 473 0.48708877e-01 0.14194036e+01 0.34137949e+01 0.11893700e+01
- 1 -211 0 0 -0.29409210e+00 0.22569313e+00 0.55520872e-01 0.13957000e+00
- 2 113 474 475 0.66314333e+00 0.58214266e+00 0.22297957e+01 0.79169450e+00
- 2 113 476 477 0.54521837e+00 0.15619660e+01 0.31774136e+01 0.71026497e+00
- 2 213 478 479 0.83636422e-01 0.51058604e+00 0.91361903e+00 0.60272485e+00
- 2 111 480 481 0.65755430e+00 0.10382211e+01 0.50990528e+01 0.13498000e+00
- 2 113 482 483 0.10176259e-02 0.82261583e+00 0.28612675e+01 0.70901874e+00
- 2 111 484 485 0.61363856e+00 0.50110448e+00 0.80360530e+00 0.13498000e+00
- 2 -213 486 487 0.64360369e+00 0.21211014e+01 0.85995619e+01 0.71281971e+00
- 2 -311 488 488 -0.90763108e-01 -0.13453040e+00 0.83746971e+01 0.49767000e+00
- 2 311 489 489 -0.45481875e+00 0.36266444e+00 0.34605119e+01 0.49767000e+00
- 2 -313 490 491 -0.19285310e+00 0.21391369e+01 0.18831084e+02 0.93676276e+00
- 2 -3114 492 493 -0.13434221e+01 0.94114235e+00 0.24029309e+02 0.13750478e+01
- 2 223 494 495 -0.12540623e+01 0.32871853e+00 0.20611453e+02 0.78299943e+00
- 2 3114 496 497 -0.30942499e+01 0.25222290e+01 0.81717223e+02 0.13786754e+01
- 2 313 498 499 0.40209004e+00 0.10403926e+01 0.51303285e+02 0.90419593e+00
- 2 -311 500 500 -0.28264729e+00 0.52460176e+00 0.14357495e+02 0.49767000e+00
- 1 321 0 0 0.12007712e+01 0.27020620e+01 0.10407159e+03 0.49360000e+00
- 2 -323 501 502 -0.11784064e+00 0.31795581e+01 0.13482759e+03 0.93226577e+00
- 2 323 503 504 0.52413205e+00 0.43608098e+01 0.14645960e+03 0.84083366e+00
- 2 -213 505 506 0.71514829e+00 0.28312305e+01 0.17522813e+03 0.80909192e+00
- 2 223 507 509 0.28001234e+00 0.14240522e+01 0.14848654e+03 0.78288303e+00
- 1 211 0 0 0.40050095e+00 0.92207698e+00 0.40192789e+02 0.13957000e+00
- 1 -2212 0 0 0.19813760e+00 0.15468750e+01 0.17969033e+03 0.93827000e+00
- 1 2212 0 0 0.48338860e+00 0.15677804e+00 0.13084652e+03 0.93827000e+00
- 1 -211 0 0 0.97998532e+00 -0.45058220e+00 0.33571968e+03 0.13957000e+00
- 2 221 510 512 0.11989733e+00 -0.48645248e-01 0.12166503e+03 0.54745000e+00
- 1 211 0 0 0.23162468e-01 0.71542998e+00 0.13807475e+03 0.13957000e+00
- 2 223 513 515 0.21795348e+00 0.23169986e-02 0.11644781e+03 0.77608549e+00
- 2 -323 516 517 0.16862475e+01 -0.94833438e+00 0.59884616e+03 0.85754537e+00
- 2 331 518 520 0.51998785e+00 -0.54388810e-01 0.90363132e+02 0.95785285e+00
- 2 313 521 522 0.24835843e+00 -0.47926750e+00 0.66885659e+02 0.89359479e+00
- 2 223 523 525 0.11694035e+01 0.48335118e-01 0.10643937e+03 0.78954720e+00
- 2 -311 526 526 0.11668514e+01 -0.43052063e+00 0.48387332e+02 0.49767000e+00
- 2 313 527 528 0.13026108e+01 -0.45205974e+00 0.45995967e+02 0.87533513e+00
- 1 211 0 0 0.88947726e+00 0.29881521e-01 0.33658012e+02 0.13957000e+00
- 2 -213 529 530 0.11389079e+00 -0.69684869e+00 0.26284781e+02 0.77998299e+00
- 2 223 531 533 0.78838551e+00 0.57567785e+00 0.49623823e+02 0.78446207e+00
- 1 211 0 0 0.30147332e+00 -0.20479096e+00 0.22004408e+02 0.13957000e+00
- 2 223 534 536 -0.11852917e+01 -0.46566351e+00 0.68671477e+02 0.77779383e+00
- 2 -323 537 538 -0.18698215e+01 -0.13057781e+01 0.70394222e+02 0.88587574e+00
- 2 323 539 540 -0.12536480e+01 -0.22535615e+00 0.36212936e+02 0.91447221e+00
- 2 111 541 542 0.14799189e+00 -0.26748554e+00 0.18738690e+02 0.13498000e+00
- 2 -213 543 544 -0.32590454e+01 -0.14030636e+01 0.92770291e+02 0.62266459e+00
- 2 213 545 546 -0.20476618e+00 0.55161511e-01 0.46968341e+01 0.97744170e+00
- 2 111 547 548 -0.17916582e+01 0.86452797e+00 0.35951448e+01 0.13498000e+00
- 2 223 549 551 -0.65940908e+00 0.83701964e+00 0.99284252e+00 0.78244652e+00
- 2 113 552 553 0.12326187e+00 0.10567874e+00 0.65444882e+00 0.70363446e+00
- 2 113 554 555 0.39665747e+00 -0.10557144e+01 0.30685366e+01 0.86502559e+00
- 2 -213 556 557 -0.57107876e+00 0.43117241e+00 0.25419642e+02 0.69256840e+00
- 2 213 558 559 0.22036939e-01 0.50067911e-01 0.29271516e+02 0.82620341e+00
- 2 111 560 561 -0.27235059e+00 0.60965064e+00 0.14280533e+02 0.13498000e+00
- 2 113 562 563 0.49799807e+00 0.19118468e+00 0.78830779e+02 0.73109291e+00
- 2 -213 564 565 0.64820918e+00 0.17245794e+00 0.10795484e+03 0.80118953e+00
- 2 111 566 567 0.77941897e-01 0.36642564e+00 0.17233780e+02 0.13498000e+00
- 2 213 568 569 0.12765893e+01 0.65222597e+00 0.83214838e+02 0.81679859e+00
- 1 -211 0 0 -0.18616286e+00 0.12781806e+00 0.54032406e+02 0.13957000e+00
- 2 213 570 571 0.27241546e+00 0.25564485e+00 0.31436210e+02 0.68227458e+00
- 2 -213 572 573 0.19697036e+00 -0.17660287e+00 0.34805132e+02 0.70206022e+00
- 1 211 0 0 0.44973659e+00 -0.88353088e+00 0.15378806e+03 0.13957000e+00
- 1 -211 0 0 -0.44828517e-01 0.21929291e+00 0.81869691e+01 0.13957000e+00
- 2 213 574 575 0.10605366e+00 -0.11699211e+00 0.41579477e+02 0.81593203e+00
- 1 -321 0 0 -0.35842636e+00 -0.38761565e+00 0.73792730e+02 0.49360000e+00
- 2 313 576 577 0.41990878e+00 -0.31098605e+00 0.73711276e+02 0.88699691e+00
- 1 -2112 0 0 -0.35549074e+00 -0.41934714e+00 0.31077304e+02 0.93957000e+00
- 1 2212 0 0 0.16270215e+00 0.19683941e+00 0.11335977e+02 0.93827000e+00
- 2 223 578 580 0.25160821e+00 0.18530527e+00 0.46918109e+01 0.77742446e+00
- 1 -211 0 0 0.12694224e+00 -0.22740683e+00 0.72380240e+00 0.13957000e+00
- 1 211 0 0 0.62962028e+00 0.33493999e-01 0.10596134e+01 0.13957000e+00
- 2 92 257 260 0.15934069e+00 -0.17297248e+00 0.20818794e+04 0.48378128e+01
- 2 -313 581 582 0.22720413e+00 -0.86608261e+00 0.67195533e+03 0.10055315e+01
- 2 -213 583 584 -0.66463214e+00 0.27966985e+00 0.27069087e+03 0.72084707e+00
- 2 323 585 586 -0.26705631e-01 0.88910227e-01 0.64347923e+03 0.88222412e+00
- 2 3122 587 588 0.62347433e+00 0.32453005e+00 0.49575392e+03 0.11156800e+01
- 2 92 262 344 0.23936978e+02 -0.13085138e+02 -0.37228796e+04 0.30506868e+04
- 2 323 589 590 -0.11032912e+01 0.20523809e+00 0.24527409e+03 0.89719074e+00
- 1 -321 0 0 0.50716453e+00 0.22238897e+00 0.47916016e+02 0.49360000e+00
- 2 323 591 592 -0.27201451e+00 0.38891483e+00 0.87840272e+02 0.81215074e+00
- 2 113 593 594 0.31125985e+00 -0.47111146e+00 0.34282643e+02 0.11308350e+01
- 2 -213 595 596 -0.55604753e-02 0.19855347e+00 0.28644308e+02 0.78754773e+00
- 2 223 597 599 -0.75606606e+00 -0.39763964e-01 0.59793046e+01 0.80907263e+00
- 2 221 600 601 0.17254452e+00 -0.23273697e+00 0.60688625e+01 0.54745000e+00
- 2 213 602 603 -0.63429763e+00 -0.92834294e+00 0.29756721e+01 0.59206489e+00
- 1 -211 0 0 0.40274711e+00 -0.48289141e+00 0.30366003e+01 0.13957000e+00
- 2 213 604 605 -0.66962751e+00 -0.25354120e+01 0.49838277e+01 0.78510836e+00
- 1 -321 0 0 -0.57800993e+00 -0.82553128e+00 0.22045210e+01 0.49360000e+00
- 2 323 606 607 -0.12596466e+00 -0.26208412e+01 0.73247750e+01 0.90622116e+00
- 2 -213 608 609 -0.11705631e+01 -0.39009631e+01 0.10800449e+02 0.86826474e+00
- 1 211 0 0 -0.60604922e-01 -0.51780531e+00 0.16722913e+01 0.13957000e+00
- 2 113 610 611 -0.19192039e+01 -0.56584348e+01 0.12532898e+02 0.88639579e+00
- 1 -211 0 0 0.32896776e+00 -0.28377327e+01 0.49140237e+01 0.13957000e+00
- 1 211 0 0 0.38521692e+00 -0.53580165e+00 0.59562943e+00 0.13957000e+00
- 1 -211 0 0 0.46791654e+00 -0.21689337e+01 0.15636267e+01 0.13957000e+00
- 2 111 612 613 0.67181439e+00 -0.63095735e+00 0.57739716e+00 0.13498000e+00
- 2 -313 614 615 0.41183767e+01 -0.99091298e+01 0.52838126e+01 0.85028206e+00
- 1 321 0 0 0.21274605e+00 -0.56186482e+00 0.36255799e+00 0.49360000e+00
- 2 -323 616 617 0.14894295e+00 -0.19344553e+01 0.33940884e+00 0.88433768e+00
- 2 -3334 618 619 -0.14033039e+00 -0.23688752e+01 0.11511132e+00 0.16724500e+01
- 2 333 620 621 0.27471002e+01 0.43575145e+00 0.23897271e+01 0.10192112e+01
- 2 3334 622 623 0.44999518e+01 0.12028093e+01 0.25623739e+01 0.16724500e+01
- 2 323 624 625 0.24304722e+01 0.74216680e+00 0.47722894e+00 0.88245935e+00
- 2 -213 626 627 0.33954544e+01 0.92142363e+00 0.13359038e+01 0.78449326e+00
- 2 113 628 629 0.14029204e+01 0.33728324e+00 0.93114102e+00 0.66910666e+00
- 2 331 630 632 0.38543239e+01 0.16149353e+01 0.31552300e+00 0.95756754e+00
- 1 211 0 0 0.16277135e+01 0.62047986e+00 -0.58951173e-01 0.13957000e+00
- 2 -213 633 634 0.72915475e-01 0.23278781e+00 0.13777026e+00 0.70089297e+00
- 2 213 635 636 0.20728287e+01 0.88421043e+00 -0.13509479e-01 0.77302673e+00
- 1 -211 0 0 0.25996924e+01 0.13750154e+01 -0.33565960e+00 0.13957000e+00
- 2 -311 637 637 0.47570061e+00 0.36191853e+00 -0.14137276e+01 0.49767000e+00
- 2 313 638 639 0.96863353e+00 0.47245264e+00 -0.32014846e+01 0.89872170e+00
- 1 211 0 0 0.51867393e+00 0.70601482e-01 -0.94819650e+00 0.13957000e+00
- 2 223 640 642 0.69025870e+00 0.77785260e+00 -0.36249835e+01 0.77552062e+00
- 2 113 643 644 0.73290303e+00 0.10845133e+01 -0.41488805e+01 0.41011629e+00
- 2 223 645 647 -0.17323595e+00 0.83860623e+00 -0.41612771e+01 0.74311785e+00
- 2 113 648 649 0.64958554e+00 0.93309057e+00 -0.43726611e+01 0.75919424e+00
- 2 111 650 651 0.62009238e+00 0.67616986e+00 -0.38171705e+01 0.13498000e+00
- 2 113 652 653 0.11209118e+01 0.11555716e+01 -0.81126376e+01 0.76503113e+00
- 2 113 654 655 0.59523467e+00 0.12231194e+01 -0.72382196e+01 0.81022114e+00
- 2 -323 656 657 0.12219521e+01 0.17912849e+01 -0.13219360e+02 0.93078110e+00
- 2 323 658 659 0.23853857e+00 0.13034928e+01 -0.98958543e+01 0.87737831e+00
- 2 331 660 661 -0.46808464e+00 0.28635867e+01 -0.17850048e+02 0.95773900e+00
- 1 -321 0 0 0.10741065e+00 0.53828735e+00 -0.54962984e+01 0.49360000e+00
- 2 -3122 662 663 -0.19052889e+00 0.95755836e+00 -0.18605255e+02 0.11156800e+01
- 1 2112 0 0 -0.21116072e+00 0.16722590e+01 -0.27593136e+02 0.93957000e+00
- 2 213 664 665 -0.21402766e+00 0.12173887e+01 -0.10335153e+03 0.90895532e+00
- 1 -321 0 0 0.82337840e+00 0.12586502e+01 -0.64008351e+02 0.49360000e+00
- 2 311 666 666 -0.78528725e+00 0.63649776e+00 -0.49281994e+02 0.49767000e+00
- 2 111 667 668 0.37504000e+00 0.77149682e+00 -0.62614308e+02 0.13498000e+00
- 2 -313 669 670 -0.20821511e+00 0.82123152e+00 -0.10115949e+03 0.10063554e+01
- 2 313 671 672 -0.20270323e+00 0.22304387e+01 -0.19622353e+03 0.88354841e+00
- 1 -2112 0 0 -0.89469679e+00 0.67262529e+00 -0.27062336e+03 0.93957000e+00
- 1 2212 0 0 -0.59817754e+00 -0.60663335e+00 -0.44382180e+03 0.93827000e+00
- 2 221 673 675 -0.99312416e+00 -0.18285380e+00 -0.25481663e+03 0.54745000e+00
- 2 -213 676 677 -0.30331073e+00 -0.29333939e+01 -0.56765727e+03 0.68020687e+00
- 1 211 0 0 -0.59632821e+00 -0.41420880e+00 -0.99073249e+02 0.13957000e+00
- 1 -2212 0 0 -0.37164536e+00 -0.48877844e+00 -0.11753987e+03 0.93827000e+00
- 2 223 678 680 0.27813583e+00 -0.31329562e+01 -0.49896420e+03 0.78156002e+00
- 2 2214 681 682 -0.97223879e+00 -0.23911497e+01 -0.16483324e+03 0.11134007e+01
- 2 113 683 684 0.41319218e+00 0.37745980e+00 -0.19494756e+02 0.82681322e+00
- 2 -2224 685 686 -0.84680281e+00 0.13426176e+01 -0.47715643e+02 0.12845423e+01
- 1 211 0 0 -0.33692025e+00 -0.24089376e-02 -0.77846256e+01 0.13957000e+00
- 1 2112 0 0 0.22595800e+00 0.41282044e+00 -0.20867861e+02 0.93957000e+00
- 2 223 687 689 0.40009196e-01 -0.58327985e+00 -0.25463083e+02 0.78427122e+00
- 2 213 690 691 -0.69212957e+00 -0.52401350e+00 -0.17355371e+02 0.44458155e+00
- 1 -211 0 0 0.15402743e-01 0.31546953e+00 -0.25765929e+01 0.13957000e+00
- 2 213 692 693 -0.89007422e+00 0.16041214e+01 -0.35893515e+02 0.84991869e+00
- 2 -323 694 695 -0.63782309e+00 -0.55381102e+00 -0.10075368e+02 0.88539742e+00
- 2 323 696 697 0.24120499e+00 0.72996884e+00 -0.30898431e+02 0.89100814e+00
- 2 113 698 699 -0.95400557e+00 -0.72612039e+00 -0.14664327e+02 0.75879740e+00
- 2 223 700 702 0.28871922e+00 0.24753141e+00 -0.44197910e+02 0.78659479e+00
- 1 -211 0 0 -0.21258527e+00 0.22644833e-01 -0.72031454e+00 0.13957000e+00
- 2 221 703 704 0.83925298e-02 0.24825470e+00 -0.42490607e+02 0.54745000e+00
- 1 211 0 0 0.44008223e+00 -0.49666618e+00 -0.25912385e+02 0.13957000e+00
- 2 -323 705 706 0.30127043e+00 0.10249368e+01 -0.19377615e+03 0.87591086e+00
- 2 333 707 708 -0.51147362e+00 0.23248759e+00 -0.95231147e+02 0.10199111e+01
- 1 321 0 0 0.10126115e+00 -0.40906668e+00 -0.22194631e+03 0.49360000e+00
- 2 -323 709 710 -0.59727444e+00 -0.36421295e+00 -0.15566163e+03 0.78350565e+00
- 2 311 711 711 0.31135373e+00 -0.38296511e+00 -0.10551517e+03 0.49767000e+00
- 2 92 346 352 0.40940720e+00 0.64660103e+00 -0.56494873e+03 0.10756428e+02
- 2 111 712 713 0.17502924e+00 0.10107615e+00 -0.48782558e+01 0.13498000e+00
- 2 313 714 715 0.17819923e+01 0.89217621e+00 -0.39136763e+02 0.86767056e+00
- 2 -323 716 717 0.53800558e+00 -0.23760758e+00 -0.27805777e+02 0.91407500e+00
- 1 211 0 0 -0.82908969e-01 -0.27688484e-01 -0.95200218e+01 0.13957000e+00
- 1 -211 0 0 0.96153006e-01 0.58236994e+00 -0.30935614e+02 0.13957000e+00
- 2 323 718 719 -0.96875790e+00 -0.31229303e+00 -0.26206368e+03 0.92739462e+00
- 2 -311 720 720 -0.11301060e+01 -0.35143217e+00 -0.19060862e+03 0.49767000e+00
- 1 211 0 0 -0.70015889e-02 0.57697215e+00 -0.14159805e+01 0.13957000e+00
- 1 -211 0 0 0.44946361e+00 0.62989867e+00 -0.19129395e+01 0.13957000e+00
- 2 111 721 722 0.99558854e-01 0.30979076e+00 -0.40394889e+00 0.13498000e+00
- 1 211 0 0 0.65261691e+00 -0.42310102e+00 -0.79321555e+00 0.13957000e+00
- 2 111 723 724 0.70121497e+00 0.32896968e+00 -0.58710434e+00 0.13498000e+00
- 1 321 0 0 -0.83820428e-01 0.41422110e+00 -0.47307668e+00 0.49360000e+00
- 1 -211 0 0 0.25722185e+00 0.23225106e+00 -0.80476727e+00 0.13957000e+00
- 1 2212 0 0 0.67857018e-01 -0.11985264e+00 -0.74052383e+00 0.93827000e+00
- 1 -211 0 0 0.37068872e-01 -0.12694652e+00 -0.84264799e-01 0.13957000e+00
- 1 22 0 0 0.21649962e+00 -0.59463339e+00 -0.30770329e+00 0.00000000e+00
- 1 22 0 0 0.34381388e-01 -0.81362746e-01 -0.10796128e+00 0.00000000e+00
- 1 -2112 0 0 0.29226447e+00 -0.24053229e+00 0.29220951e+00 0.93957000e+00
- 2 111 725 726 0.62785143e-01 -0.27159890e+00 0.27464907e+00 0.13498000e+00
- 1 211 0 0 0.63262295e-01 -0.23952437e-01 0.32015845e-01 0.13957000e+00
- 1 -211 0 0 0.33940259e+00 -0.20999491e+00 -0.44546782e-02 0.13957000e+00
- 2 111 727 728 -0.15339586e+00 -0.18191347e+00 -0.26505829e+00 0.13498000e+00
- 1 -211 0 0 -0.38313039e+00 -0.10591270e+00 0.38498464e-01 0.13957000e+00
- 1 211 0 0 -0.27703961e+00 -0.29720007e+00 -0.21864556e+00 0.13957000e+00
- 2 111 729 730 -0.21613171e+00 0.17276327e+00 -0.49889003e-01 0.13498000e+00
- 2 311 731 731 0.30792224e+00 -0.10422417e+01 0.10778763e-01 0.49767000e+00
- 1 211 0 0 0.11636494e+00 -0.19470885e-01 -0.21138801e+00 0.13957000e+00
- 1 130 0 0 0.33061072e-01 -0.49346994e+00 0.59279582e-01 0.49767000e+00
- 1 321 0 0 -0.16003853e+01 -0.17813090e+01 -0.85395259e+00 0.49360000e+00
- 1 -211 0 0 -0.15139162e+00 -0.41142895e-01 -0.19808228e+00 0.13957000e+00
- 1 -321 0 0 0.10907895e+01 -0.15007988e+01 -0.12975229e+01 0.49360000e+00
- 1 211 0 0 0.40443910e-02 -0.15881845e+00 -0.51014217e+00 0.13957000e+00
- 1 -211 0 0 0.72987249e-01 -0.41457150e-01 -0.99451624e+00 0.13957000e+00
- 2 111 732 733 0.74662567e+00 -0.39918593e+00 -0.94492619e+00 0.13498000e+00
- 1 -211 0 0 -0.37194276e+00 0.11398917e+00 -0.17842710e+01 0.13957000e+00
- 1 211 0 0 0.27617081e+00 -0.36775054e+00 -0.19924692e+01 0.13957000e+00
- 1 211 0 0 0.42651840e-01 0.26343146e-01 -0.19594135e+01 0.13957000e+00
- 2 111 734 735 0.16321741e+00 -0.21472937e+00 -0.10243752e+00 0.13498000e+00
- 1 22 0 0 -0.49252260e-01 -0.67603538e-02 -0.22005435e-01 0.00000000e+00
- 1 22 0 0 -0.41359333e-02 -0.61203736e-01 -0.28979667e+00 0.00000000e+00
- 1 22 0 0 0.10394720e+00 0.60075986e-01 -0.10115437e+02 0.00000000e+00
- 1 22 0 0 0.12644237e+00 -0.75513716e-01 -0.13212648e+02 0.00000000e+00
- 1 -211 0 0 -0.86149871e+00 0.41411155e-01 -0.55727966e+02 0.13957000e+00
- 2 111 736 737 -0.24800447e-01 0.81942084e-01 -0.34560565e+01 0.13498000e+00
- 2 111 738 739 -0.18968160e+00 0.12518636e+00 -0.37225331e+01 0.13498000e+00
- 2 111 740 741 -0.86015139e-01 0.31774133e+00 -0.42828204e+01 0.13498000e+00
- 2 111 742 743 -0.34434278e-01 -0.12824067e-01 -0.19346712e+01 0.13498000e+00
- 1 22 0 0 -0.12473614e+00 -0.16074803e+00 -0.84181276e+01 0.00000000e+00
- 1 22 0 0 0.26049225e-01 0.28273488e-02 -0.91706857e+00 0.00000000e+00
- 1 2212 0 0 -0.91549286e+00 0.31375234e+00 -0.57576207e+02 0.93827000e+00
- 1 211 0 0 -0.27004444e+00 0.40188398e+00 -0.21278615e+02 0.13957000e+00
- 1 22 0 0 -0.60973913e-01 0.29361767e+00 -0.77860449e+01 0.00000000e+00
- 1 22 0 0 -0.23010936e-01 -0.77195539e-02 -0.37811916e+00 0.00000000e+00
- 1 -2212 0 0 -0.32904030e+00 0.86878541e+00 -0.14225139e+03 0.93827000e+00
- 1 -211 0 0 -0.19812564e+00 -0.11636057e+00 -0.38767663e+02 0.13957000e+00
- 1 2112 0 0 -0.48190918e+00 -0.65207578e+00 -0.72360925e+03 0.93957000e+00
- 2 111 744 745 0.13751163e+00 -0.35125101e+00 -0.21488109e+03 0.13498000e+00
- 1 211 0 0 0.60832629e-01 -0.13774585e+00 -0.60693641e+02 0.13957000e+00
- 2 111 746 747 -0.59303700e-01 0.19421191e+00 -0.37423081e+03 0.13498000e+00
- 1 -321 0 0 -0.36322481e+00 0.10178928e+01 -0.60529210e+01 0.49360000e+00
- 2 111 748 749 0.20966636e-01 0.41233027e+00 -0.96045200e+00 0.13498000e+00
- 2 311 750 750 -0.22785447e+00 0.16832168e+01 -0.71994185e+01 0.49767000e+00
- 1 211 0 0 0.26397360e-01 0.25597223e+00 -0.52634947e+00 0.13957000e+00
- 1 -211 0 0 0.20786110e+00 0.83774145e+00 -0.57117728e+01 0.13957000e+00
- 2 111 751 752 0.15414456e+00 -0.19411353e+00 -0.27838739e+01 0.13498000e+00
- 1 22 0 0 -0.91975066e-01 0.78307687e-01 -0.42521125e+00 0.00000000e+00
- 1 22 0 0 -0.15507128e+00 0.46752000e+00 -0.15177928e+01 0.00000000e+00
- 1 22 0 0 0.19900394e+00 -0.24214808e+00 -0.45428220e+01 0.00000000e+00
- 1 22 0 0 0.27505336e-01 -0.86245618e-01 -0.26265932e+01 0.00000000e+00
- 1 -2212 0 0 -0.66959601e+00 -0.92648200e+00 -0.18789168e+02 0.93827000e+00
- 1 -211 0 0 -0.14892986e+00 -0.26597416e-01 -0.20292765e+01 0.13957000e+00
- 1 211 0 0 -0.13006558e+00 -0.66069016e-01 -0.15692803e+01 0.13957000e+00
- 1 -211 0 0 -0.30771995e+00 0.14266925e-01 -0.58481023e+01 0.13957000e+00
- 2 221 753 754 -0.65340468e+00 0.12735457e+00 -0.85533731e+01 0.54745000e+00
- 1 211 0 0 -0.31736234e+00 -0.97481815e+00 -0.12683624e+02 0.13957000e+00
- 2 111 755 756 -0.65331836e+00 -0.28752713e+00 -0.11835794e+02 0.13498000e+00
- 2 -311 757 757 -0.15140836e+01 -0.14080641e+01 -0.28525894e+02 0.49767000e+00
- 1 -211 0 0 -0.39077615e+00 -0.50384020e+00 -0.14013040e+02 0.13957000e+00
- 2 311 758 758 -0.23996081e+00 -0.90251789e+00 -0.34038603e+01 0.49767000e+00
- 2 111 759 760 -0.44933520e+00 -0.77171395e+00 -0.48909562e+01 0.13498000e+00
- 1 211 0 0 -0.25898282e-02 0.11876098e+00 -0.11599033e+01 0.13957000e+00
- 2 111 761 762 0.48315241e+00 -0.14196667e+01 -0.36816808e+01 0.13498000e+00
- 1 22 0 0 -0.28898191e+00 -0.42231378e+00 -0.12112805e+01 0.00000000e+00
- 1 22 0 0 -0.25277726e+00 -0.54019594e+00 -0.11541707e+01 0.00000000e+00
- 1 211 0 0 0.19677133e+00 -0.68613585e-01 -0.73621501e+00 0.13957000e+00
- 1 -211 0 0 0.45178788e-01 -0.45253198e+00 -0.16727225e+01 0.13957000e+00
- 2 111 763 764 -0.23492222e+00 -0.29519010e+00 -0.13207475e+01 0.13498000e+00
- 1 -211 0 0 -0.14433814e+00 -0.17541433e+00 -0.28871583e+00 0.13957000e+00
- 2 111 765 766 0.35071685e-01 -0.15051729e+01 -0.26692688e+01 0.13498000e+00
- 1 -211 0 0 -0.34357386e+00 0.42890128e-01 -0.69802401e+00 0.13957000e+00
- 2 111 767 768 -0.20889338e-01 -0.33980202e+00 -0.92373047e+00 0.13498000e+00
- 1 211 0 0 -0.11596220e+00 -0.13948662e+01 -0.11864615e+01 0.13957000e+00
- 1 -211 0 0 -0.30781521e+00 -0.50029934e+00 -0.96196223e+00 0.13957000e+00
- 1 22 0 0 -0.44839354e+00 0.17245872e+00 -0.46783254e+00 0.00000000e+00
- 1 22 0 0 -0.17714034e+00 -0.31432154e+00 -0.28337817e+00 0.00000000e+00
- 1 22 0 0 -0.17808775e+01 -0.88515188e+00 -0.21825689e+01 0.00000000e+00
- 1 22 0 0 -0.38464860e+00 0.65294638e-01 -0.46057270e+00 0.00000000e+00
- 1 211 0 0 -0.81937621e+00 -0.24085413e+00 -0.44205895e+00 0.13957000e+00
- 2 111 769 770 0.13635721e+00 -0.37656028e+00 -0.13050929e+00 0.13498000e+00
- 2 -311 771 771 -0.12673144e+01 0.37898039e-01 -0.17366478e+01 0.49767000e+00
- 1 -211 0 0 -0.25422727e+00 -0.13951648e+00 -0.87901079e-01 0.13957000e+00
- 2 310 772 773 -0.11005224e+01 0.54139661e+00 -0.72799450e+00 0.49767000e+00
- 1 -211 0 0 0.36997222e-01 -0.66276399e-01 0.20138829e+00 0.13957000e+00
- 2 111 774 775 -0.38224700e+00 0.33797667e-01 -0.52594959e+00 0.13498000e+00
- 2 111 776 777 -0.11546171e+01 0.80758660e+00 0.56229358e-01 0.13498000e+00
- 2 111 778 779 -0.20172611e+00 0.22851459e+00 0.43489232e-01 0.13498000e+00
- 2 111 780 781 -0.30345737e+00 0.18625506e+00 -0.22107248e-01 0.13498000e+00
- 1 211 0 0 -0.18795118e-01 0.24048220e+00 0.84010418e-01 0.13957000e+00
- 1 -211 0 0 -0.11367492e+01 0.28367758e+01 0.60716365e-01 0.13957000e+00
- 1 211 0 0 -0.12969122e+01 0.47723324e+00 0.36790891e+00 0.13957000e+00
- 2 111 782 783 -0.73555218e+00 -0.24177893e+00 0.53632461e+00 0.13498000e+00
- 1 -211 0 0 -0.21203093e-01 -0.13073693e+00 0.22040299e-01 0.13957000e+00
- 1 211 0 0 0.82824447e-01 0.12097315e+00 0.10020942e+00 0.13957000e+00
- 2 111 784 785 0.19229299e-01 -0.72036645e-01 0.56819043e-02 0.13498000e+00
- 2 -311 786 786 -0.16337563e+01 -0.98417415e-01 0.11113843e+01 0.49767000e+00
- 1 -211 0 0 -0.33739496e+00 -0.87708656e-01 0.36230140e-02 0.13957000e+00
- 1 130 0 0 -0.99239860e+00 -0.60297781e+00 0.79732903e+00 0.49767000e+00
- 1 211 0 0 -0.28714617e+01 -0.80937425e+00 0.24367268e+01 0.13957000e+00
- 2 111 787 788 -0.33095306e+00 0.20316080e-01 0.65045277e-01 0.13498000e+00
- 1 22 0 0 -0.78008337e-01 -0.93722753e-02 0.81819656e-01 0.00000000e+00
- 2 113 789 790 -0.14149244e+01 -0.60048977e+00 0.22331871e+01 0.92992125e+00
- 1 321 0 0 -0.32003830e+00 -0.18179518e+00 0.31216520e+00 0.49360000e+00
- 2 111 791 792 0.76276569e-01 0.23694618e+00 -0.31537393e-01 0.13498000e+00
- 2 -3122 793 794 -0.67324030e+00 0.13581535e+01 0.25448419e+01 0.11156800e+01
- 2 111 795 796 0.31545298e-02 0.75819481e-01 0.38530749e+00 0.13498000e+00
- 1 2112 0 0 0.97264395e-01 0.11551097e+01 0.31369017e+01 0.93957000e+00
- 1 211 0 0 -0.48555518e-01 0.26429390e+00 0.27689318e+00 0.13957000e+00
- 1 211 0 0 0.49270165e+00 0.70543911e+00 0.20090089e+01 0.13957000e+00
- 1 -211 0 0 0.17044168e+00 -0.12329645e+00 0.22078682e+00 0.13957000e+00
- 1 -211 0 0 0.55662833e+00 0.15475420e+01 0.30141734e+01 0.13957000e+00
- 1 211 0 0 -0.11409954e-01 0.14424038e-01 0.16324017e+00 0.13957000e+00
- 1 211 0 0 0.11141265e+00 0.97624093e-01 0.55360286e-02 0.13957000e+00
- 2 111 797 798 -0.27776230e-01 0.41296195e+00 0.90808300e+00 0.13498000e+00
- 1 22 0 0 0.58994710e+00 0.93443009e+00 0.47349987e+01 0.00000000e+00
- 1 22 0 0 0.67607196e-01 0.10379099e+00 0.36405409e+00 0.00000000e+00
- 1 -211 0 0 0.22357097e+00 0.57466694e+00 0.23557802e+01 0.13957000e+00
- 1 211 0 0 -0.22255334e+00 0.24794890e+00 0.50548736e+00 0.13957000e+00
- 1 22 0 0 0.31782868e+00 0.31400300e+00 0.52336929e+00 0.00000000e+00
- 1 22 0 0 0.29580988e+00 0.18710148e+00 0.28023601e+00 0.00000000e+00
- 1 -211 0 0 0.74056755e+00 0.19250672e+01 0.78025653e+01 0.13957000e+00
- 2 111 799 800 -0.96963864e-01 0.19603419e+00 0.79699667e+00 0.13498000e+00
- 1 130 0 0 -0.90763108e-01 -0.13453040e+00 0.83746971e+01 0.49767000e+00
- 1 130 0 0 -0.45481875e+00 0.36266444e+00 0.34605119e+01 0.49767000e+00
- 2 -311 801 801 0.14992767e+00 0.16222435e+01 0.13149986e+02 0.49767000e+00
- 2 111 802 803 -0.34278077e+00 0.51689347e+00 0.56810979e+01 0.13498000e+00
- 2 -3122 804 805 -0.11879148e+01 0.10136246e+01 0.21508800e+02 0.11156800e+01
- 1 211 0 0 -0.15550733e+00 -0.72482259e-01 0.25205089e+01 0.13957000e+00
- 1 22 0 0 -0.12440263e+01 0.21929240e+00 0.15074468e+02 0.00000000e+00
- 2 111 806 807 -0.10035991e-01 0.10942613e+00 0.55369851e+01 0.13498000e+00
- 2 3122 808 809 -0.20880201e+01 0.18585410e+01 0.58532879e+02 0.11156800e+01
- 1 -211 0 0 -0.10062298e+01 0.66368801e+00 0.23184345e+02 0.13957000e+00
- 1 321 0 0 0.96856914e-01 0.31272576e+00 0.15916345e+02 0.49360000e+00
- 1 -211 0 0 0.30523313e+00 0.72766682e+00 0.35386940e+02 0.13957000e+00
- 2 310 810 811 -0.28264729e+00 0.52460176e+00 0.14357495e+02 0.49767000e+00
- 2 -311 812 812 0.20654036e+00 0.19071506e+01 0.74915823e+02 0.49767000e+00
- 1 -211 0 0 -0.32438100e+00 0.12724075e+01 0.59911766e+02 0.13957000e+00
- 2 311 813 813 0.40011544e+00 0.20361376e+01 0.66237571e+02 0.49767000e+00
- 1 211 0 0 0.12401661e+00 0.23246722e+01 0.80222029e+02 0.13957000e+00
- 1 -211 0 0 0.34082452e+00 0.32277147e+00 0.29665425e+02 0.13957000e+00
- 2 111 814 815 0.37432377e+00 0.25084591e+01 0.14556270e+03 0.13498000e+00
- 1 -211 0 0 -0.53186843e-01 0.10041759e+00 0.11693262e+02 0.13957000e+00
- 1 211 0 0 0.21050093e+00 0.52769319e+00 0.39333246e+02 0.13957000e+00
- 2 111 816 817 0.12269825e+00 0.79594146e+00 0.97460029e+02 0.13498000e+00
- 1 211 0 0 0.30395197e-02 -0.83217898e-01 0.16526005e+02 0.13957000e+00
- 1 -211 0 0 0.43403254e-02 0.41770172e-01 0.54897376e+02 0.13957000e+00
- 2 111 818 819 0.11251749e+00 -0.71975215e-02 0.50241650e+02 0.13498000e+00
- 1 -211 0 0 0.87735337e-01 0.67543498e-01 0.76605276e+02 0.13957000e+00
- 1 211 0 0 -0.67789874e-01 -0.28249738e-01 0.74180255e+01 0.13957000e+00
- 2 111 820 821 0.19800802e+00 -0.36976762e-01 0.32424505e+02 0.13498000e+00
- 1 -321 0 0 0.15059502e+01 -0.61759771e+00 0.45393433e+03 0.49360000e+00
- 2 111 822 823 0.18029729e+00 -0.33073667e+00 0.14491184e+03 0.13498000e+00
- 1 -211 0 0 0.71264512e-01 -0.58907137e-01 0.32813148e+02 0.13957000e+00
- 1 211 0 0 0.90332475e-01 -0.71956068e-01 0.14225911e+02 0.13957000e+00
- 2 221 824 826 0.35839086e+00 0.76474395e-01 0.43324073e+02 0.54745000e+00
- 2 311 827 827 0.34388873e+00 -0.13178236e+00 0.49600137e+02 0.49767000e+00
- 2 111 828 829 -0.95530299e-01 -0.34748514e+00 0.17285521e+02 0.13498000e+00
- 1 -211 0 0 0.14371792e+00 0.12849933e-01 0.10621268e+02 0.13957000e+00
- 1 211 0 0 0.78434615e+00 -0.20009107e+00 0.72199505e+02 0.13957000e+00
- 2 111 830 831 0.24133938e+00 0.23557626e+00 0.23618602e+02 0.13498000e+00
- 1 130 0 0 0.11668514e+01 -0.43052063e+00 0.48387332e+02 0.49767000e+00
- 1 321 0 0 0.82976116e+00 -0.46409810e+00 0.36976680e+02 0.49360000e+00
- 1 -211 0 0 0.47284959e+00 0.12038362e-01 0.90192870e+01 0.13957000e+00
- 1 -211 0 0 -0.27405807e+00 -0.92684423e-01 0.77288395e+01 0.13957000e+00
- 2 111 832 833 0.38794886e+00 -0.60416426e+00 0.18555941e+02 0.13498000e+00
- 1 -211 0 0 0.30124912e+00 -0.34140483e-01 0.14300467e+02 0.13957000e+00
- 1 211 0 0 0.12825940e+00 0.15187303e+00 0.48740323e+01 0.13957000e+00
- 2 111 834 835 0.35887699e+00 0.45794530e+00 0.30449324e+02 0.13498000e+00
- 1 -211 0 0 -0.93357546e-01 -0.12202444e+00 0.65804516e+01 0.13957000e+00
- 1 211 0 0 -0.43313051e-01 0.24244229e-01 0.73925478e+01 0.13957000e+00
- 2 111 836 837 -0.10486211e+01 -0.36788330e+00 0.54698477e+02 0.13498000e+00
- 1 -321 0 0 -0.14436973e+01 -0.12843651e+01 0.59110265e+02 0.49360000e+00
- 2 111 838 839 -0.42612421e+00 -0.21413031e-01 0.11283956e+02 0.13498000e+00
- 1 321 0 0 -0.10999003e+01 0.35998490e-01 0.25079656e+02 0.49360000e+00
- 2 111 840 841 -0.15374763e+00 -0.26135464e+00 0.11133280e+02 0.13498000e+00
- 1 22 0 0 -0.84535920e-02 -0.11580895e+00 0.67858590e+01 0.00000000e+00
- 1 22 0 0 0.15644548e+00 -0.15167659e+00 0.11952831e+02 0.00000000e+00
- 1 -211 0 0 -0.10427547e+01 -0.18794702e+00 0.25955952e+02 0.13957000e+00
- 2 111 842 843 -0.22162907e+01 -0.12151165e+01 0.66814339e+02 0.13498000e+00
- 1 211 0 0 0.12862772e+00 0.12291837e+00 0.40700209e+01 0.13957000e+00
- 2 111 844 845 -0.33339390e+00 -0.67756855e-01 0.62681315e+00 0.13498000e+00
- 1 22 0 0 -0.13186337e+01 0.67092623e+00 0.25659690e+01 0.00000000e+00
- 1 22 0 0 -0.47302452e+00 0.19360173e+00 0.10291758e+01 0.00000000e+00
- 1 -211 0 0 -0.25421407e-01 0.21988594e+00 0.37649863e+00 0.13957000e+00
- 1 211 0 0 -0.23078444e+00 0.19055964e+00 -0.38646512e-02 0.13957000e+00
- 2 111 846 847 -0.40320324e+00 0.42657406e+00 0.62020854e+00 0.13498000e+00
- 1 -211 0 0 -0.26211539e-01 -0.10501194e+00 -0.72218256e-01 0.13957000e+00
- 1 211 0 0 0.14947341e+00 0.21069067e+00 0.72666707e+00 0.13957000e+00
- 1 211 0 0 0.22661683e+00 -0.53932431e+00 0.25417953e+01 0.13957000e+00
- 1 -211 0 0 0.17004064e+00 -0.51639005e+00 0.52674136e+00 0.13957000e+00
- 1 -211 0 0 -0.36153375e+00 -0.98441042e-01 0.12190877e+02 0.13957000e+00
- 2 111 848 849 -0.20954501e+00 0.52961345e+00 0.13228765e+02 0.13498000e+00
- 1 211 0 0 0.19604818e+00 0.29553213e+00 0.22907481e+02 0.13957000e+00
- 2 111 850 851 -0.17401124e+00 -0.24546422e+00 0.63640360e+01 0.13498000e+00
- 1 22 0 0 -0.74063262e-01 0.27580042e+00 0.71110017e+01 0.00000000e+00
- 1 22 0 0 -0.19828733e+00 0.33385023e+00 0.71695308e+01 0.00000000e+00
- 1 -211 0 0 0.31506228e+00 0.15498393e+00 0.14962158e+02 0.13957000e+00
- 1 211 0 0 0.18293580e+00 0.36200750e-01 0.63868621e+02 0.13957000e+00
- 1 -211 0 0 0.69807261e-01 -0.95590088e-01 0.63668231e+02 0.13957000e+00
- 2 111 852 853 0.57840192e+00 0.26804803e+00 0.44286604e+02 0.13498000e+00
- 1 22 0 0 0.79079993e-01 0.30805465e+00 0.16059843e+02 0.00000000e+00
- 1 22 0 0 -0.11380953e-02 0.58370993e-01 0.11739368e+01 0.00000000e+00
- 1 211 0 0 0.70893807e+00 0.70141659e+00 0.41348578e+02 0.13957000e+00
- 2 111 854 855 0.56765127e+00 -0.49190621e-01 0.41866260e+02 0.13498000e+00
- 1 211 0 0 -0.19671530e+00 0.50937369e-01 0.89699816e+01 0.13957000e+00
- 2 111 856 857 0.46913076e+00 0.20470748e+00 0.22466229e+02 0.13498000e+00
- 1 -211 0 0 0.32836167e+00 -0.12893567e-02 0.93806727e+01 0.13957000e+00
- 2 111 858 859 -0.13139130e+00 -0.17531351e+00 0.25424460e+02 0.13498000e+00
- 1 211 0 0 -0.32832301e+00 0.29221422e-02 0.15968230e+02 0.13957000e+00
- 2 111 860 861 0.43437667e+00 -0.11991425e+00 0.25611247e+02 0.13498000e+00
- 1 321 0 0 0.13846497e+00 -0.47524240e-01 0.24123007e+02 0.49360000e+00
- 1 -211 0 0 0.28144381e+00 -0.26346181e+00 0.49588269e+02 0.13957000e+00
- 1 -211 0 0 0.11177068e+00 0.31256299e+00 0.36591214e+01 0.13957000e+00
- 1 211 0 0 0.94467873e-01 -0.56097089e-01 0.41596713e+00 0.13957000e+00
- 2 111 862 863 0.45369652e-01 -0.71160634e-01 0.61672239e+00 0.13498000e+00
- 1 -321 0 0 0.48364931e+00 -0.70260769e+00 0.43739030e+03 0.49360000e+00
- 1 211 0 0 -0.25644518e+00 -0.16347492e+00 0.23456503e+03 0.13957000e+00
- 1 -211 0 0 -0.63789049e-01 0.32428413e+00 0.64679451e+02 0.13957000e+00
- 2 111 864 865 -0.60084309e+00 -0.44614280e-01 0.20601142e+03 0.13498000e+00
- 2 311 866 866 -0.27110408e+00 -0.27850384e-02 0.48854462e+03 0.49767000e+00
- 1 211 0 0 0.24439845e+00 0.91695265e-01 0.15493461e+03 0.13957000e+00
- 1 2212 0 0 0.61200190e+00 0.31526961e+00 0.46128415e+03 0.93827000e+00
- 1 -211 0 0 0.11472428e-01 0.92604365e-02 0.34469771e+02 0.13957000e+00
- 2 311 867 867 -0.10965017e+01 0.68088841e-01 0.18767265e+03 0.49767000e+00
- 1 211 0 0 -0.67894710e-02 0.13714925e+00 0.57601435e+02 0.13957000e+00
- 1 321 0 0 0.53861933e-01 0.28428643e+00 0.51936602e+02 0.49360000e+00
- 2 111 868 869 -0.32587644e+00 0.10462840e+00 0.35903671e+02 0.13498000e+00
- 1 -211 0 0 -0.50041625e-01 0.22259963e+00 0.26812886e+01 0.13957000e+00
- 1 211 0 0 0.36130148e+00 -0.69371108e+00 0.31601354e+02 0.13957000e+00
- 1 -211 0 0 -0.35453854e+00 0.12948044e-01 0.16269020e+02 0.13957000e+00
- 2 111 870 871 0.34897806e+00 0.18560542e+00 0.12375288e+02 0.13498000e+00
- 1 -211 0 0 -0.18276997e+00 -0.27558896e-01 0.72547358e+00 0.13957000e+00
- 1 211 0 0 -0.27621363e+00 0.24401906e+00 0.32055019e+01 0.13957000e+00
- 2 111 872 873 -0.29708245e+00 -0.25622413e+00 0.20483291e+01 0.13498000e+00
- 1 22 0 0 0.25515584e+00 -0.24361697e+00 0.59141616e+01 0.00000000e+00
- 1 22 0 0 -0.82611322e-01 0.10879998e-01 0.15470087e+00 0.00000000e+00
- 1 211 0 0 -0.12914155e-01 -0.33627565e+00 0.12728569e+01 0.13957000e+00
- 2 111 874 875 -0.62138348e+00 -0.59206729e+00 0.17028152e+01 0.13498000e+00
- 1 211 0 0 0.41772800e-01 -0.22255225e+00 0.88766000e+00 0.13957000e+00
- 2 111 876 877 -0.71140031e+00 -0.23128598e+01 0.40961677e+01 0.13498000e+00
- 2 311 878 878 -0.38790779e-01 -0.20759436e+01 0.64049502e+01 0.49767000e+00
- 1 211 0 0 -0.87173880e-01 -0.54489755e+00 0.91982486e+00 0.13957000e+00
- 1 -211 0 0 -0.10678105e+01 -0.34679990e+01 0.87628752e+01 0.13957000e+00
- 2 111 879 880 -0.10275259e+00 -0.43296411e+00 0.20375737e+01 0.13498000e+00
- 1 211 0 0 -0.78295275e-01 -0.11021739e+01 0.26491316e+01 0.13957000e+00
- 1 -211 0 0 -0.18409086e+01 -0.45562609e+01 0.98837664e+01 0.13957000e+00
- 1 22 0 0 0.15673277e+00 -0.77880639e-01 0.92371561e-01 0.00000000e+00
- 1 22 0 0 0.51508163e+00 -0.55307671e+00 0.48502559e+00 0.00000000e+00
- 1 -321 0 0 0.16287316e+01 -0.36971948e+01 0.19316786e+01 0.49360000e+00
- 1 211 0 0 0.24896451e+01 -0.62119350e+01 0.33521339e+01 0.13957000e+00
- 2 -311 881 881 0.23964492e+00 -0.79159582e+00 0.26879889e+00 0.49767000e+00
- 1 -211 0 0 -0.90701964e-01 -0.11428594e+01 0.70609949e-01 0.13957000e+00
- 2 -3122 882 883 -0.30720266e+00 -0.16450095e+01 0.76143906e-01 0.11156800e+01
- 1 321 0 0 0.16687227e+00 -0.72386574e+00 0.38967412e-01 0.49360000e+00
- 1 321 0 0 0.12286198e+01 0.11286240e+00 0.97055953e+00 0.49360000e+00
- 1 -321 0 0 0.15184804e+01 0.32288906e+00 0.14191676e+01 0.49360000e+00
- 2 3122 884 885 0.36549271e+01 0.99022613e+00 0.20415042e+01 0.11156800e+01
- 1 -321 0 0 0.84502470e+00 0.21258321e+00 0.52086970e+00 0.49360000e+00
- 1 321 0 0 0.73858039e+00 0.24553165e+00 0.17054663e+00 0.49360000e+00
- 2 111 886 887 0.16918918e+01 0.49663514e+00 0.30668231e+00 0.13498000e+00
- 1 -211 0 0 0.35383538e+00 -0.93520882e-01 0.20019701e+00 0.13957000e+00
- 2 111 888 889 0.30416190e+01 0.10149445e+01 0.11357068e+01 0.13498000e+00
- 1 -211 0 0 0.80412062e+00 0.21089608e-01 0.79260536e+00 0.13957000e+00
- 1 211 0 0 0.59879980e+00 0.31619363e+00 0.13853566e+00 0.13957000e+00
- 1 -211 0 0 0.42223774e+00 0.12598580e+00 0.11498172e+00 0.13957000e+00
- 1 211 0 0 0.81939532e+00 0.29059028e+00 0.16748375e+00 0.13957000e+00
- 2 221 890 891 0.26126909e+01 0.11983592e+01 0.33057532e-01 0.54745000e+00
- 1 -211 0 0 0.81640280e-01 0.42541178e+00 -0.44275121e-01 0.13957000e+00
- 2 111 892 893 -0.87248049e-02 -0.19262396e+00 0.18204538e+00 0.13498000e+00
- 1 211 0 0 0.59825782e+00 0.47135586e+00 0.26861859e+00 0.13957000e+00
- 2 111 894 895 0.14745709e+01 0.41285457e+00 -0.28212807e+00 0.13498000e+00
- 2 310 896 897 0.47570061e+00 0.36191853e+00 -0.14137276e+01 0.49767000e+00
- 1 321 0 0 0.67512660e+00 0.29803225e-01 -0.21924128e+01 0.49360000e+00
- 1 -211 0 0 0.29350694e+00 0.44264942e+00 -0.10090718e+01 0.13957000e+00
- 1 -211 0 0 0.27597505e+00 0.59035314e+00 -0.20725634e+01 0.13957000e+00
- 1 211 0 0 0.20196161e+00 0.11333442e+00 -0.34965163e+00 0.13957000e+00
- 2 111 898 899 0.21232204e+00 0.74165031e-01 -0.12027685e+01 0.13498000e+00
- 1 211 0 0 0.10536184e+00 0.34526695e+00 -0.10137421e+01 0.13957000e+00
- 1 -211 0 0 0.62754119e+00 0.73924632e+00 -0.31351384e+01 0.13957000e+00
- 1 -211 0 0 -0.75561274e-02 0.21680094e+00 -0.17236463e+01 0.13957000e+00
- 1 211 0 0 -0.21763720e-01 0.59554887e+00 -0.19360014e+01 0.13957000e+00
- 2 111 900 901 -0.14391611e+00 0.26256428e-01 -0.50162942e+00 0.13498000e+00
- 1 -211 0 0 0.90704732e-01 -0.70893653e-01 -0.33065612e+00 0.13957000e+00
- 1 211 0 0 0.55888081e+00 0.10039842e+01 -0.40420049e+01 0.13957000e+00
- 1 22 0 0 0.51106344e+00 0.47209693e+00 -0.28277588e+01 0.00000000e+00
- 1 22 0 0 0.10902894e+00 0.20407293e+00 -0.98941167e+00 0.00000000e+00
- 1 211 0 0 0.45824838e+00 0.94340969e+00 -0.43204225e+01 0.13957000e+00
- 1 -211 0 0 0.66266337e+00 0.21216191e+00 -0.37922152e+01 0.13957000e+00
- 1 211 0 0 0.20174785e+00 0.10642243e+01 -0.42572429e+01 0.13957000e+00
- 1 -211 0 0 0.39348682e+00 0.15889515e+00 -0.29809766e+01 0.13957000e+00
- 1 -321 0 0 0.53181484e+00 0.13382104e+01 -0.87087202e+01 0.49360000e+00
- 2 111 902 903 0.69013724e+00 0.45307456e+00 -0.45106398e+01 0.13498000e+00
- 2 311 904 904 0.26326212e+00 0.59334836e+00 -0.40215474e+01 0.49767000e+00
- 1 211 0 0 -0.24723548e-01 0.71014449e+00 -0.58743069e+01 0.13957000e+00
- 1 22 0 0 -0.20991030e-01 0.30781959e+00 -0.40543494e+01 0.00000000e+00
- 2 113 905 906 -0.44709361e+00 0.25557671e+01 -0.13795699e+02 0.41223649e+00
- 1 -2212 0 0 -0.74131108e-01 0.72872419e+00 -0.14928821e+02 0.93827000e+00
- 1 211 0 0 -0.11639778e+00 0.22883417e+00 -0.36764345e+01 0.13957000e+00
- 1 211 0 0 -0.13671200e+00 0.13944170e+00 -0.48405036e+02 0.13957000e+00
- 2 111 907 908 -0.77315663e-01 0.10779470e+01 -0.54946498e+02 0.13498000e+00
- 1 130 0 0 -0.78528725e+00 0.63649776e+00 -0.49281994e+02 0.49767000e+00
- 1 22 0 0 0.11892334e+00 0.39777611e+00 -0.30515934e+02 0.00000000e+00
- 1 22 0 0 0.25611667e+00 0.37372071e+00 -0.32098375e+02 0.00000000e+00
- 2 -311 909 909 -0.29630202e+00 0.16989640e+00 -0.35569005e+02 0.49767000e+00
- 2 111 910 911 0.88086917e-01 0.65133512e+00 -0.65590483e+02 0.13498000e+00
- 1 321 0 0 -0.40239562e+00 0.16203489e+01 -0.14995607e+03 0.49360000e+00
- 1 -211 0 0 0.19969239e+00 0.61008977e+00 -0.46267459e+02 0.13957000e+00
- 1 211 0 0 -0.23838728e+00 -0.42063674e-01 -0.90264430e+02 0.13957000e+00
- 1 -211 0 0 -0.19553974e+00 -0.70973096e-01 -0.63601601e+02 0.13957000e+00
- 2 111 912 913 -0.55919714e+00 -0.69817029e-01 -0.10095060e+03 0.13498000e+00
- 1 -211 0 0 -0.12287076e+00 -0.38939415e+00 -0.54289080e+02 0.13957000e+00
- 2 111 914 915 -0.18043997e+00 -0.25439997e+01 -0.51336819e+03 0.13498000e+00
- 1 211 0 0 -0.90238217e-01 -0.42657492e+00 -0.51795154e+02 0.13957000e+00
- 1 -211 0 0 0.12481680e+00 -0.13257886e+01 -0.19880217e+03 0.13957000e+00
- 2 111 916 917 0.24355725e+00 -0.13805927e+01 -0.24836688e+03 0.13498000e+00
- 1 2212 0 0 -0.78311147e+00 -0.20665573e+01 -0.14600108e+03 0.93827000e+00
- 2 111 918 919 -0.18912732e+00 -0.32459242e+00 -0.18832167e+02 0.13498000e+00
- 1 -211 0 0 0.25404489e+00 0.60485709e+00 -0.11529163e+02 0.13957000e+00
- 1 211 0 0 0.15914729e+00 -0.22739729e+00 -0.79655929e+01 0.13957000e+00
- 1 -2212 0 0 -0.53645673e+00 0.10392482e+01 -0.41450345e+02 0.93827000e+00
- 1 -211 0 0 -0.31034608e+00 0.30336937e+00 -0.62652977e+01 0.13957000e+00
- 1 -211 0 0 0.21374255e+00 -0.40712928e+00 -0.12879993e+02 0.13957000e+00
- 1 211 0 0 -0.17946153e+00 -0.17437139e+00 -0.11095432e+02 0.13957000e+00
- 2 111 920 921 0.57281774e-02 -0.17791822e-02 -0.14876584e+01 0.13498000e+00
- 1 211 0 0 -0.53467691e+00 -0.39870260e+00 -0.98864369e+01 0.13957000e+00
- 2 111 922 923 -0.15745267e+00 -0.12531090e+00 -0.74689342e+01 0.13498000e+00
- 1 211 0 0 -0.23667401e+00 0.28681111e+00 -0.14774682e+02 0.13957000e+00
- 2 111 924 925 -0.65340021e+00 0.13173103e+01 -0.21118833e+02 0.13498000e+00
- 2 -311 926 926 -0.40360841e+00 -0.52161227e+00 -0.51019181e+01 0.49767000e+00
- 1 -211 0 0 -0.23421468e+00 -0.32198750e-01 -0.49734495e+01 0.13957000e+00
- 1 321 0 0 -0.88072128e-01 0.20771083e+00 -0.13351254e+02 0.49360000e+00
- 2 111 927 928 0.32927712e+00 0.52225800e+00 -0.17547177e+02 0.13498000e+00
- 1 211 0 0 -0.42118760e+00 0.60346889e-01 -0.55546722e+01 0.13957000e+00
- 1 -211 0 0 -0.53281797e+00 -0.78646728e+00 -0.91096547e+01 0.13957000e+00
- 1 -211 0 0 -0.15181545e+00 0.60394871e-01 -0.19617984e+02 0.13957000e+00
- 1 211 0 0 0.36451998e+00 0.21299964e+00 -0.16874611e+02 0.13957000e+00
- 2 111 929 930 0.76014695e-01 -0.25863104e-01 -0.77053155e+01 0.13498000e+00
- 1 22 0 0 0.19178944e+00 0.93665210e-01 -0.65986107e+01 0.00000000e+00
- 1 22 0 0 -0.18339691e+00 0.15458949e+00 -0.35891996e+02 0.00000000e+00
- 2 -311 931 931 -0.22595181e-01 0.82133165e+00 -0.12286605e+03 0.49767000e+00
- 1 -211 0 0 0.32386561e+00 0.20360515e+00 -0.70910096e+02 0.13957000e+00
- 1 130 0 0 -0.36215673e+00 0.12193074e+00 -0.56240089e+02 0.49767000e+00
- 2 310 932 933 -0.14931689e+00 0.11055686e+00 -0.38991058e+02 0.49767000e+00
- 2 -311 934 934 -0.59595960e+00 -0.28479768e+00 -0.14474594e+03 0.49767000e+00
- 1 -211 0 0 -0.13148374e-02 -0.79415274e-01 -0.10915684e+02 0.13957000e+00
- 2 310 935 936 0.31135373e+00 -0.38296511e+00 -0.10551517e+03 0.49767000e+00
- 1 22 0 0 0.16954072e+00 0.95059002e-01 -0.31287236e+01 0.00000000e+00
- 1 22 0 0 0.54885247e-02 0.60171453e-02 -0.17495323e+01 0.00000000e+00
- 1 321 0 0 0.72208685e+00 0.61202440e+00 -0.19783018e+02 0.49360000e+00
- 1 -211 0 0 0.10599054e+01 0.28015181e+00 -0.19353745e+02 0.13957000e+00
- 1 -321 0 0 0.44967784e+00 -0.17964125e+00 -0.26613160e+02 0.49360000e+00
- 2 111 937 938 0.88327737e-01 -0.57966332e-01 -0.11926170e+01 0.13498000e+00
- 2 311 939 939 -0.48319196e+00 -0.23873051e-01 -0.91800364e+02 0.49767000e+00
- 1 211 0 0 -0.48556595e+00 -0.28841998e+00 -0.17026331e+03 0.13957000e+00
- 2 310 940 941 -0.11301060e+01 -0.35143217e+00 -0.19060862e+03 0.49767000e+00
- 1 22 0 0 -0.17128679e-02 0.13373500e+00 -0.87040609e-01 0.00000000e+00
- 1 22 0 0 0.10127172e+00 0.17605576e+00 -0.31690828e+00 0.00000000e+00
- 1 22 0 0 0.12837568e+00 0.72064806e-02 -0.11085135e+00 0.00000000e+00
- 1 22 0 0 0.57283929e+00 0.32176320e+00 -0.47625299e+00 0.00000000e+00
- 1 22 0 0 0.11475546e-01 -0.24665610e+00 0.18859064e+00 0.00000000e+00
- 1 22 0 0 0.51309597e-01 -0.24942805e-01 0.86058429e-01 0.00000000e+00
- 1 22 0 0 -0.37295169e-01 -0.10298650e+00 -0.41898003e-01 0.00000000e+00
- 1 22 0 0 -0.11610069e+00 -0.78926970e-01 -0.22316028e+00 0.00000000e+00
- 1 22 0 0 -0.73391541e-01 0.13792348e+00 0.14396042e-02 0.00000000e+00
- 1 22 0 0 -0.14274017e+00 0.34839789e-01 -0.51328607e-01 0.00000000e+00
- 1 130 0 0 0.30792224e+00 -0.10422417e+01 0.10778763e-01 0.49767000e+00
- 1 22 0 0 0.30644391e+00 -0.11702517e+00 -0.28983541e+00 0.00000000e+00
- 1 22 0 0 0.44018176e+00 -0.28216076e+00 -0.65509078e+00 0.00000000e+00
- 1 22 0 0 -0.18037462e-01 -0.78878957e-02 -0.26881224e-01 0.00000000e+00
- 1 22 0 0 0.18125487e+00 -0.20684147e+00 -0.75556296e-01 0.00000000e+00
- 1 22 0 0 0.52371284e-01 0.20742592e-01 -0.17013586e+01 0.00000000e+00
- 1 22 0 0 -0.77171731e-01 0.61199491e-01 -0.17546979e+01 0.00000000e+00
- 1 22 0 0 -0.41564156e-01 0.44400188e-01 -0.35675663e+00 0.00000000e+00
- 1 22 0 0 -0.14811744e+00 0.80786173e-01 -0.33657765e+01 0.00000000e+00
- 1 22 0 0 -0.63735079e-01 0.67878371e-01 -0.17156636e+01 0.00000000e+00
- 1 22 0 0 -0.22280061e-01 0.24986296e+00 -0.25671568e+01 0.00000000e+00
- 1 22 0 0 0.47943535e-01 0.33725830e-02 -0.10431878e+01 0.00000000e+00
- 1 22 0 0 -0.82377813e-01 -0.16196650e-01 -0.89148336e+00 0.00000000e+00
- 1 22 0 0 0.14381683e+00 -0.23147014e+00 -0.12755206e+03 0.00000000e+00
- 1 22 0 0 -0.63052044e-02 -0.11978088e+00 -0.87329035e+02 0.00000000e+00
- 1 22 0 0 0.33985614e-01 0.11968087e+00 -0.18889089e+03 0.00000000e+00
- 1 22 0 0 -0.93289314e-01 0.74531041e-01 -0.18533992e+03 0.00000000e+00
- 1 22 0 0 0.13004079e-01 0.64789350e-01 -0.61464789e-01 0.00000000e+00
- 1 22 0 0 0.79625567e-02 0.34754092e+00 -0.89898721e+00 0.00000000e+00
- 1 130 0 0 -0.22785447e+00 0.16832168e+01 -0.71994185e+01 0.49767000e+00
- 1 22 0 0 -0.17280139e-01 -0.65881601e-01 -0.64916347e+00 0.00000000e+00
- 1 22 0 0 0.17142469e+00 -0.12823193e+00 -0.21347104e+01 0.00000000e+00
- 1 22 0 0 0.67283145e-01 -0.57274873e-01 -0.18598458e+01 0.00000000e+00
- 1 22 0 0 -0.72068783e+00 0.18462944e+00 -0.66935273e+01 0.00000000e+00
- 1 22 0 0 -0.17980947e+00 -0.50733326e-01 -0.22933690e+01 0.00000000e+00
- 1 22 0 0 -0.47350889e+00 -0.23679380e+00 -0.95424246e+01 0.00000000e+00
- 1 130 0 0 -0.15140836e+01 -0.14080641e+01 -0.28525894e+02 0.49767000e+00
- 2 310 942 943 -0.23996081e+00 -0.90251789e+00 -0.34038603e+01 0.49767000e+00
- 1 22 0 0 -0.39689584e+00 -0.72646695e+00 -0.46417905e+01 0.00000000e+00
- 1 22 0 0 -0.52439358e-01 -0.45246998e-01 -0.24916563e+00 0.00000000e+00
- 1 22 0 0 0.15375414e+00 -0.65230808e+00 -0.16870070e+01 0.00000000e+00
- 1 22 0 0 0.32939827e+00 -0.76735867e+00 -0.19946737e+01 0.00000000e+00
- 1 22 0 0 0.13158448e-02 -0.77279207e-02 -0.18252940e+00 0.00000000e+00
- 1 22 0 0 -0.23623807e+00 -0.28746218e+00 -0.11382181e+01 0.00000000e+00
- 1 22 0 0 0.17898560e-01 -0.69878696e+00 -0.11034808e+01 0.00000000e+00
- 1 22 0 0 0.17173125e-01 -0.80638591e+00 -0.15657880e+01 0.00000000e+00
- 1 22 0 0 -0.49465485e-01 -0.46008518e-01 -0.12391741e+00 0.00000000e+00
- 1 22 0 0 0.28576147e-01 -0.29379350e+00 -0.79981306e+00 0.00000000e+00
- 1 22 0 0 0.88135041e-02 -0.12071289e+00 0.14263205e-01 0.00000000e+00
- 1 22 0 0 0.12754371e+00 -0.25584738e+00 -0.14477249e+00 0.00000000e+00
- 2 310 944 945 -0.12673144e+01 0.37898039e-01 -0.17366478e+01 0.49767000e+00
- 1 -211 0 0 -0.75535340e+00 0.19268368e+00 -0.30761236e+00 0.13957000e+00
- 1 211 0 0 -0.34516899e+00 0.34871293e+00 -0.42038215e+00 0.13957000e+00
- 1 22 0 0 -0.12805580e+00 -0.52038293e-01 -0.16752145e+00 0.00000000e+00
- 1 22 0 0 -0.25419120e+00 0.85835960e-01 -0.35842814e+00 0.00000000e+00
- 1 22 0 0 -0.39571532e+00 0.24394813e+00 0.76145940e-01 0.00000000e+00
- 1 22 0 0 -0.75890175e+00 0.56363846e+00 -0.19916582e-01 0.00000000e+00
- 1 22 0 0 -0.14274178e+00 0.23057722e+00 0.53261320e-01 0.00000000e+00
- 1 22 0 0 -0.58984339e-01 -0.20626306e-02 -0.97720876e-02 0.00000000e+00
- 1 22 0 0 -0.28401364e+00 0.11711551e+00 -0.34992218e-02 0.00000000e+00
- 1 22 0 0 -0.19443736e-01 0.69139545e-01 -0.18608026e-01 0.00000000e+00
- 1 22 0 0 -0.47075189e+00 -0.11569191e+00 0.26757295e+00 0.00000000e+00
- 1 22 0 0 -0.26480029e+00 -0.12608702e+00 0.26875166e+00 0.00000000e+00
- 1 22 0 0 0.10768941e-01 -0.12017399e-01 0.66508038e-01 0.00000000e+00
- 1 22 0 0 0.84603578e-02 -0.60019246e-01 -0.60826134e-01 0.00000000e+00
- 2 310 946 947 -0.16337563e+01 -0.98417415e-01 0.11113843e+01 0.49767000e+00
- 1 22 0 0 -0.28987813e-02 0.18069943e-01 0.28359583e-01 0.00000000e+00
- 1 22 0 0 -0.32805428e+00 0.22461370e-02 0.36685694e-01 0.00000000e+00
- 1 -211 0 0 0.95422373e-01 -0.74628714e-01 0.31029556e+00 0.13957000e+00
- 1 211 0 0 -0.15103468e+01 -0.52586105e+00 0.19228916e+01 0.13957000e+00
- 1 22 0 0 -0.23883785e-01 0.90539025e-01 0.28109168e-01 0.00000000e+00
- 1 22 0 0 0.10016035e+00 0.14640715e+00 -0.59646562e-01 0.00000000e+00
- 1 -2212 0 0 -0.45368507e+00 0.10695285e+01 0.20403946e+01 0.93827000e+00
- 1 211 0 0 -0.21955522e+00 0.28862503e+00 0.50444724e+00 0.13957000e+00
- 1 22 0 0 -0.30077684e-01 0.10585725e+00 0.27546106e+00 0.00000000e+00
- 1 22 0 0 0.33232214e-01 -0.30037769e-01 0.10984643e+00 0.00000000e+00
- 1 22 0 0 -0.61488663e-01 0.10920399e+00 0.33290497e+00 0.00000000e+00
- 1 22 0 0 0.33712432e-01 0.30375796e+00 0.57517803e+00 0.00000000e+00
- 1 22 0 0 -0.16099036e-02 0.10004622e-01 -0.29868042e-02 0.00000000e+00
- 1 22 0 0 -0.95353960e-01 0.18602957e+00 0.79998348e+00 0.00000000e+00
- 1 130 0 0 0.14992767e+00 0.16222435e+01 0.13149986e+02 0.49767000e+00
- 1 22 0 0 -0.21723455e+00 0.43090052e+00 0.43302652e+01 0.00000000e+00
- 1 22 0 0 -0.12554622e+00 0.85992947e-01 0.13508326e+01 0.00000000e+00
- 1 -2112 0 0 -0.98326813e+00 0.96904435e+00 0.18788496e+02 0.93957000e+00
- 2 111 948 949 -0.20464665e+00 0.44580262e-01 0.27203039e+01 0.13498000e+00
- 1 22 0 0 -0.35302208e-01 0.37680889e-01 0.61991172e+00 0.00000000e+00
- 1 22 0 0 0.25266216e-01 0.71745240e-01 0.49170734e+01 0.00000000e+00
- 1 2212 0 0 -0.19130580e+01 0.16498082e+01 0.51053771e+02 0.93827000e+00
- 1 -211 0 0 -0.17496201e+00 0.20873284e+00 0.74791081e+01 0.13957000e+00
- 1 -211 0 0 0.14577992e-01 0.21599521e-01 0.14309392e+01 0.13957000e+00
- 1 211 0 0 -0.29722528e+00 0.50300224e+00 0.12926555e+02 0.13957000e+00
- 2 310 950 951 0.20654036e+00 0.19071506e+01 0.74915823e+02 0.49767000e+00
- 1 130 0 0 0.40011544e+00 0.20361376e+01 0.66237571e+02 0.49767000e+00
- 1 22 0 0 0.18867297e+00 0.10146660e+01 0.56074059e+02 0.00000000e+00
- 1 22 0 0 0.18565080e+00 0.14937931e+01 0.89488644e+02 0.00000000e+00
- 1 22 0 0 -0.24046026e-01 0.12226077e+00 0.12374321e+02 0.00000000e+00
- 1 22 0 0 0.14674427e+00 0.67368069e+00 0.85085707e+02 0.00000000e+00
- 1 22 0 0 0.14100884e+00 0.86924871e-02 0.37514449e+02 0.00000000e+00
- 1 22 0 0 -0.28491351e-01 -0.15890009e-01 0.12727202e+02 0.00000000e+00
- 1 22 0 0 0.21227579e+00 -0.34711980e-01 0.31845568e+02 0.00000000e+00
- 1 22 0 0 -0.14267772e-01 -0.22647816e-02 0.57893733e+00 0.00000000e+00
- 1 22 0 0 0.15240808e+00 -0.16315132e+00 0.68589989e+02 0.00000000e+00
- 1 22 0 0 0.27889211e-01 -0.16758535e+00 0.76321848e+02 0.00000000e+00
- 2 111 952 953 -0.45151829e-01 -0.73893044e-03 0.63479979e+01 0.13498000e+00
- 2 111 954 955 0.28559378e+00 0.32601052e-01 0.22994745e+02 0.13498000e+00
- 2 111 956 957 0.11794891e+00 0.44612274e-01 0.13981330e+02 0.13498000e+00
- 2 310 958 959 0.34388873e+00 -0.13178236e+00 0.49600137e+02 0.49767000e+00
- 1 22 0 0 0.17367944e-01 -0.26379466e-01 0.61661392e+00 0.00000000e+00
- 1 22 0 0 -0.11289824e+00 -0.32110567e+00 0.16668907e+02 0.00000000e+00
- 1 22 0 0 0.86442094e-01 0.17805970e+00 0.12596866e+02 0.00000000e+00
- 1 22 0 0 0.15489728e+00 0.57516562e-01 0.11021736e+02 0.00000000e+00
- 1 22 0 0 0.34278021e+00 -0.55174856e+00 0.15518491e+02 0.00000000e+00
- 1 22 0 0 0.45168660e-01 -0.52415701e-01 0.30374496e+01 0.00000000e+00
- 1 22 0 0 0.27064195e+00 0.39894747e+00 0.26713362e+02 0.00000000e+00
- 1 22 0 0 0.88235036e-01 0.58997829e-01 0.37359622e+01 0.00000000e+00
- 1 22 0 0 -0.12919387e+00 -0.43585856e-01 0.91942603e+01 0.00000000e+00
- 1 22 0 0 -0.91942723e+00 -0.32429745e+00 0.45504217e+02 0.00000000e+00
- 1 22 0 0 -0.27762038e+00 -0.61767272e-01 0.83435639e+01 0.00000000e+00
- 1 22 0 0 -0.14850383e+00 0.40354241e-01 0.29403926e+01 0.00000000e+00
- 1 22 0 0 -0.14088542e-01 -0.69769637e-01 0.47703704e+01 0.00000000e+00
- 1 22 0 0 -0.13965909e+00 -0.19158501e+00 0.63629092e+01 0.00000000e+00
- 1 22 0 0 -0.21336928e+01 -0.11848613e+01 0.64982733e+02 0.00000000e+00
- 1 22 0 0 -0.82597921e-01 -0.30255298e-01 0.18316056e+01 0.00000000e+00
- 1 22 0 0 -0.29732829e+00 -0.71042248e-01 0.44133491e+00 0.00000000e+00
- 1 22 0 0 -0.36065612e-01 0.32853932e-02 0.18547824e+00 0.00000000e+00
- 1 22 0 0 -0.74601905e-01 0.13878963e+00 0.10631776e+00 0.00000000e+00
- 1 22 0 0 -0.32860133e+00 0.28778442e+00 0.51389078e+00 0.00000000e+00
- 1 22 0 0 -0.15481188e+00 0.46526540e+00 0.12018536e+02 0.00000000e+00
- 1 22 0 0 -0.54733135e-01 0.64348044e-01 0.12102290e+01 0.00000000e+00
- 1 22 0 0 -0.81065818e-01 -0.61230649e-01 0.11570799e+01 0.00000000e+00
- 1 22 0 0 -0.92945419e-01 -0.18423357e+00 0.52069561e+01 0.00000000e+00
- 1 22 0 0 0.30762455e+00 0.14579448e+00 0.28156615e+02 0.00000000e+00
- 1 22 0 0 0.27077737e+00 0.12225354e+00 0.16129990e+02 0.00000000e+00
- 1 22 0 0 0.54491393e+00 -0.31696056e-01 0.40969269e+02 0.00000000e+00
- 1 22 0 0 0.22737339e-01 -0.17494565e-01 0.89699177e+00 0.00000000e+00
- 1 22 0 0 0.60914861e-01 0.11636701e-01 0.50551414e+01 0.00000000e+00
- 1 22 0 0 0.40821590e+00 0.19307078e+00 0.17411087e+02 0.00000000e+00
- 1 22 0 0 -0.11268510e+00 -0.52562739e-01 0.16020270e+02 0.00000000e+00
- 1 22 0 0 -0.18706202e-01 -0.12275077e+00 0.94041895e+01 0.00000000e+00
- 1 22 0 0 0.96401625e-01 0.41221052e-02 0.84037231e+01 0.00000000e+00
- 1 22 0 0 0.33797505e+00 -0.12403635e+00 0.17207524e+02 0.00000000e+00
- 1 22 0 0 -0.54227326e-02 -0.33281261e-01 0.52132448e+00 0.00000000e+00
- 1 22 0 0 0.50792384e-01 -0.37879373e-01 0.95397916e-01 0.00000000e+00
- 1 22 0 0 -0.60053304e+00 -0.56853152e-01 0.20366458e+03 0.00000000e+00
- 1 22 0 0 -0.31004938e-03 0.12238872e-01 0.23468445e+01 0.00000000e+00
- 2 310 960 961 -0.27110408e+00 -0.27850384e-02 0.48854462e+03 0.49767000e+00
- 1 130 0 0 -0.10965017e+01 0.68088841e-01 0.18767265e+03 0.49767000e+00
- 1 22 0 0 -0.18567499e+00 0.13417306e-01 0.13854385e+02 0.00000000e+00
- 1 22 0 0 -0.14020145e+00 0.91211097e-01 0.22049285e+02 0.00000000e+00
- 1 22 0 0 0.21660019e+00 0.18357430e+00 0.79607125e+01 0.00000000e+00
- 1 22 0 0 0.13237787e+00 0.20311206e-02 0.44145756e+01 0.00000000e+00
- 1 22 0 0 -0.27026074e-01 0.12203728e-01 0.24816626e+00 0.00000000e+00
- 1 22 0 0 -0.27005638e+00 -0.26842786e+00 0.18001628e+01 0.00000000e+00
- 1 22 0 0 -0.38603606e-01 -0.24695203e-01 0.17424622e+00 0.00000000e+00
- 1 22 0 0 -0.58277987e+00 -0.56737208e+00 0.15285690e+01 0.00000000e+00
- 1 22 0 0 -0.57277256e+00 -0.20017817e+01 0.34748324e+01 0.00000000e+00
- 1 22 0 0 -0.13862775e+00 -0.31107813e+00 0.62133528e+00 0.00000000e+00
- 2 310 962 963 -0.38790779e-01 -0.20759436e+01 0.64049502e+01 0.49767000e+00
- 1 22 0 0 0.31513048e-01 -0.62914126e-01 0.36102298e+00 0.00000000e+00
- 1 22 0 0 -0.13426564e+00 -0.37004998e+00 0.16765508e+01 0.00000000e+00
- 2 310 964 965 0.23964492e+00 -0.79159582e+00 0.26879889e+00 0.49767000e+00
- 1 -2112 0 0 -0.17390672e+00 -0.14491454e+01 0.10197515e+00 0.93957000e+00
- 2 111 966 967 -0.13329594e+00 -0.19586407e+00 -0.25831245e-01 0.13498000e+00
- 1 2112 0 0 0.32085774e+01 0.96863359e+00 0.18035095e+01 0.93957000e+00
- 2 111 968 969 0.44634970e+00 0.21592535e-01 0.23799477e+00 0.13498000e+00
- 1 22 0 0 0.13545698e+00 0.30284004e-01 -0.11110306e-01 0.00000000e+00
- 1 22 0 0 0.15564349e+01 0.46635114e+00 0.31779262e+00 0.00000000e+00
- 1 22 0 0 0.42506437e+00 0.13115641e+00 0.20659827e+00 0.00000000e+00
- 1 22 0 0 0.26165546e+01 0.88378810e+00 0.92910854e+00 0.00000000e+00
- 1 22 0 0 0.31018914e+00 -0.24945369e-01 -0.61690348e-01 0.00000000e+00
- 1 22 0 0 0.23025017e+01 0.12233046e+01 0.94747880e-01 0.00000000e+00
- 1 22 0 0 -0.45641049e-01 -0.18557954e+00 0.12203465e+00 0.00000000e+00
- 1 22 0 0 0.36916244e-01 -0.70444258e-02 0.60010733e-01 0.00000000e+00
- 1 22 0 0 0.11193480e+01 0.35834286e+00 -0.25375818e+00 0.00000000e+00
- 1 22 0 0 0.35522294e+00 0.54511705e-01 -0.28369888e-01 0.00000000e+00
- 1 -211 0 0 0.66181759e-01 0.26644499e+00 -0.38176123e+00 0.13957000e+00
- 1 211 0 0 0.40951885e+00 0.95473537e-01 -0.10319664e+01 0.13957000e+00
- 1 22 0 0 0.39707124e-01 -0.37767710e-01 -0.19931167e+00 0.00000000e+00
- 1 22 0 0 0.17261492e+00 0.11193274e+00 -0.10034568e+01 0.00000000e+00
- 1 22 0 0 -0.46442467e-01 0.71264667e-01 -0.29225054e+00 0.00000000e+00
- 1 22 0 0 -0.97473639e-01 -0.45008239e-01 -0.20937887e+00 0.00000000e+00
- 1 22 0 0 0.22826656e+00 0.90045413e-01 -0.11409347e+01 0.00000000e+00
- 1 22 0 0 0.46187068e+00 0.36302915e+00 -0.33697051e+01 0.00000000e+00
- 2 310 970 971 0.26326212e+00 0.59334836e+00 -0.40215474e+01 0.49767000e+00
- 1 -211 0 0 -0.22338519e+00 0.18963004e+01 -0.97908188e+01 0.13957000e+00
- 1 211 0 0 -0.22370841e+00 0.65946665e+00 -0.40048798e+01 0.13957000e+00
- 1 22 0 0 0.39025399e-01 0.29200660e+00 -0.14785384e+02 0.00000000e+00
- 1 22 0 0 -0.11634106e+00 0.78594041e+00 -0.40161114e+02 0.00000000e+00
- 1 130 0 0 -0.29630202e+00 0.16989640e+00 -0.35569005e+02 0.49767000e+00
- 1 22 0 0 0.11219568e+00 0.40963482e+00 -0.38482055e+02 0.00000000e+00
- 1 22 0 0 -0.24108761e-01 0.24170031e+00 -0.27108428e+02 0.00000000e+00
- 1 22 0 0 -0.16496192e+00 0.31293578e-01 -0.35583328e+02 0.00000000e+00
- 1 22 0 0 -0.39423522e+00 -0.10111061e+00 -0.65367271e+02 0.00000000e+00
- 1 22 0 0 -0.19596061e+00 -0.24118302e+01 -0.48304629e+03 0.00000000e+00
- 1 22 0 0 0.15520632e-01 -0.13216956e+00 -0.30321901e+02 0.00000000e+00
- 1 22 0 0 0.15072436e-01 -0.20793219e+00 -0.45159371e+02 0.00000000e+00
- 1 22 0 0 0.22848481e+00 -0.11726605e+01 -0.20320751e+03 0.00000000e+00
- 1 22 0 0 -0.19678187e+00 -0.25938685e+00 -0.14005982e+02 0.00000000e+00
- 1 22 0 0 0.76545514e-02 -0.65205568e-01 -0.48261840e+01 0.00000000e+00
- 1 22 0 0 0.33577414e-01 0.23270236e-02 -0.94092084e-01 0.00000000e+00
- 1 22 0 0 -0.27849236e-01 -0.41062058e-02 -0.13935663e+01 0.00000000e+00
- 1 22 0 0 -0.16454229e+00 -0.14129755e+00 -0.72457984e+01 0.00000000e+00
- 1 22 0 0 0.70896232e-02 0.15986645e-01 -0.22313580e+00 0.00000000e+00
- 1 22 0 0 -0.81829264e-01 0.15600968e+00 -0.19672330e+01 0.00000000e+00
- 1 22 0 0 -0.57157095e+00 0.11613006e+01 -0.19151600e+02 0.00000000e+00
- 1 130 0 0 -0.40360841e+00 -0.52161227e+00 -0.51019181e+01 0.49767000e+00
- 1 22 0 0 0.14554191e+00 0.29625921e+00 -0.77024766e+01 0.00000000e+00
- 1 22 0 0 0.18373521e+00 0.22599880e+00 -0.98447006e+01 0.00000000e+00
- 1 22 0 0 0.59826897e-01 0.23692190e-01 -0.66519402e+01 0.00000000e+00
- 1 22 0 0 0.16187798e-01 -0.49555295e-01 -0.10533753e+01 0.00000000e+00
- 2 310 972 973 -0.22595181e-01 0.82133165e+00 -0.12286605e+03 0.49767000e+00
- 1 211 0 0 -0.22059196e+00 -0.87435358e-02 -0.31324867e+02 0.13957000e+00
- 1 -211 0 0 0.71275067e-01 0.11930039e+00 -0.76661906e+01 0.13957000e+00
- 1 130 0 0 -0.59595960e+00 -0.28479768e+00 -0.14474594e+03 0.49767000e+00
- 1 211 0 0 0.24354130e+00 -0.42212783e+00 -0.91696959e+02 0.13957000e+00
- 1 -211 0 0 0.67812436e-01 0.39162716e-01 -0.13818213e+02 0.13957000e+00
- 1 22 0 0 -0.34384217e-01 -0.13411203e-01 -0.17031256e+00 0.00000000e+00
- 1 22 0 0 0.12271195e+00 -0.44555129e-01 -0.10223044e+01 0.00000000e+00
- 2 310 974 975 -0.48319196e+00 -0.23873051e-01 -0.91800364e+02 0.49767000e+00
- 1 211 0 0 -0.10133165e+01 -0.27781970e+00 -0.17258244e+03 0.13957000e+00
- 1 -211 0 0 -0.11678953e+00 -0.73612469e-01 -0.18026180e+02 0.13957000e+00
- 2 111 976 977 -0.29701711e+00 -0.36035115e+00 -0.18312741e+01 0.13498000e+00
- 2 111 978 979 0.57056305e-01 -0.54216674e+00 -0.15725862e+01 0.13498000e+00
- 1 211 0 0 -0.67697615e+00 -0.13308582e+00 -0.69244303e+00 0.13957000e+00
- 1 -211 0 0 -0.59033825e+00 0.17098386e+00 -0.10442047e+01 0.13957000e+00
- 1 211 0 0 -0.47569284e+00 0.11420979e+00 0.46695204e+00 0.13957000e+00
- 1 -211 0 0 -0.11580635e+01 -0.21262721e+00 0.64443222e+00 0.13957000e+00
- 1 22 0 0 -0.55515021e-01 -0.40357851e-01 0.48837544e+00 0.00000000e+00
- 1 22 0 0 -0.14913163e+00 0.84938113e-01 0.22319285e+01 0.00000000e+00
- 1 211 0 0 0.31346920e+00 0.11879487e+01 0.44259411e+02 0.13957000e+00
- 1 -211 0 0 -0.10692884e+00 0.71920181e+00 0.30656413e+02 0.13957000e+00
- 1 22 0 0 0.46554390e-01 0.15762322e-01 0.21691477e+01 0.00000000e+00
- 1 22 0 0 -0.91706220e-01 -0.16501253e-01 0.41788502e+01 0.00000000e+00
- 1 22 0 0 0.14991673e+00 0.63583301e-01 0.15856695e+02 0.00000000e+00
- 1 22 0 0 0.13567705e+00 -0.30982249e-01 0.71380491e+01 0.00000000e+00
- 1 22 0 0 0.28292434e-01 -0.21631599e-01 0.84849034e+00 0.00000000e+00
- 1 22 0 0 0.89656476e-01 0.66243873e-01 0.13132840e+02 0.00000000e+00
- 1 -211 0 0 0.93274724e-01 0.83048835e-01 0.30019815e+02 0.13957000e+00
- 1 211 0 0 0.25061400e+00 -0.21483119e+00 0.19580322e+02 0.13957000e+00
- 2 111 980 981 0.16597044e-01 -0.98801471e-01 0.29196521e+03 0.13498000e+00
- 2 111 982 983 -0.28770112e+00 0.96016433e-01 0.19657941e+03 0.13498000e+00
- 1 211 0 0 0.18562037e+00 -0.10257739e+01 0.30848973e+01 0.13957000e+00
- 1 -211 0 0 -0.22441115e+00 -0.10501697e+01 0.33200529e+01 0.13957000e+00
- 1 -211 0 0 -0.16669414e-01 -0.49084026e+00 0.28088137e+00 0.13957000e+00
- 1 211 0 0 0.25631433e+00 -0.30075556e+00 -0.12082480e-01 0.13957000e+00
- 1 22 0 0 -0.61561145e-02 -0.38115089e-01 0.44971844e-01 0.00000000e+00
- 1 22 0 0 -0.12713983e+00 -0.15774898e+00 -0.70803089e-01 0.00000000e+00
- 1 22 0 0 0.21506748e+00 0.43906713e-01 0.18157946e+00 0.00000000e+00
- 1 22 0 0 0.23128222e+00 -0.22314177e-01 0.56415307e-01 0.00000000e+00
- 1 -211 0 0 0.14171422e+00 0.36806822e-01 -0.62051379e+00 0.13957000e+00
- 1 211 0 0 0.12154790e+00 0.55654154e+00 -0.34010336e+01 0.13957000e+00
- 2 111 984 985 -0.15714960e+00 0.13858247e+00 -0.36020366e+02 0.13498000e+00
- 2 111 986 987 0.13455442e+00 0.68274917e+00 -0.86845684e+02 0.13498000e+00
- 2 111 988 989 -0.28446636e+00 0.17860123e+00 -0.38650942e+02 0.13498000e+00
- 2 111 990 991 -0.19872559e+00 -0.20247429e+00 -0.53149423e+02 0.13498000e+00
- 1 22 0 0 -0.45074328e-01 -0.55858369e-01 -0.13400087e+00 0.00000000e+00
- 1 22 0 0 -0.25194278e+00 -0.30449278e+00 -0.16972732e+01 0.00000000e+00
- 1 22 0 0 0.91766074e-01 -0.49280022e+00 -0.14017711e+01 0.00000000e+00
- 1 22 0 0 -0.34709769e-01 -0.49366525e-01 -0.17081507e+00 0.00000000e+00
- 1 22 0 0 0.38346248e-01 -0.73106037e-01 0.74421572e+02 0.00000000e+00
- 1 22 0 0 -0.21749204e-01 -0.25695434e-01 0.21754364e+03 0.00000000e+00
- 1 22 0 0 -0.29512459e+00 0.74861535e-01 0.17147480e+03 0.00000000e+00
- 1 22 0 0 0.74234694e-02 0.21154898e-01 0.25104611e+02 0.00000000e+00
- 1 22 0 0 0.14839795e-01 0.25986852e-01 -0.10203418e+02 0.00000000e+00
- 1 22 0 0 -0.17198939e+00 0.11259562e+00 -0.25816949e+02 0.00000000e+00
- 1 22 0 0 0.92386141e-01 0.22208956e+00 -0.35162270e+02 0.00000000e+00
- 1 22 0 0 0.42168277e-01 0.46065961e+00 -0.51683414e+02 0.00000000e+00
- 1 22 0 0 -0.24946027e+00 0.88160787e-01 -0.29100979e+02 0.00000000e+00
- 1 22 0 0 -0.35006096e-01 0.90440448e-01 -0.95499625e+01 0.00000000e+00
- 1 22 0 0 -0.16513654e+00 -0.84417609e-01 -0.36832399e+02 0.00000000e+00
- 1 22 0 0 -0.33589050e-01 -0.11805668e+00 -0.16317024e+02 0.00000000e+00
- 430
- 2 25 2 3 -0.23545751e+02 -0.57880115e+01 0.18868025e+03 0.12499890e+03
- 2 23 4 5 0.16943828e+02 -0.91628213e+01 0.17816338e+02 0.15610052e+02
- 2 23 6 8 -0.40489579e+02 0.33748098e+01 0.17086391e+03 0.89445559e+02
- 1 11 0 0 0.89082630e+01 -0.41642381e+01 0.18595682e+02 0.51000000e-03
- 1 -11 0 0 0.80355648e+01 -0.49985832e+01 -0.77934390e+00 0.51000000e-03
- 1 -11 0 0 -0.50059331e+02 -0.25568284e+02 0.14991006e+03 0.51000000e-03
- 1 11 0 0 0.95696037e+01 0.28942623e+02 0.20953501e+02 0.51000000e-03
- 1 22 0 0 0.14781870e-03 0.47067985e-03 0.34433552e-03 0.00000000e+00
- 2 2 56 56 -0.11844932e+01 -0.31458066e+01 0.21103031e+03 0.33000000e+00
- 2 21 56 56 -0.72850658e+00 -0.14005592e+01 0.37466227e+02 0.00000000e+00
- 2 21 56 56 0.16647520e+00 -0.23365655e+00 0.30249208e+01 0.00000000e+00
- 2 21 56 56 0.30329710e+01 -0.12377024e+01 0.26148165e+02 0.00000000e+00
- 2 21 56 56 0.27086427e+01 -0.85092412e+00 0.16997830e+01 0.00000000e+00
- 2 21 56 56 0.16761756e+01 -0.16157018e+00 -0.74899076e+00 0.00000000e+00
- 2 21 56 56 0.51908649e+00 0.19910052e+00 -0.26056269e+00 0.00000000e+00
- 2 21 56 56 0.34469881e+00 0.32501987e+01 -0.91890491e+01 0.00000000e+00
- 2 21 56 56 0.47583538e+01 0.32125615e+01 -0.27894629e+02 0.00000000e+00
- 2 21 56 56 0.33401133e+01 -0.15232713e+01 -0.37112016e+02 0.00000000e+00
- 2 21 56 56 -0.88410833e+00 0.18256833e+01 -0.18909343e+03 0.00000000e+00
- 2 21 56 56 -0.47583538e+01 -0.32125615e+01 -0.57034238e+03 0.00000000e+00
- 2 21 56 56 0.88410833e+00 -0.18256833e+01 -0.21010460e+03 0.00000000e+00
- 2 21 56 56 -0.34469881e+00 -0.32501987e+01 -0.15656297e+02 0.00000000e+00
- 2 21 56 56 -0.95603300e-01 -0.44030055e+00 -0.14075926e+00 0.00000000e+00
- 2 21 56 56 -0.30329710e+01 0.12377024e+01 -0.29870415e+01 0.00000000e+00
- 2 21 56 56 -0.13101604e+01 0.34488902e+00 0.29862556e+00 0.00000000e+00
- 2 21 56 56 -0.47351228e+00 0.11812313e+01 -0.13372533e+01 0.00000000e+00
- 2 21 56 56 0.10802162e+01 -0.12012182e-01 -0.56668215e+00 0.00000000e+00
- 2 21 56 56 0.12427558e+01 -0.19736721e+01 -0.19501592e+01 0.00000000e+00
- 2 21 56 56 0.93575152e+00 0.32917141e+00 -0.12688867e+01 0.00000000e+00
- 2 2203 56 56 0.21758262e+01 0.16830321e+01 -0.54999324e+04 0.77133000e+00
- 2 1 116 116 -0.14708432e+01 -0.70933578e+00 -0.18923951e+03 0.33000000e+00
- 2 21 116 116 -0.13097967e+01 -0.11632869e+01 -0.42671231e+02 0.00000000e+00
- 2 21 116 116 0.63813212e+00 -0.89300614e-01 -0.16875708e+02 0.00000000e+00
- 2 21 116 116 -0.49901750e+00 -0.10455133e+01 -0.80589252e+01 0.00000000e+00
- 2 21 116 116 -0.34820307e+00 -0.23589521e+00 -0.51828973e+01 0.00000000e+00
- 2 21 116 116 -0.22039520e+00 -0.23130479e-01 -0.22265691e+00 0.00000000e+00
- 2 21 116 116 -0.64376087e+00 -0.80770105e+00 0.11007487e+01 0.00000000e+00
- 2 21 116 116 0.40432211e+01 0.49522740e+01 -0.56681817e+00 0.00000000e+00
- 2 21 116 116 0.10770537e+01 0.12265225e+01 0.13182439e+00 0.00000000e+00
- 2 21 116 116 0.86617426e+00 -0.16272278e+00 -0.33204523e+00 0.00000000e+00
- 2 21 116 116 0.40137467e+01 0.34904833e+01 0.15989515e+00 0.00000000e+00
- 2 21 116 116 0.47530843e+01 0.14449445e+01 0.78048428e+00 0.00000000e+00
- 2 21 116 116 0.11624432e+02 0.54432886e+00 0.11127282e+00 0.00000000e+00
- 2 21 116 116 -0.16761756e+01 0.16157018e+00 0.26883922e+00 0.00000000e+00
- 2 21 116 116 -0.33401133e+01 0.15232713e+01 0.29770760e+01 0.00000000e+00
- 2 21 116 116 -0.27086427e+01 0.85092412e+00 0.12609578e+03 0.00000000e+00
- 2 2101 116 116 -0.88242842e+00 0.15937272e+01 0.63034642e+04 0.57933000e+00
- 2 21 157 157 -0.50552889e+00 -0.33886839e+01 0.28588845e+02 0.00000000e+00
- 2 21 157 157 -0.28873215e-01 -0.13486572e+01 0.11928655e+02 0.00000000e+00
- 2 21 157 157 0.28873215e-01 0.13486572e+01 0.45022618e+01 0.00000000e+00
- 2 21 157 157 0.95603300e-01 0.44030055e+00 0.16990228e+01 0.00000000e+00
- 2 21 157 157 0.50552889e+00 0.33886839e+01 0.80898683e+01 0.00000000e+00
- 2 21 168 168 -0.57414235e+00 -0.35113117e+00 -0.64330894e+01 0.00000000e+00
- 2 21 168 168 -0.51908649e+00 -0.19910052e+00 -0.12043178e+02 0.00000000e+00
- 2 21 168 168 0.57414235e+00 0.35113117e+00 -0.10803357e+03 0.00000000e+00
- 2 92 57 115 0.10052767e+02 -0.60043483e+01 -0.62889171e+04 0.27371611e+04
- 2 213 173 174 -0.59431638e+00 -0.10166019e+01 0.49355134e+02 0.80151350e+00
- 1 -211 0 0 -0.51888000e+00 0.98930047e-01 0.20613619e+02 0.13957000e+00
- 2 113 175 176 0.29181836e+00 -0.24907146e+01 0.10058377e+03 0.82280591e+00
- 2 323 177 178 -0.18223763e+00 -0.11247684e+01 0.57105551e+02 0.94791823e+00
- 1 -321 0 0 0.33506439e-01 0.24171153e+00 0.16347771e+02 0.49360000e+00
- 1 211 0 0 0.26777861e+00 -0.48705766e+00 0.11086166e+02 0.13957000e+00
- 1 -211 0 0 0.65353801e+00 -0.21726430e+00 0.48755997e+01 0.13957000e+00
- 2 213 179 180 -0.23816682e-01 -0.84570689e+00 0.11620678e+02 0.73023853e+00
- 2 3212 181 182 0.24388052e+01 -0.28568299e+00 0.63301105e+01 0.11925500e+01
- 2 313 183 184 0.15288061e+01 -0.84393954e-01 0.12196097e+00 0.10930353e+01
- 1 -2112 0 0 -0.28486061e-01 -0.10472205e+00 -0.26345786e+00 0.93957000e+00
- 1 -211 0 0 0.14519763e+01 -0.54554196e+00 0.44272099e+00 0.13957000e+00
- 2 213 185 186 0.51378646e+00 0.32007214e+00 -0.42642047e+00 0.86674446e+00
- 2 313 187 188 0.19848559e+01 0.25358868e+01 -0.10265823e+02 0.90101348e+00
- 2 -313 189 190 0.11583675e+01 0.16175596e+01 -0.11904967e+02 0.93863769e+00
- 1 -211 0 0 0.19865392e+00 0.68713406e+00 -0.38093135e+01 0.13957000e+00
- 1 211 0 0 0.42022667e+00 -0.72079296e-02 -0.11080936e+01 0.13957000e+00
- 2 -213 191 192 0.13231291e+01 0.80356399e+00 -0.75099282e+01 0.61990670e+00
- 1 211 0 0 0.65022452e+00 -0.24524160e+00 -0.76220326e+01 0.13957000e+00
- 1 -211 0 0 0.30231847e+00 -0.11856077e-01 -0.64536403e+01 0.13957000e+00
- 2 111 193 194 0.91398775e+00 -0.62655079e+00 -0.72609383e+01 0.13498000e+00
- 2 223 195 197 0.50124483e+00 0.10432532e+01 -0.24753107e+02 0.78148351e+00
- 1 321 0 0 0.13056287e+01 -0.85482029e+00 -0.25454445e+02 0.49360000e+00
- 2 -323 198 199 -0.35069975e+00 0.56631609e+00 -0.73904328e+02 0.83729302e+00
- 2 113 200 201 -0.55561294e+00 0.75134784e-01 -0.70054668e+02 0.72060933e+00
- 2 323 202 203 -0.19344105e+01 -0.78350940e+00 -0.22315584e+03 0.90189050e+00
- 2 3214 204 205 -0.38213409e+00 -0.39369550e+00 -0.16825248e+03 0.13637596e+01
- 1 211 0 0 0.40224336e-02 -0.31780166e+00 -0.23781678e+02 0.13957000e+00
- 2 -2214 206 207 -0.10031883e+01 -0.79043039e+00 -0.11536163e+03 0.12409130e+01
- 1 2112 0 0 -0.42712433e+00 -0.67164386e+00 -0.10402780e+03 0.93957000e+00
- 1 -2212 0 0 -0.25422748e+00 -0.58793620e+00 -0.10979139e+03 0.93827000e+00
- 2 113 208 209 -0.27376710e-01 -0.35250092e+00 -0.31881655e+02 0.62225807e+00
- 2 113 210 211 0.32397310e+00 -0.12702567e+01 -0.13645006e+02 0.71453185e+00
- 2 221 212 214 -0.38249108e+00 -0.40977017e+00 -0.69314081e+01 0.54745000e+00
- 1 211 0 0 0.33318049e+00 0.18891924e+00 -0.19301232e+01 0.13957000e+00
- 1 2112 0 0 -0.35669358e+00 -0.10954765e+01 -0.72997174e+01 0.93957000e+00
- 1 -2112 0 0 -0.81176583e+00 -0.45815806e+00 -0.14390447e+01 0.93957000e+00
- 2 113 215 216 -0.39593105e+00 -0.41925601e-01 -0.26430433e+01 0.10170438e+01
- 2 111 217 218 -0.30572794e+00 0.11677914e+00 0.16378485e+00 0.13498000e+00
- 1 -211 0 0 -0.34313038e+00 -0.99306627e-01 -0.26414156e+00 0.13957000e+00
- 2 213 219 220 -0.85953646e+00 0.62045286e+00 -0.88863613e+00 0.80536504e+00
- 1 2112 0 0 -0.67458739e+00 0.13556816e+00 -0.10102035e+01 0.93957000e+00
- 1 -2212 0 0 -0.10320385e+01 0.54933569e+00 -0.36155146e+00 0.93827000e+00
- 1 211 0 0 -0.37703070e-02 -0.10703080e+00 0.19091895e+00 0.13957000e+00
- 2 -213 221 222 0.11802416e+01 -0.25480095e+00 -0.20540048e+01 0.76407336e+00
- 2 111 223 224 0.50388652e+00 -0.16622793e+00 -0.57301525e+00 0.13498000e+00
- 2 323 225 226 0.39175424e+00 -0.34599015e+00 -0.57923579e+00 0.95868305e+00
- 2 -313 227 228 0.18451778e+00 -0.12114382e+00 -0.40769020e+01 0.95367519e+00
- 2 111 229 230 0.44300450e+00 -0.25967713e-01 -0.22920668e+01 0.13498000e+00
- 2 223 231 233 -0.17090670e+00 -0.41006153e+00 -0.30108826e+01 0.78620574e+00
- 2 111 234 235 0.29681295e+00 0.45916144e+00 -0.44014191e+01 0.13498000e+00
- 2 313 236 237 0.31996516e+00 0.59610999e+00 -0.30968141e+02 0.85866391e+00
- 2 -313 238 239 -0.33528466e+00 -0.85567382e+00 -0.57778739e+02 0.90876699e+00
- 2 223 240 242 0.53859073e-01 0.70761859e-01 -0.50855908e+02 0.77958919e+00
- 1 -211 0 0 -0.14544275e+00 -0.32462527e-02 -0.73426525e+02 0.13957000e+00
- 1 211 0 0 0.14479378e+00 0.37271519e+00 -0.18055493e+03 0.13957000e+00
- 2 113 243 244 0.14477748e+00 -0.36172191e+00 -0.14370044e+03 0.80479066e+00
- 1 -211 0 0 0.15950700e+00 0.23800593e+00 -0.33103860e+03 0.13957000e+00
- 2 2224 245 246 0.17296358e+01 0.15306878e+01 -0.46189876e+04 0.12676376e+01
- 2 92 117 156 0.13916467e+02 0.11551160e+02 0.61719403e+04 0.26857804e+04
- 1 -211 0 0 -0.78441844e-01 0.11909928e+00 -0.41712852e+01 0.13957000e+00
- 1 211 0 0 -0.13976210e+01 -0.43733447e+00 -0.13209525e+03 0.13957000e+00
- 2 -213 247 248 -0.86429978e+00 -0.13793713e+01 -0.98379758e+02 0.77278237e+00
- 2 2224 249 250 -0.41153273e+00 -0.78343715e+00 -0.16734898e+02 0.11657545e+01
- 2 111 251 252 -0.58589989e-02 -0.61713061e+00 -0.29645204e+01 0.13498000e+00
- 2 -2224 253 254 -0.39168075e+00 0.14224746e+00 -0.61481492e+01 0.12371556e+01
- 1 211 0 0 -0.36112232e+00 -0.35528093e+00 -0.89130287e+00 0.13957000e+00
- 2 221 255 256 0.26566725e+00 -0.12596368e+00 -0.18818919e+00 0.54745000e+00
- 2 331 257 259 -0.90575583e-01 0.44544735e+00 -0.66697415e+00 0.95759807e+00
- 1 -211 0 0 0.40653223e+00 -0.31977247e+00 0.75099328e+00 0.13957000e+00
- 2 223 260 262 0.19889453e+01 0.21616704e+01 -0.16945365e+00 0.77104074e+00
- 1 211 0 0 -0.24947276e+00 0.44304602e-01 0.16753553e+00 0.13957000e+00
- 2 -213 263 264 0.15425155e+01 0.16626909e+01 -0.25352769e+00 0.74306616e+00
- 2 111 265 266 0.78973079e+00 0.94566437e+00 0.35153384e+00 0.13498000e+00
- 1 321 0 0 0.40634424e+01 0.21565436e+01 0.29404500e+00 0.49360000e+00
- 2 333 267 268 0.12201726e+01 0.13996277e+01 0.30480431e+00 0.10219725e+01
- 1 -321 0 0 0.24599843e+01 0.11742751e+01 -0.50213592e+00 0.49360000e+00
- 1 321 0 0 0.81308402e+01 0.65586376e+00 0.52121029e+00 0.49360000e+00
- 2 -323 269 270 0.30871186e+01 0.53786239e+00 -0.10612581e+00 0.85415380e+00
- 2 213 271 272 0.30262651e+00 0.23518535e+00 0.60674627e+00 0.11297524e+01
- 1 -211 0 0 0.33228915e-01 0.38593994e+00 -0.41054803e+00 0.13957000e+00
- 2 113 273 274 0.72112378e+00 -0.30469115e+00 -0.10449081e+00 0.72795055e+00
- 2 323 275 276 -0.58085529e+00 0.15662754e+00 0.48264992e+00 0.86484921e+00
- 2 -313 277 278 -0.52561724e+00 0.35253770e+00 0.15150834e+01 0.89927219e+00
- 2 223 279 281 -0.12873266e+01 0.27949043e+00 0.14415466e+01 0.77682527e+00
- 2 223 282 284 -0.33040525e+00 0.11961641e+00 0.91332208e+00 0.78008803e+00
- 2 -213 285 286 -0.60391981e+00 0.18774480e+00 0.31174702e+01 0.56447421e+00
- 2 213 287 288 -0.57221074e+00 -0.27339485e+00 0.13499622e+01 0.54845819e+00
- 2 113 289 290 0.27206068e+00 0.59357599e+00 0.11060376e+02 0.81799858e+00
- 1 -211 0 0 -0.76225735e+00 -0.17931784e+00 0.98698116e+01 0.13957000e+00
- 2 111 291 292 -0.46969115e+00 -0.36130064e-01 0.33886188e+02 0.13498000e+00
- 2 111 293 294 0.23963553e+00 0.10604872e+01 0.20190359e+02 0.13498000e+00
- 1 2212 0 0 -0.29589171e+00 -0.55235089e+00 0.20997014e+02 0.93827000e+00
- 1 -2112 0 0 -0.29773633e+00 0.16060897e+00 0.49130711e+02 0.93957000e+00
- 2 -213 295 296 -0.12651475e+01 0.87542603e+00 0.37377078e+03 0.76760557e+00
- 2 223 297 299 -0.27220507e+00 -0.32116333e+00 0.15793096e+03 0.77189359e+00
- 1 2212 0 0 0.40862635e+00 0.71067442e-02 0.46600411e+03 0.93827000e+00
- 1 -2112 0 0 -0.34433254e-01 -0.14765929e-01 0.42539154e+03 0.93957000e+00
- 1 -211 0 0 -0.43556504e+00 0.77939533e+00 0.16628960e+04 0.13957000e+00
- 1 2212 0 0 -0.43191558e+00 0.61222516e+00 0.31927822e+04 0.93827000e+00
- 2 92 158 167 0.95603300e-01 0.44030055e+00 0.54808653e+02 0.11680783e+02
- 2 221 300 302 -0.52696064e-01 -0.99318557e-01 0.58682780e+01 0.54745000e+00
- 2 113 303 304 0.19935529e+00 -0.15949300e+01 0.13610221e+02 0.83218786e+00
- 1 211 0 0 -0.37351100e+00 0.53311703e-01 0.22959379e+01 0.13957000e+00
- 1 -211 0 0 -0.13515175e+00 -0.67767852e+00 0.32666619e+01 0.13957000e+00
- 2 223 305 306 0.97168138e-01 0.31689095e+00 0.62618205e+01 0.79084978e+00
- 2 111 307 308 0.19345534e-01 -0.84547766e+00 0.85413513e+01 0.13498000e+00
- 2 223 309 311 -0.14948539e+00 0.35655628e+00 0.24494480e+01 0.78022756e+00
- 2 113 312 313 0.77342720e+00 0.24843084e+01 0.73254812e+01 0.68967205e+00
- 2 213 314 315 -0.41931768e+00 0.10686978e+00 0.48442534e+01 0.69558393e+00
- 1 -211 0 0 0.13646901e+00 0.33976815e+00 0.34519919e+00 0.13957000e+00
- 2 92 169 172 -0.51908649e+00 -0.19910052e+00 -0.12650983e+03 0.35145250e+01
- 2 221 316 318 0.53771971e-02 -0.11565012e+00 -0.17689132e+02 0.54745000e+00
- 1 211 0 0 0.78369867e+00 -0.18182769e+00 -0.62914922e+02 0.13957000e+00
- 1 -211 0 0 -0.74790145e+00 0.27973104e+00 -0.18581170e+02 0.13957000e+00
- 2 113 319 320 -0.56026091e+00 -0.18135375e+00 -0.27324611e+02 0.80543070e+00
- 1 211 0 0 -0.26482084e+00 0.30473484e-01 0.77102820e+01 0.13957000e+00
- 2 111 321 322 -0.32949554e+00 -0.10470754e+01 0.41644852e+02 0.13498000e+00
- 1 -211 0 0 0.64054076e-01 -0.21011704e+01 0.89113165e+02 0.13957000e+00
- 1 211 0 0 0.22776429e+00 -0.38954419e+00 0.11470601e+02 0.13957000e+00
- 2 311 323 323 -0.29362968e+00 -0.32551748e+00 0.25451677e+02 0.49767000e+00
- 1 211 0 0 0.11139205e+00 -0.79925091e+00 0.31653875e+02 0.13957000e+00
- 1 211 0 0 -0.15263678e+00 -0.69278365e+00 0.10634144e+02 0.13957000e+00
- 2 111 324 325 0.12882010e+00 -0.15292324e+00 0.98653358e+00 0.13498000e+00
- 2 3122 326 327 0.21774744e+01 -0.20572045e+00 0.57546154e+01 0.11156800e+01
- 1 22 0 0 0.26133086e+00 -0.79962539e-01 0.57549501e+00 0.00000000e+00
- 2 311 328 328 0.38758329e+00 0.22320246e+00 -0.95366575e-01 0.49767000e+00
- 2 111 329 330 0.11412228e+01 -0.30759641e+00 0.21732754e+00 0.13498000e+00
- 1 211 0 0 0.60870015e+00 0.26411562e+00 0.13613651e-02 0.13957000e+00
- 2 111 331 332 -0.94913690e-01 0.55956511e-01 -0.42778183e+00 0.13498000e+00
- 2 311 333 333 0.16047658e+01 0.20178180e+01 -0.72657611e+01 0.49767000e+00
- 2 111 334 335 0.38009009e+00 0.51806877e+00 -0.30000618e+01 0.13498000e+00
- 1 -321 0 0 0.10351901e+01 0.99255161e+00 -0.91900713e+01 0.49360000e+00
- 1 211 0 0 0.12317741e+00 0.62500797e+00 -0.27148957e+01 0.13957000e+00
- 1 -211 0 0 0.34853509e+00 0.17409554e+00 -0.32293442e+01 0.13957000e+00
- 2 111 336 337 0.97459396e+00 0.62946844e+00 -0.42805840e+01 0.13498000e+00
- 1 22 0 0 0.62400149e-01 -0.90904248e-01 -0.70649182e+00 0.00000000e+00
- 1 22 0 0 0.85158760e+00 -0.53564654e+00 -0.65544465e+01 0.00000000e+00
- 1 -211 0 0 0.48481427e-01 0.87029487e-01 -0.14876641e+01 0.13957000e+00
- 1 211 0 0 0.50864124e-01 0.20589155e+00 -0.89469108e+01 0.13957000e+00
- 2 111 338 339 0.40189928e+00 0.75033216e+00 -0.14318532e+02 0.13498000e+00
- 2 -311 340 340 -0.18712220e+00 0.29965690e+00 -0.61461175e+02 0.49767000e+00
- 1 -211 0 0 -0.16357755e+00 0.26665919e+00 -0.12443154e+02 0.13957000e+00
- 1 -211 0 0 -0.31597995e+00 0.34053167e+00 -0.49414453e+02 0.13957000e+00
- 1 211 0 0 -0.23963300e+00 -0.26539689e+00 -0.20640215e+02 0.13957000e+00
- 2 311 341 341 -0.12686298e+01 -0.65697648e+00 -0.17605487e+03 0.49767000e+00
- 1 211 0 0 -0.66578074e+00 -0.12653292e+00 -0.47100971e+02 0.13957000e+00
- 2 3122 342 343 -0.48919472e+00 -0.40313664e+00 -0.13941404e+03 0.11156800e+01
- 2 111 344 345 0.10706063e+00 0.94411395e-02 -0.28838440e+02 0.13498000e+00
- 1 -2112 0 0 -0.10462132e+01 -0.62028872e+00 -0.93966333e+02 0.93957000e+00
- 1 -211 0 0 0.43024947e-01 -0.17014167e+00 -0.21395294e+02 0.13957000e+00
- 1 211 0 0 0.40753472e-01 0.24276005e-01 -0.20828539e+02 0.13957000e+00
- 1 -211 0 0 -0.68130182e-01 -0.37677693e+00 -0.11053116e+02 0.13957000e+00
- 1 211 0 0 0.34698683e+00 -0.67244020e+00 -0.49165992e+01 0.13957000e+00
- 1 -211 0 0 -0.23013727e-01 -0.59781646e+00 -0.87284066e+01 0.13957000e+00
- 1 211 0 0 -0.14928146e+00 -0.31114363e+00 -0.25522248e+01 0.13957000e+00
- 1 -211 0 0 -0.57341249e-01 -0.18971407e-01 -0.17821870e+01 0.13957000e+00
- 2 111 346 347 -0.17586837e+00 -0.79655130e-01 -0.25969964e+01 0.13498000e+00
- 1 -211 0 0 0.30312180e+00 -0.11844793e-01 -0.50105484e+00 0.13957000e+00
- 1 211 0 0 -0.69905285e+00 -0.30080808e-01 -0.21419885e+01 0.13957000e+00
- 1 22 0 0 -0.23391626e+00 0.65846343e-01 0.17754670e+00 0.00000000e+00
- 1 22 0 0 -0.71811680e-01 0.50932792e-01 -0.13761849e-01 0.00000000e+00
- 1 211 0 0 -0.76098143e+00 0.68816934e+00 -0.45500295e+00 0.13957000e+00
- 2 111 348 349 -0.98555033e-01 -0.67716476e-01 -0.43363318e+00 0.13498000e+00
- 1 -211 0 0 0.22061570e+00 -0.17337816e+00 -0.10847264e+01 0.13957000e+00
- 2 111 350 351 0.95962591e+00 -0.81422784e-01 -0.96927845e+00 0.13498000e+00
- 1 22 0 0 0.36778686e+00 -0.15617447e+00 -0.49202214e+00 0.00000000e+00
- 1 22 0 0 0.13609967e+00 -0.10053452e-01 -0.80993117e-01 0.00000000e+00
- 1 321 0 0 0.45416846e-01 -0.40006732e+00 -0.57839209e+00 0.49360000e+00
- 2 111 352 353 0.34633740e+00 0.54077170e-01 -0.84370087e-03 0.13498000e+00
- 1 -321 0 0 0.80239753e-01 -0.40619587e+00 -0.27503958e+01 0.49360000e+00
- 1 211 0 0 0.10427803e+00 0.28505205e+00 -0.13265063e+01 0.13957000e+00
- 1 22 0 0 0.32569274e+00 -0.66068421e-01 -0.18400056e+01 0.00000000e+00
- 1 22 0 0 0.11731175e+00 0.40100708e-01 -0.45206115e+00 0.00000000e+00
- 1 -211 0 0 0.73369189e-01 0.12016921e-01 -0.61398858e+00 0.13957000e+00
- 1 211 0 0 0.26876767e-01 -0.37931181e+00 -0.17118875e+01 0.13957000e+00
- 2 111 354 355 -0.27115265e+00 -0.42766640e-01 -0.68500651e+00 0.13498000e+00
- 1 22 0 0 0.69425182e-01 0.51578535e-01 -0.43482448e+00 0.00000000e+00
- 1 22 0 0 0.22738777e+00 0.40758290e+00 -0.39665946e+01 0.00000000e+00
- 1 321 0 0 0.49003642e+00 0.46961497e+00 -0.23997531e+02 0.49360000e+00
- 1 -211 0 0 -0.17007125e+00 0.12649502e+00 -0.69706101e+01 0.13957000e+00
- 1 -321 0 0 -0.17950033e+00 -0.19794011e+00 -0.33282621e+02 0.49360000e+00
- 1 211 0 0 -0.15578433e+00 -0.65773371e+00 -0.24496118e+02 0.13957000e+00
- 1 -211 0 0 -0.21423675e+00 0.17670087e+00 -0.26299134e+02 0.13957000e+00
- 1 211 0 0 0.22586970e+00 -0.96800842e-01 -0.20041612e+02 0.13957000e+00
- 2 111 356 357 0.42226127e-01 -0.91381647e-02 -0.45151615e+01 0.13498000e+00
- 1 -211 0 0 -0.29873242e+00 -0.25257598e+00 -0.63140933e+02 0.13957000e+00
- 1 211 0 0 0.44350990e+00 -0.10914593e+00 -0.80559504e+02 0.13957000e+00
- 1 2212 0 0 0.13325612e+01 0.13188833e+01 -0.41052097e+04 0.93827000e+00
- 1 211 0 0 0.39707453e+00 0.21180447e+00 -0.51377786e+03 0.13957000e+00
- 1 -211 0 0 -0.93797461e+00 -0.12520744e+01 -0.80006052e+02 0.13957000e+00
- 2 111 358 359 0.73674835e-01 -0.12729691e+00 -0.18373706e+02 0.13498000e+00
- 1 2212 0 0 -0.17220539e+00 -0.63771630e+00 -0.12679664e+02 0.93827000e+00
- 1 211 0 0 -0.23932734e+00 -0.14572084e+00 -0.40552335e+01 0.13957000e+00
- 1 22 0 0 0.56912111e-01 -0.28075122e+00 -0.12028045e+01 0.00000000e+00
- 1 22 0 0 -0.62771110e-01 -0.33637939e+00 -0.17617159e+01 0.00000000e+00
- 1 -2212 0 0 -0.34703616e+00 0.20291549e+00 -0.38964294e+01 0.93827000e+00
- 1 -211 0 0 -0.44644595e-01 -0.60668033e-01 -0.22517198e+01 0.13957000e+00
- 1 22 0 0 -0.85013158e-01 0.55812186e-01 -0.23058685e+00 0.00000000e+00
- 1 22 0 0 0.35068041e+00 -0.18177587e+00 0.42397665e-01 0.00000000e+00
- 1 211 0 0 -0.42905290e-01 0.72819612e-02 -0.12990773e+00 0.13957000e+00
- 1 -211 0 0 0.19954683e-01 0.19113630e+00 0.15336127e-01 0.13957000e+00
- 2 221 360 362 -0.67624976e-01 0.24702909e+00 -0.55240255e+00 0.54745000e+00
- 1 -211 0 0 0.88255400e+00 0.79736863e+00 -0.42630798e-01 0.13957000e+00
- 1 211 0 0 0.49365898e+00 0.95497615e+00 -0.28985688e-02 0.13957000e+00
- 2 111 363 364 0.61273234e+00 0.40932564e+00 -0.12392428e+00 0.13498000e+00
- 1 -211 0 0 0.31864031e+00 0.32490132e+00 -0.33176305e+00 0.13957000e+00
- 2 111 365 366 0.12238752e+01 0.13377895e+01 0.78235361e-01 0.13498000e+00
- 1 22 0 0 0.74744763e+00 0.93227251e+00 0.33503498e+00 0.00000000e+00
- 1 22 0 0 0.42283157e-01 0.13391855e-01 0.16498863e-01 0.00000000e+00
- 1 130 0 0 0.65379944e+00 0.60613139e+00 0.82504729e-01 0.49767000e+00
- 2 310 367 368 0.56637321e+00 0.79349628e+00 0.22229958e+00 0.49767000e+00
- 1 -321 0 0 0.25822252e+01 0.45140541e+00 0.12800494e+00 0.49360000e+00
- 2 111 369 370 0.50489345e+00 0.86456986e-01 -0.23413074e+00 0.13498000e+00
- 1 211 0 0 0.24998910e+00 0.44081454e+00 0.84292223e+00 0.13957000e+00
- 2 111 371 372 0.52637413e-01 -0.20562919e+00 -0.23617595e+00 0.13498000e+00
- 1 -211 0 0 0.40859911e+00 -0.37402184e+00 0.20554917e+00 0.13957000e+00
- 1 211 0 0 0.31252467e+00 0.69330689e-01 -0.31003998e+00 0.13957000e+00
- 2 311 373 373 -0.25977239e+00 -0.86673231e-01 0.82320323e-01 0.49767000e+00
- 1 211 0 0 -0.32108290e+00 0.24330077e+00 0.40032960e+00 0.13957000e+00
- 2 -311 374 374 -0.28014623e+00 -0.59773753e-01 0.10139614e+01 0.49767000e+00
- 2 111 375 376 -0.24547101e+00 0.41231145e+00 0.50112201e+00 0.13498000e+00
- 1 -211 0 0 -0.23320051e+00 0.17629305e+00 0.20140799e+00 0.13957000e+00
- 1 211 0 0 -0.19878992e+00 -0.39561424e-01 0.55392929e+00 0.13957000e+00
- 2 111 377 378 -0.85533615e+00 0.14275881e+00 0.68620932e+00 0.13498000e+00
- 1 211 0 0 0.21353023e-01 0.37667840e-01 0.26944786e+00 0.13957000e+00
- 1 -211 0 0 -0.32152910e+00 -0.17602993e+00 0.43258169e+00 0.13957000e+00
- 2 111 379 380 -0.30229173e-01 0.25797849e+00 0.21129253e+00 0.13498000e+00
- 1 -211 0 0 -0.13557394e-01 0.14328492e-01 0.19224299e+00 0.13957000e+00
- 2 111 381 382 -0.59036241e+00 0.17341630e+00 0.29252272e+01 0.13498000e+00
- 1 211 0 0 -0.60369052e+00 -0.29398744e+00 0.12114923e+01 0.13957000e+00
- 2 111 383 384 0.31479776e-01 0.20592588e-01 0.13846989e+00 0.13498000e+00
- 1 211 0 0 0.32079255e+00 0.58411771e+00 0.48408110e+01 0.13957000e+00
- 1 -211 0 0 -0.48731876e-01 0.94582765e-02 0.62195651e+01 0.13957000e+00
- 1 22 0 0 -0.90382578e-01 -0.61474782e-01 0.82724340e+01 0.00000000e+00
- 1 22 0 0 -0.37930857e+00 0.25344718e-01 0.25613754e+02 0.00000000e+00
- 1 22 0 0 0.19457719e+00 0.10042507e+01 0.18688370e+02 0.00000000e+00
- 1 22 0 0 0.45058333e-01 0.56236550e-01 0.15019891e+01 0.00000000e+00
- 1 -211 0 0 -0.74213844e+00 0.19065020e+00 0.12505306e+03 0.13957000e+00
- 2 111 385 386 -0.52300907e+00 0.68477583e+00 0.24871772e+03 0.13498000e+00
- 1 -211 0 0 0.62826018e-01 -0.17744644e+00 0.63083310e+02 0.13957000e+00
- 1 211 0 0 -0.37886129e+00 -0.18006237e+00 0.81699589e+02 0.13957000e+00
- 2 111 387 388 0.43830204e-01 0.36345477e-01 0.13148065e+02 0.13498000e+00
- 2 111 389 390 -0.11771497e+00 -0.18078274e-01 0.29423424e+01 0.13498000e+00
- 2 111 391 392 0.12069040e+00 -0.51052568e-02 0.12639573e+01 0.13498000e+00
- 2 111 393 394 -0.55671493e-01 -0.76135026e-01 0.16619783e+01 0.13498000e+00
- 1 211 0 0 0.43831493e+00 -0.13082950e+01 0.95222577e+01 0.13957000e+00
- 1 -211 0 0 -0.23895964e+00 -0.28663504e+00 0.40879638e+01 0.13957000e+00
- 1 22 0 0 0.20824948e+00 0.51776208e+00 0.33369758e+01 0.00000000e+00
- 2 111 395 396 -0.11108134e+00 -0.20087113e+00 0.29248447e+01 0.13498000e+00
- 1 22 0 0 -0.58391067e-01 -0.33896889e+00 0.34404497e+01 0.00000000e+00
- 1 22 0 0 0.77736602e-01 -0.50650877e+00 0.51009016e+01 0.00000000e+00
- 1 211 0 0 -0.56816201e-01 -0.86223780e-01 0.83026659e+00 0.13957000e+00
- 1 -211 0 0 -0.19059335e+00 0.56815902e-01 0.68962594e+00 0.13957000e+00
- 2 111 397 398 0.97924166e-01 0.38596416e+00 0.92955545e+00 0.13498000e+00
- 1 211 0 0 0.33474370e+00 0.65174540e+00 0.28585811e+01 0.13957000e+00
- 1 -211 0 0 0.43868350e+00 0.18325631e+01 0.44669001e+01 0.13957000e+00
- 1 211 0 0 -0.52574691e+00 -0.25430188e-02 0.24273410e+01 0.13957000e+00
- 2 111 399 400 0.10642923e+00 0.10941280e+00 0.24169124e+01 0.13498000e+00
- 2 111 401 402 -0.67104226e-01 0.76051773e-01 -0.60557464e+01 0.13498000e+00
- 2 111 403 404 -0.38454890e-01 -0.81613919e-01 -0.70172060e+01 0.13498000e+00
- 2 111 405 406 0.11093631e+00 -0.11008798e+00 -0.46161792e+01 0.13498000e+00
- 1 -211 0 0 0.11904888e+00 -0.18141398e-01 -0.12246998e+02 0.13957000e+00
- 1 211 0 0 -0.67930979e+00 -0.16321235e+00 -0.15077613e+02 0.13957000e+00
- 1 22 0 0 -0.20953769e-01 -0.12588567e-01 0.61861353e+00 0.00000000e+00
- 1 22 0 0 -0.30854177e+00 -0.10344868e+01 0.41026238e+02 0.00000000e+00
- 2 310 407 408 -0.29362968e+00 -0.32551748e+00 0.25451677e+02 0.49767000e+00
- 1 22 0 0 0.11371521e+00 -0.12244956e+00 0.95403711e+00 0.00000000e+00
- 1 22 0 0 0.15104888e-01 -0.30473682e-01 0.32496466e-01 0.00000000e+00
- 1 2112 0 0 0.16726167e+01 -0.13515809e+00 0.46700486e+01 0.93957000e+00
- 2 111 409 410 0.50485773e+00 -0.70562366e-01 0.10845668e+01 0.13498000e+00
- 2 310 411 412 0.38758329e+00 0.22320246e+00 -0.95366575e-01 0.49767000e+00
- 1 22 0 0 0.71396166e-01 0.10448551e-01 0.27350764e-01 0.00000000e+00
- 1 22 0 0 0.10698267e+01 -0.31804496e+00 0.18997678e+00 0.00000000e+00
- 1 22 0 0 -0.20239302e-01 -0.44321336e-01 -0.10495836e+00 0.00000000e+00
- 1 22 0 0 -0.74674388e-01 0.10027785e+00 -0.32282347e+00 0.00000000e+00
- 1 130 0 0 0.16047658e+01 0.20178180e+01 -0.72657611e+01 0.49767000e+00
- 1 22 0 0 0.24772518e+00 0.41320243e+00 -0.23894185e+01 0.00000000e+00
- 1 22 0 0 0.13236491e+00 0.10486633e+00 -0.61064326e+00 0.00000000e+00
- 1 22 0 0 0.76048932e+00 0.51708406e+00 -0.31837153e+01 0.00000000e+00
- 1 22 0 0 0.21410464e+00 0.11238438e+00 -0.10968687e+01 0.00000000e+00
- 1 22 0 0 0.22571601e+00 0.40506015e+00 -0.88951041e+01 0.00000000e+00
- 1 22 0 0 0.17618327e+00 0.34527200e+00 -0.54234280e+01 0.00000000e+00
- 2 310 413 414 -0.18712220e+00 0.29965690e+00 -0.61461175e+02 0.49767000e+00
- 2 310 415 416 -0.12686298e+01 -0.65697648e+00 -0.17605487e+03 0.49767000e+00
- 1 2212 0 0 -0.48981082e+00 -0.27784178e+00 -0.12116722e+03 0.93827000e+00
- 1 -211 0 0 0.61610340e-03 -0.12529486e+00 -0.18246823e+02 0.13957000e+00
- 1 22 0 0 0.12714202e-01 -0.56188081e-01 -0.97360615e+01 0.00000000e+00
- 1 22 0 0 0.94346428e-01 0.65629221e-01 -0.19102378e+02 0.00000000e+00
- 1 22 0 0 -0.43946317e-01 -0.73998581e-01 -0.58065889e+00 0.00000000e+00
- 1 22 0 0 -0.13192206e+00 -0.56565489e-02 -0.20163375e+01 0.00000000e+00
- 1 22 0 0 -0.41285902e-01 -0.65145387e-01 -0.39010006e+00 0.00000000e+00
- 1 22 0 0 -0.57269131e-01 -0.25710885e-02 -0.43533115e-01 0.00000000e+00
- 1 22 0 0 0.34036277e-01 -0.28623241e-01 -0.32660860e-01 0.00000000e+00
- 1 22 0 0 0.92558963e+00 -0.52799543e-01 -0.93661759e+00 0.00000000e+00
- 1 22 0 0 0.21200661e+00 0.77814272e-01 0.47727252e-01 0.00000000e+00
- 1 22 0 0 0.13433079e+00 -0.23737102e-01 -0.48570953e-01 0.00000000e+00
- 1 22 0 0 -0.10154673e+00 0.98445681e-02 -0.11774177e+00 0.00000000e+00
- 1 22 0 0 -0.16960592e+00 -0.52611208e-01 -0.56726475e+00 0.00000000e+00
- 1 22 0 0 0.98314624e-02 -0.16346750e-01 -0.85610322e-01 0.00000000e+00
- 1 22 0 0 0.32394665e-01 0.72085855e-02 -0.44295512e+01 0.00000000e+00
- 1 22 0 0 0.23698411e-01 -0.14380368e+00 -0.12535148e+02 0.00000000e+00
- 1 22 0 0 0.49976424e-01 0.16506775e-01 -0.58385582e+01 0.00000000e+00
- 2 111 417 418 0.91472409e-01 0.14070210e+00 -0.29316368e+00 0.13498000e+00
- 2 111 419 420 -0.51911611e-01 0.13242809e-01 -0.21204987e-01 0.13498000e+00
- 2 111 421 422 -0.10718577e+00 0.93084179e-01 -0.23803388e+00 0.13498000e+00
- 1 22 0 0 0.44913142e+00 0.23525606e+00 -0.51112850e-01 0.00000000e+00
- 1 22 0 0 0.16360092e+00 0.17406959e+00 -0.72811433e-01 0.00000000e+00
- 1 22 0 0 0.35066402e+00 0.34927954e+00 -0.34218696e-01 0.00000000e+00
- 1 22 0 0 0.87321114e+00 0.98850999e+00 0.11245406e+00 0.00000000e+00
- 1 211 0 0 0.47485812e+00 0.48007169e+00 0.30238041e+00 0.13957000e+00
- 1 -211 0 0 0.91515091e-01 0.31342459e+00 -0.80080837e-01 0.13957000e+00
- 1 22 0 0 0.14580219e+00 0.70256217e-01 -0.12181827e+00 0.00000000e+00
- 1 22 0 0 0.35909126e+00 0.16200769e-01 -0.11231248e+00 0.00000000e+00
- 1 22 0 0 0.22421024e-01 -0.93202338e-01 -0.17698045e-01 0.00000000e+00
- 1 22 0 0 0.30216389e-01 -0.11242685e+00 -0.21847791e+00 0.00000000e+00
- 1 130 0 0 -0.25977239e+00 -0.86673231e-01 0.82320323e-01 0.49767000e+00
- 1 130 0 0 -0.28014623e+00 -0.59773753e-01 0.10139614e+01 0.49767000e+00
- 1 22 0 0 -0.10015024e+00 0.16143845e+00 0.10856936e+00 0.00000000e+00
- 1 22 0 0 -0.14532076e+00 0.25087300e+00 0.39255265e+00 0.00000000e+00
- 1 22 0 0 -0.79532823e-01 0.26826386e-01 0.12074837e+00 0.00000000e+00
- 1 22 0 0 -0.77580333e+00 0.11593242e+00 0.56546095e+00 0.00000000e+00
- 1 22 0 0 -0.78498618e-01 0.17265035e+00 0.16978845e+00 0.00000000e+00
- 1 22 0 0 0.48269445e-01 0.85328145e-01 0.41504078e-01 0.00000000e+00
- 1 22 0 0 -0.26609540e+00 0.43820368e-01 0.15580079e+01 0.00000000e+00
- 1 22 0 0 -0.32426701e+00 0.12959594e+00 0.13672194e+01 0.00000000e+00
- 1 22 0 0 -0.33045613e-01 0.54092932e-02 0.12493349e+00 0.00000000e+00
- 1 22 0 0 0.64525388e-01 0.15183295e-01 0.13536399e-01 0.00000000e+00
- 1 22 0 0 -0.41779746e+00 0.57710346e+00 0.18988893e+03 0.00000000e+00
- 1 22 0 0 -0.10521161e+00 0.10767237e+00 0.58828794e+02 0.00000000e+00
- 1 22 0 0 0.58551218e-01 -0.20806120e-01 0.10385101e+02 0.00000000e+00
- 1 22 0 0 -0.14721014e-01 0.57151597e-01 0.27629641e+01 0.00000000e+00
- 1 22 0 0 0.26392967e-01 -0.20043591e-01 0.77993898e+00 0.00000000e+00
- 1 22 0 0 -0.14410794e+00 0.19653170e-02 0.21624034e+01 0.00000000e+00
- 1 22 0 0 0.48525227e-03 0.32957575e-01 0.60877070e+00 0.00000000e+00
- 1 22 0 0 0.12020515e+00 -0.38062832e-01 0.65518656e+00 0.00000000e+00
- 1 22 0 0 0.27659758e-01 -0.21864362e-03 0.91311112e-01 0.00000000e+00
- 1 22 0 0 -0.83331252e-01 -0.75916382e-01 0.15706672e+01 0.00000000e+00
- 1 22 0 0 -0.79537471e-01 -0.26945980e-01 0.68403568e+00 0.00000000e+00
- 1 22 0 0 -0.31543868e-01 -0.17392515e+00 0.22408090e+01 0.00000000e+00
- 1 22 0 0 0.70396609e-01 0.36988649e+00 0.76541623e+00 0.00000000e+00
- 1 22 0 0 0.27527557e-01 0.16077667e-01 0.16413922e+00 0.00000000e+00
- 1 22 0 0 -0.15030989e-01 0.86511823e-04 0.36537643e-01 0.00000000e+00
- 1 22 0 0 0.12146022e+00 0.10932629e+00 0.23803747e+01 0.00000000e+00
- 1 22 0 0 -0.64484086e-01 0.21029507e-01 -0.11234342e+01 0.00000000e+00
- 1 22 0 0 -0.26201402e-02 0.55022266e-01 -0.49323122e+01 0.00000000e+00
- 1 22 0 0 -0.61958393e-01 -0.99136376e-01 -0.39291484e+01 0.00000000e+00
- 1 22 0 0 0.23503503e-01 0.17522456e-01 -0.30880575e+01 0.00000000e+00
- 1 22 0 0 0.54675192e-01 -0.16777399e-01 -0.51433276e+00 0.00000000e+00
- 1 22 0 0 0.56261122e-01 -0.93310580e-01 -0.41018465e+01 0.00000000e+00
- 1 -211 0 0 -0.21825932e+00 -0.40883377e+00 0.18697776e+02 0.13957000e+00
- 1 211 0 0 -0.75370355e-01 0.83316283e-01 0.67539006e+01 0.13957000e+00
- 1 22 0 0 0.13347096e+00 0.40007743e-01 0.31044248e+00 0.00000000e+00
- 1 22 0 0 0.37138677e+00 -0.11057011e+00 0.77412433e+00 0.00000000e+00
- 1 -211 0 0 0.23107865e+00 -0.93096967e-01 -0.42355563e-02 0.13957000e+00
- 1 211 0 0 0.15650464e+00 0.31629943e+00 -0.91131019e-01 0.13957000e+00
- 2 111 423 424 -0.25352671e+00 0.26328410e+00 -0.54101820e+02 0.13498000e+00
- 2 111 425 426 0.66404507e-01 0.36372799e-01 -0.73593549e+01 0.13498000e+00
- 2 111 427 428 -0.28498612e+00 -0.82601921e-01 -0.58368528e+02 0.13498000e+00
- 2 111 429 430 -0.98364363e+00 -0.57437456e+00 -0.11768634e+03 0.13498000e+00
- 1 22 0 0 0.27346693e-01 -0.24782125e-01 -0.64544205e-01 0.00000000e+00
- 1 22 0 0 0.64125716e-01 0.16548422e+00 -0.22861948e+00 0.00000000e+00
- 1 22 0 0 -0.88434801e-01 0.17636259e-01 0.19118774e-01 0.00000000e+00
- 1 22 0 0 0.36523190e-01 -0.43934502e-02 -0.40323761e-01 0.00000000e+00
- 1 22 0 0 -0.13884918e+00 0.63991326e-01 -0.18484053e+00 0.00000000e+00
- 1 22 0 0 0.31663405e-01 0.29092854e-01 -0.53193349e-01 0.00000000e+00
- 1 22 0 0 -0.80762262e-01 0.11809579e+00 -0.30164274e+02 0.00000000e+00
- 1 22 0 0 -0.17276445e+00 0.14518830e+00 -0.23937546e+02 0.00000000e+00
- 1 22 0 0 0.20336541e-01 0.42765265e-01 -0.76559045e+00 0.00000000e+00
- 1 22 0 0 0.46067966e-01 -0.63924656e-02 -0.65937644e+01 0.00000000e+00
- 1 22 0 0 -0.91984161e-01 -0.79531948e-01 -0.30460555e+02 0.00000000e+00
- 1 22 0 0 -0.19300196e+00 -0.30699724e-02 -0.27907973e+02 0.00000000e+00
- 1 22 0 0 -0.61809452e+00 -0.33666450e+00 -0.66114435e+02 0.00000000e+00
- 1 22 0 0 -0.36554911e+00 -0.23771006e+00 -0.51571909e+02 0.00000000e+00
- 232
- 2 25 2 3 -0.19703904e+00 -0.25561134e+01 -0.37795326e+02 0.12499934e+03
- 2 23 4 5 -0.15942218e+02 0.37829792e+00 -0.21090922e+02 0.23428695e+02
- 2 23 6 7 0.15745179e+02 -0.29344113e+01 -0.16704404e+02 0.92433111e+02
- 1 11 0 0 -0.16760621e+01 0.28687938e+01 -0.20569538e+02 0.51000000e-03
- 1 -11 0 0 -0.14266156e+02 -0.24904959e+01 -0.52138370e+00 0.51000000e-03
- 1 13 0 0 -0.29538062e+02 0.13736655e+02 0.16690352e+02 0.10566000e+00
- 1 -13 0 0 0.45283240e+02 -0.16671067e+02 -0.33394756e+02 0.10566000e+00
- 2 3 30 30 0.38434741e+00 -0.35952197e+00 0.88416325e+00 0.50000000e+00
- 2 21 30 30 0.24155348e+00 0.23066553e+00 0.13916976e+03 0.00000000e+00
- 2 21 30 30 -0.30945934e+00 0.27294130e+00 -0.24771489e+01 0.00000000e+00
- 2 21 30 30 -0.20129491e+01 -0.11626930e+01 -0.16896666e+01 0.00000000e+00
- 2 2203 30 30 0.38617039e+00 0.15938648e+00 -0.52082467e+04 0.77133000e+00
- 2 -3 54 54 0.43923483e+00 0.38031547e+01 0.79059595e+01 0.50000000e+00
- 2 21 54 54 -0.75537186e+00 0.41239933e+00 0.75237545e+01 0.00000000e+00
- 2 2 54 54 0.48211735e+00 -0.30547057e+00 0.22018669e+02 0.33000000e+00
- 2 1 60 60 0.86158761e-01 -0.34007429e+00 0.12878643e+01 0.33000000e+00
- 2 2101 60 60 0.41995082e+01 0.61725723e-01 0.60727025e+04 0.57933000e+00
- 2 -1 70 70 0.35363714e+00 0.11236346e+01 0.20231473e+01 0.33000000e+00
- 2 21 70 70 0.63887433e-01 0.27909519e+00 0.12012891e+00 0.00000000e+00
- 2 21 70 70 0.62494889e+00 -0.23268636e+01 0.62426388e+01 0.00000000e+00
- 2 21 70 70 0.53757256e+00 -0.56903386e+00 0.55811455e+00 0.00000000e+00
- 2 21 70 70 0.50828655e+00 0.11890368e+01 -0.42934222e+00 0.00000000e+00
- 2 21 70 70 -0.24155348e+00 -0.23066553e+00 -0.18998842e+01 0.00000000e+00
- 2 21 70 70 -0.11563391e+01 0.13843741e+01 -0.11405958e+03 0.00000000e+00
- 2 21 70 70 0.22906091e+00 -0.40038193e+00 -0.43660686e+01 0.00000000e+00
- 2 21 70 70 -0.14433052e+01 0.14084004e+00 -0.73928208e+02 0.00000000e+00
- 2 1 70 70 0.95103215e+00 -0.42509872e+00 -0.15062246e+04 0.33000000e+00
- 2 -2 87 87 -0.66941420e+00 0.22062286e+00 0.11939089e+02 0.33000000e+00
- 2 2 87 87 -0.27020847e+01 -0.60195980e+00 0.67874077e+03 0.33000000e+00
- 2 92 31 53 -0.13103372e+01 -0.85922162e+00 -0.50723596e+04 0.17134479e+04
- 2 -323 93 94 0.33789359e+00 -0.27010039e+00 0.24778902e+01 0.90293903e+00
- 1 211 0 0 0.48207996e+00 0.34379038e+00 0.37645731e+01 0.13957000e+00
- 2 221 95 96 -0.47963662e+00 -0.32427160e+00 0.51387827e+02 0.54745000e+00
- 2 223 97 98 0.17014731e+00 -0.13014240e-02 0.12578165e+02 0.78223593e+00
- 2 111 99 100 0.17459916e+00 0.13701944e-01 0.14235524e+00 0.13498000e+00
- 1 -211 0 0 0.22922631e+00 0.73839485e-02 0.66101441e+02 0.13957000e+00
- 2 213 101 102 -0.73806856e+00 0.57837941e+00 0.24937036e+01 0.90818820e+00
- 2 223 103 105 0.29040094e+00 -0.55143859e+00 -0.37527784e+00 0.78282727e+00
- 1 2112 0 0 -0.78038438e+00 0.29234156e-01 -0.23742759e+00 0.93957000e+00
- 1 -2212 0 0 -0.15155154e+00 -0.61499403e+00 -0.67406761e+00 0.93827000e+00
- 1 2212 0 0 -0.69773142e+00 0.32772630e-02 -0.16908273e+01 0.93827000e+00
- 2 -3122 106 107 -0.50802981e+00 0.12454406e+00 -0.52344253e+01 0.11156800e+01
- 2 -313 108 109 0.18392161e+00 -0.36529667e+00 -0.12660889e+02 0.90841283e+00
- 1 -211 0 0 -0.18624627e+00 -0.14760032e+00 -0.72410149e+00 0.13957000e+00
- 2 323 110 111 0.15112301e+00 -0.22795083e+00 -0.27988357e+02 0.88988866e+00
- 1 -321 0 0 0.17098535e+00 0.55400177e+00 -0.24203093e+02 0.49360000e+00
- 2 223 112 114 -0.41417350e+00 -0.11972767e+00 -0.32553913e+03 0.77617469e+00
- 2 111 115 116 -0.41856379e+00 0.11502161e+00 -0.81785990e+02 0.13498000e+00
- 1 211 0 0 0.79843380e+00 0.30225813e+00 -0.16290840e+03 0.13957000e+00
- 2 111 117 118 -0.57977702e+00 -0.44845591e+00 -0.27393407e+03 0.13498000e+00
- 2 -213 119 120 0.59761063e+00 0.55089666e+00 -0.47049010e+03 0.80430166e+00
- 2 2224 121 122 0.50579527e-01 -0.77121189e+00 -0.22457390e+04 0.12979990e+01
- 2 113 123 124 0.68244923e-02 0.36063839e+00 -0.15771205e+04 0.84113043e+00
- 2 92 55 59 0.16598032e+00 0.39100834e+01 0.37448383e+02 0.75392385e+01
- 2 313 125 126 0.54717803e-01 0.92036444e+00 0.45975815e+01 0.83025441e+00
- 1 211 0 0 0.21708447e+00 0.23764282e+01 0.40350404e+01 0.13957000e+00
- 2 221 127 128 -0.11693078e+00 0.31270495e+00 0.46649362e+01 0.54745000e+00
- 2 -323 129 130 0.48198239e+00 0.23697730e+00 0.11006254e+02 0.89791886e+00
- 2 323 131 132 -0.47087355e+00 0.63608604e-01 0.13144571e+02 0.88718355e+00
- 2 92 61 69 0.42856670e+01 -0.27834857e+00 0.60739904e+04 0.32524067e+02
- 2 -213 133 134 -0.12595676e+00 -0.22573442e+00 0.44383959e+01 0.69757220e+00
- 2 113 135 136 0.45763668e+00 -0.41642203e+00 0.34236157e+02 0.45690431e+00
- 1 321 0 0 0.20701527e+00 0.65166120e+00 0.72102314e+02 0.49360000e+00
- 2 -323 137 138 -0.17403674e+00 -0.56297210e-01 0.50818635e+02 0.85002547e+00
- 1 211 0 0 -0.45175560e-02 -0.16787686e+00 0.18850476e+02 0.13957000e+00
- 2 -213 139 140 0.18610355e+00 -0.23772777e+00 0.19254652e+03 0.80469671e+00
- 2 323 141 142 0.12854948e+01 0.78591135e+00 0.24928245e+04 0.89791443e+00
- 2 -323 143 144 0.67773356e+00 -0.53414382e+00 0.72251737e+03 0.88761848e+00
- 1 2212 0 0 0.17761942e+01 -0.77719022e-01 0.24856560e+04 0.93827000e+00
- 2 92 71 86 0.42722785e+00 0.16493705e+00 -0.16919637e+04 0.26279545e+03
- 1 211 0 0 0.18517945e+00 0.68564022e+00 0.40023634e+00 0.13957000e+00
- 2 -323 145 146 0.10724427e+00 -0.33450894e+00 0.17803249e+01 0.88570653e+00
- 1 321 0 0 0.45009488e+00 -0.13515009e-01 0.33159843e+01 0.49360000e+00
- 2 223 147 149 0.19004734e+00 -0.31811428e+00 0.61259235e+00 0.78253601e+00
- 2 -323 150 151 0.53265134e+00 0.90861147e-01 0.11876734e+01 0.10125942e+01
- 2 -3122 152 153 0.36141801e+00 -0.45807835e+00 -0.18461748e+00 0.11156800e+01
- 2 223 154 156 -0.39531878e-01 -0.36390378e+00 -0.19114720e+00 0.77931191e+00
- 1 2212 0 0 0.73224345e-01 -0.17086769e+00 0.86603891e+00 0.93827000e+00
- 2 -213 157 158 -0.33763927e+00 0.77321144e+00 -0.18101053e+02 0.71386814e+00
- 2 221 159 160 -0.10264297e+00 -0.25871297e+00 -0.35240632e+02 0.54745000e+00
- 2 213 161 162 -0.18323485e+00 0.20500395e+00 -0.10376266e+02 0.85376324e+00
- 2 223 163 165 -0.71032084e+00 0.60851479e+00 -0.64195744e+02 0.79211610e+00
- 1 -211 0 0 -0.72827743e+00 -0.47002772e-01 -0.70797944e+02 0.13957000e+00
- 2 -313 166 167 -0.17302871e+00 0.12026878e+00 -0.21658861e+02 0.89389638e+00
- 2 333 168 169 0.41332792e+00 -0.50370269e+00 -0.91497734e+03 0.10185361e+01
- 2 311 170 170 0.38871624e+00 0.14984320e+00 -0.56440292e+03 0.49767000e+00
- 2 92 88 92 -0.33714989e+01 -0.38133694e+00 0.69067985e+03 0.56035649e+01
- 1 -321 0 0 -0.45219988e+00 0.88282953e-01 0.36158523e+02 0.49360000e+00
- 2 313 171 172 -0.25222228e+00 -0.40320874e+00 0.45705389e+02 0.91833475e+00
- 2 111 173 174 0.25853654e-01 -0.20979845e+00 0.67778066e+01 0.13498000e+00
- 1 211 0 0 -0.22513261e+01 0.22489586e+00 0.45669470e+03 0.13957000e+00
- 2 223 175 177 -0.44160428e+00 -0.81508572e-01 0.14534344e+03 0.78198879e+00
- 2 -311 178 178 0.51997285e-01 -0.34325122e+00 0.10977175e+01 0.49767000e+00
- 1 -211 0 0 0.28589630e+00 0.73150822e-01 0.13801727e+01 0.13957000e+00
- 1 22 0 0 -0.57806803e+00 -0.17879599e+00 0.43588195e+02 0.00000000e+00
- 1 22 0 0 0.98431412e-01 -0.14547561e+00 0.77996322e+01 0.00000000e+00
- 1 22 0 0 -0.26466537e+00 -0.10942391e+00 0.69997485e+01 0.00000000e+00
- 2 111 179 180 0.43481268e+00 0.10812249e+00 0.55784161e+01 0.13498000e+00
- 1 22 0 0 0.95801110e-01 -0.54642794e-01 0.10472694e+00 0.00000000e+00
- 1 22 0 0 0.78798054e-01 0.68344738e-01 0.37628296e-01 0.00000000e+00
- 1 211 0 0 -0.53755557e+00 0.13315200e+00 0.50455980e+00 0.13957000e+00
- 2 111 181 182 -0.20051299e+00 0.44522741e+00 0.19891438e+01 0.13498000e+00
- 1 -211 0 0 0.57093998e-01 0.10973737e+00 0.11618179e-01 0.13957000e+00
- 1 211 0 0 -0.12706661e-01 -0.32354673e+00 -0.15273382e+00 0.13957000e+00
- 2 111 183 184 0.24601360e+00 -0.33762923e+00 -0.23416220e+00 0.13498000e+00
- 1 -2212 0 0 -0.36880924e+00 0.15784464e+00 -0.40656676e+01 0.93827000e+00
- 1 211 0 0 -0.13922057e+00 -0.33300581e-01 -0.11687577e+01 0.13957000e+00
- 1 -321 0 0 -0.17466669e+00 -0.11471595e+00 -0.71060968e+01 0.49360000e+00
- 1 211 0 0 0.35858830e+00 -0.25058072e+00 -0.55547919e+01 0.13957000e+00
- 2 311 185 185 0.18171712e+00 -0.17469882e-01 -0.10285389e+02 0.49767000e+00
- 1 211 0 0 -0.30594111e-01 -0.21048095e+00 -0.17702969e+02 0.13957000e+00
- 1 211 0 0 -0.23006808e+00 -0.60566306e-01 -0.57723155e+02 0.13957000e+00
- 1 -211 0 0 -0.31193212e+00 -0.10378435e-02 -0.14880077e+03 0.13957000e+00
- 2 111 186 187 0.12782671e+00 -0.58123519e-01 -0.11901520e+03 0.13498000e+00
- 1 22 0 0 -0.31625292e-01 -0.11031875e-01 -0.25733209e+01 0.00000000e+00
- 1 22 0 0 -0.38693849e+00 0.12605348e+00 -0.79212669e+02 0.00000000e+00
- 1 22 0 0 -0.50497634e-01 -0.52717904e-01 -0.15899421e+02 0.00000000e+00
- 1 22 0 0 -0.52927938e+00 -0.39573800e+00 -0.25803465e+03 0.00000000e+00
- 1 -211 0 0 -0.26800758e-01 -0.13623273e+00 -0.10549344e+03 0.13957000e+00
- 2 111 188 189 0.62441139e+00 0.68712939e+00 -0.36499665e+03 0.13498000e+00
- 1 2212 0 0 -0.74045288e-01 -0.79665152e+00 -0.21274742e+04 0.93827000e+00
- 1 211 0 0 0.12462482e+00 0.25439636e-01 -0.11826483e+03 0.13957000e+00
- 1 211 0 0 -0.27143866e-01 0.26468178e+00 -0.15138259e+04 0.13957000e+00
- 1 -211 0 0 0.33968359e-01 0.95956602e-01 -0.63294519e+02 0.13957000e+00
- 1 321 0 0 -0.10618507e+00 0.31164429e+00 0.20530241e+01 0.49360000e+00
- 1 -211 0 0 0.16090287e+00 0.60872014e+00 0.25445574e+01 0.13957000e+00
- 1 22 0 0 0.12889696e+00 0.34869234e+00 0.33529622e+01 0.00000000e+00
- 1 22 0 0 -0.24582775e+00 -0.35987394e-01 0.13119740e+01 0.00000000e+00
- 2 -311 190 190 0.59944313e+00 0.29408891e+00 0.79074015e+01 0.49767000e+00
- 1 -211 0 0 -0.11746075e+00 -0.57111607e-01 0.30988527e+01 0.13957000e+00
- 2 311 191 191 -0.16681784e+00 0.26181464e+00 0.94150305e+01 0.49767000e+00
- 1 211 0 0 -0.30405571e+00 -0.19820604e+00 0.37295403e+01 0.13957000e+00
- 1 -211 0 0 0.17421193e+00 0.39794372e-01 0.65057759e+00 0.13957000e+00
- 2 111 192 193 -0.30016868e+00 -0.26552879e+00 0.37878183e+01 0.13498000e+00
- 1 -211 0 0 0.74731141e-01 -0.16843913e+00 0.57505346e+01 0.13957000e+00
- 1 211 0 0 0.38290554e+00 -0.24798290e+00 0.28485623e+02 0.13957000e+00
- 2 -311 194 194 0.12454228e+00 0.23858828e-01 0.35265577e+02 0.49767000e+00
- 1 -211 0 0 -0.29857902e+00 -0.80156038e-01 0.15553058e+02 0.13957000e+00
- 1 -211 0 0 -0.10414261e+00 -0.82784046e-01 0.11852884e+02 0.13957000e+00
- 2 111 195 196 0.29024616e+00 -0.15494373e+00 0.18069364e+03 0.13498000e+00
- 2 311 197 197 0.43154969e+00 0.44440810e+00 0.13771654e+04 0.49767000e+00
- 1 211 0 0 0.85394512e+00 0.34150325e+00 0.11156592e+04 0.13957000e+00
- 2 -311 198 198 0.62662126e+00 -0.35960492e+00 0.39229552e+03 0.49767000e+00
- 1 -211 0 0 0.51112304e-01 -0.17453890e+00 0.33022185e+03 0.13957000e+00
- 1 -321 0 0 0.11212287e+00 -0.15191231e+00 0.52992602e+00 0.49360000e+00
- 2 111 199 200 -0.48785973e-02 -0.18259663e+00 0.12503989e+01 0.13498000e+00
- 1 -211 0 0 0.27935371e+00 -0.32120195e+00 0.21505359e+00 0.13957000e+00
- 1 211 0 0 -0.67163716e-01 0.11539211e+00 0.99969784e-01 0.13957000e+00
- 2 111 201 202 -0.22142652e-01 -0.11230443e+00 0.29756897e+00 0.13498000e+00
- 2 -311 203 203 0.14323499e+00 0.37268066e+00 0.76782573e+00 0.49767000e+00
- 1 -211 0 0 0.38941635e+00 -0.28181951e+00 0.41984769e+00 0.13957000e+00
- 1 -2212 0 0 0.38179296e+00 -0.47155645e+00 -0.16428222e+00 0.93827000e+00
- 1 211 0 0 -0.20374949e-01 0.13478100e-01 -0.20335256e-01 0.13957000e+00
- 1 -211 0 0 -0.46185510e-02 -0.24614655e+00 -0.10774358e+00 0.13957000e+00
- 1 211 0 0 -0.22019689e+00 0.44371147e-01 -0.12974942e+00 0.13957000e+00
- 2 111 204 205 0.18528356e+00 -0.16212838e+00 0.46345799e-01 0.13498000e+00
- 1 -211 0 0 -0.89020878e-01 0.75462287e+00 -0.10480150e+02 0.13957000e+00
- 2 111 206 207 -0.24861840e+00 0.18588567e-01 -0.76209025e+01 0.13498000e+00
- 1 22 0 0 0.13158956e+00 -0.23906445e+00 -0.86312233e+01 0.00000000e+00
- 1 22 0 0 -0.23423253e+00 -0.19648523e-01 -0.26609409e+02 0.00000000e+00
- 1 211 0 0 -0.32925236e+00 0.36659500e+00 -0.90310989e+01 0.13957000e+00
- 2 111 208 209 0.14601751e+00 -0.16159105e+00 -0.13451672e+01 0.13498000e+00
- 1 211 0 0 -0.30950180e+00 0.22828926e+00 -0.11135597e+02 0.13957000e+00
- 1 -211 0 0 -0.65464489e-01 0.14032834e+00 -0.24555820e+02 0.13957000e+00
- 2 111 210 211 -0.33535455e+00 0.23989720e+00 -0.28504327e+02 0.13498000e+00
- 2 -311 212 212 -0.36446810e+00 -0.31356098e-01 -0.12550036e+02 0.49767000e+00
- 2 111 213 214 0.19143939e+00 0.15162488e+00 -0.91088251e+01 0.13498000e+00
- 1 130 0 0 0.25762186e+00 -0.15497248e+00 -0.42884310e+03 0.49767000e+00
- 2 310 215 216 0.15570606e+00 -0.34873020e+00 -0.48613423e+03 0.49767000e+00
- 2 310 217 218 0.38871624e+00 0.14984320e+00 -0.56440292e+03 0.49767000e+00
- 1 321 0 0 -0.22308646e+00 -0.58189351e+00 0.32509671e+02 0.49360000e+00
- 1 -211 0 0 -0.29135817e-01 0.17868478e+00 0.13195718e+02 0.13957000e+00
- 1 22 0 0 -0.34844398e-01 -0.13295420e-01 0.18088565e+01 0.00000000e+00
- 1 22 0 0 0.60698052e-01 -0.19650303e+00 0.49689501e+01 0.00000000e+00
- 1 -211 0 0 0.11181465e-01 -0.20297597e+00 0.44351561e+02 0.13957000e+00
- 1 211 0 0 0.25315716e-01 0.41284330e-01 0.19651154e+02 0.13957000e+00
- 2 111 219 220 -0.47810146e+00 0.80183070e-01 0.81340724e+02 0.13498000e+00
- 1 130 0 0 0.51997285e-01 -0.34325122e+00 0.10977175e+01 0.49767000e+00
- 1 22 0 0 0.29370346e+00 0.13661986e+00 0.38194842e+01 0.00000000e+00
- 1 22 0 0 0.14110922e+00 -0.28497367e-01 0.17589319e+01 0.00000000e+00
- 1 22 0 0 -0.10826515e-02 0.14151683e+00 0.48393003e+00 0.00000000e+00
- 1 22 0 0 -0.19943034e+00 0.30371058e+00 0.15052138e+01 0.00000000e+00
- 1 22 0 0 0.66831485e-01 -0.11274367e+00 -0.72368629e-02 0.00000000e+00
- 1 22 0 0 0.17918212e+00 -0.22488556e+00 -0.22692533e+00 0.00000000e+00
- 1 130 0 0 0.18171712e+00 -0.17469882e-01 -0.10285389e+02 0.49767000e+00
- 1 22 0 0 0.11845852e+00 -0.49429505e-01 -0.52085142e+02 0.00000000e+00
- 1 22 0 0 0.93681843e-02 -0.86940139e-02 -0.66930061e+02 0.00000000e+00
- 1 22 0 0 0.41322373e+00 0.50340477e+00 -0.23373594e+03 0.00000000e+00
- 1 22 0 0 0.21118766e+00 0.18372462e+00 -0.13126071e+03 0.00000000e+00
- 1 130 0 0 0.59944313e+00 0.29408891e+00 0.79074015e+01 0.49767000e+00
- 1 130 0 0 -0.16681784e+00 0.26181464e+00 0.94150305e+01 0.49767000e+00
- 1 22 0 0 -0.82536270e-01 -0.11159802e+00 0.82809567e+00 0.00000000e+00
- 1 22 0 0 -0.21763241e+00 -0.15393077e+00 0.29597226e+01 0.00000000e+00
- 1 130 0 0 0.12454228e+00 0.23858828e-01 0.35265577e+02 0.49767000e+00
- 1 22 0 0 0.63538739e-03 -0.35536190e-01 0.10144578e+02 0.00000000e+00
- 1 22 0 0 0.28961077e+00 -0.11940754e+00 0.17054906e+03 0.00000000e+00
- 2 310 221 222 0.43154969e+00 0.44440810e+00 0.13771654e+04 0.49767000e+00
- 1 130 0 0 0.62662126e+00 -0.35960492e+00 0.39229552e+03 0.49767000e+00
- 1 22 0 0 0.33005991e-02 -0.37439576e-01 0.71748990e+00 0.00000000e+00
- 1 22 0 0 -0.81791964e-02 -0.14515706e+00 0.53290899e+00 0.00000000e+00
- 1 22 0 0 0.34403713e-01 -0.31222317e-01 0.18230245e-01 0.00000000e+00
- 1 22 0 0 -0.56546365e-01 -0.81082117e-01 0.27933873e+00 0.00000000e+00
- 2 310 223 224 0.14323499e+00 0.37268066e+00 0.76782573e+00 0.49767000e+00
- 1 22 0 0 0.88673274e-01 -0.91302694e-02 0.52629346e-01 0.00000000e+00
- 1 22 0 0 0.96610287e-01 -0.15299811e+00 -0.62835473e-02 0.00000000e+00
- 1 22 0 0 -0.20687288e+00 0.10758957e-01 -0.42878809e+01 0.00000000e+00
- 1 22 0 0 -0.41745513e-01 0.78296102e-02 -0.33330216e+01 0.00000000e+00
- 1 22 0 0 -0.23736657e-01 -0.30311982e-01 -0.13845725e+00 0.00000000e+00
- 1 22 0 0 0.16975416e+00 -0.13127907e+00 -0.12067099e+01 0.00000000e+00
- 1 22 0 0 -0.17000273e+00 0.17094367e+00 -0.12715810e+02 0.00000000e+00
- 1 22 0 0 -0.16535182e+00 0.68953525e-01 -0.15788516e+02 0.00000000e+00
- 1 130 0 0 -0.36446810e+00 -0.31356098e-01 -0.12550036e+02 0.49767000e+00
- 1 22 0 0 0.17599601e+00 0.76214562e-01 -0.52433139e+01 0.00000000e+00
- 1 22 0 0 0.15443385e-01 0.75410314e-01 -0.38655111e+01 0.00000000e+00
- 2 111 225 226 -0.64670915e-01 -0.15247801e+00 -0.83286720e+02 0.13498000e+00
- 2 111 227 228 0.22037698e+00 -0.19625220e+00 -0.40284751e+03 0.13498000e+00
- 1 211 0 0 0.17766651e-01 0.16579949e+00 -0.12071282e+03 0.13957000e+00
- 1 -211 0 0 0.37094959e+00 -0.15956291e-01 -0.44369010e+03 0.13957000e+00
- 1 22 0 0 -0.33927175e+00 0.11330778e+00 0.54073272e+02 0.00000000e+00
- 1 22 0 0 -0.13882971e+00 -0.33124711e-01 0.27267453e+02 0.00000000e+00
- 1 -211 0 0 0.22962929e+00 0.76089169e-01 0.84160706e+03 0.13957000e+00
- 1 211 0 0 0.20192040e+00 0.36831893e+00 0.53555833e+03 0.13957000e+00
- 2 111 229 230 0.22467472e+00 0.32933479e+00 0.70907072e+00 0.13498000e+00
- 2 111 231 232 -0.81439727e-01 0.43345869e-01 0.58755012e-01 0.13498000e+00
- 1 22 0 0 0.30535585e-01 -0.18991054e-02 -0.71227003e+01 0.00000000e+00
- 1 22 0 0 -0.95206501e-01 -0.15057890e+00 -0.76164020e+02 0.00000000e+00
- 1 22 0 0 0.16421266e+00 -0.56366192e-01 -0.20964774e+03 0.00000000e+00
- 1 22 0 0 0.56164322e-01 -0.13988600e+00 -0.19319977e+03 0.00000000e+00
- 1 22 0 0 0.97734215e-01 0.17761483e+00 0.48512253e+00 0.00000000e+00
- 1 22 0 0 0.12694051e+00 0.15171996e+00 0.22394818e+00 0.00000000e+00
- 1 22 0 0 -0.11843577e+00 0.35582253e-01 0.56223151e-01 0.00000000e+00
- 1 22 0 0 0.36996041e-01 0.77636162e-02 0.25318615e-02 0.00000000e+00
- 410
- 2 25 2 3 0.51639490e+02 0.14354123e+02 -0.32475452e+03 0.12500302e+03
- 2 23 4 6 0.43820436e+02 -0.30371286e+01 -0.26109145e+03 0.83239284e+02
- 2 23 7 9 0.78190538e+01 0.17391252e+02 -0.63663070e+02 0.33775596e+02
- 1 13 0 0 -0.13378763e+02 -0.19769237e+02 -0.14000835e+03 0.10566000e+00
- 1 -13 0 0 0.57207046e+02 0.15406402e+02 -0.11986940e+03 0.10566000e+00
- 1 22 0 0 -0.78470074e-02 0.13257063e+01 -0.12136944e+01 0.00000000e+00
- 1 11 0 0 -0.11508541e+02 -0.14666582e+01 -0.15945177e+02 0.51000000e-03
- 1 -11 0 0 0.19327357e+02 0.18857720e+02 -0.47717299e+02 0.51000000e-03
- 1 22 0 0 0.23775967e-03 0.18962558e-03 -0.59385554e-03 0.00000000e+00
- 2 4 56 56 -0.37190231e-01 -0.76116243e+00 0.92593845e+01 0.15000000e+01
- 2 21 56 56 0.14088862e-01 0.44963378e+00 0.27863140e+01 0.00000000e+00
- 2 2203 56 56 -0.18072234e+00 -0.54655352e+00 0.56137435e+04 0.77133000e+00
- 2 1 64 64 0.46287064e+00 0.11309873e+01 0.11251338e+03 0.33000000e+00
- 2 21 64 64 0.68732143e-01 0.61801063e+00 0.68633348e+02 0.00000000e+00
- 2 21 64 64 -0.86397320e-01 -0.49265451e+00 0.63730040e+02 0.00000000e+00
- 2 21 64 64 -0.93227531e+00 0.16201765e+00 0.40411044e+02 0.00000000e+00
- 2 21 64 64 0.13579632e+00 -0.94507225e+00 0.50108560e+01 0.00000000e+00
- 2 21 64 64 -0.24371799e+00 -0.32510461e+00 0.14880303e+02 0.00000000e+00
- 2 21 64 64 -0.25767267e+00 -0.13591405e+00 0.87575605e+02 0.00000000e+00
- 2 21 64 64 -0.29974715e+00 0.10248403e+01 0.87480903e+02 0.00000000e+00
- 2 21 64 64 -0.68964888e-01 0.36649249e-01 0.16038961e+00 0.00000000e+00
- 2 21 64 64 -0.22665561e+00 0.13351517e+00 0.24853141e+00 0.00000000e+00
- 2 21 64 64 -0.33463614e+00 -0.12810863e+00 0.75723743e+00 0.00000000e+00
- 2 21 64 64 0.30384620e+00 0.49830986e+00 0.40908368e+01 0.00000000e+00
- 2 21 64 64 -0.13808795e+00 0.22855248e+01 0.39853856e+01 0.00000000e+00
- 2 21 64 64 0.37037226e+01 -0.91988002e+01 0.46256628e+03 0.00000000e+00
- 2 21 64 64 0.44930070e+00 -0.39606846e+00 0.27888970e+02 0.00000000e+00
- 2 21 64 64 0.11591329e+01 -0.29309463e+01 0.36663546e+02 0.00000000e+00
- 2 21 64 64 -0.17937849e+01 -0.96539227e-01 0.93223711e+02 0.00000000e+00
- 2 21 64 64 0.18605127e+01 0.12538142e+01 0.69967155e+02 0.00000000e+00
- 2 21 64 64 -0.37037226e+01 0.91988002e+01 0.11273760e+03 0.00000000e+00
- 2 21 64 64 -0.11591329e+01 0.29309463e+01 0.13149562e+02 0.00000000e+00
- 2 21 64 64 -0.18605127e+01 -0.12538142e+01 0.28075668e+01 0.00000000e+00
- 2 21 64 64 -0.87664046e-01 -0.88009600e+00 -0.18626290e+00 0.00000000e+00
- 2 21 64 64 -0.11608555e+01 0.39591627e+00 -0.45123102e+00 0.00000000e+00
- 2 -3 64 64 -0.43139637e+02 0.20330565e+02 0.35904615e+02 0.50000000e+00
- 2 1 111 111 -0.38423218e+01 -0.36567158e+02 -0.75893876e+03 0.33000000e+00
- 2 21 111 111 -0.40307273e+00 -0.11285373e+01 -0.91991637e+01 0.00000000e+00
- 2 21 111 111 0.17937849e+01 0.96539227e-01 -0.14502812e+02 0.00000000e+00
- 2 21 111 111 0.16334886e+01 -0.24486265e+01 -0.39900540e+01 0.00000000e+00
- 2 21 111 111 0.47779854e-01 -0.29358099e+01 -0.29591873e+01 0.00000000e+00
- 2 21 111 111 0.40307273e+00 0.11285373e+01 -0.28571844e+01 0.00000000e+00
- 2 21 111 111 -0.16334886e+01 0.24486265e+01 -0.17056240e+02 0.00000000e+00
- 2 21 111 111 -0.44930070e+00 0.39606846e+00 -0.19510660e+02 0.00000000e+00
- 2 21 111 111 0.88023908e-01 -0.20070151e+01 -0.35667730e+03 0.00000000e+00
- 2 21 111 111 -0.88023908e-01 0.20070151e+01 -0.40913037e+03 0.00000000e+00
- 2 21 111 111 -0.47779854e-01 0.29358099e+01 -0.84308542e+03 0.00000000e+00
- 2 21 111 111 -0.15336384e+01 -0.16364676e+01 -0.13019314e+03 0.00000000e+00
- 2 21 111 111 0.10898342e+01 0.13337098e+01 -0.54185951e+02 0.00000000e+00
- 2 21 111 111 0.12721090e+00 0.12038235e+01 -0.13061336e+03 0.00000000e+00
- 2 21 111 111 -0.53958217e-01 0.11295419e+01 -0.38798039e+02 0.00000000e+00
- 2 21 111 111 0.31870576e+00 -0.16472489e+01 -0.91211944e+02 0.00000000e+00
- 2 21 111 111 0.28303524e+00 -0.14531966e+01 -0.59483042e+02 0.00000000e+00
- 2 21 111 111 0.10728101e+01 -0.20561316e-02 -0.23911148e+03 0.00000000e+00
- 2 2103 111 111 -0.28922778e+01 0.43362517e+00 -0.34632802e+04 0.77133000e+00
- 2 92 57 63 -0.20382371e+00 -0.85808217e+00 0.56257892e+04 0.45957469e+02
- 2 421 159 160 0.20818878e+00 -0.53863806e-01 0.13798493e+02 0.18645000e+01
- 2 223 161 163 -0.16365657e+00 -0.61395488e+00 0.13523058e+02 0.78368940e+00
- 2 213 164 165 -0.31139188e-01 0.17303108e+00 0.18175883e+02 0.80364239e+00
- 2 -213 166 167 -0.18611642e-01 0.29213251e+00 0.27357879e+03 0.65074323e+00
- 2 213 168 169 0.46012318e+00 -0.41075021e+00 0.10207462e+03 0.49018793e+00
- 1 -211 0 0 -0.38112716e+00 0.15943360e+00 0.24421013e+03 0.13957000e+00
- 2 2224 170 171 -0.27760111e+00 -0.40411047e+00 0.49604283e+04 0.12051482e+01
- 2 92 65 110 -0.47349550e+02 0.23216778e+02 0.13437494e+04 0.27828342e+03
- 2 311 172 172 0.45321794e+00 0.58469687e+00 0.10210765e+03 0.49767000e+00
- 2 333 173 174 -0.68478757e+00 0.63542539e+00 0.59123411e+02 0.10265192e+01
- 2 -323 175 176 0.59336500e+00 0.12488772e-01 0.95479982e+02 0.92725520e+00
- 2 111 177 178 -0.82073687e-01 0.49110421e-01 0.34869762e+01 0.13498000e+00
- 2 111 179 180 -0.11841359e+00 -0.52071691e+00 0.48122516e+01 0.13498000e+00
- 2 111 181 182 -0.17284060e+01 0.33868646e+00 0.12572880e+03 0.13498000e+00
- 1 211 0 0 0.63973661e+00 -0.82346231e+00 0.10700792e+02 0.13957000e+00
- 2 313 183 184 -0.28416762e+00 0.12495170e+00 0.49467724e+02 0.85312293e+00
- 1 -321 0 0 -0.10539388e+00 0.66633474e-01 0.16341467e+02 0.49360000e+00
- 2 113 185 186 0.39856664e+00 -0.81980697e-01 0.78366095e+01 0.76079674e+00
- 2 111 187 188 -0.41127584e+00 0.15248065e+01 0.46626852e+01 0.13498000e+00
- 2 323 189 190 0.16425582e+00 -0.43933061e-01 0.87528783e+01 0.85936948e+00
- 1 -321 0 0 -0.62757949e+00 0.40265618e+00 0.29315978e+01 0.49360000e+00
- 2 113 191 192 0.50035256e+00 0.20945591e+00 0.28588244e+01 0.69628426e+00
- 2 223 193 195 0.36579853e-01 0.57078806e+00 0.25803515e+01 0.78076215e+00
- 1 211 0 0 -0.49688233e+00 0.19132255e+00 0.73246202e+01 0.13957000e+00
- 2 111 196 197 0.15542585e+00 0.23942423e+00 0.11948188e+02 0.13498000e+00
- 2 221 198 199 0.18983970e+00 -0.90952535e+00 0.23667320e+02 0.54745000e+00
- 1 -211 0 0 0.93324345e+00 -0.13975159e+01 0.10623773e+03 0.13957000e+00
- 1 211 0 0 -0.33041630e-01 -0.17541061e+01 0.43493558e+02 0.13957000e+00
- 2 -213 200 201 0.12123400e+01 -0.68207316e+00 0.58819000e+02 0.41694989e+00
- 2 111 202 203 0.83120016e+00 -0.23447093e+01 0.11192314e+03 0.13498000e+00
- 2 213 204 205 0.10336846e+00 -0.51041460e+00 0.32640330e+02 0.63025968e+00
- 2 -213 206 207 0.11877288e+01 -0.19801567e+01 0.52828054e+02 0.78613981e+00
- 1 211 0 0 -0.24079798e+00 -0.51657473e-01 0.65479306e+01 0.13957000e+00
- 2 -213 208 209 0.20657003e+00 -0.11711184e+01 0.50182950e+02 0.69115939e+00
- 2 223 210 212 0.18263952e+00 -0.62916562e+00 0.22036094e+02 0.78295578e+00
- 1 2212 0 0 -0.11035661e+00 0.16473230e+00 0.35073246e+02 0.93827000e+00
- 2 113 213 214 -0.18536394e+00 -0.84685621e+00 0.19856541e+02 0.99361500e+00
- 1 -2212 0 0 0.53982234e+00 -0.81920763e-01 0.42456506e+02 0.93827000e+00
- 2 111 215 216 -0.19898561e+00 0.48217405e+00 0.42871609e+02 0.13498000e+00
- 1 211 0 0 0.17389508e-01 0.33446456e+01 0.40739665e+02 0.13957000e+00
- 2 313 217 218 -0.14976740e+01 0.31331738e+01 0.45511690e+02 0.91111424e+00
- 1 -321 0 0 -0.11941385e+01 0.13297701e+01 0.19827965e+02 0.49360000e+00
- 2 323 219 220 -0.95394969e+00 0.37458225e+01 0.31176054e+02 0.88265744e+00
- 2 -323 221 222 -0.10166976e+01 -0.71388374e-01 0.16451363e+01 0.89501292e+00
- 2 2114 223 224 -0.50342977e+00 -0.19418832e+00 0.15616890e+01 0.11190391e+01
- 1 -2112 0 0 0.37260656e-01 0.87844721e+00 0.15158249e+01 0.93957000e+00
- 2 113 225 226 -0.80121947e+00 0.26127198e-01 0.88236008e+00 0.86574678e+00
- 2 111 227 228 -0.21006540e+01 -0.85364353e+00 0.14699338e+01 0.13498000e+00
- 2 223 229 231 -0.20430395e+00 0.24618202e+00 0.14339094e+00 0.78172504e+00
- 2 111 232 233 -0.20555031e+01 0.10021476e+01 0.11761040e+01 0.13498000e+00
- 1 211 0 0 -0.14843415e+00 0.95035852e-01 0.36403774e+00 0.13957000e+00
- 2 223 234 236 -0.29092093e+01 0.14904364e+01 0.22769946e+01 0.77880877e+00
- 2 113 237 238 -0.85246140e+01 0.41705215e+01 0.74703058e+01 0.69073557e+00
- 2 313 239 240 -0.28515100e+02 0.13105648e+02 0.23209401e+02 0.90664924e+00
- 2 92 112 158 -0.40861158e+01 -0.36712819e+02 -0.66447843e+04 0.22411485e+03
- 2 223 241 243 -0.73765387e+00 -0.62244045e+01 -0.12612880e+03 0.77770343e+00
- 2 111 244 245 -0.26258396e+01 -0.26271444e+02 -0.54256826e+03 0.13498000e+00
- 2 223 246 248 -0.12516377e+00 -0.21236376e+01 -0.42102820e+02 0.77850806e+00
- 2 111 249 250 -0.39988101e+00 -0.55980007e+00 -0.14795667e+02 0.13498000e+00
- 2 113 251 252 0.38177395e+00 -0.96838176e+00 -0.20132420e+02 0.87500780e+00
- 1 -211 0 0 -0.10961379e+00 -0.95985041e+00 -0.19979480e+02 0.13957000e+00
- 2 213 253 254 0.75496319e+00 -0.28881211e+00 -0.60494061e+01 0.70058280e+00
- 1 -211 0 0 -0.36940782e+00 -0.34938800e+00 -0.44079565e+01 0.13957000e+00
- 1 211 0 0 0.23809367e+00 -0.36074065e+00 -0.36693103e+01 0.13957000e+00
- 2 221 255 256 0.57579974e+00 0.10431679e+00 -0.16418655e+01 0.54745000e+00
- 2 111 257 258 0.26609178e-01 -0.58438149e-01 -0.12829710e+01 0.13498000e+00
- 2 223 259 261 0.10187251e+01 -0.21460850e+01 -0.29649745e+01 0.78952759e+00
- 1 -211 0 0 -0.64912049e-01 0.53629095e-02 -0.51156151e+00 0.13957000e+00
- 1 211 0 0 0.98508844e+00 -0.39933660e+00 -0.13308074e+01 0.13957000e+00
- 2 113 262 263 -0.11676269e+00 -0.47190548e+00 -0.15381333e+01 0.44150002e+00
- 1 -211 0 0 0.11235036e+00 0.78264107e-01 -0.28971111e-01 0.13957000e+00
- 1 2212 0 0 -0.62962032e+00 0.36253086e+00 -0.69570829e+01 0.93827000e+00
- 1 -2112 0 0 0.40499712e-01 -0.39453685e+00 -0.12717115e+01 0.93957000e+00
- 1 -211 0 0 -0.38248198e-01 0.25213954e+00 -0.20185699e+01 0.13957000e+00
- 2 213 264 265 -0.26581293e+00 -0.32130253e+00 -0.58803826e+01 0.62386776e+00
- 2 221 266 268 -0.37003303e+00 0.74813780e+00 -0.38008546e+01 0.54745000e+00
- 2 111 269 270 0.59036771e+00 0.72483931e-01 -0.25911418e+01 0.13498000e+00
- 2 -213 271 272 -0.76950316e+00 0.56377220e+00 -0.14030517e+02 0.57508557e+00
- 2 113 273 274 0.19933606e+00 0.15634723e+00 -0.72981733e+01 0.62496750e+00
- 2 213 275 276 -0.48521557e+00 -0.16979571e+00 -0.10458342e+02 0.70822905e+00
- 1 -211 0 0 0.26756674e+00 0.33553544e+00 -0.15618477e+02 0.13957000e+00
- 2 323 277 278 -0.85115484e+00 -0.29197335e+00 -0.23876081e+03 0.87757373e+00
- 2 221 279 281 0.59924419e+00 0.28949263e+00 -0.18391465e+03 0.54745000e+00
- 1 -321 0 0 -0.29520951e+00 0.79210532e+00 -0.21844524e+03 0.49360000e+00
- 2 323 282 283 -0.11502762e+00 0.52989825e+00 -0.32788975e+03 0.87039517e+00
- 2 -323 284 285 0.18891414e+00 0.17728025e+00 -0.89189094e+02 0.98101402e+00
- 1 211 0 0 -0.54234297e+00 -0.10601155e-02 -0.22682469e+03 0.13957000e+00
- 2 2114 286 287 -0.16586133e+00 -0.36018856e-01 -0.18743388e+03 0.13062509e+01
- 2 -3212 288 289 -0.16024748e+00 0.12426295e+01 -0.15231724e+03 0.11925500e+01
- 2 -311 290 290 0.14222374e+00 0.14270758e+00 -0.30778266e+02 0.49767000e+00
- 2 -213 291 292 -0.11468472e+00 -0.37119867e+00 -0.31282397e+02 0.70979065e+00
- 2 223 293 295 0.19831834e+00 0.13338469e+00 -0.76944547e+02 0.77650313e+00
- 2 213 296 297 -0.81351368e-01 0.10402716e+01 -0.69364826e+02 0.90909758e+00
- 2 -213 298 299 0.52764691e+00 0.59982423e+00 -0.62714358e+02 0.78516721e+00
- 2 223 300 302 -0.55244211e-02 -0.93697796e-01 -0.22938020e+02 0.78318667e+00
- 2 323 303 304 0.27925819e+00 -0.17146026e+00 -0.44440226e+02 0.91259434e+00
- 2 333 305 306 0.38823819e+00 -0.19056516e+00 -0.15372382e+03 0.10192991e+01
- 2 -313 307 308 0.95218975e-01 -0.75288322e+00 -0.79228088e+02 0.93039619e+00
- 1 -211 0 0 0.37238187e+00 -0.14703605e+00 -0.16060764e+02 0.13957000e+00
- 2 223 309 311 -0.18643845e+00 -0.35406379e+00 -0.10877506e+03 0.79642632e+00
- 2 323 312 313 -0.11673077e+00 -0.37614193e+00 -0.50727838e+03 0.89506289e+00
- 2 3214 314 315 -0.23264929e+01 0.51465405e+00 -0.29574215e+04 0.13997715e+01
- 2 -313 316 317 -0.49996251e+00 0.88460011e-01 0.57887173e+01 0.91244352e+00
- 2 111 318 319 0.70815130e+00 -0.14232382e+00 0.80097752e+01 0.13498000e+00
- 1 -211 0 0 0.16032327e+00 -0.21056721e+00 0.67582184e+01 0.13957000e+00
- 1 211 0 0 -0.16526055e+00 -0.17761560e+00 0.46897146e+01 0.13957000e+00
- 2 111 320 321 -0.15871929e+00 -0.22577207e+00 0.20751252e+01 0.13498000e+00
- 1 211 0 0 -0.15991032e+00 0.42636860e+00 0.13259372e+02 0.13957000e+00
- 2 111 322 323 0.12877113e+00 -0.25333752e+00 0.49165107e+01 0.13498000e+00
- 1 -211 0 0 -0.28010513e+00 0.26593598e+00 0.17807909e+03 0.13957000e+00
- 2 111 324 325 0.26149349e+00 0.26196522e-01 0.95499697e+02 0.13498000e+00
- 1 211 0 0 0.40861417e+00 -0.38949285e+00 0.93409648e+02 0.13957000e+00
- 2 111 326 327 0.51509012e-01 -0.21257358e-01 0.86649678e+01 0.13498000e+00
- 1 2212 0 0 -0.29280401e+00 -0.27651867e+00 0.32566731e+04 0.93827000e+00
- 1 211 0 0 0.15202896e-01 -0.12759179e+00 0.17037552e+04 0.13957000e+00
- 2 310 328 329 0.45321794e+00 0.58469687e+00 0.10210765e+03 0.49767000e+00
- 1 321 0 0 -0.18272437e+00 0.24703907e+00 0.26561580e+02 0.49360000e+00
- 1 -321 0 0 -0.50206320e+00 0.38838632e+00 0.32561832e+02 0.49360000e+00
- 2 -311 330 330 0.23619427e+00 -0.19149875e+00 0.71763373e+02 0.49767000e+00
- 1 -211 0 0 0.35717074e+00 0.20398752e+00 0.23716609e+02 0.13957000e+00
- 1 22 0 0 -0.50306018e-02 0.71454116e-01 0.23521218e+01 0.00000000e+00
- 1 22 0 0 -0.77043086e-01 -0.22343695e-01 0.11348544e+01 0.00000000e+00
- 1 22 0 0 -0.32688573e-01 -0.36144782e-01 0.23217213e+00 0.00000000e+00
- 1 22 0 0 -0.85725018e-01 -0.48457213e+00 0.45800795e+01 0.00000000e+00
- 1 22 0 0 -0.78729465e+00 0.85869927e-01 0.56385286e+02 0.00000000e+00
- 1 22 0 0 -0.94111135e+00 0.25281653e+00 0.69343509e+02 0.00000000e+00
- 1 321 0 0 -0.18411367e+00 0.30538165e+00 0.26578896e+02 0.49360000e+00
- 1 -211 0 0 -0.10005395e+00 -0.18042995e+00 0.22888828e+02 0.13957000e+00
- 1 -211 0 0 0.42406955e+00 0.22118311e+00 0.36263565e+01 0.13957000e+00
- 1 211 0 0 -0.25502909e-01 -0.30316380e+00 0.42102530e+01 0.13957000e+00
- 1 22 0 0 -0.11165403e+00 0.66994871e+00 0.20107656e+01 0.00000000e+00
- 1 22 0 0 -0.29962182e+00 0.85485781e+00 0.26519196e+01 0.00000000e+00
- 1 321 0 0 -0.12589725e+00 0.77081049e-01 0.43365696e+01 0.49360000e+00
- 2 111 331 332 0.29015307e+00 -0.12101411e+00 0.44163088e+01 0.13498000e+00
- 1 211 0 0 0.56391908e-01 0.28182759e+00 0.18653472e+01 0.13957000e+00
- 1 -211 0 0 0.44396065e+00 -0.72371679e-01 0.99347711e+00 0.13957000e+00
- 1 -211 0 0 0.96951712e-01 0.48881230e-01 0.10110315e+01 0.13957000e+00
- 1 211 0 0 0.44323318e-01 0.52450615e+00 0.13132747e+01 0.13957000e+00
- 2 111 333 334 -0.10469518e+00 -0.25993205e-02 0.25604529e+00 0.13498000e+00
- 1 22 0 0 0.91377516e-01 0.30953718e-01 0.32037449e+01 0.00000000e+00
- 1 22 0 0 0.64048336e-01 0.20847051e+00 0.87444428e+01 0.00000000e+00
- 1 22 0 0 0.32300044e+00 -0.79683618e+00 0.21636776e+02 0.00000000e+00
- 1 22 0 0 -0.13316073e+00 -0.11268916e+00 0.20305438e+01 0.00000000e+00
- 1 -211 0 0 0.10069245e+01 -0.53330313e+00 0.43028991e+02 0.13957000e+00
- 2 111 335 336 0.20541554e+00 -0.14877003e+00 0.15790009e+02 0.13498000e+00
- 1 22 0 0 0.46012052e+00 -0.14853107e+01 0.69015808e+02 0.00000000e+00
- 1 22 0 0 0.37107965e+00 -0.85939862e+00 0.42907336e+02 0.00000000e+00
- 1 211 0 0 -0.10622919e+00 -0.44006977e+00 0.27147678e+02 0.13957000e+00
- 2 111 337 338 0.20959765e+00 -0.70344830e-01 0.54926527e+01 0.13498000e+00
- 1 -211 0 0 0.40019620e+00 -0.17393905e+00 0.85749644e+01 0.13957000e+00
- 2 111 339 340 0.78753255e+00 -0.18062176e+01 0.44253090e+02 0.13498000e+00
- 1 -211 0 0 -0.21358708e+00 -0.55557161e+00 0.19978903e+02 0.13957000e+00
- 2 111 341 342 0.42015711e+00 -0.61554676e+00 0.30204047e+02 0.13498000e+00
- 1 211 0 0 -0.64970457e-01 -0.28233759e+00 0.63515930e+01 0.13957000e+00
- 1 -211 0 0 0.13154593e+00 -0.37209209e+00 0.63575488e+01 0.13957000e+00
- 2 111 343 344 0.11606404e+00 0.25264049e-01 0.93269525e+01 0.13498000e+00
- 1 211 0 0 -0.14586552e+00 -0.42622553e+00 0.29159004e+01 0.13957000e+00
- 1 -211 0 0 -0.39498426e-01 -0.42063068e+00 0.16940641e+02 0.13957000e+00
- 1 22 0 0 -0.17602278e+00 0.30304917e+00 0.31534811e+02 0.00000000e+00
- 1 22 0 0 -0.22962830e-01 0.17912488e+00 0.11336798e+02 0.00000000e+00
- 1 321 0 0 -0.13542610e+01 0.29652956e+01 0.40203516e+02 0.49360000e+00
- 1 -211 0 0 -0.14341303e+00 0.16787823e+00 0.53081743e+01 0.13957000e+00
- 2 311 345 345 -0.91655143e+00 0.33615602e+01 0.26416944e+02 0.49767000e+00
- 1 211 0 0 -0.37398255e-01 0.38426228e+00 0.47591095e+01 0.13957000e+00
- 2 -311 346 346 -0.42543770e+00 -0.47974877e-01 0.12355986e+01 0.49767000e+00
- 1 -211 0 0 -0.59125991e+00 -0.23413498e-01 0.40953768e+00 0.13957000e+00
- 1 2212 0 0 -0.50693626e+00 -0.17436564e+00 0.14802411e+01 0.93827000e+00
- 1 -211 0 0 0.35064960e-02 -0.19822683e-01 0.81447889e-01 0.13957000e+00
- 1 -211 0 0 -0.27863203e+00 -0.38246698e+00 0.46067471e+00 0.13957000e+00
- 1 211 0 0 -0.52258744e+00 0.40859418e+00 0.42168537e+00 0.13957000e+00
- 1 22 0 0 -0.15612857e+01 -0.61765875e+00 0.10191223e+01 0.00000000e+00
- 1 22 0 0 -0.53936832e+00 -0.23598478e+00 0.45081145e+00 0.00000000e+00
- 1 -211 0 0 0.81856115e-01 -0.39452373e-01 -0.26340803e-01 0.13957000e+00
- 1 211 0 0 -0.16654296e+00 0.17109396e+00 0.32296664e+00 0.13957000e+00
- 2 111 347 349 -0.11961710e+00 0.11454043e+00 -0.15323489e+00 0.13498000e+00
- 1 22 0 0 -0.16627838e+01 0.80421573e+00 0.88918356e+00 0.00000000e+00
- 1 22 0 0 -0.39271936e+00 0.19793192e+00 0.28692043e+00 0.00000000e+00
- 1 211 0 0 -0.81538607e+00 0.57549948e+00 0.47386234e+00 0.13957000e+00
- 1 -211 0 0 -0.98028238e+00 0.32432909e+00 0.10040755e+01 0.13957000e+00
- 2 111 350 351 -0.11135409e+01 0.59060779e+00 0.79905669e+00 0.13498000e+00
- 1 211 0 0 -0.18793857e+01 0.11778345e+01 0.18858683e+01 0.13957000e+00
- 1 -211 0 0 -0.66452282e+01 0.29926870e+01 0.55844375e+01 0.13957000e+00
- 1 321 0 0 -0.27392148e+02 0.12593642e+02 0.22356404e+02 0.49360000e+00
- 1 -211 0 0 -0.11229523e+01 0.51200658e+00 0.85299767e+00 0.13957000e+00
- 1 -211 0 0 -0.41387159e+00 -0.32836293e+01 -0.63332612e+02 0.13957000e+00
- 1 211 0 0 -0.17713612e+00 -0.25211106e+01 -0.53662959e+02 0.13957000e+00
- 2 111 352 353 -0.14664616e+00 -0.41966463e+00 -0.91332263e+01 0.13498000e+00
- 1 22 0 0 -0.85103034e+00 -0.84555111e+01 -0.17593295e+03 0.00000000e+00
- 1 22 0 0 -0.17748093e+01 -0.17815933e+02 -0.36663530e+03 0.00000000e+00
- 1 -211 0 0 -0.14563619e+00 -0.11499318e+01 -0.17922592e+02 0.13957000e+00
- 1 211 0 0 -0.84807285e-01 -0.70029764e+00 -0.14963295e+02 0.13957000e+00
- 2 111 354 355 0.10527971e+00 -0.27340814e+00 -0.92169321e+01 0.13498000e+00
- 1 22 0 0 -0.26358759e+00 -0.31981485e+00 -0.75762536e+01 0.00000000e+00
- 1 22 0 0 -0.13629342e+00 -0.23998522e+00 -0.72194137e+01 0.00000000e+00
- 1 -211 0 0 0.22092000e-01 -0.69096336e+00 -0.16480742e+02 0.13957000e+00
- 1 211 0 0 0.35968195e+00 -0.27741840e+00 -0.36516779e+01 0.13957000e+00
- 1 211 0 0 0.17173882e+00 -0.39965748e+00 -0.28598812e+01 0.13957000e+00
- 2 111 356 357 0.58322437e+00 0.11084537e+00 -0.31895249e+01 0.13498000e+00
- 1 22 0 0 0.18926108e+00 0.30808878e+00 -0.81980350e+00 0.00000000e+00
- 1 22 0 0 0.38653865e+00 -0.20377199e+00 -0.82206198e+00 0.00000000e+00
- 1 22 0 0 0.23374148e-04 0.28440793e-01 -0.74131017e-01 0.00000000e+00
- 1 22 0 0 0.26585804e-01 -0.86878942e-01 -0.12088400e+01 0.00000000e+00
- 1 211 0 0 0.58539547e+00 -0.10457131e+01 -0.10567685e+01 0.13957000e+00
- 1 -211 0 0 0.23586714e+00 -0.35852803e+00 -0.84889965e+00 0.13957000e+00
- 2 111 358 359 0.19746251e+00 -0.74184395e+00 -0.10593064e+01 0.13498000e+00
- 1 -211 0 0 0.69759033e-01 -0.56340518e-01 -0.25995055e+00 0.13957000e+00
- 1 211 0 0 -0.18652173e+00 -0.41556496e+00 -0.12781828e+01 0.13957000e+00
- 1 211 0 0 -0.33005289e+00 -0.14799734e-01 -0.19335963e+01 0.13957000e+00
- 2 111 360 361 0.64239965e-01 -0.30650280e+00 -0.39467862e+01 0.13498000e+00
- 1 211 0 0 -0.20200777e-01 0.23303514e+00 -0.96320613e+00 0.13957000e+00
- 1 -211 0 0 -0.56438587e-01 0.27733939e+00 -0.14718268e+01 0.13957000e+00
- 2 111 362 363 -0.29339366e+00 0.23776327e+00 -0.13658216e+01 0.13498000e+00
- 1 22 0 0 0.29745293e+00 0.62625387e-01 -0.10462910e+01 0.00000000e+00
- 1 22 0 0 0.29291478e+00 0.98585437e-02 -0.15448509e+01 0.00000000e+00
- 1 -211 0 0 -0.48814710e+00 0.53294238e-01 -0.57965627e+01 0.13957000e+00
- 2 111 364 365 -0.28135607e+00 0.51047796e+00 -0.82339541e+01 0.13498000e+00
- 1 -211 0 0 0.28833512e+00 -0.12738986e+00 -0.35248591e+01 0.13957000e+00
- 1 211 0 0 -0.88999066e-01 0.28373709e+00 -0.37733142e+01 0.13957000e+00
- 1 211 0 0 0.10868535e+00 0.12934032e-01 -0.43342844e+01 0.13957000e+00
- 2 111 366 367 -0.59390092e+00 -0.18272974e+00 -0.61240577e+01 0.13498000e+00
- 1 321 0 0 -0.50828202e+00 0.67885392e-01 -0.11196217e+03 0.49360000e+00
- 2 111 368 369 -0.34287282e+00 -0.35985874e+00 -0.12679863e+03 0.13498000e+00
- 1 211 0 0 0.24685751e+00 0.16994607e+00 -0.85162272e+02 0.13957000e+00
- 1 -211 0 0 0.64417401e-01 0.24033826e-01 -0.50226554e+02 0.13957000e+00
- 2 111 370 371 0.28796928e+00 0.95512733e-01 -0.48525823e+02 0.13498000e+00
- 2 311 372 372 0.19077096e+00 0.27407035e+00 -0.20590120e+03 0.49767000e+00
- 1 211 0 0 -0.30579857e+00 0.25582790e+00 -0.12198855e+03 0.13957000e+00
- 2 -311 373 373 -0.69212424e-01 0.39774605e+00 -0.61503009e+02 0.49767000e+00
- 1 -211 0 0 0.25812656e+00 -0.22046580e+00 -0.27686085e+02 0.13957000e+00
- 1 2212 0 0 -0.16415983e+00 -0.26111520e+00 -0.11836136e+03 0.93827000e+00
- 1 -211 0 0 -0.17015017e-02 0.22509635e+00 -0.69072519e+02 0.13957000e+00
- 2 -3122 374 375 -0.21385102e+00 0.11262162e+01 -0.14276783e+03 0.11156800e+01
- 1 22 0 0 0.53603536e-01 0.11641327e+00 -0.95494165e+01 0.00000000e+00
- 1 130 0 0 0.14222374e+00 0.14270758e+00 -0.30778266e+02 0.49767000e+00
- 1 -211 0 0 -0.20230929e+00 -0.50145132e+00 -0.26635402e+02 0.13957000e+00
- 2 111 376 377 0.87624565e-01 0.13025265e+00 -0.46469946e+01 0.13498000e+00
- 1 -211 0 0 0.19086639e+00 0.80414116e-01 -0.39236586e+02 0.13957000e+00
- 1 211 0 0 -0.22149909e-01 0.22402139e+00 -0.26595188e+02 0.13957000e+00
- 2 111 378 379 0.29601863e-01 -0.17105081e+00 -0.11112773e+02 0.13498000e+00
- 1 211 0 0 0.27759882e+00 0.43257518e-01 -0.17360329e+02 0.13957000e+00
- 2 111 380 381 -0.35895019e+00 0.99701411e+00 -0.52004497e+02 0.13498000e+00
- 1 -211 0 0 0.41477511e-02 0.50797288e+00 -0.21984722e+02 0.13957000e+00
- 2 111 382 383 0.52349916e+00 0.91851356e-01 -0.40729636e+02 0.13498000e+00
- 1 -211 0 0 0.24159257e+00 0.17623264e-01 -0.53895352e+01 0.13957000e+00
- 1 211 0 0 -0.17864029e+00 -0.16795609e-01 -0.51340900e+01 0.13957000e+00
- 2 111 384 385 -0.68476703e-01 -0.94525451e-01 -0.12414395e+02 0.13498000e+00
- 2 311 386 386 -0.10246311e+00 -0.22164845e+00 -0.27913626e+02 0.49767000e+00
- 1 211 0 0 0.38172130e+00 0.50188185e-01 -0.16526600e+02 0.13957000e+00
- 1 130 0 0 0.23197480e+00 0.40113233e-02 -0.80233121e+02 0.49767000e+00
- 2 310 387 388 0.15626339e+00 -0.19457648e+00 -0.73490701e+02 0.49767000e+00
- 2 -311 389 389 -0.13035170e+00 -0.19941939e+00 -0.47301486e+02 0.49767000e+00
- 2 111 390 391 0.22557068e+00 -0.55346383e+00 -0.31926602e+02 0.13498000e+00
- 1 -211 0 0 -0.66207090e-01 -0.35283434e+00 -0.73268128e+02 0.13957000e+00
- 1 211 0 0 -0.18613069e-01 0.23831644e-01 -0.29135986e+02 0.13957000e+00
- 2 111 392 393 -0.10161829e+00 -0.25061098e-01 -0.63709511e+01 0.13498000e+00
- 2 311 394 394 0.15604609e+00 -0.84150712e-01 -0.33826193e+03 0.49767000e+00
- 1 211 0 0 -0.27277686e+00 -0.29199122e+00 -0.16901645e+03 0.13957000e+00
- 2 3122 395 396 -0.16765789e+01 0.30935856e+00 -0.19954558e+04 0.11156800e+01
- 2 111 397 398 -0.64991396e+00 0.20529549e+00 -0.96196577e+03 0.13498000e+00
- 1 -321 0 0 -0.61209314e+00 0.21923368e+00 0.42702272e+01 0.49360000e+00
- 1 211 0 0 0.11213062e+00 -0.13077367e+00 0.15184901e+01 0.13957000e+00
- 1 22 0 0 0.24790945e+00 -0.68522229e-01 0.22048941e+01 0.00000000e+00
- 1 22 0 0 0.46024184e+00 -0.73801588e-01 0.58048811e+01 0.00000000e+00
- 1 22 0 0 -0.13559014e+00 -0.96260088e-01 0.14067350e+01 0.00000000e+00
- 1 22 0 0 -0.23129143e-01 -0.12951198e+00 0.66839019e+00 0.00000000e+00
- 1 22 0 0 0.80442314e-01 -0.20799058e+00 0.44240151e+01 0.00000000e+00
- 1 22 0 0 0.48328820e-01 -0.45346941e-01 0.49249564e+00 0.00000000e+00
- 1 22 0 0 0.16757438e+00 -0.33806442e-01 0.70683801e+02 0.00000000e+00
- 1 22 0 0 0.93919109e-01 0.60002964e-01 0.24815897e+02 0.00000000e+00
- 1 22 0 0 0.85068086e-01 -0.32107659e-01 0.77752453e+01 0.00000000e+00
- 1 22 0 0 -0.33559074e-01 0.10850301e-01 0.88972252e+00 0.00000000e+00
- 1 -211 0 0 0.79694914e-01 0.28808708e+00 0.23418913e+02 0.13957000e+00
- 1 211 0 0 0.37352303e+00 0.29660980e+00 0.78688733e+02 0.13957000e+00
- 1 130 0 0 0.23619427e+00 -0.19149875e+00 0.71763373e+02 0.49767000e+00
- 1 22 0 0 0.30040557e+00 -0.11486799e+00 0.43660839e+01 0.00000000e+00
- 1 22 0 0 -0.10252495e-01 -0.61461216e-02 0.50224903e-01 0.00000000e+00
- 1 22 0 0 -0.88974674e-01 0.36304669e-01 0.74817466e-01 0.00000000e+00
- 1 22 0 0 -0.15720503e-01 -0.38903989e-01 0.18122783e+00 0.00000000e+00
- 1 22 0 0 -0.83996910e-02 0.10487018e-02 0.80397487e-01 0.00000000e+00
- 1 22 0 0 0.21381523e+00 -0.14981873e+00 0.15709611e+02 0.00000000e+00
- 1 22 0 0 0.67512292e-01 -0.51135662e-01 0.92886821e+00 0.00000000e+00
- 1 22 0 0 0.14208536e+00 -0.19209168e-01 0.45637845e+01 0.00000000e+00
- 1 22 0 0 0.30514229e+00 -0.79076069e+00 0.17774865e+02 0.00000000e+00
- 1 22 0 0 0.48239026e+00 -0.10154569e+01 0.26478225e+02 0.00000000e+00
- 1 22 0 0 0.15485244e+00 -0.15775526e+00 0.71161538e+01 0.00000000e+00
- 1 22 0 0 0.26530467e+00 -0.45779151e+00 0.23087894e+02 0.00000000e+00
- 1 22 0 0 -0.84718831e-02 -0.13273981e-01 0.15329004e+00 0.00000000e+00
- 1 22 0 0 0.12453593e+00 0.38538030e-01 0.91736625e+01 0.00000000e+00
- 1 130 0 0 -0.91655143e+00 0.33615602e+01 0.26416944e+02 0.49767000e+00
- 1 130 0 0 -0.42543770e+00 -0.47974877e-01 0.12355986e+01 0.49767000e+00
- 1 22 0 0 -0.12419365e-02 0.10515087e-01 -0.93486974e-01 0.00000000e+00
- 1 -11 0 0 -0.11160262e+00 0.97063555e-01 -0.58396657e-01 0.51000000e-03
- 1 11 0 0 -0.67725481e-02 0.69617848e-02 -0.13512645e-02 0.51000000e-03
- 1 22 0 0 -0.46128728e+00 0.23962456e+00 0.40869120e+00 0.00000000e+00
- 1 22 0 0 -0.65225359e+00 0.35098323e+00 0.39036548e+00 0.00000000e+00
- 1 22 0 0 -0.52701040e-02 -0.62465460e-01 -0.62385587e+00 0.00000000e+00
- 1 22 0 0 -0.14137606e+00 -0.35719917e+00 -0.85093704e+01 0.00000000e+00
- 1 22 0 0 0.13196390e+00 -0.20202504e+00 -0.62310118e+01 0.00000000e+00
- 1 22 0 0 -0.26684188e-01 -0.71383098e-01 -0.29859203e+01 0.00000000e+00
- 1 22 0 0 0.16164000e+00 0.12830905e-03 -0.61180788e+00 0.00000000e+00
- 1 22 0 0 0.42158437e+00 0.11071706e+00 -0.25777170e+01 0.00000000e+00
- 1 22 0 0 0.52854469e-01 -0.23403120e+00 -0.23211153e+00 0.00000000e+00
- 1 22 0 0 0.14460804e+00 -0.50781275e+00 -0.82719483e+00 0.00000000e+00
- 1 22 0 0 0.54618960e-01 -0.46858402e-01 -0.53377234e+00 0.00000000e+00
- 1 22 0 0 0.96210045e-02 -0.25964439e+00 -0.34130139e+01 0.00000000e+00
- 1 22 0 0 -0.21128481e+00 0.17127513e+00 -0.11676071e+01 0.00000000e+00
- 1 22 0 0 -0.82108852e-01 0.66488142e-01 -0.19821453e+00 0.00000000e+00
- 1 22 0 0 -0.51483339e-01 0.22335173e+00 -0.29019739e+01 0.00000000e+00
- 1 22 0 0 -0.22987273e+00 0.28712623e+00 -0.53319801e+01 0.00000000e+00
- 1 22 0 0 -0.50277315e+00 -0.12500830e+00 -0.54203940e+01 0.00000000e+00
- 1 22 0 0 -0.91127777e-01 -0.57721438e-01 -0.70366363e+00 0.00000000e+00
- 1 22 0 0 -0.19320882e+00 -0.22712477e+00 -0.90862016e+02 0.00000000e+00
- 1 22 0 0 -0.14966400e+00 -0.13273397e+00 -0.35936617e+02 0.00000000e+00
- 1 22 0 0 0.13751624e+00 0.55189630e-01 -0.13985419e+02 0.00000000e+00
- 1 22 0 0 0.15045304e+00 0.40323103e-01 -0.34540404e+02 0.00000000e+00
- 2 310 399 400 0.19077096e+00 0.27407035e+00 -0.20590120e+03 0.49767000e+00
- 2 310 401 402 -0.69212424e-01 0.39774605e+00 -0.61503009e+02 0.49767000e+00
- 1 -2212 0 0 -0.26385307e+00 0.90862750e+00 -0.11530896e+03 0.93827000e+00
- 1 211 0 0 0.50002054e-01 0.21758873e+00 -0.27458864e+02 0.13957000e+00
- 1 22 0 0 0.88041123e-03 0.40235694e-01 -0.28594158e+00 0.00000000e+00
- 1 22 0 0 0.86744154e-01 0.90016958e-01 -0.43610530e+01 0.00000000e+00
- 1 22 0 0 0.16811664e-01 0.21285548e-01 -0.14076739e+01 0.00000000e+00
- 1 22 0 0 0.12790198e-01 -0.19233636e+00 -0.97050991e+01 0.00000000e+00
- 1 22 0 0 -0.19038384e+00 0.37809324e+00 -0.22750253e+02 0.00000000e+00
- 1 22 0 0 -0.16856634e+00 0.61892087e+00 -0.29254244e+02 0.00000000e+00
- 1 22 0 0 0.27855060e+00 -0.14122578e-01 -0.22777999e+02 0.00000000e+00
- 1 22 0 0 0.24494857e+00 0.10597393e+00 -0.17951638e+02 0.00000000e+00
- 1 22 0 0 -0.83752421e-01 -0.23140418e-01 -0.38919809e+01 0.00000000e+00
- 1 22 0 0 0.15275717e-01 -0.71385034e-01 -0.85224141e+01 0.00000000e+00
- 2 310 403 404 -0.10246311e+00 -0.22164845e+00 -0.27913626e+02 0.49767000e+00
- 1 -211 0 0 -0.82051974e-01 0.31298519e-01 -0.36924736e+02 0.13957000e+00
- 1 211 0 0 0.23831536e+00 -0.22587500e+00 -0.36565965e+02 0.13957000e+00
- 1 130 0 0 -0.13035170e+00 -0.19941939e+00 -0.47301486e+02 0.49767000e+00
- 1 22 0 0 0.17462733e-01 0.27742695e-02 -0.64766823e+00 0.00000000e+00
- 1 22 0 0 0.20810795e+00 -0.55623810e+00 -0.31278933e+02 0.00000000e+00
- 1 22 0 0 -0.11752510e+00 -0.51620462e-01 -0.39363090e+01 0.00000000e+00
- 1 22 0 0 0.15906807e-01 0.26559364e-01 -0.24346421e+01 0.00000000e+00
- 2 310 405 406 0.15604609e+00 -0.84150712e-01 -0.33826193e+03 0.49767000e+00
- 1 2212 0 0 -0.14821100e+01 0.35253624e+00 -0.17072000e+04 0.93827000e+00
- 1 -211 0 0 -0.19446893e+00 -0.43177684e-01 -0.28825573e+03 0.13957000e+00
- 1 22 0 0 -0.19699370e+00 0.21358848e-01 -0.21668399e+03 0.00000000e+00
- 1 22 0 0 -0.45292027e+00 0.18393664e+00 -0.74528178e+03 0.00000000e+00
- 2 111 407 408 0.23665290e+00 0.32360121e+00 -0.17412240e+03 0.13498000e+00
- 2 111 409 410 -0.45881942e-01 -0.49530862e-01 -0.31778806e+02 0.13498000e+00
- 1 -211 0 0 -0.92766384e-01 -0.45610657e-01 -0.18812086e+02 0.13957000e+00
- 1 211 0 0 0.23553960e-01 0.44335671e+00 -0.42690923e+02 0.13957000e+00
- 1 -211 0 0 -0.14005749e+00 0.78959963e-01 -0.13252304e+02 0.13957000e+00
- 1 211 0 0 0.37594382e-01 -0.30060841e+00 -0.14661322e+02 0.13957000e+00
- 1 -211 0 0 -0.73697722e-01 0.10422627e+00 -0.92521307e+02 0.13957000e+00
- 1 211 0 0 0.22974381e+00 -0.18837698e+00 -0.24574062e+03 0.13957000e+00
- 1 22 0 0 0.18196472e+00 0.22285677e+00 -0.96409223e+02 0.00000000e+00
- 1 22 0 0 0.54688182e-01 0.10074444e+00 -0.77713175e+02 0.00000000e+00
- 1 22 0 0 -0.66360071e-01 0.26734843e-01 -0.13935531e+02 0.00000000e+00
- 1 22 0 0 0.20478129e-01 -0.76265705e-01 -0.17843275e+02 0.00000000e+00
- 680
- 2 25 2 3 0.65551069e+02 0.20746326e+02 0.78435772e+01 0.12499899e+03
- 2 23 4 7 0.53251340e+02 0.20707531e+02 0.13175732e+02 0.92088120e+02
- 2 23 8 12 0.12299729e+02 0.38795489e-01 -0.53321544e+01 0.30924427e+02
- 1 -11 0 0 0.22592951e+01 -0.12676916e+02 0.40412001e+02 0.51000000e-03
- 1 22 0 0 0.70142590e-02 0.44899421e-02 -0.36675853e-02 0.00000000e+00
- 1 11 0 0 0.35300447e+02 0.23111200e+02 -0.18854904e+02 0.51000000e-03
- 1 22 0 0 0.15684688e+02 0.10268630e+02 -0.83777178e+01 0.00000000e+00
- 1 13 0 0 0.51914574e-01 -0.50598987e+01 -0.11589805e+02 0.10566000e+00
- 1 22 0 0 -0.74117391e-03 -0.13138851e-02 -0.10343022e-02 0.00000000e+00
- 1 22 0 0 -0.22905955e+01 0.88961767e+00 0.53559863e+01 0.00000000e+00
- 1 -13 0 0 0.14531841e+02 0.42079358e+01 0.90261085e+00 0.10566000e+00
- 1 22 0 0 0.73096431e-02 0.24545929e-02 0.87666321e-04 0.00000000e+00
- 2 -2 78 78 -0.47177271e+02 -0.11739627e+02 -0.30070852e+03 0.33000000e+00
- 2 21 78 78 -0.11315253e+02 -0.20949468e+01 -0.68324141e+02 0.00000000e+00
- 2 21 78 78 -0.74432615e+01 -0.27566266e+01 -0.51253994e+02 0.00000000e+00
- 2 21 78 78 -0.93013527e+00 0.18754084e+01 -0.10605237e+01 0.00000000e+00
- 2 21 78 78 0.19726956e+00 -0.26144281e+00 0.16704811e+00 0.00000000e+00
- 2 21 78 78 0.71368462e+00 -0.45432517e+00 -0.30763953e+00 0.00000000e+00
- 2 21 78 78 -0.11750064e+01 -0.22686006e+01 0.88318320e+01 0.00000000e+00
- 2 21 78 78 -0.34712954e+01 -0.13661690e+01 0.13043244e+02 0.00000000e+00
- 2 21 78 78 -0.17931362e+01 -0.13890935e+01 0.22913427e+02 0.00000000e+00
- 2 21 78 78 -0.79015843e+01 -0.50442036e+01 0.31714023e+03 0.00000000e+00
- 2 21 78 78 -0.50668192e+00 -0.15929225e+01 0.25300248e+03 0.00000000e+00
- 2 21 78 78 -0.15316259e+01 -0.61152378e+00 0.57359097e+03 0.00000000e+00
- 2 21 78 78 -0.63611943e-01 0.38265938e+00 0.72313165e+02 0.00000000e+00
- 2 21 78 78 0.50668192e+00 0.15929225e+01 0.17327280e+03 0.00000000e+00
- 2 21 78 78 0.15316259e+01 0.61152378e+00 0.13076362e+03 0.00000000e+00
- 2 21 78 78 -0.71368462e+00 0.45432517e+00 0.10465180e+02 0.00000000e+00
- 2 21 78 78 0.10905377e+01 0.64835571e+00 0.33120667e+02 0.00000000e+00
- 2 21 78 78 -0.55078215e+00 -0.22424445e+01 0.26636603e+03 0.00000000e+00
- 2 2 78 78 -0.22912192e+00 0.71816999e+00 -0.24846953e+00 0.33000000e+00
- 2 3 127 127 0.84213825e+00 -0.11249777e+01 0.38004532e+01 0.50000000e+00
- 2 21 127 127 -0.80248166e+00 -0.10259745e+01 0.20099183e+01 0.00000000e+00
- 2 21 127 127 0.83917404e+00 -0.95236983e+00 -0.12906343e+01 0.00000000e+00
- 2 21 127 127 0.21730404e+00 0.65291161e+00 -0.29183626e+00 0.00000000e+00
- 2 21 127 127 -0.79777503e+00 0.78341096e+00 0.21937036e+01 0.00000000e+00
- 2 2101 127 127 0.70442642e+00 0.88007840e+00 0.49277626e+04 0.57933000e+00
- 2 -3 146 146 0.46284728e+01 -0.63070414e+01 0.47839384e+01 0.50000000e+00
- 2 21 146 146 0.43585616e+00 0.14340928e+01 0.52897350e+01 0.00000000e+00
- 2 21 146 146 0.34712954e+01 0.13661690e+01 0.12893579e+02 0.00000000e+00
- 2 21 146 146 0.17931362e+01 0.13890935e+01 0.52128765e+01 0.00000000e+00
- 2 21 146 146 0.34856580e+00 0.28510526e+01 0.47631468e+01 0.00000000e+00
- 2 21 146 146 0.79488492e+00 0.33860553e+00 0.12672059e+01 0.00000000e+00
- 2 21 146 146 0.79015843e+01 0.50442036e+01 0.78141762e+01 0.00000000e+00
- 2 21 146 146 0.71610499e+00 0.82410913e+00 -0.30782833e+00 0.00000000e+00
- 2 21 146 146 -0.98700384e+00 -0.17631986e+00 -0.68347304e+02 0.00000000e+00
- 2 2 146 146 -0.73381140e+00 -0.83773406e-01 -0.32403656e+03 0.33000000e+00
- 2 2 170 170 -0.28993909e+01 0.24068082e+01 -0.52802243e+02 0.33000000e+00
- 2 2101 170 170 -0.20410518e+00 0.54075004e-01 -0.47576144e+04 0.57933000e+00
- 2 1 179 179 -0.24846549e-01 -0.59296037e+00 -0.11108150e+02 0.00000000e+00
- 2 -1 179 179 0.24846549e-01 0.59296037e+00 0.27722045e+00 0.00000000e+00
- 2 21 184 184 0.23375460e+01 -0.78625208e+01 0.96890275e+01 0.00000000e+00
- 2 21 184 184 0.63611943e-01 -0.38265938e+00 0.39180569e+00 0.00000000e+00
- 2 21 184 184 -0.17724699e+00 -0.15399931e+01 0.50910884e+00 0.00000000e+00
- 2 21 184 184 -0.71610499e+00 -0.82410913e+00 -0.18921049e+00 0.00000000e+00
- 2 21 184 184 -0.79488492e+00 -0.33860553e+00 0.16883495e+00 0.00000000e+00
- 2 21 184 184 -0.43585616e+00 -0.14340928e+01 0.50803577e+00 0.00000000e+00
- 2 21 184 184 -0.27015540e+00 -0.78926275e+01 0.21913592e+01 0.00000000e+00
- 2 21 184 184 -0.34856580e+00 -0.28510526e+01 -0.14294059e+01 0.00000000e+00
- 2 21 184 184 -0.70533446e+00 0.70415466e+00 -0.20151622e+01 0.00000000e+00
- 2 21 184 184 -0.27554383e+01 0.61134965e+00 -0.48110611e+01 0.00000000e+00
- 2 21 184 184 -0.31664709e+01 -0.86127852e+00 -0.72420100e+01 0.00000000e+00
- 2 21 184 184 -0.24898591e+01 -0.22516902e+01 -0.11704049e+02 0.00000000e+00
- 2 21 184 184 -0.67083349e+00 -0.52604247e+01 -0.28813434e+02 0.00000000e+00
- 2 21 184 184 0.27554383e+01 -0.61134965e+00 -0.19928972e+03 0.00000000e+00
- 2 21 184 184 0.24898591e+01 0.22516902e+01 -0.82203055e+03 0.00000000e+00
- 2 21 184 184 0.67083349e+00 0.52604247e+01 -0.66541053e+02 0.00000000e+00
- 2 21 184 184 0.31664709e+01 0.86127852e+00 -0.29519614e+02 0.00000000e+00
- 2 21 184 184 0.11750064e+01 0.22686006e+01 -0.10912643e+02 0.00000000e+00
- 2 21 184 184 0.27015540e+00 0.78926275e+01 -0.14622450e+02 0.00000000e+00
- 2 21 184 184 0.17724699e+00 0.15399931e+01 -0.20762183e+01 0.00000000e+00
- 2 21 184 184 -0.23375460e+01 0.78625208e+01 -0.62454549e+01 0.00000000e+00
- 2 21 184 184 -0.34680602e+01 0.37042100e+01 0.17904921e+00 0.00000000e+00
- 2 21 184 184 0.34680602e+01 -0.37042100e+01 0.50087860e+01 0.00000000e+00
- 2 21 236 236 0.74861679e+00 -0.26468066e+01 0.21446472e+02 0.00000000e+00
- 2 21 236 236 0.70533446e+00 -0.70415466e+00 0.35553990e+01 0.00000000e+00
- 2 21 236 236 -0.74861679e+00 0.26468066e+01 -0.59406477e+02 0.00000000e+00
- 2 92 79 126 -0.80762651e+02 -0.25538561e+02 0.14530874e+04 0.17889533e+04
- 2 111 254 255 -0.19956863e+02 -0.47312539e+01 -0.12540948e+03 0.13498000e+00
- 2 -213 256 257 -0.17948426e+02 -0.43025096e+01 -0.11213011e+03 0.80237086e+00
- 1 211 0 0 -0.67374306e+01 -0.21267782e+01 -0.48959193e+02 0.13957000e+00
- 2 223 258 260 -0.10481463e+02 -0.29084168e+01 -0.63458870e+02 0.77739510e+00
- 2 111 261 262 -0.16043695e+01 -0.54309833e-01 -0.11955204e+02 0.13498000e+00
- 2 -2214 263 264 -0.50046817e+01 -0.60238520e+00 -0.29435841e+02 0.12226757e+01
- 2 113 265 266 -0.26339222e+01 -0.51658427e+00 -0.15482208e+02 0.10081930e+01
- 2 2114 267 268 -0.10120891e+01 -0.87660985e+00 -0.83193096e+01 0.11979872e+01
- 2 213 269 270 -0.75774019e+00 -0.48769946e-01 -0.49335843e+01 0.81476797e+00
- 2 -2224 271 272 -0.11630891e+00 0.10466373e+00 -0.39541458e+00 0.12409846e+01
- 1 211 0 0 0.67693367e+00 0.40667537e+00 -0.73492146e+00 0.13957000e+00
- 1 2112 0 0 -0.10205634e+01 -0.25432267e+00 0.83362621e+00 0.93957000e+00
- 2 -311 273 273 0.30240541e+00 0.16884240e-01 0.94661784e+00 0.49767000e+00
- 2 311 274 274 -0.47364012e+00 -0.60446043e+00 0.21232975e+01 0.49767000e+00
- 2 221 275 276 -0.81267981e+00 -0.27821164e+00 0.89978344e+00 0.54745000e+00
- 2 111 277 278 0.99862551e-01 0.17422637e+00 0.32534690e+01 0.13498000e+00
- 1 211 0 0 -0.59878805e-01 -0.23798234e+00 0.26940485e+00 0.13957000e+00
- 2 -213 279 280 -0.19310677e+01 -0.19170294e+01 0.10343926e+02 0.75886434e+00
- 2 223 281 283 -0.13601299e+01 -0.90756723e+00 0.14650688e+02 0.81679572e+00
- 2 331 284 286 -0.57035001e+00 -0.38318076e+00 0.81709733e+01 0.95764827e+00
- 2 -311 287 287 -0.25703554e+00 -0.34824606e+00 0.23259890e+02 0.49767000e+00
- 1 321 0 0 -0.10106484e+01 -0.12193786e+00 0.13848397e+02 0.49360000e+00
- 2 331 288 290 -0.16558508e+01 -0.16125410e+01 0.57390968e+02 0.95804824e+00
- 2 -3224 291 292 -0.22256498e+01 -0.81402533e+00 0.91048703e+02 0.13794053e+01
- 2 3224 293 294 -0.15867836e+01 -0.10220997e+01 0.83744195e+02 0.13830394e+01
- 1 -211 0 0 -0.14862054e+01 -0.12910138e+01 0.59599802e+02 0.13957000e+00
- 2 221 295 297 -0.12160038e+01 -0.13041957e+01 0.29803102e+03 0.54745000e+00
- 2 213 298 299 -0.34964343e+00 -0.47525531e+00 0.18916290e+03 0.10849963e+01
- 2 221 300 301 0.10189010e-01 0.65414979e+00 0.41508009e+02 0.54745000e+00
- 2 223 302 304 -0.64692654e+00 -0.38684222e+00 0.34416872e+03 0.77872196e+00
- 1 -2212 0 0 0.47865100e+00 0.44133518e+00 0.11115334e+03 0.93827000e+00
- 1 2212 0 0 -0.23826750e+00 0.73630435e+00 0.11962168e+03 0.93827000e+00
- 2 -213 305 306 0.69191006e+00 0.68186234e+00 0.54663377e+02 0.93434948e+00
- 2 213 307 308 0.31582533e+00 0.82376578e-01 0.17490787e+02 0.74167038e+00
- 2 111 309 310 0.14580006e+00 -0.23150868e+00 0.28157469e+02 0.13498000e+00
- 2 113 311 312 -0.14914079e+00 0.38480448e+00 0.35520972e+02 0.62287104e+00
- 2 111 313 314 0.94314120e+00 0.24541809e+00 0.30275951e+02 0.13498000e+00
- 1 -211 0 0 -0.49398420e+00 -0.79357403e+00 0.87935321e+02 0.13957000e+00
- 2 223 315 317 -0.49008173e-01 -0.50137749e+00 0.23515966e+02 0.77830682e+00
- 2 113 318 319 0.57402778e-01 0.31494953e+00 0.76472638e+02 0.72190770e+00
- 1 211 0 0 -0.73157981e-01 -0.43125548e+00 0.10427542e+02 0.13957000e+00
- 1 -211 0 0 0.19373939e+00 0.38560020e+00 0.65505375e+01 0.13957000e+00
- 1 211 0 0 -0.23246570e+00 -0.45230641e+00 0.47959153e+00 0.13957000e+00
- 2 221 320 322 -0.46192009e+00 0.29353595e+00 0.63134620e+01 0.54745000e+00
- 2 -213 323 324 0.95207842e-01 -0.71704435e+00 0.12225730e+02 0.67103921e+00
- 2 213 325 326 -0.42344384e+00 -0.45251562e+00 0.71330991e+01 0.79450691e+00
- 2 223 327 329 0.37153799e+00 0.85517501e+00 0.14525514e+01 0.79273531e+00
- 2 223 330 332 -0.10751713e+00 0.38958860e+00 0.16571359e+01 0.80128297e+00
- 2 92 128 145 0.10027861e+01 -0.78692103e+00 0.49341842e+04 0.22387059e+03
- 1 -321 0 0 0.78980676e+00 -0.98555858e+00 0.29782023e+01 0.49360000e+00
- 2 331 333 335 -0.94749020e-01 -0.53930381e+00 0.14715765e+01 0.95780637e+00
- 2 2114 336 337 -0.29254189e+00 -0.63892416e+00 0.10546221e+00 0.12448122e+01
- 1 211 0 0 0.43360551e-04 -0.38167283e+00 0.53429605e+00 0.13957000e+00
- 2 -2214 338 339 0.29761099e+00 0.37386410e+00 -0.16385396e+00 0.12270423e+01
- 2 323 340 341 0.93265006e-01 -0.30975817e+00 0.88414067e-01 0.93838841e+00
- 2 333 342 344 -0.45100463e+00 0.38762476e+00 0.14503745e+01 0.10209968e+01
- 2 -313 345 346 0.13546329e+00 0.21066171e+00 0.10305615e+02 0.86366869e+00
- 2 221 347 348 -0.22911716e+00 -0.45621390e+00 0.73854061e+01 0.54745000e+00
- 2 111 349 350 0.26444297e-01 0.15206670e+00 0.86486046e+00 0.13498000e+00
- 1 -211 0 0 0.12545349e+00 0.22264105e+00 0.26245708e+02 0.13957000e+00
- 2 111 351 352 -0.45615418e-01 0.78960308e+00 0.20185473e+02 0.13498000e+00
- 2 2114 353 354 0.21066938e+00 -0.48291385e+00 0.15523346e+03 0.13146578e+01
- 1 211 0 0 -0.80403956e-01 0.89005312e-01 0.16017187e+02 0.13957000e+00
- 1 -2112 0 0 0.15253193e-01 -0.16292793e+00 0.23018926e+03 0.93957000e+00
- 2 -213 355 356 -0.18465124e+00 0.45437818e+00 0.23479489e+03 0.65438052e+00
- 2 2224 357 358 0.36076558e+00 0.14406387e+00 0.33829323e+04 0.12527513e+01
- 2 -213 359 360 0.32609404e+00 0.34644345e+00 0.84356563e+03 0.81293085e+00
- 2 92 147 169 0.18369085e+02 0.66801915e+01 -0.35066703e+03 0.27589121e+03
- 2 323 361 362 0.60300363e+00 -0.11290256e+01 0.10990586e+01 0.88482736e+00
- 2 -3212 363 364 0.18943364e+01 -0.23740410e+01 0.23449189e+01 0.11925500e+01
- 2 3112 365 366 0.17249047e+01 -0.18376038e+01 0.12731570e+01 0.11974400e+01
- 2 -311 367 367 0.27344368e+00 0.68392308e-01 0.30376341e+01 0.49767000e+00
- 1 321 0 0 0.69111933e+00 0.61718377e-01 0.14910744e+01 0.49360000e+00
- 2 -213 368 369 0.22595741e+01 0.13255155e+01 0.79280681e+01 0.71542303e+00
- 2 111 370 371 0.32519005e+00 0.20731695e+00 0.42357616e+00 0.13498000e+00
- 1 211 0 0 0.80411153e-01 0.14182565e+01 0.48553744e+01 0.13957000e+00
- 2 223 372 374 0.23048116e+01 0.10388765e+01 0.58632402e+01 0.78679478e+00
- 2 -213 375 376 0.19600995e+01 0.17421003e+01 0.25468246e+01 0.61472817e+00
- 2 221 377 378 0.41751690e+00 0.13654671e+00 0.12258258e+01 0.54745000e+00
- 1 -2112 0 0 0.12010431e+01 0.80546131e+00 0.21580608e+01 0.93957000e+00
- 1 2212 0 0 0.12985064e+01 0.20238981e+01 0.30687885e+01 0.93827000e+00
- 2 -3222 379 380 0.29197857e+01 0.17701077e+01 0.28655028e+01 0.11893700e+01
- 2 -323 381 382 0.10443281e+01 0.92484259e+00 0.75953665e+00 0.88586851e+00
- 2 2224 383 384 0.83668996e+00 0.29594060e+00 -0.35715458e-01 0.12673099e+01
- 1 -211 0 0 -0.36320947e+00 0.61447427e+00 -0.14611502e+00 0.13957000e+00
- 1 -2112 0 0 0.62700842e+00 -0.33703513e+00 -0.28144829e+01 0.93957000e+00
- 1 2112 0 0 -0.16838889e+00 0.32324960e+00 -0.13636030e+02 0.93957000e+00
- 2 223 385 387 -0.46081212e+00 0.25621202e+00 -0.31444769e+02 0.78010061e+00
- 2 113 388 389 0.10685340e+00 -0.90178590e+00 -0.50752348e+02 0.79735587e+00
- 2 331 390 391 0.12906255e+00 0.76954081e+00 -0.13049700e+03 0.95805767e+00
- 1 211 0 0 -0.13361928e+01 -0.52276707e+00 -0.16228122e+03 0.13957000e+00
- 2 92 171 178 -0.31034961e+01 0.24608832e+01 -0.48104166e+04 0.35868513e+02
- 1 211 0 0 -0.10359674e+01 0.10051866e+01 -0.19019538e+02 0.13957000e+00
- 2 113 392 393 -0.67982789e+00 0.77828463e+00 -0.22555484e+02 0.80184180e+00
- 2 111 394 395 -0.68587017e+00 0.26410308e+00 -0.24155625e+02 0.13498000e+00
- 2 331 396 398 -0.41881861e+00 0.32487964e+00 -0.22597171e+02 0.95818221e+00
- 2 311 399 399 -0.17482239e+00 -0.21606398e+00 -0.51895517e+02 0.49767000e+00
- 2 -313 400 401 0.12469026e+00 0.54297148e+00 -0.77137984e+03 0.87027462e+00
- 1 -211 0 0 0.28631350e+00 -0.47158053e+00 -0.11709392e+04 0.13957000e+00
- 1 2212 0 0 -0.51919342e+00 0.23310226e+00 -0.27278742e+04 0.93827000e+00
- 2 92 180 183 0.00000000e+00 0.00000000e+00 -0.10830930e+02 0.46299519e+01
- 2 111 402 403 -0.31335965e-01 0.17646015e+00 -0.68766287e+00 0.13498000e+00
- 1 -211 0 0 0.50900362e-01 -0.66792372e+00 -0.94923791e+01 0.13957000e+00
- 2 111 404 405 0.31989371e+00 0.29628363e+00 -0.93137238e+00 0.13498000e+00
- 1 211 0 0 -0.33945811e+00 0.19517993e+00 0.28048486e+00 0.13957000e+00
- 2 92 185 235 -0.17621280e+01 -0.28577641e+01 -0.11887960e+04 0.41098624e+03
- 2 2224 406 407 0.16376172e+00 0.21477048e+01 -0.31785168e+02 0.12208958e+01
- 2 113 408 409 0.33431666e+00 0.88394031e+00 -0.15715924e+02 0.74689173e+00
- 2 -2224 410 411 0.10256044e+01 0.20364627e+01 -0.32388447e+02 0.12432586e+01
- 2 111 412 413 0.74188647e+00 0.94532264e+00 -0.97410553e+01 0.13498000e+00
- 2 113 414 415 0.54020100e+00 0.74358690e+00 -0.66267568e+01 0.93989680e+00
- 2 111 416 417 0.10265542e+01 0.78806455e+00 -0.57128129e+01 0.13498000e+00
- 1 211 0 0 0.87024612e+00 -0.53244222e-01 -0.58684865e+01 0.13957000e+00
- 2 223 418 420 -0.17906489e+00 0.75591887e+00 -0.25349424e+01 0.77938668e+00
- 2 -213 421 422 -0.77796829e-01 0.35560050e+01 -0.77967648e+01 0.81324452e+00
- 2 111 423 424 0.73010817e+00 0.17442193e+01 -0.33830849e+01 0.13498000e+00
- 1 211 0 0 -0.21017339e+00 0.16536132e+00 -0.10791460e+01 0.13957000e+00
- 2 -213 425 426 0.16449096e+00 0.38112976e+01 -0.56339016e+01 0.70623150e+00
- 1 211 0 0 -0.21560148e+00 0.26467953e+00 -0.10859306e+01 0.13957000e+00
- 1 -211 0 0 -0.29048950e+00 0.93925679e+00 -0.10015612e+01 0.13957000e+00
- 2 213 427 428 -0.10542309e+01 0.32908692e+01 -0.27403967e+01 0.71925347e+00
- 2 311 429 429 -0.16245998e+00 0.15515069e+01 -0.12074531e+01 0.49767000e+00
- 2 -323 430 431 -0.90855928e+00 0.11089135e+01 -0.10843365e+01 0.87336637e+00
- 2 113 432 433 -0.95705100e+00 0.21095635e+01 -0.24806303e+00 0.61500680e+00
- 2 113 434 435 -0.56853537e+00 0.13616031e+00 -0.52123499e-02 0.71874331e+00
- 1 211 0 0 0.37636217e-01 0.44839367e+00 -0.20009285e+00 0.13957000e+00
- 2 -213 436 437 -0.81599258e+00 0.79093448e+00 0.81183154e+00 0.73649814e+00
- 1 211 0 0 -0.19020052e-01 0.16291225e+00 -0.44830913e+00 0.13957000e+00
- 2 223 438 439 0.12038840e+01 -0.10289072e+01 0.19682680e+01 0.78073381e+00
- 2 1114 440 441 0.58363559e-01 -0.11963615e+01 0.14827441e+01 0.12377716e+01
- 2 221 442 444 0.21851964e+01 -0.51020215e+01 0.60757592e+01 0.54745000e+00
- 2 -1114 445 446 0.67145616e+00 -0.98677683e+00 0.14463330e+01 0.11812804e+01
- 2 -213 447 448 0.41132243e+00 -0.25122674e+01 0.25955229e+01 0.74546308e+00
- 2 223 449 451 -0.24040041e+00 -0.11103512e+01 0.69253182e-01 0.78511639e+00
- 2 223 452 453 0.28874157e-01 -0.85210615e+00 0.70060307e+00 0.74829250e+00
- 2 113 454 455 -0.30595132e+00 -0.42651468e+01 0.20883035e+01 0.65279459e+00
- 1 2212 0 0 -0.10118651e+01 -0.24843428e+01 -0.23661235e-01 0.93827000e+00
- 1 -2112 0 0 -0.32040037e+00 -0.47860859e+01 0.10513642e+01 0.93957000e+00
- 2 221 456 457 0.90644289e-01 -0.29271450e+00 -0.54762922e+00 0.54745000e+00
- 2 113 458 459 -0.41212181e+00 -0.67863170e+00 -0.99897615e+00 0.10568834e+01
- 2 223 460 462 -0.63963739e+00 0.27319864e+00 -0.16235857e+01 0.77408123e+00
- 2 221 463 464 -0.69974198e+00 -0.27726214e+00 -0.11373855e+01 0.54745000e+00
- 2 -213 465 466 -0.19407852e+01 0.31689801e+00 -0.41117471e+01 0.80756706e+00
- 1 2212 0 0 -0.24862800e+01 -0.18423427e+01 -0.79182314e+01 0.93827000e+00
- 1 -2212 0 0 -0.18113496e+01 0.38937166e-01 -0.61142782e+01 0.93827000e+00
- 2 223 467 469 -0.12531670e+01 -0.19744140e+01 -0.96427800e+01 0.77237261e+00
- 2 213 470 471 0.15233187e+00 -0.14942708e+01 -0.80718739e+01 0.80327452e+00
- 2 223 472 474 -0.10348181e+01 -0.14145798e+01 -0.92343862e+01 0.78180207e+00
- 2 111 475 476 0.38097479e+00 -0.14679419e+00 -0.18756393e+01 0.13498000e+00
- 2 313 477 478 0.95342193e-02 -0.81309496e+00 -0.10460383e+02 0.95239734e+00
- 2 -311 479 479 0.84974846e+00 -0.41975430e+00 -0.91193211e+02 0.49767000e+00
- 1 -211 0 0 -0.70964010e-01 -0.31758569e+00 -0.31177476e+02 0.13957000e+00
- 2 213 480 481 0.38535841e+00 0.65162623e+00 -0.46974532e+02 0.68723191e+00
- 1 2112 0 0 0.16084838e+01 0.29464348e+00 -0.36763921e+03 0.93957000e+00
- 2 221 482 484 0.63002234e+00 0.43982790e+00 -0.40925494e+02 0.54745000e+00
- 2 -2214 485 486 0.90524106e+00 0.17287059e+00 -0.20136125e+03 0.12531151e+01
- 2 113 487 488 0.71808779e+00 0.62221588e+00 -0.22976644e+03 0.77076759e+00
- 2 92 237 253 0.70533446e+00 -0.70415466e+00 -0.34404606e+02 0.77484052e+02
- 2 331 489 490 0.31165449e+00 -0.59533212e-01 -0.44382567e+00 0.95772042e+00
- 2 223 491 493 -0.15139476e+00 0.24307029e+00 -0.12170178e+00 0.79082923e+00
- 2 213 494 495 0.10072939e+00 -0.59918790e-01 0.96629009e+00 0.79815911e+00
- 1 -2212 0 0 0.30929871e+00 -0.61237302e+00 0.27825082e+01 0.93827000e+00
- 1 2112 0 0 -0.42190813e+00 -0.70110554e+00 0.43098370e+01 0.93957000e+00
- 2 -311 496 496 0.43747235e+00 0.19790250e-01 0.80314973e+00 0.49767000e+00
- 2 311 497 497 -0.99872707e-02 -0.42453467e+00 0.15769479e+01 0.49767000e+00
- 2 213 498 499 0.55509821e+00 -0.10574891e+01 0.10482103e+02 0.78281366e+00
- 1 -2212 0 0 -0.29635394e+00 -0.44376807e+00 0.97074415e+00 0.93827000e+00
- 1 2112 0 0 0.53099331e+00 -0.13970316e+00 0.62172799e+00 0.93957000e+00
- 2 223 500 502 -0.27426536e-01 0.38056586e-01 -0.14551928e+01 0.78238169e+00
- 2 113 503 504 -0.36614116e+00 0.27997807e+00 -0.80956720e-01 0.66477143e+00
- 2 111 505 506 0.94283078e+00 0.14165042e+00 -0.22351098e+01 0.13498000e+00
- 1 211 0 0 -0.77852718e+00 0.11502894e+00 -0.25443204e+02 0.13957000e+00
- 1 -211 0 0 0.35542419e+00 0.45495231e+00 -0.15389108e+01 0.13957000e+00
- 2 213 507 508 -0.46847986e+00 0.13749495e+01 -0.23862276e+02 0.83081367e+00
- 2 -213 509 510 -0.31794813e+00 0.12679460e+00 -0.17367365e+01 0.11551599e+01
- 1 22 0 0 -0.22401052e+01 -0.57490339e+00 -0.14152508e+02 0.00000000e+00
- 1 22 0 0 -0.17716758e+02 -0.41563505e+01 -0.11125697e+03 0.00000000e+00
- 1 -211 0 0 -0.13367661e+02 -0.34756095e+01 -0.82721987e+02 0.13957000e+00
- 2 111 511 512 -0.45807653e+01 -0.82690010e+00 -0.29408119e+02 0.13498000e+00
- 1 -211 0 0 -0.11720241e+01 -0.46001348e+00 -0.81265362e+01 0.13957000e+00
- 1 211 0 0 -0.53939955e+01 -0.14038763e+01 -0.32563315e+02 0.13957000e+00
- 2 111 513 514 -0.39154432e+01 -0.10445270e+01 -0.22769019e+02 0.13498000e+00
- 1 22 0 0 -0.54355996e-01 -0.22362670e-01 -0.55800847e+00 0.00000000e+00
- 1 22 0 0 -0.15500135e+01 -0.31947163e-01 -0.11397196e+02 0.00000000e+00
- 1 -2212 0 0 -0.33648843e+01 -0.42817067e+00 -0.20984122e+02 0.93827000e+00
- 2 111 515 517 -0.16397974e+01 -0.17421453e+00 -0.84517188e+01 0.13498000e+00
- 1 211 0 0 -0.40751766e+00 0.18381500e+00 -0.15779410e+01 0.13957000e+00
- 1 -211 0 0 -0.22264046e+01 -0.70039927e+00 -0.13904267e+02 0.13957000e+00
- 1 2112 0 0 -0.56745080e+00 -0.56655572e+00 -0.59438604e+01 0.93957000e+00
- 2 111 518 519 -0.44463827e+00 -0.31005413e+00 -0.23754493e+01 0.13498000e+00
- 1 211 0 0 0.82918426e-01 0.90869909e-01 -0.17306930e+01 0.13957000e+00
- 2 111 520 521 -0.84065862e+00 -0.13963986e+00 -0.32028913e+01 0.13498000e+00
- 1 -2212 0 0 -0.10202806e+00 -0.13495027e+00 -0.40051212e+00 0.93827000e+00
- 1 -211 0 0 -0.14280855e-01 0.23961400e+00 0.50975304e-02 0.13957000e+00
- 2 310 522 523 0.30240541e+00 0.16884240e-01 0.94661784e+00 0.49767000e+00
- 1 130 0 0 -0.47364012e+00 -0.60446043e+00 0.21232975e+01 0.49767000e+00
- 1 22 0 0 -0.47894928e-01 0.61596714e-02 0.39863202e+00 0.00000000e+00
- 1 22 0 0 -0.76478488e+00 -0.28437131e+00 0.50115142e+00 0.00000000e+00
- 1 22 0 0 0.12294071e+00 0.91277478e-01 0.23076131e+01 0.00000000e+00
- 1 22 0 0 -0.23078162e-01 0.82948890e-01 0.94585590e+00 0.00000000e+00
- 1 -211 0 0 -0.13724699e+01 -0.13373975e+01 0.83496611e+01 0.13957000e+00
- 2 111 524 525 -0.55859779e+00 -0.57963191e+00 0.19942646e+01 0.13498000e+00
- 1 211 0 0 -0.42685699e+00 -0.23000075e+00 0.66882025e+01 0.13957000e+00
- 1 -211 0 0 -0.15919795e+00 -0.11518259e+00 0.10466989e+01 0.13957000e+00
- 2 111 526 527 -0.77407493e+00 -0.56238389e+00 0.69157865e+01 0.13498000e+00
- 2 111 528 529 -0.19233531e+00 -0.21759892e-01 0.23426238e+01 0.13498000e+00
- 2 111 530 531 -0.85244520e-02 -0.18363632e+00 0.10900120e+01 0.13498000e+00
- 2 221 532 534 -0.36949025e+00 -0.17778455e+00 0.47383375e+01 0.54745000e+00
- 1 130 0 0 -0.25703554e+00 -0.34824606e+00 0.23259890e+02 0.49767000e+00
- 1 211 0 0 -0.19738305e+00 -0.19982541e+00 0.79480940e+01 0.13957000e+00
- 1 -211 0 0 -0.63492535e+00 -0.66921340e+00 0.24300588e+02 0.13957000e+00
- 2 221 535 536 -0.82354244e+00 -0.74350224e+00 0.25142286e+02 0.54745000e+00
- 2 -3122 537 538 -0.21600181e+01 -0.73174927e+00 0.81055124e+02 0.11156800e+01
- 1 -211 0 0 -0.65631759e-01 -0.82276063e-01 0.99935793e+01 0.13957000e+00
- 2 3212 539 540 -0.13151473e+01 -0.89798919e+00 0.75237085e+02 0.11925500e+01
- 1 211 0 0 -0.27163634e+00 -0.12411048e+00 0.85071097e+01 0.13957000e+00
- 1 -211 0 0 -0.12027638e+00 -0.20624976e+00 0.41677492e+02 0.13957000e+00
- 1 211 0 0 -0.38371710e+00 -0.38546054e+00 0.77694465e+02 0.13957000e+00
- 2 111 541 542 -0.71201027e+00 -0.71248535e+00 0.17865907e+03 0.13498000e+00
- 1 211 0 0 -0.10016767e+00 0.33254276e+00 0.50311254e+02 0.13957000e+00
- 2 111 543 544 -0.24947576e+00 -0.80779807e+00 0.13885165e+03 0.13498000e+00
- 1 22 0 0 -0.20790990e-01 0.10069661e+00 0.10618046e+01 0.00000000e+00
- 1 22 0 0 0.30980000e-01 0.55345318e+00 0.40446204e+02 0.00000000e+00
- 1 211 0 0 -0.56248261e+00 -0.29890562e+00 0.26530704e+03 0.13957000e+00
- 1 -211 0 0 -0.91717296e-01 -0.12288392e+00 0.61274991e+02 0.13957000e+00
- 2 111 545 546 0.72733660e-02 0.34947317e-01 0.17586686e+02 0.13498000e+00
- 1 -211 0 0 0.67510756e+00 0.56799753e-01 0.32626942e+02 0.13957000e+00
- 2 111 547 548 0.16802505e-01 0.62506259e+00 0.22036435e+02 0.13498000e+00
- 1 211 0 0 0.22699421e+00 -0.23288194e+00 0.44865641e+01 0.13957000e+00
- 2 111 549 550 0.88831118e-01 0.31525852e+00 0.13004223e+02 0.13498000e+00
- 1 22 0 0 0.68980912e-01 -0.15413105e+00 0.22290455e+02 0.00000000e+00
- 1 22 0 0 0.76819152e-01 -0.77377637e-01 0.58670139e+01 0.00000000e+00
- 1 211 0 0 -0.33214729e+00 0.25971514e+00 0.27487975e+02 0.13957000e+00
- 1 -211 0 0 0.18300650e+00 0.12508934e+00 0.80329967e+01 0.13957000e+00
- 1 22 0 0 -0.37561305e-02 -0.14158808e-02 0.27007227e+00 0.00000000e+00
- 1 22 0 0 0.94689733e+00 0.24683397e+00 0.30005879e+02 0.00000000e+00
- 1 -211 0 0 0.55007186e-01 -0.54767491e+00 0.13824319e+02 0.13957000e+00
- 1 211 0 0 -0.10266056e+00 0.66523533e-01 0.33459584e+01 0.13957000e+00
- 2 111 551 552 -0.13547976e-02 -0.20226109e-01 0.63456890e+01 0.13498000e+00
- 1 -211 0 0 -0.20687799e+00 0.34599718e+00 0.29127206e+02 0.13957000e+00
- 1 211 0 0 0.26428077e+00 -0.31047653e-01 0.47345433e+02 0.13957000e+00
- 1 211 0 0 -0.11517627e-02 0.83012177e-01 0.14743531e+01 0.13957000e+00
- 1 -211 0 0 -0.29774619e+00 0.21833243e+00 0.28728345e+01 0.13957000e+00
- 2 111 553 554 -0.16302214e+00 -0.78086580e-02 0.19662744e+01 0.13498000e+00
- 1 -211 0 0 0.15506590e+00 0.72877419e-02 0.43888905e+01 0.13957000e+00
- 2 111 555 556 -0.59858058e-01 -0.72433210e+00 0.78368398e+01 0.13498000e+00
- 1 211 0 0 0.17103551e+00 -0.69613277e-01 0.89622752e+00 0.13957000e+00
- 2 111 557 558 -0.59447936e+00 -0.38290234e+00 0.62368716e+01 0.13498000e+00
- 1 211 0 0 -0.23676423e-01 0.18143652e+00 0.53329219e+00 0.13957000e+00
- 1 -211 0 0 -0.34496154e-02 0.39711833e+00 0.55695430e+00 0.13957000e+00
- 2 111 559 560 0.39866403e+00 0.27662017e+00 0.36230494e+00 0.13498000e+00
- 1 -211 0 0 -0.39505069e-01 -0.32656557e-01 0.49340479e+00 0.13957000e+00
- 1 211 0 0 0.13095696e+00 0.34542120e+00 0.98132186e+00 0.13957000e+00
- 2 111 561 563 -0.19896902e+00 0.76823965e-01 0.18240926e+00 0.13498000e+00
- 2 111 564 565 0.17127203e+00 -0.11225297e+00 0.27226180e+00 0.13498000e+00
- 2 111 566 567 -0.36752550e-01 -0.81077997e-01 0.16428075e+00 0.13498000e+00
- 2 221 568 569 -0.22926850e+00 -0.34597285e+00 0.10350339e+01 0.54745000e+00
- 1 2112 0 0 0.10083133e-01 -0.43076557e+00 0.25689857e-01 0.93957000e+00
- 2 111 570 571 -0.30262502e+00 -0.20815859e+00 0.79772349e-01 0.13498000e+00
- 1 -2212 0 0 0.32692135e+00 0.14198460e+00 0.13902877e-01 0.93827000e+00
- 2 111 572 573 -0.29310359e-01 0.23187949e+00 -0.17775684e+00 0.13498000e+00
- 2 311 574 574 -0.20391572e+00 -0.51578513e-01 -0.79956764e-01 0.49767000e+00
- 1 211 0 0 0.29718073e+00 -0.25817966e+00 0.16837083e+00 0.13957000e+00
- 1 211 0 0 -0.22913606e-01 0.38134833e+00 0.50536939e+00 0.13957000e+00
- 1 -211 0 0 0.46691963e-01 0.12638805e-01 0.60464248e+00 0.13957000e+00
- 2 111 575 576 -0.47478299e+00 -0.63623850e-02 0.34036260e+00 0.13498000e+00
- 1 -321 0 0 -0.82818433e-01 0.15933134e+00 0.88371027e+01 0.49360000e+00
- 1 211 0 0 0.21828172e+00 0.51330371e-01 0.14685123e+01 0.13957000e+00
- 1 22 0 0 -0.37155386e+00 -0.15683240e+00 0.47441945e+01 0.00000000e+00
- 1 22 0 0 0.14243670e+00 -0.29938150e+00 0.26412116e+01 0.00000000e+00
- 1 22 0 0 0.38038594e-01 0.13086995e+00 0.84914563e+00 0.00000000e+00
- 1 22 0 0 -0.11594297e-01 0.21196753e-01 0.15714831e-01 0.00000000e+00
- 1 22 0 0 -0.76563929e-02 0.28083448e+00 0.56354074e+01 0.00000000e+00
- 1 22 0 0 -0.37959025e-01 0.50876859e+00 0.14550065e+02 0.00000000e+00
- 1 2112 0 0 0.21774636e+00 -0.43258721e+00 0.88608222e+02 0.93957000e+00
- 2 111 577 578 -0.70769761e-02 -0.50326635e-01 0.66625241e+02 0.13498000e+00
- 1 -211 0 0 0.94685406e-02 -0.10732809e+00 0.85249660e+02 0.13957000e+00
- 2 111 579 580 -0.19411978e+00 0.56170627e+00 0.14954523e+03 0.13498000e+00
- 1 2212 0 0 0.26964854e+00 0.15702690e+00 0.20023921e+04 0.93827000e+00
- 1 211 0 0 0.91117039e-01 -0.12963025e-01 0.13805402e+04 0.13957000e+00
- 1 -211 0 0 0.13539255e+00 0.48976398e+00 0.30433185e+03 0.13957000e+00
- 2 111 581 582 0.19070149e+00 -0.14332053e+00 0.53923378e+03 0.13498000e+00
- 2 311 583 583 0.45460865e+00 -0.37092157e+00 0.49997572e+00 0.49767000e+00
- 1 211 0 0 0.14839497e+00 -0.75810402e+00 0.59908285e+00 0.13957000e+00
- 2 -3122 584 585 0.16875805e+01 -0.20667314e+01 0.20565071e+01 0.11156800e+01
- 1 22 0 0 0.20675595e+00 -0.30730958e+00 0.28841180e+00 0.00000000e+00
- 1 2112 0 0 0.15369384e+01 -0.14990049e+01 0.12468999e+01 0.93957000e+00
- 1 -211 0 0 0.18796632e+00 -0.33859884e+00 0.26257152e-01 0.13957000e+00
- 2 310 586 587 0.27344368e+00 0.68392308e-01 0.30376341e+01 0.49767000e+00
- 1 -211 0 0 0.11449876e+01 0.10346567e+01 0.48137984e+01 0.13957000e+00
- 2 111 588 589 0.11145865e+01 0.29085880e+00 0.31142697e+01 0.13498000e+00
- 1 22 0 0 0.11167225e+00 0.10624683e+00 0.86007999e-01 0.00000000e+00
- 1 22 0 0 0.21351780e+00 0.10107011e+00 0.33756816e+00 0.00000000e+00
- 1 -211 0 0 0.78204369e+00 0.43766476e+00 0.22798003e+01 0.13957000e+00
- 1 211 0 0 0.46337240e+00 -0.35812321e-01 0.91122788e+00 0.13957000e+00
- 2 111 590 591 0.10593955e+01 0.63702404e+00 0.26722120e+01 0.13498000e+00
- 1 -211 0 0 0.10303363e+01 0.89477175e+00 0.94520455e+00 0.13957000e+00
- 2 111 592 593 0.92976321e+00 0.84732851e+00 0.16016201e+01 0.13498000e+00
- 1 22 0 0 0.50561942e+00 0.18871251e+00 0.11854063e+01 0.00000000e+00
- 1 22 0 0 -0.88102519e-01 -0.52165795e-01 0.40419575e-01 0.00000000e+00
- 1 -2212 0 0 0.23272724e+01 0.12300454e+01 0.23453838e+01 0.93827000e+00
- 2 111 594 595 0.59251328e+00 0.54006229e+00 0.52011900e+00 0.13498000e+00
- 1 -321 0 0 0.42514735e+00 0.24662575e+00 0.16326368e+00 0.49360000e+00
- 2 111 596 597 0.61918071e+00 0.67821684e+00 0.59627297e+00 0.13498000e+00
- 1 2212 0 0 0.60217392e+00 0.26404060e+00 -0.28052803e+00 0.93827000e+00
- 1 211 0 0 0.23451604e+00 0.31899998e-01 0.24481257e+00 0.13957000e+00
- 1 -211 0 0 -0.44017839e+00 0.83087379e-01 -0.16683062e+02 0.13957000e+00
- 1 211 0 0 -0.38987623e-01 -0.46518494e-01 -0.24141874e+01 0.13957000e+00
- 2 111 598 599 0.18353888e-01 0.21964313e+00 -0.12347520e+02 0.13498000e+00
- 1 211 0 0 -0.27966244e+00 -0.32932752e+00 -0.27381261e+02 0.13957000e+00
- 1 -211 0 0 0.38651584e+00 -0.57245838e+00 -0.23371087e+02 0.13957000e+00
- 1 22 0 0 0.12587259e+00 0.12713767e+00 -0.85409380e+01 0.00000000e+00
- 2 113 600 601 0.31899597e-02 0.64240314e+00 -0.12195606e+03 0.74639322e+00
- 1 211 0 0 -0.40450188e+00 0.47342450e+00 -0.63281579e+01 0.13957000e+00
- 1 -211 0 0 -0.27532601e+00 0.30486012e+00 -0.16227326e+02 0.13957000e+00
- 1 22 0 0 -0.16259173e+00 0.67748649e-02 -0.46859818e+01 0.00000000e+00
- 1 22 0 0 -0.52327844e+00 0.25732822e+00 -0.19469643e+02 0.00000000e+00
- 1 211 0 0 -0.42644231e-01 -0.49422226e-01 -0.23374621e+01 0.13957000e+00
- 1 -211 0 0 -0.80285910e-01 -0.53247507e-01 -0.28059213e+01 0.13957000e+00
- 2 221 602 604 -0.29588847e+00 0.42754937e+00 -0.17453788e+02 0.54745000e+00
- 1 130 0 0 -0.17482239e+00 -0.21606398e+00 -0.51895517e+02 0.49767000e+00
- 1 -321 0 0 0.47735729e-01 0.58011069e+00 -0.72529717e+03 0.49360000e+00
- 1 211 0 0 0.76954528e-01 -0.37139201e-01 -0.46082671e+02 0.13957000e+00
- 1 22 0 0 0.51112980e-01 0.89621494e-01 -0.27768632e+00 0.00000000e+00
- 1 22 0 0 -0.82448945e-01 0.86838660e-01 -0.40997655e+00 0.00000000e+00
- 1 22 0 0 0.31837475e+00 0.30820359e+00 -0.89138579e+00 0.00000000e+00
- 1 22 0 0 0.15189643e-02 -0.11919958e-01 -0.39986587e-01 0.00000000e+00
- 1 2212 0 0 0.29588720e+00 0.20093626e+01 -0.28365537e+02 0.93827000e+00
- 1 211 0 0 -0.13212547e+00 0.13834223e+00 -0.34196310e+01 0.13957000e+00
- 1 211 0 0 0.23455203e+00 0.74808113e+00 -0.73098183e+01 0.13957000e+00
- 1 -211 0 0 0.99764635e-01 0.13585917e+00 -0.84061056e+01 0.13957000e+00
- 1 -2212 0 0 0.10294586e+01 0.19811984e+01 -0.29131419e+02 0.93827000e+00
- 1 -211 0 0 -0.38541990e-02 0.55264274e-01 -0.32570281e+01 0.13957000e+00
- 1 22 0 0 0.46992735e+00 0.69424408e+00 -0.69157142e+01 0.00000000e+00
- 1 22 0 0 0.27195912e+00 0.25107857e+00 -0.28253411e+01 0.00000000e+00
- 1 -211 0 0 -0.14627868e-01 -0.25454691e-01 -0.30376795e+01 0.13957000e+00
- 1 211 0 0 0.55482887e+00 0.76904159e+00 -0.35890772e+01 0.13957000e+00
- 1 22 0 0 0.10208471e+01 0.76048265e+00 -0.55819842e+01 0.00000000e+00
- 1 22 0 0 0.57071220e-02 0.27581905e-01 -0.13082875e+00 0.00000000e+00
- 1 -211 0 0 0.10740321e+00 0.23224939e+00 -0.80466926e+00 0.13957000e+00
- 1 211 0 0 -0.17739900e+00 0.32105887e+00 -0.43790070e+00 0.13957000e+00
- 2 111 605 606 -0.10906910e+00 0.20261061e+00 -0.12923725e+01 0.13498000e+00
- 1 -211 0 0 0.23108327e+00 0.24767580e+01 -0.58226170e+01 0.13957000e+00
- 2 111 607 608 -0.30888010e+00 0.10792471e+01 -0.19741478e+01 0.13498000e+00
- 1 22 0 0 0.46813616e+00 0.10874348e+01 -0.22473420e+01 0.00000000e+00
- 1 22 0 0 0.26197201e+00 0.65678445e+00 -0.11357429e+01 0.00000000e+00
- 1 -211 0 0 0.19304650e+00 0.24160941e+01 -0.30251282e+01 0.13957000e+00
- 2 111 609 610 -0.28555538e-01 0.13952035e+01 -0.26087734e+01 0.13498000e+00
- 1 211 0 0 -0.35990120e+00 0.17766187e+01 -0.17628474e+01 0.13957000e+00
- 2 111 611 612 -0.69432974e+00 0.15142505e+01 -0.97754925e+00 0.13498000e+00
- 2 310 613 614 -0.16245998e+00 0.15515069e+01 -0.12074531e+01 0.49767000e+00
- 2 -311 615 615 -0.86507594e+00 0.86272713e+00 -0.63126774e+00 0.49767000e+00
- 1 -211 0 0 -0.43483340e-01 0.24618636e+00 -0.45306877e+00 0.13957000e+00
- 1 211 0 0 -0.41915292e+00 0.47151008e+00 -0.20995088e+00 0.13957000e+00
- 1 -211 0 0 -0.53789808e+00 0.16380534e+01 -0.38112147e-01 0.13957000e+00
- 1 -211 0 0 -0.46010730e+00 -0.20846212e+00 0.79461814e-01 0.13957000e+00
- 1 211 0 0 -0.10842807e+00 0.34462243e+00 -0.84674164e-01 0.13957000e+00
- 1 -211 0 0 -0.35057327e+00 0.45182897e+00 0.79238200e+00 0.13957000e+00
- 2 111 616 617 -0.46541931e+00 0.33910551e+00 0.19449538e-01 0.13498000e+00
- 1 22 0 0 0.10379329e+01 -0.11031919e+01 0.15421236e+01 0.00000000e+00
- 2 111 618 619 0.16595111e+00 0.74284679e-01 0.42614441e+00 0.13498000e+00
- 1 2112 0 0 -0.93452809e-01 -0.73726002e+00 0.87407489e+00 0.93957000e+00
- 1 -211 0 0 0.15181637e+00 -0.45910144e+00 0.60866917e+00 0.13957000e+00
- 2 111 620 621 0.56109005e+00 -0.16699615e+01 0.18576334e+01 0.13498000e+00
- 2 111 622 623 0.71037941e+00 -0.13415245e+01 0.16819209e+01 0.13498000e+00
- 2 111 624 625 0.91372695e+00 -0.20905354e+01 0.25362049e+01 0.13498000e+00
- 1 -2112 0 0 0.41176609e+00 -0.65559613e+00 0.11982328e+01 0.93957000e+00
- 1 211 0 0 0.25969007e+00 -0.33118070e+00 0.24810016e+00 0.13957000e+00
- 1 -211 0 0 0.25440885e+00 -0.45299184e+00 0.83900037e+00 0.13957000e+00
- 2 111 626 627 0.15691359e+00 -0.20592755e+01 0.17565225e+01 0.13498000e+00
- 1 -211 0 0 0.84858358e-01 -0.24069929e+00 0.97784047e-02 0.13957000e+00
- 1 211 0 0 -0.21757309e+00 -0.55310718e+00 0.27712198e+00 0.13957000e+00
- 2 111 628 629 -0.10768568e+00 -0.31654471e+00 -0.21764721e+00 0.13498000e+00
- 1 22 0 0 0.98418259e-01 -0.94253146e+00 0.65110278e+00 0.00000000e+00
- 2 111 630 631 -0.69544102e-01 0.90425310e-01 0.49500291e-01 0.13498000e+00
- 1 -211 0 0 -0.38731575e+00 -0.38875644e+01 0.18153907e+01 0.13957000e+00
- 1 211 0 0 0.81364430e-01 -0.37758239e+00 0.27291278e+00 0.13957000e+00
- 1 22 0 0 -0.13630982e+00 -0.34799931e+00 -0.23126488e+00 0.00000000e+00
- 1 22 0 0 0.22695411e+00 0.55284805e-01 -0.31636433e+00 0.00000000e+00
- 1 -211 0 0 -0.31271510e+00 -0.92659965e+00 -0.59615254e+00 0.13957000e+00
- 1 211 0 0 -0.99406715e-01 0.24796795e+00 -0.40282361e+00 0.13957000e+00
- 1 -211 0 0 -0.53136423e+00 0.31991698e+00 -0.10761930e+01 0.13957000e+00
- 1 211 0 0 -0.18993437e+00 -0.45890595e-02 -0.29035869e+00 0.13957000e+00
- 2 111 632 633 0.81661201e-01 -0.42129278e-01 -0.25703405e+00 0.13498000e+00
- 1 22 0 0 -0.44623124e+00 -0.21096291e+00 -0.10990787e+01 0.00000000e+00
- 1 22 0 0 -0.25351074e+00 -0.66299224e-01 -0.38306771e-01 0.00000000e+00
- 1 -211 0 0 -0.72315235e+00 0.20837948e+00 -0.85500622e+00 0.13957000e+00
- 2 111 634 635 -0.12176329e+01 0.10851853e+00 -0.32567408e+01 0.13498000e+00
- 1 211 0 0 -0.74486216e+00 -0.72275435e+00 -0.39394293e+01 0.13957000e+00
- 1 -211 0 0 -0.59808773e-01 -0.39381938e+00 -0.21327432e+01 0.13957000e+00
- 2 111 636 637 -0.44849607e+00 -0.85784027e+00 -0.35706075e+01 0.13498000e+00
- 1 211 0 0 0.30064078e+00 -0.23354729e+00 -0.14392261e+01 0.13957000e+00
- 2 111 638 639 -0.14830891e+00 -0.12607235e+01 -0.66326479e+01 0.13498000e+00
- 1 -211 0 0 -0.54182410e+00 -0.61608844e+00 -0.29797426e+01 0.13957000e+00
- 1 211 0 0 -0.25986942e+00 -0.62048645e+00 -0.37338199e+01 0.13957000e+00
- 2 111 640 641 -0.23312459e+00 -0.17800492e+00 -0.25208237e+01 0.13498000e+00
- 1 22 0 0 0.35580196e+00 -0.12521370e+00 -0.18263710e+01 0.00000000e+00
- 1 22 0 0 0.25172831e-01 -0.21580498e-01 -0.49268239e-01 0.00000000e+00
- 2 311 642 642 -0.11523534e+00 -0.90819774e+00 -0.89950674e+01 0.49767000e+00
- 2 111 643 644 0.12476956e+00 0.95102778e-01 -0.14653154e+01 0.13498000e+00
- 1 130 0 0 0.84974846e+00 -0.41975430e+00 -0.91193211e+02 0.49767000e+00
- 1 211 0 0 0.44550256e+00 0.18925240e+00 -0.29839201e+02 0.13957000e+00
- 2 111 645 646 -0.60144153e-01 0.46237383e+00 -0.17135331e+02 0.13498000e+00
- 1 22 0 0 0.33578462e+00 0.10352578e+00 -0.14610539e+02 0.00000000e+00
- 1 -211 0 0 0.12709939e+00 0.10010548e-01 -0.64250376e+01 0.13957000e+00
- 1 211 0 0 0.16713833e+00 0.32629157e+00 -0.19889918e+02 0.13957000e+00
- 1 -2112 0 0 0.43513833e+00 0.75737641e-01 -0.14922225e+03 0.93957000e+00
- 1 -211 0 0 0.47010273e+00 0.97132948e-01 -0.52139004e+02 0.13957000e+00
- 1 211 0 0 0.38201440e-01 0.10005787e+00 -0.10868026e+03 0.13957000e+00
- 1 -211 0 0 0.67988635e+00 0.52215801e+00 -0.12108619e+03 0.13957000e+00
- 1 22 0 0 0.35331131e+00 0.75890892e-01 -0.26759613e+00 0.00000000e+00
- 2 113 647 648 -0.41656819e-01 -0.13542410e+00 -0.17622953e+00 0.61212425e+00
- 1 211 0 0 -0.10440595e+00 -0.99322366e-01 0.53290514e-01 0.13957000e+00
- 1 -211 0 0 -0.13212235e+00 0.11086166e-01 -0.19496386e+00 0.13957000e+00
- 2 111 649 650 0.85133541e-01 0.33130649e+00 0.19971566e-01 0.13498000e+00
- 1 211 0 0 -0.21655580e+00 -0.79923867e-01 0.43200494e-01 0.13957000e+00
- 2 111 651 652 0.31728518e+00 0.20005077e-01 0.92308960e+00 0.13498000e+00
- 1 130 0 0 0.43747235e+00 0.19790250e-01 0.80314973e+00 0.49767000e+00
- 2 310 653 654 -0.99872707e-02 -0.42453467e+00 0.15769479e+01 0.49767000e+00
- 1 211 0 0 0.17315575e-01 -0.70880666e+00 0.40892518e+01 0.13957000e+00
- 2 111 655 656 0.53778263e+00 -0.34868249e+00 0.63928514e+01 0.13498000e+00
- 1 -211 0 0 -0.50389694e-01 -0.98779254e-01 -0.52877682e+00 0.13957000e+00
- 1 211 0 0 0.20114346e+00 -0.93878812e-01 -0.41564726e+00 0.13957000e+00
- 2 111 657 658 -0.17818030e+00 0.23071465e+00 -0.51076871e+00 0.13498000e+00
- 1 211 0 0 -0.37957537e+00 0.31764924e+00 0.15396205e+00 0.13957000e+00
- 1 -211 0 0 0.13434204e-01 -0.37671173e-01 -0.23491877e+00 0.13957000e+00
- 1 22 0 0 0.66717841e+00 0.69744010e-01 -0.14257564e+01 0.00000000e+00
- 1 22 0 0 0.27565237e+00 0.71906409e-01 -0.80935336e+00 0.00000000e+00
- 1 211 0 0 0.95806818e-01 0.28914979e-01 -0.44647553e+01 0.13957000e+00
- 2 111 659 660 -0.56428668e+00 0.13460345e+01 -0.19397521e+02 0.13498000e+00
- 1 -211 0 0 0.11618660e+00 0.38776518e+00 -0.16842204e+00 0.13957000e+00
- 2 111 661 662 -0.43413473e+00 -0.26097058e+00 -0.15683145e+01 0.13498000e+00
- 1 22 0 0 -0.23237402e+01 -0.36572797e+00 -0.15125786e+02 0.00000000e+00
- 1 22 0 0 -0.22570252e+01 -0.46117212e+00 -0.14282333e+02 0.00000000e+00
- 1 22 0 0 -0.30134674e+01 -0.86214501e+00 -0.17570762e+02 0.00000000e+00
- 1 22 0 0 -0.90197582e+00 -0.18238202e+00 -0.51982575e+01 0.00000000e+00
- 1 22 0 0 -0.30885615e+00 0.19993803e-01 -0.15853123e+01 0.00000000e+00
- 1 11 0 0 -0.49927114e+00 -0.73012136e-01 -0.25725219e+01 0.51000000e-03
- 1 -11 0 0 -0.83167008e+00 -0.12119620e+00 -0.42938846e+01 0.51000000e-03
- 1 22 0 0 -0.10156471e+00 -0.70160731e-01 -0.82899170e+00 0.00000000e+00
- 1 22 0 0 -0.34307356e+00 -0.23989340e+00 -0.15464576e+01 0.00000000e+00
- 1 22 0 0 -0.25127548e+00 -0.91135328e-01 -0.85251777e+00 0.00000000e+00
- 1 22 0 0 -0.58938314e+00 -0.48504528e-01 -0.23503735e+01 0.00000000e+00
- 2 111 663 664 0.26794039e+00 -0.66297679e-01 0.24956608e+00 0.13498000e+00
- 2 111 665 666 0.34465021e-01 0.83181919e-01 0.69705176e+00 0.13498000e+00
- 1 22 0 0 -0.15431599e+00 -0.81586019e-01 0.44603881e+00 0.00000000e+00
- 1 22 0 0 -0.40428180e+00 -0.49804589e+00 0.15482258e+01 0.00000000e+00
- 1 22 0 0 -0.71218449e+00 -0.47441648e+00 0.59534913e+01 0.00000000e+00
- 1 22 0 0 -0.61890441e-01 -0.87967407e-01 0.96229518e+00 0.00000000e+00
- 1 22 0 0 -0.13197044e-01 -0.22216619e-01 0.95378249e+00 0.00000000e+00
- 1 22 0 0 -0.17913826e+00 0.45672705e-03 0.13888413e+01 0.00000000e+00
- 1 22 0 0 -0.61688528e-01 -0.37193260e-01 0.36875198e+00 0.00000000e+00
- 1 22 0 0 0.53164076e-01 -0.14644306e+00 0.72125998e+00 0.00000000e+00
- 1 211 0 0 -0.33801182e-01 -0.36689681e-01 0.11178041e+01 0.13957000e+00
- 1 -211 0 0 -0.14148822e+00 0.19471566e-01 0.78678999e+00 0.13957000e+00
- 2 111 667 668 -0.19420085e+00 -0.16056644e+00 0.28337434e+01 0.13498000e+00
- 1 22 0 0 0.36156820e-01 0.63212108e-02 0.15086475e+00 0.00000000e+00
- 1 22 0 0 -0.85969926e+00 -0.74982345e+00 0.24991421e+02 0.00000000e+00
- 1 -2112 0 0 -0.17525118e+01 -0.59510612e+00 0.69455990e+02 0.93957000e+00
- 2 111 669 670 -0.40750622e+00 -0.13664315e+00 0.11599134e+02 0.13498000e+00
- 2 3122 671 672 -0.11490439e+01 -0.79662973e+00 0.69439893e+02 0.11156800e+01
- 1 22 0 0 -0.16610344e+00 -0.10135947e+00 0.57971928e+01 0.00000000e+00
- 1 22 0 0 -0.40669904e+00 -0.49770060e+00 0.11111511e+03 0.00000000e+00
- 1 22 0 0 -0.30531123e+00 -0.21478476e+00 0.67543957e+02 0.00000000e+00
- 1 22 0 0 -0.41374243e-01 -0.47660749e-01 0.70171530e+01 0.00000000e+00
- 1 22 0 0 -0.20810151e+00 -0.76013732e+00 0.13183449e+03 0.00000000e+00
- 1 22 0 0 0.35678018e-01 0.74975879e-01 0.13575542e+02 0.00000000e+00
- 1 22 0 0 -0.28404652e-01 -0.40028561e-01 0.40111445e+01 0.00000000e+00
- 1 22 0 0 -0.71072756e-02 0.56863520e+00 0.18458626e+02 0.00000000e+00
- 1 22 0 0 0.23909780e-01 0.56427384e-01 0.35778090e+01 0.00000000e+00
- 1 22 0 0 0.11576128e+00 0.20883721e+00 0.99146115e+01 0.00000000e+00
- 1 22 0 0 -0.26930157e-01 0.10642131e+00 0.30896118e+01 0.00000000e+00
- 1 22 0 0 -0.33965270e-02 -0.69200201e-01 0.51466450e+01 0.00000000e+00
- 1 22 0 0 0.20417294e-02 0.48974092e-01 0.11990440e+01 0.00000000e+00
- 1 22 0 0 -0.17264825e+00 0.26615786e-01 0.15394718e+01 0.00000000e+00
- 1 22 0 0 0.96261133e-02 -0.34424444e-01 0.42680260e+00 0.00000000e+00
- 1 22 0 0 -0.10251267e+00 -0.51870635e+00 0.54779972e+01 0.00000000e+00
- 1 22 0 0 0.42654613e-01 -0.20562574e+00 0.23588427e+01 0.00000000e+00
- 1 22 0 0 -0.22895614e+00 -0.11768822e+00 0.28128956e+01 0.00000000e+00
- 1 22 0 0 -0.36552322e+00 -0.26521413e+00 0.34239759e+01 0.00000000e+00
- 1 22 0 0 0.16940073e-01 -0.18559402e-02 0.53048373e-01 0.00000000e+00
- 1 22 0 0 0.38172396e+00 0.27847611e+00 0.30925656e+00 0.00000000e+00
- 1 22 0 0 -0.76050193e-01 0.95309636e-01 0.11828600e+00 0.00000000e+00
- 1 -11 0 0 -0.70651123e-01 -0.18232141e-01 0.28752293e-01 0.51000000e-03
- 1 11 0 0 -0.52267703e-01 -0.25352966e-03 0.35370966e-01 0.51000000e-03
- 1 22 0 0 0.90835875e-01 -0.70643807e-01 0.48176269e-01 0.00000000e+00
- 1 22 0 0 0.80436151e-01 -0.41609159e-01 0.22408553e+00 0.00000000e+00
- 1 22 0 0 -0.32447406e-01 -0.11776911e+00 0.10727220e+00 0.00000000e+00
- 1 22 0 0 -0.43051437e-02 0.36691115e-01 0.57008543e-01 0.00000000e+00
- 1 22 0 0 -0.18323603e+00 -0.19816446e+00 0.10524371e+01 0.00000000e+00
- 1 22 0 0 -0.46032467e-01 -0.14780839e+00 -0.17403195e-01 0.00000000e+00
- 1 22 0 0 -0.20719764e+00 -0.78020618e-01 0.86878149e-01 0.00000000e+00
- 1 22 0 0 -0.95427384e-01 -0.13013797e+00 -0.71058002e-02 0.00000000e+00
- 1 22 0 0 -0.51051068e-01 0.16828784e-01 -0.35799275e-01 0.00000000e+00
- 1 22 0 0 0.21740709e-01 0.21505071e+00 -0.14195757e+00 0.00000000e+00
- 1 130 0 0 -0.20391572e+00 -0.51578513e-01 -0.79956764e-01 0.49767000e+00
- 1 22 0 0 -0.48128692e+00 0.91564088e-03 0.34096350e+00 0.00000000e+00
- 1 22 0 0 0.65039300e-02 -0.72780259e-02 -0.60090314e-03 0.00000000e+00
- 1 22 0 0 0.28572946e-01 -0.15659027e-01 0.58214398e+02 0.00000000e+00
- 1 22 0 0 -0.35649922e-01 -0.34667608e-01 0.84108432e+01 0.00000000e+00
- 1 22 0 0 -0.17177532e+00 0.51245307e+00 0.14288574e+03 0.00000000e+00
- 1 22 0 0 -0.22344458e-01 0.49253202e-01 0.66594882e+01 0.00000000e+00
- 1 22 0 0 0.43347263e-01 -0.91910451e-02 0.32177503e+02 0.00000000e+00
- 1 22 0 0 0.14735423e+00 -0.13412948e+00 0.50705628e+03 0.00000000e+00
- 1 130 0 0 0.45460865e+00 -0.37092157e+00 0.49997572e+00 0.49767000e+00
- 1 -2212 0 0 0.13703446e+01 -0.17597565e+01 0.18268773e+01 0.93827000e+00
- 1 211 0 0 0.31723584e+00 -0.30697493e+00 0.22962978e+00 0.13957000e+00
- 1 -211 0 0 0.30228415e+00 0.18581233e+00 0.18258442e+01 0.13957000e+00
- 1 211 0 0 -0.28840475e-01 -0.11742002e+00 0.12117898e+01 0.13957000e+00
- 1 22 0 0 0.67638583e+00 0.15016018e+00 0.20424377e+01 0.00000000e+00
- 1 22 0 0 0.43820066e+00 0.14069862e+00 0.10718320e+01 0.00000000e+00
- 1 22 0 0 0.62703812e+00 0.35734276e+00 0.14044813e+01 0.00000000e+00
- 1 22 0 0 0.43235738e+00 0.27968128e+00 0.12677307e+01 0.00000000e+00
- 1 22 0 0 0.21113118e+00 0.12101896e+00 0.31647629e+00 0.00000000e+00
- 1 22 0 0 0.71863203e+00 0.72630955e+00 0.12851438e+01 0.00000000e+00
- 1 22 0 0 -0.30557944e-02 0.12428073e-02 0.17231753e-01 0.00000000e+00
- 1 22 0 0 0.59556907e+00 0.53881948e+00 0.50288725e+00 0.00000000e+00
- 1 22 0 0 0.51989819e+00 0.53965579e+00 0.42448176e+00 0.00000000e+00
- 1 22 0 0 0.99282517e-01 0.13856105e+00 0.17179120e+00 0.00000000e+00
- 1 22 0 0 0.32011983e-01 0.18387372e-02 -0.29349245e+01 0.00000000e+00
- 1 22 0 0 -0.13658095e-01 0.21780440e+00 -0.94125953e+01 0.00000000e+00
- 1 211 0 0 0.29505860e-01 0.73035888e+00 -0.75304302e+02 0.13957000e+00
- 1 -211 0 0 -0.26315901e-01 -0.87955738e-01 -0.46651761e+02 0.13957000e+00
- 2 111 673 674 -0.72382715e-01 0.28219292e-01 -0.64718719e+01 0.13498000e+00
- 2 111 675 676 -0.14622027e+00 0.20937913e+00 -0.76321215e+01 0.13498000e+00
- 2 111 677 678 -0.77285485e-01 0.18995095e+00 -0.33497943e+01 0.13498000e+00
- 1 22 0 0 -0.94760721e-01 0.14505501e+00 -0.11790703e+01 0.00000000e+00
- 1 22 0 0 -0.14308382e-01 0.57555600e-01 -0.11330218e+00 0.00000000e+00
- 1 22 0 0 -0.11765569e+00 0.26697448e+00 -0.42682544e+00 0.00000000e+00
- 1 22 0 0 -0.19122441e+00 0.81227262e+00 -0.15473224e+01 0.00000000e+00
- 1 22 0 0 0.15900928e-01 0.11716489e+01 -0.22440036e+01 0.00000000e+00
- 1 22 0 0 -0.44456466e-01 0.22355454e+00 -0.36476977e+00 0.00000000e+00
- 1 22 0 0 -0.67100029e+00 0.13735589e+01 -0.89455488e+00 0.00000000e+00
- 1 22 0 0 -0.23329447e-01 0.14069160e+00 -0.82994371e-01 0.00000000e+00
- 1 211 0 0 -0.20097976e+00 0.53460257e+00 -0.28263457e+00 0.13957000e+00
- 1 -211 0 0 0.38519777e-01 0.10169044e+01 -0.92481852e+00 0.13957000e+00
- 2 310 679 680 -0.86507594e+00 0.86272713e+00 -0.63126774e+00 0.49767000e+00
- 1 22 0 0 -0.34316246e+00 0.20586983e+00 -0.38173783e-01 0.00000000e+00
- 1 22 0 0 -0.12225685e+00 0.13323568e+00 0.57623321e-01 0.00000000e+00
- 1 22 0 0 0.80576151e-01 -0.11895583e-01 0.73730017e-01 0.00000000e+00
- 1 22 0 0 0.85374955e-01 0.86180262e-01 0.35241439e+00 0.00000000e+00
- 1 22 0 0 0.18232196e+00 -0.69688712e+00 0.82349275e+00 0.00000000e+00
- 1 22 0 0 0.37876809e+00 -0.97307441e+00 0.10341407e+01 0.00000000e+00
- 1 22 0 0 0.76760390e-01 -0.24950859e+00 0.26851668e+00 0.00000000e+00
- 1 22 0 0 0.63361902e+00 -0.10920159e+01 0.14134042e+01 0.00000000e+00
- 1 22 0 0 0.53506005e+00 -0.11554073e+01 0.15058886e+01 0.00000000e+00
- 1 22 0 0 0.37866690e+00 -0.93512810e+00 0.10303163e+01 0.00000000e+00
- 1 22 0 0 0.81041130e-01 -0.14185502e+01 0.12808906e+01 0.00000000e+00
- 1 22 0 0 0.75872457e-01 -0.64072529e+00 0.47563197e+00 0.00000000e+00
- 1 22 0 0 -0.25765888e-01 -0.50909316e-02 0.85556434e-02 0.00000000e+00
- 1 22 0 0 -0.81919794e-01 -0.31145378e+00 -0.22620285e+00 0.00000000e+00
- 1 22 0 0 -0.27918652e-01 0.32015103e-01 -0.46962165e-01 0.00000000e+00
- 1 22 0 0 -0.41625450e-01 0.58410208e-01 0.96462456e-01 0.00000000e+00
- 1 22 0 0 0.92360689e-01 -0.11573022e-02 -0.79090342e-01 0.00000000e+00
- 1 22 0 0 -0.10699488e-01 -0.40971976e-01 -0.17794371e+00 0.00000000e+00
- 1 22 0 0 -0.59275684e+00 -0.18930265e-02 -0.14606800e+01 0.00000000e+00
- 1 22 0 0 -0.62487605e+00 0.11041156e+00 -0.17960608e+01 0.00000000e+00
- 1 22 0 0 -0.37862791e+00 -0.64367574e+00 -0.25695730e+01 0.00000000e+00
- 1 22 0 0 -0.69868160e-01 -0.21416453e+00 -0.10010344e+01 0.00000000e+00
- 1 22 0 0 -0.13640115e+00 -0.11797462e+01 -0.59948880e+01 0.00000000e+00
- 1 22 0 0 -0.11907763e-01 -0.80977316e-01 -0.63775991e+00 0.00000000e+00
- 1 22 0 0 -0.12672774e+00 -0.74470651e-01 -0.17677436e+01 0.00000000e+00
- 1 22 0 0 -0.10639686e+00 -0.10353427e+00 -0.75308009e+00 0.00000000e+00
- 1 130 0 0 -0.11523534e+00 -0.90819774e+00 -0.89950674e+01 0.49767000e+00
- 1 22 0 0 0.28797620e-01 0.56266391e-01 -0.10475536e+01 0.00000000e+00
- 1 22 0 0 0.95971936e-01 0.38836387e-01 -0.41776179e+00 0.00000000e+00
- 1 22 0 0 0.40314223e-01 0.20840800e+00 -0.73998171e+01 0.00000000e+00
- 1 22 0 0 -0.10045838e+00 0.25396583e+00 -0.97355137e+01 0.00000000e+00
- 1 211 0 0 -0.23208133e+00 0.53326581e-02 -0.24930735e+00 0.13957000e+00
- 1 -211 0 0 0.19042452e+00 -0.14075676e+00 0.73077818e-01 0.13957000e+00
- 1 22 0 0 0.81055618e-01 0.33245556e+00 -0.57196907e-02 0.00000000e+00
- 1 22 0 0 0.40779235e-02 -0.11490733e-02 0.25691257e-01 0.00000000e+00
- 1 22 0 0 0.23482924e+00 -0.36075270e-01 0.73862670e+00 0.00000000e+00
- 1 22 0 0 0.82455947e-01 0.56080347e-01 0.18446289e+00 0.00000000e+00
- 1 211 0 0 -0.20730093e+00 -0.26558121e+00 0.85474692e+00 0.13957000e+00
- 1 -211 0 0 0.19731366e+00 -0.15895346e+00 0.72220101e+00 0.13957000e+00
- 1 22 0 0 0.19641832e+00 -0.80017037e-01 0.16405549e+01 0.00000000e+00
- 1 22 0 0 0.34136431e+00 -0.26866545e+00 0.47522965e+01 0.00000000e+00
- 1 22 0 0 -0.99306824e-01 0.49040053e-01 -0.10868163e+00 0.00000000e+00
- 1 22 0 0 -0.78873481e-01 0.18167460e+00 -0.40208708e+00 0.00000000e+00
- 1 22 0 0 -0.34834246e+00 0.70225460e+00 -0.10993211e+02 0.00000000e+00
- 1 22 0 0 -0.21594422e+00 0.64377991e+00 -0.84043095e+01 0.00000000e+00
- 1 22 0 0 -0.26904730e+00 -0.23280797e+00 -0.10189042e+01 0.00000000e+00
- 1 22 0 0 -0.16508743e+00 -0.28162607e-01 -0.54941034e+00 0.00000000e+00
- 1 22 0 0 0.24369986e+00 -0.78761593e-01 0.15944446e+00 0.00000000e+00
- 1 22 0 0 0.24240529e-01 0.12463915e-01 0.90121622e-01 0.00000000e+00
- 1 22 0 0 0.58430440e-03 -0.14171998e-02 -0.62858118e-02 0.00000000e+00
- 1 22 0 0 0.33880717e-01 0.84599119e-01 0.70333757e+00 0.00000000e+00
- 1 22 0 0 0.13452471e-01 0.74819575e-02 0.80938575e-01 0.00000000e+00
- 1 22 0 0 -0.20765332e+00 -0.16804839e+00 0.27528048e+01 0.00000000e+00
- 1 22 0 0 -0.37217067e+00 -0.15433893e+00 0.97469363e+01 0.00000000e+00
- 1 22 0 0 -0.35335552e-01 0.17695780e-01 0.18521978e+01 0.00000000e+00
- 1 2212 0 0 -0.10545169e+01 -0.72629951e+00 0.58600409e+02 0.93827000e+00
- 1 -211 0 0 -0.94526971e-01 -0.70330219e-01 0.10839484e+02 0.13957000e+00
- 1 22 0 0 -0.58316070e-01 -0.49078415e-01 -0.28298189e+01 0.00000000e+00
- 1 22 0 0 -0.14066644e-01 0.77297707e-01 -0.36420530e+01 0.00000000e+00
- 1 22 0 0 -0.41787623e-01 0.16768793e+00 -0.40162416e+01 0.00000000e+00
- 1 22 0 0 -0.10443265e+00 0.41691204e-01 -0.36158798e+01 0.00000000e+00
- 1 22 0 0 -0.11315362e+00 0.11555767e+00 -0.20560956e+01 0.00000000e+00
- 1 22 0 0 0.35868131e-01 0.74393278e-01 -0.12936987e+01 0.00000000e+00
- 1 211 0 0 -0.40235239e+00 0.41931066e+00 -0.74794603e-01 0.13957000e+00
- 1 -211 0 0 -0.46272355e+00 0.44341646e+00 -0.55647314e+00 0.13957000e+00
- 259
- 2 25 3 4 0.48640541e+01 -0.18658315e+02 -0.20088670e+02 0.12500293e+03
- 1 22 0 0 -0.16095534e-01 0.27060045e-01 0.24919370e-01 0.00000000e+00
- 2 23 5 8 0.78793836e+01 -0.30470424e+02 -0.19030837e+01 0.90699248e+02
- 2 23 9 12 -0.30153295e+01 0.11812109e+02 -0.18185586e+02 0.23397329e+02
- 1 11 0 0 -0.10288347e+02 -0.43610300e+02 -0.34436746e+02 0.51000000e-03
- 1 22 0 0 -0.81057387e-07 -0.12136663e-06 -0.11561129e-06 0.00000000e+00
- 1 -11 0 0 0.14782268e+02 0.10691544e+02 0.26471439e+02 0.51000000e-03
- 1 22 0 0 0.33854629e+01 0.24483321e+01 0.60622235e+01 0.00000000e+00
- 1 11 0 0 0.53463756e+01 0.49498234e+01 -0.16544250e+02 0.51000000e-03
- 1 22 0 0 0.11762626e+01 0.10560254e+01 -0.22873877e+01 0.00000000e+00
- 1 -11 0 0 -0.78751801e+01 0.47639330e+01 0.51318843e+00 0.51000000e-03
- 1 22 0 0 -0.16627875e+01 0.10423271e+01 0.13286285e+00 0.00000000e+00
- 2 1 38 38 -0.11064148e+01 -0.47021374e+00 0.18197852e+00 0.33000000e+00
- 2 2101 38 38 0.18422524e+01 0.11454359e+01 0.58387278e+04 0.57933000e+00
- 2 -1 51 51 -0.22060942e+01 0.49357690e+00 -0.19204873e+00 0.33000000e+00
- 2 21 51 51 -0.80681882e+00 -0.63541213e+00 -0.16413245e+02 0.00000000e+00
- 2 21 51 51 -0.12394094e+01 0.11407589e+00 -0.49420994e+02 0.00000000e+00
- 2 21 51 51 0.14837405e+01 0.31562048e+00 -0.32122939e+02 0.00000000e+00
- 2 2 51 51 -0.23977555e+00 -0.26737531e+00 -0.14570147e+04 0.33000000e+00
- 2 -2 69 69 -0.16884094e+01 0.10766387e+00 0.50491561e+02 0.33000000e+00
- 2 21 69 69 -0.19939457e+01 -0.10349476e+01 0.62282649e+02 0.00000000e+00
- 2 2 69 69 0.12105500e+01 0.62797224e+00 0.84248558e+03 0.33000000e+00
- 2 2 76 76 -0.14169915e+00 -0.22245023e-01 0.56713614e+01 0.33000000e+00
- 2 21 76 76 -0.15936778e+00 -0.16985384e+00 0.29874059e+01 0.00000000e+00
- 2 21 76 76 -0.30316655e+00 0.54530185e+00 0.13420710e+02 0.00000000e+00
- 2 21 76 76 0.67556555e+00 0.53120749e+00 0.11746772e+03 0.00000000e+00
- 2 21 76 76 0.14529638e+00 -0.39200366e+00 0.13459917e+01 0.00000000e+00
- 2 21 76 76 0.16697102e+01 0.51569089e+01 0.25676919e+01 0.00000000e+00
- 2 21 76 76 -0.21135247e+00 0.40847206e+00 -0.40551547e+00 0.00000000e+00
- 2 21 76 76 -0.55808333e+00 0.22466312e+00 -0.23645869e+00 0.00000000e+00
- 2 21 76 76 -0.17872378e+01 0.31139445e+01 -0.49563978e+00 0.00000000e+00
- 2 21 76 76 -0.22001059e+01 0.39123134e+01 -0.19893956e+01 0.00000000e+00
- 2 21 76 76 0.64481651e+00 0.16314573e+01 -0.13424122e+01 0.00000000e+00
- 2 21 76 76 -0.40674456e+00 0.39063848e+01 -0.29998832e+01 0.00000000e+00
- 2 21 76 76 0.77682180e+00 0.98669765e-01 -0.75192884e+00 0.00000000e+00
- 2 21 76 76 0.50627606e+00 -0.15257988e+00 -0.65358841e+01 0.00000000e+00
- 2 2101 76 76 0.12456374e+01 -0.55778231e+00 -0.53476457e+04 0.57933000e+00
- 2 92 39 50 0.73583764e+00 0.67522221e+00 0.58389098e+04 0.11221685e+03
- 2 111 107 108 -0.50087654e+00 -0.26440848e+00 0.11303531e+01 0.13498000e+00
- 2 311 109 109 -0.36618236e+00 -0.93215908e-01 0.37369628e+00 0.49767000e+00
- 2 -311 110 110 -0.17381583e+00 0.13922913e+00 0.15366755e+00 0.49767000e+00
- 2 311 111 111 0.77876782e-03 0.21784883e+00 0.11476965e+01 0.49767000e+00
- 1 -321 0 0 -0.13053622e+00 -0.21377458e+00 0.27425045e+02 0.49360000e+00
- 1 321 0 0 -0.28528678e+00 0.13701882e+00 0.56771548e+01 0.49360000e+00
- 2 -323 112 113 0.41307305e+00 -0.24873472e+00 0.10250034e+03 0.93205285e+00
- 2 113 114 115 -0.33918356e+00 -0.97199213e-01 0.12298117e+03 0.91187648e+00
- 2 213 116 117 0.90627300e+00 0.77574456e+00 0.69766089e+03 0.86154155e+00
- 2 313 118 119 0.13462061e-01 -0.52642899e+00 0.83766752e+03 0.91446814e+00
- 2 -311 120 120 0.67708786e+00 0.23025889e+00 0.94748514e+03 0.49767000e+00
- 1 2112 0 0 0.52104419e+00 0.61888387e+00 0.30947071e+04 0.93957000e+00
- 2 92 52 68 -0.30083574e+01 0.20485822e-01 -0.15551639e+04 0.82398155e+02
- 2 111 121 122 -0.12938996e+01 0.64950773e+00 0.12282722e+00 0.13498000e+00
- 2 111 123 124 -0.19884710e+00 -0.44043773e+00 -0.51462702e+00 0.13498000e+00
- 1 211 0 0 -0.48027048e+00 0.14431034e+00 -0.12284208e+01 0.13957000e+00
- 2 -2214 125 126 -0.13325665e+00 -0.74131220e-01 -0.60437524e+01 0.12377927e+01
- 2 221 127 129 -0.85316002e+00 -0.50856433e-01 -0.90475522e+01 0.54745000e+00
- 1 2112 0 0 0.35387922e-01 -0.90574120e-01 -0.11711271e+02 0.93957000e+00
- 2 213 130 131 -0.40532245e+00 -0.29578709e+00 -0.12279226e+02 0.53940195e+00
- 2 -213 132 133 0.27447102e+00 0.12302685e+00 -0.20258883e+02 0.74340381e+00
- 2 -311 134 134 -0.10772122e+00 0.37191683e+00 -0.15481799e+02 0.49767000e+00
- 1 321 0 0 -0.40416756e-01 -0.91733454e-01 -0.42034746e+02 0.49360000e+00
- 2 113 135 136 -0.85150013e-01 -0.19471246e+00 -0.11447857e+03 0.81145385e+00
- 2 -213 137 138 0.46122030e+00 -0.28498699e+00 -0.79770316e+02 0.82554086e+00
- 1 211 0 0 -0.76280403e-01 0.89198147e+00 -0.27542159e+03 0.13957000e+00
- 2 221 139 140 0.77693891e-01 -0.77408296e+00 -0.11647657e+03 0.54745000e+00
- 2 111 141 142 -0.50798681e+00 0.39169608e+00 -0.25585446e+03 0.13498000e+00
- 1 -211 0 0 0.50542149e-01 0.17782680e+00 -0.44853580e+03 0.13957000e+00
- 1 211 0 0 0.27463883e+00 -0.43247783e+00 -0.14614914e+03 0.13957000e+00
- 2 92 70 75 -0.24718051e+01 -0.29931152e+00 0.95525979e+03 0.11384934e+02
- 2 -213 143 144 -0.20765928e+01 -0.33808108e+00 0.64019123e+02 0.81482120e+00
- 2 113 145 146 -0.15591631e+01 -0.57338604e+00 0.73943157e+02 0.77315780e+00
- 2 111 147 148 0.13720805e+00 -0.10645485e+00 0.46964347e+01 0.13498000e+00
- 2 213 149 150 0.65698247e-01 0.36877574e+00 0.22995851e+03 0.80561107e+00
- 2 111 151 152 0.27669703e+00 -0.54716677e-01 0.97100567e+02 0.13498000e+00
- 2 223 153 155 0.68434751e+00 0.40455138e+00 0.48554199e+03 0.77759142e+00
- 2 92 77 106 -0.10363376e+00 0.18234858e+02 -0.52189419e+04 0.17955972e+04
- 1 211 0 0 -0.25919352e-01 0.51729537e-01 0.57515288e+01 0.13957000e+00
- 1 2112 0 0 0.56052492e-01 0.46644820e-01 0.21764338e+02 0.93957000e+00
- 1 -2212 0 0 0.79869967e-02 0.51742135e+00 0.46154927e+02 0.93827000e+00
- 1 321 0 0 -0.21645167e+00 0.51244230e-01 0.32217409e+02 0.49360000e+00
- 2 -323 156 157 0.29475129e+00 0.10550394e+00 0.21846812e+02 0.89717021e+00
- 2 213 158 159 0.13946299e+00 -0.42199823e+00 0.69855799e+01 0.95596161e+00
- 2 111 160 161 -0.67912895e-01 0.27159444e+00 0.49083996e+00 0.13498000e+00
- 2 223 162 164 -0.85516940e-01 0.35712888e+00 0.21660320e+01 0.78000482e+00
- 1 -211 0 0 0.82161077e-01 0.80204500e+00 0.14272854e+01 0.13957000e+00
- 1 211 0 0 0.24067027e-01 -0.65951441e+00 0.16433210e+01 0.13957000e+00
- 2 313 165 166 0.36468901e+00 0.21347359e+01 0.17431294e+01 0.76554453e+00
- 2 -313 167 168 0.10068338e+01 0.22889447e+01 0.87391833e+00 0.87170355e+00
- 2 -213 169 170 -0.42383449e+00 0.55911953e+00 -0.13022665e+00 0.69209039e+00
- 1 211 0 0 -0.96132782e+00 0.13890554e+01 0.40598800e-01 0.13957000e+00
- 1 2112 0 0 -0.68012607e+00 0.30056408e+01 -0.15605927e+01 0.93957000e+00
- 2 -3122 171 172 -0.38139625e+00 0.89229778e+00 -0.13186436e+01 0.11156800e+01
- 2 -311 173 173 -0.57467404e+00 0.24839095e+01 -0.12531309e+01 0.49767000e+00
- 2 111 174 175 -0.51896809e+00 0.73694671e+00 -0.45582305e+00 0.13498000e+00
- 2 313 176 177 0.13540855e+00 0.56083215e+00 -0.28040818e+00 0.92154483e+00
- 1 -321 0 0 -0.23284622e+00 0.56452287e+00 -0.81832572e+00 0.49360000e+00
- 2 213 178 179 0.55591538e+00 0.14960516e+01 -0.19260654e+01 0.80940885e+00
- 2 311 180 180 -0.32020786e+00 0.10491695e+00 -0.77754334e+00 0.49767000e+00
- 2 -313 181 182 -0.18415722e-01 0.65306594e+00 -0.16778485e+01 0.88113051e+00
- 2 223 183 185 -0.57129540e+00 0.66783247e+00 -0.13201319e+01 0.78101769e+00
- 2 -213 186 187 0.55622194e+00 0.48796065e+00 -0.28746655e+02 0.77819735e+00
- 2 223 188 190 0.33699543e+00 -0.23298845e+00 -0.78131420e+02 0.78511071e+00
- 2 223 191 193 0.43452506e+00 -0.77962131e-01 -0.38492024e+02 0.77800821e+00
- 2 111 194 195 -0.62430183e-01 -0.39898547e+00 -0.13009181e+03 0.13498000e+00
- 2 2114 196 197 0.52861523e+00 0.27608549e+00 -0.25474347e+04 0.11707841e+01
- 1 211 0 0 0.51400298e+00 -0.47892355e+00 -0.25276323e+04 0.13957000e+00
- 1 22 0 0 -0.11497065e+00 -0.54964937e-01 0.39483189e+00 0.00000000e+00
- 1 22 0 0 -0.38590589e+00 -0.20944354e+00 0.73552121e+00 0.00000000e+00
- 1 130 0 0 -0.36618236e+00 -0.93215908e-01 0.37369628e+00 0.49767000e+00
- 1 130 0 0 -0.17381583e+00 0.13922913e+00 0.15366755e+00 0.49767000e+00
- 1 130 0 0 0.77876782e-03 0.21784883e+00 0.11476965e+01 0.49767000e+00
- 2 -311 198 198 0.16417301e-02 -0.32305839e+00 0.49969077e+02 0.49767000e+00
- 1 -211 0 0 0.41143132e+00 0.74323669e-01 0.52531261e+02 0.13957000e+00
- 1 211 0 0 -0.41123238e+00 -0.19308426e+00 0.11718994e+03 0.13957000e+00
- 1 -211 0 0 0.72048822e-01 0.95885049e-01 0.57912318e+01 0.13957000e+00
- 1 211 0 0 -0.46926254e-01 -0.90480766e-01 0.99325423e+02 0.13957000e+00
- 2 111 199 200 0.95319925e+00 0.86622532e+00 0.59833547e+03 0.13498000e+00
- 2 311 201 201 0.13113186e+00 -0.50017804e+00 0.41119899e+03 0.49767000e+00
- 2 111 202 203 -0.11766980e+00 -0.26250952e-01 0.42646852e+03 0.13498000e+00
- 1 130 0 0 0.67708786e+00 0.23025889e+00 0.94748514e+03 0.49767000e+00
- 1 22 0 0 -0.80098415e+00 0.37286135e+00 0.14138239e-01 0.00000000e+00
- 1 22 0 0 -0.49291545e+00 0.27664637e+00 0.10868898e+00 0.00000000e+00
- 1 22 0 0 -0.14067956e+00 -0.18818297e+00 -0.18173837e+00 0.00000000e+00
- 1 22 0 0 -0.58167537e-01 -0.25225476e+00 -0.33288865e+00 0.00000000e+00
- 1 -2212 0 0 0.27479425e-01 -0.23633013e+00 -0.50853607e+01 0.93827000e+00
- 2 111 204 205 -0.16073608e+00 0.16219891e+00 -0.95839168e+00 0.13498000e+00
- 1 -211 0 0 -0.29223719e+00 0.11743216e+00 -0.37931260e+01 0.13957000e+00
- 1 211 0 0 -0.39274965e+00 -0.10890454e+00 -0.31594710e+01 0.13957000e+00
- 2 111 206 207 -0.16817319e+00 -0.59384050e-01 -0.20949552e+01 0.13498000e+00
- 1 211 0 0 -0.44565570e+00 -0.18770168e+00 -0.65419697e+01 0.13957000e+00
- 2 111 208 209 0.40333256e-01 -0.10808540e+00 -0.57372564e+01 0.13498000e+00
- 1 -211 0 0 -0.11077047e+00 -0.19237062e+00 -0.93503713e+01 0.13957000e+00
- 2 111 210 211 0.38524149e+00 0.31539747e+00 -0.10908512e+02 0.13498000e+00
- 2 310 212 213 -0.10772122e+00 0.37191683e+00 -0.15481799e+02 0.49767000e+00
- 1 -211 0 0 -0.37439232e-01 0.16554633e+00 -0.10290804e+02 0.13957000e+00
- 1 211 0 0 -0.47710781e-01 -0.36025879e+00 -0.10418776e+03 0.13957000e+00
- 1 -211 0 0 0.65357841e+00 -0.17067615e+00 -0.66235855e+02 0.13957000e+00
- 2 111 214 215 -0.19235811e+00 -0.11431084e+00 -0.13534461e+02 0.13498000e+00
- 1 22 0 0 -0.15328240e+00 -0.32132864e+00 -0.73788175e+02 0.00000000e+00
- 1 22 0 0 0.23097629e+00 -0.45275432e+00 -0.42688398e+02 0.00000000e+00
- 1 22 0 0 -0.25250278e+00 0.27885545e+00 -0.14563983e+03 0.00000000e+00
- 1 22 0 0 -0.25548403e+00 0.11284063e+00 -0.11021463e+03 0.00000000e+00
- 1 -211 0 0 -0.50349846e+00 0.22677262e-01 0.26008305e+02 0.13957000e+00
- 2 111 216 217 -0.15730944e+01 -0.36075834e+00 0.38010818e+02 0.13498000e+00
- 1 -211 0 0 -0.87903106e-01 -0.17406222e+00 0.18551247e+02 0.13957000e+00
- 1 211 0 0 -0.14712600e+01 -0.39932383e+00 0.55391910e+02 0.13957000e+00
- 1 22 0 0 0.12374051e+00 -0.23950825e-01 0.34782396e+01 0.00000000e+00
- 1 22 0 0 0.13467541e-01 -0.82504022e-01 0.12181951e+01 0.00000000e+00
- 1 211 0 0 0.23578310e+00 0.40870921e+00 0.77797780e+02 0.13957000e+00
- 2 111 218 219 -0.17008485e+00 -0.39933467e-01 0.15216073e+03 0.13498000e+00
- 1 22 0 0 0.18499150e+00 0.16876740e-01 0.71177841e+02 0.00000000e+00
- 1 22 0 0 0.91705531e-01 -0.71593418e-01 0.25922727e+02 0.00000000e+00
- 1 211 0 0 -0.88128002e-02 0.60520661e-01 0.10281120e+03 0.13957000e+00
- 1 -211 0 0 0.61007742e-01 -0.58794614e-01 0.43702721e+02 0.13957000e+00
- 2 111 220 221 0.63215257e+00 0.40282533e+00 0.33902808e+03 0.13498000e+00
- 2 -311 222 222 0.43847199e-01 0.31676438e+00 0.12897942e+02 0.49767000e+00
- 1 -211 0 0 0.25090409e+00 -0.21126044e+00 0.89488695e+01 0.13957000e+00
- 1 211 0 0 0.89913027e-01 -0.48974782e+00 0.17046883e+01 0.13957000e+00
- 2 111 223 224 0.49549960e-01 0.67749599e-01 0.52808916e+01 0.13498000e+00
- 1 22 0 0 0.33668368e-01 0.11229284e+00 0.23826678e+00 0.00000000e+00
- 1 22 0 0 -0.10158126e+00 0.15930159e+00 0.25257318e+00 0.00000000e+00
- 1 211 0 0 -0.44874016e-02 0.17166127e+00 0.97233141e+00 0.13957000e+00
- 1 -211 0 0 -0.21765177e+00 0.17350825e+00 0.10464712e+01 0.13957000e+00
- 2 111 225 226 0.13662223e+00 0.11959358e-01 0.14722934e+00 0.13498000e+00
- 2 311 227 227 0.44629944e+00 0.18897491e+01 0.14913219e+01 0.49767000e+00
- 2 111 228 229 -0.81610431e-01 0.24498680e+00 0.25180750e+00 0.13498000e+00
- 1 -321 0 0 0.35800237e+00 0.14451351e+01 0.42526431e+00 0.49360000e+00
- 1 211 0 0 0.64883140e+00 0.84380961e+00 0.44865402e+00 0.13957000e+00
- 1 -211 0 0 0.67771028e-01 0.14178129e+00 0.16975072e+00 0.13957000e+00
- 2 111 230 231 -0.49160552e+00 0.41733825e+00 -0.29997737e+00 0.13498000e+00
- 1 -2212 0 0 -0.24814923e+00 0.65218792e+00 -0.10768255e+01 0.93827000e+00
- 1 211 0 0 -0.13324702e+00 0.24010987e+00 -0.24181813e+00 0.13957000e+00
- 1 130 0 0 -0.57467404e+00 0.24839095e+01 -0.12531309e+01 0.49767000e+00
- 1 22 0 0 -0.30727276e+00 0.46904496e+00 -0.21204659e+00 0.00000000e+00
- 1 22 0 0 -0.21169533e+00 0.26790175e+00 -0.24377646e+00 0.00000000e+00
- 1 321 0 0 -0.15296439e+00 0.10555580e+00 -0.93947179e-01 0.49360000e+00
- 1 -211 0 0 0.28837294e+00 0.45527635e+00 -0.18646100e+00 0.13957000e+00
- 1 211 0 0 0.65846941e+00 0.69397330e+00 -0.11170345e+01 0.13957000e+00
- 2 111 232 233 -0.10255403e+00 0.80207833e+00 -0.80903086e+00 0.13498000e+00
- 2 310 234 235 -0.32020786e+00 0.10491695e+00 -0.77754334e+00 0.49767000e+00
- 1 -321 0 0 -0.16119494e+00 0.45284648e+00 -0.68223764e+00 0.49360000e+00
- 1 211 0 0 0.14277922e+00 0.20021946e+00 -0.99561084e+00 0.13957000e+00
- 1 211 0 0 -0.20500047e+00 0.33657076e+00 -0.92627440e+00 0.13957000e+00
- 1 -211 0 0 -0.27532343e+00 0.28846565e+00 -0.40181550e+00 0.13957000e+00
- 2 111 236 237 -0.90971498e-01 0.42796059e-01 0.79579894e-02 0.13498000e+00
- 1 -211 0 0 0.43409155e+00 -0.45437857e-01 -0.17430578e+02 0.13957000e+00
- 2 111 238 239 0.12213039e+00 0.53339851e+00 -0.11316078e+02 0.13498000e+00
- 1 211 0 0 -0.95180028e-01 -0.33093122e-01 -0.90702158e+01 0.13957000e+00
- 1 -211 0 0 0.32149545e+00 0.36594048e-01 -0.48554323e+02 0.13957000e+00
- 2 111 240 241 0.11068001e+00 -0.23648938e+00 -0.20506882e+02 0.13498000e+00
- 1 -211 0 0 0.66825840e-01 -0.12851610e+00 -0.39722024e+01 0.13957000e+00
- 1 211 0 0 0.32474830e+00 0.19423659e+00 -0.22928136e+02 0.13957000e+00
- 2 111 242 243 0.42950919e-01 -0.14368262e+00 -0.11591686e+02 0.13498000e+00
- 1 22 0 0 -0.53715579e-01 -0.80678033e-01 -0.19807470e+02 0.00000000e+00
- 1 22 0 0 -0.87146035e-02 -0.31830744e+00 -0.11028433e+03 0.00000000e+00
- 1 2212 0 0 0.27965275e+00 0.20720532e+00 -0.17644217e+04 0.93827000e+00
- 1 -211 0 0 0.24896248e+00 0.68880169e-01 -0.78301295e+03 0.13957000e+00
- 1 130 0 0 0.16417301e-02 -0.32305839e+00 0.49969077e+02 0.49767000e+00
- 1 22 0 0 0.27012800e+00 0.16725039e+00 0.14544857e+03 0.00000000e+00
- 1 22 0 0 0.68307125e+00 0.69897493e+00 0.45288690e+03 0.00000000e+00
- 1 130 0 0 0.13113186e+00 -0.50017804e+00 0.41119899e+03 0.49767000e+00
- 1 22 0 0 -0.41778889e-01 -0.69471968e-01 0.12829534e+03 0.00000000e+00
- 1 22 0 0 -0.75890910e-01 0.43221016e-01 0.29817318e+03 0.00000000e+00
- 1 22 0 0 -0.98473920e-01 0.77523223e-01 -0.26535145e+00 0.00000000e+00
- 1 22 0 0 -0.62262156e-01 0.84675689e-01 -0.69304023e+00 0.00000000e+00
- 1 22 0 0 -0.12829053e+00 -0.33675392e-01 -0.19463592e+01 0.00000000e+00
- 1 22 0 0 -0.39882657e-01 -0.25708658e-01 -0.14859594e+00 0.00000000e+00
- 1 22 0 0 0.24484013e-01 0.26035128e-01 -0.67462911e+00 0.00000000e+00
- 1 22 0 0 0.15849243e-01 -0.13412053e+00 -0.50626273e+01 0.00000000e+00
- 1 22 0 0 0.70369202e-01 0.12335905e+00 -0.23969262e+01 0.00000000e+00
- 1 22 0 0 0.31487229e+00 0.19203842e+00 -0.85115855e+01 0.00000000e+00
- 2 111 244 245 -0.26132884e+00 0.16052364e+00 -0.87506049e+01 0.13498000e+00
- 2 111 246 247 0.15360762e+00 0.21139319e+00 -0.67311939e+01 0.13498000e+00
- 1 22 0 0 -0.29287069e-01 0.21593404e-01 -0.39717307e+01 0.00000000e+00
- 1 22 0 0 -0.16307104e+00 -0.13590425e+00 -0.95627304e+01 0.00000000e+00
- 1 22 0 0 -0.14133836e+01 -0.28908199e+00 0.33295323e+02 0.00000000e+00
- 1 22 0 0 -0.15971082e+00 -0.71676355e-01 0.47154948e+01 0.00000000e+00
- 1 22 0 0 -0.12424722e+00 0.21321080e-01 0.12123290e+03 0.00000000e+00
- 1 22 0 0 -0.45837632e-01 -0.61254546e-01 0.30927828e+02 0.00000000e+00
- 1 22 0 0 0.15880165e+00 0.14354799e+00 0.75812549e+02 0.00000000e+00
- 1 22 0 0 0.47335092e+00 0.25927734e+00 0.26321553e+03 0.00000000e+00
- 2 310 248 249 0.43847199e-01 0.31676438e+00 0.12897942e+02 0.49767000e+00
- 1 22 0 0 0.42040288e-01 0.42081962e-01 0.51070565e+01 0.00000000e+00
- 1 22 0 0 0.75096714e-02 0.25667636e-01 0.17383514e+00 0.00000000e+00
- 1 22 0 0 0.13657574e+00 0.17979425e-01 0.16996058e+00 0.00000000e+00
- 1 22 0 0 0.46491037e-04 -0.60200675e-02 -0.22731240e-01 0.00000000e+00
- 2 310 250 251 0.44629944e+00 0.18897491e+01 0.14913219e+01 0.49767000e+00
- 1 22 0 0 0.24418515e-01 0.97568990e-01 0.45876035e-01 0.00000000e+00
- 1 22 0 0 -0.10602895e+00 0.14741781e+00 0.20593147e+00 0.00000000e+00
- 1 22 0 0 -0.14948045e+00 0.12518992e+00 -0.24821311e-01 0.00000000e+00
- 1 22 0 0 -0.34212507e+00 0.29214833e+00 -0.27515605e+00 0.00000000e+00
- 1 22 0 0 -0.84116402e-01 0.46494621e+00 -0.55725068e+00 0.00000000e+00
- 1 22 0 0 -0.18437627e-01 0.33713212e+00 -0.25178018e+00 0.00000000e+00
- 2 111 252 253 -0.24332287e+00 -0.18841563e-01 -0.72574863e+00 0.13498000e+00
- 2 111 254 255 -0.76884989e-01 0.12375852e+00 -0.51794706e-01 0.13498000e+00
- 1 22 0 0 -0.85031244e-01 0.18095938e-01 -0.53440535e-01 0.00000000e+00
- 1 22 0 0 -0.59402542e-02 0.24700122e-01 0.61398525e-01 0.00000000e+00
- 1 22 0 0 0.55799154e-01 0.20394809e+00 -0.57537818e+01 0.00000000e+00
- 1 22 0 0 0.66331233e-01 0.32945042e+00 -0.55622958e+01 0.00000000e+00
- 1 22 0 0 0.47457041e-01 -0.96550832e-01 -0.13477502e+02 0.00000000e+00
- 1 22 0 0 0.63222965e-01 -0.13993855e+00 -0.70293799e+01 0.00000000e+00
- 1 22 0 0 0.64357836e-01 -0.11525249e+00 -0.52610094e+01 0.00000000e+00
- 1 22 0 0 -0.21406917e-01 -0.28430130e-01 -0.63306766e+01 0.00000000e+00
- 1 22 0 0 -0.10019800e+00 0.66631356e-01 -0.53095932e+01 0.00000000e+00
- 1 22 0 0 -0.16113084e+00 0.93892280e-01 -0.34410117e+01 0.00000000e+00
- 1 22 0 0 0.12075410e+00 0.11560223e+00 -0.27123090e+01 0.00000000e+00
- 1 22 0 0 0.32853520e-01 0.95790962e-01 -0.40188850e+01 0.00000000e+00
- 1 211 0 0 0.13784698e+00 -0.22810837e-01 0.58995707e+01 0.13957000e+00
- 1 -211 0 0 -0.93999783e-01 0.33957522e+00 0.69983717e+01 0.13957000e+00
- 2 111 256 257 0.39005558e+00 0.78044512e+00 0.59327925e+00 0.13498000e+00
- 2 111 258 259 0.56243863e-01 0.11093040e+01 0.89804260e+00 0.13498000e+00
- 1 22 0 0 -0.16589763e+00 -0.71855368e-01 -0.53863772e+00 0.00000000e+00
- 1 22 0 0 -0.77425236e-01 0.53013806e-01 -0.18711091e+00 0.00000000e+00
- 1 22 0 0 -0.35427997e-01 0.14035047e+00 -0.65018372e-01 0.00000000e+00
- 1 22 0 0 -0.41456992e-01 -0.16591956e-01 0.13223666e-01 0.00000000e+00
- 1 22 0 0 0.35410896e-01 0.19040232e+00 0.14907369e+00 0.00000000e+00
- 1 22 0 0 0.35464468e+00 0.59004280e+00 0.44420556e+00 0.00000000e+00
- 1 22 0 0 0.54052862e-02 0.68084611e-02 -0.37605750e-02 0.00000000e+00
- 1 22 0 0 0.50838577e-01 0.11024955e+01 0.90180318e+00 0.00000000e+00
- 358
- 2 25 2 3 0.58944161e+02 0.81028876e+01 0.11329269e+03 0.12500888e+03
- 2 23 4 6 -0.54086909e+01 -0.34544215e+01 0.38254575e+02 0.67991166e+02
- 2 23 7 9 0.64352852e+02 0.11557309e+02 0.75038114e+02 0.14756610e+02
- 1 11 0 0 -0.18698403e+02 0.17218088e+02 0.42750014e+02 0.51000000e-03
- 1 -11 0 0 0.15090004e+02 -0.21144606e+02 -0.29908591e+01 0.51000000e-03
- 1 22 0 0 -0.18002921e+01 0.47209619e+00 -0.15045801e+01 0.00000000e+00
- 1 13 0 0 0.57497280e+02 0.54282288e+01 0.63069178e+02 0.10566000e+00
- 1 -13 0 0 0.67637768e+01 0.60933150e+01 0.11840640e+02 0.10566000e+00
- 1 22 0 0 0.91795384e-01 0.35765227e-01 0.12829627e+00 0.00000000e+00
- 1 2112 0 0 -0.24025776e-01 0.62121007e+00 0.33005463e+04 0.93957000e+00
- 2 -5 40 40 0.48408899e+01 0.90040119e+01 -0.27865498e+03 0.48000000e+01
- 2 21 40 40 -0.20955316e+00 -0.23566011e+00 -0.20349040e+01 0.00000000e+00
- 2 21 40 40 -0.63698326e+00 -0.18694967e+01 -0.62806316e+01 0.00000000e+00
- 2 21 40 40 0.99462782e+00 -0.20176916e+01 -0.44527498e+03 0.00000000e+00
- 2 1 40 40 -0.10313130e+01 -0.23338481e+01 -0.25745386e+03 0.33000000e+00
- 2 -1 51 51 -0.94661540e+01 -0.23129340e+01 0.16846330e+03 0.33000000e+00
- 2 21 51 51 -0.99506372e+00 -0.53496845e+00 0.98458668e+01 0.00000000e+00
- 2 21 51 51 -0.11217993e+01 -0.90570608e+00 0.91834885e+01 0.00000000e+00
- 2 21 51 51 0.14841369e+01 0.88051949e+00 0.45846290e+01 0.00000000e+00
- 2 21 51 51 0.72316466e+00 0.10375673e+01 0.69482573e+02 0.00000000e+00
- 2 21 51 51 0.15437318e+00 0.12323462e+01 0.97164453e+02 0.00000000e+00
- 2 21 51 51 -0.72316466e+00 -0.10375673e+01 0.19598229e+03 0.00000000e+00
- 2 21 51 51 -0.10123678e+01 0.23485124e+00 0.35450078e+02 0.00000000e+00
- 2 2 51 51 -0.26137062e+00 0.10589778e+00 0.29285613e+04 0.33000000e+00
- 2 5 69 69 -0.16778056e+02 -0.45524305e+01 -0.25274496e+02 0.48000000e+01
- 2 21 69 69 -0.30832922e+01 -0.10628739e+01 -0.37473004e+01 0.00000000e+00
- 2 21 69 69 -0.14084029e+02 -0.65000164e+01 -0.92280241e+01 0.00000000e+00
- 2 21 69 69 -0.60843497e+01 -0.26725806e+01 -0.56527753e+01 0.00000000e+00
- 2 21 69 69 -0.25299638e+01 0.28694924e+01 -0.30895725e+01 0.00000000e+00
- 2 21 69 69 -0.60022724e+01 0.25272200e+01 -0.23718638e+01 0.00000000e+00
- 2 21 69 69 -0.30189760e+01 0.14857737e+01 -0.25221301e+01 0.00000000e+00
- 2 21 69 69 -0.33025600e+01 -0.35132356e+01 0.10192901e+02 0.00000000e+00
- 2 21 69 69 0.55216441e+00 0.26077582e+01 0.62730783e+01 0.00000000e+00
- 2 21 69 69 0.33025600e+01 0.35132356e+01 0.72679328e+00 0.00000000e+00
- 2 21 69 69 -0.15437318e+00 -0.12323462e+01 -0.21658225e+01 0.00000000e+00
- 2 21 69 69 -0.55216441e+00 -0.26077582e+01 -0.91344704e+01 0.00000000e+00
- 2 21 69 69 0.19015473e+01 -0.72532172e+00 -0.34436579e+02 0.00000000e+00
- 2 21 69 69 -0.19015473e+01 0.72532172e+00 -0.24550717e+03 0.00000000e+00
- 2 2203 69 69 0.75754048e-01 -0.83365773e+00 -0.56169203e+04 0.77133000e+00
- 2 92 41 50 0.39576683e+01 0.25473154e+01 -0.98969935e+03 0.33406077e+02
- 2 521 112 114 0.40268470e+01 0.77918950e+01 -0.24538374e+03 0.52789000e+01
- 2 -213 115 116 -0.30146949e+00 -0.43251633e-01 -0.56481539e+01 0.77411369e+00
- 2 113 117 118 0.66290529e+00 0.58489553e+00 -0.16313452e+02 0.75415039e+00
- 2 -1114 119 120 0.28209697e+00 -0.14862071e+00 -0.12918103e+02 0.12094010e+01
- 1 -211 0 0 -0.64533767e+00 -0.46775708e+00 -0.65883937e+01 0.13957000e+00
- 1 2212 0 0 -0.33360740e+00 -0.10483777e+01 -0.85086506e+01 0.93827000e+00
- 2 -213 121 122 0.43092024e+00 -0.65003059e+00 -0.19300813e+03 0.83617056e+00
- 2 -2114 123 124 -0.53435914e+00 -0.68494476e+00 -0.10951445e+03 0.11728688e+01
- 2 223 125 127 0.92360213e-01 -0.14626438e+01 -0.15919607e+03 0.69708343e+00
- 1 2112 0 0 0.27731234e+00 -0.13238489e+01 -0.23262021e+03 0.93957000e+00
- 2 92 52 68 -0.11218245e+02 -0.12999938e+01 0.35187180e+04 0.74741652e+02
- 2 111 128 129 -0.12797507e+01 -0.57019996e-01 0.24461173e+02 0.13498000e+00
- 2 221 130 132 -0.46949193e+01 -0.14735209e+01 0.80976777e+02 0.54745000e+00
- 2 111 133 134 -0.51690694e+00 0.26244298e-01 0.42782342e+01 0.13498000e+00
- 2 -313 135 136 -0.22604695e+01 -0.75743394e+00 0.38120943e+02 0.94736259e+00
- 2 323 137 138 -0.53014107e+00 -0.34622263e+00 0.92921632e+01 0.78067925e+00
- 1 -211 0 0 -0.23013285e+00 -0.31016358e-01 0.27372803e+01 0.13957000e+00
- 2 -3112 139 140 -0.63538692e+00 -0.21097231e+00 0.20507517e+02 0.11974400e+01
- 2 -213 141 142 -0.51857837e+00 -0.35419862e-01 0.28340264e+01 0.98477694e+00
- 2 3224 143 144 0.30428169e+00 0.48429573e-01 0.10437326e+02 0.13954354e+01
- 1 -211 0 0 0.16376047e+00 -0.42270193e+00 0.49040678e+01 0.13957000e+00
- 2 113 145 146 0.62705381e+00 0.17371828e+01 0.81709895e+02 0.79998417e+00
- 2 -1114 147 148 0.21766885e+00 0.32566808e+00 0.59856923e+02 0.12085614e+01
- 2 313 149 150 -0.21161605e+00 -0.42388278e+00 0.93586872e+02 0.90136033e+00
- 2 3312 151 152 -0.44919498e+00 0.61260941e+00 0.99864098e+02 0.13213000e+01
- 2 323 153 154 -0.12219151e+01 -0.39918478e+00 0.19288368e+03 0.90849255e+00
- 2 111 155 156 0.56665158e+00 -0.14086805e+00 0.17869056e+04 0.13498000e+00
- 2 331 157 158 -0.54865001e+00 0.24811554e+00 0.10053614e+04 0.95835416e+00
- 2 92 70 111 -0.51659558e+02 -0.99714192e+01 -0.59428578e+04 0.89937400e+03
- 2 -523 159 160 -0.17748586e+02 -0.53164909e+01 -0.23872860e+02 0.53248000e+01
- 2 213 161 162 -0.18317835e+01 -0.83575088e+00 -0.25439486e+01 0.73558326e+00
- 2 -213 163 164 -0.41135966e+01 -0.11794781e+01 -0.27661312e+01 0.92253900e+00
- 1 321 0 0 -0.17982432e+01 -0.98781308e+00 -0.30920742e+01 0.49360000e+00
- 2 -323 165 166 -0.38795438e+01 -0.18712124e+01 -0.38026483e+01 0.90601240e+00
- 2 111 167 168 -0.64825039e+01 -0.22940238e+01 -0.47406576e+01 0.13498000e+00
- 1 321 0 0 -0.20275027e+01 -0.12191924e+01 -0.12238522e+01 0.49360000e+00
- 2 3322 169 170 -0.18515087e+01 0.31313051e+00 -0.14221559e+01 0.13149000e+01
- 2 311 171 171 -0.44160136e+00 0.39776781e+00 -0.90449862e+00 0.49767000e+00
- 2 -2114 172 173 -0.28247591e+01 0.39486385e+00 -0.22264196e+01 0.12141709e+01
- 2 223 174 176 -0.24331547e+01 0.14523996e+01 -0.17274794e+01 0.80374238e+00
- 2 111 177 178 -0.41438935e-01 0.88608615e-01 0.25186332e-01 0.13498000e+00
- 2 2114 179 180 -0.50397802e+01 0.30117946e+01 -0.23533535e+01 0.12440289e+01
- 2 113 181 182 -0.80402046e+00 -0.27320680e+00 0.76287425e-01 0.77053557e+00
- 2 -2214 183 184 -0.25729853e+00 -0.13608234e+00 0.16366649e+00 0.12290715e+01
- 2 223 185 187 -0.14652574e+01 -0.14996868e+01 0.34072957e+01 0.80160732e+00
- 2 331 188 190 -0.52183744e+00 0.56106050e-01 0.14868873e+01 0.95676438e+00
- 1 321 0 0 -0.28455288e+00 -0.25043996e+00 0.18027893e+01 0.49360000e+00
- 1 -321 0 0 -0.25993656e+00 0.54877114e-01 0.93654231e+00 0.49360000e+00
- 2 111 191 192 -0.66996542e+00 -0.81880599e+00 0.25828871e+01 0.13498000e+00
- 1 2212 0 0 -0.44962815e-01 0.14321463e+01 0.19129830e+01 0.93827000e+00
- 2 -213 193 194 0.11543714e+01 0.10991525e+01 0.15819660e+01 0.79416835e+00
- 2 -3114 195 196 0.83963519e+00 0.85782001e+00 0.11475814e+01 0.14011186e+01
- 2 3114 197 198 0.56596845e+00 0.61089376e+00 0.15720749e+00 0.14076747e+01
- 2 -1114 199 200 0.77748601e+00 0.32067928e+00 -0.44505215e+00 0.13037859e+01
- 2 -213 201 202 0.20045318e-01 -0.87336048e-01 -0.64795455e+00 0.10533065e+01
- 2 323 203 204 -0.21177747e+00 -0.55914103e+00 -0.57728768e+00 0.95891172e+00
- 2 -313 205 206 0.48321281e+00 -0.53277315e+00 -0.10017570e+02 0.91617214e+00
- 2 -213 207 208 0.75743359e+00 -0.51768625e+00 -0.62062127e+01 0.63354203e+00
- 2 213 209 210 -0.43103075e-02 -0.38580920e+00 -0.16707500e+02 0.98773478e+00
- 2 223 211 213 -0.17214511e+00 -0.92333898e-01 -0.37622143e+01 0.78228376e+00
- 2 -213 214 215 -0.28928704e+00 -0.48264534e+00 -0.12722818e+02 0.72082428e+00
- 2 223 216 218 -0.30789834e+00 -0.33674718e+00 -0.13045763e+02 0.77442175e+00
- 1 2212 0 0 0.46477077e+00 -0.85360136e-01 -0.38286041e+02 0.93827000e+00
- 1 -2112 0 0 0.44623182e+00 -0.30882390e-01 -0.44681920e+02 0.93957000e+00
- 2 223 219 221 -0.84925086e+00 0.36525720e+00 -0.10482051e+03 0.78694255e+00
- 2 -213 222 223 -0.19832113e+00 0.91124641e-01 -0.92220610e+02 0.80783032e+00
- 1 321 0 0 -0.26869769e+00 -0.22754352e+00 -0.66933252e+03 0.49360000e+00
- 2 -323 224 225 -0.50875238e+00 -0.29536349e-01 -0.12347812e+04 0.89018041e+00
- 1 211 0 0 0.77957065e-02 -0.12339222e-01 -0.20934959e+03 0.13957000e+00
- 2 2114 226 227 0.52469131e+00 -0.42118742e+00 -0.33030140e+04 0.12065222e+01
- 1 211 0 0 -0.68926037e-01 -0.34536346e-01 -0.14684426e+03 0.13957000e+00
- 2 -423 228 229 0.15750152e+01 0.97748953e+00 -0.68953475e+02 0.20067000e+01
- 2 113 230 231 0.16638351e+01 0.37952224e+01 -0.10464223e+03 0.97586657e+00
- 2 213 232 233 0.78799673e+00 0.30191830e+01 -0.71788037e+02 0.84765223e+00
- 1 -211 0 0 -0.20954341e+00 0.16389780e+00 -0.81280844e+00 0.13957000e+00
- 2 111 234 235 -0.91926079e-01 -0.20714943e+00 -0.48353455e+01 0.13498000e+00
- 1 211 0 0 0.71480807e+00 0.23667411e+00 -0.12165886e+02 0.13957000e+00
- 1 -211 0 0 -0.51902787e-01 0.34822142e+00 -0.41475662e+01 0.13957000e+00
- 1 -2112 0 0 0.27705832e+00 0.79329114e-01 -0.99843238e+01 0.93957000e+00
- 1 211 0 0 0.50386487e-02 -0.22794983e+00 -0.29337790e+01 0.13957000e+00
- 1 -211 0 0 0.50460518e+00 -0.15820236e+00 -0.63282814e+02 0.13957000e+00
- 2 111 236 237 -0.73684942e-01 -0.49182823e+00 -0.12972531e+03 0.13498000e+00
- 1 -2212 0 0 -0.35252590e+00 -0.62840861e+00 -0.79554528e+02 0.93827000e+00
- 1 211 0 0 -0.18183325e+00 -0.56536144e-01 -0.29959926e+02 0.13957000e+00
- 1 211 0 0 -0.99975042e-01 -0.20897841e+00 -0.38609991e+02 0.13957000e+00
- 1 -211 0 0 -0.31188480e-01 -0.63650209e+00 -0.53480920e+02 0.13957000e+00
- 2 111 238 239 0.22352374e+00 -0.61716328e+00 -0.67105157e+02 0.13498000e+00
- 1 22 0 0 -0.10513599e+01 -0.25925471e-01 0.20896512e+02 0.00000000e+00
- 1 22 0 0 -0.22839077e+00 -0.31094525e-01 0.35646607e+01 0.00000000e+00
- 1 -211 0 0 -0.17843769e+01 -0.52010062e+00 0.31882987e+02 0.13957000e+00
- 1 211 0 0 -0.10723568e+01 -0.45039253e+00 0.19576946e+02 0.13957000e+00
- 2 111 240 241 -0.18381856e+01 -0.50302773e+00 0.29516844e+02 0.13498000e+00
- 1 22 0 0 -0.18006887e+00 -0.51844263e-02 0.20326958e+01 0.00000000e+00
- 1 22 0 0 -0.33683807e+00 0.31428724e-01 0.22455384e+01 0.00000000e+00
- 1 -321 0 0 -0.57790800e+00 -0.18658267e+00 0.11987139e+02 0.49360000e+00
- 1 211 0 0 -0.16825615e+01 -0.57085127e+00 0.26133804e+02 0.13957000e+00
- 2 311 242 242 -0.54539519e+00 -0.41670266e+00 0.77585543e+01 0.49767000e+00
- 1 211 0 0 0.15254119e-01 0.70480027e-01 0.15336089e+01 0.13957000e+00
- 1 -2112 0 0 -0.56636105e+00 -0.36133853e+00 0.17445949e+02 0.93957000e+00
- 1 211 0 0 -0.69025867e-01 0.15036622e+00 0.30615674e+01 0.13957000e+00
- 1 -211 0 0 -0.36365390e+00 -0.35319320e+00 0.68858532e+00 0.13957000e+00
- 2 111 243 244 -0.15492447e+00 0.31777334e+00 0.21454411e+01 0.13498000e+00
- 2 3122 245 246 0.34587099e+00 0.31447778e-01 0.72120391e+01 0.11156800e+01
- 1 211 0 0 -0.41589306e-01 0.16981794e-01 0.32252865e+01 0.13957000e+00
- 1 211 0 0 0.55113870e+00 0.17335561e+01 0.70262110e+02 0.13957000e+00
- 1 -211 0 0 0.75915106e-01 0.36266821e-02 0.11447785e+02 0.13957000e+00
- 1 -2112 0 0 0.28904481e+00 0.10902690e+00 0.43094402e+02 0.93957000e+00
- 1 211 0 0 -0.71375960e-01 0.21664117e+00 0.16762521e+02 0.13957000e+00
- 1 321 0 0 0.14156813e+00 -0.36867587e+00 0.61289009e+02 0.49360000e+00
- 1 -211 0 0 -0.35318418e+00 -0.55206906e-01 0.32297863e+02 0.13957000e+00
- 2 3122 247 248 -0.31027953e+00 0.54691341e+00 0.76615877e+02 0.11156800e+01
- 1 -211 0 0 -0.13891544e+00 0.65695999e-01 0.23248221e+02 0.13957000e+00
- 2 311 249 249 -0.74523646e+00 -0.51818936e-01 0.14152400e+03 0.49767000e+00
- 1 211 0 0 -0.47667863e+00 -0.34736584e+00 0.51359682e+02 0.13957000e+00
- 1 22 0 0 0.94736854e-01 0.22962821e-02 0.18134494e+03 0.00000000e+00
- 1 22 0 0 0.47191473e+00 -0.14316433e+00 0.16055607e+04 0.00000000e+00
- 1 22 0 0 -0.15642792e+00 0.19953000e+00 0.10844507e+03 0.00000000e+00
- 2 113 250 251 -0.39222209e+00 0.48585541e-01 0.89691631e+03 0.67452709e+00
- 2 -521 252 254 -0.17711234e+02 -0.52880888e+01 -0.23850135e+02 0.52789000e+01
- 1 22 0 0 -0.37352485e-01 -0.28402128e-01 -0.22724777e-01 0.00000000e+00
- 1 211 0 0 -0.56004339e+00 -0.19761492e+00 -0.33595638e+00 0.13957000e+00
- 2 111 255 256 -0.12717401e+01 -0.63813596e+00 -0.22079923e+01 0.13498000e+00
- 1 -211 0 0 -0.23762696e+01 -0.90099365e+00 -0.11791531e+01 0.13957000e+00
- 2 111 257 258 -0.17373270e+01 -0.27848447e+00 -0.15869781e+01 0.13498000e+00
- 2 -311 259 259 -0.36796661e+01 -0.16220187e+01 -0.34689193e+01 0.49767000e+00
- 1 -211 0 0 -0.19987763e+00 -0.24919369e+00 -0.33372904e+00 0.13957000e+00
- 1 22 0 0 -0.23692210e+01 -0.90397071e+00 -0.17229835e+01 0.00000000e+00
- 1 22 0 0 -0.41132830e+01 -0.13900531e+01 -0.30176742e+01 0.00000000e+00
- 2 3122 260 261 -0.16748102e+01 0.26550642e+00 -0.11161698e+01 0.11156800e+01
- 2 111 262 263 -0.17669847e+00 0.47624089e-01 -0.30598608e+00 0.13498000e+00
- 2 310 264 265 -0.44160136e+00 0.39776781e+00 -0.90449862e+00 0.49767000e+00
- 1 -2112 0 0 -0.26362493e+01 0.41802131e+00 -0.21954575e+01 0.93957000e+00
- 2 111 266 267 -0.18850984e+00 -0.23157461e-01 -0.30962112e-01 0.13498000e+00
- 1 211 0 0 -0.16055722e+01 0.97068407e+00 -0.14080620e+01 0.13957000e+00
- 1 -211 0 0 -0.45685809e+00 0.36985127e+00 -0.21809261e+00 0.13957000e+00
- 2 111 268 269 -0.37072446e+00 0.11186425e+00 -0.10132478e+00 0.13498000e+00
- 1 22 0 0 -0.76178418e-01 0.49815126e-01 0.57162757e-01 0.00000000e+00
- 1 22 0 0 0.34739483e-01 0.38793488e-01 -0.31976424e-01 0.00000000e+00
- 1 2212 0 0 -0.47083948e+01 0.28208534e+01 -0.20312526e+01 0.93827000e+00
- 1 -211 0 0 -0.33138536e+00 0.19094116e+00 -0.32210090e+00 0.13957000e+00
- 1 -211 0 0 -0.53121225e+00 -0.37419868e+00 0.32689824e+00 0.13957000e+00
- 1 211 0 0 -0.27280821e+00 0.10099187e+00 -0.25061081e+00 0.13957000e+00
- 1 -2212 0 0 -0.31779786e+00 -0.29868784e+00 0.77688325e-01 0.93827000e+00
- 2 111 270 271 0.60499339e-01 0.16260550e+00 0.85978166e-01 0.13498000e+00
- 1 -211 0 0 -0.97538712e+00 -0.61006689e+00 0.17022059e+01 0.13957000e+00
- 1 211 0 0 -0.30333692e+00 -0.66859502e+00 0.10130774e+01 0.13957000e+00
- 2 111 272 273 -0.18653331e+00 -0.22102494e+00 0.69201243e+00 0.13498000e+00
- 2 111 274 275 -0.99888219e-01 0.61202145e-02 0.58942090e+00 0.13498000e+00
- 2 111 276 277 -0.34835185e-01 -0.77713075e-01 0.19544947e+00 0.13498000e+00
- 2 221 278 280 -0.38711403e+00 0.12769891e+00 0.70201689e+00 0.54745000e+00
- 1 22 0 0 -0.30780822e+00 -0.32604220e+00 0.94146110e+00 0.00000000e+00
- 1 22 0 0 -0.36215719e+00 -0.49276380e+00 0.16414260e+01 0.00000000e+00
- 1 -211 0 0 0.29575926e+00 0.78782522e+00 0.67433766e+00 0.13957000e+00
- 2 111 281 282 0.85861218e+00 0.31132729e+00 0.90762829e+00 0.13498000e+00
- 2 -3122 283 284 0.78388878e+00 0.63275004e+00 0.71999525e+00 0.11156800e+01
- 1 211 0 0 0.55746407e-01 0.22506997e+00 0.42758616e+00 0.13957000e+00
- 2 3122 285 286 0.43593015e+00 0.26696598e+00 0.22623394e-01 0.11156800e+01
- 1 -211 0 0 0.13003830e+00 0.34392778e+00 0.13458409e+00 0.13957000e+00
- 1 -2112 0 0 0.88436062e+00 0.40551531e+00 -0.35055809e+00 0.93957000e+00
- 1 211 0 0 -0.10687460e+00 -0.84836029e-01 -0.94494060e-01 0.13957000e+00
- 1 -211 0 0 -0.12539565e+00 -0.50081319e+00 -0.13454993e+00 0.13957000e+00
- 2 111 287 288 0.14544096e+00 0.41347714e+00 -0.51340462e+00 0.13498000e+00
- 2 311 289 289 -0.24111723e+00 -0.39150303e+00 -0.73388658e+00 0.49767000e+00
- 1 211 0 0 0.29339768e-01 -0.16763800e+00 0.15659890e+00 0.13957000e+00
- 1 -321 0 0 0.37402737e+00 -0.61822690e+00 -0.92977873e+01 0.49360000e+00
- 1 211 0 0 0.10918544e+00 0.85453744e-01 -0.71978259e+00 0.13957000e+00
- 1 -211 0 0 0.35942307e+00 -0.56695427e+00 -0.35084681e+01 0.13957000e+00
- 2 111 290 291 0.39801052e+00 0.49268026e-01 -0.26977445e+01 0.13498000e+00
- 1 211 0 0 0.11270639e+00 -0.30908196e+00 -0.19585709e+01 0.13957000e+00
- 2 111 292 293 -0.11701670e+00 -0.76727240e-01 -0.14748929e+02 0.13498000e+00
- 1 -211 0 0 0.74463946e-01 -0.73864503e-01 -0.16677322e+01 0.13957000e+00
- 1 211 0 0 -0.20428037e+00 0.17663314e+00 -0.14769954e+01 0.13957000e+00
- 2 111 294 295 -0.42328685e-01 -0.19510254e+00 -0.61748677e+00 0.13498000e+00
- 1 -211 0 0 -0.16209274e+00 0.14602409e+00 -0.35893529e+01 0.13957000e+00
- 2 111 296 297 -0.12719430e+00 -0.62866943e+00 -0.91334647e+01 0.13498000e+00
- 1 211 0 0 0.94077959e-01 0.77034183e-01 -0.36730960e+01 0.13957000e+00
- 1 -211 0 0 -0.41399614e-01 -0.20825405e+00 -0.26658494e+01 0.13957000e+00
- 2 111 298 299 -0.36057669e+00 -0.20552731e+00 -0.67068174e+01 0.13498000e+00
- 1 -211 0 0 -0.33908618e+00 0.96266119e-01 -0.21725525e+02 0.13957000e+00
- 1 211 0 0 -0.54690110e+00 0.16206062e+00 -0.54068332e+02 0.13957000e+00
- 2 111 300 301 0.36736428e-01 0.10693045e+00 -0.29026649e+02 0.13498000e+00
- 1 -211 0 0 -0.11660013e+00 -0.20822030e+00 -0.12409992e+02 0.13957000e+00
- 2 111 302 303 -0.81721001e-01 0.29934494e+00 -0.79810618e+02 0.13498000e+00
- 2 -311 304 304 -0.34235229e+00 -0.54071087e-01 -0.46559453e+03 0.49767000e+00
- 1 -211 0 0 -0.16640009e+00 0.24534738e-01 -0.76918664e+03 0.13957000e+00
- 1 2112 0 0 0.51823663e+00 -0.22229067e+00 -0.29695920e+04 0.93957000e+00
- 2 111 305 306 0.64546768e-02 -0.19889675e+00 -0.33342195e+03 0.13498000e+00
- 2 -421 307 308 0.16335727e+01 0.97998730e+00 -0.66513188e+02 0.18645000e+01
- 1 22 0 0 -0.58557537e-01 -0.24977702e-02 -0.24402871e+01 0.00000000e+00
- 1 211 0 0 0.17532547e+00 0.38121867e+00 -0.60463417e+01 0.13957000e+00
- 1 -211 0 0 0.14885096e+01 0.34140037e+01 -0.98595890e+02 0.13957000e+00
- 1 211 0 0 0.87917095e+00 0.27727581e+01 -0.67374450e+02 0.13957000e+00
- 2 111 309 310 -0.91174219e-01 0.24642495e+00 -0.44135870e+01 0.13498000e+00
- 1 22 0 0 -0.33035558e-01 -0.18062317e+00 -0.41756721e+01 0.00000000e+00
- 1 22 0 0 -0.58890521e-01 -0.26526261e-01 -0.65967341e+00 0.00000000e+00
- 1 22 0 0 -0.83252726e-02 -0.19468109e+00 -0.67294677e+02 0.00000000e+00
- 1 22 0 0 -0.65359669e-01 -0.29714713e+00 -0.62430636e+02 0.00000000e+00
- 1 22 0 0 0.22391981e+00 -0.50252627e+00 -0.51973633e+02 0.00000000e+00
- 1 22 0 0 -0.39607727e-03 -0.11463701e+00 -0.15131524e+02 0.00000000e+00
- 1 22 0 0 -0.17893422e+01 -0.49165294e+00 0.28330564e+02 0.00000000e+00
- 1 22 0 0 -0.48843382e-01 -0.11374787e-01 0.11862806e+01 0.00000000e+00
- 2 310 311 312 -0.54539519e+00 -0.41670266e+00 0.77585543e+01 0.49767000e+00
- 1 22 0 0 -0.11700188e+00 0.19918294e+00 0.17144947e+01 0.00000000e+00
- 1 22 0 0 -0.37922583e-01 0.11859040e+00 0.43094645e+00 0.00000000e+00
- 1 2112 0 0 0.27244714e+00 0.16053837e-01 0.67062308e+01 0.93957000e+00
- 2 111 313 314 0.73423859e-01 0.15393941e-01 0.50580836e+00 0.13498000e+00
- 1 2212 0 0 -0.35658546e+00 0.52255118e+00 0.67691758e+02 0.93827000e+00
- 1 -211 0 0 0.46305931e-01 0.24362227e-01 0.89241195e+01 0.13957000e+00
- 2 310 315 316 -0.74523646e+00 -0.51818936e-01 0.14152400e+03 0.49767000e+00
- 1 211 0 0 -0.51898329e+00 -0.56932582e-02 0.77154536e+03 0.13957000e+00
- 1 -211 0 0 0.12676121e+00 0.54278799e-01 0.12537096e+03 0.13957000e+00
- 1 -12 0 0 -0.91280144e+00 -0.90994632e+00 -0.23861582e+01 0.00000000e+00
- 1 11 0 0 -0.92357548e+01 -0.33905677e+01 -0.11029469e+02 0.51000000e-03
- 2 20423 317 318 -0.75626777e+01 -0.98757476e+00 -0.10434507e+02 0.23720926e+01
- 1 22 0 0 -0.12294642e+01 -0.63605570e+00 -0.21662744e+01 0.00000000e+00
- 1 22 0 0 -0.42275885e-01 -0.20802516e-02 -0.41717875e-01 0.00000000e+00
- 1 22 0 0 -0.76266695e+00 -0.58092075e-01 -0.71699638e+00 0.00000000e+00
- 1 22 0 0 -0.97466005e+00 -0.22039240e+00 -0.86998173e+00 0.00000000e+00
- 2 310 319 320 -0.36796661e+01 -0.16220187e+01 -0.34689193e+01 0.49767000e+00
- 1 2212 0 0 -0.13593289e+01 0.13093898e+00 -0.95716636e+00 0.93827000e+00
- 1 -211 0 0 -0.31548130e+00 0.13456744e+00 -0.15900344e+00 0.13957000e+00
- 1 22 0 0 -0.11775585e+00 0.87429768e-01 -0.14995519e+00 0.00000000e+00
- 1 22 0 0 -0.58942621e-01 -0.39805679e-01 -0.15603089e+00 0.00000000e+00
- 1 -211 0 0 -0.35217707e+00 0.19527684e+00 -0.26906860e+00 0.13957000e+00
- 1 211 0 0 -0.89424288e-01 0.20249097e+00 -0.63543002e+00 0.13957000e+00
- 1 22 0 0 -0.19979583e+00 -0.29200924e-01 -0.53720183e-01 0.00000000e+00
- 1 22 0 0 0.11285988e-01 0.60434633e-02 0.22758070e-01 0.00000000e+00
- 1 22 0 0 -0.13471505e+00 0.69546588e-01 0.21317790e-01 0.00000000e+00
- 1 22 0 0 -0.23600941e+00 0.42317667e-01 -0.12264257e+00 0.00000000e+00
- 1 22 0 0 0.71714810e-01 0.13713784e+00 0.11726208e+00 0.00000000e+00
- 1 22 0 0 -0.11215472e-01 0.25467661e-01 -0.31283919e-01 0.00000000e+00
- 1 22 0 0 -0.61004190e-03 -0.93716145e-01 0.19410434e+00 0.00000000e+00
- 1 22 0 0 -0.18592327e+00 -0.12730879e+00 0.49790808e+00 0.00000000e+00
- 1 22 0 0 -0.12743272e+00 -0.16909598e-01 0.40125922e+00 0.00000000e+00
- 1 22 0 0 0.27544506e-01 0.23029813e-01 0.18816168e+00 0.00000000e+00
- 1 22 0 0 0.15590789e-01 -0.23273059e-01 -0.13138422e-01 0.00000000e+00
- 1 22 0 0 -0.50425975e-01 -0.54440016e-01 0.20858790e+00 0.00000000e+00
- 2 111 321 322 -0.24833398e+00 0.77407299e-01 0.43516027e+00 0.13498000e+00
- 2 111 323 324 -0.40393898e-01 0.64030231e-01 0.19901500e-01 0.13498000e+00
- 2 111 325 326 -0.98386151e-01 -0.13738620e-01 0.24695512e+00 0.13498000e+00
- 1 22 0 0 0.31360326e+00 0.13508752e+00 0.25403293e+00 0.00000000e+00
- 1 22 0 0 0.54500892e+00 0.17623977e+00 0.65359536e+00 0.00000000e+00
- 1 -2112 0 0 0.60265161e+00 0.57599257e+00 0.51924499e+00 0.93957000e+00
- 2 111 327 328 0.18123717e+00 0.56757468e-01 0.20075026e+00 0.13498000e+00
- 1 2212 0 0 0.31663229e+00 0.22603891e+00 0.10681078e+00 0.93827000e+00
- 1 -211 0 0 0.11929786e+00 0.40927064e-01 -0.84187386e-01 0.13957000e+00
- 1 22 0 0 0.67893402e-01 0.97223315e-01 -0.68052079e-01 0.00000000e+00
- 1 22 0 0 0.77547563e-01 0.31625383e+00 -0.44535254e+00 0.00000000e+00
- 1 130 0 0 -0.24111723e+00 -0.39150303e+00 -0.73388658e+00 0.49767000e+00
- 1 22 0 0 0.86425145e-01 0.21991516e-01 -0.30953469e+00 0.00000000e+00
- 1 22 0 0 0.31158538e+00 0.27276510e-01 -0.23882098e+01 0.00000000e+00
- 1 22 0 0 -0.48118770e-01 -0.71810502e-01 -0.34929432e+01 0.00000000e+00
- 1 22 0 0 -0.68897926e-01 -0.49167379e-02 -0.11255986e+02 0.00000000e+00
- 1 22 0 0 -0.30880509e-01 -0.13972688e+00 -0.57384457e+00 0.00000000e+00
- 1 22 0 0 -0.11448176e-01 -0.55375658e-01 -0.43642200e-01 0.00000000e+00
- 1 22 0 0 -0.81634942e-01 -0.41493278e+00 -0.50647026e+01 0.00000000e+00
- 1 22 0 0 -0.45559358e-01 -0.21373665e+00 -0.40687622e+01 0.00000000e+00
- 1 22 0 0 -0.26415358e+00 -0.90392744e-01 -0.49040228e+01 0.00000000e+00
- 1 22 0 0 -0.96423105e-01 -0.11513457e+00 -0.18027946e+01 0.00000000e+00
- 1 22 0 0 0.99508275e-02 0.83983498e-01 -0.27486986e+02 0.00000000e+00
- 1 22 0 0 0.26785600e-01 0.22946956e-01 -0.15396629e+01 0.00000000e+00
- 1 22 0 0 0.11598819e-01 0.20600232e+00 -0.47892756e+02 0.00000000e+00
- 1 22 0 0 -0.93319819e-01 0.93342626e-01 -0.31917862e+02 0.00000000e+00
- 2 310 329 330 -0.34235229e+00 -0.54071087e-01 -0.46559453e+03 0.49767000e+00
- 1 22 0 0 -0.51799332e-01 -0.12288612e+00 -0.14158070e+03 0.00000000e+00
- 1 22 0 0 0.58254009e-01 -0.76010624e-01 -0.19184124e+03 0.00000000e+00
- 1 321 0 0 0.48862529e+00 -0.15621261e+00 -0.22207738e+02 0.49360000e+00
- 2 -213 331 332 0.11449474e+01 0.11361999e+01 -0.44305450e+02 0.10583615e+01
- 1 22 0 0 -0.93982032e-01 0.69411317e-01 -0.15398155e+01 0.00000000e+00
- 1 22 0 0 0.28078126e-02 0.17701364e+00 -0.28737715e+01 0.00000000e+00
- 2 111 333 334 -0.53221420e-01 -0.11418305e+00 0.80415193e+00 0.13498000e+00
- 2 111 335 336 -0.49217377e+00 -0.30251961e+00 0.69544024e+01 0.13498000e+00
- 1 22 0 0 0.54682972e-01 -0.19326630e-01 0.68426401e-01 0.00000000e+00
- 1 22 0 0 0.18740887e-01 0.34720572e-01 0.43738195e+00 0.00000000e+00
- 2 111 337 338 -0.25324585e+00 0.89394999e-01 0.28016961e+02 0.13498000e+00
- 2 111 339 340 -0.49199062e+00 -0.14121393e+00 0.11350704e+03 0.13498000e+00
- 2 413 341 342 -0.63719865e+01 -0.70251787e+00 -0.83272543e+01 0.20100000e+01
- 1 -211 0 0 -0.11906912e+01 -0.28505689e+00 -0.21072531e+01 0.13957000e+00
- 2 111 343 344 -0.99965275e+00 -0.61392647e+00 -0.89817758e+00 0.13498000e+00
- 2 111 345 346 -0.26800134e+01 -0.10080922e+01 -0.25707417e+01 0.13498000e+00
- 1 22 0 0 -0.25744888e+00 0.90374541e-01 0.42720524e+00 0.00000000e+00
- 1 22 0 0 0.91148997e-02 -0.12967242e-01 0.79550346e-02 0.00000000e+00
- 1 22 0 0 0.27074954e-02 -0.11193251e-01 -0.45819538e-01 0.00000000e+00
- 1 22 0 0 -0.43101394e-01 0.75223482e-01 0.65721038e-01 0.00000000e+00
- 1 22 0 0 0.28006925e-01 -0.17696201e-01 0.95869165e-01 0.00000000e+00
- 1 22 0 0 -0.12639308e+00 0.39575810e-02 0.15108595e+00 0.00000000e+00
- 1 22 0 0 0.18907332e-01 0.50907513e-01 0.70543282e-02 0.00000000e+00
- 1 22 0 0 0.16232984e+00 0.58499547e-02 0.19369594e+00 0.00000000e+00
- 1 -211 0 0 0.16533852e-01 -0.15404479e+00 -0.15599535e+03 0.13957000e+00
- 1 211 0 0 -0.35888614e+00 0.99973699e-01 -0.30959918e+03 0.13957000e+00
- 1 -211 0 0 0.43767625e+00 0.63175536e+00 -0.99053979e+01 0.13957000e+00
- 2 111 347 348 0.70727115e+00 0.50444455e+00 -0.34400052e+02 0.13498000e+00
- 1 22 0 0 -0.29939074e-01 0.27361698e-01 0.20703115e+00 0.00000000e+00
- 1 22 0 0 -0.23282346e-01 -0.14154475e+00 0.59712079e+00 0.00000000e+00
- 1 22 0 0 -0.25549006e+00 -0.22404368e+00 0.44089002e+01 0.00000000e+00
- 1 22 0 0 -0.23668371e+00 -0.78475934e-01 0.25455022e+01 0.00000000e+00
- 1 22 0 0 -0.20004486e-01 0.25793350e-01 0.92183108e+01 0.00000000e+00
- 1 22 0 0 -0.23324136e+00 0.63601649e-01 0.18798650e+02 0.00000000e+00
- 1 22 0 0 -0.25854605e-01 -0.38593836e-01 0.62658257e+01 0.00000000e+00
- 1 22 0 0 -0.46613601e+00 -0.10262010e+00 0.10724121e+03 0.00000000e+00
- 2 411 349 352 -0.59846887e+01 -0.69342375e+00 -0.78242604e+01 0.18693000e+01
- 2 111 353 354 -0.38729780e+00 -0.90941215e-02 -0.50299391e+00 0.13498000e+00
- 1 22 0 0 -0.19827301e+00 -0.18661574e+00 -0.19124957e+00 0.00000000e+00
- 1 22 0 0 -0.80137974e+00 -0.42731073e+00 -0.70692801e+00 0.00000000e+00
- 1 22 0 0 -0.97686026e+00 -0.43638376e+00 -0.94621702e+00 0.00000000e+00
- 1 22 0 0 -0.17031531e+01 -0.57170843e+00 -0.16245247e+01 0.00000000e+00
- 1 22 0 0 0.77607944e-01 0.15430513e-01 -0.39832338e+01 0.00000000e+00
- 1 22 0 0 0.62966321e+00 0.48901404e+00 -0.30416818e+02 0.00000000e+00
- 1 -11 0 0 0.91631301e-02 -0.27978586e-01 -0.13111116e+00 0.51000000e-03
- 1 12 0 0 -0.68782671e+00 -0.20293083e+00 -0.38612695e+00 0.00000000e+00
- 2 -313 355 356 -0.43358115e+01 -0.41920283e+00 -0.60955500e+01 0.87527531e+00
- 2 111 357 358 -0.97021361e+00 -0.43311509e-01 -0.12114722e+01 0.13498000e+00
- 1 22 0 0 -0.27755823e-01 -0.14404050e-01 -0.11887164e+00 0.00000000e+00
- 1 22 0 0 -0.35954198e+00 0.53099282e-02 -0.38412227e+00 0.00000000e+00
- 1 -321 0 0 -0.38292975e+01 -0.51597694e+00 -0.51537112e+01 0.49360000e+00
- 1 211 0 0 -0.50651402e+00 0.96774111e-01 -0.94183875e+00 0.13957000e+00
- 1 22 0 0 -0.31508010e+00 -0.76594953e-01 -0.38333430e+00 0.00000000e+00
- 1 22 0 0 -0.65513351e+00 0.33283444e-01 -0.82813795e+00 0.00000000e+00
- 546
- 2 25 2 3 -0.79757738e+01 0.97289408e+01 -0.29516303e+03 0.12500155e+03
- 2 23 4 7 0.49622954e+01 0.12804727e+02 -0.18541022e+03 0.89975516e+02
- 2 23 8 11 -0.12938069e+02 -0.30757862e+01 -0.10975281e+03 0.28787886e+02
- 1 -11 0 0 -0.93294772e+01 -0.36835929e+02 -0.95708166e+02 0.51000000e-03
- 1 22 0 0 0.53822926e+00 0.48151521e+00 -0.13781770e+01 0.00000000e+00
- 1 11 0 0 0.13753536e+02 0.49159117e+02 -0.88323831e+02 0.51000000e-03
- 1 22 0 0 0.68936082e-05 0.23316709e-04 -0.41508057e-04 0.00000000e+00
- 1 13 0 0 -0.13673023e+02 0.10997083e+02 -0.57028910e+02 0.10566000e+00
- 1 22 0 0 -0.64219818e-04 0.28388160e-04 -0.26618714e-03 0.00000000e+00
- 1 -13 0 0 0.73409589e+00 -0.14063505e+02 -0.52687470e+02 0.10566000e+00
- 1 22 0 0 0.92221001e-03 -0.93932197e-02 -0.36164334e-01 0.00000000e+00
- 2 2 68 68 -0.28931291e+00 0.90522958e+00 -0.60403582e+02 0.33000000e+00
- 2 21 68 68 -0.67935838e-01 -0.27150291e-01 -0.10300915e+00 0.00000000e+00
- 2 21 68 68 -0.85876832e+00 0.82906492e+00 -0.82074732e+01 0.00000000e+00
- 2 21 68 68 0.13565749e+00 0.31110234e+01 -0.13573508e+03 0.00000000e+00
- 2 21 68 68 -0.48407081e+01 0.44586887e+01 -0.39537681e+03 0.00000000e+00
- 2 21 68 68 0.31566671e+01 0.14143850e+01 -0.16386386e+04 0.00000000e+00
- 2 21 68 68 0.30283426e+01 -0.30086751e+01 -0.80659207e+02 0.00000000e+00
- 2 21 68 68 -0.13565749e+00 -0.31110234e+01 -0.37496571e+02 0.00000000e+00
- 2 21 68 68 0.85876832e+00 -0.82906492e+00 -0.57200427e+01 0.00000000e+00
- 2 21 68 68 0.48407081e+01 -0.44586887e+01 -0.21153246e+02 0.00000000e+00
- 2 21 68 68 0.65613729e+00 -0.40588855e+01 -0.48857990e+01 0.00000000e+00
- 2 21 68 68 -0.14670372e+01 -0.23377410e+01 -0.32216750e+01 0.00000000e+00
- 2 21 68 68 -0.10224779e+01 -0.66705004e+01 -0.27263840e+00 0.00000000e+00
- 2 21 68 68 0.46306194e+01 -0.40940914e+01 0.34382435e+02 0.00000000e+00
- 2 21 68 68 0.16872684e+01 -0.11722185e+01 0.22208215e+02 0.00000000e+00
- 2 21 68 68 0.12456135e+01 0.20274017e+01 0.12964674e+02 0.00000000e+00
- 2 21 68 68 0.14670372e+01 0.23377410e+01 0.21727367e+02 0.00000000e+00
- 2 21 68 68 0.53596616e+00 0.74754498e+00 0.28568737e+02 0.00000000e+00
- 2 21 68 68 0.34896830e+01 -0.36275841e+01 0.36003479e+03 0.00000000e+00
- 2 21 68 68 -0.12456135e+01 -0.20274017e+01 0.30562182e+03 0.00000000e+00
- 2 21 68 68 0.65202467e+00 -0.29860371e+00 -0.31700507e-01 0.00000000e+00
- 2 21 68 68 -0.21559110e+01 0.46576294e+00 0.14910959e+01 0.00000000e+00
- 2 21 68 68 -0.18588156e+00 0.10743417e+01 0.38878524e+00 0.00000000e+00
- 2 21 68 68 0.50168896e+00 0.74432366e+00 -0.12595822e+00 0.00000000e+00
- 2 21 68 68 0.87339421e+00 -0.16995131e+00 0.28263589e+02 0.00000000e+00
- 2 21 68 68 0.30087621e+00 -0.70998431e+00 0.24319929e+01 0.00000000e+00
- 2 21 68 68 0.60001530e+00 0.14610392e+01 0.17279971e+02 0.00000000e+00
- 2 2203 68 68 0.22857226e+00 -0.10498395e+01 0.57231099e+04 0.77133000e+00
- 2 -2 145 145 -0.37313507e+00 -0.51071596e+00 -0.81154734e+02 0.33000000e+00
- 2 21 145 145 -0.16116104e+01 -0.30009702e+01 -0.10148345e+03 0.00000000e+00
- 2 21 145 145 0.48386914e+00 -0.20906133e+01 -0.48619823e+02 0.00000000e+00
- 2 21 145 145 -0.15265971e+01 -0.94105595e-01 -0.47109130e+02 0.00000000e+00
- 2 1 145 145 0.47576756e+00 0.12048971e+01 -0.16629858e+03 0.33000000e+00
- 2 -1 154 154 0.29285950e+01 0.20669318e+01 -0.94789323e+03 0.33000000e+00
- 2 2 154 154 -0.13152649e+01 -0.18878561e+00 -0.69985736e+03 0.33000000e+00
- 2 1 159 159 -0.11907867e+00 -0.11539404e+01 0.31219686e+03 0.33000000e+00
- 2 21 159 159 -0.11898984e+01 -0.68195284e+00 0.18319347e+02 0.00000000e+00
- 2 21 159 159 -0.53596616e+00 -0.74754498e+00 0.10881464e+02 0.00000000e+00
- 2 21 159 159 -0.31566671e+01 -0.14143850e+01 0.19835519e+02 0.00000000e+00
- 2 21 159 159 -0.16872684e+01 0.11722185e+01 0.78374446e+01 0.00000000e+00
- 2 21 159 159 -0.46306194e+01 0.40940914e+01 0.22513454e+02 0.00000000e+00
- 2 21 159 159 -0.34896830e+01 0.36275841e+01 0.85830795e+01 0.00000000e+00
- 2 21 159 159 -0.65613729e+00 0.40588855e+01 0.71885236e+01 0.00000000e+00
- 2 21 159 159 0.10224779e+01 0.66705004e+01 0.53483098e+01 0.00000000e+00
- 2 21 159 159 -0.30283426e+01 0.30086751e+01 0.14405105e+01 0.00000000e+00
- 2 21 159 159 0.87322007e+00 -0.44008869e+01 -0.12152085e+02 0.00000000e+00
- 2 21 159 159 0.78025351e+00 -0.91693293e+00 -0.83255821e+00 0.00000000e+00
- 2 21 159 159 0.60881578e+00 -0.59845478e+00 -0.15189452e+02 0.00000000e+00
- 2 21 159 159 0.16878972e+01 -0.49729507e+00 -0.15335183e+03 0.00000000e+00
- 2 21 159 159 0.27420513e+01 -0.20928905e+00 -0.10861626e+03 0.00000000e+00
- 2 21 159 159 0.10871091e+01 -0.76245400e+00 -0.12875365e+02 0.00000000e+00
- 2 21 159 159 0.11392251e+01 -0.56983066e+00 -0.64130231e+01 0.00000000e+00
- 2 2103 159 159 -0.34287403e+00 -0.40166307e+00 -0.18645629e+04 0.77133000e+00
- 2 21 201 201 -0.11687842e+01 -0.14419358e+01 -0.15740100e+02 0.00000000e+00
- 2 21 201 201 0.11898984e+01 0.68195284e+00 -0.25692263e+01 0.00000000e+00
- 2 21 201 201 0.11687842e+01 0.14419358e+01 -0.70429744e+00 0.00000000e+00
- 2 92 69 144 0.16619736e+02 -0.18074857e+02 0.41664419e+04 0.79388660e+04
- 1 211 0 0 -0.68360202e+00 0.35375608e+00 -0.19426944e+02 0.13957000e+00
- 1 -211 0 0 0.19968031e+00 0.36475426e+00 -0.99995468e+01 0.13957000e+00
- 2 331 209 211 -0.20163242e-01 0.16961215e+00 -0.18062159e+02 0.95747388e+00
- 1 321 0 0 -0.22421041e-01 0.43293887e+00 -0.19978065e+02 0.49360000e+00
- 2 3212 212 213 -0.33815433e+00 0.86362808e+00 -0.43662802e+02 0.11925500e+01
- 2 221 214 215 -0.25540132e+00 0.10679617e+01 -0.25440390e+02 0.54745000e+00
- 2 -3122 216 217 -0.44233691e+00 0.43660158e+00 -0.64377803e+02 0.11156800e+01
- 2 -323 218 219 -0.14936574e+01 0.11141967e+01 -0.69583746e+02 0.84930200e+00
- 2 223 220 222 -0.10357062e+01 0.34566880e+01 -0.23485036e+03 0.78312451e+00
- 1 211 0 0 -0.93370331e+00 -0.11930873e+00 -0.73352146e+02 0.13957000e+00
- 2 311 223 223 -0.36255134e+00 0.16026679e+01 -0.13712709e+03 0.49767000e+00
- 2 -323 224 225 0.12293787e+01 -0.24860151e+00 -0.57463762e+03 0.89529678e+00
- 2 113 226 227 0.45326737e+00 0.91110896e+00 -0.20485179e+03 0.93267393e+00
- 2 2224 228 229 0.86869879e+00 -0.36824040e-01 -0.49851301e+03 0.12608955e+01
- 2 221 230 232 0.98456715e-01 -0.74242296e+00 -0.26636252e+02 0.54745000e+00
- 2 -2214 233 234 0.28246905e+00 -0.16720339e+00 -0.13289175e+03 0.12005037e+01
- 2 -213 235 236 0.35438289e+00 0.10055314e+00 -0.10165587e+03 0.85117462e+00
- 2 213 237 238 0.61561296e+00 -0.20660769e+00 -0.15945090e+02 0.92665817e+00
- 2 113 239 240 0.12450640e+01 -0.35428533e+01 -0.54116441e+02 0.80753097e+00
- 2 -213 241 242 0.49234404e+00 -0.61968572e+00 -0.17397779e+02 0.77812629e+00
- 1 211 0 0 0.15570969e+00 -0.81670999e-01 -0.11347067e+02 0.13957000e+00
- 2 113 243 244 0.28109799e+01 -0.29471274e+01 -0.13794982e+02 0.60887171e+00
- 2 221 245 247 -0.23873987e+00 -0.10894083e+01 -0.43525641e+01 0.54745000e+00
- 2 111 248 249 0.34187660e+00 -0.80214047e-01 -0.75500084e+00 0.13498000e+00
- 2 113 250 251 0.12378073e+01 -0.14965511e+01 -0.57711261e+01 0.87834612e+00
- 2 111 252 253 0.24076988e+00 -0.73778756e+00 -0.18809941e+01 0.13498000e+00
- 1 -211 0 0 -0.32066742e-01 -0.26179756e+00 -0.34029447e+00 0.13957000e+00
- 2 111 254 255 0.80938877e+00 -0.30040388e+00 -0.32319315e+01 0.13498000e+00
- 2 323 256 257 -0.87193326e+00 -0.22669242e+01 -0.15044141e+01 0.87050070e+00
- 2 -323 258 259 0.27326057e+00 -0.95782239e+00 -0.17737376e+01 0.94183157e+00
- 1 211 0 0 0.26226647e-01 -0.10399154e+00 0.21157615e-01 0.13957000e+00
- 2 113 260 261 -0.40385632e-01 -0.20176651e+01 -0.11828613e+01 0.74550829e+00
- 2 223 262 263 0.35401147e+00 -0.16407257e+01 -0.15959399e+01 0.78236065e+00
- 1 -211 0 0 0.14870766e+00 -0.11923094e+00 -0.11523029e+00 0.13957000e+00
- 2 331 264 266 -0.46180581e+00 -0.86168141e+00 -0.72431731e+00 0.95741293e+00
- 1 2212 0 0 -0.44634983e+00 -0.78229489e+00 -0.49168741e+00 0.93827000e+00
- 2 221 267 269 -0.21974596e+00 -0.22650989e+00 0.60321073e+00 0.54745000e+00
- 2 -2214 270 271 -0.40679969e-01 -0.27730329e+01 0.79675065e+00 0.12101052e+01
- 1 321 0 0 0.50967177e-01 -0.12005762e+00 -0.82805265e-01 0.49360000e+00
- 1 -321 0 0 -0.10766062e+00 -0.21418086e+00 0.90537477e+00 0.49360000e+00
- 1 211 0 0 0.81161165e+00 -0.64369415e+00 0.61837760e+01 0.13957000e+00
- 2 -213 272 273 0.12867922e+01 -0.13885362e+01 0.10910680e+02 0.10303142e+01
- 2 213 274 275 0.34492071e+01 -0.26527516e+01 0.24947264e+02 0.75939191e+00
- 2 313 276 277 0.84741096e+00 0.21643898e+00 0.11046673e+02 0.80228460e+00
- 2 -323 278 279 0.56202373e+00 0.15187042e+01 0.12676043e+02 0.81704425e+00
- 2 221 280 282 0.43193645e+00 0.52846526e+00 0.92321371e+01 0.54745000e+00
- 2 111 283 284 0.32901570e+00 -0.25153887e+00 0.80609886e+01 0.13498000e+00
- 1 211 0 0 -0.15556099e+00 0.33873264e+00 0.10155653e+02 0.13957000e+00
- 1 2112 0 0 0.11724688e+01 0.58452377e+00 0.17034287e+02 0.93957000e+00
- 1 -2112 0 0 0.27234393e+00 0.80286365e+00 0.12419021e+02 0.93957000e+00
- 2 221 285 286 0.49147211e+00 -0.35356389e+00 0.30091557e+02 0.54745000e+00
- 2 111 287 288 0.32880706e+00 0.18911082e+00 0.61250150e+01 0.13498000e+00
- 1 -211 0 0 0.11164007e+01 -0.59868825e+00 0.13986736e+03 0.13957000e+00
- 1 321 0 0 0.28902668e-01 -0.10008540e+00 0.25946312e+02 0.49360000e+00
- 1 -321 0 0 0.37601991e+00 -0.89991303e+00 0.75620726e+02 0.49360000e+00
- 2 221 289 291 -0.64528372e-01 -0.95511137e+00 0.13437846e+03 0.54745000e+00
- 2 213 292 293 0.60144980e+00 -0.93792215e+00 0.74934527e+02 0.72593694e+00
- 2 -213 294 295 -0.39917158e+00 -0.85991293e+00 0.92989707e+02 0.87550402e+00
- 2 213 296 297 0.65628159e+00 -0.12500533e+00 0.59961010e+02 0.65246591e+00
- 2 -213 298 299 -0.10779434e+01 -0.38304253e+00 0.13989317e+02 0.39650208e+00
- 1 211 0 0 0.11241528e+01 0.16166796e+00 0.33620018e+01 0.13957000e+00
- 2 313 300 301 -0.74195780e+00 -0.34974009e+00 0.14714281e+01 0.87896057e+00
- 2 -313 302 303 -0.42532425e+00 0.65971647e+00 0.22091269e+01 0.95851241e+00
- 1 2112 0 0 0.11423773e+00 0.50544549e+00 0.12301638e+00 0.93957000e+00
- 1 -2212 0 0 -0.10438738e+01 0.66522033e+00 0.87248521e+00 0.93827000e+00
- 1 211 0 0 -0.27972881e+00 0.31460995e+00 0.38524826e+00 0.13957000e+00
- 1 -211 0 0 0.62280933e+00 0.79753879e-01 0.11475780e+01 0.13957000e+00
- 2 111 304 305 0.20150435e+00 -0.34420511e+00 0.55788205e+00 0.13498000e+00
- 1 321 0 0 0.87189326e-01 0.65532738e+00 0.94741122e+00 0.49360000e+00
- 1 -321 0 0 0.91732041e-01 -0.30012570e+00 0.10356986e+02 0.49360000e+00
- 2 213 306 307 0.32447510e+00 -0.32591802e-01 0.33320417e+01 0.79623872e+00
- 2 223 308 310 0.15023394e+00 0.20846265e+00 0.21063756e+02 0.79614983e+00
- 2 113 311 312 0.11501659e+01 0.47911525e+00 0.12080464e+02 0.82257259e+00
- 2 221 313 315 -0.19279326e+00 0.62570553e-02 0.17865034e+03 0.54745000e+00
- 2 2114 316 317 0.24491278e+00 -0.65800536e+00 0.35433073e+04 0.12986669e+01
- 1 211 0 0 -0.11493487e+00 -0.26672080e+00 0.19991294e+04 0.13957000e+00
- 2 92 146 153 -0.25517059e+01 -0.44915080e+01 -0.44466571e+03 0.97927008e+01
- 2 111 318 319 -0.38595509e+00 -0.45597005e+00 -0.24024909e+02 0.13498000e+00
- 1 -2212 0 0 -0.71905647e+00 -0.12919201e+01 -0.70060615e+02 0.93827000e+00
- 2 113 320 321 0.74214104e-01 -0.16010755e+01 -0.61646102e+02 0.68952993e+00
- 2 3122 322 323 -0.12848500e+01 -0.83875495e+00 -0.64981748e+02 0.11156800e+01
- 1 321 0 0 -0.26172360e-01 0.19481787e+00 -0.11904733e+02 0.49360000e+00
- 2 113 324 325 -0.75569873e-01 -0.16948680e+01 -0.55513664e+02 0.72860242e+00
- 2 223 326 328 -0.20876055e+00 0.95695078e+00 -0.10162410e+03 0.77435174e+00
- 2 -213 329 330 0.74444337e-01 0.23931197e+00 -0.54909844e+02 0.73844420e+00
- 2 92 155 158 0.16133300e+01 0.18781462e+01 -0.16477506e+04 0.45615617e+01
- 2 113 331 332 0.69545610e+00 0.61069746e+00 -0.45351993e+03 0.71803468e+00
- 1 211 0 0 0.20253673e+01 0.14611102e+01 -0.61562118e+03 0.13957000e+00
- 1 -211 0 0 -0.57307423e+00 0.15328724e+00 -0.17674412e+03 0.13957000e+00
- 1 211 0 0 -0.53441916e+00 -0.34694871e+00 -0.40186535e+03 0.13957000e+00
- 2 92 160 200 -0.88954851e+01 0.10277325e+02 -0.17598490e+04 0.19139806e+04
- 2 1114 333 334 -0.13655606e+00 -0.11160478e+01 0.24620783e+03 0.11770794e+01
- 2 213 335 336 -0.54191995e+00 -0.21071570e+00 0.37184018e+02 0.78903132e+00
- 2 -2214 337 338 -0.16019990e+00 -0.20324038e+00 0.36830068e+02 0.11870101e+01
- 1 2212 0 0 -0.18412772e+01 -0.94350172e+00 0.13411846e+02 0.93827000e+00
- 2 -213 339 340 -0.11395992e+01 -0.71721875e+00 0.21430876e+02 0.75044372e+00
- 1 -2112 0 0 -0.19914540e+01 0.31857001e+00 0.79757375e+01 0.93957000e+00
- 1 321 0 0 -0.88797474e+00 0.83334543e+00 0.41618040e+01 0.49360000e+00
- 2 -313 341 342 -0.69803192e+00 0.57514295e+00 0.50848225e+01 0.70823048e+00
- 2 113 343 344 -0.28406001e+01 0.22936402e+01 0.14704213e+02 0.72703385e+00
- 2 223 345 347 -0.28943172e+01 0.22019860e+01 0.85875892e+01 0.78111424e+00
- 2 113 348 349 -0.29027584e+00 0.18156383e+01 0.33628470e+01 0.65592979e+00
- 1 2112 0 0 -0.63019465e+00 0.12388332e+01 0.26728274e+01 0.93957000e+00
- 1 -2212 0 0 -0.93201453e+00 0.26446320e+01 0.36749278e+01 0.93827000e+00
- 2 2214 350 351 0.63322630e-01 0.20659914e+01 0.29084397e+01 0.12277623e+01
- 2 213 352 353 -0.32048915e+00 0.14607020e+01 0.12819796e+01 0.53607133e+00
- 1 -2212 0 0 -0.13699666e+01 0.26476550e+01 0.19212624e+01 0.93827000e+00
- 1 -211 0 0 0.56646505e+00 0.19282012e+00 0.61322053e+00 0.13957000e+00
- 2 213 354 355 0.63147583e+00 0.15164493e+01 0.60758397e+00 0.71614956e+00
- 2 313 356 357 -0.12325125e+01 0.10399256e+01 0.10333054e+01 0.81321191e+00
- 2 -323 358 359 0.51504487e-01 0.79406513e-01 -0.97127077e+00 0.87551585e+00
- 2 213 360 361 -0.70157578e+00 -0.16963456e+00 -0.38706189e+00 0.59150737e+00
- 2 -213 362 363 0.40293151e+00 -0.13410470e+00 -0.15747622e+01 0.90388525e+00
- 1 211 0 0 0.47518063e+00 -0.11357711e+01 -0.23773701e+01 0.13957000e+00
- 1 -211 0 0 -0.10047718e+00 0.19896731e+00 -0.57555833e+00 0.13957000e+00
- 2 323 364 365 0.11899324e+00 -0.15947921e+01 -0.43210249e+01 0.83167619e+00
- 1 -321 0 0 0.10715960e+01 -0.11775928e+01 -0.41185819e+01 0.49360000e+00
- 2 323 366 367 -0.25325716e+00 -0.60271722e+00 -0.29030789e+01 0.89610516e+00
- 2 3214 368 369 0.17796113e+01 -0.65210672e+00 -0.11648125e+03 0.13879779e+01
- 2 111 370 371 0.36419992e+00 0.23146078e+00 -0.19345812e+02 0.13498000e+00
- 2 -2214 372 373 0.17826666e+01 -0.55205170e+00 -0.28753210e+02 0.13480318e+01
- 1 2212 0 0 0.22060039e+00 0.64486849e-01 -0.43751315e+02 0.93827000e+00
- 1 -2112 0 0 0.85980166e+00 -0.78906139e+00 -0.48930676e+02 0.93957000e+00
- 2 -213 374 375 0.69792907e+00 -0.24784458e+00 -0.20045318e+02 0.80477902e+00
- 2 2214 376 377 0.13438618e+01 -0.14955299e+00 -0.19906832e+02 0.11191309e+01
- 2 111 378 379 -0.84085098e-01 -0.24128180e-01 -0.21911466e+01 0.13498000e+00
- 2 -2214 380 381 0.11704342e+00 -0.63706496e+00 -0.10006122e+03 0.11986600e+01
- 2 111 382 383 0.30699550e+00 0.51847861e+00 -0.49768930e+02 0.13498000e+00
- 1 211 0 0 -0.26591727e+00 -0.26202677e+00 -0.88688005e+02 0.13957000e+00
- 2 221 384 386 -0.28186390e+00 -0.12981334e-01 -0.42809147e+03 0.54745000e+00
- 1 -211 0 0 -0.67604161e-01 -0.24721940e+00 -0.49222449e+02 0.13957000e+00
- 2 2214 387 388 -0.87500180e-01 -0.81431623e-01 -0.11410378e+04 0.12634517e+01
- 2 92 202 208 0.11898984e+01 0.68195284e+00 -0.19013623e+02 0.81872071e+01
- 2 -2114 389 390 -0.30962279e+00 -0.32863120e+00 -0.33642111e+01 0.12457968e+01
- 2 1114 391 392 0.21404842e+00 -0.86805794e+00 -0.86391463e+01 0.11304738e+01
- 2 213 393 394 -0.34312227e+00 0.24050488e+00 -0.13111101e+01 0.65424077e+00
- 1 -211 0 0 0.28155805e-01 0.22681607e+00 -0.13137203e+01 0.13957000e+00
- 2 113 395 396 0.27158172e+00 -0.24264341e-01 -0.71430397e+00 0.72985227e+00
- 2 213 397 398 0.93080762e+00 0.11426148e+01 -0.15640432e+01 0.76835546e+00
- 2 111 399 400 0.39804994e+00 0.29297057e+00 -0.21070883e+01 0.13498000e+00
- 1 211 0 0 0.45480308e-02 -0.74144714e-01 -0.15780665e+01 0.13957000e+00
- 1 -211 0 0 -0.77706130e-01 -0.20103319e-01 -0.27288009e+01 0.13957000e+00
- 2 221 401 403 0.52994857e-01 0.26386018e+00 -0.13755292e+02 0.54745000e+00
- 2 3122 404 405 -0.34193507e+00 0.73026106e+00 -0.39391897e+02 0.11156800e+01
- 1 22 0 0 0.37807472e-02 0.13336701e+00 -0.42709047e+01 0.00000000e+00
- 1 22 0 0 -0.37602133e-01 0.96192061e+00 -0.18107507e+02 0.00000000e+00
- 1 22 0 0 -0.21779919e+00 0.10604104e+00 -0.73328834e+01 0.00000000e+00
- 1 -2212 0 0 -0.41077095e+00 0.43747312e+00 -0.52554214e+02 0.93827000e+00
- 1 211 0 0 -0.31565956e-01 -0.87154769e-03 -0.11823589e+02 0.13957000e+00
- 2 -311 406 406 -0.13959370e+01 0.85967601e+00 -0.54176048e+02 0.49767000e+00
- 1 -211 0 0 -0.97720387e-01 0.25452068e+00 -0.15407698e+02 0.13957000e+00
- 1 211 0 0 -0.27254828e-01 0.29769449e+00 -0.24533871e+02 0.13957000e+00
- 1 -211 0 0 -0.18975326e+00 0.30815648e+00 -0.22593891e+02 0.13957000e+00
- 2 111 407 408 -0.81869807e+00 0.28508370e+01 -0.18772260e+03 0.13498000e+00
- 1 130 0 0 -0.36255134e+00 0.16026679e+01 -0.13712709e+03 0.49767000e+00
- 1 -321 0 0 0.38245172e+00 -0.23028049e+00 -0.29492470e+03 0.49360000e+00
- 2 111 409 410 0.84692701e+00 -0.18321020e-01 -0.27971292e+03 0.13498000e+00
- 1 211 0 0 -0.21241021e+00 0.51777137e+00 -0.10337553e+03 0.13957000e+00
- 1 -211 0 0 0.66567758e+00 0.39333760e+00 -0.10147626e+03 0.13957000e+00
- 1 2212 0 0 0.42079467e+00 -0.15984955e+00 -0.35978624e+03 0.93827000e+00
- 1 211 0 0 0.44790412e+00 0.12302551e+00 -0.13872677e+03 0.13957000e+00
- 2 111 411 412 0.91760796e-01 -0.42625713e+00 -0.18081872e+02 0.13498000e+00
- 2 111 413 414 -0.28169055e-01 -0.13369168e+00 -0.38357741e+01 0.13498000e+00
- 2 111 415 416 0.34864973e-01 -0.18247415e+00 -0.47186061e+01 0.13498000e+00
- 1 -2212 0 0 0.30975365e+00 -0.25730893e-01 -0.91109383e+02 0.93827000e+00
- 2 111 417 418 -0.27284600e-01 -0.14147250e+00 -0.41782363e+02 0.13498000e+00
- 1 -211 0 0 0.46652398e+00 -0.20027951e+00 -0.43473109e+02 0.13957000e+00
- 2 111 419 420 -0.11214109e+00 0.30083265e+00 -0.58182763e+02 0.13498000e+00
- 1 211 0 0 0.41778511e+00 0.10582004e+00 -0.13580560e+02 0.13957000e+00
- 2 111 421 422 0.19782785e+00 -0.31242774e+00 -0.23645293e+01 0.13498000e+00
- 1 211 0 0 0.54944501e+00 -0.16317064e+01 -0.19587183e+02 0.13957000e+00
- 1 -211 0 0 0.69561900e+00 -0.19111469e+01 -0.34529259e+02 0.13957000e+00
- 1 -211 0 0 0.12336900e+00 0.10982064e+00 -0.17281676e+01 0.13957000e+00
- 2 111 423 424 0.36897504e+00 -0.72950637e+00 -0.15669611e+02 0.13498000e+00
- 1 211 0 0 0.29092561e+00 -0.53728295e+00 -0.22500816e+01 0.13957000e+00
- 1 -211 0 0 0.25200543e+01 -0.24098444e+01 -0.11544900e+02 0.13957000e+00
- 2 111 425 426 0.29373867e-02 -0.31557057e+00 -0.12350897e+01 0.13498000e+00
- 2 111 427 428 0.32740999e-02 -0.35929727e+00 -0.10670751e+01 0.13498000e+00
- 2 111 429 430 -0.24495135e+00 -0.41454047e+00 -0.20503994e+01 0.13498000e+00
- 1 22 0 0 0.16102973e+00 -0.31481952e-01 -0.20532897e+00 0.00000000e+00
- 1 22 0 0 0.18084688e+00 -0.48732095e-01 -0.54967187e+00 0.00000000e+00
- 1 -211 0 0 0.10821392e+01 -0.14390113e+01 -0.42804451e+01 0.13957000e+00
- 1 211 0 0 0.15566814e+00 -0.57539784e-01 -0.14906810e+01 0.13957000e+00
- 1 22 0 0 0.65408587e-01 -0.15888206e+00 -0.57271578e+00 0.00000000e+00
- 1 22 0 0 0.17536129e+00 -0.57890550e+00 -0.13082783e+01 0.00000000e+00
- 1 22 0 0 0.19512284e+00 -0.17787483e-01 -0.64161311e+00 0.00000000e+00
- 1 22 0 0 0.61426593e+00 -0.28261640e+00 -0.25903184e+01 0.00000000e+00
- 2 311 431 431 -0.89876033e+00 -0.16659580e+01 -0.10601375e+01 0.49767000e+00
- 1 211 0 0 0.26827077e-01 -0.60096615e+00 -0.44427654e+00 0.13957000e+00
- 2 -311 432 432 0.15073050e+00 -0.22032477e+00 -0.10480115e+01 0.49767000e+00
- 1 -211 0 0 0.12253007e+00 -0.73749762e+00 -0.72572605e+00 0.13957000e+00
- 1 211 0 0 -0.28777037e+00 -0.16750063e+01 -0.96838479e+00 0.13957000e+00
- 1 -211 0 0 0.24738474e+00 -0.34265877e+00 -0.21447651e+00 0.13957000e+00
- 1 211 0 0 0.54748601e+00 -0.10982729e+01 -0.88651930e+00 0.13957000e+00
- 1 -211 0 0 -0.19347453e+00 -0.54245274e+00 -0.70942060e+00 0.13957000e+00
- 1 211 0 0 -0.55101096e-03 -0.10610785e+00 -0.90090037e-02 0.13957000e+00
- 1 -211 0 0 -0.16830549e+00 -0.13165266e+00 -0.31578065e+00 0.13957000e+00
- 2 221 433 434 -0.29294932e+00 -0.62392089e+00 -0.39952766e+00 0.54745000e+00
- 2 111 435 436 -0.11758661e+00 0.18080939e-01 0.35112188e+00 0.13498000e+00
- 2 111 437 438 -0.12543786e-01 -0.15177350e+00 0.19970320e+00 0.13498000e+00
- 2 111 439 440 -0.89615564e-01 -0.92817330e-01 0.52385649e-01 0.13498000e+00
- 1 -2212 0 0 0.65480800e-01 -0.26456146e+01 0.69711609e+00 0.93827000e+00
- 2 111 441 442 -0.10616077e+00 -0.12741823e+00 0.99634554e-01 0.13498000e+00
- 1 -211 0 0 0.11389988e+01 -0.15281162e+01 0.96153021e+01 0.13957000e+00
- 2 111 443 444 0.14779336e+00 0.13957999e+00 0.12953780e+01 0.13498000e+00
- 1 211 0 0 0.31400912e+01 -0.21757695e+01 0.21015140e+02 0.13957000e+00
- 2 111 445 446 0.30911590e+00 -0.47698203e+00 0.39321241e+01 0.13498000e+00
- 1 321 0 0 0.35941556e+00 0.15685321e+00 0.45437829e+01 0.49360000e+00
- 1 -211 0 0 0.48799540e+00 0.59585773e-01 0.65028897e+01 0.13957000e+00
- 2 -311 447 447 0.50739161e+00 0.13838745e+01 0.11977209e+02 0.49767000e+00
- 1 -211 0 0 0.54632118e-01 0.13482969e+00 0.69883359e+00 0.13957000e+00
- 1 22 0 0 0.17312579e-01 0.15951797e+00 0.28919111e+01 0.00000000e+00
- 1 -211 0 0 0.15075895e+00 0.24794102e-01 0.28166285e+01 0.13957000e+00
- 1 211 0 0 0.26386492e+00 0.34415319e+00 0.35235976e+01 0.13957000e+00
- 1 22 0 0 0.26612428e+00 -0.20397902e+00 0.52756550e+01 0.00000000e+00
- 1 22 0 0 0.62891424e-01 -0.47559854e-01 0.27853336e+01 0.00000000e+00
- 1 22 0 0 -0.85904346e-01 -0.40110152e-02 0.86958054e+01 0.00000000e+00
- 1 22 0 0 0.57737646e+00 -0.34955287e+00 0.21395752e+02 0.00000000e+00
- 1 22 0 0 0.81341215e-01 0.12125435e+00 0.22289012e+01 0.00000000e+00
- 1 22 0 0 0.24746585e+00 0.67856472e-01 0.38961138e+01 0.00000000e+00
- 1 -211 0 0 0.10138158e+00 -0.52145459e+00 0.66054950e+02 0.13957000e+00
- 1 211 0 0 -0.95968770e-01 -0.25911023e+00 0.45993125e+02 0.13957000e+00
- 2 111 448 449 -0.69941180e-01 -0.17454655e+00 0.22330385e+02 0.13498000e+00
- 1 211 0 0 0.98104471e-01 -0.71464259e+00 0.49702438e+02 0.13957000e+00
- 2 111 450 451 0.50334533e+00 -0.22327957e+00 0.25232090e+02 0.13498000e+00
- 1 -211 0 0 0.10701540e-01 -0.71095807e+00 0.37012366e+02 0.13957000e+00
- 2 111 452 453 -0.40987312e+00 -0.14895485e+00 0.55977340e+02 0.13498000e+00
- 1 211 0 0 0.65126296e+00 -0.15637134e+00 0.33903482e+02 0.13957000e+00
- 2 111 454 455 0.50186338e-02 0.31366011e-01 0.26057528e+02 0.13498000e+00
- 1 -211 0 0 -0.15932659e+00 -0.17373858e-01 0.25825467e+01 0.13957000e+00
- 2 111 456 457 -0.91861677e+00 -0.36566867e+00 0.11406771e+02 0.13498000e+00
- 1 321 0 0 -0.83782042e+00 -0.34742043e+00 0.12491653e+01 0.49360000e+00
- 1 -211 0 0 0.95862621e-01 -0.23196557e-02 0.22226281e+00 0.13957000e+00
- 1 -321 0 0 -0.49673688e-01 0.66245920e+00 0.16365617e+01 0.49360000e+00
- 1 211 0 0 -0.37565056e+00 -0.27427255e-02 0.57256522e+00 0.13957000e+00
- 1 22 0 0 0.81086911e-01 -0.25777427e+00 0.39650696e+00 0.00000000e+00
- 1 22 0 0 0.12041743e+00 -0.86430835e-01 0.16137509e+00 0.00000000e+00
- 1 211 0 0 0.38078131e-02 -0.23350443e+00 0.25271508e+01 0.13957000e+00
- 2 111 458 459 0.32066729e+00 0.20091262e+00 0.80489092e+00 0.13498000e+00
- 1 211 0 0 0.10525313e+00 0.58650910e-01 0.15930368e+01 0.13957000e+00
- 1 -211 0 0 0.29405909e-01 0.24525901e+00 0.85427560e+01 0.13957000e+00
- 2 111 460 461 0.15574904e-01 -0.95447269e-01 0.10927963e+02 0.13498000e+00
- 1 -211 0 0 0.10194065e+01 0.65733768e+00 0.93396545e+01 0.13957000e+00
- 1 211 0 0 0.13075940e+00 -0.17822244e+00 0.27408098e+01 0.13957000e+00
- 2 111 462 463 -0.83226266e-01 -0.14399897e+00 0.65986141e+02 0.13498000e+00
- 2 111 464 465 -0.94833646e-01 0.13737671e+00 0.52198939e+02 0.13498000e+00
- 2 111 466 467 -0.14733345e-01 0.12879312e-01 0.60465257e+02 0.13498000e+00
- 1 2212 0 0 -0.39995489e-01 -0.27466769e+00 0.23177771e+04 0.93827000e+00
- 1 -211 0 0 0.28490826e+00 -0.38333767e+00 0.12255302e+04 0.13957000e+00
- 1 22 0 0 -0.20748936e+00 -0.14846343e+00 -0.10949181e+02 0.00000000e+00
- 1 22 0 0 -0.17846573e+00 -0.30750661e+00 -0.13075728e+02 0.00000000e+00
- 1 -211 0 0 -0.18674601e+00 -0.33013534e+00 -0.20552634e+02 0.13957000e+00
- 1 211 0 0 0.26096011e+00 -0.12709401e+01 -0.41093468e+02 0.13957000e+00
- 1 2212 0 0 -0.93888886e+00 -0.64625817e+00 -0.49690605e+02 0.93827000e+00
- 1 -211 0 0 -0.34596117e+00 -0.19249678e+00 -0.15291143e+02 0.13957000e+00
- 1 -211 0 0 0.13830408e-02 -0.14978479e+01 -0.39406169e+02 0.13957000e+00
- 1 211 0 0 -0.76952914e-01 -0.19702015e+00 -0.16107495e+02 0.13957000e+00
- 1 211 0 0 -0.21386389e+00 0.52689487e+00 -0.39691113e+02 0.13957000e+00
- 1 -211 0 0 0.15993262e-01 0.44297576e+00 -0.36069050e+02 0.13957000e+00
- 2 111 468 469 -0.10889923e-01 -0.12919852e-01 -0.25863935e+02 0.13498000e+00
- 1 -211 0 0 0.93478899e-01 0.28242117e+00 -0.52646786e+02 0.13957000e+00
- 2 111 470 471 -0.19034562e-01 -0.43109202e-01 -0.22630578e+01 0.13498000e+00
- 1 -211 0 0 0.26579298e+00 0.14182042e+00 -0.29355029e+03 0.13957000e+00
- 1 211 0 0 0.42966312e+00 0.46887704e+00 -0.15996964e+03 0.13957000e+00
- 1 2112 0 0 -0.86603538e-01 -0.10876325e+01 0.23430260e+03 0.93957000e+00
- 1 -211 0 0 -0.49952518e-01 -0.28415250e-01 0.11905224e+02 0.13957000e+00
- 1 211 0 0 0.17580970e+00 -0.78578403e-01 0.92828468e+01 0.13957000e+00
- 2 111 472 473 -0.71772965e+00 -0.13213729e+00 0.27901172e+02 0.13498000e+00
- 1 -2212 0 0 -0.22425394e+00 -0.12044612e-01 0.27652740e+02 0.93827000e+00
- 2 111 474 475 0.64054036e-01 -0.19119577e+00 0.91773287e+01 0.13498000e+00
- 1 -211 0 0 -0.43631698e+00 0.20996094e-01 0.95232470e+01 0.13957000e+00
- 2 111 476 477 -0.70328219e+00 -0.73821484e+00 0.11907629e+02 0.13498000e+00
- 2 -311 478 478 -0.57515307e+00 0.30868081e+00 0.38569857e+01 0.49767000e+00
- 2 111 479 480 -0.12287885e+00 0.26646214e+00 0.12278368e+01 0.13498000e+00
- 1 211 0 0 -0.26574167e+01 0.19504223e+01 0.13388112e+02 0.13957000e+00
- 1 -211 0 0 -0.18318346e+00 0.34321790e+00 0.13161007e+01 0.13957000e+00
- 1 -211 0 0 -0.76431489e+00 0.89514119e+00 0.28488345e+01 0.13957000e+00
- 1 211 0 0 -0.43094936e+00 0.34366297e+00 0.11073880e+01 0.13957000e+00
- 2 111 481 482 -0.16990529e+01 0.96318184e+00 0.46313667e+01 0.13498000e+00
- 1 -211 0 0 -0.11965890e+00 0.16654329e+01 0.27533157e+01 0.13957000e+00
- 1 211 0 0 -0.17061694e+00 0.15020546e+00 0.60953130e+00 0.13957000e+00
- 1 2212 0 0 -0.75856112e-01 0.15734465e+01 0.19372563e+01 0.93827000e+00
- 2 111 483 484 0.13917874e+00 0.49254488e+00 0.97118345e+00 0.13498000e+00
- 1 211 0 0 -0.15186286e-01 0.61285549e+00 0.77731394e+00 0.13957000e+00
- 2 111 485 486 -0.30530287e+00 0.84784655e+00 0.50466564e+00 0.13498000e+00
- 1 211 0 0 0.56950382e-01 0.16086781e+00 0.31589970e+00 0.13957000e+00
- 2 111 487 488 0.57452545e+00 0.13555815e+01 0.29168427e+00 0.13498000e+00
- 2 311 489 489 -0.48418890e+00 0.37355868e+00 0.36542809e+00 0.49767000e+00
- 2 111 490 491 -0.74832365e+00 0.66636688e+00 0.66787729e+00 0.13498000e+00
- 2 -311 492 492 0.15302359e+00 0.15520422e+00 -0.31450263e+00 0.49767000e+00
- 1 -211 0 0 -0.10151910e+00 -0.75797706e-01 -0.65676814e+00 0.13957000e+00
- 1 211 0 0 -0.18115081e+00 -0.30194513e+00 -0.13744069e+00 0.13957000e+00
- 2 111 493 494 -0.52042497e+00 0.13231057e+00 -0.24962120e+00 0.13498000e+00
- 1 -211 0 0 -0.19701162e+00 0.15842863e+00 -0.69196800e+00 0.13957000e+00
- 2 111 495 496 0.59994314e+00 -0.29253333e+00 -0.88279422e+00 0.13498000e+00
- 1 321 0 0 0.21332476e+00 -0.80614475e+00 -0.19449300e+01 0.49360000e+00
- 2 111 497 498 -0.94331526e-01 -0.78864732e+00 -0.23760949e+01 0.13498000e+00
- 2 311 499 499 -0.79797369e-01 -0.70278997e+00 -0.22935129e+01 0.49767000e+00
- 1 211 0 0 -0.17345979e+00 0.10007275e+00 -0.60956603e+00 0.13957000e+00
- 2 3122 500 501 0.11448591e+01 -0.55960856e+00 -0.83992770e+02 0.11156800e+01
- 2 111 502 503 0.63475220e+00 -0.92498157e-01 -0.32488478e+02 0.13498000e+00
- 1 22 0 0 0.25998509e+00 0.12073784e+00 -0.14702115e+02 0.00000000e+00
- 1 22 0 0 0.10421483e+00 0.11072295e+00 -0.46436968e+01 0.00000000e+00
- 1 -2212 0 0 0.17576312e+01 -0.67148135e+00 -0.25294341e+02 0.93827000e+00
- 2 111 504 505 0.25035475e-01 0.11942965e+00 -0.34588684e+01 0.13498000e+00
- 1 -211 0 0 0.68193705e+00 -0.31694757e+00 -0.10200172e+02 0.13957000e+00
- 2 111 506 507 0.15992018e-01 0.69102983e-01 -0.98451459e+01 0.13498000e+00
- 1 2212 0 0 0.10157020e+01 -0.39902837e-01 -0.15495767e+02 0.93827000e+00
- 2 111 508 509 0.32815982e+00 -0.10965015e+00 -0.44110653e+01 0.13498000e+00
- 1 22 0 0 -0.42730887e-01 -0.50390686e-01 -0.41549207e+00 0.00000000e+00
- 1 22 0 0 -0.41354212e-01 0.26262506e-01 -0.17756545e+01 0.00000000e+00
- 1 -2212 0 0 0.15062366e+00 -0.44503188e+00 -0.91423175e+02 0.93827000e+00
- 2 111 510 511 -0.33580244e-01 -0.19203309e+00 -0.86380454e+01 0.13498000e+00
- 1 22 0 0 0.67591559e-01 0.97170877e-01 -0.61511683e+01 0.00000000e+00
- 1 22 0 0 0.23940394e+00 0.42130774e+00 -0.43617762e+02 0.00000000e+00
- 1 211 0 0 -0.25285255e+00 0.10207633e+00 -0.20314833e+03 0.13957000e+00
- 1 -211 0 0 -0.47052516e-01 -0.77836823e-01 -0.13125201e+03 0.13957000e+00
- 2 111 512 513 0.18041163e-01 -0.37220841e-01 -0.93691136e+02 0.13498000e+00
- 1 2212 0 0 -0.58471353e-01 -0.53303608e-02 -0.11001732e+04 0.93827000e+00
- 2 111 514 515 -0.29028828e-01 -0.76101262e-01 -0.40864593e+02 0.13498000e+00
- 1 -2112 0 0 -0.45386134e+00 -0.14890580e+00 -0.27910909e+01 0.93957000e+00
- 2 111 516 517 0.14423856e+00 -0.17972541e+00 -0.57312026e+00 0.13498000e+00
- 1 2112 0 0 0.58774115e-01 -0.70947786e+00 -0.69978297e+01 0.93957000e+00
- 1 -211 0 0 0.15527431e+00 -0.15858008e+00 -0.16413166e+01 0.13957000e+00
- 1 211 0 0 -0.20363446e+00 0.24517995e+00 -0.21103401e+00 0.13957000e+00
- 2 111 518 519 -0.13948781e+00 -0.46750737e-02 -0.11000761e+01 0.13498000e+00
- 1 -211 0 0 0.44917305e+00 0.14991988e+00 -0.46462772e+00 0.13957000e+00
- 1 211 0 0 -0.17759133e+00 -0.17418422e+00 -0.24967624e+00 0.13957000e+00
- 1 211 0 0 0.36081979e+00 0.70941085e+00 -0.12510173e+01 0.13957000e+00
- 2 111 520 521 0.56998783e+00 0.43320396e+00 -0.31302585e+00 0.13498000e+00
- 1 22 0 0 0.14603772e+00 0.18481202e+00 -0.10821891e+01 0.00000000e+00
- 1 22 0 0 0.25201222e+00 0.10815856e+00 -0.10248992e+01 0.00000000e+00
- 2 111 522 524 -0.89764410e-03 0.82672900e-03 -0.14856818e+01 0.13498000e+00
- 2 111 525 526 0.11727789e+00 0.18702272e+00 -0.75726725e+01 0.13498000e+00
- 2 111 527 528 -0.63385387e-01 0.76010733e-01 -0.46969375e+01 0.13498000e+00
- 1 2112 0 0 -0.24403041e+00 0.60139579e+00 -0.35480777e+02 0.93957000e+00
- 2 111 529 530 -0.97904664e-01 0.12886528e+00 -0.39111209e+01 0.13498000e+00
- 1 130 0 0 -0.13959370e+01 0.85967601e+00 -0.54176048e+02 0.49767000e+00
- 1 22 0 0 -0.74065393e+00 0.24873306e+01 -0.16643096e+03 0.00000000e+00
- 1 22 0 0 -0.78044135e-01 0.36350639e+00 -0.21291642e+02 0.00000000e+00
- 1 22 0 0 0.60182219e+00 0.28134834e-01 -0.21189568e+03 0.00000000e+00
- 1 22 0 0 0.24510482e+00 -0.46455855e-01 -0.67817240e+02 0.00000000e+00
- 1 22 0 0 0.58113817e-01 -0.63629552e-01 -0.47741479e+01 0.00000000e+00
- 1 22 0 0 0.33646979e-01 -0.36262758e+00 -0.13307724e+02 0.00000000e+00
- 1 22 0 0 -0.44258340e-01 -0.15723186e+00 -0.31999404e+01 0.00000000e+00
- 1 22 0 0 0.16089286e-01 0.23540177e-01 -0.63583373e+00 0.00000000e+00
- 1 22 0 0 0.96471314e-03 -0.11907837e+00 -0.40462425e+01 0.00000000e+00
- 1 22 0 0 0.33900260e-01 -0.63395778e-01 -0.67236357e+00 0.00000000e+00
- 1 22 0 0 -0.81397814e-01 -0.71146004e-01 -0.21334561e+02 0.00000000e+00
- 1 22 0 0 0.54113214e-01 -0.70326495e-01 -0.20447802e+02 0.00000000e+00
- 1 22 0 0 -0.13588572e+00 0.22687204e+00 -0.39826236e+02 0.00000000e+00
- 1 22 0 0 0.23744621e-01 0.73960615e-01 -0.18356527e+02 0.00000000e+00
- 1 22 0 0 0.14059165e+00 -0.20788665e+00 -0.19388520e+01 0.00000000e+00
- 1 22 0 0 0.57236200e-01 -0.10454108e+00 -0.42567727e+00 0.00000000e+00
- 1 22 0 0 0.56220910e-01 -0.17311369e+00 -0.44881226e+01 0.00000000e+00
- 1 22 0 0 0.31275413e+00 -0.55639268e+00 -0.11181489e+02 0.00000000e+00
- 1 22 0 0 -0.29967699e-01 -0.97703635e-01 -0.62365753e+00 0.00000000e+00
- 1 22 0 0 0.32905086e-01 -0.21786694e+00 -0.61143212e+00 0.00000000e+00
- 1 22 0 0 -0.22488179e-01 -0.15712386e+00 -0.65929750e+00 0.00000000e+00
- 1 22 0 0 0.25762279e-01 -0.20217341e+00 -0.40777756e+00 0.00000000e+00
- 1 22 0 0 -0.24440522e+00 -0.31946313e+00 -0.17387062e+01 0.00000000e+00
- 1 22 0 0 -0.54613067e-03 -0.95077342e-01 -0.31169315e+00 0.00000000e+00
- 2 310 531 532 -0.89876033e+00 -0.16659580e+01 -0.10601375e+01 0.49767000e+00
- 2 310 533 534 0.15073050e+00 -0.22032477e+00 -0.10480115e+01 0.49767000e+00
- 1 22 0 0 -0.21660753e+00 -0.23975331e-01 0.36650466e-01 0.00000000e+00
- 1 22 0 0 -0.76341783e-01 -0.59994556e+00 -0.43617813e+00 0.00000000e+00
- 1 22 0 0 -0.97992166e-01 -0.48345517e-01 0.23824550e+00 0.00000000e+00
- 1 22 0 0 -0.19594441e-01 0.66426456e-01 0.11287639e+00 0.00000000e+00
- 1 22 0 0 -0.58944425e-01 -0.14201267e+00 0.16975173e+00 0.00000000e+00
- 1 22 0 0 0.46400639e-01 -0.97608227e-02 0.29951472e-01 0.00000000e+00
- 1 22 0 0 0.24949781e-01 -0.59061373e-01 0.15626087e-02 0.00000000e+00
- 1 22 0 0 -0.11456534e+00 -0.33755957e-01 0.50823040e-01 0.00000000e+00
- 1 22 0 0 -0.99314375e-02 -0.89732038e-01 -0.29001581e-02 0.00000000e+00
- 1 22 0 0 -0.96229331e-01 -0.37686195e-01 0.10253471e+00 0.00000000e+00
- 1 22 0 0 0.10839603e+00 0.60638388e-01 0.41004841e+00 0.00000000e+00
- 1 22 0 0 0.39397333e-01 0.78941597e-01 0.88532955e+00 0.00000000e+00
- 1 22 0 0 0.68603843e-01 -0.26781499e-01 0.46849703e+00 0.00000000e+00
- 1 22 0 0 0.24051206e+00 -0.45020053e+00 0.34636271e+01 0.00000000e+00
- 2 310 535 536 0.50739161e+00 0.13838745e+01 0.11977209e+02 0.49767000e+00
- 1 22 0 0 -0.58350974e-01 -0.26515578e-01 0.11540850e+02 0.00000000e+00
- 1 22 0 0 -0.11590206e-01 -0.14803097e+00 0.10789534e+02 0.00000000e+00
- 1 22 0 0 0.47154877e+00 -0.18536982e+00 0.21146997e+02 0.00000000e+00
- 1 22 0 0 0.31796558e-01 -0.37909748e-01 0.40850923e+01 0.00000000e+00
- 1 22 0 0 -0.53006376e-01 -0.49170947e-02 0.13891326e+02 0.00000000e+00
- 1 22 0 0 -0.35686675e+00 -0.14403776e+00 0.42086014e+02 0.00000000e+00
- 1 22 0 0 -0.14553042e-01 -0.11878595e-02 0.31249656e+00 0.00000000e+00
- 1 22 0 0 0.19571676e-01 0.32553871e-01 0.25745031e+02 0.00000000e+00
- 1 22 0 0 -0.37449073e+00 -0.14942919e+00 0.54323158e+01 0.00000000e+00
- 1 22 0 0 -0.54412604e+00 -0.21623948e+00 0.59744548e+01 0.00000000e+00
- 1 22 0 0 0.22574112e+00 0.20511859e+00 0.64744193e+00 0.00000000e+00
- 1 22 0 0 0.94926165e-01 -0.42059693e-02 0.15744899e+00 0.00000000e+00
- 1 22 0 0 0.55466986e-01 -0.73276422e-02 0.63127947e+01 0.00000000e+00
- 1 22 0 0 -0.39892083e-01 -0.88119627e-01 0.46151681e+01 0.00000000e+00
- 1 22 0 0 -0.10607521e+00 -0.12712582e+00 0.62875278e+02 0.00000000e+00
- 1 22 0 0 0.22848940e-01 -0.16873149e-01 0.31108625e+01 0.00000000e+00
- 1 22 0 0 -0.83516540e-01 0.11230627e+00 0.50674692e+02 0.00000000e+00
- 1 22 0 0 -0.11317105e-01 0.25070444e-01 0.15242475e+01 0.00000000e+00
- 1 22 0 0 -0.55096580e-01 0.46711791e-02 0.11190130e+02 0.00000000e+00
- 1 22 0 0 0.40363235e-01 0.82081330e-02 0.49275127e+02 0.00000000e+00
- 1 22 0 0 -0.14170100e-01 -0.73745166e-01 -0.14529233e+02 0.00000000e+00
- 1 22 0 0 0.32801769e-02 0.60825314e-01 -0.11334702e+02 0.00000000e+00
- 1 22 0 0 -0.80928802e-02 0.19764978e-01 -0.18008333e+01 0.00000000e+00
- 1 22 0 0 -0.10941682e-01 -0.62874180e-01 -0.46222452e+00 0.00000000e+00
- 1 22 0 0 -0.47107901e+00 -0.48005801e-01 0.15946073e+02 0.00000000e+00
- 1 22 0 0 -0.24665064e+00 -0.84131492e-01 0.11955099e+02 0.00000000e+00
- 1 22 0 0 0.31433462e-01 -0.16625780e+00 0.47429870e+01 0.00000000e+00
- 1 22 0 0 0.32620574e-01 -0.24937972e-01 0.44343417e+01 0.00000000e+00
- 1 22 0 0 -0.40744748e-01 -0.96862384e-02 0.64946576e+00 0.00000000e+00
- 1 22 0 0 -0.66253744e+00 -0.72852860e+00 0.11258163e+02 0.00000000e+00
- 2 310 537 538 -0.57515307e+00 0.30868081e+00 0.38569857e+01 0.49767000e+00
- 1 22 0 0 -0.94502008e-02 0.33710727e-03 0.24243597e+00 0.00000000e+00
- 1 22 0 0 -0.11342864e+00 0.26612503e+00 0.98540083e+00 0.00000000e+00
- 1 22 0 0 -0.15754056e+00 0.48734954e-01 0.35992891e+00 0.00000000e+00
- 1 22 0 0 -0.15415123e+01 0.91444689e+00 0.42714378e+01 0.00000000e+00
- 1 22 0 0 -0.17208172e-01 0.16759186e+00 0.32462174e+00 0.00000000e+00
- 1 22 0 0 0.15638691e+00 0.32495301e+00 0.64656172e+00 0.00000000e+00
- 1 22 0 0 -0.38017347e-01 0.12543688e+00 0.22805806e-01 0.00000000e+00
- 1 22 0 0 -0.26728552e+00 0.72240968e+00 0.48185984e+00 0.00000000e+00
- 1 22 0 0 0.19194845e+00 0.43763317e+00 0.30925592e-01 0.00000000e+00
- 1 22 0 0 0.38257700e+00 0.91794833e+00 0.26075867e+00 0.00000000e+00
- 2 310 539 540 -0.48418890e+00 0.37355868e+00 0.36542809e+00 0.49767000e+00
- 1 22 0 0 -0.54113048e+00 0.54953517e+00 0.47770927e+00 0.00000000e+00
- 1 22 0 0 -0.20719317e+00 0.11683172e+00 0.19016802e+00 0.00000000e+00
- 2 310 541 542 0.15302359e+00 0.15520422e+00 -0.31450263e+00 0.49767000e+00
- 1 22 0 0 -0.47171387e+00 0.79861566e-01 -0.19220458e+00 0.00000000e+00
- 1 22 0 0 -0.48711098e-01 0.52449003e-01 -0.57416618e-01 0.00000000e+00
- 1 22 0 0 0.40765920e+00 -0.14799640e+00 -0.49036265e+00 0.00000000e+00
- 1 22 0 0 0.19228393e+00 -0.14453693e+00 -0.39243156e+00 0.00000000e+00
- 1 22 0 0 -0.51379363e-01 -0.70215899e+00 -0.21703749e+01 0.00000000e+00
- 1 22 0 0 -0.42952163e-01 -0.86488337e-01 -0.20571994e+00 0.00000000e+00
- 1 130 0 0 -0.79797369e-01 -0.70278997e+00 -0.22935129e+01 0.49767000e+00
- 1 2212 0 0 0.97254212e+00 -0.42344500e+00 -0.65985742e+02 0.93827000e+00
- 1 -211 0 0 0.17231698e+00 -0.13616356e+00 -0.18007028e+02 0.13957000e+00
- 1 22 0 0 0.31436495e-01 -0.37278768e-01 -0.29074521e+01 0.00000000e+00
- 1 22 0 0 0.60331571e+00 -0.55219389e-01 -0.29581026e+02 0.00000000e+00
- 1 22 0 0 0.26667916e-01 0.25405942e-01 -0.24806198e+01 0.00000000e+00
- 1 22 0 0 -0.16324402e-02 0.94023711e-01 -0.97824856e+00 0.00000000e+00
- 1 22 0 0 0.20406235e-01 0.59977349e-01 -0.97929792e+01 0.00000000e+00
- 1 22 0 0 -0.44142162e-02 0.91256346e-02 -0.52166648e-01 0.00000000e+00
- 1 22 0 0 0.32762076e+00 -0.11330582e+00 -0.38451409e+01 0.00000000e+00
- 1 22 0 0 0.53905776e-03 0.36556696e-02 -0.56592446e+00 0.00000000e+00
- 1 22 0 0 -0.26053280e-03 0.58814577e-02 -0.24364107e+01 0.00000000e+00
- 1 22 0 0 -0.33319712e-01 -0.19791454e+00 -0.62016347e+01 0.00000000e+00
- 1 22 0 0 -0.31259206e-01 -0.39842541e-01 -0.80206301e+02 0.00000000e+00
- 1 22 0 0 0.49300369e-01 0.26217002e-02 -0.13484835e+02 0.00000000e+00
- 1 22 0 0 -0.82655015e-01 -0.54694573e-01 -0.27746937e+02 0.00000000e+00
- 1 22 0 0 0.53626187e-01 -0.21406689e-01 -0.13117657e+02 0.00000000e+00
- 1 22 0 0 0.82468248e-01 -0.11674579e+00 -0.49237109e+00 0.00000000e+00
- 1 22 0 0 0.61770309e-01 -0.62979621e-01 -0.80749174e-01 0.00000000e+00
- 1 22 0 0 -0.14103386e+00 -0.39783589e-01 -0.68395765e+00 0.00000000e+00
- 1 22 0 0 0.15460523e-02 0.35108515e-01 -0.41611848e+00 0.00000000e+00
- 1 22 0 0 0.32654985e+00 0.16841278e+00 -0.18300622e+00 0.00000000e+00
- 1 22 0 0 0.24343798e+00 0.26479118e+00 -0.13001964e+00 0.00000000e+00
- 1 22 0 0 0.61845109e-01 -0.23017974e-01 -0.61308584e+00 0.00000000e+00
- 1 -11 0 0 -0.22265213e-01 0.84572935e-02 -0.30716304e+00 0.51000000e-03
- 1 11 0 0 -0.40477540e-01 0.15387409e-01 -0.56543289e+00 0.51000000e-03
- 1 22 0 0 0.84112685e-01 0.13686408e+00 -0.68619191e+01 0.00000000e+00
- 1 22 0 0 0.33165203e-01 0.50158641e-01 -0.71075346e+00 0.00000000e+00
- 1 22 0 0 -0.91091881e-01 0.16725592e-01 -0.34715699e+01 0.00000000e+00
- 1 22 0 0 0.27706493e-01 0.59285141e-01 -0.12253676e+01 0.00000000e+00
- 1 22 0 0 -0.12007876e+00 0.10419172e+00 -0.23748943e+01 0.00000000e+00
- 1 22 0 0 0.22174092e-01 0.24673553e-01 -0.15362266e+01 0.00000000e+00
- 2 111 543 544 -0.70061556e+00 -0.14028922e+01 -0.70997790e+00 0.13498000e+00
- 2 111 545 546 -0.19814477e+00 -0.26306585e+00 -0.35015964e+00 0.13498000e+00
- 1 211 0 0 0.69273898e-01 -0.15333727e+00 -0.12660851e+00 0.13957000e+00
- 1 -211 0 0 0.81456607e-01 -0.66987499e-01 -0.92140299e+00 0.13957000e+00
- 1 211 0 0 0.21165817e+00 0.50729048e+00 0.61368208e+01 0.13957000e+00
- 1 -211 0 0 0.29573344e+00 0.87658401e+00 0.58403882e+01 0.13957000e+00
- 1 -211 0 0 -0.13278400e+00 0.29740829e+00 0.18233942e+01 0.13957000e+00
- 1 211 0 0 -0.44236908e+00 0.11272527e-01 0.20335915e+01 0.13957000e+00
- 1 -211 0 0 -0.25926074e+00 0.30990811e+00 0.41096206e+00 0.13957000e+00
- 1 211 0 0 -0.22492816e+00 0.63650565e-01 -0.45533970e-01 0.13957000e+00
- 1 -211 0 0 0.12580807e+00 -0.95893130e-01 -0.25877873e+00 0.13957000e+00
- 1 211 0 0 0.27215521e-01 0.25109735e+00 -0.55723901e-01 0.13957000e+00
- 1 22 0 0 -0.22881615e+00 -0.60333429e+00 -0.30666709e+00 0.00000000e+00
- 1 22 0 0 -0.47179941e+00 -0.79955789e+00 -0.40331081e+00 0.00000000e+00
- 1 22 0 0 -0.73567152e-01 -0.20628122e+00 -0.21348658e+00 0.00000000e+00
- 1 22 0 0 -0.12457762e+00 -0.56784622e-01 -0.13667306e+00 0.00000000e+00
- 611
- 2 25 2 3 0.10156845e+02 0.12946800e+02 -0.12202901e+03 0.12499703e+03
- 2 23 4 5 0.10502316e+02 -0.77349388e+01 -0.33421838e+02 0.33964445e+02
- 2 23 6 11 -0.34547152e+00 0.20681739e+02 -0.88607169e+02 0.87241191e+02
- 1 11 0 0 -0.49924032e+01 -0.14932482e+02 -0.26795424e+02 0.51000000e-03
- 1 -11 0 0 0.15494719e+02 0.71975430e+01 -0.66264143e+01 0.51000000e-03
- 1 22 0 0 -0.48484732e+01 0.39374978e+01 -0.15214658e+02 0.00000000e+00
- 1 22 0 0 0.71534987e-04 -0.19738839e-03 0.10194215e-03 0.00000000e+00
- 1 11 0 0 -0.19618518e+02 0.17547176e+02 -0.66731788e+02 0.51000000e-03
- 1 22 0 0 -0.28231882e+01 0.25612120e+01 -0.98228732e+01 0.00000000e+00
- 1 -11 0 0 0.26944475e+02 -0.33639334e+01 0.31620596e+01 0.51000000e-03
- 1 22 0 0 0.16195844e-03 -0.16174777e-04 -0.11656562e-04 0.00000000e+00
- 2 2 86 86 0.92297325e+00 0.25689612e+00 0.20420633e+03 0.33000000e+00
- 2 21 86 86 0.82846430e+00 -0.48552912e+00 0.60282199e+02 0.00000000e+00
- 2 21 86 86 0.35436724e+00 -0.35333081e+00 0.36552344e+01 0.00000000e+00
- 2 21 86 86 0.68970274e+00 -0.17788759e+00 0.19291156e+01 0.00000000e+00
- 2 21 86 86 0.30497970e+00 0.27798985e+00 0.53502730e-01 0.00000000e+00
- 2 21 86 86 0.94989988e-01 0.31396872e+01 0.79176743e+01 0.00000000e+00
- 2 21 86 86 -0.30830860e+01 -0.26469379e+00 0.16627060e+02 0.00000000e+00
- 2 21 86 86 -0.28611340e+01 -0.10600929e+01 0.10242006e+02 0.00000000e+00
- 2 21 86 86 -0.30442378e+01 -0.30767671e+01 0.30977899e+02 0.00000000e+00
- 2 21 86 86 -0.77037657e+01 -0.10435057e+02 0.74603494e+02 0.00000000e+00
- 2 21 86 86 0.17261994e+00 0.64328890e+00 -0.19618572e+01 0.00000000e+00
- 2 21 86 86 0.11930807e+01 0.33998960e+01 0.75693840e+01 0.00000000e+00
- 2 21 86 86 0.59312735e+01 0.48904837e+01 0.13734743e+02 0.00000000e+00
- 2 21 86 86 0.44115877e+00 0.27131410e+00 0.64138549e+00 0.00000000e+00
- 2 21 86 86 0.18003240e+00 0.64161257e+00 0.22638763e+00 0.00000000e+00
- 2 21 86 86 -0.44987164e+00 0.55246533e+00 -0.33758887e-01 0.00000000e+00
- 2 21 86 86 -0.11722733e+01 0.41292979e+00 -0.10882398e+00 0.00000000e+00
- 2 21 86 86 -0.12720687e+01 -0.58274577e+00 -0.85304150e-01 0.00000000e+00
- 2 21 86 86 -0.10238170e+01 0.60607308e+00 -0.24295263e+01 0.00000000e+00
- 2 21 86 86 -0.58330531e+00 -0.49469942e-01 -0.49786372e+01 0.00000000e+00
- 2 21 86 86 -0.44115877e+00 -0.27131410e+00 -0.27758329e+01 0.00000000e+00
- 2 21 86 86 -0.72407226e+00 0.47087517e+00 -0.50788615e+01 0.00000000e+00
- 2 21 86 86 0.47044829e+00 0.67740477e+01 -0.75864754e+02 0.00000000e+00
- 2 21 86 86 0.31859289e+00 0.57186829e+01 -0.83798261e+02 0.00000000e+00
- 2 21 86 86 -0.81704841e+00 0.53148022e+01 -0.91363547e+02 0.00000000e+00
- 2 21 86 86 -0.23143807e+00 0.35806033e+00 -0.54697826e+01 0.00000000e+00
- 2 21 86 86 0.16024225e+01 0.56288572e-01 -0.71988215e+01 0.00000000e+00
- 2 21 86 86 0.81743423e+00 0.11085000e+01 -0.10885674e+02 0.00000000e+00
- 2 2101 86 86 0.23549512e+01 -0.11077206e+01 -0.20214474e+04 0.57933000e+00
- 2 2 139 139 -0.37570358e+01 0.23487210e+01 -0.24119566e+04 0.33000000e+00
- 2 21 139 139 0.40751471e+00 0.20113681e+00 -0.49498230e+02 0.00000000e+00
- 2 21 139 139 0.73344856e+00 -0.12230195e+01 -0.76399811e+02 0.00000000e+00
- 2 21 139 139 0.22500608e+00 -0.12271689e+01 -0.25840809e+03 0.00000000e+00
- 2 21 139 139 -0.58635169e+00 0.73501713e-02 -0.61422186e+02 0.00000000e+00
- 2 21 139 139 -0.13078720e+01 -0.32159933e+00 -0.98991989e+02 0.00000000e+00
- 2 21 139 139 -0.28842673e+00 0.90634358e+00 -0.43609357e+03 0.00000000e+00
- 2 21 139 139 0.13078720e+01 0.32159933e+00 -0.49200149e+03 0.00000000e+00
- 2 21 139 139 0.28842673e+00 -0.90634358e+00 -0.65171185e+02 0.00000000e+00
- 2 21 139 139 -0.47044829e+00 -0.67740477e+01 -0.44381639e+03 0.00000000e+00
- 2 21 139 139 0.81704841e+00 -0.53148022e+01 -0.10492658e+03 0.00000000e+00
- 2 21 139 139 -0.18003240e+00 -0.64161257e+00 -0.76684151e+01 0.00000000e+00
- 2 21 139 139 0.10238170e+01 -0.60607308e+00 -0.92195944e+01 0.00000000e+00
- 2 21 139 139 0.58330531e+00 0.49469942e-01 -0.11805697e+01 0.00000000e+00
- 2 21 139 139 -0.31859289e+00 -0.57186829e+01 -0.37591043e+01 0.00000000e+00
- 2 21 139 139 -0.10436230e+00 -0.33215499e+00 -0.13421267e+00 0.00000000e+00
- 2 21 139 139 0.12258935e+01 -0.12917145e+01 -0.69326923e-01 0.00000000e+00
- 2 21 139 139 0.72407226e+00 -0.47087517e+00 -0.40294009e-01 0.00000000e+00
- 2 21 139 139 0.11722733e+01 -0.41292979e+00 0.88279591e+00 0.00000000e+00
- 2 21 139 139 -0.19920904e+00 0.76339340e+00 0.52710652e+01 0.00000000e+00
- 2 21 139 139 0.40810265e+00 -0.94529767e-02 0.61611140e+00 0.00000000e+00
- 2 21 139 139 0.12040345e+01 -0.23338196e+01 0.44606644e+02 0.00000000e+00
- 2 21 139 139 -0.31460646e+00 0.97399826e-01 0.11452421e+02 0.00000000e+00
- 2 21 139 139 0.42474000e+00 -0.41648366e+00 0.22260247e+00 0.00000000e+00
- 2 21 139 139 0.18340016e+00 0.10637905e+01 0.20023978e+02 0.00000000e+00
- 2 2101 139 139 -0.30434108e+00 -0.33488544e+00 0.11692834e+04 0.57933000e+00
- 2 2 190 190 -0.13433135e+02 -0.65756856e+01 0.37684491e+03 0.00000000e+00
- 2 21 190 190 -0.24798503e+01 0.13834230e+01 0.11634165e+03 0.00000000e+00
- 2 21 190 190 -0.48653690e+01 -0.19536686e+01 0.40042466e+03 0.00000000e+00
- 2 21 190 190 -0.40208786e+00 0.14231691e-01 0.51041607e+02 0.00000000e+00
- 2 21 190 190 -0.12258935e+01 0.12917145e+01 0.21203498e+03 0.00000000e+00
- 2 21 190 190 0.10436230e+00 0.33215499e+00 0.64853185e+02 0.00000000e+00
- 2 21 190 190 0.18478177e+01 0.17708241e+01 0.33493325e+03 0.00000000e+00
- 2 21 190 190 0.90412897e+00 0.59110795e+00 0.15240837e+03 0.00000000e+00
- 2 21 190 190 0.48653690e+01 0.19536686e+01 0.26252333e+04 0.00000000e+00
- 2 21 190 190 0.24798503e+01 -0.13834230e+01 0.72587440e+03 0.00000000e+00
- 2 21 190 190 0.12720687e+01 0.58274577e+00 0.26222029e+02 0.00000000e+00
- 2 21 190 190 0.40208786e+00 -0.14231691e-01 0.65099545e+01 0.00000000e+00
- 2 21 190 190 0.44987164e+00 -0.55246533e+00 0.76618361e+01 0.00000000e+00
- 2 21 190 190 0.19920904e+00 -0.76339340e+00 0.60934166e+01 0.00000000e+00
- 2 21 190 190 -0.11930807e+01 -0.33998960e+01 0.53151942e+02 0.00000000e+00
- 2 21 190 190 -0.59312735e+01 -0.48904837e+01 0.87702759e+02 0.00000000e+00
- 2 21 190 190 -0.90412897e+00 -0.59110795e+00 0.10442334e+02 0.00000000e+00
- 2 21 190 190 -0.18478177e+01 -0.17708241e+01 0.12099745e+02 0.00000000e+00
- 2 -2 190 190 0.13433135e+02 0.65756856e+01 0.13680566e+01 0.00000000e+00
- 2 92 87 138 -0.67297851e+01 0.17029285e+02 -0.18808145e+04 0.20164693e+04
- 2 2214 232 233 0.13200984e+01 -0.36773987e+00 0.21404731e+03 0.12843685e+01
- 2 -2214 234 235 -0.44853906e-01 -0.71415170e-01 0.29861010e+02 0.12202438e+01
- 1 321 0 0 0.83248404e+00 -0.52865185e-01 0.73542379e+01 0.49360000e+00
- 2 -323 236 237 0.39755081e+00 0.29439327e+00 0.61448868e+01 0.10659049e+01
- 2 111 238 239 0.38365695e-02 -0.61653078e+00 0.75502915e+01 0.13498000e+00
- 2 213 240 241 0.60973963e+00 0.57771905e+00 0.48211936e+01 0.11371767e+01
- 2 223 242 244 -0.89206840e-01 0.58618783e+00 0.31852039e+01 0.78613655e+00
- 2 -213 245 246 -0.29748250e+00 0.81002596e+00 0.11895388e+01 0.52635211e+00
- 2 111 247 248 0.23841908e+00 0.67727427e+00 0.41422565e+01 0.13498000e+00
- 2 223 249 251 -0.16094685e+01 0.37418615e+00 0.87261665e+01 0.77454598e+00
- 2 223 252 254 -0.80921439e+00 0.11450066e+00 0.30794121e+01 0.77481885e+00
- 2 213 255 256 -0.94532915e+00 -0.49458317e+00 0.51891107e+01 0.69792813e+00
- 2 1114 257 258 -0.16728608e+01 -0.11082477e+01 0.12270838e+02 0.11774654e+01
- 2 -1114 259 260 -0.32904211e+01 -0.28529267e+01 0.25303119e+02 0.12471700e+01
- 1 -211 0 0 -0.42156574e+00 -0.21062448e+00 0.48196716e+01 0.13957000e+00
- 2 213 261 262 -0.43465177e+01 -0.49667994e+01 0.37117190e+02 0.97348285e+00
- 2 223 263 265 -0.30052582e+01 -0.35284568e+01 0.25392647e+02 0.87973276e+00
- 2 113 266 267 -0.26141610e+00 -0.12827538e+01 0.93134772e+01 0.76535240e+00
- 1 -211 0 0 0.10314381e+00 0.62394055e+00 -0.19941785e+00 0.13957000e+00
- 2 223 268 270 0.48138447e-01 -0.36596844e+00 -0.17183898e+00 0.77824919e+00
- 2 111 271 272 -0.25584373e-01 0.11356855e+00 0.17256627e+00 0.13498000e+00
- 1 211 0 0 -0.35355045e+00 -0.10592968e+00 0.43260910e+00 0.13957000e+00
- 2 -213 273 274 0.81195310e-01 0.45731080e+00 -0.25408531e+00 0.10091869e+01
- 2 223 275 276 0.44829358e+00 0.12532005e+01 0.25294984e+01 0.78184349e+00
- 2 113 277 278 0.17800522e+01 0.18626579e+01 0.39995693e+01 0.73932701e+00
- 2 113 279 280 0.26235024e+01 0.18200944e+01 0.69000837e+01 0.74753999e+00
- 1 321 0 0 0.72458290e+00 0.13637868e+01 0.27325388e+01 0.49360000e+00
- 2 -313 281 282 0.96313840e+00 0.15805773e+01 0.13379692e+01 0.90112111e+00
- 2 113 283 284 -0.12877161e+00 0.13170011e+00 0.72187560e+00 0.79777600e+00
- 2 111 285 286 -0.44607688e-01 0.55405447e+00 0.25943249e+01 0.13498000e+00
- 1 2112 0 0 0.37625249e+00 0.63878286e+00 0.45471818e+00 0.93957000e+00
- 1 -2112 0 0 -0.41711711e+00 0.24840679e+00 -0.85470474e+00 0.93957000e+00
- 1 -211 0 0 -0.52648655e+00 -0.17642410e-01 -0.66312633e+00 0.13957000e+00
- 2 213 287 288 -0.48287526e+00 0.34062067e+00 -0.35049330e+00 0.65883753e+00
- 2 313 289 290 -0.71140629e+00 0.69127934e-01 -0.35629975e+00 0.93006464e+00
- 2 -313 291 292 -0.13700017e+01 -0.48037252e-01 -0.78692368e+01 0.98897558e+00
- 2 111 293 294 0.18250431e+00 0.67540895e-01 -0.40137466e+00 0.13498000e+00
- 2 313 295 296 -0.62593639e+00 0.74375697e+00 -0.94154358e+01 0.72767540e+00
- 2 -311 297 297 0.22992874e-01 0.10248354e+01 -0.10176158e+02 0.49767000e+00
- 2 111 298 299 -0.31518731e+00 0.77128693e+00 -0.13825352e+02 0.13498000e+00
- 2 111 300 301 0.22362065e+00 0.20085699e+01 -0.15044908e+02 0.13498000e+00
- 2 223 302 304 -0.17863341e+00 0.47382163e+01 -0.82658924e+02 0.79165349e+00
- 2 111 305 306 0.26998227e+00 0.48845471e+01 -0.48320997e+02 0.13498000e+00
- 1 -211 0 0 -0.11055710e+01 0.32642226e+01 -0.61817330e+02 0.13957000e+00
- 2 223 307 309 0.19156587e+01 0.12269337e+01 -0.26491465e+02 0.77995350e+00
- 2 213 310 311 -0.27191110e+00 0.57166541e+00 -0.12958509e+02 0.75607828e+00
- 1 -211 0 0 0.48992004e+00 0.36774882e+00 -0.69308956e+01 0.13957000e+00
- 2 323 312 313 0.32414103e+00 -0.46879415e+00 -0.54933278e+01 0.72183697e+00
- 2 -313 314 315 0.28301901e+00 0.76120470e+00 -0.51765684e+02 0.95046764e+00
- 2 -213 316 317 -0.17653694e-01 -0.33872436e+00 -0.59774825e+02 0.70490141e+00
- 2 2224 318 319 0.14135204e+01 -0.62301822e+00 -0.11657720e+04 0.11714770e+01
- 1 -211 0 0 0.96331628e+00 -0.37230322e+00 -0.73063136e+03 0.13957000e+00
- 2 92 140 189 0.28976765e+01 -0.22576462e+02 -0.32683986e+04 0.47681020e+04
- 1 211 0 0 -0.85771706e-01 0.70752003e-01 -0.95671263e+02 0.13957000e+00
- 1 -211 0 0 -0.24775474e+01 0.15116001e+01 -0.15785480e+04 0.13957000e+00
- 2 213 320 321 0.28081251e+00 -0.15016533e+00 -0.21476630e+03 0.70203577e+00
- 2 113 322 323 -0.19820266e+00 0.73027273e+00 -0.17618617e+03 0.83850884e+00
- 2 -213 324 325 -0.19141996e+00 -0.72184282e+00 -0.12895547e+03 0.77369241e+00
- 2 213 326 327 -0.47602672e+00 -0.28961704e+00 -0.33747764e+03 0.80492610e+00
- 2 223 328 330 -0.53781908e-01 -0.21397023e+00 -0.11429658e+03 0.78284627e+00
- 2 111 331 332 0.25401644e+00 -0.38363237e-02 -0.75958107e+02 0.13498000e+00
- 2 221 333 334 -0.91620361e+00 -0.42938294e+00 -0.67494986e+02 0.54745000e+00
- 2 113 335 336 0.74571558e+00 -0.25265112e+00 -0.24800751e+03 0.89454517e+00
- 2 113 337 338 -0.54645575e+00 0.16920631e+00 -0.10338445e+03 0.87720526e+00
- 1 2112 0 0 -0.21199206e+00 0.40693872e-01 -0.34396465e+03 0.93957000e+00
- 2 -323 339 340 0.28429699e+00 0.11634355e+00 -0.15703704e+03 0.91123908e+00
- 2 -3212 341 342 0.27543651e+00 -0.42088584e+00 -0.25661006e+03 0.11925500e+01
- 1 211 0 0 -0.31145065e+00 -0.15694986e+01 -0.93070911e+02 0.13957000e+00
- 1 -211 0 0 0.49037696e+00 -0.89617802e+00 -0.77649089e+02 0.13957000e+00
- 2 223 343 345 -0.23635346e-01 -0.80026234e+00 -0.82847984e+02 0.79040059e+00
- 2 221 346 347 0.39091483e-01 -0.13839179e+01 -0.51447211e+02 0.54745000e+00
- 1 211 0 0 -0.22988003e+00 -0.41635991e+00 -0.56078251e+02 0.13957000e+00
- 2 111 348 349 0.40548408e+00 -0.22198677e+01 -0.12764663e+03 0.13498000e+00
- 2 113 350 351 0.76036103e-01 -0.17599017e+01 -0.38464423e+02 0.84588564e+00
- 2 113 352 353 0.14126302e-01 -0.45784104e+00 -0.23893121e+02 0.75180113e+00
- 2 111 354 355 -0.14938996e+00 -0.91167210e+00 -0.10790127e+02 0.13498000e+00
- 2 223 356 358 0.10532535e+01 -0.23728942e+01 -0.43355123e+02 0.78682388e+00
- 1 -211 0 0 -0.89167639e-01 0.17137925e+00 -0.66818294e+01 0.13957000e+00
- 2 111 359 360 0.21289790e+00 -0.69018448e+00 -0.13911884e+01 0.13498000e+00
- 2 213 361 362 -0.47895222e-01 -0.44248152e+00 -0.44311845e+01 0.64094623e+00
- 1 -211 0 0 0.58194957e+00 -0.30630567e+00 -0.44664573e+00 0.13957000e+00
- 2 113 363 364 -0.31040212e+00 -0.22371686e+01 -0.17550162e+01 0.84026408e+00
- 2 223 365 366 0.85558198e+00 -0.16275444e+01 -0.15665248e+01 0.78214857e+00
- 2 323 367 368 0.11343474e+01 -0.16674732e+01 0.60908315e+00 0.89862557e+00
- 2 -323 369 370 -0.67185405e+00 -0.52299185e+00 -0.49613700e+00 0.91453249e+00
- 2 331 371 373 0.11515585e+01 -0.12388764e+01 0.16523702e+00 0.95793052e+00
- 1 211 0 0 0.83393069e+00 0.66933415e+00 0.14497467e+01 0.13957000e+00
- 2 331 374 376 0.48219194e-01 -0.81031172e+00 0.11789401e+02 0.95937282e+00
- 2 111 377 378 0.28137683e+00 -0.69308430e+00 0.60693608e+01 0.13498000e+00
- 2 313 379 380 -0.11655528e-01 -0.67276262e-02 0.10270939e+02 0.90483124e+00
- 1 -321 0 0 0.35229593e+00 -0.50981185e-01 0.39682250e+01 0.49360000e+00
- 2 221 381 382 -0.25068923e+00 -0.52808774e+00 0.14019169e+02 0.54745000e+00
- 1 211 0 0 0.82819299e+00 -0.36283989e+00 0.64630639e+01 0.13957000e+00
- 2 313 383 384 0.58976998e-01 0.17642498e+00 0.57839716e+01 0.99415843e+00
- 2 -313 385 386 -0.11949624e+00 -0.86144613e-01 0.47569359e+01 0.89983130e+00
- 2 -213 387 388 0.18396083e+00 -0.34873493e+00 0.52251266e+01 0.75674902e+00
- 2 323 389 390 0.10473632e+00 0.24074906e+00 0.41478527e+01 0.93171348e+00
- 1 -321 0 0 -0.43236855e-01 0.28985653e+00 0.13203974e+02 0.49360000e+00
- 1 211 0 0 -0.32633920e+00 0.13006580e+00 0.54793510e+01 0.13957000e+00
- 2 223 391 393 0.19820756e+00 -0.51288577e-01 0.12378863e+03 0.77224773e+00
- 2 -213 394 395 0.12840014e-01 0.27823337e+00 0.38196565e+02 0.39162618e+00
- 2 331 396 398 -0.10148485e+00 -0.32620918e+00 0.68289568e+03 0.95775218e+00
- 1 2212 0 0 -0.16063984e-01 0.96807698e-01 0.31368869e+03 0.93827000e+00
- 2 92 191 231 -0.63247361e+01 -0.73996231e+01 0.52712423e+04 0.39737635e+03
- 2 111 399 400 -0.10665013e+02 -0.55857933e+01 0.29360055e+03 0.13498000e+00
- 2 111 401 402 -0.83533807e+00 -0.11249654e+00 0.31025107e+02 0.13498000e+00
- 2 223 403 405 -0.19761082e+01 0.41112374e+00 0.79068022e+02 0.77865999e+00
- 1 2212 0 0 -0.18875691e+01 -0.57940639e+00 0.88459787e+02 0.93827000e+00
- 2 111 406 407 -0.91427102e+00 -0.87707309e+00 0.80380265e+02 0.13498000e+00
- 1 -2212 0 0 -0.28902112e+01 0.59498977e+00 0.20211570e+03 0.93827000e+00
- 1 211 0 0 0.51869952e-01 -0.16465087e+00 0.59647212e+01 0.13957000e+00
- 2 1114 408 409 -0.22246091e+01 -0.81434041e-01 0.25326699e+03 0.11026494e+01
- 2 -311 410 410 0.20883926e+00 0.44076694e-01 0.31898418e+02 0.49767000e+00
- 2 -3212 411 412 -0.81174515e-01 0.80583943e+00 0.16924790e+03 0.11925500e+01
- 2 2214 413 414 0.10106180e+01 0.87629886e+00 0.27631738e+03 0.13119004e+01
- 2 -2114 415 416 0.11452593e+01 0.17152876e+01 0.45277963e+03 0.12571447e+01
- 1 -211 0 0 -0.78114673e-01 0.32360603e+00 0.66911556e+02 0.13957000e+00
- 2 223 417 419 0.21705155e+01 0.87858153e+00 0.10743048e+04 0.77249026e+00
- 2 111 420 421 0.77322844e+00 -0.17964842e+00 0.38426039e+03 0.13498000e+00
- 2 2114 422 423 0.16601498e+01 -0.23981130e+00 0.58792139e+03 0.13585791e+01
- 2 -1114 424 425 0.20599166e+01 -0.57031739e-02 0.86769507e+03 0.12958274e+01
- 2 -213 426 427 0.92802313e-01 -0.11354610e+00 0.48600610e+02 0.76651420e+00
- 2 113 428 429 0.61873903e+00 -0.19713284e+00 0.38093222e+02 0.46852359e+00
- 1 211 0 0 0.15562055e+00 0.12427108e+00 0.12537565e+02 0.13957000e+00
- 2 221 430 432 0.44301097e+00 0.25426828e+00 0.18457308e+02 0.54745000e+00
- 2 -213 433 434 0.32119387e+00 -0.10953188e+01 0.27157809e+02 0.83137788e+00
- 1 211 0 0 -0.28905782e+00 0.10706913e-01 0.39717875e+01 0.13957000e+00
- 1 -211 0 0 0.64364281e+00 -0.96030418e-02 0.18442150e+02 0.13957000e+00
- 2 223 435 437 -0.14493673e+00 -0.12075133e+01 0.13551299e+02 0.84663861e+00
- 2 213 438 439 -0.91909355e+00 -0.16914264e+01 0.20525730e+02 0.71710657e+00
- 2 1114 440 441 -0.27115307e+01 -0.21921831e+01 0.47948556e+02 0.13562470e+01
- 2 -3114 442 443 -0.22518372e+01 -0.26239136e+01 0.32837429e+02 0.14106559e+01
- 2 -311 444 444 -0.13076837e+01 -0.11310477e+01 0.20698112e+02 0.49767000e+00
- 2 111 445 446 -0.54753765e+00 -0.12860319e+01 0.14071158e+02 0.13498000e+00
- 2 -213 447 448 0.14751515e+00 0.40121820e-01 0.25329689e+01 0.71004547e+00
- 1 211 0 0 -0.61017978e+00 -0.22649552e+00 0.84952051e+00 0.13957000e+00
- 2 221 449 451 -0.27538601e+00 0.45691296e+00 0.17408647e+01 0.54745000e+00
- 2 113 452 453 0.67136586e-01 -0.30960224e+00 0.11902505e+01 0.69198176e+00
- 2 -213 454 455 0.14183498e+00 -0.31152104e-01 0.57598601e+00 0.52050974e+00
- 2 213 456 457 0.78372609e+00 0.26645947e+00 0.89740265e+00 0.72310465e+00
- 1 -211 0 0 0.68569422e+00 0.43592423e+00 -0.29738798e+00 0.13957000e+00
- 2 111 458 459 0.15481414e+00 -0.11271947e+00 -0.12283910e+00 0.13498000e+00
- 1 211 0 0 0.41762832e+01 0.18881293e+01 0.10056068e+01 0.13957000e+00
- 2 113 460 461 0.67425807e+01 0.33194967e+01 0.67595209e+00 0.68346916e+00
- 1 -211 0 0 0.29924382e-01 0.20798573e+00 0.83599278e-01 0.13957000e+00
- 1 2212 0 0 0.12776026e+01 -0.36014930e+00 0.16436661e+03 0.93827000e+00
- 2 111 462 463 0.42495887e-01 -0.75905741e-02 0.49680706e+02 0.13498000e+00
- 1 -2112 0 0 -0.60164065e-01 0.89052683e-01 0.27229144e+02 0.93957000e+00
- 1 -211 0 0 0.15310159e-01 -0.16046785e+00 0.26318659e+01 0.13957000e+00
- 1 -321 0 0 -0.17984148e+00 0.13353053e+00 0.23320382e+01 0.49360000e+00
- 2 111 464 465 0.57739229e+00 0.16086274e+00 0.38128486e+01 0.13498000e+00
- 1 22 0 0 -0.58503149e-03 -0.61653120e+00 0.72120317e+01 0.00000000e+00
- 1 22 0 0 0.44216010e-02 0.41459346e-06 0.33825985e+00 0.00000000e+00
- 1 211 0 0 0.48025319e+00 -0.24380606e+00 0.22830919e+01 0.13957000e+00
- 2 111 466 467 0.12948644e+00 0.82152510e+00 0.25381017e+01 0.13498000e+00
- 1 211 0 0 -0.18830919e+00 0.49497743e+00 0.16087974e+01 0.13957000e+00
- 1 -211 0 0 -0.85024250e-01 -0.11988884e-01 0.41154008e+00 0.13957000e+00
- 2 111 468 469 0.18412660e+00 0.10319929e+00 0.11648664e+01 0.13498000e+00
- 1 -211 0 0 0.47709906e-01 0.16161955e+00 0.49451489e+00 0.13957000e+00
- 2 111 470 471 -0.34519240e+00 0.64840641e+00 0.69502396e+00 0.13498000e+00
- 1 22 0 0 0.98612906e-02 0.48802207e-01 0.54763061e+00 0.00000000e+00
- 1 22 0 0 0.22855779e+00 0.62847207e+00 0.35946259e+01 0.00000000e+00
- 1 211 0 0 -0.96365057e+00 0.42139388e+00 0.55060626e+01 0.13957000e+00
- 1 -211 0 0 -0.10757788e+00 0.46466894e-01 0.10507759e+01 0.13957000e+00
- 2 111 472 473 -0.53824009e+00 -0.93674621e-01 0.21693281e+01 0.13498000e+00
- 1 -211 0 0 -0.48025864e+00 0.28337184e+00 0.10883629e+01 0.13957000e+00
- 1 211 0 0 -0.74396012e-01 -0.65555154e-01 0.61704184e+00 0.13957000e+00
- 2 111 474 475 -0.25455973e+00 -0.10331602e+00 0.13740074e+01 0.13498000e+00
- 1 211 0 0 -0.29016451e+00 -0.51199083e+00 0.23621599e+01 0.13957000e+00
- 2 111 476 477 -0.65516464e+00 0.17407662e-01 0.28269507e+01 0.13498000e+00
- 1 2112 0 0 -0.12294397e+01 -0.98381555e+00 0.91739228e+01 0.93957000e+00
- 1 -211 0 0 -0.44342108e+00 -0.12443219e+00 0.30969154e+01 0.13957000e+00
- 1 -2112 0 0 -0.28846167e+01 -0.23861876e+01 0.20448474e+02 0.93957000e+00
- 1 211 0 0 -0.40580437e+00 -0.46673910e+00 0.48546456e+01 0.13957000e+00
- 1 211 0 0 -0.34946500e+01 -0.33807058e+01 0.26677129e+02 0.13957000e+00
- 2 111 478 479 -0.85186774e+00 -0.15860936e+01 0.10440062e+02 0.13498000e+00
- 1 211 0 0 -0.33926772e+00 -0.29986374e+00 0.17607060e+01 0.13957000e+00
- 1 -211 0 0 -0.14727239e+01 -0.16368334e+01 0.11643475e+02 0.13957000e+00
- 2 111 480 481 -0.11932665e+01 -0.15917596e+01 0.11988466e+02 0.13498000e+00
- 1 -211 0 0 0.52166575e-01 -0.11041611e+01 0.62800661e+01 0.13957000e+00
- 1 211 0 0 -0.31358268e+00 -0.17859270e+00 0.30334111e+01 0.13957000e+00
- 1 211 0 0 -0.11177684e+00 0.13901421e+00 -0.77220679e-01 0.13957000e+00
- 1 -211 0 0 -0.34016598e-01 -0.19328347e+00 -0.33112851e-01 0.13957000e+00
- 2 111 482 483 0.19393188e+00 -0.31169917e+00 -0.61505446e-01 0.13498000e+00
- 1 22 0 0 0.28020676e-01 0.39785824e-02 0.10476914e+00 0.00000000e+00
- 1 22 0 0 -0.53605050e-01 0.10958997e+00 0.67797132e-01 0.00000000e+00
- 1 -211 0 0 -0.40517632e+00 0.54639525e-01 -0.23908488e+00 0.13957000e+00
- 2 111 484 485 0.48637163e+00 0.40267128e+00 -0.15000427e-01 0.13498000e+00
- 1 22 0 0 0.10745919e+00 0.92963274e+00 0.10570241e+01 0.00000000e+00
- 2 111 486 487 0.34083438e+00 0.32356776e+00 0.14724743e+01 0.13498000e+00
- 1 -211 0 0 0.63759841e+00 0.24947170e+00 0.10437740e+01 0.13957000e+00
- 1 211 0 0 0.11424538e+01 0.16131862e+01 0.29557954e+01 0.13957000e+00
- 1 -211 0 0 0.11077006e+01 0.11658450e+01 0.31335353e+01 0.13957000e+00
- 1 211 0 0 0.15158018e+01 0.65424942e+00 0.37665484e+01 0.13957000e+00
- 1 -321 0 0 0.65216122e+00 0.11292994e+01 0.58164735e+00 0.49360000e+00
- 1 211 0 0 0.31097718e+00 0.45127792e+00 0.75632186e+00 0.13957000e+00
- 1 -211 0 0 -0.25655635e-01 -0.30833987e+00 0.23575071e+00 0.13957000e+00
- 1 211 0 0 -0.10311598e+00 0.44003998e+00 0.48612489e+00 0.13957000e+00
- 1 22 0 0 0.22623532e-01 0.21507784e+00 0.12518795e+01 0.00000000e+00
- 1 22 0 0 -0.67231219e-01 0.33897663e+00 0.13424454e+01 0.00000000e+00
- 1 211 0 0 -0.16518090e+00 0.46921881e+00 -0.20663384e+00 0.13957000e+00
- 2 111 488 489 -0.31769435e+00 -0.12859814e+00 -0.14385946e+00 0.13498000e+00
- 2 311 490 490 -0.38286454e+00 -0.93588862e-01 0.80449434e-01 0.49767000e+00
- 2 111 491 492 -0.32854175e+00 0.16271680e+00 -0.43674918e+00 0.13498000e+00
- 2 -311 493 493 -0.80616650e+00 0.14880802e+00 -0.32328563e+01 0.49767000e+00
- 2 111 494 495 -0.56383518e+00 -0.19684527e+00 -0.46363805e+01 0.13498000e+00
- 1 22 0 0 0.20228814e+00 0.74201150e-01 -0.37377312e+00 0.00000000e+00
- 1 22 0 0 -0.19783837e-01 -0.66602556e-02 -0.27601533e-01 0.00000000e+00
- 1 321 0 0 -0.34560105e+00 0.64760558e+00 -0.66141957e+01 0.49360000e+00
- 1 -211 0 0 -0.28033534e+00 0.96151394e-01 -0.28012402e+01 0.13957000e+00
- 1 130 0 0 0.22992874e-01 0.10248354e+01 -0.10176158e+02 0.49767000e+00
- 1 22 0 0 -0.24491596e+00 0.47987676e+00 -0.80974792e+01 0.00000000e+00
- 1 22 0 0 -0.70271346e-01 0.29141016e+00 -0.57278723e+01 0.00000000e+00
- 1 22 0 0 0.11877713e+00 0.12894748e+01 -0.91797874e+01 0.00000000e+00
- 1 22 0 0 0.10484353e+00 0.71909510e+00 -0.58651204e+01 0.00000000e+00
- 1 211 0 0 0.15452783e+00 0.14102156e+01 -0.24499932e+02 0.13957000e+00
- 1 -211 0 0 -0.41402863e+00 0.25503239e+01 -0.43967994e+02 0.13957000e+00
- 2 111 496 497 0.80867393e-01 0.77767679e+00 -0.14190998e+02 0.13498000e+00
- 1 22 0 0 0.14857266e+00 0.24507914e+01 -0.23594774e+02 0.00000000e+00
- 1 22 0 0 0.12140961e+00 0.24337557e+01 -0.24726223e+02 0.00000000e+00
- 1 -211 0 0 0.55050232e+00 0.12442540e+00 -0.86433145e+01 0.13957000e+00
- 1 211 0 0 0.76300225e+00 0.60291790e+00 -0.10899964e+02 0.13957000e+00
- 2 111 498 499 0.60215415e+00 0.49959041e+00 -0.69481866e+01 0.13498000e+00
- 1 211 0 0 0.29697849e-01 -0.81417118e-02 -0.67839667e+01 0.13957000e+00
- 2 111 500 501 -0.30160895e+00 0.57980713e+00 -0.61745424e+01 0.13498000e+00
- 1 321 0 0 0.20214732e+00 -0.25879945e+00 -0.44800092e+01 0.49360000e+00
- 2 111 502 503 0.12199370e+00 -0.20999469e+00 -0.10133186e+01 0.13498000e+00
- 2 -311 504 504 0.54172323e-01 0.81755459e-01 -0.17612314e+02 0.49767000e+00
- 2 111 505 506 0.22884669e+00 0.67944924e+00 -0.34153371e+02 0.13498000e+00
- 1 -211 0 0 0.24408949e+00 0.56067659e-01 -0.24583682e+02 0.13957000e+00
- 2 111 507 508 -0.26174319e+00 -0.39479202e+00 -0.35191143e+02 0.13498000e+00
- 1 2212 0 0 0.96114104e+00 -0.56857912e+00 -0.84703104e+03 0.93827000e+00
- 1 211 0 0 0.45237938e+00 -0.54439106e-01 -0.31874100e+03 0.13957000e+00
- 1 211 0 0 0.43546713e+00 0.56938813e-01 -0.10759777e+03 0.13957000e+00
- 2 111 509 510 -0.15465462e+00 -0.20710415e+00 -0.10716854e+03 0.13498000e+00
- 1 -211 0 0 0.24786416e+00 0.44744066e-01 -0.35135028e+02 0.13957000e+00
- 1 211 0 0 -0.44606681e+00 0.68552867e+00 -0.14105114e+03 0.13957000e+00
- 1 -211 0 0 -0.33706440e+00 -0.75560590e+00 -0.88367805e+02 0.13957000e+00
- 2 111 511 512 0.14564445e+00 0.33763074e-01 -0.40587665e+02 0.13498000e+00
- 1 211 0 0 0.17233959e+00 -0.25750600e-01 -0.13077371e+03 0.13957000e+00
- 2 111 513 514 -0.64836631e+00 -0.26386644e+00 -0.20670392e+03 0.13498000e+00
- 1 -211 0 0 -0.47948356e-01 -0.28287910e+00 -0.40126917e+02 0.13957000e+00
- 1 211 0 0 -0.13838438e+00 -0.78057713e-01 -0.49773347e+02 0.13957000e+00
- 2 111 515 516 0.13255083e+00 0.14696659e+00 -0.24396313e+02 0.13498000e+00
- 1 22 0 0 0.58677608e-01 0.54559621e-01 -0.27311059e+02 0.00000000e+00
- 1 22 0 0 0.19533883e+00 -0.58395944e-01 -0.48647048e+02 0.00000000e+00
- 1 22 0 0 -0.59912919e+00 -0.30534800e+00 -0.57643246e+02 0.00000000e+00
- 1 22 0 0 -0.31707443e+00 -0.12403494e+00 -0.98517407e+01 0.00000000e+00
- 1 211 0 0 0.17003748e+00 0.22632989e+00 -0.13116864e+03 0.13957000e+00
- 1 -211 0 0 0.57567810e+00 -0.47898101e+00 -0.11683886e+03 0.13957000e+00
- 1 211 0 0 0.15222853e+00 0.25511720e+00 -0.30045010e+02 0.13957000e+00
- 1 -211 0 0 -0.69868427e+00 -0.85910884e-01 -0.73339437e+02 0.13957000e+00
- 1 -321 0 0 0.23669512e+00 0.15451934e+00 -0.57070984e+02 0.49360000e+00
- 2 111 517 518 0.47601872e-01 -0.38175789e-01 -0.99966059e+02 0.13498000e+00
- 2 -3122 519 520 0.33356838e+00 -0.38938197e+00 -0.24219404e+03 0.11156800e+01
- 1 22 0 0 -0.58131877e-01 -0.31503870e-01 -0.14416020e+02 0.00000000e+00
- 1 211 0 0 0.64176027e-01 -0.52031015e+00 -0.36279413e+02 0.13957000e+00
- 1 -211 0 0 0.13869388e+00 -0.18629349e+00 -0.15927188e+02 0.13957000e+00
- 2 111 521 522 -0.22650525e+00 -0.93658696e-01 -0.30641382e+02 0.13498000e+00
- 1 22 0 0 -0.19581694e+00 -0.10955254e+01 -0.36870657e+02 0.00000000e+00
- 1 22 0 0 0.23490842e+00 -0.28839252e+00 -0.14576554e+02 0.00000000e+00
- 1 22 0 0 0.93067735e-01 -0.53362484e+00 -0.27509280e+02 0.00000000e+00
- 1 22 0 0 0.31241635e+00 -0.16862428e+01 -0.10013735e+03 0.00000000e+00
- 1 211 0 0 -0.16160637e+00 -0.15170337e+01 -0.26737400e+02 0.13957000e+00
- 1 -211 0 0 0.23764247e+00 -0.24286802e+00 -0.11727023e+02 0.13957000e+00
- 1 -211 0 0 0.22731173e+00 -0.13401904e+00 -0.17701573e+02 0.13957000e+00
- 1 211 0 0 -0.21318543e+00 -0.32382200e+00 -0.61915480e+01 0.13957000e+00
- 1 22 0 0 0.16810668e-02 -0.34486071e+00 -0.36445121e+01 0.00000000e+00
- 1 22 0 0 -0.15107102e+00 -0.56681139e+00 -0.71456150e+01 0.00000000e+00
- 1 -211 0 0 0.59274705e+00 -0.65992968e+00 -0.15019588e+02 0.13957000e+00
- 1 211 0 0 0.68425776e-01 -0.47319523e+00 -0.90703251e+01 0.13957000e+00
- 2 111 523 524 0.39208066e+00 -0.12397693e+01 -0.19265210e+02 0.13498000e+00
- 1 22 0 0 0.21140188e+00 -0.55963364e+00 -0.12120211e+01 0.00000000e+00
- 1 22 0 0 0.14960221e-02 -0.13055084e+00 -0.17916728e+00 0.00000000e+00
- 1 211 0 0 -0.11896104e+00 -0.14507654e+00 -0.47855371e+00 0.13957000e+00
- 2 111 525 526 0.71065823e-01 -0.29740497e+00 -0.39526308e+01 0.13498000e+00
- 1 211 0 0 -0.45381463e+00 -0.17896145e+01 -0.10689508e+01 0.13957000e+00
- 1 -211 0 0 0.14341251e+00 -0.44755412e+00 -0.68606532e+00 0.13957000e+00
- 1 -211 0 0 0.91657346e+00 -0.15396771e+01 -0.12937620e+01 0.13957000e+00
- 1 211 0 0 -0.60991479e-01 -0.87867301e-01 -0.27276283e+00 0.13957000e+00
- 2 311 527 527 0.52099828e+00 -0.67678951e+00 0.51091932e+00 0.49767000e+00
- 1 211 0 0 0.61334911e+00 -0.99068367e+00 0.98163830e-01 0.13957000e+00
- 2 -311 528 528 -0.68231037e-01 -0.19977734e+00 -0.13219570e+00 0.49767000e+00
- 1 -211 0 0 -0.60362301e+00 -0.32321452e+00 -0.36394129e+00 0.13957000e+00
- 2 111 529 530 0.26030572e+00 -0.27481143e+00 -0.10375296e+00 0.13498000e+00
- 2 111 531 532 0.24158239e+00 -0.17737834e+00 -0.55453383e-01 0.13498000e+00
- 2 221 533 535 0.64967043e+00 -0.78668661e+00 0.32444336e+00 0.54745000e+00
- 1 211 0 0 -0.10550001e-01 -0.14523025e+00 0.20898632e+01 0.13957000e+00
- 1 -211 0 0 -0.15286972e+00 -0.26829798e+00 0.36658537e+01 0.13957000e+00
- 2 221 536 538 0.21163892e+00 -0.39678349e+00 0.60336844e+01 0.54745000e+00
- 1 22 0 0 0.27014047e+00 -0.54644143e+00 0.46413577e+01 0.00000000e+00
- 1 22 0 0 0.11236368e-01 -0.14664287e+00 0.14280031e+01 0.00000000e+00
- 2 311 539 539 0.96111673e-01 0.22080049e+00 0.46886889e+01 0.49767000e+00
- 2 111 540 541 -0.10776720e+00 -0.22752812e+00 0.55822501e+01 0.13498000e+00
- 1 22 0 0 -0.16617655e+00 -0.30114677e+00 0.29156720e+01 0.00000000e+00
- 1 22 0 0 -0.84512685e-01 -0.22694097e+00 0.11103497e+02 0.00000000e+00
- 2 311 542 542 -0.21041962e+00 0.32340345e+00 0.28539712e+01 0.49767000e+00
- 2 111 543 544 0.26939662e+00 -0.14697847e+00 0.29300004e+01 0.13498000e+00
- 2 -311 545 545 -0.20907975e+00 -0.17085234e+00 0.44530351e+01 0.49767000e+00
- 2 111 546 547 0.89583503e-01 0.84707730e-01 0.30390085e+00 0.13498000e+00
- 1 -211 0 0 0.16847283e+00 -0.54824784e+00 0.31131815e+01 0.13957000e+00
- 2 111 548 549 0.15488002e-01 0.19951291e+00 0.21119451e+01 0.13498000e+00
- 1 321 0 0 0.66167274e-01 0.45021998e+00 0.35059940e+01 0.49360000e+00
- 2 111 550 551 0.38569049e-01 -0.20947092e+00 0.64185867e+00 0.13498000e+00
- 1 -211 0 0 0.61903517e-01 0.19669976e+00 0.49960551e+02 0.13957000e+00
- 1 211 0 0 0.34617689e-01 -0.20462191e+00 0.18592252e+02 0.13957000e+00
- 2 111 552 553 0.10168635e+00 -0.43366423e-01 0.55235827e+02 0.13498000e+00
- 1 -211 0 0 0.53700103e-01 0.28460675e+00 0.30784251e+02 0.13957000e+00
- 2 111 554 555 -0.40860089e-01 -0.63733841e-02 0.74123143e+01 0.13498000e+00
- 1 -211 0 0 0.15078744e-01 -0.42305262e-01 0.52104687e+02 0.13957000e+00
- 1 211 0 0 0.10993993e+00 -0.11358878e+00 0.12940068e+03 0.13957000e+00
- 2 221 556 557 -0.22650352e+00 -0.17031514e+00 0.50139031e+03 0.54745000e+00
- 1 22 0 0 -0.19775225e+01 -0.10336426e+01 0.55707231e+02 0.00000000e+00
- 1 22 0 0 -0.86874904e+01 -0.45521507e+01 0.23789332e+03 0.00000000e+00
- 1 22 0 0 -0.35063937e+00 0.80378893e-02 0.11452863e+02 0.00000000e+00
- 1 22 0 0 -0.48469870e+00 -0.12053443e+00 0.19572244e+02 0.00000000e+00
- 1 211 0 0 -0.36910836e+00 -0.31451251e-01 0.19154477e+02 0.13957000e+00
- 1 -211 0 0 -0.22184478e+00 -0.39005223e-01 0.70070635e+01 0.13957000e+00
- 2 111 558 559 -0.13851551e+01 0.48158021e+00 0.52906481e+02 0.13498000e+00
- 1 22 0 0 -0.33113359e+00 -0.39545219e+00 0.34836739e+02 0.00000000e+00
- 1 22 0 0 -0.58313743e+00 -0.48162090e+00 0.45543526e+02 0.00000000e+00
- 1 2112 0 0 -0.18751843e+01 -0.13770069e+00 0.21079844e+03 0.93957000e+00
- 1 -211 0 0 -0.34942479e+00 0.56266654e-01 0.42468551e+02 0.13957000e+00
- 1 130 0 0 0.20883926e+00 0.44076694e-01 0.31898418e+02 0.49767000e+00
- 2 -3122 560 561 -0.27843235e-02 0.73900875e+00 0.15619085e+03 0.11156800e+01
- 1 22 0 0 -0.78390192e-01 0.66830683e-01 0.13057047e+02 0.00000000e+00
- 1 2112 0 0 0.58349045e+00 0.35227132e+00 0.19310908e+03 0.93957000e+00
- 1 211 0 0 0.42712757e+00 0.52402754e+00 0.83208305e+02 0.13957000e+00
- 1 -2112 0 0 0.10223285e+01 0.16271224e+01 0.36917617e+03 0.93957000e+00
- 2 111 562 563 0.12293081e+00 0.88165202e-01 0.83603461e+02 0.13498000e+00
- 1 211 0 0 0.10705678e+01 0.29695873e+00 0.45497698e+03 0.13957000e+00
- 1 -211 0 0 0.33395844e+00 0.94699782e-01 0.26476265e+03 0.13957000e+00
- 2 111 564 565 0.76598923e+00 0.48692303e+00 0.35456516e+03 0.13498000e+00
- 1 22 0 0 0.60289489e+00 -0.19017790e+00 0.31402291e+03 0.00000000e+00
- 1 22 0 0 0.17033356e+00 0.10529481e-01 0.70237481e+02 0.00000000e+00
- 1 2212 0 0 0.96090853e+00 -0.36314100e+00 0.43899580e+03 0.93827000e+00
- 1 -211 0 0 0.69924123e+00 0.12332970e+00 0.14892559e+03 0.13957000e+00
- 1 -2112 0 0 0.11181634e+01 -0.13120944e+00 0.49178053e+03 0.93957000e+00
- 1 211 0 0 0.94175320e+00 0.12550626e+00 0.37591454e+03 0.13957000e+00
- 1 -211 0 0 -0.99394158e-01 -0.33368041e+00 0.36686905e+02 0.13957000e+00
- 2 111 566 567 0.19219647e+00 0.22013431e+00 0.11913705e+02 0.13498000e+00
- 1 -211 0 0 0.53952422e+00 -0.16204919e-01 0.27573832e+02 0.13957000e+00
- 1 211 0 0 0.79214811e-01 -0.18092792e+00 0.10519390e+02 0.13957000e+00
- 1 -211 0 0 0.13250760e+00 0.48829348e-01 0.64809327e+01 0.13957000e+00
- 1 211 0 0 0.14696508e+00 -0.23204275e-01 0.31271187e+01 0.13957000e+00
- 2 111 568 569 0.16353828e+00 0.22864321e+00 0.88492567e+01 0.13498000e+00
- 1 -211 0 0 0.40201626e+00 -0.15327316e+00 0.97972447e+01 0.13957000e+00
- 2 111 570 571 -0.80822387e-01 -0.94204566e+00 0.17360564e+02 0.13498000e+00
- 1 211 0 0 0.16482363e+00 -0.19871862e+00 0.41081911e+01 0.13957000e+00
- 1 -211 0 0 -0.16825201e+00 -0.90111073e+00 0.79040149e+01 0.13957000e+00
- 2 111 572 573 -0.14150835e+00 -0.10768396e+00 0.15390933e+01 0.13498000e+00
- 1 211 0 0 -0.60229908e+00 -0.51391145e+00 0.96949554e+01 0.13957000e+00
- 2 111 574 575 -0.31679447e+00 -0.11775149e+01 0.10830774e+02 0.13498000e+00
- 1 2112 0 0 -0.21597870e+01 -0.20349772e+01 0.37438806e+02 0.93957000e+00
- 1 -211 0 0 -0.55174369e+00 -0.15720583e+00 0.10509750e+02 0.13957000e+00
- 2 -3122 576 577 -0.22486392e+01 -0.25054001e+01 0.30828174e+02 0.11156800e+01
- 1 211 0 0 -0.31979840e-02 -0.11851351e+00 0.20092545e+01 0.13957000e+00
- 1 130 0 0 -0.13076837e+01 -0.11310477e+01 0.20698112e+02 0.49767000e+00
- 1 22 0 0 -0.46162778e-02 -0.95979711e-01 0.10072720e+01 0.00000000e+00
- 1 22 0 0 -0.54292137e+00 -0.11900522e+01 0.13063886e+02 0.00000000e+00
- 1 -211 0 0 0.14475479e+00 0.33835115e+00 0.12220384e+01 0.13957000e+00
- 2 111 578 579 0.27603605e-02 -0.29822933e+00 0.13109304e+01 0.13498000e+00
- 2 111 580 581 -0.21814615e+00 0.34791293e+00 0.12124396e+01 0.13498000e+00
- 2 111 582 583 -0.29033021e-01 0.17587048e-01 0.17283590e+00 0.13498000e+00
- 2 111 584 585 -0.28206837e-01 0.91412982e-01 0.35558922e+00 0.13498000e+00
- 1 211 0 0 -0.27664345e+00 -0.14747366e+00 0.67715346e+00 0.13957000e+00
- 1 -211 0 0 0.34378004e+00 -0.16212858e+00 0.51309709e+00 0.13957000e+00
- 1 -211 0 0 0.11621775e+00 -0.22708688e+00 0.39129051e+00 0.13957000e+00
- 2 111 586 587 0.25617222e-01 0.19593478e+00 0.18469550e+00 0.13498000e+00
- 1 211 0 0 0.39791984e+00 -0.58067172e-01 0.77296888e+00 0.13957000e+00
- 2 111 588 589 0.38580625e+00 0.32452664e+00 0.12443377e+00 0.13498000e+00
- 1 22 0 0 -0.14370496e-01 -0.45113133e-02 0.14765509e-01 0.00000000e+00
- 1 22 0 0 0.16918463e+00 -0.10820815e+00 -0.13760461e+00 0.00000000e+00
- 1 -211 0 0 0.34988943e+00 0.14122048e+00 0.88874078e-01 0.13957000e+00
- 1 211 0 0 0.63926913e+01 0.31782763e+01 0.58707801e+00 0.13957000e+00
- 1 22 0 0 0.23988004e-01 0.29532037e-01 0.45056885e+02 0.00000000e+00
- 1 22 0 0 0.18507883e-01 -0.37122612e-01 0.46238212e+01 0.00000000e+00
- 1 22 0 0 0.77646767e-01 -0.21743894e-01 0.41227364e+00 0.00000000e+00
- 1 22 0 0 0.49974552e+00 0.18260663e+00 0.34005750e+01 0.00000000e+00
- 1 22 0 0 0.12214990e+00 0.34914896e+00 0.11447781e+01 0.00000000e+00
- 1 22 0 0 0.73365460e-02 0.47237615e+00 0.13933236e+01 0.00000000e+00
- 1 22 0 0 0.20193724e+00 0.71953280e-01 0.10137492e+01 0.00000000e+00
- 1 22 0 0 -0.17810643e-01 0.31246011e-01 0.15111723e+00 0.00000000e+00
- 1 22 0 0 -0.35519894e+00 0.59865962e+00 0.64594332e+00 0.00000000e+00
- 1 22 0 0 0.10006538e-01 0.49746792e-01 0.49080645e-01 0.00000000e+00
- 1 22 0 0 -0.41031337e-01 -0.39725052e-01 0.33571957e+00 0.00000000e+00
- 1 22 0 0 -0.49720875e+00 -0.53949570e-01 0.18336085e+01 0.00000000e+00
- 1 22 0 0 -0.14294630e+00 0.12867160e-01 0.57912125e+00 0.00000000e+00
- 1 22 0 0 -0.11161343e+00 -0.11618318e+00 0.79488615e+00 0.00000000e+00
- 1 22 0 0 -0.23535523e+00 0.93209654e-02 0.13134053e+01 0.00000000e+00
- 1 22 0 0 -0.41980941e+00 0.80866969e-02 0.15135454e+01 0.00000000e+00
- 1 22 0 0 -0.62700078e+00 -0.12098578e+01 0.82051536e+01 0.00000000e+00
- 1 22 0 0 -0.22486696e+00 -0.37623578e+00 0.22349081e+01 0.00000000e+00
- 1 22 0 0 -0.22099113e+00 -0.26772608e+00 0.18110613e+01 0.00000000e+00
- 1 22 0 0 -0.97227538e+00 -0.13240335e+01 0.10177405e+02 0.00000000e+00
- 1 22 0 0 0.16085371e+00 -0.19178758e+00 0.13516568e-01 0.00000000e+00
- 1 22 0 0 0.33078174e-01 -0.11991160e+00 -0.75022014e-01 0.00000000e+00
- 1 22 0 0 0.40408071e+00 0.27062771e+00 -0.41260825e-01 0.00000000e+00
- 1 22 0 0 0.82290916e-01 0.13204357e+00 0.26260398e-01 0.00000000e+00
- 1 22 0 0 0.27438575e-01 0.10071061e+00 0.30786644e+00 0.00000000e+00
- 1 22 0 0 0.31339581e+00 0.22285715e+00 0.11646078e+01 0.00000000e+00
- 1 22 0 0 -0.31536057e+00 -0.12956867e+00 -0.16176417e+00 0.00000000e+00
- 1 22 0 0 -0.23337840e-02 0.97053528e-03 0.17904716e-01 0.00000000e+00
- 2 310 590 591 -0.38286454e+00 -0.93588862e-01 0.80449434e-01 0.49767000e+00
- 1 22 0 0 -0.16251934e-02 0.27559618e-01 -0.75458988e-01 0.00000000e+00
- 1 22 0 0 -0.32691655e+00 0.13515718e+00 -0.36129019e+00 0.00000000e+00
- 1 130 0 0 -0.80616650e+00 0.14880802e+00 -0.32328563e+01 0.49767000e+00
- 1 22 0 0 -0.30338376e+00 -0.10219852e+00 -0.29905993e+01 0.00000000e+00
- 1 22 0 0 -0.26045141e+00 -0.94646755e-01 -0.16457812e+01 0.00000000e+00
- 1 22 0 0 0.11805213e+00 0.60232434e+00 -0.10790686e+02 0.00000000e+00
- 1 22 0 0 -0.37184737e-01 0.17535245e+00 -0.34003123e+01 0.00000000e+00
- 1 22 0 0 0.33868239e+00 0.33334922e+00 -0.37230584e+01 0.00000000e+00
- 1 22 0 0 0.26347176e+00 0.16624119e+00 -0.32251282e+01 0.00000000e+00
- 1 22 0 0 -0.92403164e-01 0.32384539e+00 -0.31037096e+01 0.00000000e+00
- 1 22 0 0 -0.20920579e+00 0.25596174e+00 -0.30708328e+01 0.00000000e+00
- 1 22 0 0 0.10427432e+00 -0.90942945e-01 -0.72835648e+00 0.00000000e+00
- 1 22 0 0 0.17719381e-01 -0.11905175e+00 -0.28496208e+00 0.00000000e+00
- 1 130 0 0 0.54172323e-01 0.81755459e-01 -0.17612314e+02 0.49767000e+00
- 1 22 0 0 0.14799665e+00 0.27857056e+00 -0.12893198e+02 0.00000000e+00
- 1 22 0 0 0.80850036e-01 0.40087867e+00 -0.21260172e+02 0.00000000e+00
- 1 22 0 0 -0.11299860e+00 -0.19551008e+00 -0.12094390e+02 0.00000000e+00
- 1 22 0 0 -0.14874458e+00 -0.19928194e+00 -0.23096753e+02 0.00000000e+00
- 1 22 0 0 -0.43558397e-01 -0.15998781e+00 -0.71603102e+02 0.00000000e+00
- 1 22 0 0 -0.11109622e+00 -0.47116342e-01 -0.35565434e+02 0.00000000e+00
- 1 22 0 0 0.22046761e-01 0.44076293e-01 -0.23417492e+02 0.00000000e+00
- 1 22 0 0 0.12359768e+00 -0.10313219e-01 -0.17170173e+02 0.00000000e+00
- 1 22 0 0 -0.35313184e+00 -0.20058283e+00 -0.13024080e+03 0.00000000e+00
- 1 22 0 0 -0.29523447e+00 -0.63283610e-01 -0.76463125e+02 0.00000000e+00
- 1 22 0 0 0.28133038e-02 0.47387541e-02 -0.86181302e+01 0.00000000e+00
- 1 22 0 0 0.12973753e+00 0.14222783e+00 -0.15778182e+02 0.00000000e+00
- 1 22 0 0 -0.45399780e-01 -0.23222630e-01 -0.26215606e+02 0.00000000e+00
- 1 22 0 0 0.93001652e-01 -0.14953159e-01 -0.73750453e+02 0.00000000e+00
- 1 -2212 0 0 0.18828028e+00 -0.28404112e+00 -0.19125264e+03 0.93827000e+00
- 1 211 0 0 0.14528810e+00 -0.10534085e+00 -0.50941394e+02 0.13957000e+00
- 1 22 0 0 -0.21604935e+00 -0.59872512e-01 -0.20687369e+02 0.00000000e+00
- 1 22 0 0 -0.10455896e-01 -0.33786184e-01 -0.99540133e+01 0.00000000e+00
- 1 22 0 0 0.79171018e-01 -0.28222242e+00 -0.52196380e+01 0.00000000e+00
- 1 22 0 0 0.31290964e+00 -0.95754689e+00 -0.14045572e+02 0.00000000e+00
- 1 22 0 0 0.41521592e-01 -0.27900386e+00 -0.37869332e+01 0.00000000e+00
- 1 22 0 0 0.29544231e-01 -0.18401110e-01 -0.16569764e+00 0.00000000e+00
- 1 130 0 0 0.52099828e+00 -0.67678951e+00 0.51091932e+00 0.49767000e+00
- 2 310 592 593 -0.68231037e-01 -0.19977734e+00 -0.13219570e+00 0.49767000e+00
- 1 22 0 0 0.96714102e-01 -0.15754246e+00 -0.10728265e+00 0.00000000e+00
- 1 22 0 0 0.16359162e+00 -0.11726897e+00 0.35296904e-02 0.00000000e+00
- 1 22 0 0 0.16789159e+00 -0.97932058e-01 -0.97084002e-01 0.00000000e+00
- 1 22 0 0 0.73690801e-01 -0.79446278e-01 0.41630618e-01 0.00000000e+00
- 2 111 594 595 0.25057535e+00 -0.19774427e+00 0.75896325e-01 0.13498000e+00
- 2 111 596 597 0.10314461e+00 -0.54055776e-01 0.12784091e-01 0.13498000e+00
- 2 111 598 599 0.29595048e+00 -0.53488655e+00 0.23576295e+00 0.13498000e+00
- 2 111 600 601 0.40443148e-01 0.15152615e-01 0.86396410e+00 0.13498000e+00
- 2 111 602 603 0.45718155e-01 -0.52041457e-01 0.12891299e+01 0.13498000e+00
- 2 111 604 605 0.12547762e+00 -0.35989465e+00 0.38805904e+01 0.13498000e+00
- 1 130 0 0 0.96111673e-01 0.22080049e+00 0.46886889e+01 0.49767000e+00
- 1 22 0 0 -0.49596143e-01 -0.94497365e-01 0.11539010e+01 0.00000000e+00
- 1 22 0 0 -0.58171058e-01 -0.13303076e+00 0.44283491e+01 0.00000000e+00
- 1 130 0 0 -0.21041962e+00 0.32340345e+00 0.28539712e+01 0.49767000e+00
- 1 22 0 0 0.20683479e+00 -0.16921576e+00 0.24544722e+01 0.00000000e+00
- 1 22 0 0 0.62561833e-01 0.22237283e-01 0.47552827e+00 0.00000000e+00
- 1 130 0 0 -0.20907975e+00 -0.17085234e+00 0.44530351e+01 0.49767000e+00
- 1 22 0 0 0.13399953e-01 -0.51336883e-02 -0.11230527e-01 0.00000000e+00
- 1 22 0 0 0.76183549e-01 0.89841418e-01 0.31513138e+00 0.00000000e+00
- 1 22 0 0 0.15844667e-01 0.13854851e+00 0.78089057e+00 0.00000000e+00
- 1 22 0 0 -0.35666465e-03 0.60964408e-01 0.13310545e+01 0.00000000e+00
- 1 22 0 0 0.48137859e-01 -0.99968384e-01 0.48843227e+00 0.00000000e+00
- 1 22 0 0 -0.95688100e-02 -0.10950254e+00 0.15342640e+00 0.00000000e+00
- 1 22 0 0 0.47343080e-01 -0.88903030e-01 0.37159115e+02 0.00000000e+00
- 1 22 0 0 0.54343272e-01 0.45536607e-01 0.18076712e+02 0.00000000e+00
- 1 22 0 0 0.19090986e-01 0.22411810e-01 0.42108020e+00 0.00000000e+00
- 1 22 0 0 -0.59951076e-01 -0.28785194e-01 0.69912341e+01 0.00000000e+00
- 1 22 0 0 -0.40664622e+00 -0.15207631e+00 0.33894812e+03 0.00000000e+00
- 1 22 0 0 0.18014270e+00 -0.18238826e-01 0.16244219e+03 0.00000000e+00
- 1 22 0 0 -0.54332044e+00 0.12202193e+00 0.19399669e+02 0.00000000e+00
- 1 22 0 0 -0.84183466e+00 0.35955828e+00 0.33506812e+02 0.00000000e+00
- 1 -2112 0 0 0.36946885e-01 0.59996920e+00 0.11969930e+03 0.93957000e+00
- 2 111 606 607 -0.39731209e-01 0.13903955e+00 0.36491551e+02 0.13498000e+00
- 1 22 0 0 -0.28427100e-01 0.13629617e-01 0.18685607e+02 0.00000000e+00
- 1 22 0 0 0.15135791e+00 0.74535585e-01 0.64917854e+02 0.00000000e+00
- 1 22 0 0 0.69423663e+00 0.39289788e+00 0.31545926e+03 0.00000000e+00
- 1 22 0 0 0.71752600e-01 0.94025147e-01 0.39105894e+02 0.00000000e+00
- 1 22 0 0 0.14633424e+00 0.13395768e+00 0.54479793e+01 0.00000000e+00
- 1 22 0 0 0.45862233e-01 0.86176628e-01 0.64657253e+01 0.00000000e+00
- 1 22 0 0 -0.10655986e-01 0.26781030e-01 0.31159981e+00 0.00000000e+00
- 1 22 0 0 0.17419427e+00 0.20186218e+00 0.85376568e+01 0.00000000e+00
- 1 22 0 0 0.22125188e-01 -0.44314058e+00 0.75254498e+01 0.00000000e+00
- 1 22 0 0 -0.10294757e+00 -0.49890508e+00 0.98351145e+01 0.00000000e+00
- 1 22 0 0 -0.54446044e-01 0.34356515e-02 0.16303534e+00 0.00000000e+00
- 1 22 0 0 -0.87062310e-01 -0.11111961e+00 0.13760580e+01 0.00000000e+00
- 1 22 0 0 -0.32574270e+00 -0.11485600e+01 0.10426380e+02 0.00000000e+00
- 1 22 0 0 0.89482359e-02 -0.28954904e-01 0.40439444e+00 0.00000000e+00
- 1 -2212 0 0 -0.19486240e+01 -0.20827678e+01 0.25396589e+02 0.93827000e+00
- 1 211 0 0 -0.30001521e+00 -0.42263232e+00 0.54315856e+01 0.13957000e+00
- 1 22 0 0 0.27757400e-01 -0.28002230e+00 0.12642831e+01 0.00000000e+00
- 1 22 0 0 -0.24997039e-01 -0.18207030e-01 0.46647381e-01 0.00000000e+00
- 1 22 0 0 -0.20494883e+00 0.26634531e+00 0.10800804e+01 0.00000000e+00
- 1 22 0 0 -0.13197318e-01 0.81567624e-01 0.13235917e+00 0.00000000e+00
- 1 22 0 0 0.16821665e-01 0.46744770e-01 0.15793490e+00 0.00000000e+00
- 1 22 0 0 -0.45854686e-01 -0.29157723e-01 0.14901003e-01 0.00000000e+00
- 1 22 0 0 -0.15517029e-01 0.23230712e-01 0.30517814e+00 0.00000000e+00
- 1 22 0 0 -0.12689808e-01 0.68182271e-01 0.50411074e-01 0.00000000e+00
- 1 22 0 0 0.35990214e-01 0.15473889e+00 0.20150702e+00 0.00000000e+00
- 1 22 0 0 -0.10372992e-01 0.41195885e-01 -0.16811526e-01 0.00000000e+00
- 1 22 0 0 0.19870691e+00 0.25258402e+00 0.80984987e-01 0.00000000e+00
- 1 22 0 0 0.18709933e+00 0.71942627e-01 0.43448780e-01 0.00000000e+00
- 1 211 0 0 -0.19147628e+00 0.12274082e+00 -0.83563246e-01 0.13957000e+00
- 1 -211 0 0 -0.19138827e+00 -0.21632968e+00 0.16401268e+00 0.13957000e+00
- 2 111 608 609 0.12068758e-01 -0.31598499e+00 -0.10343370e+00 0.13498000e+00
- 2 111 610 611 -0.80299795e-01 0.11620765e+00 -0.28761998e-01 0.13498000e+00
- 1 22 0 0 0.15808134e+00 -0.19174922e+00 0.82533011e-01 0.00000000e+00
- 1 22 0 0 0.92494002e-01 -0.59950508e-02 -0.66366858e-02 0.00000000e+00
- 1 22 0 0 0.13185280e-01 0.42892302e-01 -0.55222885e-02 0.00000000e+00
- 1 22 0 0 0.89959328e-01 -0.96948078e-01 0.18306380e-01 0.00000000e+00
- 1 22 0 0 0.74287984e-01 -0.16947966e+00 0.93122136e-02 0.00000000e+00
- 1 22 0 0 0.22166249e+00 -0.36540689e+00 0.22645073e+00 0.00000000e+00
- 1 22 0 0 0.12681970e-01 0.54343974e-01 0.15185803e+00 0.00000000e+00
- 1 22 0 0 0.27761178e-01 -0.39191358e-01 0.71210607e+00 0.00000000e+00
- 1 22 0 0 -0.46973210e-01 -0.15874107e-01 0.32242776e+00 0.00000000e+00
- 1 22 0 0 0.92691365e-01 -0.36167349e-01 0.96670214e+00 0.00000000e+00
- 1 22 0 0 0.51692811e-01 -0.27193587e+00 0.22483582e+01 0.00000000e+00
- 1 22 0 0 0.73784805e-01 -0.87958783e-01 0.16322322e+01 0.00000000e+00
- 1 22 0 0 0.82783424e-02 -0.17740116e-01 0.12373645e+01 0.00000000e+00
- 1 22 0 0 -0.48009551e-01 0.15677967e+00 0.35254186e+02 0.00000000e+00
- 1 22 0 0 -0.45171995e-01 -0.11493517e+00 0.49132543e-02 0.00000000e+00
- 1 22 0 0 0.57240752e-01 -0.20104981e+00 -0.10834696e+00 0.00000000e+00
- 1 22 0 0 -0.69151660e-01 0.28258265e-01 0.40505060e-01 0.00000000e+00
- 1 22 0 0 -0.11148134e-01 0.87949382e-01 -0.69267058e-01 0.00000000e+00
- 298
- 2 25 2 3 -0.15693650e+02 0.10007101e+02 -0.11647048e+03 0.12499716e+03
- 2 23 4 6 0.45239653e+01 0.29163835e+02 -0.18728931e+02 0.20541006e+02
- 2 23 7 9 -0.20217615e+02 -0.19156734e+02 -0.97741545e+02 0.83158287e+02
- 1 11 0 0 -0.38735060e+01 0.12102589e+01 0.22100982e+01 0.51000000e-03
- 1 -11 0 0 0.83974306e+01 0.27953374e+02 -0.20938875e+02 0.51000000e-03
- 1 22 0 0 0.40712654e-04 0.20231266e-03 -0.15402891e-03 0.00000000e+00
- 1 -13 0 0 0.35351221e+01 0.29538222e+02 -0.54132530e+02 0.10566000e+00
- 1 13 0 0 -0.23752705e+02 -0.48694895e+02 -0.43608963e+02 0.10566000e+00
- 1 22 0 0 -0.32663035e-04 -0.62106931e-04 -0.51364845e-04 0.00000000e+00
- 2 4 34 34 -0.86516249e+00 0.20098405e+01 -0.12392000e+03 0.15000000e+01
- 2 21 34 34 0.19931626e+00 0.38233993e+00 -0.73892590e+01 0.00000000e+00
- 2 21 34 34 0.48244379e+01 -0.45512821e+01 0.30640285e+02 0.00000000e+00
- 2 21 34 34 0.73056685e+01 -0.37078338e+01 0.30947316e+02 0.00000000e+00
- 2 21 34 34 0.24620343e+01 -0.19230855e+01 0.16905804e+02 0.00000000e+00
- 2 21 34 34 0.21439436e+01 -0.60415900e+00 0.12561669e+02 0.00000000e+00
- 2 21 34 34 0.26222867e+00 -0.63074310e+00 0.28903502e+01 0.00000000e+00
- 2 21 34 34 -0.14444748e+01 -0.14049039e+01 0.19953059e+02 0.00000000e+00
- 2 21 34 34 0.33167986e+00 -0.28922061e+00 0.49873195e+01 0.00000000e+00
- 2 21 34 34 0.23809229e+00 0.48872808e+01 0.20702181e+02 0.00000000e+00
- 2 21 34 34 0.12284457e+00 0.12297373e+01 0.17945361e-01 0.00000000e+00
- 2 2101 34 34 0.89480658e+00 0.22524731e+01 0.55009552e+04 0.57933000e+00
- 2 -4 73 73 0.35736073e+00 -0.53824463e+00 -0.14506859e+03 0.15000000e+01
- 2 21 73 73 -0.88192669e-01 -0.60327196e+00 -0.31155028e+02 0.00000000e+00
- 2 21 73 73 0.15932857e+00 -0.12598418e+01 -0.36805434e+03 0.00000000e+00
- 2 2 73 73 -0.94315213e-01 -0.33203367e+00 -0.49433844e+03 0.33000000e+00
- 2 2 78 78 0.19493293e+00 -0.13850393e+01 0.13291692e+04 0.33000000e+00
- 2 21 78 78 -0.91021230e+00 -0.10969232e+01 -0.83803865e+01 0.00000000e+00
- 2 21 78 78 0.91021230e+00 0.10969232e+01 -0.18184092e+03 0.00000000e+00
- 2 21 78 78 0.11458368e+01 0.44531315e+00 -0.12545543e+02 0.00000000e+00
- 2 21 78 78 -0.10480490e+01 -0.30065685e+01 -0.98867883e+01 0.00000000e+00
- 2 21 78 78 0.33565173e+00 -0.15492172e+01 -0.81433607e+01 0.00000000e+00
- 2 21 78 78 0.11433558e+00 -0.71820122e-01 -0.20026570e+01 0.00000000e+00
- 2 2101 78 78 -0.18586544e+01 0.64317937e+00 -0.54605347e+04 0.57933000e+00
- 2 92 35 72 0.16475415e+02 -0.23495565e+01 0.55092519e+04 0.17354759e+04
- 2 421 106 110 -0.22336512e+00 0.14144165e+01 -0.92516384e+02 0.18645000e+01
- 2 213 111 112 -0.66489886e-01 0.97072717e+00 -0.26752036e+02 0.69803364e+00
- 2 113 113 114 -0.41654394e+00 -0.36327243e+00 -0.41154461e+01 0.70717509e+00
- 2 113 115 116 0.10983088e+00 0.43543571e+00 -0.68791181e+01 0.78690532e+00
- 1 2112 0 0 0.15957882e+00 -0.29956281e+00 0.81023374e+00 0.93957000e+00
- 2 111 117 118 -0.32626617e-01 -0.65253228e-01 0.25218519e+00 0.13498000e+00
- 1 -2212 0 0 0.15661935e+00 -0.66242364e+00 -0.48746718e-01 0.93827000e+00
- 2 221 119 121 0.70877491e+00 0.43482322e+00 0.43666321e+01 0.54745000e+00
- 2 111 122 123 0.14709081e+00 -0.95088236e+00 0.19189735e+01 0.13498000e+00
- 2 111 124 125 0.11469820e+00 0.16306548e+00 0.10365440e+01 0.13498000e+00
- 2 323 126 127 0.44127281e+01 -0.27666155e+01 0.21508110e+02 0.92269642e+00
- 2 -311 128 128 0.27995186e+01 -0.16876920e+01 0.15263846e+02 0.49767000e+00
- 2 221 129 131 0.10429353e+01 -0.95279337e+00 0.83353435e+01 0.54745000e+00
- 2 311 132 132 0.23985653e+01 -0.23610786e+01 0.12912219e+02 0.49767000e+00
- 2 -323 133 134 0.39622339e+01 -0.17000352e+01 0.20776488e+02 0.10004809e+01
- 2 213 135 136 0.48895970e+00 -0.36842100e+00 0.48543016e+01 0.52561606e+00
- 2 -213 137 138 -0.56883082e+00 -0.21514165e+00 0.94438382e+01 0.83785324e+00
- 2 2214 139 140 0.86469541e+00 -0.10198169e+01 0.11894020e+02 0.11853159e+01
- 2 111 141 142 -0.63932776e+00 0.15598491e+01 0.10568738e+02 0.13498000e+00
- 1 -2112 0 0 0.19490168e-02 0.60469492e+00 0.32164018e+01 0.93957000e+00
- 2 331 143 145 0.11318868e+00 0.59012784e+00 0.56764051e+01 0.95766203e+00
- 2 -213 146 147 0.29063976e+00 0.47307591e+00 0.20131716e+01 0.82113110e+00
- 1 211 0 0 -0.43569141e+00 0.48755948e+00 0.15143096e+01 0.13957000e+00
- 2 113 148 149 0.13333551e+00 0.58271800e+00 0.82271832e+00 0.45752585e+00
- 2 113 150 151 0.25513078e+00 0.42829190e+00 0.44252212e+01 0.85923127e+00
- 2 111 152 153 -0.65547753e-01 0.35078277e+00 0.10111848e+01 0.13498000e+00
- 2 223 154 156 -0.41695434e+00 -0.40194543e-01 0.43088224e+01 0.77531971e+00
- 2 221 157 159 0.27291138e+00 -0.60338141e-02 0.42376548e+00 0.54745000e+00
- 2 2214 160 161 0.45854112e+00 0.36674125e+00 0.23177986e+02 0.13047366e+01
- 2 -213 162 163 0.89855703e-01 0.14641165e+00 0.69804754e+01 0.48930318e+00
- 2 -3122 164 165 -0.80696289e+00 -0.64168815e+00 0.61902706e+02 0.11156800e+01
- 1 -321 0 0 0.74698897e-01 0.81638955e+00 0.29497044e+03 0.49360000e+00
- 1 211 0 0 0.20244087e+00 -0.31198876e-01 0.65366512e+03 0.13957000e+00
- 2 221 166 167 0.29646044e+00 0.33361711e+00 0.70250130e+03 0.54745000e+00
- 2 111 168 169 -0.73307411e-02 0.35435346e+00 0.10649474e+03 0.13498000e+00
- 2 221 170 171 0.26193365e+00 0.33450261e+00 0.74525280e+03 0.54745000e+00
- 1 2112 0 0 0.34117338e+00 0.10248460e+01 0.27612741e+04 0.93957000e+00
- 2 111 172 173 -0.34020124e-02 -0.89882094e-01 0.13599049e+03 0.13498000e+00
- 2 92 74 77 0.33418142e+00 -0.27333921e+01 -0.10386164e+04 0.53790593e+01
- 2 -423 174 175 0.50486928e+00 -0.12461460e+01 -0.22489312e+03 0.20067000e+01
- 1 -211 0 0 -0.69889109e+00 -0.23092837e+00 -0.28628586e+03 0.13957000e+00
- 2 213 176 177 0.39023277e+00 -0.46290682e+00 -0.21772764e+03 0.86282644e+00
- 2 111 178 179 0.13797046e+00 -0.79341085e+00 -0.30970978e+03 0.13498000e+00
- 2 92 79 105 -0.11159464e+01 -0.49241526e+01 -0.43541651e+04 0.54980245e+04
- 2 323 180 181 -0.10610400e+00 -0.13635183e+01 0.11155191e+04 0.90644337e+00
- 2 -313 182 183 0.15283702e+00 0.11948764e+00 0.11668167e+03 0.71542478e+00
- 2 313 184 185 0.62001667e+00 -0.50271370e-01 0.51995901e+02 0.92565631e+00
- 2 333 186 187 -0.64638515e+00 0.18472042e+00 0.38975975e+02 0.10214769e+01
- 2 -323 188 189 0.62820417e+00 -0.33723414e+00 0.45815755e+01 0.80117532e+00
- 2 213 190 191 -0.71932585e+00 -0.20338067e+00 0.31939495e+00 0.68372775e+00
- 1 -211 0 0 0.35767945e+00 0.28184154e+00 0.27454600e+00 0.13957000e+00
- 2 111 192 193 -0.75820854e+00 -0.14007313e+00 -0.21094326e+01 0.13498000e+00
- 2 323 194 195 0.13301228e+00 -0.85785804e+00 -0.18707559e+01 0.89631420e+00
- 2 -313 196 197 -0.29578454e+00 -0.19589998e+00 -0.11228329e+02 0.89190576e+00
- 2 -213 198 199 0.37138271e-01 0.82222966e+00 -0.46298877e+02 0.72156557e+00
- 2 2224 200 201 0.26824193e+00 0.29674483e+00 -0.34999252e+02 0.12956610e+01
- 2 113 202 203 0.63349631e+00 -0.45714841e-01 -0.36145976e+02 0.56237878e+00
- 2 -2214 204 205 0.58544533e+00 -0.11605343e+00 -0.57488102e+02 0.11350288e+01
- 1 -211 0 0 -0.39603917e+00 0.58688408e+00 -0.68818517e+01 0.13957000e+00
- 1 2212 0 0 0.21469988e+00 -0.18536732e+01 -0.99335603e+01 0.93827000e+00
- 2 223 206 208 -0.26796762e+00 -0.43610640e-01 -0.33657970e+01 0.77421088e+00
- 1 -2212 0 0 0.56818776e+00 -0.10061389e+01 -0.70595027e+01 0.93827000e+00
- 1 211 0 0 -0.85984536e+00 -0.14174299e+01 -0.10576825e+02 0.13957000e+00
- 2 111 209 210 0.59458289e+00 -0.45102580e+00 -0.15519022e+02 0.13498000e+00
- 1 2112 0 0 -0.83936509e-01 0.61675046e+00 -0.64671845e+02 0.93957000e+00
- 1 211 0 0 -0.47841314e+00 0.12580158e+00 -0.19839041e+02 0.13957000e+00
- 2 -2224 211 212 0.91995711e+00 -0.48516396e+00 -0.15321963e+03 0.11972745e+01
- 2 223 213 214 -0.46515568e+00 -0.13901723e+00 -0.11435813e+03 0.78346817e+00
- 2 323 215 216 -0.33048622e+00 -0.97463908e-01 -0.49975994e+03 0.87159158e+00
- 2 -313 217 218 -0.32251466e+00 0.45523313e+00 -0.14717297e+04 0.83835311e+00
- 1 2112 0 0 -0.10992790e+01 0.38968150e+00 -0.31154577e+04 0.93957000e+00
- 2 -311 219 219 -0.11929610e-01 0.27961732e+00 -0.21360698e+02 0.49767000e+00
- 2 113 220 221 0.36845636e-01 0.57717825e+00 -0.48874662e+02 0.75663249e+00
- 2 111 222 223 -0.11862292e+00 0.20251293e+00 -0.91002630e+01 0.13498000e+00
- 2 111 224 225 -0.52032007e-01 0.10407937e+00 -0.36417373e+01 0.13498000e+00
- 2 111 226 227 -0.77626224e-01 0.25102868e+00 -0.95390232e+01 0.13498000e+00
- 1 211 0 0 0.16211604e+00 0.31912311e+00 -0.15530214e+02 0.13957000e+00
- 2 111 228 229 -0.22860592e+00 0.65160407e+00 -0.11221823e+02 0.13498000e+00
- 1 -211 0 0 -0.25814768e-01 -0.25073888e+00 -0.54989037e+00 0.13957000e+00
- 1 211 0 0 -0.39072917e+00 -0.11253355e+00 -0.35655557e+01 0.13957000e+00
- 1 211 0 0 0.17441746e+00 -0.49020373e-02 -0.49038369e+01 0.13957000e+00
- 1 -211 0 0 -0.64586579e-01 0.44033775e+00 -0.19752812e+01 0.13957000e+00
- 1 22 0 0 -0.79474656e-01 -0.11432899e-01 0.11092616e+00 0.00000000e+00
- 1 22 0 0 0.46848039e-01 -0.53820329e-01 0.14125903e+00 0.00000000e+00
- 2 111 230 231 0.27821838e+00 0.19990942e+00 0.19803286e+01 0.13498000e+00
- 2 111 232 233 0.12322573e+00 -0.32118633e-01 0.65645979e+00 0.13498000e+00
- 2 111 234 235 0.30733079e+00 0.26703242e+00 0.17298437e+01 0.13498000e+00
- 1 22 0 0 0.15844238e+00 -0.60425218e+00 0.12498906e+01 0.00000000e+00
- 1 22 0 0 -0.11351566e-01 -0.34663018e+00 0.66908293e+00 0.00000000e+00
- 1 22 0 0 0.34794871e-01 0.84620311e-02 0.47252682e+00 0.00000000e+00
- 1 22 0 0 0.79903325e-01 0.15460345e+00 0.56401716e+00 0.00000000e+00
- 2 311 236 236 0.23921446e+01 -0.15341012e+01 0.10555774e+02 0.49767000e+00
- 1 211 0 0 0.20205835e+01 -0.12325143e+01 0.10952336e+02 0.13957000e+00
- 1 130 0 0 0.27995186e+01 -0.16876920e+01 0.15263846e+02 0.49767000e+00
- 1 211 0 0 0.19747723e+00 -0.15173195e+00 0.16114586e+01 0.13957000e+00
- 1 -211 0 0 0.23004196e+00 -0.23293643e+00 0.14125763e+01 0.13957000e+00
- 2 111 237 238 0.61541616e+00 -0.56812499e+00 0.53113086e+01 0.13498000e+00
- 1 130 0 0 0.23985653e+01 -0.23610786e+01 0.12912219e+02 0.49767000e+00
- 1 -321 0 0 0.25166010e+01 -0.71743676e+00 0.11823090e+02 0.49360000e+00
- 2 111 239 240 0.14456328e+01 -0.98259840e+00 0.89533986e+01 0.13498000e+00
- 1 211 0 0 0.17101679e+00 -0.39485919e+00 0.23977191e+01 0.13957000e+00
- 2 111 241 242 0.31794291e+00 0.26438184e-01 0.24565824e+01 0.13498000e+00
- 1 -211 0 0 -0.64712467e+00 -0.38911592e+00 0.81088362e+01 0.13957000e+00
- 2 111 243 244 0.78293851e-01 0.17397427e+00 0.13350020e+01 0.13498000e+00
- 1 2212 0 0 0.80360055e+00 -0.99699875e+00 0.11433457e+02 0.93827000e+00
- 2 111 245 246 0.61094857e-01 -0.22818191e-01 0.46056255e+00 0.13498000e+00
- 1 22 0 0 -0.55167885e-01 0.64580444e-01 0.61344023e+00 0.00000000e+00
- 1 22 0 0 -0.58415988e+00 0.14952687e+01 0.99552980e+01 0.00000000e+00
- 1 -211 0 0 -0.48617071e-01 0.12277678e+00 0.45463207e+00 0.13957000e+00
- 1 211 0 0 0.29726165e-01 0.17625915e+00 0.18110123e+01 0.13957000e+00
- 2 221 247 248 0.13207959e+00 0.29109191e+00 0.34107607e+01 0.54745000e+00
- 1 -211 0 0 0.42024240e+00 0.49176084e-01 0.54237216e+00 0.13957000e+00
- 2 111 249 250 -0.12960264e+00 0.42389983e+00 0.14707994e+01 0.13498000e+00
- 1 -211 0 0 0.25340344e+00 0.32843383e+00 0.44836740e+00 0.13957000e+00
- 1 211 0 0 -0.12006792e+00 0.25428416e+00 0.37435092e+00 0.13957000e+00
- 1 -211 0 0 0.31587088e+00 -0.11145287e+00 0.98491714e+00 0.13957000e+00
- 1 211 0 0 -0.60740104e-01 0.53974477e+00 0.34403040e+01 0.13957000e+00
- 1 22 0 0 -0.60100361e-01 0.32562323e+00 0.76953615e+00 0.00000000e+00
- 1 22 0 0 -0.54473916e-02 0.25159531e-01 0.24164864e+00 0.00000000e+00
- 1 211 0 0 -0.23289125e-01 -0.16318389e+00 0.17928201e+01 0.13957000e+00
- 1 -211 0 0 -0.39078969e+00 0.24340039e-02 0.13523341e+01 0.13957000e+00
- 2 111 251 252 -0.28755214e-02 0.12055534e+00 0.11636682e+01 0.13498000e+00
- 1 211 0 0 0.91026248e-01 -0.13495925e+00 0.81720874e-01 0.13957000e+00
- 1 -211 0 0 0.84183212e-01 0.11389526e+00 0.26287714e+00 0.13957000e+00
- 2 111 253 254 0.97701924e-01 0.15030171e-01 0.79167467e-01 0.13498000e+00
- 1 2212 0 0 0.33686276e+00 0.50120311e+00 0.15192922e+02 0.93827000e+00
- 2 111 255 256 0.12167836e+00 -0.13446186e+00 0.79850642e+01 0.13498000e+00
- 1 -211 0 0 -0.90970830e-02 0.24176829e+00 0.54514758e+01 0.13957000e+00
- 2 111 257 258 0.98952786e-01 -0.95356640e-01 0.15289995e+01 0.13498000e+00
- 1 -2212 0 0 -0.65725042e+00 -0.56551391e+00 0.48341060e+02 0.93827000e+00
- 1 211 0 0 -0.14971247e+00 -0.76174238e-01 0.13561646e+02 0.13957000e+00
- 1 22 0 0 0.32552932e+00 0.18032465e+00 0.20958094e+03 0.00000000e+00
- 1 22 0 0 -0.29068886e-01 0.15329247e+00 0.49292036e+03 0.00000000e+00
- 1 22 0 0 0.34703833e-01 0.14367631e+00 0.28903418e+02 0.00000000e+00
- 1 22 0 0 -0.42034574e-01 0.21067716e+00 0.77591323e+02 0.00000000e+00
- 1 22 0 0 -0.11178904e+00 0.70891858e-01 0.39676160e+03 0.00000000e+00
- 1 22 0 0 0.37372269e+00 0.26361075e+00 0.34849120e+03 0.00000000e+00
- 1 22 0 0 -0.45528807e-01 0.12061805e-01 0.57402896e+02 0.00000000e+00
- 1 22 0 0 0.42126795e-01 -0.10194390e+00 0.78587596e+02 0.00000000e+00
- 2 -421 259 261 0.40075037e+00 -0.11872844e+01 -0.19870226e+03 0.18645000e+01
- 1 22 0 0 0.10411890e+00 -0.58861660e-01 -0.26190857e+02 0.00000000e+00
- 1 211 0 0 0.22434750e+00 0.28077008e-01 -0.15605654e+03 0.13957000e+00
- 2 111 262 263 0.16588527e+00 -0.49098383e+00 -0.61671102e+02 0.13498000e+00
- 1 22 0 0 0.34957507e-02 -0.27610321e+00 -0.12387631e+03 0.00000000e+00
- 1 22 0 0 0.13447471e+00 -0.51730763e+00 -0.18583348e+03 0.00000000e+00
- 1 321 0 0 -0.53148959e-01 -0.12346566e+01 0.10654273e+04 0.49360000e+00
- 2 111 264 265 -0.52955045e-01 -0.12886166e+00 0.50091833e+02 0.13498000e+00
- 1 -321 0 0 0.17035133e+00 0.13602436e+00 0.10653006e+03 0.49360000e+00
- 1 211 0 0 -0.17514315e-01 -0.16536726e-01 0.10151614e+02 0.13957000e+00
- 1 321 0 0 0.31266822e+00 0.26422312e+00 0.26292252e+02 0.49360000e+00
- 1 -211 0 0 0.30734845e+00 -0.31449449e+00 0.25703649e+02 0.13957000e+00
- 1 321 0 0 -0.37920476e+00 0.93638479e-02 0.22789753e+02 0.49360000e+00
- 1 -321 0 0 -0.26718039e+00 0.17535657e+00 0.16186221e+02 0.49360000e+00
- 2 -311 266 266 0.22363119e+00 -0.11646975e+00 0.30268498e+01 0.49767000e+00
- 1 -211 0 0 0.40457298e+00 -0.22076439e+00 0.15547257e+01 0.13957000e+00
- 1 211 0 0 -0.61879795e-01 -0.17731633e+00 -0.11661458e+00 0.13957000e+00
- 2 111 267 268 -0.65744606e+00 -0.26064340e-01 0.43600953e+00 0.13498000e+00
- 1 22 0 0 -0.20283862e+00 0.21902489e-01 -0.52588724e+00 0.00000000e+00
- 1 22 0 0 -0.55536992e+00 -0.16197562e+00 -0.15835454e+01 0.00000000e+00
- 1 321 0 0 0.36312205e+00 -0.63807651e+00 -0.15028966e+01 0.49360000e+00
- 2 111 269 270 -0.23010977e+00 -0.21978153e+00 -0.36785932e+00 0.13498000e+00
- 2 -311 271 271 -0.20466643e+00 0.12024925e+00 -0.48906986e+01 0.49767000e+00
- 2 111 272 273 -0.91118118e-01 -0.31614923e+00 -0.63376303e+01 0.13498000e+00
- 1 -211 0 0 0.34835912e+00 0.38212410e+00 -0.20924459e+02 0.13957000e+00
- 2 111 274 275 -0.31122085e+00 0.44010556e+00 -0.25374417e+02 0.13498000e+00
- 1 2212 0 0 -0.38980484e-01 0.26052914e+00 -0.29266916e+02 0.93827000e+00
- 1 211 0 0 0.30722241e+00 0.36215698e-01 -0.57323365e+01 0.13957000e+00
- 1 -211 0 0 0.47294271e+00 0.19201078e+00 -0.22218915e+02 0.13957000e+00
- 1 211 0 0 0.16055360e+00 -0.23772562e+00 -0.13927061e+02 0.13957000e+00
- 1 -2212 0 0 0.44709211e+00 0.99446066e-02 -0.49774464e+02 0.93827000e+00
- 2 111 276 277 0.13835322e+00 -0.12599804e+00 -0.77136381e+01 0.13498000e+00
- 1 -211 0 0 -0.22308656e+00 -0.13666610e+00 -0.25635541e+01 0.13957000e+00
- 1 211 0 0 0.46196423e-01 -0.32940821e-02 -0.54424658e+00 0.13957000e+00
- 2 111 278 279 -0.91077484e-01 0.96349538e-01 -0.25799635e+00 0.13498000e+00
- 1 22 0 0 0.43183911e+00 -0.39770400e+00 -0.12103649e+02 0.00000000e+00
- 1 22 0 0 0.16274378e+00 -0.53321800e-01 -0.34153739e+01 0.00000000e+00
- 1 -2212 0 0 0.91757155e+00 -0.50558425e+00 -0.12613659e+03 0.93827000e+00
- 1 -211 0 0 0.23855612e-02 0.20420291e-01 -0.27083033e+02 0.13957000e+00
- 1 22 0 0 -0.46714829e+00 -0.40503622e+00 -0.71290820e+02 0.00000000e+00
- 2 111 280 281 0.19926148e-02 0.26601899e+00 -0.43067309e+02 0.13498000e+00
- 2 311 282 282 -0.41630740e+00 -0.10434362e-01 -0.26098639e+03 0.49767000e+00
- 1 211 0 0 0.85821184e-01 -0.87029546e-01 -0.23877354e+03 0.13957000e+00
- 1 -321 0 0 -0.30457287e+00 0.29503741e+00 -0.13506629e+04 0.49360000e+00
- 1 211 0 0 -0.17941788e-01 0.16019573e+00 -0.12106684e+03 0.13957000e+00
- 2 310 283 284 -0.11929610e-01 0.27961732e+00 -0.21360698e+02 0.49767000e+00
- 1 -211 0 0 -0.28506349e+00 0.31560187e+00 -0.33687754e+02 0.13957000e+00
- 1 211 0 0 0.32190913e+00 0.26157638e+00 -0.15186908e+02 0.13957000e+00
- 1 22 0 0 -0.99504207e-02 0.86918115e-01 -0.16333978e+01 0.00000000e+00
- 1 22 0 0 -0.10867249e+00 0.11559481e+00 -0.74668652e+01 0.00000000e+00
- 1 22 0 0 -0.20081780e-01 0.13130118e+00 -0.30367143e+01 0.00000000e+00
- 1 22 0 0 -0.31950227e-01 -0.27221808e-01 -0.60502298e+00 0.00000000e+00
- 1 22 0 0 -0.11522598e+00 0.20529064e+00 -0.78840353e+01 0.00000000e+00
- 1 22 0 0 0.37599751e-01 0.45738038e-01 -0.16549879e+01 0.00000000e+00
- 1 22 0 0 -0.21341594e+00 0.59148257e+00 -0.10680953e+02 0.00000000e+00
- 1 22 0 0 -0.15189987e-01 0.60121493e-01 -0.54086991e+00 0.00000000e+00
- 1 22 0 0 0.48083726e-01 0.11186060e+00 0.63746345e+00 0.00000000e+00
- 1 22 0 0 0.23013466e+00 0.88048826e-01 0.13428651e+01 0.00000000e+00
- 1 22 0 0 0.12207652e+00 -0.24302967e-01 0.28931900e+00 0.00000000e+00
- 1 22 0 0 0.11492075e-02 -0.78156664e-02 0.36714079e+00 0.00000000e+00
- 1 22 0 0 0.76577142e-01 0.13431014e+00 0.81078393e+00 0.00000000e+00
- 1 22 0 0 0.23075365e+00 0.13272228e+00 0.91905981e+00 0.00000000e+00
- 1 130 0 0 0.23921446e+01 -0.15341012e+01 0.10555774e+02 0.49767000e+00
- 1 22 0 0 0.28874888e+00 -0.17724048e+00 0.21702638e+01 0.00000000e+00
- 1 22 0 0 0.32666728e+00 -0.39088451e+00 0.31410448e+01 0.00000000e+00
- 1 22 0 0 0.10981411e+01 -0.81361564e+00 0.70096347e+01 0.00000000e+00
- 1 22 0 0 0.34749177e+00 -0.16898276e+00 0.19437639e+01 0.00000000e+00
- 1 22 0 0 0.18418397e-01 0.60148262e-02 0.58981125e+00 0.00000000e+00
- 1 22 0 0 0.29952451e+00 0.20423358e-01 0.18667712e+01 0.00000000e+00
- 1 22 0 0 -0.32149047e-01 0.33705772e-01 0.15421163e+00 0.00000000e+00
- 1 22 0 0 0.11044290e+00 0.14026850e+00 0.11807904e+01 0.00000000e+00
- 1 22 0 0 -0.31964770e-01 -0.34735068e-01 0.84854980e-01 0.00000000e+00
- 1 22 0 0 0.93059627e-01 0.11916877e-01 0.37570757e+00 0.00000000e+00
- 1 22 0 0 -0.14007674e+00 0.32889179e+00 0.18016870e+01 0.00000000e+00
- 1 22 0 0 0.27215633e+00 -0.37799887e-01 0.16090738e+01 0.00000000e+00
- 1 22 0 0 -0.88779190e-01 0.40642421e+00 0.12695050e+01 0.00000000e+00
- 1 22 0 0 -0.40823453e-01 0.17475619e-01 0.20129439e+00 0.00000000e+00
- 1 22 0 0 0.20618917e-01 0.10462482e+00 0.11230805e+01 0.00000000e+00
- 1 22 0 0 -0.23494439e-01 0.15930522e-01 0.40587686e-01 0.00000000e+00
- 1 22 0 0 0.12800152e+00 0.32396905e-01 0.67344577e-01 0.00000000e+00
- 1 22 0 0 -0.30299591e-01 -0.17366734e-01 0.11822890e-01 0.00000000e+00
- 1 22 0 0 0.10698786e+00 -0.15880547e+00 0.74347233e+01 0.00000000e+00
- 1 22 0 0 0.14690505e-01 0.24343612e-01 0.55034088e+00 0.00000000e+00
- 1 22 0 0 0.83769583e-02 0.32537463e-01 0.19026785e+00 0.00000000e+00
- 1 22 0 0 0.90575828e-01 -0.12789410e+00 0.13387317e+01 0.00000000e+00
- 1 11 0 0 0.22894826e+00 -0.79436882e+00 -0.44453174e+02 0.51000000e-03
- 1 -12 0 0 -0.33640201e-01 -0.64641521e+00 -0.87093199e+02 0.00000000e+00
- 1 321 0 0 0.20544232e+00 0.25349966e+00 -0.67155886e+02 0.49360000e+00
- 1 22 0 0 -0.14712768e-01 -0.13063162e+00 -0.16854780e+02 0.00000000e+00
- 1 22 0 0 0.18059804e+00 -0.36035221e+00 -0.44816322e+02 0.00000000e+00
- 1 22 0 0 -0.70213842e-01 -0.69931607e-01 0.42870338e+02 0.00000000e+00
- 1 22 0 0 0.17258797e-01 -0.58930057e-01 0.72214953e+01 0.00000000e+00
- 2 310 285 286 0.22363119e+00 -0.11646975e+00 0.30268498e+01 0.49767000e+00
- 1 22 0 0 -0.20686464e+00 -0.31366579e-01 0.71239301e-01 0.00000000e+00
- 1 22 0 0 -0.45058142e+00 0.53022396e-02 0.36477023e+00 0.00000000e+00
- 1 22 0 0 0.12463625e-01 -0.39886576e-01 -0.63428193e-01 0.00000000e+00
- 1 22 0 0 -0.24257339e+00 -0.17989495e+00 -0.30443113e+00 0.00000000e+00
- 2 310 287 288 -0.20466643e+00 0.12024925e+00 -0.48906986e+01 0.49767000e+00
- 1 22 0 0 -0.32248524e-02 -0.22697001e+00 -0.36459983e+01 0.00000000e+00
- 1 22 0 0 -0.87893266e-01 -0.89179216e-01 -0.26916320e+01 0.00000000e+00
- 1 22 0 0 -0.10309992e+00 0.26030988e+00 -0.12182260e+02 0.00000000e+00
- 1 22 0 0 -0.20812093e+00 0.17979568e+00 -0.13192158e+02 0.00000000e+00
- 1 22 0 0 0.11963838e+00 -0.10464876e+00 -0.37716439e+01 0.00000000e+00
- 1 22 0 0 0.18714834e-01 -0.21349283e-01 -0.39419942e+01 0.00000000e+00
- 1 22 0 0 -0.84799693e-01 0.18126107e-01 -0.55981037e-01 0.00000000e+00
- 1 22 0 0 -0.62777902e-02 0.78223431e-01 -0.20201532e+00 0.00000000e+00
- 1 22 0 0 -0.66009422e-01 0.14831209e+00 -0.23767189e+02 0.00000000e+00
- 1 22 0 0 0.68002037e-01 0.11770689e+00 -0.19300120e+02 0.00000000e+00
- 2 310 289 290 -0.41630740e+00 -0.10434362e-01 -0.26098639e+03 0.49767000e+00
- 1 -211 0 0 -0.60716588e-01 0.35772487e+00 -0.12473829e+02 0.13957000e+00
- 1 211 0 0 0.48786978e-01 -0.78107554e-01 -0.88868692e+01 0.13957000e+00
- 1 -211 0 0 0.85962422e-01 -0.11343400e+00 0.43408117e+00 0.13957000e+00
- 1 211 0 0 0.13766877e+00 -0.30357533e-02 0.25927686e+01 0.13957000e+00
- 2 111 291 292 -0.18365275e+00 0.21744663e+00 -0.18709828e+01 0.13498000e+00
- 2 111 293 294 -0.21013673e-01 -0.97197386e-01 -0.30197157e+01 0.13498000e+00
- 2 111 295 296 -0.30188437e+00 -0.10090913e+00 -0.22444462e+03 0.13498000e+00
- 2 111 297 298 -0.11442303e+00 0.90474763e-01 -0.36541773e+02 0.13498000e+00
- 1 22 0 0 -0.20375314e+00 0.18841138e+00 -0.17210390e+01 0.00000000e+00
- 1 22 0 0 0.20100389e-01 0.29035252e-01 -0.14994388e+00 0.00000000e+00
- 1 22 0 0 -0.41255744e-01 -0.10059336e+00 -0.13030989e+01 0.00000000e+00
- 1 22 0 0 0.20242072e-01 0.33959739e-02 -0.17166168e+01 0.00000000e+00
- 1 22 0 0 -0.28180677e-01 0.30261707e-01 -0.22136002e+02 0.00000000e+00
- 1 22 0 0 -0.27370369e+00 -0.13117083e+00 -0.20230862e+03 0.00000000e+00
- 1 22 0 0 -0.78877016e-02 0.25365929e-01 -0.11006288e+01 0.00000000e+00
- 1 22 0 0 -0.10653533e+00 0.65108834e-01 -0.35441145e+02 0.00000000e+00
- 755
- 2 25 2 3 -0.72671900e+01 0.34831561e+01 0.42077550e+02 0.12499863e+03
- 2 23 4 7 0.68405460e+01 -0.12413389e+02 -0.11589172e+01 0.23496181e+02
- 2 23 8 11 -0.14107736e+02 0.15896545e+02 0.43236467e+02 0.92925560e+02
- 1 11 0 0 0.16399391e+01 0.80568649e+00 -0.10372933e+02 0.51000000e-03
- 1 22 0 0 -0.12717182e-07 0.76972110e-09 -0.45755672e-07 0.00000000e+00
- 1 -11 0 0 0.51775909e+01 -0.13160468e+02 0.91731740e+01 0.51000000e-03
- 1 22 0 0 0.23016120e-01 -0.58607236e-01 0.40841621e-01 0.00000000e+00
- 1 13 0 0 -0.48923238e+01 0.49526922e+02 0.48019121e+02 0.10566000e+00
- 1 22 0 0 0.17809288e-01 0.13575708e+00 0.10064973e+00 0.00000000e+00
- 1 -13 0 0 -0.92021808e+01 -0.33625774e+02 -0.48557545e+01 0.10566000e+00
- 1 22 0 0 -0.31040671e-01 -0.14036016e+00 -0.27549108e-01 0.00000000e+00
- 2 1 107 107 -0.15328221e+01 -0.11229813e+01 0.27012275e+01 0.00000000e+00
- 2 21 107 107 -0.11631077e+01 -0.91180839e+00 0.27789923e+01 0.00000000e+00
- 2 21 107 107 -0.11361410e+01 -0.70037862e+00 0.70139406e+01 0.00000000e+00
- 2 21 107 107 -0.10901439e+01 0.37080227e+00 0.71785083e+01 0.00000000e+00
- 2 -1 107 107 0.15328221e+01 0.11229813e+01 -0.14051785e+00 0.00000000e+00
- 2 2101 113 113 0.93989649e+00 0.95683988e+00 0.43634156e+04 0.57933000e+00
- 2 21 113 113 -0.16034183e+01 -0.92761497e-02 0.41228866e+03 0.00000000e+00
- 2 21 113 113 0.12512798e+01 -0.21855536e+01 0.99672642e+02 0.00000000e+00
- 2 21 113 113 0.12136711e+01 -0.32389692e+01 0.12651125e+03 0.00000000e+00
- 2 21 113 113 -0.33262597e+00 -0.77942968e+01 0.17958748e+03 0.00000000e+00
- 2 21 113 113 -0.14978469e+01 -0.52783755e+01 0.10755161e+03 0.00000000e+00
- 2 21 113 113 0.16034183e+01 0.92761497e-02 0.23025453e+02 0.00000000e+00
- 2 21 113 113 0.96999339e+00 0.31487672e-01 0.91704804e+01 0.00000000e+00
- 2 21 113 113 0.52241989e+01 -0.21103979e+01 0.34308382e+02 0.00000000e+00
- 2 21 113 113 0.46872610e+00 -0.78089759e+00 0.46609878e+01 0.00000000e+00
- 2 21 113 113 0.52206443e+01 -0.55536936e+01 0.18405729e+02 0.00000000e+00
- 2 21 113 113 0.17217160e+01 -0.31740288e+00 0.27192928e+01 0.00000000e+00
- 2 21 113 113 -0.23060214e+00 0.83484846e+00 0.16736217e+00 0.00000000e+00
- 2 21 113 113 -0.12512798e+01 0.21855536e+01 0.13236702e+01 0.00000000e+00
- 2 21 113 113 -0.51688085e+01 0.24222585e+01 0.39788335e+00 0.00000000e+00
- 2 21 113 113 -0.52241989e+01 0.21103979e+01 -0.23632780e+01 0.00000000e+00
- 2 21 113 113 -0.45454369e+00 0.31555692e+00 -0.14661075e+00 0.00000000e+00
- 2 21 113 113 -0.10359567e+01 0.23817403e+00 -0.46053090e+00 0.00000000e+00
- 2 21 113 113 -0.19185733e+01 -0.30939327e+01 -0.13837202e+01 0.00000000e+00
- 2 21 113 113 -0.24631831e+01 -0.16526246e+01 -0.24820382e+01 0.00000000e+00
- 2 21 113 113 -0.63126774e+01 -0.55404536e+01 -0.96912118e+01 0.00000000e+00
- 2 21 113 113 -0.12535744e+01 -0.75805602e+00 -0.25499810e+01 0.00000000e+00
- 2 21 113 113 -0.10192642e+01 -0.77184770e+00 -0.47164214e+01 0.00000000e+00
- 2 21 113 113 -0.63582567e+01 -0.32661481e+00 -0.22346718e+02 0.00000000e+00
- 2 21 113 113 0.61694318e+00 -0.31918503e+01 -0.11830579e+01 0.00000000e+00
- 2 21 113 113 0.20473916e+00 -0.49245828e+00 0.47024678e+00 0.00000000e+00
- 2 21 113 113 -0.16443222e+00 0.77032697e-01 0.75220619e-01 0.00000000e+00
- 2 21 113 113 -0.18865209e+00 0.11264244e+00 0.35378247e-02 0.00000000e+00
- 2 21 113 113 -0.41874138e-01 0.51187419e+00 -0.45859874e+00 0.00000000e+00
- 2 21 113 113 -0.51224492e+00 0.13057490e+01 -0.73622618e+01 0.00000000e+00
- 2 21 113 113 0.70076541e+00 -0.16928680e+00 -0.52770802e+01 0.00000000e+00
- 2 21 113 113 -0.71804146e-01 0.31563583e+00 -0.45057952e-01 0.00000000e+00
- 2 21 113 113 0.60835804e-02 -0.18700413e+01 -0.91585246e+01 0.00000000e+00
- 2 2 113 113 0.11490035e+01 0.25567437e-01 -0.15962317e+04 0.33000000e+00
- 2 2 180 180 0.14342847e+01 -0.56871295e+00 0.10007949e+04 0.33000000e+00
- 2 21 180 180 0.11919431e+01 -0.21352500e+00 0.11660891e+03 0.00000000e+00
- 2 21 180 180 0.24631831e+01 0.16526246e+01 0.14088236e+03 0.00000000e+00
- 2 21 180 180 0.11361410e+01 0.70037862e+00 0.34800417e+02 0.00000000e+00
- 2 21 180 180 0.33262597e+00 0.77942968e+01 0.12627512e+03 0.00000000e+00
- 2 21 180 180 -0.11549818e+00 0.81651737e+00 0.12870894e+02 0.00000000e+00
- 2 21 180 180 -0.12136711e+01 0.32389692e+01 0.10612593e+02 0.00000000e+00
- 2 21 180 180 0.14978469e+01 0.52783755e+01 0.13424935e+02 0.00000000e+00
- 2 21 180 180 0.63126774e+01 0.55404536e+01 0.14465021e+02 0.00000000e+00
- 2 21 180 180 0.11631077e+01 0.91180839e+00 0.20926841e+01 0.00000000e+00
- 2 21 180 180 0.12535744e+01 0.75805602e+00 0.98291637e+00 0.00000000e+00
- 2 21 180 180 0.26439416e+01 0.92972166e+00 -0.26310235e+01 0.00000000e+00
- 2 21 180 180 0.11737813e+01 -0.11422286e+00 -0.11502623e+01 0.00000000e+00
- 2 21 180 180 0.10901439e+01 -0.37080227e+00 -0.26604989e+01 0.00000000e+00
- 2 21 180 180 0.93618511e+00 -0.93633810e+00 -0.12768985e+01 0.00000000e+00
- 2 21 180 180 0.29548300e+00 -0.15252993e+01 -0.14334874e+01 0.00000000e+00
- 2 21 180 180 0.11549818e+00 -0.81651737e+00 -0.84134741e+00 0.00000000e+00
- 2 21 180 180 0.23060214e+00 -0.83484846e+00 -0.15577357e+01 0.00000000e+00
- 2 21 180 180 -0.16170553e+00 -0.12480438e+01 -0.14556435e+01 0.00000000e+00
- 2 21 180 180 0.81658664e+00 -0.40224633e+01 -0.39102241e+01 0.00000000e+00
- 2 21 180 180 0.22118876e+00 -0.59082655e+00 -0.23163769e+01 0.00000000e+00
- 2 21 180 180 0.22827345e+00 -0.34567438e+01 -0.24679367e+02 0.00000000e+00
- 2 21 180 180 -0.79236732e-01 -0.19729597e+01 -0.15953392e+02 0.00000000e+00
- 2 21 180 180 0.10359567e+01 -0.23817403e+00 -0.77483472e+01 0.00000000e+00
- 2 21 180 180 0.51688085e+01 -0.24222585e+01 -0.66544380e+02 0.00000000e+00
- 2 21 180 180 0.63582567e+01 0.32661481e+00 -0.32952282e+03 0.00000000e+00
- 2 21 180 180 0.10192642e+01 0.77184770e+00 -0.11481155e+03 0.00000000e+00
- 2 21 180 180 0.79236732e-01 0.19729597e+01 -0.48542228e+03 0.00000000e+00
- 2 21 180 180 0.45454369e+00 -0.31555692e+00 -0.46268449e+03 0.00000000e+00
- 2 21 180 180 -0.39078519e+00 -0.33345121e+00 -0.65674330e+03 0.00000000e+00
- 2 21 180 180 -0.26439416e+01 -0.92972166e+00 -0.37091724e+03 0.00000000e+00
- 2 21 180 180 -0.72144062e+00 -0.38050788e+00 -0.16342015e+02 0.00000000e+00
- 2 21 180 180 -0.46872610e+00 0.78089759e+00 -0.34144167e+02 0.00000000e+00
- 2 21 180 180 -0.22827345e+00 0.34567438e+01 -0.59219086e+02 0.00000000e+00
- 2 21 180 180 0.72144062e+00 0.38050788e+00 -0.39692621e+01 0.00000000e+00
- 2 21 180 180 0.19185733e+01 0.30939327e+01 -0.17633563e+02 0.00000000e+00
- 2 21 180 180 -0.22118876e+00 0.59082655e+00 -0.31764912e+01 0.00000000e+00
- 2 21 180 180 -0.29548300e+00 0.15252993e+01 -0.13394278e+02 0.00000000e+00
- 2 21 180 180 -0.81658664e+00 0.40224633e+01 -0.34868558e+02 0.00000000e+00
- 2 21 180 180 -0.52206443e+01 0.55536936e+01 -0.59711663e+02 0.00000000e+00
- 2 21 180 180 0.29010802e-01 -0.17611078e+00 0.13026180e+00 0.00000000e+00
- 2 21 180 180 0.27515699e+01 0.22509647e-01 -0.38636705e+01 0.00000000e+00
- 2 21 180 180 -0.30995270e+00 0.32277803e+00 -0.28340690e+00 0.00000000e+00
- 2 21 180 180 -0.15455793e+00 -0.60533078e+00 -0.35520829e+01 0.00000000e+00
- 2 2103 180 180 0.87841142e+00 -0.59994161e-01 -0.24094296e+04 0.77133000e+00
- 2 21 269 269 0.21094879e+01 0.66564433e+00 -0.22127149e+01 0.00000000e+00
- 2 21 269 269 -0.17217160e+01 0.31740288e+00 0.38504288e+01 0.00000000e+00
- 2 21 269 269 -0.21094879e+01 -0.66564433e+00 0.37105928e+01 0.00000000e+00
- 2 21 280 280 0.14071278e+01 0.25495419e+00 -0.31801880e+02 0.00000000e+00
- 2 21 280 280 0.39078519e+00 0.33345121e+00 -0.95260874e+01 0.00000000e+00
- 2 21 280 280 0.16170553e+00 0.12480438e+01 -0.23879885e+01 0.00000000e+00
- 2 21 280 280 -0.93618511e+00 0.93633810e+00 -0.17762707e+01 0.00000000e+00
- 2 21 280 280 -0.11919431e+01 0.21352500e+00 -0.21541916e+01 0.00000000e+00
- 2 21 280 280 -0.11737813e+01 0.11422286e+00 0.74650856e+00 0.00000000e+00
- 2 21 280 280 -0.96999339e+00 -0.31487672e-01 0.66728620e+00 0.00000000e+00
- 2 21 280 280 -0.14071278e+01 -0.25495419e+00 0.12833205e+01 0.00000000e+00
- 2 92 108 112 -0.33893927e+01 -0.12413847e+01 0.19532151e+02 0.11123748e+02
- 2 113 296 297 -0.11717458e+01 -0.10377795e+01 0.54698127e+01 0.86887097e+00
- 2 223 298 300 -0.19506056e+01 -0.13353906e+01 0.53318927e+01 0.75753088e+00
- 2 113 301 302 -0.12169768e+01 -0.66658636e+00 0.69801430e+01 0.64171142e+00
- 2 223 303 305 -0.40773324e+00 0.53346431e+00 0.16859886e+01 0.77857860e+00
- 2 223 306 307 0.13576688e+01 0.12649074e+01 0.64314013e-01 0.76597512e+00
- 2 92 114 179 -0.15812738e+02 -0.33683135e+02 0.37178988e+04 0.60220055e+04
- 2 2214 308 309 0.37523550e+00 0.37895572e+00 0.24546988e+04 0.13407530e+01
- 2 223 310 312 0.35669766e+00 0.85615631e-02 0.16140803e+04 0.78284821e+00
- 2 -213 313 314 -0.52820783e+00 0.44352961e+00 0.39163192e+03 0.74994277e+00
- 2 -311 315 315 -0.40769329e+00 -0.84703447e-01 0.44811030e+02 0.49767000e+00
- 2 333 316 317 0.94057656e+00 -0.33124765e+00 0.12597792e+03 0.10306807e+01
- 2 323 318 319 -0.29679871e+00 -0.93242474e+00 0.11901725e+03 0.82264198e+00
- 2 -213 320 321 0.20926618e+00 -0.44867686e+00 0.84465851e+02 0.72291649e+00
- 1 -2112 0 0 0.25967224e+00 -0.12617033e+01 0.44860055e+02 0.93957000e+00
- 1 211 0 0 -0.70634784e+00 -0.11748355e+01 0.36800372e+02 0.13957000e+00
- 1 2112 0 0 0.32337894e+00 -0.23738677e+01 0.58663012e+02 0.93957000e+00
- 2 111 322 323 -0.12178933e-01 -0.28959958e-01 0.88017978e+01 0.13498000e+00
- 2 111 324 325 -0.22272693e+00 -0.56234876e+00 0.17500859e+02 0.13498000e+00
- 1 -211 0 0 0.56655351e+00 -0.31354943e+01 0.97557605e+02 0.13957000e+00
- 2 -3114 326 327 -0.30583305e+00 -0.29313746e+01 0.83700186e+02 0.13797475e+01
- 2 333 328 329 0.20218401e+00 -0.28010649e+01 0.63339798e+02 0.10199187e+01
- 2 3214 330 331 0.17546839e+00 -0.16386643e+01 0.40083543e+02 0.14055857e+01
- 2 223 332 334 0.34612070e+00 -0.78578289e+00 0.18413412e+02 0.78122748e+00
- 2 -323 335 336 0.23046725e+01 -0.54196731e+00 0.11650873e+02 0.91019063e+00
- 2 311 337 337 0.73133846e+00 -0.10937228e+01 0.88751044e+01 0.49767000e+00
- 1 -2112 0 0 0.12817788e+01 -0.49038210e+00 0.81776923e+01 0.93957000e+00
- 1 2112 0 0 0.15310324e+01 -0.18848460e+00 0.17338341e+02 0.93957000e+00
- 2 -313 338 339 0.45189159e+01 -0.24058030e+01 0.12428120e+02 0.90653184e+00
- 1 321 0 0 0.28511626e+00 -0.18065037e+01 0.83883247e+01 0.49360000e+00
- 2 221 340 342 0.17858181e+01 -0.13883294e+01 0.75719092e+01 0.54745000e+00
- 2 113 343 344 0.17144256e+00 0.18973218e+00 0.39573055e+00 0.82311886e+00
- 2 -213 345 346 0.19645008e+00 0.66400572e+00 0.83834641e+00 0.66300763e+00
- 2 111 347 348 0.20642781e+00 -0.51258366e+00 0.93675273e+00 0.13498000e+00
- 1 -2112 0 0 -0.36453397e+00 0.49072695e+00 0.55653207e+00 0.93957000e+00
- 1 2112 0 0 -0.38219294e+00 0.96440634e+00 0.60204844e+00 0.93957000e+00
- 2 -2114 349 350 -0.27819259e+01 0.12559451e+01 0.12470529e+00 0.12807446e+01
- 1 211 0 0 -0.97489045e+00 0.65529344e+00 -0.79961302e+00 0.13957000e+00
- 2 1114 351 352 -0.41111402e+01 0.20873693e+01 -0.30047353e+00 0.12404604e+01
- 2 -311 353 353 -0.98984448e+00 -0.42111051e+00 0.15407563e+00 0.49767000e+00
- 2 323 354 355 -0.24393342e+01 0.14875519e+01 -0.89742603e+00 0.86646720e+00
- 2 -213 356 357 -0.11912121e+01 -0.11068765e+01 -0.56943924e+00 0.70620271e+00
- 1 211 0 0 -0.52729436e+00 -0.45667901e+00 -0.79726720e+00 0.13957000e+00
- 2 223 358 360 -0.27459729e+01 -0.18415557e+01 -0.26051672e+01 0.76392872e+00
- 2 223 361 363 -0.28761554e+01 -0.29791922e+01 -0.53013599e+01 0.78378358e+00
- 2 -213 364 365 -0.84194801e+00 -0.53836094e+00 -0.64450791e+00 0.81683115e+00
- 2 111 366 367 -0.19335554e+01 -0.14820354e+01 -0.39970478e+01 0.13498000e+00
- 2 -1114 368 369 -0.16788903e+01 -0.11782927e+01 -0.52247830e+01 0.12832451e+01
- 1 -211 0 0 -0.49245471e+00 0.12144905e+00 -0.76106024e+00 0.13957000e+00
- 1 2212 0 0 -0.17024988e+01 -0.39717252e+00 -0.34523349e+01 0.93827000e+00
- 2 113 370 371 -0.11322567e+01 -0.52474764e+00 -0.31927460e+01 0.85295720e+00
- 2 223 372 374 -0.11303432e+01 -0.10432646e+01 -0.45073386e+01 0.78474165e+00
- 2 -323 375 376 -0.32020250e+01 -0.88584062e-01 -0.10450589e+02 0.91530948e+00
- 2 313 377 378 0.22165945e+00 -0.10565526e+01 -0.15108395e+01 0.93400715e+00
- 1 211 0 0 -0.26578317e+00 -0.63698727e+00 0.92749271e-01 0.13957000e+00
- 2 -213 379 380 0.13023731e+00 -0.15573621e+00 -0.45496507e+00 0.73414354e+00
- 2 223 381 383 -0.48433868e+00 -0.62143483e+00 -0.57717855e+00 0.76931309e+00
- 2 213 384 385 0.46473081e+00 -0.88253871e+00 -0.52891680e+00 0.11094802e+01
- 2 111 386 387 0.11092684e+00 -0.22272144e+00 0.40210842e-01 0.13498000e+00
- 1 -211 0 0 -0.34685915e+00 0.15324853e+01 -0.51991702e+01 0.13957000e+00
- 2 213 388 389 0.66746993e+00 -0.18267816e-01 -0.24752026e+01 0.53805623e+00
- 2 -323 390 391 -0.55927822e+00 -0.49678115e-01 -0.26998567e+01 0.90818116e+00
- 1 321 0 0 0.50919132e+00 -0.59367119e+00 -0.99536184e+01 0.49360000e+00
- 2 221 392 394 -0.23703099e+00 0.24501491e+00 -0.22824789e+01 0.54745000e+00
- 2 111 395 396 0.34416899e+00 0.14916955e+00 -0.25816683e+01 0.13498000e+00
- 1 -211 0 0 -0.21492193e+00 -0.51071931e+00 -0.22554635e+01 0.13957000e+00
- 1 -2112 0 0 0.27224293e+00 -0.32639298e+00 -0.15175505e+02 0.93957000e+00
- 2 313 397 398 -0.22450283e+00 0.20423754e+00 -0.12751760e+02 0.94730177e+00
- 2 3222 399 400 0.88700799e-01 -0.35990974e+00 -0.13923879e+03 0.11893700e+01
- 2 111 401 402 0.14649963e+00 0.14965511e+00 -0.21403920e+02 0.13498000e+00
- 2 221 403 404 -0.98433063e-01 -0.73227542e+00 -0.10075748e+03 0.54745000e+00
- 1 -2112 0 0 0.73298827e+00 0.77744352e+00 -0.67752178e+03 0.93957000e+00
- 1 2112 0 0 0.13970249e+00 -0.34498477e+00 -0.62380664e+03 0.93957000e+00
- 2 92 181 268 0.31910449e+02 0.28309867e+02 -0.37399075e+04 0.55622981e+04
- 2 113 405 406 0.82844946e+00 -0.23055788e+00 0.17778353e+03 0.74181445e+00
- 1 211 0 0 0.92443324e+00 -0.79461490e+00 0.68485335e+03 0.13957000e+00
- 2 313 407 408 0.64354022e+00 0.87163391e+00 0.12076560e+03 0.90681752e+00
- 2 -313 409 410 0.12549800e+01 0.27194107e+00 0.12045203e+03 0.99713529e+00
- 2 111 411 412 0.47784880e+00 0.26428076e+00 0.18816430e+02 0.13498000e+00
- 2 311 413 413 -0.10112831e+00 -0.20715134e+00 0.45472006e+02 0.49767000e+00
- 2 -323 414 415 0.14634415e+01 0.89749906e+00 0.10609721e+03 0.84360369e+00
- 2 213 416 417 0.14647378e+01 0.50811579e+01 0.93716820e+02 0.78147433e+00
- 1 -211 0 0 -0.59647111e+00 0.38590329e+01 0.61358189e+02 0.13957000e+00
- 1 211 0 0 -0.92178346e+00 0.18845183e+01 0.55344914e+01 0.13957000e+00
- 2 1114 418 419 0.23427217e+01 0.35383701e+01 0.13091703e+02 0.12102945e+01
- 2 -1114 420 421 0.16409591e+00 0.16102668e+01 0.32149038e+01 0.12436029e+01
- 2 111 422 423 0.16271765e+00 0.28104632e+00 0.14061532e+01 0.13498000e+00
- 2 -213 424 425 0.10546452e+01 0.16283882e+01 0.49534950e+01 0.75429979e+00
- 1 211 0 0 0.54463869e-01 0.13927013e+01 0.23365529e+01 0.13957000e+00
- 1 -211 0 0 0.17845760e+01 0.18102440e+01 0.53049183e+01 0.13957000e+00
- 2 111 426 427 0.29207839e+00 0.69388442e+00 0.83774605e+00 0.13498000e+00
- 1 211 0 0 0.15818374e+00 -0.92437991e-01 -0.10172582e+00 0.13957000e+00
- 1 -211 0 0 0.30028155e+01 0.25260549e+01 0.62627330e+01 0.13957000e+00
- 1 211 0 0 0.31200322e+00 -0.30444189e+00 0.56041244e+00 0.13957000e+00
- 2 311 428 428 0.56581398e+00 0.84814899e+00 0.11371950e+00 0.49767000e+00
- 2 -313 429 430 0.78149814e+00 0.50739961e+00 -0.47675514e+00 0.10183588e+01
- 2 111 431 432 0.97383416e+00 -0.11092786e+00 -0.36429629e+00 0.13498000e+00
- 2 311 433 433 0.21451572e+01 -0.34855589e+00 -0.36791039e+01 0.49767000e+00
- 2 -313 434 435 0.12641353e+01 -0.37838675e+00 -0.12575943e+01 0.91263403e+00
- 2 223 436 438 0.39788235e+00 -0.58851726e+00 -0.60132564e+00 0.78372224e+00
- 2 111 439 440 0.43218375e+00 -0.33001289e+00 -0.13141982e+01 0.13498000e+00
- 1 -211 0 0 -0.10225205e+00 -0.18604428e+01 -0.19594069e+01 0.13957000e+00
- 2 111 441 442 0.82529496e+00 -0.18816212e+01 -0.30389175e+01 0.13498000e+00
- 1 211 0 0 0.16084435e+00 -0.48277736e-01 -0.22064574e+01 0.13957000e+00
- 2 223 443 444 0.31387124e+00 -0.22814633e+01 -0.28327906e+01 0.78841288e+00
- 2 313 445 446 -0.11248325e+00 -0.55155896e+00 -0.30727507e+01 0.88916389e+00
- 2 -311 447 447 0.33069458e+00 -0.16641646e+01 -0.20859691e+01 0.49767000e+00
- 2 223 448 450 0.96556513e-01 -0.92171680e+00 -0.51024682e+01 0.80261040e+00
- 2 3122 451 452 0.53571317e+00 -0.15582747e+01 -0.15027249e+02 0.11156800e+01
- 2 -3212 453 454 0.73479862e+00 -0.40029734e+00 -0.10271831e+02 0.11925500e+01
- 2 313 455 456 0.17195121e+01 -0.19473346e+01 -0.24092090e+02 0.90442227e+00
- 1 -321 0 0 -0.35471398e-01 -0.37626971e+00 -0.72797003e+01 0.49360000e+00
- 2 213 457 458 0.83217341e-01 -0.10058508e+01 -0.11619431e+02 0.63448785e+00
- 1 2112 0 0 0.13471211e+01 -0.87591799e-01 -0.13903678e+02 0.93957000e+00
- 1 -2212 0 0 0.17535327e+01 -0.11535888e+01 -0.44853089e+02 0.93827000e+00
- 2 213 459 460 0.11384943e+01 0.60002391e-01 -0.56336710e+02 0.80419647e+00
- 2 221 461 463 0.22983295e+00 -0.21622568e+00 -0.13556104e+02 0.54745000e+00
- 2 2214 464 465 0.18052829e+01 -0.15460634e+00 -0.74940748e+02 0.12084061e+01
- 2 113 466 467 0.78395451e+00 0.43266315e+00 -0.64078681e+02 0.45088186e+00
- 2 -2224 468 469 0.11444444e+01 0.19765721e+00 -0.81100657e+02 0.11945861e+01
- 1 2212 0 0 0.63289166e+00 0.28994532e+00 -0.11945369e+03 0.93827000e+00
- 2 -3122 470 471 0.81290394e+00 0.91036071e+00 -0.13948772e+03 0.11156800e+01
- 2 -323 472 473 0.58934152e+00 -0.10415700e+01 -0.27652096e+03 0.88863286e+00
- 1 211 0 0 -0.75504752e-01 0.15460022e+01 -0.18000076e+03 0.13957000e+00
- 2 113 474 475 0.61034472e+00 -0.19045582e+00 -0.40423056e+03 0.72006288e+00
- 2 223 476 478 -0.74163084e+00 -0.55780150e+00 -0.26695892e+03 0.78779599e+00
- 2 223 479 481 -0.99197374e+00 0.17518330e+00 -0.26599278e+03 0.78353047e+00
- 2 -213 482 483 0.46497770e+00 -0.17168075e+00 -0.15122673e+03 0.80295099e+00
- 2 221 484 486 -0.25879443e+00 -0.15558411e+00 -0.17005670e+03 0.54745000e+00
- 2 323 487 488 -0.10927808e+01 -0.54956494e-01 -0.10582963e+03 0.88130242e+00
- 2 -323 489 490 0.17130490e+00 0.11448580e+01 -0.33608452e+02 0.91024432e+00
- 2 111 491 492 -0.85644204e+00 0.21764170e+00 -0.47323832e+02 0.13498000e+00
- 2 223 493 495 -0.41171980e-01 0.23788147e+00 -0.11927968e+02 0.77753961e+00
- 2 113 496 497 -0.60513340e-01 0.76636126e+00 -0.19920860e+02 0.58760704e+00
- 2 213 498 499 -0.21398163e+00 0.97559538e+00 -0.14704433e+02 0.58474677e+00
- 1 -211 0 0 -0.24219069e-01 0.62313106e+00 -0.11611581e+02 0.13957000e+00
- 1 211 0 0 0.12504091e+01 0.16865310e+01 -0.99885101e+01 0.13957000e+00
- 2 223 500 502 0.30097845e+00 0.90010895e+00 -0.63004509e+01 0.73753700e+00
- 1 -211 0 0 -0.68032800e-01 0.44688908e+00 -0.22662905e+01 0.13957000e+00
- 2 111 503 504 -0.28616513e+00 0.53836987e+00 -0.69222157e+01 0.13498000e+00
- 1 2212 0 0 -0.11977550e+00 0.20897551e+01 -0.16702152e+02 0.93827000e+00
- 1 -2112 0 0 -0.47871924e+00 0.12296197e+01 -0.13988650e+02 0.93957000e+00
- 2 2114 505 506 -0.21720682e+01 0.36635602e+01 -0.30658393e+02 0.12258857e+01
- 1 211 0 0 -0.22135872e-01 0.28466068e+00 -0.20006747e+01 0.13957000e+00
- 2 -2214 507 508 -0.10781878e+01 0.26202436e+01 -0.24224181e+02 0.11846089e+01
- 1 -211 0 0 -0.10372945e+01 0.41544768e+00 -0.14679656e+02 0.13957000e+00
- 2 213 509 510 0.62836547e-01 0.66180749e+00 -0.15734046e+01 0.10326078e+01
- 2 111 511 512 0.83779136e+00 -0.31175494e+00 -0.22724769e+01 0.13498000e+00
- 2 -213 513 514 0.20637518e+00 0.91928666e+00 -0.27996792e+01 0.90294170e+00
- 2 113 515 516 0.42459154e+00 -0.41541198e+00 -0.90972743e+00 0.67998573e+00
- 2 111 517 518 -0.55662685e+00 0.14011295e-01 -0.13595870e+01 0.13498000e+00
- 1 211 0 0 0.86074437e+00 -0.25888212e+00 -0.30444504e+01 0.13957000e+00
- 2 113 519 520 -0.57983317e+00 0.19971244e-01 -0.13214335e+02 0.76246183e+00
- 2 111 521 522 0.73186319e+00 0.36682913e+00 -0.12744732e+02 0.13498000e+00
- 2 331 523 524 -0.11068360e+00 -0.11171551e-01 -0.36205802e+02 0.95780698e+00
- 1 -211 0 0 0.64199980e+00 -0.48516021e+00 -0.88781480e+02 0.13957000e+00
- 1 211 0 0 -0.63604340e+00 0.18598607e+00 -0.17144914e+03 0.13957000e+00
- 1 -211 0 0 0.19610116e+00 -0.10605456e-01 -0.15589961e+03 0.13957000e+00
- 2 213 525 526 -0.25998447e+00 0.79995584e-01 -0.99357288e+02 0.94374950e+00
- 2 -213 527 528 0.52202418e-01 -0.40298482e+00 -0.14581815e+03 0.76865548e+00
- 1 2212 0 0 0.59180956e+00 0.12733983e+00 -0.15845008e+04 0.93827000e+00
- 2 111 529 530 0.15373224e+00 0.78511807e-01 -0.10116829e+03 0.13498000e+00
- 2 92 270 279 -0.17217160e+01 0.31740288e+00 0.53483066e+01 0.10233080e+02
- 2 111 531 532 -0.59891586e+00 -0.71313170e-01 0.40473182e-01 0.13498000e+00
- 1 2212 0 0 -0.44793845e+00 0.36756888e+00 0.86215723e+00 0.93827000e+00
- 1 -2112 0 0 -0.45408447e+00 -0.22256243e+00 0.82759706e+00 0.93957000e+00
- 1 -211 0 0 0.91055689e-01 -0.73537817e+00 0.14427756e-01 0.13957000e+00
- 2 323 533 534 -0.10567386e+01 0.59920468e+00 0.24409805e+01 0.87396352e+00
- 2 221 535 537 0.26910070e+00 0.17210933e+00 0.28592786e+00 0.54745000e+00
- 2 -323 538 539 -0.27254275e+00 0.42657287e+00 0.85402132e-01 0.88922296e+00
- 1 211 0 0 -0.56326493e+00 -0.28639641e+00 0.63449077e+00 0.13957000e+00
- 2 223 540 542 0.51862044e+00 0.39924543e+00 -0.32791455e+00 0.77556136e+00
- 1 -211 0 0 0.79299221e+00 -0.33164814e+00 0.48476469e+00 0.13957000e+00
- 2 92 281 295 -0.37194121e+01 0.28140933e+01 -0.44949303e+02 0.28176034e+02
- 2 313 543 544 0.76508506e-01 0.89581409e-01 -0.36351175e+01 0.89906660e+00
- 1 211 0 0 0.60912292e+00 -0.47706754e+00 -0.27946642e+01 0.13957000e+00
- 2 -213 545 546 0.47147269e+00 0.73590105e+00 -0.11323702e+02 0.91584600e+00
- 2 113 547 548 -0.99660138e-01 0.60198009e+00 -0.10216799e+02 0.93567311e+00
- 2 -313 549 550 0.35290446e+00 0.17892820e+00 -0.39371659e+01 0.90752504e+00
- 2 323 551 552 -0.34242503e+00 0.21349723e+00 -0.26710689e+01 0.85164999e+00
- 1 -211 0 0 0.23431561e-01 0.51957453e+00 -0.68440855e+01 0.13957000e+00
- 2 331 553 555 -0.12097162e+00 0.61125790e+00 -0.98818814e+00 0.95764273e+00
- 1 211 0 0 -0.41601455e-02 -0.44226608e+00 -0.35003485e+00 0.13957000e+00
- 2 331 556 557 -0.74908397e+00 0.68659946e+00 -0.88756428e+00 0.95816974e+00
- 2 -213 558 559 -0.13161418e+00 0.41327811e+00 -0.19564034e+00 0.78713151e+00
- 2 111 560 561 -0.59376827e-01 -0.23739870e+00 0.12441629e+00 0.13498000e+00
- 2 -1114 562 563 -0.29009053e+01 0.11927960e+00 -0.15840617e+01 0.12033613e+01
- 2 -213 564 565 -0.55523020e-01 0.46134075e+00 0.50568243e+00 0.67683286e+00
- 2 3214 566 567 -0.78913200e+00 -0.66039273e+00 -0.15130932e+00 0.13699552e+01
- 1 211 0 0 -0.62609648e+00 -0.56599872e+00 0.42176366e+01 0.13957000e+00
- 1 -211 0 0 -0.54564935e+00 -0.47178083e+00 0.12521761e+01 0.13957000e+00
- 1 -211 0 0 -0.83321183e+00 -0.48781118e+00 0.26486425e+01 0.13957000e+00
- 1 211 0 0 -0.16648737e+00 -0.10412873e+00 0.30765794e+00 0.13957000e+00
- 2 111 568 569 -0.95090638e+00 -0.74345065e+00 0.23755922e+01 0.13498000e+00
- 1 -211 0 0 0.10680725e-02 -0.21428262e-01 0.76417543e+00 0.13957000e+00
- 1 211 0 0 -0.12180449e+01 -0.64515810e+00 0.62159675e+01 0.13957000e+00
- 1 211 0 0 -0.18849602e+00 0.28898663e+00 0.78474329e+00 0.13957000e+00
- 1 -211 0 0 -0.19350547e-01 0.47050860e-01 0.74097580e+00 0.13957000e+00
- 2 111 570 571 -0.19988667e+00 0.19742682e+00 0.16026949e+00 0.13498000e+00
- 1 -211 0 0 0.11850361e+01 0.98033692e+00 -0.20546753e+00 0.13957000e+00
- 1 211 0 0 0.17263268e+00 0.28457051e+00 0.26978155e+00 0.13957000e+00
- 1 2112 0 0 0.28890156e+00 0.44032467e+00 0.23690598e+04 0.93957000e+00
- 1 211 0 0 0.86333946e-01 -0.61368959e-01 0.85639040e+02 0.13957000e+00
- 1 211 0 0 -0.75146721e-02 -0.17297385e+00 0.30489931e+03 0.13957000e+00
- 1 -211 0 0 0.12849865e-01 0.12394478e+00 0.72465231e+03 0.13957000e+00
- 2 111 572 573 0.35136247e+00 0.57590627e-01 0.58452862e+03 0.13498000e+00
- 1 -211 0 0 -0.35518207e+00 0.34747015e+00 0.36165482e+03 0.13957000e+00
- 2 111 574 575 -0.17302576e+00 0.96059459e-01 0.29977104e+02 0.13498000e+00
- 1 130 0 0 -0.40769329e+00 -0.84703447e-01 0.44811030e+02 0.49767000e+00
- 1 130 0 0 0.50803944e+00 -0.25284304e+00 0.57768429e+02 0.49767000e+00
- 2 310 576 577 0.43253711e+00 -0.78404609e-01 0.68209487e+02 0.49767000e+00
- 2 311 578 578 -0.42777029e+00 -0.58912795e+00 0.78174144e+02 0.49767000e+00
- 1 211 0 0 0.13097158e+00 -0.34329679e+00 0.40843104e+02 0.13957000e+00
- 1 -211 0 0 -0.53512392e-01 -0.53155649e+00 0.61819654e+02 0.13957000e+00
- 2 111 579 580 0.26277857e+00 0.82879630e-01 0.22646197e+02 0.13498000e+00
- 1 22 0 0 0.44110818e-01 0.85355402e-02 0.12823698e+01 0.00000000e+00
- 1 22 0 0 -0.56289752e-01 -0.37495499e-01 0.75194280e+01 0.00000000e+00
- 1 22 0 0 -0.12226708e+00 -0.14300079e+00 0.50420927e+01 0.00000000e+00
- 1 22 0 0 -0.10045985e+00 -0.41934798e+00 0.12458767e+02 0.00000000e+00
- 2 -3122 581 582 -0.45062512e+00 -0.25134068e+01 0.70259824e+02 0.11156800e+01
- 1 211 0 0 0.14479207e+00 -0.41796780e+00 0.13440362e+02 0.13957000e+00
- 1 321 0 0 0.22228906e+00 -0.13295947e+01 0.30641710e+02 0.49360000e+00
- 1 -321 0 0 -0.20105049e-01 -0.14714702e+01 0.32698088e+02 0.49360000e+00
- 2 3122 583 584 0.46998800e-01 -0.10285228e+01 0.26396884e+02 0.11156800e+01
- 2 111 585 586 0.12846959e+00 -0.61014150e+00 0.13686659e+02 0.13498000e+00
- 1 -211 0 0 0.21749839e+00 -0.83235556e-02 0.55791689e+01 0.13957000e+00
- 1 211 0 0 0.33884505e-01 -0.47130224e+00 0.94273405e+01 0.13957000e+00
- 2 111 587 588 0.94737811e-01 -0.30615709e+00 0.34069031e+01 0.13498000e+00
- 2 -311 589 589 0.21838501e+01 -0.45586571e+00 0.11171206e+02 0.49767000e+00
- 1 -211 0 0 0.12082233e+00 -0.86101600e-01 0.47966730e+00 0.13957000e+00
- 1 130 0 0 0.73133846e+00 -0.10937228e+01 0.88751044e+01 0.49767000e+00
- 2 -311 590 590 0.25423256e+01 -0.14029960e+01 0.63319397e+01 0.49767000e+00
- 2 111 591 592 0.19765904e+01 -0.10028070e+01 0.60961798e+01 0.13498000e+00
- 2 111 593 594 0.10150792e+01 -0.94817819e+00 0.44286227e+01 0.13498000e+00
- 2 111 595 596 0.38519623e+00 -0.21779616e+00 0.16990973e+01 0.13498000e+00
- 2 111 597 598 0.38554267e+00 -0.22235505e+00 0.14441892e+01 0.13498000e+00
- 1 211 0 0 0.13378414e+00 0.13633607e+00 0.62721096e+00 0.13957000e+00
- 1 -211 0 0 0.37658424e-01 0.53396112e-01 -0.23148041e+00 0.13957000e+00
- 1 -211 0 0 0.18724903e+00 0.68210001e+00 0.87347729e+00 0.13957000e+00
- 2 111 599 600 0.92010465e-02 -0.18094293e-01 -0.35130886e-01 0.13498000e+00
- 1 22 0 0 0.14159468e+00 -0.39568091e+00 0.59050781e+00 0.00000000e+00
- 1 22 0 0 0.64833137e-01 -0.11690274e+00 0.34624492e+00 0.00000000e+00
- 1 -2212 0 0 -0.16161329e+01 0.65598774e+00 0.20721441e+00 0.93827000e+00
- 1 211 0 0 -0.11657930e+01 0.59995733e+00 -0.82509125e-01 0.13957000e+00
- 1 2112 0 0 -0.38658084e+01 0.17835818e+01 -0.26502225e+00 0.93957000e+00
- 1 -211 0 0 -0.24533178e+00 0.30378756e+00 -0.35451274e-01 0.13957000e+00
- 2 310 601 602 -0.98984448e+00 -0.42111051e+00 0.15407563e+00 0.49767000e+00
- 2 311 603 603 -0.13019324e+01 0.68998013e+00 -0.70731241e+00 0.49767000e+00
- 1 211 0 0 -0.11374018e+01 0.79757180e+00 -0.19011363e+00 0.13957000e+00
- 1 -211 0 0 -0.75264981e+00 -0.53272314e+00 -0.62857873e+00 0.13957000e+00
- 2 111 604 605 -0.43856231e+00 -0.57415331e+00 0.59139491e-01 0.13498000e+00
- 1 -211 0 0 -0.14084155e+01 -0.12168302e+01 -0.14758612e+01 0.13957000e+00
- 1 211 0 0 -0.33381854e+00 -0.15380411e+00 -0.42111907e+00 0.13957000e+00
- 2 111 606 607 -0.10037388e+01 -0.47092136e+00 -0.70818687e+00 0.13498000e+00
- 1 211 0 0 -0.17029913e+01 -0.19368381e+01 -0.35528136e+01 0.13957000e+00
- 1 -211 0 0 -0.47839454e+00 -0.30671657e+00 -0.75847491e+00 0.13957000e+00
- 2 111 608 609 -0.69476955e+00 -0.73563753e+00 -0.99007147e+00 0.13498000e+00
- 1 -211 0 0 -0.12764947e+00 -0.41760628e+00 0.78413900e-02 0.13957000e+00
- 2 111 610 611 -0.71429854e+00 -0.12075466e+00 -0.65234930e+00 0.13498000e+00
- 1 22 0 0 -0.10991377e+01 -0.75814693e+00 -0.21987810e+01 0.00000000e+00
- 1 22 0 0 -0.83441779e+00 -0.72388849e+00 -0.17982668e+01 0.00000000e+00
- 1 -2112 0 0 -0.92192925e+00 -0.92609020e+00 -0.34789916e+01 0.93957000e+00
- 1 211 0 0 -0.75696109e+00 -0.25220248e+00 -0.17457914e+01 0.13957000e+00
- 1 211 0 0 -0.11221061e+01 -0.19664438e+00 -0.25741789e+01 0.13957000e+00
- 1 -211 0 0 -0.10150539e-01 -0.32810326e+00 -0.61856710e+00 0.13957000e+00
- 1 211 0 0 -0.67705443e-02 -0.35089211e-01 -0.52017214e+00 0.13957000e+00
- 1 -211 0 0 -0.81689207e+00 -0.71606129e+00 -0.32103480e+01 0.13957000e+00
- 2 111 612 613 -0.30668057e+00 -0.29211410e+00 -0.77681848e+00 0.13498000e+00
- 2 -311 614 614 -0.26316916e+01 -0.31258890e+00 -0.81941862e+01 0.49767000e+00
- 1 -211 0 0 -0.57033347e+00 0.22400483e+00 -0.22564028e+01 0.13957000e+00
- 2 311 615 615 0.39810351e+00 -0.86488976e+00 -0.14004887e+01 0.49767000e+00
- 2 111 616 617 -0.17644406e+00 -0.19166285e+00 -0.11035080e+00 0.13498000e+00
- 1 -211 0 0 -0.10233987e+00 -0.10485718e+00 0.13061607e+00 0.13957000e+00
- 2 111 618 619 0.23257718e+00 -0.50879026e-01 -0.58558113e+00 0.13498000e+00
- 1 -211 0 0 0.60146959e-01 0.25641819e-01 -0.38248489e-01 0.13957000e+00
- 1 211 0 0 -0.13747064e+00 -0.38618829e+00 -0.31140131e+00 0.13957000e+00
- 2 111 620 621 -0.40701500e+00 -0.26088836e+00 -0.22752875e+00 0.13498000e+00
- 1 211 0 0 0.46802560e+00 -0.25321864e+00 -0.72495492e+00 0.13957000e+00
- 2 111 622 623 -0.32947899e-02 -0.62932008e+00 0.19603813e+00 0.13498000e+00
- 1 22 0 0 0.13235020e+00 -0.16694165e+00 0.62689294e-01 0.00000000e+00
- 1 22 0 0 -0.21423361e-01 -0.55779791e-01 -0.22478452e-01 0.00000000e+00
- 1 211 0 0 0.28424573e+00 0.12021258e+00 -0.17001025e+01 0.13957000e+00
- 2 111 624 625 0.38322420e+00 -0.13848040e+00 -0.77510018e+00 0.13498000e+00
- 1 -321 0 0 -0.47533407e+00 0.16504904e-02 -0.11084150e+01 0.49360000e+00
- 2 111 626 627 -0.83944145e-01 -0.51328605e-01 -0.15914417e+01 0.13498000e+00
- 2 111 628 629 0.51059914e-01 0.18175168e+00 -0.10182768e+01 0.13498000e+00
- 2 111 630 631 -0.14796653e+00 0.57753790e-01 -0.71580869e+00 0.13498000e+00
- 2 111 632 633 -0.14012437e+00 0.55094354e-02 -0.54839340e+00 0.13498000e+00
- 1 22 0 0 0.22078444e+00 0.77419392e-01 -0.11538321e+01 0.00000000e+00
- 1 22 0 0 0.12338455e+00 0.71750158e-01 -0.14278363e+01 0.00000000e+00
- 1 321 0 0 -0.15343977e+00 -0.11535827e+00 -0.44984706e+01 0.49360000e+00
- 1 -211 0 0 -0.71063060e-01 0.31959581e+00 -0.82532891e+01 0.13957000e+00
- 1 2112 0 0 -0.97219346e-01 -0.29671585e+00 -0.11953453e+03 0.93957000e+00
- 1 211 0 0 0.18592014e+00 -0.63193890e-01 -0.19704257e+02 0.13957000e+00
- 1 22 0 0 0.14977921e+00 0.14903034e+00 -0.21390417e+02 0.00000000e+00
- 1 22 0 0 -0.32795809e-02 0.62476328e-03 -0.13503281e-01 0.00000000e+00
- 1 22 0 0 -0.85657012e-01 0.10275253e-01 -0.26876487e+01 0.00000000e+00
- 1 22 0 0 -0.12776051e-01 -0.74255067e+00 -0.98069830e+02 0.00000000e+00
- 1 -211 0 0 0.88795834e-01 -0.33341239e+00 0.51844053e+02 0.13957000e+00
- 1 211 0 0 0.73965362e+00 0.10285451e+00 0.12593947e+03 0.13957000e+00
- 1 321 0 0 0.38279893e+00 0.92119358e+00 0.95110428e+02 0.49360000e+00
- 1 -211 0 0 0.26074130e+00 -0.49559673e-01 0.25655168e+02 0.13957000e+00
- 1 -321 0 0 0.46108900e+00 0.23779356e+00 0.36022900e+02 0.49360000e+00
- 1 211 0 0 0.79389096e+00 0.34147504e-01 0.84429125e+02 0.13957000e+00
- 1 22 0 0 0.22111625e+00 0.10493158e+00 0.10663066e+02 0.00000000e+00
- 1 22 0 0 0.25673256e+00 0.15934919e+00 0.81533640e+01 0.00000000e+00
- 1 130 0 0 -0.10112831e+00 -0.20715134e+00 0.45472006e+02 0.49767000e+00
- 2 -311 634 634 0.99896681e+00 0.43074605e+00 0.56421097e+02 0.49767000e+00
- 1 -211 0 0 0.46447464e+00 0.46675301e+00 0.49676113e+02 0.13957000e+00
- 1 211 0 0 0.82683871e+00 0.39233322e+01 0.72070414e+02 0.13957000e+00
- 2 111 635 636 0.63789906e+00 0.11578257e+01 0.21646407e+02 0.13498000e+00
- 1 2112 0 0 0.15696557e+01 0.22054788e+01 0.85707085e+01 0.93957000e+00
- 1 -211 0 0 0.77306599e+00 0.13328913e+01 0.45209942e+01 0.13957000e+00
- 1 -2112 0 0 0.34869123e+00 0.14091423e+01 0.26255064e+01 0.93957000e+00
- 1 211 0 0 -0.18459531e+00 0.20112456e+00 0.58939736e+00 0.13957000e+00
- 1 22 0 0 -0.23346026e-01 0.47002443e-01 0.19254328e+00 0.00000000e+00
- 1 22 0 0 0.18606368e+00 0.23404387e+00 0.12136099e+01 0.00000000e+00
- 1 -211 0 0 0.54366240e+00 0.46405657e+00 0.25327993e+01 0.13957000e+00
- 2 111 637 638 0.51098282e+00 0.11643316e+01 0.24206957e+01 0.13498000e+00
- 1 22 0 0 0.37783638e-01 0.23735982e-01 0.26712753e-01 0.00000000e+00
- 1 22 0 0 0.25429475e+00 0.67014844e+00 0.81103330e+00 0.00000000e+00
- 1 130 0 0 0.56581398e+00 0.84814899e+00 0.11371950e+00 0.49767000e+00
- 2 -311 639 639 0.64095532e+00 0.59672460e+00 -0.63779606e+00 0.49767000e+00
- 2 111 640 641 0.14054282e+00 -0.89324992e-01 0.16104092e+00 0.13498000e+00
- 1 22 0 0 0.46786542e+00 -0.63988915e-01 -0.10462087e+00 0.00000000e+00
- 1 22 0 0 0.50596875e+00 -0.46938941e-01 -0.25967542e+00 0.00000000e+00
- 1 130 0 0 0.21451572e+01 -0.34855589e+00 -0.36791039e+01 0.49767000e+00
- 1 -321 0 0 0.55889718e+00 0.36635268e-01 -0.40816771e+00 0.49360000e+00
- 1 211 0 0 0.70523808e+00 -0.41502202e+00 -0.84942661e+00 0.13957000e+00
- 1 -211 0 0 0.67461210e-01 -0.40917586e+00 -0.26862860e+00 0.13957000e+00
- 1 211 0 0 0.21985479e+00 -0.21151831e+00 -0.10695575e-01 0.13957000e+00
- 2 111 642 643 0.11056635e+00 0.32176913e-01 -0.32200147e+00 0.13498000e+00
- 1 22 0 0 0.88441431e-01 -0.48746247e-01 -0.39589302e+00 0.00000000e+00
- 1 22 0 0 0.34374232e+00 -0.28126664e+00 -0.91830516e+00 0.00000000e+00
- 1 22 0 0 0.24985961e+00 -0.70145171e+00 -0.11671670e+01 0.00000000e+00
- 1 22 0 0 0.57543535e+00 -0.11801695e+01 -0.18717505e+01 0.00000000e+00
- 1 22 0 0 0.21732348e+00 -0.22543654e+01 -0.26059992e+01 0.00000000e+00
- 2 111 644 645 0.96547756e-01 -0.27097965e-01 -0.22679141e+00 0.13498000e+00
- 1 321 0 0 -0.13940255e+00 -0.30517694e+00 -0.10706904e+01 0.49360000e+00
- 1 -211 0 0 0.26919298e-01 -0.24638202e+00 -0.20020603e+01 0.13957000e+00
- 2 310 646 647 0.33069458e+00 -0.16641646e+01 -0.20859691e+01 0.49767000e+00
- 1 -211 0 0 -0.19538877e+00 -0.15900330e+00 -0.92034770e+00 0.13957000e+00
- 1 211 0 0 0.17107447e+00 -0.17654278e+00 -0.18677888e+01 0.13957000e+00
- 2 111 648 649 0.12087081e+00 -0.58617072e+00 -0.23143317e+01 0.13498000e+00
- 1 2212 0 0 0.38032960e+00 -0.11562518e+01 -0.11658088e+02 0.93827000e+00
- 1 -211 0 0 0.15538357e+00 -0.40202294e+00 -0.33691604e+01 0.13957000e+00
- 2 -3122 650 651 0.74090545e+00 -0.37400070e+00 -0.93918132e+01 0.11156800e+01
- 1 22 0 0 -0.61068378e-02 -0.26296642e-01 -0.88001798e+00 0.00000000e+00
- 1 321 0 0 0.46405436e+00 -0.61871678e+00 -0.79936779e+01 0.49360000e+00
- 1 -211 0 0 0.12554577e+01 -0.13286178e+01 -0.16098412e+02 0.13957000e+00
- 1 211 0 0 -0.83837174e-01 -0.81737604e-01 -0.85086132e+00 0.13957000e+00
- 2 111 652 653 0.16705452e+00 -0.92411320e+00 -0.10768570e+02 0.13498000e+00
- 1 211 0 0 0.97052359e+00 -0.93215282e-01 -0.30454853e+02 0.13957000e+00
- 2 111 654 655 0.16797072e+00 0.15321767e+00 -0.25881857e+02 0.13498000e+00
- 1 -211 0 0 0.24124811e+00 -0.12377977e+00 -0.58925801e+01 0.13957000e+00
- 1 211 0 0 -0.77728983e-01 -0.44509449e-01 -0.39161813e+01 0.13957000e+00
- 2 111 656 657 0.66313820e-01 -0.47936461e-01 -0.37473430e+01 0.13498000e+00
- 1 2112 0 0 0.10824484e+01 -0.14845171e+00 -0.48718843e+02 0.93957000e+00
- 1 211 0 0 0.72283451e+00 -0.61546301e-02 -0.26221905e+02 0.13957000e+00
- 1 211 0 0 0.33532213e+00 0.85244998e-01 -0.16300372e+02 0.13957000e+00
- 1 -211 0 0 0.44863238e+00 0.34741816e+00 -0.47778310e+02 0.13957000e+00
- 1 -2212 0 0 0.92096529e+00 -0.13029813e-01 -0.59902271e+02 0.93827000e+00
- 1 -211 0 0 0.22347910e+00 0.21068703e+00 -0.21198386e+02 0.13957000e+00
- 1 -2212 0 0 0.56374607e+00 0.73124614e+00 -0.11159292e+03 0.93827000e+00
- 1 211 0 0 0.24915787e+00 0.17911457e+00 -0.27894809e+02 0.13957000e+00
- 2 -311 658 658 0.12053972e+00 -0.52919250e+00 -0.17479958e+03 0.49767000e+00
- 1 -211 0 0 0.46880181e+00 -0.51237753e+00 -0.10172137e+03 0.13957000e+00
- 1 211 0 0 0.47749870e+00 0.15125055e+00 -0.29165031e+03 0.13957000e+00
- 1 -211 0 0 0.13284601e+00 -0.34170638e+00 -0.11258025e+03 0.13957000e+00
- 1 211 0 0 -0.48536165e+00 -0.96393953e-01 -0.84839101e+02 0.13957000e+00
- 1 -211 0 0 -0.16719162e+00 -0.72995098e-01 -0.84229838e+02 0.13957000e+00
- 2 111 659 660 -0.89077575e-01 -0.38841245e+00 -0.97889976e+02 0.13498000e+00
- 1 211 0 0 -0.11130244e+00 0.25739292e+00 -0.62775016e+02 0.13957000e+00
- 1 -211 0 0 -0.55064020e+00 -0.62294537e-02 -0.14700480e+03 0.13957000e+00
- 2 111 661 662 -0.33003110e+00 -0.75980163e-01 -0.56212963e+02 0.13498000e+00
- 1 -211 0 0 -0.42071733e-01 -0.32605994e+00 -0.39834728e+02 0.13957000e+00
- 2 111 663 664 0.50704943e+00 0.15437919e+00 -0.11139200e+03 0.13498000e+00
- 2 111 665 666 0.22517440e-01 -0.73273003e-01 -0.26318586e+02 0.13498000e+00
- 2 111 667 668 -0.99967875e-01 0.56888898e-01 -0.65965147e+02 0.13498000e+00
- 2 111 669 670 -0.18134399e+00 -0.13920001e+00 -0.77772967e+02 0.13498000e+00
- 1 321 0 0 -0.30615864e+00 0.95876361e-01 -0.40577557e+02 0.49360000e+00
- 2 111 671 672 -0.78662213e+00 -0.15083285e+00 -0.65252072e+02 0.13498000e+00
- 2 -311 673 673 -0.18132436e+00 0.75264872e+00 -0.19512459e+02 0.49767000e+00
- 1 -211 0 0 0.35262926e+00 0.39220927e+00 -0.14095994e+02 0.13957000e+00
- 1 22 0 0 -0.47520634e+00 0.12701066e+00 -0.29816115e+02 0.00000000e+00
- 1 22 0 0 -0.38123570e+00 0.90631039e-01 -0.17507718e+02 0.00000000e+00
- 1 -211 0 0 0.57781317e-01 -0.36529030e-01 -0.16460296e+01 0.13957000e+00
- 1 211 0 0 0.91120448e-01 0.29753977e+00 -0.35466429e+01 0.13957000e+00
- 2 111 674 675 -0.19007375e+00 -0.23129264e-01 -0.67352955e+01 0.13498000e+00
- 1 -211 0 0 0.60465608e-01 0.38455791e+00 -0.48751603e+01 0.13957000e+00
- 1 211 0 0 -0.12097895e+00 0.38180335e+00 -0.15045700e+02 0.13957000e+00
- 1 211 0 0 -0.73289811e-02 0.61939793e+00 -0.57411192e+01 0.13957000e+00
- 2 111 676 677 -0.20665265e+00 0.35619745e+00 -0.89633140e+01 0.13498000e+00
- 1 211 0 0 -0.57615620e-01 0.36775558e+00 -0.14374250e+01 0.13957000e+00
- 1 -211 0 0 0.35784140e+00 0.46227851e+00 -0.35025020e+01 0.13957000e+00
- 2 111 678 679 0.75266552e-03 0.70074863e-01 -0.13605239e+01 0.13498000e+00
- 1 22 0 0 -0.23199549e+00 0.32872499e+00 -0.40390252e+01 0.00000000e+00
- 1 22 0 0 -0.54169634e-01 0.20964488e+00 -0.28831905e+01 0.00000000e+00
- 1 2112 0 0 -0.20097326e+01 0.32320871e+01 -0.28302887e+02 0.93957000e+00
- 2 111 680 682 -0.16233565e+00 0.43147309e+00 -0.23555062e+01 0.13498000e+00
- 1 -2212 0 0 -0.71319391e+00 0.17026202e+01 -0.15788414e+02 0.93827000e+00
- 2 111 683 684 -0.36499389e+00 0.91762341e+00 -0.84357674e+01 0.13498000e+00
- 1 211 0 0 0.52019776e+00 0.31058011e+00 -0.95620889e+00 0.13957000e+00
- 2 111 685 686 -0.45736121e+00 0.35122738e+00 -0.61719569e+00 0.13498000e+00
- 1 22 0 0 0.26572576e+00 -0.14706096e+00 -0.89388231e+00 0.00000000e+00
- 1 22 0 0 0.57206560e+00 -0.16469397e+00 -0.13785946e+01 0.00000000e+00
- 1 -211 0 0 -0.81279616e-01 0.34594951e+00 -0.25017767e+00 0.13957000e+00
- 2 111 687 688 0.28765480e+00 0.57333715e+00 -0.25495015e+01 0.13498000e+00
- 1 -211 0 0 0.17190199e+00 0.14613619e+00 -0.34019325e+00 0.13957000e+00
- 1 211 0 0 0.25268955e+00 -0.56154817e+00 -0.56953418e+00 0.13957000e+00
- 1 22 0 0 -0.16970161e+00 -0.15495632e-01 -0.27566521e+00 0.00000000e+00
- 1 22 0 0 -0.38692523e+00 0.29506926e-01 -0.10839218e+01 0.00000000e+00
- 1 211 0 0 -0.65649268e+00 -0.64960215e-01 -0.12209777e+02 0.13957000e+00
- 1 -211 0 0 0.76659507e-01 0.84931459e-01 -0.10045575e+01 0.13957000e+00
- 1 22 0 0 0.63797943e+00 0.32871786e+00 -0.10361103e+02 0.00000000e+00
- 1 22 0 0 0.93883769e-01 0.38111274e-01 -0.23836292e+01 0.00000000e+00
- 1 22 0 0 0.62772217e-01 -0.69225237e-01 -0.10516737e+01 0.00000000e+00
- 2 113 689 690 -0.17345581e+00 0.58053686e-01 -0.35154129e+02 0.76019451e+00
- 1 211 0 0 -0.30749154e+00 0.27524443e+00 -0.21181772e+02 0.13957000e+00
- 2 111 691 692 0.47507074e-01 -0.19524885e+00 -0.78175515e+02 0.13498000e+00
- 1 -211 0 0 0.10579431e+00 -0.59137057e+00 -0.92071002e+02 0.13957000e+00
- 2 111 693 694 -0.53591888e-01 0.18838574e+00 -0.53747152e+02 0.13498000e+00
- 1 22 0 0 0.96705857e-01 0.10355811e+00 -0.84874610e+02 0.00000000e+00
- 1 22 0 0 0.57026384e-01 -0.25046304e-01 -0.16293682e+02 0.00000000e+00
- 1 22 0 0 -0.27225415e+00 -0.26225246e-01 0.85510472e-01 0.00000000e+00
- 1 22 0 0 -0.32666170e+00 -0.45087923e-01 -0.45037290e-01 0.00000000e+00
- 1 321 0 0 -0.35990148e+00 0.43490966e+00 0.10158291e+01 0.49360000e+00
- 2 111 695 696 -0.69683716e+00 0.16429502e+00 0.14251514e+01 0.13498000e+00
- 2 111 697 698 0.23398035e+00 0.45133295e-01 0.17012286e+00 0.13498000e+00
- 2 111 699 700 -0.25396847e-01 0.14972606e+00 0.48840173e-01 0.13498000e+00
- 2 111 701 702 0.60517195e-01 -0.22750023e-01 0.66964828e-01 0.13498000e+00
- 1 -321 0 0 -0.47283585e-01 0.19800091e+00 -0.20647076e+00 0.49360000e+00
- 2 111 703 704 -0.22525916e+00 0.22857197e+00 0.29187289e+00 0.13498000e+00
- 1 211 0 0 0.41305926e-01 0.33493283e+00 -0.17078174e+00 0.13957000e+00
- 1 -211 0 0 0.39666425e+00 0.67570812e-01 -0.23651179e+00 0.13957000e+00
- 2 111 705 706 0.80650261e-01 -0.32582132e-02 0.79378983e-01 0.13498000e+00
- 1 321 0 0 -0.68184334e-01 0.11310365e+00 -0.12168024e+01 0.49360000e+00
- 1 -211 0 0 0.14469284e+00 -0.23522238e-01 -0.24183150e+01 0.13957000e+00
- 1 -211 0 0 0.59451182e+00 0.79907848e+00 -0.77009856e+01 0.13957000e+00
- 2 111 707 708 -0.12303913e+00 -0.63177434e-01 -0.36227167e+01 0.13498000e+00
- 1 211 0 0 -0.98585538e-02 0.82607589e+00 -0.77746777e+01 0.13957000e+00
- 1 -211 0 0 -0.89801584e-01 -0.22409580e+00 -0.24421215e+01 0.13957000e+00
- 1 -321 0 0 0.53434919e+00 0.20115247e+00 -0.31842582e+01 0.49360000e+00
- 1 211 0 0 -0.18144472e+00 -0.22224271e-01 -0.75290762e+00 0.13957000e+00
- 2 311 709 709 -0.41494487e+00 0.30766038e-01 -0.23016120e+01 0.49767000e+00
- 1 211 0 0 0.72519844e-01 0.18273120e+00 -0.36945692e+00 0.13957000e+00
- 2 111 710 711 -0.79331141e-01 0.12174693e+00 -0.29369042e-01 0.13498000e+00
- 2 111 712 713 0.53988583e-01 0.22813079e+00 -0.37779964e+00 0.13498000e+00
- 2 221 714 715 -0.95629057e-01 0.26138018e+00 -0.58101946e+00 0.54745000e+00
- 1 22 0 0 -0.67110918e-01 -0.48697217e-01 -0.17431819e+00 0.00000000e+00
- 2 113 716 717 -0.68197306e+00 0.73529668e+00 -0.71324609e+00 0.78887810e+00
- 1 -211 0 0 -0.35263211e+00 0.38550804e+00 -0.32293240e+00 0.13957000e+00
- 2 111 718 719 0.22101793e+00 0.27770071e-01 0.12729206e+00 0.13498000e+00
- 1 22 0 0 0.18907776e-01 -0.46621155e-01 0.80727847e-01 0.00000000e+00
- 1 22 0 0 -0.78284602e-01 -0.19077755e+00 0.43688448e-01 0.00000000e+00
- 1 -2112 0 0 -0.27748655e+01 0.10864618e+00 -0.15817289e+01 0.93957000e+00
- 1 211 0 0 -0.12603982e+00 0.10633420e-01 -0.23327658e-02 0.13957000e+00
- 1 -211 0 0 -0.27214043e+00 0.41373468e-01 0.30339234e+00 0.13957000e+00
- 2 111 720 721 0.21661741e+00 0.41996728e+00 0.20229009e+00 0.13498000e+00
- 2 3122 722 723 -0.59985174e+00 -0.71169755e+00 -0.22620731e+00 0.11156800e+01
- 2 111 724 725 -0.18928026e+00 0.51304813e-01 0.74897996e-01 0.13498000e+00
- 1 22 0 0 -0.84655487e+00 -0.70966062e+00 0.21751136e+01 0.00000000e+00
- 1 22 0 0 -0.10435152e+00 -0.33790037e-01 0.20047862e+00 0.00000000e+00
- 1 22 0 0 -0.72174157e-01 0.55792046e-01 0.12781306e+00 0.00000000e+00
- 1 22 0 0 -0.12771252e+00 0.14163477e+00 0.32456428e-01 0.00000000e+00
- 1 22 0 0 0.18595922e+00 0.30315569e-01 0.41062470e+03 0.00000000e+00
- 1 22 0 0 0.16540325e+00 0.27275058e-01 0.17390392e+03 0.00000000e+00
- 1 22 0 0 -0.15024106e+00 0.42586892e-01 0.14362000e+02 0.00000000e+00
- 1 22 0 0 -0.22784707e-01 0.53472566e-01 0.15615103e+02 0.00000000e+00
- 2 111 726 727 0.47481460e+00 -0.86064645e-01 0.59176093e+02 0.13498000e+00
- 2 111 728 729 -0.42277489e-01 0.76600357e-02 0.90333944e+01 0.13498000e+00
- 1 130 0 0 -0.42777029e+00 -0.58912795e+00 0.78174144e+02 0.49767000e+00
- 1 22 0 0 0.86141532e-01 0.96564548e-01 0.10018091e+02 0.00000000e+00
- 1 22 0 0 0.17663704e+00 -0.13684918e-01 0.12628105e+02 0.00000000e+00
- 1 -2212 0 0 -0.29782038e+00 -0.22098110e+01 0.60985425e+02 0.93827000e+00
- 1 211 0 0 -0.15280474e+00 -0.30359575e+00 0.92743989e+01 0.13957000e+00
- 1 2212 0 0 0.10355558e+00 -0.97812060e+00 0.23594177e+02 0.93827000e+00
- 1 -211 0 0 -0.56556779e-01 -0.50402199e-01 0.28027072e+01 0.13957000e+00
- 1 22 0 0 0.43378053e-02 -0.18274756e+00 0.51820476e+01 0.00000000e+00
- 1 22 0 0 0.12413178e+00 -0.42739393e+00 0.85046110e+01 0.00000000e+00
- 1 22 0 0 0.12731685e+00 -0.21979652e+00 0.23546785e+01 0.00000000e+00
- 1 22 0 0 -0.32579041e-01 -0.86360573e-01 0.10522246e+01 0.00000000e+00
- 1 130 0 0 0.21838501e+01 -0.45586571e+00 0.11171206e+02 0.49767000e+00
- 2 310 730 731 0.25423256e+01 -0.14029960e+01 0.63319397e+01 0.49767000e+00
- 1 22 0 0 0.10778759e+01 -0.62174386e+00 0.34008771e+01 0.00000000e+00
- 1 22 0 0 0.89871445e+00 -0.38106316e+00 0.26953027e+01 0.00000000e+00
- 1 22 0 0 0.77544678e+00 -0.69561989e+00 0.31284214e+01 0.00000000e+00
- 1 22 0 0 0.23963239e+00 -0.25255830e+00 0.13002013e+01 0.00000000e+00
- 1 22 0 0 0.46070534e-01 -0.72497608e-02 0.37811366e+00 0.00000000e+00
- 1 22 0 0 0.33912569e+00 -0.21054640e+00 0.13209837e+01 0.00000000e+00
- 1 22 0 0 -0.68975932e-02 -0.20223266e-01 0.10530054e+00 0.00000000e+00
- 1 22 0 0 0.39244027e+00 -0.20213178e+00 0.13388887e+01 0.00000000e+00
- 1 22 0 0 -0.39972536e-01 -0.44812218e-01 -0.55128425e-01 0.00000000e+00
- 1 22 0 0 0.49173583e-01 0.26717925e-01 0.19997539e-01 0.00000000e+00
- 1 -211 0 0 -0.74845691e+00 -0.15782424e+00 -0.11194817e-01 0.13957000e+00
- 1 211 0 0 -0.24138757e+00 -0.26328627e+00 0.16527044e+00 0.13957000e+00
- 1 130 0 0 -0.13019324e+01 0.68998013e+00 -0.70731241e+00 0.49767000e+00
- 1 22 0 0 -0.16811722e+00 -0.19381888e+00 0.84123633e-01 0.00000000e+00
- 1 22 0 0 -0.27044509e+00 -0.38033443e+00 -0.24984142e-01 0.00000000e+00
- 1 22 0 0 -0.30342397e+00 -0.90732763e-01 -0.24851064e+00 0.00000000e+00
- 1 22 0 0 -0.70031487e+00 -0.38018860e+00 -0.45967623e+00 0.00000000e+00
- 1 22 0 0 -0.32561566e+00 -0.24845475e+00 -0.39619515e+00 0.00000000e+00
- 1 22 0 0 -0.36915389e+00 -0.48718279e+00 -0.59387631e+00 0.00000000e+00
- 1 22 0 0 -0.26650022e+00 -0.10785117e+00 -0.28508349e+00 0.00000000e+00
- 1 22 0 0 -0.44779833e+00 -0.12903491e-01 -0.36726581e+00 0.00000000e+00
- 1 22 0 0 -0.20257962e+00 -0.26681532e+00 -0.62622992e+00 0.00000000e+00
- 1 22 0 0 -0.10410094e+00 -0.25298779e-01 -0.15058856e+00 0.00000000e+00
- 2 310 732 733 -0.26316916e+01 -0.31258890e+00 -0.81941862e+01 0.49767000e+00
- 2 310 734 735 0.39810351e+00 -0.86488976e+00 -0.14004887e+01 0.49767000e+00
- 1 22 0 0 -0.19736163e+00 -0.17151090e+00 -0.11184125e+00 0.00000000e+00
- 1 22 0 0 0.20917573e-01 -0.20151952e-01 0.14904458e-02 0.00000000e+00
- 1 22 0 0 0.22916651e+00 -0.67114570e-02 -0.48366685e+00 0.00000000e+00
- 1 22 0 0 0.34106642e-02 -0.44167569e-01 -0.10191428e+00 0.00000000e+00
- 1 22 0 0 -0.36099865e+00 -0.22115712e+00 -0.14274541e+00 0.00000000e+00
- 1 22 0 0 -0.46016347e-01 -0.39731239e-01 -0.84783337e-01 0.00000000e+00
- 1 22 0 0 0.61585996e-01 -0.34653352e+00 0.84233266e-01 0.00000000e+00
- 1 22 0 0 -0.64880786e-01 -0.28278656e+00 0.11180486e+00 0.00000000e+00
- 1 22 0 0 0.19239052e+00 -0.12469767e+00 -0.50927043e+00 0.00000000e+00
- 1 22 0 0 0.19083368e+00 -0.13782727e-01 -0.26582975e+00 0.00000000e+00
- 1 22 0 0 -0.35568140e-01 0.40560243e-02 -0.12672782e+01 0.00000000e+00
- 1 22 0 0 -0.48376005e-01 -0.55384630e-01 -0.32416348e+00 0.00000000e+00
- 1 22 0 0 0.62005393e-01 0.18400382e+00 -0.10140004e+01 0.00000000e+00
- 1 22 0 0 -0.10945479e-01 -0.22521426e-02 -0.42764751e-02 0.00000000e+00
- 1 22 0 0 0.20654859e-01 0.25677877e-01 -0.70955467e-01 0.00000000e+00
- 1 22 0 0 -0.16862139e+00 0.32075912e-01 -0.64485323e+00 0.00000000e+00
- 1 22 0 0 -0.54508034e-01 -0.52860580e-01 -0.34939550e+00 0.00000000e+00
- 1 22 0 0 -0.85616339e-01 0.58370015e-01 -0.19899790e+00 0.00000000e+00
- 1 130 0 0 0.99896681e+00 0.43074605e+00 0.56421097e+02 0.49767000e+00
- 1 22 0 0 0.58425058e-01 0.46707404e-01 0.10524497e+01 0.00000000e+00
- 1 22 0 0 0.57947400e+00 0.11111183e+01 0.20593957e+02 0.00000000e+00
- 1 22 0 0 0.28910133e+00 0.74233235e+00 0.13918906e+01 0.00000000e+00
- 1 22 0 0 0.22188149e+00 0.42199929e+00 0.10288051e+01 0.00000000e+00
- 1 130 0 0 0.64095532e+00 0.59672460e+00 -0.63779606e+00 0.49767000e+00
- 1 22 0 0 0.18179573e-01 0.34037511e-02 0.10193555e+00 0.00000000e+00
- 1 22 0 0 0.12236325e+00 -0.92728743e-01 0.59105371e-01 0.00000000e+00
- 1 22 0 0 0.56360199e-01 -0.52301593e-01 -0.13190852e+00 0.00000000e+00
- 1 22 0 0 0.54206150e-01 0.84478506e-01 -0.19009294e+00 0.00000000e+00
- 1 22 0 0 0.11168416e+00 -0.15216967e-01 -0.90131610e-01 0.00000000e+00
- 1 22 0 0 -0.15136408e-01 -0.11880999e-01 -0.13665980e+00 0.00000000e+00
- 1 211 0 0 0.22304803e+00 -0.76696560e+00 -0.12825760e+01 0.13957000e+00
- 1 -211 0 0 0.10764655e+00 -0.89719895e+00 -0.80339307e+00 0.13957000e+00
- 1 22 0 0 0.79237792e-01 -0.11868668e+00 -0.61331421e+00 0.00000000e+00
- 1 22 0 0 0.41633018e-01 -0.46748403e+00 -0.17010175e+01 0.00000000e+00
- 1 -2112 0 0 0.57429518e+00 -0.31039873e+00 -0.71120989e+01 0.93957000e+00
- 2 111 736 737 0.16661028e+00 -0.63601967e-01 -0.22797143e+01 0.13498000e+00
- 1 22 0 0 0.16367706e+00 -0.78353588e+00 -0.86056218e+01 0.00000000e+00
- 1 22 0 0 0.33774584e-02 -0.14057732e+00 -0.21629477e+01 0.00000000e+00
- 1 22 0 0 0.18885024e+00 0.15255059e+00 -0.24298226e+02 0.00000000e+00
- 1 22 0 0 -0.20879515e-01 0.66707950e-03 -0.15836302e+01 0.00000000e+00
- 1 22 0 0 -0.14292898e-01 -0.72177780e-01 -0.18121010e+01 0.00000000e+00
- 1 22 0 0 0.80606718e-01 0.24241319e-01 -0.19352420e+01 0.00000000e+00
- 2 310 738 739 0.12053972e+00 -0.52919250e+00 -0.17479958e+03 0.49767000e+00
- 1 22 0 0 -0.75804669e-01 -0.29644813e+00 -0.85864329e+02 0.00000000e+00
- 1 22 0 0 -0.13272907e-01 -0.91964314e-01 -0.12025647e+02 0.00000000e+00
- 1 22 0 0 -0.15544206e+00 -0.94439994e-01 -0.23054190e+02 0.00000000e+00
- 1 22 0 0 -0.17458904e+00 0.18459830e-01 -0.33158772e+02 0.00000000e+00
- 1 22 0 0 0.25976467e+00 0.88659056e-02 -0.51829451e+02 0.00000000e+00
- 1 22 0 0 0.24728476e+00 0.14551328e+00 -0.59562548e+02 0.00000000e+00
- 1 22 0 0 0.35434709e-01 0.25357204e-01 -0.40250057e+01 0.00000000e+00
- 1 22 0 0 -0.12917269e-01 -0.98630207e-01 -0.22293580e+02 0.00000000e+00
- 1 22 0 0 0.22161689e-01 0.48857162e-01 -0.16618520e+02 0.00000000e+00
- 1 22 0 0 -0.12212956e+00 0.80317357e-02 -0.49346627e+02 0.00000000e+00
- 1 22 0 0 -0.14944426e+00 -0.13642357e+00 -0.46899111e+02 0.00000000e+00
- 1 22 0 0 -0.31899731e-01 -0.27764357e-02 -0.30873855e+02 0.00000000e+00
- 1 22 0 0 -0.68147482e+00 -0.11456585e+00 -0.59200926e+02 0.00000000e+00
- 1 22 0 0 -0.10514731e+00 -0.36267000e-01 -0.60511461e+01 0.00000000e+00
- 2 310 740 741 -0.18132436e+00 0.75264872e+00 -0.19512459e+02 0.49767000e+00
- 1 22 0 0 -0.59775037e-01 0.21819860e-01 -0.81923330e+00 0.00000000e+00
- 1 22 0 0 -0.13029871e+00 -0.44949124e-01 -0.59160622e+01 0.00000000e+00
- 1 22 0 0 -0.95317383e-01 0.11907145e+00 -0.21318516e+01 0.00000000e+00
- 1 22 0 0 -0.11133527e+00 0.23712600e+00 -0.68314624e+01 0.00000000e+00
- 1 22 0 0 -0.28397918e-01 -0.12542696e-01 -0.85391053e-01 0.00000000e+00
- 1 22 0 0 0.29150584e-01 0.82617559e-01 -0.12751328e+01 0.00000000e+00
- 1 22 0 0 0.23950466e-01 0.60177041e-01 -0.32306989e+00 0.00000000e+00
- 1 11 0 0 -0.14510424e+00 0.28125567e+00 -0.15301736e+01 0.51000000e-03
- 1 -11 0 0 -0.41181874e-01 0.90040379e-01 -0.50226263e+00 0.51000000e-03
- 1 22 0 0 -0.88473602e-01 0.39971978e+00 -0.33751176e+01 0.00000000e+00
- 1 22 0 0 -0.27652029e+00 0.51790364e+00 -0.50606498e+01 0.00000000e+00
- 1 22 0 0 -0.27651347e+00 0.20972128e+00 -0.27267777e+00 0.00000000e+00
- 1 22 0 0 -0.18084774e+00 0.14150610e+00 -0.34451792e+00 0.00000000e+00
- 1 22 0 0 0.34579539e-01 0.27403263e-01 -0.32451714e+00 0.00000000e+00
- 1 22 0 0 0.25307526e+00 0.54593389e+00 -0.22249843e+01 0.00000000e+00
- 1 -211 0 0 0.11799917e+00 0.23754818e+00 -0.25281077e+02 0.13957000e+00
- 1 211 0 0 -0.29145498e+00 -0.17949450e+00 -0.98730516e+01 0.13957000e+00
- 1 22 0 0 0.95186449e-01 -0.12980685e+00 -0.50762078e+02 0.00000000e+00
- 1 22 0 0 -0.47679375e-01 -0.65442001e-01 -0.27413437e+02 0.00000000e+00
- 1 22 0 0 0.42852702e-01 0.36746632e-01 -0.10300083e+02 0.00000000e+00
- 1 22 0 0 -0.96444590e-01 0.15163911e+00 -0.43447068e+02 0.00000000e+00
- 1 22 0 0 -0.47637710e-01 0.42207739e-01 0.18215889e+00 0.00000000e+00
- 1 22 0 0 -0.64919945e+00 0.12208729e+00 0.12429925e+01 0.00000000e+00
- 1 22 0 0 0.79436908e-01 0.82562754e-01 0.78511513e-01 0.00000000e+00
- 1 22 0 0 0.15454345e+00 -0.37429459e-01 0.91611343e-01 0.00000000e+00
- 1 22 0 0 0.35260998e-01 -0.57054154e-02 0.25116725e-02 0.00000000e+00
- 1 22 0 0 -0.60657845e-01 0.15543148e+00 0.46328501e-01 0.00000000e+00
- 1 22 0 0 0.75575088e-01 0.39695518e-01 0.35846165e-01 0.00000000e+00
- 1 22 0 0 -0.15057892e-01 -0.62445541e-01 0.31118663e-01 0.00000000e+00
- 1 22 0 0 -0.15338032e+00 0.12597920e+00 0.92811924e-01 0.00000000e+00
- 1 22 0 0 -0.71878848e-01 0.10259277e+00 0.19906096e+00 0.00000000e+00
- 1 22 0 0 0.39764066e-02 -0.40766465e-01 0.81033092e-01 0.00000000e+00
- 1 22 0 0 0.76673855e-01 0.37508252e-01 -0.16541085e-02 0.00000000e+00
- 1 22 0 0 0.16002174e-01 -0.50888894e-01 -0.10995315e+01 0.00000000e+00
- 1 22 0 0 -0.13904131e+00 -0.12288539e-01 -0.25231852e+01 0.00000000e+00
- 2 310 742 743 -0.41494487e+00 0.30766038e-01 -0.23016120e+01 0.49767000e+00
- 1 22 0 0 -0.81069769e-01 0.31047116e-01 -0.59112224e-01 0.00000000e+00
- 1 22 0 0 0.17386289e-02 0.90699814e-01 0.29743182e-01 0.00000000e+00
- 1 22 0 0 0.65307235e-01 0.16042762e+00 -0.15819757e+00 0.00000000e+00
- 1 22 0 0 -0.11318653e-01 0.67703169e-01 -0.21960207e+00 0.00000000e+00
- 1 22 0 0 0.10495450e+00 0.42697331e-01 -0.53289696e+00 0.00000000e+00
- 1 22 0 0 -0.20058355e+00 0.21868285e+00 -0.48122498e-01 0.00000000e+00
- 1 -211 0 0 -0.73170310e+00 0.36468644e+00 -0.28649232e+00 0.13957000e+00
- 1 211 0 0 0.49730048e-01 0.37061024e+00 -0.42675377e+00 0.13957000e+00
- 1 22 0 0 0.14904412e+00 -0.11705184e-01 0.14225297e-01 0.00000000e+00
- 1 22 0 0 0.71973808e-01 0.39475254e-01 0.11306677e+00 0.00000000e+00
- 1 22 0 0 0.10516618e+00 0.33259099e+00 0.15907372e+00 0.00000000e+00
- 1 22 0 0 0.11145122e+00 0.87376294e-01 0.43216373e-01 0.00000000e+00
- 1 2212 0 0 -0.54473590e+00 -0.71264910e+00 -0.23890406e+00 0.93827000e+00
- 1 -211 0 0 -0.55115843e-01 0.95155349e-03 0.12696743e-01 0.13957000e+00
- 1 22 0 0 -0.63728938e-01 0.13037070e-01 0.96681529e-01 0.00000000e+00
- 1 22 0 0 -0.12555132e+00 0.38267743e-01 -0.21783533e-01 0.00000000e+00
- 1 22 0 0 0.16200041e+00 0.10974640e-01 0.25922798e+02 0.00000000e+00
- 1 22 0 0 0.31281419e+00 -0.97039285e-01 0.33253295e+02 0.00000000e+00
- 1 22 0 0 -0.67396410e-02 -0.53178051e-01 0.18812098e+01 0.00000000e+00
- 1 22 0 0 -0.35537848e-01 0.60838087e-01 0.71521846e+01 0.00000000e+00
- 2 111 744 745 0.99163598e+00 -0.59049901e+00 0.20614544e+01 0.13498000e+00
- 2 111 746 747 0.15506896e+01 -0.81249696e+00 0.42704854e+01 0.13498000e+00
- 1 -211 0 0 -0.57565139e+00 0.64715344e-01 -0.15924003e+01 0.13957000e+00
- 1 211 0 0 -0.20560402e+01 -0.37730424e+00 -0.66017860e+01 0.13957000e+00
- 2 111 748 749 0.27761891e+00 -0.82428255e+00 -0.12349723e+01 0.13498000e+00
- 2 111 750 751 0.12048460e+00 -0.40607213e-01 -0.16551642e+00 0.13498000e+00
- 1 22 0 0 0.48218552e-01 -0.71203649e-01 -0.14450198e+01 0.00000000e+00
- 1 22 0 0 0.11839172e+00 0.76016819e-02 -0.83469446e+00 0.00000000e+00
- 2 111 752 753 -0.70158136e-01 -0.28383838e+00 -0.47063449e+02 0.13498000e+00
- 2 111 754 755 0.19069785e+00 -0.24535412e+00 -0.12773613e+03 0.13498000e+00
- 1 -211 0 0 -0.14476700e+00 0.18430311e+00 -0.33603580e+01 0.13957000e+00
- 1 211 0 0 -0.36557366e-01 0.56834561e+00 -0.16152101e+02 0.13957000e+00
- 1 211 0 0 -0.37790414e+00 -0.13055703e+00 -0.13280969e+01 0.13957000e+00
- 1 -211 0 0 -0.37040730e-01 0.16132307e+00 -0.97351508e+00 0.13957000e+00
- 1 22 0 0 0.39833328e+00 -0.16185647e+00 0.77764256e+00 0.00000000e+00
- 1 22 0 0 0.59330269e+00 -0.42864254e+00 0.12838118e+01 0.00000000e+00
- 1 22 0 0 0.53316142e+00 -0.29349369e+00 0.13222991e+01 0.00000000e+00
- 1 22 0 0 0.10175282e+01 -0.51900327e+00 0.29481862e+01 0.00000000e+00
- 1 22 0 0 0.24918461e+00 -0.55742040e+00 -0.82023119e+00 0.00000000e+00
- 1 22 0 0 0.28434301e-01 -0.26686215e+00 -0.41474110e+00 0.00000000e+00
- 1 22 0 0 -0.28260088e-01 -0.17905449e-01 -0.18682281e-01 0.00000000e+00
- 1 22 0 0 0.14874469e+00 -0.22701764e-01 -0.14683414e+00 0.00000000e+00
- 1 22 0 0 0.22618575e-01 -0.12864841e+00 -0.14069199e+02 0.00000000e+00
- 1 22 0 0 -0.92776710e-01 -0.15518997e+00 -0.32994250e+02 0.00000000e+00
- 1 22 0 0 0.70211965e-01 -0.18411182e+00 -0.62978118e+02 0.00000000e+00
- 1 22 0 0 0.12048589e+00 -0.61242301e-01 -0.64758016e+02 0.00000000e+00
diff --git a/examples/extended/runAndEvent/RE05/src/RE05CalorimeterHit.cc b/examples/extended/runAndEvent/RE05/src/RE05CalorimeterHit.cc
index 6f4ebd7f9c7..ed504c214f8 100644
--- a/examples/extended/runAndEvent/RE05/src/RE05CalorimeterHit.cc
+++ b/examples/extended/runAndEvent/RE05/src/RE05CalorimeterHit.cc
@@ -91,7 +91,7 @@ const RE05CalorimeterHit& RE05CalorimeterHit::operator=(const RE05CalorimeterHit
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-G4int RE05CalorimeterHit::operator==(const RE05CalorimeterHit &right) const
+G4bool RE05CalorimeterHit::operator==(const RE05CalorimeterHit &right) const
{
return ((fZCellID==right.fZCellID)&&(fPhiCellID==right.fPhiCellID));
}
diff --git a/examples/extended/runAndEvent/RE05/src/RE05MuonHit.cc b/examples/extended/runAndEvent/RE05/src/RE05MuonHit.cc
index 39178f7f0f8..11ce650c1d7 100644
--- a/examples/extended/runAndEvent/RE05/src/RE05MuonHit.cc
+++ b/examples/extended/runAndEvent/RE05/src/RE05MuonHit.cc
@@ -71,9 +71,9 @@ const RE05MuonHit& RE05MuonHit::operator=(const RE05MuonHit &right)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-G4int RE05MuonHit::operator==(const RE05MuonHit &right) const
+G4bool RE05MuonHit::operator==(const RE05MuonHit &right) const
{
- return (this==&right) ? 1 : 0;
+ return (this==&right) ? true : false;
}
std::map RE05MuonHit::fAttDefs;
diff --git a/examples/extended/runAndEvent/RE05/src/RE05TrackerHit.cc b/examples/extended/runAndEvent/RE05/src/RE05TrackerHit.cc
index 63ffbd188bf..bd16a457a09 100644
--- a/examples/extended/runAndEvent/RE05/src/RE05TrackerHit.cc
+++ b/examples/extended/runAndEvent/RE05/src/RE05TrackerHit.cc
@@ -73,9 +73,9 @@ const RE05TrackerHit& RE05TrackerHit::operator=(const RE05TrackerHit &right)
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
-G4int RE05TrackerHit::operator==(const RE05TrackerHit &right) const
+G4bool RE05TrackerHit::operator==(const RE05TrackerHit &right) const
{
- return (this==&right) ? 1 : 0;
+ return (this==&right) ? true : false;
}
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
diff --git a/examples/extended/runAndEvent/RE06/exampleRE06.out b/examples/extended/runAndEvent/RE06/exampleRE06.out
index 18548e10036..481dfb66ccc 100644
--- a/examples/extended/runAndEvent/RE06/exampleRE06.out
+++ b/examples/extended/runAndEvent/RE06/exampleRE06.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -28,12 +24,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -208,371 +202,371 @@ Region -- -- appears in world volume
Production cuts : gamma 10 cm e- 10 cm e+ 10 cm proton 10 cm
/run/beamOn 10
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -623,6 +617,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -728,6 +723,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -864,6 +860,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -931,7 +928,7 @@ Index : 6 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10
- User=1.170000s Real=1.839335s Sys=0.670000s
+ User=1.150000s Real=1.462041s Sys=0.310000s
############################################################
Run Summary - Number of events : 10
############################################################
@@ -1157,371 +1154,371 @@ Region -- -- appears in world volume
Production cuts : gamma 2 cm e- 2 cm e+ 2 cm proton 2 cm
/run/beamOn 10
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -1580,7 +1577,7 @@ Index : 6 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10
- User=2.120000s Real=3.395235s Sys=1.130000s
+ User=1.870000s Real=2.416467s Sys=0.540000s
############################################################
Run Summary - Number of events : 10
############################################################
@@ -1807,371 +1804,371 @@ Region -- -- appears in world volume
Production cuts : gamma 2 cm e- 2 cm e+ 2 cm proton 2 cm
/run/beamOn 10
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -2260,7 +2257,7 @@ Index : 12 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10
- User=0.250000s Real=0.399670s Sys=0.150000s
+ User=0.220000s Real=0.293617s Sys=0.070000s
############################################################
Run Summary - Number of events : 10
############################################################
@@ -2516,371 +2513,371 @@ Region -- -- appears in world volume
Production cuts : gamma 1 mm e- 1 mm e+ 1 mm proton 1 mm
/run/beamOn 10
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
========= Table of registered couples ==============================
@@ -2969,7 +2966,7 @@ Index : 12 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 10
- User=3.540000s Real=5.726989s Sys=2.060000s
+ User=3.140000s Real=4.128361s Sys=0.970000s
############################################################
Run Summary - Number of events : 10
############################################################
diff --git a/examples/extended/visualization/userVisAction/run1.out b/examples/extended/visualization/userVisAction/run1.out
index fdbef91c674..7fd952066c6 100644
--- a/examples/extended/visualization/userVisAction/run1.out
+++ b/examples/extended/visualization/userVisAction/run1.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -27,12 +23,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -76,371 +70,371 @@ Checking overlaps for volume Shape2 ... OK!
#
/run/beamOn 5
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -496,6 +490,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -600,6 +595,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -734,6 +730,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -948,7 +945,7 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
Run terminated.
Run Summary
Number of events processed : 5
- User=0.000000s Real=0.002634s Sys=0.000000s
+ User=0.000000s Real=0.002086s Sys=0.000000s
--------------------End of Global Run-----------------------
The run consists of 5 gamma of 6 MeV
@@ -1052,172 +1049,52 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
12 -70.2 47.5 33.5 115 14.9 24.8 184 Envelope hIoni
13 -69.8 47.9 53.5 101 13.6 20 204 Envelope hIoni
14 -69.8 48 56.2 0 1.74 2.73 206 Envelope protonInelastic
- :----- List of 2ndaries - #SpawnInStep= 4(Rest= 0,Along= 0,Post= 4), #SpawnTotal= 11 ---------------
+ :----- List of 2ndaries - #SpawnInStep= 3(Rest= 0,Along= 0,Post= 3), #SpawnTotal= 10 ---------------
: -69.8 48 56.2 68 proton
: -69.8 48 56.2 10.4 neutron
- : -69.8 48 56.2 0.11 gamma
- : -69.8 48 56.2 5.35 O15
+ : -69.8 48 56.2 5.35 O15[108.596]
:----------------------------------------------------------------- EndOf2ndaries Info ---------------
*********************************************************************************************************
-* G4Track Information: Particle = O15, Track ID = 12, Parent ID = 1
+* G4Track Information: Particle = O15[108.596], Track ID = 11, Parent ID = 1
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 -69.8 48 56.2 5.35 0 0 0 Envelope initStep
1 -69.8 48 56.2 0 5.35 0.00375 0.00375 Envelope ionIoni
-*********************************************************************************************************
-* G4Track Information: Particle = gamma, Track ID = 11, Parent ID = 1
-*********************************************************************************************************
-
-Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
- 0 -69.8 48 56.2 0.11 0 0 0 Envelope initStep
- 1 -84.2 73.8 74.5 0.084 0 34.7 34.7 Envelope compt
- :----- List of 2ndaries - #SpawnInStep= 1(Rest= 0,Along= 0,Post= 1), #SpawnTotal= 1 ---------------
- : -84.2 73.8 74.5 0.0264 e-
- :----------------------------------------------------------------- EndOf2ndaries Info ---------------
- 2 -84.2 74 72.8 0.0805 0 1.76 36.5 Envelope compt
- :----- List of 2ndaries - #SpawnInStep= 1(Rest= 0,Along= 0,Post= 1), #SpawnTotal= 2 ---------------
- : -84.2 74 72.8 0.00353 e-
- :----------------------------------------------------------------- EndOf2ndaries Info ---------------
- 3 -86 94.5 54.5 0.0706 0 27.6 64 Envelope compt
- :----- List of 2ndaries - #SpawnInStep= 1(Rest= 0,Along= 0,Post= 1), #SpawnTotal= 3 ---------------
- : -86 94.5 54.5 0.00991 e-
- :----------------------------------------------------------------- EndOf2ndaries Info ---------------
- 4 -79.9 82.8 37.2 0.0666 0 21.7 85.7 Envelope compt
- :----- List of 2ndaries - #SpawnInStep= 1(Rest= 0,Along= 0,Post= 1), #SpawnTotal= 4 ---------------
- : -79.9 82.8 37.2 0.00403 e-
- :----------------------------------------------------------------- EndOf2ndaries Info ---------------
- 5 -79.9 82.8 37.2 0.0664 0 0.016 85.7 Envelope compt
- :----- List of 2ndaries - #SpawnInStep= 1(Rest= 0,Along= 0,Post= 1), #SpawnTotal= 5 ---------------
- : -79.9 82.8 37.2 0.000213 e-
- :----------------------------------------------------------------- EndOf2ndaries Info ---------------
- 6 -82.2 81.8 30.7 0.0618 0 6.96 92.7 Envelope compt
- :----- List of 2ndaries - #SpawnInStep= 1(Rest= 0,Along= 0,Post= 1), #SpawnTotal= 6 ---------------
- : -82.2 81.8 30.7 0.00459 e-
- :----------------------------------------------------------------- EndOf2ndaries Info ---------------
- 7 -100 99.6 21.9 0.0618 0 26.6 119 World Transportation
- 8 -120 120 12 0.0618 0 30 149 OutOfWorld Transportation
-
-*********************************************************************************************************
-* G4Track Information: Particle = e-, Track ID = 18, Parent ID = 11
-*********************************************************************************************************
-
-Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
- 0 -82.2 81.8 30.7 0.00459 0 0 0 Envelope initStep
- 1 -82.2 81.8 30.7 0 0.00459 0.000666 0.000666 Envelope eIoni
-
-*********************************************************************************************************
-* G4Track Information: Particle = e-, Track ID = 17, Parent ID = 11
-*********************************************************************************************************
-
-Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
- 0 -79.9 82.8 37.2 0.000213 0 0 0 Envelope initStep
- 1 -79.9 82.8 37.2 0 0.000213 8.91e-06 8.91e-06 Envelope eIoni
-
-*********************************************************************************************************
-* G4Track Information: Particle = e-, Track ID = 16, Parent ID = 11
-*********************************************************************************************************
-
-Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
- 0 -79.9 82.8 37.2 0.00403 0 0 0 Envelope initStep
- 1 -79.9 82.8 37.2 0 0.00403 0.000533 0.000533 Envelope eIoni
-
-*********************************************************************************************************
-* G4Track Information: Particle = e-, Track ID = 15, Parent ID = 11
-*********************************************************************************************************
-
-Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
- 0 -86 94.5 54.5 0.00991 0 0 0 Envelope initStep
- 1 -86 94.5 54.5 0 0.00991 0.00251 0.00251 Envelope eIoni
-
-*********************************************************************************************************
-* G4Track Information: Particle = e-, Track ID = 14, Parent ID = 11
-*********************************************************************************************************
-
-Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
- 0 -84.2 74 72.8 0.00353 0 0 0 Envelope initStep
- 1 -84.2 74 72.8 0 0.00353 0.000427 0.000427 Envelope eIoni
-
-*********************************************************************************************************
-* G4Track Information: Particle = e-, Track ID = 13, Parent ID = 11
-*********************************************************************************************************
-
-Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
- 0 -84.2 73.8 74.5 0.0264 0 0 0 Envelope initStep
- 1 -84.2 73.8 74.6 0 0.0264 0.0141 0.0141 Envelope eIoni
-
*********************************************************************************************************
* G4Track Information: Particle = neutron, Track ID = 10, Parent ID = 1
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 -69.8 48 56.2 10.4 0 0 0 Envelope initStep
- 1 -60 45.1 65.6 10.4 0 13.9 13.9 Shape2 Transportation
- 2 -58.6 44.6 66.9 2.48 0 2 15.9 Shape2 hadElastic
+ 1 -95.5 92.6 98.5 10.1 0 66.5 66.5 Envelope hadElastic
:----- List of 2ndaries - #SpawnInStep= 1(Rest= 0,Along= 0,Post= 1), #SpawnTotal= 1 ---------------
- : -58.6 44.6 66.9 7.9 proton
+ : -95.5 92.6 98.5 0.301 O16
:----------------------------------------------------------------- EndOf2ndaries Info ---------------
- 3 -57.9 38.2 69.1 2.23 0 6.87 22.7 Shape2 hadElastic
+ 2 -95.3 93 99.4 8.91 0 1 67.5 Envelope hadElastic
:----- List of 2ndaries - #SpawnInStep= 1(Rest= 0,Along= 0,Post= 1), #SpawnTotal= 2 ---------------
- : -57.9 38.2 69.1 0.249 P31
- :----------------------------------------------------------------- EndOf2ndaries Info ---------------
- 4 -59.6 39.2 68.7 0.0247 0 2.09 24.8 Shape2 hadElastic
- :----- List of 2ndaries - #SpawnInStep= 1(Rest= 0,Along= 0,Post= 1), #SpawnTotal= 3 ---------------
- : -59.6 39.2 68.7 2.21 proton
+ : -95.3 93 99.4 1.17 O18
:----------------------------------------------------------------- EndOf2ndaries Info ---------------
- 5 -60 42 73.3 0.0247 0 5.43 30.3 Envelope Transportation
- 6 -60.6 46.4 80.4 0.0238 0.000855 8.35 38.6 Envelope hadElastic
- 7 -60.6 46.7 81.2 0.0136 0.0103 0.913 39.5 Envelope hadElastic
- 8 -60 47.5 81.9 0.0136 0 1.22 40.7 Shape2 Transportation
- 9 -59.9 47.6 82 0.00985 0.00371 0.121 40.9 Shape2 hadElastic
- 10 -60 49.7 84.7 0.00985 0 3.47 44.3 Envelope Transportation
- 11 -60.1 52.1 87.8 0.00388 0.00597 3.91 48.2 Envelope hadElastic
- 12 -60 52.1 87.9 0.00388 0 0.109 48.3 Shape2 Transportation
- 13 -59.9 52.1 88.1 0.00108 0.0028 0.22 48.6 Shape2 hadElastic
- 14 -54.4 51 87.7 7.5e-05 0.001 5.58 54.1 Shape2 hadElastic
- 15 -53.4 52.5 89 3.36e-05 4.14e-05 2.3 56.4 Shape2 hadElastic
- 16 -53.6 53.1 89.3 3.09e-05 2.69e-06 0.688 57.1 Shape2 hadElastic
- 17 -58 63 99.6 2.87e-05 2.16e-06 14.9 72.1 Shape2 hadElastic
- 18 -58.4 62.8 100 2.87e-05 0 0.619 72.7 Envelope Transportation
- 19 -58.5 62.8 100 2.01e-05 8.63e-06 0.137 72.8 Envelope hadElastic
- 20 -67.2 63 103 1.57e-05 4.46e-06 9.19 82 Envelope hadElastic
- 21 -75.2 58.6 106 5.47e-06 1.02e-05 9.66 91.7 Envelope hadElastic
- 22 -75.8 58.9 107 4.89e-06 5.78e-07 1.07 92.7 Envelope hadElastic
- 23 -78.8 60.5 115 3.77e-06 1.13e-06 8.64 101 Envelope hadElastic
- 24 -82.9 62.8 119 2.02e-06 1.74e-06 5.95 107 Envelope hadElastic
- 25 -83.6 67.6 122 1.57e-06 4.52e-07 5.77 113 Envelope hadElastic
- 26 -80.3 93.8 125 7.31e-07 8.38e-07 26.6 140 Envelope hadElastic
- 27 -71.6 100 126 7.31e-07 0 10.7 150 World Transportation
- 28 -43.5 120 130 7.31e-07 0 34.6 185 OutOfWorld Transportation
+ 3 -97.9 100 95.9 8.91 0 8.23 75.8 World Transportation
+ 4 -105 120 85.9 8.91 0 23.5 99.3 OutOfWorld Transportation
*********************************************************************************************************
-* G4Track Information: Particle = proton, Track ID = 21, Parent ID = 10
+* G4Track Information: Particle = O18, Track ID = 13, Parent ID = 10
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
- 0 -59.6 39.2 68.7 2.21 0 0 0 Shape2 initStep
- 1 -59.7 39.2 68.6 0.0341 2.18 0.0534 0.0534 Shape2 hIoni
- 2 -59.7 39.2 68.6 0 0.0341 0.000464 0.0539 Shape2 hIoni
+ 0 -95.3 93 99.4 1.17 0 0 0 Envelope initStep
+ 1 -95.3 93 99.4 0 1.17 0.00241 0.00241 Envelope ionIoni
*********************************************************************************************************
-* G4Track Information: Particle = P31, Track ID = 20, Parent ID = 10
+* G4Track Information: Particle = O16, Track ID = 12, Parent ID = 10
*********************************************************************************************************
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
- 0 -57.9 38.2 69.1 0.249 0 0 0 Shape2 initStep
- 1 -57.9 38.2 69.1 0 0.249 0.000444 0.000444 Shape2 ionIoni
-
-*********************************************************************************************************
-* G4Track Information: Particle = proton, Track ID = 19, Parent ID = 10
-*********************************************************************************************************
-
-Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
- 0 -58.6 44.6 66.9 7.9 0 0 0 Shape2 initStep
- 1 -58.4 44.7 67.1 5.33 2.57 0.239 0.239 Shape2 hIoni
- 2 -58.3 44.8 67.2 2.5 2.83 0.175 0.414 Shape2 hIoni
- 3 -58.2 44.8 67.2 0 2.5 0.0656 0.48 Shape2 hIoni
+ 0 -95.5 92.6 98.5 0.301 0 0 0 Envelope initStep
+ 1 -95.5 92.6 98.5 0 0.301 0.00138 0.00138 Envelope ionIoni
*********************************************************************************************************
* G4Track Information: Particle = proton, Track ID = 9, Parent ID = 1
@@ -1225,136 +1102,26 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 -69.8 48 56.2 68 0 0 0 Envelope initStep
- 1 -63.8 48.6 61.4 59.8 8.15 7.94 7.94 Envelope hIoni
- 2 -63.7 48.6 61.5 0 0.191 0.17 8.11 Envelope protonInelastic
- :----- List of 2ndaries - #SpawnInStep= 6(Rest= 0,Along= 0,Post= 6), #SpawnTotal= 6 ---------------
- : -63.7 48.6 61.5 1.44 neutron
- : -63.7 48.6 61.5 1.35 proton
- : -63.7 48.6 61.5 2.53 proton
- : -63.7 48.6 61.5 10.9 Li6
- : -63.7 48.6 61.5 1.88 alpha
- : -63.7 48.6 61.5 2.49 alpha
- :----------------------------------------------------------------- EndOf2ndaries Info ---------------
-
-*********************************************************************************************************
-* G4Track Information: Particle = alpha, Track ID = 27, Parent ID = 9
-*********************************************************************************************************
-
-Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
- 0 -63.7 48.6 61.5 2.49 0 0 0 Envelope initStep
- 1 -63.7 48.6 61.5 0 2.49 0.0122 0.0122 Envelope ionIoni
-
-*********************************************************************************************************
-* G4Track Information: Particle = alpha, Track ID = 26, Parent ID = 9
-*********************************************************************************************************
-
-Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
- 0 -63.7 48.6 61.5 1.88 0 0 0 Envelope initStep
- 1 -63.7 48.6 61.5 0 1.88 0.00851 0.00851 Envelope ionIoni
-
-*********************************************************************************************************
-* G4Track Information: Particle = Li6, Track ID = 25, Parent ID = 9
-*********************************************************************************************************
-
-Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
- 0 -63.7 48.6 61.5 10.9 0 0 0 Envelope initStep
- 1 -63.6 48.7 61.5 0 10.9 0.0433 0.0433 Envelope ionIoni
-
-*********************************************************************************************************
-* G4Track Information: Particle = proton, Track ID = 24, Parent ID = 9
-*********************************************************************************************************
-
-Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
- 0 -63.7 48.6 61.5 2.53 0 0 0 Envelope initStep
- 1 -63.7 48.8 61.5 0.0246 2.51 0.111 0.111 Envelope hIoni
- 2 -63.7 48.8 61.5 0 0.0246 0.000743 0.112 Envelope hIoni
-
-*********************************************************************************************************
-* G4Track Information: Particle = proton, Track ID = 23, Parent ID = 9
-*********************************************************************************************************
-
-Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
- 0 -63.7 48.6 61.5 1.35 0 0 0 Envelope initStep
- 1 -63.7 48.7 61.5 0 1.35 0.0396 0.0396 Envelope hIoni
-
-*********************************************************************************************************
-* G4Track Information: Particle = neutron, Track ID = 22, Parent ID = 9
-*********************************************************************************************************
-
-Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
- 0 -63.7 48.6 61.5 1.44 0 0 0 Envelope initStep
- 1 -93 33.2 68.9 1.42 0.0241 34 34 Envelope hadElastic
- 2 -95.1 29.8 69.9 1.2 0 4.12 38.1 Envelope hadElastic
- :----- List of 2ndaries - #SpawnInStep= 1(Rest= 0,Along= 0,Post= 1), #SpawnTotal= 1 ---------------
- : -95.1 29.8 69.9 0.22 O16
- :----------------------------------------------------------------- EndOf2ndaries Info ---------------
- 3 -95.9 34 74.3 0.589 0 6.14 44.2 Envelope hadElastic
- :----- List of 2ndaries - #SpawnInStep= 1(Rest= 0,Along= 0,Post= 1), #SpawnTotal= 2 ---------------
- : -95.9 34 74.3 0.607 proton
- :----------------------------------------------------------------- EndOf2ndaries Info ---------------
- 4 -89.5 36 90.4 0.579 0.0101 17.5 61.7 Envelope hadElastic
- 5 -65.2 40.4 109 0.206 0 31.1 92.8 Envelope hadElastic
- :----- List of 2ndaries - #SpawnInStep= 1(Rest= 0,Along= 0,Post= 1), #SpawnTotal= 3 ---------------
- : -65.2 40.4 109 0.373 proton
- :----------------------------------------------------------------- EndOf2ndaries Info ---------------
- 6 -52.3 34.4 108 0.184 0.0213 14.3 107 Envelope hadElastic
- 7 -48.5 33.7 107 0.0434 0 3.97 111 Envelope hadElastic
- :----- List of 2ndaries - #SpawnInStep= 1(Rest= 0,Along= 0,Post= 1), #SpawnTotal= 4 ---------------
- : -48.5 33.7 107 0.141 proton
- :----------------------------------------------------------------- EndOf2ndaries Info ---------------
- 8 -48.2 34.2 107 0.00283 0.0406 0.793 112 Envelope hadElastic
- 9 -48.8 34 105 0.000586 0.00224 1.77 114 Envelope hadElastic
- 10 -45.9 32.6 102 0.000313 0.000273 4.6 118 Envelope hadElastic
- 11 -45.8 30.8 100 0.000313 0 2.41 121 Shape2 Transportation
- 12 -45.3 23 92.6 0.000278 3.54e-05 10.8 131 Shape2 hadElastic
- 13 -46 21.3 91 7.49e-06 0.00027 2.41 134 Shape2 hadElastic
- 14 -41.7 18.8 90.5 4.1e-06 3.4e-06 4.97 139 Shape2 hadElastic
- 15 -40.1 15.8 92.1 3.56e-06 5.37e-07 3.79 143 Shape2 hadElastic
- 16 -37.7 13.8 93.3 1.02e-06 2.54e-06 3.3 146 Shape2 hadElastic
- 17 -33.5 15.2 93.6 4.34e-07 5.88e-07 4.43 150 Shape2 hadElastic
- 18 -28.1 20.4 87.5 3.49e-07 8.52e-08 9.67 160 Shape2 hadElastic
- 19 -26.3 28 77.1 1.28e-07 2.21e-07 13.1 173 Shape2 hadElastic
- 20 -22.1 31.3 76.1 3.79e-09 1.24e-07 5.4 178 Shape2 hadElastic
- 21 -22.7 32.2 75.8 3.19e-09 6.08e-10 1.08 180 Shape2 hadElastic
- 22 -23 32.5 75.7 3.04e-09 1.41e-10 0.501 180 Shape2 hadElastic
- 23 -25.2 33.6 75.3 1.81e-09 1.23e-09 2.4 182 Shape2 hadElastic
- 24 -26.8 36.7 75.6 6.11e-10 1.2e-09 3.57 186 Shape2 hadElastic
- 25 -26.8 36.7 75.6 6.11e-10 0 0 186 Shape2 nKiller
-
-*********************************************************************************************************
-* G4Track Information: Particle = proton, Track ID = 31, Parent ID = 22
-*********************************************************************************************************
-
-Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
- 0 -48.5 33.7 107 0.141 0 0 0 Envelope initStep
- 1 -48.5 33.7 107 0.0437 0.0974 0.00225 0.00225 Envelope hIoni
- 2 -48.5 33.7 107 0 0.0437 0.00102 0.00327 Envelope hIoni
-
-*********************************************************************************************************
-* G4Track Information: Particle = proton, Track ID = 30, Parent ID = 22
-*********************************************************************************************************
-
-Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
- 0 -65.2 40.4 109 0.373 0 0 0 Envelope initStep
- 1 -65.2 40.4 109 0 0.373 0.00616 0.00616 Envelope hIoni
-
-*********************************************************************************************************
-* G4Track Information: Particle = proton, Track ID = 29, Parent ID = 22
-*********************************************************************************************************
-
-Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
- 0 -95.9 34 74.3 0.607 0 0 0 Envelope initStep
- 1 -95.9 34 74.3 0.193 0.413 0.0117 0.0117 Envelope hIoni
- 2 -95.9 34 74.3 0.0615 0.132 0.00298 0.0147 Envelope hIoni
- 3 -95.9 34 74.3 0 0.0615 0.00125 0.016 Envelope hIoni
-
-*********************************************************************************************************
-* G4Track Information: Particle = O16, Track ID = 28, Parent ID = 22
-*********************************************************************************************************
-
-Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
- 0 -95.1 29.8 69.9 0.22 0 0 0 Envelope initStep
- 1 -95.1 29.8 69.9 0 0.22 0.0012 0.0012 Envelope ionIoni
+ 1 -74.6 51.8 61.3 59.3 8.67 7.94 7.94 Envelope hIoni
+ 2 -78.4 54.8 65.3 51.9 7.36 6.25 14.2 Envelope hIoni
+ 3 -81.4 57.3 68.4 45.6 6.37 4.96 19.1 Envelope hIoni
+ 4 -83.7 59.3 70.9 39.8 5.78 3.95 23.1 Envelope hIoni
+ 5 -85.6 60.9 72.8 34.9 4.87 3.12 26.2 Envelope hIoni
+ 6 -87 62.2 74.4 30.6 4.3 2.5 28.7 Envelope hIoni
+ 7 -88.1 63.2 75.6 26.6 4.03 2.01 30.7 Envelope hIoni
+ 8 -89.1 64.1 76.6 23.2 3.39 1.59 32.3 Envelope hIoni
+ 9 -89.8 64.7 77.5 19.9 3.27 1.28 33.6 Envelope hIoni
+ 10 -90.3 65.2 78.1 17.2 2.74 1.01 34.6 Envelope hIoni
+ 11 -90.8 65.7 78.6 14.8 2.38 0.81 35.4 Envelope hIoni
+ 12 -91.2 66 79.1 12.6 2.24 0.656 36.1 Envelope hIoni
+ 13 -91.5 66.3 79.4 10.5 2.12 0.528 36.6 Envelope hIoni
+ 14 -91.7 66.5 79.6 8.43 2.03 0.422 37 Envelope hIoni
+ 15 -91.9 66.7 79.8 6.46 1.96 0.334 37.4 Envelope hIoni
+ 16 -92.1 66.8 80 4.6 1.86 0.26 37.6 Envelope hIoni
+ 17 -92.2 66.9 80.1 2.56 2.04 0.198 37.8 Envelope hIoni
+ 18 -92.3 67 80.2 0.0351 2.53 0.113 37.9 Envelope hIoni
+ 19 -92.3 67 80.2 0.0229 0.0122 0.000903 37.9 Envelope hIoni
+ 20 -92.3 67 80.2 0 0.0229 0.000702 37.9 Envelope hIoni
*********************************************************************************************************
* G4Track Information: Particle = e-, Track ID = 8, Parent ID = 1
@@ -1378,7 +1145,8 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 -69.8 48.4 -53.3 0.384 0 0 0 Envelope initStep
- 1 -69.7 48.4 -52.6 0 0.384 1.19 1.19 Envelope eIoni
+ 1 -69.7 48.4 -52.6 0.0821 0.302 1.19 1.19 Envelope eIoni
+ 2 -69.7 48.4 -52.5 0 0.0821 0.103 1.29 Envelope eIoni
*********************************************************************************************************
* G4Track Information: Particle = e-, Track ID = 5, Parent ID = 1
@@ -1386,8 +1154,8 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 -70 48.2 -112 0.355 0 0 0 Envelope initStep
- 1 -70.2 48.3 -112 0.0537 0.302 1.09 1.09 Envelope eIoni
- 2 -70.2 48.2 -112 0 0.0537 0.0492 1.13 Envelope eIoni
+ 1 -70.2 48.3 -112 0.0234 0.332 1.09 1.09 Envelope eIoni
+ 2 -70.2 48.2 -112 0 0.0234 0.0115 1.1 Envelope eIoni
*********************************************************************************************************
* G4Track Information: Particle = e-, Track ID = 4, Parent ID = 1
@@ -1403,8 +1171,8 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 -70 47.9 -146 0.339 0 0 0 Envelope initStep
- 1 -70.2 47.8 -145 0.0371 0.302 1.02 1.02 Envelope eIoni
- 2 -70.2 47.8 -145 0 0.0371 0.0257 1.04 Envelope eIoni
+ 1 -70.2 47.8 -145 0.0791 0.26 1.02 1.02 Envelope eIoni
+ 2 -70.2 47.8 -145 0 0.0791 0.0965 1.11 Envelope eIoni
*********************************************************************************************************
* G4Track Information: Particle = e-, Track ID = 2, Parent ID = 1
@@ -1412,16 +1180,15 @@ Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolu
Step# X(mm) Y(mm) Z(mm) KinE(MeV) dE(MeV) StepLeng TrackLeng NextVolume ProcName
0 -70 47.9 -148 0.388 0 0 0 Envelope initStep
- 1 -69.9 48.2 -148 0.0999 0.288 1.2 1.2 Envelope eIoni
- 2 -69.9 48.2 -148 0 0.0999 0.144 1.35 Envelope eIoni
+ 1 -69.9 48.2 -148 0 0.388 1.2 1.2 Envelope eIoni
Run terminated.
Run Summary
Number of events processed : 1
- User=0.010000s Real=0.008758s Sys=0.000000s
+ User=0.010000s Real=0.005335s Sys=0.000000s
--------------------End of Global Run-----------------------
The run consists of 1 proton of 210 MeV
- Dose in scoring volume : 0.9593189792698517 picoGy +- 0 picoGy
+ Dose in scoring volume : 0 picoGy +- 0 picoGy
------------------------------------------------------------
Graphics systems deleted.
@@ -1440,17 +1207,17 @@ Total navigation history collections cleaned: 7
================== Deleting memory pools ===================
Pool ID '20G4NavigationLevelRep', size : 0.00769 MB
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
-Pool ID '17G4DynamicParticle', size : 0.00288 MB
+Pool ID '17G4DynamicParticle', size : 0.00192 MB
Pool ID '7G4Event', size : 0.000961 MB
Pool ID '15G4PrimaryVertex', size : 0.000961 MB
Pool ID '17G4PrimaryParticle', size : 0.000961 MB
-Pool ID '7G4Track', size : 0.00577 MB
+Pool ID '7G4Track', size : 0.00385 MB
Pool ID '18G4TouchableHistory', size : 0.000961 MB
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
Pool ID '10G4Fragment', size : 0.000961 MB
Pool ID '17G4ReactionProduct', size : 0.000961 MB
Number of memory pools allocated: 11 of which, static: 0
-Dynamic pools deleted: 11 / Total memory freed: 0.024 MB
+Dynamic pools deleted: 11 / Total memory freed: 0.021 MB
============================================================
G4Allocator objects are deleted.
UImanager deleted.
diff --git a/examples/extended/visualization/userVisAction/run2.out b/examples/extended/visualization/userVisAction/run2.out
index 3d1fc77d387..41665013697 100644
--- a/examples/extended/visualization/userVisAction/run2.out
+++ b/examples/extended/visualization/userVisAction/run2.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -27,12 +23,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -76,371 +70,371 @@ Checking overlaps for volume Shape2 ... OK!
/run/printProgress 100
/run/beamOn 1000
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -496,6 +490,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -600,6 +595,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -734,6 +730,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -817,7 +814,7 @@ G4GeometryManager::ReportVoxelStats -- Voxel Statistics
Run terminated.
Run Summary
Number of events processed : 1000
- User=0.040000s Real=0.069116s Sys=0.000000s
+ User=0.040000s Real=0.037179s Sys=0.000000s
--------------------End of Global Run-----------------------
The run consists of 1000 gamma of 6 MeV
@@ -892,11 +889,11 @@ Index : 3 used in the geometry : Yes
Run terminated.
Run Summary
Number of events processed : 1000
- User=0.290000s Real=0.493672s Sys=0.000000s
+ User=0.290000s Real=0.313696s Sys=0.010000s
--------------------End of Global Run-----------------------
The run consists of 1000 proton of 210 MeV
- Dose in scoring volume : 5.04375 nanoGy +- 145.273 picoGy
+ Dose in scoring volume : 5.25356 nanoGy +- 146.949 picoGy
------------------------------------------------------------
Graphics systems deleted.
@@ -915,17 +912,17 @@ Total navigation history collections cleaned: 11
================== Deleting memory pools ===================
Pool ID '20G4NavigationLevelRep', size : 0.0154 MB
Pool ID '24G4ReferenceCountedHandleIvE', size : 0.000961 MB
-Pool ID '17G4DynamicParticle', size : 0.00385 MB
+Pool ID '17G4DynamicParticle', size : 0.00769 MB
Pool ID '7G4Event', size : 0.000961 MB
Pool ID '15G4PrimaryVertex', size : 0.000961 MB
Pool ID '17G4PrimaryParticle', size : 0.000961 MB
-Pool ID '7G4Track', size : 0.00769 MB
+Pool ID '7G4Track', size : 0.0144 MB
Pool ID '18G4TouchableHistory', size : 0.000961 MB
Pool ID '15G4CountedObjectIvE', size : 0.000961 MB
-Pool ID '10G4Fragment', size : 0.00192 MB
+Pool ID '10G4Fragment', size : 0.000961 MB
Pool ID '17G4ReactionProduct', size : 0.00192 MB
Number of memory pools allocated: 11 of which, static: 0
-Dynamic pools deleted: 11 / Total memory freed: 0.037 MB
+Dynamic pools deleted: 11 / Total memory freed: 0.046 MB
============================================================
G4Allocator objects are deleted.
UImanager deleted.
diff --git a/examples/extended/visualization/userVisAction/userVisAction.out b/examples/extended/visualization/userVisAction/userVisAction.out
index d665f0f3272..cc5caeb503d 100644
--- a/examples/extended/visualization/userVisAction/userVisAction.out
+++ b/examples/extended/visualization/userVisAction/userVisAction.out
@@ -1,10 +1,6 @@
- ############################################
- !!! WARNING - FPE detection is activated !!!
- ############################################
-
**************************************************************
- Geant4 version Name: geant4-10-05-ref-00 (7-December-2018)
+ Geant4 version Name: geant4-10-05-patch-01 (17-April-2019)
Copyright : Geant4 Collaboration
References : NIM A 506 (2003), 250-303
: IEEE-TNS 53 (2006), 270-278
@@ -27,12 +23,10 @@ RayTracer (RayTracer)
VRML1FILE (VRML1FILE)
VRML2FILE (VRML2FILE)
gMocrenFile (gMocrenFile)
-OpenGLImmediateQt (OGLIQt, OGLI)
-OpenGLStoredQt (OGLSQt, OGL, OGLS)
-OpenGLImmediateXm (OGLIXm, OGLIQt_FALLBACK)
-OpenGLStoredXm (OGLSXm, OGLSQt_FALLBACK)
-OpenGLImmediateX (OGLIX, OGLIQt_FALLBACK, OGLIXm_FALLBACK)
-OpenGLStoredX (OGLSX, OGLSQt_FALLBACK, OGLSXm_FALLBACK)
+OpenGLImmediateXm (OGLIXm, OGLI)
+OpenGLStoredXm (OGLSXm, OGL, OGLS)
+OpenGLImmediateX (OGLIX, OGLIXm_FALLBACK)
+OpenGLStoredX (OGLSX, OGLSXm_FALLBACK)
RayTracerX (RayTracerX)
Registering model factories...
@@ -66,371 +60,371 @@ Checking overlaps for volume Shape1 ... OK!
Checking overlaps for volume Shape2 ... OK!
### Adding tracking cuts for neutron TimeCut(ns)= 10000 KinEnergyCut(MeV)= 0
-phot: for gamma SubType= 12 BuildTable= 0
+phot: for gamma SubType=12 BuildTable=0
LambdaPrime table from 200 keV to 100 TeV in 61 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermorePhElectric : Emin= 0 eV Emax= 100 TeV AngularGenSauterGavrila FluoActive
+ LivermorePhElectric : Emin= 0 eV Emax= 100 TeV SauterGavrila Fluo
-compt: for gamma SubType= 13 BuildTable= 1
- Lambda table from 100 eV to 1 MeV, 7 bins per decade, spline: 1
+compt: for gamma SubType=13 BuildTable=1
+ Lambda table from 100 eV to 1 MeV, 7 bins/decade, spline: 1
LambdaPrime table from 1 MeV to 100 TeV in 56 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Klein-Nishina : Emin= 0 eV Emax= 100 TeV
+ Klein-Nishina : Emin= 0 eV Emax= 100 TeV
-conv: for gamma SubType= 14 BuildTable= 1
- Lambda table from 1.022 MeV to 100 TeV, 18 bins per decade, spline: 1
+conv: for gamma SubType=14 BuildTable=1
+ Lambda table from 1.022 MeV to 100 TeV, 18 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BetheHeitler : Emin= 0 eV Emax= 80 GeV AngularGenUrban
- BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV AngularGenUrban
+ BetheHeitler : Emin= 0 eV Emax= 80 GeV ModifiedTsai
+ BetheHeitlerLPM : Emin= 80 GeV Emax= 100 TeV ModifiedTsai
-Rayl: for gamma SubType= 11 BuildTable= 1
- Lambda table from 100 eV to 100 keV, 7 bins per decade, spline: 0
+Rayl: for gamma SubType=11 BuildTable=1
+ Lambda table from 100 eV to 100 keV, 7 bins/decade, spline: 0
LambdaPrime table from 100 keV to 100 TeV in 63 bins
===== EM models for the G4Region DefaultRegionForTheWorld ======
- LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
+ LivermoreRayleigh : Emin= 0 eV Emax= 100 TeV CullenGenerator
-msc: for e- SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e- SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e- SubType= 2
+eIoni: for e- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e- SubType= 3
+eBrem: for e- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-CoulombScat: for e-, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e-, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for e+ SubType= 10
- RangeFactor= 0.04, stepLimitType: 1, latDisplacement: 1
+msc: for e+ SubType= 10
+ RangeFactor= 0.04, stepLimType: 1, latDisp: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 MeV Table with 42 bins Emin= 100 eV Emax= 100 MeV
- WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Table with 42 bins Emin= 100 MeV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 MeV Nbins=42 100 eV - 100 MeV
+ WentzelVIUni : Emin= 100 MeV Emax= 100 TeV Nbins=42 100 MeV - 100 TeV
-eIoni: for e+ SubType= 2
+eIoni: for e+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MollerBhabha : Emin= 0 eV Emax= 100 TeV
+ MollerBhabha : Emin= 0 eV Emax= 100 TeV
-eBrem: for e+ SubType= 3
+eBrem: for e+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
LPM flag: 1 for E > 1 GeV, VertexHighEnergyTh(GeV)= 100000
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eBremSB : Emin= 0 eV Emax= 1 GeV AngularGenUrban
- eBremLPM : Emin= 1 GeV Emax= 100 TeV AngularGenUrban
+ eBremSB : Emin= 0 eV Emax= 1 GeV ModifiedTsai
+ eBremLPM : Emin= 1 GeV Emax= 100 TeV ModifiedTsai
-annihil: for e+, integral: 1 SubType= 5 BuildTable= 0
+annihil: for e+, integral:1 SubType=5 BuildTable=0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eplus2gg : Emin= 0 eV Emax= 100 TeV
+ eplus2gg : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for e+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from 100 MeV to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for e+, integral:1 SubType=1 BuildTable=1
+ Lambda table from 100 MeV to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
+ eCoulombScattering : Emin= 100 MeV Emax= 100 TeV
-msc: for proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for proton SubType= 2
+hIoni: for proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for proton SubType= 3
+hBrems: for proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for proton SubType= 4
+hPairProd: for proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for GenericIon SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for GenericIon SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV
-ionIoni: for GenericIon SubType= 2
+ionIoni: for GenericIon SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
Stopping Power data for 17 ion/material pairs
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-msc: for alpha SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for alpha SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- UrbanMsc : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ UrbanMsc : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-ionIoni: for alpha SubType= 2
+ionIoni: for alpha SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.02
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.02
===== EM models for the G4Region DefaultRegionForTheWorld ======
- BraggIon : Emin= 0 eV Emax= 7.9452 MeV
- BetheBloch : Emin= 7.9452 MeV Emax= 100 TeV
+ BraggIon : Emin= 0 eV Emax=7.9452 MeV
+ BetheBloch : Emin=7.9452 MeV Emax= 100 TeV
-msc: for anti_proton SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for anti_proton SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for anti_proton SubType= 2
+hIoni: for anti_proton SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 2 MeV
- BetheBloch : Emin= 2 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 2 MeV
+ BetheBloch : Emin= 2 MeV Emax= 100 TeV
-hBrems: for anti_proton SubType= 3
+hBrems: for anti_proton SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for anti_proton SubType= 4
+hPairProd: for anti_proton SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 17x1001 from 7.50618 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for anti_proton, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for anti_proton, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon+ SubType= 2
+hIoni: for kaon+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon+ SubType= 3
+hBrems: for kaon+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon+ SubType= 4
+hPairProd: for kaon+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for kaon+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for kaon- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for kaon- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for kaon- SubType= 2
+hIoni: for kaon- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 1.05231 MeV
- BetheBloch : Emin= 1.05231 MeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=1.05231 MeV
+ BetheBloch : Emin=1.05231 MeV Emax= 100 TeV
-hBrems: for kaon- SubType= 3
+hBrems: for kaon- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for kaon- SubType= 4
+hPairProd: for kaon- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 18x1001 from 3.94942 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for kaon-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for kaon-, integral:1 SubType=1 BuildTable=1
Used Lambda table of kaon+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu+ SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu+ SubType= 2
+muIoni: for mu+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu+ SubType= 3
+muBrems: for mu+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu+ SubType= 4
+muPairProd: for mu+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for mu+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for mu- SubType= 10
- RangeFactor= 0.2, step limit type: 0, lateralDisplacement: 0, polarAngleLimit(deg)= 180
+msc: for mu- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0, polarAngLim(deg)= 180
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-muIoni: for mu- SubType= 2
+muIoni: for mu- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 200 keV
- BetheBloch : Emin= 200 keV Emax= 1 GeV
- MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax= 200 keV
+ BetheBloch : Emin= 200 keV Emax= 1 GeV
+ MuBetheBloch : Emin= 1 GeV Emax= 100 TeV
-muBrems: for mu- SubType= 3
+muBrems: for mu- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- MuBrem : Emin= 0 eV Emax= 100 TeV
+ MuBrem : Emin= 0 eV Emax= 100 TeV
-muPairProd: for mu- SubType= 4
+muPairProd: for mu- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 21x1001 from 1 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- muPairProd : Emin= 0 eV Emax= 100 TeV
+ muPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for mu-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for mu-, integral:1 SubType=1 BuildTable=1
Used Lambda table of mu+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi+ SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi+ SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi+ SubType= 2
+hIoni: for pi+ SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- Bragg : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ Bragg : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi+ SubType= 3
+hBrems: for pi+ SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi+ SubType= 4
+hPairProd: for pi+ SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi+, integral: 1 SubType= 1 BuildTable= 1
- Lambda table from threshold to 100 TeV, 7 bins per decade, spline: 1
+CoulombScat: for pi+, integral:1 SubType=1 BuildTable=1
+ Lambda table from threshold to 100 TeV, 7 bins/decade, spline: 1
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
-msc: for pi- SubType= 10
- RangeFactor= 0.2, stepLimitType: 0, latDisplacement: 0
+msc: for pi- SubType= 10
+ RangeFactor= 0.2, stepLimType: 0, latDisp: 0
===== EM models for the G4Region DefaultRegionForTheWorld ======
- WentzelVIUni : Emin= 0 eV Emax= 100 TeV Table with 84 bins Emin= 100 eV Emax= 100 TeV
+ WentzelVIUni : Emin= 0 eV Emax= 100 TeV Nbins=84 100 eV - 100 TeV
-hIoni: for pi- SubType= 2
+hIoni: for pi- SubType=2
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
- finalRange(mm)= 0.1, dRoverRange= 0.2, integral: 1, fluct: 1, linLossLimit= 0.01
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
+ StepFunction=(0.2, 0.1 mm), integ: 1, fluct: 1, linLossLim= 0.01
===== EM models for the G4Region DefaultRegionForTheWorld ======
- ICRU73QO : Emin= 0 eV Emax= 297.505 keV
- BetheBloch : Emin= 297.505 keV Emax= 100 TeV
+ ICRU73QO : Emin= 0 eV Emax=297.505 keV
+ BetheBloch : Emin=297.505 keV Emax= 100 TeV
-hBrems: for pi- SubType= 3
+hBrems: for pi- SubType=3
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hBrem : Emin= 0 eV Emax= 100 TeV
+ hBrem : Emin= 0 eV Emax= 100 TeV
-hPairProd: for pi- SubType= 4
+hPairProd: for pi- SubType=4
dE/dx and range tables from 100 eV to 100 TeV in 84 bins
- Lambda tables from threshold to 100 TeV, 7 bins per decade, spline: 1
+ Lambda tables from threshold to 100 TeV, 7 bins/decade, spline: 1
Sampling table 20x1001 from 1.11656 GeV to 100 TeV
===== EM models for the G4Region DefaultRegionForTheWorld ======
- hPairProd : Emin= 0 eV Emax= 100 TeV
+ hPairProd : Emin= 0 eV Emax= 100 TeV
-CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
+CoulombScat: for pi-, integral:1 SubType=1 BuildTable=1
Used Lambda table of pi+
ThetaMin(p) < Theta(degree) < 180 pLimit(GeV^1)= 0.139531
===== EM models for the G4Region DefaultRegionForTheWorld ======
- eCoulombScattering : Emin= 0 eV Emax= 100 TeV
+ eCoulombScattering : Emin= 0 eV Emax= 100 TeV
====================================================================
HADRONIC PROCESSES SUMMARY (verbose level 1)
@@ -486,6 +480,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: alphaInelastic
@@ -590,6 +585,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: dInelastic
@@ -724,6 +720,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
Process: hadElastic
Model: hElasticLHEP: 0 eV /n ---> 100 TeV/n
+ Cr_sctns: Glauber-Gribov Nucl-nucl: 0 eV ---> 100 TeV
Cr_sctns: GheishaElastic: 0 eV ---> 100 TeV
Process: tInelastic
@@ -763,7 +760,7 @@ CoulombScat: for pi-, integral: 1 SubType= 1 BuildTable= 1
--------------------End of Global Run-----------------------
The run consists of 1000 proton of 210 MeV
- Dose in scoring volume : 5.04375 nanoGy +- 145.273 picoGy
+ Dose in scoring volume : 5.25356 nanoGy +- 146.949 picoGy
------------------------------------------------------------
Graphics systems deleted.
diff --git a/source/GNUmakefile b/source/GNUmakefile
index e543f7d3b70..c0af5a9f88c 100644
--- a/source/GNUmakefile
+++ b/source/GNUmakefile
@@ -167,7 +167,7 @@ endif
banner:
@$(ECHO) "*************************************************************"
- @$(ECHO) " Installation Geant4 version geant4-10-05 "
+ @$(ECHO) " Installation Geant4 version geant4-10-05-patch-01 "
@$(ECHO) " Copyright (C) 1994-2019 Geant4 Collaboration "
@$(ECHO) "*************************************************************"
diff --git a/source/analysis/History b/source/analysis/History
index b520de419e4..9ad4fc961bb 100644
--- a/source/analysis/History
+++ b/source/analysis/History
@@ -16,6 +16,9 @@ committal in the SVN repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+March 11, 2019 G. Cosmo (analysis-V10-04-11)
+- Fixed typos in printouts in G4P1Messenger, G4PlotMessenger, G4PlotParameters.
+
November 28, 2018 I. Hrivnacova (analysis-V10-04-10)
- Use the same mutex in Root pntuple add_row and end_fill.
This should fix occassional failures of tests in MT mode.
diff --git a/source/analysis/management/src/G4AnalysisMessengerHelper.cc b/source/analysis/management/src/G4AnalysisMessengerHelper.cc
index 40cc18ba2fa..eac5b4b054b 100644
--- a/source/analysis/management/src/G4AnalysisMessengerHelper.cc
+++ b/source/analysis/management/src/G4AnalysisMessengerHelper.cc
@@ -63,7 +63,7 @@ G4String ObjectType(const G4String& hnType)
//_____________________________________________________________________________
void Replace(std::string& str, const std::string& from, const std::string& to) {
- // Replace all occurences of from string
+ // Replace all occurrences of from string
if (from.empty()) return;
size_t start_pos = 0;
while ((start_pos = str.find(from, start_pos)) != std::string::npos) {
diff --git a/source/analysis/management/src/G4P1Messenger.cc b/source/analysis/management/src/G4P1Messenger.cc
index 2efeb570cb6..a3ca779821e 100644
--- a/source/analysis/management/src/G4P1Messenger.cc
+++ b/source/analysis/management/src/G4P1Messenger.cc
@@ -105,7 +105,7 @@ void G4P1Messenger::CreateP1Cmd()
auto p1xValFcn0 = new G4UIparameter("xvalFcn0", 's', true);
G4String fcnxGuidance = "The function applied to filled x-values (log, log10, exp, none).\n";
fcnxGuidance += "Note that the unit parameter cannot be omitted in this case,\n";
- fcnxGuidance += "but none value should be used insted.";
+ fcnxGuidance += "but none value should be used instead.";
p1xValFcn0->SetGuidance(fcnxGuidance);
p1xValFcn0->SetParameterCandidates("log log10 exp none");
p1xValFcn0->SetDefaultValue("none");
@@ -115,7 +115,7 @@ void G4P1Messenger::CreateP1Cmd()
p1xValBinScheme0->SetParameterCandidates("linear log");
binSchemeGuidance
+= "Note that the unit and fcn parameters cannot be omitted in this case,\n";
- binSchemeGuidance += "but none value should be used insted.";
+ binSchemeGuidance += "but none value should be used instead.";
p1xValBinScheme0->SetGuidance(binSchemeGuidance);
p1xValBinScheme0->SetDefaultValue("linear");
@@ -136,7 +136,7 @@ void G4P1Messenger::CreateP1Cmd()
auto p1yValFcn0 = new G4UIparameter("yvalFcn0", 's', true);
G4String fcnyGuidance = "The function applied to filled y-values (log, log10, exp, none).\n";
fcnyGuidance += "Note that the unit parameter cannot be omitted in this case,\n";
- fcnyGuidance += "but none value should be used insted.";
+ fcnyGuidance += "but none value should be used instead.";
p1yValFcn0->SetGuidance(fcnyGuidance);
p1yValFcn0->SetParameterCandidates("log log10 exp none");
p1yValFcn0->SetDefaultValue("none");
@@ -183,7 +183,7 @@ void G4P1Messenger::SetP1Cmd()
p1xValFcn->SetParameterCandidates("log log10 exp none");
G4String fcnxGuidance = "The function applied to filled x-values (log, log10, exp, none).\n";
fcnxGuidance += "Note that the unit parameter cannot be omitted in this case,\n";
- fcnxGuidance += "but none value should be used insted.";
+ fcnxGuidance += "but none value should be used instead.";
p1xValFcn->SetGuidance(fcnxGuidance);
p1xValFcn->SetDefaultValue("none");
@@ -192,7 +192,7 @@ void G4P1Messenger::SetP1Cmd()
p1xValBinScheme->SetParameterCandidates("linear log");
binSchemeGuidance
+= "Note that the unit and fcn parameters cannot be omitted in this case,\n";
- binSchemeGuidance += "but none value should be used insted.";
+ binSchemeGuidance += "but none value should be used instead.";
p1xValBinScheme->SetGuidance(binSchemeGuidance);
p1xValBinScheme->SetDefaultValue("linear");
@@ -210,7 +210,7 @@ void G4P1Messenger::SetP1Cmd()
p1yValFcn->SetParameterCandidates("log log10 exp none");
G4String fcnyGuidance = "The function applied to filled y-values (log, log10, exp, none).\n";
fcnyGuidance += "Note that the unit parameter cannot be omitted in this case,\n";
- fcnyGuidance += "but none value should be used insted.";
+ fcnyGuidance += "but none value should be used instead.";
p1yValFcn->SetGuidance(fcnyGuidance);
p1yValFcn->SetDefaultValue("none");
diff --git a/source/analysis/management/src/G4PlotMessenger.cc b/source/analysis/management/src/G4PlotMessenger.cc
index fbe400c3ef5..a27a8911622 100644
--- a/source/analysis/management/src/G4PlotMessenger.cc
+++ b/source/analysis/management/src/G4PlotMessenger.cc
@@ -112,11 +112,11 @@ void G4PlotMessenger::SetLayoutCmd()
fSetLayoutCmd = G4Analysis::make_unique("/analysis/plot/setLayout", this);
// Guidance text:
// Set page layout (number of columns and rows per page).
- // Suported layouts:
+ // Supported layouts:
// columns = 1 .. maxValueAllowed
// rows = 1 .. maxValueAllowed, and >= columns
fSetLayoutCmd->SetGuidance("Set page layout (number of columns and rows per page).");
- fSetLayoutCmd->SetGuidance(" Suported layouts: ");
+ fSetLayoutCmd->SetGuidance(" Supported layouts: ");
G4String guidance = " columns = 1 .. ";
guidance.append(osMaxColumns.str());
fSetLayoutCmd->SetGuidance(guidance);
diff --git a/source/analysis/management/src/G4PlotParameters.cc b/source/analysis/management/src/G4PlotParameters.cc
index e819c504e27..19ab92a855a 100644
--- a/source/analysis/management/src/G4PlotParameters.cc
+++ b/source/analysis/management/src/G4PlotParameters.cc
@@ -77,7 +77,7 @@ void G4PlotParameters::SetLayout(G4int columns, G4int rows)
G4ExceptionDescription description;
description
<< "Layout: " << columns << " x " << rows << " was ignored." << G4endl
- << "Suported layouts: " << G4endl
+ << "Supported layouts: " << G4endl
<< " columns <= rows" << G4endl
<< " columns = 1 .. " << fMaxColumns << G4endl
<< " rows = 1 .. " << fMaxRows << G4endl;
diff --git a/source/digits_hits/History b/source/digits_hits/History
index e6d45c0ba1b..8c10ee2f526 100644
--- a/source/digits_hits/History
+++ b/source/digits_hits/History
@@ -16,6 +16,20 @@ committal in the CVS repository !
* Reverse chronological order (last date on top), please *
----------------------------------------------------------
+March 13th, 2019 M. Asai (digits_hits-V10-04-13)
+- Defining unit categories for UI commands that take units. Co-working with
+ intercoms-V10-05-02.
+
+March 10th, 2019 M. Asai
+- G4SDManager, G4VSDFilter :
+ Cleanly deleting all the G4VSDFilter objects at the end of program.
+
+January 31st, 2019 I. Hrivnacova
+- Merged GitHub PR #4: all Boolean operators now return G4bool.
+
+December 20th, 2018 G. Cosmo
+- Fixed shadowing compilation warning in G4ScoringBox and G4ScoringCylinder.
+
October 30th, 2018 I. Hrivnacova (digits_hits-V10-04-11,12)
- Removed the dependence on analysis:
Introduced a new interface class, G4VScoreNtupleWriter, in
diff --git a/source/digits_hits/detector/include/G4SDManager.hh b/source/digits_hits/detector/include/G4SDManager.hh
index a249ab45b19..e097f909d01 100644
--- a/source/digits_hits/detector/include/G4SDManager.hh
+++ b/source/digits_hits/detector/include/G4SDManager.hh
@@ -37,6 +37,9 @@ class G4VSensitiveDetector;
class G4HCofThisEvent;
class G4SDmessenger;
+#include "G4VSDFilter.hh"
+#include
+
// class description:
//
// This is a singleton class which manages the sensitive detectors.
@@ -104,6 +107,12 @@ private:
G4SDManager( const G4SDManager& );
G4SDManager& operator=(const G4SDManager&);
+public:
+ void RegisterSDFilter(G4VSDFilter* filter);
+ void DeRegisterSDFilter(G4VSDFilter* filter);
+private:
+ void DestroyFilters();
+ std::vector FilterList;
};
diff --git a/source/digits_hits/detector/include/G4SDStructure.hh b/source/digits_hits/detector/include/G4SDStructure.hh
index b41cc206b7d..2127e801907 100644
--- a/source/digits_hits/detector/include/G4SDStructure.hh
+++ b/source/digits_hits/detector/include/G4SDStructure.hh
@@ -49,7 +49,7 @@ class G4SDStructure
G4SDStructure(G4String aPath);
~G4SDStructure();
- G4int operator==(const G4SDStructure &right) const;
+ G4bool operator==(const G4SDStructure &right) const;
void AddNewDetector(G4VSensitiveDetector*aSD, G4String treeStructure);
void Activate(G4String aName, G4bool sensitiveFlag);
diff --git a/source/digits_hits/detector/include/G4SensitiveVolumeList.hh b/source/digits_hits/detector/include/G4SensitiveVolumeList.hh
index cb68aa88f14..54af5214d3b 100644
--- a/source/digits_hits/detector/include/G4SensitiveVolumeList.hh
+++ b/source/digits_hits/detector/include/G4SensitiveVolumeList.hh
@@ -67,8 +67,8 @@ class G4SensitiveVolumeList
);
//Equality Operations
- G4int operator==(const G4SensitiveVolumeList &right) const;
- G4int operator!=(const G4SensitiveVolumeList &right) const;
+ G4bool operator==(const G4SensitiveVolumeList &right) const;
+ G4bool operator!=(const G4SensitiveVolumeList &right) const;
//Other Operations
diff --git a/source/digits_hits/detector/include/G4VReadOutGeometry.hh b/source/digits_hits/detector/include/G4VReadOutGeometry.hh
index 23f9c362134..60e0ecf3456 100644
--- a/source/digits_hits/detector/include/G4VReadOutGeometry.hh
+++ b/source/digits_hits/detector/include/G4VReadOutGeometry.hh
@@ -46,8 +46,8 @@ class G4VReadOutGeometry
G4VReadOutGeometry(G4String);
virtual ~G4VReadOutGeometry();
- G4int operator==(const G4VReadOutGeometry &right) const;
- G4int operator!=(const G4VReadOutGeometry &right) const;
+ G4bool operator==(const G4VReadOutGeometry &right) const;
+ G4bool operator!=(const G4VReadOutGeometry &right) const;
// buildROGeomety must be invoked to Build (ie Build() method)
// the ROGeometry. It sets up in addition the needed
diff --git a/source/digits_hits/detector/include/G4VSDFilter.hh b/source/digits_hits/detector/include/G4VSDFilter.hh
index 8584d05c9f8..513a9df2a37 100644
--- a/source/digits_hits/detector/include/G4VSDFilter.hh
+++ b/source/digits_hits/detector/include/G4VSDFilter.hh
@@ -35,7 +35,7 @@ class G4Step;
// class description:
//
// This is the abstract base class of a filter to be associated with a
-// sensitive detector.
+// sensitive detector or a primitive scorer.
class G4VSDFilter
{
diff --git a/source/digits_hits/detector/include/G4VSensitiveDetector.hh b/source/digits_hits/detector/include/G4VSensitiveDetector.hh
index 1bf4ee8fa1b..a2aca37fbbc 100644
--- a/source/digits_hits/detector/include/G4VSensitiveDetector.hh
+++ b/source/digits_hits/detector/include/G4VSensitiveDetector.hh
@@ -61,8 +61,8 @@ class G4VSensitiveDetector
G4VSensitiveDetector & operator=(const G4VSensitiveDetector &right);
- G4int operator==(const G4VSensitiveDetector &right) const;
- G4int operator!=(const G4VSensitiveDetector &right) const;
+ G4bool operator==(const G4VSensitiveDetector &right) const;
+ G4bool operator!=(const G4VSensitiveDetector &right) const;
public: // with description
virtual void Initialize(G4HCofThisEvent*);
diff --git a/source/digits_hits/detector/src/G4SDManager.cc b/source/digits_hits/detector/src/G4SDManager.cc
index d0d02653ed5..030cfc7b370 100644
--- a/source/digits_hits/detector/src/G4SDManager.cc
+++ b/source/digits_hits/detector/src/G4SDManager.cc
@@ -61,6 +61,7 @@ G4SDManager::~G4SDManager()
delete theMessenger;
delete HCtable;
delete treeTop;
+ DestroyFilters();
theMessenger = nullptr;
HCtable = nullptr;
treeTop = nullptr;
@@ -149,4 +150,32 @@ G4int G4SDManager::GetCollectionID(G4VHitsCollection* aHC)
return GetCollectionID(HCname);
}
+void G4SDManager::RegisterSDFilter(G4VSDFilter* filter)
+{
+ FilterList.push_back(filter);
+}
+
+void G4SDManager::DeRegisterSDFilter(G4VSDFilter* filter)
+{
+ for(auto f = FilterList.begin(); f != FilterList.end(); f++)
+ {
+ if(*f == filter)
+ {
+ FilterList.erase(f);
+ break;
+ }
+ }
+}
+
+void G4SDManager::DestroyFilters()
+{
+ auto f = FilterList.begin();
+ while( f != FilterList.end() )
+ {
+ if(verboseLevel>0) G4cout << "### deleting " << (*f)->GetName() << " " << (*f) << G4endl;
+ delete *f;
+ f = FilterList.begin();
+ }
+ FilterList.clear();
+}
diff --git a/source/digits_hits/detector/src/G4SDStructure.cc b/source/digits_hits/detector/src/G4SDStructure.cc
index 9fc108128f1..59ad8eb1bdb 100644
--- a/source/digits_hits/detector/src/G4SDStructure.cc
+++ b/source/digits_hits/detector/src/G4SDStructure.cc
@@ -52,7 +52,7 @@ G4SDStructure::~G4SDStructure()
detector.clear();
}
-G4int G4SDStructure::operator==(const G4SDStructure &right) const
+G4bool G4SDStructure::operator==(const G4SDStructure &right) const
{
return (this==&right);
}
diff --git a/source/digits_hits/detector/src/G4SensitiveVolumeList.cc b/source/digits_hits/detector/src/G4SensitiveVolumeList.cc
index 5bca0bde0a7..f4460137e39 100644
--- a/source/digits_hits/detector/src/G4SensitiveVolumeList.cc
+++ b/source/digits_hits/detector/src/G4SensitiveVolumeList.cc
@@ -63,12 +63,12 @@
//Equality Operations
- G4int G4SensitiveVolumeList::operator==(const G4SensitiveVolumeList &right) const
+ G4bool G4SensitiveVolumeList::operator==(const G4SensitiveVolumeList &right) const
{
return (this == (G4SensitiveVolumeList *) &right);
}
- G4int G4SensitiveVolumeList::operator!=(const G4SensitiveVolumeList &right) const
+ G4bool G4SensitiveVolumeList::operator!=(const G4SensitiveVolumeList &right) const
{
return (this != (G4SensitiveVolumeList *) &right);
}
diff --git a/source/digits_hits/detector/src/G4VReadOutGeometry.cc b/source/digits_hits/detector/src/G4VReadOutGeometry.cc
index 23543173f83..af5f8144ec2 100644
--- a/source/digits_hits/detector/src/G4VReadOutGeometry.cc
+++ b/source/digits_hits/detector/src/G4VReadOutGeometry.cc
@@ -94,10 +94,10 @@ G4VReadOutGeometry & G4VReadOutGeometry::operator=(const G4VReadOutGeometry &rig
return *this;
}
-G4int G4VReadOutGeometry::operator==(const G4VReadOutGeometry &right) const
+G4bool G4VReadOutGeometry::operator==(const G4VReadOutGeometry &right) const
{ return (this == (G4VReadOutGeometry *) &right); }
-G4int G4VReadOutGeometry::operator!=(const G4VReadOutGeometry &right) const
+G4bool G4VReadOutGeometry::operator!=(const G4VReadOutGeometry &right) const
{ return (this != (G4VReadOutGeometry *) &right); }
void G4VReadOutGeometry::BuildROGeometry()
diff --git a/source/digits_hits/detector/src/G4VSDFilter.cc b/source/digits_hits/detector/src/G4VSDFilter.cc
index c70a9cace1a..0282ddd5560 100644
--- a/source/digits_hits/detector/src/G4VSDFilter.cc
+++ b/source/digits_hits/detector/src/G4VSDFilter.cc
@@ -27,10 +27,16 @@
//
// G4VSensitiveDetector
#include "G4VSDFilter.hh"
+#include "G4SDManager.hh"
G4VSDFilter::G4VSDFilter(G4String name)
:filterName(name)
-{;}
+{
+ G4SDManager::GetSDMpointer()->RegisterSDFilter(this);
+}
G4VSDFilter::~G4VSDFilter()
-{;}
+{
+ G4SDManager::GetSDMpointer()->DeRegisterSDFilter(this);
+}
+
diff --git a/source/digits_hits/detector/src/G4VSensitiveDetector.cc b/source/digits_hits/detector/src/G4VSensitiveDetector.cc
index 09746e0a542..15d48f73d1a 100644
--- a/source/digits_hits/detector/src/G4VSensitiveDetector.cc
+++ b/source/digits_hits/detector/src/G4VSensitiveDetector.cc
@@ -88,12 +88,12 @@ G4VSensitiveDetector & G4VSensitiveDetector::operator=(const G4VSensitiveDetecto
return *this;
}
-G4int G4VSensitiveDetector::operator==(const G4VSensitiveDetector &right) const
+G4bool G4VSensitiveDetector::operator==(const G4VSensitiveDetector &right) const
{
return (this==&right);
}
-G4int G4VSensitiveDetector::operator!=(const G4VSensitiveDetector &right) const
+G4bool G4VSensitiveDetector::operator!=(const G4VSensitiveDetector &right) const
{
return (this!=&right);
}
diff --git a/source/digits_hits/digits/include/G4TDigiCollection.hh b/source/digits_hits/digits/include/G4TDigiCollection.hh
index 89987fbc804..6cb51d3065e 100644
--- a/source/digits_hits/digits/include/G4TDigiCollection.hh
+++ b/source/digits_hits/digits/include/G4TDigiCollection.hh
@@ -50,7 +50,7 @@ class G4DigiCollection : public G4VDigiCollection
G4DigiCollection();
G4DigiCollection(G4String detName,G4String colNam);
virtual ~G4DigiCollection();
- G4int operator==(const G4DigiCollection &right) const;
+ G4bool operator==(const G4DigiCollection &right) const;
protected:
void* theCollection;
@@ -71,7 +71,7 @@ template class G4TDigiCollection : public G4DigiCollection
// Constructor.
public:
virtual ~G4TDigiCollection();
- G4int operator==(const G4TDigiCollection &right) const;
+ G4bool operator==(const G4TDigiCollection &right) const;
inline void *operator new(size_t);
inline void operator delete(void* aDC);
@@ -170,7 +170,7 @@ template G4TDigiCollection::~G4TDigiCollection()
delete theDigiCollection;
}
-template G4int G4TDigiCollection::operator==(const G4TDigiCollection &right) const
+template G4bool G4TDigiCollection::operator==(const G4TDigiCollection &right) const
{
if (!aDCAllocator_G4MT_TLS_()) aDCAllocator_G4MT_TLS_() = new G4Allocator;
return (collectionName==right.collectionName);
diff --git a/source/digits_hits/digits/include/G4VDigi.hh b/source/digits_hits/digits/include/G4VDigi.hh
index bfe89deebc2..976a8639f36 100644
--- a/source/digits_hits/digits/include/G4VDigi.hh
+++ b/source/digits_hits/digits/include/G4VDigi.hh
@@ -51,7 +51,7 @@ class G4VDigi
G4VDigi();
virtual ~G4VDigi();
- G4int operator==(const G4VDigi &right) const;
+ G4bool operator==(const G4VDigi &right) const;
virtual void Draw();
virtual void Print();
diff --git a/source/digits_hits/digits/include/G4VDigiCollection.hh b/source/digits_hits/digits/include/G4VDigiCollection.hh
index 2b20a11543c..18e8cbd1f71 100644
--- a/source/digits_hits/digits/include/G4VDigiCollection.hh
+++ b/source/digits_hits/digits/include/G4VDigiCollection.hh
@@ -47,7 +47,7 @@ class G4VDigiCollection
G4VDigiCollection();
G4VDigiCollection(G4String DMnam,G4String colNam);
virtual ~G4VDigiCollection();
- G4int operator==(const G4VDigiCollection &right) const;
+ G4bool operator==(const G4VDigiCollection &right) const;
virtual void DrawAllDigi();
virtual void PrintAllDigi();
diff --git a/source/digits_hits/digits/src/G4TDigiCollection.cc b/source/digits_hits/digits/src/G4TDigiCollection.cc
index 86c48a92077..c7d9ed4a173 100644
--- a/source/digits_hits/digits/src/G4TDigiCollection.cc
+++ b/source/digits_hits/digits/src/G4TDigiCollection.cc
@@ -44,6 +44,6 @@ G4DigiCollection::G4DigiCollection(G4String detName,G4String colNam)
G4DigiCollection::~G4DigiCollection()
{ if (!aDCAllocator_G4MT_TLS_()) aDCAllocator_G4MT_TLS_() = new G4Allocator ;;}
-G4int G4DigiCollection::operator==(const G4DigiCollection &right) const
+G4bool G4DigiCollection::operator==(const G4DigiCollection &right) const
{ if (!aDCAllocator_G4MT_TLS_()) aDCAllocator_G4MT_TLS_() = new G4Allocator ; return (collectionName==right.collectionName); }
diff --git a/source/digits_hits/digits/src/G4VDigi.cc b/source/digits_hits/digits/src/G4VDigi.cc
index 97315031407..3db561bd35a 100644
--- a/source/digits_hits/digits/src/G4VDigi.cc
+++ b/source/digits_hits/digits/src/G4VDigi.cc
@@ -36,7 +36,7 @@ G4VDigi::G4VDigi()
G4VDigi::~G4VDigi()
{;}
-G4int G4VDigi::operator==(const G4VDigi &right) const
+G4bool G4VDigi::operator==(const G4VDigi &right) const
{ return (this==&right); }
void G4VDigi::Draw()
diff --git a/source/digits_hits/digits/src/G4VDigiCollection.cc b/source/digits_hits/digits/src/G4VDigiCollection.cc
index f5755af1a87..9db82bee4cd 100644
--- a/source/digits_hits/digits/src/G4VDigiCollection.cc
+++ b/source/digits_hits/digits/src/G4VDigiCollection.cc
@@ -45,7 +45,7 @@ G4VDigiCollection::G4VDigiCollection(G4String DMnam,G4String colNam)
G4VDigiCollection::~G4VDigiCollection()
{ ; }
-G4int G4VDigiCollection::operator==(const G4VDigiCollection &right) const
+G4bool G4VDigiCollection::operator==(const G4VDigiCollection &right) const
{
return ((collectionName==right.collectionName)
&&(DMname==right.DMname));
diff --git a/source/digits_hits/hits/include/G4THitsCollection.hh b/source/digits_hits/hits/include/G4THitsCollection.hh
index a42c164ea20..0594d16db82 100644
--- a/source/digits_hits/hits/include/G4THitsCollection.hh
+++ b/source/digits_hits/hits/include/G4THitsCollection.hh
@@ -51,7 +51,7 @@ class G4HitsCollection : public G4VHitsCollection
G4HitsCollection();
G4HitsCollection(G4String detName,G4String colNam);
virtual ~G4HitsCollection();
- G4int operator==(const G4HitsCollection &right) const;
+ G4bool operator==(const G4HitsCollection &right) const;
protected:
void* theCollection;
@@ -72,7 +72,7 @@ template class G4THitsCollection : public G4HitsCollection
// constructor.
public:
virtual ~G4THitsCollection();
- G4int operator==(const G4THitsCollection &right) const;
+ G4bool operator==(const G4THitsCollection &right) const;
inline void *operator new(size_t);
inline void operator delete(void* anHC);
@@ -166,7 +166,7 @@ template G4THitsCollection::~G4THitsCollection()
delete theHitsCollection;
}
-template G4int G4THitsCollection::operator==(const G4THitsCollection &right) const
+template G4bool G4THitsCollection::operator==(const G4THitsCollection &right) const
{
if (!anHCAllocator_G4MT_TLS_()) anHCAllocator_G4MT_TLS_() = new G4Allocator;
return (collectionName==right.collectionName);
diff --git a/source/digits_hits/hits/include/G4THitsMap.hh b/source/digits_hits/hits/include/G4THitsMap.hh
index 0d7d20dcc42..bc06283fa35 100644
--- a/source/digits_hits/hits/include/G4THitsMap.hh
+++ b/source/digits_hits/hits/include/G4THitsMap.hh
@@ -87,7 +87,7 @@ public: // with description
// destructor
virtual ~G4VTHitsMap();
// equivalence operator
- G4int operator==(const G4VTHitsMap &right) const;
+ G4bool operator==(const G4VTHitsMap &right) const;
//------------------------------------------------------------------------//
// Generic operator += where add(...) overloads handle various
@@ -499,7 +499,7 @@ G4VTHitsMap::~G4VTHitsMap()
//============================================================================//
template
-G4int G4VTHitsMap::operator==(const G4VTHitsMap &right) const
+G4bool G4VTHitsMap::operator==(const G4VTHitsMap &right) const
{
return (collectionName==right.collectionName);
}
diff --git a/source/digits_hits/hits/include/G4THitsVector.hh b/source/digits_hits/hits/include/G4THitsVector.hh
index da365c8dae5..b2baa623886 100644
--- a/source/digits_hits/hits/include/G4THitsVector.hh
+++ b/source/digits_hits/hits/include/G4THitsVector.hh
@@ -91,7 +91,7 @@ public:
// destructor
virtual ~G4VTHitsVector();
// equivalence operator
- G4int operator==(const this_type& rhs) const;
+ G4bool operator==(const this_type& rhs) const;
virtual void DrawAllHits();
virtual void PrintAllHits();
@@ -613,7 +613,7 @@ G4VTHitsVector::~G4VTHitsVector()
//============================================================================//
template
-G4int G4VTHitsVector::operator==(const G4VTHitsVector &right) const
+G4bool G4VTHitsVector::operator==(const G4VTHitsVector &right) const
{
return (collectionName==right.collectionName);
}
diff --git a/source/digits_hits/hits/include/G4VHit.hh b/source/digits_hits/hits/include/G4VHit.hh
index 185cd3b323b..2be3bbc6c64 100644
--- a/source/digits_hits/hits/include/G4VHit.hh
+++ b/source/digits_hits/hits/include/G4VHit.hh
@@ -51,7 +51,7 @@ class G4VHit
G4VHit();
virtual ~G4VHit();
- G4int operator==(const G4VHit &right) const;
+ G4bool operator==(const G4VHit &right) const;
virtual void Draw();
virtual void Print();
diff --git a/source/digits_hits/hits/include/G4VHitsCollection.hh b/source/digits_hits/hits/include/G4VHitsCollection.hh
index d155c37aae3..9c125538c8f 100644
--- a/source/digits_hits/hits/include/G4VHitsCollection.hh
+++ b/source/digits_hits/hits/include/G4VHitsCollection.hh
@@ -47,7 +47,7 @@ class G4VHitsCollection
G4VHitsCollection();
G4VHitsCollection(G4String detName,G4String colNam);
virtual ~G4VHitsCollection();
- G4int operator==(const G4VHitsCollection &right) const;
+ G4bool operator==(const G4VHitsCollection &right) const;
virtual void DrawAllHits();
virtual void PrintAllHits();
diff --git a/source/digits_hits/hits/src/G4THitsCollection.cc b/source/digits_hits/hits/src/G4THitsCollection.cc
index d47d549256f..96f9b162d74 100644
--- a/source/digits_hits/hits/src/G4THitsCollection.cc
+++ b/source/digits_hits/hits/src/G4THitsCollection.cc
@@ -44,6 +44,6 @@ G4HitsCollection::G4HitsCollection(G4String detName,G4String colNam)
G4HitsCollection::~G4HitsCollection()
{ if (!anHCAllocator_G4MT_TLS_()) anHCAllocator_G4MT_TLS_() = new G4Allocator ;;}
-int G4HitsCollection::operator==(const G4HitsCollection &right) const
+G4bool G4HitsCollection::operator==(const G4HitsCollection &right) const
{ if (!anHCAllocator_G4MT_TLS_()) anHCAllocator_G4MT_TLS_() = new G4Allocator ; return (collectionName==right.collectionName); }
diff --git a/source/digits_hits/hits/src/G4VHit.cc b/source/digits_hits/hits/src/G4VHit.cc
index 1341cea49a6..8db31da40ac 100644
--- a/source/digits_hits/hits/src/G4VHit.cc
+++ b/source/digits_hits/hits/src/G4VHit.cc
@@ -36,7 +36,7 @@ G4VHit::G4VHit()
G4VHit::~G4VHit()
{;}
-G4int G4VHit::operator==(const G4VHit &) const
+G4bool G4VHit::operator==(const G4VHit &) const
{ return false; }
void G4VHit::Draw()
diff --git a/source/digits_hits/hits/src/G4VHitsCollection.cc b/source/digits_hits/hits/src/G4VHitsCollection.cc
index e7558741152..fb54db294e7 100644
--- a/source/digits_hits/hits/src/G4VHitsCollection.cc
+++ b/source/digits_hits/hits/src/G4VHitsCollection.cc
@@ -47,7 +47,7 @@ G4VHitsCollection::G4VHitsCollection(G4String detName,G4String colNam)
G4VHitsCollection::~G4VHitsCollection()
{ ; }
-G4int G4VHitsCollection::operator==(const G4VHitsCollection &right) const
+G4bool G4VHitsCollection::operator==(const G4VHitsCollection &right) const
{
return ((collectionName==right.collectionName)
&&(SDname==right.SDname));
diff --git a/source/digits_hits/utils/src/G4ScoreQuantityMessenger.cc b/source/digits_hits/utils/src/G4ScoreQuantityMessenger.cc
index ddcf0cb5f87..08af8a59c50 100644
--- a/source/digits_hits/utils/src/G4ScoreQuantityMessenger.cc
+++ b/source/digits_hits/utils/src/G4ScoreQuantityMessenger.cc
@@ -84,6 +84,7 @@
#include "G4UIcmdWithADoubleAndUnit.hh"
#include "G4UIcmdWith3VectorAndUnit.hh"
#include "G4UIcommand.hh"
+#include "G4UIparameter.hh"
#include "G4Tokenizer.hh"
#include "G4UnitsTable.hh"
@@ -128,7 +129,7 @@ void G4ScoreQuantityMessenger::FilterCommands()
G4String smax = DtoS(DBL_MAX);
param->SetDefaultValue(smax);
param = new G4UIparameter("unit",'s',true);
- param->SetDefaultValue("keV");
+ param->SetDefaultUnit("keV");
fkinECmd->SetParameter(param);
//
fparticleCmd = new G4UIcommand("/score/filter/particle",this);
@@ -161,7 +162,7 @@ void G4ScoreQuantityMessenger::FilterCommands()
param->SetDefaultValue(smax);
fparticleKinECmd->SetParameter(param);
param = new G4UIparameter("unit",'s',true);
- param->SetDefaultValue("keV");
+ param->SetDefaultUnit("keV");
fparticleKinECmd->SetParameter(param);
param = new G4UIparameter("particlelist",'s',false);
param->SetDefaultValue("");
diff --git a/source/digits_hits/utils/src/G4ScoreQuantityMessengerQCmd.cc b/source/digits_hits/utils/src/G4ScoreQuantityMessengerQCmd.cc
index a3a637ef844..f0f0f474444 100644
--- a/source/digits_hits/utils/src/G4ScoreQuantityMessengerQCmd.cc
+++ b/source/digits_hits/utils/src/G4ScoreQuantityMessengerQCmd.cc
@@ -76,6 +76,7 @@
#include "G4UIcmdWithADoubleAndUnit.hh"
#include "G4UIcmdWith3VectorAndUnit.hh"
#include "G4UIcommand.hh"
+#include "G4UIparameter.hh"
#include "G4Tokenizer.hh"
#include "G4UnitsTable.hh"
@@ -103,31 +104,31 @@ void G4ScoreQuantityMessenger::QuantityCommands()
qeDepCmd = new G4UIcommand("/score/quantity/energyDeposit",this);
qeDepCmd->SetGuidance("Energy deposit scorer.");
qeDepCmd->
- SetGuidance("[usage] /score/quantiy/energyDeposit qname unit");
+ SetGuidance("[usage] /score/quantity/energyDeposit qname unit");
qeDepCmd->SetGuidance(" qname :(String) scorer name");
qeDepCmd->SetGuidance(" unit :(String) unit");
param = new G4UIparameter("qname",'s',false);
qeDepCmd->SetParameter(param);
param = new G4UIparameter("unit",'s',true);
- param->SetDefaultValue("MeV");
+ param->SetDefaultUnit("MeV");
qeDepCmd->SetParameter(param);
//
qCellChgCmd = new G4UIcommand("/score/quantity/cellCharge",this);
qCellChgCmd->SetGuidance("Cell charge scorer.");
qCellChgCmd->
- SetGuidance("[usage] /score/quantiy/cellCharge qname unit");
+ SetGuidance("[usage] /score/quantity/cellCharge qname unit");
qCellChgCmd->SetGuidance(" qname :(String) scorer name");
qCellChgCmd->SetGuidance(" unit :(String) unit");
param = new G4UIparameter("qname",'s',false);
qCellChgCmd->SetParameter(param);
param = new G4UIparameter("unit",'s',true);
- param->SetDefaultValue("e+");
+ param->SetDefaultUnit("e+");
qCellChgCmd->SetParameter(param);
//
qCellFluxCmd = new G4UIcommand("/score/quantity/cellFlux",this);
qCellFluxCmd->SetGuidance("Cell flux scorer.");
qCellFluxCmd->
- SetGuidance("[usage] /score/quantiy/cellFlux qname unit");
+ SetGuidance("[usage] /score/quantity/cellFlux qname unit");
qCellFluxCmd->SetGuidance(" qname :(String) scorer name");
qCellFluxCmd->SetGuidance(" unit :(String) unit");
param = new G4UIparameter("qname",'s',false);
@@ -139,7 +140,7 @@ void G4ScoreQuantityMessenger::QuantityCommands()
qPassCellFluxCmd = new G4UIcommand("/score/quantity/passageCellFlux",this);
qPassCellFluxCmd->SetGuidance("Passage cell flux scorer");
qPassCellFluxCmd->
- SetGuidance("[usage] /score/quantiy/passageCellFlux qname unit");
+ SetGuidance("[usage] /score/quantity/passageCellFlux qname unit");
qPassCellFluxCmd->SetGuidance(" qname :(String) scorer name");
qPassCellFluxCmd->SetGuidance(" unit :(String) unit");
param = new G4UIparameter("qname",'s',false);
@@ -151,21 +152,21 @@ void G4ScoreQuantityMessenger::QuantityCommands()
qdoseDepCmd = new G4UIcommand("/score/quantity/doseDeposit",this);
qdoseDepCmd->SetGuidance("Dose deposit scorer.");
qdoseDepCmd->
- SetGuidance("[usage] /score/quantiy/doseDeposit qname unit");
+ SetGuidance("[usage] /score/quantity/doseDeposit qname unit");
qdoseDepCmd->SetGuidance(" qname :(String) scorer name");
qdoseDepCmd->SetGuidance(" unit :(String) unit");
param = new G4UIparameter("qname",'s',false);
qdoseDepCmd->SetParameter(param);
param = new G4UIparameter("unit",'s',true);
- param->SetDefaultValue("Gy");
+ param->SetDefaultUnit("Gy");
qdoseDepCmd->SetParameter(param);
//
qnOfStepCmd = new G4UIcommand("/score/quantity/nOfStep",this);
qnOfStepCmd->SetGuidance("Number of step scorer.");
qnOfStepCmd->
- SetGuidance("[usage] /score/quantiy/nOfStep qname");
+ SetGuidance("[usage] /score/quantity/nOfStep qname");
qnOfStepCmd->
- SetGuidance("[usage] /score/quantiy/nOfStep qname bflag");
+ SetGuidance("[usage] /score/quantity/nOfStep qname bflag");
qnOfStepCmd->SetGuidance(" qname :(String) scorer name");
qnOfStepCmd->SetGuidance(" bflag :(Bool) Skip zero step ");
qnOfStepCmd->SetGuidance(" at geometry boundary if true");
@@ -178,7 +179,7 @@ void G4ScoreQuantityMessenger::QuantityCommands()
qnOfSecondaryCmd = new G4UIcommand("/score/quantity/nOfSecondary",this);
qnOfSecondaryCmd->SetGuidance("Number of secondary scorer.");
qnOfSecondaryCmd->
- SetGuidance("[usage] /score/quantiy/nOfSecondary qname");
+ SetGuidance("[usage] /score/quantity/nOfSecondary qname");
qnOfSecondaryCmd->SetGuidance(" qname :(String) scorer name");
param = new G4UIparameter("qname",'s',false);
qnOfSecondaryCmd->SetParameter(param);
@@ -186,7 +187,7 @@ void G4ScoreQuantityMessenger::QuantityCommands()
qTrackLengthCmd = new G4UIcommand("/score/quantity/trackLength",this);
qTrackLengthCmd->SetGuidance("Track length scorer.");
qTrackLengthCmd->
- SetGuidance("[usage] /score/quantiy/trackLength qname wflag kflag vflag unit");
+ SetGuidance("[usage] /score/quantity/trackLength qname wflag kflag vflag unit");
qTrackLengthCmd->SetGuidance(" qname :(String) scorer name");
qTrackLengthCmd->SetGuidance(" wflag :(Bool) weighted");
qTrackLengthCmd->SetGuidance(" kflag :(Bool) multiply kinetic energy");
@@ -204,13 +205,13 @@ void G4ScoreQuantityMessenger::QuantityCommands()
param->SetDefaultValue("false");
qTrackLengthCmd->SetParameter(param);
param = new G4UIparameter("unit",'s',true);
- param->SetDefaultValue("mm");
+ param->SetDefaultUnit("mm");
qTrackLengthCmd->SetParameter(param);
//
qPassCellCurrCmd = new G4UIcommand("/score/quantity/passageCellCurrent",this);
qPassCellCurrCmd->SetGuidance("Passage cell current scorer.");
qPassCellCurrCmd->
- SetGuidance("[usage] /score/quantiy/passageCellCurrent qname wflag");
+ SetGuidance("[usage] /score/quantity/passageCellCurrent qname wflag");
qPassCellCurrCmd->SetGuidance(" qname :(String) scorer name");
qPassCellCurrCmd->SetGuidance(" wflag :(Bool) weighted");
param = new G4UIparameter("qname",'s',false);
@@ -222,7 +223,7 @@ void G4ScoreQuantityMessenger::QuantityCommands()
qPassTrackLengthCmd = new G4UIcommand("/score/quantity/passageTrackLength",this);
qPassTrackLengthCmd->SetGuidance("Passage track length scorer.");
qPassTrackLengthCmd->
- SetGuidance("[usage] /score/quantiy/passageTrackLength qname wflag unit");
+ SetGuidance("[usage] /score/quantity/passageTrackLength qname wflag unit");
qPassTrackLengthCmd->SetGuidance(" qname :(String) scorer name");
qPassTrackLengthCmd->SetGuidance(" wflag :(Bool) weighted");
qPassTrackLengthCmd->SetGuidance(" unit :(Bool) unit");
@@ -232,13 +233,13 @@ void G4ScoreQuantityMessenger::QuantityCommands()
param->SetDefaultValue("true");
qPassTrackLengthCmd->SetParameter(param);
param = new G4UIparameter("unit",'s',true);
- param->SetDefaultValue("mm");
+ param->SetDefaultUnit("mm");
qPassTrackLengthCmd->SetParameter(param);
//
qFlatSurfCurrCmd = new G4UIcommand("/score/quantity/flatSurfaceCurrent",this);
qFlatSurfCurrCmd->SetGuidance("Flat surface current Scorer.");
qFlatSurfCurrCmd->
- SetGuidance("[usage] /score/quantiy/flatSurfaceCurrent qname dflag wflag aflag unit");
+ SetGuidance("[usage] /score/quantity/flatSurfaceCurrent qname dflag wflag aflag unit");
qFlatSurfCurrCmd->SetGuidance(" qname :(String) scorer name");
qFlatSurfCurrCmd->SetGuidance(" dflag :(Int) direction flag");
qFlatSurfCurrCmd->SetGuidance(" : 0 = Both In and Out");
@@ -246,7 +247,7 @@ void G4ScoreQuantityMessenger::QuantityCommands()
qFlatSurfCurrCmd->SetGuidance(" : 2 = Out only");
qFlatSurfCurrCmd->SetGuidance(" wflag :(Bool) weighted");
qFlatSurfCurrCmd->SetGuidance(" aflag :(Bool) divide by area");
- qFlatSurfCurrCmd->SetGuidance(" unit :(Bool) unit");
+ qFlatSurfCurrCmd->SetGuidance(" unit :(String) unit");
param = new G4UIparameter("qname",'s',false);
qFlatSurfCurrCmd->SetParameter(param);
param = new G4UIparameter("dflag",'i',true);
@@ -265,7 +266,7 @@ void G4ScoreQuantityMessenger::QuantityCommands()
qFlatSurfFluxCmd = new G4UIcommand("/score/quantity/flatSurfaceFlux",this);
qFlatSurfFluxCmd->SetGuidance("Flat surface flux scorer.");
qFlatSurfFluxCmd->
- SetGuidance("[usage] /score/quantiy/flatSurfaceFlux qname dflag unit");
+ SetGuidance("[usage] /score/quantity/flatSurfaceFlux qname dflag unit");
qFlatSurfFluxCmd->SetGuidance(" qname :(String) scorer name");
qFlatSurfFluxCmd->SetGuidance(" dflag :(Int) direction flag");
qFlatSurfFluxCmd->SetGuidance(" : 0 = Both In and Out");
@@ -292,7 +293,7 @@ void G4ScoreQuantityMessenger::QuantityCommands()
// qSphereSurfCurrCmd = new G4UIcommand("/score/quantity/sphereSurfaceCurrent",this);
// qSphereSurfCurrCmd->SetGuidance("Sphere surface current Scorer.");
// qSphereSurfCurrCmd->
-// SetGuidance("[usage] /score/quantiy/sphereSurfaceCurrent qname dflag wflag aflag unit");
+// SetGuidance("[usage] /score/quantity/sphereSurfaceCurrent qname dflag wflag aflag unit");
// qSphereSurfCurrCmd->SetGuidance(" qname :(String) scorer name");
// qSphereSurfCurrCmd->SetGuidance(" dflag :(Int) direction flag");
// qSphereSurfCurrCmd->SetGuidance(" : 0 = Both In and Out");
@@ -320,7 +321,7 @@ void G4ScoreQuantityMessenger::QuantityCommands()
// qSphereSurfFluxCmd = new G4UIcommand("/score/quantity/sphereSurfaceFlux",this);
// qSphereSurfFluxCmd->SetGuidance("Sphere surface Flux Scorer.");
// qSphereSurfFluxCmd->
-// SetGuidance("[usage] /score/quantiy/sphereSurfaceFlux qname dflag unit");
+// SetGuidance("[usage] /score/quantity/sphereSurfaceFlux qname dflag unit");
// qSphereSurfFluxCmd->SetGuidance(" qname :(String) scorer name");
// qSphereSurfFluxCmd->SetGuidance(" dflag :(Int) direction flag");
// qSphereSurfFluxCmd->SetGuidance(" : 0 = Both In and Out");
@@ -348,7 +349,7 @@ void G4ScoreQuantityMessenger::QuantityCommands()
// qCylSurfCurrCmd = new G4UIcommand("/score/quantity/cylinderSurfaceCurrent",this);
// qCylSurfCurrCmd->SetGuidance("Cylinder surface current Scorer.");
// qCylSurfCurrCmd->
-// SetGuidance("[usage] /score/quantiy/cylinderSurfaceCurrent qname dflag wflag aflag unit");
+// SetGuidance("[usage] /score/quantity/cylinderSurfaceCurrent qname dflag wflag aflag unit");
// qCylSurfCurrCmd->SetGuidance(" qname :(String) scorer name");
// qCylSurfCurrCmd->SetGuidance(" dflag :(Int) direction flag");
// qCylSurfCurrCmd->SetGuidance(" : 0 = Both In and Out");
@@ -375,7 +376,7 @@ void G4ScoreQuantityMessenger::QuantityCommands()
// qCylSurfFluxCmd = new G4UIcommand("/score/quantity/cylinderSurfaceFlux",this);
// qCylSurfFluxCmd->SetGuidance("Cylinder surface Flux Scorer.");
// qCylSurfFluxCmd->
-// SetGuidance("[usage] /score/quantiy/cylinderSurfaceFlux qname dflag unit");
+// SetGuidance("[usage] /score/quantity/cylinderSurfaceFlux qname dflag unit");
// qCylSurfFluxCmd->SetGuidance(" qname :(String) scorer name");
// qCylSurfFluxCmd->SetGuidance(" dflag :(Int) direction flag");
// qCylSurfFluxCmd->SetGuidance(" : 0 = Both In and Out");
@@ -403,7 +404,7 @@ void G4ScoreQuantityMessenger::QuantityCommands()
qNofCollisionCmd = new G4UIcommand("/score/quantity/nOfCollision",this);
qNofCollisionCmd->SetGuidance("Number of collision scorer.");
qNofCollisionCmd->
- SetGuidance("[usage] /score/quantiy/nOfCollision qname wflag");
+ SetGuidance("[usage] /score/quantity/nOfCollision qname wflag");
qNofCollisionCmd->SetGuidance(" qname :(String) scorer name");
param = new G4UIparameter("qname",'s',false);
qNofCollisionCmd->SetParameter(param);
@@ -414,7 +415,7 @@ void G4ScoreQuantityMessenger::QuantityCommands()
qPopulationCmd = new G4UIcommand("/score/quantity/population",this);
qPopulationCmd->SetGuidance("Population scorer.");
qPopulationCmd->
- SetGuidance("[usage] /score/quantiy/population qname wflag");
+ SetGuidance("[usage] /score/quantity/population qname wflag");
qPopulationCmd->SetGuidance(" qname :(String) scorer name");
qPopulationCmd->SetGuidance(" wflag :(Bool) weighted");
param = new G4UIparameter("qname",'s',false);
@@ -427,7 +428,7 @@ void G4ScoreQuantityMessenger::QuantityCommands()
qTrackCountCmd = new G4UIcommand("/score/quantity/nOfTrack",this);
qTrackCountCmd->SetGuidance("Number of track scorer.");
qTrackCountCmd->
- SetGuidance("[usage] /score/quantiy/nOfTrack qname dflag wflag");
+ SetGuidance("[usage] /score/quantity/nOfTrack qname dflag wflag");
qTrackCountCmd->SetGuidance(" qname :(String) scorer name");
qTrackCountCmd->SetGuidance(" dflag :(Int) direction");
qTrackCountCmd->SetGuidance(" : 0 = Both In and Out");
@@ -447,7 +448,7 @@ void G4ScoreQuantityMessenger::QuantityCommands()
qTerminationCmd = new G4UIcommand("/score/quantity/nOfTerminatedTrack",this);
qTerminationCmd->SetGuidance("Number of terminated tracks scorer.");
qTerminationCmd->
- SetGuidance("[usage] /score/quantiy/nOfTerminatedTrack qname wflag");
+ SetGuidance("[usage] /score/quantity/nOfTerminatedTrack qname wflag");
qTerminationCmd->SetGuidance(" qname :(String) scorer name");
qTerminationCmd->SetGuidance(" wflag :(Bool) weighted");
param = new G4UIparameter("qname",'s',false);
@@ -460,19 +461,19 @@ void G4ScoreQuantityMessenger::QuantityCommands()
qMinKinEAtGeneCmd = new G4UIcommand("/score/quantity/minKinEAtGeneration",this);
qMinKinEAtGeneCmd->SetGuidance("Min Kinetic Energy at Generation");
qMinKinEAtGeneCmd->
- SetGuidance("[usage] /score/quantiy/minKinEAtGeneration qname unit");
+ SetGuidance("[usage] /score/quantity/minKinEAtGeneration qname unit");
qMinKinEAtGeneCmd->SetGuidance(" qname :(String) scorer name");
qMinKinEAtGeneCmd->SetGuidance(" unit :(String) unit name");
param = new G4UIparameter("qname",'s',false);
qMinKinEAtGeneCmd->SetParameter(param);
param = new G4UIparameter("unit",'s',true);
- param->SetDefaultValue("MeV");
+ param->SetDefaultUnit("MeV");
qMinKinEAtGeneCmd->SetParameter(param);
//
qStepCheckerCmd = new G4UIcommand("/score/quantity/stepChecker",this);
qStepCheckerCmd->SetGuidance("Display a comment when this PS is invoked");
qStepCheckerCmd->
- SetGuidance("[usage] /score/quantiy/stepChecker qname");
+ SetGuidance("[usage] /score/quantity/stepChecker qname");
qStepCheckerCmd->SetGuidance(" qname :(String) scorer name");
param = new G4UIparameter("qname",'s',false);
qStepCheckerCmd->SetParameter(param);
diff --git a/source/digits_hits/utils/src/G4ScoringBox.cc b/source/digits_hits/utils/src/G4ScoringBox.cc
index e8d578dc060..cacac6194d1 100644
--- a/source/digits_hits/utils/src/G4ScoringBox.cc
+++ b/source/digits_hits/utils/src/G4ScoringBox.cc
@@ -28,7 +28,6 @@
#include "G4ScoringBox.hh"
-#include "G4SystemOfUnits.hh"
#include "G4Box.hh"
#include "G4LogicalVolume.hh"
#include "G4VPhysicalVolume.hh"
@@ -47,6 +46,8 @@
#include "G4ScoringManager.hh"
#include "G4StatDouble.hh"
+#include "G4SystemOfUnits.hh"
+
#include